Skip to content

Instantly share code, notes, and snippets.

@bmershon
Last active September 18, 2016 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmershon/82a8c2fd343b019becf6 to your computer and use it in GitHub Desktop.
Save bmershon/82a8c2fd343b019becf6 to your computer and use it in GitHub Desktop.
Nevada Wilderness
border: no

A map of Nevada's wilderness areas. See how the combined.json was built from government shapefiles to create this static graphic for web and print use.

You give the map instance a topojson object that looks like this:

objects: [
          nv: Object
          Basin: Object
                .
                .
                .
          wilderness: Object
         ]

Once you've (asynchronously) loaded a json file containing all the features you want (and maybe some you will ignore), you can call draw(data) on the map instance. The options object passed to the "atlas" constructor has a property layers.

layers is an array of layer definitions that each specify an object on the topojson object you want to render, what classes and ids to give that layer, as well as what interactions ("click", "mouseover") or lifecycle events ("enter()", "update()", "exit()") you would like to explicitly set for each layer of topojson features.

In this particular example, we have chosen to use a null projection, because the topojson object coming from combined.json already has baked-in screen coordinates for a 960px x 500px SVG.

'use strict';
(function() {
// d3.chart
(function(){"use strict";var d3=window.d3;var hasOwnProp=Object.hasOwnProperty;var d3cAssert=function(test,message){if(test){return}throw new Error("[d3.chart] "+message)};d3cAssert(d3,"d3.js is required");d3cAssert(typeof d3.version==="string"&&d3.version.match(/^3/),"d3.js version 3 is required");"use strict";var lifecycleRe=/^(enter|update|merge|exit)(:transition)?$/;var Layer=function(base){d3cAssert(base,"Layers must be initialized with a base.");this._base=base;this._handlers={}};Layer.prototype.dataBind=function(){d3cAssert(false,"Layers must specify a `dataBind` method.")};Layer.prototype.insert=function(){d3cAssert(false,"Layers must specify an `insert` method.")};Layer.prototype.on=function(eventName,handler,options){options=options||{};d3cAssert(lifecycleRe.test(eventName),"Unrecognized lifecycle event name specified to `Layer#on`: '"+eventName+"'.");if(!(eventName in this._handlers)){this._handlers[eventName]=[]}this._handlers[eventName].push({callback:handler,chart:options.chart||null});return this._base};Layer.prototype.off=function(eventName,handler){var handlers=this._handlers[eventName];var idx;d3cAssert(lifecycleRe.test(eventName),"Unrecognized lifecycle event name specified to `Layer#off`: '"+eventName+"'.");if(!handlers){return this._base}if(arguments.length===1){handlers.length=0;return this._base}for(idx=handlers.length-1;idx>-1;--idx){if(handlers[idx].callback===handler){handlers.splice(idx,1)}}return this._base};Layer.prototype.draw=function(data){var bound,entering,events,selection,handlers,eventName,idx,len;bound=this.dataBind.call(this._base,data);d3cAssert(bound&&bound.call===d3.selection.prototype.call,"Invalid selection defined by `Layer#dataBind` method.");d3cAssert(bound.enter,"Layer selection not properly bound.");entering=bound.enter();entering._chart=this._base._chart;events=[{name:"update",selection:bound},{name:"enter",selection:this.insert.bind(entering)},{name:"merge",selection:bound},{name:"exit",selection:bound.exit.bind(bound)}];for(var i=0,l=events.length;i<l;++i){eventName=events[i].name;selection=events[i].selection;if(typeof selection==="function"){selection=selection()}if(selection.empty()){continue}d3cAssert(selection&&selection.call===d3.selection.prototype.call,"Invalid selection defined for '"+eventName+"' lifecycle event.");handlers=this._handlers[eventName];if(handlers){for(idx=0,len=handlers.length;idx<len;++idx){selection._chart=handlers[idx].chart||this._base._chart;selection.call(handlers[idx].callback)}}handlers=this._handlers[eventName+":transition"];if(handlers&&handlers.length){selection=selection.transition();for(idx=0,len=handlers.length;idx<len;++idx){selection._chart=handlers[idx].chart||this._base._chart;selection.call(handlers[idx].callback)}}}};"use strict";d3.selection.prototype.layer=function(options){var layer=new Layer(this);var eventName;layer.dataBind=options.dataBind;layer.insert=options.insert;if("events"in options){for(eventName in options.events){layer.on(eventName,options.events[eventName])}}this.on=function(){return layer.on.apply(layer,arguments)};this.off=function(){return layer.off.apply(layer,arguments)};this.draw=function(){return layer.draw.apply(layer,arguments)};return this};"use strict";function extend(object){var argsIndex,argsLength,iteratee,key;if(!object){return object}argsLength=arguments.length;for(argsIndex=1;argsIndex<argsLength;argsIndex++){iteratee=arguments[argsIndex];if(iteratee){for(key in iteratee){object[key]=iteratee[key]}}}return object}var initCascade=function(instance,args){var ctor=this.constructor;var sup=ctor.__super__;if(sup){initCascade.call(sup,instance,args)}if(hasOwnProp.call(ctor.prototype,"initialize")){this.initialize.apply(instance,args)}};var transformCascade=function(instance,data){var ctor=this.constructor;var sup=ctor.__super__;if(this===instance&&hasOwnProp.call(this,"transform")){data=this.transform(data)}if(hasOwnProp.call(ctor.prototype,"transform")){data=ctor.prototype.transform.call(instance,data)}if(sup){data=transformCascade.call(sup,instance,data)}return data};var Chart=function(selection,chartOptions){this.base=selection;this._layers={};this._attached={};this._events={};if(chartOptions&&chartOptions.transform){this.transform=chartOptions.transform}initCascade.call(this,this,[chartOptions])};Chart.prototype.initialize=function(){};Chart.prototype.unlayer=function(name){var layer=this.layer(name);delete this._layers[name];delete layer._chart;return layer};Chart.prototype.layer=function(name,selection,options){var layer;if(arguments.length===1){return this._layers[name]}if(arguments.length===2){if(typeof selection.draw==="function"){selection._chart=this;this._layers[name]=selection;return this._layers[name]}else{d3cAssert(false,"When reattaching a layer, the second argument "+"must be a d3.chart layer")}}layer=selection.layer(options);this._layers[name]=layer;selection._chart=this;return layer};Chart.prototype.attach=function(attachmentName,chart){if(arguments.length===1){return this._attached[attachmentName]}this._attached[attachmentName]=chart;return chart};Chart.prototype.draw=function(data){var layerName,attachmentName,attachmentData;data=transformCascade.call(this,this,data);for(layerName in this._layers){this._layers[layerName].draw(data)}for(attachmentName in this._attached){if(this.demux){attachmentData=this.demux(attachmentName,data)}else{attachmentData=data}this._attached[attachmentName].draw(attachmentData)}return this};Chart.prototype.on=function(name,callback,context){var events=this._events[name]||(this._events[name]=[]);events.push({callback:callback,context:context||this,_chart:this});return this};Chart.prototype.once=function(name,callback,context){var self=this;var once=function(){self.off(name,once);callback.apply(this,arguments)};return this.on(name,once,context)};Chart.prototype.off=function(name,callback,context){var names,n,events,event,i,j;if(arguments.length===0){for(name in this._events){this._events[name].length=0}return this}if(arguments.length===1){events=this._events[name];if(events){events.length=0}return this}names=name?[name]:Object.keys(this._events);for(i=0;i<names.length;i++){n=names[i];events=this._events[n];j=events.length;while(j--){event=events[j];if(callback&&callback===event.callback||context&&context===event.context){events.splice(j,1)}}}return this};Chart.prototype.trigger=function(name){var args=Array.prototype.slice.call(arguments,1);var events=this._events[name];var i,ev;if(events!==undefined){for(i=0;i<events.length;i++){ev=events[i];ev.callback.apply(ev.context,args)}}return this};Chart.extend=function(name,protoProps,staticProps){var parent=this;var child;if(protoProps&&hasOwnProp.call(protoProps,"constructor")){child=protoProps.constructor}else{child=function(){return parent.apply(this,arguments)}}extend(child,parent,staticProps);var Surrogate=function(){this.constructor=child};Surrogate.prototype=parent.prototype;child.prototype=new Surrogate;if(protoProps){extend(child.prototype,protoProps)}child.__super__=parent.prototype;Chart[name]=child;return child};"use strict";d3.chart=function(name){if(arguments.length===0){return Chart}else if(arguments.length===1){return Chart[name]}return Chart.extend.apply(Chart,arguments)};d3.selection.prototype.chart=function(chartName,options){if(arguments.length===0){return this._chart}var ChartCtor=Chart[chartName];d3cAssert(ChartCtor,"No chart registered with name '"+chartName+"'");return new ChartCtor(this,options)};d3.selection.enter.prototype.chart=function(){return this._chart};d3.transition.prototype.chart=d3.selection.enter.prototype.chart})(this);
// d3-chart-atlas https://github.com/bmershon/d3-chart-atlas Copyright Brooks Mershon 2015
(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory():typeof define==="function"&&define.amd?define(factory):factory()})(this,function(){"use strict";var configuration={};function resetAffine(){chart.base.transition().duration(750).attr("transform","")}function zoomToFeature(d){var b=this._path.bounds(d),s=.9/Math.max((b[1][0]-b[0][0])/this._w,(b[1][1]-b[0][1])/this._h),t=[(this._w-s*(b[1][0]+b[0][0]))/2,(this._h-s*(b[1][1]+b[0][1]))/2];chart.base.transition().duration(750).attr("transform","translate("+t+")scale("+s+")")}function layer_exit(){var chart=this.chart();return this.remove()}function layer_merge(){var chart=this.chart();if(chart._projection){chart._projection.scale(chart._scale).rotate(chart._rotation).precision(chart._precision).translate(chart._translate)}chart._path.projection(chart._projection).pointRadius(chart._pointRadius);return this.attr("d",chart._path)}function chart_initialize(options){var chart=this;chart.base=chart.base.append("g").attr("class","base");chart.options=options||{};chart._w=chart.base.attr("width")||960;chart._h=chart.base.attr("height")||500;chart._projection=d3.geo.orthographic().clipAngle(90);chart._path=d3.geo.path();chart._graticule=d3.geo.graticule();chart._precision=Math.sqrt(2);chart._scale=1;chart._translate=[0,0];chart._rotation=[0,0,0];var layerGraticule=chart.base.append("g").attr("class","layer-graticule").append("path");var layerGraticule=chart.base.append("g").attr("class","layer-graticule").append("path");if(options.dispatch){chart.dispatch=options.dispatch;chart.dispatch.on("zoomToFeature",function(d,i){chart.zoomToFeature(d)});chart.dispatch.on("resetAffine",function(d,i){chart.resetAffine()})}chart.options.layers.forEach(function(layer){var layerBase=chart.base.append("g").attr("class","layer-base-"+layer.object);var layerConfig={dataBind:layer.databind||function(data){var chart=this.chart();var toBind=Array.isArray(data[layer.object])?data[layer.object]:[data[layer.object]];toBind=layer.filter?toBind.filter(layer.filter):toBind;return this.selectAll("."+layer.object).data(toBind)},insert:layer.insert||function(){var chart=this.chart();var selection=this.append("path").attr("class",layer.class||layer.object).classed(layer.object,true).attr("id",layer.id||function(d,i){return i});if(layer.interactions){for(var e in layer.interactions){if(layer.interactions.hasOwnProperty(e)){selection.on(e,layer.interactions[e])}}}return selection},events:layer.events||{merge:layer_merge,exit:layer_exit}};chart.layer("layer-"+layer.object,layerBase,layerConfig)});chart.zoomToFeature=zoomToFeature;chart.resetAffine=resetAffine;chart.on("change:projection",function(){if(this.data){if(chart._projection){chart._projection.scale(chart._scale).rotate(chart._rotation).precision(chart._precision).translate(chart._translate);layerGraticule.datum(chart._graticule).attr("d",chart._path).attr("class","graticule")}chart._path.projection(chart._projection).pointRadius(chart._pointRadius);this.draw(this.data)}})}configuration.initialize=chart_initialize;function chart_transform(data){var chart=this;if(!(data.type=="Topology"))return data;var t={};this.options.layers.forEach(function(layer){if(data.objects[layer.object].type=="GeometryCollection"){t[layer.object]=topojson.feature(data,data.objects[layer.object]).features}if(data.objects[layer.object].type=="MultiPolygon"){t[layer.object]=topojson.feature(data,data.objects[layer.object])}});this.topology=data;this.data=t;chart.trigger("change:projection");return t}configuration.transform=chart_transform;function center(_){if(arguments.length===0){return this._scale}if(_)this._center=_;this.trigger("change:projection");return this}configuration.center=center;function graticule(_){if(arguments.length===0){return this._graticule}this._graticule=_;this.trigger("change:projection");return this}configuration.graticule=graticule;function height(_){if(arguments.length===0){return this._h}this._h=_;this.trigger("change:projection");return this}configuration.height=height;function path(_){if(arguments.length===0){return this._path}if(_)this._path=_;this.trigger("change:projection");return this}configuration.path=path;function projection(_){if(arguments.length===0){return this._projection}this._projection=_;this.trigger("change:projection");return this}configuration.projection=projection;function rotate(_){if(arguments.length===0){return this._rotation}if(_)this._rotation=_;this.trigger("change:projection");return this}configuration.rotate=rotate;function scale(_){if(arguments.length===0){return this._scale}if(_)this._center=_;this.trigger("change:projection");return this}configuration.scale=scale;function translate(_){if(arguments.length===0){return this._translate}if(_)this._translate=_;this.trigger("change:projection");return this}configuration.translate=translate;function precision(_){if(arguments.length===0){return this._precision}if(_)this._precision=_;this.trigger("change:projection");return this}configuration.precision=precision;function pointRadius(_){if(arguments.length===0){return this._pointRadius}if(_)this._pointRadius=_;this.trigger("change:projection");return this}configuration.pointRadius=pointRadius;function width(_){if(arguments.length===0){return this._w}this._w=_;this.trigger("change:projection");return this}configuration.width=width;function zoomToLayer(_,_filter){if(arguments.length===0){return this._projection}var f=typeof _filter==="undefined"?function(d){return true}:_filter;var chart=this;if(this.data){var layerObject=_;var collection={type:"FeatureCollection",features:this.data[layerObject].filter(f)};var b=collection.features.length==0?[[-1,-1],[1,1]]:chart._path.bounds(collection),s=.9/Math.max((b[1][0]-b[0][0])/chart._w,(b[1][1]-b[0][1])/chart._h),t=[(chart._w-s*(b[1][0]+b[0][0]))/2,(chart._h-s*(b[1][1]+b[0][1]))/2];chart._scale=s;chart._translate=t}chart.trigger("change:projection");return this}configuration.zoomToLayer=zoomToLayer;function rotateToLayer(_,_filter){if(arguments.length===0){return this._projection}var f=typeof _filter==="undefined"?function(d){return true}:_filter;var chart=this;if(this.data){var layerObject=_;var collection={type:"FeatureCollection",features:this.data[layerObject]};var filteredCollection={type:"FeatureCollection",features:this.data[layerObject].filter(f)};var b=[[-1,-1],[1,1]],c=d3.geo.centroid(filteredCollection),s=.9/Math.max((b[1][0]-b[0][0])/chart._w,(b[1][1]-b[0][1])/chart._h),t=[(chart._w-s*(b[1][0]+b[0][0]))/2,(chart._h-s*(b[1][1]+b[0][1]))/2];chart._scale=s;chart._translate=t;c=[-c[0],-c[1]];chart._rotation=c}chart.trigger("change:projection");return this}configuration.rotateToLayer=rotateToLayer;d3.chart("atlas",configuration)});
var width = 960,
height = 500,
data;
var svg = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height);
var options = {};
options.layers = [];
options.layers.push({
class: "state",
id: function(d, i) {return i},
object: "nv" // identify the topology object for the layer
});
options.layers.push({
class: "basin",
id: "GreatBasin",
object: "basin", // identify the topology object for the layer
interactions: {
"mouseenter": function(d, i) {
d3.select(this).classed("highlight", true);
},
"mouseleave": function(d, i) {
d3.select(this).classed("highlight", false);
}
}
});
options.layers.push({
class: "wilderness",
id: function(d, i) {return "wilderness-area-" + i},
object: "wilderness" // identify the topology object for the layer
});
var m = svg.chart("atlas", options)
.projection(null); // use baked-in screen coordinates
d3.queue(2)
.defer(d3.json, "combined.json")
.await(ready);
function ready(error, topology) {
data = topology;
m.draw(data);
}
})();
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"nv":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-1]]}]},"wilderness":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":27582,"properties":{"OBJECTID_1":"27582","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=761","NAME":"Wovoka Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.084080784,"CenterY":38.5366269121,"WID":761,"NAME_ABBRE":"Wovoka","Shape_Leng":190486.942854,"Shape_Area":324455873.835,"xmin":-13268336.5201,"ymin":4643548.5194,"xmax":-13243096.1434,"ymax":4670487.5788,"YearDesign":"2014","SQMILES":"76.6"},"arcs":[[-2]]},{"type":"Polygon","id":27783,"properties":{"OBJECTID_1":"27783","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=69","NAME":"Boundary Peak Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-118.334949405,"CenterY":37.8527338784,"WID":69,"NAME_ABBRE":"Boundary_Peak","Shape_Leng":43859.8264922,"Shape_Area":68385659.6886,"xmin":-13179673.3806,"ymin":4552275.6242,"xmax":-13167042.8635,"ymax":4564464.1706,"YearDesign":"1989","SQMILES":"16.44"},"arcs":[[-3]]},{"type":"Polygon","id":27852,"properties":{"OBJECTID_1":"27852","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=9","NAME":"Alta Toquima Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-116.925360628,"CenterY":38.7891296382,"WID":9,"NAME_ABBRE":"Alta_Toquima","Shape_Leng":85836.7107308,"Shape_Area":237000551.057,"xmin":-13024108.2759,"ymin":4683095.1004,"xmax":-13005503.9095,"ymax":4701885.9931,"YearDesign":"1989","SQMILES":"55.5"},"arcs":[[-4]]},{"type":"Polygon","id":27856,"properties":{"OBJECTID_1":"27856","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=16","NAME":"Arc Dome Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-117.340524386,"CenterY":38.8091029137,"WID":16,"NAME_ABBRE":"Arc_Dome","Shape_Leng":172274.613286,"Shape_Area":804757916.5,"xmin":-13079167.2923,"ymin":4674863.2467,"xmax":-13047022.3371,"ymax":4714670.6414,"YearDesign":"1989","SQMILES":"188.38"},"arcs":[[-5]]},{"type":"MultiPolygon","id":27860,"properties":{"OBJECTID_1":"27860","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=691","NAME":"Bald Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.301404697,"CenterY":39.0839688629,"WID":691,"NAME_ABBRE":"Bald_Mountain","Shape_Leng":102242.059405,"Shape_Area":150481719.164,"xmin":-12842239.626,"ymin":4725146.3386,"xmax":-12828359.2563,"ymax":4740968.1465,"YearDesign":"2006","SQMILES":"34.96"},"arcs":[[[-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27]],[[-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49]]]},{"type":"Polygon","id":27876,"properties":{"OBJECTID_1":"27876","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=216","NAME":"Grant Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.530237708,"CenterY":38.2573777574,"WID":216,"NAME_ABBRE":"Grant_Range","Shape_Leng":126657.062931,"Shape_Area":344969852.946,"xmin":-12869744.0865,"ymin":4597188.8738,"xmax":-12851986.8386,"ymax":4636122.862,"YearDesign":"1989","SQMILES":"82"},"arcs":[[-50]]},{"type":"Polygon","id":27889,"properties":{"OBJECTID_1":"27889","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=696","NAME":"High Schells Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.599215987,"CenterY":39.3399041208,"WID":696,"NAME_ABBRE":"High_Schells","Shape_Leng":371661.034068,"Shape_Area":822902038.386,"xmin":-12768857.5085,"ymin":4736430.8138,"xmax":-12746944.7317,"ymax":4803161.3003,"YearDesign":"2006","SQMILES":"189.9"},"arcs":[[-51]]},{"type":"MultiPolygon","id":27911,"properties":{"OBJECTID_1":"27911","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=147","NAME":"Currant Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.446626529,"CenterY":38.9100091898,"WID":147,"NAME_ABBRE":"Currant_Mountain","Shape_Leng":150662.190019,"Shape_Area":316444097.466,"xmin":-12860582.7731,"ymin":4694842.4247,"xmax":-12842640.8948,"ymax":4725232.6466,"YearDesign":"1989","SQMILES":"73.88"},"arcs":[[[-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100,-101,-102,-103]],[[-52,103]]]},{"type":"Polygon","id":27927,"properties":{"OBJECTID_1":"27927","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=173","NAME":"East Humboldts Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.124362182,"CenterY":40.9466275499,"WID":173,"NAME_ABBRE":"East_Humboldts","Shape_Leng":134583.796147,"Shape_Area":260279757.542,"xmin":-12826023.6138,"ymin":4985912.3591,"xmax":-12807270.1797,"ymax":5021755.1351,"YearDesign":"1989","SQMILES":"57.29"},"arcs":[[-105]]},{"type":"Polygon","id":28003,"properties":{"OBJECTID_1":"28003","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=478","NAME":"Quinn Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.686860274,"CenterY":38.1734070643,"WID":478,"NAME_ABBRE":"Quinn_Canyon","Shape_Leng":70910.8591143,"Shape_Area":172213543.507,"xmin":-12888860.6456,"ymin":4594688.446,"xmax":-12868424.0385,"ymax":4613486.4721,"YearDesign":"1989","SQMILES":"41.03"},"arcs":[[-106]]},{"type":"MultiPolygon","id":28007,"properties":{"OBJECTID_1":"28007","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=396","NAME":"Mt. Rose Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.932761326,"CenterY":39.3773289276,"WID":396,"NAME_ABBRE":"Mt_Rose","Shape_Leng":125974.408236,"Shape_Area":212742676.697,"xmin":-13358726.1913,"ymin":4759402.4083,"xmax":-13342884.5549,"ymax":4792183.946,"YearDesign":"1989","SQMILES":"49.1"},"arcs":[[[-107]],[[-108]]]},{"type":"Polygon","id":28037,"properties":{"OBJECTID_1":"28037","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=700","NAME":"Shellback Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.355148998,"CenterY":39.2468206248,"WID":700,"NAME_ABBRE":"Shellback","Shape_Leng":111566.571004,"Shape_Area":244310535.552,"xmin":-12847176.7824,"ymin":4742753.437,"xmax":-12836193.9961,"ymax":4771700.6445,"YearDesign":"2006","SQMILES":"56.5"},"arcs":[[-109]]},{"type":"Polygon","id":28060,"properties":{"OBJECTID_1":"28060","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=590","NAME":"Table Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-116.623781556,"CenterY":38.7499891367,"WID":590,"NAME_ABBRE":"Table_Mountain","Shape_Leng":180740.693072,"Shape_Area":616285838.585,"xmin":-12993136.2142,"ymin":4664188.7719,"xmax":-12969860.5588,"ymax":4710152.1973,"YearDesign":"1989","SQMILES":"144.48"},"arcs":[[-110]]},{"type":"Polygon","id":28081,"properties":{"OBJECTID_1":"28081","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=699","NAME":"Red Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.330524236,"CenterY":38.8943280193,"WID":699,"NAME_ABBRE":"Red_Mountain_NV","Shape_Leng":80475.2025213,"Shape_Area":137120472.841,"xmin":-12844885.8374,"ymin":4697125.3476,"xmax":-12831840.3468,"ymax":4713641.1381,"YearDesign":"2006","SQMILES":"32.03"},"arcs":[[-111,84,-112,-113,-114,-115,-116,-117,-118,101,-119,-120,-121,97,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132]]},{"type":"Polygon","id":28093,"properties":{"OBJECTID_1":"28093","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=505","NAME":"Ruby Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.404178624,"CenterY":40.5809428218,"WID":505,"NAME_ABBRE":"Ruby_Mountains","Shape_Leng":330352.957534,"Shape_Area":654016064.03,"xmin":-12865046.64,"ymin":4919007.4355,"xmax":-12826084.7506,"ymax":4984391.0768,"YearDesign":"1989","SQMILES":"145.52"},"arcs":[[-133]]},{"type":"Polygon","id":28109,"properties":{"OBJECTID_1":"28109","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=532","NAME":"Santa Rosa-Paradise Peak Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-117.688079964,"CenterY":41.5239749374,"WID":532,"NAME_ABBRE":"Santa_Rosa_Paradise_Peak","Shape_Leng":83998.7959873,"Shape_Area":231643944.178,"xmin":-13107049.570199998,"ymin":5075564.1508,"xmax":-13094665.952,"ymax":5103626.1823,"YearDesign":"1989","SQMILES":"50.09"},"arcs":[[-134]]},{"type":"MultiPolygon","id":28134,"properties":{"OBJECTID_1":"28134","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=702","NAME":"White Pine Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.484589251,"CenterY":39.0816931515,"WID":702,"NAME_ABBRE":"White_Pine_Range","Shape_Leng":141770.804213,"Shape_Area":269188602.52,"xmin":-12863667.496,"ymin":4719617.8472,"xmax":-12847419.9265,"ymax":4746690.5759,"YearDesign":"2006","SQMILES":"62.54"},"arcs":[[[-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151,-152,-153,-154,-155,-156]],[[-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175,-176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191,-192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202]],[[-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215,-216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227]]]},{"type":"Polygon","id":28143,"properties":{"OBJECTID_1":"28143","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=274","NAME":"Jarbidge Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.346247917,"CenterY":41.7663172254,"WID":274,"NAME_ABBRE":"Jarbidge","Shape_Leng":213788.15381,"Shape_Area":804346324.842,"xmin":-12856414.7784,"ymin":5103141.4025,"xmax":-12819829.7257,"ymax":5149897.0451,"YearDesign":"1964","SQMILES":"172.65"},"arcs":[[-228]]},{"type":"Polygon","id":28152,"properties":{"OBJECTID_1":"28152","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=668","NAME":"Worthington Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.631256851,"CenterY":37.8639070216,"WID":668,"NAME_ABBRE":"Worthington_Mountains","Shape_Leng":80348.8999962,"Shape_Area":199066809.464,"xmin":-12879345.4711,"ymin":4547466.9053,"xmax":-12866321.9377,"ymax":4571507.9347,"YearDesign":"2004","SQMILES":"47.82"},"arcs":[[-229]]},{"type":"Polygon","id":28153,"properties":{"OBJECTID_1":"28153","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=672","NAME":"Fortification Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.465813863,"CenterY":38.5624523694,"WID":672,"NAME_ABBRE":"Fortification_Range","Shape_Leng":103521.652301,"Shape_Area":202355950.935,"xmin":-12750538.4319,"ymin":4644157.8784,"xmax":-12736685.4751,"ymax":4672025.5163,"YearDesign":"2004","SQMILES":"47.73"},"arcs":[[-230]]},{"type":"Polygon","id":28154,"properties":{"OBJECTID_1":"28154","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=664","NAME":"Meadow Valley Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.71803713,"CenterY":37.0291677034,"WID":664,"NAME_ABBRE":"Meadow_Valley_Range","Shape_Leng":311035.335597,"Shape_Area":785532469.464,"xmin":-12788164.0512,"ymin":4413529.7073,"xmax":-12753116.3608,"ymax":4478682.9375,"YearDesign":"2004","SQMILES":"193.04"},"arcs":[[-231]]},{"type":"Polygon","id":28156,"properties":{"OBJECTID_1":"28156","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=94","NAME":"Calico Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.225430535,"CenterY":41.0193854876,"WID":94,"NAME_ABBRE":"Calico_Mountains","Shape_Leng":147012.209919,"Shape_Area":462273302.329,"xmin":-13281746.8466,"ymin":4997693.1837,"xmax":-13260210.6972,"ymax":5036182.237,"YearDesign":"2000","SQMILES":"101.6"},"arcs":[[-232,-233,-234,-235,-236,-237,-238,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279,-280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298]]},{"type":"Polygon","id":28162,"properties":{"OBJECTID_1":"28162","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=420","NAME":"North Jackson Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-118.46815282,"CenterY":41.3599270981,"WID":420,"NAME_ABBRE":"North_Jackson_Mountains","Shape_Leng":115512.425144,"Shape_Area":168588306.913,"xmin":-13197337.719,"ymin":5057168.5272,"xmax":-13179097.3921,"ymax":5074051.7598,"YearDesign":"2000","SQMILES":"36.65"},"arcs":[[-299],[-300]]},{"type":"Polygon","id":28167,"properties":{"OBJECTID_1":"28167","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=665","NAME":"Delamar Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.889382365,"CenterY":37.1499810013,"WID":665,"NAME_ABBRE":"Delamar_Mountains","Shape_Leng":237158.401581,"Shape_Area":708742503.381,"xmin":-12803188.9042,"ymin":4439371.9452,"xmax":-12775212.2245,"ymax":4483742.1445,"YearDesign":"2004","SQMILES":"173.6"},"arcs":[[-301]]},{"type":"Polygon","id":28168,"properties":{"OBJECTID_1":"28168","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=563","NAME":"South Jackson Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-118.543504353,"CenterY":41.2053496668,"WID":563,"NAME_ABBRE":"South_Jackson_Mountains","Shape_Leng":153565.334886,"Shape_Area":390406049.219,"xmin":-13208260.309,"ymin":5025849.0016,"xmax":-13187265.3622,"ymax":5059747.4218,"YearDesign":"2000","SQMILES":"85.28"},"arcs":[[-302,-303]]},{"type":"Polygon","id":28170,"properties":{"OBJECTID_1":"28170","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=565","NAME":"South McCullough Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.174359593,"CenterY":35.6398621548,"WID":565,"NAME_ABBRE":"South_McCullough","Shape_Leng":118885.345243,"Shape_Area":270194111.251,"xmin":-12830884.0216,"ymin":4238955.9059,"xmax":-12813033.3781,"ymax":4264622.5199,"YearDesign":"2002","SQMILES":"68.77"},"arcs":[[-304]]},{"type":"Polygon","id":28171,"properties":{"OBJECTID_1":"28171","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=663","NAME":"Mormon Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.47790938,"CenterY":36.9637139255,"WID":663,"NAME_ABBRE":"Mormon_Mountains","Shape_Leng":419534.318649,"Shape_Area":1001165335.29,"xmin":-12763899.1948,"ymin":4403148.2921,"xmax":-12725279.0684,"ymax":4455108.9033,"YearDesign":"2004","SQMILES":"246.51"},"arcs":[[-305]]},{"type":"Polygon","id":28176,"properties":{"OBJECTID_1":"28176","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=692","NAME":"Becky Peak Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.623151495,"CenterY":39.9478393767,"WID":692,"NAME_ABBRE":"Becky_Peak","Shape_Leng":93419.9031371,"Shape_Area":124934483.253,"xmin":-12765133.0448,"ymin":4848769.5876,"xmax":-12753661.7993,"ymax":4869663.7213,"YearDesign":"2006","SQMILES":"28.33"},"arcs":[[-306]]},{"type":"Polygon","id":28182,"properties":{"OBJECTID_1":"28182","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=281","NAME":"Jumbo Springs Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.166439155,"CenterY":36.1741197473,"WID":281,"NAME_ABBRE":"Jumbo_Springs","Shape_Leng":33949.9612854,"Shape_Area":29596461.3935,"xmin":-12712694.0611,"ymin":4320492.5853,"xmax":-12705642.1874,"ymax":4329798.7091,"YearDesign":"2002","SQMILES":"7.44"},"arcs":[[-307]]},{"type":"Polygon","id":28185,"properties":{"OBJECTID_1":"28185","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=172","NAME":"East Fork High Rock Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.35544285,"CenterY":41.4315378327,"WID":172,"NAME_ABBRE":"East_Fork_High_Rock_Canyon","Shape_Leng":112581.438326,"Shape_Area":383351907.692,"xmin":-13297293.2096,"ymin":5057917.7986,"xmax":-13278247.3464,"ymax":5092163.4171,"YearDesign":"2000","SQMILES":"83.22"},"arcs":[[-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338]]},{"type":"Polygon","id":28189,"properties":{"OBJECTID_1":"28189","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=673","NAME":"Far South Egans Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.912128624,"CenterY":38.4915692292,"WID":673,"NAME_ABBRE":"Far_South_Egans","Shape_Leng":112986.717164,"Shape_Area":240145239.079,"xmin":-12802981.7266,"ymin":4633716.9068,"xmax":-12781060.3853,"ymax":4661654.3255,"YearDesign":"2004","SQMILES":"56.74"},"arcs":[[-339]]},{"type":"Polygon","id":28192,"properties":{"OBJECTID_1":"28192","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=416","NAME":"North Black Rock Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.039004526,"CenterY":41.4362356452,"WID":416,"NAME_ABBRE":"North_Black_Rock_Range","Shape_Leng":99763.574462,"Shape_Area":220880992.97,"xmin":-13263541.9578,"ymin":5065526.2395,"xmax":-13240973.0015,"ymax":5085469.7712,"YearDesign":"2000","SQMILES":"47.93"},"arcs":[[-340]]},{"type":"Polygon","id":28193,"properties":{"OBJECTID_1":"28193","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=244","NAME":"High Rock Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.453726051,"CenterY":41.383820858,"WID":244,"NAME_ABBRE":"High_Rock_Canyon","Shape_Leng":109415.787087,"Shape_Area":335880262.416,"xmin":-13309049.317999998,"ymin":5053715.8634,"xmax":-13280963.272,"ymax":5083522.8129,"YearDesign":"2000","SQMILES":"73.03"},"arcs":[[-341,-342,-343,-344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367,-368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383,-384,-385,-386,330,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,317,-399,-400,314,-401,-402,-403,-404,-405,-406,-407,-408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421]]},{"type":"Polygon","id":28194,"properties":{"OBJECTID_1":"28194","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=676","NAME":"Mt. Irish Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.406441989,"CenterY":37.5426934891,"WID":676,"NAME_ABBRE":"Mt_Irish","Shape_Leng":145261.899247,"Shape_Area":182372627.186,"xmin":-12854479.742,"ymin":4502706.2729,"xmax":-12837969.5988,"ymax":4524415.5349,"YearDesign":"2004","SQMILES":"44.2"},"arcs":[[-422]]},{"type":"Polygon","id":28196,"properties":{"OBJECTID_1":"28196","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=694","NAME":"Goshute Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.851321246,"CenterY":40.0521410413,"WID":694,"NAME_ABBRE":"Goshute_Canyon","Shape_Leng":181298.127387,"Shape_Area":294287646.936,"xmin":-12793546.876099998,"ymin":4860246.7693,"xmax":-12775396.3631,"ymax":4883708.5819,"YearDesign":"2006","SQMILES":"66.52"},"arcs":[[-423]]},{"type":"Polygon","id":28199,"properties":{"OBJECTID_1":"28199","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=666","NAME":"Clover Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.380807688,"CenterY":37.3566057152,"WID":666,"NAME_ABBRE":"Clover_Mountains","Shape_Leng":149090.283567,"Shape_Area":549396578.483,"xmin":-12748357.291,"ymin":4475360.1997,"xmax":-12712545.0666,"ymax":4504001.6173,"YearDesign":"2004","SQMILES":"133.89"},"arcs":[[-424]]},{"type":"Polygon","id":28201,"properties":{"OBJECTID_1":"28201","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=675","NAME":"Big Rocks Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.961534236,"CenterY":37.6970626904,"WID":675,"NAME_ABBRE":"Big_Rocks","Shape_Leng":59811.7644294,"Shape_Area":83718874.0102,"xmin":-12801782.4864,"ymin":4530207.3166,"xmax":-12792240.9447,"ymax":4545384.086,"YearDesign":"2004","SQMILES":"20.21"},"arcs":[[-425]]},{"type":"Polygon","id":28202,"properties":{"OBJECTID_1":"28202","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=667","NAME":"South Pahroc Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.046141777,"CenterY":37.4895928889,"WID":667,"NAME_ABBRE":"South_Pahroc_Range","Shape_Leng":110809.21143,"Shape_Area":165312478.652,"xmin":-12813122.651,"ymin":4491409.5689,"xmax":-12801048.7068,"ymax":4519935.0172,"YearDesign":"2004","SQMILES":"40.13"},"arcs":[[-426]]},{"type":"Polygon","id":28203,"properties":{"OBJECTID_1":"28203","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=698","NAME":"Mount Grafton Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.747750902,"CenterY":38.7148779397,"WID":698,"NAME_ABBRE":"Mount_Grafton","Shape_Leng":263252.668831,"Shape_Area":524144520.798,"xmin":-12784602.6328,"ymin":4662795.3871,"xmax":-12761893.4758,"ymax":4700284.1164,"YearDesign":"2006","SQMILES":"123.09"},"arcs":[[-427]]},{"type":"Polygon","id":28205,"properties":{"OBJECTID_1":"28205","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=323","NAME":"Little High Rock Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.394785533,"CenterY":41.2492817889,"WID":323,"NAME_ABBRE":"Little_High_Rock_Canyon","Shape_Leng":100969.462363,"Shape_Area":350638507.698,"xmin":-13303911.7968,"ymin":5035982.0029,"xmax":-13280531.9563,"ymax":5060842.9896,"YearDesign":"2000","SQMILES":"76.54"},"arcs":[[340,-428,419,-429,-430,-431,-432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447,-448,-449,-450,-451,-452,-453,-454,-455,-456,365,-457,-458,-459,-460,-461,-462,358,-463,356,-464,-465,-466,-467,-468,-469,-470,-471,-472,-473,-474,-475,-476,-477,-478]]},{"type":"Polygon","id":28206,"properties":{"OBJECTID_1":"28206","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=422","NAME":"North McCullough Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.09439092,"CenterY":35.879125593,"WID":422,"NAME_ABBRE":"North_McCullough","Shape_Leng":45980.4820582,"Shape_Area":91295755.4019,"xmin":-12819230.2457,"ymin":4276917.2329,"xmax":-12806189.9879,"ymax":4288978.2407,"YearDesign":"2002","SQMILES":"23.1"},"arcs":[[-479]]},{"type":"Polygon","id":28208,"properties":{"OBJECTID_1":"28208","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=318","NAME":"Lime Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.270663453,"CenterY":36.3554309883,"WID":318,"NAME_ABBRE":"Lime_Canyon","Shape_Leng":76572.924051,"Shape_Area":148131225.553,"xmin":-12727657.6411,"ymin":4338093.9904,"xmax":-12715691.0529,"ymax":4362887.602,"YearDesign":"2002","SQMILES":"37.06"},"arcs":[[-480]]},{"type":"Polygon","id":28209,"properties":{"OBJECTID_1":"28209","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=59","NAME":"Black Rock Desert Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-118.754546529,"CenterY":41.2152376876,"WID":59,"NAME_ABBRE":"Black_Rock_Desert","Shape_Leng":262430.145806,"Shape_Area":2254239129.86,"xmin":-13241900.8107,"ymin":4994040.7091,"xmax":-13193807.7368,"ymax":5082002.85,"YearDesign":"2000","SQMILES":"492.34"},"arcs":[[-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495,-496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506]]},{"type":"Polygon","id":28210,"properties":{"OBJECTID_1":"28210","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=697","NAME":"Highland Ridge Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.241630571,"CenterY":38.7744817097,"WID":697,"NAME_ABBRE":"Highland_Ridge","Shape_Leng":233063.555017,"Shape_Area":457738741.571,"xmin":-12730995.2713,"ymin":4676766.7486,"xmax":-12703254.2953,"ymax":4704719.5995,"YearDesign":"2006","SQMILES":"107.36"},"arcs":[[-507]]},{"type":"Polygon","id":28211,"properties":{"OBJECTID_1":"28211","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=669","NAME":"Weepah Spring Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.071616937,"CenterY":37.9693568536,"WID":669,"NAME_ABBRE":"Weepah_Spring","Shape_Leng":158848.833031,"Shape_Area":334658777.956,"xmin":-12823707.939,"ymin":4556426.18,"xmax":-12799923.447,"ymax":4591929.3817,"YearDesign":"2004","SQMILES":"80.19"},"arcs":[[-508]]},{"type":"Polygon","id":28213,"properties":{"OBJECTID_1":"28213","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=634","NAME":"Wee Thump Joshua Tree Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.093213174,"CenterY":35.5344633631,"WID":634,"NAME_ABBRE":"Wee_Thump_Joshua_Tree","Shape_Leng":26974.7511045,"Shape_Area":39740739.7871,"xmin":-12816740.5114,"ymin":4233105.7349,"xmax":-12807932.7324,"ymax":4241140.6208,"YearDesign":"2002","SQMILES":"10.14"},"arcs":[[-509]]},{"type":"Polygon","id":28219,"properties":{"OBJECTID_1":"28219","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=674","NAME":"Tunnel Spring Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.074335776,"CenterY":37.5470127762,"WID":674,"NAME_ABBRE":"Tunnel_Spring","Shape_Leng":37714.2432065,"Shape_Area":34463974.6346,"xmin":-12703973.2626,"ymin":4509380.3353,"xmax":-12696291.2768,"ymax":4519787.4711,"YearDesign":"2004","SQMILES":"8.36"},"arcs":[[-510]]},{"type":"Polygon","id":28221,"properties":{"OBJECTID_1":"28221","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=701","NAME":"South Egan Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.95904739,"CenterY":38.6969950406,"WID":701,"NAME_ABBRE":"South_Egan_Range","Shape_Leng":298140.572614,"Shape_Area":447239778.128,"xmin":-12806718.2482,"ymin":4655089.3936,"xmax":-12789409.1416,"ymax":4708511.3108,"YearDesign":"2006","SQMILES":"105.06"},"arcs":[[-511]]},{"type":"MultiPolygon","id":28227,"properties":{"OBJECTID_1":"28227","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=19","NAME":"Arrow Canyon Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.860489012,"CenterY":36.6960451731,"WID":19,"NAME_ABBRE":"Arrow_Canyon","Shape_Leng":99174.9026964,"Shape_Area":173432504.19,"xmin":-12790973.8288,"ymin":4380367.3989,"xmax":-12775781.3994,"ymax":4409801.5206,"YearDesign":"2002","SQMILES":"42.99"},"arcs":[[[-512]],[[-513]]]},{"type":"MultiPolygon","id":28228,"properties":{"OBJECTID_1":"28228","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=695","NAME":"Government Peak Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.167586634,"CenterY":39.5042349759,"WID":695,"NAME_ABBRE":"Government_Peak","Shape_Leng":52383.6429064,"Shape_Area":42942870.2548,"xmin":-12713759.6424,"ymin":4789441.6981,"xmax":-12705011.6915,"ymax":4801351.7619,"YearDesign":"2006","SQMILES":"9.87"},"arcs":[[[-514]],[[-515]]]},{"type":"Polygon","id":28230,"properties":{"OBJECTID_1":"28230","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=245","NAME":"High Rock Lake Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.220886788,"CenterY":41.2135077008,"WID":245,"NAME_ABBRE":"High_Rock_Lake","Shape_Leng":157019.230596,"Shape_Area":423051896.534,"xmin":-13282674.2645,"ymin":5024920.112,"xmax":-13260471.3168,"ymax":5064030.1645,"YearDesign":"2000","SQMILES":"92.44"},"arcs":[[-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535,-536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559,-560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,235,-573,-574,-575,-576,-577,-578,-579,-580,-581,-582,-583,-584]]},{"type":"Polygon","id":28231,"properties":{"OBJECTID_1":"28231","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=693","NAME":"Bristlecone Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.918688009,"CenterY":39.4387814082,"WID":693,"NAME_ABBRE":"Bristlecone","Shape_Leng":86105.3986923,"Shape_Area":95758307.0172,"xmin":-12798856.158,"ymin":4773808.0251,"xmax":-12785937.2276,"ymax":4794700.1416,"YearDesign":"2006","SQMILES":"22.03"},"arcs":[[-585]]},{"type":"Polygon","id":28233,"properties":{"OBJECTID_1":"28233","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=671","NAME":"White Rock Range Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.090618771,"CenterY":38.1899739273,"WID":671,"NAME_ABBRE":"White_Rock_Range","Shape_Leng":123331.17862,"Shape_Area":159073307.332,"xmin":-12706577.5799,"ymin":4596357.5907,"xmax":-12695984.9418,"ymax":4617859.87,"YearDesign":"2004","SQMILES":"37.92"},"arcs":[[-586]]},{"type":"Polygon","id":28234,"properties":{"OBJECTID_1":"28234","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=438","NAME":"Pahute Peak Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-119.021687027,"CenterY":41.2216841608,"WID":438,"NAME_ABBRE":"Pahute_Peak","Shape_Leng":160079.43067,"Shape_Area":407342323.562,"xmin":-13264142.4914,"ymin":5027197.177,"xmax":-13238699.585,"ymax":5057958.8784,"YearDesign":"2000","SQMILES":"88.97"},"arcs":[[-587,505,-588,-589,-590,501,-591,499,-592,-593,-594,-595,-596,-597,-598,-599,-600,-601,488,-602,-603,-604,-605,-606]]},{"type":"Polygon","id":28240,"properties":{"OBJECTID_1":"28240","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=670","NAME":"Parsnip Peak Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.306817395,"CenterY":38.1453184899,"WID":670,"NAME_ABBRE":"Parsnip_Peak","Shape_Leng":156102.417639,"Shape_Area":284992956.541,"xmin":-12735114.2452,"ymin":4583080.4926,"xmax":-12714328.8401,"ymax":4615501.1521,"YearDesign":"2004","SQMILES":"68.01"},"arcs":[[-607]]},{"type":"MultiPolygon","id":28339,"properties":{"OBJECTID_1":"28339","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=304","NAME":"La Madre Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.468450276,"CenterY":36.2085773826,"WID":304,"NAME_ABBRE":"La_Madre_Mountain","Shape_Leng":126775.570917,"Shape_Area":175296109.408,"xmin":-12863148.6949,"ymin":4318038.6286,"xmax":-12843197.9487,"ymax":4342279.1004,"YearDesign":"2002","SQMILES":"43.98"},"arcs":[[[-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622]],[[-623,-624,-625,-626]]]},{"type":"Polygon","id":28340,"properties":{"OBJECTID_1":"28340","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=481","NAME":"Rainbow Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.501848463,"CenterY":36.08212966,"WID":481,"NAME_ABBRE":"Rainbow_Mountain","Shape_Leng":68074.3829706,"Shape_Area":127025589.368,"xmin":-12862854.3168,"ymin":4299976.9534,"xmax":-12852430.751099998,"ymax":4323049.3693,"YearDesign":"2002","SQMILES":"31.97"},"arcs":[[-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639,-640,-641,-642,-643,-644,613,-645]]},{"type":"Polygon","id":28341,"properties":{"OBJECTID_1":"28341","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=304","NAME":"La Madre Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.598780605,"CenterY":36.188685293,"WID":304,"NAME_ABBRE":"La_Madre_Mountain","Shape_Leng":91083.5433013,"Shape_Area":116740723.01,"xmin":-12879107.6637,"ymin":4316753.2039,"xmax":-12858936.2006,"ymax":4333296.0296,"YearDesign":"2002","SQMILES":"29.3"},"arcs":[[-646,-647,607,-648,-649,-650,-651,-652,-653,-654,-655,-656]]},{"type":"MultiPolygon","id":28342,"properties":{"OBJECTID_1":"28342","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=481","NAME":"Rainbow Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.544448788,"CenterY":36.0725817309,"WID":481,"NAME_ABBRE":"Rainbow_Mountain","Shape_Leng":45818.7182415,"Shape_Area":28413104.9061,"xmin":-12865173.314699998,"ymin":4302544.7593,"xmax":-12856373.5876,"ymax":4317768.0585,"YearDesign":"2002","SQMILES":"7.15"},"arcs":[[[631,-657,-658,-659,-660,-661,-662,-663,-664,-665,-666,-636,635,-667,633,-668]],[[629,-669,-670]],[[-671,-627]],[[-628,-672]]]},{"type":"Polygon","id":28345,"properties":{"OBJECTID_1":"28345","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=394","NAME":"Mt. Charleston Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.757407889,"CenterY":36.1615478598,"WID":394,"NAME_ABBRE":"Mt_Charleston","Shape_Leng":22593.7399012,"Shape_Area":13538021.1707,"xmin":-12888833.1044,"ymin":4320133.4339,"xmax":-12882447.0867,"ymax":4325670.2256,"YearDesign":"1989","SQMILES":"3.4"},"arcs":[[-673,-674]]},{"type":"Polygon","id":28346,"properties":{"OBJECTID_1":"28346","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=394","NAME":"Mt. Charleston Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-115.701125666,"CenterY":36.2824142646,"WID":394,"NAME_ABBRE":"Mt_Charleston","Shape_Leng":219401.157619,"Shape_Area":342955246.786,"xmin":-12890204.1622,"ymin":4323954.6721,"xmax":-12866491.4425,"ymax":4356956.0296,"YearDesign":"1989","SQMILES":"85.87"},"arcs":[[645,-675,672,-676]]},{"type":"Polygon","id":28347,"properties":{"OBJECTID_1":"28347","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=395","NAME":"Mt. Moriah Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.129927354,"CenterY":39.3916557587,"WID":395,"NAME_ABBRE":"Mt_Moriah","Shape_Leng":53526.7117949,"Shape_Area":58955112.9484,"xmin":-12710171.2996,"ymin":4771201.0871,"xmax":-12698452.0136,"ymax":4784398.3615,"YearDesign":"1989","SQMILES":"13.59"},"arcs":[[-677,-678,-679]]},{"type":"Polygon","id":28348,"properties":{"OBJECTID_1":"28348","FEATURE1":"Wilderness","AGBUR":"FS","URL":"http://www.wilderness.net/NWPS/wildView?WID=395","NAME":"Mt. Moriah Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.181310927,"CenterY":39.2633825199,"WID":395,"NAME_ABBRE":"Mt_Moriah","Shape_Leng":181694.710633,"Shape_Area":540346073.388,"xmin":-12726177.9845,"ymin":4744403.8858,"xmax":-12699195.7432,"ymax":4775359.2543,"YearDesign":"1989","SQMILES":"125.01"},"arcs":[[676,-680,-681]]},{"type":"MultiPolygon","id":39326,"properties":{"OBJECTID_1":"39326","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=762","NAME":"Pine Forest Range Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-118.723700339,"CenterY":41.6611075421,"WID":762,"NAME_ABBRE":"Pine_Forest_Range","Shape_Leng":127336.461519,"Shape_Area":199981072.005,"xmin":-13224728.6337,"ymin":5101646.0564,"xmax":-13206314.9077,"ymax":5121227.2642,"YearDesign":"2014","SQMILES":"43.08"},"arcs":[[[-682,-683,-684,-685,-686,-687,-688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701]],[[-702,-703,-704,-705,-706,-707,-708,-709,-710,692,-711,690,-712,688,-713,-714,-715,-716,-717,-718]]]},{"type":"Polygon","id":39332,"properties":{"OBJECTID_1":"39332","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=277","NAME":"Jimbilnan Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.454080255,"CenterY":36.2454182633,"WID":277,"NAME_ABBRE":"Jimbilnan","Shape_Leng":75783.0984847,"Shape_Area":117731472.491,"xmin":-12745255.3324,"ymin":4322426.8054,"xmax":-12735832.0934,"ymax":4343238.1261,"YearDesign":"2002","SQMILES":"29.53"},"arcs":[[-719,-720,-721,-722,-723,-724,-725,-726,-727,-728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751,-752,-753,-754,-755,-756]]},{"type":"Polygon","id":39333,"properties":{"OBJECTID_1":"39333","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=462","NAME":"Pinto Valley Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.585053117,"CenterY":36.1912569371,"WID":462,"NAME_ABBRE":"Pinto_Valley","Shape_Leng":112989.666904,"Shape_Area":244949698.188,"xmin":-12769642.5687,"ymin":4318945.2443,"xmax":-12742294.2252,"ymax":4336920.7368,"YearDesign":"2002","SQMILES":"61.52"},"arcs":[[-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767,-768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791,-792,-793,-794]]},{"type":"Polygon","id":39334,"properties":{"OBJECTID_1":"39334","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=51","NAME":"Black Canyon Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.736890092,"CenterY":35.9228464334,"WID":52,"NAME_ABBRE":"Black_Canyon_NV","Shape_Leng":88806.0382109,"Shape_Area":106008151.211,"xmin":-12778119.3956,"ymin":4279067.7095,"xmax":-12764333.198,"ymax":4300491.217,"YearDesign":"2002","SQMILES":"26.8"},"arcs":[[-795]]},{"type":"Polygon","id":39335,"properties":{"OBJECTID_1":"39335","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=404","NAME":"Nellis Wash Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.732062117,"CenterY":35.3839025033,"WID":404,"NAME_ABBRE":"Nellis_Wash","Shape_Leng":58155.9059169,"Shape_Area":101706446.001,"xmin":-12777342.054,"ymin":4207164.8218,"xmax":-12763800.0963,"ymax":4226284.8006,"YearDesign":"2002","SQMILES":"26.06"},"arcs":[[-796,-797,-798,-799]]},{"type":"Polygon","id":39336,"properties":{"OBJECTID_1":"39336","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=76","NAME":"Bridge Canyon Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.702061744,"CenterY":35.2260193008,"WID":76,"NAME_ABBRE":"Bridge_Canyon","Shape_Leng":46153.8294979,"Shape_Area":47840079.2932,"xmin":-12771476.3582,"ymin":4188658.6054,"xmax":-12764919.4335,"ymax":4199650.1639,"YearDesign":"2002","SQMILES":"12.31"},"arcs":[[-800,-801,-802]]},{"type":"Polygon","id":39344,"properties":{"OBJECTID_1":"39344","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=400","NAME":"Muddy Mountains Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.663705747,"CenterY":36.2295968505,"WID":400,"NAME_ABBRE":"Muddy_Mountains","Shape_Leng":23095.7580481,"Shape_Area":22112077.4207,"xmin":-12767026.8355,"ymin":4328099.8674,"xmax":-12760740.476,"ymax":4334662.3918,"YearDesign":"2002","SQMILES":"5.55"},"arcs":[[-803,-804]]},{"type":"Polygon","id":39345,"properties":{"OBJECTID_1":"39345","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=175","NAME":"Eldorado Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.747839275,"CenterY":35.8162998778,"WID":175,"NAME_ABBRE":"Eldorado","Shape_Leng":68401.5566056,"Shape_Area":161668213.293,"xmin":-12778943.9188,"ymin":4263580.9387,"xmax":-12768051.2838,"ymax":4286229.4223,"YearDesign":"2002","SQMILES":"40.98"},"arcs":[[-805,805,-806,-807]]},{"type":"Polygon","id":39346,"properties":{"OBJECTID_1":"39346","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=264","NAME":"Ireteba Peaks Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.725068769,"CenterY":35.6062392174,"WID":264,"NAME_ABBRE":"Ireteba_Peaks","Shape_Leng":56045.1349219,"Shape_Area":136226724.627,"xmin":-12776977.905,"ymin":4239859.7036,"xmax":-12763611.0526,"ymax":4252952.2851,"YearDesign":"2002","SQMILES":"34.71"},"arcs":[[-808,-809]]},{"type":"Polygon","id":39347,"properties":{"OBJECTID_1":"39347","FEATURE1":"Wilderness","AGBUR":"NPS","URL":"http://www.wilderness.net/NWPS/wildView?WID=573","NAME":"Spirit Mountain Wilderness","STATE":"NV","dateLastMo":"2015-04-03T04:00:00.000Z","CenterX":-114.658358257,"CenterY":35.2742828057,"WID":573,"NAME_ABBRE":"Spirit_Mountain","Shape_Leng":90648.0131074,"Shape_Area":200444817.568,"xmin":-12772664.7006,"ymin":4189988.5424,"xmax":-12756094.7139,"ymax":4210728.7704,"YearDesign":"2002","SQMILES":"51.5"},"arcs":[[809,-811,-812,-813,813,-815,-816,-817,-818,-819,-820,-821,796,-822,-823,-824,-825,-826,-827,-828,-814,-829,-830,-831,-810]]},{"type":"Polygon","id":39348,"properties":{"OBJECTID_1":"39348","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=264","NAME":"Ireteba Peaks Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.80534111,"CenterY":35.6183415958,"WID":264,"NAME_ABBRE":"Ireteba_Peaks","Shape_Leng":37704.1865338,"Shape_Area":63399893.2591,"xmin":-12785296.3142,"ymin":4241123.4411,"xmax":-12776919.5665,"ymax":4253237.8594,"YearDesign":"2002","SQMILES":"16.15"},"arcs":[[807,-832]]},{"type":"Polygon","id":39349,"properties":{"OBJECTID_1":"39349","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=573","NAME":"Spirit Mountain Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.731498634,"CenterY":35.2691058336,"WID":573,"NAME_ABBRE":"Spirit_Mountain","Shape_Leng":12248.9923506,"Shape_Area":3363116.68854,"xmin":-12772665.3225,"ymin":4198201.9708,"xmax":-12771475.5122,"ymax":4203624.394,"YearDesign":"2002","SQMILES":"0.86"},"arcs":[[-833,817,816,815,814,-814,812,811,810,-810]]},{"type":"Polygon","id":39350,"properties":{"OBJECTID_1":"39350","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=400","NAME":"Muddy Mountains Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.719277822,"CenterY":36.2924409933,"WID":400,"NAME_ABBRE":"Muddy_Mountains","Shape_Leng":116761.492563,"Shape_Area":278529382.547,"xmin":-12782343.2037,"ymin":4330969.7192,"xmax":-12756655.8936,"ymax":4352289.0589,"YearDesign":"2002","SQMILES":"69.76"},"arcs":[[-834,803]]},{"type":"Polygon","id":39351,"properties":{"OBJECTID_1":"39351","FEATURE1":"Wilderness","AGBUR":"BLM","URL":"http://www.wilderness.net/NWPS/wildView?WID=175","NAME":"Eldorado Wilderness","STATE":"NV","dateLastMo":"2015-03-09T04:00:00.000Z","CenterX":-114.802070986,"CenterY":35.7662069306,"WID":175,"NAME_ABBRE":"Eldorado","Shape_Leng":30550.5975873,"Shape_Area":35508910.352,"xmin":-12782578.9542,"ymin":4263457.8175,"xmax":-12776726.9501,"ymax":4272168.3906,"YearDesign":"2002","SQMILES":"9.01"},"arcs":[[-835,-806,804]]}]},"basin":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"ET_ID":0,"Acres":703366.470505044,"Name":"Basin and Range","OBJECT_ID":9999,"SQMILES":1099,"YearDesign":"2015"},"arcs":[[-836]]}]},"nca":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"AREA":3301020000,"PERIMETER":540514,"NV_NCA_":2,"NV_NCA_ID":0,"NCA_CASEFI":"N74460","NCA_NAME":"Black Rock Desert / High Rock Canyon NCA","NCA_STATE":"NV","Acres":815696,"YearDesign":2000,"SQMILES":1275},"arcs":[[-837]]},{"type":"Polygon","properties":{"AREA":801955000,"PERIMETER":231989,"NV_NCA_":3,"NV_NCA_ID":0,"NCA_CASEFI":null,"NCA_NAME":"Red Rock Canyon NCA","NCA_STATE":"NV","Acres":198167,"YearDesign":1998,"SQMILES":310},"arcs":[[-838]]},{"type":"Polygon","properties":{"AREA":196081000,"PERIMETER":82337.6,"NV_NCA_":5,"NV_NCA_ID":0,"NCA_CASEFI":null,"NCA_NAME":"Sloan Canyon NCA","NCA_STATE":"NV","Acres":48452,"YearDesign":2002,"SQMILES":76},"arcs":[[-839]]}]},"gbnp":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"NAME":"National Park Service","ABBR":"NPS","AGENCY":"22000000","Shape_Leng":107329.3062,"Shape_Area":311042541.574,"Acres":76860,"SQMILES":120,"YearDesign":1986},"arcs":[[-840]]}]},"negative":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"YearDesign":1998,"SQMILES":-74},"arcs":[[[-841,-842,-843]],[[-844,-845,-846]],[[-847]]]},{"type":"MultiPolygon","properties":{"YearDesign":2000,"SQMILES":-592},"arcs":[[[-848]],[[-849,-850]],[[-851]],[[-852,-853,-854,-855,-856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879,-880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890]],[[-891,-892,-893,-894,-895,-896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907]],[[-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919,-920,-921,-922,-923,-924,-925,-926,-927,-928,-929]],[[-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943,-944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959,-960,-961,-962,-963]],[[-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983,-984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997]]]},{"type":"Polygon","properties":{"YearDesign":2002,"SQMILES":-23},"arcs":[[-998]]}]}},"arcs":[[[9008,9889],[-213,0],[-151,1],[-436,-8],[-970,0],[-620,3],[-171,0],[-86,1],[-383,2],[-307,3],[-378,3],[-227,3],[-18,2],[-528,5],[-250,3],[-322,5],[-321,4],[-583,11],[-339,5],[-305,2],[-251,8],[-667,19],[-174,6],[-202,6],[-676,22],[-107,4],[-37,-466],[-14,-169],[-35,-442],[-7,-101],[-56,-779],[-6,-81],[-35,-473],[-12,-169],[-17,-200],[-8,-77],[-8,-104],[-14,-153],[-4,-70],[-26,-288],[-1,-32],[-13,-93],[-9,-93],[-16,-350],[-5,-96],[486,-315],[177,-112],[87,-55],[58,-38],[267,-169],[272,-174],[191,-124],[154,-100],[245,-155],[168,-106],[437,-282],[208,-133],[327,-210],[55,-34],[147,-96],[246,-154],[532,-342],[237,-152],[345,-219],[400,-257],[460,-294],[413,-266],[102,-66],[292,-185],[46,-30],[145,-91],[309,-196],[419,-270],[24,-15],[417,-269],[49,-29],[248,-160],[245,-157],[34,-19],[249,-158],[134,-88],[85,-52],[295,-191],[-7,35],[15,23],[34,20],[10,11],[-5,18],[-21,13],[-38,12],[-12,9],[25,22],[23,8],[26,-2],[45,12],[15,45],[-5,54],[-14,13],[-12,57],[-1,20],[-16,34],[-4,22],[3,33],[-19,48],[-21,27],[-7,28],[-13,15],[-39,26],[-23,29],[-3,24],[-23,42],[1,22],[24,14],[12,16],[-9,17],[-8,38],[-17,10],[28,11],[10,32],[-46,49],[-17,10],[-2,19],[16,30],[-40,24],[-3,12],[13,28],[-1,28],[6,9],[-12,17],[2,31],[-21,20],[28,35],[-17,20],[3,12],[55,18],[17,8],[-64,40],[-19,22],[3,16],[-39,21],[-1,30],[-19,18],[-6,14],[8,9],[-6,20],[11,16],[24,17],[-35,15],[12,24],[-13,18],[-19,13],[-4,12],[37,25],[44,4],[33,7],[8,-5],[35,11],[11,11],[47,26],[26,-18],[30,16],[46,15],[55,2],[12,-6],[42,3],[14,-11],[-14,-11],[12,-12],[30,6],[26,12],[22,-1],[20,-18],[61,33],[48,-8],[17,2],[19,-19],[56,-33],[40,-34],[3,-10],[-14,-12],[1,-12],[19,0],[18,-9],[37,-9],[2,-13],[16,-15],[39,-15],[41,2],[67,18],[40,-5],[24,21],[1,22],[28,47],[13,12],[-17,15],[5,12],[37,9],[13,28],[11,10],[17,30],[23,28],[25,9],[-2,80],[-4,45],[1,171],[-2,83],[-5,41],[-18,363],[-6,297],[-10,206],[-2,184],[-2,34],[-5,225],[-2,20],[-6,202],[-1,127],[-3,123],[4,81],[-3,20],[-2,102],[-7,208],[-2,136],[-2,49],[-5,249],[-3,62],[-5,180],[-6,353],[-5,148],[3,0],[-7,177],[-1,86],[-3,94],[-1,86],[-9,442],[-3,52],[-4,163],[-2,125],[-3,62],[-5,294],[-10,363],[-1,76],[-4,134],[-1,83],[-8,477],[-5,194],[-1,89],[-5,170],[-4,183],[-2,138],[-5,212],[-2,12],[-3,193],[-10,302],[0,58],[-7,145],[-383,-4],[-221,0],[-181,1]],[[1455,5212],[-19,-4],[-6,-19],[-17,-21],[13,-24],[-14,-23],[-45,-2],[-35,-25],[-19,-1],[-6,-20],[15,-4],[31,-39],[-28,-27],[11,-4],[2,-22],[16,-5],[28,11],[40,-9],[-1,28],[30,2],[10,-5],[29,4],[25,-5],[5,-25],[21,15],[11,-14],[-3,-28],[46,5],[5,15],[14,0],[11,24],[50,14],[7,35],[-25,-5],[3,47],[-35,-15],[-31,0],[-33,23],[-12,-2],[5,20],[-22,-11],[0,36],[-19,9],[28,36],[-20,13],[-28,1],[0,17],[-38,4]],[[2678,4046],[65,-42],[35,6],[-4,41],[-16,19],[-18,-7],[2,17],[-14,22],[-24,2],[-18,-7],[-13,5],[-3,15],[-18,11],[-33,1],[-8,-20],[-16,-11],[83,-52]],[[5064,5460],[-12,-12],[-37,6],[2,-45],[-31,7],[-3,-96],[23,-1],[0,-25],[33,0],[-1,-19],[88,-1],[-5,7],[18,11],[35,2],[24,-11],[44,9],[19,-1],[0,20],[-29,3],[2,50],[-22,-3],[23,13],[-33,0],[0,31],[-49,22],[-14,-12],[-3,10],[-29,24],[-32,3],[-11,8]],[[4351,5591],[-22,4],[-16,-9],[-2,-29],[26,-7],[25,-35],[2,-30],[-17,4],[-8,15],[-29,0],[-10,-7],[-26,9],[-3,-11],[-18,-6],[-48,9],[-19,-7],[-2,-43],[-23,-27],[20,-13],[67,-19],[2,-36],[-20,-13],[21,-5],[1,-23],[13,-13],[-23,-45],[13,-22],[-19,-3],[3,-11],[20,4],[10,-12],[62,-8],[34,2],[7,15],[30,1],[-19,21],[5,4],[28,-24],[16,12],[39,-4],[19,9],[0,24],[19,11],[47,-14],[14,10],[6,22],[11,13],[29,-17],[8,8],[-5,34],[22,25],[-24,83],[-7,51],[-40,23],[-17,-2],[-22,19],[10,19],[-37,4],[-22,-4],[-35,16],[8,10],[-7,18],[-48,-5],[-49,5]],[[7719,5780],[-11,-18],[14,-14],[6,-33],[16,-16],[23,-1],[39,8],[65,-26],[1,35],[8,-1],[21,24],[10,23],[-9,7],[1,25]],[[7727,5780],[-8,0]],[[7732,5780],[-5,0]],[[7747,5779],[-15,1]],[[7748,5778],[-1,1]],[[7750,5776],[-2,2]],[[7765,5776],[-15,0]],[[7767,5777],[-2,-1]],[[7769,5778],[-2,-1]],[[7769,5779],[0,-1]],[[7772,5780],[-3,-1]],[[7777,5781],[-5,-1]],[[7786,5782],[-9,-1]],[[7796,5782],[-10,0]],[[7823,5778],[-27,4]],[[7867,5780],[-25,-17],[-16,2],[-3,13]],[[7873,5781],[-6,-1]],[[7878,5782],[-5,-1]],[[7882,5782],[-4,0]],[[7890,5785],[-8,-3]],[[7897,5789],[-7,-4]],[[7903,5793],[-6,-4]],[[7772,5780],[5,1]],[[7769,5779],[3,1]],[[7769,5778],[0,1]],[[7767,5777],[2,1]],[[7765,5776],[2,1]],[[7750,5776],[15,0]],[[7748,5778],[2,-2]],[[7747,5779],[1,-1]],[[7732,5780],[15,-1]],[[7727,5780],[5,0]],[[7719,5780],[8,0]],[[7903,5793],[-7,22],[-31,7],[-18,-5],[-7,15],[-27,3],[-49,-3],[-37,-13],[-11,-21],[3,-18]],[[7897,5789],[6,4]],[[7890,5785],[7,4]],[[7882,5782],[8,3]],[[7878,5782],[4,0]],[[7873,5781],[5,1]],[[7867,5780],[6,1]],[[7823,5778],[44,2]],[[7796,5782],[27,-4]],[[7786,5782],[10,0]],[[7777,5781],[9,1]],[[7531,4787],[-15,10],[-30,0],[8,-16],[-14,-57],[-25,21],[-25,6],[-32,-37],[17,-13],[32,-9],[-8,-11],[-25,2],[-24,-27],[-36,7],[-12,-7],[0,-64],[-23,0],[0,-33],[23,-18],[-18,3],[-28,-56],[6,-20],[-8,-27],[28,-25],[29,-2],[-18,20],[25,22],[42,-1],[0,14],[19,-1],[58,18],[25,25],[8,18],[14,7],[15,61],[-8,38],[-21,8],[37,0],[-19,29],[0,68],[33,28],[2,9],[-32,0],[0,10]],[[8968,6452],[-18,-10],[-32,-4],[-4,-27],[-15,-15],[4,-19],[-21,-11],[-2,-15],[25,2],[-4,-34],[-25,-18],[-4,-15],[13,-25],[-18,-36],[5,-6],[32,1],[19,-5],[-61,1],[-18,-41],[19,-19],[24,-4],[-17,-23],[-16,-5],[-34,16],[1,-32],[19,-23],[-11,-10],[-19,11],[-15,-5],[10,-21],[35,-11],[-20,-22],[26,0],[7,-11],[-14,-4],[-1,-53],[-14,-25],[30,0],[6,-20],[23,0],[0,-17],[19,1],[19,22],[33,-6],[8,-13],[0,-40],[-18,-9],[11,-27],[-1,-17],[46,-13],[0,12],[23,-2],[16,9],[-1,120],[-8,0],[0,21],[31,1],[-1,39],[30,0],[0,22],[32,0],[-1,35],[-14,5],[9,10],[-5,35],[-19,16],[-3,50],[-11,10],[11,7],[-1,35],[-14,-1],[-9,17],[7,21],[-15,5],[0,40],[-13,13],[12,17],[-21,2],[17,11],[4,19],[-1,62],[-16,-1],[0,22],[-71,5]],[[7479,5587],[0,-3]],[[7435,5625],[-3,-28],[33,3],[14,-13]],[[7442,5626],[-7,-1]],[[7445,5627],[-3,-1]],[[7479,5627],[-34,0]],[[7481,5627],[-2,0]],[[7490,5630],[-9,-3]],[[7495,5632],[-5,-2]],[[7499,5634],[-4,-2]],[[7503,5635],[-4,-1]],[[7506,5639],[-3,-4]],[[7507,5640],[-1,-1]],[[7514,5651],[-7,-11]],[[7526,5662],[-12,-11]],[[7528,5666],[-2,-4]],[[7531,5668],[-3,-2]],[[7535,5675],[-4,-7]],[[7537,5675],[-2,0]],[[7542,5675],[-5,0]],[[7558,5675],[-16,0]],[[7558,5676],[0,-1]],[[7558,5678],[0,-2]],[[7561,5678],[-3,0]],[[7561,5679],[0,-1]],[[7564,5680],[-3,-1]],[[7565,5680],[-1,0]],[[7669,5526],[12,10],[-39,-2],[-14,17],[7,17],[-13,21],[-32,4],[-2,22],[25,32],[0,12],[-48,21]],[[7670,5521],[-1,5]],[[7669,5519],[1,2]],[[7667,5514],[2,5]],[[7672,5505],[-5,9]],[[7688,5501],[-16,4]],[[7690,5499],[-2,2]],[[7690,5494],[0,5]],[[7693,5488],[-3,6]],[[7697,5485],[-4,3]],[[7697,5480],[0,5]],[[7697,5478],[0,2]],[[7700,5477],[-3,1]],[[7700,5471],[0,6]],[[7699,5470],[1,1]],[[7697,5469],[2,1]],[[7696,5468],[1,1]],[[7694,5466],[2,2]],[[7690,5457],[4,9]],[[7688,5452],[2,5]],[[7688,5445],[0,7]],[[7690,5444],[-2,1]],[[7696,5435],[-6,9]],[[7697,5433],[-1,2]],[[7697,5432],[0,1]],[[7479,5584],[4,-23],[-9,-6],[0,-23],[-9,-15],[9,-10],[3,-34],[-14,-11],[2,-30],[12,0],[60,-26],[37,-3],[23,-11],[50,-8],[34,23],[20,5],[-4,20]],[[7479,5587],[0,-3]],[[8150,8329],[-2,56],[-27,4],[27,2],[2,57],[7,24],[12,15],[-17,9],[6,14],[-37,-7],[-8,12],[25,12],[25,-1],[20,6],[0,21],[-31,0],[-10,7],[-31,3],[-54,-1],[-9,-30],[-9,0],[0,-42],[16,0],[0,-23],[61,0],[1,-61],[-81,-3],[-35,12],[-28,0],[-21,-7],[0,-20],[-20,0],[0,-45],[29,0],[0,-21],[57,-1],[28,-7],[11,-12],[62,1],[0,-21],[29,-29],[0,-33],[53,0],[1,29],[-25,13],[-2,28],[-25,13],[0,26]],[[7314,4558],[-4,9],[-62,1],[-2,-10],[-47,4],[-12,-8],[0,-25],[-29,0],[-2,-41],[-39,0],[-33,7],[-1,-14],[-76,-31],[0,-9],[29,-25],[-3,-15],[31,-18],[26,5],[8,14],[27,4],[24,-11],[18,28],[35,28],[22,5],[37,0],[8,7],[-2,26],[9,12],[20,6],[14,28],[4,23]],[[240,6387],[-29,-5],[-15,-23],[-61,-6],[7,-20],[-3,-23],[-21,-5],[8,-16],[-16,0],[-3,-30],[-34,1],[-7,7],[-33,-6],[0,-43],[8,-23],[-14,-8],[14,-16],[-14,-16],[0,-17],[11,-2],[19,14],[41,-1],[28,24],[6,22],[-14,12],[17,27],[30,11],[40,-10],[2,11],[29,0],[9,30],[-11,18],[17,13],[-40,1],[-6,21],[44,-4],[-6,9],[31,33],[-3,16],[-31,4]],[[215,6452],[-83,-4],[1,-20],[19,-2],[0,-13],[-16,-6],[-3,-34],[38,-11],[43,32],[-9,17],[15,20],[-5,21]],[[7655,5995],[-14,-18],[-10,-49],[18,-28],[-7,-28],[29,-16],[35,-3],[-2,7],[36,11],[11,16],[34,5],[0,37],[9,-1],[0,151],[-16,6],[0,52],[-76,0],[-1,-22],[-31,0],[-1,-20],[-16,-4],[0,-29],[10,-20],[-8,-47]],[[5753,5510],[0,15],[-35,11],[-19,-22],[-12,-4],[-78,0],[-3,-19],[31,-25],[-5,-17],[-86,0],[-16,-16],[-5,-27],[-9,-14],[5,-23],[-10,-1],[-10,21],[-38,0],[0,-21],[-14,-19],[-2,-31],[18,-19],[14,-39],[3,-23],[-19,-9],[-1,-61],[5,0],[-3,-33],[17,-7],[47,9],[41,18],[10,13],[11,-12],[-22,-19],[-48,-7],[-28,-9],[4,-12],[56,-25],[29,19],[17,-6],[29,0],[19,14],[12,-10],[8,24],[-29,8],[50,11],[43,-11],[-16,20],[21,31],[-6,10],[-31,-4],[8,15],[1,71],[14,0],[2,15],[13,14],[-24,7],[15,12],[-17,6],[2,9],[22,3],[10,27],[-14,21],[16,11],[51,-5],[-31,13],[-6,20],[-35,2],[-15,19],[19,20],[14,31],[10,10]],[[7690,5494],[3,-6]],[[7688,5501],[2,-2]],[[7672,5505],[16,-4]],[[7667,5514],[5,-9]],[[7669,5519],[-2,-5]],[[7670,5521],[-1,-2]],[[7669,5526],[1,-5]],[[7697,5432],[22,-24],[20,-4],[12,18],[18,9],[11,17],[35,1],[10,10],[36,9],[0,36],[-15,-4],[-2,53],[-89,12],[-44,1],[-42,-40]],[[7696,5435],[1,-2]],[[7690,5444],[6,-9]],[[7688,5445],[2,-1]],[[7690,5457],[-2,-5]],[[7694,5466],[-4,-9]],[[7696,5468],[-2,-2]],[[7697,5469],[-1,-1]],[[7699,5470],[-2,-1]],[[7700,5471],[-1,-1]],[[7700,5477],[0,-6]],[[7697,5478],[3,-1]],[[7697,5480],[0,-2]],[[7697,5485],[0,-5]],[[7693,5488],[4,-3]],[[7719,7872],[1,37],[33,-5],[-14,13],[41,35],[31,0],[16,41],[0,41],[30,0],[-1,30],[16,0],[8,22],[22,22],[17,9],[3,39],[10,0],[0,22],[-10,0],[-16,25],[-35,0],[-2,-20],[-33,15],[-4,-18],[-30,-20],[-1,-14],[-20,7],[-39,0],[-2,-38],[17,4],[61,0],[1,-24],[-9,-22],[-30,1],[0,22],[-40,14],[0,-12],[-21,-24],[-40,0],[-1,-40],[28,0],[24,16],[6,-9],[35,-24],[-25,-25],[-19,-4],[-21,-19],[4,-39],[-38,-43],[-32,1],[11,29],[0,51],[-23,0],[2,-33],[-17,0],[3,-45],[-19,6],[2,14],[-18,3],[0,-17],[-10,2],[3,32],[23,23],[-14,11],[0,13],[-36,0],[14,-25],[-10,-20],[-28,5],[-6,-15],[-20,-2],[-13,10],[-15,-8],[-40,-12],[0,-21],[17,1],[-17,-13],[0,-9],[35,5],[1,-23],[51,-11],[19,-11],[20,-2],[9,-10],[45,-24],[-15,-31],[-11,2],[-21,-13],[-13,3],[-24,-13],[1,-8],[-26,-3],[7,24],[-12,13],[8,6],[-42,11],[-6,13],[-41,13],[-16,14],[2,-40],[-33,8],[73,-42],[-7,-34],[-34,-7],[22,-24],[-14,-15],[0,-64],[67,17],[-12,-15],[12,-24],[48,-10],[23,23],[3,18],[-8,9],[18,5],[-1,19],[8,14],[28,19],[4,12],[25,17],[20,24],[4,19],[-21,4],[-1,27],[8,14],[21,-8],[25,16],[26,25],[11,19],[4,23]],[[4009,9370],[-12,-4],[-76,1],[-18,-6],[-9,-17],[9,-17],[-15,-18],[31,-12],[15,0],[-8,-12],[8,-43],[-4,-19],[11,-3],[-13,-14],[-2,-22],[-23,-8],[-23,4],[4,-23],[12,-14],[-16,-26],[6,-6],[73,-8],[29,26],[43,26],[-6,6],[9,28],[23,7],[3,14],[-18,12],[7,10],[-8,18],[1,24],[-9,16],[8,39],[-11,36],[-21,5]],[[7551,5712],[50,-2],[8,17],[-7,22],[8,51],[18,8],[-7,22],[-14,5],[-26,31],[4,26],[-21,0],[-3,-10],[-26,-17],[0,-10],[-38,-13]],[[7541,5713],[10,-1]],[[7526,5715],[15,-2]],[[7517,5716],[9,-1]],[[7505,5721],[12,-5]],[[7500,5724],[5,-3]],[[7488,5732],[12,-8]],[[7484,5732],[4,0]],[[7481,5734],[3,-2]],[[7479,5736],[2,-2]],[[7478,5738],[1,-2]],[[7490,5755],[-12,-17]],[[7492,5755],[-2,0]],[[7490,5773],[2,-18]],[[7488,5776],[2,-3]],[[7493,5800],[-5,-24]],[[7492,5801],[1,-1]],[[7488,5833],[-7,-20],[11,-12]],[[7490,5834],[-2,-1]],[[7494,5838],[-4,-4]],[[7496,5840],[-2,-2]],[[7497,5842],[-1,-2]],[[7445,5627],[34,0]],[[7442,5626],[3,1]],[[7435,5625],[7,1]],[[7419,5741],[-2,-43],[15,0],[0,-73],[3,0]],[[7422,5742],[-3,-1]],[[7426,5742],[-4,0]],[[7444,5744],[-18,-2]],[[7447,5751],[-3,-7]],[[7449,5752],[-2,-1]],[[7451,5752],[-2,0]],[[7454,5752],[-3,0]],[[7455,5752],[-1,0]],[[7458,5751],[-3,1]],[[7464,5750],[-6,1]],[[7467,5749],[-3,1]],[[7468,5748],[-1,1]],[[7478,5738],[-10,10]],[[7479,5736],[-1,2]],[[7481,5734],[-2,2]],[[7484,5732],[-3,2]],[[7488,5732],[-4,0]],[[7500,5724],[-12,8]],[[7505,5721],[-5,3]],[[7517,5716],[-12,5]],[[7526,5715],[-9,1]],[[7541,5713],[-15,2]],[[7551,5712],[-10,1]],[[7565,5680],[16,0],[6,24],[-36,8]],[[7564,5680],[1,0]],[[7561,5679],[3,1]],[[7558,5678],[3,1]],[[7542,5675],[16,3]],[[7537,5675],[5,0]],[[7535,5675],[2,0]],[[7531,5668],[4,7]],[[7528,5666],[3,2]],[[7526,5662],[2,4]],[[7514,5651],[12,11]],[[7507,5640],[7,11]],[[7506,5639],[1,1]],[[7503,5635],[3,4]],[[7499,5634],[4,1]],[[7495,5632],[4,2]],[[7490,5630],[5,2]],[[7481,5627],[9,3]],[[7479,5627],[2,0]],[[7447,5751],[2,1]],[[7444,5744],[3,7]],[[7426,5742],[18,2]],[[7422,5742],[4,0]],[[7419,5741],[3,1]],[[7497,5842],[-23,14],[-9,16],[-26,-14],[-22,-29],[0,-24],[-30,-10],[0,-57],[32,3]],[[7497,5842],[0,0]],[[7496,5840],[1,2]],[[7494,5838],[2,2]],[[7490,5834],[4,4]],[[7488,5833],[2,1]],[[7492,5801],[-13,15],[9,17]],[[7493,5800],[-1,1]],[[7488,5776],[5,24]],[[7490,5773],[-2,3]],[[7492,5755],[-2,18]],[[7490,5755],[2,0]],[[7468,5748],[22,7]],[[7467,5749],[1,-1]],[[7464,5750],[3,-1]],[[7458,5751],[6,-1]],[[7455,5752],[3,-1]],[[7454,5752],[1,0]],[[7451,5752],[3,0]],[[7449,5752],[2,0]],[[7794,9744],[-25,22],[-8,16],[-29,-26],[0,-36],[-15,0],[6,-14],[-15,-16],[-28,-5],[-10,-19],[-19,-7],[2,-14],[-42,-19],[-21,22],[-13,33],[-42,-40],[-20,-47],[6,-17],[28,-24],[7,-16],[-26,-47],[-2,-35],[-38,-52],[-2,-14],[17,-30],[0,-20],[62,0],[21,14],[15,1],[13,-15],[28,0],[-9,10],[2,40],[-11,12],[32,-11],[32,1],[5,28],[18,30],[35,14],[3,25],[42,1],[20,5],[10,-7],[16,10],[26,-10],[15,4],[-2,31],[41,0],[21,42],[33,21],[-29,14],[0,8],[29,-13],[25,11],[-8,15],[12,0],[-12,21],[21,21],[0,32],[-15,10],[-15,-3],[-24,-16],[-14,0],[-20,-17],[-1,-13],[-34,-17],[0,42],[-61,0],[0,14],[-14,12],[-19,38]],[[7212,4139],[-21,-7],[-17,-17],[-25,-77],[63,7],[-51,-16],[26,-24],[52,-38],[33,-48],[22,-8],[39,11],[-1,39],[10,36],[-7,30],[10,55],[-4,35],[-48,-2],[-22,11],[-26,25],[-15,1],[-18,-13]],[[9175,5138],[-18,-9],[-22,-1],[-12,-14],[-22,4],[-17,-18],[18,-19],[55,-12],[15,-16],[4,-19],[-9,-4],[4,-19],[-26,-3],[-7,-12],[10,-17],[34,3],[-24,-49],[52,-25],[26,-23],[47,35],[13,6],[-2,19],[-29,-4],[14,44],[12,9],[-24,12],[10,12],[-5,52],[-3,75],[-24,2],[-19,-8],[-17,22],[-29,-3],[-5,-20]],[[9006,3183],[-14,-13],[-25,-6],[-5,-21],[-19,-9],[-9,-16],[7,-8],[-19,-4],[-14,-32],[-3,-20],[-61,-45],[-37,-8],[-5,-21],[-11,6],[-11,-22],[-25,-17],[-17,-21],[-20,-11],[7,-4],[-29,-9],[-30,-27],[-27,-13],[-7,-14],[17,0],[-44,-47],[-25,-33],[-18,-9],[-1,-25],[12,-18],[17,-6],[-13,-13],[-10,3],[-20,-12],[13,-30],[1,-33],[16,-12],[8,-37],[9,-14],[13,5],[-8,10],[4,23],[22,4],[35,-2],[16,15],[21,0],[13,13],[-7,26],[10,28],[1,29],[8,20],[35,11],[2,33],[29,-18],[10,-15],[40,-10],[45,-30],[12,-2],[13,57],[16,13],[27,8],[35,44],[5,12],[-8,16],[13,16],[6,34],[25,7],[45,-5],[-5,29],[-13,13],[-32,-4],[-11,-6],[-22,11],[-34,2],[40,35],[18,-8],[7,16],[14,-3],[11,15],[-17,22],[0,18],[-13,6],[20,9],[-34,25],[-5,23],[10,16],[-20,14],[20,14],[11,-6],[21,6],[-2,17],[27,-8],[-13,29],[22,7],[3,26],[-9,3],[-25,-12],[-35,-30]],[[1436,8756],[-11,7]],[[1438,8755],[-2,1]],[[1439,8754],[-1,1]],[[1441,8751],[-2,3]],[[1441,8748],[0,3]],[[1441,8744],[0,4]],[[1443,8743],[-2,1]],[[1445,8740],[-2,3]],[[1448,8739],[-3,1]],[[1453,8736],[-5,3]],[[1455,8732],[-2,4]],[[1461,8731],[-6,1]],[[1467,8730],[-6,1]],[[1469,8728],[-2,2]],[[1471,8726],[-2,2]],[[1478,8726],[-7,0]],[[1485,8726],[-7,0]],[[1485,8725],[0,1]],[[1484,8721],[1,4]],[[1487,8720],[-3,1]],[[1487,8718],[0,2]],[[1489,8712],[-2,6]],[[1492,8709],[-3,3]],[[1494,8706],[-2,3]],[[1494,8705],[0,1]],[[1497,8699],[-3,6]],[[1495,8697],[2,2]],[[1500,8697],[-5,0]],[[1500,8695],[0,2]],[[1500,8693],[0,2]],[[1494,8693],[6,0]],[[1493,8692],[1,1]],[[1490,8687],[3,5]],[[1485,8686],[5,1]],[[1483,8683],[2,3]],[[1486,8680],[-3,3]],[[1490,8678],[-4,2]],[[1497,8677],[-7,1]],[[1501,8676],[-4,1]],[[1502,8675],[-1,1]],[[1509,8673],[-7,2]],[[1511,8673],[-2,0]],[[1514,8674],[-3,-1]],[[1517,8676],[-3,-2]],[[1541,8677],[-24,-1]],[[1545,8677],[-4,0]],[[1549,8674],[-4,3]],[[1551,8673],[-2,1]],[[1552,8673],[-1,0]],[[1559,8673],[-7,0]],[[1561,8673],[-2,0]],[[1563,8676],[-2,-3]],[[1589,8679],[-26,-3]],[[1597,8677],[-8,2]],[[1601,8677],[-4,0]],[[1602,8678],[-1,-1]],[[1612,8678],[-10,0]],[[1622,8678],[-10,0]],[[1624,8677],[-2,1]],[[1628,8675],[-4,2]],[[1636,8673],[-8,2]],[[1413,8783],[-11,-5],[-15,-33],[7,-28],[-23,-6],[-5,-15],[34,-2],[-10,-18],[-28,6],[-7,-20],[-24,-19],[-5,-20],[19,-16],[40,-9],[0,-14],[-31,-39],[-30,-30],[9,-26],[14,-15],[12,-1],[16,-40],[30,0],[33,-19],[43,10],[52,40],[9,15],[54,56],[1,30],[13,28],[-28,1],[-16,17],[11,10],[49,3],[10,49]],[[1417,8782],[-4,1]],[[1414,8770],[3,12]],[[1416,8769],[-2,1]],[[1417,8768],[-1,1]],[[1425,8763],[-8,5]],[[2736,9100],[-28,13],[-26,0],[-14,-16],[21,-15],[-23,8],[-36,-44],[-1,-10],[-20,0],[-39,-52],[80,-13],[44,-19],[30,10],[5,19],[18,17],[87,-2],[-2,20],[-17,26],[-19,7],[9,25],[17,14],[-33,-2],[-12,12],[-41,2]],[[2718,9021],[23,0],[-1,-10],[-23,-10],[-15,15],[16,5]],[[8535,3248],[-22,-16],[-52,-19],[-19,-24],[-58,-20],[-6,-35],[37,-5],[26,7],[-22,-17],[-42,-11],[-16,7],[-46,-21],[-2,-15],[37,-15],[26,-49],[-2,-23],[16,-29],[-24,-61],[6,-34],[17,-7],[44,-3],[19,3],[20,32],[-3,-15],[-15,-18],[-35,-3],[-28,3],[41,-32],[42,3],[14,-7],[25,1],[20,10],[41,14],[7,17],[25,21],[55,32],[9,9],[-26,20],[20,16],[50,24],[5,29],[22,37],[-14,30],[-33,12],[-31,18],[-2,10],[-21,15],[2,12],[-12,11],[-39,10],[21,31],[-5,10],[-1,58],[-16,2],[-38,-26],[-17,1]],[[2474,8862],[-14,-19],[3,-19],[-20,-12],[-31,-34],[-12,-35],[113,-3],[-2,-47],[47,-1],[-1,-34],[26,-3],[43,24],[28,4],[32,16],[3,53],[-45,9],[-31,14],[4,46],[77,-7],[-6,21],[1,36],[-5,27],[8,0],[21,32],[-10,15],[-21,0],[-6,14],[-32,12],[-37,8],[-36,-4],[0,-15],[-15,-27],[-14,-14],[3,-12],[-16,-2],[-9,-16],[-24,-23],[-21,-3]],[[2475,8863],[-1,-1]],[[8105,794],[-5,7],[-31,10],[52,2],[42,12],[-13,34],[17,5],[8,15],[-11,11],[-43,-7],[-15,20],[9,16],[19,-6],[14,16],[19,0],[10,9],[-4,13],[-33,24],[10,17],[-15,11],[21,10],[-6,10],[17,5],[-42,8],[-91,-13],[7,-16],[-13,-23],[8,-9],[-29,-10],[-26,-22],[-4,-11],[-39,0],[-38,-12],[22,-34],[3,-22],[-12,-37],[60,4],[7,-27],[16,-31],[30,-3],[32,14],[38,-9],[9,19]],[[9217,2940],[-25,25],[-6,-17],[-31,-9],[-30,-19],[-28,0],[-21,-27],[-39,-12],[0,-12],[-28,-22],[-1,-13],[-19,-1],[-1,-10],[-17,-20],[-23,-43],[-20,-25],[27,2],[73,42],[59,12],[20,-4],[-32,-14],[-15,10],[-31,-5],[-69,-41],[-30,-3],[-10,-46],[21,-7],[44,-7],[66,30],[41,9],[40,15],[-23,-22],[-7,-17],[-30,-6],[-14,-12],[68,-64],[23,-17],[28,-8],[-17,-52],[-17,-37],[-11,-11],[22,-10],[10,-13],[29,5],[-13,13],[45,23],[35,0],[-22,37],[-27,3],[30,39],[50,16],[14,2],[26,21],[28,12],[16,24],[-15,8],[-43,2],[4,7],[22,-5],[14,4],[0,16],[22,-10],[34,8],[20,-8],[-8,26],[22,22],[-8,16],[-15,4],[14,24],[-19,14],[3,15],[25,5],[38,1],[25,45],[-16,35],[-34,40],[-55,52],[-41,-6],[-35,3],[-24,11],[-33,6],[-14,-3],[-25,-22],[-23,-10],[7,-14]],[[8938,7100],[-37,-20],[-2,-12],[-18,-20],[5,-17],[-15,-25],[-19,-13],[-5,-30],[-9,-7],[21,-7],[-10,-10],[0,-25],[33,-12],[40,-5],[22,36],[9,0],[12,26],[40,34],[-47,22],[14,13],[-15,5],[10,25],[-10,5],[-3,31],[-16,6]],[[9838,1704],[-32,-1],[-12,5],[-31,-12],[-3,-23],[14,-33],[-34,2],[-10,-3],[5,-18],[73,0],[-1,61],[31,0],[0,22]],[[1307,9027],[25,-13],[1,-9],[29,-12],[17,16],[-12,24],[17,18],[18,35],[-2,19],[-17,9],[17,15],[10,36],[-9,33],[-6,0],[-19,37],[9,15],[-15,39],[1,22],[-60,11],[6,-28],[-33,-12],[-23,0],[-21,-13],[-54,5],[-18,11],[-26,-37],[13,-30]],[[1272,9058],[9,-14],[26,-17]],[[1233,9082],[21,-8],[18,-16]],[[1231,9080],[2,2]],[[1226,9080],[5,0]],[[1217,9086],[9,-6]],[[1201,9100],[16,-14]],[[1200,9100],[1,0]],[[1190,9121],[10,-21]],[[1186,9126],[4,-5]],[[1186,9128],[0,-2]],[[1183,9140],[3,-12]],[[1181,9144],[2,-4]],[[1181,9149],[0,-5]],[[1181,9153],[0,-4]],[[1179,9155],[2,-2]],[[1178,9157],[1,-2]],[[1176,9157],[2,0]],[[1175,9160],[1,-3]],[[1171,9163],[4,-3]],[[1170,9165],[1,-2]],[[1170,9169],[0,-4]],[[1170,9170],[0,-1]],[[1170,9172],[0,-2]],[[1172,9190],[-2,-18]],[[1170,9192],[2,-2]],[[1170,9196],[0,-4]],[[1171,9197],[-1,-1]],[[1170,9199],[1,-2]],[[1167,9209],[3,-10]],[[1155,9218],[12,-9]],[[8592,5052],[-29,-3],[-23,-15],[-51,-14],[-22,-21],[-79,-17],[-18,2],[-5,-25],[27,-2],[0,-24],[-9,-17],[-20,-15],[17,-25],[-15,-12],[4,-12],[-30,4],[-29,-14],[1,-16],[-11,-9],[19,-17],[5,-21],[22,-4],[37,10],[16,43],[17,8],[12,18],[31,16],[13,14],[29,-5],[64,49],[22,36],[14,9],[26,45],[-25,29],[-10,5]],[[1937,9231],[-19,-10],[-19,2],[-16,17],[-10,-10],[-53,-13],[-63,2],[2,10],[-39,1],[-19,-9],[-5,-25],[-21,-21],[-1,-14],[-37,-21],[-15,-22],[8,-14],[30,17],[23,0],[33,14],[32,-1],[-1,-22],[27,-26],[3,-16],[22,-1],[19,-13],[9,23],[19,14],[27,-2],[-5,12],[7,18],[-12,8],[14,20],[37,0],[20,8],[12,20],[6,33],[-15,21]],[[1247,9003],[1,-2]],[[1244,9005],[3,-2]],[[1242,9007],[2,-2]],[[1233,9011],[9,-4]],[[1224,9012],[9,-1]],[[1220,9015],[4,-3]],[[1217,9016],[3,-1]],[[1213,9019],[4,-3]],[[1209,9021],[4,-2]],[[1204,9024],[5,-3]],[[1188,9025],[16,-1]],[[1178,9020],[10,5]],[[1177,9020],[1,0]],[[1175,9019],[2,1]],[[1174,9018],[1,1]],[[1172,9016],[2,2]],[[1171,9016],[1,0]],[[1170,9015],[1,1]],[[1170,9014],[0,1]],[[1163,9012],[7,2]],[[1162,9011],[1,1]],[[1154,9008],[8,3]],[[1152,9007],[2,1]],[[1151,9006],[1,1]],[[1131,9006],[20,0]],[[1131,9007],[0,-1]],[[1123,9010],[8,-3]],[[1120,9011],[3,-1]],[[1115,9012],[5,-1]],[[1088,9011],[27,1]],[[1086,9010],[2,1]],[[1081,9007],[5,3]],[[1076,9007],[5,0]],[[1071,9006],[5,1]],[[1063,9001],[8,5]],[[1054,9000],[9,1]],[[1052,9000],[2,0]],[[1049,8999],[3,1]],[[1155,9218],[-11,13],[-47,11],[-27,-2],[-63,-20],[-15,-11],[-20,-2],[7,-16],[-11,-25],[39,-36],[13,-2],[34,-36],[-16,-41],[8,-12],[-6,-20],[9,-20]],[[1167,9209],[-12,9]],[[1170,9199],[-3,10]],[[1171,9197],[-1,2]],[[1170,9196],[1,1]],[[1170,9192],[0,4]],[[1172,9190],[-2,2]],[[1170,9172],[2,18]],[[1170,9169],[0,1]],[[1170,9165],[0,4]],[[1171,9163],[-1,2]],[[1175,9160],[-4,3]],[[1176,9157],[-1,3]],[[1178,9157],[-2,0]],[[1179,9155],[-1,2]],[[1181,9153],[-2,2]],[[1181,9149],[0,4]],[[1181,9144],[0,5]],[[1183,9140],[-2,4]],[[1186,9128],[-3,12]],[[1190,9121],[-4,5]],[[1200,9100],[-10,21]],[[1217,9086],[-16,14]],[[1226,9080],[-9,6]],[[1231,9080],[-5,0]],[[1233,9082],[-2,-2]],[[1272,9058],[-39,24]],[[1307,9027],[-17,13],[-19,0],[1,18]],[[1355,8953],[7,39],[-42,16],[-13,19]],[[1353,8954],[2,-1]],[[1333,8956],[20,-2]],[[1333,8957],[0,-1]],[[1317,8985],[16,-28]],[[1310,8995],[7,-10]],[[1308,8993],[2,2]],[[1299,8986],[9,7]],[[1295,8985],[4,1]],[[1290,8984],[5,1]],[[1286,8985],[4,-1]],[[1272,8992],[14,-7]],[[1255,8995],[17,-3]],[[1255,8996],[0,-1]],[[1248,9001],[7,-5]],[[7685,3655],[10,5],[-30,11],[-17,-7],[-14,16],[-30,-7],[0,-10],[-20,6],[-8,-11],[5,-27],[-26,-17],[-1,-16],[11,-15],[5,-21],[-37,-44],[7,-30],[-5,-9],[42,-8],[13,-9],[36,18],[2,18],[21,15],[0,22],[21,9],[-35,13],[-12,-5],[12,20],[26,-3],[27,26],[18,-18],[17,-6],[7,-18],[17,-5],[30,20],[-26,-6],[2,27],[-19,14],[31,14],[7,27],[-7,19],[-27,12],[-53,-20]],[[8659,7233],[-51,0],[-19,-8],[5,-18],[-15,11],[27,15],[-164,1],[-7,-29],[-12,-8],[0,-20],[19,-5],[0,-67],[49,13],[-21,-12],[-10,-18],[-16,1],[-24,-26],[9,-1],[-12,-26],[35,-20],[16,-3],[51,2],[22,-6],[14,17],[15,0],[-3,15],[20,22],[25,0],[25,59],[22,21],[-7,7],[25,5],[5,48],[-12,18],[-23,7],[12,5]],[[9161,3383],[0,-32],[-11,-2],[6,-35],[-8,-7],[29,-22],[25,-4],[3,-15],[24,1],[22,-26],[26,3],[-5,-20],[-28,-19],[-2,-8],[98,25],[42,1],[26,7],[24,-2],[33,-21],[39,9],[15,18],[23,15],[27,-9],[16,6],[-11,10],[0,18],[26,17],[-4,13],[98,16],[-32,34],[-58,7],[-22,9],[6,8],[-31,11],[7,-22],[-6,-12],[-20,8],[-13,24],[-11,5],[-31,35],[-25,15],[-25,-16],[-63,-14],[-9,24],[6,8],[-32,31],[-46,5],[-36,-7],[-16,-55],[0,-27],[-73,-4],[-3,-4]],[[8341,3887],[-9,-3],[2,-58],[13,-20],[1,-33],[15,-11],[8,-23],[83,4],[9,8],[-1,25],[9,28],[-40,16],[-24,16],[-16,17],[-5,24],[-23,16],[-22,-6]],[[8217,3627],[-38,-26],[47,-6],[-53,-13],[-16,-13],[14,-16],[-4,-13],[10,-27],[17,-20],[28,-18],[-9,-8],[11,-14],[32,-13],[-25,-20],[11,-16],[20,-53],[18,17],[1,38],[13,12],[12,-29],[37,-13],[-1,28],[-14,14],[-13,43],[-9,8],[6,24],[-10,16],[-12,-2],[-5,50],[2,29],[16,31],[-3,15],[-76,1],[-7,-6]],[[8692,5225],[16,-5],[-55,-1],[-31,-11],[-20,-19],[-2,-12],[45,-5],[1,-22],[24,-3],[7,-16],[-26,-7],[53,-52],[17,-6],[7,23],[17,24],[9,-6],[15,14],[10,-7],[11,-27],[24,0],[-3,15],[42,-12],[30,20],[16,21],[14,62],[-19,0],[1,17],[-48,21],[48,-5],[3,35],[-43,23],[-35,13],[-9,12],[5,38],[18,34],[-32,26],[-48,-18],[-40,10],[-15,-10],[-5,-34],[-7,-4],[-15,17],[-1,29],[-10,21],[-22,17],[-28,2],[-19,-33],[18,-56],[-22,-28],[4,-21],[-21,-33],[14,-20],[1,-48],[15,-9],[14,17],[40,20],[37,-1]],[[1255,8996],[-7,5]],[[1272,8992],[-17,3]],[[1286,8985],[-14,7]],[[1290,8984],[-4,1]],[[1295,8985],[-5,-1]],[[1299,8986],[-4,-1]],[[1308,8993],[-9,-7]],[[1310,8995],[-2,-2]],[[1317,8985],[-7,10]],[[1333,8957],[-16,28]],[[1333,8956],[0,1]],[[1353,8954],[-20,2]],[[1355,8953],[-2,1]],[[1358,8899],[5,13],[-12,28],[4,13]],[[1354,8891],[4,8]],[[1329,8855],[2,15],[15,5],[8,16]],[[1049,8999],[-13,-22],[-8,-43],[10,0],[39,-17],[7,-10],[60,19],[16,11],[7,-21],[-30,-11],[8,-24],[-3,-40],[13,-8],[6,-22],[46,-21],[40,-4],[79,27],[3,42]],[[1052,9000],[-3,-1]],[[1054,9000],[-2,0]],[[1063,9001],[-9,-1]],[[1071,9006],[-8,-5]],[[1076,9007],[-5,-1]],[[1081,9007],[-5,0]],[[1086,9010],[-5,-3]],[[1088,9011],[-2,-1]],[[1115,9012],[-27,-1]],[[1120,9011],[-5,1]],[[1123,9010],[-3,1]],[[1131,9007],[-8,3]],[[1151,9006],[-20,0]],[[1152,9007],[-1,-1]],[[1154,9008],[-2,-1]],[[1162,9011],[-8,-3]],[[1163,9012],[-1,-1]],[[1170,9014],[-7,-2]],[[1171,9016],[-1,-1]],[[1174,9018],[-2,-2]],[[1175,9019],[-1,-1]],[[1177,9020],[-2,-1]],[[1178,9020],[-1,0]],[[1188,9025],[-10,-5]],[[1204,9024],[-16,1]],[[1209,9021],[-5,3]],[[1213,9019],[-4,2]],[[1217,9016],[-4,3]],[[1220,9015],[-3,1]],[[1224,9012],[-4,3]],[[1233,9011],[-9,1]],[[1242,9007],[-9,4]],[[1244,9005],[-2,2]],[[1247,9003],[-3,2]],[[8185,1167],[32,3],[15,24],[-5,10],[27,13],[19,1],[10,20],[-11,20],[3,24],[-52,4],[-26,-12],[-35,-5],[-20,9],[-26,1],[-36,-8],[14,-36],[21,-7],[27,-31],[10,5],[33,-35]],[[9634,2053],[-12,-13],[13,-11],[4,-18],[-23,4],[-33,-14],[1,-34],[-31,0],[0,-21],[-30,0],[0,-82],[-30,-1],[0,-12],[51,-7],[50,-24],[26,0],[2,-20],[23,9],[1,17],[-11,3],[11,32],[16,-4],[1,42],[-8,15],[-29,4],[31,8],[-2,25],[15,17],[5,31],[-8,39],[-33,15]],[[2475,8863],[32,20],[19,25],[7,89],[16,-1],[2,20],[16,0],[2,43],[33,-1],[1,20],[23,0],[1,27],[-52,27],[-42,14],[-69,38],[-35,0],[0,6],[-52,2],[-41,6],[-1,-12],[-93,3],[-1,-10],[-68,2],[-6,-11],[-26,-9],[-3,-53],[6,-40],[8,-8],[63,-2],[-2,-32],[-54,0],[-59,6],[-3,-22],[-33,3],[-49,-22],[-10,-42],[8,-8],[-67,-27]],[[2474,8862],[1,1]],[[1958,8731],[7,-19],[30,-30],[8,-20],[18,-12],[1,-34],[-11,-37],[12,-31],[-20,-35],[-7,-55],[21,-10],[33,1],[42,19],[43,-32],[22,-21],[38,-28],[7,1],[37,-32],[24,34],[39,77],[-4,34],[-24,85],[5,15],[18,15],[9,17],[63,45],[15,26],[27,74],[24,35],[14,10],[0,14],[25,25]],[[1952,8738],[6,-7]],[[1942,8751],[10,-13]],[[1942,8754],[0,-3]],[[1942,8757],[0,-3]],[[1942,8764],[0,-7]],[[1942,8765],[0,-1]],[[1942,8785],[0,-20]],[[1938,8820],[4,-35]],[[1929,8828],[9,-8]],[[1925,8833],[4,-5]],[[1920,8838],[5,-5]],[[1918,8838],[2,0]],[[1919,8843],[-1,-5]],[[1925,8853],[-6,-10]],[[1929,8854],[-4,-1]],[[1934,8857],[-5,-3]],[[1934,8859],[0,-2]],[[1937,8863],[-3,-4]],[[1938,8863],[-1,0]],[[1942,8867],[-4,-4]],[[1946,8871],[-4,-4]],[[1946,8910],[13,-5],[-13,-34]],[[1946,8914],[0,-4]],[[9447,5487],[-14,0],[-19,-30],[14,-3],[13,-22],[-22,-6],[-19,-36],[14,-1],[-3,-30],[-38,-6],[3,-20],[13,-17],[-3,-9],[30,-32],[-1,-18],[52,-35],[17,-7],[21,20],[31,14],[13,12],[3,18],[19,-2],[35,-35],[11,-20],[48,0],[34,-7],[16,7],[16,-5],[7,31],[9,9],[1,32],[-7,23],[10,18],[-4,10],[16,31],[-31,8],[2,23],[20,4],[12,22],[20,21],[-10,7],[-66,-2],[-11,-9],[-15,3],[-26,-15],[-11,-24],[-12,-9],[-124,-2],[-1,28],[-12,0],[4,25],[-55,36]],[[8125,4298],[0,-6],[-31,-14],[14,-20],[23,-11],[-18,-19],[12,-4],[-8,-13],[-30,0],[-8,-33],[-24,-9],[0,-20],[-48,1],[-15,-19],[13,-9],[45,-2],[17,12],[25,-3],[41,8],[3,22],[23,10],[32,-40],[3,-26],[13,-33],[16,-13],[20,-37],[30,-17],[19,18],[5,32],[22,38],[34,43],[-20,0],[-25,17],[-19,4],[-8,13],[8,32],[-7,15],[24,9],[8,13],[-11,7],[7,32],[-4,17],[-36,0],[-1,-7],[-25,-5],[2,15],[-23,9],[7,12],[-7,12],[-31,27],[-19,-3],[4,-12],[-60,-5],[-12,-28],[20,-10]],[[8215,792],[-29,0],[-65,-56],[21,-14],[81,-1],[36,-10],[0,12],[-35,50],[-9,19]],[[9926,3644],[-40,-4],[-27,-16],[-1,-7],[-34,-13],[23,-3],[19,-15],[24,-4],[-1,25],[16,1],[1,-35],[9,-21],[23,-10],[-3,101],[-9,1]],[[8473,5517],[-21,-7],[-58,-4],[1,-61],[15,-16],[-5,-30],[6,-14],[-11,-9],[-37,-2],[-16,-12],[-7,-24],[4,-14],[-27,-36],[-7,-31],[25,0],[-25,-15],[-37,-14],[-29,-21],[6,-28],[-5,-22],[-2,-49],[40,-37],[44,-2],[30,-23],[30,-7],[-3,-16],[-24,-4],[15,-30],[47,7],[41,37],[-7,25],[9,12],[-14,23],[30,33],[19,40],[-30,6],[-2,20],[-28,-4],[-16,-15],[-12,1],[12,20],[24,5],[7,16],[11,-1],[9,22],[-9,15],[-10,-5],[-42,1],[16,21],[-13,24],[11,12],[-7,26],[12,18],[24,19],[-4,13],[-19,5],[30,5],[21,-5],[7,10],[-9,34],[6,12],[-13,30],[-3,46]],[[8633,2469],[-59,15],[-27,19],[-17,21],[-15,-14],[-1,-66],[8,-4],[3,-42],[-15,-21],[-1,-29],[15,-33],[-15,-23],[19,-14],[12,-40],[10,-10],[31,-4],[9,22],[-15,-2],[16,36],[-1,10],[-36,-5],[14,15],[24,7],[7,15],[17,10],[-12,16],[-23,-1],[24,10],[-3,30],[33,18],[22,0],[22,11],[18,-4],[23,25],[16,6],[-29,2],[-27,17],[-26,9],[-21,-2]],[[8643,2478],[7,13],[-25,0],[1,-11],[17,-2]],[[9670,6385],[-26,-20],[2,12],[-29,-16],[-4,-36],[23,4],[5,-6],[30,2],[19,8],[20,26],[-6,13],[-34,13]],[[9731,6439],[-19,-4],[-12,-23],[-20,-17],[9,-14],[35,-7],[6,4],[1,61]],[[1636,8673],[1,7],[-23,36],[-47,1],[2,23],[-15,1],[1,15],[62,-1],[4,17],[-4,25],[-26,56],[-77,2],[2,29],[9,20],[24,-3],[14,26],[-2,16],[14,30],[3,23],[-70,3],[2,47],[-9,1],[-46,-18],[-24,-23],[-17,-3],[-9,-22],[-23,0],[-9,-31],[-3,-51],[-12,0]],[[1628,8675],[8,-2]],[[1624,8677],[4,-2]],[[1622,8678],[2,-1]],[[1612,8678],[10,0]],[[1602,8678],[10,0]],[[1601,8677],[1,1]],[[1597,8677],[4,0]],[[1589,8679],[8,-2]],[[1563,8676],[2,8],[24,-5]],[[1561,8673],[2,3]],[[1559,8673],[2,0]],[[1552,8673],[7,0]],[[1551,8673],[1,0]],[[1549,8674],[2,-1]],[[1545,8677],[4,-3]],[[1541,8677],[4,0]],[[1517,8676],[24,1]],[[1514,8674],[3,2]],[[1511,8673],[3,1]],[[1509,8673],[2,0]],[[1502,8675],[7,-2]],[[1501,8676],[1,-1]],[[1497,8677],[4,-1]],[[1490,8678],[7,-1]],[[1486,8680],[4,-2]],[[1483,8683],[3,-3]],[[1485,8686],[-2,-3]],[[1490,8687],[-5,-1]],[[1493,8692],[-3,-5]],[[1494,8693],[-1,-1]],[[1500,8693],[-6,0]],[[1500,8695],[0,-2]],[[1500,8697],[0,-2]],[[1495,8697],[5,0]],[[1497,8699],[-2,-2]],[[1494,8705],[3,-6]],[[1494,8706],[0,-1]],[[1492,8709],[2,-3]],[[1489,8712],[3,-3]],[[1487,8718],[2,-6]],[[1487,8720],[0,-2]],[[1484,8721],[3,-1]],[[1485,8725],[-1,-4]],[[1485,8726],[0,-1]],[[1478,8726],[7,0]],[[1471,8726],[7,0]],[[1469,8728],[2,-2]],[[1467,8730],[2,-2]],[[1461,8731],[6,-1]],[[1455,8732],[6,-1]],[[1453,8736],[2,-4]],[[1448,8739],[5,-3]],[[1445,8740],[3,-1]],[[1443,8743],[2,-3]],[[1441,8744],[2,-1]],[[1441,8748],[0,-4]],[[1439,8754],[2,-3]],[[1438,8755],[1,-1]],[[1436,8756],[2,-1]],[[1425,8763],[11,-7]],[[1417,8768],[8,-5]],[[1416,8769],[1,-1]],[[1414,8770],[2,-1]],[[1417,8782],[-3,-12]],[[1413,8783],[4,-1]],[[1329,8855],[34,-5],[39,-37],[11,-30]],[[1354,8891],[5,-12],[-30,-24]],[[1358,8899],[-4,-8]],[[8395,6365],[-22,0],[-23,-26],[6,-20],[-9,-3],[27,-40],[27,-17],[7,-16],[22,-24],[24,-7],[37,-51],[6,13],[25,21],[17,41],[-18,22],[0,15],[-28,-13],[-3,-11],[-31,-2],[-18,15],[-1,27],[-16,8],[0,38],[-16,29],[-13,1]],[[9816,4628],[-15,-11],[5,-17],[-20,-14],[6,-25],[24,1],[-23,-10],[13,-16],[-19,-11],[-17,-44],[28,-47],[-4,-18],[69,9],[38,-2],[19,18],[-4,150],[-44,1],[-23,5],[30,6],[-16,7],[0,11],[-20,-5],[-27,12]],[[1946,8914],[11,15],[-7,9],[-27,5],[-80,4],[-36,-6],[-17,-8],[9,25],[-8,21],[-26,3],[-13,-11],[-40,-1],[-26,5],[-21,-7],[-24,3],[-1,-10],[-36,2],[14,-30],[0,-13],[21,-22],[14,-28],[36,-20],[42,-30],[30,-16],[26,-26],[26,-15],[16,-23],[14,-3],[8,-23],[-8,-24],[30,-5],[48,18],[25,24],[12,4]],[[1946,8871],[0,39]],[[1942,8867],[4,4]],[[1938,8863],[4,4]],[[1934,8859],[3,4]],[[1929,8854],[5,3]],[[1925,8853],[4,1]],[[1919,8843],[6,10]],[[1918,8838],[1,5]],[[1920,8838],[-2,0]],[[1925,8833],[-5,5]],[[1929,8828],[-4,5]],[[1938,8820],[-9,8]],[[1942,8785],[-4,35]],[[1942,8765],[0,20]],[[1942,8757],[0,7]],[[1942,8754],[0,3]],[[1942,8751],[0,3]],[[1952,8738],[-10,13]],[[1958,8731],[-6,7]],[[9421,4596],[-9,-2],[6,-18],[-15,-10],[-35,-5],[3,-38],[-32,-13],[-11,-12],[17,-15],[44,10],[3,-24],[23,-24],[13,2],[1,-21],[17,-19],[-7,-13],[-33,-6],[-19,-11],[28,-13],[18,7],[5,-13],[37,2],[-4,-53],[-8,-29],[72,33],[15,18],[20,8],[23,-3],[24,7],[14,11],[-7,8],[-25,0],[24,28],[-28,23],[-19,0],[-16,10],[-13,-4],[-10,17],[19,9],[23,22],[3,15],[18,13],[24,5],[-8,10],[-54,6],[-17,8],[-25,-6],[-55,6],[0,21],[23,6],[11,19],[-20,17],[11,1],[-14,15],[-55,-5]],[[7461,1731],[0,-17],[-31,1],[-1,-21],[-30,0],[-3,-83],[4,-27]],[[7618,1770],[-22,-16],[-23,5],[26,25],[3,15],[-46,-25],[-18,-25],[-26,-17],[-15,3],[-23,-16],[-13,12]],[[7621,1768],[-3,2]],[[7626,1762],[-5,6]],[[7631,1756],[-5,6]],[[7442,1612],[7,18],[16,12],[32,-13],[27,25],[-23,13],[7,6],[41,0],[4,-14],[44,-24],[40,-4],[10,11],[-36,21],[11,8],[13,-5],[19,29],[-33,12],[32,-2],[-5,10],[-22,5],[20,4],[-15,32]],[[7442,1611],[0,1]],[[7437,1608],[5,3]],[[7426,1589],[11,19]],[[7423,1588],[3,1]],[[7418,1587],[5,1]],[[7417,1587],[1,0]],[[7405,1587],[12,0]],[[7403,1586],[2,1]],[[7400,1584],[3,2]],[[7631,1756],[20,17],[30,15],[-20,9],[35,13],[8,14],[-10,9],[-29,-15],[-30,-7],[-16,-16],[-1,-25]],[[7626,1762],[5,-6]],[[7621,1768],[5,-6]],[[7618,1770],[3,-2]],[[7486,1436],[16,-11]],[[7470,1446],[16,-10]],[[7440,1482],[0,-17],[34,8],[-4,-27]],[[7440,1506],[0,-24]],[[7440,1507],[0,-1]],[[7407,1524],[1,-15],[32,-2]],[[7406,1530],[1,-6]],[[7401,1575],[5,-45]],[[7400,1579],[1,-4]],[[7400,1580],[0,-1]],[[7403,1586],[-3,-6]],[[7405,1587],[-2,-1]],[[7417,1587],[-12,0]],[[7418,1587],[-1,0]],[[7423,1588],[-5,-1]],[[7426,1589],[-3,-1]],[[7437,1608],[-11,-19]],[[7442,1611],[-5,-3]],[[7502,1425],[46,-26],[15,7],[-21,20],[21,41],[-24,33],[-14,41],[-15,7],[9,12],[-17,17],[14,23],[-32,32],[-27,-1],[-15,-19]],[[7315,1713],[-36,0],[0,-20],[-60,0],[0,20],[-32,0],[0,-10]],[[7461,1731],[-30,3],[-19,-20],[-20,11],[-6,13],[-31,-17],[-16,2],[-24,-10]],[[7396,1578],[4,6]],[[7395,1577],[1,1]],[[7391,1576],[4,1]],[[7380,1575],[11,1]],[[7377,1575],[3,0]],[[7374,1574],[3,1]],[[7372,1573],[2,1]],[[7371,1572],[1,1]],[[7187,1703],[0,-51],[-38,-20],[70,8],[9,-6],[107,8],[-6,15],[-19,16],[21,8],[15,-23],[24,-24],[-8,-3],[5,-21],[-2,-38],[6,0]],[[7426,1503],[14,4]],[[7371,1572],[-4,-11],[17,-39],[6,-24],[36,5]],[[7372,1573],[-1,-1]],[[7374,1574],[-2,-1]],[[7377,1575],[-3,-1]],[[7380,1575],[-3,0]],[[7391,1576],[-11,-1]],[[7395,1577],[-4,-1]],[[7396,1578],[-1,-1]],[[7400,1579],[-4,-1]],[[7401,1575],[-1,4]],[[7407,1524],[-1,6]],[[7426,1503],[-35,-7],[10,-43],[39,11],[0,18]],[[7440,1506],[-14,-3]],[[7502,1425],[0,11],[-16,0]],[[7486,1436],[1,10],[-17,0]],[[7097,1647],[0,6],[-61,1],[0,9]],[[7036,1663],[-15,-5],[16,-15],[-24,-9],[-15,-17],[21,-12],[40,20],[11,23],[27,-1]],[[7097,1647],[19,-2],[9,18],[-1,25],[14,21],[0,26],[27,0],[10,-14],[-1,-16],[13,-2]],[[7315,1713],[11,18],[18,-1],[-5,46],[-23,1],[-14,-18],[-61,-12],[-16,13],[-48,26],[10,15],[19,-13],[41,-8],[2,9],[15,-13],[46,14],[-7,20],[-21,29],[-22,-4],[-8,20],[11,12],[-21,17],[-18,-4],[-41,-66],[-23,-3],[-18,23],[-7,29],[33,7],[15,17],[-13,10],[12,25],[-4,5],[-46,0],[-38,14],[-30,4],[-16,-8],[-15,21],[7,23],[-40,0],[-8,-8],[-1,-31],[16,0],[-1,-20],[32,0],[2,-39],[47,-26],[-34,-2],[-34,11],[-27,-4],[13,-9],[-27,-9],[11,-24],[28,-1],[-8,-11],[4,-18],[41,9],[8,13],[37,0],[-23,-12],[-67,-20],[-8,-14],[21,-16],[17,-31],[37,28],[13,-1],[-32,-31],[7,-7],[30,2],[-33,-31],[-25,-16]],[[9815,6146],[10,0]],[[9798,6187],[1,-41],[16,0]],[[9825,6146],[15,20],[-43,25],[1,11],[-33,31],[-15,29],[8,13],[-30,-3],[-22,-24],[-30,-25],[-10,-38],[132,2]],[[9798,6187],[-130,-2],[12,-27],[-17,6],[-44,0],[-39,-14],[1,-14],[16,-18],[32,7],[1,-12],[-13,-18],[-22,-14],[1,-9],[-39,-1],[-25,12],[-20,-7],[-6,-15],[-24,-14],[-26,-3],[-21,-12],[-4,-18],[18,-5],[13,13],[4,-15],[-22,-13],[24,-3],[-4,-17],[9,-10],[-24,-6],[24,-51],[29,-1],[5,17],[-16,13],[29,6],[18,13],[0,20],[15,3],[-13,-25],[29,-22],[36,-38],[22,-13],[38,1],[69,34],[13,-9],[48,-4],[15,12],[-1,20],[-28,1],[5,25],[19,40],[-30,5],[10,8],[47,-1],[-1,60],[-43,13],[43,-10],[-1,64],[-5,7]],[[9815,6146],[-17,0],[0,41]],[[2222,9431],[8,-12],[3,-26],[9,-6],[119,-3],[6,21],[14,12],[-6,10],[12,26],[10,-4],[15,25],[25,8],[30,2],[-26,27],[4,22],[-23,13],[-2,15],[-14,8],[-12,-9],[-3,-21],[-55,-5],[-41,-28],[-39,-34]],[[2224,9433],[-2,-2]],[[2227,9434],[-3,-1]],[[2238,9437],[-11,-3]],[[2240,9439],[-2,-2]],[[2243,9448],[-3,-9]],[[2251,9450],[-8,-2]],[[2251,9449],[0,1]],[[2252,9450],[-1,-1]],[[2253,9452],[-1,-2]],[[2254,9454],[-1,-2]],[[2253,9454],[1,0]],[[2253,9456],[0,-2]],[[2250,9458],[3,-2]],[[2251,9461],[-1,-3]],[[2248,9462],[3,-1]],[[2247,9466],[1,-4]],[[2250,9469],[-3,-3]],[[2252,9470],[-2,-1]],[[2256,9472],[-4,-2]],[[2256,9472],[19,31],[13,7],[1,14],[-18,11],[1,-11],[-37,-10],[0,19],[-17,-14],[12,-20],[-7,-25],[-14,-8],[-3,-32],[16,-3]],[[2252,9470],[4,2]],[[2250,9469],[2,1]],[[2247,9466],[3,3]],[[2248,9462],[-1,4]],[[2251,9461],[-3,1]],[[2250,9458],[1,3]],[[2253,9456],[-3,2]],[[2253,9454],[0,2]],[[2253,9452],[1,2]],[[2251,9449],[1,1]],[[2243,9448],[8,2]],[[2240,9439],[3,9]],[[2238,9437],[2,2]],[[2227,9434],[11,3]],[[2224,9433],[3,1]],[[2222,9431],[2,2]],[[9235,1657],[-2,-15],[33,5],[3,-9],[21,11],[25,-7],[-18,27],[9,39],[29,24],[8,23],[11,1],[7,16],[-10,25],[16,32],[-14,10],[-40,2],[-8,7],[-46,-4],[-31,2],[-4,-18],[18,-43]],[[9237,1660],[-2,-3]],[[9238,1663],[-1,-3]],[[9239,1669],[-1,-6]],[[9240,1671],[-1,-2]],[[9240,1675],[0,-4]],[[9239,1676],[1,-1]],[[9236,1679],[3,-3]],[[9232,1683],[4,-4]],[[9230,1684],[2,-1]],[[9229,1686],[1,-2]],[[9228,1687],[1,-1]],[[9227,1688],[1,-1]],[[9226,1690],[1,-2]],[[9223,1694],[3,-4]],[[9223,1697],[0,-3]],[[9226,1701],[-3,-4]],[[9227,1702],[-1,-1]],[[9228,1703],[-1,-1]],[[9229,1704],[-1,-1]],[[9230,1706],[-1,-2]],[[9234,1710],[-4,-4]],[[9235,1711],[-1,-1]],[[9237,1713],[-2,-2]],[[9240,1715],[-3,-2]],[[9244,1718],[-4,-3]],[[9247,1720],[-3,-2]],[[9255,1734],[-8,-14]],[[9258,1737],[-3,-3]],[[9259,1737],[-1,0]],[[9265,1744],[-6,-7]],[[9266,1750],[-1,-6]],[[9261,1751],[5,-1]],[[9244,1760],[17,-9]],[[9246,1762],[-2,-2]],[[9253,1767],[-7,-5]],[[9249,1781],[4,-14]],[[9242,1785],[7,-4]],[[9253,1767],[-4,14]],[[9246,1762],[7,5]],[[9244,1760],[2,2]],[[9261,1751],[-17,9]],[[9266,1750],[-5,1]],[[9265,1744],[1,6]],[[9259,1737],[6,7]],[[9258,1737],[1,0]],[[9255,1734],[3,3]],[[9247,1720],[8,14]],[[9244,1718],[3,2]],[[9240,1715],[4,3]],[[9237,1713],[3,2]],[[9235,1711],[2,2]],[[9234,1710],[1,1]],[[9230,1706],[4,4]],[[9229,1704],[1,2]],[[9228,1703],[1,1]],[[9227,1702],[1,1]],[[9226,1701],[1,1]],[[9223,1697],[3,4]],[[9223,1694],[0,3]],[[9226,1690],[-3,4]],[[9227,1688],[-1,2]],[[9228,1687],[-1,1]],[[9229,1686],[-1,1]],[[9230,1684],[-1,2]],[[9232,1683],[-2,1]],[[9236,1679],[-4,4]],[[9239,1676],[-3,3]],[[9240,1675],[-1,1]],[[9240,1671],[0,4]],[[9239,1669],[1,2]],[[9238,1663],[1,6]],[[9237,1660],[1,3]],[[9235,1657],[2,3]],[[9242,1785],[0,-13],[-18,-13],[-68,-6],[-27,2],[-65,-24],[-13,4],[-52,-5],[-35,-20],[-20,-1],[-44,-24],[-14,1],[-25,-19],[8,-20],[-22,-7],[8,-23],[13,4],[32,-23],[13,13],[26,1],[10,16],[29,3],[22,-15],[9,8],[3,-22],[24,15],[30,9],[63,6],[-12,16],[35,-14],[-3,13],[26,-3],[0,10],[33,-9],[21,3],[6,9]],[[9249,1781],[-7,4]],[[8732,1408],[-14,-15],[1,-55],[30,-1],[1,-60],[44,-14],[16,-9],[15,-29],[17,-11],[8,-22],[34,22],[50,14],[-29,21],[-31,15],[-21,19],[2,25],[-41,21],[3,26],[-38,45],[-30,0],[-17,8]],[[8855,459],[36,13],[49,10],[13,15],[-35,4],[6,9],[-9,14],[-23,11],[-91,68],[-55,36],[-7,0],[1,-119],[93,-1],[1,-72]],[[8854,459],[1,0]],[[8846,453],[8,6]],[[8834,447],[12,6]],[[8835,355],[1,-80],[62,0],[0,-21],[16,0],[-1,27],[26,0],[-19,35],[6,21],[-15,30],[-9,0]],[[8873,361],[-38,-6]],[[8902,367],[-29,-6]],[[8887,1730],[1,-35],[20,14],[54,18],[20,33]],[[8982,1760],[-64,-1],[0,-11],[-31,0],[0,-18]],[[8742,1117],[-1,-56]],[[8742,1117],[-6,0]],[[8741,1061],[42,0],[30,-21],[41,1],[1,-10],[17,1],[-2,29],[8,6],[-12,18],[4,27],[-22,21],[16,15],[9,21],[-20,8],[-25,36],[-15,9],[-22,32],[-16,8],[-68,-3],[1,-89],[29,-15],[5,-38]],[[8742,919],[1,-104]],[[8743,815],[22,-18],[27,-8],[87,-2],[48,7],[-33,15],[3,7],[45,19],[8,30],[-14,-5],[-32,43],[-17,9],[-37,4],[-108,3]],[[8816,364],[1,0]],[[8820,361],[-3,3]],[[8822,361],[-2,0]],[[8824,358],[-2,3]],[[8824,358],[1,0]],[[8826,357],[-1,1]],[[8828,355],[-2,2]],[[8834,354],[-6,1]],[[8834,408],[0,-54]],[[8834,447],[0,-39]],[[8846,453],[-12,-6]],[[8854,459],[-8,-6]],[[8902,367],[14,-6],[12,-24],[-5,-28],[17,-28],[19,-6],[43,-4],[36,37],[30,15],[-4,17],[8,24],[-4,15],[-24,21],[-5,29],[-26,24],[-41,28],[-34,0],[-12,-5],[-71,-17]],[[8873,361],[29,6]],[[8835,355],[4,6],[34,0]],[[8834,354],[1,1]],[[8828,355],[6,-1]],[[8826,357],[2,-2]],[[8825,358],[1,-1]],[[8822,361],[2,-3]],[[8820,361],[2,0]],[[8817,364],[3,-3]],[[8742,919],[-100,1],[-2,-10],[-25,2],[25,-21],[11,-50],[24,-21],[36,-23],[10,18],[22,0]],[[8834,408],[-7,-3],[-3,-29],[-8,-12]],[[8982,1760],[-17,7],[-49,1],[-31,13],[-5,16],[34,-24],[38,16],[3,16],[25,31],[61,21],[-12,14],[-41,0],[-45,11],[-29,12],[-35,-5],[-6,8],[17,9],[-39,34],[3,-17],[-12,-3],[-17,10],[-20,-14],[-8,6],[-20,-12],[-9,-15],[-26,-4],[-17,-35],[-7,-25],[-43,-5],[-15,-8],[-13,-19],[17,0],[-6,-13],[27,-3],[-14,-8],[20,-5],[-26,-9],[21,-18],[23,-10],[28,-1],[23,19],[12,-3],[26,10],[45,-12],[-2,-24],[30,-1],[16,9]],[[8736,1117],[-76,-1],[9,-18],[-17,-43],[8,-15],[19,-14],[10,2],[18,25],[30,16],[4,-8]],[[7702,4723],[-23,7],[-15,14],[-9,-4],[1,-45],[-5,0],[0,-93],[-31,-1],[0,-20],[-31,0],[-15,-20],[-16,0],[0,-82],[-61,0],[-1,-21],[-65,0],[0,-42],[-30,0],[-1,-25],[-30,0],[0,-37],[-31,0],[0,-21],[-93,0],[-1,-20],[-30,-1],[-1,-112],[17,-7],[7,-34],[-14,-16],[-31,-11],[-17,-17],[-25,-77],[54,6],[-41,-13],[12,-15],[63,-47],[40,-54],[9,-24],[28,-18],[67,-56],[16,3],[23,-5],[66,4],[43,23],[21,-4],[3,-32],[-11,-26],[13,-67],[19,-32],[2,-23],[12,11],[53,8],[7,-13],[23,6],[32,-10],[35,15],[20,-4],[11,-17],[21,1],[0,41],[13,12],[20,0],[25,-12],[31,1],[41,39],[8,18],[-40,19],[38,-8],[24,12],[-10,32],[40,11],[32,-29],[20,9],[80,54],[43,39],[32,43],[48,-11],[24,1],[64,-20],[47,16],[20,-4],[9,36],[3,49],[-21,42],[-22,-10],[-58,3],[-1,20],[-12,-38],[-16,-17],[-31,18],[-12,27],[-28,32],[-10,49],[-33,40],[-24,-11],[-2,-21],[-40,-8],[-25,3],[-17,-11],[-39,0],[-19,10],[15,18],[47,0],[0,20],[25,9],[8,33],[28,0],[-2,19],[18,17],[-22,10],[-4,19],[-20,0],[30,14],[15,0],[-26,18],[13,28],[29,0],[31,6],[6,12],[-27,14],[2,7],[-35,27],[-39,13],[-22,16],[9,10],[-15,12],[-17,-12],[-32,4],[6,12],[-21,15],[-35,-15],[-13,8],[-27,-6],[-21,5],[-2,26],[-8,22],[-33,29],[6,14],[25,0],[0,12],[-19,14],[2,16],[-17,10],[-12,17],[-62,9],[-15,6],[-23,29],[0,14],[-20,17],[3,25],[-21,-1]],[[700,9402],[-83,-4],[-56,1],[4,-21],[56,0],[92,4],[17,8],[31,-4],[70,4],[26,-7],[-1,-91],[6,-10],[-8,-112],[115,-4],[37,-34],[15,-5],[27,-25],[9,-17],[-9,-7],[-8,-25],[7,-9],[-2,-38],[6,-11],[-14,-20],[-7,-40],[10,0],[38,-18],[6,-11],[78,29],[7,-19],[-31,-12],[6,-12],[-2,-45],[29,-37],[41,-18],[40,-6],[37,14],[21,-31],[-8,-18],[6,-15],[0,-34],[43,2],[50,-11],[-6,-17],[-31,6],[-6,-18],[-27,-22],[3,-29],[51,-14],[3,-13],[-39,-49],[-22,-16],[0,-22],[22,-27],[11,0],[16,-40],[23,0],[-23,-41],[36,-44],[15,-25],[-14,-7],[-23,-51],[-30,-1],[22,-24],[3,-19],[-43,-21],[151,-3],[25,-2],[78,26],[48,2],[1,12],[210,66],[14,2],[82,28],[38,10],[99,-72],[10,-22],[31,-40],[35,-9],[22,-14],[26,0],[45,16],[26,-31],[49,-11],[84,-40],[51,-27],[23,-6],[35,3],[15,6],[40,-6],[52,17],[62,5],[72,0],[73,-5],[77,-9],[31,14],[-19,6],[-70,9],[-83,5],[-80,1],[-63,-3],[-51,-14],[-9,-6],[-40,8],[-16,-8],[-26,-3],[-103,53],[-56,25],[-31,8],[-24,30],[-29,-1],[-49,-14],[1,14],[-43,44],[-13,25],[-76,56],[95,6],[7,129],[4,0],[5,82],[-162,4],[0,38],[12,6],[-6,40],[-13,9],[-49,61],[-15,38],[-6,63],[-21,21],[27,26],[5,26],[-7,0],[11,31],[-4,13],[-108,11],[-50,-11],[9,22],[-15,18],[-20,6],[-13,-12],[-24,-2],[-19,9],[-13,17],[-11,45],[16,34],[51,17],[1,17],[18,-19],[15,-4],[-8,-16],[17,0],[25,-13],[-1,8],[28,29],[30,0],[-9,9],[6,19],[-10,9],[13,19],[38,0],[27,12],[5,38],[6,11],[-17,20],[-23,-11],[-26,22],[-51,-23],[-78,0],[0,10],[-37,2],[-20,-11],[-5,-24],[-15,-20],[-21,-5],[-95,2],[-31,5],[-128,4],[-27,43],[4,28],[-12,58],[-58,11],[4,-28],[-37,-12],[-17,1],[-22,-14],[-54,7],[-11,10],[-27,1],[-39,28],[2,37],[-44,11],[-51,27],[-132,6],[-40,14],[-40,1],[-106,-8]],[[7646,1518],[-27,-2],[-5,31],[37,0],[-1,8],[32,0],[0,-8],[62,0],[-17,8],[0,22],[16,1],[-1,47],[-46,0],[-48,29],[16,48],[21,1],[19,-8],[9,8],[40,-5],[-5,16],[24,0],[0,20],[-60,1],[-12,13],[11,2],[0,37],[32,0],[14,53],[16,0],[0,18],[-31,0],[0,-10],[-31,0],[-1,-9],[-63,0],[1,-21],[-30,-1],[-1,41],[94,0],[0,72],[-94,63],[-40,56],[-17,15],[-125,58],[-52,0],[-2,-122],[31,0],[-2,-82],[-4,-36],[59,-3],[-2,-40],[0,-104],[2,-21],[-31,0],[1,-21],[-33,1],[0,-65],[4,-23],[1,-98],[33,1],[1,-63],[45,0],[0,-10],[16,0],[5,-74],[5,-18],[93,1],[1,-63],[56,-4],[-1,-22],[7,-19],[51,0],[4,62],[-30,0],[0,85],[-4,17],[1,41],[16,0],[0,22],[-16,9],[-15,-5],[5,26],[-17,5],[-17,19]],[[8059,1270],[14,-31],[27,-19],[9,-24],[30,2],[17,-11],[39,-49],[23,-3],[61,0],[-2,62],[72,1],[6,39],[0,87],[10,23],[16,1],[0,26],[-20,0],[0,30],[-91,0],[-1,-20],[-62,1],[20,-17],[-4,-36],[16,0],[0,-11],[-38,-4],[15,-7],[-13,-13],[-26,-2],[-16,7],[-15,-15],[-60,5],[-27,-22]],[[9629,5675],[0,11],[-30,0],[0,21],[-46,-1],[-1,41],[-140,-3],[0,-51],[-30,-21],[1,-61],[31,0],[1,-42],[16,0],[1,-41],[33,0],[-3,-10],[-30,0],[1,-31],[15,0],[55,-35],[-4,-26],[12,0],[1,-28],[124,2],[-1,41],[-30,-1],[-1,21],[62,0],[-2,76],[52,-5],[40,10],[0,42],[-32,0],[-1,21],[-30,0],[-1,21],[-61,-1],[-2,50]],[[7430,1600],[19,29],[24,15],[25,-16],[26,27],[-23,13],[8,5],[41,0],[3,-14],[44,-25],[40,-2],[11,10],[-38,22],[27,12],[17,18],[-33,12],[33,-2],[-6,10],[-21,5],[18,4],[-15,36],[-12,11],[-19,-15],[-26,3],[26,26],[3,16],[-46,-26],[-13,-21],[-28,-22],[-17,3],[-33,-21],[-31,0],[1,-20],[-32,1],[-1,-65],[4,-42],[8,0]],[[7422,1587],[8,13]],[[7414,1587],[8,0]],[[7414,1587],[-8,-1],[1,-78],[33,1],[1,-44],[30,15],[-2,-34],[18,0],[0,-10],[15,0],[1,-17],[45,-21],[15,8],[-20,19],[3,15],[17,27],[-24,33],[-7,33],[-21,15],[9,13],[-18,16],[15,23],[-33,32],[-27,-1],[-27,-31]],[[7422,1587],[-8,0]],[[7430,1600],[-8,-13]],[[7695,1831],[-60,-21],[2,-8],[-22,-11],[3,-21],[16,-17],[18,20],[29,15],[-10,1],[13,19],[21,16],[-10,7]],[[1680,9176],[-5,-15],[-38,-22],[-16,-22],[9,-13],[29,16],[32,2],[28,13],[29,-3],[-2,-18],[28,-27],[13,-3],[-9,-15],[42,-1],[26,24],[29,-1],[-7,10],[6,19],[-7,16],[9,12],[39,1],[30,15],[-15,11],[16,2],[5,33],[-12,20],[-24,-10],[-17,6],[-12,15],[-52,-23],[-77,1],[1,10],[-48,-2],[-13,-31],[-17,-20]],[[1934,8855],[10,12],[5,25],[-3,22],[11,14],[-7,8],[-27,6],[-23,-8],[-25,12],[-37,0],[-30,-5],[-16,-9],[8,26],[-5,18],[-30,5],[-12,-11],[-42,-1],[-25,5],[-22,-7],[-23,2],[-1,-9],[-36,3],[14,-30],[2,-17],[17,-16],[16,-32],[35,-18],[53,-37],[12,-5],[39,-35],[21,-10],[17,-23],[13,-3],[8,-18],[-8,-29],[39,-5],[38,17],[28,26],[10,2],[-19,30],[3,24],[-8,40]],[[1934,8824],[-17,14],[17,17]],[[2017,8604],[-4,-26],[11,-23],[-8,-26],[-17,-33],[-3,-38],[16,0],[8,-11],[49,7],[22,14],[33,-23],[41,-35],[4,70],[4,0],[4,81],[-162,5],[2,38]],[[1247,9003],[1,-1]],[[1244,9004],[3,-1]],[[1220,9013],[24,-9]],[[1213,9017],[7,-4]],[[1171,9014],[16,11],[26,-8]],[[1154,9007],[17,7]],[[1153,9007],[1,0]],[[1149,9004],[4,3]],[[1133,9005],[16,-1]],[[1131,9007],[2,-2]],[[1098,9011],[33,-4]],[[1074,9007],[24,4]],[[1073,9007],[1,0]],[[1062,9000],[11,7]],[[1151,9225],[-51,18],[-25,-2],[-64,-19],[-20,-13],[-17,-2],[5,-13],[-10,-28],[41,-37],[16,-8],[30,-30],[-16,-35],[7,-17],[-5,-21],[7,-20],[13,2]],[[1153,9220],[-2,5]],[[1154,9218],[-1,2]],[[1163,9211],[-9,7]],[[1171,9199],[-8,12]],[[1171,9197],[0,2]],[[1171,9196],[0,1]],[[1171,9193],[0,3]],[[1172,9190],[-1,3]],[[1171,9184],[1,6]],[[1171,9167],[0,17]],[[1176,9157],[-5,10]],[[1179,9156],[-3,1]],[[1180,9154],[-1,2]],[[1186,9127],[-6,27]],[[1187,9125],[-1,2]],[[1189,9122],[-2,3]],[[1198,9105],[-9,17]],[[1200,9100],[-2,5]],[[1216,9087],[-16,13]],[[1225,9080],[-9,7]],[[1272,9057],[-47,23]],[[1297,8985],[16,9],[20,-39],[24,-3],[4,40],[-38,15],[-22,27],[-30,4],[1,19]],[[1284,8987],[13,-2]],[[1248,9002],[7,-8],[29,-7]],[[1284,8987],[-30,7],[-6,8]],[[1297,8985],[-13,2]],[[1062,9000],[-25,-25],[-8,-42],[11,1],[46,-26],[56,17],[20,11],[6,-22],[-19,-4],[-11,-11],[9,-19],[-5,-34],[25,-34],[45,-21],[38,-5],[49,15],[28,12],[3,57],[16,4],[1,14],[14,14],[-5,49],[-23,3],[-24,40],[-12,-9]],[[1073,9007],[-11,-7]],[[1074,9007],[-1,0]],[[1098,9011],[-24,-4]],[[1131,9007],[-33,4]],[[1133,9005],[-2,2]],[[1149,9004],[-16,1]],[[1153,9007],[-4,-3]],[[1154,9007],[-1,0]],[[1171,9014],[-17,-7]],[[1213,9017],[-23,8],[-19,-11]],[[1220,9013],[-7,4]],[[1244,9004],[-24,9]],[[1247,9003],[-3,1]],[[1248,9002],[-1,1]],[[1272,9057],[8,-12],[22,-11],[8,-12],[19,-4],[4,-13],[32,-13],[15,15],[-13,22],[8,20],[16,9],[9,47],[-17,7],[17,16],[10,50],[-34,56],[7,33],[-13,23],[0,20],[-57,7],[5,-23],[-34,-12],[-21,0],[-19,-13],[-58,6],[-11,11],[-17,-4],[-16,-36],[9,-21]],[[1225,9080],[44,-16],[3,-7]],[[1216,9087],[9,-7]],[[1200,9100],[16,-13]],[[1198,9105],[2,-5]],[[1189,9122],[9,-17]],[[1187,9125],[2,-3]],[[1186,9127],[1,-2]],[[1180,9154],[6,-27]],[[1179,9156],[1,-2]],[[1176,9157],[3,-1]],[[1171,9167],[5,-10]],[[1171,9184],[0,-17]],[[1172,9190],[-1,-6]],[[1171,9193],[1,-3]],[[1171,9196],[0,-3]],[[1171,9197],[0,-1]],[[1171,9199],[0,-2]],[[1163,9211],[8,-12]],[[1154,9218],[9,-7]],[[1153,9220],[1,-2]],[[1151,9225],[2,-5]],[[1628,8674],[9,6],[-20,34],[-39,5],[-11,-3],[2,25],[-15,1],[1,14],[62,-1],[3,28],[-29,69],[-77,2],[2,29],[8,21],[26,-3],[27,72],[1,22],[-71,3],[3,47],[-55,-17],[-50,-36],[0,-11],[-22,0],[-8,-11],[-6,-72],[-16,-5],[6,-16],[-26,-24],[29,-4],[39,-37],[2,-16],[13,-15]],[[1623,8678],[5,-4]],[[1614,8679],[9,-1]],[[1594,8676],[20,3]],[[1588,8680],[6,-4]],[[1562,8673],[3,11],[23,-4]],[[1546,8675],[16,-2]],[[1545,8676],[1,-1]],[[1529,8676],[16,0]],[[1528,8676],[1,0]],[[1519,8676],[9,0]],[[1513,8673],[6,3]],[[1481,8684],[32,-11]],[[1481,8684],[0,0]],[[1489,8687],[-8,-3]],[[1492,8688],[-3,-1]],[[1498,8692],[-6,-4]],[[1497,8697],[1,-5]],[[1491,8710],[6,-13]],[[1490,8711],[1,-1]],[[1488,8712],[2,-1]],[[1487,8720],[1,-8]],[[1484,8726],[3,-6]],[[1482,8727],[2,-1]],[[1475,8725],[7,2]],[[1449,8739],[26,-14]],[[1435,8755],[14,-16]],[[1426,8762],[9,-7]],[[1424,8763],[2,-1]],[[1416,8768],[8,-5]],[[1415,8768],[1,0]],[[1411,8770],[4,-2]],[[1416,8781],[-5,-11]],[[1416,8781],[0,0]],[[1416,8781],[-14,-4],[-13,-27],[5,-33],[-23,-6],[-3,-15],[29,0],[-3,-20],[-33,4],[-3,-16],[-27,-21],[3,-30],[55,-17],[0,-8],[-41,-50],[-22,-21],[0,-11],[23,-33],[12,-10],[17,-31],[31,0],[28,-18],[44,12],[43,32],[69,71],[3,34],[13,28],[-28,3],[-15,17],[12,11],[48,3],[16,46],[-14,3]],[[1416,8781],[0,0]],[[1411,8770],[5,11]],[[1415,8768],[-4,2]],[[1416,8768],[-1,0]],[[1424,8763],[-8,5]],[[1426,8762],[-2,1]],[[1435,8755],[-9,7]],[[1449,8739],[-14,16]],[[1475,8725],[-26,14]],[[1482,8727],[-7,-2]],[[1484,8726],[-2,1]],[[1487,8720],[-3,6]],[[1488,8712],[-1,8]],[[1490,8711],[-2,1]],[[1491,8710],[-1,1]],[[1497,8697],[-6,13]],[[1498,8692],[-1,5]],[[1492,8688],[6,4]],[[1489,8687],[3,1]],[[1481,8684],[8,3]],[[1481,8684],[0,0]],[[1513,8673],[-32,11]],[[1519,8676],[-6,-3]],[[1528,8676],[-9,0]],[[1529,8676],[-1,0]],[[1545,8676],[-16,0]],[[1546,8675],[-1,1]],[[1562,8673],[-16,2]],[[1588,8680],[-26,-7]],[[1594,8676],[-6,4]],[[1614,8679],[-20,-3]],[[1623,8678],[-9,1]],[[1628,8674],[-5,4]],[[8185,1167],[33,3],[14,24],[-3,10],[27,14],[14,-1],[13,22],[-12,26],[4,17],[-52,3],[-26,-11],[-36,-6],[-20,10],[-24,0],[-37,-9],[14,-34],[21,-8],[26,-29],[11,4],[33,-35]]],"transform":{"scale":[0.03185933276964079,-0.048004800480048],"translate":[10,490]}}
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.graticule {
stroke: #aaa;
fill :none;
}
.state {
fill: #bfc8af;
stroke-width: .5px;
fill-opacity: .5;
stroke: #fff;
}
.wilderness {
fill: #317701;
stroke-width: .5px;
fill-opacity: .5;
stroke: none;
}
#GreatBasin {
fill: #db8622;
stroke-width: .5px;
fill-opacity: 1;
stroke: #000;
}
#GreatBasin.highlight {
fill: #e8480d;
stroke-width: .5px;
fill-opacity: 1;
stroke: #000;
}
</style>
<body>
</body>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="https://d3js.org/d3.v3.js"></script>
<script src="https://d3js.org/d3-queue.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="app.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment