Skip to content

Instantly share code, notes, and snippets.

@bdon
Created October 13, 2012 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdon/3882892 to your computer and use it in GitHub Desktop.
Save bdon/3882892 to your computer and use it in GitHub Desktop.
lombard
<!doctype html>
<html>
<head>
<script src="http://bdon.org/js/d3.v2.js"></script>
<script src="http://bdon.org/js/Three.js"></script>
</head>
<body>
<section>
<div id="chart">
</div>
</section>
<script>
var scene, camera, renderer;
var height_scale = 0.25;
//origin around the wiggly part of Lombard street
var proj = d3.geo.albers().scale(1500000).origin([-122.419507966555,37.80201405584843]).parallels([37.0, 38.0]).translate([0,0]);
document.addEventListener( 'mousemove', onDocumentMouseMove, false );
init();
animate();
function init() {
container = document.createElement( 'div' );
document.getElementById('chart').appendChild( container );
scene = new THREE.Scene();
camera = new THREE.OrthographicCamera(-180, 180, 100, -100, -300, 300);
renderer = new THREE.WebGLRenderer({antialias: true});
camera.position.z = 10;
camera.position.y = 10;
camera.position.x = 10;
scene.add( camera );
renderer.setSize(800, 400);
container.appendChild( renderer.domElement );
material = new THREE.MeshLambertMaterial( { color: 0xbbbbbb, opacity: 0.5 } );
material.vertexColors = true;
var lineMaterial = new THREE.LineBasicMaterial( { color: 0x000000, linewidth: 2 } );
parent = new THREE.Object3D();
scene.add( parent );
var directionalLight = new THREE.DirectionalLight(0xffffff);
directionalLight.position.set(10,10,10);
scene.add(directionalLight);
d3.json("lombard.json", function(json) {
for(var linestring in json) {
var geometry = new THREE.Geometry();
var lineGeometry = new THREE.Geometry();
var coords = json[linestring]['coordinates'];
for(var c in coords) {
var projected = proj(coords[c]);
var elevation = coords[c][2];
var normed_elev = elevation * height_scale;
geometry.vertices.push(new THREE.Vertex( new THREE.Vector3( projected[0], normed_elev, projected[1])));
lineGeometry.vertices.push(new THREE.Vertex( new THREE.Vector3( projected[0], normed_elev, projected[1])));
};
// Add all the points going backwards, but at elevation 0
for(var i=coords.length-1; i>=0; i--) {
var projected2 = proj(coords[i]);
geometry.vertices.push(new THREE.Vertex( new THREE.Vector3( projected2[0], 0, projected2[1])));
}
// Add the first point to the end to create a closed geometry
var projected3 = proj(coords[0]);
geometry.vertices.push(new THREE.Vertex( new THREE.Vector3(projected3[0], projected3[2] * height_scale, projected3[1])));
// Zip up faces
for(var x = 0; x < coords.length - 1; x++) {
geometry.faces.push(new THREE.Face3(x,2*coords.length-x-1,x+1, null));
geometry.faces.push(new THREE.Face3(x+1, 2*coords.length-x-1,2*coords.length-x-2, null));
}
geometry.computeFaceNormals(true);
var line = new THREE.Line(lineGeometry, lineMaterial);
parent.add(line);
var mesh = new THREE.Mesh( geometry, material);
mesh.castShadow = true;
mesh.doubleSided = true;
parent.add(mesh);
}
});
}
function animate() {
requestAnimationFrame( animate );
render();
}
function render() {
camera.lookAt( scene.position );
renderer.render(scene, camera);
}
function onDocumentMouseMove( event ) {
mouseX = event.clientX - window.innerWidth / 2;
parent.rotation.y = Math.sin( mouseX/1000 ) * 5;
}
function rotateRight() {
parent.rotation.y = parent.rotation.y + Math.PI/100;
}
function rotateLeft() {
parent.rotation.y = parent.rotation.y - Math.PI/100;
}
</script>
</body>
</html>
[{"type":"Polygon","coordinates":[[[-122.419963000000095,37.811284000000029],[-122.419763000000103,37.811171000000023],[-122.419265000000095,37.81096100000002],[-122.419102000000109,37.811117000000024],[-122.419290000000117,37.811246000000018],[-122.419445000000096,37.811402000000022],[-122.4193590000001,37.811490000000013],[-122.418870000000112,37.811476000000013],[-122.418810000000093,37.811456000000007],[-122.417217000000079,37.810392000000022],[-122.415516000000096,37.809269000000015],[-122.415351000000086,37.80916400000001],[-122.415119000000104,37.809144000000032],[-122.414767000000083,37.809286],[-122.414767000000083,37.809373999999991],[-122.415162000000095,37.809638999999997],[-122.415334000000087,37.80975399999997],[-122.415282000000119,37.80984200000001],[-122.415081000000114,37.809760000000018],[-122.414587000000068,37.809557000000019],[-122.414072000000118,37.809468999999986],[-122.413952000000094,37.809435000000001],[-122.413651000000101,37.809316000000024],[-122.413420000000102,37.809225000000019],[-122.4133080000001,37.809408000000005],[-122.413068000000095,37.809312999999975],[-122.413042000000118,37.809265999999973],[-122.412604000000115,37.809083000000015],[-122.412501000000105,37.809062000000011],[-122.412347000000068,37.809144000000032],[-122.412046000000075,37.809306000000014],[-122.411885000000098,37.80938900000001],[-122.412842000000111,37.81050500000002],[-122.412707000000083,37.810575000000014],[-122.411737000000088,37.809456000000004],[-122.411763000000064,37.809435000000001],[-122.411296000000107,37.808888000000039],[-122.4110510000001,37.808853999999997],[-122.410774000000103,37.808815000000024],[-122.410501000000068,37.808776999999999],[-122.410381000000029,37.809306000000014],[-122.410459000000074,37.809435000000001],[-122.410470000000103,37.809454000000002],[-122.410560000000089,37.809608000000004],[-122.410630000000097,37.809726999999988],[-122.410637000000051,37.809744000000009],[-122.410728000000105,37.809908000000021],[-122.41075900000007,37.80989600000003],[-122.4108710000001,37.810093000000016],[-122.410845000000108,37.81010000000002],[-122.410854000000043,37.81011800000001],[-122.410896000000079,37.810195000000007],[-122.411102000000056,37.810553999999982],[-122.411154000000082,37.810553999999982],[-122.411368000000081,37.810906999999972],[-122.411325000000119,37.810946999999977],[-122.4112480000001,37.811123999999992],[-122.410948000000104,37.811232000000018],[-122.41093100000009,37.811279999999996],[-122.410682000000065,37.811375000000019],[-122.410613000000097,37.811347000000019],[-122.410467000000111,37.811402000000022],[-122.410450000000097,37.811394999999969],[-122.410192000000094,37.811320000000002],[-122.41003300000007,37.811007000000018],[-122.410014000000075,37.810997000000008],[-122.410024000000092,37.810942000000011],[-122.410048000000103,37.810944000000013],[-122.410066000000072,37.81086700000003],[-122.410165000000092,37.810366000000023],[-122.410196000000113,37.810106000000012],[-122.410064000000119,37.809890000000031],[-122.409808000000055,37.809413000000021],[-122.409725000000108,37.809272000000028],[-122.409587000000087,37.809192000000017],[-122.409361000000118,37.80916400000001],[-122.409361000000118,37.809134000000022],[-122.409234000000069,37.809122999999992],[-122.40924300000006,37.809058000000022],[-122.409217000000098,37.809006000000025],[-122.409060000000068,37.808744999999973],[-122.408963000000071,37.808559000000002],[-122.408391000000023,37.808380000000007],[-122.408361000000099,37.80829700000001],[-122.407886000000104,37.808095999999999],[-122.407856000000066,37.80810199999997],[-122.407881000000089,37.808186000000013],[-122.40771800000006,37.808225000000007],[-122.407682000000065,37.808206000000013],[-122.407614000000095,37.808220999999989],[-122.407586000000094,37.80814800000001],[-122.407538000000102,37.808154999999999],[-122.40752800000007,37.80811700000001],[-122.4075670000001,37.808109000000037],[-122.407552000000081,37.808075000000024],[-122.407488000000114,37.808053999999984],[-122.407470000000046,37.808006000000006],[-122.407507000000081,37.807937000000017],[-122.407455000000112,37.807913999999997],[-122.40737800000008,37.808058000000017],[-122.406648000000104,37.807815000000019],[-122.406819000000112,37.810018000000028],[-122.406772000000061,37.810021000000013],[-122.406225000000035,37.810048000000023],[-122.406124000000119,37.810052000000013],[-122.40589200000008,37.807157000000004],[-122.405352000000093,37.806873000000031],[-122.405249000000083,37.807039000000024],[-122.405206000000092,37.807108999999997],[-122.404390000000106,37.808906000000007],[-122.403901000000076,37.808750000000025],[-122.404708000000113,37.806973999999961],[-122.404330000000087,37.806784000000007],[-122.403927000000081,37.806574000000019],[-122.402734000000095,37.808038000000039],[-122.402313000000078,37.807820999999983],[-122.403412000000046,37.806479000000031],[-122.402802000000108,37.806024000000008],[-122.401313707901167,37.807319000000021],[-122.400931000000114,37.807652000000004],[-122.400382000000107,37.807259000000045],[-122.4009870000001,37.80356400000003],[-122.400873000000118,37.803438000000021],[-122.400506000000064,37.803472000000021],[-122.399934251626618,37.803810000000006],[-122.398559000000091,37.804623000000014],[-122.398207000000099,37.80426700000001],[-122.398655463696372,37.803998942440593],[-122.398655463696372,37.803998942440579],[-122.399567154292129,37.803453999999995],[-122.399967000000089,37.803215000000023],[-122.399640000000076,37.802834000000018],[-122.399000000000115,37.803184999999999],[-122.398961000000114,37.803190999999998],[-122.398655463696372,37.803363815180475],[-122.398655463696372,37.803363815180475],[-122.397856000000047,37.803816000000012],[-122.397829000000087,37.803821000000028],[-122.397805000000119,37.803810000000006],[-122.397526000000113,37.803505000000023],[-122.397529000000091,37.803479000000024],[-122.3975480000001,37.803453999999995],[-122.399591000000086,37.802324000000006],[-122.399670000000114,37.802265000000034],[-122.399726000000101,37.802205000000022],[-122.399723000000066,37.802172000000006],[-122.399434000000099,37.801841999999986],[-122.399306000000081,37.801862000000014],[-122.399169000000086,37.801906000000017],[-122.399088651863664,37.80195100000001],[-122.397121000000112,37.80305300000002],[-122.396142000000111,37.80195100000001],[-122.398404000000099,37.800685000000016],[-122.398017000000095,37.800243000000023],[-122.395766000000052,37.801496000000014],[-122.39544700000009,37.801160999999979],[-122.396539000000104,37.800540000000005],[-122.397211000000112,37.800167000000023],[-122.397508000000045,37.800002000000013],[-122.397550000000109,37.799968000000028],[-122.397614000000019,37.799914000000015],[-122.397662000000082,37.799855000000015],[-122.397437000000096,37.799591000000028],[-122.397400000000076,37.799610000000015],[-122.39731500000012,37.799516000000025],[-122.397267000000099,37.79954699999999],[-122.397200000000097,37.799506999999984],[-122.397161000000096,37.799487000000006],[-122.397143000000099,37.799451000000026],[-122.397116000000096,37.799374000000029],[-122.397163000000106,37.799347000000019],[-122.397094000000109,37.799262000000013],[-122.397125000000102,37.799241999999978],[-122.396764000000076,37.798836000000009],[-122.396627000000066,37.798694000000019],[-122.396550000000119,37.798691000000019],[-122.39653000000007,37.798701000000015],[-122.396314000000103,37.798457000000013],[-122.396322000000112,37.798441000000018],[-122.396298000000115,37.798410000000032],[-122.396258000000103,37.798412000000006],[-122.396230000000074,37.798403000000029],[-122.396216000000024,37.79837400000001],[-122.396230000000074,37.79833800000003],[-122.396155000000064,37.79825600000003],[-122.3961350000001,37.798257],[-122.396115000000108,37.798248999999998],[-122.396106000000088,37.798234000000015],[-122.396111000000118,37.798213000000018],[-122.396041000000096,37.798136000000007],[-122.396015000000119,37.798133000000021],[-122.395986000000079,37.798130000000015],[-122.395967000000098,37.79811500000001],[-122.395958000000022,37.798085000000015],[-122.395967000000098,37.798055000000026],[-122.395819000000074,37.797891],[-122.395686000000111,37.797917000000012],[-122.395556000000113,37.797970000000014],[-122.393860000000089,37.798962999999972],[-122.393569000000085,37.79865300000003],[-122.395213000000069,37.797714000000028],[-122.395200000000102,37.797699000000016],[-122.395461000000083,37.797549000000018],[-122.39549000000008,37.797474000000015],[-122.395461000000083,37.797442000000018],[-122.39535900000007,37.797442000000018],[-122.39511800000011,37.797584000000015],[-122.395098000000104,37.797567999999977],[-122.395043000000044,37.797597000000025],[-122.394966000000096,37.797517999999975],[-122.394898000000069,37.797434999999986],[-122.39494800000007,37.797403000000017],[-122.39493400000012,37.797385000000027],[-122.395185000000069,37.797239000000005],[-122.395184000000086,37.797209000000009],[-122.395140000000097,37.797169000000004],[-122.395092000000105,37.797166000000026],[-122.393203000000071,37.798273000000016],[-122.393177000000094,37.798280000000034],[-122.393150000000091,37.798271000000014],[-122.392904000000058,37.798019000000004],[-122.392897000000104,37.797996999999988],[-122.392904000000058,37.797970000000014],[-122.393410000000074,37.797670000000004],[-122.393823000000069,37.797317000000014],[-122.394422000000105,37.796980000000019],[-122.394348000000093,37.796900000000001],[-122.394695000000041,37.796702000000018],[-122.394642000000076,37.796637000000011],[-122.393767000000111,37.797148000000028],[-122.393739000000068,37.79711300000001],[-122.394144000000097,37.796877000000023],[-122.393936000000082,37.796636000000014],[-122.394462000000075,37.796331000000031],[-122.394352000000097,37.796214000000035],[-122.39377900000008,37.796550999999994],[-122.393766000000099,37.796538000000012],[-122.39349100000004,37.796695999999983],[-122.393520000000066,37.79672699999999],[-122.393150000000091,37.796942999999999],[-122.393062000000072,37.796849000000002],[-122.393433000000115,37.796634000000026],[-122.393463000000096,37.796664000000021],[-122.393735000000078,37.796506000000001],[-122.39372300000008,37.796492000000022],[-122.393794000000113,37.796451000000012],[-122.393499000000091,37.796131000000024],[-122.393433000000115,37.796170000000032],[-122.393412000000097,37.796149000000021],[-122.393370000000118,37.796174000000029],[-122.393343000000115,37.796143000000022],[-122.393383000000057,37.796120000000037],[-122.393369000000106,37.796103000000016],[-122.393436000000065,37.796063000000011],[-122.393007000000111,37.795601999999988],[-122.392634000000101,37.795769000000014],[-122.392474000000078,37.795841000000017],[-122.39205600000011,37.796028000000028],[-122.391639000000083,37.796215000000032],[-122.391241000000093,37.795784000000026],[-122.392424000000119,37.794852000000006],[-122.392308000000043,37.794727999999999],[-122.392253000000068,37.794669000000027],[-122.392224000000041,37.794634000000009],[-122.392109000000119,37.794704999999979],[-122.392095000000111,37.794741999999999],[-122.392018000000064,37.79478600000003],[-122.391911000000064,37.794834000000009],[-122.391652000000093,37.794553000000022],[-122.391827000000049,37.794454000000002],[-122.391805000000105,37.794430000000013],[-122.391959000000114,37.794339000000015],[-122.391690000000082,37.794043000000016],[-122.391996000000077,37.793870000000013],[-122.391583000000097,37.793529000000014],[-122.391644000000113,37.793489000000008],[-122.391725000000079,37.79342800000002],[-122.388807000000085,37.790982000000021],[-122.388932000000068,37.790889999999983],[-122.388631000000103,37.790333000000032],[-122.388620000000117,37.790312000000014],[-122.38843200000008,37.790375000000012],[-122.388404000000065,37.790321000000034],[-122.388238000000072,37.790004000000017],[-122.388231000000076,37.789991000000022],[-122.388423000000088,37.789926000000015],[-122.388367000000073,37.789837999999996],[-122.388282000000103,37.789741000000028],[-122.388165000000086,37.789706000000017],[-122.388122000000095,37.789632999999974],[-122.387622000000079,37.789810000000017],[-122.3873490000001,37.789288000000013],[-122.385300000000115,37.789801000000004],[-122.38509600000009,37.789271000000021],[-122.387177000000079,37.788774999999987],[-122.387038000000089,37.788216000000027],[-122.385219000000092,37.788513000000002],[-122.385112000000078,37.788114000000036],[-122.387279000000106,37.787758000000018],[-122.38740200000008,37.787707000000019],[-122.387428000000085,37.787226999999973],[-122.384520000000109,37.787403000000012],[-122.384347000000105,37.785692000000026],[-122.387325000000075,37.785515000000004],[-122.387566000000092,37.785447000000019],[-122.387702000000075,37.783854999999996],[-122.386303000000112,37.783937000000023],[-122.386259000000095,37.783414000000022],[-122.387557000000101,37.783331000000018],[-122.387754000000101,37.783256000000002],[-122.387780000000092,37.782870000000003],[-122.387343000000101,37.782728000000006],[-122.384716000000068,37.782890000000009],[-122.384690000000063,37.782564000000015],[-122.385523000000106,37.782510000000002],[-122.3855140000001,37.782483000000028],[-122.387506000000087,37.782353999999998],[-122.387772000000069,37.782300000000021],[-122.387746000000121,37.781811000000019],[-122.385544000000081,37.781934000000014],[-122.385520000000099,37.78175899999998],[-122.385502000000074,37.781574000000028],[-122.387230000000116,37.781467000000028],[-122.387694000000081,37.781438000000023],[-122.387686000000087,37.781099000000005],[-122.387446000000068,37.778348000000008],[-122.387440000000097,37.778303000000008],[-122.387587000000053,37.778244000000015],[-122.389180000000081,37.77763000000003],[-122.389310000000066,37.777561000000013],[-122.389321000000038,37.777579000000031],[-122.389442000000074,37.777510000000007],[-122.389455000000083,37.777527000000013],[-122.389581000000121,37.777460000000019],[-122.389595000000028,37.777476],[-122.389721000000065,37.777405000000023],[-122.3897300000001,37.777420999999983],[-122.3898650000001,37.777349000000008],[-122.389872000000068,37.777372000000021],[-122.390293000000113,37.777212999999975],[-122.390244000000095,37.77713700000001],[-122.390295000000094,37.777117000000004],[-122.390393000000103,37.777011000000023],[-122.390493000000106,37.776851000000036],[-122.390724000000105,37.776666000000006],[-122.390744000000083,37.776671000000029],[-122.390829000000096,37.776626000000022],[-122.390911000000116,37.776564000000008],[-122.390975000000111,37.776496999999992],[-122.390956000000116,37.776483000000013],[-122.391375000000082,37.776159000000007],[-122.39138300000009,37.776165999999982],[-122.391477000000066,37.776115000000026],[-122.391549000000083,37.776053000000019],[-122.391606000000081,37.775988000000027],[-122.391596000000092,37.775981000000016],[-122.392021000000099,37.775632000000002],[-122.392182000000105,37.775545999999999],[-122.392276000000066,37.775428000000026],[-122.392490000000066,37.775261999999969],[-122.392722000000091,37.775079000000019],[-122.393099000000106,37.774950000000011],[-122.393431000000078,37.774683000000032],[-122.396186000000085,37.772539000000016],[-122.39623700000007,37.772471000000039],[-122.396229000000076,37.772389000000011],[-122.396300000000068,37.772310000000019],[-122.397714000000065,37.771284000000016],[-122.398855000000069,37.770361000000015],[-122.398392000000101,37.769995000000016],[-122.392255000000077,37.774650000000022],[-122.392259000000067,37.774757000000008],[-122.392055000000099,37.774915000000028],[-122.39197400000009,37.774881999999991],[-122.39057600000011,37.775947000000009],[-122.390190000000104,37.776239000000025],[-122.38999200000012,37.776409000000037],[-122.389726000000024,37.776584999999983],[-122.387551000000101,37.776772000000015],[-122.387314000000117,37.776612000000029],[-122.387284000000065,37.776335000000017],[-122.387128000000089,37.776341000000016],[-122.387110000000121,37.776116999999985],[-122.385044000000093,37.776356999999997],[-122.385014000000069,37.776338999999972],[-122.384849000000116,37.775431000000012],[-122.384920000000079,37.775423000000032],[-122.384905000000103,37.775340000000007],[-122.386953000000105,37.775105000000011],[-122.387014000000065,37.775079000000019],[-122.386911000000097,37.774333000000013],[-122.386082000000101,37.774364000000006],[-122.381830000000107,37.774617999999961],[-122.381793000000116,37.774428000000022],[-122.381458000000066,37.774082000000021],[-122.381740000000036,37.773955000000022],[-122.381477000000118,37.771979000000023],[-122.381481000000107,37.771958000000012],[-122.381492000000023,37.771945000000024],[-122.381513000000069,37.771940000000022],[-122.381540000000086,37.771945000000024],[-122.384646000000075,37.773352000000024],[-122.384908000000095,37.773400000000017],[-122.38673900000002,37.77328600000002],[-122.386775000000071,37.77327600000001],[-122.38658100000012,37.772825999999974],[-122.386737000000096,37.77278400000003],[-122.386702000000113,37.772689],[-122.386663000000084,37.77250100000002],[-122.386667000000102,37.772479000000011],[-122.386679000000072,37.772462000000019],[-122.386729000000116,37.772449000000023],[-122.38671900000007,37.77242200000002],[-122.386708000000112,37.772393000000029],[-122.386685000000071,37.772397000000019],[-122.386679000000072,37.772373999999999],[-122.386665000000065,37.772378000000032],[-122.38663000000011,37.772305999999986],[-122.386609000000078,37.77223800000003],[-122.386558000000093,37.772022000000014],[-122.386548000000104,37.771957000000008],[-122.3864540000001,37.771955999999975],[-122.386472000000097,37.771692999999978],[-122.386426000000085,37.771690000000028],[-122.385968000000076,37.771053000000023],[-122.385968000000076,37.770851000000008],[-122.385798000000094,37.770658999999981],[-122.385747000000094,37.770600999999992],[-122.385575000000102,37.770654999999998],[-122.38320800000011,37.769695000000027],[-122.38338400000012,37.769339000000009],[-122.385613000000077,37.77021400000001],[-122.385595000000109,37.770158000000031],[-122.385389000000089,37.769440000000003],[-122.385065000000068,37.768729999999991],[-122.385346000000098,37.767910000000015],[-122.385326000000092,37.767131000000013],[-122.385607000000107,37.767088000000015],[-122.385633000000084,37.766830000000013],[-122.385770000000093,37.76678900000001],[-122.385899000000066,37.766303000000015],[-122.386243000000107,37.765671999999981],[-122.386562000000097,37.76530600000001],[-122.38640000000008,37.765327000000035],[-122.386417000000108,37.764411000000031],[-122.386708000000112,37.763996999999982],[-122.386614000000094,37.763915000000019],[-122.386984000000083,37.763576000000022],[-122.386255000000091,37.763276000000012],[-122.385215000000088,37.763210000000029],[-122.385129000000092,37.762348000000024],[-122.384674000000075,37.762090000000022],[-122.384296000000091,37.762144000000006],[-122.384271000000069,37.762302999999996],[-122.384213000000116,37.762316000000006],[-122.383988000000045,37.762336999999974],[-122.383703000000025,37.762329999999984],[-122.383476000000073,37.762351000000017],[-122.383327000000094,37.762357000000009],[-122.383123000000111,37.762388000000016],[-122.382694000000043,37.762408000000001],[-122.382668000000081,37.762299000000013],[-122.38160400000011,37.76238399999999],[-122.381020000000106,37.762391000000022],[-122.380994000000115,37.762222000000015],[-122.383316000000107,37.762082000000028],[-122.382705000000101,37.761439999999972],[-122.382179000000093,37.760925000000022],[-122.381995000000103,37.760790999999976],[-122.381808000000092,37.75989400000001],[-122.381338000000071,37.759921000000027],[-122.381304000000114,37.75996199999998],[-122.381093000000121,37.75997900000003],[-122.381077000000062,37.759866999999986],[-122.381078000000088,37.759776000000009],[-122.381376000000088,37.759755000000006],[-122.381241000000074,37.758114000000027],[-122.381455000000102,37.757707000000032],[-122.381284000000065,37.75589500000001],[-122.380926000000102,37.755653000000017],[-122.380806000000106,37.755483000000005],[-122.380788000000081,37.755346999999993],[-122.380806000000106,37.755225000000003],[-122.380985000000095,37.755141000000002],[-122.381428000000071,37.755092999999988],[-122.381556000000089,37.755154000000005],[-122.384105000000091,37.754971000000019],[-122.38408100000008,37.754622000000012],[-122.383440000000093,37.754669000000028],[-122.382921000000096,37.75444600000003],[-122.382907000000117,37.754287000000026],[-122.382840000000087,37.753368999999992],[-122.381902000000082,37.753234999999997],[-122.381653000000071,37.753065000000021],[-122.381435000000067,37.752955000000014],[-122.380520000000061,37.752955000000014],[-122.380046000000107,37.752893999999998],[-122.379996000000077,37.752027000000005],[-122.376104000000112,37.75226700000001],[-122.375759000000102,37.748704000000025],[-122.377931000000103,37.748574000000019],[-122.379714000000092,37.748458000000028],[-122.384654000000097,37.748173000000008],[-122.384668000000062,37.748331999999998],[-122.384755000000098,37.748334000000014],[-122.384935000000098,37.748286000000036],[-122.38533000000011,37.748305999999992],[-122.385751000000084,37.74821799999998],[-122.386060000000072,37.748177000000013],[-122.386394000000067,37.747987000000023],[-122.386841000000103,37.747865000000012],[-122.387038000000089,37.74765500000003],[-122.387536000000068,37.747634000000005],[-122.387630000000087,37.747865000000012],[-122.388394000000076,37.747825999999982],[-122.388404000000065,37.747878000000007],[-122.390377000000115,37.747723000000008],[-122.392287000000081,37.748524999999965],[-122.392454000000086,37.748524000000025],[-122.39274300000011,37.748534000000014],[-122.392854000000114,37.748534000000014],[-122.393123000000074,37.748062000000012],[-122.392917000000111,37.747560000000028],[-122.392913000000092,37.747417000000027],[-122.391521000000083,37.747024000000017],[-122.390552000000085,37.746752000000008],[-122.388696000000081,37.746826999999975],[-122.388182000000114,37.746963000000022],[-122.388086000000115,37.746896000000028],[-122.387873000000084,37.746915000000037],[-122.387464000000065,37.747019999999999],[-122.387464000000065,37.747088000000026],[-122.387063000000111,37.747113000000006],[-122.387015000000105,37.746932000000015],[-122.382656000000068,37.747182000000009],[-122.382068000000075,37.747083000000018],[-122.381172000000106,37.747126000000016],[-122.379679000000095,37.74722300000002],[-122.379617000000039,37.747006999999975],[-122.378189000000091,37.747112000000008],[-122.37787100000007,37.747146000000015],[-122.377425000000088,37.747139000000018],[-122.376704000000117,37.747119000000012],[-122.37656700000008,37.747159000000018],[-122.376449000000108,37.747137000000009],[-122.376335000000111,37.747139000000018],[-122.375645000000105,37.747023000000013],[-122.375234000000077,37.746854000000006],[-122.374981000000076,37.746645000000029],[-122.374883000000096,37.746542999999974],[-122.374836000000116,37.746398000000013],[-122.374850000000066,37.746087000000031],[-122.374919000000077,37.745904000000024],[-122.374209000000079,37.745018000000002],[-122.373976000000098,37.744949000000005],[-122.3732550000001,37.745370000000023],[-122.372984000000116,37.745401999999984],[-122.372773000000052,37.745518000000025],[-122.369508000000081,37.742064000000028],[-122.369053000000093,37.741628999999982],[-122.367651000000066,37.740137000000011],[-122.36785500000012,37.740010000000026],[-122.368264000000082,37.739982000000012],[-122.368269000000069,37.739845999999986],[-122.371250000000074,37.739664000000005],[-122.371250000000074,37.739835000000014],[-122.372417000000084,37.739742000000007],[-122.3739640000001,37.73964400000002],[-122.37355500000011,37.738684999999997],[-122.373069000000072,37.73827900000002],[-122.371361000000078,37.738096000000013],[-122.370752000000095,37.738096000000013],[-122.369685000000075,37.73823000000003],[-122.368290000000101,37.73821600000003],[-122.367477000000065,37.738316000000012],[-122.367472000000106,37.738153000000011],[-122.3679810000001,37.738026000000019],[-122.368568000000053,37.737967000000012],[-122.369131000000053,37.737749000000008],[-122.369668000000104,37.737709000000002],[-122.370770000000093,37.737348000000004],[-122.371199000000075,37.737067999999994],[-122.371733000000106,37.737134000000019],[-122.372171000000108,37.737090000000002],[-122.373439000000104,37.73712500000002],[-122.374396000000075,37.737808000000022],[-122.375549000000106,37.738358000000005],[-122.376074000000102,37.738478000000029],[-122.376225000000076,37.738483000000016],[-122.376510000000096,37.738289999999985],[-122.376795000000101,37.738447999999998],[-122.376452000000114,37.738747000000011],[-122.376346000000083,37.738730999999966],[-122.375841000000094,37.738618000000002],[-122.37539600000008,37.739107000000011],[-122.375379000000024,37.73923600000002],[-122.376455000000107,37.739764999999991],[-122.377370000000084,37.738549999999996],[-122.377448000000115,37.738156999999994],[-122.37756300000008,37.737952000000007],[-122.377353000000085,37.737832000000004],[-122.376961000000065,37.738205000000008],[-122.376684000000097,37.738156999999994],[-122.376555000000096,37.738061999999999],[-122.376289000000085,37.738123000000023],[-122.376219000000077,37.738184000000004],[-122.375152000000114,37.737814000000007],[-122.374984000000111,37.737614000000015],[-122.374923000000095,37.737186000000023],[-122.375083000000089,37.736729000000039],[-122.375950000000117,37.735887000000005],[-122.375985000000028,37.735758000000004],[-122.375896000000097,37.735517000000016],[-122.376087000000098,37.735188000000015],[-122.376062000000076,37.735100000000017],[-122.37596700000006,37.735005000000029],[-122.375444000000101,37.735331000000016],[-122.375366000000071,37.735358000000019],[-122.375289000000066,37.73536500000003],[-122.375212000000076,37.735344000000026],[-122.375083000000089,37.735263000000032],[-122.37509200000008,37.735154000000001],[-122.375169000000085,37.735092999999992],[-122.375083000000089,37.735032000000004],[-122.374997000000064,37.735005000000029],[-122.374937000000045,37.73493000000002],[-122.374946000000094,37.734835000000025],[-122.375075000000066,37.734693000000014],[-122.375143000000108,37.734686000000011],[-122.375229000000118,37.734699000000013],[-122.37530600000008,37.734597000000022],[-122.375135000000071,37.734496000000028],[-122.375066000000075,37.734428000000008],[-122.375015000000076,37.734272000000011],[-122.375032000000076,37.734238000000033],[-122.374997000000064,37.734061000000011],[-122.375023000000084,37.734020000000022],[-122.375083000000089,37.733898000000018],[-122.375195000000076,37.733783000000003],[-122.375246000000033,37.733660999999977],[-122.375247000000101,37.733546000000018],[-122.375608000000085,37.732944000000032],[-122.37548200000009,37.732804000000002],[-122.375232000000068,37.732960000000006],[-122.374717000000075,37.73265],[-122.374380000000116,37.732580000000013],[-122.374003000000101,37.732682000000004],[-122.372824000000023,37.733633000000005],[-122.372522000000089,37.733968999999973],[-122.37232500000006,37.734136000000035],[-122.372063000000082,37.734148000000019],[-122.371538000000101,37.73370700000001],[-122.371310000000094,37.733419000000012],[-122.370323000000099,37.732774000000006],[-122.369533000000104,37.732374000000007],[-122.369585000000086,37.732034000000006],[-122.368649000000104,37.731790000000011],[-122.368160000000074,37.732142999999979],[-122.367370000000108,37.731946000000015],[-122.366838000000115,37.732292000000008],[-122.366629000000103,37.732239000000007],[-122.365276000000065,37.733806000000023],[-122.36517300000007,37.733717000000034],[-122.366538000000077,37.732177000000014],[-122.365645000000072,37.731647000000031],[-122.365171000000089,37.73210700000002],[-122.364199000000113,37.731536000000027],[-122.363680000000102,37.731294000000005],[-122.362843000000098,37.73211300000002],[-122.362581000000105,37.731969999999976],[-122.363358000000062,37.731095000000025],[-122.3628250000001,37.730823000000036],[-122.362049000000113,37.73166100000001],[-122.361757000000068,37.73150200000002],[-122.362530000000106,37.730646000000029],[-122.36201700000008,37.730328000000014],[-122.362104000000073,37.730223000000031],[-122.361842000000109,37.730082000000024],[-122.360918000000083,37.730082000000024],[-122.360597000000098,37.73024999999997],[-122.35994100000012,37.730346000000004],[-122.359122000000042,37.72996599999999],[-122.358865000000094,37.729796000000015],[-122.358953000000113,37.729547000000025],[-122.361937000000069,37.72880199999998],[-122.362264000000025,37.728619000000016],[-122.362228000000073,37.728479000000021],[-122.361812000000114,37.728451000000014],[-122.357758000000089,37.729438999999999],[-122.357521000000091,37.729262000000013],[-122.357900000000058,37.728957000000037],[-122.360011000000085,37.728457000000013],[-122.360427000000101,37.728258000000011],[-122.3603880000001,37.728166000000023],[-122.359924000000078,37.728164000000021],[-122.357380000000049,37.728783000000007],[-122.356965000000088,37.728662000000021],[-122.357818000000051,37.726104999999997],[-122.361646000000093,37.725182000000011],[-122.361274000000066,37.724181999999978],[-122.357950000000116,37.724950000000014],[-122.357791000000091,37.72461000000002],[-122.361483000000078,37.723735999999995],[-122.362064000000117,37.724069000000021],[-122.364898000000096,37.725731000000025],[-122.365087000000088,37.725757999999999],[-122.365245000000101,37.725677000000019],[-122.365318000000087,37.725529000000009],[-122.365212000000099,37.725352000000001],[-122.362384000000105,37.723715000000013],[-122.362758000000113,37.723270000000014],[-122.360002000000108,37.721618000000014],[-122.360242000000085,37.721346000000018],[-122.363024000000067,37.722999999999985],[-122.363860000000088,37.722099000000021],[-122.359097000000119,37.719315999999999],[-122.359869000000117,37.718426000000022],[-122.362678000000102,37.720047000000015],[-122.363620000000083,37.719032000000006],[-122.362845000000107,37.718579000000013],[-122.362452000000076,37.71822300000003],[-122.362581000000105,37.718067000000026],[-122.363940000000085,37.716671000000005],[-122.364284000000069,37.716301000000009],[-122.364358000000081,37.716346000000009],[-122.364688000000115,37.716504000000029],[-122.364839000000075,37.716490999999998],[-122.364969000000073,37.716265999999997],[-122.365401000000077,37.716035000000012],[-122.365832000000111,37.716246000000034],[-122.366135000000114,37.716624000000017],[-122.366837000000103,37.717073000000013],[-122.367984000000092,37.717759000000036],[-122.369391000000036,37.71778400000003],[-122.369730000000104,37.717917000000021],[-122.370069000000072,37.718359000000014],[-122.370215000000115,37.718647000000004],[-122.371731000000068,37.718954000000025],[-122.372444000000087,37.718961000000021],[-122.373848000000066,37.718810000000012],[-122.374250000000089,37.719129000000017],[-122.374274000000071,37.719690000000007],[-122.37548800000009,37.720476000000005],[-122.375850000000099,37.721382999999975],[-122.376134000000107,37.722829000000033],[-122.376726000000104,37.723433000000021],[-122.37688700000011,37.7239],[-122.377574000000067,37.724002000000006],[-122.378203000000084,37.723918999999974],[-122.379192000000089,37.723547000000011],[-122.379348000000064,37.722991],[-122.379788000000104,37.722814000000021],[-122.380020000000101,37.722256999999999],[-122.38058000000008,37.721742999999975],[-122.380855000000096,37.721716000000029],[-122.381968000000086,37.722121999999999],[-122.386329000000089,37.724429999999991],[-122.386844000000082,37.724138000000011],[-122.385295000000099,37.72325900000002],[-122.384936000000067,37.72323200000001],[-122.384429000000083,37.722796999999964],[-122.382980000000074,37.721990000000019],[-122.382646000000079,37.721731000000013],[-122.382980000000074,37.721072000000028],[-122.383218000000028,37.720917000000028],[-122.383377000000095,37.720467000000028],[-122.383175000000037,37.720089000000002],[-122.382776000000078,37.719847000000023],[-122.382127000000111,37.719584000000019],[-122.38169400000011,37.719318000000008],[-122.381408000000022,37.718948000000019],[-122.381043000000105,37.718781999999997],[-122.380490000000094,37.718783000000009],[-122.380190000000113,37.718620000000023],[-122.379948000000098,37.718494000000014],[-122.379649000000114,37.718301000000004],[-122.379374000000084,37.717988000000027],[-122.379220000000089,37.717866000000029],[-122.378842000000105,37.717669000000001],[-122.378657000000075,37.717618000000002],[-122.378427000000087,37.717493000000019],[-122.378294000000096,37.717263000000024],[-122.377709000000067,37.717119000000018],[-122.377057000000065,37.716780000000007],[-122.375986000000097,37.716065000000029],[-122.376466000000022,37.715445999999986],[-122.376663000000065,37.715224000000006],[-122.376968000000119,37.714946000000026],[-122.377390000000076,37.714390000000016],[-122.378218000000103,37.713699000000013],[-122.378833000000114,37.713040999999997],[-122.379555000000096,37.712073999999987],[-122.379901000000118,37.71166999999997],[-122.380088000000114,37.711496000000032],[-122.380110000000101,37.711029000000003],[-122.380085000000079,37.710602999999999],[-122.379447000000098,37.710352000000029],[-122.3789060000001,37.709958000000029],[-122.378846000000067,37.709741000000001],[-122.3787260000001,37.709497000000006],[-122.378485000000111,37.709280000000014],[-122.378408000000064,37.708959999999983],[-122.378344000000084,37.708853000000005],[-122.378219000000072,37.708749000000033],[-122.377932000000044,37.70858800000002],[-122.37778100000007,37.708559000000008],[-122.377017000000109,37.708838000000021],[-122.376833000000119,37.708914000000014],[-122.37674700000008,37.709023000000009],[-122.376588000000098,37.709225000000025],[-122.376348000000064,37.709639000000038],[-122.376163000000091,37.709686000000026],[-122.375883000000059,37.709695999999994],[-122.375696000000104,37.709632000000006],[-122.375254000000112,37.709352000000017],[-122.375100000000089,37.709254000000008],[-122.374945000000054,37.70917900000002],[-122.374786000000086,37.709130000000002],[-122.374631000000093,37.709028000000004],[-122.374468000000107,37.708892000000013],[-122.374405000000081,37.708793000000028],[-122.374413000000118,37.708677000000016],[-122.374589000000057,37.708541000000018],[-122.37465700000007,37.708519000000003],[-122.376052000000087,37.708385],[-122.378288000000097,37.708438000000022],[-122.378494000000103,37.708417000000011],[-122.3787990000001,37.708466000000023],[-122.379323000000099,37.708405000000013],[-122.380245000000073,37.70874700000001],[-122.380566000000073,37.708824000000021],[-122.380817000000064,37.708818000000022],[-122.381271000000112,37.708883000000021],[-122.38164900000011,37.708856000000011],[-122.381944000000075,37.708906000000006],[-122.382253000000105,37.709150000000008],[-122.383070000000103,37.709142000000028],[-122.383695000000102,37.709176999999976],[-122.384442000000021,37.709272000000006],[-122.384759000000116,37.709400999999971],[-122.385565000000071,37.709802999999987],[-122.385801000000114,37.709968000000025],[-122.38603700000003,37.709994000000016],[-122.387008000000094,37.709544000000015],[-122.387635000000103,37.709082000000024],[-122.388004000000095,37.708756000000029],[-122.388210000000072,37.708701999999988],[-122.388381000000109,37.708818000000022],[-122.388553000000101,37.708851000000017],[-122.389377000000096,37.709381000000029],[-122.389729000000088,37.709604999999989],[-122.39008100000008,37.709449000000021],[-122.390356000000111,37.709198000000015],[-122.390501000000071,37.709157000000005],[-122.390540000000101,37.709176999999976],[-122.391420000000068,37.709639000000038],[-122.391592000000088,37.709598000000021],[-122.393265000000113,37.708266999999999],[-122.39377200000007,37.707887000000028],[-122.394120000000072,37.707358000000021],[-122.394043000000082,37.706930000000007],[-122.392742000000069,37.706161999999971],[-122.392510000000101,37.705443000000031],[-122.392415000000099,37.70529299999999],[-122.39229500000009,37.704954000000008],[-122.392313000000101,37.704763000000014],[-122.392742000000069,37.703636000000024],[-122.392955000000072,37.703307000000031],[-122.393051000000099,37.702889000000006],[-122.392973000000097,37.701280000000004],[-122.392724000000101,37.701001000000026],[-122.392673000000102,37.700703000000011],[-122.392541000000065,37.700418999999982],[-122.392478000000068,37.699906999999996],[-122.392182000000105,37.699538000000018],[-122.392149000000074,37.698190000000011],[-122.392062000000109,37.698060999999967],[-122.392029000000107,37.698013000000017],[-122.392081000000076,37.697633000000017],[-122.391737000000091,37.69590800000001],[-122.391574000000105,37.695650000000015],[-122.391446000000116,37.694358999999992],[-122.391274000000067,37.693877000000022],[-122.391145000000037,37.69285799999998],[-122.390982000000065,37.692431000000006],[-122.390811000000099,37.691575],[-122.390544000000105,37.690617000000003],[-122.390424000000024,37.690426999999985],[-122.390373000000096,37.689870000000006],[-122.389944000000099,37.688409999999998],[-122.389952000000065,37.68798900000003],[-122.389686000000097,37.687411000000004],[-122.389635000000084,37.687274999999971],[-122.389695000000117,37.687031000000005],[-122.389454000000043,37.686717999999999],[-122.38954000000011,37.686454000000012],[-122.389480000000106,37.686107000000007],[-122.389386000000115,37.685462000000001],[-122.389223000000072,37.684898000000011],[-122.38887100000008,37.683608000000028],[-122.388751000000099,37.682555000000008],[-122.388527000000067,37.682133000000022],[-122.388433000000077,37.681536000000037],[-122.388158000000033,37.679973000000004],[-122.38794400000009,37.678934000000034],[-122.387816000000115,37.678385000000013],[-122.387599000000094,37.678259000000018],[-122.387039000000087,37.677958000000004],[-122.386982000000103,37.67757300000001],[-122.386652000000069,37.677327000000005],[-122.385523000000106,37.677290000000013],[-122.384236000000072,37.677262999999975],[-122.383867000000066,37.677229000000032],[-122.383438000000098,37.677323999999992],[-122.38239900000012,37.67729700000001],[-122.381226000000083,37.677335000000014],[-122.381109000000109,37.67732000000003],[-122.380989000000085,37.677195000000012],[-122.380997000000065,37.676648000000014],[-122.381019000000109,37.675975999999999],[-122.381048000000121,37.675245000000018],[-122.381050000000101,37.674600000000012],[-122.381052000000082,37.673411000000009],[-122.381009000000034,37.673180000000016],[-122.381026000000077,37.672902000000022],[-122.381009000000034,37.672493999999972],[-122.381017000000043,37.672419000000012],[-122.381026000000077,37.672225000000005],[-122.381043000000105,37.671855000000008],[-122.381077000000062,37.671740000000021],[-122.381223000000105,37.671720000000015],[-122.382433000000105,37.671713000000025],[-122.384571000000108,37.671713000000025],[-122.386382000000097,37.671759999999971],[-122.387180000000072,37.671740000000021],[-122.387360000000086,37.671665000000012],[-122.387686000000087,37.670965000000017],[-122.387764000000104,37.67049699999999],[-122.387824000000094,37.669097000000001],[-122.38794400000009,37.668730000000004],[-122.388862000000103,37.668289000000023],[-122.389326000000096,37.668255000000009],[-122.391471000000081,37.668418000000024],[-122.391763000000097,37.668329000000021],[-122.392192000000065,37.668329000000021],[-122.392433000000068,37.66845200000003],[-122.392836000000045,37.668044000000016],[-122.39288800000007,37.667493999999998],[-122.392836000000045,37.667200999999984],[-122.392750000000106,37.666823000000015],[-122.392630000000082,37.666481000000012],[-122.39515400000009,37.665041000000031],[-122.39515400000009,37.664796000000017],[-122.394750000000101,37.664340999999972],[-122.392089000000112,37.665754000000014],[-122.391689000000085,37.665795000000031],[-122.39161700000011,37.665801999999999],[-122.391305000000045,37.665659000000034],[-122.391216000000071,37.665756999999999],[-122.391145000000037,37.665836000000013],[-122.390887000000035,37.665860000000031],[-122.390731000000116,37.665874000000009],[-122.390333000000069,37.665910999999966],[-122.389364000000072,37.665906000000021],[-122.389040000000094,37.665903999999998],[-122.388424000000043,37.665768000000021],[-122.388253000000105,37.66550999999999],[-122.387798000000117,37.665237999999981],[-122.387738000000112,37.664939000000025],[-122.387772000000069,37.664491000000005],[-122.386957000000081,37.664538000000022],[-122.386815000000098,37.664693999999997],[-122.386665000000065,37.664858000000009],[-122.385798000000094,37.664921000000014],[-122.385764000000094,37.665014000000014],[-122.385669000000064,37.665340000000015],[-122.385661000000084,37.665367000000018],[-122.385678000000112,37.666189000000003],[-122.385592000000074,37.666378999999992],[-122.385257000000038,37.666733000000022],[-122.3851370000001,37.666847999999987],[-122.385309000000092,37.667007000000012],[-122.385515000000026,37.66714300000001],[-122.385738000000117,37.667299000000014],[-122.385798000000094,37.667387000000012],[-122.385944000000094,37.667555000000021],[-122.385970000000086,37.667591000000037],[-122.385795000000115,37.66768500000002],[-122.385632000000072,37.667814000000021],[-122.3854690000001,37.667941000000027],[-122.384777000000085,37.668199999999992],[-122.38411600000012,37.668362999999999],[-122.383163000000081,37.668275000000023],[-122.381172000000106,37.668146000000014],[-122.381000000000114,37.667956000000025],[-122.381017000000043,37.664715000000008],[-122.381086000000096,37.664613000000017],[-122.381146000000101,37.664511000000026],[-122.383249000000049,37.664389000000021],[-122.383377000000095,37.663798000000021],[-122.382923000000105,37.663175999999972],[-122.382527000000096,37.662933000000002],[-122.382125000000073,37.662791999999982],[-122.381858000000094,37.662779000000008],[-122.381670000000085,37.662772000000011],[-122.3809660000001,37.662744999999973],[-122.380605000000102,37.662744999999973],[-122.380279000000087,37.662737999999969],[-122.380056000000096,37.662724000000019],[-122.3799700000001,37.662737999999969],[-122.379807000000028,37.662744999999973],[-122.379524000000103,37.662717000000022],[-122.3791200000001,37.662717000000022],[-122.378863000000109,37.662860000000002],[-122.378777000000071,37.663240999999999],[-122.378777000000071,37.663675000000012],[-122.378717000000094,37.663795000000007],[-122.378477000000075,37.66379100000001],[-122.378339000000068,37.66379100000001],[-122.378322000000082,37.663580000000024],[-122.378254000000084,37.663254000000002],[-122.378202000000115,37.662976000000029],[-122.377962000000082,37.662744999999973],[-122.377721000000093,37.662649000000023],[-122.377447000000075,37.662649000000023],[-122.376958000000073,37.66264300000001],[-122.376417000000103,37.66265599999997],[-122.375850000000099,37.662649000000023],[-122.375464000000093,37.662636000000006],[-122.375129000000072,37.662670000000013],[-122.374958000000106,37.662670000000013],[-122.374855000000039,37.662663000000009],[-122.374735000000086,37.662649000000023],[-122.374597000000108,37.662636000000006],[-122.374528000000083,37.662602000000021],[-122.374434000000093,37.662588000000014],[-122.374400000000094,37.66220100000001],[-122.374426000000071,37.661949000000007],[-122.374468000000107,37.661515000000023],[-122.374674000000084,37.661270000000023],[-122.375104000000107,37.660970999999982],[-122.375747000000075,37.661127000000022],[-122.376889000000091,37.661058999999973],[-122.377902000000091,37.661039000000024],[-122.378400000000084,37.661032000000027],[-122.37891400000008,37.661039000000024],[-122.379361000000117,37.660896000000022],[-122.37994400000008,37.660787999999997],[-122.379958000000087,37.660755000000016],[-122.380041000000077,37.660078000000013],[-122.38007300000011,37.659762000000015],[-122.379987000000071,37.65948999999997],[-122.379876000000095,37.659177000000021],[-122.379361000000117,37.658959999999993],[-122.379163000000091,37.658878000000009],[-122.379017000000104,37.658688000000019],[-122.378623000000076,37.658348000000018],[-122.378408000000064,37.658192000000014],[-122.377797000000115,37.657882000000015],[-122.37763800000009,37.657753000000014],[-122.377477000000098,37.657624000000006],[-122.377317000000104,37.657494999999976],[-122.377006000000094,37.657203000000017],[-122.376759000000106,37.65684700000002],[-122.376556000000022,37.656479000000012],[-122.376462000000103,37.65619999999997],[-122.376315000000062,37.655742000000018],[-122.376205000000098,37.655177000000016],[-122.375558000000083,37.655174000000009],[-122.375567000000075,37.654832000000013],[-122.376726000000104,37.654832000000013],[-122.377327000000093,37.654869000000005],[-122.377738000000079,37.654798000000014],[-122.378073000000114,37.653931000000021],[-122.378030000000095,37.65284800000002],[-122.377515000000088,37.652032000000005],[-122.378496000000084,37.651593000000034],[-122.37880300000009,37.65128500000003],[-122.379421000000093,37.651036999999988],[-122.379884000000075,37.649895000000001],[-122.380219000000068,37.649807000000017],[-122.380387000000056,37.649555000000007],[-122.380201000000099,37.649345000000018],[-122.380121000000074,37.648209000000001],[-122.38034200000007,37.648021000000007],[-122.381440000000097,37.647984000000001],[-122.382265000000075,37.647988000000026],[-122.383455000000069,37.648052000000028],[-122.38421200000009,37.648026999999999],[-122.385336000000109,37.647991999999981],[-122.385995000000094,37.647695999999982],[-122.386338000000066,37.647607000000015],[-122.386750000000092,37.64762799999999],[-122.387196000000046,37.647764000000024],[-122.38771100000011,37.647866000000029],[-122.388373000000101,37.64801300000002],[-122.388905000000094,37.647991999999981],[-122.389472000000097,37.647979000000014],[-122.389969000000107,37.647958000000038],[-122.390450000000101,37.647951000000035],[-122.391127000000068,37.647852000000022],[-122.391934000000106,37.647492000000021],[-122.392613000000054,37.646462999999969],[-122.393378000000098,37.64561800000002],[-122.393654000000069,37.644400000000005],[-122.39629900000007,37.64305999999997],[-122.397466000000108,37.642708000000006],[-122.398655463696372,37.642690891892563],[-122.398655463696372,37.642690891892549],[-122.398787000000112,37.642689000000018],[-122.399320000000074,37.643052000000019],[-122.400058000000072,37.643744000000005],[-122.401009000000087,37.646132999999985],[-122.401194000000103,37.64617299999999],[-122.40126600000012,37.64607100000002],[-122.400309000000078,37.64360600000002],[-122.401256000000075,37.643677000000025],[-122.401350409548712,37.643630634374802],[-122.401350409548712,37.643630634374816],[-122.402325000000104,37.643151999999979],[-122.402686000000102,37.642904000000023],[-122.402763000000107,37.642542999999989],[-122.402462000000114,37.642640000000021],[-122.401822000000095,37.642974000000017],[-122.401577000000103,37.643221000000004],[-122.401059000000089,37.643242000000015],[-122.400200000000098,37.643106999999979],[-122.399044000000103,37.642465000000023],[-122.398964000000092,37.64242100000002],[-122.399378000000098,37.641919000000016],[-122.398655463696372,37.642242767796937],[-122.398655463696372,37.4947160422671],[-122.46252332800492,37.4947160422671],[-122.462685000000079,37.494828000000012],[-122.463223000000056,37.495272000000007],[-122.463379000000089,37.495435000000008],[-122.463779000000102,37.495784000000015],[-122.464109000000107,37.496026000000015],[-122.464352000000105,37.496147000000029],[-122.464786000000089,37.496451000000015],[-122.464977000000104,37.496573000000005],[-122.465150000000079,37.496660000000027],[-122.465497000000028,37.496944999999968],[-122.466019000000031,37.497336999999973],[-122.46634800000011,37.497509999999963],[-122.466557000000066,37.497658000000037],[-122.466531000000117,37.497853000000013],[-122.466492000000116,37.498053000000006],[-122.466786000000113,37.498287999999988],[-122.467084000000114,37.498520000000021],[-122.467386000000118,37.498756000000007],[-122.467726000000113,37.498997000000038],[-122.468230000000091,37.499336000000021],[-122.468723000000111,37.499664999999993],[-122.469115000000073,37.499924999999976],[-122.469536000000119,37.500251000000027],[-122.470008000000078,37.500520999999992],[-122.470675000000085,37.500785000000029],[-122.471514000000099,37.501077000000038],[-122.471628000000095,37.501051000000018],[-122.471765000000104,37.50079700000002],[-122.472109000000088,37.500848000000012],[-122.472461000000109,37.500867000000021],[-122.472786000000085,37.50082400000003],[-122.473064000000065,37.500704000000006],[-122.474324000000095,37.499949999999998],[-122.475470000000087,37.499306000000026],[-122.476676000000083,37.498629999999999],[-122.476955000000089,37.498474000000023],[-122.478761000000105,37.497461000000008],[-122.479304000000113,37.497156999999973],[-122.479459000000119,37.497079000000006],[-122.479662000000104,37.497011000000015],[-122.480128000000093,37.496874000000027],[-122.4820050000001,37.496321000000002],[-122.483552000000117,37.495865000000009],[-122.485728000000023,37.495223000000017],[-122.485817000000097,37.495230000000014],[-122.485849000000115,37.495277000000023],[-122.485838000000101,37.495335999999973],[-122.484924000000092,37.495614999999987],[-122.483621000000113,37.495995000000015],[-122.480349000000103,37.49694700000002],[-122.480290000000096,37.497028],[-122.480020000000025,37.49711099999999],[-122.479898000000091,37.497077000000019],[-122.479404000000102,37.497257000000012],[-122.478592000000077,37.497722000000024],[-122.476536000000053,37.49888600000002],[-122.475935000000092,37.499202999999973],[-122.475893000000113,37.499362999999995],[-122.475194000000101,37.499743000000024],[-122.474993000000083,37.499736000000034],[-122.474462000000102,37.500058000000031],[-122.474532000000067,37.500620000000019],[-122.474683000000113,37.501025000000006],[-122.474964000000071,37.501360000000012],[-122.475289000000117,37.501609999999999],[-122.475580000000065,37.501805000000019],[-122.475854000000083,37.501964000000008],[-122.476245000000034,37.502165000000005],[-122.47670200000006,37.502338000000009],[-122.477095000000077,37.502460000000028],[-122.477321000000103,37.502163000000024],[-122.477757000000082,37.502163000000024],[-122.477827000000076,37.502259999999978],[-122.477842000000109,37.502361000000022],[-122.477992000000086,37.502348000000019],[-122.478785000000101,37.501029000000017],[-122.478883000000081,37.500935999999975],[-122.478988000000086,37.500867000000021],[-122.479103000000109,37.50081099999997],[-122.479207000000116,37.500777000000014],[-122.480539000000078,37.500528999999979],[-122.480562000000077,37.500540000000022],[-122.480568000000105,37.500560999999998],[-122.480550000000108,37.500583000000013],[-122.479549000000119,37.500766000000006],[-122.479307000000105,37.500817000000026],[-122.479122000000075,37.500878999999983],[-122.47895600000011,37.500970000000024],[-122.478833000000108,37.501095000000007],[-122.478046000000106,37.502438999999995],[-122.478277000000091,37.502899000000014],[-122.479596000000072,37.503370000000018],[-122.480116000000095,37.503248000000013],[-122.480637000000087,37.503249000000025],[-122.481093000000115,37.503234000000013],[-122.481342000000083,37.503083000000039],[-122.481416000000095,37.503015000000012],[-122.481469000000104,37.502850000000024],[-122.48156400000012,37.502792999999969],[-122.481962000000067,37.502849000000019],[-122.48207100000009,37.502865],[-122.482269000000102,37.502894000000012],[-122.482479000000097,37.502924000000007],[-122.482835000000108,37.502975000000006],[-122.483056000000119,37.503001000000005],[-122.483413000000056,37.502950000000006],[-122.483753000000092,37.502898000000002],[-122.483824000000098,37.502860000000005],[-122.483854000000093,37.502734000000018],[-122.483896000000072,37.502702999999997],[-122.48475800000007,37.502829000000013],[-122.485041000000095,37.502871000000013],[-122.485154000000094,37.502664000000017],[-122.485370000000074,37.50168699999999],[-122.485387000000074,37.501558000000031],[-122.485374000000064,37.501424],[-122.485316000000097,37.501323000000014],[-122.485226000000097,37.501231000000004],[-122.483700000000084,37.50059000000001],[-122.483686000000091,37.500566999999997],[-122.483705000000114,37.500535000000028],[-122.483739000000085,37.500535000000028],[-122.485266000000095,37.501168000000014],[-122.485375000000104,37.501245000000011],[-122.485460000000103,37.501342000000015],[-122.4855060000001,37.501465000000017],[-122.485508000000095,37.50158200000002],[-122.485256000000106,37.502702999999997],[-122.48506500000012,37.503073999999991],[-122.485125000000096,37.503109000000002],[-122.485127000000091,37.503155],[-122.485087000000078,37.503189000000013],[-122.485082000000105,37.50331700000001],[-122.485794000000055,37.503422000000022],[-122.48603600000007,37.503423000000019],[-122.486280000000065,37.503422000000022],[-122.486540000000105,37.503378000000019],[-122.48687000000011,37.503352000000021],[-122.487217000000072,37.503360000000036],[-122.487617000000114,37.503265000000013],[-122.488051000000098,37.503283000000032],[-122.488381000000075,37.503275999999971],[-122.48872800000008,37.503213999999979],[-122.489110000000025,37.503075999999993],[-122.489526000000055,37.502988000000002],[-122.490030000000075,37.502789000000007],[-122.491246000000075,37.502538000000008],[-122.491506000000086,37.502545000000012],[-122.492322000000115,37.502223999999984],[-122.492582000000098,37.502041000000027],[-122.493207000000069,37.501712000000033],[-122.493850000000066,37.50131200000002],[-122.494075000000066,37.501242999999995],[-122.4943710000001,37.501053000000013],[-122.494631000000084,37.500939000000031],[-122.494909000000092,37.500715000000021],[-122.495134000000064,37.500618999999972],[-122.495482000000067,37.500332000000007],[-122.495777000000103,37.500122999999995],[-122.495846000000057,37.499932000000015],[-122.4958120000001,37.499932000000015],[-122.495916000000094,37.499811000000008],[-122.495985000000118,37.499656000000016],[-122.495986000000102,37.499595000000028],[-122.495951000000105,37.49952499999997],[-122.495898000000082,37.499413000000018],[-122.495787000000078,37.499307000000009],[-122.4956320000001,37.499137000000019],[-122.495592000000116,37.498991000000004],[-122.495787000000078,37.49888600000002],[-122.496037000000101,37.498725000000015],[-122.49619400000006,37.498586000000024],[-122.496280000000084,37.498448999999994],[-122.496333000000121,37.498249000000023],[-122.496332000000066,37.497850000000028],[-122.496176000000091,37.497529000000036],[-122.495864000000026,37.497181000000026],[-122.495742000000092,37.497006999999996],[-122.49525600000004,37.496504999999992],[-122.495065000000068,37.496218000000013],[-122.4949960000001,37.496053000000025],[-122.494572000000105,37.49503200000003],[-122.494377969307791,37.4947160422671],[-122.494578026446618,37.4947160422671],[-122.494632000000081,37.494801999999993],[-122.494849000000073,37.49514600000002],[-122.495016000000106,37.495416000000013],[-122.495208000000105,37.495483000000036],[-122.496211000000102,37.495462000000018],[-122.497093000000092,37.495392999999972],[-122.497845000000098,37.495293000000018],[-122.498339000000115,37.495304000000004],[-122.498694000000086,37.49544400000002],[-122.499076000000102,37.495550000000009],[-122.499267000000089,37.495575000000017],[-122.499389000000093,37.495652000000007],[-122.499406000000079,37.495680000000007],[-122.499371000000096,37.495758000000016],[-122.499319000000099,37.495819000000004],[-122.499301000000102,37.495903999999982],[-122.499302000000071,37.495964999999998],[-122.49935400000011,37.49601700000003],[-122.499371000000096,37.496096000000001],[-122.499510000000086,37.496243],[-122.499614000000093,37.496305000000014],[-122.499770000000026,37.496530000000021],[-122.499822000000094,37.496642999999978],[-122.499978000000084,37.496860000000034],[-122.500395000000069,37.497356000000025],[-122.50043000000008,37.497492999999977],[-122.500517000000102,37.497564000000018],[-122.500586000000069,37.497677000000024],[-122.50065600000012,37.497744000000004],[-122.500673000000035,37.497841000000015],[-122.500638000000095,37.498085000000003],[-122.500552000000113,37.498258],[-122.5003430000001,37.498500000000021],[-122.500187000000068,37.498569000000018],[-122.500100000000046,37.498657000000001],[-122.500066000000103,37.498751000000034],[-122.500013000000067,37.499116000000008],[-122.499978000000084,37.499195000000022],[-122.499892000000102,37.499254999999998],[-122.499822000000094,37.499334000000012],[-122.499718000000101,37.499360999999986],[-122.4995440000001,37.499490999999992],[-122.499440000000092,37.499523999999994],[-122.499319000000099,37.499629000000006],[-122.499058000000076,37.499793000000025],[-122.498919000000086,37.499932000000015],[-122.498833000000062,37.499934000000017],[-122.498694000000086,37.500298000000029],[-122.498642000000117,37.500505000000011],[-122.49865900000006,37.500715000000021],[-122.498746000000068,37.500992000000025],[-122.498971000000097,37.501252000000022],[-122.499180000000109,37.501286999999998],[-122.499319000000099,37.501373000000036],[-122.499631000000107,37.501521000000011],[-122.499787000000083,37.501668000000009],[-122.499874000000077,37.50179900000002],[-122.499927000000113,37.502503000000026],[-122.49997900000011,37.50275300000002],[-122.500169000000099,37.503128000000039],[-122.500326000000086,37.503284000000029],[-122.500499000000033,37.503544000000019],[-122.500725000000102,37.503786000000005],[-122.501176000000115,37.504196000000022],[-122.50138500000007,37.504456000000005],[-122.501749000000103,37.504784000000008],[-122.502131000000119,37.505045000000024],[-122.502791000000101,37.505374000000025],[-122.503104000000079,37.505557999999986],[-122.503364000000104,37.50573900000002],[-122.503694000000095,37.505860000000013],[-122.50397200000009,37.505922000000005],[-122.504736000000094,37.506225000000001],[-122.505031000000088,37.50643400000002],[-122.505239000000088,37.506519999999973],[-122.505569000000079,37.506772000000005],[-122.505882000000071,37.507050000000014],[-122.506298000000086,37.507545000000007],[-122.506489000000101,37.507823000000016],[-122.507010000000079,37.508811999999978],[-122.507149000000084,37.508899000000021],[-122.507392000000081,37.509107000000036],[-122.507618000000065,37.509367000000019],[-122.507860000000107,37.509585000000015],[-122.508017000000081,37.509843999999987],[-122.508225000000095,37.510098000000006],[-122.508399000000097,37.510227000000036],[-122.508798000000098,37.510660999999985],[-122.509076000000078,37.510930000000016],[-122.509354000000073,37.511121000000031],[-122.509701000000106,37.511304999999993],[-122.510031000000112,37.511599000000004],[-122.510708000000065,37.512050000000016],[-122.511021000000113,37.512432000000025],[-122.511228000000116,37.512658999999999],[-122.511836000000102,37.513134000000022],[-122.511941000000107,37.513292000000014],[-122.512027000000089,37.513482000000039],[-122.512305000000097,37.513916000000023],[-122.512496000000112,37.514297000000028],[-122.512756000000039,37.515391000000015],[-122.512843000000089,37.516165000000022],[-122.512930000000097,37.516348000000015],[-122.5135030000001,37.517153999999991],[-122.513781000000108,37.517753000000013],[-122.513954000000055,37.51883000000003],[-122.514024000000092,37.519099000000026],[-122.514197000000095,37.519462000000004],[-122.514441000000062,37.519810000000007],[-122.514666000000091,37.520052],[-122.515204000000111,37.520599999999973],[-122.515413000000024,37.520755999999984],[-122.51569000000012,37.52104299999997],[-122.516124000000076,37.521259000000015],[-122.516594000000083,37.521451000000006],[-122.516853000000083,37.521598000000004],[-122.517010000000099,37.521729000000022],[-122.517271000000093,37.522066000000024],[-122.5173920000001,37.522327999999987],[-122.517930000000092,37.523819999999986],[-122.5180000000001,37.524089999999987],[-122.517982000000075,37.524332000000001],[-122.517757000000074,37.524575999999989],[-122.517287000000067,37.525173999999993],[-122.517200000000088,37.525356000000031],[-122.517062000000081,37.525835000000015],[-122.517114000000106,37.525939000000015],[-122.517166000000074,37.526207000000014],[-122.517166000000074,37.526408000000018],[-122.517132000000075,37.526624000000012],[-122.51713100000012,37.526850000000032],[-122.517149000000117,37.527084000000031],[-122.517201000000085,37.527214999999991],[-122.517357000000089,37.527362000000025],[-122.517496000000065,37.52745700000002],[-122.517739000000105,37.527760000000022],[-122.518069000000082,37.527953000000025],[-122.518138000000107,37.528012000000004],[-122.518104000000093,37.528100000000016],[-122.517965000000089,37.528108000000017],[-122.517878000000067,37.528099000000012],[-122.517809000000071,37.52811700000003],[-122.517496000000065,37.52837000000001],[-122.517375000000087,37.528429999999993],[-122.517287000000067,37.528561000000003],[-122.517218000000099,37.528630000000028],[-122.517114000000106,37.528898000000005],[-122.517061000000098,37.529228999999972],[-122.517062000000081,37.52939300000002],[-122.517149000000117,37.529557999999973],[-122.517305000000064,37.529620000000023],[-122.5174090000001,37.529627000000019],[-122.517513000000079,37.529739999999983],[-122.517565000000104,37.529895999999987],[-122.517600000000115,37.530122999999996],[-122.517652000000098,37.53026100000001],[-122.517652000000098,37.530400999999969],[-122.517739000000105,37.530626000000005],[-122.5180000000001,37.530652000000011],[-122.518069000000082,37.530729000000022],[-122.518104000000093,37.530826000000005],[-122.518208000000072,37.530946000000029],[-122.518242000000114,37.531104000000006],[-122.518207000000103,37.531216000000022],[-122.518155000000064,37.531268000000004],[-122.518155000000064,37.531381000000017],[-122.518242000000114,37.531406000000004],[-122.518277000000097,37.531460000000017],[-122.518260000000097,37.531527999999973],[-122.518173000000047,37.531624000000029],[-122.518225000000072,37.531859000000026],[-122.518294000000111,37.531911000000015],[-122.518382000000074,37.532066999999998],[-122.51853700000008,37.532240999999999],[-122.518676000000099,37.532309000000012],[-122.518729000000107,37.532405999999988],[-122.518781000000033,37.53244000000003],[-122.518780000000106,37.532535000000017],[-122.518919000000082,37.532727000000015],[-122.519093000000083,37.532743000000018],[-122.519336000000052,37.533064000000039],[-122.519527000000082,37.533151000000011],[-122.519701000000083,37.533386000000021],[-122.519718000000097,37.533437999999997],[-122.519736000000066,37.533699000000013],[-122.519771000000077,37.533776000000017],[-122.519787000000093,37.533925000000018],[-122.519701000000083,37.533958000000034],[-122.519666000000086,37.534063999999979],[-122.519718000000097,37.534098000000014],[-122.519735000000082,37.534202000000022],[-122.519683000000114,37.534331999999999],[-122.519649000000101,37.534627000000022],[-122.519527000000082,37.534687000000005],[-122.519544000000096,37.534809000000038],[-122.519752000000096,37.534887000000019],[-122.519822000000104,37.534993000000021],[-122.519892000000098,37.535337999999982],[-122.519892000000098,37.535453000000018],[-122.519839000000118,37.535503999999975],[-122.519804000000079,37.535616999999988],[-122.519840000000087,37.535650999999994],[-122.519822000000104,37.535730000000036],[-122.519700000000029,37.535869000000027],[-122.519788000000091,37.535946000000017],[-122.519839000000118,37.536025000000009],[-122.519822000000104,37.536267999999993],[-122.519770000000065,37.536398999999982],[-122.519649000000101,37.536502000000013],[-122.519666000000086,37.536590000000018],[-122.519701000000083,37.536651000000013],[-122.519666000000086,37.536884999999984],[-122.519718000000097,37.537041000000023],[-122.519736000000066,37.537187000000017],[-122.519631000000075,37.537318000000006],[-122.519492000000085,37.537352999999975],[-122.519336000000052,37.537301000000006],[-122.519041000000115,37.53731700000003],[-122.518954000000093,37.537335000000013],[-122.518711000000081,37.537571000000014],[-122.518590000000117,37.537726000000006],[-122.518502000000097,37.537892000000014],[-122.518468000000112,37.538193999999976],[-122.518485000000098,37.538586000000038],[-122.518468000000112,37.53875900000002],[-122.518485000000098,37.539079000000022],[-122.518607000000031,37.539116000000014],[-122.518590000000117,37.539244000000011],[-122.51853700000008,37.539341000000015],[-122.518520000000095,37.53943600000003],[-122.51853700000008,37.539608999999992],[-122.518502000000097,37.539740000000009],[-122.518520000000095,37.539819000000023],[-122.518590000000117,37.539923000000023],[-122.518555000000106,37.540044000000009],[-122.518468000000112,37.540052999999972],[-122.518399000000073,37.540131000000002],[-122.518398000000118,37.540208000000028],[-122.518312000000108,37.540365000000016],[-122.518207000000103,37.540399000000022],[-122.518103000000096,37.540322000000018],[-122.518016000000074,37.540182000000023],[-122.517912000000081,37.540122999999987],[-122.517791000000088,37.540085999999974],[-122.51768700000008,37.540182999999978],[-122.51758200000009,37.540243000000018],[-122.517530000000065,37.540331000000045],[-122.517565000000104,37.54042500000002],[-122.517669000000112,37.540608000000006],[-122.517600000000115,37.540748000000022],[-122.517461000000068,37.540833000000013],[-122.517374000000089,37.540841000000007],[-122.517391000000103,37.540903000000007],[-122.517478000000096,37.540903000000007],[-122.517704000000066,37.540974000000006],[-122.517739000000105,37.541006999999979],[-122.517739000000105,37.541119999999992],[-122.517634000000072,37.541241000000014],[-122.517339000000106,37.541407000000014],[-122.517357000000089,37.541467999999995],[-122.517426000000114,37.541520000000027],[-122.517565000000104,37.541685000000015],[-122.51758200000009,37.541770999999997],[-122.517530000000065,37.542041000000033],[-122.517426000000114,37.542214000000016],[-122.517443000000085,37.542318000000002],[-122.517530000000065,37.542510000000028],[-122.517461000000068,37.542725999999981],[-122.517513000000079,37.542986999999997],[-122.517460000000071,37.543288999999994],[-122.51735600000012,37.543412999999994],[-122.517235000000099,37.543446000000003],[-122.517166000000074,37.543524000000012],[-122.517044000000112,37.543603000000019],[-122.516940000000105,37.543637999999973],[-122.516784000000072,37.543820000000011],[-122.516662000000096,37.543838000000001],[-122.516627000000113,37.543940999999975],[-122.516558000000046,37.544029000000023],[-122.516541000000103,37.544097000000022],[-122.516558000000046,37.544218000000001],[-122.516523000000106,37.544349000000018],[-122.516558000000046,37.544409999999999],[-122.516662000000096,37.544723000000026],[-122.516680000000065,37.544818000000021],[-122.516662000000096,37.544983000000009],[-122.516593000000071,37.545052000000027],[-122.516454000000081,37.545052000000027],[-122.516350000000088,37.545017000000009],[-122.51628000000008,37.544974000000018],[-122.516020000000097,37.54497300000002],[-122.515742000000103,37.545182000000004],[-122.515603000000112,37.545357000000003],[-122.515516000000119,37.545512000000009],[-122.515377000000072,37.545851000000027],[-122.515221000000054,37.546526999999998],[-122.514978000000099,37.547099999999979],[-122.514579000000097,37.548638000000004],[-122.514492000000089,37.54934100000002],[-122.514440000000064,37.549608000000028],[-122.514370000000071,37.550319999999985],[-122.514318000000088,37.55059900000002],[-122.514231000000095,37.550885000000015],[-122.514162000000113,37.551198000000014],[-122.51414500000007,37.551943999999992],[-122.514023000000094,37.552631000000012],[-122.513849000000093,37.553263000000022],[-122.513797000000096,37.553576000000014],[-122.513762000000085,37.554079000000016],[-122.513658000000078,37.554452000000019],[-122.513606000000053,37.55484400000001],[-122.513606000000053,37.55570300000003],[-122.51358900000011,37.555988999999983],[-122.513710000000103,37.556250999999996],[-122.513919000000115,37.556432000000008],[-122.514023000000094,37.556466000000022],[-122.514127000000101,37.556457000000002],[-122.514161000000101,37.556518000000018],[-122.514058000000105,37.556691000000022],[-122.514075000000091,37.556737000000027],[-122.514127000000101,37.556770999999998],[-122.514249000000092,37.556804999999997],[-122.514335000000102,37.556875000000012],[-122.514405000000096,37.556961000000022],[-122.514526000000103,37.556970000000028],[-122.514804000000098,37.557213000000019],[-122.514874000000106,37.55730100000001],[-122.514908000000077,37.557439000000031],[-122.514891000000119,37.557534999999987],[-122.514926000000102,37.557578000000014],[-122.515065000000121,37.55767299999998],[-122.515221000000054,37.557699],[-122.515256000000079,37.557778000000013],[-122.515221000000054,37.557889999999993],[-122.515325000000104,37.558133999999988],[-122.515359000000103,37.558272000000009],[-122.515481000000037,37.558263000000025],[-122.515568000000101,37.55828200000002],[-122.515672000000094,37.558350000000004],[-122.515776000000074,37.558384000000011],[-122.515846000000096,37.558375000000005],[-122.515880000000109,37.558420000000019],[-122.515897000000095,37.558541999999974],[-122.515863000000095,37.558714999999971],[-122.515776000000074,37.558785000000022],[-122.515602000000072,37.558863000000002],[-122.515481000000037,37.558942000000009],[-122.515272000000095,37.559002000000021],[-122.515082000000078,37.559009999999994],[-122.514978000000099,37.559069999999977],[-122.514908000000077,37.55922799999999],[-122.514821000000069,37.559349000000019],[-122.514717000000118,37.559349000000019],[-122.514647000000068,37.559435999999998],[-122.514561000000086,37.559506000000006],[-122.514422000000096,37.559791000000011],[-122.514318000000088,37.559946000000011],[-122.514318000000088,37.560217000000009],[-122.514162000000113,37.561015999999988],[-122.514248000000094,37.561302000000026],[-122.514404000000098,37.561666000000017],[-122.514422000000096,37.561797000000027],[-122.514544000000086,37.561901000000027],[-122.514734000000075,37.561987000000016],[-122.514786000000115,37.562047999999997],[-122.514943000000088,37.562092000000028],[-122.515082000000078,37.562047000000028],[-122.515203000000071,37.562100000000029],[-122.515308000000104,37.562170000000023],[-122.5153940000001,37.562353000000009],[-122.5153940000001,37.562490000000018],[-122.515307000000035,37.562559999999991],[-122.515221000000054,37.56256800000002],[-122.514873000000051,37.562767000000022],[-122.514387000000085,37.563193999999996],[-122.514266000000106,37.563358000000022],[-122.514196000000069,37.563497000000012],[-122.514161000000101,37.56368800000002],[-122.514127000000101,37.564131999999994],[-122.514144000000087,37.564399999999985],[-122.514214000000081,37.564730000000019],[-122.514301000000103,37.564991000000013],[-122.514387000000085,37.565607000000028],[-122.514492000000089,37.566085000000008],[-122.514769000000086,37.566753000000027],[-122.514943000000088,37.567056000000001],[-122.515151000000102,37.567177999999977],[-122.5153940000001,37.567152000000007],[-122.515585000000087,37.567169000000028],[-122.515950000000075,37.567065000000021],[-122.516193000000072,37.567065000000021],[-122.51655700000012,37.566988000000023],[-122.516801000000115,37.567021000000018],[-122.517183000000088,37.56715999999998],[-122.517390000000077,37.567188000000016],[-122.517669000000112,37.567299000000006],[-122.517773000000119,37.567402999999999],[-122.517929000000095,37.567473999999976],[-122.518050000000116,37.567499000000026],[-122.518155000000064,37.567603000000013],[-122.518189000000078,37.567681999999984],[-122.518137000000095,37.568123],[-122.518050000000116,37.568254000000003],[-122.518016000000074,37.568263000000023],[-122.517911000000069,37.568375000000039],[-122.517808000000073,37.568444000000028],[-122.517616000000103,37.568516000000002],[-122.517426000000114,37.568533000000016],[-122.517148000000105,37.568686999999983],[-122.517060000000086,37.568827000000006],[-122.516974000000104,37.568886999999989],[-122.516801000000115,37.568964999999999],[-122.516627000000113,37.56901000000002],[-122.516349000000105,37.569147999999984],[-122.51628000000008,37.569279000000016],[-122.516279000000111,37.569367000000007],[-122.516332000000119,37.569486000000019],[-122.516558000000046,37.569566000000009],[-122.5168350000001,37.569617000000008],[-122.516974000000104,37.569669000000005],[-122.517165000000105,37.569685999999969],[-122.517303000000055,37.569774000000017],[-122.517373000000077,37.56986000000002],[-122.517339000000106,37.570033000000016],[-122.517269000000098,37.570191000000023],[-122.517112000000068,37.570416000000023],[-122.516905000000094,37.570589999999982],[-122.516766000000104,37.570745000000016],[-122.516783000000117,37.570833000000036],[-122.516852000000085,37.570910000000005],[-122.516957000000119,37.570962000000002],[-122.516974000000104,37.570996000000008],[-122.517043000000101,37.57104200000002],[-122.517113000000094,37.571032999999979],[-122.517304000000095,37.571050000000035],[-122.517460000000071,37.571172000000018],[-122.51758200000009,37.571170000000009],[-122.517755000000093,37.571049000000023],[-122.51794600000008,37.571014000000019],[-122.518016000000074,37.571014000000019],[-122.518154000000095,37.570972000000019],[-122.518259000000029,37.570987999999979],[-122.518363000000079,37.571198000000024],[-122.518398000000118,37.571345000000022],[-122.518363000000079,37.571500000000022],[-122.518276000000085,37.571587000000015],[-122.518172000000106,37.571648000000017],[-122.518085000000028,37.571735000000004],[-122.517790000000105,37.571846999999991],[-122.518085000000028,37.572021000000021],[-122.518155000000064,37.572092000000019],[-122.518328000000096,37.572090000000003],[-122.518502000000097,37.572134000000013],[-122.518554000000066,37.572213000000012],[-122.518554000000066,37.572307000000009],[-122.5184840000001,37.572404000000006],[-122.518305000000097,37.572538999999978],[-122.518173000000047,37.572397000000009],[-122.517798000000084,37.572568000000025],[-122.51753500000008,37.572713000000007],[-122.517470000000117,37.57282600000002],[-122.517460000000071,37.572959000000012],[-122.517512000000053,37.573081000000009],[-122.517616000000103,37.573081000000009],[-122.5176850000001,37.573185000000024],[-122.517842000000073,37.573307000000021],[-122.517963000000094,37.573238000000018],[-122.518050000000116,37.573220000000035],[-122.518155000000064,37.573314999999987],[-122.518380000000064,37.573332000000015],[-122.518536000000097,37.573540000000023],[-122.518623000000119,37.573549000000007],[-122.518727000000069,37.573514000000024],[-122.518849000000088,37.57343700000002],[-122.518987000000109,37.573435999999987],[-122.519057000000103,37.573549000000007],[-122.519057000000103,37.573646000000011],[-122.51902200000012,37.573767000000004],[-122.519040000000103,37.57388700000002],[-122.519144000000082,37.573853000000007],[-122.519265000000104,37.573845000000013],[-122.51938700000008,37.573791000000021],[-122.519578000000095,37.573679000000013],[-122.519943000000097,37.573610999999993],[-122.520099000000101,37.573660999999987],[-122.520117000000099,37.573774000000036],[-122.520064000000119,37.573880000000024],[-122.520134000000112,37.573956999999986],[-122.520203000000109,37.573956999999986],[-122.52037700000011,37.573897000000038],[-122.520481000000103,37.573922000000017],[-122.520550000000071,37.57399200000004],[-122.520533000000114,37.574253000000027],[-122.520411000000081,37.57459099999997],[-122.520429000000107,37.574737000000027],[-122.520359000000113,37.574895000000019],[-122.52037700000011,37.574938000000031],[-122.520411000000081,37.574956000000022],[-122.520446000000078,37.575008000000032],[-122.520446000000078,37.575051000000016],[-122.520394000000096,37.575076999999993],[-122.520325000000071,37.575163000000039],[-122.52037600000007,37.575285000000022],[-122.52037700000011,37.57534600000001],[-122.520221000000092,37.575512000000039],[-122.520030000000105,37.575590000000005],[-122.519873000000089,37.575623000000014],[-122.519717000000085,37.575685000000036],[-122.519526000000027,37.575797000000016],[-122.519266000000087,37.576160999999999],[-122.519057000000103,37.576257000000005],[-122.518675000000087,37.576214999999976],[-122.518554000000066,37.576154000000024],[-122.518432000000104,37.576171000000016],[-122.51834500000011,37.576222999999992],[-122.51824100000006,37.576386999999983],[-122.518102000000084,37.576690000000013],[-122.518050000000116,37.57690000000003],[-122.518016000000074,37.577082000000004],[-122.517998000000105,37.577317000000015],[-122.518137000000095,37.578020000000031],[-122.518102000000084,37.578306000000005],[-122.518050000000116,37.578540000000018],[-122.518033000000102,37.578750000000007],[-122.518068000000113,37.578957000000024],[-122.518050000000116,37.579122000000012],[-122.517998000000105,37.579225000000008],[-122.517963000000094,37.579356000000018],[-122.517981000000063,37.579712000000029],[-122.518033000000102,37.579946000000014],[-122.518050000000116,37.581075000000027],[-122.518016000000074,37.581327999999999],[-122.517876000000115,37.581752999999999],[-122.517755000000093,37.581831000000001],[-122.517668000000086,37.581925000000027],[-122.517616000000103,37.582047000000017],[-122.517616000000103,37.582351000000003],[-122.517581000000092,37.582680000000025],[-122.517581000000092,37.583392000000018],[-122.517529000000067,37.583610000000029],[-122.517494000000084,37.583878000000006],[-122.517512000000053,37.584338000000024],[-122.517599000000118,37.585069000000011],[-122.517599000000118,37.585346000000001],[-122.517564000000078,37.585701999999991],[-122.517477000000056,37.586014000000013],[-122.517442000000102,37.586328000000009],[-122.517494000000084,37.587021999999969],[-122.517425000000117,37.587889000000018],[-122.517425000000117,37.588288000000013],[-122.517338000000052,37.588905000000025],[-122.517251000000115,37.58906900000003],[-122.517251000000115,37.589279000000005],[-122.517320000000083,37.58993700000002],[-122.51735600000012,37.590518000000031],[-122.517355000000066,37.590910000000001],[-122.51754600000011,37.591264999999972],[-122.517720000000111,37.591491000000012],[-122.517945000000083,37.591681000000023],[-122.519091000000103,37.592411000000006],[-122.51942200000012,37.592663000000016],[-122.520116000000044,37.59325399999998],[-122.520533000000114,37.593409000000001],[-122.520654000000022,37.593497000000035],[-122.52082800000008,37.593766000000024],[-122.520897000000076,37.593965000000026],[-122.520949000000101,37.594190000000026],[-122.520914000000118,37.594391000000016],[-122.52082800000008,37.594503000000017],[-122.520758000000086,37.594554000000009],[-122.52037600000007,37.594686000000031],[-122.520134000000112,37.594825000000007],[-122.5199250000001,37.594884000000008],[-122.519230000000093,37.594999000000008],[-122.518102000000084,37.595111000000024],[-122.517702000000085,37.59513700000003],[-122.517164000000051,37.595225000000013],[-122.516661000000099,37.595284000000021],[-122.516278000000099,37.595345000000009],[-122.515550000000076,37.595527000000018],[-122.515307000000035,37.595605000000013],[-122.515098000000094,37.595683000000015],[-122.514873000000051,37.595838999999991],[-122.514716000000107,37.595954000000027],[-122.514560000000074,37.59615100000002],[-122.514404000000098,37.596387],[-122.514282000000094,37.596620999999985],[-122.514161000000101,37.597116000000014],[-122.514108000000093,37.597429000000005],[-122.514074000000093,37.597837000000013],[-122.514091000000079,37.598020000000027],[-122.514403000000073,37.598225999999997],[-122.51469900000005,37.598306000000015],[-122.515011000000101,37.59831400000003],[-122.515081000000109,37.59836600000002],[-122.515098000000094,37.598451999999973],[-122.515081000000109,37.598522000000038],[-122.515029000000069,37.598625000000006],[-122.514942000000119,37.598704000000005],[-122.514838000000111,37.59871200000002],[-122.514681000000081,37.598695999999997],[-122.5133620000001,37.598278000000029],[-122.513015000000109,37.598209000000004],[-122.51268500000009,37.598122000000018],[-122.511834000000064,37.597983000000013],[-122.511435000000091,37.597880000000032],[-122.510550000000094,37.597349000000015],[-122.510202000000106,37.597271000000013],[-122.509924000000098,37.597159999999974],[-122.509577000000093,37.597046000000027],[-122.509195000000119,37.596821000000027],[-122.508084000000096,37.596317999999975],[-122.507650000000112,37.596178999999992],[-122.507320000000107,37.596109999999975],[-122.507112000000092,37.596109000000027],[-122.506486000000081,37.596273000000011],[-122.506088000000034,37.596396000000013],[-122.505775000000071,37.596509000000012],[-122.505497000000091,37.596682000000023],[-122.505115000000089,37.596889999999973],[-122.504698000000118,37.597046000000027],[-122.5039340000001,37.597487999999998],[-122.503587000000095,37.597741999999982],[-122.502876000000114,37.598401000000031],[-122.502320000000097,37.599085999999986],[-122.501712000000069,37.599721000000009],[-122.501260000000116,37.600294000000012],[-122.500601000000103,37.60133400000003],[-122.500357000000108,37.60190800000003],[-122.500288000000111,37.602228000000032],[-122.500167000000118,37.602436999999981],[-122.500079000000099,37.602679999999999],[-122.499958000000078,37.602931000000027],[-122.49985400000007,37.603098000000031],[-122.499837000000085,37.603278000000024],[-122.49988900000011,37.603755999999997],[-122.500045000000085,37.604207000000009],[-122.500132000000079,37.604363000000021],[-122.500931000000037,37.604860000000031],[-122.501261000000056,37.605136000000016],[-122.501712000000069,37.605379000000006],[-122.50181600000009,37.605465000000031],[-122.501972000000094,37.605717999999996],[-122.501990000000077,37.605858000000026],[-122.502059000000116,37.60596900000003],[-122.502042000000102,37.606090999999999],[-122.502059000000116,37.606203000000008],[-122.502007000000106,37.606440000000006],[-122.50202400000002,37.606568000000003],[-122.502059000000116,37.606620000000007],[-122.502059000000116,37.606732999999998],[-122.501990000000077,37.606741],[-122.501937000000083,37.606829000000019],[-122.501903000000112,37.607090000000007],[-122.50181600000009,37.607480000000031],[-122.501573000000079,37.607731000000022],[-122.501347000000052,37.607845000000026],[-122.501191000000119,37.607871000000017],[-122.500931000000037,37.607967000000016],[-122.500462000000113,37.60800100000003],[-122.500184000000075,37.607975000000025],[-122.499941000000092,37.607940000000006],[-122.499715000000108,37.607872000000022],[-122.499541000000107,37.607852999999999],[-122.499333000000092,37.607809999999979],[-122.499107000000066,37.607836000000013],[-122.498969000000116,37.607880000000002],[-122.498674000000094,37.608079000000011],[-122.498500000000092,37.608252000000029],[-122.497979000000086,37.609000000000002],[-122.497857000000067,37.609215999999996],[-122.497736000000089,37.60948599999999],[-122.497562000000087,37.610136000000026],[-122.497388000000086,37.610595000000032],[-122.497267000000093,37.611030000000021],[-122.496955000000085,37.612010999999974],[-122.496937000000116,37.612193000000012],[-122.496972000000071,37.612333],[-122.497128000000103,37.612559000000005],[-122.497198000000111,37.612611000000008],[-122.497406000000083,37.612628000000029],[-122.497527000000076,37.612670999999992],[-122.497736000000089,37.612879000000035],[-122.49782300000011,37.613017000000013],[-122.49791000000009,37.613616999999984],[-122.498048000000082,37.613772999999988],[-122.498118000000034,37.613876999999974],[-122.49820500000007,37.613955999999973],[-122.498256000000083,37.614069000000036],[-122.498239000000069,37.614200000000011],[-122.498170000000101,37.61428500000001],[-122.498066000000108,37.61431200000002],[-122.497944000000047,37.614399000000013],[-122.497909000000092,37.614485000000016],[-122.497892000000107,37.614597000000032],[-122.497840000000068,37.615344999999976],[-122.497875000000079,37.615543000000031],[-122.497927000000118,37.61568299999999],[-122.498048000000082,37.615820999999968],[-122.498065000000068,37.615925000000004],[-122.4980130000001,37.616064999999999],[-122.498030000000114,37.61616800000003],[-122.497944000000047,37.616298999999984],[-122.497632000000095,37.616378000000026],[-122.497475000000108,37.61647199999998],[-122.497371000000044,37.616569000000013],[-122.497319000000076,37.61680299999999],[-122.497302000000104,37.616897000000009],[-122.497354000000115,37.617150000000024],[-122.497354000000115,37.617305999999999],[-122.497406000000083,37.617601000000029],[-122.497319000000076,37.618044000000026],[-122.497353000000075,37.618790000000011],[-122.497458000000094,37.619016000000016],[-122.497683000000066,37.619225],[-122.497753000000117,37.619250000000008],[-122.497857000000067,37.619234000000013],[-122.497944000000047,37.619268000000027],[-122.498031000000069,37.619362999999986],[-122.498031000000069,37.619485000000026],[-122.498082000000082,37.619564000000032],[-122.498187000000101,37.619641000000016],[-122.498344000000102,37.619642000000034],[-122.498760000000075,37.619570999999993],[-122.498846000000114,37.619597000000027],[-122.498933000000065,37.619667000000021],[-122.498986000000102,37.619754999999977],[-122.499021000000113,37.620179000000007],[-122.498986000000102,37.620275000000021],[-122.498934000000077,37.620345000000029],[-122.498864000000083,37.620388000000027],[-122.498760000000075,37.620405000000019],[-122.498552000000117,37.620553000000015],[-122.498360000000048,37.620613000000027],[-122.498187000000101,37.620785999999988],[-122.498083000000094,37.620864000000026],[-122.4979960000001,37.620864000000026],[-122.497909000000092,37.620838999999997],[-122.497874000000081,37.620847999999974],[-122.497753000000117,37.620926000000004],[-122.497580000000085,37.620970000000014],[-122.497510000000119,37.621074000000014],[-122.497336000000118,37.621064000000004],[-122.497267000000093,37.621030000000012],[-122.497180000000114,37.621029000000007],[-122.496937000000116,37.621195000000007],[-122.496763000000115,37.621465000000015],[-122.496451000000107,37.622218000000011],[-122.496416000000067,37.622315000000008],[-122.496416000000067,37.622419000000008],[-122.496381000000099,37.62258300000002],[-122.496312000000117,37.622680000000024],[-122.496260000000092,37.62270400000002],[-122.496173000000098,37.622889000000022],[-122.496069000000062,37.623269000000015],[-122.496086000000091,37.623442999999988],[-122.496121000000073,37.623494000000022],[-122.496121000000073,37.623607000000007],[-122.496086000000091,37.623703999999975],[-122.495947000000072,37.62392000000002],[-122.495913000000115,37.624025000000039],[-122.495860000000107,37.624485000000014],[-122.495860000000107,37.624685000000014],[-122.495808000000082,37.624859000000015],[-122.495843000000065,37.624935000000015],[-122.495791000000082,37.624971000000002],[-122.495808000000082,37.625370000000004],[-122.495739000000114,37.625656000000021],[-122.49558300000011,37.626081000000021],[-122.495427000000106,37.626369000000011],[-122.495374000000098,37.626673000000011],[-122.495392000000066,37.627002000000026],[-122.495357000000098,37.627184000000028],[-122.495340000000041,37.627462000000001],[-122.495356000000015,37.627714000000005],[-122.495340000000041,37.627990999999973],[-122.495097000000086,37.629155000000019],[-122.495027000000064,37.62957100000002],[-122.494923000000085,37.631065],[-122.49485300000012,37.631533000000019],[-122.494836000000106,37.631828000000013],[-122.494923000000085,37.633061000000019],[-122.494870000000105,37.633469000000026],[-122.494714000000073,37.634171000000016],[-122.494714000000073,37.634658000000009],[-122.494680000000074,37.635465000000025],[-122.494627000000094,37.635796000000013],[-122.494419000000065,37.636732000000023],[-122.494384000000068,37.637219000000016],[-122.494402000000022,37.63754800000001],[-122.49445400000009,37.638008000000028],[-122.494593000000052,37.638434000000018],[-122.494714000000073,37.638651000000031],[-122.494766000000112,37.638825000000026],[-122.494697000000116,37.639024999999997],[-122.494523000000115,37.639389000000016],[-122.494436000000078,37.639718000000016],[-122.494350000000097,37.64065500000001],[-122.494332000000071,37.641237999999994],[-122.494193000000081,37.642096000000002],[-122.494263000000075,37.642419000000011],[-122.494280000000089,37.642713999999984],[-122.494141000000099,37.643502000000026],[-122.494159000000067,37.644023000000026],[-122.494280000000089,37.644605000000006],[-122.494384000000068,37.645655000000012],[-122.494263000000075,37.646619000000008],[-122.494297000000088,37.646956999999986],[-122.49415800000007,37.647868999999986],[-122.494175000000112,37.648338000000003],[-122.49422800000012,37.648727999999991],[-122.494280000000089,37.649448999999997],[-122.494280000000089,37.649891000000025],[-122.494245000000063,37.650352000000019],[-122.494193000000081,37.650715000000012],[-122.494175000000112,37.651141000000024],[-122.494124000000113,37.651576000000013],[-122.494106000000087,37.651931000000012],[-122.49422800000012,37.653129000000021],[-122.494245000000063,37.653521000000019],[-122.494297000000088,37.653944999999986],[-122.494280000000089,37.654848000000037],[-122.494297000000088,37.655204000000012],[-122.494297000000088,37.656437000000025],[-122.494245000000063,37.657097000000007],[-122.494332000000071,37.658085999999997],[-122.494332000000071,37.658631000000021],[-122.494263000000075,37.659656000000034],[-122.494262000000077,37.660411000000011],[-122.494314000000102,37.661349000000037],[-122.49441800000011,37.661704999999984],[-122.494523000000115,37.662555000000012],[-122.494505000000089,37.662779999999984],[-122.494592000000111,37.663146000000005],[-122.494696000000104,37.663320000000006],[-122.494956000000101,37.663494000000014],[-122.495200000000096,37.663615000000014],[-122.4951650000001,37.663770000000014],[-122.495095000000106,37.663885000000036],[-122.495026000000095,37.663927000000015],[-122.495044000000064,37.664292999999986],[-122.495113000000075,37.664648999999997],[-122.495582000000056,37.665498000000021],[-122.495703000000091,37.665542000000023],[-122.495894000000121,37.665567000000017],[-122.495946000000089,37.665628000000041],[-122.495998000000071,37.66573200000002],[-122.496068000000065,37.665750000000024],[-122.496137000000104,37.665853999999975],[-122.496137000000104,37.666003000000011],[-122.49606700000011,37.666088000000009],[-122.496050000000096,37.666201000000036],[-122.496068000000065,37.666253000000012],[-122.496137000000104,37.666271000000023],[-122.496224000000097,37.666201999999977],[-122.496276000000066,37.666245000000025],[-122.496310000000108,37.666220000000031],[-122.496380000000102,37.666331],[-122.496345000000119,37.666470000000004],[-122.496189000000086,37.666506000000012],[-122.496085000000036,37.666504999999972],[-122.495981000000072,37.666723000000012],[-122.495911000000049,37.667174000000031],[-122.495842000000081,37.667390000000019],[-122.495773000000071,37.66798900000002],[-122.495790000000113,37.66859700000002],[-122.495738000000088,37.669327000000024],[-122.495686000000106,37.669735000000003],[-122.495702000000094,37.671174999999998],[-122.495651000000095,37.671765000000015],[-122.49580700000007,37.672651000000009],[-122.49580700000007,37.672973000000013],[-122.495790000000113,37.673302000000021],[-122.495686000000106,37.673901000000029],[-122.495686000000106,37.674187000000011],[-122.495790000000113,37.674812000000003],[-122.49585900000011,37.675412000000016],[-122.495876000000095,37.675786000000016],[-122.49585900000011,37.676193000000026],[-122.496033000000097,37.678042000000005],[-122.496119000000093,37.679838000000018],[-122.496275000000068,37.68074900000002],[-122.496258000000097,37.681366000000025],[-122.496310000000108,37.682079000000009],[-122.496484000000109,37.683084000000029],[-122.496709000000109,37.683718000000013],[-122.496813000000103,37.684075000000021],[-122.496883000000111,37.68475100000002],[-122.497040000000084,37.685933000000013],[-122.497074000000097,37.686365000000009],[-122.497161000000105,37.686688000000025],[-122.4974220000001,37.687207000000008],[-122.49750800000011,37.687451000000038],[-122.497821000000073,37.68857000000002],[-122.498081000000113,37.689584999999994],[-122.498775000000109,37.691783000000008],[-122.499087000000088,37.693482999999993],[-122.499140000000054,37.693927000000016],[-122.499226000000078,37.694326000000018],[-122.499747000000085,37.696027999999998],[-122.499835000000104,37.696427000000007],[-122.499886000000103,37.696868999999992],[-122.500251000000119,37.697997000000008],[-122.500425000000121,37.698692000000037],[-122.500529000000071,37.699222000000013],[-122.50061500000011,37.700288],[-122.500772000000069,37.700854],[-122.500928000000101,37.701625000000014],[-122.501206000000096,37.702381000000017],[-122.501327000000089,37.702781000000016],[-122.501397000000097,37.703317000000027],[-122.501466000000079,37.703561000000022],[-122.501518000000118,37.70383799999999],[-122.501518000000118,37.704057000000034],[-122.501553000000101,37.704202999999985],[-122.501605000000069,37.704342999999973],[-122.501709000000105,37.704524000000006],[-122.501935000000103,37.705079000000012],[-122.502056000000096,37.705418000000009],[-122.502178000000072,37.705835],[-122.502212000000085,37.706026999999999],[-122.502351000000104,37.706356000000014],[-122.502525000000077,37.706860000000013],[-122.502681000000109,37.707171000000017],[-122.502751000000103,37.707363000000022],[-122.502750000000077,37.707518000000022],[-122.50271600000012,37.707640000000012],[-122.502733000000077,37.707868000000033],[-122.502786000000114,37.708066000000017],[-122.502907000000079,37.708265000000026],[-122.503080000000111,37.708725000000037],[-122.503150000000105,37.709021000000014],[-122.50322000000007,37.70948099999999],[-122.503289000000095,37.709810000000026],[-122.503445000000028,37.710219000000002],[-122.503636000000085,37.710833999999998],[-122.503775000000061,37.711199999999998],[-122.503879000000111,37.711563000000012],[-122.504053000000113,37.712285000000016],[-122.504244000000071,37.713482000000013],[-122.504400000000103,37.714072999999978],[-122.505268000000086,37.716687000000015],[-122.505633000000103,37.717596000000022],[-122.505754000000096,37.718031000000018],[-122.506292000000087,37.719638000000003],[-122.506396000000095,37.720323000000022],[-122.506414000000063,37.720610000000036],[-122.506588000000079,37.721685000000001],[-122.507021000000094,37.723560000000028],[-122.50724700000012,37.724836000000018],[-122.507334000000114,37.725791000000008],[-122.507403000000096,37.726945000000022],[-122.507403000000096,37.727302000000023],[-122.507338000000104,37.727767000000014],[-122.507326000000106,37.728660000000012],[-122.507427000000121,37.729070000000021],[-122.50743900000009,37.729754],[-122.507493000000096,37.730283999999976],[-122.507569000000089,37.730818000000006],[-122.507574000000119,37.73134000000001],[-122.507564000000102,37.731786000000028],[-122.507585000000077,37.732384000000017],[-122.507649000000086,37.732885000000017],[-122.5077840000001,37.733954000000026],[-122.5078910000001,37.734476000000036],[-122.508184000000085,37.735303999999985],[-122.508253000000096,37.736859000000031],[-122.508253000000096,37.737170000000013],[-122.508323000000104,37.738143000000022],[-122.508167000000071,37.739932000000017],[-122.508184000000085,37.740157000000018],[-122.508306000000104,37.740590999999995],[-122.508583000000115,37.741432000000017],[-122.508653000000109,37.74170300000003],[-122.50868800000012,37.742075000000021],[-122.508670000000052,37.742588000000019],[-122.508687000000094,37.742838999999982],[-122.508844000000053,37.74395899999999],[-122.508896000000078,37.744270000000029],[-122.508983000000114,37.744617999999988],[-122.50913900000009,37.745635000000021],[-122.509260000000069,37.746944000000006],[-122.509313000000091,37.747918000000027],[-122.509486000000095,37.749097000000035],[-122.509556000000089,37.749401000000013],[-122.509625000000085,37.749548000000004],[-122.509781000000118,37.750044999999979],[-122.509764000000104,37.750495000000015],[-122.509816000000072,37.750771999999976],[-122.510025000000113,37.751242000000012],[-122.510059000000069,37.75146800000001],[-122.510077000000095,37.75190000000002],[-122.510146000000077,37.752109999999973],[-122.510215000000102,37.752204999999968],[-122.510250000000113,37.752397000000009],[-122.510285000000039,37.752699000000014],[-122.510320000000078,37.753368000000016],[-122.510337000000078,37.754141000000018],[-122.510371000000035,37.754574000000027],[-122.510441000000071,37.754939000000022],[-122.510476000000082,37.755322000000007],[-122.510476000000082,37.755581000000014],[-122.510580000000118,37.756189999999975],[-122.510823000000087,37.757230000000021],[-122.510858000000098,37.757872000000013],[-122.510910000000095,37.758186000000009],[-122.51087500000007,37.75851500000001],[-122.510858000000098,37.759089000000017],[-122.511014000000074,37.760061000000015],[-122.511222000000117,37.760790000000021],[-122.51133900000012,37.761477999999968],[-122.511431000000073,37.762014000000029],[-122.511465000000086,37.762343000000008],[-122.51157000000012,37.76276],[-122.511726000000095,37.763740999999982],[-122.511691000000113,37.765469000000031],[-122.511761000000106,37.766207000000023],[-122.511935000000108,37.766962000000014],[-122.511934000000096,37.767440000000015],[-122.511883000000111,37.767647000000011],[-122.511778000000078,37.768516000000005],[-122.511796000000047,37.769557000000006],[-122.512282000000098,37.772491000000009],[-122.512334000000024,37.774164999999982],[-122.512455000000102,37.775111999999986],[-122.512525000000068,37.775547000000003],[-122.512837000000118,37.776822000000017],[-122.512855000000101,37.776961000000021],[-122.512889000000058,37.777092000000003],[-122.512941000000069,37.777196000000018],[-122.513306000000114,37.77749],[-122.513462000000089,37.777638000000032],[-122.513601000000079,37.777690000000014],[-122.51381000000012,37.777846000000018],[-122.513844000000091,37.777941000000006],[-122.513914000000099,37.777993000000016],[-122.514226000000107,37.778089000000001],[-122.514296000000073,37.778201999999986],[-122.514348000000112,37.778358000000033],[-122.514400000000109,37.77861],[-122.514365000000097,37.778914],[-122.514313000000072,37.779096999999993],[-122.514139000000071,37.779540000000019],[-122.514122000000071,37.779634000000016],[-122.514192000000094,37.77976499999999],[-122.514157000000083,37.780018000000027],[-122.514157000000083,37.780216000000024],[-122.514244000000105,37.780539000000026],[-122.514538000000101,37.780814999999997],[-122.514608000000095,37.78091000000002],[-122.514659000000094,37.781035000000031],[-122.514595000000085,37.781164000000025],[-122.514252000000113,37.781497000000023],[-122.514035000000121,37.781483999999992],[-122.514020000000102,37.78148300000003],[-122.513780000000054,37.781375000000018],[-122.513784000000115,37.781390000000016],[-122.513865000000081,37.781680000000009],[-122.513688000000087,37.782063000000022],[-122.513582000000099,37.782290000000032],[-122.513574000000077,37.782282999999971],[-122.513435000000115,37.782791000000032],[-122.513064000000099,37.782690000000002],[-122.513041000000058,37.782684000000032],[-122.512835000000081,37.783002999999987],[-122.512835000000081,37.783034000000029],[-122.512827000000101,37.783477000000019],[-122.512821000000102,37.783481000000009],[-122.51238100000009,37.783708000000011],[-122.512775000000076,37.783980000000007],[-122.512630000000101,37.784168999999999],[-122.51242000000012,37.784078999999991],[-122.512135000000114,37.783791000000008],[-122.512106000000074,37.783762000000017],[-122.511926000000102,37.78400000000002],[-122.51147900000008,37.784258000000023],[-122.511265000000108,37.784624000000022],[-122.51074100000001,37.784543000000006],[-122.510252000000094,37.784765999999991],[-122.510106000000079,37.784590000000009],[-122.509891000000096,37.784800000000004],[-122.509703000000087,37.784792999999972],[-122.509566000000106,37.785075000000028],[-122.509077000000033,37.785617000000002],[-122.508442000000088,37.785916000000014],[-122.50815800000008,37.78618700000002],[-122.507764000000108,37.786526000000009],[-122.5073000000001,37.786871999999974],[-122.506802000000064,37.78721500000001],[-122.50682700000003,37.787442000000013],[-122.5066640000001,37.787295999999991],[-122.506106000000116,37.787553999999972],[-122.506073000000114,37.78812700000001],[-122.505858000000103,37.788188000000012],[-122.505214000000066,37.788042999999995],[-122.505222000000103,37.787941000000011],[-122.504982000000098,37.787846000000009],[-122.504029000000088,37.788069999999976],[-122.503669000000073,37.787954000000006],[-122.501794000000089,37.788034999999986],[-122.50024500000012,37.788385000000012],[-122.499703000000082,37.788587000000007],[-122.499387000000112,37.788447000000019],[-122.499094000000071,37.788226000000016],[-122.498940000000104,37.788374999999988],[-122.497875000000079,37.787818999999978],[-122.49782400000008,37.787988000000013],[-122.497352000000106,37.787527000000011],[-122.496605000000102,37.787295999999991],[-122.49562700000007,37.787453000000006],[-122.494811000000084,37.78781200000001],[-122.494700000000094,37.788052],[-122.494536000000068,37.788063000000001],[-122.494373000000081,37.787826000000017],[-122.494185000000044,37.787602000000021],[-122.493661000000088,37.787540999999997],[-122.49301800000012,37.787761000000032],[-122.492787000000121,37.787853999999989],[-122.492632000000086,37.78773200000002],[-122.49166200000009,37.788024000000028],[-122.490924000000106,37.788404999999997],[-122.490418000000091,37.788858000000026],[-122.490159000000105,37.789104999999999],[-122.489817000000059,37.789386999999969],[-122.489035000000072,37.789260000000006],[-122.488127000000091,37.789327000000021],[-122.487795000000077,37.789481000000009],[-122.487613000000096,37.789472000000004],[-122.487540000000109,37.789543000000002],[-122.487381000000084,37.789665000000021],[-122.486924000000087,37.789907000000014],[-122.486706000000098,37.790157000000015],[-122.486192000000102,37.790517000000008],[-122.485959000000008,37.790731000000015],[-122.485875000000007,37.790818000000016],[-122.485690000000091,37.791074000000023],[-122.485432000000088,37.791301000000011],[-122.485207000000074,37.791482000000009],[-122.485115000000093,37.791615000000007],[-122.484924000000092,37.792078000000011],[-122.484594000000115,37.79260500000003],[-122.48427200000009,37.79285800000001],[-122.483943000000053,37.793379000000009],[-122.483874000000085,37.793700000000001],[-122.483771000000118,37.793914000000008],[-122.483694000000085,37.794091999999999],[-122.483541000000073,37.794345000000021],[-122.48340500000009,37.794589000000009],[-122.4832380000001,37.794956000000013],[-122.483154000000098,37.795191000000017],[-122.483017000000089,37.795530000000021],[-122.482961000000088,37.795708000000005],[-122.482783000000083,37.796134000000016],[-122.482668000000061,37.796427999999999],[-122.482597000000112,37.796686000000037],[-122.482485000000068,37.796931000000008],[-122.482305000000096,37.797224999999969],[-122.482149000000121,37.797681000000026],[-122.482032000000117,37.79804899999997],[-122.48194000000008,37.798327000000029],[-122.481890000000078,37.798393000000019],[-122.481441000000117,37.799098000000029],[-122.481356000000105,37.799445000000034],[-122.481086000000104,37.799554999999998],[-122.480952000000116,37.800132000000019],[-122.480750000000086,37.800285000000009],[-122.480363000000096,37.801107000000002],[-122.479849000000101,37.80228900000003],[-122.479708000000102,37.803120999999976],[-122.479337000000086,37.803472000000021],[-122.479048000000063,37.804380000000016],[-122.478732000000065,37.80516800000003],[-122.478721000000093,37.805638000000002],[-122.478688000000091,37.806015000000023],[-122.47834900000008,37.807900999999994],[-122.478117000000097,37.808081999999999],[-122.477886000000098,37.808366000000007],[-122.477843000000064,37.808495000000008],[-122.477817000000087,37.808691999999994],[-122.477757000000082,37.80892900000002],[-122.477740000000082,37.809219000000027],[-122.477680000000078,37.809525000000015],[-122.477671000000086,37.809750000000015],[-122.47769700000012,37.810558999999998],[-122.477660000000071,37.810663000000012],[-122.477517000000091,37.811018000000011],[-122.477233000000098,37.811038000000011],[-122.477062000000103,37.811031000000007],[-122.476787000000087,37.810963000000029],[-122.47658100000011,37.810902000000006],[-122.476427000000115,37.810733000000027],[-122.476376000000087,37.810635000000033],[-122.476256000000092,37.810317000000012],[-122.476222000000092,37.810195000000007],[-122.476188000000107,37.810025000000024],[-122.476186000000069,37.809892000000005],[-122.476145000000116,37.809781000000029],[-122.47605800000008,37.809587000000001],[-122.475990000000067,37.809550999999999],[-122.475604000000089,37.809388000000034],[-122.475467000000108,37.809347000000017],[-122.474976000000041,37.809241],[-122.4747950000001,37.809170000000002],[-122.474660000000071,37.809144000000032],[-122.474229000000065,37.809084999999996],[-122.47405900000004,37.809083000000015],[-122.473544000000089,37.809089000000014],[-122.473347000000089,37.809083000000015],[-122.472719000000112,37.809009999999979],[-122.472118000000066,37.808902000000025],[-122.471345000000071,37.808773000000016],[-122.470626000000095,37.808512999999998],[-122.470264000000086,37.808318999999969],[-122.469974000000008,37.808149000000014],[-122.469672000000088,37.807926000000023],[-122.469449000000097,37.807722000000005],[-122.469268000000099,37.807505000000006],[-122.469114000000104,37.807280999999989],[-122.468959000000098,37.807071000000022],[-122.46883100000008,37.806990000000006],[-122.468659000000102,37.806942000000021],[-122.46831600000003,37.806902000000029],[-122.467990000000114,37.806887999999979],[-122.467620000000039,37.80681300000002],[-122.46732900000012,37.806712000000005],[-122.466951000000066,37.80653499999999],[-122.466505000000083,37.806317999999997],[-122.466178000000099,37.806189999999972],[-122.46581800000007,37.806000000000012],[-122.465243000000115,37.805620000000012],[-122.464737000000099,37.805320999999999],[-122.46431600000011,37.805050000000023],[-122.464050000000071,37.804894000000019],[-122.463792000000069,37.804806000000021],[-122.463569000000078,37.804779000000025],[-122.463200000000029,37.804813000000024],[-122.462814000000094,37.804860000000005],[-122.462539000000106,37.804935000000008],[-122.462282000000101,37.804955000000035],[-122.462050000000076,37.804894000000019],[-122.461930000000095,37.804867000000016],[-122.461698000000069,37.804854000000013],[-122.461140000000071,37.804927999999997],[-122.460608000000107,37.805037000000027],[-122.459776000000076,37.805193000000017],[-122.459260000000071,37.805281000000022],[-122.458600000000104,37.805362000000009],[-122.45811900000011,37.805490999999982],[-122.457510000000099,37.805640000000011],[-122.457312000000101,37.805647000000022],[-122.457072000000096,37.805681],[-122.456832000000105,37.805715000000014],[-122.456565000000069,37.805783000000034],[-122.456111000000078,37.80587100000001],[-122.455587000000094,37.806006000000018],[-122.455072000000101,37.806162000000008],[-122.454626000000118,37.80626400000002],[-122.454351000000074,37.80630500000003],[-122.454274000000098,37.80621],[-122.454162000000082,37.806169000000025],[-122.454257000000112,37.806094999999978],[-122.454317000000117,37.806013000000014],[-122.454351000000074,37.805681],[-122.454351000000074,37.805571999999998],[-122.454076000000057,37.805606000000004],[-122.454059000000115,37.805701000000028],[-122.454008000000044,37.805816000000036],[-122.453930000000113,37.805890999999981],[-122.453630000000089,37.805973000000016],[-122.45341600000009,37.806054000000032],[-122.453261000000055,37.806054000000032],[-122.453003000000052,37.806047000000021],[-122.452703000000071,37.806040000000024],[-122.452334000000064,37.806080999999992],[-122.452102000000039,37.806094999999978],[-122.45152700000007,37.806217000000011],[-122.451038000000082,37.806311000000029],[-122.450446000000071,37.806562000000028],[-122.449931000000078,37.806671000000016],[-122.449493000000075,37.806725000000007],[-122.449090000000112,37.806779000000013],[-122.448901000000077,37.806718000000004],[-122.448712000000114,37.806718000000004],[-122.448334000000102,37.806739000000007],[-122.448154000000102,37.80681300000002],[-122.447974000000073,37.806922000000029],[-122.447227000000098,37.807417000000015],[-122.445262000000113,37.807627000000011],[-122.4447890000001,37.807600000000036],[-122.443785000000076,37.807702000000035],[-122.443271000000095,37.807832999999981],[-122.442613000000065,37.808015000000019],[-122.442089000000109,37.808069000000032],[-122.440716000000094,37.808258999999985],[-122.440484000000069,37.808421999999993],[-122.440081000000077,37.808828000000005],[-122.440031000000118,37.808852999999999],[-122.439977000000098,37.808828000000005],[-122.439956000000066,37.808739000000031],[-122.439993000000086,37.808616000000029],[-122.44029400000008,37.808226000000012],[-122.44039600000005,37.808166],[-122.440616000000105,37.808111000000018],[-122.442338000000106,37.80791199999998],[-122.4424080000001,37.807878000000017],[-122.442450000000065,37.807819000000002],[-122.4424080000001,37.807628000000022],[-122.442681000000078,37.807594000000002],[-122.44271900000011,37.807781000000013],[-122.442654000000104,37.807788999999978],[-122.442702000000097,37.807860999999988],[-122.443674000000073,37.807624000000025],[-122.443641000000085,37.80749299999998],[-122.4436630000001,37.807467000000017],[-122.444312000000096,37.80735300000002],[-122.447010000000105,37.806529999999995],[-122.446785000000077,37.805402999999991],[-122.442509000000086,37.805950000000017],[-122.442429000000061,37.806047000000021],[-122.442520000000115,37.806501000000011],[-122.442574000000064,37.806572999999986],[-122.442549000000099,37.806651000000024],[-122.442552000000077,37.806690999999994],[-122.442499000000097,37.806700000000006],[-122.44246100000008,37.806665999999971],[-122.442402000000101,37.806665999999971],[-122.442374000000086,37.806728000000007],[-122.4379670000001,37.807293000000008],[-122.437910000000102,37.807299999999984],[-122.437791000000118,37.807316000000036],[-122.437763000000103,37.807319000000021],[-122.435879000000114,37.807559999999995],[-122.43581200000007,37.807559000000019],[-122.435777000000087,37.807552000000022],[-122.435750000000084,37.807531000000012],[-122.435700000000082,37.807254000000007],[-122.435638000000068,37.806920999999988],[-122.435638000000068,37.806882000000016],[-122.435616000000081,37.806840000000022],[-122.435563000000101,37.806823000000016],[-122.434405000000083,37.806956999999983],[-122.43431800000009,37.806963000000003],[-122.43423200000008,37.80695900000002],[-122.4341790000001,37.806933000000015],[-122.434135000000083,37.806882000000016],[-122.434103000000064,37.806731000000028],[-122.434035000000051,37.806420000000017],[-122.433969000000118,37.806121000000012],[-122.433906000000064,37.805814000000012],[-122.433889000000107,37.805725000000017],[-122.433841000000086,37.80566199999997],[-122.433760000000106,37.805623000000033],[-122.433621000000116,37.805602000000022],[-122.432848000000078,37.805703999999984],[-122.432719000000077,37.805734000000001],[-122.432639000000066,37.805776000000023],[-122.432569000000029,37.80583500000003],[-122.43248300000009,37.805881000000028],[-122.432378000000114,37.805916000000003],[-122.432216000000111,37.805939000000002],[-122.432128000000091,37.805973000000016],[-122.432333000000114,37.806963000000003],[-122.432355000000086,37.807120000000012],[-122.432629000000077,37.808509000000015],[-122.432350000000099,37.808546000000007],[-122.432083000000105,37.807230000000018],[-122.432008000000096,37.807186999999963],[-122.431454000000087,37.807257999999969],[-122.431402000000119,37.807315000000024],[-122.431748000000113,37.808988999999997],[-122.431734000000105,37.809026000000017],[-122.431691000000114,37.809044000000007],[-122.431395000000094,37.809086000000001],[-122.431365000000028,37.809075000000007],[-122.431335000000075,37.809058000000022],[-122.430994000000084,37.807370000000013],[-122.430926000000071,37.807327000000015],[-122.430377000000078,37.807395000000007],[-122.430318000000099,37.807456999999964],[-122.430655000000115,37.809129000000027],[-122.430643000000117,37.809161000000024],[-122.430606000000068,37.809180000000026],[-122.430176000000074,37.809232000000023],[-122.43014100000012,37.809219000000027],[-122.430117000000095,37.809194000000019],[-122.429841000000096,37.80782500000003],[-122.429301000000109,37.807897000000004],[-122.429277000000113,37.807970000000019],[-122.429241000000076,37.808011],[-122.429181000000113,37.808014000000014],[-122.429099000000036,37.807993999999987],[-122.429051000000086,37.807974000000009],[-122.429001000000113,37.807983000000014],[-122.428754000000083,37.808107000000021],[-122.428540000000098,37.808201000000011],[-122.428334000000092,37.808256000000029],[-122.428153000000094,37.808317000000017],[-122.428077000000101,37.808312000000022],[-122.427892000000099,37.808239000000015],[-122.427659000000105,37.808228999999997],[-122.427406000000119,37.808163999999991],[-122.427009000000069,37.808106000000016],[-122.426835000000068,37.808118000000015],[-122.426720000000032,37.808146000000008],[-122.426517000000089,37.80817100000003],[-122.42647000000008,37.807937000000017],[-122.426430000000096,37.807787999999974],[-122.426372000000029,37.807636000000024],[-122.426125000000084,37.807339999999989],[-122.425877000000071,37.807158000000015],[-122.425519000000065,37.80695900000002],[-122.425105000000073,37.806774000000019],[-122.424709000000092,37.806655000000006],[-122.42430800000011,37.806615000000001],[-122.423967000000061,37.806665999999971],[-122.423450000000074,37.806832000000021],[-122.423173000000091,37.806986000000023],[-122.422892000000076,37.807143999999973],[-122.42269500000009,37.807251999999998],[-122.422520000000105,37.807355000000001],[-122.422357000000105,37.807482999999991],[-122.422184000000101,37.807600000000036],[-122.422011000000111,37.807726000000017],[-122.421850000000063,37.807844000000024],[-122.421701000000084,37.807971000000023],[-122.421542000000116,37.808120000000024],[-122.421066000000081,37.808575000000012],[-122.421118000000121,37.808817999999981],[-122.421551000000065,37.80916000000002],[-122.421511000000095,37.809191000000013],[-122.421825000000027,37.809425999999995],[-122.422102000000081,37.809632000000022],[-122.422381000000101,37.809832],[-122.422710000000095,37.810081999999994],[-122.4227360000001,37.810063999999997],[-122.422834000000108,37.810140000000004],[-122.422805000000096,37.810162000000005],[-122.422873000000109,37.810211000000024],[-122.422821000000084,37.810249999999996],[-122.422604000000092,37.810089000000026],[-122.422436000000104,37.80996300000001],[-122.422043000000102,37.809666000000007],[-122.421382000000065,37.809182000000028],[-122.421241000000094,37.809241],[-122.421063000000103,37.809006000000025],[-122.421045000000106,37.809006000000025],[-122.421042000000071,37.808968000000029],[-122.42095800000007,37.808972000000011],[-122.420919000000083,37.808789000000026],[-122.420765000000117,37.808870999999982],[-122.420718000000079,37.808876000000012],[-122.420660000000112,37.808881000000014],[-122.420631000000071,37.808722000000017],[-122.420343000000031,37.808765000000029],[-122.420335000000051,37.808719000000032],[-122.420454000000078,37.808643000000004],[-122.420538000000079,37.808639000000021],[-122.420473000000101,37.80830899999998],[-122.419257000000087,37.808456000000007],[-122.417887000000093,37.808622000000014],[-122.417943000000108,37.808839000000027],[-122.418887000000097,37.808839000000027],[-122.418887000000097,37.808879000000019],[-122.419943000000103,37.808879000000019],[-122.419934000000083,37.809117000000029],[-122.419084000000112,37.809089000000014],[-122.419076000000075,37.80916400000001],[-122.418879000000089,37.809083000000015],[-122.418355000000105,37.809076000000012],[-122.4182780000001,37.809205000000013],[-122.418029000000118,37.809117000000029],[-122.417883000000089,37.809022000000013],[-122.417801000000097,37.808663000000017],[-122.417703000000103,37.808594000000006],[-122.417479000000057,37.808594000000006],[-122.417488000000091,37.808384000000025],[-122.417677000000097,37.808356999999987],[-122.417668000000106,37.808303000000009],[-122.417402000000095,37.808337000000016],[-122.417359000000104,37.808140000000023],[-122.416388000000083,37.808263999999973],[-122.416397000000075,37.808325000000025],[-122.416329000000104,37.808330000000026],[-122.416364000000101,37.808478999999991],[-122.416261000000063,37.80849300000002],[-122.41624300000008,37.808879000000019],[-122.417436000000109,37.808920000000015],[-122.417429000000112,37.809151000000035],[-122.418879000000089,37.810134000000019],[-122.420612000000091,37.811279999999996],[-122.4203550000001,37.811531000000024],[-122.419963000000095,37.811284000000029]]]}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment