5263 lines
4.6 MiB
5263 lines
4.6 MiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<style>body{background-color:white;}</style>
|
|
<style type="text/css">@layer htmltools {
|
|
.html-fill-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
.html-fill-container > .html-fill-item {
|
|
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
.html-fill-container > :not(.html-fill-item) {
|
|
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|
|
</style>
|
|
<script>(function() {
|
|
// If window.HTMLWidgets is already defined, then use it; otherwise create a
|
|
// new object. This allows preceding code to set options that affect the
|
|
// initialization process (though none currently exist).
|
|
window.HTMLWidgets = window.HTMLWidgets || {};
|
|
|
|
// See if we're running in a viewer pane. If not, we're in a web browser.
|
|
var viewerMode = window.HTMLWidgets.viewerMode =
|
|
/\bviewer_pane=1\b/.test(window.location);
|
|
|
|
// See if we're running in Shiny mode. If not, it's a static document.
|
|
// Note that static widgets can appear in both Shiny and static modes, but
|
|
// obviously, Shiny widgets can only appear in Shiny apps/documents.
|
|
var shinyMode = window.HTMLWidgets.shinyMode =
|
|
typeof(window.Shiny) !== "undefined" && !!window.Shiny.outputBindings;
|
|
|
|
// We can't count on jQuery being available, so we implement our own
|
|
// version if necessary.
|
|
function querySelectorAll(scope, selector) {
|
|
if (typeof(jQuery) !== "undefined" && scope instanceof jQuery) {
|
|
return scope.find(selector);
|
|
}
|
|
if (scope.querySelectorAll) {
|
|
return scope.querySelectorAll(selector);
|
|
}
|
|
}
|
|
|
|
function asArray(value) {
|
|
if (value === null)
|
|
return [];
|
|
if ($.isArray(value))
|
|
return value;
|
|
return [value];
|
|
}
|
|
|
|
// Implement jQuery's extend
|
|
function extend(target /*, ... */) {
|
|
if (arguments.length == 1) {
|
|
return target;
|
|
}
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
for (var prop in source) {
|
|
if (source.hasOwnProperty(prop)) {
|
|
target[prop] = source[prop];
|
|
}
|
|
}
|
|
}
|
|
return target;
|
|
}
|
|
|
|
// IE8 doesn't support Array.forEach.
|
|
function forEach(values, callback, thisArg) {
|
|
if (values.forEach) {
|
|
values.forEach(callback, thisArg);
|
|
} else {
|
|
for (var i = 0; i < values.length; i++) {
|
|
callback.call(thisArg, values[i], i, values);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Replaces the specified method with the return value of funcSource.
|
|
//
|
|
// Note that funcSource should not BE the new method, it should be a function
|
|
// that RETURNS the new method. funcSource receives a single argument that is
|
|
// the overridden method, it can be called from the new method. The overridden
|
|
// method can be called like a regular function, it has the target permanently
|
|
// bound to it so "this" will work correctly.
|
|
function overrideMethod(target, methodName, funcSource) {
|
|
var superFunc = target[methodName] || function() {};
|
|
var superFuncBound = function() {
|
|
return superFunc.apply(target, arguments);
|
|
};
|
|
target[methodName] = funcSource(superFuncBound);
|
|
}
|
|
|
|
// Add a method to delegator that, when invoked, calls
|
|
// delegatee.methodName. If there is no such method on
|
|
// the delegatee, but there was one on delegator before
|
|
// delegateMethod was called, then the original version
|
|
// is invoked instead.
|
|
// For example:
|
|
//
|
|
// var a = {
|
|
// method1: function() { console.log('a1'); }
|
|
// method2: function() { console.log('a2'); }
|
|
// };
|
|
// var b = {
|
|
// method1: function() { console.log('b1'); }
|
|
// };
|
|
// delegateMethod(a, b, "method1");
|
|
// delegateMethod(a, b, "method2");
|
|
// a.method1();
|
|
// a.method2();
|
|
//
|
|
// The output would be "b1", "a2".
|
|
function delegateMethod(delegator, delegatee, methodName) {
|
|
var inherited = delegator[methodName];
|
|
delegator[methodName] = function() {
|
|
var target = delegatee;
|
|
var method = delegatee[methodName];
|
|
|
|
// The method doesn't exist on the delegatee. Instead,
|
|
// call the method on the delegator, if it exists.
|
|
if (!method) {
|
|
target = delegator;
|
|
method = inherited;
|
|
}
|
|
|
|
if (method) {
|
|
return method.apply(target, arguments);
|
|
}
|
|
};
|
|
}
|
|
|
|
// Implement a vague facsimilie of jQuery's data method
|
|
function elementData(el, name, value) {
|
|
if (arguments.length == 2) {
|
|
return el["htmlwidget_data_" + name];
|
|
} else if (arguments.length == 3) {
|
|
el["htmlwidget_data_" + name] = value;
|
|
return el;
|
|
} else {
|
|
throw new Error("Wrong number of arguments for elementData: " +
|
|
arguments.length);
|
|
}
|
|
}
|
|
|
|
// http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex
|
|
function escapeRegExp(str) {
|
|
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
|
|
}
|
|
|
|
function hasClass(el, className) {
|
|
var re = new RegExp("\\b" + escapeRegExp(className) + "\\b");
|
|
return re.test(el.className);
|
|
}
|
|
|
|
// elements - array (or array-like object) of HTML elements
|
|
// className - class name to test for
|
|
// include - if true, only return elements with given className;
|
|
// if false, only return elements *without* given className
|
|
function filterByClass(elements, className, include) {
|
|
var results = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
if (hasClass(elements[i], className) == include)
|
|
results.push(elements[i]);
|
|
}
|
|
return results;
|
|
}
|
|
|
|
function on(obj, eventName, func) {
|
|
if (obj.addEventListener) {
|
|
obj.addEventListener(eventName, func, false);
|
|
} else if (obj.attachEvent) {
|
|
obj.attachEvent(eventName, func);
|
|
}
|
|
}
|
|
|
|
function off(obj, eventName, func) {
|
|
if (obj.removeEventListener)
|
|
obj.removeEventListener(eventName, func, false);
|
|
else if (obj.detachEvent) {
|
|
obj.detachEvent(eventName, func);
|
|
}
|
|
}
|
|
|
|
// Translate array of values to top/right/bottom/left, as usual with
|
|
// the "padding" CSS property
|
|
// https://developer.mozilla.org/en-US/docs/Web/CSS/padding
|
|
function unpackPadding(value) {
|
|
if (typeof(value) === "number")
|
|
value = [value];
|
|
if (value.length === 1) {
|
|
return {top: value[0], right: value[0], bottom: value[0], left: value[0]};
|
|
}
|
|
if (value.length === 2) {
|
|
return {top: value[0], right: value[1], bottom: value[0], left: value[1]};
|
|
}
|
|
if (value.length === 3) {
|
|
return {top: value[0], right: value[1], bottom: value[2], left: value[1]};
|
|
}
|
|
if (value.length === 4) {
|
|
return {top: value[0], right: value[1], bottom: value[2], left: value[3]};
|
|
}
|
|
}
|
|
|
|
// Convert an unpacked padding object to a CSS value
|
|
function paddingToCss(paddingObj) {
|
|
return paddingObj.top + "px " + paddingObj.right + "px " + paddingObj.bottom + "px " + paddingObj.left + "px";
|
|
}
|
|
|
|
// Makes a number suitable for CSS
|
|
function px(x) {
|
|
if (typeof(x) === "number")
|
|
return x + "px";
|
|
else
|
|
return x;
|
|
}
|
|
|
|
// Retrieves runtime widget sizing information for an element.
|
|
// The return value is either null, or an object with fill, padding,
|
|
// defaultWidth, defaultHeight fields.
|
|
function sizingPolicy(el) {
|
|
var sizingEl = document.querySelector("script[data-for='" + el.id + "'][type='application/htmlwidget-sizing']");
|
|
if (!sizingEl)
|
|
return null;
|
|
var sp = JSON.parse(sizingEl.textContent || sizingEl.text || "{}");
|
|
if (viewerMode) {
|
|
return sp.viewer;
|
|
} else {
|
|
return sp.browser;
|
|
}
|
|
}
|
|
|
|
// @param tasks Array of strings (or falsy value, in which case no-op).
|
|
// Each element must be a valid JavaScript expression that yields a
|
|
// function. Or, can be an array of objects with "code" and "data"
|
|
// properties; in this case, the "code" property should be a string
|
|
// of JS that's an expr that yields a function, and "data" should be
|
|
// an object that will be added as an additional argument when that
|
|
// function is called.
|
|
// @param target The object that will be "this" for each function
|
|
// execution.
|
|
// @param args Array of arguments to be passed to the functions. (The
|
|
// same arguments will be passed to all functions.)
|
|
function evalAndRun(tasks, target, args) {
|
|
if (tasks) {
|
|
forEach(tasks, function(task) {
|
|
var theseArgs = args;
|
|
if (typeof(task) === "object") {
|
|
theseArgs = theseArgs.concat([task.data]);
|
|
task = task.code;
|
|
}
|
|
var taskFunc = tryEval(task);
|
|
if (typeof(taskFunc) !== "function") {
|
|
throw new Error("Task must be a function! Source:\n" + task);
|
|
}
|
|
taskFunc.apply(target, theseArgs);
|
|
});
|
|
}
|
|
}
|
|
|
|
// Attempt eval() both with and without enclosing in parentheses.
|
|
// Note that enclosing coerces a function declaration into
|
|
// an expression that eval() can parse
|
|
// (otherwise, a SyntaxError is thrown)
|
|
function tryEval(code) {
|
|
var result = null;
|
|
try {
|
|
result = eval("(" + code + ")");
|
|
} catch(error) {
|
|
if (!(error instanceof SyntaxError)) {
|
|
throw error;
|
|
}
|
|
try {
|
|
result = eval(code);
|
|
} catch(e) {
|
|
if (e instanceof SyntaxError) {
|
|
throw error;
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function initSizing(el) {
|
|
var sizing = sizingPolicy(el);
|
|
if (!sizing)
|
|
return;
|
|
|
|
var cel = document.getElementById("htmlwidget_container");
|
|
if (!cel)
|
|
return;
|
|
|
|
if (typeof(sizing.padding) !== "undefined") {
|
|
document.body.style.margin = "0";
|
|
document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));
|
|
}
|
|
|
|
if (sizing.fill) {
|
|
document.body.style.overflow = "hidden";
|
|
document.body.style.width = "100%";
|
|
document.body.style.height = "100%";
|
|
document.documentElement.style.width = "100%";
|
|
document.documentElement.style.height = "100%";
|
|
cel.style.position = "absolute";
|
|
var pad = unpackPadding(sizing.padding);
|
|
cel.style.top = pad.top + "px";
|
|
cel.style.right = pad.right + "px";
|
|
cel.style.bottom = pad.bottom + "px";
|
|
cel.style.left = pad.left + "px";
|
|
el.style.width = "100%";
|
|
el.style.height = "100%";
|
|
|
|
return {
|
|
getWidth: function() { return cel.getBoundingClientRect().width; },
|
|
getHeight: function() { return cel.getBoundingClientRect().height; }
|
|
};
|
|
|
|
} else {
|
|
el.style.width = px(sizing.width);
|
|
el.style.height = px(sizing.height);
|
|
|
|
return {
|
|
getWidth: function() { return cel.getBoundingClientRect().width; },
|
|
getHeight: function() { return cel.getBoundingClientRect().height; }
|
|
};
|
|
}
|
|
}
|
|
|
|
// Default implementations for methods
|
|
var defaults = {
|
|
find: function(scope) {
|
|
return querySelectorAll(scope, "." + this.name);
|
|
},
|
|
renderError: function(el, err) {
|
|
var $el = $(el);
|
|
|
|
this.clearError(el);
|
|
|
|
// Add all these error classes, as Shiny does
|
|
var errClass = "shiny-output-error";
|
|
if (err.type !== null) {
|
|
// use the classes of the error condition as CSS class names
|
|
errClass = errClass + " " + $.map(asArray(err.type), function(type) {
|
|
return errClass + "-" + type;
|
|
}).join(" ");
|
|
}
|
|
errClass = errClass + " htmlwidgets-error";
|
|
|
|
// Is el inline or block? If inline or inline-block, just display:none it
|
|
// and add an inline error.
|
|
var display = $el.css("display");
|
|
$el.data("restore-display-mode", display);
|
|
|
|
if (display === "inline" || display === "inline-block") {
|
|
$el.hide();
|
|
if (err.message !== "") {
|
|
var errorSpan = $("<span>").addClass(errClass);
|
|
errorSpan.text(err.message);
|
|
$el.after(errorSpan);
|
|
}
|
|
} else if (display === "block") {
|
|
// If block, add an error just after the el, set visibility:none on the
|
|
// el, and position the error to be on top of the el.
|
|
// Mark it with a unique ID and CSS class so we can remove it later.
|
|
$el.css("visibility", "hidden");
|
|
if (err.message !== "") {
|
|
var errorDiv = $("<div>").addClass(errClass).css("position", "absolute")
|
|
.css("top", el.offsetTop)
|
|
.css("left", el.offsetLeft)
|
|
// setting width can push out the page size, forcing otherwise
|
|
// unnecessary scrollbars to appear and making it impossible for
|
|
// the element to shrink; so use max-width instead
|
|
.css("maxWidth", el.offsetWidth)
|
|
.css("height", el.offsetHeight);
|
|
errorDiv.text(err.message);
|
|
$el.after(errorDiv);
|
|
|
|
// Really dumb way to keep the size/position of the error in sync with
|
|
// the parent element as the window is resized or whatever.
|
|
var intId = setInterval(function() {
|
|
if (!errorDiv[0].parentElement) {
|
|
clearInterval(intId);
|
|
return;
|
|
}
|
|
errorDiv
|
|
.css("top", el.offsetTop)
|
|
.css("left", el.offsetLeft)
|
|
.css("maxWidth", el.offsetWidth)
|
|
.css("height", el.offsetHeight);
|
|
}, 500);
|
|
}
|
|
}
|
|
},
|
|
clearError: function(el) {
|
|
var $el = $(el);
|
|
var display = $el.data("restore-display-mode");
|
|
$el.data("restore-display-mode", null);
|
|
|
|
if (display === "inline" || display === "inline-block") {
|
|
if (display)
|
|
$el.css("display", display);
|
|
$(el.nextSibling).filter(".htmlwidgets-error").remove();
|
|
} else if (display === "block"){
|
|
$el.css("visibility", "inherit");
|
|
$(el.nextSibling).filter(".htmlwidgets-error").remove();
|
|
}
|
|
},
|
|
sizing: {}
|
|
};
|
|
|
|
// Called by widget bindings to register a new type of widget. The definition
|
|
// object can contain the following properties:
|
|
// - name (required) - A string indicating the binding name, which will be
|
|
// used by default as the CSS classname to look for.
|
|
// - initialize (optional) - A function(el) that will be called once per
|
|
// widget element; if a value is returned, it will be passed as the third
|
|
// value to renderValue.
|
|
// - renderValue (required) - A function(el, data, initValue) that will be
|
|
// called with data. Static contexts will cause this to be called once per
|
|
// element; Shiny apps will cause this to be called multiple times per
|
|
// element, as the data changes.
|
|
window.HTMLWidgets.widget = function(definition) {
|
|
if (!definition.name) {
|
|
throw new Error("Widget must have a name");
|
|
}
|
|
if (!definition.type) {
|
|
throw new Error("Widget must have a type");
|
|
}
|
|
// Currently we only support output widgets
|
|
if (definition.type !== "output") {
|
|
throw new Error("Unrecognized widget type '" + definition.type + "'");
|
|
}
|
|
// TODO: Verify that .name is a valid CSS classname
|
|
|
|
// Support new-style instance-bound definitions. Old-style class-bound
|
|
// definitions have one widget "object" per widget per type/class of
|
|
// widget; the renderValue and resize methods on such widget objects
|
|
// take el and instance arguments, because the widget object can't
|
|
// store them. New-style instance-bound definitions have one widget
|
|
// object per widget instance; the definition that's passed in doesn't
|
|
// provide renderValue or resize methods at all, just the single method
|
|
// factory(el, width, height)
|
|
// which returns an object that has renderValue(x) and resize(w, h).
|
|
// This enables a far more natural programming style for the widget
|
|
// author, who can store per-instance state using either OO-style
|
|
// instance fields or functional-style closure variables (I guess this
|
|
// is in contrast to what can only be called C-style pseudo-OO which is
|
|
// what we required before).
|
|
if (definition.factory) {
|
|
definition = createLegacyDefinitionAdapter(definition);
|
|
}
|
|
|
|
if (!definition.renderValue) {
|
|
throw new Error("Widget must have a renderValue function");
|
|
}
|
|
|
|
// For static rendering (non-Shiny), use a simple widget registration
|
|
// scheme. We also use this scheme for Shiny apps/documents that also
|
|
// contain static widgets.
|
|
window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];
|
|
// Merge defaults into the definition; don't mutate the original definition.
|
|
var staticBinding = extend({}, defaults, definition);
|
|
overrideMethod(staticBinding, "find", function(superfunc) {
|
|
return function(scope) {
|
|
var results = superfunc(scope);
|
|
// Filter out Shiny outputs, we only want the static kind
|
|
return filterByClass(results, "html-widget-output", false);
|
|
};
|
|
});
|
|
window.HTMLWidgets.widgets.push(staticBinding);
|
|
|
|
if (shinyMode) {
|
|
// Shiny is running. Register the definition with an output binding.
|
|
// The definition itself will not be the output binding, instead
|
|
// we will make an output binding object that delegates to the
|
|
// definition. This is because we foolishly used the same method
|
|
// name (renderValue) for htmlwidgets definition and Shiny bindings
|
|
// but they actually have quite different semantics (the Shiny
|
|
// bindings receive data that includes lots of metadata that it
|
|
// strips off before calling htmlwidgets renderValue). We can't
|
|
// just ignore the difference because in some widgets it's helpful
|
|
// to call this.renderValue() from inside of resize(), and if
|
|
// we're not delegating, then that call will go to the Shiny
|
|
// version instead of the htmlwidgets version.
|
|
|
|
// Merge defaults with definition, without mutating either.
|
|
var bindingDef = extend({}, defaults, definition);
|
|
|
|
// This object will be our actual Shiny binding.
|
|
var shinyBinding = new Shiny.OutputBinding();
|
|
|
|
// With a few exceptions, we'll want to simply use the bindingDef's
|
|
// version of methods if they are available, otherwise fall back to
|
|
// Shiny's defaults. NOTE: If Shiny's output bindings gain additional
|
|
// methods in the future, and we want them to be overrideable by
|
|
// HTMLWidget binding definitions, then we'll need to add them to this
|
|
// list.
|
|
delegateMethod(shinyBinding, bindingDef, "getId");
|
|
delegateMethod(shinyBinding, bindingDef, "onValueChange");
|
|
delegateMethod(shinyBinding, bindingDef, "onValueError");
|
|
delegateMethod(shinyBinding, bindingDef, "renderError");
|
|
delegateMethod(shinyBinding, bindingDef, "clearError");
|
|
delegateMethod(shinyBinding, bindingDef, "showProgress");
|
|
|
|
// The find, renderValue, and resize are handled differently, because we
|
|
// want to actually decorate the behavior of the bindingDef methods.
|
|
|
|
shinyBinding.find = function(scope) {
|
|
var results = bindingDef.find(scope);
|
|
|
|
// Only return elements that are Shiny outputs, not static ones
|
|
var dynamicResults = results.filter(".html-widget-output");
|
|
|
|
// It's possible that whatever caused Shiny to think there might be
|
|
// new dynamic outputs, also caused there to be new static outputs.
|
|
// Since there might be lots of different htmlwidgets bindings, we
|
|
// schedule execution for later--no need to staticRender multiple
|
|
// times.
|
|
if (results.length !== dynamicResults.length)
|
|
scheduleStaticRender();
|
|
|
|
return dynamicResults;
|
|
};
|
|
|
|
// Wrap renderValue to handle initialization, which unfortunately isn't
|
|
// supported natively by Shiny at the time of this writing.
|
|
|
|
shinyBinding.renderValue = function(el, data) {
|
|
Shiny.renderDependencies(data.deps);
|
|
// Resolve strings marked as javascript literals to objects
|
|
if (!(data.evals instanceof Array)) data.evals = [data.evals];
|
|
for (var i = 0; data.evals && i < data.evals.length; i++) {
|
|
window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);
|
|
}
|
|
if (!bindingDef.renderOnNullValue) {
|
|
if (data.x === null) {
|
|
el.style.visibility = "hidden";
|
|
return;
|
|
} else {
|
|
el.style.visibility = "inherit";
|
|
}
|
|
}
|
|
if (!elementData(el, "initialized")) {
|
|
initSizing(el);
|
|
|
|
elementData(el, "initialized", true);
|
|
if (bindingDef.initialize) {
|
|
var rect = el.getBoundingClientRect();
|
|
var result = bindingDef.initialize(el, rect.width, rect.height);
|
|
elementData(el, "init_result", result);
|
|
}
|
|
}
|
|
bindingDef.renderValue(el, data.x, elementData(el, "init_result"));
|
|
evalAndRun(data.jsHooks.render, elementData(el, "init_result"), [el, data.x]);
|
|
};
|
|
|
|
// Only override resize if bindingDef implements it
|
|
if (bindingDef.resize) {
|
|
shinyBinding.resize = function(el, width, height) {
|
|
// Shiny can call resize before initialize/renderValue have been
|
|
// called, which doesn't make sense for widgets.
|
|
if (elementData(el, "initialized")) {
|
|
bindingDef.resize(el, width, height, elementData(el, "init_result"));
|
|
}
|
|
};
|
|
}
|
|
|
|
Shiny.outputBindings.register(shinyBinding, bindingDef.name);
|
|
}
|
|
};
|
|
|
|
var scheduleStaticRenderTimerId = null;
|
|
function scheduleStaticRender() {
|
|
if (!scheduleStaticRenderTimerId) {
|
|
scheduleStaticRenderTimerId = setTimeout(function() {
|
|
scheduleStaticRenderTimerId = null;
|
|
window.HTMLWidgets.staticRender();
|
|
}, 1);
|
|
}
|
|
}
|
|
|
|
// Render static widgets after the document finishes loading
|
|
// Statically render all elements that are of this widget's class
|
|
window.HTMLWidgets.staticRender = function() {
|
|
var bindings = window.HTMLWidgets.widgets || [];
|
|
forEach(bindings, function(binding) {
|
|
var matches = binding.find(document.documentElement);
|
|
forEach(matches, function(el) {
|
|
var sizeObj = initSizing(el, binding);
|
|
|
|
var getSize = function(el) {
|
|
if (sizeObj) {
|
|
return {w: sizeObj.getWidth(), h: sizeObj.getHeight()}
|
|
} else {
|
|
var rect = el.getBoundingClientRect();
|
|
return {w: rect.width, h: rect.height}
|
|
}
|
|
};
|
|
|
|
if (hasClass(el, "html-widget-static-bound"))
|
|
return;
|
|
el.className = el.className + " html-widget-static-bound";
|
|
|
|
var initResult;
|
|
if (binding.initialize) {
|
|
var size = getSize(el);
|
|
initResult = binding.initialize(el, size.w, size.h);
|
|
elementData(el, "init_result", initResult);
|
|
}
|
|
|
|
if (binding.resize) {
|
|
var lastSize = getSize(el);
|
|
var resizeHandler = function(e) {
|
|
var size = getSize(el);
|
|
if (size.w === 0 && size.h === 0)
|
|
return;
|
|
if (size.w === lastSize.w && size.h === lastSize.h)
|
|
return;
|
|
lastSize = size;
|
|
binding.resize(el, size.w, size.h, initResult);
|
|
};
|
|
|
|
on(window, "resize", resizeHandler);
|
|
|
|
// This is needed for cases where we're running in a Shiny
|
|
// app, but the widget itself is not a Shiny output, but
|
|
// rather a simple static widget. One example of this is
|
|
// an rmarkdown document that has runtime:shiny and widget
|
|
// that isn't in a render function. Shiny only knows to
|
|
// call resize handlers for Shiny outputs, not for static
|
|
// widgets, so we do it ourselves.
|
|
if (window.jQuery) {
|
|
window.jQuery(document).on(
|
|
"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets",
|
|
resizeHandler
|
|
);
|
|
window.jQuery(document).on(
|
|
"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets",
|
|
resizeHandler
|
|
);
|
|
}
|
|
|
|
// This is needed for the specific case of ioslides, which
|
|
// flips slides between display:none and display:block.
|
|
// Ideally we would not have to have ioslide-specific code
|
|
// here, but rather have ioslides raise a generic event,
|
|
// but the rmarkdown package just went to CRAN so the
|
|
// window to getting that fixed may be long.
|
|
if (window.addEventListener) {
|
|
// It's OK to limit this to window.addEventListener
|
|
// browsers because ioslides itself only supports
|
|
// such browsers.
|
|
on(document, "slideenter", resizeHandler);
|
|
on(document, "slideleave", resizeHandler);
|
|
}
|
|
}
|
|
|
|
var scriptData = document.querySelector("script[data-for='" + el.id + "'][type='application/json']");
|
|
if (scriptData) {
|
|
var data = JSON.parse(scriptData.textContent || scriptData.text);
|
|
// Resolve strings marked as javascript literals to objects
|
|
if (!(data.evals instanceof Array)) data.evals = [data.evals];
|
|
for (var k = 0; data.evals && k < data.evals.length; k++) {
|
|
window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);
|
|
}
|
|
binding.renderValue(el, data.x, initResult);
|
|
evalAndRun(data.jsHooks.render, initResult, [el, data.x]);
|
|
}
|
|
});
|
|
});
|
|
|
|
invokePostRenderHandlers();
|
|
}
|
|
|
|
|
|
function has_jQuery3() {
|
|
if (!window.jQuery) {
|
|
return false;
|
|
}
|
|
var $version = window.jQuery.fn.jquery;
|
|
var $major_version = parseInt($version.split(".")[0]);
|
|
return $major_version >= 3;
|
|
}
|
|
|
|
/*
|
|
/ Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's
|
|
/ on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now
|
|
/ really means $(setTimeout(fn)).
|
|
/ https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous
|
|
/
|
|
/ Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny
|
|
/ one tick later than it did before, which means staticRender() is
|
|
/ called renderValue() earlier than (advanced) widget authors might be expecting.
|
|
/ https://github.com/rstudio/shiny/issues/2630
|
|
/
|
|
/ For a concrete example, leaflet has some methods (e.g., updateBounds)
|
|
/ which reference Shiny methods registered in initShiny (e.g., setInputValue).
|
|
/ Since leaflet is privy to this life-cycle, it knows to use setTimeout() to
|
|
/ delay execution of those methods (until Shiny methods are ready)
|
|
/ https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268
|
|
/
|
|
/ Ideally widget authors wouldn't need to use this setTimeout() hack that
|
|
/ leaflet uses to call Shiny methods on a staticRender(). In the long run,
|
|
/ the logic initShiny should be broken up so that method registration happens
|
|
/ right away, but binding happens later.
|
|
*/
|
|
function maybeStaticRenderLater() {
|
|
if (shinyMode && has_jQuery3()) {
|
|
window.jQuery(window.HTMLWidgets.staticRender);
|
|
} else {
|
|
window.HTMLWidgets.staticRender();
|
|
}
|
|
}
|
|
|
|
if (document.addEventListener) {
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
document.removeEventListener("DOMContentLoaded", arguments.callee, false);
|
|
maybeStaticRenderLater();
|
|
}, false);
|
|
} else if (document.attachEvent) {
|
|
document.attachEvent("onreadystatechange", function() {
|
|
if (document.readyState === "complete") {
|
|
document.detachEvent("onreadystatechange", arguments.callee);
|
|
maybeStaticRenderLater();
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
window.HTMLWidgets.getAttachmentUrl = function(depname, key) {
|
|
// If no key, default to the first item
|
|
if (typeof(key) === "undefined")
|
|
key = 1;
|
|
|
|
var link = document.getElementById(depname + "-" + key + "-attachment");
|
|
if (!link) {
|
|
throw new Error("Attachment " + depname + "/" + key + " not found in document");
|
|
}
|
|
return link.getAttribute("href");
|
|
};
|
|
|
|
window.HTMLWidgets.dataframeToD3 = function(df) {
|
|
var names = [];
|
|
var length;
|
|
for (var name in df) {
|
|
if (df.hasOwnProperty(name))
|
|
names.push(name);
|
|
if (typeof(df[name]) !== "object" || typeof(df[name].length) === "undefined") {
|
|
throw new Error("All fields must be arrays");
|
|
} else if (typeof(length) !== "undefined" && length !== df[name].length) {
|
|
throw new Error("All fields must be arrays of the same length");
|
|
}
|
|
length = df[name].length;
|
|
}
|
|
var results = [];
|
|
var item;
|
|
for (var row = 0; row < length; row++) {
|
|
item = {};
|
|
for (var col = 0; col < names.length; col++) {
|
|
item[names[col]] = df[names[col]][row];
|
|
}
|
|
results.push(item);
|
|
}
|
|
return results;
|
|
};
|
|
|
|
window.HTMLWidgets.transposeArray2D = function(array) {
|
|
if (array.length === 0) return array;
|
|
var newArray = array[0].map(function(col, i) {
|
|
return array.map(function(row) {
|
|
return row[i]
|
|
})
|
|
});
|
|
return newArray;
|
|
};
|
|
// Split value at splitChar, but allow splitChar to be escaped
|
|
// using escapeChar. Any other characters escaped by escapeChar
|
|
// will be included as usual (including escapeChar itself).
|
|
function splitWithEscape(value, splitChar, escapeChar) {
|
|
var results = [];
|
|
var escapeMode = false;
|
|
var currentResult = "";
|
|
for (var pos = 0; pos < value.length; pos++) {
|
|
if (!escapeMode) {
|
|
if (value[pos] === splitChar) {
|
|
results.push(currentResult);
|
|
currentResult = "";
|
|
} else if (value[pos] === escapeChar) {
|
|
escapeMode = true;
|
|
} else {
|
|
currentResult += value[pos];
|
|
}
|
|
} else {
|
|
currentResult += value[pos];
|
|
escapeMode = false;
|
|
}
|
|
}
|
|
if (currentResult !== "") {
|
|
results.push(currentResult);
|
|
}
|
|
return results;
|
|
}
|
|
// Function authored by Yihui/JJ Allaire
|
|
window.HTMLWidgets.evaluateStringMember = function(o, member) {
|
|
var parts = splitWithEscape(member, '.', '\\');
|
|
for (var i = 0, l = parts.length; i < l; i++) {
|
|
var part = parts[i];
|
|
// part may be a character or 'numeric' member name
|
|
if (o !== null && typeof o === "object" && part in o) {
|
|
if (i == (l - 1)) { // if we are at the end of the line then evalulate
|
|
if (typeof o[part] === "string")
|
|
o[part] = tryEval(o[part]);
|
|
} else { // otherwise continue to next embedded object
|
|
o = o[part];
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
// Retrieve the HTMLWidget instance (i.e. the return value of an
|
|
// HTMLWidget binding's initialize() or factory() function)
|
|
// associated with an element, or null if none.
|
|
window.HTMLWidgets.getInstance = function(el) {
|
|
return elementData(el, "init_result");
|
|
};
|
|
|
|
// Finds the first element in the scope that matches the selector,
|
|
// and returns the HTMLWidget instance (i.e. the return value of
|
|
// an HTMLWidget binding's initialize() or factory() function)
|
|
// associated with that element, if any. If no element matches the
|
|
// selector, or the first matching element has no HTMLWidget
|
|
// instance associated with it, then null is returned.
|
|
//
|
|
// The scope argument is optional, and defaults to window.document.
|
|
window.HTMLWidgets.find = function(scope, selector) {
|
|
if (arguments.length == 1) {
|
|
selector = scope;
|
|
scope = document;
|
|
}
|
|
|
|
var el = scope.querySelector(selector);
|
|
if (el === null) {
|
|
return null;
|
|
} else {
|
|
return window.HTMLWidgets.getInstance(el);
|
|
}
|
|
};
|
|
|
|
// Finds all elements in the scope that match the selector, and
|
|
// returns the HTMLWidget instances (i.e. the return values of
|
|
// an HTMLWidget binding's initialize() or factory() function)
|
|
// associated with the elements, in an array. If elements that
|
|
// match the selector don't have an associated HTMLWidget
|
|
// instance, the returned array will contain nulls.
|
|
//
|
|
// The scope argument is optional, and defaults to window.document.
|
|
window.HTMLWidgets.findAll = function(scope, selector) {
|
|
if (arguments.length == 1) {
|
|
selector = scope;
|
|
scope = document;
|
|
}
|
|
|
|
var nodes = scope.querySelectorAll(selector);
|
|
var results = [];
|
|
for (var i = 0; i < nodes.length; i++) {
|
|
results.push(window.HTMLWidgets.getInstance(nodes[i]));
|
|
}
|
|
return results;
|
|
};
|
|
|
|
var postRenderHandlers = [];
|
|
function invokePostRenderHandlers() {
|
|
while (postRenderHandlers.length) {
|
|
var handler = postRenderHandlers.shift();
|
|
if (handler) {
|
|
handler();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Register the given callback function to be invoked after the
|
|
// next time static widgets are rendered.
|
|
window.HTMLWidgets.addPostRenderHandler = function(callback) {
|
|
postRenderHandlers.push(callback);
|
|
};
|
|
|
|
// Takes a new-style instance-bound definition, and returns an
|
|
// old-style class-bound definition. This saves us from having
|
|
// to rewrite all the logic in this file to accomodate both
|
|
// types of definitions.
|
|
function createLegacyDefinitionAdapter(defn) {
|
|
var result = {
|
|
name: defn.name,
|
|
type: defn.type,
|
|
initialize: function(el, width, height) {
|
|
return defn.factory(el, width, height);
|
|
},
|
|
renderValue: function(el, x, instance) {
|
|
return instance.renderValue(x);
|
|
},
|
|
resize: function(el, width, height, instance) {
|
|
return instance.resize(width, height);
|
|
}
|
|
};
|
|
|
|
if (defn.find)
|
|
result.find = defn.find;
|
|
if (defn.renderError)
|
|
result.renderError = defn.renderError;
|
|
if (defn.clearError)
|
|
result.clearError = defn.clearError;
|
|
|
|
return result;
|
|
}
|
|
})();
|
|
</script>
|
|
<script>/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
|
|
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join("|"),"i");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=["Webkit","Moz","ms"],$e=E.createElement("div").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:"absolute",visibility:"hidden",display:"block"},Ge={letterSpacing:"0",fontWeight:"400"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=We(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?"border":"content"),o,r,a)+"px"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),"normal"===i&&t in Ge&&(i=Ge[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,"marginLeft"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st("show"),slideUp:st("hide"),slideToggle:st("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement("input"),nt=E.createElement("select").appendChild(E.createElement("option")),tt.type="checkbox",y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement("input")).value="t",tt.type="radio",y.radioValue="t"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(" ")}function gt(e){return e.getAttribute&&e.getAttribute("class")||""}function vt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr("class","");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=gt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+ht(gt(n))+" ").indexOf(t))return!0;return!1}});var yt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(yt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Ct=/\[\]$/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)At(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\/\//,Ot={},Pt={},Rt="*/".concat("*"),Mt=E.createElement("a");function It(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Rt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+"").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+"//"+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,"$1"),o=(Tt.test(f)?"&":"?")+"_="+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+Rt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&S.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&"withCredentials"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Xt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
|
|
</script>
|
|
<style type="text/css">.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane > svg,.leaflet-pane > canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer {position: absolute;left: 0;top: 0;}.leaflet-container {overflow: hidden;}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow {-webkit-user-select: none;-moz-user-select: none;user-select: none;-webkit-user-drag: none;}.leaflet-safari .leaflet-tile {image-rendering: -webkit-optimize-contrast;}.leaflet-safari .leaflet-tile-container {width: 1600px;height: 1600px;-webkit-transform-origin: 0 0;}.leaflet-marker-icon,.leaflet-marker-shadow {display: block;}.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer {max-width: none !important;max-height: none !important;}.leaflet-container.leaflet-touch-zoom {-ms-touch-action: pan-x pan-y;touch-action: pan-x pan-y;}.leaflet-container.leaflet-touch-drag {-ms-touch-action: pinch-zoom;touch-action: none;touch-action: pinch-zoom;}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {-ms-touch-action: none;touch-action: none;}.leaflet-container {-webkit-tap-highlight-color: transparent;}.leaflet-container a {-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);}.leaflet-tile {filter: inherit;visibility: hidden;}.leaflet-tile-loaded {visibility: inherit;}.leaflet-zoom-box {width: 0;height: 0;-moz-box-sizing: border-box;box-sizing: border-box;z-index: 800;}.leaflet-overlay-pane svg {-moz-user-select: none;}.leaflet-pane { z-index: 400; }.leaflet-tile-pane { z-index: 200; }.leaflet-overlay-pane { z-index: 400; }.leaflet-shadow-pane { z-index: 500; }.leaflet-marker-pane { z-index: 600; }.leaflet-tooltip-pane { z-index: 650; }.leaflet-popup-pane { z-index: 700; }.leaflet-map-pane canvas { z-index: 100; }.leaflet-map-pane svg { z-index: 200; }.leaflet-vml-shape {width: 1px;height: 1px;}.lvml {behavior: url(#default#VML);display: inline-block;position: absolute;}.leaflet-control {position: relative;z-index: 800;pointer-events: visiblePainted; pointer-events: auto;}.leaflet-top,.leaflet-bottom {position: absolute;z-index: 1000;pointer-events: none;}.leaflet-top {top: 0;}.leaflet-right {right: 0;}.leaflet-bottom {bottom: 0;}.leaflet-left {left: 0;}.leaflet-control {float: left;clear: both;}.leaflet-right .leaflet-control {float: right;}.leaflet-top .leaflet-control {margin-top: 10px;}.leaflet-bottom .leaflet-control {margin-bottom: 10px;}.leaflet-left .leaflet-control {margin-left: 10px;}.leaflet-right .leaflet-control {margin-right: 10px;}.leaflet-fade-anim .leaflet-tile {will-change: opacity;}.leaflet-fade-anim .leaflet-popup {opacity: 0;-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {opacity: 1;}.leaflet-zoom-animated {-webkit-transform-origin: 0 0;-ms-transform-origin: 0 0;transform-origin: 0 0;}.leaflet-zoom-anim .leaflet-zoom-animated {will-change: transform;}.leaflet-zoom-anim .leaflet-zoom-animated {-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);transition: transform 0.25s cubic-bezier(0,0,0.25,1);}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile {-webkit-transition: none;-moz-transition: none;-o-transition: none;transition: none;}.leaflet-zoom-anim .leaflet-zoom-hide {visibility: hidden;}.leaflet-interactive {cursor: pointer;}.leaflet-grab {cursor: -webkit-grab;cursor: -moz-grab;}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive {cursor: crosshair;}.leaflet-popup-pane,.leaflet-control {cursor: auto;}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable {cursor: move;cursor: -webkit-grabbing;cursor: -moz-grabbing;}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane > svg path,.leaflet-tile-container {pointer-events: none;}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane > svg path.leaflet-interactive {pointer-events: visiblePainted; pointer-events: auto;}.leaflet-container {background: #ddd;outline: 0;}.leaflet-container a {color: #0078A8;}.leaflet-container a.leaflet-active {outline: 2px solid orange;}.leaflet-zoom-box {border: 2px dotted #38f;background: rgba(255,255,255,0.5);}.leaflet-container {font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;}.leaflet-bar {box-shadow: 0 1px 5px rgba(0,0,0,0.65);border-radius: 4px;}.leaflet-bar a,.leaflet-bar a:hover {background-color: #fff;border-bottom: 1px solid #ccc;width: 26px;height: 26px;line-height: 26px;display: block;text-align: center;text-decoration: none;color: black;}.leaflet-bar a,.leaflet-control-layers-toggle {background-position: 50% 50%;background-repeat: no-repeat;display: block;}.leaflet-bar a:hover {background-color: #f4f4f4;}.leaflet-bar a:first-child {border-top-left-radius: 4px;border-top-right-radius: 4px;}.leaflet-bar a:last-child {border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;border-bottom: none;}.leaflet-bar a.leaflet-disabled {cursor: default;background-color: #f4f4f4;color: #bbb;}.leaflet-touch .leaflet-bar a {width: 30px;height: 30px;line-height: 30px;}.leaflet-touch .leaflet-bar a:first-child {border-top-left-radius: 2px;border-top-right-radius: 2px;}.leaflet-touch .leaflet-bar a:last-child {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;}.leaflet-control-zoom-in,.leaflet-control-zoom-out {font: bold 18px 'Lucida Console', Monaco, monospace;text-indent: 1px;}.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {font-size: 22px;}.leaflet-control-layers {box-shadow: 0 1px 5px rgba(0,0,0,0.4);background: #fff;border-radius: 5px;}.leaflet-control-layers-toggle {background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width: 36px;height: 36px;}.leaflet-retina .leaflet-control-layers-toggle {background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size: 26px 26px;}.leaflet-touch .leaflet-control-layers-toggle {width: 44px;height: 44px;}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle {display: none;}.leaflet-control-layers-expanded .leaflet-control-layers-list {display: block;position: relative;}.leaflet-control-layers-expanded {padding: 6px 10px 6px 6px;color: #333;background: #fff;}.leaflet-control-layers-scrollbar {overflow-y: scroll;overflow-x: hidden;padding-right: 5px;}.leaflet-control-layers-selector {margin-top: 2px;position: relative;top: 1px;}.leaflet-control-layers label {display: block;}.leaflet-control-layers-separator {height: 0;border-top: 1px solid #ddd;margin: 5px -10px 5px -6px;}.leaflet-default-icon-path {background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);}.leaflet-container .leaflet-control-attribution {background: #fff;background: rgba(255, 255, 255, 0.7);margin: 0;}.leaflet-control-attribution,.leaflet-control-scale-line {padding: 0 5px;color: #333;}.leaflet-control-attribution a {text-decoration: none;}.leaflet-control-attribution a:hover {text-decoration: underline;}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale {font-size: 11px;}.leaflet-left .leaflet-control-scale {margin-left: 5px;}.leaflet-bottom .leaflet-control-scale {margin-bottom: 5px;}.leaflet-control-scale-line {border: 2px solid #777;border-top: none;line-height: 1.1;padding: 2px 5px 1px;font-size: 11px;white-space: nowrap;overflow: hidden;-moz-box-sizing: border-box;box-sizing: border-box;background: #fff;background: rgba(255, 255, 255, 0.5);}.leaflet-control-scale-line:not(:first-child) {border-top: 2px solid #777;border-bottom: none;margin-top: -2px;}.leaflet-control-scale-line:not(:first-child):not(:last-child) {border-bottom: 2px solid #777;}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar {box-shadow: none;}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar {border: 2px solid rgba(0,0,0,0.2);background-clip: padding-box;}.leaflet-popup {position: absolute;text-align: center;margin-bottom: 20px;}.leaflet-popup-content-wrapper {padding: 1px;text-align: left;border-radius: 12px;}.leaflet-popup-content {margin: 13px 19px;line-height: 1.4;}.leaflet-popup-content p {margin: 18px 0;}.leaflet-popup-tip-container {width: 40px;height: 20px;position: absolute;left: 50%;margin-left: -20px;overflow: hidden;pointer-events: none;}.leaflet-popup-tip {width: 17px;height: 17px;padding: 1px;margin: -10px auto 0;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);}.leaflet-popup-content-wrapper,.leaflet-popup-tip {background: white;color: #333;box-shadow: 0 3px 14px rgba(0,0,0,0.4);}.leaflet-container a.leaflet-popup-close-button {position: absolute;top: 0;right: 0;padding: 4px 4px 0 0;border: none;text-align: center;width: 18px;height: 14px;font: 16px/14px Tahoma, Verdana, sans-serif;color: #c3c3c3;text-decoration: none;font-weight: bold;background: transparent;}.leaflet-container a.leaflet-popup-close-button:hover {color: #999;}.leaflet-popup-scrolled {overflow: auto;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;}.leaflet-oldie .leaflet-popup-content-wrapper {zoom: 1;}.leaflet-oldie .leaflet-popup-tip {width: 24px;margin: 0 auto;-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);}.leaflet-oldie .leaflet-popup-tip-container {margin-top: -1px;}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip {border: 1px solid #999;}.leaflet-div-icon {background: #fff;border: 1px solid #666;}.leaflet-tooltip {position: absolute;padding: 6px;background-color: #fff;border: 1px solid #fff;border-radius: 3px;color: #222;white-space: nowrap;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;pointer-events: none;box-shadow: 0 1px 3px rgba(0,0,0,0.4);}.leaflet-tooltip.leaflet-clickable {cursor: pointer;pointer-events: auto;}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before {position: absolute;pointer-events: none;border: 6px solid transparent;background: transparent;content: "";}.leaflet-tooltip-bottom {margin-top: 6px;}.leaflet-tooltip-top {margin-top: -6px;}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before {left: 50%;margin-left: -6px;}.leaflet-tooltip-top:before {bottom: 0;margin-bottom: -12px;border-top-color: #fff;}.leaflet-tooltip-bottom:before {top: 0;margin-top: -12px;margin-left: -6px;border-bottom-color: #fff;}.leaflet-tooltip-left {margin-left: -6px;}.leaflet-tooltip-right {margin-left: 6px;}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before {top: 50%;margin-top: -6px;}.leaflet-tooltip-left:before {right: 0;margin-right: -12px;border-left-color: #fff;}.leaflet-tooltip-right:before {left: 0;margin-left: -12px;border-right-color: #fff;}</style>
|
|
<script>/* @preserve
|
|
* Leaflet 1.3.1+Detached: ba6f97fff8647e724e4dfe66d2ed7da11f908989.ba6f97f, a JS library for interactive maps. https://leafletjs.com
|
|
* (c) 2010-2017 Vladimir Agafonkin, (c) 2010-2011 CloudMade
|
|
*/
|
|
!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(exports):"function"==typeof define&&define.amd?define(["exports"],i):i(t.L={})}(this,function(t){"use strict";function i(t){var i,e,n,o;for(e=1,n=arguments.length;e<n;e++){o=arguments[e];for(i in o)t[i]=o[i]}return t}function e(t,i){var e=Array.prototype.slice;if(t.bind)return t.bind.apply(t,e.call(arguments,1));var n=e.call(arguments,2);return function(){return t.apply(i,n.length?n.concat(e.call(arguments)):arguments)}}function n(t){return t._leaflet_id=t._leaflet_id||++ti,t._leaflet_id}function o(t,i,e){var n,o,s,r;return r=function(){n=!1,o&&(s.apply(e,o),o=!1)},s=function(){n?o=arguments:(t.apply(e,arguments),setTimeout(r,i),n=!0)}}function s(t,i,e){var n=i[1],o=i[0],s=n-o;return t===n&&e?t:((t-o)%s+s)%s+o}function r(){return!1}function a(t,i){var e=Math.pow(10,void 0===i?6:i);return Math.round(t*e)/e}function h(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function u(t){return h(t).split(/\s+/)}function l(t,i){t.hasOwnProperty("options")||(t.options=t.options?Qt(t.options):{});for(var e in i)t.options[e]=i[e];return t.options}function c(t,i,e){var n=[];for(var o in t)n.push(encodeURIComponent(e?o.toUpperCase():o)+"="+encodeURIComponent(t[o]));return(i&&-1!==i.indexOf("?")?"&":"?")+n.join("&")}function _(t,i){return t.replace(ii,function(t,e){var n=i[e];if(void 0===n)throw new Error("No value provided for variable "+t);return"function"==typeof n&&(n=n(i)),n})}function d(t,i){for(var e=0;e<t.length;e++)if(t[e]===i)return e;return-1}function p(t){return window["webkit"+t]||window["moz"+t]||window["ms"+t]}function m(t){var i=+new Date,e=Math.max(0,16-(i-oi));return oi=i+e,window.setTimeout(t,e)}function f(t,i,n){if(!n||si!==m)return si.call(window,e(t,i));t.call(i)}function g(t){t&&ri.call(window,t)}function v(){}function y(t){if("undefined"!=typeof L&&L&&L.Mixin){t=ei(t)?t:[t];for(var i=0;i<t.length;i++)t[i]===L.Mixin.Events&&console.warn("Deprecated include of L.Mixin.Events: this property will be removed in future releases, please inherit from L.Evented instead.",(new Error).stack)}}function x(t,i,e){this.x=e?Math.round(t):t,this.y=e?Math.round(i):i}function w(t,i,e){return t instanceof x?t:ei(t)?new x(t[0],t[1]):void 0===t||null===t?t:"object"==typeof t&&"x"in t&&"y"in t?new x(t.x,t.y):new x(t,i,e)}function P(t,i){if(t)for(var e=i?[t,i]:t,n=0,o=e.length;n<o;n++)this.extend(e[n])}function b(t,i){return!t||t instanceof P?t:new P(t,i)}function T(t,i){if(t)for(var e=i?[t,i]:t,n=0,o=e.length;n<o;n++)this.extend(e[n])}function z(t,i){return t instanceof T?t:new T(t,i)}function M(t,i,e){if(isNaN(t)||isNaN(i))throw new Error("Invalid LatLng object: ("+t+", "+i+")");this.lat=+t,this.lng=+i,void 0!==e&&(this.alt=+e)}function C(t,i,e){return t instanceof M?t:ei(t)&&"object"!=typeof t[0]?3===t.length?new M(t[0],t[1],t[2]):2===t.length?new M(t[0],t[1]):null:void 0===t||null===t?t:"object"==typeof t&&"lat"in t?new M(t.lat,"lng"in t?t.lng:t.lon,t.alt):void 0===i?null:new M(t,i,e)}function Z(t,i,e,n){if(ei(t))return this._a=t[0],this._b=t[1],this._c=t[2],void(this._d=t[3]);this._a=t,this._b=i,this._c=e,this._d=n}function S(t,i,e,n){return new Z(t,i,e,n)}function E(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function k(t,i){var e,n,o,s,r,a,h="";for(e=0,o=t.length;e<o;e++){for(n=0,s=(r=t[e]).length;n<s;n++)a=r[n],h+=(n?"L":"M")+a.x+" "+a.y;h+=i?Xi?"z":"x":""}return h||"M0 0"}function A(t){return navigator.userAgent.toLowerCase().indexOf(t)>=0}function I(t,i,e,n){return"touchstart"===i?O(t,e,n):"touchmove"===i?W(t,e,n):"touchend"===i&&H(t,e,n),this}function B(t,i,e){var n=t["_leaflet_"+i+e];return"touchstart"===i?t.removeEventListener(Qi,n,!1):"touchmove"===i?t.removeEventListener(te,n,!1):"touchend"===i&&(t.removeEventListener(ie,n,!1),t.removeEventListener(ee,n,!1)),this}function O(t,i,n){var o=e(function(t){if("mouse"!==t.pointerType&&t.MSPOINTER_TYPE_MOUSE&&t.pointerType!==t.MSPOINTER_TYPE_MOUSE){if(!(ne.indexOf(t.target.tagName)<0))return;$(t)}j(t,i)});t["_leaflet_touchstart"+n]=o,t.addEventListener(Qi,o,!1),se||(document.documentElement.addEventListener(Qi,R,!0),document.documentElement.addEventListener(te,D,!0),document.documentElement.addEventListener(ie,N,!0),document.documentElement.addEventListener(ee,N,!0),se=!0)}function R(t){oe[t.pointerId]=t,re++}function D(t){oe[t.pointerId]&&(oe[t.pointerId]=t)}function N(t){delete oe[t.pointerId],re--}function j(t,i){t.touches=[];for(var e in oe)t.touches.push(oe[e]);t.changedTouches=[t],i(t)}function W(t,i,e){var n=function(t){(t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&"mouse"!==t.pointerType||0!==t.buttons)&&j(t,i)};t["_leaflet_touchmove"+e]=n,t.addEventListener(te,n,!1)}function H(t,i,e){var n=function(t){j(t,i)};t["_leaflet_touchend"+e]=n,t.addEventListener(ie,n,!1),t.addEventListener(ee,n,!1)}function F(t,i,e){function n(t){var i;if(Ui){if(!Pi||"mouse"===t.pointerType)return;i=re}else i=t.touches.length;if(!(i>1)){var e=Date.now(),n=e-(s||e);r=t.touches?t.touches[0]:t,a=n>0&&n<=h,s=e}}function o(t){if(a&&!r.cancelBubble){if(Ui){if(!Pi||"mouse"===t.pointerType)return;var e,n,o={};for(n in r)e=r[n],o[n]=e&&e.bind?e.bind(r):e;r=o}r.type="dblclick",i(r),s=null}}var s,r,a=!1,h=250;return t[ue+ae+e]=n,t[ue+he+e]=o,t[ue+"dblclick"+e]=i,t.addEventListener(ae,n,!1),t.addEventListener(he,o,!1),t.addEventListener("dblclick",i,!1),this}function U(t,i){var e=t[ue+ae+i],n=t[ue+he+i],o=t[ue+"dblclick"+i];return t.removeEventListener(ae,e,!1),t.removeEventListener(he,n,!1),Pi||t.removeEventListener("dblclick",o,!1),this}function V(t,i,e,n){if("object"==typeof i)for(var o in i)G(t,o,i[o],e);else for(var s=0,r=(i=u(i)).length;s<r;s++)G(t,i[s],e,n);return this}function q(t,i,e,n){if("object"==typeof i)for(var o in i)K(t,o,i[o],e);else if(i)for(var s=0,r=(i=u(i)).length;s<r;s++)K(t,i[s],e,n);else{for(var a in t[le])K(t,a,t[le][a]);delete t[le]}return this}function G(t,i,e,o){var s=i+n(e)+(o?"_"+n(o):"");if(t[le]&&t[le][s])return this;var r=function(i){return e.call(o||t,i||window.event)},a=r;Ui&&0===i.indexOf("touch")?I(t,i,r,s):!Vi||"dblclick"!==i||!F||Ui&&Si?"addEventListener"in t?"mousewheel"===i?t.addEventListener("onwheel"in t?"wheel":"mousewheel",r,!1):"mouseenter"===i||"mouseleave"===i?(r=function(i){i=i||window.event,ot(t,i)&&a(i)},t.addEventListener("mouseenter"===i?"mouseover":"mouseout",r,!1)):("click"===i&&Ti&&(r=function(t){st(t,a)}),t.addEventListener(i,r,!1)):"attachEvent"in t&&t.attachEvent("on"+i,r):F(t,r,s),t[le]=t[le]||{},t[le][s]=r}function K(t,i,e,o){var s=i+n(e)+(o?"_"+n(o):""),r=t[le]&&t[le][s];if(!r)return this;Ui&&0===i.indexOf("touch")?B(t,i,s):!Vi||"dblclick"!==i||!U||Ui&&Si?"removeEventListener"in t?"mousewheel"===i?t.removeEventListener("onwheel"in t?"wheel":"mousewheel",r,!1):t.removeEventListener("mouseenter"===i?"mouseover":"mouseleave"===i?"mouseout":i,r,!1):"detachEvent"in t&&t.detachEvent("on"+i,r):U(t,s),t[le][s]=null}function Y(t){return t.stopPropagation?t.stopPropagation():t.originalEvent?t.originalEvent._stopped=!0:t.cancelBubble=!0,nt(t),this}function X(t){return G(t,"mousewheel",Y),this}function J(t){return V(t,"mousedown touchstart dblclick",Y),G(t,"click",et),this}function $(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this}function Q(t){return $(t),Y(t),this}function tt(t,i){if(!i)return new x(t.clientX,t.clientY);var e=i.getBoundingClientRect(),n=e.width/i.offsetWidth||1,o=e.height/i.offsetHeight||1;return new x(t.clientX/n-e.left-i.clientLeft,t.clientY/o-e.top-i.clientTop)}function it(t){return Pi?t.wheelDeltaY/2:t.deltaY&&0===t.deltaMode?-t.deltaY/ce:t.deltaY&&1===t.deltaMode?20*-t.deltaY:t.deltaY&&2===t.deltaMode?60*-t.deltaY:t.deltaX||t.deltaZ?0:t.wheelDelta?(t.wheelDeltaY||t.wheelDelta)/2:t.detail&&Math.abs(t.detail)<32765?20*-t.detail:t.detail?t.detail/-32765*60:0}function et(t){_e[t.type]=!0}function nt(t){var i=_e[t.type];return _e[t.type]=!1,i}function ot(t,i){var e=i.relatedTarget;if(!e)return!0;try{for(;e&&e!==t;)e=e.parentNode}catch(t){return!1}return e!==t}function st(t,i){var e=t.timeStamp||t.originalEvent&&t.originalEvent.timeStamp,n=pi&&e-pi;n&&n>100&&n<500||t.target._simulatedClick&&!t._simulated?Q(t):(pi=e,i(t))}function rt(t){return"string"==typeof t?document.getElementById(t):t}function at(t,i){var e=t.style[i]||t.currentStyle&&t.currentStyle[i];if((!e||"auto"===e)&&document.defaultView){var n=document.defaultView.getComputedStyle(t,null);e=n?n[i]:null}return"auto"===e?null:e}function ht(t,i,e){var n=document.createElement(t);return n.className=i||"",e&&e.appendChild(n),n}function ut(t){var i=t.parentNode;i&&i.removeChild(t)}function lt(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function ct(t){var i=t.parentNode;i.lastChild!==t&&i.appendChild(t)}function _t(t){var i=t.parentNode;i.firstChild!==t&&i.insertBefore(t,i.firstChild)}function dt(t,i){if(void 0!==t.classList)return t.classList.contains(i);var e=gt(t);return e.length>0&&new RegExp("(^|\\s)"+i+"(\\s|$)").test(e)}function pt(t,i){if(void 0!==t.classList)for(var e=u(i),n=0,o=e.length;n<o;n++)t.classList.add(e[n]);else if(!dt(t,i)){var s=gt(t);ft(t,(s?s+" ":"")+i)}}function mt(t,i){void 0!==t.classList?t.classList.remove(i):ft(t,h((" "+gt(t)+" ").replace(" "+i+" "," ")))}function ft(t,i){void 0===t.className.baseVal?t.className=i:t.className.baseVal=i}function gt(t){return void 0===t.className.baseVal?t.className:t.className.baseVal}function vt(t,i){"opacity"in t.style?t.style.opacity=i:"filter"in t.style&&yt(t,i)}function yt(t,i){var e=!1,n="DXImageTransform.Microsoft.Alpha";try{e=t.filters.item(n)}catch(t){if(1===i)return}i=Math.round(100*i),e?(e.Enabled=100!==i,e.Opacity=i):t.style.filter+=" progid:"+n+"(opacity="+i+")"}function xt(t){for(var i=document.documentElement.style,e=0;e<t.length;e++)if(t[e]in i)return t[e];return!1}function wt(t,i,e){var n=i||new x(0,0);t.style[pe]=(Oi?"translate("+n.x+"px,"+n.y+"px)":"translate3d("+n.x+"px,"+n.y+"px,0)")+(e?" scale("+e+")":"")}function Lt(t,i){t._leaflet_pos=i,Ni?wt(t,i):(t.style.left=i.x+"px",t.style.top=i.y+"px")}function Pt(t){return t._leaflet_pos||new x(0,0)}function bt(){V(window,"dragstart",$)}function Tt(){q(window,"dragstart",$)}function zt(t){for(;-1===t.tabIndex;)t=t.parentNode;t.style&&(Mt(),ve=t,ye=t.style.outline,t.style.outline="none",V(window,"keydown",Mt))}function Mt(){ve&&(ve.style.outline=ye,ve=void 0,ye=void 0,q(window,"keydown",Mt))}function Ct(t,i){if(!i||!t.length)return t.slice();var e=i*i;return t=kt(t,e),t=St(t,e)}function Zt(t,i,e){return Math.sqrt(Rt(t,i,e,!0))}function St(t,i){var e=t.length,n=new(typeof Uint8Array!=void 0+""?Uint8Array:Array)(e);n[0]=n[e-1]=1,Et(t,n,i,0,e-1);var o,s=[];for(o=0;o<e;o++)n[o]&&s.push(t[o]);return s}function Et(t,i,e,n,o){var s,r,a,h=0;for(r=n+1;r<=o-1;r++)(a=Rt(t[r],t[n],t[o],!0))>h&&(s=r,h=a);h>e&&(i[s]=1,Et(t,i,e,n,s),Et(t,i,e,s,o))}function kt(t,i){for(var e=[t[0]],n=1,o=0,s=t.length;n<s;n++)Ot(t[n],t[o])>i&&(e.push(t[n]),o=n);return o<s-1&&e.push(t[s-1]),e}function At(t,i,e,n,o){var s,r,a,h=n?Se:Bt(t,e),u=Bt(i,e);for(Se=u;;){if(!(h|u))return[t,i];if(h&u)return!1;a=Bt(r=It(t,i,s=h||u,e,o),e),s===h?(t=r,h=a):(i=r,u=a)}}function It(t,i,e,n,o){var s,r,a=i.x-t.x,h=i.y-t.y,u=n.min,l=n.max;return 8&e?(s=t.x+a*(l.y-t.y)/h,r=l.y):4&e?(s=t.x+a*(u.y-t.y)/h,r=u.y):2&e?(s=l.x,r=t.y+h*(l.x-t.x)/a):1&e&&(s=u.x,r=t.y+h*(u.x-t.x)/a),new x(s,r,o)}function Bt(t,i){var e=0;return t.x<i.min.x?e|=1:t.x>i.max.x&&(e|=2),t.y<i.min.y?e|=4:t.y>i.max.y&&(e|=8),e}function Ot(t,i){var e=i.x-t.x,n=i.y-t.y;return e*e+n*n}function Rt(t,i,e,n){var o,s=i.x,r=i.y,a=e.x-s,h=e.y-r,u=a*a+h*h;return u>0&&((o=((t.x-s)*a+(t.y-r)*h)/u)>1?(s=e.x,r=e.y):o>0&&(s+=a*o,r+=h*o)),a=t.x-s,h=t.y-r,n?a*a+h*h:new x(s,r)}function Dt(t){return!ei(t[0])||"object"!=typeof t[0][0]&&void 0!==t[0][0]}function Nt(t){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),Dt(t)}function jt(t,i,e){var n,o,s,r,a,h,u,l,c,_=[1,4,2,8];for(o=0,u=t.length;o<u;o++)t[o]._code=Bt(t[o],i);for(r=0;r<4;r++){for(l=_[r],n=[],o=0,s=(u=t.length)-1;o<u;s=o++)a=t[o],h=t[s],a._code&l?h._code&l||((c=It(h,a,l,i,e))._code=Bt(c,i),n.push(c)):(h._code&l&&((c=It(h,a,l,i,e))._code=Bt(c,i),n.push(c)),n.push(a));t=n}return t}function Wt(t,i){var e,n,o,s,r="Feature"===t.type?t.geometry:t,a=r?r.coordinates:null,h=[],u=i&&i.pointToLayer,l=i&&i.coordsToLatLng||Ht;if(!a&&!r)return null;switch(r.type){case"Point":return e=l(a),u?u(t,e):new Xe(e);case"MultiPoint":for(o=0,s=a.length;o<s;o++)e=l(a[o]),h.push(u?u(t,e):new Xe(e));return new qe(h);case"LineString":case"MultiLineString":return n=Ft(a,"LineString"===r.type?0:1,l),new tn(n,i);case"Polygon":case"MultiPolygon":return n=Ft(a,"Polygon"===r.type?1:2,l),new en(n,i);case"GeometryCollection":for(o=0,s=r.geometries.length;o<s;o++){var c=Wt({geometry:r.geometries[o],type:"Feature",properties:t.properties},i);c&&h.push(c)}return new qe(h);default:throw new Error("Invalid GeoJSON object.")}}function Ht(t){return new M(t[1],t[0],t[2])}function Ft(t,i,e){for(var n,o=[],s=0,r=t.length;s<r;s++)n=i?Ft(t[s],i-1,e):(e||Ht)(t[s]),o.push(n);return o}function Ut(t,i){return i="number"==typeof i?i:6,void 0!==t.alt?[a(t.lng,i),a(t.lat,i),a(t.alt,i)]:[a(t.lng,i),a(t.lat,i)]}function Vt(t,i,e,n){for(var o=[],s=0,r=t.length;s<r;s++)o.push(i?Vt(t[s],i-1,e,n):Ut(t[s],n));return!i&&e&&o.push(o[0]),o}function qt(t,e){return t.feature?i({},t.feature,{geometry:e}):Gt(e)}function Gt(t){return"Feature"===t.type||"FeatureCollection"===t.type?t:{type:"Feature",properties:{},geometry:t}}function Kt(t,i){return new nn(t,i)}function Yt(t,i){return new dn(t,i)}function Xt(t){return Yi?new fn(t):null}function Jt(t){return Xi||Ji?new xn(t):null}var $t=Object.freeze;Object.freeze=function(t){return t};var Qt=Object.create||function(){function t(){}return function(i){return t.prototype=i,new t}}(),ti=0,ii=/\{ *([\w_-]+) *\}/g,ei=Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)},ni="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=",oi=0,si=window.requestAnimationFrame||p("RequestAnimationFrame")||m,ri=window.cancelAnimationFrame||p("CancelAnimationFrame")||p("CancelRequestAnimationFrame")||function(t){window.clearTimeout(t)},ai=(Object.freeze||Object)({freeze:$t,extend:i,create:Qt,bind:e,lastId:ti,stamp:n,throttle:o,wrapNum:s,falseFn:r,formatNum:a,trim:h,splitWords:u,setOptions:l,getParamString:c,template:_,isArray:ei,indexOf:d,emptyImageUrl:ni,requestFn:si,cancelFn:ri,requestAnimFrame:f,cancelAnimFrame:g});v.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments),this.callInitHooks()},n=e.__super__=this.prototype,o=Qt(n);o.constructor=e,e.prototype=o;for(var s in this)this.hasOwnProperty(s)&&"prototype"!==s&&"__super__"!==s&&(e[s]=this[s]);return t.statics&&(i(e,t.statics),delete t.statics),t.includes&&(y(t.includes),i.apply(null,[o].concat(t.includes)),delete t.includes),o.options&&(t.options=i(Qt(o.options),t.options)),i(o,t),o._initHooks=[],o.callInitHooks=function(){if(!this._initHooksCalled){n.callInitHooks&&n.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,i=o._initHooks.length;t<i;t++)o._initHooks[t].call(this)}},e},v.include=function(t){return i(this.prototype,t),this},v.mergeOptions=function(t){return i(this.prototype.options,t),this},v.addInitHook=function(t){var i=Array.prototype.slice.call(arguments,1),e="function"==typeof t?t:function(){this[t].apply(this,i)};return this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(e),this};var hi={on:function(t,i,e){if("object"==typeof t)for(var n in t)this._on(n,t[n],i);else for(var o=0,s=(t=u(t)).length;o<s;o++)this._on(t[o],i,e);return this},off:function(t,i,e){if(t)if("object"==typeof t)for(var n in t)this._off(n,t[n],i);else for(var o=0,s=(t=u(t)).length;o<s;o++)this._off(t[o],i,e);else delete this._events;return this},_on:function(t,i,e){this._events=this._events||{};var n=this._events[t];n||(n=[],this._events[t]=n),e===this&&(e=void 0);for(var o={fn:i,ctx:e},s=n,r=0,a=s.length;r<a;r++)if(s[r].fn===i&&s[r].ctx===e)return;s.push(o)},_off:function(t,i,e){var n,o,s;if(this._events&&(n=this._events[t]))if(i){if(e===this&&(e=void 0),n)for(o=0,s=n.length;o<s;o++){var a=n[o];if(a.ctx===e&&a.fn===i)return a.fn=r,this._firingCount&&(this._events[t]=n=n.slice()),void n.splice(o,1)}}else{for(o=0,s=n.length;o<s;o++)n[o].fn=r;delete this._events[t]}},fire:function(t,e,n){if(!this.listens(t,n))return this;var o=i({},e,{type:t,target:this,sourceTarget:e&&e.sourceTarget||this});if(this._events){var s=this._events[t];if(s){this._firingCount=this._firingCount+1||1;for(var r=0,a=s.length;r<a;r++){var h=s[r];h.fn.call(h.ctx||this,o)}this._firingCount--}}return n&&this._propagateEvent(o),this},listens:function(t,i){var e=this._events&&this._events[t];if(e&&e.length)return!0;if(i)for(var n in this._eventParents)if(this._eventParents[n].listens(t,i))return!0;return!1},once:function(t,i,n){if("object"==typeof t){for(var o in t)this.once(o,t[o],i);return this}var s=e(function(){this.off(t,i,n).off(t,s,n)},this);return this.on(t,i,n).on(t,s,n)},addEventParent:function(t){return this._eventParents=this._eventParents||{},this._eventParents[n(t)]=t,this},removeEventParent:function(t){return this._eventParents&&delete this._eventParents[n(t)],this},_propagateEvent:function(t){for(var e in this._eventParents)this._eventParents[e].fire(t.type,i({layer:t.target,propagatedFrom:t.target},t),!0)}};hi.addEventListener=hi.on,hi.removeEventListener=hi.clearAllEventListeners=hi.off,hi.addOneTimeEventListener=hi.once,hi.fireEvent=hi.fire,hi.hasEventListeners=hi.listens;var ui=v.extend(hi),li=Math.trunc||function(t){return t>0?Math.floor(t):Math.ceil(t)};x.prototype={clone:function(){return new x(this.x,this.y)},add:function(t){return this.clone()._add(w(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(w(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new x(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new x(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=li(this.x),this.y=li(this.y),this},distanceTo:function(t){var i=(t=w(t)).x-this.x,e=t.y-this.y;return Math.sqrt(i*i+e*e)},equals:function(t){return(t=w(t)).x===this.x&&t.y===this.y},contains:function(t){return t=w(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+a(this.x)+", "+a(this.y)+")"}},P.prototype={extend:function(t){return t=w(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new x((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new x(this.min.x,this.max.y)},getTopRight:function(){return new x(this.max.x,this.min.y)},getTopLeft:function(){return this.min},getBottomRight:function(){return this.max},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var i,e;return(t="number"==typeof t[0]||t instanceof x?w(t):b(t))instanceof P?(i=t.min,e=t.max):i=e=t,i.x>=this.min.x&&e.x<=this.max.x&&i.y>=this.min.y&&e.y<=this.max.y},intersects:function(t){t=b(t);var i=this.min,e=this.max,n=t.min,o=t.max,s=o.x>=i.x&&n.x<=e.x,r=o.y>=i.y&&n.y<=e.y;return s&&r},overlaps:function(t){t=b(t);var i=this.min,e=this.max,n=t.min,o=t.max,s=o.x>i.x&&n.x<e.x,r=o.y>i.y&&n.y<e.y;return s&&r},isValid:function(){return!(!this.min||!this.max)}},T.prototype={extend:function(t){var i,e,n=this._southWest,o=this._northEast;if(t instanceof M)i=t,e=t;else{if(!(t instanceof T))return t?this.extend(C(t)||z(t)):this;if(i=t._southWest,e=t._northEast,!i||!e)return this}return n||o?(n.lat=Math.min(i.lat,n.lat),n.lng=Math.min(i.lng,n.lng),o.lat=Math.max(e.lat,o.lat),o.lng=Math.max(e.lng,o.lng)):(this._southWest=new M(i.lat,i.lng),this._northEast=new M(e.lat,e.lng)),this},pad:function(t){var i=this._southWest,e=this._northEast,n=Math.abs(i.lat-e.lat)*t,o=Math.abs(i.lng-e.lng)*t;return new T(new M(i.lat-n,i.lng-o),new M(e.lat+n,e.lng+o))},getCenter:function(){return new M((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new M(this.getNorth(),this.getWest())},getSouthEast:function(){return new M(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t="number"==typeof t[0]||t instanceof M||"lat"in t?C(t):z(t);var i,e,n=this._southWest,o=this._northEast;return t instanceof T?(i=t.getSouthWest(),e=t.getNorthEast()):i=e=t,i.lat>=n.lat&&e.lat<=o.lat&&i.lng>=n.lng&&e.lng<=o.lng},intersects:function(t){t=z(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>=i.lat&&n.lat<=e.lat,r=o.lng>=i.lng&&n.lng<=e.lng;return s&&r},overlaps:function(t){t=z(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>i.lat&&n.lat<e.lat,r=o.lng>i.lng&&n.lng<e.lng;return s&&r},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t,i){return!!t&&(t=z(t),this._southWest.equals(t.getSouthWest(),i)&&this._northEast.equals(t.getNorthEast(),i))},isValid:function(){return!(!this._southWest||!this._northEast)}},M.prototype={equals:function(t,i){return!!t&&(t=C(t),Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng))<=(void 0===i?1e-9:i))},toString:function(t){return"LatLng("+a(this.lat,t)+", "+a(this.lng,t)+")"},distanceTo:function(t){return _i.distance(this,C(t))},wrap:function(){return _i.wrapLatLng(this)},toBounds:function(t){var i=180*t/40075017,e=i/Math.cos(Math.PI/180*this.lat);return z([this.lat-i,this.lng-e],[this.lat+i,this.lng+e])},clone:function(){return new M(this.lat,this.lng,this.alt)}};var ci={latLngToPoint:function(t,i){var e=this.projection.project(t),n=this.scale(i);return this.transformation._transform(e,n)},pointToLatLng:function(t,i){var e=this.scale(i),n=this.transformation.untransform(t,e);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},unproject:function(t){return this.projection.unproject(t)},scale:function(t){return 256*Math.pow(2,t)},zoom:function(t){return Math.log(t/256)/Math.LN2},getProjectedBounds:function(t){if(this.infinite)return null;var i=this.projection.bounds,e=this.scale(t);return new P(this.transformation.transform(i.min,e),this.transformation.transform(i.max,e))},infinite:!1,wrapLatLng:function(t){var i=this.wrapLng?s(t.lng,this.wrapLng,!0):t.lng;return new M(this.wrapLat?s(t.lat,this.wrapLat,!0):t.lat,i,t.alt)},wrapLatLngBounds:function(t){var i=t.getCenter(),e=this.wrapLatLng(i),n=i.lat-e.lat,o=i.lng-e.lng;if(0===n&&0===o)return t;var s=t.getSouthWest(),r=t.getNorthEast();return new T(new M(s.lat-n,s.lng-o),new M(r.lat-n,r.lng-o))}},_i=i({},ci,{wrapLng:[-180,180],R:6371e3,distance:function(t,i){var e=Math.PI/180,n=t.lat*e,o=i.lat*e,s=Math.sin((i.lat-t.lat)*e/2),r=Math.sin((i.lng-t.lng)*e/2),a=s*s+Math.cos(n)*Math.cos(o)*r*r,h=2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a));return this.R*h}}),di={R:6378137,MAX_LATITUDE:85.0511287798,project:function(t){var i=Math.PI/180,e=this.MAX_LATITUDE,n=Math.max(Math.min(e,t.lat),-e),o=Math.sin(n*i);return new x(this.R*t.lng*i,this.R*Math.log((1+o)/(1-o))/2)},unproject:function(t){var i=180/Math.PI;return new M((2*Math.atan(Math.exp(t.y/this.R))-Math.PI/2)*i,t.x*i/this.R)},bounds:function(){var t=6378137*Math.PI;return new P([-t,-t],[t,t])}()};Z.prototype={transform:function(t,i){return this._transform(t.clone(),i)},_transform:function(t,i){return i=i||1,t.x=i*(this._a*t.x+this._b),t.y=i*(this._c*t.y+this._d),t},untransform:function(t,i){return i=i||1,new x((t.x/i-this._b)/this._a,(t.y/i-this._d)/this._c)}};var pi,mi,fi,gi,vi=i({},_i,{code:"EPSG:3857",projection:di,transformation:function(){var t=.5/(Math.PI*di.R);return S(t,.5,-t,.5)}()}),yi=i({},vi,{code:"EPSG:900913"}),xi=document.documentElement.style,wi="ActiveXObject"in window,Li=wi&&!document.addEventListener,Pi="msLaunchUri"in navigator&&!("documentMode"in document),bi=A("webkit"),Ti=A("android"),zi=A("android 2")||A("android 3"),Mi=parseInt(/WebKit\/([0-9]+)|$/.exec(navigator.userAgent)[1],10),Ci=Ti&&A("Google")&&Mi<537&&!("AudioNode"in window),Zi=!!window.opera,Si=A("chrome"),Ei=A("gecko")&&!bi&&!Zi&&!wi,ki=!Si&&A("safari"),Ai=A("phantom"),Ii="OTransition"in xi,Bi=0===navigator.platform.indexOf("Win"),Oi=wi&&"transition"in xi,Ri="WebKitCSSMatrix"in window&&"m11"in new window.WebKitCSSMatrix&&!zi,Di="MozPerspective"in xi,Ni=!window.L_DISABLE_3D&&(Oi||Ri||Di)&&!Ii&&!Ai,ji="undefined"!=typeof orientation||A("mobile"),Wi=ji&&bi,Hi=ji&&Ri,Fi=!window.PointerEvent&&window.MSPointerEvent,Ui=!(!window.PointerEvent&&!Fi),Vi=!window.L_NO_TOUCH&&(Ui||"ontouchstart"in window||window.DocumentTouch&&document instanceof window.DocumentTouch),qi=ji&&Zi,Gi=ji&&Ei,Ki=(window.devicePixelRatio||window.screen.deviceXDPI/window.screen.logicalXDPI)>1,Yi=!!document.createElement("canvas").getContext,Xi=!(!document.createElementNS||!E("svg").createSVGRect),Ji=!Xi&&function(){try{var t=document.createElement("div");t.innerHTML='<v:shape adj="1"/>';var i=t.firstChild;return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(t){return!1}}(),$i=(Object.freeze||Object)({ie:wi,ielt9:Li,edge:Pi,webkit:bi,android:Ti,android23:zi,androidStock:Ci,opera:Zi,chrome:Si,gecko:Ei,safari:ki,phantom:Ai,opera12:Ii,win:Bi,ie3d:Oi,webkit3d:Ri,gecko3d:Di,any3d:Ni,mobile:ji,mobileWebkit:Wi,mobileWebkit3d:Hi,msPointer:Fi,pointer:Ui,touch:Vi,mobileOpera:qi,mobileGecko:Gi,retina:Ki,canvas:Yi,svg:Xi,vml:Ji}),Qi=Fi?"MSPointerDown":"pointerdown",te=Fi?"MSPointerMove":"pointermove",ie=Fi?"MSPointerUp":"pointerup",ee=Fi?"MSPointerCancel":"pointercancel",ne=["INPUT","SELECT","OPTION"],oe={},se=!1,re=0,ae=Fi?"MSPointerDown":Ui?"pointerdown":"touchstart",he=Fi?"MSPointerUp":Ui?"pointerup":"touchend",ue="_leaflet_",le="_leaflet_events",ce=Bi&&Si?2*window.devicePixelRatio:Ei?window.devicePixelRatio:1,_e={},de=(Object.freeze||Object)({on:V,off:q,stopPropagation:Y,disableScrollPropagation:X,disableClickPropagation:J,preventDefault:$,stop:Q,getMousePosition:tt,getWheelDelta:it,fakeStop:et,skipped:nt,isExternalTarget:ot,addListener:V,removeListener:q}),pe=xt(["transform","WebkitTransform","OTransform","MozTransform","msTransform"]),me=xt(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),fe="webkitTransition"===me||"OTransition"===me?me+"End":"transitionend";if("onselectstart"in document)mi=function(){V(window,"selectstart",$)},fi=function(){q(window,"selectstart",$)};else{var ge=xt(["userSelect","WebkitUserSelect","OUserSelect","MozUserSelect","msUserSelect"]);mi=function(){if(ge){var t=document.documentElement.style;gi=t[ge],t[ge]="none"}},fi=function(){ge&&(document.documentElement.style[ge]=gi,gi=void 0)}}var ve,ye,xe=(Object.freeze||Object)({TRANSFORM:pe,TRANSITION:me,TRANSITION_END:fe,get:rt,getStyle:at,create:ht,remove:ut,empty:lt,toFront:ct,toBack:_t,hasClass:dt,addClass:pt,removeClass:mt,setClass:ft,getClass:gt,setOpacity:vt,testProp:xt,setTransform:wt,setPosition:Lt,getPosition:Pt,disableTextSelection:mi,enableTextSelection:fi,disableImageDrag:bt,enableImageDrag:Tt,preventOutline:zt,restoreOutline:Mt}),we=ui.extend({run:function(t,i,e,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=e||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=Pt(t),this._offset=i.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=f(this._animate,this),this._step()},_step:function(t){var i=+new Date-this._startTime,e=1e3*this._duration;i<e?this._runFrame(this._easeOut(i/e),t):(this._runFrame(1),this._complete())},_runFrame:function(t,i){var e=this._startPos.add(this._offset.multiplyBy(t));i&&e._round(),Lt(this._el,e),this.fire("step")},_complete:function(){g(this._animId),this._inProgress=!1,this.fire("end")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),Le=ui.extend({options:{crs:vi,center:void 0,zoom:void 0,minZoom:void 0,maxZoom:void 0,layers:[],maxBounds:void 0,renderer:void 0,zoomAnimation:!0,zoomAnimationThreshold:4,fadeAnimation:!0,markerZoomAnimation:!0,transform3DLimit:8388608,zoomSnap:1,zoomDelta:1,trackResize:!0},initialize:function(t,i){i=l(this,i),this._initContainer(t),this._initLayout(),this._onResize=e(this._onResize,this),this._initEvents(),i.maxBounds&&this.setMaxBounds(i.maxBounds),void 0!==i.zoom&&(this._zoom=this._limitZoom(i.zoom)),i.center&&void 0!==i.zoom&&this.setView(C(i.center),i.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._sizeChanged=!0,this.callInitHooks(),this._zoomAnimated=me&&Ni&&!qi&&this.options.zoomAnimation,this._zoomAnimated&&(this._createAnimProxy(),V(this._proxy,fe,this._catchTransitionEnd,this)),this._addLayers(this.options.layers)},setView:function(t,e,n){return e=void 0===e?this._zoom:this._limitZoom(e),t=this._limitCenter(C(t),e,this.options.maxBounds),n=n||{},this._stop(),this._loaded&&!n.reset&&!0!==n&&(void 0!==n.animate&&(n.zoom=i({animate:n.animate},n.zoom),n.pan=i({animate:n.animate,duration:n.duration},n.pan)),this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,n.zoom):this._tryAnimatedPan(t,n.pan))?(clearTimeout(this._sizeTimer),this):(this._resetView(t,e),this)},setZoom:function(t,i){return this._loaded?this.setView(this.getCenter(),t,{zoom:i}):(this._zoom=t,this)},zoomIn:function(t,i){return t=t||(Ni?this.options.zoomDelta:1),this.setZoom(this._zoom+t,i)},zoomOut:function(t,i){return t=t||(Ni?this.options.zoomDelta:1),this.setZoom(this._zoom-t,i)},setZoomAround:function(t,i,e){var n=this.getZoomScale(i),o=this.getSize().divideBy(2),s=(t instanceof x?t:this.latLngToContainerPoint(t)).subtract(o).multiplyBy(1-1/n),r=this.containerPointToLatLng(o.add(s));return this.setView(r,i,{zoom:e})},_getBoundsCenterZoom:function(t,i){i=i||{},t=t.getBounds?t.getBounds():z(t);var e=w(i.paddingTopLeft||i.padding||[0,0]),n=w(i.paddingBottomRight||i.padding||[0,0]),o=this.getBoundsZoom(t,!1,e.add(n));if((o="number"==typeof i.maxZoom?Math.min(i.maxZoom,o):o)===1/0)return{center:t.getCenter(),zoom:o};var s=n.subtract(e).divideBy(2),r=this.project(t.getSouthWest(),o),a=this.project(t.getNorthEast(),o);return{center:this.unproject(r.add(a).divideBy(2).add(s),o),zoom:o}},fitBounds:function(t,i){if(!(t=z(t)).isValid())throw new Error("Bounds are not valid.");var e=this._getBoundsCenterZoom(t,i);return this.setView(e.center,e.zoom,i)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,i){return this.setView(t,this._zoom,{pan:i})},panBy:function(t,i){if(t=w(t).round(),i=i||{},!t.x&&!t.y)return this.fire("moveend");if(!0!==i.animate&&!this.getSize().contains(t))return this._resetView(this.unproject(this.project(this.getCenter()).add(t)),this.getZoom()),this;if(this._panAnim||(this._panAnim=new we,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),i.noMoveStart||this.fire("movestart"),!1!==i.animate){pt(this._mapPane,"leaflet-pan-anim");var e=this._getMapPanePos().subtract(t).round();this._panAnim.run(this._mapPane,e,i.duration||.25,i.easeLinearity)}else this._rawPanBy(t),this.fire("move").fire("moveend");return this},flyTo:function(t,i,e){function n(t){var i=(g*g-m*m+(t?-1:1)*x*x*v*v)/(2*(t?g:m)*x*v),e=Math.sqrt(i*i+1)-i;return e<1e-9?-18:Math.log(e)}function o(t){return(Math.exp(t)-Math.exp(-t))/2}function s(t){return(Math.exp(t)+Math.exp(-t))/2}function r(t){return o(t)/s(t)}function a(t){return m*(s(w)/s(w+y*t))}function h(t){return m*(s(w)*r(w+y*t)-o(w))/x}function u(t){return 1-Math.pow(1-t,1.5)}function l(){var e=(Date.now()-L)/b,n=u(e)*P;e<=1?(this._flyToFrame=f(l,this),this._move(this.unproject(c.add(_.subtract(c).multiplyBy(h(n)/v)),p),this.getScaleZoom(m/a(n),p),{flyTo:!0})):this._move(t,i)._moveEnd(!0)}if(!1===(e=e||{}).animate||!Ni)return this.setView(t,i,e);this._stop();var c=this.project(this.getCenter()),_=this.project(t),d=this.getSize(),p=this._zoom;t=C(t),i=void 0===i?p:i;var m=Math.max(d.x,d.y),g=m*this.getZoomScale(p,i),v=_.distanceTo(c)||1,y=1.42,x=y*y,w=n(0),L=Date.now(),P=(n(1)-w)/y,b=e.duration?1e3*e.duration:1e3*P*.8;return this._moveStart(!0,e.noMoveStart),l.call(this),this},flyToBounds:function(t,i){var e=this._getBoundsCenterZoom(t,i);return this.flyTo(e.center,e.zoom,i)},setMaxBounds:function(t){return(t=z(t)).isValid()?(this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this.options.maxBounds=t,this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds)):(this.options.maxBounds=null,this.off("moveend",this._panInsideMaxBounds))},setMinZoom:function(t){var i=this.options.minZoom;return this.options.minZoom=t,this._loaded&&i!==t&&(this.fire("zoomlevelschange"),this.getZoom()<this.options.minZoom)?this.setZoom(t):this},setMaxZoom:function(t){var i=this.options.maxZoom;return this.options.maxZoom=t,this._loaded&&i!==t&&(this.fire("zoomlevelschange"),this.getZoom()>this.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,i){this._enforcingBounds=!0;var e=this.getCenter(),n=this._limitCenter(e,this._zoom,z(t));return e.equals(n)||this.panTo(n,i),this._enforcingBounds=!1,this},invalidateSize:function(t){if(!this._loaded)return this;t=i({animate:!1,pan:!0},!0===t?{animate:!0}:t);var n=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var o=this.getSize(),s=n.divideBy(2).round(),r=o.divideBy(2).round(),a=s.subtract(r);return a.x||a.y?(t.animate&&t.pan?this.panBy(a):(t.pan&&this._rawPanBy(a),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(e(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:n,newSize:o})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){if(t=this._locateOptions=i({timeout:1e4,watch:!1},t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var n=e(this._handleGeolocationResponse,this),o=e(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(n,o,t):navigator.geolocation.getCurrentPosition(n,o,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var i=t.code,e=t.message||(1===i?"permission denied":2===i?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:i,message:"Geolocation error: "+e+"."})},_handleGeolocationResponse:function(t){var i=new M(t.coords.latitude,t.coords.longitude),e=i.toBounds(t.coords.accuracy),n=this._locateOptions;if(n.setView){var o=this.getBoundsZoom(e);this.setView(i,n.maxZoom?Math.min(o,n.maxZoom):o)}var s={latlng:i,bounds:e,timestamp:t.timestamp};for(var r in t.coords)"number"==typeof t.coords[r]&&(s[r]=t.coords[r]);this.fire("locationfound",s)},addHandler:function(t,i){if(!i)return this;var e=this[t]=new i(this);return this._handlers.push(e),this.options[t]&&e.enable(),this},remove:function(){if(this._initEvents(!0),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=void 0,this._containerId=void 0}void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),ut(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this._loaded&&this.fire("unload");var t;for(t in this._layers)this._layers[t].remove();for(t in this._panes)ut(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,i){var e=ht("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),i||this._mapPane);return t&&(this._panes[t]=e),e},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new T(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,i,e){t=z(t),e=w(e||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),a=t.getSouthEast(),h=this.getSize().subtract(e),u=b(this.project(a,n),this.project(r,n)).getSize(),l=Ni?this.options.zoomSnap:1,c=h.x/u.x,_=h.y/u.y,d=i?Math.max(c,_):Math.min(c,_);return n=this.getScaleZoom(d,n),l&&(n=Math.round(n/(l/100))*(l/100),n=i?Math.ceil(n/l)*l:Math.floor(n/l)*l),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new x(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,i){var e=this._getTopLeftPoint(t,i);return new P(e,e.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,i){var e=this.options.crs;return i=void 0===i?this._zoom:i,e.scale(t)/e.scale(i)},getScaleZoom:function(t,i){var e=this.options.crs;i=void 0===i?this._zoom:i;var n=e.zoom(t*e.scale(i));return isNaN(n)?1/0:n},project:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.latLngToPoint(C(t),i)},unproject:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.pointToLatLng(w(t),i)},layerPointToLatLng:function(t){var i=w(t).add(this.getPixelOrigin());return this.unproject(i)},latLngToLayerPoint:function(t){return this.project(C(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(C(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(z(t))},distance:function(t,i){return this.options.crs.distance(C(t),C(i))},containerPointToLayerPoint:function(t){return w(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return w(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var i=this.containerPointToLayerPoint(w(t));return this.layerPointToLatLng(i)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(C(t)))},mouseEventToContainerPoint:function(t){return tt(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var i=this._container=rt(t);if(!i)throw new Error("Map container not found.");if(i._leaflet_id)throw new Error("Map container is already initialized.");V(i,"scroll",this._onScroll,this),this._containerId=n(i)},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&Ni,pt(t,"leaflet-container"+(Vi?" leaflet-touch":"")+(Ki?" leaflet-retina":"")+(Li?" leaflet-oldie":"")+(ki?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var i=at(t,"position");"absolute"!==i&&"relative"!==i&&"fixed"!==i&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Lt(this._mapPane,new x(0,0)),this.createPane("tilePane"),this.createPane("shadowPane"),this.createPane("overlayPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(pt(t.markerPane,"leaflet-zoom-hide"),pt(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,i){Lt(this._mapPane,new x(0,0));var e=!this._loaded;this._loaded=!0,i=this._limitZoom(i),this.fire("viewprereset");var n=this._zoom!==i;this._moveStart(n,!1)._move(t,i)._moveEnd(n),this.fire("viewreset"),e&&this.fire("load")},_moveStart:function(t,i){return t&&this.fire("zoomstart"),i||this.fire("movestart"),this},_move:function(t,i,e){void 0===i&&(i=this._zoom);var n=this._zoom!==i;return this._zoom=i,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),(n||e&&e.pinch)&&this.fire("zoom",e),this.fire("move",e)},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return g(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Lt(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={},this._targets[n(this._container)]=this;var i=t?q:V;i(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress",this._handleDOMEvent,this),this.options.trackResize&&i(window,"resize",this._onResize,this),Ni&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){g(this._resizeRequest),this._resizeRequest=f(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,i){for(var e,o=[],s="mouseout"===i||"mouseover"===i,r=t.target||t.srcElement,a=!1;r;){if((e=this._targets[n(r)])&&("click"===i||"preclick"===i)&&!t._simulated&&this._draggableMoved(e)){a=!0;break}if(e&&e.listens(i,!0)){if(s&&!ot(r,t))break;if(o.push(e),s)break}if(r===this._container)break;r=r.parentNode}return o.length||a||s||!ot(r,t)||(o=[this]),o},_handleDOMEvent:function(t){if(this._loaded&&!nt(t)){var i=t.type;"mousedown"!==i&&"keypress"!==i||zt(t.target||t.srcElement),this._fireDOMEvent(t,i)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,n){if("click"===t.type){var o=i({},t);o.type="preclick",this._fireDOMEvent(o,o.type,n)}if(!t._stopped&&(n=(n||[]).concat(this._findEventTargets(t,e))).length){var s=n[0];"contextmenu"===e&&s.listens(e,!0)&&$(t);var r={originalEvent:t};if("keypress"!==t.type){var a=s.getLatLng&&(!s._radius||s._radius<=10);r.containerPoint=a?this.latLngToContainerPoint(s.getLatLng()):this.mouseEventToContainerPoint(t),r.layerPoint=this.containerPointToLayerPoint(r.containerPoint),r.latlng=a?s.getLatLng():this.layerPointToLatLng(r.layerPoint)}for(var h=0;h<n.length;h++)if(n[h].fire(e,r,!0),r.originalEvent._stopped||!1===n[h].options.bubblingMouseEvents&&-1!==d(this._mouseEvents,e))return}},_draggableMoved:function(t){return(t=t.dragging&&t.dragging.enabled()?t:this).dragging&&t.dragging.moved()||this.boxZoom&&this.boxZoom.moved()},_clearHandlers:function(){for(var t=0,i=this._handlers.length;t<i;t++)this._handlers[t].disable()},whenReady:function(t,i){return this._loaded?t.call(i||this,{target:this}):this.on("load",t,i),this},_getMapPanePos:function(){return Pt(this._mapPane)||new x(0,0)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(t,i){return(t&&void 0!==i?this._getNewPixelOrigin(t,i):this.getPixelOrigin()).subtract(this._getMapPanePos())},_getNewPixelOrigin:function(t,i){var e=this.getSize()._divideBy(2);return this.project(t,i)._subtract(e)._add(this._getMapPanePos())._round()},_latLngToNewLayerPoint:function(t,i,e){var n=this._getNewPixelOrigin(e,i);return this.project(t,i)._subtract(n)},_latLngBoundsToNewLayerBounds:function(t,i,e){var n=this._getNewPixelOrigin(e,i);return b([this.project(t.getSouthWest(),i)._subtract(n),this.project(t.getNorthWest(),i)._subtract(n),this.project(t.getSouthEast(),i)._subtract(n),this.project(t.getNorthEast(),i)._subtract(n)])},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,i,e){if(!e)return t;var n=this.project(t,i),o=this.getSize().divideBy(2),s=new P(n.subtract(o),n.add(o)),r=this._getBoundsOffset(s,e,i);return r.round().equals([0,0])?t:this.unproject(n.add(r),i)},_limitOffset:function(t,i){if(!i)return t;var e=this.getPixelBounds(),n=new P(e.min.add(t),e.max.add(t));return t.add(this._getBoundsOffset(n,i))},_getBoundsOffset:function(t,i,e){var n=b(this.project(i.getNorthEast(),e),this.project(i.getSouthWest(),e)),o=n.min.subtract(t.min),s=n.max.subtract(t.max);return new x(this._rebound(o.x,-s.x),this._rebound(o.y,-s.y))},_rebound:function(t,i){return t+i>0?Math.round(t-i)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(i))},_limitZoom:function(t){var i=this.getMinZoom(),e=this.getMaxZoom(),n=Ni?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(i,Math.min(e,t))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){mt(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,i){var e=this._getCenterOffset(t)._trunc();return!(!0!==(i&&i.animate)&&!this.getSize().contains(e))&&(this.panBy(e,i),!0)},_createAnimProxy:function(){var t=this._proxy=ht("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",function(t){var i=pe,e=this._proxy.style[i];wt(this._proxy,this.project(t.center,t.zoom),this.getZoomScale(t.zoom,1)),e===this._proxy.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",function(){var t=this.getCenter(),i=this.getZoom();wt(this._proxy,this.project(t,i),this.getZoomScale(i,1))},this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){ut(this._proxy),delete this._proxy},_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,i,e){if(this._animatingZoom)return!0;if(e=e||{},!this._zoomAnimated||!1===e.animate||this._nothingToAnimate()||Math.abs(i-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(i),o=this._getCenterOffset(t)._divideBy(1-1/n);return!(!0!==e.animate&&!this.getSize().contains(o))&&(f(function(){this._moveStart(!0,!1)._animateZoom(t,i,!0)},this),!0)},_animateZoom:function(t,i,n,o){this._mapPane&&(n&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=i,pt(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:i,noUpdate:o}),setTimeout(e(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&mt(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom),f(function(){this._moveEnd(!0)},this))}}),Pe=v.extend({options:{position:"topright"},initialize:function(t){l(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var i=this._map;return i&&i.removeControl(this),this.options.position=t,i&&i.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var i=this._container=this.onAdd(t),e=this.getPosition(),n=t._controlCorners[e];return pt(i,"leaflet-control"),-1!==e.indexOf("bottom")?n.insertBefore(i,n.firstChild):n.appendChild(i),this},remove:function(){return this._map?(ut(this._container),this.onRemove&&this.onRemove(this._map),this._map=null,this):this},_refocusOnMap:function(t){this._map&&t&&t.screenX>0&&t.screenY>0&&this._map.getContainer().focus()}}),be=function(t){return new Pe(t)};Le.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){function t(t,o){var s=e+t+" "+e+o;i[t+o]=ht("div",s,n)}var i=this._controlCorners={},e="leaflet-",n=this._controlContainer=ht("div",e+"control-container",this._container);t("top","left"),t("top","right"),t("bottom","left"),t("bottom","right")},_clearControlPos:function(){for(var t in this._controlCorners)ut(this._controlCorners[t]);ut(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var Te=Pe.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(t,i,e,n){return e<n?-1:n<e?1:0}},initialize:function(t,i,e){l(this,e),this._layerControlInputs=[],this._layers=[],this._lastZIndex=0,this._handlingClick=!1;for(var n in t)this._addLayer(t[n],n);for(n in i)this._addLayer(i[n],n,!0)},onAdd:function(t){this._initLayout(),this._update(),this._map=t,t.on("zoomend",this._checkDisabledLayers,this);for(var i=0;i<this._layers.length;i++)this._layers[i].layer.on("add remove",this._onLayerChange,this);return this._container},addTo:function(t){return Pe.prototype.addTo.call(this,t),this._expandIfNotCollapsed()},onRemove:function(){this._map.off("zoomend",this._checkDisabledLayers,this);for(var t=0;t<this._layers.length;t++)this._layers[t].layer.off("add remove",this._onLayerChange,this)},addBaseLayer:function(t,i){return this._addLayer(t,i),this._map?this._update():this},addOverlay:function(t,i){return this._addLayer(t,i,!0),this._map?this._update():this},removeLayer:function(t){t.off("add remove",this._onLayerChange,this);var i=this._getLayer(n(t));return i&&this._layers.splice(this._layers.indexOf(i),1),this._map?this._update():this},expand:function(){pt(this._container,"leaflet-control-layers-expanded"),this._form.style.height=null;var t=this._map.getSize().y-(this._container.offsetTop+50);return t<this._form.clientHeight?(pt(this._form,"leaflet-control-layers-scrollbar"),this._form.style.height=t+"px"):mt(this._form,"leaflet-control-layers-scrollbar"),this._checkDisabledLayers(),this},collapse:function(){return mt(this._container,"leaflet-control-layers-expanded"),this},_initLayout:function(){var t="leaflet-control-layers",i=this._container=ht("div",t),e=this.options.collapsed;i.setAttribute("aria-haspopup",!0),J(i),X(i);var n=this._form=ht("form",t+"-list");e&&(this._map.on("click",this.collapse,this),Ti||V(i,{mouseenter:this.expand,mouseleave:this.collapse},this));var o=this._layersLink=ht("a",t+"-toggle",i);o.href="#",o.title="Layers",Vi?(V(o,"click",Q),V(o,"click",this.expand,this)):V(o,"focus",this.expand,this),e||this.expand(),this._baseLayersList=ht("div",t+"-base",n),this._separator=ht("div",t+"-separator",n),this._overlaysList=ht("div",t+"-overlays",n),i.appendChild(n)},_getLayer:function(t){for(var i=0;i<this._layers.length;i++)if(this._layers[i]&&n(this._layers[i].layer)===t)return this._layers[i]},_addLayer:function(t,i,n){this._map&&t.on("add remove",this._onLayerChange,this),this._layers.push({layer:t,name:i,overlay:n}),this.options.sortLayers&&this._layers.sort(e(function(t,i){return this.options.sortFunction(t.layer,i.layer,t.name,i.name)},this)),this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex)),this._expandIfNotCollapsed()},_update:function(){if(!this._container)return this;lt(this._baseLayersList),lt(this._overlaysList),this._layerControlInputs=[];var t,i,e,n,o=0;for(e=0;e<this._layers.length;e++)n=this._layers[e],this._addItem(n),i=i||n.overlay,t=t||!n.overlay,o+=n.overlay?0:1;return this.options.hideSingleBase&&(t=t&&o>1,this._baseLayersList.style.display=t?"":"none"),this._separator.style.display=i&&t?"":"none",this},_onLayerChange:function(t){this._handlingClick||this._update();var i=this._getLayer(n(t.target)),e=i.overlay?"add"===t.type?"overlayadd":"overlayremove":"add"===t.type?"baselayerchange":null;e&&this._map.fire(e,i)},_createRadioElement:function(t,i){var e='<input type="radio" class="leaflet-control-layers-selector" name="'+t+'"'+(i?' checked="checked"':"")+"/>",n=document.createElement("div");return n.innerHTML=e,n.firstChild},_addItem:function(t){var i,e=document.createElement("label"),o=this._map.hasLayer(t.layer);t.overlay?((i=document.createElement("input")).type="checkbox",i.className="leaflet-control-layers-selector",i.defaultChecked=o):i=this._createRadioElement("leaflet-base-layers",o),this._layerControlInputs.push(i),i.layerId=n(t.layer),V(i,"click",this._onInputClick,this);var s=document.createElement("span");s.innerHTML=" "+t.name;var r=document.createElement("div");return e.appendChild(r),r.appendChild(i),r.appendChild(s),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(e),this._checkDisabledLayers(),e},_onInputClick:function(){var t,i,e=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=e.length-1;s>=0;s--)t=e[s],i=this._getLayer(t.layerId).layer,t.checked?n.push(i):t.checked||o.push(i);for(s=0;s<o.length;s++)this._map.hasLayer(o[s])&&this._map.removeLayer(o[s]);for(s=0;s<n.length;s++)this._map.hasLayer(n[s])||this._map.addLayer(n[s]);this._handlingClick=!1,this._refocusOnMap()},_checkDisabledLayers:function(){for(var t,i,e=this._layerControlInputs,n=this._map.getZoom(),o=e.length-1;o>=0;o--)t=e[o],i=this._getLayer(t.layerId).layer,t.disabled=void 0!==i.options.minZoom&&n<i.options.minZoom||void 0!==i.options.maxZoom&&n>i.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expand:function(){return this.expand()},_collapse:function(){return this.collapse()}}),ze=Pe.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"−",zoomOutTitle:"Zoom out"},onAdd:function(t){var i="leaflet-control-zoom",e=ht("div",i+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,i+"-in",e,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,i+"-out",e,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),e},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoom<this._map.getMaxZoom()&&this._map.zoomIn(this._map.options.zoomDelta*(t.shiftKey?3:1))},_zoomOut:function(t){!this._disabled&&this._map._zoom>this._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,i,e,n,o){var s=ht("a",e,n);return s.innerHTML=t,s.href="#",s.title=i,s.setAttribute("role","button"),s.setAttribute("aria-label",i),J(s),V(s,"click",Q),V(s,"click",o,this),V(s,"click",this._refocusOnMap,this),s},_updateDisabled:function(){var t=this._map,i="leaflet-disabled";mt(this._zoomInButton,i),mt(this._zoomOutButton,i),(this._disabled||t._zoom===t.getMinZoom())&&pt(this._zoomOutButton,i),(this._disabled||t._zoom===t.getMaxZoom())&&pt(this._zoomInButton,i)}});Le.mergeOptions({zoomControl:!0}),Le.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new ze,this.addControl(this.zoomControl))});var Me=Pe.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var i=ht("div","leaflet-control-scale"),e=this.options;return this._addScales(e,"leaflet-control-scale-line",i),t.on(e.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,i,e){t.metric&&(this._mScale=ht("div",i,e)),t.imperial&&(this._iScale=ht("div",i,e))},_update:function(){var t=this._map,i=t.getSize().y/2,e=t.distance(t.containerPointToLatLng([0,i]),t.containerPointToLatLng([this.options.maxWidth,i]));this._updateScales(e)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var i=this._getRoundNum(t),e=i<1e3?i+" m":i/1e3+" km";this._updateScale(this._mScale,e,i/t)},_updateImperial:function(t){var i,e,n,o=3.2808399*t;o>5280?(i=o/5280,e=this._getRoundNum(i),this._updateScale(this._iScale,e+" mi",e/i)):(n=this._getRoundNum(o),this._updateScale(this._iScale,n+" ft",n/o))},_updateScale:function(t,i,e){t.style.width=Math.round(this.options.maxWidth*e)+"px",t.innerHTML=i},_getRoundNum:function(t){var i=Math.pow(10,(Math.floor(t)+"").length-1),e=t/i;return e=e>=10?10:e>=5?5:e>=3?3:e>=2?2:1,i*e}}),Ce=Pe.extend({options:{position:"bottomright",prefix:'<a href="https://leafletjs.com" title="A JS library for interactive maps">Leaflet</a>'},initialize:function(t){l(this,t),this._attributions={}},onAdd:function(t){t.attributionControl=this,this._container=ht("div","leaflet-control-attribution"),J(this._container);for(var i in t._layers)t._layers[i].getAttribution&&this.addAttribution(t._layers[i].getAttribution());return this._update(),this._container},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):this},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):this},_update:function(){if(this._map){var t=[];for(var i in this._attributions)this._attributions[i]&&t.push(i);var e=[];this.options.prefix&&e.push(this.options.prefix),t.length&&e.push(t.join(", ")),this._container.innerHTML=e.join(" | ")}}});Le.mergeOptions({attributionControl:!0}),Le.addInitHook(function(){this.options.attributionControl&&(new Ce).addTo(this)});Pe.Layers=Te,Pe.Zoom=ze,Pe.Scale=Me,Pe.Attribution=Ce,be.layers=function(t,i,e){return new Te(t,i,e)},be.zoom=function(t){return new ze(t)},be.scale=function(t){return new Me(t)},be.attribution=function(t){return new Ce(t)};var Ze=v.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Ze.addTo=function(t,i){return t.addHandler(i,this),this};var Se,Ee={Events:hi},ke=Vi?"touchstart mousedown":"mousedown",Ae={mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},Ie={mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"},Be=ui.extend({options:{clickTolerance:3},initialize:function(t,i,e,n){l(this,n),this._element=t,this._dragStartTarget=i||t,this._preventOutline=e},enable:function(){this._enabled||(V(this._dragStartTarget,ke,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Be._dragging===this&&this.finishDrag(),q(this._dragStartTarget,ke,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(!t._simulated&&this._enabled&&(this._moved=!1,!dt(this._element,"leaflet-zoom-anim")&&!(Be._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||(Be._dragging=this,this._preventOutline&&zt(this._element),bt(),mi(),this._moving)))){this.fire("down");var i=t.touches?t.touches[0]:t;this._startPoint=new x(i.clientX,i.clientY),V(document,Ie[t.type],this._onMove,this),V(document,Ae[t.type],this._onUp,this)}},_onMove:function(t){if(!t._simulated&&this._enabled)if(t.touches&&t.touches.length>1)this._moved=!0;else{var i=t.touches&&1===t.touches.length?t.touches[0]:t,e=new x(i.clientX,i.clientY).subtract(this._startPoint);(e.x||e.y)&&(Math.abs(e.x)+Math.abs(e.y)<this.options.clickTolerance||($(t),this._moved||(this.fire("dragstart"),this._moved=!0,this._startPos=Pt(this._element).subtract(e),pt(document.body,"leaflet-dragging"),this._lastTarget=t.target||t.srcElement,window.SVGElementInstance&&this._lastTarget instanceof SVGElementInstance&&(this._lastTarget=this._lastTarget.correspondingUseElement),pt(this._lastTarget,"leaflet-drag-target")),this._newPos=this._startPos.add(e),this._moving=!0,g(this._animRequest),this._lastEvent=t,this._animRequest=f(this._updatePosition,this,!0)))}},_updatePosition:function(){var t={originalEvent:this._lastEvent};this.fire("predrag",t),Lt(this._element,this._newPos),this.fire("drag",t)},_onUp:function(t){!t._simulated&&this._enabled&&this.finishDrag()},finishDrag:function(){mt(document.body,"leaflet-dragging"),this._lastTarget&&(mt(this._lastTarget,"leaflet-drag-target"),this._lastTarget=null);for(var t in Ie)q(document,Ie[t],this._onMove,this),q(document,Ae[t],this._onUp,this);Tt(),fi(),this._moved&&this._moving&&(g(this._animRequest),this.fire("dragend",{distance:this._newPos.distanceTo(this._startPos)})),this._moving=!1,Be._dragging=!1}}),Oe=(Object.freeze||Object)({simplify:Ct,pointToSegmentDistance:Zt,closestPointOnSegment:function(t,i,e){return Rt(t,i,e)},clipSegment:At,_getEdgeIntersection:It,_getBitCode:Bt,_sqClosestPointOnSegment:Rt,isFlat:Dt,_flat:Nt}),Re=(Object.freeze||Object)({clipPolygon:jt}),De={project:function(t){return new x(t.lng,t.lat)},unproject:function(t){return new M(t.y,t.x)},bounds:new P([-180,-90],[180,90])},Ne={R:6378137,R_MINOR:6356752.314245179,bounds:new P([-20037508.34279,-15496570.73972],[20037508.34279,18764656.23138]),project:function(t){var i=Math.PI/180,e=this.R,n=t.lat*i,o=this.R_MINOR/e,s=Math.sqrt(1-o*o),r=s*Math.sin(n),a=Math.tan(Math.PI/4-n/2)/Math.pow((1-r)/(1+r),s/2);return n=-e*Math.log(Math.max(a,1e-10)),new x(t.lng*i*e,n)},unproject:function(t){for(var i,e=180/Math.PI,n=this.R,o=this.R_MINOR/n,s=Math.sqrt(1-o*o),r=Math.exp(-t.y/n),a=Math.PI/2-2*Math.atan(r),h=0,u=.1;h<15&&Math.abs(u)>1e-7;h++)i=s*Math.sin(a),i=Math.pow((1-i)/(1+i),s/2),a+=u=Math.PI/2-2*Math.atan(r*i)-a;return new M(a*e,t.x*e/n)}},je=(Object.freeze||Object)({LonLat:De,Mercator:Ne,SphericalMercator:di}),We=i({},_i,{code:"EPSG:3395",projection:Ne,transformation:function(){var t=.5/(Math.PI*Ne.R);return S(t,.5,-t,.5)}()}),He=i({},_i,{code:"EPSG:4326",projection:De,transformation:S(1/180,1,-1/180,.5)}),Fe=i({},ci,{projection:De,transformation:S(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,i){var e=i.lng-t.lng,n=i.lat-t.lat;return Math.sqrt(e*e+n*n)},infinite:!0});ci.Earth=_i,ci.EPSG3395=We,ci.EPSG3857=vi,ci.EPSG900913=yi,ci.EPSG4326=He,ci.Simple=Fe;var Ue=ui.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[n(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[n(t)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(t){var i=t.target;if(i.hasLayer(this)){if(this._map=i,this._zoomAnimated=i._zoomAnimated,this.getEvents){var e=this.getEvents();i.on(e,this),this.once("remove",function(){i.off(e,this)},this)}this.onAdd(i),this.getAttribution&&i.attributionControl&&i.attributionControl.addAttribution(this.getAttribution()),this.fire("add"),i.fire("layeradd",{layer:this})}}});Le.include({addLayer:function(t){if(!t._layerAdd)throw new Error("The provided object is not a Layer.");var i=n(t);return this._layers[i]?this:(this._layers[i]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t),this)},removeLayer:function(t){var i=n(t);return this._layers[i]?(this._loaded&&t.onRemove(this),t.getAttribution&&this.attributionControl&&this.attributionControl.removeAttribution(t.getAttribution()),delete this._layers[i],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return!!t&&n(t)in this._layers},eachLayer:function(t,i){for(var e in this._layers)t.call(i,this._layers[e]);return this},_addLayers:function(t){for(var i=0,e=(t=t?ei(t)?t:[t]:[]).length;i<e;i++)this.addLayer(t[i])},_addZoomLimit:function(t){!isNaN(t.options.maxZoom)&&isNaN(t.options.minZoom)||(this._zoomBoundLayers[n(t)]=t,this._updateZoomLevels())},_removeZoomLimit:function(t){var i=n(t);this._zoomBoundLayers[i]&&(delete this._zoomBoundLayers[i],this._updateZoomLevels())},_updateZoomLevels:function(){var t=1/0,i=-1/0,e=this._getZoomSpan();for(var n in this._zoomBoundLayers){var o=this._zoomBoundLayers[n].options;t=void 0===o.minZoom?t:Math.min(t,o.minZoom),i=void 0===o.maxZoom?i:Math.max(i,o.maxZoom)}this._layersMaxZoom=i===-1/0?void 0:i,this._layersMinZoom=t===1/0?void 0:t,e!==this._getZoomSpan()&&this.fire("zoomlevelschange"),void 0===this.options.maxZoom&&this._layersMaxZoom&&this.getZoom()>this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()<this._layersMinZoom&&this.setZoom(this._layersMinZoom)}});var Ve=Ue.extend({initialize:function(t,i){l(this,i),this._layers={};var e,n;if(t)for(e=0,n=t.length;e<n;e++)this.addLayer(t[e])},addLayer:function(t){var i=this.getLayerId(t);return this._layers[i]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){var i=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[i]&&this._map.removeLayer(this._layers[i]),delete this._layers[i],this},hasLayer:function(t){return!!t&&(t in this._layers||this.getLayerId(t)in this._layers)},clearLayers:function(){return this.eachLayer(this.removeLayer,this)},invoke:function(t){var i,e,n=Array.prototype.slice.call(arguments,1);for(i in this._layers)(e=this._layers[i])[t]&&e[t].apply(e,n);return this},onAdd:function(t){this.eachLayer(t.addLayer,t)},onRemove:function(t){this.eachLayer(t.removeLayer,t)},eachLayer:function(t,i){for(var e in this._layers)t.call(i,this._layers[e]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];return this.eachLayer(t.push,t),t},setZIndex:function(t){return this.invoke("setZIndex",t)},getLayerId:function(t){return n(t)}}),qe=Ve.extend({addLayer:function(t){return this.hasLayer(t)?this:(t.addEventParent(this),Ve.prototype.addLayer.call(this,t),this.fire("layeradd",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?(t in this._layers&&(t=this._layers[t]),t.removeEventParent(this),Ve.prototype.removeLayer.call(this,t),this.fire("layerremove",{layer:t})):this},setStyle:function(t){return this.invoke("setStyle",t)},bringToFront:function(){return this.invoke("bringToFront")},bringToBack:function(){return this.invoke("bringToBack")},getBounds:function(){var t=new T;for(var i in this._layers){var e=this._layers[i];t.extend(e.getBounds?e.getBounds():e.getLatLng())}return t}}),Ge=v.extend({options:{popupAnchor:[0,0],tooltipAnchor:[0,0]},initialize:function(t){l(this,t)},createIcon:function(t){return this._createIcon("icon",t)},createShadow:function(t){return this._createIcon("shadow",t)},_createIcon:function(t,i){var e=this._getIconUrl(t);if(!e){if("icon"===t)throw new Error("iconUrl not set in Icon options (see the docs).");return null}var n=this._createImg(e,i&&"IMG"===i.tagName?i:null);return this._setIconStyles(n,t),n},_setIconStyles:function(t,i){var e=this.options,n=e[i+"Size"];"number"==typeof n&&(n=[n,n]);var o=w(n),s=w("shadow"===i&&e.shadowAnchor||e.iconAnchor||o&&o.divideBy(2,!0));t.className="leaflet-marker-"+i+" "+(e.className||""),s&&(t.style.marginLeft=-s.x+"px",t.style.marginTop=-s.y+"px"),o&&(t.style.width=o.x+"px",t.style.height=o.y+"px")},_createImg:function(t,i){return i=i||document.createElement("img"),i.src=t,i},_getIconUrl:function(t){return Ki&&this.options[t+"RetinaUrl"]||this.options[t+"Url"]}}),Ke=Ge.extend({options:{iconUrl:"marker-icon.png",iconRetinaUrl:"marker-icon-2x.png",shadowUrl:"marker-shadow.png",iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],tooltipAnchor:[16,-28],shadowSize:[41,41]},_getIconUrl:function(t){return Ke.imagePath||(Ke.imagePath=this._detectIconPath()),(this.options.imagePath||Ke.imagePath)+Ge.prototype._getIconUrl.call(this,t)},_detectIconPath:function(){var t=ht("div","leaflet-default-icon-path",document.body),i=at(t,"background-image")||at(t,"backgroundImage");return document.body.removeChild(t),i=null===i||0!==i.indexOf("url")?"":i.replace(/^url\(["']?/,"").replace(/marker-icon\.png["']?\)$/,"")}}),Ye=Ze.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new Be(t,t,!0)),this._draggable.on({dragstart:this._onDragStart,predrag:this._onPreDrag,drag:this._onDrag,dragend:this._onDragEnd},this).enable(),pt(t,"leaflet-marker-draggable")},removeHooks:function(){this._draggable.off({dragstart:this._onDragStart,predrag:this._onPreDrag,drag:this._onDrag,dragend:this._onDragEnd},this).disable(),this._marker._icon&&mt(this._marker._icon,"leaflet-marker-draggable")},moved:function(){return this._draggable&&this._draggable._moved},_adjustPan:function(t){var i=this._marker,e=i._map,n=this._marker.options.autoPanSpeed,o=this._marker.options.autoPanPadding,s=L.DomUtil.getPosition(i._icon),r=e.getPixelBounds(),a=e.getPixelOrigin(),h=b(r.min._subtract(a).add(o),r.max._subtract(a).subtract(o));if(!h.contains(s)){var u=w((Math.max(h.max.x,s.x)-h.max.x)/(r.max.x-h.max.x)-(Math.min(h.min.x,s.x)-h.min.x)/(r.min.x-h.min.x),(Math.max(h.max.y,s.y)-h.max.y)/(r.max.y-h.max.y)-(Math.min(h.min.y,s.y)-h.min.y)/(r.min.y-h.min.y)).multiplyBy(n);e.panBy(u,{animate:!1}),this._draggable._newPos._add(u),this._draggable._startPos._add(u),L.DomUtil.setPosition(i._icon,this._draggable._newPos),this._onDrag(t),this._panRequest=f(this._adjustPan.bind(this,t))}},_onDragStart:function(){this._oldLatLng=this._marker.getLatLng(),this._marker.closePopup().fire("movestart").fire("dragstart")},_onPreDrag:function(t){this._marker.options.autoPan&&(g(this._panRequest),this._panRequest=f(this._adjustPan.bind(this,t)))},_onDrag:function(t){var i=this._marker,e=i._shadow,n=Pt(i._icon),o=i._map.layerPointToLatLng(n);e&&Lt(e,n),i._latlng=o,t.latlng=o,t.oldLatLng=this._oldLatLng,i.fire("move",t).fire("drag",t)},_onDragEnd:function(t){g(this._panRequest),delete this._oldLatLng,this._marker.fire("moveend").fire("dragend",t)}}),Xe=Ue.extend({options:{icon:new Ke,interactive:!0,draggable:!1,autoPan:!1,autoPanPadding:[50,50],autoPanSpeed:10,keyboard:!0,title:"",alt:"",zIndexOffset:0,opacity:1,riseOnHover:!1,riseOffset:250,pane:"markerPane",bubblingMouseEvents:!1},initialize:function(t,i){l(this,i),this._latlng=C(t)},onAdd:function(t){this._zoomAnimated=this._zoomAnimated&&t.options.markerZoomAnimation,this._zoomAnimated&&t.on("zoomanim",this._animateZoom,this),this._initIcon(),this.update()},onRemove:function(t){this.dragging&&this.dragging.enabled()&&(this.options.draggable=!0,this.dragging.removeHooks()),delete this.dragging,this._zoomAnimated&&t.off("zoomanim",this._animateZoom,this),this._removeIcon(),this._removeShadow()},getEvents:function(){return{zoom:this.update,viewreset:this.update}},getLatLng:function(){return this._latlng},setLatLng:function(t){var i=this._latlng;return this._latlng=C(t),this.update(),this.fire("move",{oldLatLng:i,latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update()},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup,this._popup.options),this},getElement:function(){return this._icon},update:function(){if(this._icon&&this._map){var t=this._map.latLngToLayerPoint(this._latlng).round();this._setPos(t)}return this},_initIcon:function(){var t=this.options,i="leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"),e=t.icon.createIcon(this._icon),n=!1;e!==this._icon&&(this._icon&&this._removeIcon(),n=!0,t.title&&(e.title=t.title),"IMG"===e.tagName&&(e.alt=t.alt||"")),pt(e,i),t.keyboard&&(e.tabIndex="0"),this._icon=e,t.riseOnHover&&this.on({mouseover:this._bringToFront,mouseout:this._resetZIndex});var o=t.icon.createShadow(this._shadow),s=!1;o!==this._shadow&&(this._removeShadow(),s=!0),o&&(pt(o,i),o.alt=""),this._shadow=o,t.opacity<1&&this._updateOpacity(),n&&this.getPane().appendChild(this._icon),this._initInteraction(),o&&s&&this.getPane("shadowPane").appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&this.off({mouseover:this._bringToFront,mouseout:this._resetZIndex}),ut(this._icon),this.removeInteractiveTarget(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&ut(this._shadow),this._shadow=null},_setPos:function(t){Lt(this._icon,t),this._shadow&&Lt(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon.style.zIndex=this._zIndex+t},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(i)},_initInteraction:function(){if(this.options.interactive&&(pt(this._icon,"leaflet-interactive"),this.addInteractiveTarget(this._icon),Ye)){var t=this.options.draggable;this.dragging&&(t=this.dragging.enabled(),this.dragging.disable()),this.dragging=new Ye(this),t&&this.dragging.enable()}},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},_updateOpacity:function(){var t=this.options.opacity;vt(this._icon,t),this._shadow&&vt(this._shadow,t)},_bringToFront:function(){this._updateZIndex(this.options.riseOffset)},_resetZIndex:function(){this._updateZIndex(0)},_getPopupAnchor:function(){return this.options.icon.options.popupAnchor},_getTooltipAnchor:function(){return this.options.icon.options.tooltipAnchor}}),Je=Ue.extend({options:{stroke:!0,color:"#3388ff",weight:3,opacity:1,lineCap:"round",lineJoin:"round",dashArray:null,dashOffset:null,fill:!1,fillColor:null,fillOpacity:.2,fillRule:"evenodd",interactive:!0,bubblingMouseEvents:!0},beforeAdd:function(t){this._renderer=t.getRenderer(this)},onAdd:function(){this._renderer._initPath(this),this._reset(),this._renderer._addPath(this)},onRemove:function(){this._renderer._removePath(this)},redraw:function(){return this._map&&this._renderer._updatePath(this),this},setStyle:function(t){return l(this,t),this._renderer&&this._renderer._updateStyle(this),this},bringToFront:function(){return this._renderer&&this._renderer._bringToFront(this),this},bringToBack:function(){return this._renderer&&this._renderer._bringToBack(this),this},getElement:function(){return this._path},_reset:function(){this._project(),this._update()},_clickTolerance:function(){return(this.options.stroke?this.options.weight/2:0)+this._renderer.options.tolerance}}),$e=Je.extend({options:{fill:!0,radius:10},initialize:function(t,i){l(this,i),this._latlng=C(t),this._radius=this.options.radius},setLatLng:function(t){return this._latlng=C(t),this.redraw(),this.fire("move",{latlng:this._latlng})},getLatLng:function(){return this._latlng},setRadius:function(t){return this.options.radius=this._radius=t,this.redraw()},getRadius:function(){return this._radius},setStyle:function(t){var i=t&&t.radius||this._radius;return Je.prototype.setStyle.call(this,t),this.setRadius(i),this},_project:function(){this._point=this._map.latLngToLayerPoint(this._latlng),this._updateBounds()},_updateBounds:function(){var t=this._radius,i=this._radiusY||t,e=this._clickTolerance(),n=[t+e,i+e];this._pxBounds=new P(this._point.subtract(n),this._point.add(n))},_update:function(){this._map&&this._updatePath()},_updatePath:function(){this._renderer._updateCircle(this)},_empty:function(){return this._radius&&!this._renderer._bounds.intersects(this._pxBounds)},_containsPoint:function(t){return t.distanceTo(this._point)<=this._radius+this._clickTolerance()}}),Qe=$e.extend({initialize:function(t,e,n){if("number"==typeof e&&(e=i({},n,{radius:e})),l(this,e),this._latlng=C(t),isNaN(this.options.radius))throw new Error("Circle radius cannot be NaN");this._mRadius=this.options.radius},setRadius:function(t){return this._mRadius=t,this.redraw()},getRadius:function(){return this._mRadius},getBounds:function(){var t=[this._radius,this._radiusY||this._radius];return new T(this._map.layerPointToLatLng(this._point.subtract(t)),this._map.layerPointToLatLng(this._point.add(t)))},setStyle:Je.prototype.setStyle,_project:function(){var t=this._latlng.lng,i=this._latlng.lat,e=this._map,n=e.options.crs;if(n.distance===_i.distance){var o=Math.PI/180,s=this._mRadius/_i.R/o,r=e.project([i+s,t]),a=e.project([i-s,t]),h=r.add(a).divideBy(2),u=e.unproject(h).lat,l=Math.acos((Math.cos(s*o)-Math.sin(i*o)*Math.sin(u*o))/(Math.cos(i*o)*Math.cos(u*o)))/o;(isNaN(l)||0===l)&&(l=s/Math.cos(Math.PI/180*i)),this._point=h.subtract(e.getPixelOrigin()),this._radius=isNaN(l)?0:h.x-e.project([u,t-l]).x,this._radiusY=h.y-r.y}else{var c=n.unproject(n.project(this._latlng).subtract([this._mRadius,0]));this._point=e.latLngToLayerPoint(this._latlng),this._radius=this._point.x-e.latLngToLayerPoint(c).x}this._updateBounds()}}),tn=Je.extend({options:{smoothFactor:1,noClip:!1},initialize:function(t,i){l(this,i),this._setLatLngs(t)},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._setLatLngs(t),this.redraw()},isEmpty:function(){return!this._latlngs.length},closestLayerPoint:function(t){for(var i,e,n=1/0,o=null,s=Rt,r=0,a=this._parts.length;r<a;r++)for(var h=this._parts[r],u=1,l=h.length;u<l;u++){var c=s(t,i=h[u-1],e=h[u],!0);c<n&&(n=c,o=s(t,i,e))}return o&&(o.distance=Math.sqrt(n)),o},getCenter:function(){if(!this._map)throw new Error("Must add layer to map before using getCenter()");var t,i,e,n,o,s,r,a=this._rings[0],h=a.length;if(!h)return null;for(t=0,i=0;t<h-1;t++)i+=a[t].distanceTo(a[t+1])/2;if(0===i)return this._map.layerPointToLatLng(a[0]);for(t=0,n=0;t<h-1;t++)if(o=a[t],s=a[t+1],e=o.distanceTo(s),(n+=e)>i)return r=(n-i)/e,this._map.layerPointToLatLng([s.x-r*(s.x-o.x),s.y-r*(s.y-o.y)])},getBounds:function(){return this._bounds},addLatLng:function(t,i){return i=i||this._defaultShape(),t=C(t),i.push(t),this._bounds.extend(t),this.redraw()},_setLatLngs:function(t){this._bounds=new T,this._latlngs=this._convertLatLngs(t)},_defaultShape:function(){return Dt(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(t){for(var i=[],e=Dt(t),n=0,o=t.length;n<o;n++)e?(i[n]=C(t[n]),this._bounds.extend(i[n])):i[n]=this._convertLatLngs(t[n]);return i},_project:function(){var t=new P;this._rings=[],this._projectLatlngs(this._latlngs,this._rings,t);var i=this._clickTolerance(),e=new x(i,i);this._bounds.isValid()&&t.isValid()&&(t.min._subtract(e),t.max._add(e),this._pxBounds=t)},_projectLatlngs:function(t,i,e){var n,o,s=t[0]instanceof M,r=t.length;if(s){for(o=[],n=0;n<r;n++)o[n]=this._map.latLngToLayerPoint(t[n]),e.extend(o[n]);i.push(o)}else for(n=0;n<r;n++)this._projectLatlngs(t[n],i,e)},_clipPoints:function(){var t=this._renderer._bounds;if(this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else{var i,e,n,o,s,r,a,h=this._parts;for(i=0,n=0,o=this._rings.length;i<o;i++)for(e=0,s=(a=this._rings[i]).length;e<s-1;e++)(r=At(a[e],a[e+1],t,e,!0))&&(h[n]=h[n]||[],h[n].push(r[0]),r[1]===a[e+1]&&e!==s-2||(h[n].push(r[1]),n++))}},_simplifyPoints:function(){for(var t=this._parts,i=this.options.smoothFactor,e=0,n=t.length;e<n;e++)t[e]=Ct(t[e],i)},_update:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),this._updatePath())},_updatePath:function(){this._renderer._updatePoly(this)},_containsPoint:function(t,i){var e,n,o,s,r,a,h=this._clickTolerance();if(!this._pxBounds||!this._pxBounds.contains(t))return!1;for(e=0,s=this._parts.length;e<s;e++)for(n=0,o=(r=(a=this._parts[e]).length)-1;n<r;o=n++)if((i||0!==n)&&Zt(t,a[o],a[n])<=h)return!0;return!1}});tn._flat=Nt;var en=tn.extend({options:{fill:!0},isEmpty:function(){return!this._latlngs.length||!this._latlngs[0].length},getCenter:function(){if(!this._map)throw new Error("Must add layer to map before using getCenter()");var t,i,e,n,o,s,r,a,h,u=this._rings[0],l=u.length;if(!l)return null;for(s=r=a=0,t=0,i=l-1;t<l;i=t++)e=u[t],n=u[i],o=e.y*n.x-n.y*e.x,r+=(e.x+n.x)*o,a+=(e.y+n.y)*o,s+=3*o;return h=0===s?u[0]:[r/s,a/s],this._map.layerPointToLatLng(h)},_convertLatLngs:function(t){var i=tn.prototype._convertLatLngs.call(this,t),e=i.length;return e>=2&&i[0]instanceof M&&i[0].equals(i[e-1])&&i.pop(),i},_setLatLngs:function(t){tn.prototype._setLatLngs.call(this,t),Dt(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return Dt(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,i=this.options.weight,e=new x(i,i);if(t=new P(t.min.subtract(e),t.max.add(e)),this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else for(var n,o=0,s=this._rings.length;o<s;o++)(n=jt(this._rings[o],t,!0)).length&&this._parts.push(n)},_updatePath:function(){this._renderer._updatePoly(this,!0)},_containsPoint:function(t){var i,e,n,o,s,r,a,h,u=!1;if(!this._pxBounds.contains(t))return!1;for(o=0,a=this._parts.length;o<a;o++)for(s=0,r=(h=(i=this._parts[o]).length)-1;s<h;r=s++)e=i[s],n=i[r],e.y>t.y!=n.y>t.y&&t.x<(n.x-e.x)*(t.y-e.y)/(n.y-e.y)+e.x&&(u=!u);return u||tn.prototype._containsPoint.call(this,t,!0)}}),nn=qe.extend({initialize:function(t,i){l(this,i),this._layers={},t&&this.addData(t)},addData:function(t){var i,e,n,o=ei(t)?t:t.features;if(o){for(i=0,e=o.length;i<e;i++)((n=o[i]).geometries||n.geometry||n.features||n.coordinates)&&this.addData(n);return this}var s=this.options;if(s.filter&&!s.filter(t))return this;var r=Wt(t,s);return r?(r.feature=Gt(t),r.defaultOptions=r.options,this.resetStyle(r),s.onEachFeature&&s.onEachFeature(t,r),this.addLayer(r)):this},resetStyle:function(t){return t.options=i({},t.defaultOptions),this._setLayerStyle(t,this.options.style),this},setStyle:function(t){return this.eachLayer(function(i){this._setLayerStyle(i,t)},this)},_setLayerStyle:function(t,i){"function"==typeof i&&(i=i(t.feature)),t.setStyle&&t.setStyle(i)}}),on={toGeoJSON:function(t){return qt(this,{type:"Point",coordinates:Ut(this.getLatLng(),t)})}};Xe.include(on),Qe.include(on),$e.include(on),tn.include({toGeoJSON:function(t){var i=!Dt(this._latlngs),e=Vt(this._latlngs,i?1:0,!1,t);return qt(this,{type:(i?"Multi":"")+"LineString",coordinates:e})}}),en.include({toGeoJSON:function(t){var i=!Dt(this._latlngs),e=i&&!Dt(this._latlngs[0]),n=Vt(this._latlngs,e?2:i?1:0,!0,t);return i||(n=[n]),qt(this,{type:(e?"Multi":"")+"Polygon",coordinates:n})}}),Ve.include({toMultiPoint:function(t){var i=[];return this.eachLayer(function(e){i.push(e.toGeoJSON(t).geometry.coordinates)}),qt(this,{type:"MultiPoint",coordinates:i})},toGeoJSON:function(t){var i=this.feature&&this.feature.geometry&&this.feature.geometry.type;if("MultiPoint"===i)return this.toMultiPoint(t);var e="GeometryCollection"===i,n=[];return this.eachLayer(function(i){if(i.toGeoJSON){var o=i.toGeoJSON(t);if(e)n.push(o.geometry);else{var s=Gt(o);"FeatureCollection"===s.type?n.push.apply(n,s.features):n.push(s)}}}),e?qt(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n}}});var sn=Kt,rn=Ue.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(t,i,e){this._url=t,this._bounds=z(i),l(this,e)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(pt(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){ut(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&ct(this._image),this},bringToBack:function(){return this._map&&_t(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=z(t),this._map&&this._reset(),this},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t="IMG"===this._url.tagName,i=this._image=t?this._url:ht("img");pt(i,"leaflet-image-layer"),this._zoomAnimated&&pt(i,"leaflet-zoom-animated"),this.options.className&&pt(i,this.options.className),i.onselectstart=r,i.onmousemove=r,i.onload=e(this.fire,this,"load"),i.onerror=e(this._overlayOnError,this,"error"),this.options.crossOrigin&&(i.crossOrigin=""),this.options.zIndex&&this._updateZIndex(),t?this._url=i.src:(i.src=this._url,i.alt=this.options.alt)},_animateZoom:function(t){var i=this._map.getZoomScale(t.zoom),e=this._map._latLngBoundsToNewLayerBounds(this._bounds,t.zoom,t.center).min;wt(this._image,e,i)},_reset:function(){var t=this._image,i=new P(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),e=i.getSize();Lt(t,i.min),t.style.width=e.x+"px",t.style.height=e.y+"px"},_updateOpacity:function(){vt(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&void 0!==this.options.zIndex&&null!==this.options.zIndex&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var t=this.options.errorOverlayUrl;t&&this._url!==t&&(this._url=t,this._image.src=t)}}),an=rn.extend({options:{autoplay:!0,loop:!0},_initImage:function(){var t="VIDEO"===this._url.tagName,i=this._image=t?this._url:ht("video");if(pt(i,"leaflet-image-layer"),this._zoomAnimated&&pt(i,"leaflet-zoom-animated"),i.onselectstart=r,i.onmousemove=r,i.onloadeddata=e(this.fire,this,"load"),t){for(var n=i.getElementsByTagName("source"),o=[],s=0;s<n.length;s++)o.push(n[s].src);this._url=n.length>0?o:[i.src]}else{ei(this._url)||(this._url=[this._url]),i.autoplay=!!this.options.autoplay,i.loop=!!this.options.loop;for(var a=0;a<this._url.length;a++){var h=ht("source");h.src=this._url[a],i.appendChild(h)}}}}),hn=Ue.extend({options:{offset:[0,7],className:"",pane:"popupPane"},initialize:function(t,i){l(this,t),this._source=i},onAdd:function(t){this._zoomAnimated=t._zoomAnimated,this._container||this._initLayout(),t._fadeAnimated&&vt(this._container,0),clearTimeout(this._removeTimeout),this.getPane().appendChild(this._container),this.update(),t._fadeAnimated&&vt(this._container,1),this.bringToFront()},onRemove:function(t){t._fadeAnimated?(vt(this._container,0),this._removeTimeout=setTimeout(e(ut,void 0,this._container),200)):ut(this._container)},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=C(t),this._map&&(this._updatePosition(),this._adjustPan()),this},getContent:function(){return this._content},setContent:function(t){return this._content=t,this.update(),this},getElement:function(){return this._container},update:function(){this._map&&(this._container.style.visibility="hidden",this._updateContent(),this._updateLayout(),this._updatePosition(),this._container.style.visibility="",this._adjustPan())},getEvents:function(){var t={zoom:this._updatePosition,viewreset:this._updatePosition};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},isOpen:function(){return!!this._map&&this._map.hasLayer(this)},bringToFront:function(){return this._map&&ct(this._container),this},bringToBack:function(){return this._map&&_t(this._container),this},_updateContent:function(){if(this._content){var t=this._contentNode,i="function"==typeof this._content?this._content(this._source||this):this._content;if("string"==typeof i)t.innerHTML=i;else{for(;t.hasChildNodes();)t.removeChild(t.firstChild);t.appendChild(i)}this.fire("contentupdate")}},_updatePosition:function(){if(this._map){var t=this._map.latLngToLayerPoint(this._latlng),i=w(this.options.offset),e=this._getAnchor();this._zoomAnimated?Lt(this._container,t.add(e)):i=i.add(t).add(e);var n=this._containerBottom=-i.y,o=this._containerLeft=-Math.round(this._containerWidth/2)+i.x;this._container.style.bottom=n+"px",this._container.style.left=o+"px"}},_getAnchor:function(){return[0,0]}}),un=hn.extend({options:{maxWidth:300,minWidth:50,maxHeight:null,autoPan:!0,autoPanPaddingTopLeft:null,autoPanPaddingBottomRight:null,autoPanPadding:[5,5],keepInView:!1,closeButton:!0,autoClose:!0,closeOnEscapeKey:!0,className:""},openOn:function(t){return t.openPopup(this),this},onAdd:function(t){hn.prototype.onAdd.call(this,t),t.fire("popupopen",{popup:this}),this._source&&(this._source.fire("popupopen",{popup:this},!0),this._source instanceof Je||this._source.on("preclick",Y))},onRemove:function(t){hn.prototype.onRemove.call(this,t),t.fire("popupclose",{popup:this}),this._source&&(this._source.fire("popupclose",{popup:this},!0),this._source instanceof Je||this._source.off("preclick",Y))},getEvents:function(){var t=hn.prototype.getEvents.call(this);return(void 0!==this.options.closeOnClick?this.options.closeOnClick:this._map.options.closePopupOnClick)&&(t.preclick=this._close),this.options.keepInView&&(t.moveend=this._adjustPan),t},_close:function(){this._map&&this._map.closePopup(this)},_initLayout:function(){var t="leaflet-popup",i=this._container=ht("div",t+" "+(this.options.className||"")+" leaflet-zoom-animated"),e=this._wrapper=ht("div",t+"-content-wrapper",i);if(this._contentNode=ht("div",t+"-content",e),J(e),X(this._contentNode),V(e,"contextmenu",Y),this._tipContainer=ht("div",t+"-tip-container",i),this._tip=ht("div",t+"-tip",this._tipContainer),this.options.closeButton){var n=this._closeButton=ht("a",t+"-close-button",i);n.href="#close",n.innerHTML="×",V(n,"click",this._onCloseButtonClick,this)}},_updateLayout:function(){var t=this._contentNode,i=t.style;i.width="",i.whiteSpace="nowrap";var e=t.offsetWidth;e=Math.min(e,this.options.maxWidth),e=Math.max(e,this.options.minWidth),i.width=e+1+"px",i.whiteSpace="",i.height="";var n=t.offsetHeight,o=this.options.maxHeight;o&&n>o?(i.height=o+"px",pt(t,"leaflet-popup-scrolled")):mt(t,"leaflet-popup-scrolled"),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),e=this._getAnchor();Lt(this._container,i.add(e))},_adjustPan:function(){if(!(!this.options.autoPan||this._map._panAnim&&this._map._panAnim._inProgress)){var t=this._map,i=parseInt(at(this._container,"marginBottom"),10)||0,e=this._container.offsetHeight+i,n=this._containerWidth,o=new x(this._containerLeft,-e-this._containerBottom);o._add(Pt(this._container));var s=t.layerPointToContainerPoint(o),r=w(this.options.autoPanPadding),a=w(this.options.autoPanPaddingTopLeft||r),h=w(this.options.autoPanPaddingBottomRight||r),u=t.getSize(),l=0,c=0;s.x+n+h.x>u.x&&(l=s.x+n-u.x+h.x),s.x-l-a.x<0&&(l=s.x-a.x),s.y+e+h.y>u.y&&(c=s.y+e-u.y+h.y),s.y-c-a.y<0&&(c=s.y-a.y),(l||c)&&t.fire("autopanstart").panBy([l,c])}},_onCloseButtonClick:function(t){this._close(),Q(t)},_getAnchor:function(){return w(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}});Le.mergeOptions({closePopupOnClick:!0}),Le.include({openPopup:function(t,i,e){return t instanceof un||(t=new un(e).setContent(t)),i&&t.setLatLng(i),this.hasLayer(t)?this:(this._popup&&this._popup.options.autoClose&&this.closePopup(),this._popup=t,this.addLayer(t))},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&this.removeLayer(t),this}}),Ue.include({bindPopup:function(t,i){return t instanceof un?(l(t,i),this._popup=t,t._source=this):(this._popup&&!i||(this._popup=new un(i,this)),this._popup.setContent(t)),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t,i){if(t instanceof Ue||(i=t,t=this),t instanceof qe)for(var e in this._layers){t=this._layers[e];break}return i||(i=t.getCenter?t.getCenter():t.getLatLng()),this._popup&&this._map&&(this._popup._source=t,this._popup.update(),this._map.openPopup(this._popup,i)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(t){return this._popup&&(this._popup._map?this.closePopup():this.openPopup(t)),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var i=t.layer||t.target;this._popup&&this._map&&(Q(t),i instanceof Je?this.openPopup(t.layer||t.target,t.latlng):this._map.hasLayer(this._popup)&&this._popup._source===i?this.closePopup():this.openPopup(i,t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}});var ln=hn.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,interactive:!1,opacity:.9},onAdd:function(t){hn.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&this._source.fire("tooltipopen",{tooltip:this},!0)},onRemove:function(t){hn.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&this._source.fire("tooltipclose",{tooltip:this},!0)},getEvents:function(){var t=hn.prototype.getEvents.call(this);return Vi&&!this.options.permanent&&(t.preclick=this._close),t},_close:function(){this._map&&this._map.closeTooltip(this)},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=ht("div",t)},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var i=this._map,e=this._container,n=i.latLngToContainerPoint(i.getCenter()),o=i.layerPointToContainerPoint(t),s=this.options.direction,r=e.offsetWidth,a=e.offsetHeight,h=w(this.options.offset),u=this._getAnchor();"top"===s?t=t.add(w(-r/2+h.x,-a+h.y+u.y,!0)):"bottom"===s?t=t.subtract(w(r/2-h.x,-h.y,!0)):"center"===s?t=t.subtract(w(r/2+h.x,a/2-u.y+h.y,!0)):"right"===s||"auto"===s&&o.x<n.x?(s="right",t=t.add(w(h.x+u.x,u.y-a/2+h.y,!0))):(s="left",t=t.subtract(w(r+u.x-h.x,a/2-u.y-h.y,!0))),mt(e,"leaflet-tooltip-right"),mt(e,"leaflet-tooltip-left"),mt(e,"leaflet-tooltip-top"),mt(e,"leaflet-tooltip-bottom"),pt(e,"leaflet-tooltip-"+s),Lt(e,t)},_updatePosition:function(){var t=this._map.latLngToLayerPoint(this._latlng);this._setPosition(t)},setOpacity:function(t){this.options.opacity=t,this._container&&vt(this._container,t)},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);this._setPosition(i)},_getAnchor:function(){return w(this._source&&this._source._getTooltipAnchor&&!this.options.sticky?this._source._getTooltipAnchor():[0,0])}});Le.include({openTooltip:function(t,i,e){return t instanceof ln||(t=new ln(e).setContent(t)),i&&t.setLatLng(i),this.hasLayer(t)?this:this.addLayer(t)},closeTooltip:function(t){return t&&this.removeLayer(t),this}}),Ue.include({bindTooltip:function(t,i){return t instanceof ln?(l(t,i),this._tooltip=t,t._source=this):(this._tooltip&&!i||(this._tooltip=new ln(i,this)),this._tooltip.setContent(t)),this._initTooltipInteractions(),this._tooltip.options.permanent&&this._map&&this._map.hasLayer(this)&&this.openTooltip(),this},unbindTooltip:function(){return this._tooltip&&(this._initTooltipInteractions(!0),this.closeTooltip(),this._tooltip=null),this},_initTooltipInteractions:function(t){if(t||!this._tooltipHandlersAdded){var i=t?"off":"on",e={remove:this.closeTooltip,move:this._moveTooltip};this._tooltip.options.permanent?e.add=this._openTooltip:(e.mouseover=this._openTooltip,e.mouseout=this.closeTooltip,this._tooltip.options.sticky&&(e.mousemove=this._moveTooltip),Vi&&(e.click=this._openTooltip)),this[i](e),this._tooltipHandlersAdded=!t}},openTooltip:function(t,i){if(t instanceof Ue||(i=t,t=this),t instanceof qe)for(var e in this._layers){t=this._layers[e];break}return i||(i=t.getCenter?t.getCenter():t.getLatLng()),this._tooltip&&this._map&&(this._tooltip._source=t,this._tooltip.update(),this._map.openTooltip(this._tooltip,i),this._tooltip.options.interactive&&this._tooltip._container&&(pt(this._tooltip._container,"leaflet-clickable"),this.addInteractiveTarget(this._tooltip._container))),this},closeTooltip:function(){return this._tooltip&&(this._tooltip._close(),this._tooltip.options.interactive&&this._tooltip._container&&(mt(this._tooltip._container,"leaflet-clickable"),this.removeInteractiveTarget(this._tooltip._container))),this},toggleTooltip:function(t){return this._tooltip&&(this._tooltip._map?this.closeTooltip():this.openTooltip(t)),this},isTooltipOpen:function(){return this._tooltip.isOpen()},setTooltipContent:function(t){return this._tooltip&&this._tooltip.setContent(t),this},getTooltip:function(){return this._tooltip},_openTooltip:function(t){var i=t.layer||t.target;this._tooltip&&this._map&&this.openTooltip(i,this._tooltip.options.sticky?t.latlng:void 0)},_moveTooltip:function(t){var i,e,n=t.latlng;this._tooltip.options.sticky&&t.originalEvent&&(i=this._map.mouseEventToContainerPoint(t.originalEvent),e=this._map.containerPointToLayerPoint(i),n=this._map.layerPointToLatLng(e)),this._tooltip.setLatLng(n)}});var cn=Ge.extend({options:{iconSize:[12,12],html:!1,bgPos:null,className:"leaflet-div-icon"},createIcon:function(t){var i=t&&"DIV"===t.tagName?t:document.createElement("div"),e=this.options;if(i.innerHTML=!1!==e.html?e.html:"",e.bgPos){var n=w(e.bgPos);i.style.backgroundPosition=-n.x+"px "+-n.y+"px"}return this._setIconStyles(i,"icon"),i},createShadow:function(){return null}});Ge.Default=Ke;var _n=Ue.extend({options:{tileSize:256,opacity:1,updateWhenIdle:ji,updateWhenZooming:!0,updateInterval:200,zIndex:1,bounds:null,minZoom:0,maxZoom:void 0,maxNativeZoom:void 0,minNativeZoom:void 0,noWrap:!1,pane:"tilePane",className:"",keepBuffer:2},initialize:function(t){l(this,t)},onAdd:function(){this._initContainer(),this._levels={},this._tiles={},this._resetView(),this._update()},beforeAdd:function(t){t._addZoomLimit(this)},onRemove:function(t){this._removeAllTiles(),ut(this._container),t._removeZoomLimit(this),this._container=null,this._tileZoom=void 0},bringToFront:function(){return this._map&&(ct(this._container),this._setAutoZIndex(Math.max)),this},bringToBack:function(){return this._map&&(_t(this._container),this._setAutoZIndex(Math.min)),this},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},isLoading:function(){return this._loading},redraw:function(){return this._map&&(this._removeAllTiles(),this._update()),this},getEvents:function(){var t={viewprereset:this._invalidateAll,viewreset:this._resetView,zoom:this._resetView,moveend:this._onMoveEnd};return this.options.updateWhenIdle||(this._onMove||(this._onMove=o(this._onMoveEnd,this.options.updateInterval,this)),t.move=this._onMove),this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},createTile:function(){return document.createElement("div")},getTileSize:function(){var t=this.options.tileSize;return t instanceof x?t:new x(t,t)},_updateZIndex:function(){this._container&&void 0!==this.options.zIndex&&null!==this.options.zIndex&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t){for(var i,e=this.getPane().children,n=-t(-1/0,1/0),o=0,s=e.length;o<s;o++)i=e[o].style.zIndex,e[o]!==this._container&&i&&(n=t(n,+i));isFinite(n)&&(this.options.zIndex=n+t(-1,1),this._updateZIndex())},_updateOpacity:function(){if(this._map&&!Li){vt(this._container,this.options.opacity);var t=+new Date,i=!1,e=!1;for(var n in this._tiles){var o=this._tiles[n];if(o.current&&o.loaded){var s=Math.min(1,(t-o.loaded)/200);vt(o.el,s),s<1?i=!0:(o.active?e=!0:this._onOpaqueTile(o),o.active=!0)}}e&&!this._noPrune&&this._pruneTiles(),i&&(g(this._fadeFrame),this._fadeFrame=f(this._updateOpacity,this))}},_onOpaqueTile:r,_initContainer:function(){this._container||(this._container=ht("div","leaflet-layer "+(this.options.className||"")),this._updateZIndex(),this.options.opacity<1&&this._updateOpacity(),this.getPane().appendChild(this._container))},_updateLevels:function(){var t=this._tileZoom,i=this.options.maxZoom;if(void 0!==t){for(var e in this._levels)this._levels[e].el.children.length||e===t?(this._levels[e].el.style.zIndex=i-Math.abs(t-e),this._onUpdateLevel(e)):(ut(this._levels[e].el),this._removeTilesAtZoom(e),this._onRemoveLevel(e),delete this._levels[e]);var n=this._levels[t],o=this._map;return n||((n=this._levels[t]={}).el=ht("div","leaflet-tile-container leaflet-zoom-animated",this._container),n.el.style.zIndex=i,n.origin=o.project(o.unproject(o.getPixelOrigin()),t).round(),n.zoom=t,this._setZoomTransform(n,o.getCenter(),o.getZoom()),n.el.offsetWidth,this._onCreateLevel(n)),this._level=n,n}},_onUpdateLevel:r,_onRemoveLevel:r,_onCreateLevel:r,_pruneTiles:function(){if(this._map){var t,i,e=this._map.getZoom();if(e>this.options.maxZoom||e<this.options.minZoom)this._removeAllTiles();else{for(t in this._tiles)(i=this._tiles[t]).retain=i.current;for(t in this._tiles)if((i=this._tiles[t]).current&&!i.active){var n=i.coords;this._retainParent(n.x,n.y,n.z,n.z-5)||this._retainChildren(n.x,n.y,n.z,n.z+2)}for(t in this._tiles)this._tiles[t].retain||this._removeTile(t)}}},_removeTilesAtZoom:function(t){for(var i in this._tiles)this._tiles[i].coords.z===t&&this._removeTile(i)},_removeAllTiles:function(){for(var t in this._tiles)this._removeTile(t)},_invalidateAll:function(){for(var t in this._levels)ut(this._levels[t].el),this._onRemoveLevel(t),delete this._levels[t];this._removeAllTiles(),this._tileZoom=void 0},_retainParent:function(t,i,e,n){var o=Math.floor(t/2),s=Math.floor(i/2),r=e-1,a=new x(+o,+s);a.z=+r;var h=this._tileCoordsToKey(a),u=this._tiles[h];return u&&u.active?(u.retain=!0,!0):(u&&u.loaded&&(u.retain=!0),r>n&&this._retainParent(o,s,r,n))},_retainChildren:function(t,i,e,n){for(var o=2*t;o<2*t+2;o++)for(var s=2*i;s<2*i+2;s++){var r=new x(o,s);r.z=e+1;var a=this._tileCoordsToKey(r),h=this._tiles[a];h&&h.active?h.retain=!0:(h&&h.loaded&&(h.retain=!0),e+1<n&&this._retainChildren(o,s,e+1,n))}},_resetView:function(t){var i=t&&(t.pinch||t.flyTo);this._setView(this._map.getCenter(),this._map.getZoom(),i,i)},_animateZoom:function(t){this._setView(t.center,t.zoom,!0,t.noUpdate)},_clampZoom:function(t){var i=this.options;return void 0!==i.minNativeZoom&&t<i.minNativeZoom?i.minNativeZoom:void 0!==i.maxNativeZoom&&i.maxNativeZoom<t?i.maxNativeZoom:t},_setView:function(t,i,e,n){var o=this._clampZoom(Math.round(i));(void 0!==this.options.maxZoom&&o>this.options.maxZoom||void 0!==this.options.minZoom&&o<this.options.minZoom)&&(o=void 0);var s=this.options.updateWhenZooming&&o!==this._tileZoom;n&&!s||(this._tileZoom=o,this._abortLoading&&this._abortLoading(),this._updateLevels(),this._resetGrid(),void 0!==o&&this._update(t),e||this._pruneTiles(),this._noPrune=!!e),this._setZoomTransforms(t,i)},_setZoomTransforms:function(t,i){for(var e in this._levels)this._setZoomTransform(this._levels[e],t,i)},_setZoomTransform:function(t,i,e){var n=this._map.getZoomScale(e,t.zoom),o=t.origin.multiplyBy(n).subtract(this._map._getNewPixelOrigin(i,e)).round();Ni?wt(t.el,o,n):Lt(t.el,o)},_resetGrid:function(){var t=this._map,i=t.options.crs,e=this._tileSize=this.getTileSize(),n=this._tileZoom,o=this._map.getPixelWorldBounds(this._tileZoom);o&&(this._globalTileRange=this._pxBoundsToTileRange(o)),this._wrapX=i.wrapLng&&!this.options.noWrap&&[Math.floor(t.project([0,i.wrapLng[0]],n).x/e.x),Math.ceil(t.project([0,i.wrapLng[1]],n).x/e.y)],this._wrapY=i.wrapLat&&!this.options.noWrap&&[Math.floor(t.project([i.wrapLat[0],0],n).y/e.x),Math.ceil(t.project([i.wrapLat[1],0],n).y/e.y)]},_onMoveEnd:function(){this._map&&!this._map._animatingZoom&&this._update()},_getTiledPixelBounds:function(t){var i=this._map,e=i._animatingZoom?Math.max(i._animateToZoom,i.getZoom()):i.getZoom(),n=i.getZoomScale(e,this._tileZoom),o=i.project(t,this._tileZoom).floor(),s=i.getSize().divideBy(2*n);return new P(o.subtract(s),o.add(s))},_update:function(t){var i=this._map;if(i){var e=this._clampZoom(i.getZoom());if(void 0===t&&(t=i.getCenter()),void 0!==this._tileZoom){var n=this._getTiledPixelBounds(t),o=this._pxBoundsToTileRange(n),s=o.getCenter(),r=[],a=this.options.keepBuffer,h=new P(o.getBottomLeft().subtract([a,-a]),o.getTopRight().add([a,-a]));if(!(isFinite(o.min.x)&&isFinite(o.min.y)&&isFinite(o.max.x)&&isFinite(o.max.y)))throw new Error("Attempted to load an infinite number of tiles");for(var u in this._tiles){var l=this._tiles[u].coords;l.z===this._tileZoom&&h.contains(new x(l.x,l.y))||(this._tiles[u].current=!1)}if(Math.abs(e-this._tileZoom)>1)this._setView(t,e);else{for(var c=o.min.y;c<=o.max.y;c++)for(var _=o.min.x;_<=o.max.x;_++){var d=new x(_,c);if(d.z=this._tileZoom,this._isValidTile(d)){var p=this._tiles[this._tileCoordsToKey(d)];p?p.current=!0:r.push(d)}}if(r.sort(function(t,i){return t.distanceTo(s)-i.distanceTo(s)}),0!==r.length){this._loading||(this._loading=!0,this.fire("loading"));var m=document.createDocumentFragment();for(_=0;_<r.length;_++)this._addTile(r[_],m);this._level.el.appendChild(m)}}}}},_isValidTile:function(t){var i=this._map.options.crs;if(!i.infinite){var e=this._globalTileRange;if(!i.wrapLng&&(t.x<e.min.x||t.x>e.max.x)||!i.wrapLat&&(t.y<e.min.y||t.y>e.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return z(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var i=this._map,e=this.getTileSize(),n=t.scaleBy(e),o=n.add(e);return[i.unproject(n,t.z),i.unproject(o,t.z)]},_tileCoordsToBounds:function(t){var i=this._tileCoordsToNwSe(t),e=new T(i[0],i[1]);return this.options.noWrap||(e=this._map.wrapLatLngBounds(e)),e},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var i=t.split(":"),e=new x(+i[0],+i[1]);return e.z=+i[2],e},_removeTile:function(t){var i=this._tiles[t];i&&(Ci||i.el.setAttribute("src",ni),ut(i.el),delete this._tiles[t],this.fire("tileunload",{tile:i.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){pt(t,"leaflet-tile");var i=this.getTileSize();t.style.width=i.x+"px",t.style.height=i.y+"px",t.onselectstart=r,t.onmousemove=r,Li&&this.options.opacity<1&&vt(t,this.options.opacity),Ti&&!zi&&(t.style.WebkitBackfaceVisibility="hidden")},_addTile:function(t,i){var n=this._getTilePos(t),o=this._tileCoordsToKey(t),s=this.createTile(this._wrapCoords(t),e(this._tileReady,this,t));this._initTile(s),this.createTile.length<2&&f(e(this._tileReady,this,t,null,s)),Lt(s,n),this._tiles[o]={el:s,coords:t,current:!0},i.appendChild(s),this.fire("tileloadstart",{tile:s,coords:t})},_tileReady:function(t,i,n){if(this._map){i&&this.fire("tileerror",{error:i,tile:n,coords:t});var o=this._tileCoordsToKey(t);(n=this._tiles[o])&&(n.loaded=+new Date,this._map._fadeAnimated?(vt(n.el,0),g(this._fadeFrame),this._fadeFrame=f(this._updateOpacity,this)):(n.active=!0,this._pruneTiles()),i||(pt(n.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:n.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Li||!this._map._fadeAnimated?f(this._pruneTiles,this):setTimeout(e(this._pruneTiles,this),250)))}},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var i=new x(this._wrapX?s(t.x,this._wrapX):t.x,this._wrapY?s(t.y,this._wrapY):t.y);return i.z=t.z,i},_pxBoundsToTileRange:function(t){var i=this.getTileSize();return new P(t.min.unscaleBy(i).floor(),t.max.unscaleBy(i).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}}),dn=_n.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1},initialize:function(t,i){this._url=t,(i=l(this,i)).detectRetina&&Ki&&i.maxZoom>0&&(i.tileSize=Math.floor(i.tileSize/2),i.zoomReverse?(i.zoomOffset--,i.minZoom++):(i.zoomOffset++,i.maxZoom--),i.minZoom=Math.max(0,i.minZoom)),"string"==typeof i.subdomains&&(i.subdomains=i.subdomains.split("")),Ti||this.on("tileunload",this._onTileRemove)},setUrl:function(t,i){return this._url=t,i||this.redraw(),this},createTile:function(t,i){var n=document.createElement("img");return V(n,"load",e(this._tileOnLoad,this,i,n)),V(n,"error",e(this._tileOnError,this,i,n)),this.options.crossOrigin&&(n.crossOrigin=""),n.alt="",n.setAttribute("role","presentation"),n.src=this.getTileUrl(t),n},getTileUrl:function(t){var e={r:Ki?"@2x":"",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var n=this._globalTileRange.max.y-t.y;this.options.tms&&(e.y=n),e["-y"]=n}return _(this._url,i(e,this.options))},_tileOnLoad:function(t,i){Li?setTimeout(e(t,this,null,i),0):t(null,i)},_tileOnError:function(t,i,e){var n=this.options.errorTileUrl;n&&i.getAttribute("src")!==n&&(i.src=n),t(e,i)},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this._tileZoom,i=this.options.maxZoom,e=this.options.zoomReverse,n=this.options.zoomOffset;return e&&(t=i-t),t+n},_getSubdomain:function(t){var i=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[i]},_abortLoading:function(){var t,i;for(t in this._tiles)this._tiles[t].coords.z!==this._tileZoom&&((i=this._tiles[t].el).onload=r,i.onerror=r,i.complete||(i.src=ni,ut(i),delete this._tiles[t]))}}),pn=dn.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var n=i({},this.defaultWmsParams);for(var o in e)o in this.options||(n[o]=e[o]);var s=(e=l(this,e)).detectRetina&&Ki?2:1,r=this.getTileSize();n.width=r.x*s,n.height=r.y*s,this.wmsParams=n},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var i=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[i]=this._crs.code,dn.prototype.onAdd.call(this,t)},getTileUrl:function(t){var i=this._tileCoordsToNwSe(t),e=this._crs,n=b(e.project(i[0]),e.project(i[1])),o=n.min,s=n.max,r=(this._wmsVersion>=1.3&&this._crs===He?[o.y,o.x,s.y,s.x]:[o.x,o.y,s.x,s.y]).join(","),a=L.TileLayer.prototype.getTileUrl.call(this,t);return a+c(this.wmsParams,a,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+r},setParams:function(t,e){return i(this.wmsParams,t),e||this.redraw(),this}});dn.WMS=pn,Yt.wms=function(t,i){return new pn(t,i)};var mn=Ue.extend({options:{padding:.1,tolerance:0},initialize:function(t){l(this,t),n(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&pt(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var t={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(t,i){var e=this._map.getZoomScale(i,this._zoom),n=Pt(this._container),o=this._map.getSize().multiplyBy(.5+this.options.padding),s=this._map.project(this._center,i),r=this._map.project(t,i).subtract(s),a=o.multiplyBy(-e).add(n).add(o).subtract(r);Ni?wt(this._container,a,e):Lt(this._container,a)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var t in this._layers)this._layers[t]._reset()},_onZoomEnd:function(){for(var t in this._layers)this._layers[t]._project()},_updatePaths:function(){for(var t in this._layers)this._layers[t]._update()},_update:function(){var t=this.options.padding,i=this._map.getSize(),e=this._map.containerPointToLayerPoint(i.multiplyBy(-t)).round();this._bounds=new P(e,e.add(i.multiplyBy(1+2*t)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),fn=mn.extend({getEvents:function(){var t=mn.prototype.getEvents.call(this);return t.viewprereset=this._onViewPreReset,t},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){mn.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var t=this._container=document.createElement("canvas");V(t,"mousemove",o(this._onMouseMove,32,this),this),V(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this),V(t,"mouseout",this._handleMouseOut,this),this._ctx=t.getContext("2d")},_destroyContainer:function(){delete this._ctx,ut(this._container),q(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){this._redrawBounds=null;for(var t in this._layers)this._layers[t]._update();this._redraw()}},_update:function(){if(!this._map._animatingZoom||!this._bounds){this._drawnLayers={},mn.prototype._update.call(this);var t=this._bounds,i=this._container,e=t.getSize(),n=Ki?2:1;Lt(i,t.min),i.width=n*e.x,i.height=n*e.y,i.style.width=e.x+"px",i.style.height=e.y+"px",Ki&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire("update")}},_reset:function(){mn.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(t){this._updateDashArray(t),this._layers[n(t)]=t;var i=t._order={layer:t,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=i),this._drawLast=i,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(t){this._requestRedraw(t)},_removePath:function(t){var i=t._order,e=i.next,n=i.prev;e?e.prev=n:this._drawLast=n,n?n.next=e:this._drawFirst=e,delete t._order,delete this._layers[L.stamp(t)],this._requestRedraw(t)},_updatePath:function(t){this._extendRedrawBounds(t),t._project(),t._update(),this._requestRedraw(t)},_updateStyle:function(t){this._updateDashArray(t),this._requestRedraw(t)},_updateDashArray:function(t){if(t.options.dashArray){var i,e=t.options.dashArray.split(","),n=[];for(i=0;i<e.length;i++)n.push(Number(e[i]));t.options._dashArray=n}},_requestRedraw:function(t){this._map&&(this._extendRedrawBounds(t),this._redrawRequest=this._redrawRequest||f(this._redraw,this))},_extendRedrawBounds:function(t){if(t._pxBounds){var i=(t.options.weight||0)+1;this._redrawBounds=this._redrawBounds||new P,this._redrawBounds.extend(t._pxBounds.min.subtract([i,i])),this._redrawBounds.extend(t._pxBounds.max.add([i,i]))}},_redraw:function(){this._redrawRequest=null,this._redrawBounds&&(this._redrawBounds.min._floor(),this._redrawBounds.max._ceil()),this._clear(),this._draw(),this._redrawBounds=null},_clear:function(){var t=this._redrawBounds;if(t){var i=t.getSize();this._ctx.clearRect(t.min.x,t.min.y,i.x,i.y)}else this._ctx.clearRect(0,0,this._container.width,this._container.height)},_draw:function(){var t,i=this._redrawBounds;if(this._ctx.save(),i){var e=i.getSize();this._ctx.beginPath(),this._ctx.rect(i.min.x,i.min.y,e.x,e.y),this._ctx.clip()}this._drawing=!0;for(var n=this._drawFirst;n;n=n.next)t=n.layer,(!i||t._pxBounds&&t._pxBounds.intersects(i))&&t._updatePath();this._drawing=!1,this._ctx.restore()},_updatePoly:function(t,i){if(this._drawing){var e,n,o,s,r=t._parts,a=r.length,h=this._ctx;if(a){for(this._drawnLayers[t._leaflet_id]=t,h.beginPath(),e=0;e<a;e++){for(n=0,o=r[e].length;n<o;n++)s=r[e][n],h[n?"lineTo":"moveTo"](s.x,s.y);i&&h.closePath()}this._fillStroke(h,t)}}},_updateCircle:function(t){if(this._drawing&&!t._empty()){var i=t._point,e=this._ctx,n=Math.max(Math.round(t._radius),1),o=(Math.max(Math.round(t._radiusY),1)||n)/n;this._drawnLayers[t._leaflet_id]=t,1!==o&&(e.save(),e.scale(1,o)),e.beginPath(),e.arc(i.x,i.y/o,n,0,2*Math.PI,!1),1!==o&&e.restore(),this._fillStroke(e,t)}},_fillStroke:function(t,i){var e=i.options;e.fill&&(t.globalAlpha=e.fillOpacity,t.fillStyle=e.fillColor||e.color,t.fill(e.fillRule||"evenodd")),e.stroke&&0!==e.weight&&(t.setLineDash&&t.setLineDash(i.options&&i.options._dashArray||[]),t.globalAlpha=e.opacity,t.lineWidth=e.weight,t.strokeStyle=e.color,t.lineCap=e.lineCap,t.lineJoin=e.lineJoin,t.stroke())},_onClick:function(t){for(var i,e,n=this._map.mouseEventToLayerPoint(t),o=this._drawFirst;o;o=o.next)(i=o.layer).options.interactive&&i._containsPoint(n)&&!this._map._draggableMoved(i)&&(e=i);e&&(et(t),this._fireEvent([e],t))},_onMouseMove:function(t){if(this._map&&!this._map.dragging.moving()&&!this._map._animatingZoom){var i=this._map.mouseEventToLayerPoint(t);this._handleMouseHover(t,i)}},_handleMouseOut:function(t){var i=this._hoveredLayer;i&&(mt(this._container,"leaflet-interactive"),this._fireEvent([i],t,"mouseout"),this._hoveredLayer=null)},_handleMouseHover:function(t,i){for(var e,n,o=this._drawFirst;o;o=o.next)(e=o.layer).options.interactive&&e._containsPoint(i)&&(n=e);n!==this._hoveredLayer&&(this._handleMouseOut(t),n&&(pt(this._container,"leaflet-interactive"),this._fireEvent([n],t,"mouseover"),this._hoveredLayer=n)),this._hoveredLayer&&this._fireEvent([this._hoveredLayer],t)},_fireEvent:function(t,i,e){this._map._fireDOMEvent(i,e||i.type,t)},_bringToFront:function(t){var i=t._order,e=i.next,n=i.prev;e&&(e.prev=n,n?n.next=e:e&&(this._drawFirst=e),i.prev=this._drawLast,this._drawLast.next=i,i.next=null,this._drawLast=i,this._requestRedraw(t))},_bringToBack:function(t){var i=t._order,e=i.next,n=i.prev;n&&(n.next=e,e?e.prev=n:n&&(this._drawLast=n),i.prev=null,i.next=this._drawFirst,this._drawFirst.prev=i,this._drawFirst=i,this._requestRedraw(t))}}),gn=function(){try{return document.namespaces.add("lvml","urn:schemas-microsoft-com:vml"),function(t){return document.createElement("<lvml:"+t+' class="lvml">')}}catch(t){return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}(),vn={_initContainer:function(){this._container=ht("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(mn.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var i=t._container=gn("shape");pt(i,"leaflet-vml-shape "+(this.options.className||"")),i.coordsize="1 1",t._path=gn("path"),i.appendChild(t._path),this._updateStyle(t),this._layers[n(t)]=t},_addPath:function(t){var i=t._container;this._container.appendChild(i),t.options.interactive&&t.addInteractiveTarget(i)},_removePath:function(t){var i=t._container;ut(i),t.removeInteractiveTarget(i),delete this._layers[n(t)]},_updateStyle:function(t){var i=t._stroke,e=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(i||(i=t._stroke=gn("stroke")),o.appendChild(i),i.weight=n.weight+"px",i.color=n.color,i.opacity=n.opacity,n.dashArray?i.dashStyle=ei(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):i.dashStyle="",i.endcap=n.lineCap.replace("butt","flat"),i.joinstyle=n.lineJoin):i&&(o.removeChild(i),t._stroke=null),n.fill?(e||(e=t._fill=gn("fill")),o.appendChild(e),e.color=n.fillColor||n.color,e.opacity=n.fillOpacity):e&&(o.removeChild(e),t._fill=null)},_updateCircle:function(t){var i=t._point.round(),e=Math.round(t._radius),n=Math.round(t._radiusY||e);this._setPath(t,t._empty()?"M0 0":"AL "+i.x+","+i.y+" "+e+","+n+" 0,23592600")},_setPath:function(t,i){t._path.v=i},_bringToFront:function(t){ct(t._container)},_bringToBack:function(t){_t(t._container)}},yn=Ji?gn:E,xn=mn.extend({getEvents:function(){var t=mn.prototype.getEvents.call(this);return t.zoomstart=this._onZoomStart,t},_initContainer:function(){this._container=yn("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=yn("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){ut(this._container),q(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_onZoomStart:function(){this._update()},_update:function(){if(!this._map._animatingZoom||!this._bounds){mn.prototype._update.call(this);var t=this._bounds,i=t.getSize(),e=this._container;this._svgSize&&this._svgSize.equals(i)||(this._svgSize=i,e.setAttribute("width",i.x),e.setAttribute("height",i.y)),Lt(e,t.min),e.setAttribute("viewBox",[t.min.x,t.min.y,i.x,i.y].join(" ")),this.fire("update")}},_initPath:function(t){var i=t._path=yn("path");t.options.className&&pt(i,t.options.className),t.options.interactive&&pt(i,"leaflet-interactive"),this._updateStyle(t),this._layers[n(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){ut(t._path),t.removeInteractiveTarget(t._path),delete this._layers[n(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var i=t._path,e=t.options;i&&(e.stroke?(i.setAttribute("stroke",e.color),i.setAttribute("stroke-opacity",e.opacity),i.setAttribute("stroke-width",e.weight),i.setAttribute("stroke-linecap",e.lineCap),i.setAttribute("stroke-linejoin",e.lineJoin),e.dashArray?i.setAttribute("stroke-dasharray",e.dashArray):i.removeAttribute("stroke-dasharray"),e.dashOffset?i.setAttribute("stroke-dashoffset",e.dashOffset):i.removeAttribute("stroke-dashoffset")):i.setAttribute("stroke","none"),e.fill?(i.setAttribute("fill",e.fillColor||e.color),i.setAttribute("fill-opacity",e.fillOpacity),i.setAttribute("fill-rule",e.fillRule||"evenodd")):i.setAttribute("fill","none"))},_updatePoly:function(t,i){this._setPath(t,k(t._parts,i))},_updateCircle:function(t){var i=t._point,e=Math.max(Math.round(t._radius),1),n="a"+e+","+(Math.max(Math.round(t._radiusY),1)||e)+" 0 1,0 ",o=t._empty()?"M0 0":"M"+(i.x-e)+","+i.y+n+2*e+",0 "+n+2*-e+",0 ";this._setPath(t,o)},_setPath:function(t,i){t._path.setAttribute("d",i)},_bringToFront:function(t){ct(t._path)},_bringToBack:function(t){_t(t._path)}});Ji&&xn.include(vn),Le.include({getRenderer:function(t){var i=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return i||(i=this._renderer=this.options.preferCanvas&&Xt()||Jt()),this.hasLayer(i)||this.addLayer(i),i},_getPaneRenderer:function(t){if("overlayPane"===t||void 0===t)return!1;var i=this._paneRenderers[t];return void 0===i&&(i=xn&&Jt({pane:t})||fn&&Xt({pane:t}),this._paneRenderers[t]=i),i}});var wn=en.extend({initialize:function(t,i){en.prototype.initialize.call(this,this._boundsToLatLngs(t),i)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=z(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});xn.create=yn,xn.pointsToPath=k,nn.geometryToLayer=Wt,nn.coordsToLatLng=Ht,nn.coordsToLatLngs=Ft,nn.latLngToCoords=Ut,nn.latLngsToCoords=Vt,nn.getFeature=qt,nn.asFeature=Gt,Le.mergeOptions({boxZoom:!0});var Ln=Ze.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){V(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){q(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){ut(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),mi(),bt(),this._startPoint=this._map.mouseEventToContainerPoint(t),V(document,{contextmenu:Q,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=ht("div","leaflet-zoom-box",this._container),pt(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var i=new P(this._point,this._startPoint),e=i.getSize();Lt(this._box,i.min),this._box.style.width=e.x+"px",this._box.style.height=e.y+"px"},_finish:function(){this._moved&&(ut(this._box),mt(this._container,"leaflet-crosshair")),fi(),Tt(),q(document,{contextmenu:Q,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if((1===t.which||1===t.button)&&(this._finish(),this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(e(this._resetState,this),0);var i=new T(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(i).fire("boxzoomend",{boxZoomBounds:i})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}});Le.addInitHook("addHandler","boxZoom",Ln),Le.mergeOptions({doubleClickZoom:!0});var Pn=Ze.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var i=this._map,e=i.getZoom(),n=i.options.zoomDelta,o=t.originalEvent.shiftKey?e-n:e+n;"center"===i.options.doubleClickZoom?i.setZoom(o):i.setZoomAround(t.containerPoint,o)}});Le.addInitHook("addHandler","doubleClickZoom",Pn),Le.mergeOptions({dragging:!0,inertia:!zi,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var bn=Ze.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new Be(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}pt(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){mt(this._map._container,"leaflet-grab"),mt(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t=this._map;if(t._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var i=z(this._map.options.maxBounds);this._offsetLimit=b(this._map.latLngToContainerPoint(i.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(i.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var i=this._lastTime=+new Date,e=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(e),this._times.push(i),this._prunePositions(i)}this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;this._positions.length>1&&t-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),i=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=i.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,i){return t-(t-i)*this._viscosity},_onPreDragLimit:function(){if(this._viscosity&&this._offsetLimit){var t=this._draggable._newPos.subtract(this._draggable._startPos),i=this._offsetLimit;t.x<i.min.x&&(t.x=this._viscousLimit(t.x,i.min.x)),t.y<i.min.y&&(t.y=this._viscousLimit(t.y,i.min.y)),t.x>i.max.x&&(t.x=this._viscousLimit(t.x,i.max.x)),t.y>i.max.y&&(t.y=this._viscousLimit(t.y,i.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,i=Math.round(t/2),e=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-i+e)%t+i-e,s=(n+i+e)%t-i-e,r=Math.abs(o+e)<Math.abs(s+e)?o:s;this._draggable._absPos=this._draggable._newPos.clone(),this._draggable._newPos.x=r},_onDragEnd:function(t){var i=this._map,e=i.options,n=!e.inertia||this._times.length<2;if(i.fire("dragend",t),n)i.fire("moveend");else{this._prunePositions(+new Date);var o=this._lastPos.subtract(this._positions[0]),s=(this._lastTime-this._times[0])/1e3,r=e.easeLinearity,a=o.multiplyBy(r/s),h=a.distanceTo([0,0]),u=Math.min(e.inertiaMaxSpeed,h),l=a.multiplyBy(u/h),c=u/(e.inertiaDeceleration*r),_=l.multiplyBy(-c/2).round();_.x||_.y?(_=i._limitOffset(_,i.options.maxBounds),f(function(){i.panBy(_,{duration:c,easeLinearity:r,noMoveStart:!0,animate:!0})})):i.fire("moveend")}}});Le.addInitHook("addHandler","dragging",bn),Le.mergeOptions({keyboard:!0,keyboardPanDelta:80});var Tn=Ze.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,54,173]},initialize:function(t){this._map=t,this._setPanDelta(t.options.keyboardPanDelta),this._setZoomDelta(t.options.zoomDelta)},addHooks:function(){var t=this._map._container;t.tabIndex<=0&&(t.tabIndex="0"),V(t,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.on({focus:this._addHooks,blur:this._removeHooks},this)},removeHooks:function(){this._removeHooks(),q(this._map._container,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.off({focus:this._addHooks,blur:this._removeHooks},this)},_onMouseDown:function(){if(!this._focused){var t=document.body,i=document.documentElement,e=t.scrollTop||i.scrollTop,n=t.scrollLeft||i.scrollLeft;this._map._container.focus(),window.scrollTo(n,e)}},_onFocus:function(){this._focused=!0,this._map.fire("focus")},_onBlur:function(){this._focused=!1,this._map.fire("blur")},_setPanDelta:function(t){var i,e,n=this._panKeys={},o=this.keyCodes;for(i=0,e=o.left.length;i<e;i++)n[o.left[i]]=[-1*t,0];for(i=0,e=o.right.length;i<e;i++)n[o.right[i]]=[t,0];for(i=0,e=o.down.length;i<e;i++)n[o.down[i]]=[0,t];for(i=0,e=o.up.length;i<e;i++)n[o.up[i]]=[0,-1*t]},_setZoomDelta:function(t){var i,e,n=this._zoomKeys={},o=this.keyCodes;for(i=0,e=o.zoomIn.length;i<e;i++)n[o.zoomIn[i]]=t;for(i=0,e=o.zoomOut.length;i<e;i++)n[o.zoomOut[i]]=-t},_addHooks:function(){V(document,"keydown",this._onKeyDown,this)},_removeHooks:function(){q(document,"keydown",this._onKeyDown,this)},_onKeyDown:function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var i,e=t.keyCode,n=this._map;if(e in this._panKeys){if(n._panAnim&&n._panAnim._inProgress)return;i=this._panKeys[e],t.shiftKey&&(i=w(i).multiplyBy(3)),n.panBy(i),n.options.maxBounds&&n.panInsideBounds(n.options.maxBounds)}else if(e in this._zoomKeys)n.setZoom(n.getZoom()+(t.shiftKey?3:1)*this._zoomKeys[e]);else{if(27!==e||!n._popup||!n._popup.options.closeOnEscapeKey)return;n.closePopup()}Q(t)}}});Le.addInitHook("addHandler","keyboard",Tn),Le.mergeOptions({scrollWheelZoom:!0,wheelDebounceTime:40,wheelPxPerZoomLevel:60});var zn=Ze.extend({addHooks:function(){V(this._map._container,"mousewheel",this._onWheelScroll,this),this._delta=0},removeHooks:function(){q(this._map._container,"mousewheel",this._onWheelScroll,this)},_onWheelScroll:function(t){var i=it(t),n=this._map.options.wheelDebounceTime;this._delta+=i,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date);var o=Math.max(n-(+new Date-this._startTime),0);clearTimeout(this._timer),this._timer=setTimeout(e(this._performZoom,this),o),Q(t)},_performZoom:function(){var t=this._map,i=t.getZoom(),e=this._map.options.zoomSnap||0;t._stop();var n=this._delta/(4*this._map.options.wheelPxPerZoomLevel),o=4*Math.log(2/(1+Math.exp(-Math.abs(n))))/Math.LN2,s=e?Math.ceil(o/e)*e:o,r=t._limitZoom(i+(this._delta>0?s:-s))-i;this._delta=0,this._startTime=null,r&&("center"===t.options.scrollWheelZoom?t.setZoom(i+r):t.setZoomAround(this._lastMousePos,i+r))}});Le.addInitHook("addHandler","scrollWheelZoom",zn),Le.mergeOptions({tap:!0,tapTolerance:15});var Mn=Ze.extend({addHooks:function(){V(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){q(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(t.touches){if($(t),this._fireClick=!0,t.touches.length>1)return this._fireClick=!1,void clearTimeout(this._holdTimeout);var i=t.touches[0],n=i.target;this._startPos=this._newPos=new x(i.clientX,i.clientY),n.tagName&&"a"===n.tagName.toLowerCase()&&pt(n,"leaflet-active"),this._holdTimeout=setTimeout(e(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent("contextmenu",i))},this),1e3),this._simulateEvent("mousedown",i),V(document,{touchmove:this._onMove,touchend:this._onUp},this)}},_onUp:function(t){if(clearTimeout(this._holdTimeout),q(document,{touchmove:this._onMove,touchend:this._onUp},this),this._fireClick&&t&&t.changedTouches){var i=t.changedTouches[0],e=i.target;e&&e.tagName&&"a"===e.tagName.toLowerCase()&&mt(e,"leaflet-active"),this._simulateEvent("mouseup",i),this._isTapValid()&&this._simulateEvent("click",i)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(t){var i=t.touches[0];this._newPos=new x(i.clientX,i.clientY),this._simulateEvent("mousemove",i)},_simulateEvent:function(t,i){var e=document.createEvent("MouseEvents");e._simulated=!0,i.target._simulatedClick=!0,e.initMouseEvent(t,!0,!0,window,1,i.screenX,i.screenY,i.clientX,i.clientY,!1,!1,!1,!1,0,null),i.target.dispatchEvent(e)}});Vi&&!Ui&&Le.addInitHook("addHandler","tap",Mn),Le.mergeOptions({touchZoom:Vi&&!zi,bounceAtZoomLimits:!0});var Cn=Ze.extend({addHooks:function(){pt(this._map._container,"leaflet-touch-zoom"),V(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){mt(this._map._container,"leaflet-touch-zoom"),q(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var i=this._map;if(t.touches&&2===t.touches.length&&!i._animatingZoom&&!this._zooming){var e=i.mouseEventToContainerPoint(t.touches[0]),n=i.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=i.getSize()._divideBy(2),this._startLatLng=i.containerPointToLatLng(this._centerPoint),"center"!==i.options.touchZoom&&(this._pinchStartLatLng=i.containerPointToLatLng(e.add(n)._divideBy(2))),this._startDist=e.distanceTo(n),this._startZoom=i.getZoom(),this._moved=!1,this._zooming=!0,i._stop(),V(document,"touchmove",this._onTouchMove,this),V(document,"touchend",this._onTouchEnd,this),$(t)}},_onTouchMove:function(t){if(t.touches&&2===t.touches.length&&this._zooming){var i=this._map,n=i.mouseEventToContainerPoint(t.touches[0]),o=i.mouseEventToContainerPoint(t.touches[1]),s=n.distanceTo(o)/this._startDist;if(this._zoom=i.getScaleZoom(s,this._startZoom),!i.options.bounceAtZoomLimits&&(this._zoom<i.getMinZoom()&&s<1||this._zoom>i.getMaxZoom()&&s>1)&&(this._zoom=i._limitZoom(this._zoom)),"center"===i.options.touchZoom){if(this._center=this._startLatLng,1===s)return}else{var r=n._add(o)._divideBy(2)._subtract(this._centerPoint);if(1===s&&0===r.x&&0===r.y)return;this._center=i.unproject(i.project(this._pinchStartLatLng,this._zoom).subtract(r),this._zoom)}this._moved||(i._moveStart(!0,!1),this._moved=!0),g(this._animRequest);var a=e(i._move,i,this._center,this._zoom,{pinch:!0,round:!1});this._animRequest=f(a,this,!0),$(t)}},_onTouchEnd:function(){this._moved&&this._zooming?(this._zooming=!1,g(this._animRequest),q(document,"touchmove",this._onTouchMove),q(document,"touchend",this._onTouchEnd),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))):this._zooming=!1}});Le.addInitHook("addHandler","touchZoom",Cn),Le.BoxZoom=Ln,Le.DoubleClickZoom=Pn,Le.Drag=bn,Le.Keyboard=Tn,Le.ScrollWheelZoom=zn,Le.Tap=Mn,Le.TouchZoom=Cn;var Zn=window.L;window.L=t,Object.freeze=$t,t.version="1.3.1+HEAD.ba6f97f",t.noConflict=function(){return window.L=Zn,this},t.Control=Pe,t.control=be,t.Browser=$i,t.Evented=ui,t.Mixin=Ee,t.Util=ai,t.Class=v,t.Handler=Ze,t.extend=i,t.bind=e,t.stamp=n,t.setOptions=l,t.DomEvent=de,t.DomUtil=xe,t.PosAnimation=we,t.Draggable=Be,t.LineUtil=Oe,t.PolyUtil=Re,t.Point=x,t.point=w,t.Bounds=P,t.bounds=b,t.Transformation=Z,t.transformation=S,t.Projection=je,t.LatLng=M,t.latLng=C,t.LatLngBounds=T,t.latLngBounds=z,t.CRS=ci,t.GeoJSON=nn,t.geoJSON=Kt,t.geoJson=sn,t.Layer=Ue,t.LayerGroup=Ve,t.layerGroup=function(t,i){return new Ve(t,i)},t.FeatureGroup=qe,t.featureGroup=function(t){return new qe(t)},t.ImageOverlay=rn,t.imageOverlay=function(t,i,e){return new rn(t,i,e)},t.VideoOverlay=an,t.videoOverlay=function(t,i,e){return new an(t,i,e)},t.DivOverlay=hn,t.Popup=un,t.popup=function(t,i){return new un(t,i)},t.Tooltip=ln,t.tooltip=function(t,i){return new ln(t,i)},t.Icon=Ge,t.icon=function(t){return new Ge(t)},t.DivIcon=cn,t.divIcon=function(t){return new cn(t)},t.Marker=Xe,t.marker=function(t,i){return new Xe(t,i)},t.TileLayer=dn,t.tileLayer=Yt,t.GridLayer=_n,t.gridLayer=function(t){return new _n(t)},t.SVG=xn,t.svg=Jt,t.Renderer=mn,t.Canvas=fn,t.canvas=Xt,t.Path=Je,t.CircleMarker=$e,t.circleMarker=function(t,i){return new $e(t,i)},t.Circle=Qe,t.circle=function(t,i,e){return new Qe(t,i,e)},t.Polyline=tn,t.polyline=function(t,i){return new tn(t,i)},t.Polygon=en,t.polygon=function(t,i){return new en(t,i)},t.Rectangle=wn,t.rectangle=function(t,i){return new wn(t,i)},t.Map=Le,t.map=function(t,i){return new Le(t,i)}});</script>
|
|
<style type="text/css">
|
|
img.leaflet-tile {
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 0;
|
|
border: none;
|
|
}
|
|
.leaflet .info {
|
|
padding: 6px 8px;
|
|
font: 14px/16px Arial, Helvetica, sans-serif;
|
|
background: white;
|
|
background: rgba(255,255,255,0.8);
|
|
box-shadow: 0 0 15px rgba(0,0,0,0.2);
|
|
border-radius: 5px;
|
|
}
|
|
.leaflet .legend {
|
|
line-height: 18px;
|
|
color: #555;
|
|
}
|
|
.leaflet .legend svg text {
|
|
fill: #555;
|
|
}
|
|
.leaflet .legend svg line {
|
|
stroke: #555;
|
|
}
|
|
.leaflet .legend i {
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-right: 4px;
|
|
opacity: 0.7;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
zoom: 1;
|
|
*display: inline;
|
|
}
|
|
</style>
|
|
<script>!function(t,s){"object"==typeof exports&&"undefined"!=typeof module?module.exports=s():"function"==typeof define&&define.amd?define(s):t.proj4=s()}(this,function(){"use strict";function k(t,s){if(t[s])return t[s];for(var i,a=Object.keys(t),h=s.toLowerCase().replace(H,""),e=-1;++e<a.length;)if((i=a[e]).toLowerCase().replace(H,"")===h)return t[i]}function e(t){if("string"!=typeof t)throw new Error("not a string");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=K}function h(t,s,i){Array.isArray(s)&&(i.unshift(s),s=null);var a=s?{}:t,h=i.reduce(function(t,s){return n(s,t),t},a);s&&(t[s]=h)}function n(t,s){if(Array.isArray(t)){var i,a=t.shift();if("PARAMETER"===a&&(a=t.shift()),1===t.length)return Array.isArray(t[0])?(s[a]={},void n(t[0],s[a])):void(s[a]=t[0]);if(t.length)if("TOWGS84"!==a){if("AXIS"===a)return a in s||(s[a]=[]),void s[a].push(t);switch(Array.isArray(a)||(s[a]={}),a){case"UNIT":case"PRIMEM":case"VERT_DATUM":return s[a]={name:t[0].toLowerCase(),convert:t[1]},void(3===t.length&&n(t[2],s[a]));case"SPHEROID":case"ELLIPSOID":return s[a]={name:t[0],a:t[1],rf:t[2]},void(4===t.length&&n(t[3],s[a]));case"PROJECTEDCRS":case"PROJCRS":case"GEOGCS":case"GEOCCS":case"PROJCS":case"LOCAL_CS":case"GEODCRS":case"GEODETICCRS":case"GEODETICDATUM":case"EDATUM":case"ENGINEERINGDATUM":case"VERT_CS":case"VERTCRS":case"VERTICALCRS":case"COMPD_CS":case"COMPOUNDCRS":case"ENGINEERINGCRS":case"ENGCRS":case"FITTED_CS":case"LOCAL_DATUM":case"DATUM":return t[0]=["name",t[0]],void h(s,a,t);default:for(i=-1;++i<t.length;)if(!Array.isArray(t[i]))return n(t,s[a]);return h(s,a,t)}}else s[a]=t;else s[a]=!0}else s[t]=!0}function r(t){return t*it}function o(e){function t(t){return t*(e.to_meter||1)}if("GEOGCS"===e.type?e.projName="longlat":"LOCAL_CS"===e.type?(e.projName="identity",e.local=!0):"object"==typeof e.PROJECTION?e.projName=Object.keys(e.PROJECTION)[0]:e.projName=e.PROJECTION,e.AXIS){for(var s="",i=0,a=e.AXIS.length;i<a;++i){var h=e.AXIS[i][0].toLowerCase();-1!==h.indexOf("north")?s+="n":-1!==h.indexOf("south")?s+="s":-1!==h.indexOf("east")?s+="e":-1!==h.indexOf("west")&&(s+="w")}2===s.length&&(s+="u"),3===s.length&&(e.axis=s)}e.UNIT&&(e.units=e.UNIT.name.toLowerCase(),"metre"===e.units&&(e.units="meter"),e.UNIT.convert&&("GEOGCS"===e.type?e.DATUM&&e.DATUM.SPHEROID&&(e.to_meter=e.UNIT.convert*e.DATUM.SPHEROID.a):e.to_meter=e.UNIT.convert));var n=e.GEOGCS;"GEOGCS"===e.type&&(n=e),n&&(n.DATUM?e.datumCode=n.DATUM.name.toLowerCase():e.datumCode=n.name.toLowerCase(),"d_"===e.datumCode.slice(0,2)&&(e.datumCode=e.datumCode.slice(2)),"new_zealand_geodetic_datum_1949"!==e.datumCode&&"new_zealand_1949"!==e.datumCode||(e.datumCode="nzgd49"),"wgs_1984"!==e.datumCode&&"world_geodetic_system_1984"!==e.datumCode||("Mercator_Auxiliary_Sphere"===e.PROJECTION&&(e.sphere=!0),e.datumCode="wgs84"),"_ferro"===e.datumCode.slice(-6)&&(e.datumCode=e.datumCode.slice(0,-6)),"_jakarta"===e.datumCode.slice(-8)&&(e.datumCode=e.datumCode.slice(0,-8)),~e.datumCode.indexOf("belge")&&(e.datumCode="rnb72"),n.DATUM&&n.DATUM.SPHEROID&&(e.ellps=n.DATUM.SPHEROID.name.replace("_19","").replace(/[Cc]larke\_18/,"clrk"),"international"===e.ellps.toLowerCase().slice(0,13)&&(e.ellps="intl"),e.a=n.DATUM.SPHEROID.a,e.rf=parseFloat(n.DATUM.SPHEROID.rf,10)),n.DATUM&&n.DATUM.TOWGS84&&(e.datum_params=n.DATUM.TOWGS84),~e.datumCode.indexOf("osgb_1936")&&(e.datumCode="osgb36"),~e.datumCode.indexOf("osni_1952")&&(e.datumCode="osni52"),(~e.datumCode.indexOf("tm65")||~e.datumCode.indexOf("geodetic_datum_of_1965"))&&(e.datumCode="ire65"),"ch1903+"===e.datumCode&&(e.datumCode="ch1903"),~e.datumCode.indexOf("israel")&&(e.datumCode="isr93")),e.b&&!isFinite(e.b)&&(e.b=e.a),[["standard_parallel_1","Standard_Parallel_1"],["standard_parallel_2","Standard_Parallel_2"],["false_easting","False_Easting"],["false_northing","False_Northing"],["central_meridian","Central_Meridian"],["latitude_of_origin","Latitude_Of_Origin"],["latitude_of_origin","Central_Parallel"],["scale_factor","Scale_Factor"],["k0","scale_factor"],["latitude_of_center","Latitude_Of_Center"],["latitude_of_center","Latitude_of_center"],["lat0","latitude_of_center",r],["longitude_of_center","Longitude_Of_Center"],["longitude_of_center","Longitude_of_center"],["longc","longitude_of_center",r],["x0","false_easting",t],["y0","false_northing",t],["long0","central_meridian",r],["lat0","latitude_of_origin",r],["lat0","standard_parallel_1",r],["lat1","standard_parallel_1",r],["lat2","standard_parallel_2",r],["azimuth","Azimuth"],["alpha","azimuth",r],["srsCode","name"]].forEach(function(t){return s=e,a=(i=t)[0],h=i[1],void(!(a in s)&&h in s&&(s[a]=s[h],3===i.length&&(s[a]=i[2](s[a]))));var s,i,a,h}),e.long0||!e.longc||"Albers_Conic_Equal_Area"!==e.projName&&"Lambert_Azimuthal_Equal_Area"!==e.projName||(e.long0=e.longc),e.lat_ts||!e.lat1||"Stereographic_South_Pole"!==e.projName&&"Polar Stereographic (variant B)"!==e.projName||(e.lat0=r(0<e.lat1?90:-90),e.lat_ts=e.lat1)}function l(t){var s=this;if(2===arguments.length){var i=arguments[1];"string"==typeof i?"+"===i.charAt(0)?l[t]=J(arguments[1]):l[t]=at(arguments[1]):l[t]=i}else if(1===arguments.length){if(Array.isArray(t))return t.map(function(t){Array.isArray(t)?l.apply(s,t):l(t)});if("string"==typeof t){if(t in l)return l[t]}else"EPSG"in t?l["EPSG:"+t.EPSG]=t:"ESRI"in t?l["ESRI:"+t.ESRI]=t:"IAU2000"in t?l["IAU2000:"+t.IAU2000]=t:console.log(t);return}}function E(t){if("string"!=typeof t)return t;if(t in l)return l[t];if(a=t,lt.some(function(t){return-1<a.indexOf(t)})){var s=at(t);if(function(t){var s=k(t,"authority");if(s){var i=k(s,"epsg");return i&&-1<Mt.indexOf(i)}}(s))return l["EPSG:3857"];var i=function(t){var s=k(t,"extension");if(s)return k(s,"proj4")}(s);return i?J(i):s}var a;return"+"===t[0]?J(t):void 0}function t(t){return t}function s(t,s){var i=mt.length;return t.names?((mt[i]=t).names.forEach(function(t){ft[t.toLowerCase()]=i}),this):(console.log(s),!0)}function q(t,s){if(!(this instanceof q))return new q(t);s=s||function(t){if(t)throw t};var i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_,x,g,b,v,w,C,P,S,N=E(t);"object"==typeof N&&(i=q.projections.get(N.projName))?(!N.datumCode||"none"===N.datumCode||(a=k(_t,N.datumCode))&&(N.datum_params=a.towgs84?a.towgs84.split(","):null,N.ellps=a.ellipse,N.datumName=a.datumName?a.datumName:N.datumCode),N.k0=N.k0||1,N.axis=N.axis||"enu",N.ellps=N.ellps||"wgs84",b=N.a,v=N.b,w=N.rf,C=N.ellps,P=N.sphere,b||(b=(S=(S=k(dt,C))||yt).a,v=S.b,w=S.rf),w&&!v&&(v=(1-1/w)*b),(0===w||Math.abs(b-v)<D)&&(P=!0,v=b),m=(h={a:b,b:v,rf:w,sphere:P}).a,p=h.b,d=N.R_A,x=((y=m*m)-(_=p*p))/y,g=0,d?(y=(m*=1-x*(R+x*(L+x*T)))*m,x=0):g=Math.sqrt(x),e={es:x,e:g,ep2:(y-_)/_},n=N.datum||(r=N.datumCode,o=N.datum_params,l=h.a,M=h.b,c=e.es,u=e.ep2,(f={}).datum_type=void 0===r||"none"===r?G:A,o&&(f.datum_params=o.map(parseFloat),0===f.datum_params[0]&&0===f.datum_params[1]&&0===f.datum_params[2]||(f.datum_type=I),3<f.datum_params.length&&(0===f.datum_params[3]&&0===f.datum_params[4]&&0===f.datum_params[5]&&0===f.datum_params[6]||(f.datum_type=O,f.datum_params[3]*=j,f.datum_params[4]*=j,f.datum_params[5]*=j,f.datum_params[6]=f.datum_params[6]/1e6+1))),f.a=l,f.b=M,f.es=c,f.ep2=u,f),ct(this,N),ct(this,i),this.a=h.a,this.b=h.b,this.rf=h.rf,this.sphere=h.sphere,this.es=e.es,this.e=e.e,this.ep2=e.ep2,this.datum=n,this.init(),s(null,this)):s(t)}function M(t,s,i){var a,h,e,n,r=t.x,o=t.y,l=t.z?t.z:0;if(o<-z&&-1.001*z<o)o=-z;else if(z<o&&o<1.001*z)o=z;else{if(o<-z)return{x:-1/0,y:-1/0,z:t.z};if(z<o)return{x:1/0,y:1/0,z:t.z}}return r>Math.PI&&(r-=2*Math.PI),h=Math.sin(o),n=Math.cos(o),e=h*h,{x:((a=i/Math.sqrt(1-s*e))+l)*n*Math.cos(r),y:(a+l)*n*Math.sin(r),z:(a*(1-s)+l)*h}}function c(t,s,i,a){var h,e,n,r,o,l,M,c,u,f,m,p,d,y=t.x,_=t.y,x=t.z?t.z:0,g=Math.sqrt(y*y+_*_),b=Math.sqrt(y*y+_*_+x*x);if(g/i<1e-12){if(p=0,b/i<1e-12)return d=-a,{x:t.x,y:t.y,z:t.z}}else p=Math.atan2(_,y);for(h=x/b,l=(e=g/b)*(1-s)*(n=1/Math.sqrt(1-s*(2-s)*e*e)),M=h*n,m=0;m++,r=s*(o=i/Math.sqrt(1-s*M*M))/(o+(d=g*l+x*M-o*(1-s*M*M))),f=(u=h*(n=1/Math.sqrt(1-r*(2-r)*e*e)))*l-(c=e*(1-r)*n)*M,l=c,M=u,1e-24<f*f&&m<30;);return{x:p,y:Math.atan(u/Math.abs(c)),z:d}}function u(t){return t===I||t===O}function i(t){if("function"==typeof Number.isFinite){if(Number.isFinite(t))return;throw new TypeError("coordinates must be finite numbers")}if("number"!=typeof t||t!=t||!isFinite(t))throw new TypeError("coordinates must be finite numbers")}function f(t,s,i){var a,h,e;if(Array.isArray(i)&&(i=bt(i)),vt(i),t.datum&&s.datum&&(e=s,((h=t).datum.datum_type===I||h.datum.datum_type===O)&&"WGS84"!==e.datumCode||(e.datum.datum_type===I||e.datum.datum_type===O)&&"WGS84"!==h.datumCode)&&(i=f(t,a=new q("WGS84"),i),t=a),"enu"!==t.axis&&(i=gt(t,!1,i)),"longlat"===t.projName)i={x:i.x*N,y:i.y*N,z:i.z||0};else if(t.to_meter&&(i={x:i.x*t.to_meter,y:i.y*t.to_meter,z:i.z||0}),!(i=t.inverse(i)))return;return t.from_greenwich&&(i.x+=t.from_greenwich),i=xt(t.datum,s.datum,i),s.from_greenwich&&(i={x:i.x-s.from_greenwich,y:i.y,z:i.z||0}),"longlat"===s.projName?i={x:i.x*B,y:i.y*B,z:i.z||0}:(i=s.forward(i),s.to_meter&&(i={x:i.x/s.to_meter,y:i.y/s.to_meter,z:i.z||0})),"enu"!==s.axis?gt(s,!0,i):i}function m(s,i,a){var t,h,e;return Array.isArray(a)?(t=f(s,i,a)||{x:NaN,y:NaN},2<a.length?void 0!==s.name&&"geocent"===s.name||void 0!==i.name&&"geocent"===i.name?"number"==typeof t.z?[t.x,t.y,t.z].concat(a.splice(3)):[t.x,t.y,a[2]].concat(a.splice(3)):[t.x,t.y].concat(a.splice(2)):[t.x,t.y]):(h=f(s,i,a),2===(e=Object.keys(a)).length||e.forEach(function(t){if(void 0!==s.name&&"geocent"===s.name||void 0!==i.name&&"geocent"===i.name){if("x"===t||"y"===t||"z"===t)return}else if("x"===t||"y"===t)return;h[t]=a[t]}),h)}function p(t){return t instanceof q?t:t.oProj?t.oProj:q(t)}function a(s,i,t){s=p(s);var a,h=!1;return void 0===i?(i=s,s=wt,h=!0):void 0===i.x&&!Array.isArray(i)||(t=i,i=s,s=wt,h=!0),i=p(i),t?m(s,i,t):(a={forward:function(t){return m(s,i,t)},inverse:function(t){return m(i,s,t)}},h&&(a.oProj=i),a)}function d(t,s){return s=s||5,i=function(t){var s,i,a,h,e,n,r=t.lat,o=t.lon,l=_(r),M=_(o);n=Math.floor((o+180)/6)+1,180===o&&(n=60),56<=r&&r<64&&3<=o&&o<12&&(n=32),72<=r&&r<84&&(0<=o&&o<9?n=31:9<=o&&o<21?n=33:21<=o&&o<33?n=35:33<=o&&o<42&&(n=37)),e=_(6*(n-1)-180+3),s=6378137/Math.sqrt(1-.00669438*Math.sin(l)*Math.sin(l)),i=Math.tan(l)*Math.tan(l),a=.006739496752268451*Math.cos(l)*Math.cos(l);var c=.9996*s*((h=Math.cos(l)*(M-e))+(1-i+a)*h*h*h/6+(5-18*i+i*i+72*a-.39089081163157013)*h*h*h*h*h/120)+5e5,u=.9996*(6378137*(.9983242984503243*l-.002514607064228144*Math.sin(2*l)+2639046602129982e-21*Math.sin(4*l)-3.418046101696858e-9*Math.sin(6*l))+s*Math.tan(l)*(h*h/2+(5-i+9*a+4*a*a)*h*h*h*h/24+(61-58*i+i*i+600*a-2.2240339282485886)*h*h*h*h*h*h/720));return r<0&&(u+=1e7),{northing:Math.round(u),easting:Math.round(c),zoneNumber:n,zoneLetter:function(t){var s="Z";return t<=84&&72<=t?s="X":t<72&&64<=t?s="W":t<64&&56<=t?s="V":t<56&&48<=t?s="U":t<48&&40<=t?s="T":t<40&&32<=t?s="S":t<32&&24<=t?s="R":t<24&&16<=t?s="Q":t<16&&8<=t?s="P":t<8&&0<=t?s="N":t<0&&-8<=t?s="M":t<-8&&-16<=t?s="L":t<-16&&-24<=t?s="K":t<-24&&-32<=t?s="J":t<-32&&-40<=t?s="H":t<-40&&-48<=t?s="G":t<-48&&-56<=t?s="F":t<-56&&-64<=t?s="E":t<-64&&-72<=t?s="D":t<-72&&-80<=t&&(s="C"),s}(r)}}({lat:t[1],lon:t[0]}),a=s,h="00000"+i.easting,e="00000"+i.northing,i.zoneNumber+i.zoneLetter+function(t,s,i){var a=b(i);return function(t,s,i){var a=i-1,h=Pt.charCodeAt(a),e=St.charCodeAt(a),n=h+t-1,r=e+s,o=!1;return It<n&&(n=n-It+Nt-1,o=!0),(n===kt||h<kt&&kt<n||(kt<n||h<kt)&&o)&&n++,(n===Et||h<Et&&Et<n||(Et<n||h<Et)&&o)&&++n===kt&&n++,It<n&&(n=n-It+Nt-1),o=qt<r&&(r=r-qt+Nt-1,!0),(r===kt||e<kt&&kt<r||(kt<r||e<kt)&&o)&&r++,(r===Et||e<Et&&Et<r||(Et<r||e<Et)&&o)&&++r===kt&&r++,qt<r&&(r=r-qt+Nt-1),String.fromCharCode(n)+String.fromCharCode(r)}(Math.floor(t/1e5),Math.floor(s/1e5)%20,a)}(i.easting,i.northing,i.zoneNumber)+h.substr(h.length-5,a)+e.substr(e.length-5,a);var i,a,h,e}function y(t){var s=g(v(t.toUpperCase()));return s.lat&&s.lon?[s.lon,s.lat]:[(s.left+s.right)/2,(s.top+s.bottom)/2]}function _(t){return t*(Math.PI/180)}function x(t){return t/Math.PI*180}function g(t){var s=t.northing,i=t.easting,a=t.zoneLetter,h=t.zoneNumber;if(h<0||60<h)return null;var e,n,r,o,l,M,c,u,f=(1-Math.sqrt(.99330562))/(1+Math.sqrt(.99330562)),m=i-5e5,p=s;a<"N"&&(p-=1e7),M=6*(h-1)-180+3,u=(c=p/.9996/6367449.145945056)+(3*f/2-27*f*f*f/32)*Math.sin(2*c)+(21*f*f/16-55*f*f*f*f/32)*Math.sin(4*c)+151*f*f*f/96*Math.sin(6*c),e=6378137/Math.sqrt(1-.00669438*Math.sin(u)*Math.sin(u)),n=Math.tan(u)*Math.tan(u),r=.006739496752268451*Math.cos(u)*Math.cos(u),o=6335439.32722994/Math.pow(1-.00669438*Math.sin(u)*Math.sin(u),1.5),l=m/(.9996*e);var d,y=x(y=u-e*Math.tan(u)/o*(l*l/2-(5+3*n+10*r-4*r*r-.06065547077041606)*l*l*l*l/24+(61+90*n+298*r+45*n*n-1.6983531815716497-3*r*r)*l*l*l*l*l*l/720)),_=M+x(_=(l-(1+2*n+r)*l*l*l/6+(5-2*r+28*n-3*r*r+.05391597401814761+24*n*n)*l*l*l*l*l/120)/Math.cos(u));return t.accuracy?{top:(d=g({northing:t.northing+t.accuracy,easting:t.easting+t.accuracy,zoneLetter:t.zoneLetter,zoneNumber:t.zoneNumber})).lat,right:d.lon,bottom:y,left:_}:{lat:y,lon:_}}function b(t){var s=t%Ct;return 0===s&&(s=Ct),s}function v(t){if(t&&0===t.length)throw"MGRSPoint coverting from nothing";for(var s,i=t.length,a=null,h="",e=0;!/[A-Z]/.test(s=t.charAt(e));){if(2<=e)throw"MGRSPoint bad conversion from: "+t;h+=s,e++}var n=parseInt(h,10);if(0===e||i<e+3)throw"MGRSPoint bad conversion from: "+t;var r=t.charAt(e++);if(r<="A"||"B"===r||"Y"===r||"Z"<=r||"I"===r||"O"===r)throw"MGRSPoint zone letter "+r+" not handled: "+t;a=t.substring(e,e+=2);for(var o=b(n),l=function(t,s){for(var i=Pt.charCodeAt(s-1),a=1e5,h=!1;i!==t.charCodeAt(0);){if(++i===kt&&i++,i===Et&&i++,It<i){if(h)throw"Bad character: "+t;i=Nt,h=!0}a+=1e5}return a}(a.charAt(0),o),M=function(t,s){if("V"<t)throw"MGRSPoint given invalid Northing "+t;for(var i=St.charCodeAt(s-1),a=0,h=!1;i!==t.charCodeAt(0);){if(++i===kt&&i++,i===Et&&i++,qt<i){if(h)throw"Bad character: "+t;i=Nt,h=!0}a+=1e5}return a}(a.charAt(1),o);M<w(r);)M+=2e6;var c=i-e;if(c%2!=0)throw"MGRSPoint has to have an even number \nof digits after the zone letter and two 100km letters - front \nhalf for easting meters, second half for \nnorthing meters"+t;var u,f,m,p=c/2,d=0,y=0;return 0<p&&(u=1e5/Math.pow(10,p),f=t.substring(e,e+p),d=parseFloat(f)*u,m=t.substring(e+p),y=parseFloat(m)*u),{easting:d+l,northing:y+M,zoneLetter:r,zoneNumber:n,accuracy:u}}function w(t){var s;switch(t){case"C":s=11e5;break;case"D":s=2e6;break;case"E":s=28e5;break;case"F":s=37e5;break;case"G":s=46e5;break;case"H":s=55e5;break;case"J":s=64e5;break;case"K":s=73e5;break;case"L":s=82e5;break;case"M":s=91e5;break;case"N":s=0;break;case"P":s=8e5;break;case"Q":s=17e5;break;case"R":s=26e5;break;case"S":s=35e5;break;case"T":s=44e5;break;case"U":s=53e5;break;case"V":s=62e5;break;case"W":s=7e6;break;case"X":s=79e5;break;default:s=-1}if(0<=s)return s;throw"Invalid zone letter: "+t}function C(t,s,i){if(!(this instanceof C))return new C(t,s,i);var a;Array.isArray(t)?(this.x=t[0],this.y=t[1],this.z=t[2]||0):"object"==typeof t?(this.x=t.x,this.y=t.y,this.z=t.z||0):"string"==typeof t&&void 0===s?(a=t.split(","),this.x=parseFloat(a[0],10),this.y=parseFloat(a[1],10),this.z=parseFloat(a[2],10)||0):(this.x=t,this.y=s,this.z=i||0),console.warn("proj4.Point will be removed in version 3, use proj4.toPoint")}function P(t,s,i,a){var h;return t<D?(a.value=Os,h=0):(h=Math.atan2(s,i),Math.abs(h)<=U?a.value=Os:U<h&&h<=z+U?(a.value=As,h-=z):z+U<h||h<=-(z+U)?(a.value=Gs,h=0<=h?h-Q:h+Q):(a.value=js,h+=z)),h}function S(t,s){var i=t+s;return i<-Q?i+=F:+Q<i&&(i-=F),i}var I=1,O=2,A=4,G=5,j=484813681109536e-20,z=Math.PI/2,R=.16666666666666666,L=.04722222222222222,T=.022156084656084655,D=1e-10,N=.017453292519943295,B=57.29577951308232,U=Math.PI/4,F=2*Math.PI,Q=3.14159265359,W={greenwich:0,lisbon:-9.131906111111,paris:2.337229166667,bogota:-74.080916666667,madrid:-3.687938888889,rome:12.452333333333,bern:7.439583333333,jakarta:106.807719444444,ferro:-17.666666666667,brussels:4.367975,stockholm:18.058277777778,athens:23.7163375,oslo:10.722916666667},X={ft:{to_meter:.3048},"us-ft":{to_meter:1200/3937}},H=/[\s_\-\/\(\)]/g,J=function(t){var s,i,a,h={},e=t.split("+").map(function(t){return t.trim()}).filter(function(t){return t}).reduce(function(t,s){var i=s.split("=");return i.push(!0),t[i[0].toLowerCase()]=i[1],t},{}),n={proj:"projName",datum:"datumCode",rf:function(t){h.rf=parseFloat(t)},lat_0:function(t){h.lat0=t*N},lat_1:function(t){h.lat1=t*N},lat_2:function(t){h.lat2=t*N},lat_ts:function(t){h.lat_ts=t*N},lon_0:function(t){h.long0=t*N},lon_1:function(t){h.long1=t*N},lon_2:function(t){h.long2=t*N},alpha:function(t){h.alpha=parseFloat(t)*N},lonc:function(t){h.longc=t*N},x_0:function(t){h.x0=parseFloat(t)},y_0:function(t){h.y0=parseFloat(t)},k_0:function(t){h.k0=parseFloat(t)},k:function(t){h.k0=parseFloat(t)},a:function(t){h.a=parseFloat(t)},b:function(t){h.b=parseFloat(t)},r_a:function(){h.R_A=!0},zone:function(t){h.zone=parseInt(t,10)},south:function(){h.utmSouth=!0},towgs84:function(t){h.datum_params=t.split(",").map(function(t){return parseFloat(t)})},to_meter:function(t){h.to_meter=parseFloat(t)},units:function(t){h.units=t;var s=k(X,t);s&&(h.to_meter=s.to_meter)},from_greenwich:function(t){h.from_greenwich=t*N},pm:function(t){var s=k(W,t);h.from_greenwich=(s||parseFloat(t))*N},nadgrids:function(t){"@null"===t?h.datumCode="none":h.nadgrids=t},axis:function(t){3===t.length&&-1!=="ewnsud".indexOf(t.substr(0,1))&&-1!=="ewnsud".indexOf(t.substr(1,1))&&-1!=="ewnsud".indexOf(t.substr(2,1))&&(h.axis=t)}};for(s in e)i=e[s],s in n?"function"==typeof(a=n[s])?a(i):h[a]=i:h[s]=i;return"string"==typeof h.datumCode&&"WGS84"!==h.datumCode&&(h.datumCode=h.datumCode.toLowerCase()),h},K=1,V=/\s/,Z=/[A-Za-z]/,Y=/[A-Za-z84]/,$=/[,\]]/,tt=/[\d\.E\-\+]/;e.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;V.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case K:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},e.prototype.afterquote=function(t){if('"'===t)return this.word+='"',void(this.state=4);if($.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error("havn't handled \""+t+'" in afterquote yet, index '+this.place)},e.prototype.afterItem=function(t){return","===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=K)):"]"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=K,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},e.prototype.number=function(t){if(!tt.test(t)){if($.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error("havn't handled \""+t+'" in number yet, index '+this.place)}this.word+=t},e.prototype.quoted=function(t){'"'!==t?this.word+=t:this.state=5},e.prototype.keyword=function(t){if(Y.test(t))this.word+=t;else{if("["===t){var s=[];return s.push(this.word),this.level++,null===this.root?this.root=s:this.currentObject.push(s),this.stack.push(this.currentObject),this.currentObject=s,void(this.state=K)}if(!$.test(t))throw new Error("havn't handled \""+t+'" in keyword yet, index '+this.place);this.afterItem(t)}},e.prototype.neutral=function(t){if(Z.test(t))return this.word=t,void(this.state=2);if('"'===t)return this.word="",void(this.state=4);if(tt.test(t))return this.word=t,void(this.state=3);if(!$.test(t))throw new Error("havn't handled \""+t+'" in neutral yet, index '+this.place);this.afterItem(t)},e.prototype.output=function(){for(;this.place<this.text.length;)this.readCharicter();if(-1===this.state)return this.root;throw new Error('unable to parse string "'+this.text+'". State is '+this.state)};var st,it=.017453292519943295,at=function(t){var s=new e(t).output(),i=s.shift(),a=s.shift();s.unshift(["name",a]),s.unshift(["type",i]);var h={};return n(s,h),o(h),h};(st=l)("EPSG:4326","+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"),st("EPSG:4269","+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"),st("EPSG:3857","+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"),st.WGS84=st["EPSG:4326"],st["EPSG:3785"]=st["EPSG:3857"],st.GOOGLE=st["EPSG:3857"],st["EPSG:900913"]=st["EPSG:3857"],st["EPSG:102113"]=st["EPSG:3857"];function ht(t,s,i){var a=t*s;return i/Math.sqrt(1-a*a)}function et(t){return t<0?-1:1}function nt(t){return Math.abs(t)<=Q?t:t-et(t)*F}function rt(t,s,i){var a=t*i,h=.5*t,a=Math.pow((1-a)/(1+a),h);return Math.tan(.5*(z-s))/a}function ot(t,s){for(var i,a,h=.5*t,e=z-2*Math.atan(s),n=0;n<=15;n++)if(i=t*Math.sin(e),e+=a=z-2*Math.atan(s*Math.pow((1-i)/(1+i),h))-e,Math.abs(a)<=1e-10)return e;return-9999}var lt=["PROJECTEDCRS","PROJCRS","GEOGCS","GEOCCS","PROJCS","LOCAL_CS","GEODCRS","GEODETICCRS","GEODETICDATUM","ENGCRS","ENGINEERINGCRS"],Mt=["3857","900913","3785","102113"],ct=function(t,s){var i,a;if(t=t||{},!s)return t;for(a in s)void 0!==(i=s[a])&&(t[a]=i);return t},ut=[{init:function(){var t=this.b/this.a;this.es=1-t*t,"x0"in this||(this.x0=0),"y0"in this||(this.y0=0),this.e=Math.sqrt(this.es),this.lat_ts?this.sphere?this.k0=Math.cos(this.lat_ts):this.k0=ht(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)):this.k0||(this.k?this.k0=this.k:this.k0=1)},forward:function(t){var s,i,a,h,e=t.x,n=t.y;return 90<n*B&&n*B<-90&&180<e*B&&e*B<-180||Math.abs(Math.abs(n)-z)<=D?null:(h=this.sphere?(a=this.x0+this.a*this.k0*nt(e-this.long0),this.y0+this.a*this.k0*Math.log(Math.tan(U+.5*n))):(s=Math.sin(n),i=rt(this.e,n,s),a=this.x0+this.a*this.k0*nt(e-this.long0),this.y0-this.a*this.k0*Math.log(i)),t.x=a,t.y=h,t)},inverse:function(t){var s,i,a=t.x-this.x0,h=t.y-this.y0;if(this.sphere)i=z-2*Math.atan(Math.exp(-h/(this.a*this.k0)));else{var e=Math.exp(-h/(this.a*this.k0));if(-9999===(i=ot(this.e,e)))return null}return s=nt(this.long0+a/(this.a*this.k0)),t.x=s,t.y=i,t},names:["Mercator","Popular Visualisation Pseudo Mercator","Mercator_1SP","Mercator_Auxiliary_Sphere","merc"]},{init:function(){},forward:t,inverse:t,names:["longlat","identity"]}],ft={},mt=[],pt={start:function(){ut.forEach(s)},add:s,get:function(t){if(!t)return!1;var s=t.toLowerCase();return void 0!==ft[s]&&mt[ft[s]]?mt[ft[s]]:void 0}},dt={MERIT:{a:6378137,rf:298.257,ellipseName:"MERIT 1983"},SGS85:{a:6378136,rf:298.257,ellipseName:"Soviet Geodetic System 85"},GRS80:{a:6378137,rf:298.257222101,ellipseName:"GRS 1980(IUGG, 1980)"},IAU76:{a:6378140,rf:298.257,ellipseName:"IAU 1976"},airy:{a:6377563.396,b:6356256.91,ellipseName:"Airy 1830"},APL4:{a:6378137,rf:298.25,ellipseName:"Appl. Physics. 1965"},NWL9D:{a:6378145,rf:298.25,ellipseName:"Naval Weapons Lab., 1965"},mod_airy:{a:6377340.189,b:6356034.446,ellipseName:"Modified Airy"},andrae:{a:6377104.43,rf:300,ellipseName:"Andrae 1876 (Den., Iclnd.)"},aust_SA:{a:6378160,rf:298.25,ellipseName:"Australian Natl & S. Amer. 1969"},GRS67:{a:6378160,rf:298.247167427,ellipseName:"GRS 67(IUGG 1967)"},bessel:{a:6377397.155,rf:299.1528128,ellipseName:"Bessel 1841"},bess_nam:{a:6377483.865,rf:299.1528128,ellipseName:"Bessel 1841 (Namibia)"},clrk66:{a:6378206.4,b:6356583.8,ellipseName:"Clarke 1866"},clrk80:{a:6378249.145,rf:293.4663,ellipseName:"Clarke 1880 mod."},clrk58:{a:6378293.645208759,rf:294.2606763692654,ellipseName:"Clarke 1858"},CPM:{a:6375738.7,rf:334.29,ellipseName:"Comm. des Poids et Mesures 1799"},delmbr:{a:6376428,rf:311.5,ellipseName:"Delambre 1810 (Belgium)"},engelis:{a:6378136.05,rf:298.2566,ellipseName:"Engelis 1985"},evrst30:{a:6377276.345,rf:300.8017,ellipseName:"Everest 1830"},evrst48:{a:6377304.063,rf:300.8017,ellipseName:"Everest 1948"},evrst56:{a:6377301.243,rf:300.8017,ellipseName:"Everest 1956"},evrst69:{a:6377295.664,rf:300.8017,ellipseName:"Everest 1969"},evrstSS:{a:6377298.556,rf:300.8017,ellipseName:"Everest (Sabah & Sarawak)"},fschr60:{a:6378166,rf:298.3,ellipseName:"Fischer (Mercury Datum) 1960"},fschr60m:{a:6378155,rf:298.3,ellipseName:"Fischer 1960"},fschr68:{a:6378150,rf:298.3,ellipseName:"Fischer 1968"},helmert:{a:6378200,rf:298.3,ellipseName:"Helmert 1906"},hough:{a:6378270,rf:297,ellipseName:"Hough"},intl:{a:6378388,rf:297,ellipseName:"International 1909 (Hayford)"},kaula:{a:6378163,rf:298.24,ellipseName:"Kaula 1961"},lerch:{a:6378139,rf:298.257,ellipseName:"Lerch 1979"},mprts:{a:6397300,rf:191,ellipseName:"Maupertius 1738"},new_intl:{a:6378157.5,b:6356772.2,ellipseName:"New International 1967"},plessis:{a:6376523,rf:6355863,ellipseName:"Plessis 1817 (France)"},krass:{a:6378245,rf:298.3,ellipseName:"Krassovsky, 1942"},SEasia:{a:6378155,b:6356773.3205,ellipseName:"Southeast Asia"},walbeck:{a:6376896,b:6355834.8467,ellipseName:"Walbeck"},WGS60:{a:6378165,rf:298.3,ellipseName:"WGS 60"},WGS66:{a:6378145,rf:298.25,ellipseName:"WGS 66"},WGS7:{a:6378135,rf:298.26,ellipseName:"WGS 72"}},yt=dt.WGS84={a:6378137,rf:298.257223563,ellipseName:"WGS 84"};dt.sphere={a:6370997,b:6370997,ellipseName:"Normal Sphere (r=6370997)"};var _t={wgs84:{towgs84:"0,0,0",ellipse:"WGS84",datumName:"WGS84"},ch1903:{towgs84:"674.374,15.056,405.346",ellipse:"bessel",datumName:"swiss"},ggrs87:{towgs84:"-199.87,74.79,246.62",ellipse:"GRS80",datumName:"Greek_Geodetic_Reference_System_1987"},nad83:{towgs84:"0,0,0",ellipse:"GRS80",datumName:"North_American_Datum_1983"},nad27:{nadgrids:"@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",ellipse:"clrk66",datumName:"North_American_Datum_1927"},potsdam:{towgs84:"606.0,23.0,413.0",ellipse:"bessel",datumName:"Potsdam Rauenberg 1950 DHDN"},carthage:{towgs84:"-263.0,6.0,431.0",ellipse:"clark80",datumName:"Carthage 1934 Tunisia"},hermannskogel:{towgs84:"653.0,-212.0,449.0",ellipse:"bessel",datumName:"Hermannskogel"},osni52:{towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"airy",datumName:"Irish National"},ire65:{towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"mod_airy",datumName:"Ireland 1965"},rassadiran:{towgs84:"-133.63,-157.5,-158.62",ellipse:"intl",datumName:"Rassadiran"},nzgd49:{towgs84:"59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",ellipse:"intl",datumName:"New Zealand Geodetic Datum 1949"},osgb36:{towgs84:"446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",ellipse:"airy",datumName:"Airy 1830"},s_jtsk:{towgs84:"589,76,480",ellipse:"bessel",datumName:"S-JTSK (Ferro)"},beduaram:{towgs84:"-106,-87,188",ellipse:"clrk80",datumName:"Beduaram"},gunung_segara:{towgs84:"-403,684,41",ellipse:"bessel",datumName:"Gunung Segara Jakarta"},rnb72:{towgs84:"106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",ellipse:"intl",datumName:"Reseau National Belge 1972"}};q.projections=pt,q.projections.start();var xt=function(t,s,i){return h=s,((a=t).datum_type!==h.datum_type||a.a!==h.a||5e-11<Math.abs(a.es-h.es)||(a.datum_type===I?a.datum_params[0]!==h.datum_params[0]||a.datum_params[1]!==h.datum_params[1]||a.datum_params[2]!==h.datum_params[2]:a.datum_type===O&&(a.datum_params[0]!==h.datum_params[0]||a.datum_params[1]!==h.datum_params[1]||a.datum_params[2]!==h.datum_params[2]||a.datum_params[3]!==h.datum_params[3]||a.datum_params[4]!==h.datum_params[4]||a.datum_params[5]!==h.datum_params[5]||a.datum_params[6]!==h.datum_params[6])))&&t.datum_type!==G&&s.datum_type!==G&&(t.es!==s.es||t.a!==s.a||u(t.datum_type)||u(s.datum_type))?(i=M(i,t.es,t.a),u(t.datum_type)&&(i=function(t,s,i){if(s===I)return{x:t.x+i[0],y:t.y+i[1],z:t.z+i[2]};if(s===O){var a=i[0],h=i[1],e=i[2],n=i[3],r=i[4],o=i[5],l=i[6];return{x:l*(t.x-o*t.y+r*t.z)+a,y:l*(o*t.x+t.y-n*t.z)+h,z:l*(-r*t.x+n*t.y+t.z)+e}}}(i,t.datum_type,t.datum_params)),u(s.datum_type)&&(i=function(t,s,i){if(s===I)return{x:t.x-i[0],y:t.y-i[1],z:t.z-i[2]};if(s===O){var a=i[0],h=i[1],e=i[2],n=i[3],r=i[4],o=i[5],l=i[6],M=(t.x-a)/l,c=(t.y-h)/l,u=(t.z-e)/l;return{x:M+o*c-r*u,y:-o*M+c+n*u,z:r*M-n*c+u}}}(i,s.datum_type,s.datum_params)),c(i,s.es,s.a,s.b)):i;var a,h},gt=function(t,s,i){for(var a,h,e=i.x,n=i.y,r=i.z||0,o={},l=0;l<3;l++)if(!s||2!==l||void 0!==i.z)switch(h=0===l?(a=e,-1!=="ew".indexOf(t.axis[l])?"x":"y"):1===l?(a=n,-1!=="ns".indexOf(t.axis[l])?"y":"x"):(a=r,"z"),t.axis[l]){case"e":case"w":case"n":case"s":o[h]=a;break;case"u":void 0!==i[h]&&(o.z=a);break;case"d":void 0!==i[h]&&(o.z=-a);break;default:return null}return o},bt=function(t){var s={x:t[0],y:t[1]};return 2<t.length&&(s.z=t[2]),3<t.length&&(s.m=t[3]),s},vt=function(t){i(t.x),i(t.y)},wt=q("WGS84"),Ct=6,Pt="AJSAJS",St="AFAFAF",Nt=65,kt=73,Et=79,qt=86,It=90,Ot={forward:d,inverse:function(t){var s=g(v(t.toUpperCase()));return s.lat&&s.lon?[s.lon,s.lat,s.lon,s.lat]:[s.left,s.bottom,s.right,s.top]},toPoint:y};C.fromMGRS=function(t){return new C(y(t))},C.prototype.toMGRS=function(t){return d([this.x,this.y],t)};function At(t){var s=[];s[0]=1-t*(.25+t*(.046875+t*(.01953125+t*ts))),s[1]=t*(.75-t*(.046875+t*(.01953125+t*ts)));var i=t*t;return s[2]=i*(.46875-t*(.013020833333333334+.007120768229166667*t)),i*=t,s[3]=i*(.3645833333333333-.005696614583333333*t),s[4]=i*t*.3076171875,s}function Gt(t,s,i,a){return i*=s,s*=s,a[0]*t-i*(a[1]+s*(a[2]+s*(a[3]+s*a[4])))}function jt(t,s,i){for(var a=1/(1-s),h=t,e=20;e;--e){var n=Math.sin(h),r=1-s*n*n;if(h-=r=(Gt(h,n,Math.cos(h),i)-t)*(r*Math.sqrt(r))*a,Math.abs(r)<D)return h}return h}function zt(t){var s=Math.exp(t);return(s-1/s)/2}function Rt(t,s){t=Math.abs(t),s=Math.abs(s);var i=Math.max(t,s),a=Math.min(t,s)/(i||1);return i*Math.sqrt(1+Math.pow(a,2))}function Lt(t){var s,i,a,h=Math.abs(t);return s=h*(1+h/(Rt(1,h)+1)),h=0==(a=(i=1+s)-1)?s:s*Math.log(i)/a,t<0?-h:h}function Tt(t,s){for(var i,a=2*Math.cos(2*s),h=t.length-1,e=t[h],n=0;0<=--h;)i=a*e-n+t[h],n=e,e=i;return s+i*Math.sin(2*s)}function Dt(t,s,i){for(var a,h,e,n,r=Math.sin(s),o=Math.cos(s),l=zt(i),M=(e=i,((n=Math.exp(e))+1/n)/2),c=2*o*M,u=-2*r*l,f=t.length-1,m=t[f],p=0,d=0,y=0;0<=--f;)a=d,h=p,m=c*(d=m)-a-u*(p=y)+t[f],y=u*d-h+c*p;return[(c=r*M)*m-(u=o*l)*y,c*y+u*m]}function Bt(t,s){return Math.pow((1-t)/(1+t),s)}function Ut(t,s,i,a,h){return t*h-s*Math.sin(2*h)+i*Math.sin(4*h)-a*Math.sin(6*h)}function Ft(t){return 1-.25*t*(1+t/16*(3+1.25*t))}function Qt(t){return.375*t*(1+.25*t*(1+.46875*t))}function Wt(t){return.05859375*t*t*(1+.75*t)}function Xt(t){return t*t*t*(35/3072)}function Ht(t,s,i){var a=s*i;return t/Math.sqrt(1-a*a)}function Jt(t){return Math.abs(t)<z?t:t-et(t)*Math.PI}function Kt(t,s,i,a,h){for(var e,n=t/s,r=0;r<15;r++)if(n+=e=(t-(s*n-i*Math.sin(2*n)+a*Math.sin(4*n)-h*Math.sin(6*n)))/(s-2*i*Math.cos(2*n)+4*a*Math.cos(4*n)-6*h*Math.cos(6*n)),Math.abs(e)<=1e-10)return n;return NaN}function Vt(t,s){var i;return 1e-7<t?(1-t*t)*(s/(1-(i=t*s)*i)-.5/t*Math.log((1-i)/(1+i))):2*s}function Zt(t){return 1<Math.abs(t)&&(t=1<t?1:-1),Math.asin(t)}function Yt(t,s){return t[0]+s*(t[1]+s*(t[2]+s*t[3]))}var $t,ts=.01068115234375,ss={init:function(){this.x0=void 0!==this.x0?this.x0:0,this.y0=void 0!==this.y0?this.y0:0,this.long0=void 0!==this.long0?this.long0:0,this.lat0=void 0!==this.lat0?this.lat0:0,this.es&&(this.en=At(this.es),this.ml0=Gt(this.lat0,Math.sin(this.lat0),Math.cos(this.lat0),this.en))},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=Math.sin(i),e=Math.cos(i);if(this.es){var n=e*a,r=Math.pow(n,2),o=this.ep2*Math.pow(e,2),l=Math.pow(o,2),M=Math.abs(e)>D?Math.tan(i):0,c=Math.pow(M,2),u=Math.pow(c,2),f=1-this.es*Math.pow(h,2);n/=Math.sqrt(f);var m=Gt(i,h,e,this.en),p=this.a*(this.k0*n*(1+r/6*(1-c+o+r/20*(5-18*c+u+14*o-58*c*o+r/42*(61+179*u-u*c-479*c)))))+this.x0,d=this.a*(this.k0*(m-this.ml0+h*a*n/2*(1+r/12*(5-c+9*o+4*l+r/30*(61+u-58*c+270*o-330*c*o+r/56*(1385+543*u-u*c-3111*c))))))+this.y0}else{var y=e*Math.sin(a);if(Math.abs(Math.abs(y)-1)<D)return 93;if(p=.5*this.a*this.k0*Math.log((1+y)/(1-y))+this.x0,d=e*Math.cos(a)/Math.sqrt(1-Math.pow(y,2)),1<=(y=Math.abs(d))){if(D<y-1)return 93;d=0}else d=Math.acos(d);i<0&&(d=-d),d=this.a*this.k0*(d-this.lat0)+this.y0}return t.x=p,t.y=d,t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_=(t.x-this.x0)*(1/this.a),x=(t.y-this.y0)*(1/this.a);return f=this.es?(l=this.ml0+x/this.k0,s=jt(l,this.es,this.en),Math.abs(s)<z?(i=Math.sin(s),a=Math.cos(s),h=Math.abs(a)>D?Math.tan(s):0,e=this.ep2*Math.pow(a,2),n=Math.pow(e,2),r=Math.pow(h,2),o=Math.pow(r,2),l=1-this.es*Math.pow(i,2),M=_*Math.sqrt(l)/this.k0,u=s-(l*=h)*(c=Math.pow(M,2))/(1-this.es)*.5*(1-c/12*(5+3*r-9*e*r+e-4*n-c/30*(61+90*r-252*e*r+45*o+46*e-c/56*(1385+3633*r+4095*o+1574*o*r)))),nt(this.long0+M*(1-c/6*(1+2*r+e-c/20*(5+28*r+24*o+8*e*r+6*e-c/42*(61+662*r+1320*o+720*o*r))))/a)):(u=z*et(x),0)):(p=.5*((m=Math.exp(_/this.k0))-1/m),d=this.lat0+x/this.k0,y=Math.cos(d),l=Math.sqrt((1-Math.pow(y,2))/(1+Math.pow(p,2))),u=Math.asin(l),x<0&&(u=-u),0==p&&0===y?0:nt(Math.atan2(p,y)+this.long0)),t.x=f,t.y=u,t},names:["Transverse_Mercator","Transverse Mercator","tmerc"]},is={init:function(){if(void 0===this.es||this.es<=0)throw new Error("incorrect elliptical usage");this.x0=void 0!==this.x0?this.x0:0,this.y0=void 0!==this.y0?this.y0:0,this.long0=void 0!==this.long0?this.long0:0,this.lat0=void 0!==this.lat0?this.lat0:0,this.cgb=[],this.cbg=[],this.utg=[],this.gtu=[];var t=this.es/(1+Math.sqrt(1-this.es)),s=t/(2-t),i=s;this.cgb[0]=s*(2+s*(-2/3+s*(s*(116/45+s*(26/45+-2854/675*s))-2))),this.cbg[0]=s*(s*(2/3+s*(4/3+s*(-82/45+s*(32/45+4642/4725*s))))-2),i*=s,this.cgb[1]=i*(7/3+s*(s*(-227/45+s*(2704/315+2323/945*s))-1.6)),this.cbg[1]=i*(5/3+s*(-16/15+s*(-13/9+s*(904/315+-1522/945*s)))),i*=s,this.cgb[2]=i*(56/15+s*(-136/35+s*(-1262/105+73814/2835*s))),this.cbg[2]=i*(-26/15+s*(34/21+s*(1.6+-12686/2835*s))),i*=s,this.cgb[3]=i*(4279/630+s*(-332/35+-399572/14175*s)),this.cbg[3]=i*(1237/630+s*(-24832/14175*s-2.4)),i*=s,this.cgb[4]=i*(4174/315+-144838/6237*s),this.cbg[4]=i*(-734/315+109598/31185*s),i*=s,this.cgb[5]=i*(601676/22275),this.cbg[5]=i*(444337/155925),i=Math.pow(s,2),this.Qn=this.k0/(1+s)*(1+i*(.25+i*(1/64+i/256))),this.utg[0]=s*(s*(2/3+s*(-37/96+s*(1/360+s*(81/512+-96199/604800*s))))-.5),this.gtu[0]=s*(.5+s*(-2/3+s*(5/16+s*(41/180+s*(-127/288+7891/37800*s))))),this.utg[1]=i*(-1/48+s*(-1/15+s*(437/1440+s*(-46/105+1118711/3870720*s)))),this.gtu[1]=i*(13/48+s*(s*(557/1440+s*(281/630+-1983433/1935360*s))-.6)),i*=s,this.utg[2]=i*(-17/480+s*(37/840+s*(209/4480+-5569/90720*s))),this.gtu[2]=i*(61/240+s*(-103/140+s*(15061/26880+167603/181440*s))),i*=s,this.utg[3]=i*(-4397/161280+s*(11/504+830251/7257600*s)),this.gtu[3]=i*(49561/161280+s*(-179/168+6601661/7257600*s)),i*=s,this.utg[4]=i*(-4583/161280+108847/3991680*s),this.gtu[4]=i*(34729/80640+-3418889/1995840*s),i*=s,this.utg[5]=-.03233083094085698*i,this.gtu[5]=.6650675310896665*i;var a=Tt(this.cbg,this.lat0);this.Zb=-this.Qn*(a+function(t,s){for(var i,a=2*Math.cos(s),h=t.length-1,e=t[h],n=0;0<=--h;)i=a*e-n+t[h],n=e,e=i;return Math.sin(s)*i}(this.gtu,2*a))},forward:function(t){var s=nt(t.x-this.long0),i=t.y,i=Tt(this.cbg,i),a=Math.sin(i),h=Math.cos(i),e=Math.sin(s),n=Math.cos(s);i=Math.atan2(a,n*h),s=Math.atan2(e*h,Rt(a,h*n)),s=Lt(Math.tan(s));var r,o,l=Dt(this.gtu,2*i,2*s);return i+=l[0],s+=l[1],o=Math.abs(s)<=2.623395162778?(r=this.a*(this.Qn*s)+this.x0,this.a*(this.Qn*i+this.Zb)+this.y0):r=1/0,t.x=r,t.y=o,t},inverse:function(t){var s,i,a,h,e,n,r,o=(t.x-this.x0)*(1/this.a),l=(t.y-this.y0)*(1/this.a);return l=(l-this.Zb)/this.Qn,o/=this.Qn,r=Math.abs(o)<=2.623395162778?(l+=(s=Dt(this.utg,2*l,2*o))[0],o+=s[1],o=Math.atan(zt(o)),i=Math.sin(l),a=Math.cos(l),h=Math.sin(o),e=Math.cos(o),l=Math.atan2(i*e,Rt(h,e*a)),o=Math.atan2(h,e*a),n=nt(o+this.long0),Tt(this.cgb,l)):n=1/0,t.x=n,t.y=r,t},names:["Extended_Transverse_Mercator","Extended Transverse Mercator","etmerc"]},as={init:function(){var t=function(t,s){if(void 0===t){if((t=Math.floor(30*(nt(s)+Math.PI)/Math.PI)+1)<0)return 0;if(60<t)return 60}return t}(this.zone,this.long0);if(void 0===t)throw new Error("unknown utm zone");this.lat0=0,this.long0=(6*Math.abs(t)-183)*N,this.x0=5e5,this.y0=this.utmSouth?1e7:0,this.k0=.9996,is.init.apply(this),this.forward=is.forward,this.inverse=is.inverse},names:["Universal Transverse Mercator System","utm"],dependsOn:"etmerc"},hs={init:function(){var t=Math.sin(this.lat0),s=Math.cos(this.lat0);s*=s,this.rc=Math.sqrt(1-this.es)/(1-this.es*t*t),this.C=Math.sqrt(1+this.es*s*s/(1-this.es)),this.phic0=Math.asin(t/this.C),this.ratexp=.5*this.C*this.e,this.K=Math.tan(.5*this.phic0+U)/(Math.pow(Math.tan(.5*this.lat0+U),this.C)*Bt(this.e*t,this.ratexp))},forward:function(t){var s=t.x,i=t.y;return t.y=2*Math.atan(this.K*Math.pow(Math.tan(.5*i+U),this.C)*Bt(this.e*Math.sin(i),this.ratexp))-z,t.x=this.C*s,t},inverse:function(t){for(var s=t.x/this.C,i=t.y,a=Math.pow(Math.tan(.5*i+U)/this.K,1/this.C),h=20;0<h&&(i=2*Math.atan(a*Bt(this.e*Math.sin(t.y),-.5*this.e))-z,!(Math.abs(i-t.y)<1e-14));--h)t.y=i;return h?(t.x=s,t.y=i,t):null},names:["gauss"]},es={init:function(){hs.init.apply(this),this.rc&&(this.sinc0=Math.sin(this.phic0),this.cosc0=Math.cos(this.phic0),this.R2=2*this.rc,this.title||(this.title="Oblique Stereographic Alternative"))},forward:function(t){var s,i,a,h;return t.x=nt(t.x-this.long0),hs.forward.apply(this,[t]),s=Math.sin(t.y),i=Math.cos(t.y),a=Math.cos(t.x),h=this.k0*this.R2/(1+this.sinc0*s+this.cosc0*i*a),t.x=h*i*Math.sin(t.x),t.y=h*(this.cosc0*s-this.sinc0*i*a),t.x=this.a*t.x+this.x0,t.y=this.a*t.y+this.y0,t},inverse:function(t){var s,i,a,h,e,n;return t.x=(t.x-this.x0)/this.a,t.y=(t.y-this.y0)/this.a,t.x/=this.k0,t.y/=this.k0,n=(s=Math.sqrt(t.x*t.x+t.y*t.y))?(i=2*Math.atan2(s,this.R2),a=Math.sin(i),h=Math.cos(i),e=Math.asin(h*this.sinc0+t.y*a*this.cosc0/s),Math.atan2(t.x*a,s*this.cosc0*h-t.y*this.sinc0*a)):(e=this.phic0,0),t.x=n,t.y=e,hs.inverse.apply(this,[t]),t.x=nt(t.x+this.long0),t},names:["Stereographic_North_Pole","Oblique_Stereographic","Polar_Stereographic","sterea","Oblique Stereographic Alternative","Double_Stereographic"]},ns={init:function(){this.coslat0=Math.cos(this.lat0),this.sinlat0=Math.sin(this.lat0),this.sphere?1===this.k0&&!isNaN(this.lat_ts)&&Math.abs(this.coslat0)<=D&&(this.k0=.5*(1+et(this.lat0)*Math.sin(this.lat_ts))):(Math.abs(this.coslat0)<=D&&(0<this.lat0?this.con=1:this.con=-1),this.cons=Math.sqrt(Math.pow(1+this.e,1+this.e)*Math.pow(1-this.e,1-this.e)),1===this.k0&&!isNaN(this.lat_ts)&&Math.abs(this.coslat0)<=D&&(this.k0=.5*this.cons*ht(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts))/rt(this.e,this.con*this.lat_ts,this.con*Math.sin(this.lat_ts))),this.ms1=ht(this.e,this.sinlat0,this.coslat0),this.X0=2*Math.atan(this.ssfn_(this.lat0,this.sinlat0,this.e))-z,this.cosX0=Math.cos(this.X0),this.sinX0=Math.sin(this.X0))},forward:function(t){var s,i,a,h,e,n,r=t.x,o=t.y,l=Math.sin(o),M=Math.cos(o),c=nt(r-this.long0);return Math.abs(Math.abs(r-this.long0)-Math.PI)<=D&&Math.abs(o+this.lat0)<=D?(t.x=NaN,t.y=NaN):this.sphere?(s=2*this.k0/(1+this.sinlat0*l+this.coslat0*M*Math.cos(c)),t.x=this.a*s*M*Math.sin(c)+this.x0,t.y=this.a*s*(this.coslat0*l-this.sinlat0*M*Math.cos(c))+this.y0):(i=2*Math.atan(this.ssfn_(o,l,this.e))-z,h=Math.cos(i),a=Math.sin(i),Math.abs(this.coslat0)<=D?(e=rt(this.e,o*this.con,this.con*l),n=2*this.a*this.k0*e/this.cons,t.x=this.x0+n*Math.sin(r-this.long0),t.y=this.y0-this.con*n*Math.cos(r-this.long0)):(Math.abs(this.sinlat0)<D?(s=2*this.a*this.k0/(1+h*Math.cos(c)),t.y=s*a):(s=2*this.a*this.k0*this.ms1/(this.cosX0*(1+this.sinX0*a+this.cosX0*h*Math.cos(c))),t.y=s*(this.cosX0*a-this.sinX0*h*Math.cos(c))+this.y0),t.x=s*h*Math.sin(c)+this.x0)),t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s,i,a,h=Math.sqrt(t.x*t.x+t.y*t.y);if(this.sphere){var e=2*Math.atan(h/(2*this.a*this.k0)),n=this.long0,r=this.lat0;return h<=D||(r=Math.asin(Math.cos(e)*this.sinlat0+t.y*Math.sin(e)*this.coslat0/h),n=nt(Math.abs(this.coslat0)<D?0<this.lat0?this.long0+Math.atan2(t.x,-1*t.y):this.long0+Math.atan2(t.x,t.y):this.long0+Math.atan2(t.x*Math.sin(e),h*this.coslat0*Math.cos(e)-t.y*this.sinlat0*Math.sin(e)))),t.x=n,t.y=r,t}if(Math.abs(this.coslat0)<=D){if(h<=D)return r=this.lat0,n=this.long0,t.x=n,t.y=r,t;t.x*=this.con,t.y*=this.con,s=h*this.cons/(2*this.a*this.k0),r=this.con*ot(this.e,s),n=this.con*nt(this.con*this.long0+Math.atan2(t.x,-1*t.y))}else i=2*Math.atan(h*this.cosX0/(2*this.a*this.k0*this.ms1)),n=this.long0,h<=D?a=this.X0:(a=Math.asin(Math.cos(i)*this.sinX0+t.y*Math.sin(i)*this.cosX0/h),n=nt(this.long0+Math.atan2(t.x*Math.sin(i),h*this.cosX0*Math.cos(i)-t.y*this.sinX0*Math.sin(i)))),r=-1*ot(this.e,Math.tan(.5*(z+a)));return t.x=n,t.y=r,t},names:["stere","Stereographic_South_Pole","Polar Stereographic (variant B)"],ssfn_:function(t,s,i){return s*=i,Math.tan(.5*(z+t))*Math.pow((1-s)/(1+s),.5*i)}},rs={init:function(){var t=this.lat0;this.lambda0=this.long0;var s=Math.sin(t),i=this.a,a=1/this.rf,h=2*a-Math.pow(a,2),e=this.e=Math.sqrt(h);this.R=this.k0*i*Math.sqrt(1-h)/(1-h*Math.pow(s,2)),this.alpha=Math.sqrt(1+h/(1-h)*Math.pow(Math.cos(t),4)),this.b0=Math.asin(s/this.alpha);var n=Math.log(Math.tan(Math.PI/4+this.b0/2)),r=Math.log(Math.tan(Math.PI/4+t/2)),o=Math.log((1+e*s)/(1-e*s));this.K=n-this.alpha*r+this.alpha*e/2*o},forward:function(t){var s=Math.log(Math.tan(Math.PI/4-t.y/2)),i=this.e/2*Math.log((1+this.e*Math.sin(t.y))/(1-this.e*Math.sin(t.y))),a=-this.alpha*(s+i)+this.K,h=2*(Math.atan(Math.exp(a))-Math.PI/4),e=this.alpha*(t.x-this.lambda0),n=Math.atan(Math.sin(e)/(Math.sin(this.b0)*Math.tan(h)+Math.cos(this.b0)*Math.cos(e))),r=Math.asin(Math.cos(this.b0)*Math.sin(h)-Math.sin(this.b0)*Math.cos(h)*Math.cos(e));return t.y=this.R/2*Math.log((1+Math.sin(r))/(1-Math.sin(r)))+this.y0,t.x=this.R*n+this.x0,t},inverse:function(t){for(var s=t.x-this.x0,i=t.y-this.y0,a=s/this.R,h=2*(Math.atan(Math.exp(i/this.R))-Math.PI/4),e=Math.asin(Math.cos(this.b0)*Math.sin(h)+Math.sin(this.b0)*Math.cos(h)*Math.cos(a)),n=Math.atan(Math.sin(a)/(Math.cos(this.b0)*Math.cos(a)-Math.sin(this.b0)*Math.tan(h))),r=this.lambda0+n/this.alpha,o=0,l=e,M=-1e3,c=0;1e-7<Math.abs(l-M);){if(20<++c)return;o=1/this.alpha*(Math.log(Math.tan(Math.PI/4+e/2))-this.K)+this.e*Math.log(Math.tan(Math.PI/4+Math.asin(this.e*Math.sin(l))/2)),M=l,l=2*Math.atan(Math.exp(o))-Math.PI/2}return t.x=r,t.y=l,t},names:["somerc"]},os={init:function(){this.no_off=this.no_off||!1,this.no_rot=this.no_rot||!1,isNaN(this.k0)&&(this.k0=1);var t=Math.sin(this.lat0),s=Math.cos(this.lat0),i=this.e*t;this.bl=Math.sqrt(1+this.es/(1-this.es)*Math.pow(s,4)),this.al=this.a*this.bl*this.k0*Math.sqrt(1-this.es)/(1-i*i);var a,h,e,n,r,o,l,M,c,u,f=rt(this.e,this.lat0,t),m=this.bl/s*Math.sqrt((1-this.es)/(1-i*i));m*m<1&&(m=1),isNaN(this.longc)?(h=rt(this.e,this.lat1,Math.sin(this.lat1)),e=rt(this.e,this.lat2,Math.sin(this.lat2)),0<=this.lat0?this.el=(m+Math.sqrt(m*m-1))*Math.pow(f,this.bl):this.el=(m-Math.sqrt(m*m-1))*Math.pow(f,this.bl),n=Math.pow(h,this.bl),r=Math.pow(e,this.bl),o=.5*((a=this.el/n)-1/a),l=(this.el*this.el-r*n)/(this.el*this.el+r*n),M=(r-n)/(r+n),c=nt(this.long1-this.long2),this.long0=.5*(this.long1+this.long2)-Math.atan(l*Math.tan(.5*this.bl*c)/M)/this.bl,this.long0=nt(this.long0),u=nt(this.long1-this.long0),this.gamma0=Math.atan(Math.sin(this.bl*u)/o),this.alpha=Math.asin(m*Math.sin(this.gamma0))):(a=0<=this.lat0?m+Math.sqrt(m*m-1):m-Math.sqrt(m*m-1),this.el=a*Math.pow(f,this.bl),o=.5*(a-1/a),this.gamma0=Math.asin(Math.sin(this.alpha)/m),this.long0=this.longc-Math.asin(o*Math.tan(this.gamma0))/this.bl),this.no_off?this.uc=0:0<=this.lat0?this.uc=this.al/this.bl*Math.atan2(Math.sqrt(m*m-1),Math.cos(this.alpha)):this.uc=-1*this.al/this.bl*Math.atan2(Math.sqrt(m*m-1),Math.cos(this.alpha))},forward:function(t){var s,i,a,h,e,n,r,o,l,M=t.x,c=t.y,u=nt(M-this.long0);return l=Math.abs(Math.abs(c)-z)<=D?(s=0<c?-1:1,o=this.al/this.bl*Math.log(Math.tan(U+s*this.gamma0*.5)),-1*s*z*this.al/this.bl):(i=rt(this.e,c,Math.sin(c)),h=.5*((a=this.el/Math.pow(i,this.bl))-1/a),e=.5*(a+1/a),n=Math.sin(this.bl*u),r=(h*Math.sin(this.gamma0)-n*Math.cos(this.gamma0))/e,o=Math.abs(Math.abs(r)-1)<=D?Number.POSITIVE_INFINITY:.5*this.al*Math.log((1-r)/(1+r))/this.bl,Math.abs(Math.cos(this.bl*u))<=D?this.al*this.bl*u:this.al*Math.atan2(h*Math.cos(this.gamma0)+n*Math.sin(this.gamma0),Math.cos(this.bl*u))/this.bl),this.no_rot?(t.x=this.x0+l,t.y=this.y0+o):(l-=this.uc,t.x=this.x0+o*Math.cos(this.alpha)+l*Math.sin(this.alpha),t.y=this.y0+l*Math.cos(this.alpha)-o*Math.sin(this.alpha)),t},inverse:function(t){var s,i;this.no_rot?(i=t.y-this.y0,s=t.x-this.x0):(i=(t.x-this.x0)*Math.cos(this.alpha)-(t.y-this.y0)*Math.sin(this.alpha),s=(t.y-this.y0)*Math.cos(this.alpha)+(t.x-this.x0)*Math.sin(this.alpha),s+=this.uc);var a=Math.exp(-1*this.bl*i/this.al),h=.5*(a-1/a),e=.5*(a+1/a),n=Math.sin(this.bl*s/this.al),r=(n*Math.cos(this.gamma0)+h*Math.sin(this.gamma0))/e,o=Math.pow(this.el/Math.sqrt((1+r)/(1-r)),1/this.bl);return Math.abs(r-1)<D?(t.x=this.long0,t.y=z):Math.abs(1+r)<D?(t.x=this.long0,t.y=-1*z):(t.y=ot(this.e,o),t.x=nt(this.long0-Math.atan2(h*Math.cos(this.gamma0)-n*Math.sin(this.gamma0),Math.cos(this.bl*s/this.al))/this.bl)),t},names:["Hotine_Oblique_Mercator","Hotine Oblique Mercator","Hotine_Oblique_Mercator_Azimuth_Natural_Origin","Hotine_Oblique_Mercator_Azimuth_Center","omerc"]},ls={init:function(){var t,s,i,a,h,e,n,r,o,l;this.lat2||(this.lat2=this.lat1),this.k0||(this.k0=1),this.x0=this.x0||0,this.y0=this.y0||0,Math.abs(this.lat1+this.lat2)<D||(t=this.b/this.a,this.e=Math.sqrt(1-t*t),s=Math.sin(this.lat1),i=Math.cos(this.lat1),a=ht(this.e,s,i),h=rt(this.e,this.lat1,s),e=Math.sin(this.lat2),n=Math.cos(this.lat2),r=ht(this.e,e,n),o=rt(this.e,this.lat2,e),l=rt(this.e,this.lat0,Math.sin(this.lat0)),Math.abs(this.lat1-this.lat2)>D?this.ns=Math.log(a/r)/Math.log(h/o):this.ns=s,isNaN(this.ns)&&(this.ns=s),this.f0=a/(this.ns*Math.pow(h,this.ns)),this.rh=this.a*this.f0*Math.pow(l,this.ns),this.title||(this.title="Lambert Conformal Conic"))},forward:function(t){var s=t.x,i=t.y;Math.abs(2*Math.abs(i)-Math.PI)<=D&&(i=et(i)*(z-2*D));var a,h,e=Math.abs(Math.abs(i)-z);if(D<e)a=rt(this.e,i,Math.sin(i)),h=this.a*this.f0*Math.pow(a,this.ns);else{if((e=i*this.ns)<=0)return null;h=0}var n=this.ns*nt(s-this.long0);return t.x=this.k0*(h*Math.sin(n))+this.x0,t.y=this.k0*(this.rh-h*Math.cos(n))+this.y0,t},inverse:function(t){var s,i,a,h,e=(t.x-this.x0)/this.k0,n=this.rh-(t.y-this.y0)/this.k0,r=0<this.ns?(s=Math.sqrt(e*e+n*n),1):(s=-Math.sqrt(e*e+n*n),-1),o=0;if(0!==s&&(o=Math.atan2(r*e,r*n)),0!==s||0<this.ns){if(r=1/this.ns,i=Math.pow(s/(this.a*this.f0),r),-9999===(a=ot(this.e,i)))return null}else a=-z;return h=nt(o/this.ns+this.long0),t.x=h,t.y=a,t},names:["Lambert Tangential Conformal Conic Projection","Lambert_Conformal_Conic","Lambert_Conformal_Conic_2SP","lcc"]},Ms={init:function(){this.a=6377397.155,this.es=.006674372230614,this.e=Math.sqrt(this.es),this.lat0||(this.lat0=.863937979737193),this.long0||(this.long0=.4334234309119251),this.k0||(this.k0=.9999),this.s45=.785398163397448,this.s90=2*this.s45,this.fi0=this.lat0,this.e2=this.es,this.e=Math.sqrt(this.e2),this.alfa=Math.sqrt(1+this.e2*Math.pow(Math.cos(this.fi0),4)/(1-this.e2)),this.uq=1.04216856380474,this.u0=Math.asin(Math.sin(this.fi0)/this.alfa),this.g=Math.pow((1+this.e*Math.sin(this.fi0))/(1-this.e*Math.sin(this.fi0)),this.alfa*this.e/2),this.k=Math.tan(this.u0/2+this.s45)/Math.pow(Math.tan(this.fi0/2+this.s45),this.alfa)*this.g,this.k1=this.k0,this.n0=this.a*Math.sqrt(1-this.e2)/(1-this.e2*Math.pow(Math.sin(this.fi0),2)),this.s0=1.37008346281555,this.n=Math.sin(this.s0),this.ro0=this.k1*this.n0/Math.tan(this.s0),this.ad=this.s90-this.uq},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=Math.pow((1+this.e*Math.sin(i))/(1-this.e*Math.sin(i)),this.alfa*this.e/2),e=2*(Math.atan(this.k*Math.pow(Math.tan(i/2+this.s45),this.alfa)/h)-this.s45),n=-a*this.alfa,r=Math.asin(Math.cos(this.ad)*Math.sin(e)+Math.sin(this.ad)*Math.cos(e)*Math.cos(n)),o=Math.asin(Math.cos(e)*Math.sin(n)/Math.cos(r)),l=this.n*o,M=this.ro0*Math.pow(Math.tan(this.s0/2+this.s45),this.n)/Math.pow(Math.tan(r/2+this.s45),this.n);return t.y=M*Math.cos(l),t.x=M*Math.sin(l),this.czech||(t.y*=-1,t.x*=-1),t},inverse:function(t){var s,i,a,h,e,n,r,o=t.x;t.x=t.y,t.y=o,this.czech||(t.y*=-1,t.x*=-1),e=Math.sqrt(t.x*t.x+t.y*t.y),h=Math.atan2(t.y,t.x)/Math.sin(this.s0),a=2*(Math.atan(Math.pow(this.ro0/e,1/this.n)*Math.tan(this.s0/2+this.s45))-this.s45),s=Math.asin(Math.cos(this.ad)*Math.sin(a)-Math.sin(this.ad)*Math.cos(a)*Math.cos(h)),i=Math.asin(Math.cos(a)*Math.sin(h)/Math.cos(s)),t.x=this.long0-i/this.alfa,n=s;for(var l=r=0;t.y=2*(Math.atan(Math.pow(this.k,-1/this.alfa)*Math.pow(Math.tan(s/2+this.s45),1/this.alfa)*Math.pow((1+this.e*Math.sin(n))/(1-this.e*Math.sin(n)),this.e/2))-this.s45),Math.abs(n-t.y)<1e-10&&(r=1),n=t.y,l+=1,0===r&&l<15;);return 15<=l?null:t},names:["Krovak","krovak"]},cs={init:function(){this.sphere||(this.e0=Ft(this.es),this.e1=Qt(this.es),this.e2=Wt(this.es),this.e3=Xt(this.es),this.ml0=this.a*Ut(this.e0,this.e1,this.e2,this.e3,this.lat0))},forward:function(t){var s,i,a,h,e,n,r,o,l,M=t.x,c=t.y,M=nt(M-this.long0);return l=this.sphere?(o=this.a*Math.asin(Math.cos(c)*Math.sin(M)),this.a*(Math.atan2(Math.tan(c),Math.cos(M))-this.lat0)):(s=Math.sin(c),i=Math.cos(c),a=Ht(this.a,this.e,s),h=Math.tan(c)*Math.tan(c),o=a*(e=M*Math.cos(c))*(1-(n=e*e)*h*(1/6-(8-h+8*(r=this.es*i*i/(1-this.es)))*n/120)),this.a*Ut(this.e0,this.e1,this.e2,this.e3,c)-this.ml0+a*s/i*n*(.5+(5-h+6*r)*n/24)),t.x=o+this.x0,t.y=l+this.y0,t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s=t.x/this.a,i=t.y/this.a;if(this.sphere)var a=i+this.lat0,h=Math.asin(Math.sin(a)*Math.cos(s)),e=Math.atan2(Math.tan(s),Math.cos(a));else{var n=this.ml0/this.a+i,r=Kt(n,this.e0,this.e1,this.e2,this.e3);if(Math.abs(Math.abs(r)-z)<=D)return t.x=this.long0,t.y=z,i<0&&(t.y*=-1),t;var o=Ht(this.a,this.e,Math.sin(r)),l=o*o*o/this.a/this.a*(1-this.es),M=Math.pow(Math.tan(r),2),c=s*this.a/o,u=c*c;h=r-o*Math.tan(r)/l*c*c*(.5-(1+3*M)*c*c/24),e=c*(1-u*(M/3+(1+3*M)*M*u/15))/Math.cos(r)}return t.x=nt(e+this.long0),t.y=Jt(h),t},names:["Cassini","Cassini_Soldner","cass"]},us={init:function(){var t,s,i,a,h=Math.abs(this.lat0);if(Math.abs(h-z)<D?this.mode=this.lat0<0?this.S_POLE:this.N_POLE:Math.abs(h)<D?this.mode=this.EQUIT:this.mode=this.OBLIQ,0<this.es)switch(this.qp=Vt(this.e,1),this.mmf=.5/(1-this.es),this.apa=(s=this.es,(a=[])[0]=.3333333333333333*s,i=s*s,a[0]+=.17222222222222222*i,a[1]=.06388888888888888*i,i*=s,a[0]+=.10257936507936508*i,a[1]+=.0664021164021164*i,a[2]=.016415012942191543*i,a),this.mode){case this.N_POLE:case this.S_POLE:this.dd=1;break;case this.EQUIT:this.rq=Math.sqrt(.5*this.qp),this.dd=1/this.rq,this.xmf=1,this.ymf=.5*this.qp;break;case this.OBLIQ:this.rq=Math.sqrt(.5*this.qp),t=Math.sin(this.lat0),this.sinb1=Vt(this.e,t)/this.qp,this.cosb1=Math.sqrt(1-this.sinb1*this.sinb1),this.dd=Math.cos(this.lat0)/(Math.sqrt(1-this.es*t*t)*this.rq*this.cosb1),this.ymf=(this.xmf=this.rq)/this.dd,this.xmf*=this.dd}else this.mode===this.OBLIQ&&(this.sinph0=Math.sin(this.lat0),this.cosph0=Math.cos(this.lat0))},forward:function(t){var s,i,a,h,e,n,r,o,l,M,c=t.x,u=t.y,c=nt(c-this.long0);if(this.sphere){if(e=Math.sin(u),M=Math.cos(u),a=Math.cos(c),this.mode===this.OBLIQ||this.mode===this.EQUIT){if((i=this.mode===this.EQUIT?1+M*a:1+this.sinph0*e+this.cosph0*M*a)<=D)return null;s=(i=Math.sqrt(2/i))*M*Math.sin(c),i*=this.mode===this.EQUIT?e:this.cosph0*e-this.sinph0*M*a}else if(this.mode===this.N_POLE||this.mode===this.S_POLE){if(this.mode===this.N_POLE&&(a=-a),Math.abs(u+this.lat0)<D)return null;i=U-.5*u,s=(i=2*(this.mode===this.S_POLE?Math.cos(i):Math.sin(i)))*Math.sin(c),i*=a}}else{switch(l=o=r=0,a=Math.cos(c),h=Math.sin(c),e=Math.sin(u),n=Vt(this.e,e),this.mode!==this.OBLIQ&&this.mode!==this.EQUIT||(r=n/this.qp,o=Math.sqrt(1-r*r)),this.mode){case this.OBLIQ:l=1+this.sinb1*r+this.cosb1*o*a;break;case this.EQUIT:l=1+o*a;break;case this.N_POLE:l=z+u,n=this.qp-n;break;case this.S_POLE:l=u-z,n=this.qp+n}if(Math.abs(l)<D)return null;switch(this.mode){case this.OBLIQ:case this.EQUIT:l=Math.sqrt(2/l),i=this.mode===this.OBLIQ?this.ymf*l*(this.cosb1*r-this.sinb1*o*a):(l=Math.sqrt(2/(1+o*a)))*r*this.ymf,s=this.xmf*l*o*h;break;case this.N_POLE:case this.S_POLE:0<=n?(s=(l=Math.sqrt(n))*h,i=a*(this.mode===this.S_POLE?l:-l)):s=i=0}}return t.x=this.a*s+this.x0,t.y=this.a*i+this.y0,t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s,i,a,h,e,n,r,o,l,M,c=t.x/this.a,u=t.y/this.a;if(this.sphere){var f=0,m=0,p=Math.sqrt(c*c+u*u);if(1<(i=.5*p))return null;switch(i=2*Math.asin(i),this.mode!==this.OBLIQ&&this.mode!==this.EQUIT||(m=Math.sin(i),f=Math.cos(i)),this.mode){case this.EQUIT:i=Math.abs(p)<=D?0:Math.asin(u*m/p),c*=m,u=f*p;break;case this.OBLIQ:i=Math.abs(p)<=D?this.lat0:Math.asin(f*this.sinph0+u*m*this.cosph0/p),c*=m*this.cosph0,u=(f-Math.sin(i)*this.sinph0)*p;break;case this.N_POLE:u=-u,i=z-i;break;case this.S_POLE:i-=z}s=0!==u||this.mode!==this.EQUIT&&this.mode!==this.OBLIQ?Math.atan2(c,u):0}else{if(r=0,this.mode===this.OBLIQ||this.mode===this.EQUIT){if(c/=this.dd,u*=this.dd,(n=Math.sqrt(c*c+u*u))<D)return t.x=this.long0,t.y=this.lat0,t;h=2*Math.asin(.5*n/this.rq),a=Math.cos(h),c*=h=Math.sin(h),u=this.mode===this.OBLIQ?(r=a*this.sinb1+u*h*this.cosb1/n,e=this.qp*r,n*this.cosb1*a-u*this.sinb1*h):(r=u*h/n,e=this.qp*r,n*a)}else if(this.mode===this.N_POLE||this.mode===this.S_POLE){if(this.mode===this.N_POLE&&(u=-u),!(e=c*c+u*u))return t.x=this.long0,t.y=this.lat0,t;r=1-e/this.qp,this.mode===this.S_POLE&&(r=-r)}s=Math.atan2(c,u),o=Math.asin(r),l=this.apa,M=o+o,i=o+l[0]*Math.sin(M)+l[1]*Math.sin(M+M)+l[2]*Math.sin(M+M+M)}return t.x=nt(this.long0+s),t.y=i,t},names:["Lambert Azimuthal Equal Area","Lambert_Azimuthal_Equal_Area","laea"],S_POLE:1,N_POLE:2,EQUIT:3,OBLIQ:4},fs={init:function(){Math.abs(this.lat1+this.lat2)<D||(this.temp=this.b/this.a,this.es=1-Math.pow(this.temp,2),this.e3=Math.sqrt(this.es),this.sin_po=Math.sin(this.lat1),this.cos_po=Math.cos(this.lat1),this.t1=this.sin_po,this.con=this.sin_po,this.ms1=ht(this.e3,this.sin_po,this.cos_po),this.qs1=Vt(this.e3,this.sin_po,this.cos_po),this.sin_po=Math.sin(this.lat2),this.cos_po=Math.cos(this.lat2),this.t2=this.sin_po,this.ms2=ht(this.e3,this.sin_po,this.cos_po),this.qs2=Vt(this.e3,this.sin_po,this.cos_po),this.sin_po=Math.sin(this.lat0),this.cos_po=Math.cos(this.lat0),this.t3=this.sin_po,this.qs0=Vt(this.e3,this.sin_po,this.cos_po),Math.abs(this.lat1-this.lat2)>D?this.ns0=(this.ms1*this.ms1-this.ms2*this.ms2)/(this.qs2-this.qs1):this.ns0=this.con,this.c=this.ms1*this.ms1+this.ns0*this.qs1,this.rh=this.a*Math.sqrt(this.c-this.ns0*this.qs0)/this.ns0)},forward:function(t){var s=t.x,i=t.y;this.sin_phi=Math.sin(i),this.cos_phi=Math.cos(i);var a=Vt(this.e3,this.sin_phi,this.cos_phi),h=this.a*Math.sqrt(this.c-this.ns0*a)/this.ns0,e=this.ns0*nt(s-this.long0),n=h*Math.sin(e)+this.x0,r=this.rh-h*Math.cos(e)+this.y0;return t.x=n,t.y=r,t},inverse:function(t){var s,i,a,h,e,n;return t.x-=this.x0,t.y=this.rh-t.y+this.y0,a=0<=this.ns0?(s=Math.sqrt(t.x*t.x+t.y*t.y),1):(s=-Math.sqrt(t.x*t.x+t.y*t.y),-1),(h=0)!==s&&(h=Math.atan2(a*t.x,a*t.y)),a=s*this.ns0/this.a,n=this.sphere?Math.asin((this.c-a*a)/(2*this.ns0)):(i=(this.c-a*a)/this.ns0,this.phi1z(this.e3,i)),e=nt(h/this.ns0+this.long0),t.x=e,t.y=n,t},names:["Albers_Conic_Equal_Area","Albers","aea"],phi1z:function(t,s){var i,a,h,e,n=Zt(.5*s);if(t<D)return n;for(var r=t*t,o=1;o<=25;o++)if(n+=e=.5*(h=1-(a=t*(i=Math.sin(n)))*a)*h/Math.cos(n)*(s/(1-r)-i/h+.5/t*Math.log((1-a)/(1+a))),Math.abs(e)<=1e-7)return n;return null}},ms={init:function(){this.sin_p14=Math.sin(this.lat0),this.cos_p14=Math.cos(this.lat0),this.infinity_dist=1e3*this.a,this.rc=1},forward:function(t){var s,i,a=t.x,h=t.y,e=nt(a-this.long0),n=Math.sin(h),r=Math.cos(h),o=Math.cos(e),l=0<(s=this.sin_p14*n+this.cos_p14*r*o)||Math.abs(s)<=D?(i=this.x0+this.a*r*Math.sin(e)/s,this.y0+this.a*(this.cos_p14*n-this.sin_p14*r*o)/s):(i=this.x0+this.infinity_dist*r*Math.sin(e),this.y0+this.infinity_dist*(this.cos_p14*n-this.sin_p14*r*o));return t.x=i,t.y=l,t},inverse:function(t){var s,i,a,h,e,n;return t.x=(t.x-this.x0)/this.a,t.y=(t.y-this.y0)/this.a,t.x/=this.k0,t.y/=this.k0,e=(s=Math.sqrt(t.x*t.x+t.y*t.y))?(h=Math.atan2(s,this.rc),i=Math.sin(h),a=Math.cos(h),n=Zt(a*this.sin_p14+t.y*i*this.cos_p14/s),e=Math.atan2(t.x*i,s*this.cos_p14*a-t.y*this.sin_p14*i),nt(this.long0+e)):(n=this.phic0,0),t.x=e,t.y=n,t},names:["gnom"]},ps={init:function(){this.sphere||(this.k0=ht(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)))},forward:function(t){var s,i,a,h=t.x,e=t.y,n=nt(h-this.long0);return a=this.sphere?(i=this.x0+this.a*n*Math.cos(this.lat_ts),this.y0+this.a*Math.sin(e)/Math.cos(this.lat_ts)):(s=Vt(this.e,Math.sin(e)),i=this.x0+this.a*this.k0*n,this.y0+this.a*s*.5/this.k0),t.x=i,t.y=a,t},inverse:function(t){var s,i;return t.x-=this.x0,t.y-=this.y0,this.sphere?(s=nt(this.long0+t.x/this.a/Math.cos(this.lat_ts)),i=Math.asin(t.y/this.a*Math.cos(this.lat_ts))):(i=function(t,s){var i=1-(1-t*t)/(2*t)*Math.log((1-t)/(1+t));if(Math.abs(Math.abs(s)-i)<1e-6)return s<0?-1*z:z;for(var a,h,e,n,r=Math.asin(.5*s),o=0;o<30;o++)if(h=Math.sin(r),e=Math.cos(r),n=t*h,r+=a=Math.pow(1-n*n,2)/(2*e)*(s/(1-t*t)-h/(1-n*n)+.5/t*Math.log((1-n)/(1+n))),Math.abs(a)<=1e-10)return r;return NaN}(this.e,2*t.y*this.k0/this.a),s=nt(this.long0+t.x/(this.a*this.k0))),t.x=s,t.y=i,t},names:["cea"]},ds={init:function(){this.x0=this.x0||0,this.y0=this.y0||0,this.lat0=this.lat0||0,this.long0=this.long0||0,this.lat_ts=this.lat_ts||0,this.title=this.title||"Equidistant Cylindrical (Plate Carre)",this.rc=Math.cos(this.lat_ts)},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=Jt(i-this.lat0);return t.x=this.x0+this.a*a*this.rc,t.y=this.y0+this.a*h,t},inverse:function(t){var s=t.x,i=t.y;return t.x=nt(this.long0+(s-this.x0)/(this.a*this.rc)),t.y=Jt(this.lat0+(i-this.y0)/this.a),t},names:["Equirectangular","Equidistant_Cylindrical","eqc"]},ys={init:function(){this.temp=this.b/this.a,this.es=1-Math.pow(this.temp,2),this.e=Math.sqrt(this.es),this.e0=Ft(this.es),this.e1=Qt(this.es),this.e2=Wt(this.es),this.e3=Xt(this.es),this.ml0=this.a*Ut(this.e0,this.e1,this.e2,this.e3,this.lat0)},forward:function(t){var s,i,a,h=t.x,e=t.y,n=nt(h-this.long0),r=n*Math.sin(e);return a=this.sphere?Math.abs(e)<=D?(i=this.a*n,-1*this.a*this.lat0):(i=this.a*Math.sin(r)/Math.tan(e),this.a*(Jt(e-this.lat0)+(1-Math.cos(r))/Math.tan(e))):Math.abs(e)<=D?(i=this.a*n,-1*this.ml0):(i=(s=Ht(this.a,this.e,Math.sin(e))/Math.tan(e))*Math.sin(r),this.a*Ut(this.e0,this.e1,this.e2,this.e3,e)-this.ml0+s*(1-Math.cos(r))),t.x=i+this.x0,t.y=a+this.y0,t},inverse:function(t){var s,i,a,h,e,n,r,o,l=t.x-this.x0,M=t.y-this.y0;if(this.sphere)if(Math.abs(M+this.a*this.lat0)<=D)s=nt(l/this.a+this.long0),i=0;else{for(var c,u=this.lat0+M/this.a,f=l*l/this.a/this.a+u*u,m=u,p=20;p;--p)if(m+=a=-1*(u*(m*(c=Math.tan(m))+1)-m-.5*(m*m+f)*c)/((m-u)/c-1),Math.abs(a)<=D){i=m;break}s=nt(this.long0+Math.asin(l*Math.tan(m)/this.a)/Math.sin(i))}else if(Math.abs(M+this.ml0)<=D)i=0,s=nt(this.long0+l/this.a);else{for(u=(this.ml0+M)/this.a,f=l*l/this.a/this.a+u*u,m=u,p=20;p;--p)if(o=this.e*Math.sin(m),h=Math.sqrt(1-o*o)*Math.tan(m),e=this.a*Ut(this.e0,this.e1,this.e2,this.e3,m),n=this.e0-2*this.e1*Math.cos(2*m)+4*this.e2*Math.cos(4*m)-6*this.e3*Math.cos(6*m),m-=a=(u*(h*(r=e/this.a)+1)-r-.5*h*(r*r+f))/(this.es*Math.sin(2*m)*(r*r+f-2*u*r)/(4*h)+(u-r)*(h*n-2/Math.sin(2*m))-n),Math.abs(a)<=D){i=m;break}h=Math.sqrt(1-this.es*Math.pow(Math.sin(i),2))*Math.tan(i),s=nt(this.long0+Math.asin(l*h/this.a)/Math.sin(i))}return t.x=s,t.y=i,t},names:["Polyconic","poly"]},_s={init:function(){this.A=[],this.A[1]=.6399175073,this.A[2]=-.1358797613,this.A[3]=.063294409,this.A[4]=-.02526853,this.A[5]=.0117879,this.A[6]=-.0055161,this.A[7]=.0026906,this.A[8]=-.001333,this.A[9]=67e-5,this.A[10]=-34e-5,this.B_re=[],this.B_im=[],this.B_re[1]=.7557853228,this.B_im[1]=0,this.B_re[2]=.249204646,this.B_im[2]=.003371507,this.B_re[3]=-.001541739,this.B_im[3]=.04105856,this.B_re[4]=-.10162907,this.B_im[4]=.01727609,this.B_re[5]=-.26623489,this.B_im[5]=-.36249218,this.B_re[6]=-.6870983,this.B_im[6]=-1.1651967,this.C_re=[],this.C_im=[],this.C_re[1]=1.3231270439,this.C_im[1]=0,this.C_re[2]=-.577245789,this.C_im[2]=-.007809598,this.C_re[3]=.508307513,this.C_im[3]=-.112208952,this.C_re[4]=-.15094762,this.C_im[4]=.18200602,this.C_re[5]=1.01418179,this.C_im[5]=1.64497696,this.C_re[6]=1.9660549,this.C_im[6]=2.5127645,this.D=[],this.D[1]=1.5627014243,this.D[2]=.5185406398,this.D[3]=-.03333098,this.D[4]=-.1052906,this.D[5]=-.0368594,this.D[6]=.007317,this.D[7]=.0122,this.D[8]=.00394,this.D[9]=-.0013},forward:function(t){for(var s=t.x,i=t.y-this.lat0,a=s-this.long0,h=i/j*1e-5,e=a,n=1,r=0,o=1;o<=10;o++)n*=h,r+=this.A[o]*n;var l,M=r,c=e,u=1,f=0,m=0,p=0;for(o=1;o<=6;o++)l=f*M+u*c,u=u*M-f*c,f=l,m=m+this.B_re[o]*u-this.B_im[o]*f,p=p+this.B_im[o]*u+this.B_re[o]*f;return t.x=p*this.a+this.x0,t.y=m*this.a+this.y0,t},inverse:function(t){var s,i=t.x,a=t.y,h=i-this.x0,e=(a-this.y0)/this.a,n=h/this.a,r=1,o=0,l=0,M=0;for(y=1;y<=6;y++)s=o*e+r*n,r=r*e-o*n,o=s,l=l+this.C_re[y]*r-this.C_im[y]*o,M=M+this.C_im[y]*r+this.C_re[y]*o;for(var c=0;c<this.iterations;c++){for(var u,f=l,m=M,p=e,d=n,y=2;y<=6;y++)u=m*l+f*M,f=f*l-m*M,m=u,p+=(y-1)*(this.B_re[y]*f-this.B_im[y]*m),d+=(y-1)*(this.B_im[y]*f+this.B_re[y]*m);f=1,m=0;var _=this.B_re[1],x=this.B_im[1];for(y=2;y<=6;y++)u=m*l+f*M,f=f*l-m*M,m=u,_+=y*(this.B_re[y]*f-this.B_im[y]*m),x+=y*(this.B_im[y]*f+this.B_re[y]*m);var g=_*_+x*x,l=(p*_+d*x)/g,M=(d*_-p*x)/g}var b=l,v=M,w=1,C=0;for(y=1;y<=9;y++)w*=b,C+=this.D[y]*w;var P=this.lat0+C*j*1e5,S=this.long0+v;return t.x=S,t.y=P,t},names:["New_Zealand_Map_Grid","nzmg"]},xs={init:function(){},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=this.x0+this.a*a,e=this.y0+this.a*Math.log(Math.tan(Math.PI/4+i/2.5))*1.25;return t.x=h,t.y=e,t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s=nt(this.long0+t.x/this.a),i=2.5*(Math.atan(Math.exp(.8*t.y/this.a))-Math.PI/4);return t.x=s,t.y=i,t},names:["Miller_Cylindrical","mill"]},gs={init:function(){this.sphere?(this.n=1,this.m=0,this.es=0,this.C_y=Math.sqrt((this.m+1)/this.n),this.C_x=this.C_y/(this.m+1)):this.en=At(this.es)},forward:function(t){var s=t.x,i=t.y,s=nt(s-this.long0);if(this.sphere){if(this.m)for(var a=this.n*Math.sin(i),h=20;h;--h){var e=(this.m*i+Math.sin(i)-a)/(this.m+Math.cos(i));if(i-=e,Math.abs(e)<D)break}else i=1!==this.n?Math.asin(this.n*Math.sin(i)):i;l=this.a*this.C_x*s*(this.m+Math.cos(i)),o=this.a*this.C_y*i}else var n=Math.sin(i),r=Math.cos(i),o=this.a*Gt(i,n,r,this.en),l=this.a*s*r/Math.sqrt(1-this.es*n*n);return t.x=l,t.y=o,t},inverse:function(t){var s,i,a,h;return t.x-=this.x0,a=t.x/this.a,t.y-=this.y0,s=t.y/this.a,this.sphere?(s/=this.C_y,a/=this.C_x*(this.m+Math.cos(s)),this.m?s=Zt((this.m*s+Math.sin(s))/this.n):1!==this.n&&(s=Zt(Math.sin(s)/this.n)),a=nt(a+this.long0),s=Jt(s)):(s=jt(t.y/this.a,this.es,this.en),(h=Math.abs(s))<z?(h=Math.sin(s),i=this.long0+t.x*Math.sqrt(1-this.es*h*h)/(this.a*Math.cos(s)),a=nt(i)):h-D<z&&(a=this.long0)),t.x=a,t.y=s,t},names:["Sinusoidal","sinu"]},bs={init:function(){},forward:function(t){for(var s=t.x,i=t.y,a=nt(s-this.long0),h=i,e=Math.PI*Math.sin(i);;){var n=-(h+Math.sin(h)-e)/(1+Math.cos(h));if(h+=n,Math.abs(n)<D)break}h/=2,Math.PI/2-Math.abs(i)<D&&(a=0);var r=.900316316158*this.a*a*Math.cos(h)+this.x0,o=1.4142135623731*this.a*Math.sin(h)+this.y0;return t.x=r,t.y=o,t},inverse:function(t){var s,i;t.x-=this.x0,t.y-=this.y0,i=t.y/(1.4142135623731*this.a),.999999999999<Math.abs(i)&&(i=.999999999999),s=Math.asin(i);var a=nt(this.long0+t.x/(.900316316158*this.a*Math.cos(s)));a<-Math.PI&&(a=-Math.PI),a>Math.PI&&(a=Math.PI),i=(2*s+Math.sin(2*s))/Math.PI,1<Math.abs(i)&&(i=1);var h=Math.asin(i);return t.x=a,t.y=h,t},names:["Mollweide","moll"]},vs={init:function(){Math.abs(this.lat1+this.lat2)<D||(this.lat2=this.lat2||this.lat1,this.temp=this.b/this.a,this.es=1-Math.pow(this.temp,2),this.e=Math.sqrt(this.es),this.e0=Ft(this.es),this.e1=Qt(this.es),this.e2=Wt(this.es),this.e3=Xt(this.es),this.sinphi=Math.sin(this.lat1),this.cosphi=Math.cos(this.lat1),this.ms1=ht(this.e,this.sinphi,this.cosphi),this.ml1=Ut(this.e0,this.e1,this.e2,this.e3,this.lat1),Math.abs(this.lat1-this.lat2)<D?this.ns=this.sinphi:(this.sinphi=Math.sin(this.lat2),this.cosphi=Math.cos(this.lat2),this.ms2=ht(this.e,this.sinphi,this.cosphi),this.ml2=Ut(this.e0,this.e1,this.e2,this.e3,this.lat2),this.ns=(this.ms1-this.ms2)/(this.ml2-this.ml1)),this.g=this.ml1+this.ms1/this.ns,this.ml0=Ut(this.e0,this.e1,this.e2,this.e3,this.lat0),this.rh=this.a*(this.g-this.ml0))},forward:function(t){var s,i,a=t.x,h=t.y;i=this.sphere?this.a*(this.g-h):(s=Ut(this.e0,this.e1,this.e2,this.e3,h),this.a*(this.g-s));var e=this.ns*nt(a-this.long0),n=this.x0+i*Math.sin(e),r=this.y0+this.rh-i*Math.cos(e);return t.x=n,t.y=r,t},inverse:function(t){var s,i;t.x-=this.x0,t.y=this.rh-t.y+this.y0,s=0<=this.ns?(i=Math.sqrt(t.x*t.x+t.y*t.y),1):(i=-Math.sqrt(t.x*t.x+t.y*t.y),-1);var a=0;if(0!==i&&(a=Math.atan2(s*t.x,s*t.y)),this.sphere)return n=nt(this.long0+a/this.ns),e=Jt(this.g-i/this.a),t.x=n,t.y=e,t;var h=this.g-i/this.a,e=Kt(h,this.e0,this.e1,this.e2,this.e3),n=nt(this.long0+a/this.ns);return t.x=n,t.y=e,t},names:["Equidistant_Conic","eqdc"]},ws={init:function(){this.R=this.a},forward:function(t){var s,i=t.x,a=t.y,h=nt(i-this.long0);Math.abs(a)<=D&&(s=this.x0+this.R*h,d=this.y0);var e=Zt(2*Math.abs(a/Math.PI));(Math.abs(h)<=D||Math.abs(Math.abs(a)-z)<=D)&&(s=this.x0,d=0<=a?this.y0+Math.PI*this.R*Math.tan(.5*e):this.y0+Math.PI*this.R*-Math.tan(.5*e));var n=.5*Math.abs(Math.PI/h-h/Math.PI),r=n*n,o=Math.sin(e),l=Math.cos(e),M=l/(o+l-1),c=M*M,u=M*(2/o-1),f=u*u,m=Math.PI*this.R*(n*(M-f)+Math.sqrt(r*(M-f)*(M-f)-(f+r)*(c-f)))/(f+r);h<0&&(m=-m),s=this.x0+m;var p=r+M,m=Math.PI*this.R*(u*p-n*Math.sqrt((f+r)*(1+r)-p*p))/(f+r),d=0<=a?this.y0+m:this.y0-m;return t.x=s,t.y=d,t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u;return t.x-=this.x0,t.y-=this.y0,c=Math.PI*this.R,e=(a=t.x/c)*a+(h=t.y/c)*h,c=3*(h*h/(o=-2*(n=-Math.abs(h)*(1+e))+1+2*h*h+e*e)+(2*(r=n-2*h*h+a*a)*r*r/o/o/o-9*n*r/o/o)/27)/(l=(n-r*r/3/o)/o)/(M=2*Math.sqrt(-l/3)),1<Math.abs(c)&&(c=0<=c?1:-1),u=Math.acos(c)/3,i=0<=t.y?(-M*Math.cos(u+Math.PI/3)-r/3/o)*Math.PI:-(-M*Math.cos(u+Math.PI/3)-r/3/o)*Math.PI,s=Math.abs(a)<D?this.long0:nt(this.long0+Math.PI*(e-1+Math.sqrt(1+2*(a*a-h*h)+e*e))/2/a),t.x=s,t.y=i,t},names:["Van_der_Grinten_I","VanDerGrinten","vandg"]},Cs={init:function(){this.sin_p12=Math.sin(this.lat0),this.cos_p12=Math.cos(this.lat0)},forward:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_,x,g,b,v,w=t.x,C=t.y,P=Math.sin(t.y),S=Math.cos(t.y),N=nt(w-this.long0);return this.sphere?Math.abs(this.sin_p12-1)<=D?(t.x=this.x0+this.a*(z-C)*Math.sin(N),t.y=this.y0-this.a*(z-C)*Math.cos(N)):Math.abs(this.sin_p12+1)<=D?(t.x=this.x0+this.a*(z+C)*Math.sin(N),t.y=this.y0+this.a*(z+C)*Math.cos(N)):(_=this.sin_p12*P+this.cos_p12*S*Math.cos(N),y=(d=Math.acos(_))?d/Math.sin(d):1,t.x=this.x0+this.a*y*S*Math.sin(N),t.y=this.y0+this.a*y*(this.cos_p12*P-this.sin_p12*S*Math.cos(N))):(s=Ft(this.es),i=Qt(this.es),a=Wt(this.es),h=Xt(this.es),Math.abs(this.sin_p12-1)<=D?(e=this.a*Ut(s,i,a,h,z),n=this.a*Ut(s,i,a,h,C),t.x=this.x0+(e-n)*Math.sin(N),t.y=this.y0-(e-n)*Math.cos(N)):Math.abs(this.sin_p12+1)<=D?(e=this.a*Ut(s,i,a,h,z),n=this.a*Ut(s,i,a,h,C),t.x=this.x0+(e+n)*Math.sin(N),t.y=this.y0+(e+n)*Math.cos(N)):(r=P/S,o=Ht(this.a,this.e,this.sin_p12),l=Ht(this.a,this.e,P),M=Math.atan((1-this.es)*r+this.es*o*this.sin_p12/(l*S)),x=0===(c=Math.atan2(Math.sin(N),this.cos_p12*Math.tan(M)-this.sin_p12*Math.cos(N)))?Math.asin(this.cos_p12*Math.sin(M)-this.sin_p12*Math.cos(M)):Math.abs(Math.abs(c)-Math.PI)<=D?-Math.asin(this.cos_p12*Math.sin(M)-this.sin_p12*Math.cos(M)):Math.asin(Math.sin(N)*Math.cos(M)/Math.sin(c)),u=this.e*this.sin_p12/Math.sqrt(1-this.es),d=o*x*(1-(g=x*x)*(p=(f=this.e*this.cos_p12*Math.cos(c)/Math.sqrt(1-this.es))*f)*(1-p)/6+(b=g*x)/8*(m=u*f)*(1-2*p)+(v=b*x)/120*(p*(4-7*p)-3*u*u*(1-7*p))-v*x/48*m),t.x=this.x0+d*Math.sin(c),t.y=this.y0+d*Math.cos(c))),t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_,x,g,b,v,w;if(t.x-=this.x0,t.y-=this.y0,this.sphere){if((s=Math.sqrt(t.x*t.x+t.y*t.y))>2*z*this.a)return;return i=s/this.a,a=Math.sin(i),h=Math.cos(i),e=this.long0,Math.abs(s)<=D?n=this.lat0:(n=Zt(h*this.sin_p12+t.y*a*this.cos_p12/s),r=Math.abs(this.lat0)-z,e=nt(Math.abs(r)<=D?0<=this.lat0?this.long0+Math.atan2(t.x,-t.y):this.long0-Math.atan2(-t.x,t.y):this.long0+Math.atan2(t.x*a,s*this.cos_p12*h-t.y*this.sin_p12*a))),t.x=e,t.y=n,t}return o=Ft(this.es),l=Qt(this.es),M=Wt(this.es),c=Xt(this.es),Math.abs(this.sin_p12-1)<=D?(u=this.a*Ut(o,l,M,c,z),s=Math.sqrt(t.x*t.x+t.y*t.y),n=Kt((u-s)/this.a,o,l,M,c),e=nt(this.long0+Math.atan2(t.x,-1*t.y))):Math.abs(this.sin_p12+1)<=D?(u=this.a*Ut(o,l,M,c,z),s=Math.sqrt(t.x*t.x+t.y*t.y),n=Kt((s-u)/this.a,o,l,M,c),e=nt(this.long0+Math.atan2(t.x,t.y))):(s=Math.sqrt(t.x*t.x+t.y*t.y),p=Math.atan2(t.x,t.y),f=Ht(this.a,this.e,this.sin_p12),d=Math.cos(p),_=-(y=this.e*this.cos_p12*d)*y/(1-this.es),x=3*this.es*(1-_)*this.sin_p12*this.cos_p12*d/(1-this.es),v=1-_*(b=(g=s/f)-_*(1+_)*Math.pow(g,3)/6-x*(1+3*_)*Math.pow(g,4)/24)*b/2-g*b*b*b/6,m=Math.asin(this.sin_p12*Math.cos(b)+this.cos_p12*Math.sin(b)*d),e=nt(this.long0+Math.asin(Math.sin(p)*Math.sin(b)/Math.cos(m))),w=Math.sin(m),n=Math.atan2((w-this.es*v*this.sin_p12)*Math.tan(m),w*(1-this.es))),t.x=e,t.y=n,t},names:["Azimuthal_Equidistant","aeqd"]},Ps={init:function(){this.sin_p14=Math.sin(this.lat0),this.cos_p14=Math.cos(this.lat0)},forward:function(t){var s,i,a,h=t.x,e=t.y,n=nt(h-this.long0),r=Math.sin(e),o=Math.cos(e),l=Math.cos(n);return(0<(s=this.sin_p14*r+this.cos_p14*o*l)||Math.abs(s)<=D)&&(i=this.a*o*Math.sin(n),a=this.y0+this.a*(this.cos_p14*r-this.sin_p14*o*l)),t.x=i,t.y=a,t},inverse:function(t){var s,i,a,h,e,n,r;return t.x-=this.x0,t.y-=this.y0,s=Math.sqrt(t.x*t.x+t.y*t.y),i=Zt(s/this.a),a=Math.sin(i),h=Math.cos(i),n=this.long0,Math.abs(s)<=D?r=this.lat0:(r=Zt(h*this.sin_p14+t.y*a*this.cos_p14/s),e=Math.abs(this.lat0)-z,n=Math.abs(e)<=D?nt(0<=this.lat0?this.long0+Math.atan2(t.x,-t.y):this.long0-Math.atan2(-t.x,t.y)):nt(this.long0+Math.atan2(t.x*a,s*this.cos_p14*h-t.y*this.sin_p14*a))),t.x=n,t.y=r,t},names:["ortho"]},Ss=1,Ns=2,ks=3,Es=4,qs=5,Is=6,Os=1,As=2,Gs=3,js=4,zs={init:function(){this.x0=this.x0||0,this.y0=this.y0||0,this.lat0=this.lat0||0,this.long0=this.long0||0,this.lat_ts=this.lat_ts||0,this.title=this.title||"Quadrilateralized Spherical Cube",this.lat0>=z-U/2?this.face=qs:this.lat0<=-(z-U/2)?this.face=Is:Math.abs(this.long0)<=U?this.face=Ss:Math.abs(this.long0)<=z+U?this.face=0<this.long0?Ns:Es:this.face=ks,0!==this.es&&(this.one_minus_f=1-(this.a-this.b)/this.a,this.one_minus_f_squared=this.one_minus_f*this.one_minus_f)},forward:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f={x:0,y:0},m={value:0};return t.x-=this.long0,s=0!==this.es?Math.atan(this.one_minus_f_squared*Math.tan(t.y)):t.y,i=t.x,this.face===qs?(h=z-s,a=U<=i&&i<=z+U?(m.value=Os,i-z):z+U<i||i<=-(z+U)?(m.value=As,0<i?i-Q:i+Q):-(z+U)<i&&i<=-U?(m.value=Gs,i+z):(m.value=js,i)):this.face===Is?(h=z+s,a=U<=i&&i<=z+U?(m.value=Os,z-i):i<U&&-U<=i?(m.value=As,-i):i<-U&&-(z+U)<=i?(m.value=Gs,-i-z):(m.value=js,0<i?Q-i:-i-Q)):(this.face===Ns?i=S(i,+z):this.face===ks?i=S(i,+Q):this.face===Es&&(i=S(i,-z)),M=Math.sin(s),c=Math.cos(s),u=Math.sin(i),r=c*Math.cos(i),o=c*u,l=M,this.face===Ss?a=P(h=Math.acos(r),l,o,m):this.face===Ns?a=P(h=Math.acos(o),l,-r,m):this.face===ks?a=P(h=Math.acos(-r),l,-o,m):this.face===Es?a=P(h=Math.acos(-o),l,r,m):(h=a=0,m.value=Os)),n=Math.atan(12/Q*(a+Math.acos(Math.sin(a)*Math.cos(U))-z)),e=Math.sqrt((1-Math.cos(h))/(Math.cos(n)*Math.cos(n))/(1-Math.cos(Math.atan(1/Math.cos(a))))),m.value===As?n+=z:m.value===Gs?n+=Q:m.value===js&&(n+=1.5*Q),f.x=e*Math.cos(n),f.y=e*Math.sin(n),f.x=f.x*this.a+this.x0,f.y=f.y*this.a+this.y0,t.x=f.x,t.y=f.y,t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d={lam:0,phi:0},y={value:0};return t.x=(t.x-this.x0)/this.a,t.y=(t.y-this.y0)/this.a,i=Math.atan(Math.sqrt(t.x*t.x+t.y*t.y)),s=Math.atan2(t.y,t.x),0<=t.x&&t.x>=Math.abs(t.y)?y.value=Os:0<=t.y&&t.y>=Math.abs(t.x)?(y.value=As,s-=z):t.x<0&&-t.x>=Math.abs(t.y)?(y.value=Gs,s=s<0?s+Q:s-Q):(y.value=js,s+=z),c=Q/12*Math.tan(s),e=Math.sin(c)/(Math.cos(c)-1/Math.sqrt(2)),n=Math.atan(e),(r=1-(a=Math.cos(s))*a*(h=Math.tan(i))*h*(1-Math.cos(Math.atan(1/Math.cos(n)))))<-1?r=-1:1<r&&(r=1),this.face===qs?(o=Math.acos(r),d.phi=z-o,y.value===Os?d.lam=n+z:y.value===As?d.lam=n<0?n+Q:n-Q:y.value===Gs?d.lam=n-z:d.lam=n):this.face===Is?(o=Math.acos(r),d.phi=o-z,y.value===Os?d.lam=z-n:y.value===As?d.lam=-n:y.value===Gs?d.lam=-n-z:d.lam=n<0?-n-Q:Q-n):(c=(l=r)*l,u=1<=(c+=(M=1<=c?0:Math.sqrt(1-c)*Math.sin(n))*M)?0:Math.sqrt(1-c),y.value===As?(c=u,u=-M,M=c):y.value===Gs?(u=-u,M=-M):y.value===js&&(c=u,u=M,M=-c),this.face===Ns?(c=l,l=-u,u=c):this.face===ks?(l=-l,u=-u):this.face===Es&&(c=l,l=u,u=-c),d.phi=Math.acos(-M)-z,d.lam=Math.atan2(u,l),this.face===Ns?d.lam=S(d.lam,-z):this.face===ks?d.lam=S(d.lam,-Q):this.face===Es&&(d.lam=S(d.lam,+z))),0!==this.es&&(f=d.phi<0?1:0,m=Math.tan(d.phi),p=this.b/Math.sqrt(m*m+this.one_minus_f_squared),d.phi=Math.atan(Math.sqrt(this.a*this.a-p*p)/(this.one_minus_f*p)),f&&(d.phi=-d.phi)),d.lam+=this.long0,t.x=d.lam,t.y=d.phi,t},names:["Quadrilateralized Spherical Cube","Quadrilateralized_Spherical_Cube","qsc"]},Rs=[[1,22199e-21,-715515e-10,31103e-10],[.9986,-482243e-9,-24897e-9,-13309e-10],[.9954,-83103e-8,-448605e-10,-9.86701e-7],[.99,-.00135364,-59661e-9,36777e-10],[.9822,-.00167442,-449547e-11,-572411e-11],[.973,-.00214868,-903571e-10,1.8736e-8],[.96,-.00305085,-900761e-10,164917e-11],[.9427,-.00382792,-653386e-10,-26154e-10],[.9216,-.00467746,-10457e-8,481243e-11],[.8962,-.00536223,-323831e-10,-543432e-11],[.8679,-.00609363,-113898e-9,332484e-11],[.835,-.00698325,-640253e-10,9.34959e-7],[.7986,-.00755338,-500009e-10,9.35324e-7],[.7597,-.00798324,-35971e-9,-227626e-11],[.7186,-.00851367,-701149e-10,-86303e-10],[.6732,-.00986209,-199569e-9,191974e-10],[.6213,-.010418,883923e-10,624051e-11],[.5722,-.00906601,182e-6,624051e-11],[.5322,-.00677797,275608e-9,624051e-11]],Ls=[[-520417e-23,.0124,121431e-23,-845284e-16],[.062,.0124,-1.26793e-9,4.22642e-10],[.124,.0124,5.07171e-9,-1.60604e-9],[.186,.0123999,-1.90189e-8,6.00152e-9],[.248,.0124002,7.10039e-8,-2.24e-8],[.31,.0123992,-2.64997e-7,8.35986e-8],[.372,.0124029,9.88983e-7,-3.11994e-7],[.434,.0123893,-369093e-11,-4.35621e-7],[.4958,.0123198,-102252e-10,-3.45523e-7],[.5571,.0121916,-154081e-10,-5.82288e-7],[.6176,.0119938,-241424e-10,-5.25327e-7],[.6769,.011713,-320223e-10,-5.16405e-7],[.7346,.0113541,-397684e-10,-6.09052e-7],[.7903,.0109107,-489042e-10,-104739e-11],[.8435,.0103431,-64615e-9,-1.40374e-9],[.8936,.00969686,-64636e-9,-8547e-9],[.9394,.00840947,-192841e-9,-42106e-10],[.9761,.00616527,-256e-6,-42106e-10],[1,.00328947,-319159e-9,-42106e-10]],Ts=B/5,Ds=1/Ts,Bs={init:function(){this.x0=this.x0||0,this.y0=this.y0||0,this.long0=this.long0||0,this.es=0,this.title=this.title||"Robinson"},forward:function(t){var s=nt(t.x-this.long0),i=Math.abs(t.y),a=Math.floor(i*Ts);a<0?a=0:18<=a&&(a=17);var h={x:Yt(Rs[a],i=B*(i-Ds*a))*s,y:Yt(Ls[a],i)};return t.y<0&&(h.y=-h.y),h.x=h.x*this.a*.8487+this.x0,h.y=h.y*this.a*1.3523+this.y0,h},inverse:function(t){var a={x:(t.x-this.x0)/(.8487*this.a),y:Math.abs(t.y-this.y0)/(1.3523*this.a)};if(1<=a.y)a.x/=Rs[18][0],a.y=t.y<0?-z:z;else{var s=Math.floor(18*a.y);for(s<0?s=0:18<=s&&(s=17);;)if(Ls[s][0]>a.y)--s;else{if(!(Ls[s+1][0]<=a.y))break;++s}var h=Ls[s],i=function(t,s,i,a){for(var h=s;a;--a){var e=t(h);if(h-=e,Math.abs(e)<i)break}return h}(function(t){return(Yt(h,t)-a.y)/(i=t,(s=h)[1]+i*(2*s[2]+3*i*s[3]));var s,i},i=5*(a.y-h[0])/(Ls[s+1][0]-h[0]),D,100);a.x/=Yt(Rs[s],i),a.y=(5*s+i)*N,t.y<0&&(a.y=-a.y)}return a.x=nt(a.x+this.long0),a},names:["Robinson","robin"]},Us={init:function(){this.name="geocent"},forward:function(t){return M(t,this.es,this.a)},inverse:function(t){return c(t,this.es,this.a,this.b)},names:["Geocentric","geocentric","geocent","Geocent"]};return a.defaultDatum="WGS84",a.Proj=q,a.WGS84=new a.Proj("WGS84"),a.Point=C,a.toPoint=bt,a.defs=l,a.transform=f,a.mgrs=Ot,a.version="2.6.2",($t=a).Proj.projections.add(ss),$t.Proj.projections.add(is),$t.Proj.projections.add(as),$t.Proj.projections.add(es),$t.Proj.projections.add(ns),$t.Proj.projections.add(rs),$t.Proj.projections.add(os),$t.Proj.projections.add(ls),$t.Proj.projections.add(Ms),$t.Proj.projections.add(cs),$t.Proj.projections.add(us),$t.Proj.projections.add(fs),$t.Proj.projections.add(ms),$t.Proj.projections.add(ps),$t.Proj.projections.add(ds),$t.Proj.projections.add(ys),$t.Proj.projections.add(_s),$t.Proj.projections.add(xs),$t.Proj.projections.add(gs),$t.Proj.projections.add(bs),$t.Proj.projections.add(vs),$t.Proj.projections.add(ws),$t.Proj.projections.add(Cs),$t.Proj.projections.add(Ps),$t.Proj.projections.add(zs),$t.Proj.projections.add(Bs),$t.Proj.projections.add(Us),a});</script>
|
|
<script>(function (factory) {
|
|
var L, proj4;
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD
|
|
define(['leaflet', 'proj4'], factory);
|
|
} else if (typeof module === 'object' && typeof module.exports === "object") {
|
|
// Node/CommonJS
|
|
L = require('leaflet');
|
|
proj4 = require('proj4');
|
|
module.exports = factory(L, proj4);
|
|
} else {
|
|
// Browser globals
|
|
if (typeof window.L === 'undefined' || typeof window.proj4 === 'undefined')
|
|
throw 'Leaflet and proj4 must be loaded first';
|
|
factory(window.L, window.proj4);
|
|
}
|
|
}(function (L, proj4) {
|
|
if (proj4.__esModule && proj4.default) {
|
|
// If proj4 was bundled as an ES6 module, unwrap it to get
|
|
// to the actual main proj4 object.
|
|
// See discussion in https://github.com/kartena/Proj4Leaflet/pull/147
|
|
proj4 = proj4.default;
|
|
}
|
|
|
|
L.Proj = {};
|
|
|
|
L.Proj._isProj4Obj = function(a) {
|
|
return (typeof a.inverse !== 'undefined' &&
|
|
typeof a.forward !== 'undefined');
|
|
};
|
|
|
|
L.Proj.Projection = L.Class.extend({
|
|
initialize: function(code, def, bounds) {
|
|
var isP4 = L.Proj._isProj4Obj(code);
|
|
this._proj = isP4 ? code : this._projFromCodeDef(code, def);
|
|
this.bounds = isP4 ? def : bounds;
|
|
},
|
|
|
|
project: function (latlng) {
|
|
var point = this._proj.forward([latlng.lng, latlng.lat]);
|
|
return new L.Point(point[0], point[1]);
|
|
},
|
|
|
|
unproject: function (point, unbounded) {
|
|
var point2 = this._proj.inverse([point.x, point.y]);
|
|
return new L.LatLng(point2[1], point2[0], unbounded);
|
|
},
|
|
|
|
_projFromCodeDef: function(code, def) {
|
|
if (def) {
|
|
proj4.defs(code, def);
|
|
} else if (proj4.defs[code] === undefined) {
|
|
var urn = code.split(':');
|
|
if (urn.length > 3) {
|
|
code = urn[urn.length - 3] + ':' + urn[urn.length - 1];
|
|
}
|
|
if (proj4.defs[code] === undefined) {
|
|
throw 'No projection definition for code ' + code;
|
|
}
|
|
}
|
|
|
|
return proj4(code);
|
|
}
|
|
});
|
|
|
|
L.Proj.CRS = L.Class.extend({
|
|
includes: L.CRS,
|
|
|
|
options: {
|
|
transformation: new L.Transformation(1, 0, -1, 0)
|
|
},
|
|
|
|
initialize: function(a, b, c) {
|
|
var code,
|
|
proj,
|
|
def,
|
|
options;
|
|
|
|
if (L.Proj._isProj4Obj(a)) {
|
|
proj = a;
|
|
code = proj.srsCode;
|
|
options = b || {};
|
|
|
|
this.projection = new L.Proj.Projection(proj, options.bounds);
|
|
} else {
|
|
code = a;
|
|
def = b;
|
|
options = c || {};
|
|
this.projection = new L.Proj.Projection(code, def, options.bounds);
|
|
}
|
|
|
|
L.Util.setOptions(this, options);
|
|
this.code = code;
|
|
this.transformation = this.options.transformation;
|
|
|
|
if (this.options.origin) {
|
|
this.transformation =
|
|
new L.Transformation(1, -this.options.origin[0],
|
|
-1, this.options.origin[1]);
|
|
}
|
|
|
|
if (this.options.scales) {
|
|
this._scales = this.options.scales;
|
|
} else if (this.options.resolutions) {
|
|
this._scales = [];
|
|
for (var i = this.options.resolutions.length - 1; i >= 0; i--) {
|
|
if (this.options.resolutions[i]) {
|
|
this._scales[i] = 1 / this.options.resolutions[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
this.infinite = !this.options.bounds;
|
|
|
|
},
|
|
|
|
scale: function(zoom) {
|
|
var iZoom = Math.floor(zoom),
|
|
baseScale,
|
|
nextScale,
|
|
scaleDiff,
|
|
zDiff;
|
|
if (zoom === iZoom) {
|
|
return this._scales[zoom];
|
|
} else {
|
|
// Non-integer zoom, interpolate
|
|
baseScale = this._scales[iZoom];
|
|
nextScale = this._scales[iZoom + 1];
|
|
scaleDiff = nextScale - baseScale;
|
|
zDiff = (zoom - iZoom);
|
|
return baseScale + scaleDiff * zDiff;
|
|
}
|
|
},
|
|
|
|
zoom: function(scale) {
|
|
// Find closest number in this._scales, down
|
|
var downScale = this._closestElement(this._scales, scale),
|
|
downZoom = this._scales.indexOf(downScale),
|
|
nextScale,
|
|
nextZoom,
|
|
scaleDiff;
|
|
// Check if scale is downScale => return array index
|
|
if (scale === downScale) {
|
|
return downZoom;
|
|
}
|
|
if (downScale === undefined) {
|
|
return -Infinity;
|
|
}
|
|
// Interpolate
|
|
nextZoom = downZoom + 1;
|
|
nextScale = this._scales[nextZoom];
|
|
if (nextScale === undefined) {
|
|
return Infinity;
|
|
}
|
|
scaleDiff = nextScale - downScale;
|
|
return (scale - downScale) / scaleDiff + downZoom;
|
|
},
|
|
|
|
distance: L.CRS.Earth.distance,
|
|
|
|
R: L.CRS.Earth.R,
|
|
|
|
/* Get the closest lowest element in an array */
|
|
_closestElement: function(array, element) {
|
|
var low;
|
|
for (var i = array.length; i--;) {
|
|
if (array[i] <= element && (low === undefined || low < array[i])) {
|
|
low = array[i];
|
|
}
|
|
}
|
|
return low;
|
|
}
|
|
});
|
|
|
|
L.Proj.GeoJSON = L.GeoJSON.extend({
|
|
initialize: function(geojson, options) {
|
|
this._callLevel = 0;
|
|
L.GeoJSON.prototype.initialize.call(this, geojson, options);
|
|
},
|
|
|
|
addData: function(geojson) {
|
|
var crs;
|
|
|
|
if (geojson) {
|
|
if (geojson.crs && geojson.crs.type === 'name') {
|
|
crs = new L.Proj.CRS(geojson.crs.properties.name);
|
|
} else if (geojson.crs && geojson.crs.type) {
|
|
crs = new L.Proj.CRS(geojson.crs.type + ':' + geojson.crs.properties.code);
|
|
}
|
|
|
|
if (crs !== undefined) {
|
|
this.options.coordsToLatLng = function(coords) {
|
|
var point = L.point(coords[0], coords[1]);
|
|
return crs.projection.unproject(point);
|
|
};
|
|
}
|
|
}
|
|
|
|
// Base class' addData might call us recursively, but
|
|
// CRS shouldn't be cleared in that case, since CRS applies
|
|
// to the whole GeoJSON, inluding sub-features.
|
|
this._callLevel++;
|
|
try {
|
|
L.GeoJSON.prototype.addData.call(this, geojson);
|
|
} finally {
|
|
this._callLevel--;
|
|
if (this._callLevel === 0) {
|
|
delete this.options.coordsToLatLng;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
L.Proj.geoJson = function(geojson, options) {
|
|
return new L.Proj.GeoJSON(geojson, options);
|
|
};
|
|
|
|
L.Proj.ImageOverlay = L.ImageOverlay.extend({
|
|
initialize: function (url, bounds, options) {
|
|
L.ImageOverlay.prototype.initialize.call(this, url, null, options);
|
|
this._projectedBounds = bounds;
|
|
},
|
|
|
|
// Danger ahead: Overriding internal methods in Leaflet.
|
|
// Decided to do this rather than making a copy of L.ImageOverlay
|
|
// and doing very tiny modifications to it.
|
|
// Future will tell if this was wise or not.
|
|
_animateZoom: function (event) {
|
|
var scale = this._map.getZoomScale(event.zoom);
|
|
var northWest = L.point(this._projectedBounds.min.x, this._projectedBounds.max.y);
|
|
var offset = this._projectedToNewLayerPoint(northWest, event.zoom, event.center);
|
|
|
|
L.DomUtil.setTransform(this._image, offset, scale);
|
|
},
|
|
|
|
_reset: function () {
|
|
var zoom = this._map.getZoom();
|
|
var pixelOrigin = this._map.getPixelOrigin();
|
|
var bounds = L.bounds(
|
|
this._transform(this._projectedBounds.min, zoom)._subtract(pixelOrigin),
|
|
this._transform(this._projectedBounds.max, zoom)._subtract(pixelOrigin)
|
|
);
|
|
var size = bounds.getSize();
|
|
|
|
L.DomUtil.setPosition(this._image, bounds.min);
|
|
this._image.style.width = size.x + 'px';
|
|
this._image.style.height = size.y + 'px';
|
|
},
|
|
|
|
_projectedToNewLayerPoint: function (point, zoom, center) {
|
|
var viewHalf = this._map.getSize()._divideBy(2);
|
|
var newTopLeft = this._map.project(center, zoom)._subtract(viewHalf)._round();
|
|
var topLeft = newTopLeft.add(this._map._getMapPanePos());
|
|
|
|
return this._transform(point, zoom)._subtract(topLeft);
|
|
},
|
|
|
|
_transform: function (point, zoom) {
|
|
var crs = this._map.options.crs;
|
|
var transformation = crs.transformation;
|
|
var scale = crs.scale(zoom);
|
|
|
|
return transformation.transform(point, scale);
|
|
}
|
|
});
|
|
|
|
L.Proj.imageOverlay = function (url, bounds, options) {
|
|
return new L.Proj.ImageOverlay(url, bounds, options);
|
|
};
|
|
|
|
return L.Proj;
|
|
}));
|
|
</script>
|
|
<style type="text/css">.leaflet-tooltip.leaflet-tooltip-text-only,
|
|
.leaflet-tooltip.leaflet-tooltip-text-only:before,
|
|
.leaflet-tooltip.leaflet-tooltip-text-only:after {
|
|
background: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
.leaflet-tooltip.leaflet-tooltip-text-only.leaflet-tooltip-left {
|
|
margin-left: 5px;
|
|
}
|
|
.leaflet-tooltip.leaflet-tooltip-text-only.leaflet-tooltip-right {
|
|
margin-left: -5px;
|
|
}
|
|
.leaflet-tooltip:after {
|
|
border-right: 6px solid transparent;
|
|
|
|
}
|
|
.leaflet-popup-pane .leaflet-popup-tip-container {
|
|
|
|
pointer-events: all;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.leaflet-map-pane {
|
|
z-index: auto;
|
|
}
|
|
|
|
.leaflet-container .leaflet-right-pane img,
|
|
.leaflet-container .leaflet-left-pane img {
|
|
max-width: none !important;
|
|
max-height: none !important;
|
|
}
|
|
</style>
|
|
<script>(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = undefined;
|
|
|
|
var _util = require("./util");
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var ClusterLayerStore = /*#__PURE__*/function () {
|
|
function ClusterLayerStore(group) {
|
|
_classCallCheck(this, ClusterLayerStore);
|
|
|
|
this._layers = {};
|
|
this._group = group;
|
|
}
|
|
|
|
_createClass(ClusterLayerStore, [{
|
|
key: "add",
|
|
value: function add(layer, id) {
|
|
if (typeof id !== "undefined" && id !== null) {
|
|
if (this._layers[id]) {
|
|
this._group.removeLayer(this._layers[id]);
|
|
}
|
|
|
|
this._layers[id] = layer;
|
|
}
|
|
|
|
this._group.addLayer(layer);
|
|
}
|
|
}, {
|
|
key: "remove",
|
|
value: function remove(id) {
|
|
if (typeof id === "undefined" || id === null) {
|
|
return;
|
|
}
|
|
|
|
id = (0, _util.asArray)(id);
|
|
|
|
for (var i = 0; i < id.length; i++) {
|
|
if (this._layers[id[i]]) {
|
|
this._group.removeLayer(this._layers[id[i]]);
|
|
|
|
delete this._layers[id[i]];
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
key: "clear",
|
|
value: function clear() {
|
|
this._layers = {};
|
|
|
|
this._group.clearLayers();
|
|
}
|
|
}]);
|
|
|
|
return ClusterLayerStore;
|
|
}();
|
|
|
|
exports["default"] = ClusterLayerStore;
|
|
|
|
|
|
},{"./util":17}],2:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var ControlStore = /*#__PURE__*/function () {
|
|
function ControlStore(map) {
|
|
_classCallCheck(this, ControlStore);
|
|
|
|
this._controlsNoId = [];
|
|
this._controlsById = {};
|
|
this._map = map;
|
|
}
|
|
|
|
_createClass(ControlStore, [{
|
|
key: "add",
|
|
value: function add(control, id, html) {
|
|
if (typeof id !== "undefined" && id !== null) {
|
|
if (this._controlsById[id]) {
|
|
this._map.removeControl(this._controlsById[id]);
|
|
}
|
|
|
|
this._controlsById[id] = control;
|
|
} else {
|
|
this._controlsNoId.push(control);
|
|
}
|
|
|
|
this._map.addControl(control);
|
|
}
|
|
}, {
|
|
key: "get",
|
|
value: function get(id) {
|
|
var control = null;
|
|
|
|
if (this._controlsById[id]) {
|
|
control = this._controlsById[id];
|
|
}
|
|
|
|
return control;
|
|
}
|
|
}, {
|
|
key: "remove",
|
|
value: function remove(id) {
|
|
if (this._controlsById[id]) {
|
|
var control = this._controlsById[id];
|
|
|
|
this._map.removeControl(control);
|
|
|
|
delete this._controlsById[id];
|
|
}
|
|
}
|
|
}, {
|
|
key: "clear",
|
|
value: function clear() {
|
|
for (var i = 0; i < this._controlsNoId.length; i++) {
|
|
var control = this._controlsNoId[i];
|
|
|
|
this._map.removeControl(control);
|
|
}
|
|
|
|
this._controlsNoId = [];
|
|
|
|
for (var key in this._controlsById) {
|
|
var _control = this._controlsById[key];
|
|
|
|
this._map.removeControl(_control);
|
|
}
|
|
|
|
this._controlsById = {};
|
|
}
|
|
}]);
|
|
|
|
return ControlStore;
|
|
}();
|
|
|
|
exports["default"] = ControlStore;
|
|
|
|
|
|
},{}],3:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getCRS = getCRS;
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _proj4leaflet = require("./global/proj4leaflet");
|
|
|
|
var _proj4leaflet2 = _interopRequireDefault(_proj4leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
// Helper function to instanciate a ICRS instance.
|
|
function getCRS(crsOptions) {
|
|
var crs = _leaflet2["default"].CRS.EPSG3857; // Default Spherical Mercator
|
|
|
|
switch (crsOptions.crsClass) {
|
|
case "L.CRS.EPSG3857":
|
|
crs = _leaflet2["default"].CRS.EPSG3857;
|
|
break;
|
|
|
|
case "L.CRS.EPSG4326":
|
|
crs = _leaflet2["default"].CRS.EPSG4326;
|
|
break;
|
|
|
|
case "L.CRS.EPSG3395":
|
|
crs = _leaflet2["default"].CRS.EPSG3395;
|
|
break;
|
|
|
|
case "L.CRS.Simple":
|
|
crs = _leaflet2["default"].CRS.Simple;
|
|
break;
|
|
|
|
case "L.Proj.CRS":
|
|
if (crsOptions.options && crsOptions.options.bounds) {
|
|
crsOptions.options.bounds = _leaflet2["default"].bounds(crsOptions.options.bounds);
|
|
}
|
|
|
|
if (crsOptions.options && crsOptions.options.transformation) {
|
|
crsOptions.options.transformation = new _leaflet2["default"].Transformation(crsOptions.options.transformation[0], crsOptions.options.transformation[1], crsOptions.options.transformation[2], crsOptions.options.transformation[3]);
|
|
}
|
|
|
|
crs = new _proj4leaflet2["default"].CRS(crsOptions.code, crsOptions.proj4def, crsOptions.options);
|
|
break;
|
|
|
|
case "L.Proj.CRS.TMS":
|
|
if (crsOptions.options && crsOptions.options.bounds) {
|
|
crsOptions.options.bounds = _leaflet2["default"].bounds(crsOptions.options.bounds);
|
|
}
|
|
|
|
if (crsOptions.options && crsOptions.options.transformation) {
|
|
crsOptions.options.transformation = _leaflet2["default"].Transformation(crsOptions.options.transformation[0], crsOptions.options.transformation[1], crsOptions.options.transformation[2], crsOptions.options.transformation[3]);
|
|
} // L.Proj.CRS.TMS is deprecated as of Leaflet 1.x, fall back to L.Proj.CRS
|
|
//crs = new Proj4Leaflet.CRS.TMS(crsOptions.code, crsOptions.proj4def, crsOptions.projectedBounds, crsOptions.options);
|
|
|
|
|
|
crs = new _proj4leaflet2["default"].CRS(crsOptions.code, crsOptions.proj4def, crsOptions.options);
|
|
break;
|
|
}
|
|
|
|
return crs;
|
|
}
|
|
|
|
|
|
},{"./global/leaflet":10,"./global/proj4leaflet":11}],4:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = undefined;
|
|
|
|
var _util = require("./util");
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var DataFrame = /*#__PURE__*/function () {
|
|
function DataFrame() {
|
|
_classCallCheck(this, DataFrame);
|
|
|
|
this.columns = [];
|
|
this.colnames = [];
|
|
this.colstrict = [];
|
|
this.effectiveLength = 0;
|
|
this.colindices = {};
|
|
}
|
|
|
|
_createClass(DataFrame, [{
|
|
key: "_updateCachedProperties",
|
|
value: function _updateCachedProperties() {
|
|
var _this = this;
|
|
|
|
this.effectiveLength = 0;
|
|
this.colindices = {};
|
|
this.columns.forEach(function (column, i) {
|
|
_this.effectiveLength = Math.max(_this.effectiveLength, column.length);
|
|
_this.colindices[_this.colnames[i]] = i;
|
|
});
|
|
}
|
|
}, {
|
|
key: "_colIndex",
|
|
value: function _colIndex(colname) {
|
|
var index = this.colindices[colname];
|
|
if (typeof index === "undefined") return -1;
|
|
return index;
|
|
}
|
|
}, {
|
|
key: "col",
|
|
value: function col(name, values, strict) {
|
|
if (typeof name !== "string") throw new Error("Invalid column name \"" + name + "\"");
|
|
|
|
var index = this._colIndex(name);
|
|
|
|
if (arguments.length === 1) {
|
|
if (index < 0) return null;else return (0, _util.recycle)(this.columns[index], this.effectiveLength);
|
|
}
|
|
|
|
if (index < 0) {
|
|
index = this.colnames.length;
|
|
this.colnames.push(name);
|
|
}
|
|
|
|
this.columns[index] = (0, _util.asArray)(values);
|
|
this.colstrict[index] = !!strict; // TODO: Validate strictness (ensure lengths match up with other stricts)
|
|
|
|
this._updateCachedProperties();
|
|
|
|
return this;
|
|
}
|
|
}, {
|
|
key: "cbind",
|
|
value: function cbind(obj, strict) {
|
|
var _this2 = this;
|
|
|
|
Object.keys(obj).forEach(function (name) {
|
|
var coldata = obj[name];
|
|
|
|
_this2.col(name, coldata);
|
|
});
|
|
return this;
|
|
}
|
|
}, {
|
|
key: "get",
|
|
value: function get(row, col, missingOK) {
|
|
var _this3 = this;
|
|
|
|
if (row > this.effectiveLength) throw new Error("Row argument was out of bounds: " + row + " > " + this.effectiveLength);
|
|
var colIndex = -1;
|
|
|
|
if (typeof col === "undefined") {
|
|
var rowData = {};
|
|
this.colnames.forEach(function (name, i) {
|
|
rowData[name] = _this3.columns[i][row % _this3.columns[i].length];
|
|
});
|
|
return rowData;
|
|
} else if (typeof col === "string") {
|
|
colIndex = this._colIndex(col);
|
|
} else if (typeof col === "number") {
|
|
colIndex = col;
|
|
}
|
|
|
|
if (colIndex < 0 || colIndex > this.columns.length) {
|
|
if (missingOK) return void 0;else throw new Error("Unknown column index: " + col);
|
|
}
|
|
|
|
return this.columns[colIndex][row % this.columns[colIndex].length];
|
|
}
|
|
}, {
|
|
key: "nrow",
|
|
value: function nrow() {
|
|
return this.effectiveLength;
|
|
}
|
|
}]);
|
|
|
|
return DataFrame;
|
|
}();
|
|
|
|
exports["default"] = DataFrame;
|
|
|
|
|
|
},{"./util":17}],5:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
// In RMarkdown's self-contained mode, we don't have a way to carry around the
|
|
// images that Leaflet needs but doesn't load into the page. Instead, we'll use
|
|
// the unpkg CDN.
|
|
if (typeof _leaflet2["default"].Icon.Default.imagePath === "undefined") {
|
|
_leaflet2["default"].Icon.Default.imagePath = "https://unpkg.com/leaflet@1.3.1/dist/images/";
|
|
}
|
|
|
|
|
|
},{"./global/leaflet":10}],6:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
// add texxtsize, textOnly, and style
|
|
_leaflet2["default"].Tooltip.prototype.options.textsize = "10px";
|
|
_leaflet2["default"].Tooltip.prototype.options.textOnly = false;
|
|
_leaflet2["default"].Tooltip.prototype.options.style = null; // copy original layout to not completely stomp it.
|
|
|
|
var initLayoutOriginal = _leaflet2["default"].Tooltip.prototype._initLayout;
|
|
|
|
_leaflet2["default"].Tooltip.prototype._initLayout = function () {
|
|
initLayoutOriginal.call(this);
|
|
this._container.style.fontSize = this.options.textsize;
|
|
|
|
if (this.options.textOnly) {
|
|
_leaflet2["default"].DomUtil.addClass(this._container, "leaflet-tooltip-text-only");
|
|
}
|
|
|
|
if (this.options.style) {
|
|
for (var property in this.options.style) {
|
|
this._container.style[property] = this.options.style[property];
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
},{"./global/leaflet":10}],7:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
var protocolRegex = /^\/\//;
|
|
|
|
var upgrade_protocol = function upgrade_protocol(urlTemplate) {
|
|
if (protocolRegex.test(urlTemplate)) {
|
|
if (window.location.protocol === "file:") {
|
|
// if in a local file, support http
|
|
// http should auto upgrade if necessary
|
|
urlTemplate = "http:" + urlTemplate;
|
|
}
|
|
}
|
|
|
|
return urlTemplate;
|
|
};
|
|
|
|
var originalLTileLayerInitialize = _leaflet2["default"].TileLayer.prototype.initialize;
|
|
|
|
_leaflet2["default"].TileLayer.prototype.initialize = function (urlTemplate, options) {
|
|
urlTemplate = upgrade_protocol(urlTemplate);
|
|
originalLTileLayerInitialize.call(this, urlTemplate, options);
|
|
};
|
|
|
|
var originalLTileLayerWMSInitialize = _leaflet2["default"].TileLayer.WMS.prototype.initialize;
|
|
|
|
_leaflet2["default"].TileLayer.WMS.prototype.initialize = function (urlTemplate, options) {
|
|
urlTemplate = upgrade_protocol(urlTemplate);
|
|
originalLTileLayerWMSInitialize.call(this, urlTemplate, options);
|
|
};
|
|
|
|
|
|
},{"./global/leaflet":10}],8:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.HTMLWidgets;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],9:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.jQuery;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],10:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.L;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],11:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.L.Proj;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],12:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.Shiny;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],13:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _jquery = require("./global/jquery");
|
|
|
|
var _jquery2 = _interopRequireDefault(_jquery);
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _shiny = require("./global/shiny");
|
|
|
|
var _shiny2 = _interopRequireDefault(_shiny);
|
|
|
|
var _htmlwidgets = require("./global/htmlwidgets");
|
|
|
|
var _htmlwidgets2 = _interopRequireDefault(_htmlwidgets);
|
|
|
|
var _util = require("./util");
|
|
|
|
var _crs_utils = require("./crs_utils");
|
|
|
|
var _controlStore = require("./control-store");
|
|
|
|
var _controlStore2 = _interopRequireDefault(_controlStore);
|
|
|
|
var _layerManager = require("./layer-manager");
|
|
|
|
var _layerManager2 = _interopRequireDefault(_layerManager);
|
|
|
|
var _methods = require("./methods");
|
|
|
|
var _methods2 = _interopRequireDefault(_methods);
|
|
|
|
require("./fixup-default-icon");
|
|
|
|
require("./fixup-default-tooltip");
|
|
|
|
require("./fixup-url-protocol");
|
|
|
|
var _dataframe = require("./dataframe");
|
|
|
|
var _dataframe2 = _interopRequireDefault(_dataframe);
|
|
|
|
var _clusterLayerStore = require("./cluster-layer-store");
|
|
|
|
var _clusterLayerStore2 = _interopRequireDefault(_clusterLayerStore);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
window.LeafletWidget = {};
|
|
window.LeafletWidget.utils = {};
|
|
|
|
var methods = window.LeafletWidget.methods = _jquery2["default"].extend({}, _methods2["default"]);
|
|
|
|
window.LeafletWidget.DataFrame = _dataframe2["default"];
|
|
window.LeafletWidget.ClusterLayerStore = _clusterLayerStore2["default"];
|
|
window.LeafletWidget.utils.getCRS = _crs_utils.getCRS; // Send updated bounds back to app. Takes a leaflet event object as input.
|
|
|
|
function updateBounds(map) {
|
|
var id = map.getContainer().id;
|
|
var bounds = map.getBounds();
|
|
|
|
_shiny2["default"].onInputChange(id + "_bounds", {
|
|
north: bounds.getNorthEast().lat,
|
|
east: bounds.getNorthEast().lng,
|
|
south: bounds.getSouthWest().lat,
|
|
west: bounds.getSouthWest().lng
|
|
});
|
|
|
|
_shiny2["default"].onInputChange(id + "_center", {
|
|
lng: map.getCenter().lng,
|
|
lat: map.getCenter().lat
|
|
});
|
|
|
|
_shiny2["default"].onInputChange(id + "_zoom", map.getZoom());
|
|
}
|
|
|
|
function preventUnintendedZoomOnScroll(map) {
|
|
// Prevent unwanted scroll capturing. Similar in purpose to
|
|
// https://github.com/CliffCloud/Leaflet.Sleep but with a
|
|
// different set of heuristics.
|
|
// The basic idea is that when a mousewheel/DOMMouseScroll
|
|
// event is seen, we disable scroll wheel zooming until the
|
|
// user moves their mouse cursor or clicks on the map. This
|
|
// is slightly trickier than just listening for mousemove,
|
|
// because mousemove is fired when the page is scrolled,
|
|
// even if the user did not physically move the mouse. We
|
|
// handle this by examining the mousemove event's screenX
|
|
// and screenY properties; if they change, we know it's a
|
|
// "true" move.
|
|
// lastScreen can never be null, but its x and y can.
|
|
var lastScreen = {
|
|
x: null,
|
|
y: null
|
|
};
|
|
(0, _jquery2["default"])(document).on("mousewheel DOMMouseScroll", "*", function (e) {
|
|
// Disable zooming (until the mouse moves or click)
|
|
map.scrollWheelZoom.disable(); // Any mousemove events at this screen position will be ignored.
|
|
|
|
lastScreen = {
|
|
x: e.originalEvent.screenX,
|
|
y: e.originalEvent.screenY
|
|
};
|
|
});
|
|
(0, _jquery2["default"])(document).on("mousemove", "*", function (e) {
|
|
// Did the mouse really move?
|
|
if (map.options.scrollWheelZoom) {
|
|
if (lastScreen.x !== null && e.screenX !== lastScreen.x || e.screenY !== lastScreen.y) {
|
|
// It really moved. Enable zooming.
|
|
map.scrollWheelZoom.enable();
|
|
lastScreen = {
|
|
x: null,
|
|
y: null
|
|
};
|
|
}
|
|
}
|
|
});
|
|
(0, _jquery2["default"])(document).on("mousedown", ".leaflet", function (e) {
|
|
// Clicking always enables zooming.
|
|
if (map.options.scrollWheelZoom) {
|
|
map.scrollWheelZoom.enable();
|
|
lastScreen = {
|
|
x: null,
|
|
y: null
|
|
};
|
|
}
|
|
});
|
|
}
|
|
|
|
_htmlwidgets2["default"].widget({
|
|
name: "leaflet",
|
|
type: "output",
|
|
factory: function factory(el, width, height) {
|
|
var map = null;
|
|
return {
|
|
// we need to store our map in our returned object.
|
|
getMap: function getMap() {
|
|
return map;
|
|
},
|
|
renderValue: function renderValue(data) {
|
|
// Create an appropriate CRS Object if specified
|
|
if (data && data.options && data.options.crs) {
|
|
data.options.crs = (0, _crs_utils.getCRS)(data.options.crs);
|
|
} // As per https://github.com/rstudio/leaflet/pull/294#discussion_r79584810
|
|
|
|
|
|
if (map) {
|
|
map.remove();
|
|
|
|
map = function () {
|
|
return;
|
|
}(); // undefine map
|
|
|
|
}
|
|
|
|
if (data.options.mapFactory && typeof data.options.mapFactory === "function") {
|
|
map = data.options.mapFactory(el, data.options);
|
|
} else {
|
|
map = _leaflet2["default"].map(el, data.options);
|
|
}
|
|
|
|
preventUnintendedZoomOnScroll(map); // Store some state in the map object
|
|
|
|
map.leafletr = {
|
|
// Has the map ever rendered successfully?
|
|
hasRendered: false,
|
|
// Data to be rendered when resize is called with area != 0
|
|
pendingRenderData: null
|
|
}; // Check if the map is rendered statically (no output binding)
|
|
|
|
if (_htmlwidgets2["default"].shinyMode && /\bshiny-bound-output\b/.test(el.className)) {
|
|
map.id = el.id; // Store the map on the element so we can find it later by ID
|
|
|
|
(0, _jquery2["default"])(el).data("leaflet-map", map); // When the map is clicked, send the coordinates back to the app
|
|
|
|
map.on("click", function (e) {
|
|
_shiny2["default"].onInputChange(map.id + "_click", {
|
|
lat: e.latlng.lat,
|
|
lng: e.latlng.lng,
|
|
".nonce": Math.random() // Force reactivity if lat/lng hasn't changed
|
|
|
|
});
|
|
});
|
|
var groupTimerId = null;
|
|
map.on("moveend", function (e) {
|
|
updateBounds(e.target);
|
|
}).on("layeradd layerremove", function (e) {
|
|
// If the layer that's coming or going is a group we created, tell
|
|
// the server.
|
|
if (map.layerManager.getGroupNameFromLayerGroup(e.layer)) {
|
|
// But to avoid chattiness, coalesce events
|
|
if (groupTimerId) {
|
|
clearTimeout(groupTimerId);
|
|
groupTimerId = null;
|
|
}
|
|
|
|
groupTimerId = setTimeout(function () {
|
|
groupTimerId = null;
|
|
|
|
_shiny2["default"].onInputChange(map.id + "_groups", map.layerManager.getVisibleGroups());
|
|
}, 100);
|
|
}
|
|
});
|
|
}
|
|
|
|
this.doRenderValue(data, map);
|
|
},
|
|
doRenderValue: function doRenderValue(data, map) {
|
|
// Leaflet does not behave well when you set up a bunch of layers when
|
|
// the map is not visible (width/height == 0). Popups get misaligned
|
|
// relative to their owning markers, and the fitBounds calculations
|
|
// are off. Therefore we wait until the map is actually showing to
|
|
// render the value (we rely on the resize() callback being invoked
|
|
// at the appropriate time).
|
|
if (el.offsetWidth === 0 || el.offsetHeight === 0) {
|
|
map.leafletr.pendingRenderData = data;
|
|
return;
|
|
}
|
|
|
|
map.leafletr.pendingRenderData = null; // Merge data options into defaults
|
|
|
|
var options = _jquery2["default"].extend({
|
|
zoomToLimits: "always"
|
|
}, data.options);
|
|
|
|
if (!map.layerManager) {
|
|
map.controls = new _controlStore2["default"](map);
|
|
map.layerManager = new _layerManager2["default"](map);
|
|
} else {
|
|
map.controls.clear();
|
|
map.layerManager.clear();
|
|
}
|
|
|
|
var explicitView = false;
|
|
|
|
if (data.setView) {
|
|
explicitView = true;
|
|
map.setView.apply(map, data.setView);
|
|
}
|
|
|
|
if (data.fitBounds) {
|
|
explicitView = true;
|
|
methods.fitBounds.apply(map, data.fitBounds);
|
|
}
|
|
|
|
if (data.flyTo) {
|
|
if (!explicitView && !map.leafletr.hasRendered) {
|
|
// must be done to give a initial starting point
|
|
map.fitWorld();
|
|
}
|
|
|
|
explicitView = true;
|
|
map.flyTo.apply(map, data.flyTo);
|
|
}
|
|
|
|
if (data.flyToBounds) {
|
|
if (!explicitView && !map.leafletr.hasRendered) {
|
|
// must be done to give a initial starting point
|
|
map.fitWorld();
|
|
}
|
|
|
|
explicitView = true;
|
|
methods.flyToBounds.apply(map, data.flyToBounds);
|
|
}
|
|
|
|
if (data.options.center) {
|
|
explicitView = true;
|
|
} // Returns true if the zoomToLimits option says that the map should be
|
|
// zoomed to map elements.
|
|
|
|
|
|
function needsZoom() {
|
|
return options.zoomToLimits === "always" || options.zoomToLimits === "first" && !map.leafletr.hasRendered;
|
|
}
|
|
|
|
if (!explicitView && needsZoom() && !map.getZoom()) {
|
|
if (data.limits && !_jquery2["default"].isEmptyObject(data.limits)) {
|
|
// Use the natural limits of what's being drawn on the map
|
|
// If the size of the bounding box is 0, leaflet gets all weird
|
|
var pad = 0.006;
|
|
|
|
if (data.limits.lat[0] === data.limits.lat[1]) {
|
|
data.limits.lat[0] = data.limits.lat[0] - pad;
|
|
data.limits.lat[1] = data.limits.lat[1] + pad;
|
|
}
|
|
|
|
if (data.limits.lng[0] === data.limits.lng[1]) {
|
|
data.limits.lng[0] = data.limits.lng[0] - pad;
|
|
data.limits.lng[1] = data.limits.lng[1] + pad;
|
|
}
|
|
|
|
map.fitBounds([[data.limits.lat[0], data.limits.lng[0]], [data.limits.lat[1], data.limits.lng[1]]]);
|
|
} else {
|
|
map.fitWorld();
|
|
}
|
|
}
|
|
|
|
for (var i = 0; data.calls && i < data.calls.length; i++) {
|
|
var call = data.calls[i];
|
|
if (methods[call.method]) methods[call.method].apply(map, call.args);else (0, _util.log)("Unknown method " + call.method);
|
|
}
|
|
|
|
map.leafletr.hasRendered = true;
|
|
|
|
if (_htmlwidgets2["default"].shinyMode) {
|
|
setTimeout(function () {
|
|
updateBounds(map);
|
|
}, 1);
|
|
}
|
|
},
|
|
resize: function resize(width, height) {
|
|
if (map) {
|
|
map.invalidateSize();
|
|
|
|
if (map.leafletr.pendingRenderData) {
|
|
this.doRenderValue(map.leafletr.pendingRenderData, map);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
});
|
|
|
|
if (_htmlwidgets2["default"].shinyMode) {
|
|
_shiny2["default"].addCustomMessageHandler("leaflet-calls", function (data) {
|
|
var id = data.id;
|
|
var el = document.getElementById(id);
|
|
var map = el ? (0, _jquery2["default"])(el).data("leaflet-map") : null;
|
|
|
|
if (!map) {
|
|
(0, _util.log)("Couldn't find map with id " + id);
|
|
return;
|
|
} // If the map has not rendered, stash the proposed `leafletProxy()` calls
|
|
// in `pendingRenderData.calls` to be run on display via `doRenderValue()`.
|
|
// This is necessary if the map has not been rendered.
|
|
// If new pendingRenderData is set via a new `leaflet()`, the previous calls will be discarded.
|
|
|
|
|
|
if (!map.leafletr.hasRendered) {
|
|
map.leafletr.pendingRenderData.calls = map.leafletr.pendingRenderData.calls.concat(data.calls);
|
|
return;
|
|
}
|
|
|
|
for (var i = 0; i < data.calls.length; i++) {
|
|
var call = data.calls[i];
|
|
var args = call.args;
|
|
|
|
for (var _i = 0; _i < call.evals.length; _i++) {
|
|
window.HTMLWidgets.evaluateStringMember(args, call.evals[_i]);
|
|
}
|
|
|
|
if (call.dependencies) {
|
|
_shiny2["default"].renderDependencies(call.dependencies);
|
|
}
|
|
|
|
if (methods[call.method]) methods[call.method].apply(map, args);else (0, _util.log)("Unknown method " + call.method);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
},{"./cluster-layer-store":1,"./control-store":2,"./crs_utils":3,"./dataframe":4,"./fixup-default-icon":5,"./fixup-default-tooltip":6,"./fixup-url-protocol":7,"./global/htmlwidgets":8,"./global/jquery":9,"./global/leaflet":10,"./global/shiny":12,"./layer-manager":14,"./methods":15,"./util":17}],14:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = undefined;
|
|
|
|
var _jquery = require("./global/jquery");
|
|
|
|
var _jquery2 = _interopRequireDefault(_jquery);
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _util = require("./util");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var LayerManager = /*#__PURE__*/function () {
|
|
function LayerManager(map) {
|
|
_classCallCheck(this, LayerManager);
|
|
|
|
this._map = map; // BEGIN layer indices
|
|
// {<groupname>: {<stamp>: layer}}
|
|
|
|
this._byGroup = {}; // {<categoryName>: {<stamp>: layer}}
|
|
|
|
this._byCategory = {}; // {<categoryName_layerId>: layer}
|
|
|
|
this._byLayerId = {}; // {<stamp>: {
|
|
// "group": <groupname>,
|
|
// "layerId": <layerId>,
|
|
// "category": <category>,
|
|
// "container": <container>
|
|
// }
|
|
// }
|
|
|
|
this._byStamp = {}; // {<crosstalkGroupName>: {<key>: [<stamp>, <stamp>, ...], ...}}
|
|
|
|
this._byCrosstalkGroup = {}; // END layer indices
|
|
// {<categoryName>: L.layerGroup}
|
|
|
|
this._categoryContainers = {}; // {<groupName>: L.layerGroup}
|
|
|
|
this._groupContainers = {};
|
|
}
|
|
|
|
_createClass(LayerManager, [{
|
|
key: "addLayer",
|
|
value: function addLayer(layer, category, layerId, group, ctGroup, ctKey) {
|
|
var _this = this;
|
|
|
|
// Was a group provided?
|
|
var hasId = typeof layerId === "string";
|
|
var grouped = typeof group === "string";
|
|
var stamp = _leaflet2["default"].Util.stamp(layer) + ""; // This will be the default layer group to add the layer to.
|
|
// We may overwrite this let before using it (i.e. if a group is assigned).
|
|
// This one liner creates the _categoryContainers[category] entry if it
|
|
// doesn't already exist.
|
|
|
|
var container = this._categoryContainers[category] = this._categoryContainers[category] || _leaflet2["default"].layerGroup().addTo(this._map);
|
|
|
|
var oldLayer = null;
|
|
|
|
if (hasId) {
|
|
// First, remove any layer with the same category and layerId
|
|
var prefixedLayerId = this._layerIdKey(category, layerId);
|
|
|
|
oldLayer = this._byLayerId[prefixedLayerId];
|
|
|
|
if (oldLayer) {
|
|
this._removeLayer(oldLayer);
|
|
} // Update layerId index
|
|
|
|
|
|
this._byLayerId[prefixedLayerId] = layer;
|
|
} // Update group index
|
|
|
|
|
|
if (grouped) {
|
|
this._byGroup[group] = this._byGroup[group] || {};
|
|
this._byGroup[group][stamp] = layer; // Since a group is assigned, don't add the layer to the category's layer
|
|
// group; instead, use the group's layer group.
|
|
// This one liner creates the _groupContainers[group] entry if it doesn't
|
|
// already exist.
|
|
|
|
container = this.getLayerGroup(group, true);
|
|
} // Update category index
|
|
|
|
|
|
this._byCategory[category] = this._byCategory[category] || {};
|
|
this._byCategory[category][stamp] = layer; // Update stamp index
|
|
|
|
var layerInfo = this._byStamp[stamp] = {
|
|
layer: layer,
|
|
group: group,
|
|
ctGroup: ctGroup,
|
|
ctKey: ctKey,
|
|
layerId: layerId,
|
|
category: category,
|
|
container: container,
|
|
hidden: false
|
|
}; // Update crosstalk group index
|
|
|
|
if (ctGroup) {
|
|
if (layer.setStyle) {
|
|
// Need to save this info so we know what to set opacity to later
|
|
layer.options.origOpacity = typeof layer.options.opacity !== "undefined" ? layer.options.opacity : 0.5;
|
|
layer.options.origFillOpacity = typeof layer.options.fillOpacity !== "undefined" ? layer.options.fillOpacity : 0.2;
|
|
}
|
|
|
|
var ctg = this._byCrosstalkGroup[ctGroup];
|
|
|
|
if (!ctg) {
|
|
ctg = this._byCrosstalkGroup[ctGroup] = {};
|
|
var crosstalk = global.crosstalk;
|
|
|
|
var handleFilter = function handleFilter(e) {
|
|
if (!e.value) {
|
|
var groupKeys = Object.keys(ctg);
|
|
|
|
for (var i = 0; i < groupKeys.length; i++) {
|
|
var key = groupKeys[i];
|
|
var _layerInfo = _this._byStamp[ctg[key]];
|
|
|
|
_this._setVisibility(_layerInfo, true);
|
|
}
|
|
} else {
|
|
var selectedKeys = {};
|
|
|
|
for (var _i = 0; _i < e.value.length; _i++) {
|
|
selectedKeys[e.value[_i]] = true;
|
|
}
|
|
|
|
var _groupKeys = Object.keys(ctg);
|
|
|
|
for (var _i2 = 0; _i2 < _groupKeys.length; _i2++) {
|
|
var _key = _groupKeys[_i2];
|
|
var _layerInfo2 = _this._byStamp[ctg[_key]];
|
|
|
|
_this._setVisibility(_layerInfo2, selectedKeys[_groupKeys[_i2]]);
|
|
}
|
|
}
|
|
};
|
|
|
|
var filterHandle = new crosstalk.FilterHandle(ctGroup);
|
|
filterHandle.on("change", handleFilter);
|
|
|
|
var handleSelection = function handleSelection(e) {
|
|
if (!e.value || !e.value.length) {
|
|
var groupKeys = Object.keys(ctg);
|
|
|
|
for (var i = 0; i < groupKeys.length; i++) {
|
|
var key = groupKeys[i];
|
|
var _layerInfo3 = _this._byStamp[ctg[key]];
|
|
|
|
_this._setOpacity(_layerInfo3, 1.0);
|
|
}
|
|
} else {
|
|
var selectedKeys = {};
|
|
|
|
for (var _i3 = 0; _i3 < e.value.length; _i3++) {
|
|
selectedKeys[e.value[_i3]] = true;
|
|
}
|
|
|
|
var _groupKeys2 = Object.keys(ctg);
|
|
|
|
for (var _i4 = 0; _i4 < _groupKeys2.length; _i4++) {
|
|
var _key2 = _groupKeys2[_i4];
|
|
var _layerInfo4 = _this._byStamp[ctg[_key2]];
|
|
|
|
_this._setOpacity(_layerInfo4, selectedKeys[_groupKeys2[_i4]] ? 1.0 : 0.2);
|
|
}
|
|
}
|
|
};
|
|
|
|
var selHandle = new crosstalk.SelectionHandle(ctGroup);
|
|
selHandle.on("change", handleSelection);
|
|
setTimeout(function () {
|
|
handleFilter({
|
|
value: filterHandle.filteredKeys
|
|
});
|
|
handleSelection({
|
|
value: selHandle.value
|
|
});
|
|
}, 100);
|
|
}
|
|
|
|
if (!ctg[ctKey]) ctg[ctKey] = [];
|
|
ctg[ctKey].push(stamp);
|
|
} // Add to container
|
|
|
|
|
|
if (!layerInfo.hidden) container.addLayer(layer);
|
|
return oldLayer;
|
|
}
|
|
}, {
|
|
key: "brush",
|
|
value: function brush(bounds, extraInfo) {
|
|
var _this2 = this;
|
|
|
|
/* eslint-disable no-console */
|
|
// For each Crosstalk group...
|
|
Object.keys(this._byCrosstalkGroup).forEach(function (ctGroupName) {
|
|
var ctg = _this2._byCrosstalkGroup[ctGroupName];
|
|
var selection = []; // ...iterate over each Crosstalk key (each of which may have multiple
|
|
// layers)...
|
|
|
|
Object.keys(ctg).forEach(function (ctKey) {
|
|
// ...and for each layer...
|
|
ctg[ctKey].forEach(function (stamp) {
|
|
var layerInfo = _this2._byStamp[stamp]; // ...if it's something with a point...
|
|
|
|
if (layerInfo.layer.getLatLng) {
|
|
// ... and it's inside the selection bounds...
|
|
// TODO: Use pixel containment, not lat/lng containment
|
|
if (bounds.contains(layerInfo.layer.getLatLng())) {
|
|
// ...add the key to the selection.
|
|
selection.push(ctKey);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
new global.crosstalk.SelectionHandle(ctGroupName).set(selection, extraInfo);
|
|
});
|
|
}
|
|
}, {
|
|
key: "unbrush",
|
|
value: function unbrush(extraInfo) {
|
|
Object.keys(this._byCrosstalkGroup).forEach(function (ctGroupName) {
|
|
new global.crosstalk.SelectionHandle(ctGroupName).clear(extraInfo);
|
|
});
|
|
}
|
|
}, {
|
|
key: "_setVisibility",
|
|
value: function _setVisibility(layerInfo, visible) {
|
|
if (layerInfo.hidden ^ visible) {
|
|
return;
|
|
} else if (visible) {
|
|
layerInfo.container.addLayer(layerInfo.layer);
|
|
layerInfo.hidden = false;
|
|
} else {
|
|
layerInfo.container.removeLayer(layerInfo.layer);
|
|
layerInfo.hidden = true;
|
|
}
|
|
}
|
|
}, {
|
|
key: "_setOpacity",
|
|
value: function _setOpacity(layerInfo, opacity) {
|
|
if (layerInfo.layer.setOpacity) {
|
|
layerInfo.layer.setOpacity(opacity);
|
|
} else if (layerInfo.layer.setStyle) {
|
|
layerInfo.layer.setStyle({
|
|
opacity: opacity * layerInfo.layer.options.origOpacity,
|
|
fillOpacity: opacity * layerInfo.layer.options.origFillOpacity
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "getLayer",
|
|
value: function getLayer(category, layerId) {
|
|
return this._byLayerId[this._layerIdKey(category, layerId)];
|
|
}
|
|
}, {
|
|
key: "removeLayer",
|
|
value: function removeLayer(category, layerIds) {
|
|
var _this3 = this;
|
|
|
|
// Find layer info
|
|
_jquery2["default"].each((0, _util.asArray)(layerIds), function (i, layerId) {
|
|
var layer = _this3._byLayerId[_this3._layerIdKey(category, layerId)];
|
|
|
|
if (layer) {
|
|
_this3._removeLayer(layer);
|
|
}
|
|
});
|
|
}
|
|
}, {
|
|
key: "clearLayers",
|
|
value: function clearLayers(category) {
|
|
var _this4 = this;
|
|
|
|
// Find all layers in _byCategory[category]
|
|
var catTable = this._byCategory[category];
|
|
|
|
if (!catTable) {
|
|
return false;
|
|
} // Remove all layers. Make copy of keys to avoid mutating the collection
|
|
// behind the iterator you're accessing.
|
|
|
|
|
|
var stamps = [];
|
|
|
|
_jquery2["default"].each(catTable, function (k, v) {
|
|
stamps.push(k);
|
|
});
|
|
|
|
_jquery2["default"].each(stamps, function (i, stamp) {
|
|
_this4._removeLayer(stamp);
|
|
});
|
|
}
|
|
}, {
|
|
key: "getLayerGroup",
|
|
value: function getLayerGroup(group, ensureExists) {
|
|
var g = this._groupContainers[group];
|
|
|
|
if (ensureExists && !g) {
|
|
this._byGroup[group] = this._byGroup[group] || {};
|
|
g = this._groupContainers[group] = _leaflet2["default"].featureGroup();
|
|
g.groupname = group;
|
|
g.addTo(this._map);
|
|
}
|
|
|
|
return g;
|
|
}
|
|
}, {
|
|
key: "getGroupNameFromLayerGroup",
|
|
value: function getGroupNameFromLayerGroup(layerGroup) {
|
|
return layerGroup.groupname;
|
|
}
|
|
}, {
|
|
key: "getVisibleGroups",
|
|
value: function getVisibleGroups() {
|
|
var _this5 = this;
|
|
|
|
var result = [];
|
|
|
|
_jquery2["default"].each(this._groupContainers, function (k, v) {
|
|
if (_this5._map.hasLayer(v)) {
|
|
result.push(k);
|
|
}
|
|
});
|
|
|
|
return result;
|
|
}
|
|
}, {
|
|
key: "getAllGroupNames",
|
|
value: function getAllGroupNames() {
|
|
var result = [];
|
|
|
|
_jquery2["default"].each(this._groupContainers, function (k, v) {
|
|
result.push(k);
|
|
});
|
|
|
|
return result;
|
|
}
|
|
}, {
|
|
key: "clearGroup",
|
|
value: function clearGroup(group) {
|
|
var _this6 = this;
|
|
|
|
// Find all layers in _byGroup[group]
|
|
var groupTable = this._byGroup[group];
|
|
|
|
if (!groupTable) {
|
|
return false;
|
|
} // Remove all layers. Make copy of keys to avoid mutating the collection
|
|
// behind the iterator you're accessing.
|
|
|
|
|
|
var stamps = [];
|
|
|
|
_jquery2["default"].each(groupTable, function (k, v) {
|
|
stamps.push(k);
|
|
});
|
|
|
|
_jquery2["default"].each(stamps, function (i, stamp) {
|
|
_this6._removeLayer(stamp);
|
|
});
|
|
}
|
|
}, {
|
|
key: "clear",
|
|
value: function clear() {
|
|
function clearLayerGroup(key, layerGroup) {
|
|
layerGroup.clearLayers();
|
|
} // Clear all indices and layerGroups
|
|
|
|
|
|
this._byGroup = {};
|
|
this._byCategory = {};
|
|
this._byLayerId = {};
|
|
this._byStamp = {};
|
|
this._byCrosstalkGroup = {};
|
|
|
|
_jquery2["default"].each(this._categoryContainers, clearLayerGroup);
|
|
|
|
this._categoryContainers = {};
|
|
|
|
_jquery2["default"].each(this._groupContainers, clearLayerGroup);
|
|
|
|
this._groupContainers = {};
|
|
}
|
|
}, {
|
|
key: "_removeLayer",
|
|
value: function _removeLayer(layer) {
|
|
var stamp;
|
|
|
|
if (typeof layer === "string") {
|
|
stamp = layer;
|
|
} else {
|
|
stamp = _leaflet2["default"].Util.stamp(layer);
|
|
}
|
|
|
|
var layerInfo = this._byStamp[stamp];
|
|
|
|
if (!layerInfo) {
|
|
return false;
|
|
}
|
|
|
|
layerInfo.container.removeLayer(stamp);
|
|
|
|
if (typeof layerInfo.group === "string") {
|
|
delete this._byGroup[layerInfo.group][stamp];
|
|
}
|
|
|
|
if (typeof layerInfo.layerId === "string") {
|
|
delete this._byLayerId[this._layerIdKey(layerInfo.category, layerInfo.layerId)];
|
|
}
|
|
|
|
delete this._byCategory[layerInfo.category][stamp];
|
|
delete this._byStamp[stamp];
|
|
|
|
if (layerInfo.ctGroup) {
|
|
var ctGroup = this._byCrosstalkGroup[layerInfo.ctGroup];
|
|
var layersForKey = ctGroup[layerInfo.ctKey];
|
|
var idx = layersForKey ? layersForKey.indexOf(stamp) : -1;
|
|
|
|
if (idx >= 0) {
|
|
if (layersForKey.length === 1) {
|
|
delete ctGroup[layerInfo.ctKey];
|
|
} else {
|
|
layersForKey.splice(idx, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
key: "_layerIdKey",
|
|
value: function _layerIdKey(category, layerId) {
|
|
return category + "\n" + layerId;
|
|
}
|
|
}]);
|
|
|
|
return LayerManager;
|
|
}();
|
|
|
|
exports["default"] = LayerManager;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{"./global/jquery":9,"./global/leaflet":10,"./util":17}],15:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _jquery = require("./global/jquery");
|
|
|
|
var _jquery2 = _interopRequireDefault(_jquery);
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _shiny = require("./global/shiny");
|
|
|
|
var _shiny2 = _interopRequireDefault(_shiny);
|
|
|
|
var _htmlwidgets = require("./global/htmlwidgets");
|
|
|
|
var _htmlwidgets2 = _interopRequireDefault(_htmlwidgets);
|
|
|
|
var _util = require("./util");
|
|
|
|
var _crs_utils = require("./crs_utils");
|
|
|
|
var _dataframe = require("./dataframe");
|
|
|
|
var _dataframe2 = _interopRequireDefault(_dataframe);
|
|
|
|
var _clusterLayerStore = require("./cluster-layer-store");
|
|
|
|
var _clusterLayerStore2 = _interopRequireDefault(_clusterLayerStore);
|
|
|
|
var _mipmapper = require("./mipmapper");
|
|
|
|
var _mipmapper2 = _interopRequireDefault(_mipmapper);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
var methods = {};
|
|
exports["default"] = methods;
|
|
|
|
function mouseHandler(mapId, layerId, group, eventName, extraInfo) {
|
|
return function (e) {
|
|
if (!_htmlwidgets2["default"].shinyMode) return;
|
|
var latLng = e.target.getLatLng ? e.target.getLatLng() : e.latlng;
|
|
|
|
if (latLng) {
|
|
// retrieve only lat, lon values to remove prototype
|
|
// and extra parameters added by 3rd party modules
|
|
// these objects are for json serialization, not javascript
|
|
var latLngVal = _leaflet2["default"].latLng(latLng); // make sure it has consistent shape
|
|
|
|
|
|
latLng = {
|
|
lat: latLngVal.lat,
|
|
lng: latLngVal.lng
|
|
};
|
|
}
|
|
|
|
var eventInfo = _jquery2["default"].extend({
|
|
id: layerId,
|
|
".nonce": Math.random() // force reactivity
|
|
|
|
}, group !== null ? {
|
|
group: group
|
|
} : null, latLng, extraInfo);
|
|
|
|
_shiny2["default"].onInputChange(mapId + "_" + eventName, eventInfo);
|
|
};
|
|
}
|
|
|
|
methods.mouseHandler = mouseHandler;
|
|
|
|
methods.clearGroup = function (group) {
|
|
var _this = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, v) {
|
|
_this.layerManager.clearGroup(v);
|
|
});
|
|
};
|
|
|
|
methods.setView = function (center, zoom, options) {
|
|
this.setView(center, zoom, options);
|
|
};
|
|
|
|
methods.fitBounds = function (lat1, lng1, lat2, lng2, options) {
|
|
this.fitBounds([[lat1, lng1], [lat2, lng2]], options);
|
|
};
|
|
|
|
methods.flyTo = function (center, zoom, options) {
|
|
this.flyTo(center, zoom, options);
|
|
};
|
|
|
|
methods.flyToBounds = function (lat1, lng1, lat2, lng2, options) {
|
|
this.flyToBounds([[lat1, lng1], [lat2, lng2]], options);
|
|
};
|
|
|
|
methods.setMaxBounds = function (lat1, lng1, lat2, lng2) {
|
|
this.setMaxBounds([[lat1, lng1], [lat2, lng2]]);
|
|
};
|
|
|
|
methods.addPopups = function (lat, lng, popup, layerId, group, options) {
|
|
var _this2 = this;
|
|
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("popup", popup).col("layerId", layerId).col("group", group).cbind(options);
|
|
|
|
var _loop = function _loop(i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat")) && _jquery2["default"].isNumeric(df.get(i, "lng"))) {
|
|
(function () {
|
|
var popup = _leaflet2["default"].popup(df.get(i)).setLatLng([df.get(i, "lat"), df.get(i, "lng")]).setContent(df.get(i, "popup"));
|
|
|
|
var thisId = df.get(i, "layerId");
|
|
var thisGroup = df.get(i, "group");
|
|
this.layerManager.addLayer(popup, "popup", thisId, thisGroup);
|
|
}).call(_this2);
|
|
}
|
|
};
|
|
|
|
for (var i = 0; i < df.nrow(); i++) {
|
|
_loop(i);
|
|
}
|
|
};
|
|
|
|
methods.removePopup = function (layerId) {
|
|
this.layerManager.removeLayer("popup", layerId);
|
|
};
|
|
|
|
methods.clearPopups = function () {
|
|
this.layerManager.clearLayers("popup");
|
|
};
|
|
|
|
methods.addTiles = function (urlTemplate, layerId, group, options) {
|
|
this.layerManager.addLayer(_leaflet2["default"].tileLayer(urlTemplate, options), "tile", layerId, group);
|
|
};
|
|
|
|
methods.removeTiles = function (layerId) {
|
|
this.layerManager.removeLayer("tile", layerId);
|
|
};
|
|
|
|
methods.clearTiles = function () {
|
|
this.layerManager.clearLayers("tile");
|
|
};
|
|
|
|
methods.addWMSTiles = function (baseUrl, layerId, group, options) {
|
|
if (options && options.crs) {
|
|
options.crs = (0, _crs_utils.getCRS)(options.crs);
|
|
}
|
|
|
|
this.layerManager.addLayer(_leaflet2["default"].tileLayer.wms(baseUrl, options), "tile", layerId, group);
|
|
}; // Given:
|
|
// {data: ["a", "b", "c"], index: [0, 1, 0, 2]}
|
|
// returns:
|
|
// ["a", "b", "a", "c"]
|
|
|
|
|
|
function unpackStrings(iconset) {
|
|
if (!iconset) {
|
|
return iconset;
|
|
}
|
|
|
|
if (typeof iconset.index === "undefined") {
|
|
return iconset;
|
|
}
|
|
|
|
iconset.data = (0, _util.asArray)(iconset.data);
|
|
iconset.index = (0, _util.asArray)(iconset.index);
|
|
return _jquery2["default"].map(iconset.index, function (e, i) {
|
|
return iconset.data[e];
|
|
});
|
|
}
|
|
|
|
function addMarkers(map, df, group, clusterOptions, clusterId, markerFunc) {
|
|
(function () {
|
|
var _this3 = this;
|
|
|
|
var clusterGroup = this.layerManager.getLayer("cluster", clusterId),
|
|
cluster = clusterOptions !== null;
|
|
|
|
if (cluster && !clusterGroup) {
|
|
clusterGroup = _leaflet2["default"].markerClusterGroup.layerSupport(clusterOptions);
|
|
|
|
if (clusterOptions.freezeAtZoom) {
|
|
var freezeAtZoom = clusterOptions.freezeAtZoom;
|
|
delete clusterOptions.freezeAtZoom;
|
|
clusterGroup.freezeAtZoom(freezeAtZoom);
|
|
}
|
|
|
|
clusterGroup.clusterLayerStore = new _clusterLayerStore2["default"](clusterGroup);
|
|
}
|
|
|
|
var extraInfo = cluster ? {
|
|
clusterId: clusterId
|
|
} : {};
|
|
|
|
var _loop2 = function _loop2(i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat")) && _jquery2["default"].isNumeric(df.get(i, "lng"))) {
|
|
(function () {
|
|
var marker = markerFunc(df, i);
|
|
var thisId = df.get(i, "layerId");
|
|
var thisGroup = cluster ? null : df.get(i, "group");
|
|
|
|
if (cluster) {
|
|
clusterGroup.clusterLayerStore.add(marker, thisId);
|
|
} else {
|
|
this.layerManager.addLayer(marker, "marker", thisId, thisGroup, df.get(i, "ctGroup", true), df.get(i, "ctKey", true));
|
|
}
|
|
|
|
var popup = df.get(i, "popup");
|
|
var popupOptions = df.get(i, "popupOptions");
|
|
|
|
if (popup !== null) {
|
|
if (popupOptions !== null) {
|
|
marker.bindPopup(popup, popupOptions);
|
|
} else {
|
|
marker.bindPopup(popup);
|
|
}
|
|
}
|
|
|
|
var label = df.get(i, "label");
|
|
var labelOptions = df.get(i, "labelOptions");
|
|
|
|
if (label !== null) {
|
|
if (labelOptions !== null) {
|
|
if (labelOptions.permanent) {
|
|
marker.bindTooltip(label, labelOptions).openTooltip();
|
|
} else {
|
|
marker.bindTooltip(label, labelOptions);
|
|
}
|
|
} else {
|
|
marker.bindTooltip(label);
|
|
}
|
|
}
|
|
|
|
marker.on("click", mouseHandler(this.id, thisId, thisGroup, "marker_click", extraInfo), this);
|
|
marker.on("mouseover", mouseHandler(this.id, thisId, thisGroup, "marker_mouseover", extraInfo), this);
|
|
marker.on("mouseout", mouseHandler(this.id, thisId, thisGroup, "marker_mouseout", extraInfo), this);
|
|
marker.on("dragend", mouseHandler(this.id, thisId, thisGroup, "marker_dragend", extraInfo), this);
|
|
}).call(_this3);
|
|
}
|
|
};
|
|
|
|
for (var i = 0; i < df.nrow(); i++) {
|
|
_loop2(i);
|
|
}
|
|
|
|
if (cluster) {
|
|
this.layerManager.addLayer(clusterGroup, "cluster", clusterId, group);
|
|
}
|
|
}).call(map);
|
|
}
|
|
|
|
methods.addGenericMarkers = addMarkers;
|
|
|
|
methods.addMarkers = function (lat, lng, icon, layerId, group, options, popup, popupOptions, clusterOptions, clusterId, label, labelOptions, crosstalkOptions) {
|
|
var icondf;
|
|
var getIcon;
|
|
|
|
if (icon) {
|
|
// Unpack icons
|
|
icon.iconUrl = unpackStrings(icon.iconUrl);
|
|
icon.iconRetinaUrl = unpackStrings(icon.iconRetinaUrl);
|
|
icon.shadowUrl = unpackStrings(icon.shadowUrl);
|
|
icon.shadowRetinaUrl = unpackStrings(icon.shadowRetinaUrl); // This cbinds the icon URLs and any other icon options; they're all
|
|
// present on the icon object.
|
|
|
|
icondf = new _dataframe2["default"]().cbind(icon); // Constructs an icon from a specified row of the icon dataframe.
|
|
|
|
getIcon = function getIcon(i) {
|
|
var opts = icondf.get(i);
|
|
|
|
if (!opts.iconUrl) {
|
|
return new _leaflet2["default"].Icon.Default();
|
|
} // Composite options (like points or sizes) are passed from R with each
|
|
// individual component as its own option. We need to combine them now
|
|
// into their composite form.
|
|
|
|
|
|
if (opts.iconWidth) {
|
|
opts.iconSize = [opts.iconWidth, opts.iconHeight];
|
|
}
|
|
|
|
if (opts.shadowWidth) {
|
|
opts.shadowSize = [opts.shadowWidth, opts.shadowHeight];
|
|
}
|
|
|
|
if (opts.iconAnchorX) {
|
|
opts.iconAnchor = [opts.iconAnchorX, opts.iconAnchorY];
|
|
}
|
|
|
|
if (opts.shadowAnchorX) {
|
|
opts.shadowAnchor = [opts.shadowAnchorX, opts.shadowAnchorY];
|
|
}
|
|
|
|
if (opts.popupAnchorX) {
|
|
opts.popupAnchor = [opts.popupAnchorX, opts.popupAnchorY];
|
|
}
|
|
|
|
return new _leaflet2["default"].Icon(opts);
|
|
};
|
|
}
|
|
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).cbind(options).cbind(crosstalkOptions || {});
|
|
if (icon) icondf.effectiveLength = df.nrow();
|
|
addMarkers(this, df, group, clusterOptions, clusterId, function (df, i) {
|
|
var options = df.get(i);
|
|
if (icon) options.icon = getIcon(i);
|
|
return _leaflet2["default"].marker([df.get(i, "lat"), df.get(i, "lng")], options);
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.addAwesomeMarkers = function (lat, lng, icon, layerId, group, options, popup, popupOptions, clusterOptions, clusterId, label, labelOptions, crosstalkOptions) {
|
|
var icondf;
|
|
var getIcon;
|
|
|
|
if (icon) {
|
|
// This cbinds the icon URLs and any other icon options; they're all
|
|
// present on the icon object.
|
|
icondf = new _dataframe2["default"]().cbind(icon); // Constructs an icon from a specified row of the icon dataframe.
|
|
|
|
getIcon = function getIcon(i) {
|
|
var opts = icondf.get(i);
|
|
|
|
if (!opts) {
|
|
return new _leaflet2["default"].AwesomeMarkers.icon();
|
|
}
|
|
|
|
if (opts.squareMarker) {
|
|
opts.className = "awesome-marker awesome-marker-square";
|
|
}
|
|
|
|
return new _leaflet2["default"].AwesomeMarkers.icon(opts);
|
|
};
|
|
}
|
|
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).cbind(options).cbind(crosstalkOptions || {});
|
|
if (icon) icondf.effectiveLength = df.nrow();
|
|
addMarkers(this, df, group, clusterOptions, clusterId, function (df, i) {
|
|
var options = df.get(i);
|
|
if (icon) options.icon = getIcon(i);
|
|
return _leaflet2["default"].marker([df.get(i, "lat"), df.get(i, "lng")], options);
|
|
});
|
|
}
|
|
};
|
|
|
|
function addLayers(map, category, df, layerFunc) {
|
|
var _loop3 = function _loop3(i) {
|
|
(function () {
|
|
var layer = layerFunc(df, i);
|
|
|
|
if (!_jquery2["default"].isEmptyObject(layer)) {
|
|
var thisId = df.get(i, "layerId");
|
|
var thisGroup = df.get(i, "group");
|
|
this.layerManager.addLayer(layer, category, thisId, thisGroup, df.get(i, "ctGroup", true), df.get(i, "ctKey", true));
|
|
|
|
if (layer.bindPopup) {
|
|
var popup = df.get(i, "popup");
|
|
var popupOptions = df.get(i, "popupOptions");
|
|
|
|
if (popup !== null) {
|
|
if (popupOptions !== null) {
|
|
layer.bindPopup(popup, popupOptions);
|
|
} else {
|
|
layer.bindPopup(popup);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (layer.bindTooltip) {
|
|
var label = df.get(i, "label");
|
|
var labelOptions = df.get(i, "labelOptions");
|
|
|
|
if (label !== null) {
|
|
if (labelOptions !== null) {
|
|
layer.bindTooltip(label, labelOptions);
|
|
} else {
|
|
layer.bindTooltip(label);
|
|
}
|
|
}
|
|
}
|
|
|
|
layer.on("click", mouseHandler(this.id, thisId, thisGroup, category + "_click"), this);
|
|
layer.on("mouseover", mouseHandler(this.id, thisId, thisGroup, category + "_mouseover"), this);
|
|
layer.on("mouseout", mouseHandler(this.id, thisId, thisGroup, category + "_mouseout"), this);
|
|
var highlightStyle = df.get(i, "highlightOptions");
|
|
|
|
if (!_jquery2["default"].isEmptyObject(highlightStyle)) {
|
|
var defaultStyle = {};
|
|
|
|
_jquery2["default"].each(highlightStyle, function (k, v) {
|
|
if (k != "bringToFront" && k != "sendToBack") {
|
|
if (df.get(i, k)) {
|
|
defaultStyle[k] = df.get(i, k);
|
|
}
|
|
}
|
|
});
|
|
|
|
layer.on("mouseover", function (e) {
|
|
this.setStyle(highlightStyle);
|
|
|
|
if (highlightStyle.bringToFront) {
|
|
this.bringToFront();
|
|
}
|
|
});
|
|
layer.on("mouseout", function (e) {
|
|
this.setStyle(defaultStyle);
|
|
|
|
if (highlightStyle.sendToBack) {
|
|
this.bringToBack();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}).call(map);
|
|
};
|
|
|
|
for (var i = 0; i < df.nrow(); i++) {
|
|
_loop3(i);
|
|
}
|
|
}
|
|
|
|
methods.addGenericLayers = addLayers;
|
|
|
|
methods.addCircles = function (lat, lng, radius, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions, crosstalkOptions) {
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("radius", radius).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options).cbind(crosstalkOptions || {});
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat")) && _jquery2["default"].isNumeric(df.get(i, "lng")) && _jquery2["default"].isNumeric(df.get(i, "radius"))) {
|
|
return _leaflet2["default"].circle([df.get(i, "lat"), df.get(i, "lng")], df.get(i, "radius"), df.get(i));
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.addCircleMarkers = function (lat, lng, radius, layerId, group, options, clusterOptions, clusterId, popup, popupOptions, label, labelOptions, crosstalkOptions) {
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("radius", radius).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).cbind(crosstalkOptions || {}).cbind(options);
|
|
addMarkers(this, df, group, clusterOptions, clusterId, function (df, i) {
|
|
return _leaflet2["default"].circleMarker([df.get(i, "lat"), df.get(i, "lng")], df.get(i));
|
|
});
|
|
}
|
|
};
|
|
/*
|
|
* @param lat Array of arrays of latitude coordinates for polylines
|
|
* @param lng Array of arrays of longitude coordinates for polylines
|
|
*/
|
|
|
|
|
|
methods.addPolylines = function (polygons, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions) {
|
|
if (polygons.length > 0) {
|
|
var df = new _dataframe2["default"]().col("shapes", polygons).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options);
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
var shapes = df.get(i, "shapes");
|
|
shapes = shapes.map(function (shape) {
|
|
return _htmlwidgets2["default"].dataframeToD3(shape[0]);
|
|
});
|
|
|
|
if (shapes.length > 1) {
|
|
return _leaflet2["default"].polyline(shapes, df.get(i));
|
|
} else {
|
|
return _leaflet2["default"].polyline(shapes[0], df.get(i));
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.removeMarker = function (layerId) {
|
|
this.layerManager.removeLayer("marker", layerId);
|
|
};
|
|
|
|
methods.clearMarkers = function () {
|
|
this.layerManager.clearLayers("marker");
|
|
};
|
|
|
|
methods.removeMarkerCluster = function (layerId) {
|
|
this.layerManager.removeLayer("cluster", layerId);
|
|
};
|
|
|
|
methods.removeMarkerFromCluster = function (layerId, clusterId) {
|
|
var cluster = this.layerManager.getLayer("cluster", clusterId);
|
|
if (!cluster) return;
|
|
cluster.clusterLayerStore.remove(layerId);
|
|
};
|
|
|
|
methods.clearMarkerClusters = function () {
|
|
this.layerManager.clearLayers("cluster");
|
|
};
|
|
|
|
methods.removeShape = function (layerId) {
|
|
this.layerManager.removeLayer("shape", layerId);
|
|
};
|
|
|
|
methods.clearShapes = function () {
|
|
this.layerManager.clearLayers("shape");
|
|
};
|
|
|
|
methods.addRectangles = function (lat1, lng1, lat2, lng2, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions) {
|
|
var df = new _dataframe2["default"]().col("lat1", lat1).col("lng1", lng1).col("lat2", lat2).col("lng2", lng2).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options);
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat1")) && _jquery2["default"].isNumeric(df.get(i, "lng1")) && _jquery2["default"].isNumeric(df.get(i, "lat2")) && _jquery2["default"].isNumeric(df.get(i, "lng2"))) {
|
|
return _leaflet2["default"].rectangle([[df.get(i, "lat1"), df.get(i, "lng1")], [df.get(i, "lat2"), df.get(i, "lng2")]], df.get(i));
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
};
|
|
/*
|
|
* @param lat Array of arrays of latitude coordinates for polygons
|
|
* @param lng Array of arrays of longitude coordinates for polygons
|
|
*/
|
|
|
|
|
|
methods.addPolygons = function (polygons, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions) {
|
|
if (polygons.length > 0) {
|
|
var df = new _dataframe2["default"]().col("shapes", polygons).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options);
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
// This code used to use L.multiPolygon, but that caused
|
|
// double-click on a multipolygon to fail to zoom in on the
|
|
// map. Surprisingly, putting all the rings in a single
|
|
// polygon seems to still work; complicated multipolygons
|
|
// are still rendered correctly.
|
|
var shapes = df.get(i, "shapes").map(function (polygon) {
|
|
return polygon.map(_htmlwidgets2["default"].dataframeToD3);
|
|
}).reduce(function (acc, val) {
|
|
return acc.concat(val);
|
|
}, []);
|
|
return _leaflet2["default"].polygon(shapes, df.get(i));
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.addGeoJSON = function (data, layerId, group, style) {
|
|
// This time, self is actually needed because the callbacks below need
|
|
// to access both the inner and outer senses of "this"
|
|
var self = this;
|
|
|
|
if (typeof data === "string") {
|
|
data = JSON.parse(data);
|
|
}
|
|
|
|
var globalStyle = _jquery2["default"].extend({}, style, data.style || {});
|
|
|
|
var gjlayer = _leaflet2["default"].geoJson(data, {
|
|
style: function style(feature) {
|
|
if (feature.style || feature.properties.style) {
|
|
return _jquery2["default"].extend({}, globalStyle, feature.style, feature.properties.style);
|
|
} else {
|
|
return globalStyle;
|
|
}
|
|
},
|
|
onEachFeature: function onEachFeature(feature, layer) {
|
|
var extraInfo = {
|
|
featureId: feature.id,
|
|
properties: feature.properties
|
|
};
|
|
var popup = feature.properties ? feature.properties.popup : null;
|
|
if (typeof popup !== "undefined" && popup !== null) layer.bindPopup(popup);
|
|
layer.on("click", mouseHandler(self.id, layerId, group, "geojson_click", extraInfo), this);
|
|
layer.on("mouseover", mouseHandler(self.id, layerId, group, "geojson_mouseover", extraInfo), this);
|
|
layer.on("mouseout", mouseHandler(self.id, layerId, group, "geojson_mouseout", extraInfo), this);
|
|
}
|
|
});
|
|
|
|
this.layerManager.addLayer(gjlayer, "geojson", layerId, group);
|
|
};
|
|
|
|
methods.removeGeoJSON = function (layerId) {
|
|
this.layerManager.removeLayer("geojson", layerId);
|
|
};
|
|
|
|
methods.clearGeoJSON = function () {
|
|
this.layerManager.clearLayers("geojson");
|
|
};
|
|
|
|
methods.addTopoJSON = function (data, layerId, group, style) {
|
|
// This time, self is actually needed because the callbacks below need
|
|
// to access both the inner and outer senses of "this"
|
|
var self = this;
|
|
|
|
if (typeof data === "string") {
|
|
data = JSON.parse(data);
|
|
}
|
|
|
|
var globalStyle = _jquery2["default"].extend({}, style, data.style || {});
|
|
|
|
var gjlayer = _leaflet2["default"].geoJson(null, {
|
|
style: function style(feature) {
|
|
if (feature.style || feature.properties.style) {
|
|
return _jquery2["default"].extend({}, globalStyle, feature.style, feature.properties.style);
|
|
} else {
|
|
return globalStyle;
|
|
}
|
|
},
|
|
onEachFeature: function onEachFeature(feature, layer) {
|
|
var extraInfo = {
|
|
featureId: feature.id,
|
|
properties: feature.properties
|
|
};
|
|
var popup = feature.properties.popup;
|
|
if (typeof popup !== "undefined" && popup !== null) layer.bindPopup(popup);
|
|
layer.on("click", mouseHandler(self.id, layerId, group, "topojson_click", extraInfo), this);
|
|
layer.on("mouseover", mouseHandler(self.id, layerId, group, "topojson_mouseover", extraInfo), this);
|
|
layer.on("mouseout", mouseHandler(self.id, layerId, group, "topojson_mouseout", extraInfo), this);
|
|
}
|
|
});
|
|
|
|
global.omnivore.topojson.parse(data, null, gjlayer);
|
|
this.layerManager.addLayer(gjlayer, "topojson", layerId, group);
|
|
};
|
|
|
|
methods.removeTopoJSON = function (layerId) {
|
|
this.layerManager.removeLayer("topojson", layerId);
|
|
};
|
|
|
|
methods.clearTopoJSON = function () {
|
|
this.layerManager.clearLayers("topojson");
|
|
};
|
|
|
|
methods.addControl = function (html, position, layerId, classes) {
|
|
function onAdd(map) {
|
|
var div = _leaflet2["default"].DomUtil.create("div", classes);
|
|
|
|
if (typeof layerId !== "undefined" && layerId !== null) {
|
|
div.setAttribute("id", layerId);
|
|
}
|
|
|
|
this._div = div; // It's possible for window.Shiny to be true but Shiny.initializeInputs to
|
|
// not be, when a static leaflet widget is included as part of the shiny
|
|
// UI directly (not through leafletOutput or uiOutput). In this case we
|
|
// don't do the normal Shiny stuff as that will all happen when Shiny
|
|
// itself loads and binds the entire doc.
|
|
|
|
if (window.Shiny && _shiny2["default"].initializeInputs) {
|
|
_shiny2["default"].renderHtml(html, this._div);
|
|
|
|
_shiny2["default"].initializeInputs(this._div);
|
|
|
|
_shiny2["default"].bindAll(this._div);
|
|
} else {
|
|
this._div.innerHTML = html;
|
|
}
|
|
|
|
return this._div;
|
|
}
|
|
|
|
function onRemove(map) {
|
|
if (window.Shiny && _shiny2["default"].unbindAll) {
|
|
_shiny2["default"].unbindAll(this._div);
|
|
}
|
|
}
|
|
|
|
var Control = _leaflet2["default"].Control.extend({
|
|
options: {
|
|
position: position
|
|
},
|
|
onAdd: onAdd,
|
|
onRemove: onRemove
|
|
});
|
|
|
|
this.controls.add(new Control(), layerId, html);
|
|
};
|
|
|
|
methods.addCustomControl = function (control, layerId) {
|
|
this.controls.add(control, layerId);
|
|
};
|
|
|
|
methods.removeControl = function (layerId) {
|
|
this.controls.remove(layerId);
|
|
};
|
|
|
|
methods.getControl = function (layerId) {
|
|
this.controls.get(layerId);
|
|
};
|
|
|
|
methods.clearControls = function () {
|
|
this.controls.clear();
|
|
};
|
|
|
|
methods.addLegend = function (options) {
|
|
var legend = _leaflet2["default"].control({
|
|
position: options.position
|
|
});
|
|
|
|
var gradSpan;
|
|
|
|
legend.onAdd = function (map) {
|
|
var div = _leaflet2["default"].DomUtil.create("div", options.className),
|
|
colors = options.colors,
|
|
labels = options.labels,
|
|
legendHTML = "";
|
|
|
|
if (options.type === "numeric") {
|
|
// # Formatting constants.
|
|
var singleBinHeight = 20; // The distance between tick marks, in px
|
|
|
|
var vMargin = 8; // If 1st tick mark starts at top of gradient, how
|
|
// many extra px are needed for the top half of the
|
|
// 1st label? (ditto for last tick mark/label)
|
|
|
|
var tickWidth = 4; // How wide should tick marks be, in px?
|
|
|
|
var labelPadding = 6; // How much distance to reserve for tick mark?
|
|
// (Must be >= tickWidth)
|
|
// # Derived formatting parameters.
|
|
// What's the height of a single bin, in percentage (of gradient height)?
|
|
// It might not just be 1/(n-1), if the gradient extends past the tick
|
|
// marks (which can be the case for pretty cut points).
|
|
|
|
var singleBinPct = (options.extra.p_n - options.extra.p_1) / (labels.length - 1); // Each bin is `singleBinHeight` high. How tall is the gradient?
|
|
|
|
var totalHeight = 1 / singleBinPct * singleBinHeight + 1; // How far should the first tick be shifted down, relative to the top
|
|
// of the gradient?
|
|
|
|
var tickOffset = singleBinHeight / singleBinPct * options.extra.p_1;
|
|
gradSpan = (0, _jquery2["default"])("<span/>").css({
|
|
"background": "linear-gradient(" + colors + ")",
|
|
"opacity": options.opacity,
|
|
"height": totalHeight + "px",
|
|
"width": "18px",
|
|
"display": "block",
|
|
"margin-top": vMargin + "px"
|
|
});
|
|
var leftDiv = (0, _jquery2["default"])("<div/>").css("float", "left"),
|
|
rightDiv = (0, _jquery2["default"])("<div/>").css("float", "left");
|
|
leftDiv.append(gradSpan);
|
|
(0, _jquery2["default"])(div).append(leftDiv).append(rightDiv).append((0, _jquery2["default"])("<br>")); // Have to attach the div to the body at this early point, so that the
|
|
// svg text getComputedTextLength() actually works, below.
|
|
|
|
document.body.appendChild(div);
|
|
var ns = "http://www.w3.org/2000/svg";
|
|
var svg = document.createElementNS(ns, "svg");
|
|
rightDiv.append(svg);
|
|
var g = document.createElementNS(ns, "g");
|
|
(0, _jquery2["default"])(g).attr("transform", "translate(0, " + vMargin + ")");
|
|
svg.appendChild(g); // max label width needed to set width of svg, and right-justify text
|
|
|
|
var maxLblWidth = 0; // Create tick marks and labels
|
|
|
|
_jquery2["default"].each(labels, function (i, label) {
|
|
var y = tickOffset + i * singleBinHeight + 0.5;
|
|
var thisLabel = document.createElementNS(ns, "text");
|
|
(0, _jquery2["default"])(thisLabel).text(labels[i]).attr("y", y).attr("dx", labelPadding).attr("dy", "0.5ex");
|
|
g.appendChild(thisLabel);
|
|
maxLblWidth = Math.max(maxLblWidth, thisLabel.getComputedTextLength());
|
|
var thisTick = document.createElementNS(ns, "line");
|
|
(0, _jquery2["default"])(thisTick).attr("x1", 0).attr("x2", tickWidth).attr("y1", y).attr("y2", y).attr("stroke-width", 1);
|
|
g.appendChild(thisTick);
|
|
}); // Now that we know the max label width, we can right-justify
|
|
|
|
|
|
(0, _jquery2["default"])(svg).find("text").attr("dx", labelPadding + maxLblWidth).attr("text-anchor", "end"); // Final size for <svg>
|
|
|
|
(0, _jquery2["default"])(svg).css({
|
|
width: maxLblWidth + labelPadding + "px",
|
|
height: totalHeight + vMargin * 2 + "px"
|
|
});
|
|
|
|
if (options.na_color && _jquery2["default"].inArray(options.na_label, labels) < 0) {
|
|
(0, _jquery2["default"])(div).append("<div><i style=\"" + "background:" + options.na_color + ";opacity:" + options.opacity + ";margin-right:" + labelPadding + "px" + ";\"></i>" + options.na_label + "</div>");
|
|
}
|
|
} else {
|
|
if (options.na_color && _jquery2["default"].inArray(options.na_label, labels) < 0) {
|
|
colors.push(options.na_color);
|
|
labels.push(options.na_label);
|
|
}
|
|
|
|
for (var i = 0; i < colors.length; i++) {
|
|
legendHTML += "<i style=\"background:" + colors[i] + ";opacity:" + options.opacity + "\"></i> " + labels[i] + "<br>";
|
|
}
|
|
|
|
div.innerHTML = legendHTML;
|
|
}
|
|
|
|
if (options.title) (0, _jquery2["default"])(div).prepend("<div style=\"margin-bottom:3px\"><strong>" + options.title + "</strong></div>");
|
|
return div;
|
|
};
|
|
|
|
if (options.group) {
|
|
// Auto generate a layerID if not provided
|
|
if (!options.layerId) {
|
|
options.layerId = _leaflet2["default"].Util.stamp(legend);
|
|
}
|
|
|
|
var map = this;
|
|
map.on("overlayadd", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.add(legend, options.layerId);
|
|
}
|
|
});
|
|
map.on("overlayremove", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.remove(options.layerId);
|
|
}
|
|
});
|
|
map.on("groupadd", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.add(legend, options.layerId);
|
|
}
|
|
});
|
|
map.on("groupremove", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.remove(options.layerId);
|
|
}
|
|
});
|
|
}
|
|
|
|
this.controls.add(legend, options.layerId);
|
|
};
|
|
|
|
methods.addLayersControl = function (baseGroups, overlayGroups, options) {
|
|
var _this4 = this;
|
|
|
|
// Only allow one layers control at a time
|
|
methods.removeLayersControl.call(this);
|
|
var firstLayer = true;
|
|
var base = {};
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(baseGroups), function (i, g) {
|
|
var layer = _this4.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
base[g] = layer; // Check if >1 base layers are visible; if so, hide all but the first one
|
|
|
|
if (_this4.hasLayer(layer)) {
|
|
if (firstLayer) {
|
|
firstLayer = false;
|
|
} else {
|
|
_this4.removeLayer(layer);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
var overlay = {};
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(overlayGroups), function (i, g) {
|
|
var layer = _this4.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
overlay[g] = layer;
|
|
}
|
|
});
|
|
|
|
this.currentLayersControl = _leaflet2["default"].control.layers(base, overlay, options);
|
|
this.addControl(this.currentLayersControl);
|
|
};
|
|
|
|
methods.removeLayersControl = function () {
|
|
if (this.currentLayersControl) {
|
|
this.removeControl(this.currentLayersControl);
|
|
this.currentLayersControl = null;
|
|
}
|
|
};
|
|
|
|
methods.addScaleBar = function (options) {
|
|
// Only allow one scale bar at a time
|
|
methods.removeScaleBar.call(this);
|
|
|
|
var scaleBar = _leaflet2["default"].control.scale(options).addTo(this);
|
|
|
|
this.currentScaleBar = scaleBar;
|
|
};
|
|
|
|
methods.removeScaleBar = function () {
|
|
if (this.currentScaleBar) {
|
|
this.currentScaleBar.remove();
|
|
this.currentScaleBar = null;
|
|
}
|
|
};
|
|
|
|
methods.hideGroup = function (group) {
|
|
var _this5 = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, g) {
|
|
var layer = _this5.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
_this5.removeLayer(layer);
|
|
}
|
|
});
|
|
};
|
|
|
|
methods.showGroup = function (group) {
|
|
var _this6 = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, g) {
|
|
var layer = _this6.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
_this6.addLayer(layer);
|
|
}
|
|
});
|
|
};
|
|
|
|
function setupShowHideGroupsOnZoom(map) {
|
|
if (map.leafletr._hasInitializedShowHideGroups) {
|
|
return;
|
|
}
|
|
|
|
map.leafletr._hasInitializedShowHideGroups = true;
|
|
|
|
function setVisibility(layer, visible, group) {
|
|
if (visible !== map.hasLayer(layer)) {
|
|
if (visible) {
|
|
map.addLayer(layer);
|
|
map.fire("groupadd", {
|
|
"name": group,
|
|
"layer": layer
|
|
});
|
|
} else {
|
|
map.removeLayer(layer);
|
|
map.fire("groupremove", {
|
|
"name": group,
|
|
"layer": layer
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
function showHideGroupsOnZoom() {
|
|
if (!map.layerManager) return;
|
|
var zoom = map.getZoom();
|
|
map.layerManager.getAllGroupNames().forEach(function (group) {
|
|
var layer = map.layerManager.getLayerGroup(group, false);
|
|
|
|
if (layer && typeof layer.zoomLevels !== "undefined") {
|
|
setVisibility(layer, layer.zoomLevels === true || layer.zoomLevels.indexOf(zoom) >= 0, group);
|
|
}
|
|
});
|
|
}
|
|
|
|
map.showHideGroupsOnZoom = showHideGroupsOnZoom;
|
|
map.on("zoomend", showHideGroupsOnZoom);
|
|
}
|
|
|
|
methods.setGroupOptions = function (group, options) {
|
|
var _this7 = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, g) {
|
|
var layer = _this7.layerManager.getLayerGroup(g, true); // This slightly tortured check is because 0 is a valid value for zoomLevels
|
|
|
|
|
|
if (typeof options.zoomLevels !== "undefined" && options.zoomLevels !== null) {
|
|
layer.zoomLevels = (0, _util.asArray)(options.zoomLevels);
|
|
}
|
|
});
|
|
|
|
setupShowHideGroupsOnZoom(this);
|
|
this.showHideGroupsOnZoom();
|
|
};
|
|
|
|
methods.addRasterImage = function (uri, bounds, layerId, group, options) {
|
|
// uri is a data URI containing an image. We want to paint this image as a
|
|
// layer at (top-left) bounds[0] to (bottom-right) bounds[1].
|
|
// We can't simply use ImageOverlay, as it uses bilinear scaling which looks
|
|
// awful as you zoom in (and sometimes shifts positions or disappears).
|
|
// Instead, we'll use a TileLayer.Canvas to draw pieces of the image.
|
|
// First, some helper functions.
|
|
// degree2tile converts latitude, longitude, and zoom to x and y tile
|
|
// numbers. The tile numbers returned can be non-integral, as there's no
|
|
// reason to expect that the lat/lng inputs are exactly on the border of two
|
|
// tiles.
|
|
//
|
|
// We'll use this to convert the bounds we got from the server, into coords
|
|
// in tile-space at a given zoom level. Note that once we do the conversion,
|
|
// we don't to do any more trigonometry to convert between pixel coordinates
|
|
// and tile coordinates; the source image pixel coords, destination canvas
|
|
// pixel coords, and tile coords all can be scaled linearly.
|
|
function degree2tile(lat, lng, zoom) {
|
|
// See http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames
|
|
var latRad = lat * Math.PI / 180;
|
|
var n = Math.pow(2, zoom);
|
|
var x = (lng + 180) / 360 * n;
|
|
var y = (1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * n;
|
|
return {
|
|
x: x,
|
|
y: y
|
|
};
|
|
} // Given a range [from,to) and either one or two numbers, returns true if
|
|
// there is any overlap between [x,x1) and the range--or if x1 is omitted,
|
|
// then returns true if x is within [from,to).
|
|
|
|
|
|
function overlap(from, to, x,
|
|
/* optional */
|
|
x1) {
|
|
if (arguments.length == 3) x1 = x;
|
|
return x < to && x1 >= from;
|
|
}
|
|
|
|
function getCanvasSmoothingProperty(ctx) {
|
|
var candidates = ["imageSmoothingEnabled", "mozImageSmoothingEnabled", "webkitImageSmoothingEnabled", "msImageSmoothingEnabled"];
|
|
|
|
for (var i = 0; i < candidates.length; i++) {
|
|
if (typeof ctx[candidates[i]] !== "undefined") {
|
|
return candidates[i];
|
|
}
|
|
}
|
|
|
|
return null;
|
|
} // Our general strategy is to:
|
|
// 1. Load the data URI in an Image() object, so we can get its pixel
|
|
// dimensions and the underlying image data. (We could have done this
|
|
// by not encoding as PNG at all but just send an array of RGBA values
|
|
// from the server, but that would inflate the JSON too much.)
|
|
// 2. Create a hidden canvas that we use just to extract the image data
|
|
// from the Image (using Context2D.getImageData()).
|
|
// 3. Create a TileLayer.Canvas and add it to the map.
|
|
// We want to synchronously create and attach the TileLayer.Canvas (so an
|
|
// immediate call to clearRasters() will be respected, for example), but
|
|
// Image loads its data asynchronously. Fortunately we can resolve this
|
|
// by putting TileLayer.Canvas into async mode, which will let us create
|
|
// and attach the layer but have it wait until the image is loaded before
|
|
// it actually draws anything.
|
|
// These are the variables that we will populate once the image is loaded.
|
|
|
|
|
|
var imgData = null; // 1d row-major array, four [0-255] integers per pixel
|
|
|
|
var imgDataMipMapper = null;
|
|
var w = null; // image width in pixels
|
|
|
|
var h = null; // image height in pixels
|
|
// We'll use this array to store callbacks that need to be invoked once
|
|
// imgData, w, and h have been resolved.
|
|
|
|
var imgDataCallbacks = []; // Consumers of imgData, w, and h can call this to be notified when data
|
|
// is available.
|
|
|
|
function getImageData(callback) {
|
|
if (imgData != null) {
|
|
// Must not invoke the callback immediately; it's too confusing and
|
|
// fragile to have a function invoke the callback *either* immediately
|
|
// or in the future. Better to be consistent here.
|
|
setTimeout(function () {
|
|
callback(imgData, w, h, imgDataMipMapper);
|
|
}, 0);
|
|
} else {
|
|
imgDataCallbacks.push(callback);
|
|
}
|
|
}
|
|
|
|
var img = new Image();
|
|
|
|
img.onload = function () {
|
|
// Save size
|
|
w = img.width;
|
|
h = img.height; // Create a dummy canvas to extract the image data
|
|
|
|
var imgDataCanvas = document.createElement("canvas");
|
|
imgDataCanvas.width = w;
|
|
imgDataCanvas.height = h;
|
|
imgDataCanvas.style.display = "none";
|
|
document.body.appendChild(imgDataCanvas);
|
|
var imgDataCtx = imgDataCanvas.getContext("2d");
|
|
imgDataCtx.drawImage(img, 0, 0); // Save the image data.
|
|
|
|
imgData = imgDataCtx.getImageData(0, 0, w, h).data;
|
|
imgDataMipMapper = new _mipmapper2["default"](img); // Done with the canvas, remove it from the page so it can be gc'd.
|
|
|
|
document.body.removeChild(imgDataCanvas); // Alert any getImageData callers who are waiting.
|
|
|
|
for (var i = 0; i < imgDataCallbacks.length; i++) {
|
|
imgDataCallbacks[i](imgData, w, h, imgDataMipMapper);
|
|
}
|
|
|
|
imgDataCallbacks = [];
|
|
};
|
|
|
|
img.src = uri;
|
|
|
|
var canvasTiles = _leaflet2["default"].gridLayer(Object.assign({}, options, {
|
|
detectRetina: true,
|
|
async: true
|
|
})); // NOTE: The done() function MUST NOT be invoked until after the current
|
|
// tick; done() looks in Leaflet's tile cache for the current tile, and
|
|
// since it's still being constructed, it won't be found.
|
|
|
|
|
|
canvasTiles.createTile = function (tilePoint, done) {
|
|
var zoom = tilePoint.z;
|
|
|
|
var canvas = _leaflet2["default"].DomUtil.create("canvas");
|
|
|
|
var error; // setup tile width and height according to the options
|
|
|
|
var size = this.getTileSize();
|
|
canvas.width = size.x;
|
|
canvas.height = size.y;
|
|
getImageData(function (imgData, w, h, mipmapper) {
|
|
try {
|
|
// The Context2D we'll being drawing onto. It's always 256x256.
|
|
var ctx = canvas.getContext("2d"); // Convert our image data's top-left and bottom-right locations into
|
|
// x/y tile coordinates. This is essentially doing a spherical mercator
|
|
// projection, then multiplying by 2^zoom.
|
|
|
|
var topLeft = degree2tile(bounds[0][0], bounds[0][1], zoom);
|
|
var bottomRight = degree2tile(bounds[1][0], bounds[1][1], zoom); // The size of the image in x/y tile coordinates.
|
|
|
|
var extent = {
|
|
x: bottomRight.x - topLeft.x,
|
|
y: bottomRight.y - topLeft.y
|
|
}; // Short circuit if tile is totally disjoint from image.
|
|
|
|
if (!overlap(tilePoint.x, tilePoint.x + 1, topLeft.x, bottomRight.x)) return;
|
|
if (!overlap(tilePoint.y, tilePoint.y + 1, topLeft.y, bottomRight.y)) return; // The linear resolution of the tile we're drawing is always 256px per tile unit.
|
|
// If the linear resolution (in either direction) of the image is less than 256px
|
|
// per tile unit, then use nearest neighbor; otherwise, use the canvas's built-in
|
|
// scaling.
|
|
|
|
var imgRes = {
|
|
x: w / extent.x,
|
|
y: h / extent.y
|
|
}; // We can do the actual drawing in one of three ways:
|
|
// - Call drawImage(). This is easy and fast, and results in smooth
|
|
// interpolation (bilinear?). This is what we want when we are
|
|
// reducing the image from its native size.
|
|
// - Call drawImage() with imageSmoothingEnabled=false. This is easy
|
|
// and fast and gives us nearest-neighbor interpolation, which is what
|
|
// we want when enlarging the image. However, it's unsupported on many
|
|
// browsers (including QtWebkit).
|
|
// - Do a manual nearest-neighbor interpolation. This is what we'll fall
|
|
// back to when enlarging, and imageSmoothingEnabled isn't supported.
|
|
// In theory it's slower, but still pretty fast on my machine, and the
|
|
// results look the same AFAICT.
|
|
// Is imageSmoothingEnabled supported? If so, we can let canvas do
|
|
// nearest-neighbor interpolation for us.
|
|
|
|
var smoothingProperty = getCanvasSmoothingProperty(ctx);
|
|
|
|
if (smoothingProperty || imgRes.x >= 256 && imgRes.y >= 256) {
|
|
// Use built-in scaling
|
|
// Turn off anti-aliasing if necessary
|
|
if (smoothingProperty) {
|
|
ctx[smoothingProperty] = imgRes.x >= 256 && imgRes.y >= 256;
|
|
} // Don't necessarily draw with the full-size image; if we're
|
|
// downscaling, use the mipmapper to get a pre-downscaled image
|
|
// (see comments on Mipmapper class for why this matters).
|
|
|
|
|
|
mipmapper.getBySize(extent.x * 256, extent.y * 256, function (mip) {
|
|
// It's possible that the image will go off the edge of the canvas--
|
|
// that's OK, the canvas should clip appropriately.
|
|
ctx.drawImage(mip, // Convert abs tile coords to rel tile coords, then *256 to convert
|
|
// to rel pixel coords
|
|
(topLeft.x - tilePoint.x) * 256, (topLeft.y - tilePoint.y) * 256, // Always draw the whole thing and let canvas clip; so we can just
|
|
// convert from size in tile coords straight to pixels
|
|
extent.x * 256, extent.y * 256);
|
|
});
|
|
} else {
|
|
// Use manual nearest-neighbor interpolation
|
|
// Calculate the source image pixel coordinates that correspond with
|
|
// the top-left and bottom-right of this tile. (If the source image
|
|
// only partially overlaps the tile, we use max/min to limit the
|
|
// sourceStart/End to only reflect the overlapping portion.)
|
|
var sourceStart = {
|
|
x: Math.max(0, Math.floor((tilePoint.x - topLeft.x) * imgRes.x)),
|
|
y: Math.max(0, Math.floor((tilePoint.y - topLeft.y) * imgRes.y))
|
|
};
|
|
var sourceEnd = {
|
|
x: Math.min(w, Math.ceil((tilePoint.x + 1 - topLeft.x) * imgRes.x)),
|
|
y: Math.min(h, Math.ceil((tilePoint.y + 1 - topLeft.y) * imgRes.y))
|
|
}; // The size, in dest pixels, that each source pixel should occupy.
|
|
// This might be greater or less than 1 (e.g. if x and y resolution
|
|
// are very different).
|
|
|
|
var pixelSize = {
|
|
x: 256 / imgRes.x,
|
|
y: 256 / imgRes.y
|
|
}; // For each pixel in the source image that overlaps the tile...
|
|
|
|
for (var row = sourceStart.y; row < sourceEnd.y; row++) {
|
|
for (var col = sourceStart.x; col < sourceEnd.x; col++) {
|
|
// ...extract the pixel data...
|
|
var i = (row * w + col) * 4;
|
|
var r = imgData[i];
|
|
var g = imgData[i + 1];
|
|
var b = imgData[i + 2];
|
|
var a = imgData[i + 3];
|
|
ctx.fillStyle = "rgba(" + [r, g, b, a / 255].join(",") + ")"; // ...calculate the corresponding pixel coord in the dest image
|
|
// where it should be drawn...
|
|
|
|
var pixelPos = {
|
|
x: (col / imgRes.x + topLeft.x - tilePoint.x) * 256,
|
|
y: (row / imgRes.y + topLeft.y - tilePoint.y) * 256
|
|
}; // ...and draw a rectangle there.
|
|
|
|
ctx.fillRect(Math.round(pixelPos.x), Math.round(pixelPos.y), // Looks crazy, but this is necessary to prevent rounding from
|
|
// causing overlap between this rect and its neighbors. The
|
|
// minuend is the location of the next pixel, while the
|
|
// subtrahend is the position of the current pixel (to turn an
|
|
// absolute coordinate to a width/height). Yes, I had to look
|
|
// up minuend and subtrahend.
|
|
Math.round(pixelPos.x + pixelSize.x) - Math.round(pixelPos.x), Math.round(pixelPos.y + pixelSize.y) - Math.round(pixelPos.y));
|
|
}
|
|
}
|
|
}
|
|
} catch (e) {
|
|
error = e;
|
|
} finally {
|
|
done(error, canvas);
|
|
}
|
|
});
|
|
return canvas;
|
|
};
|
|
|
|
this.layerManager.addLayer(canvasTiles, "image", layerId, group);
|
|
};
|
|
|
|
methods.removeImage = function (layerId) {
|
|
this.layerManager.removeLayer("image", layerId);
|
|
};
|
|
|
|
methods.clearImages = function () {
|
|
this.layerManager.clearLayers("image");
|
|
};
|
|
|
|
methods.addMeasure = function (options) {
|
|
// if a measureControl already exists, then remove it and
|
|
// replace with a new one
|
|
methods.removeMeasure.call(this);
|
|
this.measureControl = _leaflet2["default"].control.measure(options);
|
|
this.addControl(this.measureControl);
|
|
};
|
|
|
|
methods.removeMeasure = function () {
|
|
if (this.measureControl) {
|
|
this.removeControl(this.measureControl);
|
|
this.measureControl = null;
|
|
}
|
|
};
|
|
|
|
methods.addSelect = function (ctGroup) {
|
|
var _this8 = this;
|
|
|
|
methods.removeSelect.call(this);
|
|
this._selectButton = _leaflet2["default"].easyButton({
|
|
states: [{
|
|
stateName: "select-inactive",
|
|
icon: "ion-qr-scanner",
|
|
title: "Make a selection",
|
|
onClick: function onClick(btn, map) {
|
|
btn.state("select-active");
|
|
_this8._locationFilter = new _leaflet2["default"].LocationFilter2();
|
|
|
|
if (ctGroup) {
|
|
var selectionHandle = new global.crosstalk.SelectionHandle(ctGroup);
|
|
selectionHandle.on("change", function (e) {
|
|
if (e.sender !== selectionHandle) {
|
|
if (_this8._locationFilter) {
|
|
_this8._locationFilter.disable();
|
|
|
|
btn.state("select-inactive");
|
|
}
|
|
}
|
|
});
|
|
|
|
var handler = function handler(e) {
|
|
_this8.layerManager.brush(_this8._locationFilter.getBounds(), {
|
|
sender: selectionHandle
|
|
});
|
|
};
|
|
|
|
_this8._locationFilter.on("enabled", handler);
|
|
|
|
_this8._locationFilter.on("change", handler);
|
|
|
|
_this8._locationFilter.on("disabled", function () {
|
|
selectionHandle.close();
|
|
_this8._locationFilter = null;
|
|
});
|
|
}
|
|
|
|
_this8._locationFilter.addTo(map);
|
|
}
|
|
}, {
|
|
stateName: "select-active",
|
|
icon: "ion-close-round",
|
|
title: "Dismiss selection",
|
|
onClick: function onClick(btn, map) {
|
|
btn.state("select-inactive");
|
|
|
|
_this8._locationFilter.disable(); // If explicitly dismissed, clear the crosstalk selections
|
|
|
|
|
|
_this8.layerManager.unbrush();
|
|
}
|
|
}]
|
|
});
|
|
|
|
this._selectButton.addTo(this);
|
|
};
|
|
|
|
methods.removeSelect = function () {
|
|
if (this._locationFilter) {
|
|
this._locationFilter.disable();
|
|
}
|
|
|
|
if (this._selectButton) {
|
|
this.removeControl(this._selectButton);
|
|
this._selectButton = null;
|
|
}
|
|
};
|
|
|
|
methods.createMapPane = function (name, zIndex) {
|
|
this.createPane(name);
|
|
this.getPane(name).style.zIndex = zIndex;
|
|
};
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{"./cluster-layer-store":1,"./crs_utils":3,"./dataframe":4,"./global/htmlwidgets":8,"./global/jquery":9,"./global/leaflet":10,"./global/shiny":12,"./mipmapper":16,"./util":17}],16:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
// This class simulates a mipmap, which shrinks images by powers of two. This
|
|
// stepwise reduction results in "pixel-perfect downscaling" (where every
|
|
// pixel of the original image has some contribution to the downscaled image)
|
|
// as opposed to a single-step downscaling which will discard a lot of data
|
|
// (and with sparse images at small scales can give very surprising results).
|
|
var Mipmapper = /*#__PURE__*/function () {
|
|
function Mipmapper(img) {
|
|
_classCallCheck(this, Mipmapper);
|
|
|
|
this._layers = [img];
|
|
} // The various functions on this class take a callback function BUT MAY OR MAY
|
|
// NOT actually behave asynchronously.
|
|
|
|
|
|
_createClass(Mipmapper, [{
|
|
key: "getBySize",
|
|
value: function getBySize(desiredWidth, desiredHeight, callback) {
|
|
var _this = this;
|
|
|
|
var i = 0;
|
|
var lastImg = this._layers[0];
|
|
|
|
var testNext = function testNext() {
|
|
_this.getByIndex(i, function (img) {
|
|
// If current image is invalid (i.e. too small to be rendered) or
|
|
// it's smaller than what we wanted, return the last known good image.
|
|
if (!img || img.width < desiredWidth || img.height < desiredHeight) {
|
|
callback(lastImg);
|
|
return;
|
|
} else {
|
|
lastImg = img;
|
|
i++;
|
|
testNext();
|
|
return;
|
|
}
|
|
});
|
|
};
|
|
|
|
testNext();
|
|
}
|
|
}, {
|
|
key: "getByIndex",
|
|
value: function getByIndex(i, callback) {
|
|
var _this2 = this;
|
|
|
|
if (this._layers[i]) {
|
|
callback(this._layers[i]);
|
|
return;
|
|
}
|
|
|
|
this.getByIndex(i - 1, function (prevImg) {
|
|
if (!prevImg) {
|
|
// prevImg could not be calculated (too small, possibly)
|
|
callback(null);
|
|
return;
|
|
}
|
|
|
|
if (prevImg.width < 2 || prevImg.height < 2) {
|
|
// Can't reduce this image any further
|
|
callback(null);
|
|
return;
|
|
} // If reduce ever becomes truly asynchronous, we should stuff a promise or
|
|
// something into this._layers[i] before calling this.reduce(), to prevent
|
|
// redundant reduce operations from happening.
|
|
|
|
|
|
_this2.reduce(prevImg, function (reducedImg) {
|
|
_this2._layers[i] = reducedImg;
|
|
callback(reducedImg);
|
|
return;
|
|
});
|
|
});
|
|
}
|
|
}, {
|
|
key: "reduce",
|
|
value: function reduce(img, callback) {
|
|
var imgDataCanvas = document.createElement("canvas");
|
|
imgDataCanvas.width = Math.ceil(img.width / 2);
|
|
imgDataCanvas.height = Math.ceil(img.height / 2);
|
|
imgDataCanvas.style.display = "none";
|
|
document.body.appendChild(imgDataCanvas);
|
|
|
|
try {
|
|
var imgDataCtx = imgDataCanvas.getContext("2d");
|
|
imgDataCtx.drawImage(img, 0, 0, img.width / 2, img.height / 2);
|
|
callback(imgDataCanvas);
|
|
} finally {
|
|
document.body.removeChild(imgDataCanvas);
|
|
}
|
|
}
|
|
}]);
|
|
|
|
return Mipmapper;
|
|
}();
|
|
|
|
exports["default"] = Mipmapper;
|
|
|
|
|
|
},{}],17:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.log = log;
|
|
exports.recycle = recycle;
|
|
exports.asArray = asArray;
|
|
|
|
function log(message) {
|
|
/* eslint-disable no-console */
|
|
if (console && console.log) console.log(message);
|
|
/* eslint-enable no-console */
|
|
}
|
|
|
|
function recycle(values, length, inPlace) {
|
|
if (length === 0 && !inPlace) return [];
|
|
|
|
if (!(values instanceof Array)) {
|
|
if (inPlace) {
|
|
throw new Error("Can't do in-place recycling of a non-Array value");
|
|
}
|
|
|
|
values = [values];
|
|
}
|
|
|
|
if (typeof length === "undefined") length = values.length;
|
|
var dest = inPlace ? values : [];
|
|
var origLength = values.length;
|
|
|
|
while (dest.length < length) {
|
|
dest.push(values[dest.length % origLength]);
|
|
}
|
|
|
|
if (dest.length > length) {
|
|
dest.splice(length, dest.length - length);
|
|
}
|
|
|
|
return dest;
|
|
}
|
|
|
|
function asArray(value) {
|
|
if (value instanceof Array) return value;else return [value];
|
|
}
|
|
|
|
|
|
},{}]},{},[13]);
|
|
</script>
|
|
<script>(function (root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD. Register as an anonymous module.
|
|
define(['leaflet'], factory);
|
|
} else if (typeof modules === 'object' && module.exports) {
|
|
// define a Common JS module that relies on 'leaflet'
|
|
module.exports = factory(require('leaflet'));
|
|
} else {
|
|
// Assume Leaflet is loaded into global object L already
|
|
factory(L);
|
|
}
|
|
}(this, function (L) {
|
|
'use strict';
|
|
|
|
L.TileLayer.Provider = L.TileLayer.extend({
|
|
initialize: function (arg, options) {
|
|
var providers = L.TileLayer.Provider.providers;
|
|
|
|
var parts = arg.split('.');
|
|
|
|
var providerName = parts[0];
|
|
var variantName = parts[1];
|
|
|
|
if (!providers[providerName]) {
|
|
throw 'No such provider (' + providerName + ')';
|
|
}
|
|
|
|
var provider = {
|
|
url: providers[providerName].url,
|
|
options: providers[providerName].options
|
|
};
|
|
|
|
// overwrite values in provider from variant.
|
|
if (variantName && 'variants' in providers[providerName]) {
|
|
if (!(variantName in providers[providerName].variants)) {
|
|
throw 'No such variant of ' + providerName + ' (' + variantName + ')';
|
|
}
|
|
var variant = providers[providerName].variants[variantName];
|
|
var variantOptions;
|
|
if (typeof variant === 'string') {
|
|
variantOptions = {
|
|
variant: variant
|
|
};
|
|
} else {
|
|
variantOptions = variant.options;
|
|
}
|
|
provider = {
|
|
url: variant.url || provider.url,
|
|
options: L.Util.extend({}, provider.options, variantOptions)
|
|
};
|
|
}
|
|
|
|
// replace attribution placeholders with their values from toplevel provider attribution,
|
|
// recursively
|
|
var attributionReplacer = function (attr) {
|
|
if (attr.indexOf('{attribution.') === -1) {
|
|
return attr;
|
|
}
|
|
return attr.replace(/\{attribution.(\w*)\}/g,
|
|
function (match, attributionName) {
|
|
return attributionReplacer(providers[attributionName].options.attribution);
|
|
}
|
|
);
|
|
};
|
|
provider.options.attribution = attributionReplacer(provider.options.attribution);
|
|
|
|
// Compute final options combining provider options with any user overrides
|
|
var layerOpts = L.Util.extend({}, provider.options, options);
|
|
L.TileLayer.prototype.initialize.call(this, provider.url, layerOpts);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Definition of providers.
|
|
* see http://leafletjs.com/reference.html#tilelayer for options in the options map.
|
|
*/
|
|
|
|
L.TileLayer.Provider.providers = {
|
|
OpenStreetMap: {
|
|
url: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution:
|
|
'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
},
|
|
variants: {
|
|
Mapnik: {},
|
|
DE: {
|
|
url: 'https://tile.openstreetmap.de/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
CH: {
|
|
url: 'https://tile.osm.ch/switzerland/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18,
|
|
bounds: [[45, 5], [48, 11]]
|
|
}
|
|
},
|
|
France: {
|
|
url: 'https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 20,
|
|
attribution: '© OpenStreetMap France | {attribution.OpenStreetMap}'
|
|
}
|
|
},
|
|
HOT: {
|
|
url: 'https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution:
|
|
'{attribution.OpenStreetMap}, ' +
|
|
'Tiles style by <a href="https://www.hotosm.org/" target="_blank">Humanitarian OpenStreetMap Team</a> ' +
|
|
'hosted by <a href="https://openstreetmap.fr/" target="_blank">OpenStreetMap France</a>'
|
|
}
|
|
},
|
|
BZH: {
|
|
url: 'https://tile.openstreetmap.bzh/br/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution: '{attribution.OpenStreetMap}, Tiles courtesy of <a href="http://www.openstreetmap.bzh/" target="_blank">Breton OpenStreetMap Team</a>',
|
|
bounds: [[46.2, -5.5], [50, 0.7]]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
MapTilesAPI: {
|
|
url: 'https://maptiles.p.rapidapi.com/{variant}/{z}/{x}/{y}.png?rapidapi-key={apikey}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="http://www.maptilesapi.com/">MapTiles API</a>, {attribution.OpenStreetMap}',
|
|
variant: 'en/map/v1',
|
|
// Get your own MapTiles API access token here : https://www.maptilesapi.com/
|
|
// NB : this is a demonstration key that comes with no guarantee and not to be used in production
|
|
apikey: '<insert your api key here>',
|
|
maxZoom: 19
|
|
},
|
|
variants: {
|
|
OSMEnglish: {
|
|
options: {
|
|
variant: 'en/map/v1'
|
|
}
|
|
},
|
|
OSMFrancais: {
|
|
options: {
|
|
variant: 'fr/map/v1'
|
|
}
|
|
},
|
|
OSMEspagnol: {
|
|
options: {
|
|
variant: 'es/map/v1'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
OpenSeaMap: {
|
|
url: 'https://tiles.openseamap.org/seamark/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution: 'Map data: © <a href="http://www.openseamap.org">OpenSeaMap</a> contributors'
|
|
}
|
|
},
|
|
OPNVKarte: {
|
|
url: 'https://tileserver.memomaps.de/tilegen/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18,
|
|
attribution: 'Map <a href="https://memomaps.de/">memomaps.de</a> <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, map data {attribution.OpenStreetMap}'
|
|
}
|
|
},
|
|
OpenTopoMap: {
|
|
url: 'https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 17,
|
|
attribution: 'Map data: {attribution.OpenStreetMap}, <a href="http://viewfinderpanoramas.org">SRTM</a> | Map style: © <a href="https://opentopomap.org">OpenTopoMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
OpenRailwayMap: {
|
|
url: 'https://{s}.tiles.openrailwaymap.org/standard/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="https://www.OpenRailwayMap.org">OpenRailwayMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
OpenFireMap: {
|
|
url: 'http://openfiremap.org/hytiles/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="http://www.openfiremap.org">OpenFireMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
SafeCast: {
|
|
url: 'https://s3.amazonaws.com/te512.safecast.org/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 16,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="https://blog.safecast.org/about/">SafeCast</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
Stadia: {
|
|
url: 'https://tiles.stadiamaps.com/tiles/{variant}/{z}/{x}/{y}{r}.{ext}',
|
|
options: {
|
|
minZoom: 0,
|
|
maxZoom: 20,
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'alidade_smooth',
|
|
ext: 'png'
|
|
},
|
|
variants: {
|
|
AlidadeSmooth: 'alidade_smooth',
|
|
AlidadeSmoothDark: 'alidade_smooth_dark',
|
|
OSMBright: 'osm_bright',
|
|
Outdoors: 'outdoors',
|
|
StamenToner: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner'
|
|
}
|
|
},
|
|
StamenTonerBackground: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_background'
|
|
}
|
|
},
|
|
StamenTonerLines: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_lines'
|
|
}
|
|
},
|
|
StamenTonerLabels: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_labels'
|
|
}
|
|
},
|
|
StamenTonerLite: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_lite'
|
|
}
|
|
},
|
|
StamenWatercolor: {
|
|
url: 'https://tiles.stadiamaps.com/tiles/{variant}/{z}/{x}/{y}.{ext}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_watercolor',
|
|
ext: 'jpg',
|
|
minZoom: 1,
|
|
maxZoom: 16
|
|
}
|
|
},
|
|
StamenTerrain: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
StamenTerrainBackground: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain_background',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
StamenTerrainLabels: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain_labels',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
StamenTerrainLines: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain_lines',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
}
|
|
}
|
|
},
|
|
Thunderforest: {
|
|
url: 'https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="http://www.thunderforest.com/">Thunderforest</a>, {attribution.OpenStreetMap}',
|
|
variant: 'cycle',
|
|
apikey: '<insert your api key here>',
|
|
maxZoom: 22
|
|
},
|
|
variants: {
|
|
OpenCycleMap: 'cycle',
|
|
Transport: {
|
|
options: {
|
|
variant: 'transport'
|
|
}
|
|
},
|
|
TransportDark: {
|
|
options: {
|
|
variant: 'transport-dark'
|
|
}
|
|
},
|
|
SpinalMap: {
|
|
options: {
|
|
variant: 'spinal-map'
|
|
}
|
|
},
|
|
Landscape: 'landscape',
|
|
Outdoors: 'outdoors',
|
|
Pioneer: 'pioneer',
|
|
MobileAtlas: 'mobile-atlas',
|
|
Neighbourhood: 'neighbourhood'
|
|
}
|
|
},
|
|
CyclOSM: {
|
|
url: 'https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 20,
|
|
attribution: '<a href="https://github.com/cyclosm/cyclosm-cartocss-style/releases" title="CyclOSM - Open Bicycle render">CyclOSM</a> | Map data: {attribution.OpenStreetMap}'
|
|
}
|
|
},
|
|
Jawg: {
|
|
url: 'https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}',
|
|
options: {
|
|
attribution:
|
|
'<a href="http://jawg.io" title="Tiles Courtesy of Jawg Maps" target="_blank">© <b>Jawg</b>Maps</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
minZoom: 0,
|
|
maxZoom: 22,
|
|
subdomains: 'abcd',
|
|
variant: 'jawg-terrain',
|
|
// Get your own Jawg access token here : https://www.jawg.io/lab/
|
|
// NB : this is a demonstration key that comes with no guarantee
|
|
accessToken: '<insert your access token here>',
|
|
},
|
|
variants: {
|
|
Streets: 'jawg-streets',
|
|
Terrain: 'jawg-terrain',
|
|
Sunny: 'jawg-sunny',
|
|
Dark: 'jawg-dark',
|
|
Light: 'jawg-light',
|
|
Matrix: 'jawg-matrix'
|
|
}
|
|
},
|
|
MapBox: {
|
|
url: 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}{r}?access_token={accessToken}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.mapbox.com/about/maps/" target="_blank">Mapbox</a> ' +
|
|
'{attribution.OpenStreetMap} ' +
|
|
'<a href="https://www.mapbox.com/map-feedback/" target="_blank">Improve this map</a>',
|
|
tileSize: 512,
|
|
maxZoom: 18,
|
|
zoomOffset: -1,
|
|
id: 'mapbox/streets-v11',
|
|
accessToken: '<insert your access token here>',
|
|
}
|
|
},
|
|
MapTiler: {
|
|
url: 'https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}',
|
|
options: {
|
|
attribution:
|
|
'<a href="https://www.maptiler.com/copyright/" target="_blank">© MapTiler</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">© OpenStreetMap contributors</a>',
|
|
variant: 'streets',
|
|
ext: 'png',
|
|
key: '<insert your MapTiler Cloud API key here>',
|
|
tileSize: 512,
|
|
zoomOffset: -1,
|
|
minZoom: 0,
|
|
maxZoom: 21
|
|
},
|
|
variants: {
|
|
Streets: 'streets',
|
|
Basic: 'basic',
|
|
Bright: 'bright',
|
|
Pastel: 'pastel',
|
|
Positron: 'positron',
|
|
Hybrid: {
|
|
options: {
|
|
variant: 'hybrid',
|
|
ext: 'jpg'
|
|
}
|
|
},
|
|
Toner: 'toner',
|
|
Topo: 'topo',
|
|
Voyager: 'voyager'
|
|
}
|
|
},
|
|
TomTom: {
|
|
url: 'https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}',
|
|
options: {
|
|
variant: 'basic',
|
|
maxZoom: 22,
|
|
attribution:
|
|
'<a href="https://tomtom.com" target="_blank">© 1992 - ' + new Date().getFullYear() + ' TomTom.</a> ',
|
|
subdomains: 'abcd',
|
|
style: 'main',
|
|
ext: 'png',
|
|
apikey: '<insert your API key here>',
|
|
},
|
|
variants: {
|
|
Basic: 'basic',
|
|
Hybrid: 'hybrid',
|
|
Labels: 'labels'
|
|
}
|
|
},
|
|
Esri: {
|
|
url: 'https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}',
|
|
options: {
|
|
variant: 'World_Street_Map',
|
|
attribution: 'Tiles © Esri'
|
|
},
|
|
variants: {
|
|
WorldStreetMap: {
|
|
options: {
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012'
|
|
}
|
|
},
|
|
DeLorme: {
|
|
options: {
|
|
variant: 'Specialty/DeLorme_World_Base_Map',
|
|
minZoom: 1,
|
|
maxZoom: 11,
|
|
attribution: '{attribution.Esri} — Copyright: ©2012 DeLorme'
|
|
}
|
|
},
|
|
WorldTopoMap: {
|
|
options: {
|
|
variant: 'World_Topo_Map',
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community'
|
|
}
|
|
},
|
|
WorldImagery: {
|
|
options: {
|
|
variant: 'World_Imagery',
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community'
|
|
}
|
|
},
|
|
WorldTerrain: {
|
|
options: {
|
|
variant: 'World_Terrain_Base',
|
|
maxZoom: 13,
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Source: USGS, Esri, TANA, DeLorme, and NPS'
|
|
}
|
|
},
|
|
WorldShadedRelief: {
|
|
options: {
|
|
variant: 'World_Shaded_Relief',
|
|
maxZoom: 13,
|
|
attribution: '{attribution.Esri} — Source: Esri'
|
|
}
|
|
},
|
|
WorldPhysical: {
|
|
options: {
|
|
variant: 'World_Physical_Map',
|
|
maxZoom: 8,
|
|
attribution: '{attribution.Esri} — Source: US National Park Service'
|
|
}
|
|
},
|
|
OceanBasemap: {
|
|
options: {
|
|
variant: 'Ocean/World_Ocean_Base',
|
|
maxZoom: 13,
|
|
attribution: '{attribution.Esri} — Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri'
|
|
}
|
|
},
|
|
NatGeoWorldMap: {
|
|
options: {
|
|
variant: 'NatGeo_World_Map',
|
|
maxZoom: 16,
|
|
attribution: '{attribution.Esri} — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC'
|
|
}
|
|
},
|
|
WorldGrayCanvas: {
|
|
options: {
|
|
variant: 'Canvas/World_Light_Gray_Base',
|
|
maxZoom: 16,
|
|
attribution: '{attribution.Esri} — Esri, DeLorme, NAVTEQ'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
OpenWeatherMap: {
|
|
url: 'http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>',
|
|
apiKey: '<insert your api key here>',
|
|
opacity: 0.5
|
|
},
|
|
variants: {
|
|
Clouds: 'clouds',
|
|
CloudsClassic: 'clouds_cls',
|
|
Precipitation: 'precipitation',
|
|
PrecipitationClassic: 'precipitation_cls',
|
|
Rain: 'rain',
|
|
RainClassic: 'rain_cls',
|
|
Pressure: 'pressure',
|
|
PressureContour: 'pressure_cntr',
|
|
Wind: 'wind',
|
|
Temperature: 'temp',
|
|
Snow: 'snow'
|
|
}
|
|
},
|
|
HERE: {
|
|
/*
|
|
* HERE maps, formerly Nokia maps.
|
|
* These basemaps are free, but you need an api id and app key. Please sign up at
|
|
* https://developer.here.com/plans
|
|
*/
|
|
url:
|
|
'https://{s}.{base}.maps.api.here.com/maptile/2.1/' +
|
|
'{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?' +
|
|
'app_id={app_id}&app_code={app_code}&lg={language}',
|
|
options: {
|
|
attribution:
|
|
'Map © 1987-' + new Date().getFullYear() + ' <a href="http://developer.here.com">HERE</a>',
|
|
subdomains: '1234',
|
|
mapID: 'newest',
|
|
'app_id': '<insert your app_id here>',
|
|
'app_code': '<insert your app_code here>',
|
|
base: 'base',
|
|
variant: 'normal.day',
|
|
maxZoom: 20,
|
|
type: 'maptile',
|
|
language: 'eng',
|
|
format: 'png8',
|
|
size: '256'
|
|
},
|
|
variants: {
|
|
normalDay: 'normal.day',
|
|
normalDayCustom: 'normal.day.custom',
|
|
normalDayGrey: 'normal.day.grey',
|
|
normalDayMobile: 'normal.day.mobile',
|
|
normalDayGreyMobile: 'normal.day.grey.mobile',
|
|
normalDayTransit: 'normal.day.transit',
|
|
normalDayTransitMobile: 'normal.day.transit.mobile',
|
|
normalDayTraffic: {
|
|
options: {
|
|
variant: 'normal.traffic.day',
|
|
base: 'traffic',
|
|
type: 'traffictile'
|
|
}
|
|
},
|
|
normalNight: 'normal.night',
|
|
normalNightMobile: 'normal.night.mobile',
|
|
normalNightGrey: 'normal.night.grey',
|
|
normalNightGreyMobile: 'normal.night.grey.mobile',
|
|
normalNightTransit: 'normal.night.transit',
|
|
normalNightTransitMobile: 'normal.night.transit.mobile',
|
|
reducedDay: 'reduced.day',
|
|
reducedNight: 'reduced.night',
|
|
basicMap: {
|
|
options: {
|
|
type: 'basetile'
|
|
}
|
|
},
|
|
mapLabels: {
|
|
options: {
|
|
type: 'labeltile',
|
|
format: 'png'
|
|
}
|
|
},
|
|
trafficFlow: {
|
|
options: {
|
|
base: 'traffic',
|
|
type: 'flowtile'
|
|
}
|
|
},
|
|
carnavDayGrey: 'carnav.day.grey',
|
|
hybridDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day'
|
|
}
|
|
},
|
|
hybridDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.mobile'
|
|
}
|
|
},
|
|
hybridDayTransit: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.transit'
|
|
}
|
|
},
|
|
hybridDayGrey: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.grey.day'
|
|
}
|
|
},
|
|
hybridDayTraffic: {
|
|
options: {
|
|
variant: 'hybrid.traffic.day',
|
|
base: 'traffic',
|
|
type: 'traffictile'
|
|
}
|
|
},
|
|
pedestrianDay: 'pedestrian.day',
|
|
pedestrianNight: 'pedestrian.night',
|
|
satelliteDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'satellite.day'
|
|
}
|
|
},
|
|
terrainDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day'
|
|
}
|
|
},
|
|
terrainDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day.mobile'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
HEREv3: {
|
|
/*
|
|
* HERE maps API Version 3.
|
|
* These basemaps are free, but you need an API key. Please sign up at
|
|
* https://developer.here.com/plans
|
|
* Version 3 deprecates the app_id and app_code access in favor of apiKey
|
|
*
|
|
* Supported access methods as of 2019/12/21:
|
|
* @see https://developer.here.com/faqs#access-control-1--how-do-you-control-access-to-here-location-services
|
|
*/
|
|
url:
|
|
'https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/' +
|
|
'{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?' +
|
|
'apiKey={apiKey}&lg={language}',
|
|
options: {
|
|
attribution:
|
|
'Map © 1987-' + new Date().getFullYear() + ' <a href="http://developer.here.com">HERE</a>',
|
|
subdomains: '1234',
|
|
mapID: 'newest',
|
|
apiKey: '<insert your apiKey here>',
|
|
base: 'base',
|
|
variant: 'normal.day',
|
|
maxZoom: 20,
|
|
type: 'maptile',
|
|
language: 'eng',
|
|
format: 'png8',
|
|
size: '256'
|
|
},
|
|
variants: {
|
|
normalDay: 'normal.day',
|
|
normalDayCustom: 'normal.day.custom',
|
|
normalDayGrey: 'normal.day.grey',
|
|
normalDayMobile: 'normal.day.mobile',
|
|
normalDayGreyMobile: 'normal.day.grey.mobile',
|
|
normalDayTransit: 'normal.day.transit',
|
|
normalDayTransitMobile: 'normal.day.transit.mobile',
|
|
normalNight: 'normal.night',
|
|
normalNightMobile: 'normal.night.mobile',
|
|
normalNightGrey: 'normal.night.grey',
|
|
normalNightGreyMobile: 'normal.night.grey.mobile',
|
|
normalNightTransit: 'normal.night.transit',
|
|
normalNightTransitMobile: 'normal.night.transit.mobile',
|
|
reducedDay: 'reduced.day',
|
|
reducedNight: 'reduced.night',
|
|
basicMap: {
|
|
options: {
|
|
type: 'basetile'
|
|
}
|
|
},
|
|
mapLabels: {
|
|
options: {
|
|
type: 'labeltile',
|
|
format: 'png'
|
|
}
|
|
},
|
|
trafficFlow: {
|
|
options: {
|
|
base: 'traffic',
|
|
type: 'flowtile'
|
|
}
|
|
},
|
|
carnavDayGrey: 'carnav.day.grey',
|
|
hybridDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day'
|
|
}
|
|
},
|
|
hybridDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.mobile'
|
|
}
|
|
},
|
|
hybridDayTransit: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.transit'
|
|
}
|
|
},
|
|
hybridDayGrey: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.grey.day'
|
|
}
|
|
},
|
|
pedestrianDay: 'pedestrian.day',
|
|
pedestrianNight: 'pedestrian.night',
|
|
satelliteDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'satellite.day'
|
|
}
|
|
},
|
|
terrainDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day'
|
|
}
|
|
},
|
|
terrainDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day.mobile'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
FreeMapSK: {
|
|
url: 'https://{s}.freemap.sk/T/{z}/{x}/{y}.jpeg',
|
|
options: {
|
|
minZoom: 8,
|
|
maxZoom: 16,
|
|
subdomains: 'abcd',
|
|
bounds: [[47.204642, 15.996093], [49.830896, 22.576904]],
|
|
attribution:
|
|
'{attribution.OpenStreetMap}, visualization CC-By-SA 2.0 <a href="http://freemap.sk">Freemap.sk</a>'
|
|
}
|
|
},
|
|
MtbMap: {
|
|
url: 'http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution:
|
|
'{attribution.OpenStreetMap} & USGS'
|
|
}
|
|
},
|
|
CartoDB: {
|
|
url: 'https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png',
|
|
options: {
|
|
attribution: '{attribution.OpenStreetMap} © <a href="https://carto.com/attributions">CARTO</a>',
|
|
subdomains: 'abcd',
|
|
maxZoom: 20,
|
|
variant: 'light_all'
|
|
},
|
|
variants: {
|
|
Positron: 'light_all',
|
|
PositronNoLabels: 'light_nolabels',
|
|
PositronOnlyLabels: 'light_only_labels',
|
|
DarkMatter: 'dark_all',
|
|
DarkMatterNoLabels: 'dark_nolabels',
|
|
DarkMatterOnlyLabels: 'dark_only_labels',
|
|
Voyager: 'rastertiles/voyager',
|
|
VoyagerNoLabels: 'rastertiles/voyager_nolabels',
|
|
VoyagerOnlyLabels: 'rastertiles/voyager_only_labels',
|
|
VoyagerLabelsUnder: 'rastertiles/voyager_labels_under'
|
|
}
|
|
},
|
|
HikeBike: {
|
|
url: 'https://tiles.wmflabs.org/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: '{attribution.OpenStreetMap}',
|
|
variant: 'hikebike'
|
|
},
|
|
variants: {
|
|
HikeBike: {},
|
|
HillShading: {
|
|
options: {
|
|
maxZoom: 15,
|
|
variant: 'hillshading'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
BasemapAT: {
|
|
url: 'https://mapsneu.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Datenquelle: <a href="https://www.basemap.at">basemap.at</a>',
|
|
type: 'normal',
|
|
format: 'png',
|
|
bounds: [[46.358770, 8.782379], [49.037872, 17.189532]],
|
|
variant: 'geolandbasemap'
|
|
},
|
|
variants: {
|
|
basemap: {
|
|
options: {
|
|
maxZoom: 20, // currently only in Vienna
|
|
variant: 'geolandbasemap'
|
|
}
|
|
},
|
|
grau: 'bmapgrau',
|
|
overlay: 'bmapoverlay',
|
|
terrain: {
|
|
options: {
|
|
variant: 'bmapgelaende',
|
|
type: 'grau',
|
|
format: 'jpeg'
|
|
}
|
|
},
|
|
surface: {
|
|
options: {
|
|
variant: 'bmapoberflaeche',
|
|
type: 'grau',
|
|
format: 'jpeg'
|
|
}
|
|
},
|
|
highdpi: {
|
|
options: {
|
|
variant: 'bmaphidpi',
|
|
format: 'jpeg'
|
|
}
|
|
},
|
|
orthofoto: {
|
|
options: {
|
|
maxZoom: 20, // currently only in Vienna
|
|
variant: 'bmaporthofoto30cm',
|
|
format: 'jpeg'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
nlmaps: {
|
|
url: 'https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/{variant}/EPSG:3857/{z}/{x}/{y}.png',
|
|
options: {
|
|
minZoom: 6,
|
|
maxZoom: 19,
|
|
bounds: [[50.5, 3.25], [54, 7.6]],
|
|
attribution: 'Kaartgegevens © <a href="https://www.kadaster.nl">Kadaster</a>'
|
|
},
|
|
variants: {
|
|
'standaard': 'standaard',
|
|
'pastel': 'pastel',
|
|
'grijs': 'grijs',
|
|
'water': 'water',
|
|
'luchtfoto': {
|
|
'url': 'https://service.pdok.nl/hwh/luchtfotorgb/wmts/v1_0/Actueel_ortho25/EPSG:3857/{z}/{x}/{y}.jpeg',
|
|
}
|
|
}
|
|
},
|
|
NASAGIBS: {
|
|
url: 'https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{maxZoom}/{z}/{y}/{x}.{format}',
|
|
options: {
|
|
attribution:
|
|
'Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System ' +
|
|
'(<a href="https://earthdata.nasa.gov">ESDIS</a>) with funding provided by NASA/HQ.',
|
|
bounds: [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]],
|
|
minZoom: 1,
|
|
maxZoom: 9,
|
|
format: 'jpg',
|
|
time: '',
|
|
tilematrixset: 'GoogleMapsCompatible_Level'
|
|
},
|
|
variants: {
|
|
ModisTerraTrueColorCR: 'MODIS_Terra_CorrectedReflectance_TrueColor',
|
|
ModisTerraBands367CR: 'MODIS_Terra_CorrectedReflectance_Bands367',
|
|
ViirsEarthAtNight2012: {
|
|
options: {
|
|
variant: 'VIIRS_CityLights_2012',
|
|
maxZoom: 8
|
|
}
|
|
},
|
|
ModisTerraLSTDay: {
|
|
options: {
|
|
variant: 'MODIS_Terra_Land_Surface_Temp_Day',
|
|
format: 'png',
|
|
maxZoom: 7,
|
|
opacity: 0.75
|
|
}
|
|
},
|
|
ModisTerraSnowCover: {
|
|
options: {
|
|
variant: 'MODIS_Terra_NDSI_Snow_Cover',
|
|
format: 'png',
|
|
maxZoom: 8,
|
|
opacity: 0.75
|
|
}
|
|
},
|
|
ModisTerraAOD: {
|
|
options: {
|
|
variant: 'MODIS_Terra_Aerosol',
|
|
format: 'png',
|
|
maxZoom: 6,
|
|
opacity: 0.75
|
|
}
|
|
},
|
|
ModisTerraChlorophyll: {
|
|
options: {
|
|
variant: 'MODIS_Terra_Chlorophyll_A',
|
|
format: 'png',
|
|
maxZoom: 7,
|
|
opacity: 0.75
|
|
}
|
|
}
|
|
}
|
|
},
|
|
NLS: {
|
|
// NLS maps are copyright National library of Scotland.
|
|
// http://maps.nls.uk/projects/api/index.html
|
|
// Please contact NLS for anything other than non-commercial low volume usage
|
|
//
|
|
// Map sources: Ordnance Survey 1:1m to 1:63K, 1920s-1940s
|
|
// z0-9 - 1:1m
|
|
// z10-11 - quarter inch (1:253440)
|
|
// z12-18 - one inch (1:63360)
|
|
url: 'https://nls-{s}.tileserver.com/nls/{z}/{x}/{y}.jpg',
|
|
options: {
|
|
attribution: '<a href="http://geo.nls.uk/maps/">National Library of Scotland Historic Maps</a>',
|
|
bounds: [[49.6, -12], [61.7, 3]],
|
|
minZoom: 1,
|
|
maxZoom: 18,
|
|
subdomains: '0123',
|
|
}
|
|
},
|
|
JusticeMap: {
|
|
// Justice Map (http://www.justicemap.org/)
|
|
// Visualize race and income data for your community, county and country.
|
|
// Includes tools for data journalists, bloggers and community activists.
|
|
url: 'https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution: '<a href="http://www.justicemap.org/terms.php">Justice Map</a>',
|
|
// one of 'county', 'tract', 'block'
|
|
size: 'county',
|
|
// Bounds for USA, including Alaska and Hawaii
|
|
bounds: [[14, -180], [72, -56]]
|
|
},
|
|
variants: {
|
|
income: 'income',
|
|
americanIndian: 'indian',
|
|
asian: 'asian',
|
|
black: 'black',
|
|
hispanic: 'hispanic',
|
|
multi: 'multi',
|
|
nonWhite: 'nonwhite',
|
|
white: 'white',
|
|
plurality: 'plural'
|
|
}
|
|
},
|
|
GeoportailFrance: {
|
|
url: 'https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET=PM&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}',
|
|
options: {
|
|
attribution: '<a target="_blank" href="https://www.geoportail.gouv.fr/">Geoportail France</a>',
|
|
bounds: [[-75, -180], [81, 180]],
|
|
minZoom: 2,
|
|
maxZoom: 18,
|
|
// Get your own geoportail apikey here : http://professionnels.ign.fr/ign/contrats/
|
|
// NB : 'choisirgeoportail' is a demonstration key that comes with no guarantee
|
|
apikey: 'choisirgeoportail',
|
|
format: 'image/png',
|
|
style: 'normal',
|
|
variant: 'GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2'
|
|
},
|
|
variants: {
|
|
plan: 'GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2',
|
|
parcels: {
|
|
options: {
|
|
variant: 'CADASTRALPARCELS.PARCELLAIRE_EXPRESS',
|
|
style: 'PCI vecteur',
|
|
maxZoom: 20
|
|
}
|
|
},
|
|
orthos: {
|
|
options: {
|
|
maxZoom: 19,
|
|
format: 'image/jpeg',
|
|
variant: 'ORTHOIMAGERY.ORTHOPHOTOS'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
OneMapSG: {
|
|
url: 'https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
variant: 'Default',
|
|
minZoom: 11,
|
|
maxZoom: 18,
|
|
bounds: [[1.56073, 104.11475], [1.16, 103.502]],
|
|
attribution: '<img src="https://docs.onemap.sg/maps/images/oneMap64-01.png" style="height:20px;width:20px;"/> New OneMap | Map data © contributors, <a href="http://SLA.gov.sg">Singapore Land Authority</a>'
|
|
},
|
|
variants: {
|
|
Default: 'Default',
|
|
Night: 'Night',
|
|
Original: 'Original',
|
|
Grey: 'Grey',
|
|
LandLot: 'LandLot'
|
|
}
|
|
},
|
|
USGS: {
|
|
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSTopo/MapServer/tile/{z}/{y}/{x}',
|
|
options: {
|
|
maxZoom: 20,
|
|
attribution: 'Tiles courtesy of the <a href="https://usgs.gov/">U.S. Geological Survey</a>'
|
|
},
|
|
variants: {
|
|
USTopo: {},
|
|
USImagery: {
|
|
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}'
|
|
},
|
|
USImageryTopo: {
|
|
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryTopo/MapServer/tile/{z}/{y}/{x}'
|
|
}
|
|
}
|
|
},
|
|
WaymarkedTrails: {
|
|
url: 'https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="https://waymarkedtrails.org">waymarkedtrails.org</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
},
|
|
variants: {
|
|
hiking: 'hiking',
|
|
cycling: 'cycling',
|
|
mtb: 'mtb',
|
|
slopes: 'slopes',
|
|
riding: 'riding',
|
|
skating: 'skating'
|
|
}
|
|
},
|
|
OpenAIP: {
|
|
url: 'https://{s}.tile.maps.openaip.net/geowebcache/service/tms/1.0.0/openaip_basemap@EPSG%3A900913@png/{z}/{x}/{y}.{ext}',
|
|
options: {
|
|
attribution: '<a href="https://www.openaip.net/">openAIP Data</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-NC-SA</a>)',
|
|
ext: 'png',
|
|
minZoom: 4,
|
|
maxZoom: 14,
|
|
tms: true,
|
|
detectRetina: true,
|
|
subdomains: '12'
|
|
}
|
|
},
|
|
OpenSnowMap: {
|
|
url: 'https://tiles.opensnowmap.org/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
minZoom: 9,
|
|
maxZoom: 18,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} & ODbL, © <a href="https://www.opensnowmap.org/iframes/data.html">www.opensnowmap.org</a> <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
|
|
},
|
|
variants: {
|
|
pistes: 'pistes',
|
|
}
|
|
},
|
|
AzureMaps: {
|
|
url:
|
|
'https://atlas.microsoft.com/map/tile?api-version={apiVersion}'+
|
|
'&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}'+
|
|
'&subscription-key={subscriptionKey}',
|
|
options: {
|
|
attribution: 'See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.',
|
|
apiVersion: '2.0',
|
|
variant: 'microsoft.imagery',
|
|
subscriptionKey: '<insert your subscription key here>',
|
|
language: 'en-US',
|
|
},
|
|
variants: {
|
|
MicrosoftImagery: 'microsoft.imagery',
|
|
MicrosoftBaseDarkGrey: 'microsoft.base.darkgrey',
|
|
MicrosoftBaseRoad: 'microsoft.base.road',
|
|
MicrosoftBaseHybridRoad: 'microsoft.base.hybrid.road',
|
|
MicrosoftTerraMain: 'microsoft.terra.main',
|
|
MicrosoftWeatherInfraredMain: {
|
|
url:
|
|
'https://atlas.microsoft.com/map/tile?api-version={apiVersion}'+
|
|
'&tilesetId={variant}&x={x}&y={y}&zoom={z}'+
|
|
'&timeStamp={timeStamp}&language={language}' +
|
|
'&subscription-key={subscriptionKey}',
|
|
options: {
|
|
timeStamp: '2021-05-08T09:03:00Z',
|
|
attribution: 'See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.',
|
|
variant: 'microsoft.weather.infrared.main',
|
|
},
|
|
},
|
|
MicrosoftWeatherRadarMain: {
|
|
url:
|
|
'https://atlas.microsoft.com/map/tile?api-version={apiVersion}'+
|
|
'&tilesetId={variant}&x={x}&y={y}&zoom={z}'+
|
|
'&timeStamp={timeStamp}&language={language}' +
|
|
'&subscription-key={subscriptionKey}',
|
|
options: {
|
|
timeStamp: '2021-05-08T09:03:00Z',
|
|
attribution: 'See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.',
|
|
variant: 'microsoft.weather.radar.main',
|
|
},
|
|
}
|
|
},
|
|
},
|
|
SwissFederalGeoportal: {
|
|
url: 'https://wmts.geo.admin.ch/1.0.0/{variant}/default/current/3857/{z}/{x}/{y}.jpeg',
|
|
options: {
|
|
attribution: '© <a href="https://www.swisstopo.admin.ch/">swisstopo</a>',
|
|
minZoom: 2,
|
|
maxZoom: 18,
|
|
bounds: [[45.398181, 5.140242], [48.230651, 11.47757]]
|
|
},
|
|
variants: {
|
|
NationalMapColor: 'ch.swisstopo.pixelkarte-farbe',
|
|
NationalMapGrey: 'ch.swisstopo.pixelkarte-grau',
|
|
SWISSIMAGE: {
|
|
options: {
|
|
variant: 'ch.swisstopo.swissimage',
|
|
maxZoom: 19
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
L.tileLayer.provider = function (provider, options) {
|
|
return new L.TileLayer.Provider(provider, options);
|
|
};
|
|
|
|
return L;
|
|
}));
|
|
</script>
|
|
<script>LeafletWidget.methods.addProviderTiles = function(provider, layerId, group, options) {
|
|
this.layerManager.addLayer(L.tileLayer.provider(provider, options), "tile", layerId, group);
|
|
};
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="htmlwidget_container">
|
|
<div class="leaflet html-widget html-fill-item" id="htmlwidget-d7d4bc1916f5e161f5fe" style="width:100%;height:400px;"></div>
|
|
</div>
|
|
<script type="application/json" data-for="htmlwidget-d7d4bc1916f5e161f5fe">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addControl","args":["<div>\n <style>\n .leaflet-control.map-title { \n transform: translate(-50%,20%);\n position: fixed !important;\n left: 50%;\n text-align: center;\n padding-left: 10px; \n padding-right: 10px; \n background: rgba(255,255,255,0.75);\n font-weight: bold;\n font-size: 28px;\n }\n<\/style>\n Pedestrians & Bicyclists hit by cars<\/br>2017-2023\n<\/div>","topleft",null,"map-title"]},{"method":"addControl","args":["<div>\n <style>\n .leaflet-control.map-subtitle { \n transform: translate(0%,0%);\n position: fixed !important;\n left: 90%;\n text-align: center;\n padding-left: 10px; \n padding-right: 10px; \n background: rgba(255,255,255,0.75);\n font-weight: regular;\n font-size: 12px;\n }\n<\/style>\n data from UW TOPS lab - retrieved 4/2024<\/br>per direction of the WisDOT Bureau of Transportation Safety\n<\/div>","bottomleft",null,"map-subtitle"]},{"method":"addProviderTiles","args":["Stadia.AlidadeSmooth",null,null,{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addCircleMarkers","args":[[43.12639324,43.070215581,43.073373687,43.06784101,43.073314976,43.076129476,43.070962994,null,43.099590473,43.059786549,43.051830713,43.062804644,43.073283708,43.057019525,43.06064659,43.047350082,43.051965618,43.07379569,43.083189505,43.050125489,43.051408366,43.046247619,43.060796265,43.072871964,43.07210769,43.073224191,43.074893682,43.073239655,43.098693151,43.082629361,43.098690002,43.144538341,43.082714966,43.06774216,43.072235163,43.034589194,43.038614892,43.026727007,null,43.129443642,43.07617003,43.073262807,43.067545662,43.073265035,43.075816615,43.071310636,43.072112112,43.034850254,43.059885573,43.066971258,43.072233417,43.068922014,43.073322355,43.051752462,43.073489453,43.070864677,43.072289641,43.094244701,43.06688708,43.072111853,43.075162239,43.066202364,43.073256712,null,43.067737793,null,43.057172912,43.030940525,43.078518421,43.035500451,43.060041455,43.070505755,null,43.074270844,43.073813199,43.117722206,43.038481412,43.06653111,43.063709738,43.083902082,43.074824059,43.05007718,null,43.046500257,43.121121692,43.046269795,43.080048439,43.053891842,43.031916614,43.073289673,43.069820447,43.065573523,43.120661957,43.106784445,null,43.088443425,43.072463495,43.067859967,43.031783126,43.047113369,43.098937643,43.093889466,43.091152122,null,43.035949082,43.134759901,43.071918582,43.073443514,43.079736879,43.073142182,43.073144744,43.072201115,43.067803093,43.069075381,43.120985092,43.049216618,43.063008885,43.092368339,null,43.087376235,43.056827323,43.055876804,43.057969514,43.056585723,43.059206129,43.01558747,43.08769254,43.124752555,43.042306808,43.064662109,43.07348616,43.075297202,43.07861854,43.056557427,43.079042232,43.128942724,43.07318605,43.104504366,null,43.050551221,43.046654349,43.13789048,43.078956597,43.092958784,43.073378442,43.087376235,null,43.073684199,43.071937471,43.071301992,43.052549265,null,43.063781001,43.071746767,43.071881616,43.07874743,43.070102423,43.110622658,43.129874646,43.068907372,43.046219021,43.077975925,43.094105555,43.080641881,43.07202253,43.072473305,43.09248715,43.073210099,43.073284115,43.078250366,43.098338267,43.081459419,43.088443425,43.084464775,43.072091296,43.083886388,43.080048439,43.09606117,43.071071572,43.082535092,43.078156066,43.047355273,null,43.073156223,43.067746673,43.07615696,43.072126614,43.074825306,43.080048439,43.089851599,43.06697129,null,43.123759687,43.081994879,43.070900681,43.090535865,43.06975039,43.092721284,43.111057903,43.142499929,43.151943337,43.038205162,42.901249478,42.946707319,42.997959452,43.181853995,43.19258675,43.183006857,43.187502535,43.175571453,43.177059085,43.191674089,43.179744796,43.175453959,44.517902917,44.502431054,44.508669398,44.51916323,44.519580918,44.504803331,44.485960818,44.521382746,44.478059451,44.540058305,44.516035539,44.539169057,44.49755851,44.500801729,44.522543311,44.521714473,44.516995897,44.518187959,44.49672126,44.506033628,44.51603493,44.530813722,44.512195587,44.520667085,44.518398649,44.524610156,44.499699781,44.51292701,44.523929114,44.513963559,44.513873069,44.49760602,44.516035539,44.520536059,44.530893023,44.520386466,44.540208681,44.524415291,44.505200211,44.525871821,44.514130099,44.512886528,44.518036517,44.500971933,44.51748565,44.512375855,44.497645429,44.507921659,44.492509269,44.518670532,44.512586773,44.506127335,45.465524548,45.457425222,45.464699171,45.465133157,45.458255748,43.755289107,43.7847983,43.782068985,43.7887781,43.778765686,null,43.783731712,43.783639014,null,null,43.768145386,43.784370636,43.768517043,43.775546613,43.784267989,43.769399444,43.773106274,43.791748387,43.769055243,43.78085515,43.766520296,null,null,43.770291493,43.783475598,43.791769295,43.783589692,43.773273139,43.772737374,43.773579429,43.78397762,null,null,43.769654628,null,43.771518603,null,43.77983191,43.775179099,43.770329191,43.784370636,43.785505838,43.765614109,43.780626379,43.779339964,43.770195324,44.243681356,43.801507648,43.857746572,43.812198231,43.808758206,43.788961029,43.803867577,43.817215582,43.804653372,43.809925393,43.812722704,43.84264574,43.851416097,43.841359945,null,43.85659258,43.811561885,43.815073055,43.802109826,43.811405143,43.830134159,null,43.810053055,43.808757805,43.811614277,43.765426557,43.817729372,43.798405699,43.813844466,43.812859357,43.80257498,43.81109446,43.774738404,43.814231025,43.811038871,43.813075922,43.796604134,43.772578175,43.811886972,43.847886252,43.81393249,43.795935967,43.839444568,43.843212529,43.80460224,null,43.805081682,43.811953373,43.769487194,43.814987158,43.802470968,43.794023925,43.831249819,43.846021507,43.812170175,43.789656414,43.842780215,43.825134953,43.804375926,43.835469119,43.792617847,null,null,43.841351835,43.794177302,43.811540803,43.796883973,43.792258776,43.816123582,43.801465917,43.84135996,43.812674551,45.175953253,null,42.559205401,null,null,42.655048,null,null,42.506573268,42.498710362,44.455552426,44.469993826,44.489234543,44.483703343,44.47762512,44.543124294,44.46586638,44.590877402,44.453923755,44.470704412,null,44.554668383,44.465338022,null,44.472334233,44.489446067,44.49453397,44.492776713,null,44.497559263,null,44.501178909,44.498483556,44.484999744,44.438632589,null,44.43306609,44.454461488,44.441772124,44.431961504,44.448465081,44.441046097,null,45.098309514,null,42.961684282,42.964803329,43.083296959,42.73588252,42.732447324,42.732391549,42.734456777,42.729000722,null,43.03412807,43.951183534,43.94269803,43.944293403,43.923406038,42.54044514,42.54079699,43.557110618,43.555321585,43.556227671,43.183851285,42.577872805,44.184295829,43.106413746,43.095339896,43.091683777,43.111457411,43.093676031,43.106479818,43.094948866,43.089977688,43.102816951,43.111800357,43.028745228,43.026696548,43.024514352,43.017218986,43.015537013,43.001617781,43.030018067,43.042473059,42.845283604,43.015690193,43.057788386,42.985399806,43.182571998,null,42.914064912,null,null,null,null,42.881434423,null,null,null,null,42.925531892,43.120171369,43.174756287,43.108261072,43.169994143,43.170242241,43.175405636,43.178352422,43.177709591,43.1693561,43.07262615,43.071794688,43.047844209,43.061908177,43.047548554,null,43.034995081,43.076692209,43.064917615,43.074738884,null,43.051964381,43.033898506,43.060454701,43.035932638,43.060730715,43.060507167,43.035498069,43.049244987,43.050285541,43.04712027,43.045502618,43.038651487,43.04748322,43.101134542,43.071212652,43.060477416,43.047966335,43.060750104,43.061137203,43.060682878,43.05595826,43.065844761,43.002699338,42.995398872,42.988345172,43.020955942,43.016712109,43.002847674,43.00247114,43.008608,42.994813671,42.988020772,43.016689899,43.015115303,43.016660587,43.006019888,43.00476506,42.99891919,43.000868532,42.98809001,43.010174913,42.99677108,43.014587429,42.988364617,42.995276672,43.021712037,42.995276672,43.015152432,43.002600721,43.016660587,43.023654006,43.016468099,43.015115303,42.984180306,43.008719328,42.998789635,42.988066488,43.003630354,43.002700328,43.02018178,43.002124732,43.002937172,43.023887735,43.016641423,43.016448199,43.016457064,43.016341584,43.016471984,43.012996267,43.003251976,43.013497901,43.011657974,43.016644949,43.016739086,42.990269735,42.993691633,43.015143026,43.003421783,43.016675253,43.016618647,42.995608576,42.988066488,43.01667106,43.013002955,43.013438808,43.01232353,42.987684371,42.995378934,43.012756357,42.988066488,43.002802124,43.018427417,43.013055419,42.988066488,43.002513779,43.960580604,44.796981094,null,44.79537511,null,42.600189222,42.601126209,42.596664024,42.584805157,42.609547448,43.285595981,44.531960446,44.527045051,44.522324287,44.528849755,44.502392543,44.533864234,44.50015537,44.528856342,44.527453818,44.508170908,44.518375983,44.525610699,44.516806942,44.522376108,44.522490605,44.527962162,44.523451287,44.528849445,44.501155909,44.533061928,44.51453488,44.527816046,44.515895138,44.522840677,44.523495587,44.527916869,42.670029952,null,42.665861578,42.683508634,42.669848426,42.670170787,42.664123295,42.671692148,44.372395706,44.381590265,43.113633868,42.60998852,42.613600907,44.184449948,44.18155998,44.160024456,44.177217564,44.175935732,44.156624131,44.175786285,44.185939862,44.189109762,44.160044114,44.182072357,44.156485907,44.174851567,44.174601089,44.177045878,44.185715798,44.190250231,44.185123221,44.177100094,44.174268063,44.182495584,44.208354188,44.197542604,null,44.204702325,44.202000022,44.22246005,44.223506556,44.221013866,44.215897339,44.213003099,44.039409672,44.039283994,44.03854667,44.175894802,44.00428669,43.977180774,44.165066396,44.261934432,null,null,44.258164828,44.280268924,44.264119043,null,44.258497082,44.243943284,44.247621381,44.263079537,44.294476692,44.285953839,null,44.256658173,44.256258229,null,44.261886772,44.237030947,44.243901406,44.261840563,44.258155958,44.261934432,44.26218876,null,44.241623279,null,null,44.258612502,44.262518556,44.265781919,null,44.254709457,44.269298107,44.261641544,44.27501966,44.261881585,44.316442687,44.247050811,44.258683977,44.274878982,44.261902762,null,null,44.28734018,44.272832222,44.286288227,44.261935082,44.262169952,44.261816741,44.258163244,44.258421121,44.264022898,44.288524876,44.243965199,44.273950763,44.242788614,43.427561469,43.470838682,null,43.25088585,44.807971558,44.798768423,44.800465997,44.796825752,44.781125331,44.792083761,44.779264524,44.815587914,44.80210217,44.823759349,44.812300877,44.812825812,44.794380201,44.806964669,44.798768423,44.824636766,44.799356248,44.816184031,44.796970316,44.812294746,44.79324981,44.816045583,44.788377146,44.80685964,null,44.831250517,44.803735099,44.811464965,44.775306943,44.800952306,null,44.825744841,44.844257041,44.820543344,44.798225572,44.804551676,44.796970316,44.677018399,44.709084656,44.70908483,44.315485554,44.321007299,null,null,null,44.788288039,44.761563171,44.78018153,44.783025636,45.073939044,45.081210824,45.099962099,45.100190686,45.092895436,45.088094076,44.460379568,44.344519879,44.357734193,44.357601239,44.55842411,44.609145924,44.610865035,44.356089254,44.374530792,44.374538875,44.387377945,44.387426692,43.627687671,43.625846451,43.62762183,43.627763915,43.850525793,null,null,43.214781217,43.206644225,43.206932802,44.12067884,44.108189503,44.082106798,44.085465012,44.119414369,44.095949482,44.073337532,44.083188344,44.078248705,44.095488255,44.086326575,44.085543376,null,44.088893973,44.103623806,44.106142091,44.104842993,44.110000944,44.088936822,44.075858505,44.085434034,44.082262544,44.081058516,44.079865759,42.998232929,43.004764439,43.014673688,43.020534876,42.999711897,42.988696398,43.002020948,43.048072279,43.009029717,42.988746208,43.029046294,42.988348448,43.011716192,43.015279277,43.028995652,43.012566829,42.983237791,43.020712852,42.988154351,42.980388772,43.036165552,42.981699494,43.002928203,42.988272507,43.009817241,43.012445344,42.993450743,43.011049318,43.016893237,43.010501145,null,42.993261277,42.984888977,43.054047221,43.137489457,43.009267231,43.036707446,43.099811473,43.163089534,43.070658011,43.049054105,43.13375047,42.946800801,43.093109184,43.098502506,43.110214303,45.063527531,45.68508905,45.690400518,44.179282633,44.204909042,46.571339154,44.244022143,44.226599992,44.234585483,43.884245174,43.882554962,43.878161008,43.870377614,44.268574357,44.265747305,44.278714343,44.259532182,44.283470934,44.290414296,44.261043869,45.340391664,44.992588141,44.993535091,45.132484531,44.909119419,null,44.970449058,44.962702097,44.982525922,44.977012031,44.962016991,44.954283604,43.766425552,43.943225221,43.926642188,43.93479201,45.488249816,45.494638355,45.497308639,45.495947119,45.475233716,null,44.842764779,44.854180369,44.854136037,44.882108262,44.857379343,44.854180369,null,null,44.863877973,44.87548535,44.908434779,null,44.879948426,null,44.898597712,null,45.183636625,45.185590951,45.189268082,45.126913304,45.083401028,44.843003805,44.835218763,44.830603432,44.84196672,44.833425983,44.834498048,44.831518189,44.834877476,44.835050993,null,null,44.972356384,44.980706208,44.962068483,44.959302678,44.969741109,44.956430155,44.96669863,44.959439906,44.946785801,44.958145855,44.955851587,44.951200488,44.94004498,44.965528968,44.959427749,44.959356729,44.955115708,44.951989123,44.955090866,44.959807747,44.962787597,44.958397219,44.959764131,44.974241146,44.961483551,44.960365242,44.977048341,44.980854697,44.987147561,45.373313773,43.629168399,43.33316025,43.503021229,43.568280138,43.969226837,43.948875554,43.178497848,44.352219743,43.067631086,43.07667878,43.076100584,43.075128081,43.076881335,43.074136569,43.075168155,43.077144142,44.287050019,44.305121741,44.345097008,44.32134891,44.247201477,44.256951199,44.294548957,44.291062159,null,43.976810084,44.000975409,44.000972709,44.020008009,43.981562214,44.273082775,44.274261647,44.273213545,44.258616096,null,44.273097156,44.273072656,44.262915256,44.301892351,44.273153913,44.260305189,44.272647677,44.256477451,44.258590695,44.275500367,43.177787165,43.186431762,43.178457373,43.046583771,null,45.63806528,45.634360534,45.663504151,45.641368116,null,44.285423991,44.26072213,44.260672065,44.283585006,44.260725042,null,null,44.022148208,44.038247714,44.013236031,null,44.03516055,null,null,null,null,null,null,44.024930201,null,null,44.041322452,44.039274596,44.015877457,44.021069999,null,44.020573761,null,44.009536306,44.02120602,null,null,44.040486128,44.013249122,null,44.044101763,44.032660914,44.010871218,43.981190555,44.059786462,null,43.07457097,43.076900868,44.809404556,null,44.935880862,null,null,null,null,null,44.859359104,46.592119513,46.58824499,43.17696894,44.613675731,null,42.780344224,43.833904362,43.799099956,43.309518111,43.307096507,43.321534026,43.320563309,43.320432807,43.318794404,43.319935665,43.308470147,44.358915236,46.012665209,44.586138681,44.385589753,44.303848268,44.28628313,42.58661379,42.602746302,42.581633825,42.586879539,42.588755715,42.560890287,42.570674751,null,42.600257874,null,42.594234468,42.606546159,42.611408402,42.57656912,42.586504334,null,42.569481472,42.578952913,42.576292721,42.629608402,42.567073494,42.580129397,42.58799853,42.566255986,42.580115437,42.591208529,42.609546717,42.551688187,null,null,42.558629565,42.591232546,null,null,42.551686676,42.571725177,42.567252196,null,42.595664757,null,42.581674804,42.627118105,null,null,null,42.624309748,42.589069916,42.563845185,42.580701059,null,null,42.589934297,42.57869389,42.588013322,42.577170139,42.567939437,42.561180115,42.58837308,null,42.599596053,42.595401855,42.589077002,42.56582236,null,42.577809628,null,42.558513874,42.582166218,null,42.576498754,42.576484065,43.913223815,44.930492433,44.916684782,44.906014796,44.85519803,45.075833586,43.813619058,43.320566694,43.474174352,43.385007644,44.453561512,44.453709286,44.459849891,44.482815806,44.47153614,42.738259704,42.677031407,42.741301087,42.682413396,42.588930976,42.518627246,42.635842855,42.70789171,42.729976654,45.298246774,45.387805847,43.539632513,43.532681607,43.430397207,43.477381636,43.525209375,43.278791733,43.29292268,43.562183109,46.013700293,45.983463301,46.713452992,46.720553916,null,46.713373331,46.724328889,46.677772155,46.732488208,46.713412365,44.959164749,42.532044029,null,null,44.153653714,null,null,42.634171596,42.58399847,42.622448406,42.652547764,42.800064027,42.78727,42.627556049,43.11052525,43.128413007,43.126363817,43.081544657,43.094821055,43.103702554,44.875648224,44.955263559,45.205749732,44.913023393,44.676275543,null,44.666476099,44.670735798,44.661024448,null,44.343856572,43.084962257,43.088378706,43.083409634,43.071523177,null,44.319740444,43.300866213,43.299449546,43.293949018,43.282450212,43.013441674,43.013750142,43.013279449,46.503070488,null,42.962848457,42.959054723,42.960678269,42.959398491,42.973621977,42.966387801,42.959276514,42.961018436,42.973922856,42.953857377,42.966436971,42.966411827,42.944893745,42.527196052,42.508564735,null,42.493141986,44.46745159,44.378220973,44.657054613,43.971418406,43.971432282,43.129927582,43.129577649,43.118852546,43.103984295,43.11899296,null,null,43.118570245,43.118707679,43.125269497,45.128381505,null,45.118200768,45.10438251,null,null,null,null,null,null,null,null,null,null,null,42.933185881,42.944714075,42.939148545,42.937669569,43.633209368,43.633202297,43.633201799,43.628020669,43.057411268,43.036678497,43.03238213,44.916777087,45.181739084,45.177651086,43.453492047,43.098301463,null,43.469084842,43.478142005,43.47183989,null,45.865043598,45.877522189,45.877274936,null,42.908965982,42.915346361,42.910531332,null,42.910815236,42.903557852,null,42.911489101,42.927810931,null,43.021224778,null,43.016680969,43.021194265,43.021100346,43.002941915,43.016894976,43.020771297,null,null,42.719610028,42.721171622,42.697489267,42.700374799,42.72176105,42.717242813,42.736566173,42.752110854,42.682150327,42.701684308,42.691250238,42.71956366,42.718715117,null,null,null,43.88707348,43.797379054,43.797028602,43.791787621,44.241716809,44.951462768,44.941318277,44.936604705,44.937458992,44.939959597,44.933558214,44.936670499,43.792184797,43.382837826,44.888125143,44.886392106,45.295937107,45.310974832,45.311548502,43.532076058,43.539703322,43.539708633,43.536450947,43.532504481,45.170627076,44.760931399,44.755017818,44.844043481,43.585760246,43.586865891,43.612553281,43.615409657,43.600947279,43.588855118,43.586170304,43.575766638,43.614796645,43.595738708,43.589012403,43.589391811,43.581190817,43.589171746,43.615229356,43.607388589,43.615496256,43.591908676,43.596251158,43.589267126,43.613642828,43.601015604,43.607736232,null,43.003162304,42.985749614,42.983565336,43.016704127,42.944277533,43.060495493,43.059858941,44.292088977,44.575492679,42.539195591,42.543730287,null,null,42.959757086,42.973720204,null,45.059550329,42.603474803,42.98524612,44.905663243,44.90471221,null,44.894278403,44.904586792,44.9691057,45.450251126,45.322372166,43.185312043,43.092057484,43.252663566,42.914706816,42.916801747,42.920606524,42.918332087,42.94008377,42.91856801,42.923431141,42.917358928,42.930019265,null,42.930187531,42.946586718,42.959109255,42.959084016,42.959124828,42.939799301,null,42.959128541,null,43.220637551,43.193495054,43.221054236,43.195572373,43.191905096,44.025182376,43.400272265,43.199961105,43.404277437,43.42121418,43.457542973,43.443186501,42.9911631,43.003648059,42.99149096,43.003249401,43.001566386,43.005483148,43.191705788,43.19175211,43.184287114,43.341021029,43.318211356,45.976634553,45.984662961,42.715493012,42.712379616,42.736368401,42.745799198,42.691239277,42.750434787,42.709843818,42.758261294,42.716237217,42.731553959,42.718551648,42.718533073,42.71005403,42.712292558,42.71870857,42.712549122,42.718416753,42.725975435,42.737768309,42.709488159,42.725975812,42.709141121,42.726861278,42.718991035,42.735504637,42.710359287,null,42.718803227,42.747717757,42.718601341,42.718474359,42.710740514,42.712434104,42.714244841,42.721343818,42.734439291,42.718865285,42.745729893,42.715441045,42.733250334,42.742298505,42.745258749,42.731757765,42.726300367,42.695855759,42.698588503,42.7495517,42.736947359,null,42.720699473,42.708646274,42.735487094,42.726875287,42.735511203,42.735558437,42.725958156,42.704322449,42.706773885,42.719402784,42.725990509,42.712478594,42.715501081,42.722553644,42.744702908,42.714244841,42.735490114,42.731778703,42.700752207,42.730197973,42.705375608,42.679220959,42.678003153,42.730871645,42.69047482,42.676988099,42.679325765,42.649870425,42.678841892,42.700707219,42.680104064,42.679437279,42.679340276,42.695690736,42.693758358,42.658902869,42.679604249,42.69019134,42.663995457,42.695414195,42.700122298,42.686813731,42.672193998,42.696607707,42.694145235,42.699738814,42.716093959,42.682873009,42.686659269,42.683632836,42.693537876,42.679437279,42.591757927,42.593700954,42.567538381,42.596789808,null,null,null,null,43.96816109,43.958940872,null,43.524178382,43.513147903,43.317988586,42.501759322,42.524096278,42.512429364,42.49867903,42.512862695,42.512664785,42.499644913,42.50009015,42.499295332,42.511057093,null,42.498668739,42.499020342,42.503565612,42.524213157,42.510835138,42.545651154,42.503950452,42.835883202,42.918925567,42.936112965,42.929108772,42.925048964,42.873381623,null,43.007474038,43.013629955,44.523145832,44.6282,44.492504131,44.664273666,43.339726599,43.33780433,null,43.33347306,42.899984776,42.926066441,42.917014942,42.899301029,42.857419623,42.908272463,42.865702335,42.79986145,42.769750594,42.791302552,43.239339693,42.680594861,42.687817095,42.682101954,42.679132524,43.105713747,null,null,44.029458077,43.066068823,43.01488111,44.074707218,43.986671141,43.189167538,43.196449145,43.193847282,43.206516124,43.194769284,43.193661861,43.194477405,43.194520512,43.192522629,43.193083936,43.193963322,43.189696184,43.19819897,43.331446656,42.623063179,42.628564687,42.640341809,42.62754824,42.623063179,42.631200591,42.630849936,43.081925782,43.319500382,43.310619626,43.317639885,null,43.317611805,43.50110129,43.426547715,43.423344943,43.412292491,43.427092117,43.434237917,43.401318555,43.393419198,43.39720546,43.422689444,43.397446257,43.419723326,43.398025111,null,42.827336425,42.834972022,42.839767147,null,42.838965637,null,42.834992729,42.834972307,42.933758121,42.94904198,42.939553441,42.93744278,43.758567278,43.778027641,43.761043549,43.769067262,43.764542292,43.699861636,43.756375356,43.739931133,43.75365673,43.735858294,43.72794738,43.756332867,43.749793351,43.765343503,43.743125946,43.738327687,43.724234132,43.759630097,43.778266585,43.756352056,43.756474129,43.754425723,43.739933571,43.728851016,43.768374159,43.756304742,43.747377615,43.745713667,43.772992,43.761807,43.776929732,43.716752892,43.755775046,43.749046142,43.702686801,43.760755681,43.756355751,43.745376255,43.761747827,43.864897572,43.572208793,43.732228679,43.646567766,45.140483112,45.141037729,45.16124167,43.459482783,43.472353679,43.449370957,43.481379603,43.452806937,43.474064038,43.456130946,43.456256006,43.460644405,43.454118763,43.457250767,43.456320322,43.466162841,43.075027419,43.016723452,43.089161592,43.053952639,43.104709914,43.104687583,43.088681099,43.074969459,43.080061555,43.061537676,43.089659333,43.057630532,43.060455996,42.941142134,42.925845398,42.933841444,42.931681163,42.922525045,42.929873103,42.93110442,42.91686097,42.513696018,43.00451899,null,45.141113692,45.140484317,42.814507498,43.746343397,43.748815951,43.756826542,43.387005782,43.388035643,43.41052215,43.397701632,43.38989148,43.407822738,43.387566602,43.568093335,43.539102184,43.539916267,43.538797291,43.563296702,43.545355561,43.563248349,43.558196468,43.728795407,45.485388307,45.462790311,45.481799064,42.611293852,42.779735593,45.39691183,44.96721506,43.050331293,43.085679892,42.621228274,45.925415076,44.038207781,43.099431743,43.108966941,43.120083371,43.025244291,43.017032741,43.012519895,43.003170399,42.959153609,43.042733,42.973710176,43.0483053,43.093691366,43.107036607,43.037341975,43.045556316,43.07107443,43.06424723,43.071965879,43.05519136,43.089290634,43.107479074,43.119180433,43.121531037,43.003091648,43.023224961,43.023212263,43.044989504,43.041484203,43.104988847,43.126570263,43.119238743,43.070494891,43.073190837,43.022997485,43.006673754,43.012437911,43.023925185,43.059110559,43.077882243,43.089779694,43.077692451,43.05516636,43.060091224,43.037351297,43.087203039,43.141605259,43.11927197,43.089276957,43.083475699,43.06018974,43.072249524,43.075662396,43.100761613,43.111265687,43.087409227,43.038811922,43.074640175,43.06754617,42.973937724,42.993773414,43.073379965,43.08996294,43.038703155,43.052522796,43.089482762,42.987922731,43.06414491,43.050017683,42.983927278,42.988181368,42.993696431,43.045729806,43.023368697,43.022359102,43.021063751,43.077630378,43.022993498,43.014481425,42.999145086,43.090063807,43.11195731,43.067912081,43.031786116,43.044546542,43.055211,43.067913385,43.060638285,43.052987996,43.0856901,43.070065104,43.045736641,43.045697128,43.033844256,43.081858021,43.038805804,42.985640936,43.051723656,43.093799521,43.089512079,43.082618971,43.090008125,43.071526324,43.07602173,43.059364055,43.055815541,43.072959523,43.05984551,43.067871053,43.076890613,43.072950599,43.05516636,43.082106358,43.049985969,42.995546188,43.094613523,42.944624487,42.93026634,43.108208283,43.068025731,43.10766088,43.075197814,43.081526307,43.081973217,43.078620129,43.077242047,43.073370875,43.071311979,43.056282685,43.038793984,43.098851317,43.090474637,43.111181714,43.089873085,43.075380434,43.06018974,43.078673412,43.058448731,43.002856229,43.025744401,42.988179859,43.066619038,43.061636887,43.177538211,43.117042185,42.952494545,43.104558138,43.045736986,43.072838929,43.079656492,43.037098576,43.059483087,43.075347125,43.026009627,43.063448409,43.054646186,43.1777123,43.16306105,43.068271613,43.045021325,43.003170399,43.021368537,43.075276175,43.016949928,43.021532223,43.019034904,43.005698791,43.012400345,43.020161946,43.043231215,43.061750877,43.067911012,43.067801396,null,43.071009006,43.062032596,42.981058958,43.060617223,43.067537,42.988289288,43.082533407,43.07536501,43.142836792,43.118088573,42.996741332,42.9376178,43.002936469,42.999206948,43.043611711,43.03843016,42.93758284,43.089815247,43.039029628,43.037910167,43.050667071,43.089802843,43.080239064,43.009236157,43.114826511,43.118221261,43.100855997,43.083987342,43.104624547,43.045868424,43.04573,43.10403619,43.089406543,43.074817159,43.060176909,43.074720192,43.113885913,43.029154278,43.03091303,43.071485721,43.017047252,43.022196462,43.02224482,43.019046068,43.020630108,43.019770114,42.981204723,42.986479269,42.988444357,42.988322248,42.981259285,43.093353859,43.08180333,43.086591315,43.079304189,43.075132632,43.082336953,43.089640578,43.033328196,43.04665555,43.036819857,43.06933563,43.036023112,43.073145642,43.075321434,43.12086748,43.11937032,43.114577035,null,43.052854274,43.06800061,43.076118083,43.111682859,43.020372843,43.016024304,43.089641434,43.025998604,43.025418851,42.957512272,43.101156249,43.083574692,43.075016156,43.074310075,43.019021756,43.016982612,42.995802062,43.060115887,43.038967591,43.072893597,43.03741815,43.049358368,43.043171832,43.044694023,43.052979953,43.03913993,43.045857007,43.160431431,43.002612619,43.024117191,43.104497565,43.082533407,43.074771856,43.006544682,43.006053496,43.077013986,43.012892723,43.016983355,42.99577844,42.995569805,43.10356072,43.104982946,43.098594802,43.07349235,43.043175045,43.0319126,43.030170592,43.132689847,null,43.112994879,43.119826212,43.119249933,43.134149889,43.067913385,43.060305632,43.020033829,42.983180182,43.038746414,43.06052438,43.177811743,43.104628215,43.042864193,43.038507677,42.992542928,43.060675901,43.058925765,43.03973051,43.038703155,43.053924203,43.104558138,43.059004163,43.089815205,43.002515415,43.030272796,43.067688591,43.081675302,43.038798725,43.05298827,43.050586002,43.038575123,43.088693387,43.093211345,43.101499047,43.082612921,43.004516248,43.010245347,43.008295385,43.006439877,43.017093811,43.083629813,43.008597981,43.005336253,43.004748072,42.948116999,43.036111078,43.037403274,43.057291685,43.071896711,43.038655087,43.111267234,43.097387474,43.039268443,43.089939129,43.069744634,43.078728262,43.017059067,43.111918666,43.03755282,43.060134118,42.988180821,42.988367956,43.066748468,43.148584523,43.037463898,43.075327476,43.072838929,43.075276175,43.050859991,43.025746895,43.022438041,43.012823865,43.030623896,43.060600701,43.044437444,43.039692613,43.072398497,43.112104867,43.060616113,43.049991737,43.075054095,42.988292606,43.085622553,43.080296595,43.08940278,43.082033986,43.0850523,43.089262486,42.985672801,43.104786185,43.118626983,43.040209599,43.03997691,43.07505579,43.08379518,43.075207816,43.067849986,43.026009627,43.04322877,43.06774664,43.082075804,43.073086908,43.089663075,43.07599888,43.071124872,43.087970621,43.088067453,43.074760718,43.067566159,43.071485536,43.089777373,43.062447757,43.006408505,42.988450476,42.988120625,42.973848453,42.9882114,42.95918938,42.959035425,42.974364204,42.959291214,42.979915594,42.958996959,42.959329567,42.98493882,42.997441095,43.002824504,42.993773,42.989117113,42.981059485,43.141405546,43.147151985,43.11272357,43.127207605,43.119405127,43.159722304,43.153466591,43.184253868,43.134151052,43.117236372,43.131857327,43.129746587,43.137824747,43.111852622,43.134146507,43.022987318,43.014052471,43.017028563,43.012483622,43.023327635,43.012304349,43.057773545,43.034752275,43.066077535,43.029774556,43.060506,43.067502422,43.053639424,43.089822235,43.002897286,43.061235101,43.148508023,43.028563133,43.067022508,43.064206912,43.049358368,43.062136878,43.060615022,43.038703155,43.041576016,43.048620698,43.03881159,43.027625426,43.038502861,43.067911693,43.142659612,43.048577825,43.073406506,43.085023076,43.108124451,43.089961441,42.988572713,43.123183686,43.034873185,43.052515416,43.068613763,43.075208028,43.118891267,43.088113926,43.012375692,43.021614304,43.003139724,43.023000068,43.012304433,43.022438041,43.009790375,43.002990433,43.015884601,43.022438041,43.003101019,43.022517007,43.079007306,43.070900488,43.071144969,43.085921102,43.075226173,43.042633171,43.052941634,43.052842019,43.037377683,43.034664552,43.042939665,43.07228507,43.04437509,43.037554093,43.037303668,43.045751606,43.066151013,43.067022743,43.04056885,43.03881159,43.045023825,43.038703155,43.049364148,43.056424056,43.042404798,43.038811445,43.040175479,43.045733355,43.064718874,43.10394616,43.070360109,43.089951199,43.09002282,43.102744954,43.104629964,43.08997439,43.110168681,43.104988268,43.071556696,43.095301779,43.07523471,43.17529928,43.96479948,44.10362177,43.867105599,42.670577496,44.341890771,42.785209987,43.005406811,42.506802023,null,43.633120235,43.860353733,43.860349436,44.021726504,44.771107837,45.180871705,45.820509187,44.928513699,43.93557629,43.880467165,null,43.152568604,43.04024534,43.041619638,43.036119364,43.043111147,43.040361693,43.038692407,46.812552279,43.038562851,43.021939821,43.062098798,43.048048697,null,43.138144942,43.076907325,null,43.055008673,43.015829408,43.067484961,null,43.067758343,43.07195579,43.063078539,43.060704337,null,43.092461781,43.047296912,null,43.050169645,43.051953124,43.075030808,43.04431755,43.068962756,43.085656068,43.040090442,null,null,43.092461781,43.11008031,43.062065597,null,43.053838634,43.050310997,43.041652631,43.063063944,43.031785737,43.123903211,43.073273823,43.123772202,43.078693324,43.08945738,43.077744673,43.066963809,43.041657652,43.034629436,43.072118391,43.073456883,43.088896948,43.100423539,43.129141041,43.067971319,43.074941482,43.075467255,43.055560182,43.140538891,43.073293594,43.064786565,43.073356606,null,43.026915882,43.071077965,43.103243819,43.095489272,43.073266765,43.07203134,43.073211664,43.078510399,43.125175362,43.126287519,43.135887452,43.12137194,43.083158727,43.050310997,43.073644891,43.117277728,43.073373687,43.081994879,43.02646303,43.067692707,43.064020776,43.098886866,43.103507213,43.124301885,43.062175987,43.114290977,43.062019427,43.067692707,43.073314976,null,null,43.041676238,null,43.073151808,43.071061934,43.072271181,43.076907372,43.07159633,43.064518703,43.070087324,43.081970574,43.072802321,43.049202179,43.015698466,43.074743671,43.039913675,43.122881264,43.091849449,43.079092564,43.067792103,43.072121629,43.070862079,43.072271181,43.054035905,43.118895258,43.103539448,43.087952759,43.07544769,43.073262571,43.044358507,43.039163441,43.05756743,43.094171333,43.035271294,43.073373942,43.073013058,43.049873897,43.128299495,43.123955297,43.051520431,43.098812934,43.130913542,43.098450556,null,43.032801402,null,43.078227932,43.074649509,43.060886694,43.070962994,43.070991879,43.04917022,43.051555816,43.056585723,43.030733359,43.070184501,43.06057492,43.044097986,43.121055704,43.084880182,43.089966355,43.133881748,43.116214588,43.13589731,43.11892453,43.091083199,43.054350734,43.076988159,43.046261691,null,null,43.074015681,43.130518351,null,null,43.100001505,43.135858038,43.133173417,43.091994525,43.030627407,43.120996577,43.063038502,43.048218868,43.067733665,43.103550833,43.117324253,43.0885683,null,43.080625021,43.11789368,43.068767333,43.088413239,43.074813252,43.085770562,43.073488898,43.077687265,43.076049313,43.072062155,43.076709755,43.071762773,null,43.074678923,43.073186751,43.128825851,43.076609993,43.07765176,43.073488898,43.075878585,43.069212993,43.087211823,43.076137033,43.079526425,43.073442817,43.072239062,43.106255301,43.177357292,43.010441027,43.059508596,42.914459229,43.122560148,43.151582512,43.208546083,43.174259803,43.004232962,43.051535451,43.177286826,43.174648746,43.187502535,43.198715014,43.160827114,43.176095263,null,44.51335316,44.51767933,44.504106937,44.50254675,44.518283218,44.523279695,44.493081513,44.500617588,44.514696456,44.495635631,44.516763674,44.515624576,44.513750076,44.503271501,44.510926437,44.514353701,44.510789805,44.513821829,44.512480463,44.534272469,44.524352012,44.491653251,44.534436641,44.502077794,44.481371106,44.513125153,44.521369476,44.509582263,44.509703137,44.516825637,44.516171083,44.493695565,44.512421187,44.521449304,44.51462284,44.513109433,44.512318417,44.50444249,44.494519648,44.513590739,44.519213168,44.503318292,44.508044255,44.516550342,44.521456208,44.523787501,44.521457069,44.530401734,44.52990523,44.519630762,44.488901351,44.499962151,45.455490479,43.752635661,43.787970451,43.796700328,43.788849767,43.783641796,43.786574903,43.784217834,43.776804829,43.782772214,43.786349873,43.786136842,43.785370906,43.78444383,43.774332381,43.783552088,43.761111562,43.765609458,43.783067089,43.77879677,43.765609458,43.774819095,null,null,43.778674023,null,43.791982659,43.782317885,43.784284762,43.78345765,43.783787093,43.778819241,43.783552787,43.791585003,43.775947571,43.780712075,43.784044149,43.77500113,43.77879677,43.776156,43.775179099,43.760824898,43.764164355,44.24356955,43.916164883,44.226785223,44.179516023,44.243315858,43.789671092,null,43.81615934,43.809957539,43.823144174,43.841389376,43.85770283,43.832984665,43.842759409,43.806968923,43.843074532,43.811647483,43.795206962,43.796047902,43.80974466,43.818619663,43.790652992,43.800340767,43.769597985,43.811686267,43.812833108,null,43.829167444,43.841335857,43.817187732,43.812729818,43.812754016,43.824484166,43.812330416,43.772024737,43.778893264,43.812828493,43.843074532,43.837261874,43.818385054,43.794304036,43.821261757,43.798499043,43.756460811,43.817350409,43.836971033,43.817137422,43.792051128,null,43.813217104,43.811673653,43.778733401,43.852804786,43.817292957,43.818448673,43.808838552,43.8057556,43.806695,43.851000095,43.809992011,43.815187129,43.812733723,null,43.809988715,43.788251473,43.811107555,43.833373038,43.783287841,43.797956239,45.099046569,42.611989,42.66421435,42.571454578,42.510210666,42.624833181,42.603242234,42.629857282,42.611887732,42.580703823,44.486233033,44.480284892,44.493597517,44.48454523,44.541866073,44.588602571,44.590582398,44.570110505,44.535124194,44.562132822,44.576385012,44.59163082,44.472706877,44.481502095,44.291989464,44.439968664,44.346908012,44.490302402,44.507322218,44.476011417,44.489527653,44.488086701,44.475872829,44.497894641,44.492922966,44.48721838,44.493773264,44.468856845,44.430635061,44.438897646,null,44.4554277,44.445559123,42.97328563,42.961782248,42.964764113,43.075793028,44.670936415,42.735727672,42.735729758,42.736125091,42.729684925,43.043964118,43.939184433,43.939435796,43.947830144,43.937453642,42.555282593,42.615719006,43.555341586,43.560298714,42.577263266,42.576680713,44.180355143,43.09684873,43.10423818,43.095216395,43.082747236,43.090133611,43.101168346,43.102748982,43.030731478,43.015343475,null,43.01547118,43.02941662,43.030748051,43.027266404,43.024348987,43.015255052,43.01042631,43.007057436,43.015421802,43.023651796,43.016915804,43.017993318,42.996310927,43.001201739,42.930041624,43.044074907,42.947895932,43.042352044,43.044064374,43.058466264,43.041183472,42.975502542,43.044364246,42.928906727,43.050984488,42.902698667,42.885179174,42.889252138,43.166986574,43.173839542,43.130060338,43.164110718,43.17922111,43.164616173,43.148436397,43.19226751,43.171535341,43.167042451,43.179581627,43.192580565,null,43.047905619,43.047426458,43.075893837,43.043958864,43.043987815,43.060567767,43.060512742,43.056554994,43.052412086,43.085704412,43.039579286,43.050683505,43.074634474,43.061104786,43.085702237,43.060512732,43.060744503,43.051261619,43.054041223,43.035251822,43.06615816,43.045945251,43.035157074,43.061996395,43.060553645,43.057627286,43.017722005,43.02376107,43.015058765,42.998020557,43.014243792,43.022366008,43.016655255,43.013120324,43.017039389,43.01180985,43.01553956,43.010946089,43.01594573,43.016602058,43.013478163,43.016602058,42.988276684,43.016706741,43.016411886,43.012321194,43.005818111,42.994368223,42.997739155,43.012756357,43.014026076,43.002747644,43.016585445,43.016580368,43.005538948,43.016527927,43.010268557,42.988297856,43.016503804,43.023939959,43.016342348,43.016707822,43.002708137,43.016339926,42.9884885,42.995368608,43.016753888,43.002877196,43.016206568,43.016706741,43.006054744,43.003111402,42.996789553,43.015923528,43.016602058,42.995210161,43.016862196,43.01658751,43.023908761,43.016593417,42.996087447,null,44.799208782,44.80642467,42.603509204,42.587801887,42.600573927,42.603143699,43.296866883,44.517694802,44.520288543,44.532123838,44.508600337,null,44.523426354,44.514580987,44.519483475,44.519656742,44.522528492,44.544536591,44.527957399,44.527112285,44.512327367,44.525239558,44.527089028,44.520288543,44.528753791,44.523513172,44.52264692,42.67209187,42.670293807,42.692409304,43.113742828,42.611800529,42.615410455,44.189138975,44.171024494,44.175166631,44.175801366,44.187180541,44.160513163,44.163674737,44.191634995,44.177191174,44.171002719,44.187828359,44.184869832,44.170953597,44.210704526,44.204703206,44.204417828,44.21022704,44.209458919,44.197579043,44.20195877,44.202942621,44.225983764,44.231258299,44.202020453,44.218231876,null,44.078806,43.923729896,44.094758662,44.26773563,44.254762405,44.262930624,44.242733942,44.243915728,44.270413477,null,44.261934432,44.27298492,44.267993434,44.25472534,44.261896773,null,44.29459262,44.243963221,44.240714063,null,44.260285167,null,null,null,null,44.256319784,44.265650659,44.261934432,44.260326543,44.288864336,44.27467322,44.244016179,44.284128725,44.287271584,44.272982977,null,44.265727145,null,null,null,44.299089534,43.501906302,43.527276213,43.226906989,43.236795347,43.30058324,43.399809115,43.372484448,null,44.850724995,44.812485343,44.799570937,44.79496727,44.816074109,44.833498456,44.80534898,44.776220456,44.802163477,44.790587678,44.820333837,44.828722537,44.80563901,44.809876808,44.804949702,44.771137065,44.800277092,44.81935479,44.806579924,44.794494358,44.804998727,44.775582553,44.776099975,44.802181808,44.815730541,44.799735512,44.794995636,44.820672701,44.801518527,44.775081635,44.844276076,44.800894767,44.789275059,44.643382014,44.786116175,44.61102297,45.787067222,null,45.788960798,44.802033535,44.313265828,44.314941638,null,null,44.786758592,44.790525723,null,null,44.781531188,44.781848153,44.771033787,45.092510063,45.092757714,45.099239801,45.07497366,45.099673426,45.085370123,45.099603009,45.075451049,45.093969532,45.085327939,45.097660488,44.188722542,44.351396591,44.355835942,44.606746814,44.373046068,44.394981836,44.379514426,44.383946029,44.380300044,43.616470813,43.625050539,43.625042959,43.626974652,43.618016135,43.856541875,43.837591411,43.849592,43.855646299,43.197241965,43.240935392,43.226657455,43.22195407,44.073307974,44.085579305,44.08292477,44.085843528,44.106881575,44.075296551,44.104574253,44.083882287,44.067623138,44.07464725,44.074058712,44.072928424,44.085655448,44.079377249,44.08711402,43.012589932,43.01255359,42.988728261,43.002900533,42.99709434,43.0249554,43.006886407,43.020794666,43.002953764,43.009711673,43.012650984,43.013470534,43.020097356,42.991939736,42.980220668,43.010104428,43.013073053,43.016384229,43.023935636,42.988220117,43.012559389,43.013226124,43.010077796,43.013932988,43.133516729,null,42.988460558,43.116105173,43.049879966,43.017371638,43.119717584,43.010678011,43.112924181,42.988237927,43.128545927,43.057188758,43.074707851,43.051740526,43.036366247,43.096076234,43.089553176,45.054422158,46.207980853,46.851489615,44.19496407,44.229455671,44.237085484,44.23471915,null,43.875118506,43.875120503,43.892226237,43.903305412,44.287315706,44.281132734,44.261048021,44.295170686,44.278721553,45.134463599,45.122500557,44.974842084,44.974775211,44.962745666,43.908999075,43.924392389,43.942290953,44.055120284,45.492762793,45.479985451,45.503653726,45.474206379,44.861663177,44.862604503,44.852778948,44.871473838,44.862609663,44.870103438,44.873796833,null,44.879162452,44.877865751,44.903280639,44.871083198,44.86561671,44.861044745,45.291365845,44.961102507,45.200264541,45.06516626,44.83273607,44.835166546,44.835140753,44.837720943,44.836524519,44.649461541,44.592992348,44.9695527,44.960362765,44.950097759,44.954362347,44.954077573,44.953822781,44.971903111,44.951919511,44.976009163,null,44.983746849,44.951343695,44.960239241,null,44.954718117,44.95703036,null,44.963482141,44.959487749,44.938981706,null,44.972803285,44.951339642,44.961354624,43.552231003,43.556019199,45.401567582,null,43.782871781,43.953015114,43.899047,43.147629925,43.06215211,null,44.33779345,44.449519385,44.407632003,43.076496608,43.076451922,43.070855877,43.077396064,43.076474505,43.076793566,43.074204538,43.072258771,44.244113315,44.272874837,44.274320275,44.243896689,44.258207967,44.016651306,43.97477866,43.986620339,43.976352278,43.972863456,44.252887571,44.261860179,44.287721503,44.269360358,44.289310314,44.30182119,44.258591707,44.271554045,44.261963268,44.272978446,43.178833239,43.16640737,43.16314217,43.177602344,43.184871041,43.186421558,43.177790816,null,43.033302089,null,43.038448991,43.036609673,43.038571061,43.043342911,43.035016094,null,45.637817664,45.63528967,45.633676977,45.638732002,45.633273632,45.639869482,44.28469414,44.281812273,44.25994663,44.291991029,44.277116716,44.271425445,null,44.019655983,43.981512351,44.042301477,44.034254674,44.010766574,null,44.008970091,44.029788587,44.0549291,44.001381773,44.020209884,44.039425725,44.011039678,null,44.016595414,44.040588389,44.000501432,44.012576767,44.037121464,44.022691209,44.010524369,44.018227559,null,null,44.003576284,44.01892134,44.022149044,44.017867602,44.032100186,43.996528293,44.01077987,44.032247591,44.042751497,44.010477583,44.010869717,44.032167594,44.017872396,44.032163436,44.039836098,44.01323727,43.076986309,43.073527187,43.077750112,43.075419911,43.075309979,43.077728185,43.07530632,44.735260286,44.851214699,null,null,43.120542674,null,43.105898298,43.118524589,43.115981795,46.600416878,46.59508574,44.97449394,null,44.626672187,44.622697211,null,43.807818024,43.696139728,43.755199275,43.599356825,43.308759503,43.30882605,43.32002732,43.320243669,null,44.298205371,44.298205371,44.322452963,44.28648921,42.57537815,42.588064022,42.581180161,42.584858925,42.566315405,42.591360381,42.577669473,42.595555021,42.579705186,42.565667008,null,42.568842275,42.580903011,42.58811981,42.58058786,null,42.588265057,42.572348706,null,42.581255154,null,null,42.619055299,42.613379125,42.565617996,42.626275828,42.603713989,42.58824129,42.598357535,42.590284868,null,null,null,42.585998231,42.573736874,42.602874412,null,42.583603881,null,null,42.595674716,42.564473813,42.581180161,42.550724358,null,42.588000649,null,null,null,42.606163235,null,null,42.588428357,42.588499634,42.566346522,42.588013051,42.551688187,null,42.585005401,42.579054237,null,42.585568761,42.580914749,null,42.569311506,42.628228971,43.918745537,44.930479098,44.920230865,44.988144391,null,43.295520301,43.381619537,43.439116029,43.207126817,43.38482957,44.459798046,44.450302758,44.464746863,42.676815396,42.712391427,42.691641675,42.833078044,42.738811787,42.741333518,42.680083968,42.586777406,42.58562851,42.631707426,42.786062096,42.602633694,null,42.807599927,43.638742285,43.475064302,43.47501529,43.637323298,45.407306671,46.713716716,46.720680276,46.719314952,46.726595671,46.71405342,46.693822268,46.720809851,46.719884306,46.695536169,46.702597451,46.718805872,46.709326389,42.536305509,null,44.15366187,null,null,null,42.706284672,43.100953927,43.100558484,44.813954893,44.358785368,44.307077788,44.663629085,44.666137372,null,44.669770277,44.669943491,44.667297109,44.668220709,44.686710286,null,null,44.672450731,null,null,43.087560034,43.083421039,44.318938108,43.296635597,43.296662672,43.290906873,43.01875396,43.025746785,43.025721849,46.450335,42.959175095,null,42.952142484,42.961077067,42.959094873,42.956697362,42.96637391,42.959134541,42.930386897,null,42.964328778,42.959271247,42.958038219,42.967631193,null,42.953285089,42.950431217,42.944889712,42.959333114,42.987179157,42.959407639,42.958807685,42.963857227,42.96149313,42.952024832,42.552476882,42.507461067,42.567006765,42.522309978,42.507626946,null,42.533998588,42.559785029,42.566639768,44.445066865,44.390262734,44.440561811,43.780140528,43.118706413,43.118666036,43.126216187,43.118891028,43.11864613,43.130146402,43.10074054,null,43.114088,43.118667845,43.100085264,43.115798154,null,null,null,null,null,null,null,null,null,null,null,42.944672288,42.951774074,42.931915793,42.948263153,42.93025518,43.963504188,43.968473611,43.963043746,43.63325218,43.63267324,43.042277934,44.946855108,45.180776002,45.18156473,43.450311315,43.093929471,null,43.090993897,null,43.089739681,43.091775058,43.098486311,43.089159018,43.089071819,43.084213784,null,43.089209683,null,43.089116474,43.481251059,43.468872472,43.474804724,43.472290848,43.467358912,43.470889318,43.470889318,45.887464562,42.628987068,42.901632422,43.013586418,43.021081997,43.016900916,43.018523166,null,43.011950131,42.736214862,42.736572336,42.745281949,42.708355525,42.737287231,42.733298756,42.719308346,42.721086911,42.662224488,null,44.388341976,null,44.252023145,44.241151604,44.939564821,43.67100715,43.381192569,43.383684233,null,44.706026177,44.880138284,45.30700801,45.30969506,43.532482147,43.532504481,43.575545006,43.609237806,43.573647125,43.613290674,43.614876105,43.585589245,43.5858193,43.589246133,43.588902848,43.603891954,43.601015604,43.613936358,43.595224713,43.009978975,43.010138222,42.939491753,42.989858366,42.951606037,43.014446129,42.986345788,42.976999228,43.068986074,43.048988104,43.048881996,42.960576668,42.959114467,42.977826643,null,44.925387273,null,null,44.897326087,null,44.92047516,44.899251833,44.905487987,null,42.917021281,42.917908351,42.959156886,42.95913361,42.943645178,42.949688341,42.957332748,43.192304488,43.1919532,43.221018592,43.194850549,43.216632058,44.023541617,43.427419868,43.454639319,43.199689062,43.496014182,43.414883057,43.344918329,43.447939665,43.441305286,42.990968839,42.978112738,42.99427663,43.001526216,42.989097298,43.182195265,43.184832182,43.312455546,45.971183215,42.72689185,42.747753143,42.736958869,42.704130244,42.726018481,42.73177984,42.742297665,42.725905397,42.704161116,42.705032386,42.736239565,null,42.739273753,42.696399689,42.733247373,42.718713863,42.712976791,42.718712666,42.745294972,42.734520115,42.719116851,42.720685457,42.719735543,42.707560116,42.724476022,42.707486746,42.718517303,42.747771976,null,42.769659072,42.702311067,42.748537161,42.72597653,42.712364966,42.700648882,42.710701314,42.752044563,42.748499961,42.724583095,42.696792866,42.712390625,42.721478448,42.710731976,42.710938837,42.707611448,42.747942067,42.750542881,42.708721814,42.731551773,42.712390625,42.731625204,42.718469723,42.724756643,42.745859921,42.703743083,42.725983607,42.73155832,42.736003228,42.715522934,42.696997646,42.712350213,42.71845858,42.747721104,42.737562656,42.725169925,42.742359398,42.773587616,42.709616208,42.734957781,42.742265498,42.768171901,null,42.722644806,42.731447108,42.749849912,42.703497128,42.747713234,42.712440519,42.682980387,42.652160153,42.724738524,42.722594387,42.685367003,42.678664121,42.677288054,42.676654187,42.685551476,42.704975267,42.679040295,42.658996315,42.661115308,42.68613184,42.69682695,42.720160027,42.694896476,42.672330393,42.715454723,42.700113996,42.700868469,42.696330813,42.69383175,42.656541965,42.686663224,42.681340553,42.681068025,42.711865642,42.729036882,42.599905267,42.604122328,null,42.582848566,42.591889783,42.592405626,42.605620983,42.590339537,42.592661105,42.603286622,null,42.592415912,42.591782035,42.591706771,null,43.968056867,null,43.432683795,42.496232773,42.514265988,42.507533284,42.49964809,42.526918897,42.511057093,42.50135494,42.520605467,42.496229592,42.521498528,42.506898005,42.525612471,42.524146906,42.511452502,42.511095031,42.525100832,42.532875061,42.500575811,42.507302338,42.498594994,42.837383214,42.833476078,42.835363984,42.832107157,42.840744901,null,null,42.918550907,42.863355443,42.874271872,42.871109175,43.009885536,43.005867032,44.497264495,43.329865267,43.327730643,43.339322479,43.325277893,43.338366102,42.531742454,42.534047806,42.886859932,42.916684386,42.918096854,42.890434181,42.756331927,42.790307364,42.8091572,null,null,42.761188143,42.7580845,43.232981102,42.678544716,42.685650074,42.680863598,43.013392566,43.048095871,43.060596466,43.108429307,44.180911333,43.194405658,43.196535373,43.192762889,43.161920856,43.18686663,43.188118413,43.187472605,43.18939916,43.194932548,43.196317916,43.189871749,43.19614788,43.190655777,43.194190911,43.196697528,43.686723626,43.694248328,null,42.632508213,42.632859069,45.913927459,45.923946935,43.077417113,43.074646212,43.074643198,43.078410609,43.495731886,43.396415703,43.40244485,43.427060952,43.422409989,43.412222417,43.411959521,43.393650555,43.398737164,43.426598852,43.412232671,43.419551834,43.397661441,43.437067097,43.426957221,43.410822931,43.426744787,43.426774488,43.426909793,43.426873461,43.439462189,43.073223114,42.834926088,42.826808223,42.948302219,42.934794198,42.944698376,43.76074949,43.779902062,43.773930821,43.766424883,43.768147998,43.760761496,43.753515024,43.757466303,43.757457481,43.753085979,43.764744737,43.746533863,43.770376247,43.756362416,43.765181887,43.764327309,43.759978295,43.728411598,43.7321126,43.727927391,43.712767649,43.745421368,43.76073323,43.77395797,43.758274838,43.734697164,43.773873484,43.752784916,43.760714082,43.704348825,43.741636992,43.656785669,43.884950426,45.156226538,45.156397088,43.458453742,43.456439513,43.472782707,43.45838141,43.466192176,43.069814458,43.032827226,43.090839567,43.016998943,43.053635419,43.01827189,43.038132675,43.033689072,43.018013392,43.036114144,43.061342462,43.087473988,43.066945608,42.931189165,42.929759722,42.941222566,42.928584783,42.913751654,42.936632185,42.927419147,42.497213868,43.003456381,43.740499692,43.078287889,45.139963948,43.745506619,43.748202205,43.746990204,43.387472958,43.389770895,43.405001185,43.376271081,43.562922505,43.540463977,43.570509447,43.545726278,43.549120351,43.562077243,43.731945839,43.722329499,43.729279746,43.728467376,45.470990388,null,42.585407267,42.619187021,45.397290771,44.42197961,44.181756608,44.944556104,44.989544874,44.951789996,42.714051009,45.358467822,45.09701525,45.166955409,45.078481491,45.902700628,46.139599787,46.098651371,44.892422587,44.884935565,44.869178772,null,43.104402061,43.134152,43.104991403,43.077369998,43.03875235,43.044362797,43.180653244,43.033612287,43.060679401,43.072303152,42.987226637,42.98839417,43.11933171,43.148632888,43.089885628,43.045898028,43.046080074,43.029569971,43.064273056,43.07174021,43.006681014,43.104496951,43.11101744,42.980976835,42.98105091,43.117036266,43.124905787,43.097161313,43.031413185,43.067904525,43.028659127,43.031440454,43.00298424,43.054667098,43.067813017,43.134044842,43.082033986,43.073218187,43.043233388,43.058316323,43.038575123,43.06014895,43.059146891,43.100825954,43.184217922,43.090025403,43.058848736,43.062316676,43.037744073,43.043522562,43.027330605,43.032619789,42.984636063,42.986437398,43.067813214,42.981254467,43.087970621,43.066116528,43.075165809,43.030003241,43.074164803,43.067971865,43.038699093,43.060616113,43.044695411,43.036936776,43.078097757,43.082070115,43.119426773,43.015718912,43.022691885,43.017080594,43.021704236,43.023196864,43.054617539,43.060127071,43.045741412,43.034145323,43.042861336,43.06006963,43.052990579,43.039812375,43.037149414,42.983367851,43.089815997,43.138960435,43.014182794,43.087828987,43.071563236,43.067961243,43.061042953,43.105752104,43.089677595,43.052551778,43.089592121,43.089948673,43.119282148,43.089848592,43.021909108,42.992037364,42.997844162,43.074218172,43.089657631,43.136584369,43.061971514,43.024473435,43.067911012,43.093495677,43.089508334,43.096746388,43.085776004,42.984935214,43.14814712,43.062394178,43.000176295,43.049713936,43.00291829,43.042192259,43.111992887,42.997259338,43.023222111,43.067936092,43.043887146,43.041264424,43.01704923,43.119334816,43.002350875,43.052490139,43.110617388,43.074513788,43.148545273,43.12253899,43.149115913,42.959273203,43.083715893,43.041481889,43.070988212,43.148239087,43.098633618,43.070116548,43.032529472,43.075200234,43.044339021,43.063073727,43.031438479,43.09071051,43.106083552,43.045731103,43.053978211,43.035030831,43.036023112,43.060127071,43.060232762,43.067305942,43.067554123,43.073739698,43.03881159,43.071038558,43.041536745,43.047990375,43.053256414,43.056725053,43.071015876,43.07430562,43.072353577,43.049358368,43.089414973,43.040272001,43.075211698,43.022955445,43.044272764,43.07616705,43.082671469,43.060364019,43.040256,43.038703155,43.104649606,43.067845518,43.09447459,43.006472878,43.012391429,43.01884733,43.104629964,43.089779297,42.988571902,42.989506144,43.089816352,43.089819449,42.99121123,43.075217907,43.034953498,43.003014003,43.069630608,43.002938226,43.008296262,43.060616113,43.008480459,43.10462295,42.995112555,42.995565737,43.076798824,43.07995951,43.075801754,43.069281064,43.012304433,43.014160049,43.090001065,43.002854596,43.112425844,43.049987391,43.015083408,43.025983258,43.021594686,43.05250829,43.038712521,43.040834226,43.012302707,43.048147023,43.060149957,43.060615185,43.026717019,43.089877173,42.951981626,43.02323439,43.010559595,43.07536501,43.045700879,43.045725373,43.041419113,43.033049433,42.99387913,42.973762173,43.003135817,43.001983803,43.069503776,43.074919618,43.067390344,43.03755282,43.034772652,43.056541583,43.060268943,43.082385708,43.077895982,43.053846939,43.052410036,43.089597021,43.073151775,43.071124872,43.060600394,43.042432918,43.022488328,43.023755704,43.022220024,43.094667704,43.06808852,43.023224829,43.021614304,43.033890558,43.041430565,43.074627322,43.106592006,43.10462631,43.071120875,43.086403913,43.119136801,43.164237873,43.112160228,43.133779864,43.09895653,43.127821561,42.995858917,43.119129084,43.086366068,43.017049028,42.951932432,43.02258979,43.089640578,43.097513703,43.067608129,42.997689388,43.002688814,43.104816906,43.069723574,43.078279385,43.017028685,43.007240892,43.002881967,43.016676675,43.021122057,43.002854596,43.004742921,43.097144059,43.016941745,43.012290835,43.003000897,43.022993498,43.014132048,43.074760718,43.06018974,43.08849967,43.064027353,43.074766588,43.047174913,43.067910974,43.067944847,43.039096229,43.104508239,43.082771561,43.090015755,42.988572713,42.965491519,42.98824088,43.004550856,43.067911206,43.081135442,42.981227479,42.956957675,43.003435598,42.984852231,42.986719544,42.997010068,42.986518097,42.98961946,43.001130765,42.984935214,42.929277831,43.096987983,43.099059501,43.050508534,43.104992996,43.112103008,43.067870486,43.037385042,43.060262998,43.06872471,43.073564885,43.069534179,43.06018974,43.039812375,43.031329917,43.085748195,43.043252462,43.040259219,43.085935067,43.081814448,43.078413904,43.141449998,43.147979014,43.089659288,43.014132048,43.067470227,43.119537845,43.127705842,43.162812434,43.054050656,43.010328797,43.037377683,43.02246109,43.020165864,43.053431215,43.028822274,43.043204001,43.024683914,43.067391041,43.04166839,43.036360364,43.041643443,43.054630996,43.040301125,43.090006724,43.053342395,42.98667355,43.112331551,43.074760718,43.037744073,43.03871018,43.069535566,43.097891918,43.078027122,43.111900953,43.022586006,43.0826696,43.091776726,43.090003174,43.103698057,42.988294615,43.017048848,43.06064711,43.043024491,43.060685438,43.065470246,43.119223096,43.090299868,43.111851843,43.071650984,43.068873226,43.108347867,43.097129563,43.075229677,43.110494647,43.104918647,43.111963697,43.104985973,43.140674745,43.039027471,43.058037548,43.067823336,43.030231587,43.067391041,43.049987391,43.048969546,43.041674411,43.040285257,43.038384313,43.060616113,42.937699301,43.02360384,42.982168702,42.981081908,43.06728746,42.959273203,43.079984405,43.089789942,43.080321957,43.071272381,43.067520121,43.070243126,43.080116194,42.991998845,43.089630552,43.074871068,43.074522635,43.078267275,43.068448159,43.091255077,43.082463387,42.994614018,43.04424598,43.089443871,43.07521656,43.016345359,43.081363115,43.068479434,43.089877835,43.069852631,43.072041711,43.064754708,43.005739171,43.030530408,43.003684439,43.102074657,43.097039706,43.097093398,43.104669631,43.056163688,43.032440841,null,43.019723091,43.026306475,43.104629964,43.09002666,43.080809094,43.089884384,43.066813012,43.057045356,43.051773307,43.071282981,43.090218698,43.074834183,43.082070082,43.098985237,43.067520121,43.089170226,43.088865645,43.038797611,43.124574834,42.98841095,42.988970991,42.988293546,42.974338701,42.93026634,42.999209539,null,42.981234101,42.979768371,42.98760964,42.993965766,42.973800557,43.139032349,43.11928185,43.115824703,43.117407419,43.13401691,43.184396547,43.163492849,43.119407471,43.022226175,43.017049042,43.008593116,43.06783039,43.043246466,43.060292696,43.04299614,43.067386,43.043232143,43.08760717,43.089526194,43.00822778,43.111513699,43.096203893,43.177828077,43.043254,43.050005447,43.067908435,43.024240546,43.067913385,43.03869352,43.066273612,43.031413185,43.03886464,43.060615579,43.1119296,43.071589469,43.042692933,43.000867412,43.017027079,43.017500445,43.016007516,43.002745206,43.012401386,43.00733531,43.006259305,43.089361861,43.040218816,43.029416547,43.044280151,43.04018716,43.079460907,43.060115774,43.045834915,43.049667722,43.031520844,43.036037021,43.059579846,43.079089203,43.075350291,43.104990583,43.104990583,43.083648079,43.081675302,43.090044526,43.110663419,43.068042807,43.090746167,43.090030514,43.089857861,43.075543933,43.067944987,43.175351354,43.569477073,42.813977258,42.720254283,43.2526578,43.459003885,44.858313166,44.884188906,42.585209899,45.750246357,44.227115802,44.628963068,43.769879123,43.791834066,null,null,null,43.024665438,null,43.812953324,43.038671404,43.036109869,43.038101727,43.040246365,43.037014492,null,43.038816752,43.038663299,46.880167017,43.141373787,43.055789289,43.046911442,43.06018974,43.002957381,43.034611953,43.037681686,43.120501069,43.014150976,43.103697236,43.053494469,43.014249613,43.017445828,43.022479793,43.014234765,43.044545583,43.036516694,43.089733976,43.0390093,42.988572713,43.119327996,43.067978806,43.176794767,43.119123278,43.12776445,43.132307481,43.022438041,43.074727557,43.108498415,43.071981659,43.070916969,43.078604952,43.060613896,43.111499588,43.147836016,43.136420097,43.132878833,43.106390686,43.059856563,43.072140452,43.070089315,43.073186751,43.076083628,43.084501328,43.067690493,43.073345003,43.080048439,43.082594869,43.081021202,43.086300249,43.078274577,43.073317945,43.080035719,43.073245035,43.076561003,43.084761109,43.067748185,43.05091273,43.074314117,43.053586468,43.089655182,null,43.07662685,43.067791253,43.067767222,43.071746767,43.072010659,43.094760149,43.079354865,null,43.066487161,43.074681732,43.071859941,43.098154642,43.077750878,43.084761109,43.150406852,null,43.08399111,43.045091592,43.046219021,43.047094036,43.03883478,43.044547197,43.041715724,43.09169554,43.067631086,43.056905501,43.064709527,43.075783209,43.073411431,43.097421956,43.121027088,43.073265035,43.031813395,43.092731657,43.09186533,43.076232513,43.070916969,43.089705158,43.050053276,43.05288946,43.129073673,43.121615913,43.133406854,43.129950544,43.132935186,43.130040149,43.014331253,43.050026466,43.044385056,43.040942844,43.110206421,43.031832995,43.065328974,43.072271181,43.064752717,43.072003961,43.04574895,43.121027732,43.039844992,43.102384539,43.122534692,43.131755183,null,43.043483602,43.033117724,null,43.070916969,43.073241182,43.077382569,43.079495042,43.078424921,43.056612533,43.041335159,43.039181389,43.050948159,43.068695101,43.045712867,43.093824822,43.103377041,43.108619864,43.09418446,43.073186751,43.072116082,43.073192998,43.073122803,43.031787853,43.070835568,43.067769277,43.04162881,43.087972877,43.07874743,43.047235976,43.071522908,43.064389618,43.15496372,43.041770196,43.045031804,43.071029923,43.073370661,43.064039717,43.073169131,43.067742164,43.072111853,43.067802379,43.073530616,43.066320606,43.059469011,43.067112982,43.066968875,43.055940046,43.092368063,43.110965488,43.091192896,43.115755422,43.079521769,43.06950797,43.078863353,43.067633586,43.071945081,43.064241389,43.060998075,43.106948056,43.126342245,43.073302038,43.072286005,43.067806943,43.071932369,43.068831907,43.12911904,43.087571174,43.073265035,43.083702429,43.072015579,43.077382569,43.110992268,43.058354085,43.079736879,43.060805243,43.066409996,43.060643585,43.041763008,43.035264336,43.148345388,43.121275488,43.001442095,43.031907874,43.104388861,43.054046377,43.096161875,43.125175362,43.087073488,43.076693365,43.078443314,43.07893496,43.087545866,42.929252994,43.142397715,43.137465894,43.149676708,43.009668854,43.187304029,43.199174309,43.181572925,43.196703076,43.18134095,43.18469833,43.174648374,43.188722804,43.17636066,43.177644437,43.187675143,43.166647727,44.492343299,44.524249484,44.519333287,44.516818867,44.513249955,44.512091621,44.52390365,44.519045247,44.502484126,44.509531902,44.508393086,44.513662684,44.508270385,44.511317041,44.500671931,44.530555242,44.516370208,44.516487939,44.525323347,44.523825815,44.510271164,44.517433745,44.518163709,44.524756948,44.543691916,44.509203603,44.519920614,44.509626627,44.504859595,44.502554687,44.526627042,44.523051785,44.514272439,44.526190735,44.514342786,44.525039246,44.519315215,44.512997709,44.484578839,44.520465468,44.512299116,44.498046101,44.509492843,44.516100227,44.513744697,44.507824569,44.525027036,44.521334023,44.511140399,44.535963344,44.511770573,44.499978184,44.512686052,44.501655781,44.492491599,44.495776675,44.487545435,43.084441233,43.0443585,43.07465363,43.038821519,43.012888166,43.163601753,43.776136656,43.769424361,43.783725539,43.784380459,43.791837253,43.784118754,43.765614933,43.794203344,43.791548716,43.772980637,43.783998518,43.78363275,43.75245266,43.769282853,43.783579706,43.783565599,43.773260489,43.777174144,43.784208017,43.77880275,43.754128512,43.791707564,43.780873117,43.787942517,43.766814887,43.781118873,43.783830731,43.794767954,43.778863178,43.764527482,43.773967617,null,44.083868731,43.766145854,43.855468349,43.808758206,43.831649707,43.794305955,43.804640008,43.810054651,43.808727858,43.824419898,43.81165119,43.803717966,43.815014117,43.859560118,43.83710247,43.841390172,43.79693222,43.77488289,43.821912848,43.830138015,43.81615902,43.836975811,43.841389547,null,43.804786322,43.811039686,43.788536343,43.76515793,43.770362816,43.812823838,43.801500143,43.808670045,43.81420317,43.804633495,43.843972281,43.785252052,43.766430259,43.82983109,43.801488196,43.835843342,43.808727858,43.808168079,43.810046735,43.804593728,43.808135085,null,43.859273567,43.806530385,43.770130929,43.804643688,43.812758992,43.814987158,43.766146177,43.811649,43.813824344,43.868783394,43.817317784,42.515795328,42.629083244,42.667880145,null,42.583034272,42.581684105,42.640565051,42.606445263,42.579403086,44.453715447,44.4822686,44.469935066,44.479006829,44.485606617,44.558187631,44.554715326,44.466108577,44.468607694,44.478216112,44.467820104,44.467713425,44.458668422,44.424051248,44.357192238,44.49580555,44.499629108,44.49712518,44.499818306,44.484326753,44.487821368,44.442648882,44.408001661,44.452144301,44.448926055,44.447568871,44.45234222,44.443283426,44.438975158,44.44514982,45.105260655,42.550527908,43.076073177,43.075254612,42.735384677,42.734324999,42.733014291,42.735503174,43.028934691,43.044347393,43.049049661,null,43.027950236,null,43.942665891,43.939217386,43.939185275,43.9393458,43.949911175,42.559023538,42.615779193,43.557015609,44.210608856,43.104280662,43.089539005,43.099821328,43.096846803,43.105121521,43.085388612,43.090131876,43.096787309,43.030197418,43.015378049,43.022232056,43.027736375,43.019245634,43.019849606,43.031410752,43.029442507,42.999250563,43.017340261,43.029495518,43.009862883,43.031215841,43.04347686,43.042383949,43.022392741,43.100561112,43.03966396,43.145857278,43.0407656,42.915249386,43.042294365,42.923477581,42.920591128,42.92456744,42.902335324,42.915805521,42.881075231,42.916901898,42.923395673,42.872606457,42.916817979,42.922806979,43.142021654,43.179910268,43.187338964,43.166166499,43.164632971,43.172119983,43.163739008,43.158820086,43.170301382,43.069663277,43.064699087,43.050027997,43.066842752,43.066548745,43.047825407,43.056661631,43.047745453,43.047079784,43.047337954,43.060804324,43.060495576,43.074750174,43.049316525,43.036078165,43.090264743,43.049186282,43.050077201,43.068788712,43.083075993,43.056292959,43.038511968,43.063761704,43.060686082,43.085360404,43.059892988,43.023079831,43.017448622,43.021624061,43.00274335,43.016655123,43.004794093,43.002807887,43.003251976,43.002687162,43.002785787,43.002934614,43.002802124,43.002535632,43.003478578,43.022238442,43.016562525,43.016938069,43.024025998,43.021988615,42.995462862,43.016577102,42.989261513,43.00394696,42.995455069,43.002944116,43.00288383,42.988282435,43.012331652,43.002722229,43.0167072,43.01233671,43.012005033,43.004587149,43.012700712,42.985549514,43.017337453,43.01671725,43.011436983,43.016655123,43.023896929,42.994498674,43.023688141,43.017190058,43.011960324,43.002888487,43.016668377,43.006519015,42.988199525,43.016535912,43.010703139,43.00326599,43.002479284,43.013036582,42.606182709,42.602964123,42.603489189,42.599627857,42.60295492,43.271015327,43.27126412,43.273476512,44.519582562,44.522376108,44.497571448,44.523499288,44.541079983,44.534016571,44.523451505,42.664719821,42.673560376,42.613202061,42.609635306,42.611706597,44.176894888,44.178334228,44.177878093,44.154847531,44.182173328,44.164642209,44.192068339,44.16605551,44.170815797,44.163571933,44.178227831,44.1894888,44.190407866,44.200849397,44.196012585,44.210112482,44.204599655,44.042110948,43.987960427,43.957954413,44.018694924,43.97025461,43.948012415,44.155123526,44.171490732,null,44.288996197,44.269894839,44.261777967,44.287224292,44.273130743,44.261894898,44.258045594,44.240840468,44.258052786,44.230352197,null,44.267265755,44.268086205,44.287449212,44.248312358,44.264022898,44.265748363,44.269289472,44.258071023,44.243212688,44.272928515,44.263074464,44.272912144,44.243995963,44.262645629,44.287250801,44.287410617,44.249927804,44.280465672,44.255356067,null,44.258854725,44.261820914,44.243763633,44.270524262,44.262299591,44.251078157,44.266380171,44.288270755,44.265861393,44.269660447,44.28726835,44.240420814,44.258436208,44.254087593,43.261456252,43.368506236,43.251323408,null,43.310014479,43.251249346,43.281090761,null,44.803596318,44.812487726,44.816099581,44.833825378,44.820793919,44.821460148,44.769546125,44.80211195,44.772922366,44.841799347,44.781975665,44.793338581,44.80539685,44.798782955,44.814712652,44.815536116,44.846631044,44.814271597,44.798736865,44.806966204,44.793982944,44.776785957,44.776294615,44.818838154,44.811014888,44.802164541,44.8214011,44.801145506,44.7843436,45.881570406,44.786841712,44.78210847,44.774197086,44.775319049,44.781720269,44.774847185,45.095981454,45.092986873,44.458291033,44.356466796,44.357736297,44.357529453,44.606748702,44.612318799,44.395228499,44.380421025,44.388133987,44.388744683,44.390477968,44.385375824,44.38509102,44.385874497,44.380382692,43.625913947,43.627959173,43.625950012,43.686175733,43.207082126,43.206904797,43.230163679,43.251039723,43.221507026,43.231212673,44.07455633,44.090677101,44.089023152,44.118740304,44.116055209,44.092994949,44.073700028,44.083640621,44.077036502,44.084520118,44.076512178,44.090588296,44.072964155,44.125846701,44.088964038,44.083831058,44.080952372,44.095403739,44.127564591,42.988260547,43.012885704,42.999675882,43.020418315,43.021236083,43.044079264,43.009675177,43.03417707,43.00529007,43.022085349,43.009707318,43.036258645,42.980220668,42.988307597,43.045317192,43.029938769,43.014991688,42.988033768,43.006594258,43.008247449,42.988430497,42.999184636,43.027532063,43.012536386,42.988272507,42.993450743,43.009711557,43.012488318,42.985398754,42.997416684,43.032233148,43.013252553,43.004530551,42.979846651,42.988241644,43.075435664,43.094604061,42.878950901,42.966559812,42.891500887,42.9883252,43.113014,43.142377177,43.133702893,42.975119688,43.013447577,42.975850322,42.988355004,43.193060943,43.013968485,43.058101012,43.123139936,43.072165749,43.102231262,43.102438185,43.102609098,43.105657153,45.054418612,44.336746479,44.063590311,43.927842788,44.157286418,44.008193456,46.840323622,44.22695447,44.218464363,44.216324192,44.240738692,46.599036033,43.870449341,43.869400291,null,43.879758237,43.875691881,43.896276333,44.27127294,44.288294019,44.268574357,44.290297804,44.260921202,44.286702386,44.295827174,45.303402453,45.122630398,44.963517784,45.009310976,44.884079661,45.139031321,44.963142589,44.955111397,44.976047837,45.667053561,45.51335049,43.844772367,43.921508841,44.02506289,45.518429572,44.869917654,44.844998242,44.854196081,44.850044136,44.844288658,44.849639464,44.876404535,44.875566044,44.875463925,44.875527479,44.911166802,44.873834751,44.912524089,44.876502407,44.900923457,45.188584352,44.893039781,44.572319043,44.840006519,44.96095635,44.955048511,44.961474142,44.97362121,44.961322604,44.952419988,44.962788671,44.960904897,null,44.971066505,44.961211602,44.959161243,44.963893432,null,44.95524867,44.954460705,44.957012312,44.972755058,null,44.955605472,44.961375301,44.95746035,43.388335671,45.792229794,null,45.404131333,43.96258214,43.963102956,43.948087127,43.961132888,43.899142366,43.136302741,44.289721389,44.337489235,44.436869614,44.329157967,44.442430715,43.078658399,43.077281493,43.07510146,44.342887219,44.35774363,44.381647549,44.265847598,44.248271164,44.316917551,null,44.320967044,44.000975196,43.986528398,44.019881057,43.984027435,43.984494035,44.000974477,44.258549588,44.272972155,44.301841418,44.246756049,44.259568033,44.270944199,44.263621253,44.25868516,44.283276884,44.273151302,44.273148758,44.292581253,44.287255602,44.261079374,44.267536969,44.269132023,43.178693763,43.178512449,43.17847018,43.17814183,43.192477107,43.167092141,43.042003969,43.099455774,43.033256121,45.645285475,45.667420118,45.639343996,45.63564754,44.277466104,44.283264503,44.258032123,44.028357009,44.027829681,44.008749994,44.02508022,44.010909281,44.015977248,44.022579677,null,44.026020849,44.032128576,44.014515599,44.015955594,44.020331441,44.032111003,44.015004185,44.039462847,44.014438672,44.010587033,44.022191577,null,44.039388517,44.022893287,null,43.988337856,44.009431946,44.004491441,44.02907568,44.034193402,43.994789994,44.018159108,null,44.002915796,44.012236898,44.010909281,44.019071717,44.012691652,44.016071556,44.017944761,43.994044728,44.022437836,44.019506962,44.022138178,43.970718436,44.022112323,44.03503676,43.075255077,43.075311971,43.076330122,44.628377845,44.698886567,44.924741584,43.107624433,43.111288408,44.958998262,44.91088,46.588918563,44.609696784,44.604694431,43.914064661,43.816511385,43.777265576,43.324003104,43.335297729,43.31852219,43.319969636,43.308255351,44.358854197,44.260205836,42.569218272,42.582642847,42.588115626,42.544031164,42.587937261,42.589613192,42.587984375,42.591982632,42.577782575,42.581603149,42.565653261,42.547062076,42.588644906,42.597848167,42.565509201,42.590839313,42.554631546,42.580732115,42.569995552,42.602959212,42.578677599,42.602971019,42.580664229,42.588078494,42.568699998,42.572148969,42.574000444,42.577045693,42.596169109,42.5777007,42.564259098,42.566097829,42.558904401,42.565277898,42.581779624,42.588302752,42.582589558,42.577616097,42.559256654,42.565512504,42.563585027,42.635012066,42.602900676,42.588498504,42.580863181,42.587959268,42.59717478,42.551447458,42.572340636,42.551685485,42.566061276,42.597155709,42.564364471,42.595584153,42.601345974,42.577228738,42.581369309,42.588031323,42.579052519,42.587728645,42.588098214,42.5806669,42.577781661,42.568612392,44.918476629,44.921689906,43.81364459,null,43.322532457,44.497027024,44.454317066,44.455175767,44.450178069,44.46952227,42.83014679,42.754379272,42.807665501,42.63321334,42.63496723,45.45732454,43.533882913,43.577093811,45.399256932,45.412070065,46.721456104,46.66696167,46.723627031,46.706880397,46.720646599,46.721970784,46.719934684,46.720663254,46.706321143,46.719308207,46.73191906,46.724348736,46.713413861,42.500558664,42.538321292,42.537640831,44.148593516,44.154780985,44.153108189,44.156079696,44.164938842,44.152734676,44.152593032,42.812664933,42.834749856,43.126097251,43.111769698,43.121044316,43.111057224,43.059732613,43.105118728,43.101463537,43.07648386,43.102335563,44.610065106,44.670991216,44.655505883,null,null,44.679093791,44.667159572,44.666552138,44.666700011,44.686385434,null,44.66235058,44.673418527,43.078288836,43.27928979,43.014404319,43.013440023,43.022021576,42.959257757,42.958716132,42.971342431,42.959404851,42.954357605,42.966502475,42.952051129,42.966594701,42.954020091,42.952693852,42.965112657,42.961872268,42.967474323,42.966996931,42.987876642,42.959402381,42.963016982,42.959130051,42.962574769,42.963878301,42.95119967,42.961944662,42.95940417,42.568280965,42.565335946,42.565139319,42.504275354,42.56197256,42.510888202,42.567220426,42.52206708,44.549619768,44.670730618,44.671246654,44.657190666,44.319482369,43.118419858,43.111391538,43.113872032,43.115638312,43.129953807,43.135229004,null,43.122595953,43.120260927,43.124758555,43.143706846,45.123570467,null,42.91433215,42.879120702,42.894562538,42.915375639,42.886795415,42.88679774,42.863246362,42.881874855,42.928682154,42.901114367,42.928578193,42.845023992,42.866711646,42.93664029,42.947781904,42.949814084,42.945364822,43.968050536,43.968248463,43.968446852,43.036069692,43.0392658,44.558780332,44.552750029,45.181886474,45.180418669,45.181739084,45.184974145,43.451632755,43.089159018,43.093527404,43.089165,43.089209145,43.095683353,43.085089906,43.089070712,43.469089288,43.45558617,43.467261148,43.463475174,43.463723419,null,45.881201094,42.910690386,42.92355385,42.909528695,42.910881381,42.900710668,42.895742538,42.902693144,42.897948208,43.018928287,43.020542852,43.013421012,43.016885898,43.006058042,43.016735978,43.013094011,42.678484193,42.722908774,42.691702514,42.696916969,42.719055194,42.718326485,42.720127663,42.682929134,42.736608724,42.697528839,42.718692023,42.717187167,42.719100123,42.719230232,43.884200816,44.026265773,43.796150056,43.795512279,43.796846761,43.802026049,43.796548293,44.390797055,44.388335955,44.244460967,44.937059006,44.914894559,44.925905853,44.936964541,44.937460172,43.778812452,43.884976284,43.881355371,42.91052062,44.867722749,44.891268101,43.531740755,43.533353433,43.532515194,43.532015792,45.148986835,44.759585884,43.598534763,43.603061349,43.582692676,43.613784453,43.587751597,43.596850308,43.582844265,43.589239664,43.59950157,43.588858279,42.856483132,44.962478941,42.96426521,42.973634364,42.954961014,43.059922771,42.535176392,42.574683814,42.57989014,42.973611271,42.959136304,42.971177083,42.959097635,42.60439368,42.984421493,42.847032654,44.90464119,44.912708798,44.921116817,44.912856335,44.923501303,44.895312553,44.908670564,44.94521598,44.909971553,null,45.30679016,45.358706618,45.317840849,42.918622203,42.921540331,42.918736516,42.914682078,42.927001987,42.919553739,42.951912459,42.937361025,42.954849053,null,null,42.945049478,42.95913361,42.943656869,42.949202737,42.957347241,42.944556433,null,42.964022712,43.235543517,43.208996031,43.228768352,43.216340839,42.990887827,42.999197372,43.184831361,43.189382981,43.187131317,43.184831361,43.333359797,43.329421062,43.334655274,43.334560738,45.970177862,42.693234538,42.718512764,42.730497859,42.752458923,42.696148689,42.71949372,42.742311106,42.718306309,42.718469077,42.72592865,42.718529076,42.704879279,null,42.718713875,42.704303068,42.712474135,42.707547472,42.753838903,42.712230127,42.714513728,42.725965628,42.723225216,42.724890979,42.747092899,42.726124263,42.71640197,42.718469387,42.738105113,42.734346387,42.755474109,42.737769974,42.734225786,42.704249393,42.726758533,42.702518004,42.718775112,42.710721559,42.717013236,42.731802399,42.727850901,42.704869679,42.712435073,42.741886281,42.735135934,42.749869309,42.707769087,42.71963479,42.700309802,42.73683044,42.721347835,42.727192517,42.762715469,42.727414427,null,42.704811301,null,null,42.697957894,42.64977233,42.672380579,42.683222119,42.719038945,42.693591382,42.730161376,42.680187539,42.716493644,42.685611752,42.68066957,42.704368972,42.710269928,42.679110302,42.698673143,42.69229084,42.686460638,42.650066126,42.676391602,42.67642997,42.67249393,42.71354432,42.675984586,42.674122548,42.701884887,42.710677432,42.686243796,42.591755798,42.592977518,42.596365244,42.60507641,42.592571103,43.922906836,43.803393134,43.52261578,43.513919311,43.522620478,43.79199309,43.500623248,42.525641036,42.526070665,42.522079016,42.501742426,42.520119647,42.540930172,42.522011903,42.506611345,42.515958912,42.541395021,42.516135407,42.499848447,42.523754181,42.917595777,42.918925567,42.85212368,43.009863033,43.010226502,44.265675456,44.492520835,44.52307792,43.336066105,43.34138517,42.531111668,42.902983842,42.904358504,42.906887664,42.903230128,42.915260222,42.926606808,42.910632094,43.234459354,42.692201948,42.679053922,42.685709734,45.828988658,42.892863854,43.009456307,43.060790136,43.024217869,43.120680342,44.077126885,43.185552803,43.193572264,43.190315179,43.193018037,43.194668465,43.189958364,43.199024896,43.177947019,43.16268586,42.636811289,43.077885229,43.076245674,43.314637332,43.338735175,45.449241873,43.495660898,45.165625293,43.430219147,43.414707519,43.430464698,43.427625157,43.424544359,43.442520366,43.396367882,43.428260971,43.397621099,43.426715785,43.428174561,43.397920705,43.412223668,43.398810137,43.398822438,43.426785736,43.427228126,43.435044636,43.438904786,43.441326042,42.839943819,42.834219603,42.834844736,42.827468272,42.834298028,42.83673538,42.839693044,42.924393913,42.936053851,42.93996648,42.948292089,42.94500864,42.934606009,43.750645245,43.728723347,43.702170828,43.754406838,43.775303644,43.760743687,43.736439041,43.751521231,43.730251913,43.760730186,43.756107807,43.754026899,43.747885187,43.764786435,43.773955791,43.749071181,43.799282146,43.75348217,43.713920711,45.16023623,45.140583129,45.132168044,45.132068109,45.140521699,43.465938541,43.445581356,43.489991655,43.457759148,43.449014402,43.459508471,43.448632143,43.016605595,43.090345996,43.057547081,43.089978755,43.017717359,42.926848765,42.925844701,43.003219746,43.004402588,42.998688278,43.00447874,43.076764471,45.133811645,45.15361055,45.13997039,45.138536922,45.134718658,42.86144367,43.749907698,43.751855366,43.746982573,43.389436865,43.533885387,43.564210473,43.570061874,43.539688654,43.540744441,null,42.609553788,42.763499323,45.092298804,44.973685911,43.038506673,42.628843662,42.533042568,45.672306061,45.912764289,46.141670348,46.115958519,46.198998412,44.57531784,43.433023332,44.882824735,44.878776982,43.071572,43.113992676,43.071761908,43.067748632,43.177749136,43.063727315,43.041483057,43.075883546,43.038269457,43.04438511,43.055632447,43.060151828,43.135337576,43.119327996,43.04345587,43.079275227,43.026048675,43.083584971,43.051498343,43.060547041,43.044545583,43.032780901,43.043205033,43.045733465,43.104730327,43.104547058,43.104559255,43.085959023,43.060612617,43.017033352,43.048809721,43.09304409,43.060285996,43.067554123,43.077899568,43.086118717,43.0646875,43.082017435,43.048653207,43.053832635,43.029605306,43.048920567,43.068015655,43.066001702,43.033913144,43.062448851,43.059277713,43.012689056,43.038796526,43.089312717,43.071167,43.086222654,43.067688591,43.094133906,42.980116211,42.982448269,43.014249613,43.010265505,43.119539257,43.040292578,43.044362598,43.040386926,43.126693028,43.086937025,43.061103819,43.084576918,43.060600394,43.068204119,43.181392185,43.121668954,43.045867207,43.053417977,43.116673883,43.090658969,42.988275323,42.982963928,42.988190035,42.987852231,42.998762058,43.09858316,43.021614304,43.009216173,43.02182696,43.010377153,43.010857302,43.067520841,43.010181848,42.988543548,43.088961322,43.012293201,43.018321788,43.017044387,43.012290542,42.995846472,43.011942245,43.060231014,43.074640817,43.126621996,43.07980327,43.081138793,43.096752123,43.060290976,43.081156712,43.084053313,43.071055834,43.038359761,43.048138934,42.978784875,43.041218582,42.971228431,43.100452193,43.104960994,43.055684945,43.054473342,43.027255579,43.135969231,43.060622594,43.071140099,43.06833298,42.99434473,43.081193964,43.089405025,43.067364187,43.06787444,43.067390344,43.045762487,43.104416709,43.059641147,43.032489777,43.059360731,43.089720402,43.022993498,43.071572023,43.111925451,43.052891044,43.104664153,43.067994933,43.01910428,43.002856704,43.022275549,43.02230478,42.999206948,43.036311055,43.016942082,43.026658274,43.071072219,43.089636859,43.104956841,43.014160094,43.012307454,43.014841429,43.071109235,43.071102832,43.089625096,43.107884144,43.040734191,43.089855144,43.11195731,43.089626162,43.079126288,43.011030786,43.022275549,43.002931698,43.022993,43.002848776,43.012293201,43.008295385,42.981938435,42.989237965,43.017021883,43.052618597,43.04849196,43.039791961,43.0638544,43.046339896,43.038691213,42.949079998,43.036047265,43.055631827,43.028352671,43.060146787,43.040210313,43.10480472,43.082218899,43.075200134,43.069502128,43.119443175,43.154711132,43.177547038,43.133957414,43.017030949,43.105944401,43.108658381,43.098926473,43.090017001,43.107366417,43.089437877,43.071890491,43.075083285,43.089162269,43.055190524,43.025278466,43.017044376,43.012290542,43.002963988,42.973613752,42.990175181,42.975788,43.057276262,43.046764004,43.060480347,43.053600894,43.093207654,43.072838929,43.054461249,43.084575746,43.070509017,43.085361886,42.98189429,42.944865126,42.930309937,42.973956976,42.986507804,42.988463711,42.959393246,42.981021701,42.988243751,43.077605594,42.959050567,42.984478189,43.005201418,43.084610333,43.022004329,43.017046828,43.010253867,43.022891998,43.082320909,43.067851302,42.98870176,43.066075394,43.041341784,43.072838929,43.03997691,43.063935452,43.082512223,43.092114561,43.060301669,43.177642719,42.986654795,43.012290542,43.045658251,43.126323784,43.114203295,43.119691434,43.020165864,43.011207329,43.054003261,42.999933405,43.040248618,43.025744401,43.060600394,43.0629459,43.064256029,43.066770742,43.035393666,43.044620069,43.089557612,43.120508106,43.112686019,42.988281363,43.071144969,43.112207451,43.026484622,43.055836393,43.048147023,43.052957445,43.060258403,43.050928852,43.057932746,43.00566533,43.023216673,43.02574388,43.00448829,43.000612733,43.038703155,43.022153289,43.060573377,42.948692322,43.122085653,43.067653464,43.089786853,43.060231014,43.068727811,43.069725905,43.067473151,43.089345451,43.074720542,42.985841048,43.021614304,42.99589707,43.017021424,43.021976731,43.005516489,43.045699531,43.089115464,43.071160892,43.012006212,43.016945228,43.08274818,43.088153957,43.097272899,43.017012062,43.001266619,43.078942218,43.010783725,43.003052082,43.002459594,43.021124504,43.012519895,43.014064039,43.002543033,43.022993498,43.083206817,43.104335335,43.010310562,43.017047252,43.052939965,43.060365,43.052669534,43.061128036,43.056480442,43.104498731,43.081138793,43.091232928,43.077902859,43.067524543,43.082775415,43.060171692,43.023052216,42.992258842,42.988267816,43.120546474,43.11381268,43.068735565,43.104874871,43.134106801,43.101322859,43.016587858,43.00478556,43.013471131,43.049980884,43.003705743,43.063122928,43.035442644,43.06783039,43.056049357,43.054717946,43.041768267,43.062443271,43.029569971,43.021614304,43.023569484,43.010196291,43.00859357,43.014994906,42.997808009,43.017179298,43.002842328,43.07401367,43.040527605,43.067554123,43.03466575,43.040175479,43.075662396,43.058899042,43.044361713,43.069730217,43.074895823,43.097236281,43.10758319,43.111929687,43.106810168,43.073608044,43.02219643,43.003649351,43.017038099,43.003693017,43.177494424,43.089032174,43.02904892,43.026742545,43.060577358,43.060606897,43.045632642,43.044368319,43.063524798,43.053395595,43.03651763,43.051361965,43.067902964,43.051422371,43.052933052,43.050005447,43.040295739,42.99744931,43.040301125,42.984325917,42.986768058,42.939848168,42.995833292,43.02280279,43.148050535,43.104497446,43.089995094,42.992465825,42.956516948,43.057403973,43.037378976,43.097843466,43.104689327,43.022656986,43.030954046,43.053535732,43.064289442,43.039706665,43.02172521,43.014955238,42.988292606,43.089858604,43.072839273,43.07465363,43.060071475,43.064916099,43.052857643,42.940860864,43.003411645,43.059893639,43.096256292,43.104496951,43.057058015,43.08260388,42.973762173,43.095162625,43.072950599,43.047959461,43.060167812,43.015641391,42.981252658,43.022116698,43.006760856,43.017116816,43.039812375,42.995831728,43.118462598,43.053067966,43.051977285,43.042427482,43.111863699,43.060508043,43.089703305,43.617904989,43.166019652,44.680796585,43.877469687,46.562434509,42.625321109,43.75084369,44.221131516,42.910057368,42.715538434,44.025968744,44.596470858,44.294608156,43.040349227,43.038671404,43.038674314,43.040246365,43.040154748,43.040246365,43.038564153,43.074412991,43.130152688,43.105517883,43.089768064,43.089608088,43.081626157,43.089644476,43.002587205,43.064674425,43.119146962,43.060280403,43.023225386,43.030763208,42.988292606,42.988301655,42.985675812,42.987108484,42.986503029,42.989277955,43.05490407,43.070643849,43.012443205,43.119416113,43.115629919,43.133765389,43.11189787,43.090001065,43.067952224,43.079125383,43.090001065,43.038715741,43.040977026,43.060127071,43.095301325,43.089763381,43.104990822,43.105290501,43.022361688,43.121165879,43.119416113,43.134137198,43.111982335,43.120369794,43.126521576,43.098581133,43.078055418,43.133937981,42.980333753,43.112062275,43.069718079,43.073419097,43.068063873,43.067914451,43.08894497,43.071109235,43.104404062,43.017047588,43.089879489,43.052960811,42.997207494,43.066640276,43.060597877,43.067070255,43.062741199,43.067554123,43.072301717,43.082875376,43.019190577,43.067078266,43.067795464,43.066009401,43.086069983,43.102927677,43.104986331,43.039044906,43.052946246,43.016845569,43.119194212,43.068015269,43.067727919,43.021463909,43.017238248,43.035920444,43.07139031,43.062448851,43.067345087,43.041589313,43.02219643,42.995667545,42.992383679,42.978095948,42.974183411,42.993572539,43.071614743,43.063926,43.060233,43.076022841,43.069392145,43.082364461,43.048815306,43.031448275,43.060422276,43.08967362,43.093468941,43.089504891,43.123647501,43.05257435,43.119511809,43.060121412,43.052992757,43.174619029,43.090348984,43.045223601,43.082393989,43.082393989,43.095436667,43.017023835,44.854243156,44.85260786,43.11255674,43.087376235,43.075769547,43.072011867,43.06696882,43.058088953,43.073314976,43.063124396,43.122048871,43.133743884,43.125008698,43.130568529,43.072956486,43.074519296,43.080966913,43.082678936,43.134423733,43.070963758,43.076145023,43.081886556,43.079985244,43.083182523,43.064988112,43.098362704,43.102793275,43.075219741,43.055262844,43.051915857,43.039056217,43.072307245,43.072129192,43.073313147,43.057539006,43.031891224,43.120496185,43.102326748,43.072131036,43.084179707,43.138936082,null,43.099133544,43.07485339,43.091342983,43.067163198,43.039120571,43.075237951,43.057593731,43.060496399,43.060575622,43.100290526,43.093054721,43.049216618,43.056154014,43.091929304,43.102256645,43.129159673,43.067633828,43.09317354,43.084124445,43.098313839,43.046256636,43.06766525,43.075597287,43.084271585,43.107144945,43.133019302,43.073278443,43.07712019,43.073565948,43.098307584,43.098188745,43.075338388,43.128662464,43.120121912,43.073680606,43.083270953,43.05899463,43.099847375,43.099186801,43.072040587,43.073323757,43.084852107,43.070075643,43.068381686,43.07728171,43.076063244,43.035105494,43.062240707,43.067830827,43.073488898,43.066981869,43.075621757,43.073200469,43.071685039,43.062646956,43.030093087,43.078920476,43.064310186,43.187226078,43.109147375,43.074873306,43.217266669,43.185691841,43.104511971,43.21560501,42.848595136,43.060234783,43.07837122,42.996165511,43.172035544,43.098361048,43.051233227,43.137712418,43.22047127,43.177596892,43.176281588,43.177644437,43.180667616,43.177942047,43.180710036,43.180787068,43.180853953,43.1958394,44.517591179,44.519422969,44.513481678,44.521141557,44.500428413,44.511924016,44.522787629,44.519597583,44.523762874,44.520582907,44.504098257,44.516341653,44.495397933,44.532475056,44.523659128,44.51952255,44.516280923,44.512771865,44.510516444,44.493549189,44.521936895,44.504171533,44.495564234,44.516981459,44.483341536,44.532662779,44.482524162,44.516752958,44.493667308,44.507180229,44.509038304,44.526702062,44.510946621,44.512421734,44.490932781,44.524053384,44.51231121,44.514377425,44.525140563,44.521137511,44.502515559,44.522410399,45.461340559,43.00285107,43.022282573,43.040409869,43.085006269,43.100038829,43.012341682,43.001265312,43.012291282,43.007948376,43.006156942,43.054089892,43.066016896,43.047277437,43.063102468,43.046436791,43.060615069,43.059255084,43.063381951,43.095377302,43.119264957,43.078847751,42.994483247,42.959209588,43.112033143,43.089846336,43.119514242,43.778490759,43.778599138,43.79869291,43.791418312,43.791237617,43.75467726,43.791564467,43.77897491,43.778863302,43.797235993,43.786223978,43.783191044,43.769408001,43.753022527,43.785434835,43.786577954,43.778836027,43.784258725,43.774467653,43.783692409,43.77669826,43.777081023,43.791964472,43.784269969,43.784744587,43.778881103,43.787567921,43.791589062,44.227014388,44.186118598,44.212140538,43.844744329,43.84072828,43.817146343,43.812732651,43.815676018,43.83357673,43.833064484,43.846939735,null,43.811458354,43.849224459,43.785076401,43.808835509,43.860017214,43.767364557,43.817219142,43.841394272,43.801561174,43.834024201,43.817251871,43.81919833,43.808759541,43.808763863,43.793827058,43.836495394,43.799447715,43.843001195,43.796992549,43.76694313,43.795106935,43.762484775,43.825059229,null,42.628292842,42.643160447,null,null,42.496660935,null,44.451505803,44.485191735,44.463267945,44.565472212,44.572953688,44.457838563,44.466129999,44.456233594,44.483713738,44.646455657,44.543437188,null,44.428053121,44.27229659,44.553135617,44.53651708,44.387366029,44.49475246,44.493473611,44.497658317,44.488303346,44.49724058,44.492246149,null,null,44.497531713,44.448853887,44.441027928,44.445130252,null,44.449574153,44.448703613,44.444335683,44.292036561,45.10804631,45.107993944,43.134913658,42.545486595,null,43.041889276,43.036122665,43.939185439,43.939129964,42.608546243,43.557163191,43.564228413,42.578035951,43.100555994,43.104028217,43.09364959,43.103948169,43.095488128,43.109000209,42.961253349,43.01554006,42.998249825,43.005442272,43.024693963,43.02570903,42.957035835,43.029413904,43.022643919,43.018745215,43.005500851,43.01969173,43.045621041,42.997604075,43.05110429,43.111140548,43.060069275,43.057924422,43.045493539,43.176869768,43.057094736,42.924868364,42.996328329,43.068905669,42.930286172,42.923620487,42.917247496,42.925066838,42.923312893,42.928381194,42.901496595,42.89435574,42.91586705,42.858609458,42.861110998,43.119256578,43.166791041,43.175449828,43.191457081,43.178852502,43.18440908,43.190742074,43.079867288,43.044103659,43.050180139,43.046362398,43.043781314,43.066085304,43.040710408,43.048296933,43.038700945,43.053725809,43.064423485,43.064365775,43.040729722,43.060688186,43.060631127,43.050001049,43.060404484,43.064307227,43.074574689,43.052759724,43.036016996,43.050546978,43.069240457,43.074696376,43.059853845,43.062759053,43.058832935,43.050357661,43.053412776,43.050571949,43.05686546,43.01403105,43.023825711,43.002886391,43.018637384,42.988088043,43.00651345,43.006521239,43.013033153,42.989207119,43.002540253,43.002581016,43.008785412,43.008312811,43.016707803,43.014993304,43.022938886,43.014031761,43.016524698,43.002771308,43.011310959,43.002813408,43.010588275,43.002808011,43.010445057,43.005285318,43.01731559,43.002868482,43.01829385,43.006493836,43.017471773,43.016547555,43.002937123,42.988086937,43.011524277,43.020065958,42.99557133,42.988027926,43.001050532,43.016577124,42.996703228,43.024662196,42.992249883,42.995427359,43.010958573,44.806989808,null,42.604181537,42.602725727,44.523130722,44.51212666,42.673587182,42.670528192,42.671967915,42.692189562,42.673540716,44.174325396,44.171121223,44.160783828,44.183590002,44.17648862,44.170970489,44.192110228,44.174184852,44.176917089,44.190250231,44.192180671,44.163669245,44.176004986,44.203910016,44.215457702,44.212663693,44.218712764,44.211141814,44.234817397,44.203834329,44.211007876,44.223738184,44.207288911,43.036251584,43.038673003,44.197803497,44.155345278,43.997518605,44.065246994,44.127023203,44.032557708,44.100617592,44.018396882,44.287298602,44.267238085,44.266080088,44.261846579,44.265664078,44.273865389,44.284136877,44.273055357,44.265735626,44.288462588,44.258685102,44.316081149,44.265674683,44.241330079,null,44.286795112,44.258565898,44.271418319,44.271137622,44.248584519,44.273047169,44.291056738,44.261933923,44.24409871,44.272781662,44.279481259,44.244084344,43.214751564,43.514388357,43.345908364,44.802193716,44.815555766,44.790508519,44.7883146,44.820451822,44.795841407,44.785679905,44.776065086,44.77531545,44.829324897,44.831542538,44.822822935,44.771158711,44.77491993,44.799364399,44.809128355,44.826118177,44.832741969,44.815538326,44.82241927,44.840914639,44.797794736,44.802163618,44.799862376,44.821133743,44.813545716,44.820553293,44.821434286,44.802286106,44.843601046,44.789214131,44.784924404,44.653228084,44.315700103,44.901716626,44.891336745,45.232513139,44.793496434,44.78696206,44.782022744,44.775307333,44.781055301,44.781902314,44.767025033,44.780281644,45.099209492,45.099629313,45.104683653,45.079528578,45.07375872,45.097988723,45.099464275,45.098398234,45.073586834,44.45523229,44.453098091,44.358009045,44.357499434,44.377631483,44.395541938,44.383909827,44.388021375,44.391082246,44.383788867,44.354796912,44.403890676,44.376435153,43.62774256,43.627558929,43.627582313,43.663973233,43.627689164,43.250441409,43.211788326,43.192477316,43.221335897,43.207015922,44.081912883,44.091199159,44.083933142,44.089033263,44.124401847,44.1156307,44.074945574,44.095964866,44.125023071,44.089022013,44.083701701,44.075753501,44.094574188,44.085959731,44.095306219,42.988290105,43.003102438,43.022950348,43.015609119,43.011819006,43.031436601,43.042784547,43.043476114,42.978971085,43.005169677,42.988315368,43.012459358,42.988593529,43.007597843,43.0082013,42.997435513,43.010141827,43.07871424,43.045685754,43.124723965,43.160732948,42.922711173,43.103161352,43.131830734,43.004694177,43.020164701,43.155815756,43.031161021,43.169119649,43.107956413,43.15650779,43.138505473,43.111559798,43.027942335,43.102717871,43.110192014,43.096075949,43.082941745,43.110157312,44.144870545,44.240571739,44.313651723,44.211997676,44.215511105,44.218425751,44.23743239,null,43.87924417,43.884132311,43.877191887,43.898091141,43.880722945,44.265598784,44.286654646,45.627868614,45.423887672,45.498007524,45.293020979,45.28195945,45.637250241,44.967731412,44.985165992,45.187698026,null,44.976931142,44.948766227,44.953930376,44.96099373,44.962473285,44.975926976,43.756140811,43.946813268,44.0284982,45.470040153,45.502540498,45.495269302,45.482683649,45.494637995,45.474509316,45.494583621,45.484883473,44.851036308,44.876619069,44.876340927,44.863805213,44.876326969,44.871083054,44.876363763,44.87648508,44.884442965,44.872027386,44.861177187,44.845291863,44.95930186,44.977633501,44.955226052,44.951166596,44.960926548,null,null,44.980885107,44.962739404,44.960035837,44.959157847,44.967291112,44.968461794,44.969732912,44.973524095,44.955298203,43.533744252,43.400367737,43.449383765,43.317302271,45.787405655,45.401450026,45.401364489,43.069334968,43.006740523,43.093659467,44.297511104,43.075533277,43.075445042,44.257073603,44.257025669,44.257037937,44.386444346,44.56511986,44.258399414,44.267523032,43.998566628,43.979178301,43.99102663,44.290930202,44.267735341,44.295511638,44.301446708,44.26861641,44.270587195,43.163094033,43.192473405,43.17845347,43.046766131,45.633131076,44.283487208,44.274544057,44.277466104,44.285975772,44.283412751,null,44.01957933,44.018006103,44.014650714,44.032382116,43.996496377,44.001321136,44.039459682,44.018332288,44.03260831,44.043036561,44.039533431,44.023818078,44.019659228,44.010710858,44.03900603,44.068305511,44.016067993,null,44.018367442,44.030117354,44.034194195,44.005738109,44.010766795,null,44.010017784,44.013594359,43.999461528,43.075310596,43.07524449,43.075457937,45.000963253,44.87776702,43.10167573,43.109524074,43.12410728,43.10774785,44.733407639,44.979631057,46.588917352,44.963578589,43.184150327,43.176713852,43.185319245,44.608707673,44.620198646,44.611119339,null,43.807733331,43.734928606,43.81497717,43.894639962,43.328733354,43.330432231,43.325696254,43.323115513,43.310615038,44.377995867,43.034174359,44.345781144,44.53400105,44.212550316,42.555560448,42.606225671,42.581776901,42.603625231,42.590719471,42.584462695,42.581252217,42.586960055,42.590732798,42.60061767,42.582418251,42.580395511,42.558835163,42.578874029,42.573923131,42.56816471,42.62298406,42.582260185,42.566285243,42.62608097,42.563379279,42.578284447,42.587892966,42.568615869,42.580344676,42.569367274,42.580925608,42.58626836,42.558842104,42.570404734,42.598902903,42.580633622,42.575897904,42.551440166,42.577869783,42.602642482,42.580786455,42.577784529,42.581470266,42.580698595,42.602955284,42.607851332,42.583976755,42.588145145,44.901523309,45.003324815,44.836188271,44.913523513,43.528467641,43.38692989,43.351367837,43.36265694,44.46097011,44.458082274,42.722610492,42.69148942,42.688153072,42.717415737,42.70138984,42.724438363,42.755792193,42.685994376,42.829353773,42.836835787,42.526717877,42.545860545,42.587869755,42.497704161,45.530300049,43.474107934,46.013671264,45.770111515,46.702613839,46.720663342,46.720655013,46.718666185,46.720737655,46.722951671,46.70319058,46.727823853,46.719433347,46.719452618,42.520926782,42.538409669,44.150520998,44.156599029,44.148576801,44.155609953,44.148200296,44.163199153,44.148348382,44.145247041,44.152983362,43.115800452,43.101730101,43.118598851,43.1091059,44.938727828,44.423972594,44.669558683,44.343748787,44.668257238,44.669864527,44.449868482,null,43.07569058,43.297759404,43.296663599,43.300946481,43.28494834,43.025823476,43.014228215,43.01617682,43.018821894,42.959321748,42.979427338,42.973219272,42.951967974,42.95936145,42.962759943,42.965171726,42.953444186,42.961016736,42.951128111,42.96227791,42.98488172,42.961230755,42.966433497,42.951166518,42.966069663,42.957187328,42.981893464,42.537018951,42.53544811,42.513595063,42.551140529,42.539420566,42.536637241,42.566218628,42.519132532,44.494098521,43.141146667,43.147726564,43.122523317,43.133791393,43.1271304,45.122643301,null,46.453084748,42.860136309,42.873167279,42.867125749,42.872647821,42.886372895,42.886420574,42.939252918,43.968027648,43.970316278,43.971089837,43.625931886,43.63276963,43.035894207,43.053168663,43.038104936,45.178664293,45.176782568,45.185174291,43.090527559,43.089187422,43.088532024,43.089066369,43.091931422,43.090872647,43.089080105,43.467261397,43.475043822,43.460035048,43.461989285,43.464261693,43.475089583,43.477560942,45.88580656,42.929897069,42.90861724,42.898827903,43.018759741,43.018854396,43.017553402,43.021429591,43.010131629,42.736160036,42.682387356,42.698805495,42.752225311,42.682287245,42.712151344,44.393441493,45.315797743,44.247113181,44.939681856,44.9224072,44.936677246,44.93785625,44.939567535,43.646146031,42.912123488,43.385082417,44.774969391,44.775026977,44.882855197,43.5397775,43.532605548,43.532777249,43.601606578,43.605319317,43.612990658,43.582713672,43.582838267,43.587988661,42.985960352,43.005771792,42.973194182,42.945990063,43.949177615,42.847547006,44.896579877,44.902196947,null,44.904834771,44.926194588,44.921007293,null,44.932195075,45.395864063,45.481486935,43.238152711,42.959602173,42.952793208,42.951540968,43.225623657,43.213548132,43.222399852,43.195286101,43.221873338,44.025304826,43.400833962,43.364433667,43.445335186,43.458006782,42.995083201,42.992256367,43.187793306,43.193920858,43.335410673,43.340925272,42.726711647,42.734220784,42.719637957,42.721450149,42.711408749,42.724642032,42.696374079,42.71859732,42.704178666,42.730131604,42.699624029,42.74234898,42.715341564,42.704076617,42.717902573,42.714953191,42.768174701,42.719646474,42.731893062,42.709556994,42.737801291,42.751366091,42.704076184,42.712427967,42.713135975,42.730056931,42.732536106,42.751447748,42.707732816,42.726107146,42.731567514,42.744126484,42.715150046,42.712433578,42.710829237,42.705714222,42.725987375,42.71948829,42.766403609,42.707542343,42.747645273,42.714139455,42.75072232,42.736832354,42.697028545,42.735493269,42.703415232,42.746280864,42.7144725,42.712469407,42.712409239,42.698590041,42.730374527,42.718382974,42.699623786,null,42.686459004,42.702903752,42.693836012,42.697199326,42.672284955,42.679499791,42.704382903,42.676408597,42.698253442,42.656538,42.683857937,42.666361631,42.674007777,42.693410083,42.657091646,42.678161814,42.679473176,42.69271877,null,42.5913627,42.591857359,44.074358215,43.511341802,43.520810815,42.512754846,42.533273449,42.507465244,42.510118582,42.523007209,42.507017887,42.497055417,42.516861979,42.501797436,42.501739836,42.504225371,42.516663867,42.504989239,42.534516153,42.521492295,42.52297577,42.517106888,42.518132945,42.774431896,42.841133258,42.926442929,42.937825635,42.918558625,42.922413233,42.925344972,42.927033553,42.865928612,42.871083276,42.872223258,43.008546174,43.009601191,43.007253807,44.436316979,44.482021767,43.339606619,42.524342747,42.536108472,42.918725579,42.903432422,42.916017847,42.908621651,42.892345383,42.899287968,42.786870205,42.82963205,42.81341005,43.230154679,42.675315234,42.687419568,43.116418167,44.034426141,43.176881017,44.187947005,43.194783696,43.197546177,43.196898028,43.329479534,42.634229205,42.623840635,42.624792119,42.630761504,42.634329849,42.630502234,45.927345896,43.307755381,43.317773089,43.316801496,43.323161253,43.317163332,43.323139734,43.317709545,45.042261379,45.167440245,43.446004531,43.4267479,43.430727516,43.412223679,43.430789169,43.417970152,43.440211444,43.40748163,43.427524774,43.42744249,43.412223264,43.434096285,43.427376223,43.423691996,42.785217302,42.834925738,42.938912833,42.934805996,42.928556441,42.934904814,42.935037133,43.773930584,43.749712899,43.725375086,43.756352092,43.765851357,43.720826351,43.744305787,43.731975445,43.756471903,43.728481409,43.748181873,43.739926877,43.762277903,43.758154226,43.76411323,43.760674978,43.732171737,43.727391415,43.729910155,43.773854904,43.756355853,43.723053257,43.762157475,43.756299861,43.743214825,43.723189714,43.758544459,43.781411692,43.848807239,43.750722994,43.831848375,43.750597482,43.753637566,45.162092547,45.126584893,45.137704776,null,43.473378729,43.461285404,43.466226697,43.478949224,43.459880691,43.456244035,43.061352547,43.090423546,43.053644401,43.089909274,43.08276296,43.061436135,43.058237,42.907917402,42.932320465,42.923797684,42.932843043,42.929890034,43.162099637,42.994279065,42.991934373,43.734676368,43.748313183,43.744359883,43.747765132,43.387008549,43.568084984,43.571798831,43.558113935,43.560581696,43.545365653,43.540910042,43.543624738,43.538516745,43.729320216,43.728244242,43.731776462,45.460824384,42.65080979,42.58398068,42.839631509,42.816057716,42.775782587,45.409604381,45.23521951,45.121034027,45.233528891,45.047634398,45.139356287,45.962868379,45.915980844,45.807300904,44.886070367,43.106814329,43.110001714,45.128246307,45.125855134,43.063747067,43.104640612,43.119423597,43.053690187,43.045732072,43.038688905,43.082539215,43.085687337,43.031230976,43.052373958,43.012290953,43.089549711,43.071802356,43.101975107,42.966656361,42.988527622,42.982421815,43.061060406,43.051579438,43.044291007,42.997679167,42.975555528,43.004918724,43.016002536,43.010334375,43.065577986,43.088923454,43.029626771,43.077045441,43.090082597,43.097223496,43.098010986,43.071613709,43.078817301,43.069676369,43.067910249,43.12144665,43.138058394,43.133988999,43.010160515,43.006167249,43.081629426,43.085694691,43.058514814,43.089661326,43.089524432,43.075004466,42.952169859,43.148644301,43.141447083,43.134131211,43.042627979,43.003137618,43.015819942,43.073053082,43.089729975,43.088966862,43.051798614,43.079905281,43.02219643,43.089400167,43.082364954,43.02219643,43.0232274,43.109758921,43.001980053,43.008252597,43.012297675,42.973905153,42.970046997,42.996517814,42.988160839,42.984929614,42.981044883,42.959621553,43.111855135,43.184094119,43.012443205,43.023204325,43.00665454,43.016982612,43.022204237,42.984751106,43.104011562,43.08270499,42.988466137,43.003402256,42.988369755,43.075209785,43.006440179,43.036014487,43.064657743,43.026839231,43.06059125,43.064557579,43.03873794,43.104332982,42.991934622,43.111093383,43.002842332,43.081127683,43.020990491,43.003117397,43.02185725,43.009645283,43.014925561,43.095400403,43.071856819,43.084321884,43.089945638,43.089626914,43.069541284,43.082033986,43.083905868,42.983793802,42.994761526,43.126998863,43.113888304,43.017025808,43.014136504,43.017008278,43.066525134,43.071137599,43.029623752,43.054711839,43.067849456,43.060614529,43.053566103,43.021160763,43.083910585,43.077454212,43.056505099,43.041370511,43.104965142,43.100381559,43.017285713,42.988486222,43.137803261,42.990453615,43.121117724,43.067462304,43.047256289,43.089879378,43.060835863,43.084766375,43.027449155,43.052246431,43.059260332,43.04994667,43.089795642,43.142524798,43.076899436,43.060687399,42.993679701,42.981152747,43.04859088,43.067880346,43.081215951,43.089730872,43.071218066,43.14322917,43.135207226,43.040289879,43.14837265,43.016864845,43.021576992,43.002885032,43.023008896,43.052992611,43.014141635,43.122527136,43.00078223,43.081974701,43.062366622,43.041636001,43.119512672,43.006429693,42.929416839,43.089255815,43.082365182,43.083867429,43.080158522,43.043152495,43.072640047,43.075245802,42.97702475,43.073479545,43.080018989,43.006469825,43.071268521,43.084589468,43.060554101,43.053413533,43.072838929,43.060099615,43.081722697,42.937679644,42.975895342,42.995314062,43.074647014,43.089739423,43.072968931,43.038807489,43.10133265,43.107225858,43.082748095,43.00304768,43.006460435,43.021587474,43.024207948,43.012344944,43.074870896,43.096745577,42.984931108,42.988530976,43.014144805,43.012272895,43.023782407,43.012314858,43.075205573,43.090001403,43.054570644,43.039470888,43.038704331,43.003988608,43.089735536,43.119333756,43.119514698,43.148698979,43.089640168,43.119951753,42.985912763,43.060616119,43.065658928,43.09254575,43.089864846,43.090566145,43.022175912,43.021985713,43.016954903,43.064298106,43.067898082,43.089960603,43.093307544,43.044556257,43.089142492,43.141235239,42.991129335,43.08494358,43.016701373,43.045721053,43.043177633,43.043871127,43.091673955,43.111995307,43.04256806,43.038732552,43.041684313,43.063939212,43.043284991,43.026035649,43.104641307,43.089992161,43.045832636,43.037470573,43.089879353,43.067574238,43.089841467,43.111950188,43.075097336,43.163217896,43.163229493,43.148690632,43.022039145,43.002847602,43.017022301,42.995980394,43.021444742,43.005665613,43.073787831,43.083078626,43.089152263,43.085764389,43.049282237,43.056473887,42.98742154,43.106434405,43.070319149,43.089159456,43.067556338,43.181210465,43.104750463,43.060394489,43.067861186,43.011171926,43.0103354,43.006440726,43.061321434,43.045799336,43.133978565,43.11323207,43.140018991,43.045081058,43.071200938,43.10493359,43.062409223,43.104327168,43.075161599,43.038917878,43.065553846,43.01703777,43.126829602,43.05145542,43.111954713,43.067875679,43.057804166,43.075773896,43.090388986,43.104404971,43.101148408,43.075344685,42.988542577,43.052523015,43.104799287,43.175211149,43.164095493,43.390623939,42.838191415,42.778106054,43.310907323,45.04820806,46.713389829,46.535411624,45.772010771,43.910968146,43.496751286,43.859154243,43.028999963,43.985799544,43.344058416,42.965554221,43.648407218,42.696898547,42.604012607,42.590166261,42.555524749,42.784035054,43.023950176,43.040246365,43.038674578,43.040246463,43.040246456,43.038681542,43.040763735,43.037013905,43.0389977,43.040304932,43.089656458,43.075224898,43.082882051,43.071259092,43.08622165,43.089344752,43.075233534,43.139859602,43.126315714,43.108304635,43.043927584,43.183373307,43.072611516,43.109845582,43.079121015,43.078399536,42.994497488,43.084026414,43.134005236,42.968838986,42.995982091,42.959246834,43.067999133,43.067999133,43.067897265,43.052862356,43.054898154,43.065041566,43.062017386,43.037626747,43.064147366,43.104670213,43.078722609,43.08927252,43.05921817,43.077654944,43.074861023,43.177923673,43.125476622,43.043334478,43.034752275,43.06396747,43.060435605,42.988209589,43.06052468,43.141903834,43.11893359,43.096937886,43.089902913,42.995096092,42.995458959,42.988260414,43.077502067,43.060296239,43.08509993,43.113256838,43.042924074,43.053047807,43.088146862,43.064259057,43.014081248,43.034879178,43.056673993,43.060124891,43.044413326,43.062032776,43.05519199,43.052551113,43.074895846,43.07230989,43.066976942,43.080082771,43.097294667,43.072572323,43.074898629,43.083672191,43.106817502,43.092757424,43.080704376,43.081101172,43.068257387,43.07421366,43.07330235,43.070928692,43.076964511,43.015783636,43.060530577,43.103518168,43.083996921,43.078757228,43.10111003,43.084281131,43.089484492,43.073249136,43.070962435,43.075205987,43.036306825,43.106551706,43.06753478,43.073362831,43.056589282,43.103705863,43.095616875,null,43.075867572,43.067701742,43.071029432,null,43.067061982,43.072045059,43.074936934,43.084664601,43.030584868,43.07309804,43.04514149,43.031765284,43.121182491,43.141678957,43.104039856,43.132983797,43.047289306,43.064199652,43.092269447,43.128375272,43.082257194,43.055720891,43.074289223,43.102287549,43.067670232,43.103353228,43.031783486,43.131113703,43.105795561,43.139305683,43.133210201,43.125891181,43.046817354,43.035649127,43.04697227,43.053759733,43.095471682,43.092373535,43.082310471,43.099919704,43.141951557,43.065503158,43.05658129,43.131158377,43.105149156,43.130334964,43.054039084,43.097842781,43.106864425,43.097556122,43.134199997,43.014820935,43.067713871,43.064149679,43.071068981,43.06769607,43.122271606,43.098289778,43.09831622,43.069933537,43.075339863,43.091633945,43.077311839,43.075447243,43.075235902,43.050533615,43.120999838,43.081032731,43.067761803,43.074619994,43.073252218,43.060851853,43.075291616,43.063091003,43.076144927,43.067907022,43.03377899,43.083894197,43.112510448,43.134042143,43.094192297,43.100682916,43.073218861,43.095616059,43.082643157,43.073264312,43.112566002,43.111570454,43.05668495,43.069297804,43.081959758,43.068119582,43.073127653,43.086852732,43.073302406,43.032538823,43.03278557,43.075203105,43.045852314,43.077645448,43.014543011,43.077574371,43.0645228,43.075244039,43.090255292,43.078312575,43.075990305,43.0938326,43.075891586,43.076239174,43.06697937,43.084361342,43.118825878,null,43.106630304,43.093208435,43.142385312,43.083894128,43.075933215,43.06015412,43.073900676,43.06085977,43.068225665,42.932902488,42.919366991,42.958590396,43.28216952,null,43.18003368,43.185011072,43.174655666,43.175789477,43.16263283,43.196736522,43.175772047,43.193640427,44.529422046,44.519311006,44.508721884,44.502506146,44.516952851,44.517900775,44.502044993,44.505707976,44.484397123,44.504611332,44.513662684,44.533608749,44.504141082,44.53145408,44.513340397,44.5236334,44.508642411,44.512708099,44.498866624,44.500925713,44.517217119,44.492824222,44.513640171,44.513715262,44.510706292,44.519302955,44.507858976,44.512172541,44.489297388,44.52037917,44.502417212,44.50864809,44.511892926,44.516021918,44.526098945,44.502051862,44.524562044,44.510783968,44.511972452,44.50415534,45.464142398,45.46339244,42.999149509,42.9994567,43.010135632,43.003065132,43.041454228,43.029362636,43.067934574,43.103487521,43.040419625,43.071060878,43.012780859,43.042240657,43.052965273,43.045762051,43.040433428,43.017038015,43.012297968,43.024778841,43.023557088,43.056337681,43.065977152,43.089911064,43.033188198,43.068009118,43.060497762,43.044587871,43.123584897,43.119489578,43.062262532,43.11281394,43.177702972,43.155202678,43.17664526,43.181105972,43.090047722,43.07481362,43.073277027,43.073838666,43.069332634,43.060290575,43.091302264,43.088669095,43.08113416,43.071192244,43.086907401,43.067921001,42.941886352,42.930308604,43.015137448,42.958393095,42.988227288,42.97874124,42.987937587,42.988264008,42.953233571,43.067910946,43.107755822,43.086663626,43.054568756,43.060181602,43.067978076,43.028483341,43.784116588,43.773277337,43.788065111,43.77775163,43.783552,43.753181825,43.791514004,43.794541552,43.780626679,43.786654144,43.775259871,43.774306609,43.778816062,43.784423763,43.784320749,43.744908651,43.767628637,43.783638248,43.783729237,43.790887322,43.7736663,43.773450643,43.783492041,43.787726854,43.765695841,43.786274418,43.768904046,43.766572996,43.777722367,43.788162249,43.791772584,43.791432739,43.782847818,43.783066304,43.785319839,44.231906521,43.88512161,43.850020869,43.801705948,43.804631036,43.804737882,43.817358923,null,43.841395494,43.816952633,43.844746265,43.841251435,43.814643146,43.814644281,43.807634453,43.800896821,43.805609679,43.792397126,43.769461524,43.837942472,43.801419201,43.809958727,43.828090658,43.812811698,43.841921463,43.837357404,43.813895658,43.808626528,43.810015675,43.808748217,43.836834217,43.801511714,43.839142616,43.814987175,43.81408979,43.819315855,43.811050175,43.842046583,43.795184265,43.794102043,43.812758766,43.829449211,43.756867757,43.817291893,45.083586638,45.228962146,45.079042361,45.237978547,45.238504024,null,42.57214168,42.562055847,42.657907352,42.668091782,42.496307625,42.631173491,42.587077351,42.590081047,42.60534467,44.491348118,44.457570417,44.585175042,44.576255941,44.572817609,44.577531789,44.559562368,44.59790299,44.439787068,44.31445009,44.313542914,44.41619308,44.485657599,44.498228207,44.500599776,44.481965601,44.475619018,44.49694221,44.497433072,44.491443785,44.471551774,44.48659073,null,null,44.449294488,null,44.450065998,44.441966968,44.449941491,44.45174422,null,42.735902469,42.734541082,42.741037063,42.740279155,42.733108323,43.051923322,44.508961897,null,43.938278297,43.945456288,43.943436809,43.949851378,42.525456746,42.532256136,42.610452032,43.556664138,43.570305291,43.183844572,43.096060833,43.096241765,43.104472945,43.097025332,43.094853787,43.09012634,43.095500123,43.107850318,43.094960103,43.095978648,43.101288707,43.104608532,43.015362493,43.015936282,43.015223572,43.01559199,43.026595333,42.996258559,43.015464414,42.957066672,43.021558023,43.020419841,43.022624981,43.010813867,43.051006876,43.057277255,42.901692046,42.885507455,42.924515578,42.881474656,42.915935837,42.916384257,42.914250591,42.916287337,43.124713185,43.187318987,43.185023966,43.179167295,43.163745129,43.17026474,43.179180456,43.042431182,43.04355512,43.049893026,43.058705926,43.085637101,43.085707874,43.074836936,43.046855496,43.101066671,43.060738147,43.048118289,43.051202997,43.055055666,43.060402261,43.074750011,43.040439907,43.085704211,43.045505049,43.035958374,43.04013737,43.082830679,43.05975086,43.060038076,43.067398468,43.062513101,43.102002634,43.060095302,43.056874828,43.044819629,43.059176834,43.042151436,43.07595376,43.063980438,43.059600143,43.012063985,43.012526788,43.016612904,42.988196923,42.992706956,43.016663623,43.016289675,43.016443809,42.995294926,43.016511841,42.999240777,43.002802144,43.012652236,43.002943686,42.995441946,43.002112194,43.012325629,43.006557139,43.016378683,42.992625642,42.98912966,43.017047695,42.988087763,43.02100372,43.012321268,43.016618508,43.016468132,43.020127385,43.00631718,43.013872329,43.016572767,43.012127692,43.016513535,42.988277053,43.955949439,43.966215739,43.954564439,43.958794894,44.818184598,44.803621894,44.817787633,44.79880077,44.795776374,42.600216561,42.60198572,42.602826673,43.292909489,43.273503879,44.539355545,44.54153792,44.533930661,44.512126184,44.523483841,44.519297542,42.665751048,42.678792291,42.671905778,42.670236136,43.11872382,42.573882282,42.733968529,44.193216228,44.173069638,44.171094827,44.166028785,44.187209245,44.1726918,44.170933145,44.17493874,44.181667679,44.186305843,44.176345734,44.209973324,44.205247541,44.229761469,44.204668685,44.214739717,44.229827765,44.204735782,44.212907299,44.233195532,43.038542147,43.036694632,43.036251492,44.042155376,44.120005602,43.899052674,44.028421692,44.111695686,44.133101211,43.981475515,44.282052152,44.311661017,44.264143456,44.273026238,44.232587916,44.247686163,44.250019003,44.243750575,null,44.253665887,44.275237548,44.243152676,44.244018744,44.286517452,44.288209591,44.244084371,44.246366707,44.243668432,44.234820088,44.244073936,44.261933666,44.275754596,44.31698093,44.294521751,44.261844289,null,44.275974896,44.247771931,44.114778258,43.371159959,43.402325566,43.223438714,43.521249872,43.427495381,43.322826695,44.788721589,44.839814763,44.799802936,44.800944689,44.804365663,44.842331644,44.81143283,44.843459003,44.795170897,44.797813607,44.815883663,44.791516015,44.814882424,44.790171383,44.793037961,44.785652531,44.801298596,44.853219724,44.801567236,44.815581883,44.799386612,44.798713506,44.795097639,44.820429109,44.815943313,44.676185879,44.814135101,44.864903488,44.901590548,44.774856029,44.771138334,44.775131173,44.78185057,null,null,44.686072539,45.089233426,45.09240908,45.095492369,45.088854931,45.100471019,45.094341639,45.093313578,44.380163879,44.36902023,44.354701303,44.397479154,44.379280535,44.379310748,44.37486671,44.395535966,44.370830865,44.386232534,43.627025454,43.625883746,43.624611572,43.627619134,43.627706926,43.61918213,43.837448081,43.840670393,43.250680414,43.265081781,43.254389424,43.206699098,43.20789,43.218042498,43.201809225,43.224443194,43.221656421,44.072336176,44.110714599,44.075858492,44.075605068,44.074930165,44.118683996,44.088942851,44.119179249,44.087098211,44.073309706,44.085917879,44.086811773,44.091217165,44.108385569,44.103460404,44.085555095,44.109328138,44.078528514,44.087284418,42.986236162,43.005447192,43.012253311,43.007132587,42.990508305,43.009374106,42.987333527,43.012801203,43.007468094,43.022131226,43.013366866,43.009606404,43.037280498,43.003589189,43.009329464,43.009722205,43.022826157,43.012550539,43.002954427,43.011379429,43.016886089,43.010482089,43.033244296,43.009686548,43.155499651,43.117922274,43.052769613,43.137107168,42.860660539,43.108093684,43.100229574,43.164515577,43.158062807,43.137539166,43.14391459,42.99193547,null,44.013601772,44.24316722,44.228713115,44.242551426,44.22869443,null,43.912004215,44.279339224,44.26426165,44.275215089,44.279943025,45.326158692,45.822496114,45.028300173,45.056170534,45.137402588,null,44.962199891,44.958492728,44.960757229,null,43.897207821,45.476413805,45.49464003,45.473613446,45.49904139,45.481529297,44.852330266,44.859202209,44.85751913,44.868995082,44.855434993,44.858674962,44.862716307,44.843790505,44.871471826,44.881834626,null,44.869367585,44.880157992,44.87425475,44.915463192,45.178271275,45.188533651,44.844773688,44.886645014,44.833943118,44.969727999,44.95875837,44.966151483,44.971057574,44.950325012,44.969990366,44.973864057,44.969501294,44.964796534,null,44.95933522,44.963156311,44.969782018,44.969501912,44.959307594,44.978807748,44.962788773,44.953716381,44.953532792,44.937756357,43.548376684,43.970143366,43.960971875,43.899200828,43.899647275,43.841450471,43.100423945,43.175134401,43.087320345,43.013545944,44.42823293,44.528917435,43.075960625,43.072270808,43.076221686,43.077563587,44.345258814,44.258169778,44.302738409,44.369875974,44.371531847,43.978633932,44.019820749,null,44.292082995,44.294606531,44.270689102,44.273158627,44.262327388,44.303528372,43.162756869,43.178076745,43.168526762,43.184345051,43.039615629,43.043198053,45.633278287,45.632986638,44.277762418,44.264578745,44.284514539,44.021515777,44.03214661,43.995932112,44.043710935,44.010738367,44.010716067,44.010474178,44.017759829,44.013432277,43.989872352,43.996032685,44.028536371,44.020386244,44.011056208,44.017861556,44.018047185,44.018171052,44.018007252,43.995107328,44.031840468,44.021550352,44.032589417,44.015961137,44.003171999,44.030429118,43.981786643,44.039433209,44.015442261,44.020331538,44.007490658,44.016064049,43.996024748,44.026082688,44.010747908,44.067113695,43.074584539,43.077733537,43.075730228,43.073529475,43.075244257,44.847511397,44.826508076,44.823666398,45.321477254,45.31593383,null,43.124027474,43.107549406,43.101168458,43.120540869,43.104095013,43.125842149,43.109461241,44.945238903,45.002972565,44.74186866,44.69615425,43.177129105,44.620090769,null,42.779376693,42.780338144,43.785636928,43.308743636,43.30930631,43.309566634,43.317209173,43.31997181,43.320355303,44.394727305,46.016771891,42.881568028,43.182842385,42.580789363,42.572662506,42.559156108,42.58066293,42.623583441,42.613436476,42.586905253,42.570575395,42.588276223,42.568135791,42.558961945,42.553294353,42.551555912,42.56674533,42.598911946,42.583417201,42.565680875,42.572364764,42.568228014,42.59704635,42.606195836,42.567568838,42.602693686,42.564250918,42.575280181,42.598987948,42.565786787,42.581019525,42.580717326,42.603270581,42.59081829,42.558976505,42.566098602,42.575926167,42.580198953,42.580918357,42.551460824,42.580849172,42.596814529,42.598830999,42.579284298,42.58349495,42.59075259,42.566193806,42.581019987,42.583984223,42.580753553,42.563112254,42.571263172,42.572151116,44.988003138,44.919526076,44.944974224,44.925009718,44.919759266,43.817040847,43.401698025,44.48632542,44.478151382,42.807943838,42.66974036,42.725067436,42.802045962,42.815553017,42.504351582,42.585467596,42.670631911,42.830651689,45.446762924,45.55232334,43.580764136,43.197123823,43.535429168,45.848678892,46.03600725,45.993820098,46.72800526,46.706071934,46.720626747,46.720664507,46.706283516,46.713454252,46.713270967,46.732521984,46.719961928,46.728022295,44.960341421,42.53208067,44.151519168,44.147671232,44.152161651,44.167720628,44.148054387,44.153670061,42.799331482,43.085644899,43.109505003,43.081549492,43.076429851,43.087120983,43.098285977,43.108812252,43.129571556,45.044129921,44.664154719,null,null,44.657547138,44.679001871,44.69147918,44.655627428,44.686266885,43.087167344,43.28661657,43.296700918,43.301041367,43.301877635,43.279324509,43.013176743,46.655441115,42.952143269,42.967515504,42.967301809,42.962857309,42.959407773,42.966503879,42.982239814,null,42.959103522,42.959568024,42.959405773,42.960052224,42.96043778,42.961252615,42.952068158,42.975724136,null,42.536942069,42.566290659,42.565750329,42.517852724,42.533998751,44.666015587,43.323706721,43.729487717,43.807638386,43.118862406,43.144065149,43.11623427,43.14090835,43.133780072,43.135006622,45.111635837,45.12373173,45.11025635,42.917904671,42.887686369,42.929189992,42.886689999,42.879005564,42.857049462,42.930371803,42.951875874,43.968298352,43.968329733,43.968347504,43.633099955,43.632066953,43.628867319,43.629995866,43.633472206,43.633723827,43.036898859,43.045735898,43.036519018,45.183618996,45.179622128,43.448091212,43.089062867,43.08907096,43.089066816,43.098275827,43.081962421,43.08920699,43.474804988,43.474704845,43.460035022,45.87061289,42.894063208,42.928688294,42.90882331,42.897570205,42.915416491,42.916856303,42.907735095,42.914756737,42.899869042,42.910940288,43.009658606,43.006463906,43.019933172,43.016838927,43.012321404,43.00937049,43.016475496,43.020093988,42.727678959,42.699122975,42.697251326,42.730975856,42.695604109,42.720700218,42.69688267,42.723485681,42.703603194,42.688469478,42.73316377,43.920468558,43.663998718,43.797157666,43.795612115,44.380952743,null,44.940622893,44.935840761,44.937812192,44.933396388,44.936062172,null,44.88606059,44.887845513,44.884655334,null,45.312589384,45.177782953,45.311294335,44.749881554,43.603638615,43.600900044,43.587937617,43.597971561,43.60632345,43.613863165,43.611348285,43.587316398,43.607407637,42.859539294,43.005859142,42.944361238,43.008485794,42.954616874,43.059904883,43.056620601,43.07041936,44.069959978,44.168333087,42.542767352,42.967866231,42.977370213,42.971744036,42.849876445,42.793443795,42.738180702,42.694264516,43.115516784,45.056817145,44.904825683,44.915937411,44.904715393,44.915366408,44.906977989,44.916393989,44.908167061,45.277688522,45.409495993,42.627787115,43.095910591,43.086834073,43.252764783,42.940099115,42.915818226,42.918265032,42.924353399,42.959137243,42.930019398,42.930019801,42.954246797,42.951881524,42.946879054,42.958034113,42.954604666,42.950983038,43.192180516,43.220817744,43.226326072,43.236073056,43.491236768,43.488266402,43.633025279,43.48460558,43.001638909,42.987921123,42.993222539,43.003224934,42.995496874,42.990113569,43.184805208,43.172712549,43.17749618,43.191897134,43.187717132,43.336364805,45.972647671,42.712094127,42.729192163,42.750511157,42.712441483,42.727286217,42.721625953,42.731155829,42.718616465,42.731564254,42.730763799,42.773596575,42.770823474,42.734476668,null,42.738874283,42.714628348,42.712391215,42.712455697,42.712468879,42.722517777,42.736768785,42.70735411,42.77056711,null,42.69484748,null,42.718646574,42.754620213,42.715393244,42.720333403,42.769859906,42.719318944,42.742360341,42.725987105,42.71246633,42.735569877,42.730616896,42.715066687,42.731714213,42.698920991,42.740554987,42.737801025,42.710740126,42.715503487,42.740489837,42.725979409,42.747721272,42.722969977,42.712356259,42.715203151,42.722539337,42.729822337,42.72446281,42.696832233,42.698277906,42.716705323,42.699674138,42.663988294,42.686743588,42.695199812,42.699349941,42.679722822,42.672132562,42.681882228,42.692212555,42.719852729,42.686831476,42.656350048,42.686729153,42.686315423,42.680576222,42.697749216,42.695300797,42.696844864,42.649845501,42.672722861,42.6796229,42.671706446,42.681292892,42.697289283,42.677179073,42.679432072,42.679419442,42.675997805,42.594487923,42.592933848,43.973879712,null,42.499601483,42.501705091,42.525543089,42.522675054,42.519196005,42.510866733,42.496464207,42.524935785,42.51722322,42.521136773,42.546668783,42.505639924,42.500779672,42.521711857,42.498637539,42.54159587,42.511119967,42.514651142,42.500682654,42.502689482,42.508328106,42.533544953,42.511655828,42.499612392,42.522634062,42.833531515,42.838992887,42.769874207,42.87346743,42.876015821,44.616436353,44.535676335,44.446632669,44.497334121,44.430856574,42.531600781,42.531154191,42.922179231,42.886874751,42.92608469,42.906001934,42.788429159,42.757838059,42.659625585,42.692715534,42.690757224,42.702077896,42.680398468,45.825958957,43.010582915,43.010574782,43.141338247,null,44.076457271,44.170236966,43.194212717,43.192926559,43.191723624,43.196742391,43.196927045,43.206658047,43.188428314,43.206694991,43.654063203,42.632930868,42.627497415,42.633058261,42.628197969,44.367095211,null,43.085143796,null,43.318227438,43.312023281,43.493905074,44.882727468,44.882314795,44.866855037,43.426334906,43.425958164,43.397821332,43.426744868,43.400620913,43.433981063,43.427090486,43.412222435,43.409174491,43.427004988,43.388753463,42.78418693,42.785312664,42.834961329,42.832578916,42.835061632,42.92959724,42.936866887,42.924967052,42.935320419,42.935846866,43.760718291,43.768597633,43.761607536,43.754024061,43.756941166,43.764656101,43.741589687,43.719470339,43.74332068,43.760695985,43.752682472,43.768423949,43.773873402,43.745390255,43.776021976,43.777220975,43.756387738,43.753625926,43.758381381,43.773783354,43.766443448,43.760491402,43.773927115,43.77695173,43.746565382,43.717615753,43.801103228,43.789980069,43.724617101,43.793383753,45.137743247,45.141939122,45.141430815,43.456235157,43.46622934,43.466178918,43.46402719,43.097032221,43.09251924,43.035443257,43.075248807,43.036416593,43.090433913,43.05937891,43.089046055,43.090287939,42.942058674,42.925844831,42.932701131,42.917167405,42.929799957,42.929874224,43.165201579,43.005666519,42.995416855,45.14052311,45.140553446,45.154286332,43.739648076,43.75142226,43.745749643,43.387557388,43.536070457,43.539934691,43.554591578,43.572248794,43.572247394,43.173298551,43.725468437,43.747022012,42.604054925,42.827824928,42.763217821,42.807796447,45.043243923,45.224985,43.292262655,45.923253397,42.657131391,45.045600362,45.899112347,45.899406823,45.843274157,44.899912288,42.645544923,43.003105157,42.988569267,43.044552748,43.060524272,43.068209557,43.071375398,43.083354145,43.13950229,43.002887779,42.958649604,43.008465241,43.021796593,43.001260575,42.995433568,43.014768881,43.077021563,43.158004466,43.119522672,43.089841698,43.10197578,42.974092938,43.010381103,43.019099579,43.022315991,43.046988077,43.067386125,43.079469518,43.043447309,43.056030291,43.084363469,43.089936374,43.067622967,43.081281568,43.089544172,43.000454558,43.11201922,43.172795076,43.025056816,43.022661422,43.012258724,43.002846627,43.002747788,43.016933106,42.995660136,42.988421467,42.988423415,43.008541476,43.044394749,43.048551999,43.054030441,43.041643396,43.053987474,43.052595973,43.067995561,43.060627453,43.064327457,43.065479269,43.048623657,43.069816487,43.079170962,43.07510058,43.110306004,43.104852218,43.014867786,43.104878388,43.096332073,43.083365923,43.067569125,42.959393677,43.123057453,43.119407456,43.020132102,43.038712619,43.028488929,43.010796084,43.019106759,43.007680056,43.006657352,43.06846608,43.066908825,43.074447876,43.10534584,43.059243815,43.042845699,42.981098262,42.982846305,43.001316,42.992257948,43.161583872,43.063973576,43.056422656,43.075653047,43.077075394,43.015396116,43.089529676,43.089398564,42.994143941,42.994755679,43.003051746,42.98240564,43.014151719,43.012356203,43.060679781,43.01223819,43.052943834,43.075230743,43.052890445,43.079742809,43.0386497,43.067911576,43.01700522,43.008305071,43.071795016,43.083504451,43.038783886,43.000483233,43.11956092,43.054658678,43.044555431,43.0437624,43.021905876,43.008190327,43.119561246,43.135425738,43.119513097,43.071046189,42.959216442,42.995896245,42.988569479,42.973699219,43.085363891,43.072058645,43.06929526,43.073006745,43.038758706,43.09691556,43.089741125,43.060106586,43.104497525,43.10981049,43.07516926,43.086921472,43.075275105,43.093481868,43.071563653,42.994916367,43.104408803,43.100560904,43.056274437,42.959373696,42.983104494,42.979087626,42.988263816,43.053141423,43.179990508,43.097171652,43.076156825,43.071345844,43.045738057,43.039536894,43.097284791,43.104497171,43.090007386,42.984180387,42.977840333,42.951995661,42.988560271,43.089902358,43.045721292,43.002012973,43.060379493,43.041381653,43.068056015,43.089280917,43.042410669,43.036793988,43.055625793,43.047008704,43.071377683,43.042160468,43.074653641,43.038740517,42.973961767,42.973706957,43.060558233,43.099817419,43.044411468,43.088479587,43.070492658,43.089942588,43.105678733,43.137803306,43.017044389,43.067638414,43.074636328,43.033823952,43.040419686,43.04698906,43.045763694,43.060127031,43.108044421,43.067845024,43.089763163,43.075203119,43.071054109,43.045719483,43.048139177,43.052961137,43.03509265,43.052918205,43.05306092,43.034967546,43.046989122,43.052344224,43.052146816,43.036759723,43.053792089,43.163918378,43.12651378,42.988239321,43.089861943,43.006467073,43.02307823,43.093601437,43.05630616,43.065359509,43.039011054,43.06422303,43.057587345,43.075338868,43.006442617,43.089932978,43.089724659,43.119417127,43.119330863,43.11941238,43.07049651,43.126869959,43.066199868,43.082542565,43.091288117,43.058223049,42.988280968,43.017048952,43.095551327,43.044182232,43.029550196,43.012468102,43.084269321,43.052811849,43.120753433,43.112083514,43.104816921,43.038703109,43.051512492,43.052931098,43.045725919,43.034618134,43.075242331,43.108828095,43.069945733,43.062401855,43.074720636,43.089727907,43.071910764,43.091927041,43.069840704,42.987783937,42.983579168,43.010482085,43.015522236,43.075117015,43.01910075,43.069296778,43.003169201,43.010231205,43.017041264,43.008563707,43.13189521,43.121640348,43.089217241,43.078067543,43.017048344,43.006091219,43.015304292,43.119510071,43.133945622,43.125241556,43.13964327,43.020134411,43.044735591,43.119328654,43.012495444,43.060311435,43.08762565,43.061589553,43.038706301,43.035738618,43.117951963,43.105059447,43.080649725,43.064381019,43.060416634,43.064890746,43.065268755,43.048783348,43.044729161,43.086149007,43.071115108,43.074843628,43.061414506,43.08442626,43.073718152,43.034782212,43.021090508,43.012476532,43.059902178,42.986595266,42.966709694,42.991278167,43.148716525,43.118746278,43.060108057,43.056805465,43.05033134,42.995654821,43.119561643,43.04573274,43.100843668,43.074984056,43.104690884,43.012178628,43.075598396,43.09538748,43.075237177,43.089237363,43.048629381,43.075078212,43.083417929,43.089551723,43.07505347,43.068096879,43.058316166,43.089180297,43.067769843,43.111900788,43.104448428,43.103915189,43.106230879,43.10374314,43.068089053,43.073373037,43.089585013,43.06800702,43.023448567,43.023639148,43.022790721,43.02818101,43.0167886,43.022661419,43.012298645,43.022160069,43.005435464,42.988100556,42.992735934,43.083867363,43.093464955,43.097417016,43.084399193,43.104623517,43.046991314,43.089921957,43.089865441,43.068843032,43.071656677,43.104627141,43.104591365,43.089795649,43.066071798,43.067631928,43.067719525,43.002853402,43.039974399,43.00733833,43.009005328,43.024209966,43.01704105,43.006433415,43.067559991,43.066962767,43.049967893,43.402689182,44.203032392,42.987087857,43.145723462,45.539524097,42.804099788,44.286568603,42.730722976,43.100637873,43.704607255,43.606577781,42.622666299,43.960537072,43.58930456,45.826664557,44.213251211,43.611894448,43.811755792,44.670150163,43.318331853,42.877845968,43.026099961,43.148358387,43.038686819,43.040290186,43.038707647,43.040334448,43.148632937,42.988268122,42.985772539,42.988240001,43.000552877,43.123234959,43.048668896,43.038738234,43.061920168,43.060788669,43.033694636,43.104580223,43.070497611,43.134027461,43.17995195,43.119410899,43.139937138,43.022689153,43.08992222,43.09066952,42.991847047,43.111299407,43.016942219,43.144175812,43.069982368,43.049358327,43.05612666,43.052967122,43.051106708,43.044370704,43.072841558,43.119506799,43.038770022,44.528804925,43.067704847,43.07295865,43.069230658,43.122258236,43.109164581,43.139951537,43.072156892,43.084640948,43.080730736,43.08189418,43.068211405,43.036682554,43.05522756,43.050631804,43.075771186,43.075818118,43.060567095,43.073143401,43.076459775,43.08455975,43.075982916,43.034176131,43.030721214,43.073169548,43.090459745,43.080984626,43.079625139,43.069228288,43.081430743,43.060477983,43.081087394,43.082251778,43.119021741,43.082589172,43.070881941,43.098318553,43.12102831,43.068736539,43.040965242,43.075349924,43.070884683,43.067968914,43.035692659,43.071777447,43.074851616,43.084151575,43.047637462,43.119945639,43.05053481,43.072130217,43.072945617,43.068582458,43.072286166,43.062356266,43.073265573,43.072030944,43.072009787,43.06080609,43.102896934,43.06364486,43.062361203,43.072159822,43.117279024,43.102270786,43.050236744,43.098971442,43.065297286,43.078840573,43.079840097,43.071021185,43.07229692,43.07068782,43.073332677,43.116410503,43.033466448,43.067753714,43.070972257,43.064380535,43.07595305,43.033357081,43.038564193,43.0662568,43.129952681,43.089367928,43.060487327,43.063113853,43.12005022,43.066970541,43.077247463,43.068391811,43.074103926,43.122492565,43.053356223,43.046293922,43.073220477,43.06771685,43.093950681,43.101821302,43.07587789,43.103303814,43.083285967,43.057633068,43.032194834,43.122671207,43.060219877,43.071547603,43.06400025,43.07485237,43.06206514,43.083802592,43.050117798,43.026950343,43.049145483,43.073311382,43.063202742,43.041509095,43.074966615,43.067012228,43.075023514,43.099803662,43.066825595,43.087394283,43.032817051,43.04999176,43.046358652,43.125292646,43.069221913,43.048394699,43.034959964,43.067094403,43.071975711,43.048516284,43.092414071,43.049606446,43.084189678,43.071000993,42.895015998,42.930044572,43.009722806,43.15536436,43.223656203,43.008127977,43.173941063,42.905995107,43.147163181,43.187503986,43.17413721,null,43.194441706,43.199155276,43.176463782,43.17825455,43.174301078,43.180108646,44.529470752,44.500115773,44.523726826,44.511571317,44.526360651,44.533530876,44.518302474,44.521312653,44.512827403,44.523562499,44.513791903,44.510255517,44.515933658,44.526283059,44.52282717,44.52990718,44.483958803,44.517235083,44.499600051,44.506487545,44.491135674,44.537055902,44.512069449,44.52471481,44.512038811,44.520131951,44.512387528,44.508123121,44.512170006,44.531006752,44.523757578,44.519812768,44.518692776,44.520338174,44.525894592,44.497530654,44.512885359,44.511108743,44.519432897,44.516763593,44.513249955,44.536308377,44.509583085,44.524461306,44.510617861,44.509613468,45.453861281,45.464274016,43.088178871,43.045833122,43.06076517,43.054651522,43.099006542,43.021130103,43.017094423,43.003372809,43.037440466,43.038794602,43.045878303,43.035065788,43.038812182,43.060042301,43.049194605,43.044388218,43.008208302,43.003038002,43.014249596,43.023933825,43.008410733,43.019094123,43.040252727,43.067773544,43.060591492,42.990298623,43.067648914,43.036155537,43.067915307,43.042144708,43.112246471,43.143256649,43.114313857,43.120546058,43.177707765,43.083081428,43.059352767,43.069723313,43.089305246,43.077657409,43.076889515,42.98827125,42.973822533,42.93038095,42.934949036,43.002851122,42.960073328,42.959069447,42.973914493,43.11024546,43.075228863,43.075232182,43.104526726,43.120349784,43.104639879,43.05397037,43.133982282,42.959299166,42.960405803,43.097677938,42.977119911,43.037644269,43.018973226,43.791620843,43.776138489,43.791471174,43.791711262,43.772755554,43.787990397,43.779921024,43.784913999,43.768927341,43.770325337,43.757791065,43.781023491,43.776856629,43.742893732,43.778789642,43.789180618,43.781865438,43.755105012,43.778872973,43.780436329,43.787773802,43.776353438,43.784255489,43.772856185,43.754605504,43.782659972,44.207263694,44.228526674,43.81267207,43.792326662,43.80151041,43.804641497,43.801571759,43.808726978,43.810054936,43.806716453,43.841425455,43.792401553,43.797789375,43.788933975,43.801401422,43.812828974,43.78700763,43.822884074,43.808901348,43.808757731,null,43.854110813,43.809989516,43.809233639,43.804648592,43.796829627,43.844461594,43.81281199,43.84191842,43.856944872,43.792214282,43.816158989,43.847672092,43.81727885,43.81813784,43.806707271,43.817348914,43.827184607,43.808949444,43.85141912,43.81200641,43.857624065,45.504487813,45.412019305,45.368793713,42.514779588,42.558704964,42.556973863,42.640190783,42.498185842,42.619231735,null,null,42.660568731,42.571186008,42.501484287,44.548907663,44.589794245,44.590849191,44.454985181,44.554689306,44.624853936,44.466911232,44.422380733,44.304828699,44.46941554,44.484076766,44.401087461,44.489248604,44.481214264,44.482606851,44.48520672,44.484570446,44.442273388,44.445129938,44.441993795,44.450392205,null,44.444248051,44.449564974,42.564201355,42.555469787,42.558480664,42.966282932,42.956997359,42.96628361,42.733873355,42.726522677,42.732181936,42.732740117,43.06191668,44.50059968,43.939289027,43.949761569,43.939235483,43.9332939,43.926459906,43.943299139,42.532405869,42.553043558,42.576130001,42.610759208,43.547787159,43.557123972,43.574773246,43.183825536,43.092506407,43.097021912,43.090875202,43.091761875,43.09563812,43.0899734,43.103212353,43.096584016,43.104491327,43.096870826,43.030941087,43.019862655,43.004965282,42.95921715,43.035618754,42.973538865,43.041745255,43.058281047,42.998458425,43.07004727,42.98972874,42.998417886,43.060267649,43.056344891,43.035735929,43.059076989,43.059036735,42.925339516,42.915432554,42.923995137,42.923878672,42.92368582,42.893606961,42.912293823,42.895979513,42.923888882,42.900285934,43.170450448,43.16457232,43.166971505,43.159235302,43.160271277,43.139671661,43.170330458,43.106874561,43.190951102,43.062175977,43.069298684,43.049290224,43.037941485,43.050778996,43.047055032,43.04969785,43.052810784,43.073293248,43.036818317,43.055139928,43.060524446,43.0367391,43.074633984,43.044061155,43.056571283,43.05263802,43.094601362,43.075794666,43.060727705,43.060405222,43.067457483,43.089011777,43.065350523,43.047209354,43.051390247,43.067936091,43.077450811,42.988413211,43.016457044,43.01664802,43.015499148,43.008677018,42.999016905,43.01779153,43.01745476,43.023697759,43.002849797,43.013802692,43.013555932,42.98708253,43.01744412,43.006263372,42.98534017,43.009063201,42.998095965,43.016668449,43.016668504,43.016529463,42.992725706,43.006502799,43.017140759,43.001290741,43.003443199,43.012878465,43.016709692,43.010152392,43.012026315,42.990058449,43.010503002,43.007302083,42.999670022,43.011036202,43.016530662,42.980832771,43.016452285,43.016538333,43.000642422,43.002469172,43.961523201,44.795714672,42.596738414,42.602954261,42.602967417,42.603543818,42.602194108,43.274746196,43.271371184,43.27667383,43.300030843,43.292990145,43.285564732,44.515171383,44.52705508,44.522220042,44.525979052,44.498161751,44.528849832,44.528777138,44.531499929,44.521581784,44.523494909,42.673845208,42.670012292,42.687838301,42.61443506,44.182923168,44.18439603,44.1511554,44.156343393,44.181645314,44.158194256,44.177900656,44.187121201,44.189478542,44.189229686,44.170740404,44.208927872,44.204744986,44.202076479,44.199401929,44.201079831,44.204853374,44.228927814,44.202726353,44.203799611,44.197907055,44.215525252,43.033503761,44.032308152,43.976496753,44.154694074,44.126678467,44.011379029,44.214223257,43.946987174,44.23020945,44.102583456,44.290542356,44.291012364,44.241435649,44.261581702,44.29898943,44.265572172,44.263889708,44.265708694,44.280296832,44.269274636,44.287374015,44.261347441,44.26567352,44.253648243,44.295630762,44.2729958,44.281658482,44.28047122,44.26188878,44.272993123,44.243742035,44.277466346,44.265768215,44.272833853,44.249900494,null,44.289870477,44.243926926,44.264173381,44.24493502,44.296648239,44.284906237,44.25809021,44.241208998,null,44.239775916,44.287368698,44.258084738,44.264088044,44.263598777,44.278486099,43.510250322,43.351995398,44.775469722,44.805676962,44.818965911,44.794747025,44.764484228,44.774768942,44.774163616,44.798673869,44.799305522,44.802269499,44.775186716,44.801174908,44.826700469,44.798743272,44.843481157,44.785612558,44.85104501,44.802162061,44.794203309,44.826661464,44.838881141,44.807728433,44.792192817,44.795026935,44.817280839,44.601848299,45.124324514,45.793291951,44.85820263,44.853716691,44.865973084,44.886109835,44.786482589,44.783274582,44.780155687,44.782072925,45.099369279,45.092316892,45.073653576,45.10001945,45.099891627,45.100147914,45.099267313,45.098015653,45.086349333,43.807826808,44.17463392,44.35391295,44.346195112,44.330550445,44.357907395,44.374138727,44.374789315,44.369014796,44.38391133,44.354148966,43.627734025,43.62808078,43.629149326,43.627598317,43.627507729,43.847364221,43.850939717,43.20708267,43.221547615,43.243158712,43.206657837,43.221575987,43.207080917,44.09532959,44.087568161,44.093214592,44.089203127,44.097081294,44.084977059,44.072910999,44.085538182,44.104920624,44.091479632,44.087278155,44.072130154,43.016691666,43.04305989,42.99342895,43.00489941,43.020778229,42.982761582,43.005421616,42.993273034,43.037041258,43.019568016,43.032788235,43.003023449,42.982892297,43.022773981,42.988420062,43.011166177,43.01317045,43.021884927,43.008580597,43.01371511,43.011840053,42.954271282,42.95782865,42.869232703,43.009924495,42.885306558,43.11723286,43.082989235,43.061860798,42.991950489,42.900146259,43.123543347,43.082768343,43.066615595,42.98823689,43.068512429,43.110189672,43.0892373,43.083205401,null,43.105287218,45.658630425,45.687772132,45.688734565,44.145092159,44.28090666,43.949765108,46.19280136,44.220574039,44.222693304,46.150184634,46.537553081,43.874465822,43.879842385,43.90818229,43.890294674,43.869478696,43.905539966,43.883437795,43.882681971,43.88445669,44.26099637,44.279948796,44.261008612,44.264181328,44.293364705,44.296046594,44.270787602,44.273990054,44.272136919,45.543414123,44.994126612,44.892436365,45.001180218,45.093587046,44.960930682,44.962649926,44.954234728,44.973006265,44.979671615,43.904041759,43.973432797,44.065060795,44.074498686,43.964952546,45.479982884,45.483835063,45.499492993,44.860668937,44.840837117,44.838647573,44.856371074,44.865753326,44.859826553,44.874581765,44.876425732,44.900748979,44.876365457,44.876502388,44.870096553,44.905846174,44.870987905,44.88619144,44.863919464,44.886389097,44.876450996,44.900956126,45.264756208,45.183763945,44.791149068,45.187391969,44.860428364,44.844776532,44.83781722,44.843638689,44.829115622,44.820487011,44.822017183,44.72729,44.958002741,44.952555199,44.94813604,44.958061366,44.96959178,44.957223445,44.983662929,44.969569333,44.970060063,44.981109724,44.956866291,44.960015508,44.959260962,44.986515595,44.96426905,44.968665928,44.960375462,44.957874478,43.555956197,43.364426996,43.955839157,43.955761204,42.875204322,43.088604379,42.851996666,44.325426,44.504216733,44.332080636,44.352142887,43.070867425,43.074423617,43.076097318,43.080269963,44.262326537,44.383194591,44.258332254,44.302427962,44.282250705,44.260087173,44.01990749,44.020080283,44.274711765,44.27313096,44.269600855,44.301298237,44.287020322,44.290236925,44.268835095,44.273142579,43.162547881,43.170056324,43.178005045,43.035765523,43.04681863,43.042547901,null,45.896598174,45.895105917,45.635075523,44.26124719,44.283981231,44.277235242,44.2600321,44.274629862,44.021740455,44.015934777,44.034193136,44.025014886,44.027455792,44.003606307,44.024930541,44.004709946,44.01606664,null,44.030123488,44.018075658,44.028672037,44.029075693,44.031466539,44.032124784,44.016579861,44.048012066,44.04491381,44.019668959,44.005067294,44.017719377,44.039686789,44.023559134,43.078964617,43.076921655,43.075664975,43.073534812,43.075365678,43.073732516,45.005481173,44.824826717,44.728028376,44.738640469,43.119559674,43.107617146,43.118481318,43.111329668,43.105709571,43.118336969,43.122690699,43.118478712,43.129461358,44.987564683,46.585817701,43.176886995,44.611290799,null,null,null,42.780408581,42.782170507,43.861389781,43.76183928,43.802331768,43.838982884,43.816184062,43.308746292,43.321312926,43.316841174,46.017465033,42.967634742,42.580663575,42.59890684,42.625363361,42.570606498,42.586462454,42.588091759,42.587749481,42.583568504,42.597113468,42.587862257,42.577857744,42.588694374,42.582700882,42.577204064,42.595388936,42.588027791,42.585960822,42.576088467,42.573721686,42.582673194,42.580750449,42.572094433,42.587982413,42.57431453,42.601367683,42.580771634,42.580771634,42.572284402,42.587976933,42.630736447,42.577662705,42.590574783,42.580870674,42.566369425,42.588543329,42.587566815,42.555517976,42.588387377,42.632303327,42.588255068,42.573768124,42.583393453,42.583393453,42.582376041,42.570057657,42.606122108,42.566373494,42.580678334,42.580871317,42.632209349,42.56949057,42.570230299,42.575314159,42.603251157,43.920636847,44.919353485,44.945316286,44.945381697,44.990976978,43.802123631,43.296010551,43.470149952,44.447373648,44.492537797,44.490107606,44.449985504,42.814699475,42.72644107,42.714395616,42.531993902,42.665961903,42.698618574,45.473419854,43.169533298,43.249251592,43.474810496,43.532414479,43.474598551,43.372682568,43.472597272,43.59239224,43.540357587,43.348767254,45.682582446,46.062820304,44.444511824,45.39579979,45.409933803,46.720551674,46.706247907,46.707624041,46.720016435,46.694523132,46.719792954,46.706352112,46.698721237,46.72121145,46.726602846,46.706217111,44.130162652,44.153648423,44.171590365,42.651837878,43.085146914,43.102294269,43.116282133,43.110089877,43.081445553,43.09583261,43.116276808,43.107104929,43.110466475,43.110711162,43.082232931,45.001231636,44.406414161,44.664092453,null,44.655583674,44.678810628,44.667336431,44.675120658,44.655587661,44.655624208,44.681626181,43.082599652,43.083521514,43.300833179,46.352853968,46.357182747,46.675289776,46.48624153,42.959520575,42.965206524,42.978855935,42.967255474,42.967932766,42.964759879,42.932045466,42.9665809,42.961170447,42.959351072,42.959805908,42.953600667,42.932706622,42.959634367,42.98098518,42.967670272,42.566106487,42.56578124,42.565870981,42.517594282,42.518208188,44.397715282,44.377758496,43.323846939,43.122894423,43.120247347,45.101433457,45.120480354,46.449852818,42.893805896,42.869788794,42.898393452,42.89036564,42.857263745,42.921383783,42.872623352,42.925152995,42.882520652,42.927749612,42.929537085,42.90179792,42.886574672,42.889982609,42.944716393,42.942014835,42.937253447,43.969237379,43.625850764,43.626834267,43.633192261,43.641406531,43.036171538,43.054988469,43.091215214,43.089328056,43.095586353,43.089211713,43.095569546,43.470965412,43.459961201,43.465069404,43.473728468,43.470033537,43.47185942,44.80303033,45.88966044,45.861469143,45.888224633,45.887775381,42.91806587,42.906582593,42.924157421,42.910877213,42.912087741,42.915338989,42.923783159,42.928607823,42.930052883,42.917908589,42.900711216,42.90473073,42.930019552,43.004974889,43.016877332,43.020157143,43.019498928,42.697044329,42.718005088,42.717918246,42.717613982,42.719158061,42.69746563,42.737368364,42.712235385,42.721474993,42.738156764,42.723525917,42.718856365,42.722953735,42.676463939,43.741772038,43.795862263,43.795543361,43.789102834,44.377677403,44.94441063,44.957289519,44.914657746,43.781761178,43.847052308,null,null,44.891565787,45.302925411,43.539682875,43.532445518,43.547984051,43.547032971,44.739462567,44.759535718,43.605944075,43.572477845,43.591639519,43.609007262,43.555635389,43.605585971,46.325572603,42.97714299,43.008044442,42.980813033,42.974874712,42.995495813,43.06087276,43.054225113,42.545343756,42.542759412,42.973714099,42.960252126,42.959124789,44.25560317,42.848132223,42.845997272,44.904313939,44.909400935,44.900797747,44.903344941,44.914905355,44.905718566,44.908276283,44.906534758,44.906720111,44.913822885,45.347186746,43.090370697,43.250303795,42.920186056,42.916704684,42.916914554,42.929323231,42.916806082,42.966373551,42.936421508,42.935568558,42.959184736,42.933679355,42.951747175,42.944564026,42.959090809,42.947545892,42.958139935,43.220664395,43.192671096,43.193290774,43.214888798,44.024945205,44.023484619,44.022556556,44.028391717,43.591474782,43.331913508,43.405575585,42.990528377,42.965943877,42.994267156,42.984055465,43.001761392,43.181506928,43.193908829,43.177427426,43.179959718,43.332501719,42.725981453,42.752604842,42.745271629,42.719989425,42.712380577,42.726075905,42.718715158,42.694100324,42.739405971,42.707550166,42.707102328,42.710652204,42.7476484,42.712434514,42.714256625,42.735516079,42.732783611,42.712544804,42.737541037,42.751358556,42.704076654,42.703946344,42.70947231,42.722528062,42.741554057,42.710179817,42.730673202,42.743927901,42.72687604,42.707659343,42.733801645,42.742305356,42.742554579,42.742308883,42.739336573,42.720482202,42.709490845,42.714301408,42.726712969,42.726537764,42.721465101,42.727204837,42.73165654,42.715139975,42.7218351,42.698910296,null,42.697895686,42.685861439,42.683700444,42.67973622,42.666500172,42.638463112,42.682409585,42.681995221,42.706943724,42.69366221,42.685717266,42.679489016,42.700147265,42.716261182,42.678754599,42.689261231,42.680521739,42.71190432,42.694283709,42.678744386,42.679643694,42.706574811,42.693857975,42.677864084,42.679377356,42.693615611,42.680508231,42.674230558,42.679639774,42.688358191,42.597773228,42.603689787,42.574649184,42.598771334,42.573090578,42.595374897,42.589584531,44.168262724,43.32427751,42.51092129,42.513052392,42.518284596,42.53215523,42.510837724,42.521545872,42.503059798,42.510821783,42.513679138,42.500585111,42.522772153,42.507300681,42.522194725,42.522565794,42.557852224,42.501113004,42.510074659,42.49952781,42.534541213,42.527746454,42.523433592,42.510908022,42.524896396,42.532171565,42.524948634,42.509148366,42.838549547,42.840943468,42.780440839,42.780672113,42.91728591,42.926997681,42.854456,42.862663218,43.007582404,43.008674642,43.004915197,43.00640552,44.35255739,44.552494097,43.338941433,42.901834664,42.8855258,42.924627581,42.890939019,42.784640616,42.785701795,42.784571236,43.236603134,42.689614963,42.680792499,42.682102033,null,43.102100445,44.022669152,44.036925445,45.82833327,43.08335362,43.010693382,43.112045202,43.164147198,43.112002728,43.122009204,44.070226111,44.239379181,43.189731307,43.159835247,43.193976278,43.226415559,43.190035359,43.19482884,43.197781942,43.189907829,43.160966888,43.190444423,43.20094952,43.196493771,43.335486754,43.66171783,42.631036591,43.077645859,43.074647329,43.074756165,43.074780702,43.31783587,43.317895344,43.317708844,43.31746712,43.31872024,43.317768082,45.532323309,44.568321062,43.402233827,43.439718204,43.408869939,43.404951014,43.412232375,43.418946381,43.42531213,43.427278651,43.434066527,43.429505618,43.419447486,43.447070303,43.394611254,43.407632567,43.426771675,43.397976314,43.411585244,43.412165954,42.83980077,42.834931381,42.834992068,null,42.841535969,42.927649278,42.947933764,43.772947533,43.758485238,43.732089984,43.751984907,43.751999312,43.729668212,43.742983922,43.768441995,43.759852725,43.78118,43.75647436,43.771536426,43.722036168,43.76854404,43.758538064,43.728402335,43.762223373,43.758630003,43.774071599,43.773870847,43.749884954,43.729859103,43.7497936,43.760790111,43.755253599,43.77909354,43.755257291,43.768149915,43.759618516,43.76473523,43.732273367,43.747142544,43.574430632,43.782405108,43.782941723,43.6130227,45.140696912,45.141939067,45.140525446,45.16284793,45.14059785,43.460881745,43.472325025,43.443933009,43.445038069,43.490426817,43.469096085,43.054499099,43.078426437,43.090329599,43.053635155,43.086531494,43.057643525,43.084094856,43.061446057,43.060473428,43.088393154,43.036374609,43.090457916,43.088069964,43.089880703,42.919912524,42.929877658,42.934428099,42.941583663,43.175798138,43.154836295,43.175439004,42.998772091,43.013459356,43.00474541,43.087760689,43.747322975,43.747613047,43.752056052,43.386927877,null,43.391995643,43.387049782,43.405348201,43.562696581,43.561838641,43.559142436,43.540636345,43.173199971,43.746990665,43.744384235,42.608707933,45.047352995,43.026468868,43.028728699,42.577281136,45.644197388,45.922912402,43.381817682,44.884168372,44.883534428,null,45.939528181,43.104715694,45.16021,43.060131171,43.052528592,43.043912958,43.044451535,43.071114728,43.069334199,43.071490563,43.085577401,42.988413806,43.0602994,43.07150906,43.098844334,43.097233274,43.092902532,43.045717193,43.006401563,43.01649213,43.056542718,43.023017719,42.990168715,43.004739096,43.011033304,43.023383723,43.004920858,43.023022621,43.046973398,42.988798061,43.148172829,43.010264884,43.080653959,43.037349771,43.078747478,43.007869419,43.046999871,42.986607792,43.060351656,43.104033812,43.012470099,42.937602484,43.121179592,43.00293226,43.075224993,43.089938439,43.060209928,43.056924745,43.111962735,43.119434957,43.11004415,43.001968312,43.031293114,43.03071517,43.07140561,43.089983289,43.092740571,43.096956003,43.085266142,43.060191103,43.002287615,42.993169144,43.052491053,43.040274437,43.022735036,43.111851967,43.126628694,43.110103514,43.089878275,43.089730781,43.067912222,43.060022657,43.052952464,43.001638127,43.071114099,43.062584268,43.055517112,43.060291174,43.0826295,43.024134053,43.021605228,43.060002896,43.056641216,43.036679174,43.059579087,43.060107101,43.047716769,43.117569477,43.100432558,43.073718403,43.069615897,43.068407827,43.052558587,42.988220382,43.041399577,43.067802981,43.075170073,43.109427425,43.082157115,43.055101504,42.98658752,43.116666152,43.011606693,43.075068426,43.059101639,43.089568722,43.089617539,43.112916391,43.085003531,43.010000696,43.104650933,43.069722224,43.090028992,43.104199322,43.138983585,43.14871509,43.002293424,43.016520943,43.041482834,43.045636437,43.088036569,43.089953287,43.097279154,43.052905465,43.016895204,43.002847456,43.00275343,43.089893389,43.025771587,43.016777714,43.00325339,43.017043443,43.023228743,43.075198266,43.060615562,43.068031367,43.046792352,43.087846346,43.089693065,43.014327768,43.012510188,43.020136114,42.988505779,42.973956406,42.999529136,43.011149309,43.042945038,43.052559665,43.048205686,43.043831744,43.032803751,43.043834801,43.063540249,42.981073657,42.973774551,42.981298165,43.094543856,43.012301678,43.112291232,43.017046654,43.002879044,43.100249944,43.046695055,43.089547988,43.104640495,43.061478932,43.067988882,43.148631221,43.006478869,43.012513861,43.002869983,43.052897373,43.015846494,43.021583909,43.082331383,43.001628818,43.002851767,42.981018626,42.988334173,43.067592508,43.070882786,43.00285863,43.044581639,43.04340578,43.030478248,42.988273078,42.937494021,43.09003723,43.071414131,43.075181766,43.025693042,43.057816918,43.054591451,43.05871843,43.059726702,42.990903244,42.98837673,43.090873453,43.07510647,43.084895899,43.089490438,43.038701451,43.069258201,43.072994207,43.085964472,43.072332487,43.048610488,43.015225341,43.017014632,43.139678793,43.095524334,43.023201037,43.015827653,43.023021297,43.089998008,43.05179422,43.060612627,42.988870007,42.959215586,42.986223203,42.988258664,43.071550524,43.053450413,43.03890407,43.012291127,43.003168609,43.119278586,43.119680649,43.123888256,43.090207954,43.075225934,42.98806993,43.074937768,43.089853118,43.04418484,42.981589029,42.965717867,42.98163205,43.049358157,43.052152541,43.071031727,43.051216125,43.038724344,43.052875567,43.053860146,43.06065278,43.040255719,42.961644046,43.093771636,43.106150075,43.035466987,43.027630557,43.067433037,43.060331044,43.036736988,43.104861256,43.108048784,43.089893413,43.07821709,43.033863848,42.988463548,42.973790485,42.987153478,42.978584456,43.01906135,43.052697602,43.034824124,43.069811445,43.089164947,43.062709227,43.06775424,43.126826334,43.133835105,43.112634042,43.042717649,43.040327443,43.023222293,43.006730602,43.014174975,43.01105286,43.005434081,43.011233517,43.009079572,43.001513568,43.021559086,43.014157223,43.013804029,43.022315854,43.023212169,43.083036694,43.089592699,43.116790629,43.119877508,43.090894171,43.019034111,43.160814793,42.988273546,43.05404318,43.053909733,43.067910524,43.010135601,43.01704071,42.997595852,43.094961307,43.092623649,43.133924584,43.069731865,43.06048286,43.052424299,43.017044377,43.119417423,43.178475534,43.183383041,43.040165888,43.040201463,43.055641069,43.039794536,43.041857173,43.04319421,43.089735872,43.092533112,43.069848441,43.089701757,43.105143064,43.089918288,42.98610245,42.988354465,43.014259531,43.021619407,43.02721523,43.08709997,43.071136013,43.096936377,43.080349558,43.075154463,43.067572065,43.111091742,43.038759604,43.067971657,43.030522941,43.059670404,43.08548426,43.01379555,43.045828637,43.053467252,43.104791564,43.064056926,43.038703093,43.058624437,43.038700114,43.067911492,43.018688761,43.017046584,42.976435599,43.003360071,43.021720712,43.01408789,43.002758883,43.014126902,43.003050952,43.074763929,43.012285467,43.004849251,43.036110134,43.019078062,42.996891583,42.98808464,42.959273391,42.981061818,43.060454509,43.031418381,43.032080154,43.121545073,43.119486187,43.180171967,43.110124553,43.048698619,43.089889771,43.109943766,43.07475954,44.233775294,43.187420859,46.729093437,44.496830435,42.628589376,45.898483901,44.244031074,44.962804238,44.243581786,44.35735974,44.218561465,42.571592372,42.595721267,43.04902728,42.656071186,43.389081073,43.070132431,43.090599592,46.634796954,46.167861378,44.931359484,43.019134323,43.042409982,43.036226384,43.041605138,43.038163896,43.040243543,43.038674822,43.03867167,43.039464096,43.075617421,43.091622856,43.104985655,43.084831306,43.104366006,43.068259799,43.112847111,43.141271731,43.036671161,43.096584432,43.004834895,43.027407542,43.039403748,43.031553236,43.133966532,43.089865131,46.666416937,44.530917534,43.066863883,43.077991344,43.068214909,43.06504346,43.046089042,43.051788847,43.05587174,43.074656173,43.063833539,43.060577909,43.075965401,43.067669791,43.074950942,43.069620333,43.114229833,43.07058967,43.075028631,43.047450722,43.064538582,43.046351288,43.084456498,43.031862237,43.113751232,43.139411699,43.118750951,43.113807978,43.079676029,43.043551648,43.072027397,43.068046335,43.083410074,43.073319962,43.046686543,43.06790598,43.136726923,43.045148508,43.074482563,43.073332659,43.050329466,43.073289431,43.091608056,43.038598597,43.049427252,43.038964775,43.067760931,43.057473776,43.031375523,43.070910634,43.115516881,43.067668286,43.133681013,43.067685273,43.133927686,43.084140289,43.066942894,43.048249627,43.069262148,43.067692771,43.073134002,43.099874993,43.083393115,43.134753222,43.11246011,43.07053589,43.077416746,43.036715778,43.039076912,43.106815294,43.076828218,43.072304891,43.074227159,43.095854648,43.08455236,43.079622673,43.114032118,43.098830664,43.092417508,43.084534508,43.072599249,43.07593648,43.076779721,43.092247101,43.098584618,43.096155367,43.122038895,43.109287153,43.068236493,43.083822045,43.114385402,43.087995822,43.050253891,43.074846121,43.084670886,43.073415231,43.078539751,43.050215935,43.084872208,43.050287519,43.060528057,43.079624454,43.031852019,43.042987408,43.066897853,43.060746592,43.064753051,43.07339981,43.110685929,43.051697833,43.125942912,43.054254129,43.032785596,43.061957573,43.058410561,43.051130218,43.067730511,43.046284088,43.102807968,43.128646463,43.075012728,43.069560953,43.026877885,43.05579248,43.093852231,43.135912007,43.12100526,43.1264688,43.120999633,43.073223145,43.038538271,43.083897968,43.120515276,43.12977893,43.127942002,43.104265522,43.069916139,43.067644431,43.07864044,43.038542438,43.04372957,43.096190337,43.130634535,43.083136755,43.120080974,42.995567729,43.00145864,42.935139306,43.079637957,42.96814127,43.094137637,43.267219433,43.167832649,43.195900129,43.195398353,43.18020761,43.18123686,43.184116606,43.187878275,43.187316744,43.17583667,43.175776464,43.189553668,43.182779111,44.515111204,44.51772113,44.523868837,44.514810727,44.528052862,44.520112537,44.518681235,44.51203433,44.491376869,44.514396683,44.517589492,44.516229633,44.488993731,44.50009573,44.514426996,44.528603139,44.487940204,44.510538431,44.49758306,44.532415827,44.520146501,44.474076209,44.488966995,44.513274938,44.517761177,44.515119413,44.509483164,44.492499418,44.524708981,44.504145329,44.514242159,44.494392621,44.512591153,44.500768826,44.530046364,44.522726498,44.50428326,44.492493321,44.516334014,44.520475242,44.534571253,44.502265487,44.514989905,44.506374127,44.504884733,44.527006531,44.512454112,44.489424564,44.52373856,44.516727224,44.512831151,44.487385151,44.501061971,44.47799319,44.52356243,44.514681984,44.533172642,44.514506501,44.511984837,44.514413793,45.464177566,43.067990797,43.052427658,43.052508996,43.052954505,43.040035803,43.049837157,43.021650226,43.002796179,43.012492822,43.053940758,43.057116171,43.058554281,43.067470646,43.064222611,43.029639101,43.067910747,43.114003107,43.012359126,43.162712216,43.112062643,43.047502816,43.112703575,43.154415534,43.154417001,43.081519722,43.067556149,43.087195421,43.089761297,43.095760701,43.063871113,43.085544294,42.981363187,43.082914203,43.075418494,43.09463215,43.069844072,43.100861247,43.107290305,43.07964118,43.093474948,43.078008649,43.17868101,43.119421238,43.149622047,43.119420036,43.006620557,43.090267208,43.04294762,43.05281573,43.052970954,43.04383255,43.075111248,43.778668842,43.778653235,43.778636732,43.752352212,43.763693252,43.789123645,43.776711888,43.777037533,43.794762656,43.76926189,null,43.780932531,43.79166089,43.79158476,43.780673558,43.786069005,43.791549704,43.778863545,43.784291843,43.745675158,43.778451769,43.77714818,43.776202163,43.784351201,43.784289323,43.776941457,43.783338123,43.784346738,43.754963102,43.784256341,43.783552449,43.773642428,43.766888918,44.221189407,44.139482141,44.139386301,44.228715692,null,44.193575557,43.80257551,43.783252754,43.812856233,43.816159301,43.816989662,43.781966085,43.837973722,43.835719731,null,43.783222051,43.81294705,43.795402387,43.787233919,43.812002674,43.802488271,43.806692988,43.801499495,43.797429911,43.809512742,43.820234727,43.807700954,43.769445726,43.859983945,43.804658974,43.84126499,43.861321645,43.771084793,43.850701455,43.816140552,43.841395864,43.815023636,43.810016236,43.848503943,43.811813111,43.811675174,43.815009181,43.856505354,43.775351978,43.810986977,43.812439273,43.771340726,43.804664591,43.795330791,45.371423809,42.615923242,42.604103346,42.568457389,42.643847148,42.524356087,42.638585097,42.582588908,42.58920733,44.485032303,44.471836673,44.471400806,44.477766941,44.561620359,44.561678048,44.561878931,44.473675872,44.620347644,44.444810911,44.470117803,44.593284106,44.573529104,44.491813092,44.46345318,44.489301142,44.473119924,44.485613486,44.48713398,44.497506002,44.495328793,44.488132239,44.450448126,44.446796126,44.445250706,44.439472271,44.445217388,44.451231633,44.442323154,44.448818309,44.448831354,44.442225838,null,44.444320875,45.101421668,43.1355117,43.081263312,42.734554425,42.735464885,42.745492062,43.046504956,43.04366039,null,43.049852399,null,44.520457681,43.946279303,43.942393032,43.939022039,43.9479285,43.949864762,43.939224939,43.9433565,42.662671282,42.62702981,43.574794848,43.183719076,43.096914958,43.111527336,43.106346817,43.096876537,43.097906668,43.11152738,43.105565109,43.092223508,43.096514905,43.093000959,42.950211177,43.025287072,43.014509646,43.026550212,43.015303811,43.024104247,43.019291725,43.005029306,43.00719663,43.023987106,43.023653474,42.971887807,43.015358371,43.021281705,43.016403513,43.009654638,43.086400796,43.057924422,43.061688404,42.931246248,43.053430175,42.914904159,42.927779771,42.915784054,42.926102633,42.921919254,42.901703554,42.924489016,43.184674097,43.179044414,43.162383251,43.163325694,43.185676243,43.167217983,43.177348238,43.19105914,43.050932996,43.061790889,43.062175978,43.047762071,43.050036903,43.07185358,43.062358238,43.071051973,43.062175976,43.060595065,43.062109674,43.065783043,43.050690927,43.067202215,43.045599736,43.044836446,43.05877773,43.052240151,43.061123879,43.056771711,43.060738182,43.056579619,43.06662444,43.074471278,43.074648666,43.046237799,43.077571014,43.060497396,43.072055452,43.088717264,43.044106553,43.05182142,43.045838753,43.04100346,43.017145029,43.002602138,43.00093386,43.014147979,42.995438666,43.016668568,43.013478123,43.017747385,43.01170323,43.006515147,43.006579954,42.987224064,42.995440093,43.016643965,43.016623464,43.016499144,43.014589097,43.010588286,43.018313165,43.012028234,43.016082498,43.01095752,43.016548911,42.99855705,42.993750243,43.010212678,42.999559684,42.995809049,43.020950133,43.006514538,43.001645058,43.00557917,43.012898585,42.995441229,43.002686823,43.002732657,43.019278275,43.002745371,43.002546611,43.016764451,42.988234851,43.003185645,43.003645285,43.016642381,43.013177039,43.01327966,43.01660633,43.014342743,42.989610402,43.016582096,43.016306213,42.991985372,43.016641439,43.955942726,43.955942526,44.818798747,44.816286043,44.803666521,44.817787633,42.603007389,42.606246469,42.592208719,43.28559664,43.295415378,44.523412515,44.523177895,44.522362523,44.524185977,44.532650952,44.526069447,44.527060643,44.5225273,44.528855734,44.52620205,42.691717764,44.185078434,44.162348268,44.18577118,44.171077484,44.170883136,44.18437743,44.184956658,44.182056944,44.156495812,44.17528248,44.183730173,44.156071719,44.186532517,44.165915181,44.176725262,44.177801053,44.182944681,44.176964778,44.178292865,44.207309994,44.210537822,44.206997212,44.229469647,44.229482388,44.208303776,44.204814737,44.215422724,44.204706207,44.231256078,44.208050281,44.210633886,44.54720708,43.032734,44.039292032,44.099449041,43.989300566,44.03295151,44.032749834,44.068157407,43.982157202,44.199355393,44.251468077,44.261903786,44.258599323,44.261999634,44.244024658,44.260623135,44.241611961,44.258084179,44.27257158,44.243900547,44.243766957,44.244083558,44.261814148,44.265868276,44.26175631,44.261810653,44.261304676,44.261586282,44.261757905,44.287129653,44.261934685,null,44.256722498,44.27381493,44.231141788,44.258487728,null,44.273022367,44.270512076,44.261970573,44.258701131,44.25860084,44.265855566,44.255652846,44.280248232,44.274651967,44.287825336,44.273044641,44.262084591,44.287407246,44.24550627,44.272974453,44.272888473,44.243106308,44.239731957,44.254474238,43.251411525,43.309975202,43.498601564,43.192769835,44.816326053,44.815465682,44.820409689,44.850854309,44.814264015,44.813756638,44.803129201,44.779718721,44.818846982,44.771072951,44.799700105,44.770140525,44.801916218,44.807571029,44.806217996,44.802174983,44.789290592,44.785518075,44.826832245,44.8433867,44.78920021,44.828958038,44.814894633,44.806018178,44.794627383,44.771172713,44.791797686,44.80481388,44.794550161,44.802229855,44.776719144,44.789209221,44.795198674,44.811085294,44.785861988,45.124296731,45.825813982,44.883742662,44.786887064,44.797515,45.099995271,45.099586807,45.092427148,45.100662645,45.099404284,45.086564249,45.099533956,45.085240996,45.099071591,45.092446803,45.099980382,44.027054729,44.174048694,44.359608737,44.357586168,44.365846877,44.429354691,44.398399011,44.373072056,44.378420937,44.391075701,44.36932933,44.395843572,44.384352776,44.396106459,44.380267645,44.38810835,44.379211773,44.395366049,44.354859346,44.379265759,43.626867713,43.627711767,43.845372109,43.854187333,43.236241423,43.255114152,43.211745335,43.22132957,43.228806619,44.093011494,44.092959898,44.088692413,44.08277317,44.102189485,44.090543467,44.083220132,44.088969586,44.078201583,44.085764908,44.082132019,44.073705754,44.085733849,44.08714225,44.071904587,44.088146615,44.07530055,44.077730773,43.004193966,42.988336733,43.013131418,43.008002436,43.021984806,43.012469303,43.022788713,43.013226316,43.009754683,42.996335813,42.980182825,43.006469374,42.981820175,43.037041322,43.001811725,42.983077758,43.012147624,43.020075293,43.003020797,43.004139852,43.015700039,42.996314396,43.13500735,42.935967845,42.878638654,43.008527937,42.966542794,43.013028482,43.112337925,43.104610252,43.11029261,44.176758743,44.163278527,44.186000682,44.215573626,44.213140758,44.218091237,44.228872248,46.845819728,43.877167307,43.873327594,43.87974569,43.891570059,43.878275679,43.891639922,43.895727612,43.884376026,44.260313714,44.280229156,44.286591549,44.261046826,44.963409921,44.99744961,45.046314411,45.093232238,44.977929986,44.972052873,44.965027614,44.952933816,44.959715578,45.662009819,45.667078597,45.632849764,45.519744687,45.78327407,43.909860721,43.975216884,43.793645979,45.4708018,45.507116108,45.496114134,44.840777991,44.860236867,44.897301101,44.901014528,44.871082991,44.871971456,44.896153046,44.86385599,44.871064873,44.871740993,44.911395524,44.87199251,45.188657709,44.835558617,44.732487871,44.961287413,44.95964348,44.948293852,44.980859167,44.934246601,44.951258809,44.958696571,44.960887746,44.960717368,44.960923935,44.958592883,44.957177062,44.951988622,44.963077037,44.961206585,44.959157651,44.951260321,44.940087742,44.974008058,44.95910061,44.949672529,44.960532926,44.946836272,44.951847582,44.950089128,44.979705937,43.534501845,43.535931878,43.467442581,43.492169154,45.401464699,43.970987052,43.92339475,43.906729633,43.899514922,43.898976632,43.899658576,43.89905207,44.287507513,43.070104439,43.069421497,43.076499758,43.07718688,43.07679449,43.076475123,44.258200264,44.338341067,44.45986094,44.249650106,43.886932945,44.001082561,43.998574288,44.258649073,44.271588307,44.273283748,44.258538047,44.25878418,44.272330136,44.273062512,44.268757447,44.273249462,44.261165102,43.1776023,43.178159601,43.1782604,43.179005099,45.89069066,45.890789291,45.643514599,45.633025147,45.633619579,45.632173513,45.635588723,45.633191528,44.282629128,44.283748718,44.257689894,44.260811619,44.284195906,44.277232257,44.020333256,44.071356915,43.997483177,44.017742162,44.018250772,44.024902595,44.034296202,44.012388377,44.026157537,44.051984077,44.024993503,44.050236977,44.019652132,44.029409861,44.024720576,44.032133075,44.017990747,44.017975088,44.014321734,44.016563815,44.042082415,44.024884484,44.020300402,44.018953769,44.024863744,44.030242855,44.017968668,44.010705998,43.994931669,44.018270423,44.041276419,44.019614642,44.032015176,44.038555216,44.074819377,44.022159984,43.076971909,43.075346206,44.718201409,44.808750653,43.111295931,43.122397126,43.107528143,43.113216101,43.101196441,43.111616629,43.118052233,43.110513097,44.915142333,44.734130677,44.741680424,44.594215441,44.818192572,44.997955067,44.95418711,44.724363588,46.587791662,46.593353311,44.965749929,44.941906144,42.780413835,43.739666362,43.547531469,43.308198939,43.320209722,43.311889751,46.01267033,42.587948268,42.580661015,42.570611364,42.578094009,42.558282006,42.565819076,42.585585286,42.590835309,42.558792192,42.580702561,42.595688226,42.576528581,42.610791787,42.632341791,42.575949813,42.565891256,42.624139513,42.557044706,42.606181059,42.566216561,42.578292767,42.588255361,42.568261142,42.577745076,42.595988608,42.581179872,42.624559901,42.58721411,42.566005264,42.5513099,42.570677403,42.575373431,42.567485857,42.554531312,42.579345703,42.586125395,42.572160683,42.58355808,42.573150667,42.624313341,42.60276266,42.578035928,42.587953639,42.607054658,42.615033388,42.625520394,42.580900264,42.578693801,42.587714403,42.55151299,42.558654243,42.581065044,42.611811015,43.923852153,44.707850096,45.11942264,44.98910743,43.798585229,43.307501436,43.384915735,44.453176137,44.449987959,42.698478035,42.683505236,42.688850053,42.688082779,42.690949124,42.701187114,42.83027217,42.741310839,42.844379285,42.570103833,42.759460678,45.449546677,43.474700291,43.533047,43.474726254,43.294375583,45.78906715,46.71474005,46.686280206,46.706200542,46.718227493,46.720011225,46.706276693,46.687343842,46.725416331,46.720582145,46.706078264,42.556617894,42.532179197,44.144226168,42.799617999,42.838853984,42.559997667,42.716159055,43.101342722,43.109414212,43.118441708,43.11012448,43.105099405,43.118137961,43.107524898,43.08157408,43.083124349,43.108455279,43.10988794,43.116450869,44.919098772,45.174609111,44.313844377,44.396377365,44.669716412,44.664137767,44.67165025,44.658236374,43.081613865,43.300883313,43.29648784,43.017561854,43.016225627,43.011503377,43.017251657,42.953650514,42.9593478,42.959391943,42.959737307,42.963441343,42.930473525,42.964879597,42.959251007,42.963947605,null,42.964087671,42.95430612,42.551749644,42.519141976,42.522325251,42.508081875,42.532164937,44.560917837,43.118681529,43.118641151,43.118641951,43.133397981,43.109997933,45.11708042,45.100917971,45.115684721,45.1215933,44.737517033,46.449383937,42.928305785,42.869190857,42.886790463,42.87177506,42.886403156,42.92424193,42.916292915,42.901789474,42.890205955,42.938347515,42.949105105,42.935640568,43.975339465,43.971875307,43.633188335,43.633261093,43.632791757,43.637662574,43.046878349,43.041872279,43.036078453,43.059358121,44.556641691,44.948759712,45.176871114,45.191314053,45.176436633,45.176293103,43.451418887,43.451596448,null,43.089221944,43.084185621,43.095536354,43.081935718,43.087407619,43.093331802,43.097349337,43.089070731,43.098339102,43.666321777,43.475677371,43.470782446,43.474786585,43.459340712,43.46995857,45.887516131,45.889741421,45.835757669,42.903861493,42.910687465,42.910763061,42.901878565,42.926954481,42.910700835,42.900747582,42.93010992,42.898012503,42.903922905,43.002993917,null,null,43.010149448,43.010165626,43.020171202,43.013495639,43.021077834,43.019103911,42.738704511,42.719241181,42.717685469,42.736264984,42.682196017,42.719376087,42.718912074,42.720543341,42.694859032,42.712123092,42.719301983,42.722256265,42.713451542,42.692310915,42.71947467,42.695639828,43.798441112,43.798690259,44.252740713,44.003993908,null,44.926257021,44.932961214,44.936933685,44.941018427,44.936068105,44.939892201,43.812561124,43.380255045,43.381481939,45.302609887,44.690073541,43.529932624,43.532445273,43.531811927,43.539881356,44.725936999,44.73228614,45.555125662,45.192320844,43.586558877,43.610679106,43.615223163,43.607304589,43.582721501,43.609741404,43.591367962,42.857823501,44.958979308,42.966144951,42.984662962,43.007175811,42.950077645,43.016145731,42.979735979,43.016507675,42.994587241,43.059982134,43.068824026,44.575721853,44.283618187,44.356445508,43.943558726,42.959084292,42.980254007,42.961279162,42.847978334,44.901748179,44.90175945,44.907908602,44.918303674,44.929678831,44.923427473,44.904547852,44.884682005,44.919973336,44.904744604,44.758271268,45.397606976,45.399968125,45.541324821,45.55250218,43.086648953,43.087127897,43.221936575,43.252683803,43.245530694,42.918201022,42.954641404,42.954854071,42.930019631,42.93980948,42.930266194,42.936976845,42.958996072,42.944560477,43.222432546,43.232084396,43.221015761,43.21372351,43.235537191,43.235688952,43.220875519,44.025636905,43.630961247,43.384860579,43.329319805,42.989055146,43.177355884,43.184250223,42.737786309,42.706011473,null,42.750299612,42.717667357,42.706014849,42.769401917,42.724995195,42.739239794,42.707551502,42.688395544,42.742332384,42.736607086,42.762740979,42.742320999,42.734078326,42.760551894,42.712114008,42.715038329,42.769995609,42.732045492,42.725965824,42.715074754,42.748789474,42.722720606,42.725975609,42.712253753,42.731920683,42.726604132,42.735530829,42.704130575,42.725632796,42.714237745,42.718699312,42.737801466,42.747740734,42.750052021,42.724476643,42.752041218,null,42.734220478,42.721486265,42.769440333,42.749119906,42.635246359,42.685453053,42.69048814,42.679205464,42.679798418,42.681608015,42.667045007,42.712682326,42.678748204,42.68624115,42.717526252,42.7008576,42.6788276,42.701722744,42.722281291,42.728094551,42.648515277,42.686461533,42.693855608,42.686222895,42.700862602,42.700761341,42.685686251,42.722535705,42.672265372,42.649770112,42.685713945,42.678897967,42.719907975,42.703851595,42.678939487,42.705919658,42.695603895,42.655239226,42.682241266,42.718269348,42.697936847,42.706928121,42.678503979,42.678886864,42.715337856,42.56644436,42.591790631,42.592980322,42.588046819,42.591839239,44.873299747,44.881029957,43.497414433,43.278530075,43.283259255,42.509268514,42.503415642,42.501517507,42.498672611,42.505401783,42.522718708,42.508366074,42.553973265,42.511072538,42.532781505,42.500814092,42.532254182,42.511049125,42.516354443,42.532319336,42.514579244,42.50935676,42.834623411,42.779218159,42.936227501,42.93779646,42.936200967,42.92030406,42.8734043,42.873610278,42.874221447,42.867155723,43.009812524,43.007521342,43.009582165,44.495335846,44.492552713,44.523039825,44.453896102,42.890127501,42.919704995,42.918914501,42.784477425,42.835822402,42.772972774,42.805742476,42.784625659,42.784634292,42.805203937,43.225824768,42.678462388,42.667823622,42.675986674,42.673516972,42.703430662,42.681217922,43.113926579,44.028911235,45.819357176,43.014270505,44.070981652,44.074825537,44.069900537,44.073849628,44.072905346,44.076043927,43.171831424,43.190493827,43.183130082,43.192912117,43.323740736,43.649259698,42.627457096,42.637738261,44.367169297,43.077607578,43.074239078,43.074727065,43.079880769,43.312937348,43.317311131,43.31597968,43.311412086,43.308250377,43.307760973,43.317710497,43.427368719,43.419530056,43.419404225,43.426028225,43.399925554,43.426908276,43.427847491,43.427034869,43.427008123,43.407369322,43.419461956,43.424919321,43.426905667,42.832311115,42.834932425,null,42.837543512,null,42.949112712,42.946659201,42.945402985,42.947364552,42.9291479,43.760736499,43.764323439,43.758567808,43.751999468,43.739220512,43.749793564,43.773844296,43.770410708,43.743456218,43.763422374,43.740431058,43.743260824,43.727917673,43.735778505,43.776290776,43.762619646,43.773761567,43.743299101,43.725957799,43.768331175,43.754671908,43.776527718,43.756453945,43.735781918,43.623030365,43.798254199,43.797216977,43.717543727,43.755747708,45.137695898,45.149165276,45.140734863,43.46182584,43.48936593,43.448928645,43.456320474,43.067279469,43.090019419,43.075690872,43.039016035,43.034063193,42.940729651,42.926848338,42.930210903,42.924662997,42.934627044,42.929861013,43.159038512,43.03062446,43.092279336,45.137677104,45.139470066,42.80463245,43.746919814,43.747554884,43.38711291,43.379865307,43.375977393,43.567930746,43.542163286,43.571784161,43.571255244,43.537405677,43.539582143,43.554761758,43.539528532,43.728240046,43.725999159,45.480711194,42.656891088,42.763563088,45.120294743,44.899944781,45.843736056,45.562469207,42.669554661,46.183889062,45.119202228,45.145627402,46.161540223,46.161636772,45.91252088,43.104429757,43.067884416,43.089319752,43.060161403,43.075264256,43.01238387,43.112064764,43.087421279,43.05342996,43.068728341,43.101330308,43.067903344,42.991539206,42.980224609,42.983057335,42.979448883,42.988163564,43.117645488,43.012303505,43.074082722,43.041219829,43.119331139,43.133938137,43.089623929,43.018796818,43.01248906,43.015707885,43.001622334,43.091847195,43.104802256,42.984596252,42.999098679,43.046743784,42.997163393,43.003015656,43.018073683,42.992251209,43.013375072,43.058844117,42.977515822,43.016840266,43.067519513,43.05957972,43.026046674,43.100490502,43.072956215,43.08624624,43.083256866,43.143199753,43.104975028,43.10328781,43.111972879,43.096588153,43.088433793,43.021640772,43.119483272,43.056175615,43.104368275,43.088932808,43.092781144,43.085604053,43.014159407,43.017684865,43.022162727,43.104982708,43.011034678,43.067568323,43.015849041,43.126870014,43.089337,43.051509974,43.023212241,43.060299161,43.046957083,43.077525298,43.036441219,43.040199343,43.029414388,43.037581392,43.021633661,43.031144985,43.048702609,43.099690691,43.081119691,43.075109922,43.060921699,42.966716468,42.988272776,42.981889579,43.052458715,43.036600058,43.067848821,43.089162951,43.081819713,43.012335246,43.019192259,42.990279115,42.99368404,42.96656844,42.991322939,43.124382792,43.059256085,43.069382709,43.025217528,43.072246028,43.060230901,43.006643026,43.101311647,43.007250175,43.014187865,43.02161303,43.089153297,43.003176631,43.006475225,43.014061095,43.017048272,43.023033101,43.101060372,43.052559143,43.019098543,43.017022006,42.959184789,43.002893811,43.01052127,43.043202122,43.060585425,43.012219324,43.023232591,43.060543548,43.044391366,43.06228703,43.067912452,43.028636329,43.030552302,43.040122008,43.053175181,43.053423673,43.03988741,43.058664633,43.108964288,43.075280228,43.073320155,42.982805254,42.97223106,42.988191801,43.069720319,43.041389943,43.0293464,43.041690191,43.060590742,43.035799389,43.060508176,43.090176266,43.037373045,43.02298218,43.02259023,43.003051732,43.016985434,43.157546154,43.118419746,43.126625802,43.096099379,42.968041825,43.067759544,43.041629774,43.052662432,43.072907745,43.039371431,43.03887932,43.046648883,43.041642336,43.060211182,43.055976156,43.044966188,43.052693046,43.060149838,43.03606656,43.100748176,42.995181033,42.983999036,43.067196331,43.050354052,43.052556922,43.075130678,43.096944206,43.068079187,43.059100133,43.05861123,43.042411922,43.07455222,43.060105951,43.036076835,43.030537411,43.086459223,43.104436826,43.089758015,43.072816393,43.090101251,43.104648758,43.041422946,43.182572039,43.014152521,42.972813433,42.980869774,43.119488795,43.119488795,43.119413764,43.089711815,43.06061378,43.067918476,43.034674641,43.038668474,43.048902813,43.056442139,43.11737081,43.023002346,43.019098752,43.01559037,43.010906557,43.019052879,43.010424069,43.018187074,43.017042519,43.018708061,42.963310487,43.081497042,43.067750135,43.075211067,43.089618494,43.040249966,42.988229922,43.040189591,42.995635842,43.021131059,43.06879707,43.095984352,43.078797436,43.035747076,42.988568892,43.113370635,43.045815525,43.110012922,43.11224425,43.04455431,43.036395638,43.060248327,43.012416891,42.993679589,43.044697516,42.973955151,42.98578019,43.125411498,43.04153052,43.063672714,43.039273387,43.048760436,43.011052378,43.017044383,43.052946048,43.045729668,43.089580206,43.031439717,43.046657889,43.038806437,43.036136543,42.993971447,43.004062635,43.010344348,43.012274305,43.004217604,43.068026185,43.036811282,43.03778431,43.045701817,43.045430337,43.041649197,43.016857766,43.038677715,43.037688549,43.01685129,43.003114648,43.006392978,43.104958086,43.07193118,43.077714456,43.089603337,43.075242529,43.11174728,43.115934009,43.143761417,43.036204434,43.067523226,43.104849037,43.104281031,43.048652905,43.04457817,43.040267788,43.026135126,43.0111289,43.000748492,43.006038175,43.021906947,43.010185313,43.003060615,43.008465361,43.075198365,43.050392778,43.156018196,43.11194767,43.119390928,43.126944384,43.119471143,43.002911228,43.104736548,43.117503508,43.119389397,43.055413004,43.044523732,43.054845973,43.067909484,43.05787133,43.066837018,43.0624651,43.039773528,43.057069352,43.064206367,43.060581268,43.04731308,43.089835404,43.072832923,43.067463468,43.075853049,43.082223295,43.02259896,43.082468599,43.111686367,43.071715331,43.02160756,43.097152013,43.07521168,43.089913013,43.048609485,43.076335717,43.042455264,43.089687809,43.074106092,43.048082337,43.08972992,43.017025131,43.062887267,43.080039778,43.095207017,43.060331375,43.0811774,43.0918377,43.037540788,43.04838188,43.045608016,43.043202906,43.067888612,43.182568668,43.062443324,43.092560007,43.104378166,43.089896438,43.071117599,43.083302651,43.060097836,43.052534642,43.067760516,43.154373732,43.153715139,43.023219216,43.016953737,42.999520306,43.002030245,43.060385677,43.028683208,43.109258084,43.075192539,43.089889795,43.074581752,43.104838553,43.10896546,43.071293124,43.089896829,43.104915554,43.074287109,43.080699549,43.056524663,43.067532373,42.988251096,42.998256732,43.038734448,42.97372331,43.067517819,43.04115199,43.071124699,43.00293442,43.032682214,43.110174952,43.08591851,43.076764877,43.088286507,43.120106467,43.0936012,43.089881942,43.050885547,43.060610043,43.060475693,43.053438101,43.041609749,43.066055714,43.066032058,43.043163006,43.051592933,43.089800567,43.163103469,43.086060925,43.060189075,43.075276765,43.144629752,43.010137315,42.942747402,43.023168799,43.003088682,43.004913975,43.012246954,43.014067139,43.022072368,43.003050862,43.106446825,43.08988228,43.085940648,43.06004783,43.083562577,43.06746457,43.084799115,43.0530164,43.078897983,43.081772563,43.005985032,43.000811583,46.015186188,45.578113754,44.079336076,44.199858235,43.324507054,44.191578982,44.29783311,43.003107572,43.796740517,44.265827303,44.214059189,45.321390972,44.307332312,43.65887241,43.390000968,43.788039113,43.491717294,44.259494823,44.295760957,43.159069698,43.027944171,45.744133054,44.294604351,42.839761601,43.038670425,43.038690363,43.04448016,43.041618846,43.111931282,43.031448151,43.042459018,43.123156245,43.03503923,43.121903349,44.528944182],[-89.3103004,-89.29144897,-89.40900827999999,-89.3992117,-89.40409565,-89.38211876,-89.40075314000001,null,-89.3323913,-89.40084520000001,-89.37980288999999,-89.40086798,-89.40900517999999,-89.39836309,-89.51979152,-89.47358920000001,-89.51689055,-89.39581389,-89.37798151,-89.45111794,-89.48140472,-89.45118596,-89.4971163,-89.38671588,-89.39585717,-89.40409366,-89.39721259,-89.30853571999999,-89.30691168,-89.28486703999999,-89.3070302,-89.28262957,-89.32448927,-89.39399038000001,-89.40931757,-89.40676558,-89.40394924,-89.41946566,null,-89.3078301,-89.38794482,-89.40053172,-89.40097469,-89.40068606,-89.39634497999999,-89.38894524,-89.40228996,-89.43812808,-89.40084638,-89.38590585999999,-89.38986903,-89.40405742,-89.39661245000001,-89.50077773,-89.39539895999999,-89.40075407,-89.4255769,-89.37014044999999,-89.3867989,-89.42865082,-89.4512319,-89.41491846,-89.40900425,null,-89.39399662,null,-89.42873025,-89.46101813999999,-89.54086402999999,-89.37436606,-89.31976838,-89.38775398,null,-89.39741124,-89.39493687,-89.36491578,-89.40905404999999,-89.39508324000001,-89.41892464,-89.36340189000001,-89.5269843,-89.39344624,null,-89.47500054,-89.32482616,-89.49600629,-89.38245338,-89.50260182,-89.48314043000001,-89.40900538,-89.42864050999999,-89.50263136,-89.36366346,-89.34533236999999,null,-89.35798387,-89.40899548,-89.39382221,-89.49692395,-89.34512488999999,-89.27033706,-89.34338542,-89.32792327999999,null,-89.45697411,-89.38438913,-89.39586319,-89.39178527,-89.37687096000001,-89.39743677,-89.39396965,-89.39000416,-89.41263343999999,-89.38624215,-89.31698273000001,-89.3941246,-89.41980187999999,-89.35104627,null,-89.36627548,-89.40369206,-89.38392746,-89.52592202,-89.50290142999999,-89.507486,-89.49078172999999,-89.26677961999999,-89.31550805000001,-89.40394703,-89.41753331,-89.43368071,-89.38100713999999,-89.54152633,-89.49636816,-89.38389587,-89.35904925,-89.39405247000001,-89.33067264,null,-89.50886219,-89.48755349,-89.2970529,-89.38401696,-89.35078412999999,-89.30991289000001,-89.36627548,null,-89.39328734999999,-89.39586246,-89.38882698,-89.50328612,null,-89.52524495,-89.3824333,-89.38261725,-89.38071739999999,-89.39407755000001,-89.34679447000001,-89.36126917999999,-89.39254575,-89.50322702,-89.47007659000001,-89.36198392,-89.37464131999999,-89.39746141000001,-89.40899528,-89.35104284000001,-89.40409335,-89.40900519,-89.38145358,-89.35103534,-89.36884790000001,-89.35798387,-89.37619352,-89.40417639,-89.37544355,-89.38245338,-89.35404991,-89.40853835999999,-89.38051848000001,-89.38513002000001,-89.47324972,null,-89.39695739,-89.40897239,-89.37541564,-89.40060717,-89.39175594,-89.38245338,-89.35606719,-89.38590547,null,-89.31451945000001,-89.36611624,-89.39749940999999,-89.35456142,-89.40079915,-89.35182476999999,-89.54579818000001,-89.74797055000001,-89.40303222,-89.35462006,-89.6516505,-89.65631076,-89.15053991000001,-89.21956053,-89.18837870999999,-89.22660021,-89.22626160999999,-89.24470629,-89.24308990999999,-89.28273978,-89.23403961,-89.24490733,-88.08624098,-87.97996503,-87.99384834,-88.04514261,-88.02132503999999,-87.99722633,-87.96177097,-88.09940536000001,-87.96669308,-88.04883771999999,-88.06940127,-88.04983958,-87.9907958,-87.99043114,-88.03842133000001,-88.03650245999999,-87.98828157,-88.04844184,-88.04270145,-87.98501767,-88.00088775,-88.07402942,-88.05266571,-88.04952899,-88.04853684,-87.99524945,-87.99654343,-88.00126693999999,-88.06463208,-88.03585217,-88.03590325,-87.99069066,-88.06940127,-88.06614178,-88.06331629,-87.99256566,-88.04720596999999,-88.10953244,-88.04810324,-88.04820558,-87.99535925000001,-87.96774089,-88.02065091999999,-88.05139029999999,-87.97212737,-87.94706417,-87.9851422,-88.00649269,-87.96311894,-88.07908654000001,-88.00083625000001,-87.99889338,-91.10644169,-91.1122283,-91.10069932,-91.10436273000001,-91.09136477,-88.47982241,-88.4036162,-88.43907213999999,-88.47264265,-88.45423157,null,-88.45247134,-88.44700367,null,null,-88.41340796,-88.46729759,-88.45886757,-88.43052562,-88.47407595,-88.44843777,-88.44823135999999,-88.46314652,-88.444789,-88.44686403,-88.44756537000001,null,null,-88.44300407999999,-88.45066316,-88.47085337999999,-88.44529047,-88.43900832999999,-88.441512,-88.44149573,-88.42182249,null,null,-88.43140188,null,-88.42164916,null,-88.47104315999999,-88.43887581,-88.4471855,-88.46729759,-88.44698099,-88.44777574,-88.4219714,-88.47619827,-88.4598713,-88.33954727,-91.21959268000001,-91.2072888,-91.25066819,-91.25014997,-91.23834969000001,-91.24091064,-91.23963463,-91.25168481999999,-91.25101205999999,-91.23893148000001,-91.24815301,-91.23979193,-91.24040847000001,null,-91.23965948,-91.24717723000001,-91.26596391,-91.24877436,-91.25342089,-91.23959993,null,-91.23263616,-91.25039674,-91.24101963,-91.21060805,-91.23708365,-91.24751247,-91.23757404,-91.25255524000001,-91.24947352,-91.25176268,-91.22136985,-91.25330636,-91.25347949,-91.24564918,-91.24895026999999,-91.21716578,-91.25319229,-91.24044523000001,-91.21910466,-91.23980781,-91.24676286,-91.24828126,-91.24498328999999,null,-91.23256265000001,-91.25319131000001,-91.21401188,-91.23904571999999,-91.23968879,-91.2448636,-91.2479301,-91.23550602,-91.23890629,-91.23835703,-91.24868425,-91.24940264999999,-91.23268323000001,-91.24384533999999,-91.21976458,null,null,-91.24678885,-91.21982795,-91.24602011,-91.21994549999999,-91.21062594999999,-91.23898988000001,-91.23965051,-91.24390956000001,-91.23259066999999,-87.99589095,null,-88.1567007,null,null,-87.930195,null,null,-88.08850877,-88.20214554,-88.02153865,-88.03153886,-88.0072071,-88.01771923,-88.01622704,-88.09131006,-88.08105621,-88.08433797000001,-87.99431785,-87.94300697,null,-88.09451441,-87.98258273,null,-88.03037576,-88.06507071999999,-88.10474614,-88.09746301,null,-88.05936785,null,-88.07620506000001,-88.09042467,-88.05233629,-88.07219695000001,null,-88.10795007999999,-88.08839684,-88.0926565,-88.10685963,-88.0322831,-88.07910788,null,-91.48789205,null,-90.13033346,-90.13181367,-88.77598306,-90.47825444999999,-90.4831993,-90.46974879,-90.48032404999999,-90.47671305,null,-91.14660685,-90.80093096,-90.81089919999999,-90.80275197,-90.81943043,-89.04338147,-89.03121151000001,-90.89183103000001,-90.89056638,-90.88934020000001,-88.98717382,-88.54146688,-89.85125840000001,-89.49826576,-89.49407161000001,-89.489445,-89.50959772,-89.52557514,-89.48282829999999,-89.50993714000001,-89.52464895,-89.48627685,-89.47165277000001,-89.41102923,-89.41894696999999,-89.47021531,-89.45530286,-89.47547784,-89.4148603,-87.98667956,-88.02628417,-87.94958395,-87.97650977000001,-87.87722844,-87.91518702,-87.92005673,null,-88.01252887,null,null,null,null,-87.95102849,null,null,null,null,-88.04829547,-88.08736743,-88.1002427,-88.13540431,-88.10384197,-88.10519293,-88.11363288,-88.08809554,-88.11606802999999,-88.13363601,-89.33052368,-89.32606145,-89.32473926,-89.32615405999999,-89.32721205999999,null,-88.04719288,-88.06052588,-88.05755761,-88.04870554,null,-88.03437309,-88.05179646000001,-88.02680614000001,-88.0161118,-87.99489884,-88.03221021,-88.04653448000001,-88.01017088,-87.98957230000001,-87.99986705000001,-88.04720392999999,-88.01618391,-87.99961471,-88.04153042,-88.05434226,-88.06611985000001,-88.01116897999999,-88.00746420999999,-88.00690749,-87.99768478999999,-88.02752318,-88.02627567,-88.007456,-88.02998194,-88.00764004,-87.98747643,-88.02461168000001,-88.03062718,-88.04094109,-88.01717077000001,-88.04486952000001,-88.0472382,-87.98731757,-88.00721444,-88.00249316999999,-88.02713851,-87.99009031999999,-88.00424623000001,-88.0005551,-88.04699687999999,-87.98876005,-88.04327687,-88.05578748000001,-88.01625998999999,-88.04692299,-88.01783329,-88.04692299,-88.00598952,-88.04708761000001,-88.00249316999999,-88.04712243,-88.04143658,-88.00721444,-88.06529863999999,-88.01716848,-88.04164124,-88.04710726,-87.98635633000001,-88.02715282,-88.04721184,-87.99015067000001,-87.98745463,-88.02729545,-88.00826216999999,-88.04683201,-88.03844590999999,-88.03528934000001,-88.04368171,-88.00138438,-87.99684599,-88.02669211,-88.04678669,-88.00478966999999,-87.99141453999999,-88.04700828999999,-88.04694055,-88.00251872,-88.00519180000001,-87.98998097,-88.01288099999999,-88.04128845,-88.04710726,-88.00129683999999,-88.00255455999999,-88.04674122999999,-87.99902202,-88.04712206000001,-88.04071878000001,-88.00255889,-88.04710726,-88.00862012,-88.04703668000001,-88.01714111,-88.04710726,-88.04093978,-89.8291701,-91.43318477,null,-91.45674083,null,-89.63505182,-89.63368233999999,-89.63797499,-89.65159303,-89.63495928,-89.72929965,-89.57489739,-89.56962669000001,-89.5697057,-89.57475934,-89.55272561,-89.58968776,-89.50722288999999,-89.56967333999999,-89.56615574,-89.56959839,-89.5815453,-89.54799928,-89.58022724999999,-89.57479644999999,-89.58228087000001,-89.585748,-89.57489885,-89.57490107,-89.5135563,-89.55573484,-89.57543574,-89.54255086000001,-89.55259228,-89.58513137,-89.56465921,-89.56701609,-88.54121545,null,-88.55105192000001,-88.52712777000001,-88.54121547,-88.54121545,-88.54090228,-88.5412426,-88.3358116,-88.29551367000001,-89.64988163,-89.37801530999999,-89.38169384,-88.45734431,-88.46679275,-88.49792108,-88.48505596,-88.47687087,-88.47337352,-88.48965459,-88.46668385,-88.45468193000001,-88.49504391000001,-88.46498982,-88.47336970000001,-88.49245263,-88.46493306000001,-88.48529333,-88.46004253,-88.45808882999999,-88.46782589,-88.48056688,-88.49512262,-88.46489080000001,-88.45255448,-88.44596541,null,-88.44000855,-88.44314522000001,-88.42724126,-88.42497838,-88.42419303,-88.42793285,-88.44684359999999,-88.73953716,-88.73790386,-88.7471197,-88.51094243999999,-88.84191456000001,-88.56439066999999,-88.66408488,-88.39708474,null,null,-88.41532742,-88.39562299000001,-88.40723912999999,null,-88.37239196,-88.35667137,-88.41570949,-88.40428546,-88.37500602,-88.4157769,null,-88.4154095,-88.38292113999999,null,-88.40074254,-88.42408808,-88.35669075,-88.41201307999999,-88.41532741,-88.39708474,-88.42074538999999,null,-88.41743759000001,null,null,-88.43088456,-88.40725168,-88.39498177999999,null,-88.41921773,-88.41587502,-88.413645,-88.41604608999999,-88.41744851999999,-88.3736498,-88.40409769999999,-88.38332095,-88.40174236999999,-88.43342495,null,null,-88.37158474,-88.41574481000001,-88.42580599,-88.39974253,-88.38003252,-88.4406194,-88.41559257999999,-88.36130686,-88.41574717,-88.42296601,-88.36311863,-88.40110851,-88.35197832,-88.26121465,-88.32412483,null,-88.20182686,-91.51611260999999,-91.49499955,-91.52487128999999,-91.47337425000001,-91.47576173,-91.49429315,-91.46823858,-91.50937693,-91.50939433000001,-91.54270151999999,-91.48507166,-91.49817615000001,-91.46832214,-91.50981405,-91.49499955,-91.50598008,-91.53257704000001,-91.5045087,-91.49516942,-91.48659571,-91.51547959,-91.50938779000001,-91.47826584000001,-91.49412757,null,-91.5460875,-91.49380624,-91.4850811,-91.42847612,-91.47800780999999,null,-91.46088564999999,-91.46805037,-91.47156606999999,-91.49502783,-91.47854971,-91.49516942,-91.0783145,-91.46133505,-91.45386449999999,-89.89409602000001,-89.88860142,null,null,null,-89.68435255999999,-88.60145553,-88.61185519,-88.59645784999999,-87.65844026000001,-87.65503394,-87.63072842,-87.63012521,-87.63603071,-87.6240241,-87.50447176999999,-89.06435998000001,-89.10042462,-89.11257867,-87.46445048,-87.4385711,-87.43142704,-89.81676451,-89.80651093,-89.80590857999999,-89.81828084999999,-89.80698728,-89.77521768,-89.79570934,-89.77069749,-89.77522184999999,-88.85036456,null,null,-87.92329983,-87.92054573,-87.95220178,-87.63899932,-87.65911575,-87.65783389000001,-87.66362101999999,-87.62835972000001,-87.68287571,-87.71004501,-87.68943735000001,-87.65925273000001,-87.68296031,-87.65919275,-87.68633821,null,-87.66598609,-87.67055714,-87.70072236999999,-87.6617591,-87.65992816000001,-87.67155225,-87.69890215,-87.66059416,-87.66282799,-87.67480342,-87.65924755,-88.26589219,-88.25154573,-88.23236229,-88.20145721999999,-88.22702317,-88.22716891,-88.26083437,-88.25892772,-88.23279706,-88.22174267,-88.18755803000001,-88.22717817,-88.23306151,-88.22389352,-88.26670462,-88.23438323000001,-88.23728865,-88.24719281,-88.23224070000001,-88.23729862,-88.1859269,-88.26271202,-88.23422669999999,-88.23715901,-88.23274493,-88.22271105999999,-88.23211489000001,-88.23348717,-88.22966277,-88.25014555,null,-88.2629615,-88.30555151999999,-88.41667504,-88.24382998,-88.38424784,-88.40423699999999,-88.40300157999999,-88.27774745000001,-88.52964274999999,-88.21718586,-88.2241714,-88.35098214999999,-88.33782105,-88.35608705,-88.34528597000001,-87.76096016,-90.39110325999999,-90.39756771,-87.53533637,-87.51497547,-90.95585148000001,-88.48443004000001,-88.48553078,-88.46575928,-91.21682404000001,-91.23418632000001,-91.18757389,-91.19891884,-88.35218705,-88.3203074,-88.29384819000001,-88.33680208,-88.31844571000001,-88.31997853,-88.32176129,-91.74586626999999,-92.59380363,-92.71463788,-92.68312075999999,-92.69400733000001,null,-92.74374141,-92.73423207,-92.75717955,-92.75700525000001,-92.74359722,-92.71910971,-91.20937232,-91.27064274,-91.26575136,-90.85071146999999,-91.73338939999999,-91.73323653999999,-91.74403055000001,-91.73390225,-91.76483766,null,-92.62941635,-92.62219919,-92.62867132,-92.62436979,-92.62614052000001,-92.62219919,null,null,-91.93483427,-91.9233553,-91.93321816,null,-91.91062420999999,null,-91.93183639999999,null,-87.13845254,-87.13097655,-87.12106269,-87.24222933,-87.1936331,-87.38113378,-87.37376623,-87.38398961999999,-87.35918282999999,-87.37554836,-87.37579146,-87.36422331999999,-87.37517799,-87.35147216,null,null,-89.63693434,-89.65097633000001,-89.6232047,-89.63930834999999,-89.62541702999999,-89.62598884000001,-89.62325696000001,-89.65551196,-89.64784209,-89.6175635,-89.63149423,-89.62262586999999,-89.61916668000001,-89.65552038,-89.63930713000001,-89.63938949999999,-89.62610005000001,-89.63918728,-89.63013218,-89.62802789,-89.63933951,-89.62372024,-89.62736049999999,-89.64761851,-89.62769624000001,-89.62326204,-89.62141531,-89.63710851,-89.63474918999999,-86.93056674,-89.24611179999999,-89.36230184999999,-89.40831557,-89.26662829,-91.26510620000001,-91.25451621000001,-88.76444222000001,-89.18282172000001,-89.40098034,-89.42534284,-89.40586858,-89.40775954,-89.42507385,-89.40622368,-89.41273009,-89.41268078,-88.55705775,-88.73327295999999,-88.57920582,-88.31277978,-88.32911412,-88.32408912,-88.69021023000001,-88.53677594,null,-90.51217930999999,-90.50514566,-90.50497549000001,-90.50911986,-90.50454682,-88.46113968,-88.44044339,-88.43921937,-88.45916295000001,null,-88.46119899999999,-88.46112839,-88.45594044000001,-88.41769216,-88.44129522,-88.44646005,-88.36904925,-88.43987122,-88.46912239,-88.4753066,-87.98455137000001,-87.96442705,-87.98813806,-89.37438502000001,null,-89.37523795,-89.38354597,-89.37777850000001,-89.41128781,null,-88.2657316,-88.27353682,-88.27386445,-88.26203722,-88.27375522,null,null,-88.53766519,-88.52639098,-88.55247355,null,-88.54506926000001,null,null,null,null,null,null,-88.53758458,null,null,-88.54280297,-88.54136128,-88.55248709999999,-88.53754290000001,null,-88.53753689,null,-88.58386154999999,-88.54748475,null,null,-88.54935362000001,-88.52745941000001,null,-88.54267086,-88.58361755,-88.56245708,-88.54555477,-88.54293561,null,-89.43432743,-89.44877193000001,-88.45153383,null,-89.20327708000001,null,null,null,null,null,-90.59834898,-90.88301065,-90.88030413,-87.91158772,-88.76291696,null,-89.30879142000001,-88.35846415,-88.42312024,-87.95743564,-87.95958379,-87.95620192,-87.92076489,-87.91707597,-87.92520297,-87.95297264,-87.96044763,-89.74365763,-91.48460068,-91.13685735999999,-91.01523355,-90.839546,-90.84206704,-87.8225778,-87.84766431,-87.89314223,-87.85725198,-87.88300832,-87.86710308000001,-87.82917544999999,null,-87.84678649999999,null,-87.82294167000001,-87.95158524,-87.9501648,-87.83805528000001,-87.82267806999999,null,-87.94709643,-87.83556261,-87.83715601999999,-87.83589666,-87.87630382,-87.83561198,-87.83222599,-87.85644268999999,-87.82714821,-87.82294765,-87.83254479,-87.85477840999999,null,null,-87.85421928,-87.82049148999999,null,null,-87.85469534000001,-87.82866591,-87.82676764,null,-87.85573687,null,-87.86861804999999,-87.83048549999999,null,null,null,-87.83086829,-87.81942662,-87.8852401,-87.83694889,null,null,-87.82042611999999,-87.84551546,-87.82316582,-87.83271075,-87.95614174000001,-87.82570647999999,-87.88195055,null,-87.87223027,-87.84566182,-87.85572817000001,-87.82345814999999,null,-87.82147884,null,-87.82538572999999,-87.85561165,null,-87.83805359,-87.91443341,-88.03700621999999,-89.83555312999999,-89.6490823,-89.64605939,-90.00447486,-89.71363268,-88.48230286,-87.90522184,-87.99045915000001,-87.92668955000001,-89.54429433,-89.54438424,-89.52870371,-89.53835973,-89.54967653,-88.22612169,-88.04248754,-88.22214196,-88.04873112,-89.01331983999999,-89.16913253,-89.24913859999999,-88.95607207,-89.03270721,-91.23716583,-91.03684694,-90.04481699,-89.80799636,-89.730699,-89.76893647,-89.83719256000001,-90.05206329000001,-89.78723728999999,-89.77922975,-91.48349426,-91.53135955,-92.11765388000001,-92.10391042000001,null,-92.09347766,-92.10390473,-92.01042765,-92.09793265,-92.09794599,-90.80054414,-88.24830842,null,null,-87.5651909,null,null,-88.74248295,-88.68555849000001,-88.69066681,-88.31230245,-88.55586843,-88.71439547999999,-88.63577685999999,-88.49683399,-88.47265213,-88.46109251999999,-88.47045588,-88.48064166,-88.49298174,-91.93265919,-92.07692471,-91.89095002000001,-91.89049855,-90.17999444,null,-90.18218107,-90.18178545000001,-90.19019641,null,-89.86797048,-88.26232267,-88.22715976000001,-88.22875587999999,-88.25243401,null,-88.92672738,-87.99914928,-87.98860901,-87.97956859,-87.98740266999999,-89.30290309999999,-89.28887795999999,-89.30150109,-91.73913588000001,null,-87.98849546,-87.98853717,-88.00769043,-87.96919246,-88.05744267999999,-88.02786578,-88.0051904,-88.04706115,-87.95834111000001,-88.00838623,-88.00815897,-88.0081591,-87.96622886999999,-87.87047054999999,-87.81830825,null,-87.82190991,-88.15003627,-88.16680947,-88.22292367999999,-89.02669597000001,-89.03955196,-87.93286025,-87.92928784,-87.92981139,-87.91692346000001,-87.9376068,null,null,-87.91698842,-87.91650856,-87.92853363,-92.54241358,null,-92.53770994,-92.53434823000001,null,null,null,null,null,null,null,null,null,null,null,-88.04825511,-88.04845972,-88.04849345,-88.04505854999999,-88.71742295999999,-88.73102099,-88.72480105,-88.74020326,-88.07790697999999,-88.10610945000001,-88.10676934,-90.31563143,-89.68173164,-89.70897299000001,-88.64929278,-87.88888939,null,-89.75432148,-89.75454099,-89.73896907,null,-89.70918712,-89.70358276,-89.70369407,null,-87.86488076000001,-87.88120834,-87.87628087,null,-87.86070482,-87.86554663,null,-87.86067276,-87.86047474999999,null,-87.96491331,null,-87.97506713999999,-87.96481436000001,-87.96473924999999,-87.96545166,-87.97817597,-87.96906555,null,null,-87.8645975,-87.87043337999999,-87.86383873,-87.85533083,-87.85021055,-87.84312085000001,-87.83919611,-87.85604933,-87.80258929,-87.79246619,-87.87652865,-87.86296937,-87.84610866,null,null,null,-90.18274907,-90.06187541,-90.07097288,-90.07322412000001,-91.49515531,-91.39640353,-91.39822564000001,-91.39195592999999,-91.3945563,-91.38455548,-91.40675632,-91.3938899,-89.32587433,-87.93480081,-87.86968570000001,-87.88202692,-92.36200739,-92.36357284,-92.36212580999999,-90.01676625,-89.99640968999999,-89.99466212999999,-89.99648885000001,-90.01012566,-89.71868591,-92.7970491,-92.78685199,-92.23828655,-89.81383112,-89.81384233999999,-89.78946275,-89.78700757,-89.79351989,-89.79037022,-89.81302683,-89.77627384,-89.78733411,-89.79362965,-89.7958029,-89.79391638,-89.77947732,-89.80636149999999,-89.78688296,-89.79171002,-89.78690041999999,-89.79813776,-89.7936258,-89.79763868000001,-89.78831202000001,-89.79621817,-89.79366512999999,null,-88.11675259,-88.08820736,-88.09727808,-88.10744036,-88.0875853,-88.40419468,-88.40938939999999,-91.21021333,-91.47017391,-88.35332902,-88.36840198,null,null,-87.87693659,-87.87501793,null,-92.17097883,-90.43083756,-90.65621989,-89.5570761,-89.58280190000001,null,-89.58018063,-89.58494568,-92.55808062,-92.45306314,-92.57438293,-90.44828135,-89.21566905,-89.34763478000001,-89.22602506,-89.22474035,-89.22434809000001,-89.23858619000001,-89.20201878,-89.21910681999999,-89.22303152000001,-89.21505064,-87.87032455000001,null,-87.86083175,-87.85263639999999,-87.87798266999999,-87.86948546000001,-87.86080033,-87.85959038999999,null,-87.86016123,null,-88.11962104,-88.13592976,-88.08382523,-88.14334085,-88.09385511000001,-88.55246747,-88.87295709,-88.457752,-88.9234982,-88.54374322,-88.81520147000001,-88.56898227000001,-89.51383301,-89.53372256999999,-89.5533337,-89.54357846000001,-89.5322529,-89.53368422,-89.44680993999999,-89.45184544999999,-89.45903558000001,-90.38664769,-90.36683791999999,-89.88219587,-89.90656841000001,-87.79377787999999,-87.81950594,-87.7928587,-87.81199558,-87.83767774,-87.79821779,-87.80671013,-87.80068221000001,-87.78247173,-87.79964419,-87.79877332,-87.83766088,-87.80662128,-87.83605864,-87.81654668,-87.78646778,-87.83102381,-87.78264586,-87.80020355000001,-87.83592924,-87.78259064,-87.79030948,-87.78287472,-87.84301318999999,-87.7949764,-87.8194384,null,-87.80522205,-87.79811569,-87.83590633999999,-87.80140212000001,-87.80632755000001,-87.80560799,-87.80487693000001,-87.80188248,-87.80016467999999,-87.83935743000001,-87.79750871,-87.79686595,-87.79657880000001,-87.80065347999999,-87.80178782999999,-87.78819872,-87.82161375,-87.82009964,-87.81130116,-87.79021444,-87.81762187,null,-87.78706477,-87.82598159,-87.796859,-87.78274737,-87.79444942000001,-87.80456452999999,-87.79634242,-87.79367216999999,-87.80762798000001,-87.79450219,-87.80579521999999,-87.81613181,-87.79640594999999,-87.80750500000001,-87.79302257000001,-87.80487693000001,-87.80017769,-87.79166729000001,-87.89970543,-88.97553992,-89.00596016999999,-89.05165928,-89.01389385,-88.99236145,-89.00426358999999,-89.01591316,-89.02822964000001,-89.04602672999999,-89.0319528,-89.00896025,-89.01778288,-89.03575556,-89.03575139,-88.96151146,-89.02314222,-89.01761067,-89.05132294000001,-89.04851555,-89.01195103000001,-89.05076269,-88.97620431999999,-89.0251389,-89.0308619,-88.97496079,-88.98924106,-89.04260914,-88.99924399,-89.02244706,-89.04208349,-89.01850836,-89.00825380000001,-89.03575556,-88.43229311,-88.43699139,-88.43671637,-88.43517135,null,null,null,null,-89.81751482,-89.93765874,null,-88.22672991,-88.22304029999999,-90.36044019000001,-89.0564937,-88.98438132,-89.0229997,-89.02688624,-89.01488704,-89.05039364,-89.03286218,-89.0341964,-89.04667231000001,-89.04031938999999,null,-89.03522653,-89.02550318999999,-89.05888817,-89.01881407,-89.05208666,-89.00839996000001,-89.06134028,-89.07021892,-89.37531702,-89.38168234,-89.37959623,-89.37367215,-88.33742288000001,null,-89.73044022000001,-89.74284478,-89.54573431999999,-89.3081,-89.55282178,-89.65216226,-89.01674532,-89.01335765,null,-89.02023538,-88.15184206000001,-88.11340982,-88.1293879,-88.14697074,-88.18397236,-88.12892914,-88.07893547,-87.82348813,-87.83618457,-87.81479176000001,-87.98073660999999,-88.27428784,-88.27012941,-88.27476448,-88.29347528,-88.37186935,null,null,-88.16287742999999,-88.47003929,-88.47282054999999,-89.28908211,-89.22853719,-88.70804989,-88.69540757999999,-88.7202406,-88.72676177,-88.72145291,-88.72000697,-88.72606614999999,-88.72605853,-88.72209592999999,-88.71555678999999,-88.72120613,-88.72412851999999,-88.7379024,-88.28447975,-88.6246824,-88.61436466000001,-88.62315361,-88.63585282,-88.6246824,-88.60734348,-88.63492832999999,-87.87753078999999,-88.38090147,-88.36792920000001,-88.35420182,null,-88.36073956,-88.55253008,-88.20431523000001,-88.18495487,-88.18481921999999,-88.20111808,-88.1907025,-88.18098621999999,-88.18092039,-88.18272838999999,-88.18238289999999,-88.18292944,-88.19545257999999,-88.19303959,null,-88.76800115,-88.74400107,-88.74607953,null,-88.74054855999999,null,-88.73989106000001,-88.74394482,-87.99707012,-88.00613361000001,-87.99597321,-87.99185181,-87.72302188,-87.72037508,-87.72302246,-87.73768157000001,-87.71292619,-87.75779932,-87.72293997,-87.71628939,-87.70629305,-87.7146238,-87.7247898,-87.7096059,-87.71293463000001,-87.71126192,-87.72793796000001,-87.71673792,-87.73614646999999,-87.71293108,-87.7220063,-87.73715949,-87.72794727,-87.75123596,-87.72325031,-87.75352565,-87.71127375,-87.72126581000001,-87.72294745000001,-87.70956257,-87.7208,-87.71794,-87.7131727,-87.7530501,-87.71626691,-87.74596037000001,-87.71698146999999,-87.72548997,-87.71460374,-87.7441196,-87.71293283999999,-88.00168831000001,-87.93673162,-87.85024656,-87.81962857000001,-89.15049815,-89.15565013,-89.1467981,-88.8394533,-88.82628567,-88.82841148999999,-88.81758723,-88.84378506,-88.82507862999999,-88.81972583,-88.83685908,-88.83692786,-88.83930223999999,-88.83691666,-88.8289169,-88.82168425,-88.09505971,-88.11017436,-88.08707428,-88.14619961,-88.07974365,-88.09701302000001,-88.06919977,-88.09240800000001,-88.06857484,-88.16629996,-88.08677661,-88.12620041,-88.15383911000001,-88.86057854000001,-88.84141479,-88.84485495,-88.8389458,-88.83310093999999,-88.83883869,-88.8369383,-88.8325679,-88.31473852000001,-88.80776356,null,-90.36839430000001,-90.3325597,-89.63387537,-87.97106316999999,-87.96131389,-87.98124653000001,-87.88571887000001,-87.88295589000001,-87.87207793,-87.8627986,-87.86931899,-87.87250037,-87.87547331,-89.4696208,-89.45138428999999,-89.45958999,-89.46361048,-89.46802863000001,-89.45614976,-89.46883191000001,-89.46886732999999,-87.8113996,-89.72856280000001,-89.7347864,-89.72919601,-88.61046932000001,-88.24512192,-92.15062570000001,-91.04456786999999,-91.14318514,-90.88106121,-89.66099862,-90.4684645,-89.09124543999999,-88.06771086000001,-88.07133462,-87.99099283,-87.91683537999999,-87.93666983,-87.9478814,-87.94816092000001,-87.94565537,-87.92302599999999,-87.90558722999999,-87.95765013,-87.98683821,-87.94534332000001,-87.90912132,-87.91104109,-87.89071903999999,-87.94758731,-87.89910164,-87.91843296,-87.91196152000001,-87.9365767,-87.95056873999999,-88.00588748,-87.94306331,-87.92173911,-87.9125578,-87.90849145,-87.91610369999999,-88.01643389,-87.95530841,-88.05566938,-87.93993152,-87.92919478,-87.93290288999999,-87.93822998,-87.93638513000001,-87.91123626,-87.91734044,-87.94001373,-87.94585322,-87.93977181,-87.91424542999999,-87.89554471,-87.90900718,-87.92715033,-88.01246086,-87.99104445,-87.94692987000001,-87.92242105,-87.89792743,-87.91548143,-87.88783273999999,-87.95838517,-87.96647021,-87.97314154,-87.91910756999999,-87.87793363999999,-87.88301018999999,-87.94844825,-87.89680073,-87.94731265999999,-87.98563448,-87.94772081000001,-87.89154416,-87.90480545,-87.91933605,-87.93765208000001,-87.94882817,-87.94852458,-87.88347573,-87.90429577,-87.91118781999999,-87.92292956999999,-87.94500555,-87.93553789000001,-87.87668381,-87.93298837,-87.93950861,-87.92854507,-87.98698759,-87.96502948,-87.94863053,-87.9577401,-87.95783367999999,-87.93016799999999,-87.94738622,-87.97250938000001,-87.90222787,-87.9671709,-87.88792889,-87.90857784000001,-87.89855993,-87.90725605,-87.88765828,-87.91744444,-87.93382506,-87.93390434,-87.92806134,-87.93560263000001,-87.96722674,-87.93644802999999,-87.94522101,-87.91601631,-87.90405509,-87.90522313,-87.9063896,-87.90050278,-87.91405406,-87.94725707000001,-87.90524176,-87.91424542999999,-87.91739200000001,-87.92009109999999,-87.92852911,-88.00816494999999,-87.90768165999999,-87.92994494,-87.95896223,-87.98500841000001,-87.98749429,-87.96736094000001,-87.90476366999999,-87.90499638999999,-87.94595793000001,-87.89643160999999,-87.94584793,-87.92398237,-87.93760062,-87.94772014999999,-87.9867716,-87.96708409,-88.0162215,-87.98692079,-87.95756172999999,-87.89792743,-87.91601548,-87.89797469,-87.92857472,-87.94779643,-88.01755283,-87.95742839,-87.94025791,-88.02434031999999,-87.92336332000001,-87.94886028000001,-87.95987918,-87.9040846,-87.88788832,-87.87255446,-87.90396493,-87.8860664,-88.00129742999999,-87.98568877,-87.96225594000001,-87.95748679,-88.02433771,-88.03711898,-87.96746084999999,-87.91097870999999,-87.94816092000001,-87.95769137000001,-87.97721473999999,-87.92534891,-87.95888918,-87.92534756000001,-87.90272942999999,-87.93915321999999,-87.93259362000001,-87.9463111,-87.95750199,-87.95740876000001,-87.93747630999999,null,-87.94486759999999,-87.91262805,-87.92842241,-87.95631011,-87.921527,-88.006208,-87.96722835,-87.9873217,-88.00512426,-87.98835680000001,-87.90812386,-87.94929009000001,-87.93334732,-87.92854375,-87.90705583,-87.91897427000001,-87.93933755,-88.01742579,-87.95772058,-87.90138045,-87.92014239,-87.94701246,-87.91712013999999,-87.92821153,-87.95006239,-88.00600338,-87.99012968,-87.98833643,-87.95930642,-87.9110007,-87.911062,-87.90900361999999,-87.92834216999999,-87.91398399000001,-87.89554289,-87.9052252,-87.96637823,-87.93346719,-87.93298335,-87.94115474,-87.91832461,-87.94779439,-87.9292702,-87.95528557999999,-87.93299614,-87.94501477,-87.95818629999999,-88.02749406,-87.94693424,-87.93268304,-87.95004011,-87.96986928,-87.88765979999999,-87.92954641999999,-87.90476692,-87.93736464,-87.93570844,-87.93883833,-87.90590090000001,-87.91438951000001,-87.91119261999999,-87.88793870000001,-87.91746474,-88.01365832,-88.00781377,-88.00598411999999,-88.04575401,-87.98369171,null,-87.95584113,-87.98169085000001,-87.96555211,-87.96319873,-87.93299679,-87.93069579,-87.97665816999999,-87.98748976,-87.92485086000001,-87.93878625000001,-87.96510782,-87.97967917,-88.03545054,-87.97854974000001,-87.95812223,-87.94779088999999,-87.88432557,-87.88544815,-87.90276244,-87.88725426000001,-87.91755573,-87.90345047,-87.92205945000001,-87.9034217,-87.90122977999999,-87.90916716,-87.90351464,-87.98494151,-87.93054066000001,-87.9491019,-87.9468074,-87.96722835,-87.90667311,-87.9330769,-87.92968143,-87.95967444,-87.91089439,-87.94770115999999,-87.94173847,-87.91960285,-88.01487013000001,-88.01854514,-87.95744626,-87.98204824,-87.92430219000001,-87.90945861,-87.93298708,-88.00581317,null,-87.96639125999999,-87.95748292,-88.05486417,-88.00577896,-87.94738622,-87.91849796,-87.91123023999999,-87.97794888999999,-87.95945132999999,-87.95752091999999,-88.01414631,-87.9665304,-87.91903388,-87.89837621,-87.8898166,-87.93143261,-87.96886463,-87.9833229,-87.94772081000001,-87.92705233,-87.95987918,-87.97756585,-87.96701867,-87.92847428,-87.97205515,-87.92922603,-87.92730022000001,-87.92168733,-87.90229170000001,-87.89288667,-87.90911387,-88.00272002,-87.93439653999999,-87.9416908,-87.96722686,-87.92835384,-87.96039732,-87.92824889000001,-87.92830798999999,-87.94779102,-87.92277167,-87.91864726,-87.94190785000001,-87.93816403,-87.94883582999999,-87.93282072,-87.91585701,-87.98755176,-87.95337231000001,-87.92720643,-87.97623892999999,-87.94683056,-87.90917931,-87.98316874,-87.97116679,-87.97374891,-87.91121357,-87.96640737,-87.89888471,-87.93835738999999,-87.88354664000001,-87.96944535999999,-87.97372181,-87.96542466,-87.90636885000001,-87.88784205,-87.88788832,-87.97721473999999,-87.90618685,-87.94807288,-87.94362374000001,-87.9576244,-87.97453742,-87.94761038,-87.94762160000001,-87.98367282,-87.94857636,-88.05563597,-87.95751974,-87.98755,-87.96736306,-87.91909351,-87.96717214,-87.92240556,-87.91948159,-87.90499466,-87.94710357,-87.92268285,-87.94826483,-87.99269354,-87.92292936,-87.92019784,-87.9066524,-88.02755752,-87.96864325,-87.95882231,-87.97737384,-87.98568877,-87.94492183,-87.93354188000001,-87.91156209,-87.92256338,-87.9400875,-87.90765245999999,-87.91401894000001,-87.94207093999999,-87.94695029,-87.90522464999999,-87.91571509000001,-87.94112536,-87.94573697,-87.96885444999999,-87.90704289999999,-87.92057067,-88.01259942999999,-88.00797057,-87.88716024999999,-87.90965253,-87.90955739,-87.93888391999999,-87.92920993,-87.99786896000001,-87.92468144,-87.93885568,-87.94827355,-87.96777953,-87.90416981,-87.896801,-87.94815958,-87.92666014,-87.9562956,-87.95651460000001,-88.02587106,-88.01576564,-88.0414596,-88.04459233,-87.98523852,-88.00428306000001,-88.00586146000001,-88.05414795,-88.04534808,-87.96606486,-88.00567589000001,-87.9498079,-88.00540398,-87.93312145,-87.93617377,-87.9394877,-87.94788210999999,-87.91262955000001,-87.91863497999999,-87.92696441,-87.9577213,-87.95761164,-87.93819838,-87.93885400000001,-87.89783919,-87.94945728,-87.96501313,-87.92846546,-87.98753538,-87.95642295,-87.95672107,-87.97762697,-87.9474475,-87.90345047,-87.94500918,-87.95872553,-87.94772081000001,-87.95768529,-87.94024831999999,-87.91896794,-88.01079952000001,-87.94772303000001,-87.94867735,-87.98544068,-87.93393741,-87.93436833,-88.02767996,-87.94849356,-87.99205990999999,-87.94822936,-88.00097169,-88.03792036999999,-87.92707075,-87.96334978,-87.95973146999999,-87.98478076000001,-87.98708319000001,-87.92818327000001,-87.95769002,-87.95032285000001,-87.91263057,-87.91853579000001,-87.94362374000001,-87.93060432,-87.93670419,-87.9478139,-87.94362374000001,-87.94362015999999,-87.94223656,-87.93067584000001,-87.90153732,-87.90526048,-87.92801523,-87.94728773999999,-87.90440146,-87.89283759999999,-87.89543241,-87.91304522999999,-87.91636629,-87.92017478,-87.88789622,-87.92284947,-87.90594311,-87.92399315,-87.92434633000001,-87.88302399,-87.88797302,-87.92439743,-87.91896794,-87.91442793,-87.94772081000001,-87.90444918,-87.88974574,-87.90822278,-87.91132686,-87.91451655,-87.90351697,-87.88181109999999,-87.94639175,-88.02754840999999,-87.99583054,-88.00723323,-87.96680847,-87.95990449999999,-87.98691783,-88.02285591,-88.0165877,-87.96845307,-88.01510743999999,-87.97193982,-90.06676267,-88.59588626999999,-88.53427283000001,-89.06775141,-87.95303719,-89.06894133,-89.00433332999999,-88.02608824000001,-88.09622406,null,-88.68764582,-91.27110930000001,-91.27117088,-88.54676988999999,-91.45934505,-89.68183547,-92.31828245,-89.18132155000001,-88.06381808,-90.16625738,null,-88.15967942,-87.93153332,-87.93737166,-87.93670727999999,-87.93149751,-87.92731612999999,-87.94193315,-90.81966432999999,-87.91124105999999,-87.94779423999999,-89.31974412,-89.30768829,null,-89.38309406,-89.38692854,null,-89.52201355,-89.51511574,-89.40097068,null,-89.42377285000001,-89.49905269,-89.40084157,-89.50268692,null,-89.35108878,-89.45115411,null,-89.50241206,-89.51786731,-89.51703623,-89.52961907,-89.39261826000001,-89.36091494,-89.39393186,null,null,-89.35108878,-89.31371215999999,-89.40096077,null,-89.38710113,-89.39990905000001,-89.3939202,-89.40085233000001,-89.49680432,-89.31471544,-89.39582855,-89.32411438,-89.37862581,-89.36904853999999,-89.38586587,-89.38607055,-89.39411084,-89.44836069999999,-89.39908896,-89.38254533,-89.36411711,-89.34880771,-89.3087747,-89.42890283,-89.40060874,-89.39074711000001,-89.52739993,-89.30009819,-89.54930559,-89.40245554000001,-89.40811635,null,-89.45974138,-89.40898894,-89.35021603,-89.36039037,-89.40079102,-89.42864489,-89.39743523999999,-89.37869370999999,-89.30907596,-89.31018502000001,-89.37691181,-89.31793191,-89.37447883999999,-89.39990905000001,-89.38672087,-89.32358917000001,-89.40900827999999,-89.36611624,-89.4235924,-89.40404811000001,-89.31772956,-89.28869951,-89.34331183,-89.30465891999999,-89.32617380000001,-89.32852074,-89.40899247,-89.40404811000001,-89.40409565,null,null,-89.39411094,null,-89.39396848,-89.40074989999999,-89.39354305000001,-89.3733948,-89.39265933,-89.38962296,-89.40913566,-89.36608438,-89.40898858,-89.39395407000001,-89.49874414999999,-89.38999071000001,-89.47771324,-89.33357416,-89.35534428,-89.3760207,-89.39391909,-89.39745923,-89.39590391999999,-89.39354305000001,-89.39639878,-89.36370684000001,-89.34115962,-89.35841692,-89.38307689,-89.40900445,-89.47366700000001,-89.47761568,-89.51424704,-89.36207638,-89.4450751,-89.40902466,-89.40899585,-89.47352933000001,-89.36353031,-89.35521695,-89.29602985,-89.30158014,-89.30181132,-89.32153314,null,-89.36054224999999,null,-89.37148268999999,-89.38025374999999,-89.45739129,-89.40075314000001,-89.40409346,-89.50174165,-89.4828966,-89.50290142999999,-89.46094465,-89.3928262,-89.51223906,-89.50362675,-89.30193629999999,-89.37732841,-89.34368892000001,-89.37055368,-89.35921835000001,-89.31564634,-89.32971342,-89.35593246000001,-89.39626617,-89.39214045,-89.45118549999999,null,null,-89.40024248,-89.36278471999999,null,null,-89.34502071,-89.37655434,-89.35531259,-89.35949794,-89.50797427000001,-89.31605706000001,-89.40069432999999,-89.51652635000001,-89.40756868,-89.35829972000001,-89.3243801,-89.36431266,null,-89.38146731,-89.32467379000001,-89.30950764000001,-89.32809829999999,-89.3911428,-89.36075063,-89.39172006,-89.3857897,-89.38812170999999,-89.40060428,-89.39254228999999,-89.38598503,null,-89.39012088,-89.39583102,-89.35041495,-89.38886261,-89.38584276,-89.39172006,-89.39735847,-89.38605801,-89.36605772999999,-89.37551157,-89.38498066,-89.29581889000001,-89.39585391,-89.33049923,-89.49647143999999,-89.80318907,-89.57854344,-89.38771819999999,-89.53048269,-89.41067664000001,-89.17431764,-89.3245297,-89.35544815999999,-89.24629494,-89.23568895,-89.22663866000001,-89.22626160999999,-89.21121889,-89.2593997,-89.24746162,null,-88.01341866,-88.07004953000001,-87.9678043,-87.96988679,-88.02649377,-88.10080859,-87.93919588999999,-87.99942387,-88.02288107,-87.97843152999999,-88.09926602,-87.9922517,-87.99040141,-87.99757952,-88.03952696,-88.00946159999999,-88.02991421,-87.97152967,-87.99128125,-88.07349949,-88.07918228,-87.98696017,-88.02956466000001,-88.00355402,-87.96819462000001,-88.0028882,-88.03522052,-87.96777427000001,-88.02524425999999,-88.02327939,-88.00080994,-87.99248119000001,-88.05898352,-88.09940707,-88.01675061,-88.002899,-88.01046838000001,-87.99677140999999,-87.99203679,-87.95302590999999,-88.01996198000001,-88.06173387,-88.05177024,-88.11610769000001,-88.09915745000001,-88.09134077,-88.04956878,-88.07338092000001,-88.05982494,-88.05258752,-87.97110413,-88.01201417,-91.10939279,-88.44371695,-88.48627578,-88.38814988,-88.44702264,-88.44717601000001,-88.4729112,-88.42805481000001,-88.46188655,-88.47884200999999,-88.46097383,-88.44881161000001,-88.4217933,-88.46085119999999,-88.43959807,-88.44687224,-88.44804083,-88.44874618999999,-88.44702211000001,-88.43902121000001,-88.44874618999999,-88.41941833999999,null,null,-88.43902064,null,-88.43938385,-88.41372285,-88.46756756000001,-88.46898016999999,-88.45249542000001,-88.44698352,-88.44349895000001,-88.4505381,-88.43893433,-88.42530269,-88.41494288,-88.44678645,-88.43902121000001,-88.44814189,-88.43887581,-88.46214786,-88.42977336,-88.33100881,-88.12244577,-88.15157137,-88.27561602,-88.30270108000001,-91.2333548,null,-91.23899668999999,-91.24673318000001,-91.24919542000001,-91.2483898,-91.20715113,-91.24964702,-91.24828764,-91.22090584999999,-91.23968477,-91.25379742,-91.21989117,-91.23994508,-91.2391413,-91.21929267,-91.21982690999999,-91.23976829999999,-91.21383710000001,-91.23896157999999,-91.22874355,null,-91.24187070000001,-91.24679577000001,-91.24899766,-91.24672826,-91.24059934,-91.24924421,-91.25126321,-91.21851142,-91.22379628,-91.24927633,-91.23968477,-91.2333374,-91.22911822,-91.21971494,-91.24878753,-91.23990468,-91.18440771,-91.23902815,-91.23797891,-91.23902280999999,-91.23943704,null,-91.25393871,-91.24482633,-91.21015029,-91.2399513,-91.2390339,-91.24929573,-91.25343626,-91.2393364,-91.25345304,-91.24758915,-91.25612124,-91.23903944,-91.24674426999999,null,-91.25189261,-91.22870593,-91.25176098999999,-91.23989432,-91.22924644,-91.21712041000001,-87.62979851999999,-88.08481,-87.83592603,-88.1099439,-88.05951467,-87.85584432,-87.87550487,-87.8214236,-88.12966288,-87.83348124,-88.01990838,-88.02441518000001,-88.01602818000001,-88.02113577,-88.07224874000001,-88.07982776,-88.08617541,-88.11588313999999,-88.07344061000001,-88.07513794,-88.08491586,-88.09485477,-88.00045154,-88.07291877,-87.98844898999999,-88.03750746,-87.83863109000001,-88.06236282,-88.07475997,-88.07446045,-88.0650105,-88.06940133000001,-88.0743336,-88.05347268,-88.04607507999999,-88.06690629000001,-88.07268378000001,-88.08314323,-88.09088117,-88.05904864,null,-88.05554045,-88.07548796,-90.12620597999999,-90.1319846,-90.13176609,-88.77414794000001,-88.88942043999999,-90.48797905000001,-90.47765197,-90.47952375,-90.48559132,-91.14440698,-90.82552895000001,-90.8112077,-90.80794603,-90.82559517999999,-89.02592468,-88.47439248000001,-90.88931891,-90.8894878,-88.54404538,-88.56293662,-89.80821374999999,-89.51153003,-89.4923987,-89.50178698000001,-89.5019065,-89.52435769,-89.51842999,-89.53621324,-89.41248928,-89.48281765999999,null,-89.44009848,-89.41329339000001,-89.40958035,-89.41292697999999,-89.47062072999999,-89.47867402999999,-89.47789290999999,-89.39842984000001,-89.46737837000001,-89.46855927,-89.42236441,-89.42261818,-89.46001767,-89.42806641,-87.88399692,-88.02348674,-87.90209326999999,-88.02627343,-88.02220377,-87.87672507000001,-88.01938629,-88.03884766,-88.01947866,-87.93520477,-87.88979474999999,-88.00291529,-88.0281078,-88.03794994,-88.10057044,-88.11162038000001,-88.07045552,-88.06529273,-88.10367187999999,-88.06547997,-88.09074273,-88.16200778,-88.10350144,-88.09883641,-88.10265517000001,-88.18195532999999,null,-89.32157717,-89.32275582,-89.32597509,-89.35306696000001,-89.33676431000001,-88.03216505,-88.03225755,-88.02739637000001,-88.00469407,-88.04787166,-88.04775624,-88.00838607,-88.05544288,-88.04650012,-88.04761746,-88.03220322,-88.00085631,-87.99668751999999,-88.04743703,-88.0471814,-88.00744322,-87.99996006000001,-88.03532749,-88.00681025999999,-88.02045376,-88.04749061,-88.01725682999999,-88.03412824999999,-88.01412623,-88.0489515,-88.017173,-88.00425797,-88.00361519,-88.00725738,-87.98746319999999,-88.00728581,-87.9931876,-87.98391322000001,-88.00134602999999,-88.01728939,-88.04665693,-88.01728939,-88.00764085,-87.99824325,-88.05703471,-87.98735840000001,-87.98282333,-88.04573003,-88.04764281,-88.00255889,-87.98569544,-88.01610912,-88.02595868,-88.01972653,-88.02592024,-88.04204274999999,-87.98509776,-88.00523319,-88.04960945000001,-87.98657167,-88.03706465,-87.99653591000001,-88.02477505,-88.03696442,-88.0270266,-88.04071883,-87.98918351,-87.99800243,-87.99163264000001,-87.99824325,-88.02965008,-87.99708253,-88.04713578,-88.03178004999999,-88.01728939,-88.04716672000001,-87.98268464,-88.03065053,-88.02344121,-87.99820210999999,-88.01743255,null,-91.46454584999999,-91.43358024,-89.65241940999999,-89.63846993,-89.66151048,-89.64575225999999,-89.72856385,-89.57838536,-89.59324212,-89.57476760999999,-89.56988518999999,null,-89.56465928999999,-89.57454968,-89.55191331,-89.57888864,-89.58478314,-89.53653717,-89.58601397,-89.57475865000001,-89.5726114,-89.56456402000001,-89.58592491,-89.59324212,-89.5747593,-89.58442997,-89.55037529000001,-88.54354218,-88.54224739,-88.54232697,-89.65139771,-89.37722979999999,-89.37695411999999,-88.47605858999999,-88.46368437,-88.46503276,-88.49238716000001,-88.46313799000001,-88.4648919,-88.49269162,-88.45681223,-88.48080623,-88.47935067,-88.46489542,-88.46257629999999,-88.48694691999999,-88.43776733,-88.44011355000001,-88.4458248,-88.42500518,-88.44143221,-88.45325355999999,-88.43713452999999,-88.44771085000001,-88.40397885,-88.42391732999999,-88.44703669,-88.46401978,null,-88.545785,-88.66570476,-88.73354872,-88.40724605,-88.40363733,-88.40725612,-88.35110519,-88.35196143,-88.42512331,null,-88.39708474,-88.42579938,-88.41247215,-88.42340287,-88.41076833,null,-88.37484361999999,-88.40415874999999,-88.34993706,null,-88.35964251,null,null,null,null,-88.38350581,-88.41572308000001,-88.39708474,-88.38230197,-88.36075992000001,-88.41576637999999,-88.37533275,-88.37482387999999,-88.41369277,-88.42579933,null,-88.41824381000001,null,null,null,-88.3748501,-88.16096811,-88.10211252000001,-88.26178545,-88.24907077,-88.29996368,-88.27687494,-88.1199017,null,-91.47066391,-91.47293721,-91.46990375,-91.4631984,-91.50448050999999,-91.44792321,-91.49271492,-91.43043950000001,-91.5138718,-91.50884757999999,-91.51320688,-91.54400639000001,-91.50977899999999,-91.49694269,-91.49190458,-91.46830324,-91.46822435999999,-91.51115104,-91.47056804,-91.46840406,-91.51183566,-91.42930586999999,-91.43974896,-91.50326493999999,-91.50938014,-91.5295915,-91.46319692,-91.47552776000001,-91.50971171,-91.43520355,-91.46805019999999,-91.49483823,-91.50452915,-91.30887384,-91.46444978,-90.99366836,-92.38344124,null,-92.3809411,-89.67590396999999,-89.8983597,-89.90537406999999,null,null,-89.68537139999999,-89.7079969,null,null,-88.57569865000001,-88.58074795,-88.60346675,-87.62947078000001,-87.64734559,-87.6300184,-87.66066959,-87.63204128,-87.62676906999999,-87.66008985000001,-87.65763858,-87.61825672000001,-87.6294166,-87.62174711999999,-88.09779283,-89.06819124,-89.10311419,-87.43856723,-89.8171724,-89.82819578,-89.81343952,-89.82213763,-89.85457842,-89.77982360999999,-89.78647874000001,-89.79513251,-89.76185399000001,-89.78519898,-88.86247912,-88.83617415000001,-88.83622028000001,-88.86183964,-88.003685,-87.91406048,-87.92408940999999,-87.97159981999999,-87.71924242,-87.69225926,-87.68910174,-87.68524235,-87.67060146999999,-87.69726548,-87.65918806000001,-87.69152114000001,-87.67538451999999,-87.66074928,-87.700574,-87.70612029999999,-87.68525545,-87.69803269000001,-87.6703748,-88.23439534000001,-88.23458983,-88.22262311,-88.23678961,-88.20585668,-88.23364734,-88.2451835,-88.21946277000001,-88.23185429999999,-88.23397103000001,-88.23478511,-88.22865963,-88.20367383999999,-88.23706693,-88.23562161,-88.23845953999999,-88.23559112,-88.23203744,-88.22939199,-88.24691014,-88.23460145999999,-88.25854488,-88.22768306,-88.20182738,-88.21795535,null,-88.24333702,-88.34768459,-88.35553547000001,-88.41367085,-88.33222692,-88.38605499000001,-88.20530505000001,-88.24318687,-88.20598409,-88.30421702,-88.21979016,-88.21804962,-88.19665936,-88.34797976,-88.33767046,-87.7508419,-91.29397164,-90.79133383999999,-88.47586244999999,-88.41850006999999,-88.42454300999999,-88.48618949,null,-91.22875306,-91.22887274999999,-91.23159080000001,-91.2350977,-88.30798476,-88.31560752,-88.32412327,-88.302876,-88.3081646,-92.64084573,-92.47288096,-92.75692562,-92.75691826000001,-92.73423348999999,-91.10140884,-91.29216842,-91.32333864,-90.41217236999999,-91.73331831,-91.73514269,-91.73602517,-91.76428072,-92.62661908,-92.62326117000001,-92.61471365,-92.62190897000001,-92.62371788999999,-91.91952248,-91.92805822,null,-91.91569878999999,-91.91970440999999,-91.93221042,-91.9298077,-91.93671585,-87.38088636000001,-87.02119458,-87.19159188,-87.10746234,-87.14688986,-87.31515695,-87.36906184999999,-87.37188886,-87.37610576,-87.36411273,-92.62994872,-92.53965683,-89.63544889000001,-89.6232601,-89.65553255,-89.62427335,-89.62416580999999,-89.65551189,-89.62567095,-89.65575883,-89.63702139999999,null,-89.64934024999999,-89.69540087999999,-89.621326,null,-89.61618261,-89.62590453,null,-89.62835543,-89.64045919,-89.63936474,null,-89.62340188,-89.62255157,-89.62551659,-89.27400971,-89.27400254,-91.86079311,null,-91.21908186,-91.25746318,-91.08147695,-88.5974166,-88.76240022,null,-89.18886371000001,-88.92945306999999,-88.79520726,-89.41847128000001,-89.41269988000001,-89.39600215,-89.41787361,-89.41600836000001,-89.42507138000001,-89.4062224,-89.41085513,-88.49940761000001,-88.61655306,-88.51076689,-88.35196139,-88.34652473,-90.50587216,-90.51370578,-90.49930517,-90.50427037,-90.50929291,-88.45570098,-88.46848266000001,-88.44646853,-88.47802677,-88.40829291999999,-88.41501979,-88.46901828,-88.47539741,-88.46939901,-88.46541843999999,-87.98778858999999,-87.98470867,-87.96483456999999,-87.98455571,-87.9606512,-87.96237186,-87.98466645000001,null,-89.40788405000001,null,-89.39737712,-89.37952088999999,-89.39173137,-89.37807194,-89.43343142000001,null,-89.41120671,-89.38215319,-89.39027389,-89.41275942,-89.38455164,-89.41275616999999,-88.26504677,-88.26789732,-88.27290456999999,-88.27669732,-88.27091313,-88.27730965000001,null,-88.53758849,-88.57222469,-88.55097626,-88.56343379,-88.57874855,null,-88.54501131000001,-88.59130678,-88.57138630999999,-88.53933223,-88.53753248,-88.52784680000001,-88.58137541000001,null,-88.53171947,-88.54252796,-88.56962317,-88.56745558999999,-88.54248373999999,-88.54046067,-88.5848077,-88.58803958999999,null,null,-88.58176247,-88.5286122,-88.53746618,-88.56217397,-88.54859279,-88.58510428,-88.57914466,-88.54085392,-88.52642899999999,-88.55737455000001,-88.59451832000001,-88.53634284,-88.56240609,-88.53769042,-88.54251785,-88.55255751,-89.45080374,-89.43382251,-89.45061053000001,-89.45317123,-89.45126510999999,-89.44319104,-89.44886237,-88.48918134,-88.78700203,null,null,-87.90360474000001,null,-87.90595334,-87.90661607,-87.90220792,-90.86859669,-90.87518559,-92.37166146,null,-88.75666133999999,-88.76524788,null,-88.71732992,-88.26750005,-88.86556874,-88.28583179,-87.96465424,-87.96188162,-87.94844602000001,-87.94515382,null,-90.81958258,-90.81958258,-91.12195151,-90.85000475,-87.83331853999999,-87.8408419,-87.86280854,-87.82083966,-87.83877321999999,-87.83690669000001,-87.83402255,-87.83521708000001,-87.83558729000001,-87.85485571,null,-87.85078066,-87.84862639000001,-87.82272912000001,-87.83347689,null,-87.82167142,-87.82464745999999,null,-87.87948999,null,null,-87.83526752,-87.83591711,-87.82671987000001,-87.82311249999999,-87.85569,-87.82287135999999,-87.84324986999999,-87.85767684,null,null,null,-87.83567234,-87.85530771000001,-87.85575174,null,-87.83159000000001,null,null,-87.85636872000001,-87.85760499,-87.86280854,-87.83490256,null,-87.83286583,null,null,null,-87.83646591999999,null,null,-87.86310423,-87.85729191,-87.85523342,-87.8231778,-87.85477840999999,null,-87.83792158,-87.83556405,null,-87.85545417,-87.84924828,null,-87.8241938,-87.83832542,-88.02435173000001,-89.84025200000001,-89.96377563999999,-89.49212964,null,-87.96033172999999,-87.92050835000001,-88.02359149,-87.9798363,-87.92069313,-89.53969255,-89.52537972,-89.52853623,-87.95343123000001,-87.81604470000001,-88.05190269000001,-88.00862157,-88.22586250000001,-88.21909933000001,-88.26343885,-89.01964569,-89.01773833999999,-88.8693482,-89.27447251,-89.07134295,null,-88.97516724,-89.79724099000001,-89.76859268,-89.76632305,-89.79015728,-92.64296722,-92.10344190000001,-92.09789105999999,-92.10254260000001,-92.0981903,-92.09793435,-92.10677585000001,-92.08032297,-92.10547473,-92.10420062999999,-92.10398266999999,-92.09686682,-92.10186987,-88.24656813,null,-87.56201272,null,null,null,-88.52147099,-88.49239652,-88.48541858999999,-91.68451933,-89.81682627000001,-89.81396134000001,-90.1741128,-90.17604008000001,null,-90.15343892999999,-90.16133042,-90.17516904999999,-90.16102849000001,-90.19766907,null,null,-90.17332489,null,null,-88.22641396,-88.25220609,-88.94145965,-87.98757024,-87.98742425,-87.98304892,-89.28631363,-89.29353598,-89.30351795,-91.818679,-88.00621936,null,-87.96869872000001,-87.96914427999999,-88.00832156,-87.9556303,-88.04776907999999,-88.04773373,-87.95581343000001,null,-88.00821096999999,-88.00613174,-87.98856721,-88.00972037,null,-88.05791545,-88.00844943,-87.96380145000001,-87.94888251,-87.97044389,-87.95800008000001,-88.00896736999999,-88.06913169000001,-87.9884668,-88.00634162,-87.91934814,-87.8227746,-87.93383498999999,-87.84438046,-87.84368258000001,null,-87.89172169,-87.91549471,-87.91162654999999,-88.13835188,-88.14430951,-88.11222691,-89.04080474,-87.91909642,-87.91648143,-87.93448354,-87.93198494000001,-87.91180678000001,-87.93287321,-87.91688743,null,-87.91671882999999,-87.91660782,-87.91702651,-87.91668825000001,null,null,null,null,null,null,null,null,null,null,null,-88.04797524999999,-88.05810063,-88.04855473000001,-88.03052924000001,-88.03599552,-88.94121612000001,-88.94301161999999,-88.9418732,-88.72993028,-88.7526821,-88.08032325000001,-90.31781984,-89.68315918,-89.68804055,-88.63264859,-87.88744278,null,-87.88730766,null,-87.89728991,-87.88745573,-87.87894897,-87.88747171,-87.88990223,-87.88767224999999,null,-87.88499942,null,-87.8838081,-89.72832074999999,-89.74428235000001,-89.75104161,-89.73395711000001,-89.74449897,-89.74425058999999,-89.74425058999999,-89.70368061000001,-89.25745535999999,-87.8593477,-87.96750427000001,-87.96480819999999,-87.96758629999999,-87.97264539,null,-87.9687977,-87.83880292000001,-87.85576072000001,-87.84185017999999,-87.84999200999999,-87.84840416999999,-87.83999453,-87.86997486,-87.84504561999999,-90.12445068,null,-88.73677336999999,null,-91.49888718,-91.46591117,-91.40079176,-89.46460449999999,-87.94749756,-87.9520971,null,-88.04881511000001,-87.88259739999999,-92.35828805,-92.36211987999999,-90.01391602,-90.01012566,-89.77864209000001,-89.79379869,-89.78043716000001,-89.78893819,-89.78699955,-89.81312918,-89.79821497,-89.80209855,-89.80906014,-89.79185069,-89.79621817,-89.78844878,-89.79363351000001,-88.10771368,-88.10770382,-88.11142359999999,-88.12813686,-88.14624886,-88.10730916,-88.08758841,-88.10838305999999,-88.40389944,-88.37408557000001,-88.36262813,-87.87895758000001,-87.87957769,-90.65566522,null,-89.61333852999999,null,null,-89.57189181,null,-89.61318127,-89.5812926,-89.55684094,null,-89.21538636,-89.24738511,-87.85517659999999,-87.86008583,-87.86004403,-87.85758362,-87.86006534000001,-88.09009996,-88.09011101999999,-88.10321417999999,-88.12584338000001,-88.14423465,-88.54996839,-88.89015876000001,-88.81556529,-88.97192269,-88.91715797000001,-88.59676908,-88.60188663,-88.73989799,-88.85891119,-89.53205069000001,-89.52417189000001,-89.53367738999999,-89.52938832,-89.54088817,-89.4555811,-89.46164228000001,-90.34819539,-89.89816773,-87.80081454,-87.79485321,-87.78477642999999,-87.82595148,-87.78258689,-87.79306132000001,-87.80025721,-87.8058343,-87.81914458999999,-87.8515582,-87.8059676,null,-87.79703698,-87.82928085,-87.80087723,-87.80687247,-87.78360468,-87.81617218,-87.78485553,-87.80016562,-87.81853364,-87.79371814,-87.79432202,-87.80117838,-87.78276817,-87.84103406,-87.83602904999999,-87.7847507,null,-87.78723583,-87.85399004999999,-87.79689096,-87.80580147000001,-87.82230593,-87.85315618,-87.81653629,-87.78419703,-87.81051244,-87.78255546,-87.81270265000001,-87.83925354,-87.78861236,-87.80874729999999,-87.80513625,-87.79281976999999,-87.80899749,-87.8161375,-87.80743265,-87.79995724,-87.83925354,-87.78675693,-87.79501804,-87.81979861000001,-87.80467193,-87.82594933,-87.79906841,-87.79901950999999,-87.80581712,-87.78814109,-87.83893836999999,-87.80087851,-87.79823311,-87.79866327000001,-87.79287049,-87.78826943,-87.78483015,-87.79181059,-87.80680633999999,-87.82771482,-87.78482934,-87.78146532,null,-87.81409454,-87.80650643,-87.81475616,-87.84107376999999,-87.78512053999999,-87.80469522999999,-89.02256692,-89.03687859,-88.98703602000001,-89.00591968000001,-89.04542669,-89.02942376,-89.01624609,-89.03217503,-89.05191497,-89.006424,-89.04495805000001,-89.03112111,-89.01202560999999,-89.00290547,-89.03019969,-88.99653965,-89.0472575,-89.02420715,-88.99945242,-88.97571756000001,-89.0090455,-88.98521378,-89.03708640000001,-89.01460974,-89.04186511,-89.02694647,-89.06762254,-88.98286181,-88.97564020999999,-88.43574006999999,-88.4258304,null,-88.43087391,-88.43528952,-88.4335675,-88.42767843,-88.43503581,-88.41410079000001,-88.43561931000001,null,-88.41410177,-88.43687315,-88.4344402,null,-89.81783034,null,-89.72329928000001,-89.04588812999999,-89.02303851000001,-89.03172622,-89.03096572,-88.98302993,-89.04031938999999,-89.03088004999999,-88.99273501,-89.04554601,-89.02417274,-89.05149374,-88.9846162,-88.98522967,-89.05662834,-89.04439499999999,-88.98067365999999,-89.01392365,-89.03342761,-89.03928096,-89.03589321,-89.07349373,-89.06945871000001,-89.06794650000001,-89.07048346000001,-89.08300834000001,null,null,-89.38853415,-88.33265695,-88.33776878,-88.31891013000001,-89.72178722,-89.74811812999999,-89.51715835,-89.02667423,-89.01938631,-89.02911718999999,-89.01938287999999,-89.01468396,-88.60010307,-88.59401375,-88.14297109,-88.1007506,-88.10932027,-88.13584356,-87.90394831,-87.81106263,-87.87689454,null,null,-87.90019015999999,-87.90932825,-87.98384323000001,-88.26931356,-88.27488704,-88.27689454999999,-88.47079107,-88.46366882,-88.50811005,-88.43172822,-89.13311675,-88.72607883000001,-88.70458737,-88.71757230999999,-88.73225526,-88.71353087,-88.71677043,-88.73326446999999,-88.73519328,-88.72977849,-88.72176094,-88.70460568999999,-88.72072416,-88.71009791,-88.72313475,-88.69506641,-90.3356914,-90.73033255999999,null,-88.6469221,-88.64389769,-89.25996266,-89.25543445,-87.88283308,-87.88300058,-87.88047012,-87.88281449,-88.54417581,-88.18421149,-88.18047403,-88.20433841000001,-88.18185423,-88.17542383,-88.18126006,-88.18055218000001,-88.18101315,-88.19119403000001,-88.18102732,-88.1816173,-88.17599934,-88.19190182,-88.19680835,-88.16653744,-88.17606194,-88.19120009,-88.1940242,-88.18496616,-88.17602339,-89.40248108,-88.7471578,-88.73751435,-88.00850422000001,-87.99183413999999,-88.00345612,-87.72463675,-87.71296106,-87.72893132999999,-87.71126463,-87.71457847000001,-87.72629148,-87.74093263,-87.72128075000001,-87.71461752,-87.71626074,-87.69681601000001,-87.72794634,-87.72081417,-87.72616603,-87.72155151,-87.72411776,-87.7162766,-87.73218939,-87.72038492999999,-87.71797073,-87.75767783000001,-87.71281718,-87.71793977999999,-87.73593473,-87.72289515999999,-87.72030192,-87.72449659999999,-87.84006921,-87.77752826,-87.70446857,-87.94131183,-88.00959422,-87.76140355,-89.14733965000001,-89.15175082,-88.83429012000001,-88.81741276,-88.83963419,-88.84130953,-88.83629003,-88.09543316,-88.10995663999999,-88.12495677,-88.10707295,-88.12634756,-88.07713846,-88.12218966,-88.10450706,-88.10426647,-88.13143796999999,-88.14596052,-88.0675931,-88.08642592,-88.83345998999999,-88.83702608999999,-88.86348647,-88.84323951,-88.84929422,-88.85832207999999,-88.83304237,-88.33193188,-88.80733911,-87.7843532,-88.90014194,-90.34478017000001,-87.94849635,-87.94317619,-87.96376038,-87.87557415000001,-87.86931522,-87.87769652999999,-87.90020853,-89.46953597,-89.45802913999999,-89.47200856000001,-89.46448558,-89.44312243,-89.46350098000001,-87.82280514999999,-87.81556841,-87.8099783,-87.81254728,-89.73448628,null,-88.58022792,-88.54102334,-92.15156371,-92.00905219000001,-91.76918229,-91.13508803000001,-91.42713903000001,-91.15019906000001,-89.4329158,-88.90901044,-90.31440248,-90.80597725,-90.31712321000001,-89.32251271,-89.8853276,-89.80141098999999,-91.38881958,-91.42069664,-91.44332885999999,null,-89.36411465,-88.005779,-87.96007879,-87.95802435,-87.914124,-87.92037096999999,-88.02872164,-87.90907464,-87.98193005,-87.95734537,-87.90936969000001,-87.93803272,-87.98346487000001,-88.02518784,-87.95708482000001,-87.95950451,-87.95766138,-87.93814734999999,-87.97116891,-87.88790399,-87.94232576,-87.94668746000001,-87.96289828,-87.928949,-87.93391293000001,-88.06026462,-88.00607969000001,-88.01001592,-87.93021711999999,-87.96508842,-88.00736415999999,-87.93485832,-87.92535671,-87.95767161000001,-87.93866448999999,-87.9951368,-87.90499466,-87.93413072,-87.94647781,-87.89797761,-87.90911387,-87.89162767000001,-87.88639426,-87.95841304,-88.02739108999999,-87.99718996999999,-87.95754353,-87.93756581,-87.90261597999999,-87.91079209,-87.91104215,-87.95791305,-88.0160829,-88.02757071000001,-87.93868467,-87.94764089,-87.94207093999999,-87.8879191,-87.95724647,-87.96776205,-87.9990281,-87.97737235,-87.94494516,-87.95751974,-87.92868076000001,-87.9477399,-87.94028416,-87.91493557,-87.94624772,-87.91119289,-87.94827057000001,-87.91831694,-87.95510796000001,-87.90656420000001,-87.88904098,-87.88807213,-87.9047767,-87.9022061,-87.9190985,-87.88157626,-87.90282942,-87.90923073,-87.95523828,-87.97713061,-87.96677748,-88.03904842,-87.93951143,-87.90177978,-87.94705666,-87.98512706,-87.95751306,-87.95655533,-87.94090954000001,-87.91857486000001,-87.93885142000001,-87.97626964,-87.95057737,-87.94701135,-87.95257794,-87.96814184,-87.9975027,-87.90948224,-87.93885852,-88.04066292,-87.94067146,-87.98632465999999,-87.95740876000001,-87.97618124,-87.97530363,-87.94635270000001,-87.97117874,-87.94816539999999,-87.95649691,-87.88324227,-87.888312,-87.89371885,-87.9675692,-87.91060521999999,-87.97622744,-87.91261648,-87.92265358,-87.95741422,-87.89954118,-87.90553959,-87.92534574,-87.98127282999999,-87.92847772,-87.92707108,-87.94974806,-87.95645188,-87.98545735,-87.98608385,-87.96213968000001,-87.92921004999999,-87.93560931,-87.91572617999999,-87.8779955,-88.00285596000001,-87.94909846,-87.87793872,-87.90913475000001,-87.96428681,-87.94779151,-87.96884484,-87.93319377,-87.99704859000001,-87.9961989,-87.91111557000001,-87.89135330000001,-87.90725848,-87.91746474,-87.88807213,-87.90558002,-87.91258392,-87.91405722,-87.91834049000001,-87.91896794,-87.88836793,-87.91882369,-87.91093453000001,-87.903347,-87.88854549,-87.8866702,-87.8829044,-87.88294562,-87.90345047,-87.93830316,-87.90290455,-87.95821912,-87.93300769,-87.92773581,-88.01734213,-87.96754323,-87.92410838000001,-87.942881,-87.94772081000001,-87.9735476,-87.96877048,-87.98194343999999,-87.92143852,-87.95777826,-87.93300271,-87.95990449999999,-87.97606844000001,-87.94829738999999,-87.94923831,-87.96743571,-87.96572664,-87.99245841,-87.9509984,-87.90875274,-87.93818216,-87.93761720000001,-87.93346175000001,-87.91865398,-87.95751974,-87.91864988,-87.95913016,-87.93367818,-87.93837925,-87.90763945,-87.94719966,-87.91861203000001,-87.89781717,-87.91853579000001,-87.91419286999999,-88.00710921,-87.92846718,-88.02593634999999,-87.98753189999999,-87.95957613,-87.92305811,-87.95797663,-87.90936263,-87.95019667,-87.91072864,-87.91987177,-87.90347336000001,-87.89149835000001,-87.96405855,-88.02732012,-87.97646193,-87.92969945,-87.91823503000001,-87.94792051,-87.9873217,-87.91440794,-87.90354297,-87.90305735,-87.90041024999999,-87.9861817,-88.00797255000001,-87.95064145000001,-87.94821251,-87.90955341,-87.92253675000001,-87.88796781000001,-87.89888471,-87.95041655,-87.92532462,-87.91414364000001,-87.93846571,-87.92862902,-87.91427034,-87.90915253999999,-87.93869443,-87.92679398,-87.91401894000001,-87.94750809,-87.94492605000001,-87.94274036,-87.91123862000001,-87.94737859999999,-87.94154279999999,-87.94986883,-87.91788474000001,-87.95769002,-87.90597268,-87.91352734,-87.87195946999999,-87.96151815,-87.95657746000001,-87.89757040000001,-87.93711918,-87.95656738,-88.03272387,-87.99599200999999,-87.98616031,-87.9669016,-87.95603628000001,-87.92861551999999,-87.95382133,-87.92903406000001,-87.92521798,-87.90979663,-87.94095956,-87.93883833,-87.94677874999999,-87.89913214000001,-87.93194226,-87.92242026,-88.05280616,-87.94736150999999,-87.91255593,-87.93947274999999,-87.93539131,-87.93029179,-87.95776788000001,-87.94567175,-87.92846718,-87.9341958,-87.99554467999999,-87.93311605,-87.92692359,-87.93737608000001,-87.93298837,-87.94784982,-87.90522464999999,-87.89792743,-87.94204634,-87.96752093000001,-87.90612075999999,-87.95765573,-87.95243847,-87.97737269,-87.94269622,-87.94168725,-87.98712883,-87.98315882999999,-87.94822936,-87.90471248,-87.90441394,-87.90557565,-87.94932308999999,-88.01732690999999,-87.95438494,-87.93049634,-87.90474260000001,-87.95812988,-87.88269852000001,-87.89880687,-87.91971641000001,-87.96029184,-87.9047774,-87.94816539999999,-87.93024638999999,-87.98548834,-87.97936889,-87.89689521,-88.00856016,-87.98618526999999,-87.95740927999999,-87.89730358,-87.91031781,-87.92402697,-87.90523601,-87.92983157,-87.89792743,-87.90923073,-87.91877923,-87.97114286,-87.94920148999999,-87.94718983,-87.93838325999999,-87.93454771,-87.90841856,-88.00558162,-88.00534656000001,-87.95776857,-87.94784982,-87.90107097000001,-88.00116136,-88.02562802,-88.02456872,-87.89128415,-87.95612475999999,-87.91304522999999,-87.94639850999999,-87.93299732,-87.95524324,-87.99492574,-87.94768789,-87.99993047,-87.94739352000001,-87.95768309,-87.98908904,-87.9476997,-87.96359135,-87.95642879,-88.00328822,-87.92008755000001,-87.94812121,-88.02575702,-87.90522464999999,-87.90261597999999,-87.90916864,-87.92996162,-87.92804907,-87.9771688,-87.95463530000001,-87.94102596,-87.98713187,-88.00405693,-88.00738108,-87.95957208999999,-87.89934291,-87.92295841000001,-87.97474044000001,-87.94768895,-87.98335336,-87.94502399,-88.0258884,-87.98315009,-87.96327503000001,-87.97729954,-87.9773543,-87.97632453,-87.99675575000001,-87.97104113,-88.01592877,-88.01719104999999,-87.96640653999999,-88.01719258,-87.99879467,-87.91453645,-87.93511887,-87.94247339,-87.97592776,-87.94739352000001,-87.98753189999999,-87.97760237,-87.95642479999999,-87.95772770000001,-88.02730799,-87.95751974,-87.94923548,-87.94362042,-87.94983055,-87.99785026000001,-87.94731699,-87.92921004999999,-87.9224121,-87.94636641,-87.94308604,-87.93319700000001,-87.90530769,-87.93993599,-87.91515513,-87.98770386,-87.93587945,-87.94729263000001,-87.93737437999999,-87.91579999,-87.93457583,-87.92702977,-87.91613460000001,-87.95829635,-87.93399522999999,-87.93205822,-87.95250874,-87.91840411,-87.91246464,-87.94875757,-87.94693961,-87.94735980999999,-87.92598574,-87.94412154,-87.95048554,-87.93290091,-87.94388993,-87.99134457,-87.98538493,-88.00443263,-87.97610317,-87.89803599,-87.90935397,null,-87.93947564,-87.9112238,-87.95990449999999,-87.96708594,-87.99630883,-87.98691293,-87.98215793999999,-87.96616387,-87.95763229000001,-87.92682839,-87.93682683,-87.91692114999999,-87.91025706000001,-87.94685739000001,-87.90530769,-87.90728478,-87.90582354,-87.96235803,-87.94779373999999,-87.99781418000001,-87.96788505000001,-87.89684026,-87.9486131,-87.92994494,-87.88967323999999,null,-87.94703052,-88.02268015,-87.94871670000001,-87.91894757999999,-87.94860841000001,-87.97816494999999,-88.05246687,-88.02629103,-87.95618807,-87.99265421,-88.00422244000001,-88.02454725,-88.04121392,-87.93428169000001,-87.92545610000001,-87.94795445,-87.93997922,-87.94748075,-87.91965642,-87.9144247,-87.88797099999999,-87.93879663,-87.90575185,-87.93569914,-87.95900030999999,-88.00368179,-87.98416358,-88.02228664,-87.949253,-87.93774969,-87.96044135,-87.97565996,-87.94738622,-87.94289148,-87.93502647,-87.93021711999999,-87.95767542999999,-87.9634839,-87.95909992999999,-87.97236470999999,-87.89740703,-87.93256819,-87.94036242999999,-87.94910108000001,-87.94151462000001,-87.92846947,-87.93205502000001,-87.91142086000001,-87.92831678,-87.93869976000001,-87.92298269,-87.91293383999999,-87.92020032000001,-87.91572622,-87.88279608000001,-87.88566951,-87.9110589,-87.90759976,-87.90702057,-87.91894237,-87.89030493999999,-87.97714302,-87.95750534,-88.00648851,-88.00648851,-87.96762145,-87.92730022000001,-87.98674152,-87.94975977,-87.98746439,-88.00488102,-87.99706317,-88.00290871,-87.95773490000001,-87.97365927,-88.08598076,-89.77258673,-89.02066292000001,-87.85020477,-88.41173705999999,-88.40391586,-89.91668326999999,-89.64095688,-87.87911483000001,-91.91408297,-88.38668798,-90.13836836999999,-90.00018943000001,-88.43890931999999,null,null,null,-88.00723639,null,-90.52813562,-87.93295465999999,-87.93290894,-87.9329549,-87.93416935,-87.93295491000001,null,-87.92168529999999,-87.92714079,-90.78888227,-88.00570564,-87.89121376,-87.89971468,-87.89792743,-87.95787046,-87.91138551,-87.89979979,-88.02578876,-87.91847088999999,-87.96507696,-87.88606285,-87.9329948,-87.9253468,-87.94289028999999,-87.92817613,-87.95766913999999,-87.98586414,-87.96625588000001,-87.94771857000001,-87.94822936,-87.98612341,-87.97866746,-88.00886045,-87.95613527,-87.95603602,-88.01336057,-87.94362374000001,-87.89897098,-87.99974782,-89.3946844,-89.39908443,-89.37868568,-89.51979116,-89.34736568,-89.36763306,-89.3777913,-89.4036196,-89.33964964,-89.4024424,-89.40406929,-89.39066282,-89.39583102,-89.39165060000001,-89.28637931999999,-89.41291828,-89.40737703000001,-89.38245338,-89.38059505,-89.37529694,-89.37534417000001,-89.37838671999999,-89.38629096,-89.38068593,-89.3993005,-89.38560778999999,-89.36972280000001,-89.40906047,-89.47352429999999,-89.43754577999999,-89.45243536,-89.4861386,null,-89.50240545,-89.41390475,-89.42377279,-89.3824333,-89.39568902000001,-89.35579964,-89.36983916,null,-89.52460365,-89.39011733,-89.39469015,-89.35077560000001,-89.3903677,-89.36972280000001,-89.28953519,null,-89.37150849,-89.26642884,-89.50322702,-89.50320397,-89.50140368,-89.50323701000001,-89.47846882,-89.36591543,-89.40098034,-89.39891875000001,-89.38958322000001,-89.39736223,-89.29148596,-89.31831642,-89.30715527,-89.40068606,-89.47340404000001,-89.35132027,-89.35967807999999,-89.39340341,-89.39908443,-89.36694248000001,-89.49588512,-89.43532902,-89.35897324,-89.35480769,-89.30617318,-89.36127251000001,-89.35524597,-89.36150925,-89.4989353,-89.50312433000001,-89.47379527,-89.50191794,-89.31541692,-89.49360618999999,-89.4163612,-89.39354305000001,-89.41739674999999,-89.42864287,-89.39309421,-89.30720398,-89.39424274,-89.3464907,-89.31565102,-89.36572092999999,null,-89.47346306,-89.3654303,null,-89.39908443,-89.39903351,-89.38031791,-89.36964909,-89.38475169,-89.50036961000001,-89.50486849000001,-89.48202036000001,-89.51279372,-89.50875139,-89.50324482000001,-89.35703606,-89.35817772999999,-89.30599565999999,-89.34731051,-89.39583102,-89.42853967000001,-89.41778648,-89.46756046,-89.46234179,-89.40408438,-89.41041975,-89.39411067,-89.35845386,-89.38071739999999,-89.50319969,-89.52495544999999,-89.52496489000001,-89.30137573,-89.39411147,-89.40374298,-89.40571004,-89.40884927,-89.39919633,-89.40247207,-89.40848585000001,-89.42865082,-89.41261471,-89.41288345,-89.40078173000001,-89.50397082000001,-89.40271586,-89.38593676000001,-89.29241081000001,-89.35104615,-89.3119404,-89.32787055999999,-89.36373694,-89.38484618,-89.39379509,-89.38414648,-89.40106804,-89.39586215999999,-89.40074319999999,-89.4575511,-89.33061437000001,-89.30583394,-89.40900581,-89.42567966,-89.41273441,-89.38403695,-89.39244696,-89.35894347999999,-89.3659936,-89.40068606,-89.378615,-89.39585945,-89.38031791,-89.36379074,-89.52278398,-89.37687096000001,-89.48666267,-89.41659472000001,-89.51983792999999,-89.39386019,-89.44392929999999,-89.37914798,-89.31780381,-89.5161785,-89.47957647,-89.34196122,-89.39630811000001,-89.35418816000001,-89.30907596,-89.36669904,-89.38897278,-89.38472581000001,-89.37581272,-89.36651931,-89.52224578000001,-89.74797101999999,-89.34648306,-89.40416922,-89.59797706000001,-89.22626808,-89.23366234,-89.20741114,-89.23084845,-89.20569516,-89.19528861000001,-89.22674633,-89.20833411,-89.24474948,-89.24207632,-89.22284412,-89.27340287,-87.98075362,-88.05631626,-88.01988814000001,-88.02413253,-87.96041565,-87.98958933,-88.06388646000001,-88.04511848,-88.05930358000001,-87.98834094999999,-87.98111864000001,-87.99372547999999,-87.99902437,-88.00764700000001,-88.04809561,-88.05236369000001,-88.02621610999999,-88.04349983,-87.98397576000001,-88.06394177999999,-88.00468841999999,-88.04625937,-88.06830527,-88.07585559,-88.041068,-88.05962598000001,-88.09938326,-88.03877333,-87.98471484,-88.00489327,-88.05078944,-88.01731984,-88.00911151,-88.05680744,-88.01612118,-88.08929353000001,-88.01990029,-87.98832508,-87.97024175999999,-88.02353481,-87.97785837000001,-87.98320931000001,-87.96777636,-88.00784347,-88.00409887000001,-87.99443391,-88.03635119,-88.09940410999999,-88.0950373,-88.10019102,-87.99503147,-88.0520707,-88.00143717,-88.01786599,-87.97745001,-87.97885563,-87.96703368,-87.92462523,-87.91873243000001,-87.88786078,-87.91133523000001,-87.93756494,-88.06408598,-88.44682582,-88.44842088,-88.45243535,-88.47318199,-88.45899888,-88.47317689,-88.44760371,-88.44641202,-88.473159,-88.43474789,-88.41984291999999,-88.40396509,-88.44058902,-88.44726122,-88.44884191,-88.44777772,-88.45352930999999,-88.44808492,-88.46090733,-88.44695957,-88.45728548,-88.46309775,-88.44691467,-88.48571557,-88.43155996,-88.44524669,-88.45242236999999,-88.41590105,-88.44695292999999,-88.43913404,-88.44705229,null,-88.14374327,-91.21295977,-91.245464,-91.25014997,-91.23931534,-91.21876017,-91.24067681,-91.23901846,-91.23910957,-91.21565964,-91.2460504,-91.23949716,-91.23904705,-91.24162822,-91.23795987,-91.24829798,-91.23997498,-91.21932842,-91.24889319,-91.24750578,-91.23887909,-91.23680256999999,-91.24837011,null,-91.23940994,-91.25142672,-91.23709766,-91.21020451,-91.21695561,-91.25258062,-91.24865362,-91.25343734,-91.24995423999999,-91.2394218,-91.24813109,-91.23211482000001,-91.21280597000001,-91.23981634,-91.24225889,-91.23949577,-91.23910957,-91.24947656000001,-91.24673515000001,-91.23103546,-91.24990214,null,-91.24190647,-91.24874638,-91.21605682000001,-91.24241696,-91.23876605,-91.23904571999999,-91.21313764,-91.24674127999999,-91.25187407,-91.23302429,-91.24899084,-88.18095527,-88.01127588,-87.83634478,null,-88.09949953,-87.89705668000001,-87.81774464999999,-87.91508777999999,-87.83388889,-88.04151011,-88.01283974,-87.95774718,-87.97142635,-87.99546952,-88.06067704,-88.08467687,-88.01036846,-87.95640340999999,-87.97091935,-87.95638432,-88.07945866,-87.98919517,-87.99587584,-88.12493117,-88.12513131,-88.0717686,-88.05399362,-88.05217797,-88.06414083,-88.05094861000001,-88.07148162,-88.12618491000001,-88.05330771,-88.06040263,-88.06089181,-88.06042961999999,-88.05451628,-88.05907074,-88.05447146,-91.48883394000001,-88.57276417,-88.77357539,-88.77745566,-90.48558779,-90.47498461000001,-90.47424178999999,-90.4765951,-91.12737604,-91.14033322,-91.1406965,null,-91.13065082,null,-90.82062578,-90.82052612,-90.82402672000001,-90.82553910999999,-90.81088647999999,-89.06178733,-88.47457966,-90.88936081,-89.78239678,-89.49265174,-89.48567284000001,-89.52043475000001,-89.51163514,-89.49570301,-89.52021014,-89.52452941,-89.50080445,-89.41467013,-89.4611785,-89.47529602,-89.41240572,-89.41935300999999,-89.42059817000001,-89.40911149,-89.41345215,-89.44445824,-89.39609348,-89.4126816,-89.38394507,-89.45651107,-88.02026327999999,-88.02628348,-87.92240169,-87.91809395999999,-88.02427453,-87.99883574,-88.02548219000001,-87.84578309,-88.0248283,-87.95027069,-88.00906267000001,-87.97920302999999,-88.05600067,-88.03720435,-87.96107674,-87.97954688,-87.950942,-88.01363416,-87.98123286000001,-87.95317876999999,-88.07139545,-88.10364084,-88.12081762,-88.10023212999999,-88.06547139,-88.1068925,-88.06931783,-88.09353802,-88.10383462999999,-89.32722056999999,-89.32781408,-89.33444373,-89.3263553,-89.32612045,-89.32316722,-89.33077449,-89.32633222,-89.33623835,-88.01249081,-88.00211784,-88.02415095000001,-88.04814847999999,-88.00618265,-88.0159487,-88.04830659,-88.00462872999999,-88.00688313000001,-88.04796862000001,-88.04788359,-88.00743229,-88.02159345,-88.04620391,-88.01171943,-88.04621349999999,-87.99970795999999,-88.01922097000001,-87.98746318000001,-87.98747887,-88.01729533,-88.00721775,-88.02714093,-88.00745465,-87.99684599,-88.05678739,-88.00862047,-87.98409246,-88.00862012,-88.04703748999999,-87.98530144,-88.01723831,-88.03176414000001,-88.00519916,-88.03540158,-88.05705102,-88.06224201000001,-88.01999456999999,-88.00521938,-88.00743401,-88.06128450999999,-87.9840779,-87.9969323,-88.02745896,-87.98470951,-88.02219226,-87.99751847,-87.99440679999999,-88.00608201,-87.99684546,-88.00486045,-88.05046735000001,-88.02209392,-88.01994670000001,-87.98521572999999,-88.00721775,-87.98659689,-88.01212099,-88.04702082,-87.9887288,-87.9910675,-87.99567225,-88.00005887,-88.00682069,-88.02746061000001,-88.04708737,-88.01295776000001,-87.98733970000001,-88.05042766,-88.01690462000001,-89.63739335,-89.64090888,-89.65028157,-89.66154571,-89.63988651,-89.73860462,-89.73148669,-89.7253396,-89.54945275999999,-89.57479644999999,-89.52843541999999,-89.50261823,-89.57574237999999,-89.56451939,-89.57481436,-88.49039419,-88.53941143999999,-89.37679858,-89.37678262999999,-89.37679152,-88.48527722,-88.45741156,-88.48340192000001,-88.45961102,-88.46496593000001,-88.46489373,-88.44978122000001,-88.46186753000001,-88.48681435,-88.49781089,-88.47725683,-88.48024138,-88.47957092999999,-88.4531745,-88.44962008,-88.42408437,-88.44011447,-88.74200733000001,-88.56025277000001,-88.58352313,-88.719874,-88.58304821999999,-88.50821619,-88.445623,-88.50518999000001,null,-88.42357018,-88.41367103,-88.41561213,-88.39644063,-88.43558763,-88.41201287,-88.41532733,-88.41886572,-88.41511017000001,-88.37516339,null,-88.39290493,-88.39703186,-88.425838,-88.37508604,-88.41574717,-88.40871804,-88.41576241,-88.41363756,-88.41572303,-88.40431131,-88.40725767000001,-88.41896509999999,-88.38917468,-88.413034,-88.40574994000001,-88.42388155,-88.40403769,-88.41734606,-88.40508534,null,-88.40699866999999,-88.41907178,-88.34910417,-88.43367169,-88.42576436,-88.36898567999999,-88.41058509,-88.37482558000001,-88.40871697999999,-88.43105258999999,-88.41352888999999,-88.37764747,-88.38344701,-88.42769439999999,-88.19694783,-88.14208794,-88.26628205999999,null,-88.25871979999999,-88.30099025,-88.18896205999999,null,-91.50976823000001,-91.49950653000001,-91.50313993,-91.52503827,-91.47093552,-91.46643886,-91.53949836,-91.50844600000001,-91.46305664,-91.5894843,-91.45659702,-91.51519469,-91.50182171,-91.47339294,-91.50009133,-91.51136817,-91.47917594,-91.53383433,-91.49500085,-91.50977525,-91.51876838,-91.42945484000001,-91.44757914,-91.49031359999999,-91.47857621999999,-91.50770389,-91.46648879999999,-91.49635506,-91.47656311999999,-92.37195337,-89.68528612,-88.5970224,-88.58596176,-88.60981241,-88.5680723,-88.60913544,-87.62650178,-87.61252858,-87.50084213,-89.11268904000001,-89.09472096,-89.1019594,-87.43867691,-87.43845347,-89.83247285,-89.82212825000001,-89.81703213999999,-89.83626939,-89.83829826,-89.81716252,-89.81206466,-89.81335489999999,-89.84459772,-89.78610729,-89.77522501,-89.78575824000001,-88.54983185,-87.97965511,-87.94096939000001,-87.92290529,-87.91630314,-87.94226642,-87.96382576000001,-87.70179299,-87.67469689000001,-87.66197088,-87.64034061,-87.6344223,-87.65780235,-87.68955810999999,-87.69076800000001,-87.69801181,-87.66729945,-87.69815817999999,-87.66354465000001,-87.69926863000001,-87.70930174,-87.67197593,-87.69131993000001,-87.69441551,-87.6577334,-87.6425254,-88.25161378,-88.22653731,-88.23687138,-88.23969576,-88.24976839,-88.25921986,-88.23651794,-88.25594368,-88.21837592,-88.25583912,-88.23156629,-88.18219223,-88.23562161,-88.23223715,-88.27220504,-88.25817673,-88.22711803,-88.23464872,-88.23172525,-88.22665452,-88.22100325,-88.2342441,-88.18848662000001,-88.23455534,-88.23715901,-88.23211489000001,-88.23723364,-88.23450966999999,-88.22478124,-88.20763306000001,-88.17987259,-88.25019703,-88.22673893,-88.23712526,-88.24968077,-88.20033046,-88.28996159,-88.47280387000001,-88.37162485,-88.23998455,-88.23949914000001,-88.346394,-88.41150945,-88.21668397000001,-88.42493611,-88.37792858,-88.2925494,-88.24334066,-88.22375451000001,-88.20034173000001,-88.35544871,-88.24404801,-88.22510345000001,-88.34290729,-88.35194081,-88.36267846,-88.34695609000001,-87.75106374000001,-88.63026010999999,-87.70126834,-87.84432882999999,-87.96277096999999,-87.76879133,-90.79687529,-88.43473958,-88.43070763,-88.41175265,-88.47027528,-90.65482306,-91.21342558000001,-91.21339603,null,-91.18133614,-91.19662513,-91.22039328,-88.33911242000001,-88.29154459,-88.35218705,-88.31181416,-88.32412066000001,-88.3157226,-88.31229766,-91.85963728999999,-92.6107105,-92.39525012,-92.7507504,-92.74231478,-92.63800141999999,-92.71700456000001,-92.70219842,-92.75697509,-89.41731252,-89.06669099,-91.06769884000001,-91.24665444999999,-90.48785211000001,-91.74891255999999,-92.62830968,-92.62926227,-92.62934312,-92.6300825,-92.62925685,-92.62938234000001,-91.92974598000001,-91.91948057,-91.92335489,-91.92591202,-91.93271722999999,-91.92974392000001,-91.93213581000001,-91.92847848,-91.93226016,-87.12172363000001,-87.28814122,-92.53633421000001,-92.62264068,-89.64525669,-89.71945534,-89.62754696,-89.65026693999999,-89.6211871,-89.62308722,-89.63916441000001,-89.63014870000001,null,-89.64609055,-89.62323823,-89.63919608,-89.62522602999999,null,-89.65565853,-89.62384521,-89.62419778,-89.62725931999999,null,-89.693606,-89.65553907,-89.61736042,-89.38865543999999,-92.38110684999999,null,-91.86016361999999,-91.24343071,-91.26266647,-91.24793394,-91.25690847,-91.0905443,-88.84324264,-89.09854045,-89.14175413,-88.7399588,-89.0222437,-88.93023244,-89.43054246,-89.42902386,-89.40636072,-88.26135365,-88.31191678,-88.66398916,-88.32406802,-88.30276953000001,-88.56829694,null,-88.54157796,-90.50513226,-90.47725526000001,-90.5090031,-90.50081895,-90.50385328,-90.50477136000001,-88.46319858,-88.45574951,-88.40906452,-88.46812534,-88.46881867,-88.48398794000001,-88.45837124000001,-88.4511763,-88.46128710000001,-88.43907215,-88.43865510000001,-88.40174977,-88.41213224000001,-88.45230101,-88.49120937000001,-88.477709,-87.98679497000001,-87.98773496,-87.98798049,-87.9661334,-87.97344056999999,-87.98337555000001,-89.37852506,-89.3665422,-89.40784305,-89.41015732,-89.4247372,-89.42436939,-89.38225417,-88.27497097,-88.26672857,-88.27405842,-88.54645879,-88.59099107,-88.57820194,-88.52753731999999,-88.58130917,-88.53753845,-88.5427009,null,-88.53758510999999,-88.5567516,-88.5280202,-88.53645121,-88.51927001,-88.54666878,-88.53757057999999,-88.53548363,-88.52761722,-88.56688991,-88.52752097,null,-88.54300433,-88.54257514,null,-88.54622503,-88.54251619,-88.56254822,-88.58158,-88.56064141,-88.54248664000001,-88.59443453999999,null,-88.58186434,-88.55245827,-88.58130917,-88.52861363,-88.58819996,-88.53753534000001,-88.56862243,-88.54123548,-88.54614008,-88.52748003000001,-88.53966278999999,-88.54310024,-88.52750528,-88.55551729,-89.44587367,-89.45131944000001,-89.44377505,-88.39491377,-88.92594995,-89.11068014999999,-87.8971653,-87.90813534,-90.75064349,-90.659294,-90.88010731,-88.76281444,-88.76515228,-88.31329214,-88.37706976,-88.53579062,-87.92729685,-87.95359557,-87.95068675,-87.95051356,-87.95912135,-89.73297859,-90.88215547,-87.95136966,-87.83044692,-87.82287175,-87.83445694,-87.83569441,-87.94304252000001,-87.82796476,-87.85234661,-87.82148381,-87.89066059,-87.81935887,-87.82484456,-87.85572813,-87.84324903,-87.82469239,-87.82294491,-87.83432501999999,-87.82958246,-87.93394911,-87.85575175,-87.81931593,-87.85641615,-87.83554109000001,-87.82674953999999,-87.9368138,-87.82691038,-87.83084269,-87.82148574999999,-87.82319448,-87.83096454,-87.83414783000001,-87.84014907,-87.85121746,-87.83535304,-87.86636910999999,-87.85572184999999,-87.8355334,-87.84009603,-87.85386076,-87.88027776,-87.88025220999999,-87.84151521,-87.85575174,-87.82229765,-87.85299712,-87.8314316,-87.82670571,-87.84150561,-87.84535274,-87.85462984999999,-87.84659302,-87.82309348,-87.88798328999999,-87.84445092999999,-87.84325321,-87.82148284,-87.87453157,-87.83944495999999,-87.83556403,-87.82344399999999,-87.84566972,-87.83545529,-87.82161128,-87.95492957,-89.65242284,-89.65125961,-88.48726692,null,-87.91953252,-89.51340915999999,-89.52189223000001,-89.52740424,-89.54756513,-89.54249535,-87.95499802,-88.13908386,-88.17028375,-89.25358075,-88.99259180999999,-91.08318074,-89.80789948,-89.80059525,-92.61827065999999,-92.64488491,-92.09192831999999,-92.10426912,-92.09943131,-92.0528324,-92.09868623,-92.10392912,-92.1070417,-92.10536014,-92.09797541,-92.10416105,-92.09186176,-92.09785538,-92.10412608,-88.52577813000001,-88.25145787,-88.24652251000001,-87.56298427999999,-87.55315623,-87.56991735,-87.56200416999999,-87.58524074,-87.56835368,-87.57148053,-88.68534474000001,-88.75655241,-88.49448654,-88.50568583,-88.4997779,-88.50065250999999,-88.47409948000001,-88.49583504,-88.49047263,-88.46729458,-88.49024286,-90.19810586,-90.17063856999999,-90.17131207,null,null,-90.17868295,-90.17370387,-90.15668798,-90.17196752,-90.15543623000001,null,-90.1541866,-90.16011736999999,-88.25362715,-87.98996758,-89.2888128,-89.28741861,-89.28208162999999,-88.00925878,-88.0083265,-87.95839838000001,-87.97950224,-87.98860510999999,-88.00815863,-88.00211611,-88.00815626000001,-88.05789763,-88.00779095999999,-87.96630154,-87.94883302,-88.00813371,-87.94866506,-88.04059701,-87.97854245000001,-87.98839270000001,-88.01317532,-88.00824517,-88.0279541,-88.02735341,-88.04776925,-87.97842848000001,-87.87331813999999,-87.93146706,-87.92074977,-87.85315801,-87.91402131,-87.82291864,-87.93912048,-87.82661659,-88.12992380999999,-88.25413382000001,-88.24141976,-88.22030324000001,-88.15440267,-87.91661385,-87.91665823,-87.91613468,-87.91668952000001,-87.93295707999999,-87.93239022,null,-87.92642137999999,-87.91571733000001,-87.91383832,-87.93510815,-92.53759633,null,-87.88361527000001,-87.86116850000001,-87.9473114,-87.88194258999999,-87.92077319000001,-87.92088015,-87.94658514,-87.91488648000001,-87.94933146,-87.91765778,-87.94849395999999,-87.91341878999999,-87.83970208,-88.04989449999999,-88.04837356,-88.03451502,-88.04675275,-88.9535271,-88.95091417,-88.94927422000001,-88.10238167,-88.06918877,-90.59731158,-90.59700548000001,-89.68290892,-89.68501723,-89.68173164,-89.66717927000001,-88.62460494,-87.88747171,-87.88744522,-87.885412,-87.8891522,-87.88743221999999,-87.88035843,-87.89245766000001,-89.7253104,-89.77116118000001,-89.74029659,-89.74594347,-89.74077369,null,-89.71474842000001,-87.86071010000001,-87.8756032,-87.85341304000001,-87.87157553,-87.86575177,-87.86282715999999,-87.86557472,-87.85949404,-87.96571548999999,-87.97015493000001,-87.96756417,-87.96286857,-87.97018002,-87.97488896,-87.98053640000001,-87.80444174,-87.86296446999999,-87.79849446999999,-87.84182109,-87.84824209999999,-87.84622452000001,-87.84719398999999,-87.86451796,-87.83612375,-87.85799408,-87.85592182000001,-87.84959712,-87.84591905000001,-87.86667217,-90.19049398999999,-90.07356115,-90.02399047999999,-90.0696094,-90.07569502,-90.06723632000001,-90.07486416,-88.73964433,-88.73335164,-91.49869894,-91.39325636,-91.38877401000001,-91.38320861,-91.41295466,-91.3964539,-89.57072703,-89.48547360000001,-89.49400677,-88.22020075,-87.86551114,-87.84389542,-90.01859398000001,-89.98744417,-90.00813891,-89.98645916,-89.80668480999999,-92.79699734,-89.79368903,-89.79255474999999,-89.79717429,-89.78880497,-89.78181624,-89.7935354,-89.77986821,-89.79769714,-89.79368291,-89.79036985,-89.52357437000001,-90.92671959,-88.08901919,-88.1120193,-88.10298799,-88.40419009999999,-88.35375891,-88.4148737,-88.33984825,-87.86929526,-87.88370122000001,-87.85962436,-87.87462877999999,-90.59331044,-90.65444746999999,-90.71074677,-89.56915143000001,-89.60961207,-89.61296360999999,-89.59098161999999,-89.61328654,-89.55984291,-89.60972248,-89.57306469,-89.60469591,null,-92.49561454000001,-92.68212828999999,-92.66728881,-89.23779564,-89.25064786999999,-89.22022432999999,-89.21248369,-89.23335131,-89.2405988,-87.85018744,-87.86998404000001,-87.85011274999999,null,null,-87.86999512,-87.86008583,-87.86998088,-87.85495438,-87.85521434,-87.87020782,null,-87.8600541,-88.08671114000001,-88.12293141000001,-88.10049449,-88.14254166000001,-89.53347685,-89.53371396,-89.46176993,-89.46177157,-89.46167143,-89.46176993,-90.38415324,-90.38662166,-90.38788362,-90.39411314,-89.88587454,-87.83112724999999,-87.78682915,-87.81051689,-87.80676239,-87.82242583999999,-87.79445278,-87.79363284999999,-87.78704066,-87.79480739,-87.79272192000001,-87.83704328,-87.87028496000001,null,-87.80693420999999,-87.81968672000001,-87.7992515,-87.805035,-87.78386637,-87.81613024000001,-87.82478407000001,-87.78243073,-87.84181426000001,-87.83483406000001,-87.806697,-87.80579303,-87.79617727,-87.79490851,-87.78274201000001,-87.79984483,-87.79939489,-87.8009887,-87.79551895,-87.80421882,-87.78497108000001,-87.84925422000001,-87.84134093999999,-87.81156113,-87.78815614,-87.78258182,-87.7966089,-87.85240729,-87.8054702,-87.80463875,-87.80017313,-87.79830387,-87.84071763,-87.79956357,-87.82640839,-87.78477493,-87.79331872,-87.78276226,-87.80163921,-87.7927397,null,-87.894831,null,null,-87.89476546,-89.03105003,-89.01878278,-89.05615629,-88.97978098,-89.01349359,-88.97379572,-89.02467624000001,-88.98982092999999,-89.05191657,-89.02349878,-89.00661956,-89.04302979000001,-89.05165553000001,-88.97796477,-89.02551524,-89.06335847,-89.03105259,-88.99121857,-88.99109266000001,-89.03980263,-88.97368241,-89.01892109000001,-88.99091601000001,-89.03089654999999,-88.96872485,-89.00289773999999,-88.4353412,-88.43522335999999,-88.43516615,-88.4305061,-88.41446684,-89.88488045,-89.78829072000001,-88.22955659,-88.22368141,-88.23010032000001,-89.32742639,-90.57130569,-88.98858896,-88.98597024999999,-89.01091374000001,-89.04175823,-88.98243484,-89.01076762,-88.98970452,-89.01524503,-89.05150182,-89.01577939000001,-89.06137389,-89.02549466000001,-88.98547072,-89.37385301,-89.37531702,-88.32533253,-89.7311989,-89.73039154999999,-89.41214083,-89.55311709999999,-89.54811290000001,-89.0111088,-89.01925489,-88.5889088,-88.14828119000001,-88.15224069,-88.12442107,-88.13158817999999,-88.11997418999999,-88.08885262,-88.15777540000001,-87.98149284,-88.26543271,-88.29347405,-88.2748689,-91.89386704,-88.40299383,-88.46526231999999,-88.51182350000001,-88.47238016999999,-88.43455040000001,-89.33946261,-88.72457695,-88.7276143,-88.70898334,-88.72156055000001,-88.72736319000001,-88.72944817,-88.71860647,-88.72390470000001,-88.73336904999999,-88.62761655,-87.8828237,-87.88285995,-88.36985847,-88.40681718,-92.54960518999999,-88.56429803,-91.14524307000001,-88.18433611,-88.17984899,-88.14583299,-88.22580029,-88.18185321999999,-88.17989572,-88.1971827,-88.18561662,-88.18990992000001,-88.16238430999999,-88.17758356,-88.17090424,-88.1613459,-88.18744019,-88.18650692,-88.18126123,-88.2058485,-88.15664549,-88.18385637,-88.18663650000001,-88.75007074,-88.73243230999999,-88.74138182999999,-88.75649889,-88.73112574,-88.73348934000001,-88.74939147000001,-87.99924554,-87.99610103000001,-87.99555786000001,-88.00847123,-87.98578812,-87.99241142,-87.74868124,-87.73135116,-87.74082797,-87.75241699,-87.72200214999999,-87.72128402,-87.71462448,-87.70960125000001,-87.71297047,-87.71627234,-87.72294257,-87.75300244,-87.70428291,-87.71627027,-87.7352552,-87.9431079,-87.76660816,-87.75470355,-87.74006992,-89.15008029000001,-89.15768730000001,-89.15257554,-89.17768551,-89.15759392,-88.83159886999999,-88.85194611999999,-88.81094161999999,-88.83819803,-88.83661261,-88.83740478999999,-88.83676532,-88.07344035,-88.15100777000001,-88.12617959000001,-88.12194101,-88.09945611000001,-88.83693537000001,-88.84132207,-88.80734407999999,-88.8072944,-88.80747503000001,-88.80729110999999,-88.91344114,-90.34486171,-90.33045825000001,-90.33120697,-90.34424989,-90.3348859,-90.18780517,-87.98117578999999,-87.94476317,-87.96358197000001,-87.86930477999999,-89.44341202,-89.46946988000001,-89.47123022,-89.46040134,-89.46513537,null,-88.58783167,-88.22056894000001,-91.15673868,-91.14909091,-91.14367656,-89.63266566,-89.37971576,-90.38490295,-89.48752254999999,-89.88681525,-89.87408972999999,-89.66704272,-91.47021135,-88.04680451,-91.41969757,-91.42983067,-87.9701264,-87.98740574999999,-87.91836610999999,-88.02752411,-88.02863013,-87.88305844999999,-87.91597274999999,-87.89025306000001,-87.90908722,-87.92161052,-87.88544014,-87.89202121,-88.03450220000001,-87.98612341,-87.90976894000001,-87.96247696,-87.99987208,-87.93525348999999,-87.95834229,-87.94251941,-87.95766913999999,-87.95755776,-87.92891269,-87.91097198,-87.98768266,-87.95913168,-87.95913143,-87.95724189000001,-87.96757024,-87.93634222,-87.89628263,-87.94069359,-87.90526391,-87.91405722,-87.92883289,-87.92847141999999,-87.90038821,-87.92360871,-87.94776924999999,-87.93388401999999,-87.93441745,-87.93776407,-87.9823816,-87.95111679,-87.99297309000001,-87.95749108,-87.91416699,-87.91852227,-87.91895658999999,-87.91960871000001,-87.89596400000001,-87.92870784,-87.92922603,-88.00733458000001,-87.89941082999999,-87.90969755,-87.9329948,-87.93312469,-88.02120329,-87.95320018,-87.94034751,-87.95642854,-87.99091761,-87.96714876999999,-87.95751211,-87.94711280999999,-87.94750809,-87.96746182,-88.02868999,-88.04155998,-87.9378081,-87.94759369000001,-88.00992822000001,-87.99704973999999,-87.92515048,-87.98538135,-87.92635851999999,-87.95808307999999,-87.90482660000001,-88.0071678,-87.95769002,-87.9333412,-87.94779667,-87.94510558,-87.93540192,-87.90536582999999,-87.93213677999999,-87.95065955,-87.89959921000001,-87.92551859,-87.94772497,-87.92888526999999,-87.93305449,-87.95206133000001,-87.91988416,-87.90526106999999,-87.87961255,-87.98819837000001,-87.96977545999999,-87.94717729,-87.92706343,-87.91414312000001,-87.93901648000001,-87.94106115,-87.89773721,-87.90394904999999,-87.90221588,-87.99592205,-87.90678002999999,-87.9120636,-87.97329035,-88.02604137,-87.96353679000001,-87.95521458,-88.01740153999999,-88.03519493,-87.96933118,-87.91549347999999,-87.97736512,-87.91893783,-87.94103615,-87.91960881999999,-87.95741701,-87.94798299,-87.88796781000001,-87.90737197,-87.93959522999999,-87.88699907,-87.90920258,-87.88644888,-87.96709686,-87.93298837,-87.95277405,-87.95649103,-87.89543092,-87.97766903999999,-87.98099057,-87.91896582,-87.92860604000001,-87.94639878,-87.94790303000001,-87.92854375,-87.98458697,-87.9477918,-87.91757452,-87.90648768,-87.93612301,-88.02750759,-87.91421597,-87.91534882000001,-87.93073953,-87.89779473,-87.89895867,-87.9470006,-88.00621624999999,-87.97319014999999,-88.00311241,-87.96502948,-88.00067351,-87.96227675,-87.92052004999999,-87.94639878,-87.93321594,-87.93298799999999,-87.92362193,-87.92551859,-87.92824889000001,-87.917613,-87.94874676000001,-87.94337535,-87.92728781,-87.95764914,-87.94771326,-87.94300755,-87.92715036,-87.94167587,-87.90958598,-87.91233759000001,-87.88539744000001,-87.91104192,-87.88368638999999,-87.92028092,-87.99226279,-87.96222656,-87.96441906,-87.99155528,-87.9910438,-88.02881646,-88.03132628,-87.96616589,-87.93809908999999,-88.00707906,-87.9664622,-87.97815361000001,-88.00720355999999,-87.99492201,-87.97591179,-87.95312019000001,-87.94728967,-87.90592928,-87.91853711,-87.91261274,-87.92927883,-87.93305449,-87.93503904000001,-87.8994538,-87.94834256,-87.95445599999999,-87.96757457,-87.95528951999999,-87.93740584,-87.92930669,-87.9282089,-87.88788832,-87.90841372,-87.92475889000001,-87.94735108,-87.90491874,-87.94821017,-87.94896094000001,-87.93949356,-87.94829832000001,-87.92577754,-87.95807404999999,-87.94860718,-88.00780483,-87.89071645,-87.9686332,-87.94861972,-87.8993454,-87.89786724,-87.92501012,-87.94362494000001,-87.92675543999999,-87.93655146,-87.93460082999999,-87.93483105,-87.91957236,-87.91946478,-87.87807890000001,-87.90429732,-87.88788832,-87.9066524,-87.91558391,-87.93455238,-87.92824702999999,-87.91562155,-88.02390681999999,-87.87941186,-87.93305449,-87.914396,-88.01455541999999,-87.9337738,-88.03089782000001,-87.93299732,-87.92950257,-87.95188267,-87.92852855,-87.94049067,-87.94779643,-87.94750809,-87.97751663,-87.96104855999999,-87.96748223,-88.01494785,-87.95754242,-87.95785341,-88.02462088999999,-88.01460546,-87.92272912999999,-87.90526048,-88.0142369,-87.90207268,-87.88676661,-87.90347336000001,-87.90438700999999,-87.90975578,-87.89026311000001,-87.88841738000001,-87.94931654,-87.91198426,-87.94785932000001,-87.91873848,-87.91881505000001,-87.94772081000001,-87.94082792,-87.94750843999999,-87.91429137999999,-88.03879252999999,-87.92689537,-87.94280059,-87.90526106999999,-87.92961308,-87.94780061,-87.90156213,-87.90733152,-87.89775109999999,-87.92884619,-87.95769002,-87.94837686,-87.94363896999999,-87.95148516,-87.92835294,-87.90353469,-87.93705774,-87.92922903,-87.93648889000001,-87.95099093,-87.98835796,-88.00255525999999,-88.00984215,-87.94640845000001,-87.92607078,-87.92620101,-87.9437149,-87.94458505,-87.92387703999999,-87.91125259,-87.9478814,-87.91980712,-87.92362764000001,-87.93298837,-88.01859154,-87.93292586,-87.94007053,-87.91832461,-87.8932016,-87.924108,-87.9285311,-87.97485382000001,-87.9140439,-87.96153073000001,-87.94717729,-87.93968499,-87.94003960000001,-87.90583764,-87.93720349,-87.89503304,-87.93300628999999,-87.94840142,-87.92889965000001,-88.04134668,-87.96782915,-87.9474125,-88.04197071,-88.01584105000001,-88.02756701,-87.96766728999999,-87.93682956000001,-87.91258261,-87.91878495,-87.94052969000001,-87.94209468,-87.95402505,-87.93997922,-87.92838221,-87.95813616,-87.94769863,-87.9586953,-87.93814734999999,-87.95769002,-87.93946674,-87.93312709,-87.94789962,-87.92682395,-87.918865,-87.91262810000001,-87.91826828000001,-87.91249433,-87.9202686,-87.91405722,-87.91649715,-87.91451655,-87.88783273999999,-87.88327046000001,-87.92009999,-87.95738295,-88.00043127000001,-87.97396729,-87.98131368,-87.98742985,-87.93173297,-87.96211006,-87.94779822,-87.95294115999999,-87.93509287000001,-87.94808487,-88.02434431,-87.93486955,-88.01431273999999,-88.01740398,-87.94546844,-87.95041682999999,-87.91899191,-87.92149268,-87.94259878,-87.94727138,-87.98679668,-87.93649413,-87.96746613000001,-87.94775126,-87.98179690000001,-87.93774969,-87.95437737,-87.99380621,-87.95642879,-87.94839742000001,-87.94842656,-87.90948899999999,-87.88436282000001,-87.93698190000001,-87.95646644,-87.95288966,-88.00388479999999,-87.88936108999999,-87.93900234,-87.88969639,-87.90258371,-88.00702001000001,-87.94668110000001,-87.93978187,-87.9448835,-87.94761558,-87.94354594000001,-87.98353557999999,-87.95579825,-87.92118743,-87.91909351,-87.95708594,-87.88799529000001,-87.88786078,-87.88549154,-87.88304098,-87.91857109,-87.95459418,-87.9440322,-87.88566529000001,-87.99692944,-87.94668746000001,-87.88670159999999,-87.97776665000001,-88.00797255000001,-87.94678403,-87.90524176,-87.90599123,-87.88539727,-87.91841853,-87.94701723999999,-87.94779789,-87.94792359,-87.94779104,-87.90923073,-87.90466249000001,-87.99985481,-87.90424433,-87.90592052,-87.91884159,-87.95100262,-87.95752113,-87.94700514,-88.44593104,-89.06089061,-91.12936834,-89.1590779,-90.90648459000001,-87.82867242,-87.72282251,-88.47001086,-87.93604246,-87.79674305,-88.58204249000001,-91.21815825,-91.23213272,-87.94287991,-87.93295465999999,-87.93425368,-87.93416935,-87.93416993,-87.93416935,-87.92534263,-87.95633363,-87.96087980999999,-87.94690903999999,-87.93891515999999,-87.93895694,-87.92112097,-87.94278633,-87.96222641,-87.9143407,-87.95689209,-87.91264742,-87.9182349,-87.90685852999999,-87.91909351,-87.90439256000001,-87.92399596999999,-87.95798726,-87.92883241,-87.92877119000001,-87.94759458999999,-87.91478519,-87.95763416,-87.99103679,-87.96649125,-87.98616045999999,-87.96246474,-88.00710921,-87.96453225,-87.96291956,-88.00710921,-87.91124741,-87.92025115,-87.88807213,-87.97398516,-87.97635078,-88.01461801000001,-88.00673438,-87.94525303,-88.04091514,-87.99103679,-88.00556525,-87.97376717,-87.99076857,-87.952861,-87.94900649,-87.94849151,-87.98615873,-87.99039979,-88.01177462,-87.96392794,-87.97111158,-87.99352965999999,-87.96876937,-87.91729442,-87.89779473,-87.94663758999999,-87.9185104,-87.94699982,-87.90428687000001,-87.89811926,-87.97242565000001,-87.9472961,-87.94698631999999,-87.97727190000001,-87.91405722,-87.93743353000001,-87.93967918,-87.93554020000001,-87.94693393999999,-87.93701885,-87.96749303999999,-88.00089558000001,-87.99680778,-88.00646003,-87.90152212,-87.89509888000001,-87.94779382999999,-87.96110364,-87.94862928000001,-87.93211565999999,-87.96005595,-87.92224342999999,-87.95771444,-87.93361355,-87.95749108,-87.97371511999999,-87.89971145,-87.94779822,-87.98775529,-87.8933045,-87.94858019,-87.94829618,-87.91895769,-87.95276746,-87.91410399999999,-87.905261,-87.93782552,-87.94992565,-87.9372127,-87.97245378,-87.93995925,-87.93073604,-87.93722747,-87.94347721,-87.90550725999999,-87.95135575,-87.91860199,-88.02631011,-87.88714186,-87.90333651,-88.0442426,-87.96708052,-87.95766578,-87.93096595999999,-87.93096595999999,-87.9419477,-87.94225342,-92.62375285,-92.62451625,-89.35337629,-89.36627548,-89.39506136,-89.39573085000001,-89.3859382,-89.40081696999999,-89.40409565,-89.40080777,-89.32235706,-89.38104928,-89.36603846,-89.36350770999999,-89.42876452,-89.37990091,-89.38114906,-89.36697536,-89.37242177,-89.39749727,-89.38425558,-89.3625169,-89.38254571,-89.35728999,-89.38938234,-89.26386246,-89.34505668,-89.49484551,-89.43792882,-89.45062197999999,-89.45872494,-89.39348553000001,-89.40071528,-89.40954555,-89.50515513000001,-89.49692172,-89.31927641,-89.35659106999999,-89.451173,-89.30375884,-89.38832155999999,null,-89.27979817000001,-89.39437148,-89.37340829,-89.38569704,-89.48934807000001,-89.45124305,-89.42412419,-89.53703858999999,-89.51306266,-89.34869608,-89.34940640000001,-89.3941246,-89.39801894,-89.37283686000001,-89.35941916,-89.35891559,-89.4010765,-89.34953528,-89.31013796000001,-89.31663528,-89.45118567,-89.40404809,-89.52752207,-89.30694631,-89.32569770000001,-89.30141999999999,-89.40900499999999,-89.51865906,-89.31177424000001,-89.31686658,-89.3238758,-89.45448646,-89.36351202,-89.29836976,-89.31289291,-89.36428046,-89.40060822,-89.33870592,-89.35219698,-89.39826118000001,-89.39582713999999,-89.36380382,-89.39064513,-89.3848637,-89.3852705,-89.37559203000001,-89.42036132,-89.30850898,-89.41672106,-89.39172006,-89.38577371,-89.39736859999999,-89.40247608,-89.52499653,-89.45821272000001,-89.40028785,-89.3840677,-89.6008829,-89.55545694,-89.47125068,-89.60010539,-89.36201484,-89.32346262,-89.33311199000001,-89.33169904,-89.05823139,-89.60095775000001,-89.10553545,-89.50573060000001,-89.79167932999999,-89.1446375,-89.24624159,-89.1497103,-89.26388971999999,-89.24163950000001,-89.24664443,-89.24207632,-89.23198379999999,-89.24091433,-89.20264098,-89.20621704,-89.19858916,-89.25412905,-88.02542796,-87.96768157,-87.95568419,-87.99717904000001,-88.01352346,-87.98895655,-88.02683709,-88.08107551000001,-88.09568222,-88.02346924,-88.03503752,-88.021778,-87.97686602,-88.05795214,-88.06405964,-87.99262247999999,-88.02181907000001,-87.9779698,-87.99266787000001,-87.98413918999999,-88.02254293,-88.00914219000001,-88.01556393,-88.02376159000001,-87.95818869,-88.07398051,-87.98154501,-88.0091925,-87.99221926,-88.10944718,-88.09934199,-88.06151723000001,-87.96317116,-88.00043225,-87.98064533,-88.09351104,-87.93246832,-88.01291212,-88.06301512,-88.06251579000001,-87.98316722,-88.02221922,-91.10204994999999,-87.92727472999999,-87.90706602,-87.89947438,-87.98567849,-87.9994449,-87.91049345,-87.92088519000001,-87.92722365,-87.96697374999999,-87.93226068,-87.95264048999999,-87.94741747,-87.94595262,-87.97626799,-87.93532913999999,-87.96422701,-87.95767351000001,-87.95868015000001,-87.94191644,-87.98612391,-87.91608961999999,-87.91806871999999,-87.92921086,-87.96640552,-88.00431777999999,-88.02587788,-88.46691269999999,-88.46203783999999,-88.45482847,-88.45964864,-88.48494298,-88.44807505,-88.43924419,-88.45441859,-88.44684117,-88.44017932,-88.44514899000001,-88.44701177,-88.4501204,-88.46208986000001,-88.45600505,-88.37303467,-88.44469399,-88.47346718,-88.44453541,-88.44453028,-88.45038556,-88.44931258,-88.43944408,-88.47711836000001,-88.42181978000001,-88.44803523,-88.44695437999999,-88.42713125,-88.18359662,-88.30380526,-88.40426105,-91.24199179,-91.24845206000001,-91.24681733,-91.2464495,-91.24618289999999,-91.23950932,-91.2502913,-91.23967143,null,-91.24674055,-91.23950065,-91.23186552999999,-91.24735626,-91.24050205,-91.2115737,-91.23902750000001,-91.24594428,-91.23974613,-91.24828875,-91.24893563000001,-91.21954332999999,-91.21930448000001,-91.2391071,-91.24482609,-91.24816244,-91.23163572,-91.24814504,-91.21994817,-91.21408572999999,-91.23683307,-91.21063033999999,-91.2495115,null,-87.82199788,-87.81691246,null,null,-87.95099544,null,-88.02356348000001,-88.02135167,-88.03652085,-88.08459223,-88.07772308,-87.98907616,-87.94004338000001,-87.95352466,-87.99601833,-88.10223757999999,-88.07732541999999,null,-88.0535883,-88.07062911,-87.84243235,-87.90109781,-88.09017204,-88.10471137,-88.08268466,-88.05363268000001,-88.0801409,-88.13846832999999,-88.09807768,null,null,-88.05371839,-88.05566413,-88.02514862,-88.07948131000001,null,-88.08100888,-88.07867536000001,-88.07505996,-90.83481738,-91.48469141,-91.48465431,-90.71069086,-88.5858729,null,-91.14449492999999,-91.12985367,-90.82069824,-90.81339439,-88.48425569,-90.88936386,-90.88894285000001,-88.5398524,-89.48685023,-89.48853217,-89.52552494,-89.49190695999999,-89.51157307,-89.51126489000001,-89.48088125,-89.44736102,-89.45969391,-89.45954393,-89.47489858,-89.41059444,-89.47210693,-89.4147469,-89.38312874,-89.39492607,-89.45804347000001,-88.03665474,-88.04092546,-88.03784773,-87.88996366000001,-87.89280583999999,-88.05509136000001,-87.87710297,-87.91899262,-88.062984,-87.96957575,-87.8506189,-87.96112809,-88.054034,-88.03466867,-87.95094546999999,-87.96845523,-87.9804556,-87.95078431,-87.95013317999999,-87.97998837,-88.00141048,-88.00879422,-87.99093478,-88.0149277,-88.10528429,-88.08396467999999,-88.13086328999999,-88.13719118,-88.11728288,-88.12425036,-88.10768028,-89.32394017,-89.35418666,-89.3344429,-89.34916267,-89.34742169,-89.34506772,-89.35472319,-89.32546619999999,-88.04755471,-88.05748199,-88.00183542000001,-88.00077048,-88.04696850000001,-88.00403587,-87.99856045,-88.00925709000001,-88.03209993,-87.99747178,-88.0587172,-88.05726423,-87.99738875,-88.00843727,-88.04797001999999,-88.04782744000001,-88.04802158,-88.04846707,-88.00733131,-87.98975684,-88.04817091,-88.00844428000001,-87.99750815,-87.98703768,-88.02729492,-87.99623925,-88.00249586,-88.04686599999999,-87.99789354000001,-88.00503107999999,-87.98628427,-88.04547861,-88.04680707999999,-88.04446943000001,-88.02004988,-88.02587839,-87.99656581000001,-87.98733352000001,-88.04759190999999,-87.99048817000001,-88.0409133,-88.01011521,-87.98736802000001,-88.00682706000001,-88.01122003,-88.00744052,-87.98424934000001,-88.02652193,-87.98811434,-87.9990012,-87.98293844,-88.00149398000001,-88.02829047,-88.02690199,-87.98746328999999,-88.04147347,-88.00872226,-88.04724533,-88.00244607,-88.04723799,-88.02635906,-88.01701705000001,-88.04532672000001,-88.00723637,-88.02738008,-88.04609742,-87.98737138,-91.44764227,null,-89.65045917,-89.63504641999999,-89.55001073,-89.56430319,-88.54355105,-88.52948532000001,-88.54353791,-88.54239629999999,-88.54062354,-88.49491187,-88.46491732,-88.45569675,-88.47340773000001,-88.49150806999999,-88.46810471000001,-88.46353967,-88.49510825999999,-88.48473905,-88.45808882999999,-88.45559934000001,-88.49043635,-88.468022,-88.44308445,-88.44299742,-88.41180863,-88.44194195999999,-88.43719403999999,-88.42370842,-88.44608133,-88.42677191999999,-88.42626713,-88.45323962000001,-88.1671391,-88.185267,-88.50727080999999,-88.60452288,-88.76933923,-88.57654974,-88.73770447,-88.60288862,-88.64842478,-88.62188098,-88.41550918999999,-88.39940391,-88.36118,-88.41558524,-88.41061664,-88.41735334000001,-88.37612578,-88.42579487,-88.41059876,-88.41856481000001,-88.35696228,-88.37497113000001,-88.41554463999999,-88.37260617,null,-88.41147467,-88.36821955000001,-88.43340127,-88.41574362,-88.40411081000001,-88.3982539,-88.38783382,-88.39691799000001,-88.35847416,-88.41910109,-88.36432005,-88.40412961,-88.29784601,-88.27775421,-88.22130004,-91.50976606,-91.50937623999999,-91.50493021,-91.45973128,-91.47081088,-91.45849552,-91.4478843,-91.46490482,-91.46000721999999,-91.50710578,-91.54671810000001,-91.46335079000001,-91.46234933,-91.42847457000001,-91.53866789,-91.47205391999999,-91.54409228,-91.51715603,-91.51129723,-91.46397146,-91.44976121000001,-91.46503108,-91.50913679999999,-91.53011669999999,-91.47189304,-91.49983628,-91.49420559000001,-91.46635706000001,-91.50566949,-91.58994334,-91.46819747000001,-91.34543434,-91.64271359999999,-89.88959392,-89.60812447000001,-89.62160655,-88.01744488999999,-89.70387963,-89.68520268,-88.60892964,-88.60990293,-88.58173707,-88.60434171,-88.60896663,-88.60932345000001,-87.63529493999999,-87.63200128,-87.64997015,-87.66165701,-87.65692718,-87.6219224,-87.63597531000001,-87.62792068,-87.65779725,-87.52571399999999,-87.50589404,-89.08614503,-89.08674499,-89.81722937000001,-89.83578319999999,-89.81744248,-89.84461652,-89.83798676000001,-89.81207614,-89.81519503,-89.79688323000001,-89.81706176,-89.77522068,-89.76630276,-89.77078573,-89.78366352,-89.77545101,-87.9155057,-87.92415361,-87.97345672,-87.92672257,-88.02352870999999,-87.66691382,-87.65773677,-87.67228978,-87.68012254999999,-87.64045254,-87.67132537000001,-87.69996945,-87.68369801,-87.63816887,-87.66895473,-87.66059559,-87.69853206000001,-87.65850450000001,-87.68896405,-87.65495348,-88.25458147000001,-88.22926561,-88.24064524000001,-88.23763513999999,-88.24112230999999,-88.19117579,-88.27271519999999,-88.27362349000001,-88.27406818,-88.23669945,-88.25716500999999,-88.23439367,-88.26696707000001,-88.24326155,-88.2228022,-88.22354749,-88.38495012999999,-88.19468474999999,-88.26691968999999,-88.22562529,-88.3508063,-88.22782706,-88.34824609,-88.34052579999999,-88.38516724999999,-88.44028246000001,-88.29291529,-88.15719743,-88.26239424000001,-88.23483705,-88.29295937000001,-88.24369557999999,-88.24047032,-88.22004169,-88.34806044,-88.34526438,-88.34793254,-88.34029323999999,-88.34533711,-87.82393872999999,-87.5184069,-87.64436194,-88.4185933,-88.44593146,-88.40436173000001,-88.46087538,null,-91.17674663,-91.20915454,-91.23001625000001,-91.22041016999999,-91.23341596,-88.32414189000001,-88.31342778,-91.56370769999999,-92.03089571,-91.70417989000001,-91.69019374,-92.12869773,-91.99250902999999,-92.67926667,-92.72109205,-92.38537166,null,-92.75700272,-92.73153679000001,-92.7196785,-92.69671368,-92.73108657,-92.75706409999999,-90.74806927,-90.57389646,-90.37806842000001,-91.73533697000001,-91.73339000999999,-91.73415006,-91.7339154,-91.73317781999999,-91.75710134000001,-91.73512774,-91.73336326,-92.63504079000001,-92.6222547,-91.92397239,-91.92976505999999,-91.91955068,-91.92966808,-91.92714311,-91.92386390999999,-91.89850134,-91.93100645,-91.93428389,-92.23927681000001,-89.63932011,-89.65354924,-89.65555184999999,-89.64902392,-89.65196195,null,null,-89.63089574,-89.63936762,-89.63947793,-89.63942530999999,-89.63808109,-89.62305483,-89.62837397,-89.64547958,-89.69902523,-89.29535285999999,-89.52748871,-89.21875153000001,-89.04570428,-92.38114534,-91.85376617,-91.84878522,-88.95389587,-88.8451464,-88.86486201,-89.18702918,-89.41701945,-89.43406744000001,-88.32408691000001,-88.32408778,-88.29349056,-88.33100851,-88.50900286,-88.35431303,-88.50669034000001,-90.50509759000001,-90.48587766999999,-90.51720897,-88.40395626,-88.46250374,-88.41495851000001,-88.44598876000001,-88.47821877,-88.48431397,-87.98468342,-87.97315408999999,-87.98810234,-89.37430747000001,-89.40348259,-88.26624106,-88.2614568,-88.27497097,-88.26390453,-88.27102795,null,-88.52748063,-88.57300056,-88.5524929,-88.58398450999999,-88.58510584,-88.5499489,-88.53286857000001,-88.58297903,-88.58747069,-88.54249762000001,-88.52181443000001,-88.52866333999999,-88.52748130000001,-88.57678654999999,-88.54266909,-88.54979935999999,-88.53746142,null,-88.5425413,-88.5673429,-88.56067856,-88.55498244,-88.5787528,null,-88.55243964,-88.52277934,-88.57086520999999,-89.45128192999999,-89.44369988,-89.45115138,-89.04220818,-89.11516759,-87.88290053,-87.90324773,-87.90417719,-87.90704219,-90.4960143,-90.43403959,-90.8809194,-92.36709428,-87.91744215999999,-87.91458335,-87.90642013999999,-88.76475469,-88.76188747,-88.76355226,null,-88.73642793,-88.83547711,-88.64632182,-88.63759702999999,-87.95766838,-87.95037028,-87.92753358,-87.92929728999999,-87.96878936,-89.78692906000001,-90.01355166,-90.76341232999999,-91.16588797,-91.12397387999999,-87.82529412,-87.84579183,-87.9039387,-87.87741973999999,-87.82047822,-87.81720908,-87.86277459999999,-87.84917950000001,-87.82047977000001,-87.83253512,-87.81802166999999,-87.83520022,-87.84762901000001,-87.83556149,-87.81840905999999,-87.87810604000001,-87.83644597999999,-87.95524948000001,-87.85493694,-87.82132365,-87.82527388,-87.83555597,-87.83576381,-87.94869662000001,-87.82012883,-87.84981423000001,-87.81728409999999,-87.83348568,-87.84802037999999,-87.88890825999999,-87.82115263,-87.83347860000001,-87.81928219,-87.84439989000001,-87.84047489,-87.84573374999999,-87.85418052,-87.8333933,-87.82013519,-87.83683592,-87.8556057,-87.85426851,-87.83201733999999,-87.83812097000001,-89.84496712000001,-90.26245354,-89.92705805,-89.64803334,-87.80094554999999,-88.04046165,-88.02804510999999,-87.91979277999999,-89.54586216,-89.54379633000001,-87.83604151999999,-88.05190162,-88.05188333,-87.79897688,-88.05181033,-87.79270524,-87.79954428000001,-88.03656601,-88.15897463,-88.12518488000001,-89.19307234,-88.92855474,-89.01983548,-89.03618804,-90.98815661,-89.77021655,-91.48354428,-91.22262098,-92.11477549999999,-92.08751289999999,-92.10378608000001,-92.06716652999999,-92.09640907000001,-92.09340134999999,-92.11477336,-92.09782930999999,-92.12840274,-92.12442368000001,-88.25072815999999,-88.27391006000001,-87.57152744,-87.56186838000001,-87.5682932,-87.57386988,-87.56828729999999,-87.58212059,-87.56828962,-87.5899333,-87.56835828,-88.48780139,-88.48984282000001,-88.49047682,-88.50811720999999,-91.92523335,-89.81891091999999,-90.13459738,-89.90601651999999,-90.17261825999999,-90.16124549,-90.13057548,null,-88.24250901000001,-87.98813521,-87.98741925,-87.99457288000001,-87.98599742,-89.29885763,-89.30289936,-89.30051498,-89.29685680999999,-88.00848107,-87.95510101000001,-88.05168089999999,-88.00841006,-87.99218775999999,-88.02805057,-88.00819124,-88.00664783000001,-87.9686291,-88.02783692,-88.00825826000001,-87.9745992,-87.98577324,-88.01802451,-87.9788667,-88.04767532,-88.00725846,-88.04704622,-87.84976272999999,-87.84515664,-87.82291936999999,-87.81756814000001,-87.89238302,-87.91482319000001,-87.87121757,-87.94675721999999,-88.18235070999999,-87.93198742,-87.94877006999999,-87.92635679,-87.94829292999999,-87.92786151,-92.51761196,null,-90.18627103999999,-87.85379759999999,-87.94530671,-87.93017956,-87.93834524,-87.89094206999999,-87.89666993,-88.04642751999999,-88.95380175,-88.97907646,-88.93699859,-88.74854713000001,-88.74751786,-88.10355153,-88.10604288,-88.10164274,-89.65096655000001,-89.65180927,-89.69231461,-87.87495226,-87.88595696,-87.88748777000001,-87.8942261,-87.88745474,-87.88746097000001,-87.88254075,-89.74039792000001,-89.72744606000001,-89.77121902,-89.7478249,-89.74330802,-89.72711837999999,-89.73555425000001,-89.72521766,-87.88068708,-87.86082113000001,-87.8652156,-87.98041737,-87.96535716,-87.96337751,-87.96224101,-87.96757137,-87.8395723,-87.83575811,-87.85392982,-87.90240629,-87.8591687,-87.84906769,-88.75210857,-91.65137803,-91.50080462,-91.39884961,-91.3685165,-91.34906266,-91.39173301,-91.3909446,-89.42508754000001,-88.22472415999999,-87.92703557999999,-88.11247647,-88.11351283,-87.88492981,-89.98469758,-89.98464375,-89.99825441,-89.76289534,-89.79186489999999,-89.78961391999999,-89.78019924,-89.78074812,-89.81413193,-88.0708393,-88.09789342000001,-88.11823849,-88.10648974999999,-88.08999348,-90.70963042,-89.56969615,-89.60708402,null,-89.57284482999999,-89.61677731,-89.96399160999999,null,-89.84002861,-92.43793662,-92.36713309,-89.33470156,-87.86269496,-87.85411833000001,-87.87981143,-88.13381090999999,-88.10310919,-88.09916106,-88.14450085999999,-88.10950871999999,-88.55053588,-88.6868137,-88.69858796,-88.61579063000001,-88.90583549999999,-89.52212511,-89.52821777,-89.46580509,-89.46266831,-90.3891282,-90.3853362,-87.78268599,-87.79982191000001,-87.79437442,-87.79311202,-87.82724813999999,-87.78710748,-87.81268848000001,-87.84053058000001,-87.81604249,-87.82563625,-87.79893275000001,-87.78697013999999,-87.8474171,-87.83579804,-87.83868158,-87.79759371999999,-87.78701384999999,-87.78818130000001,-87.79903664,-87.84608160000001,-87.79287171999999,-87.78988191000001,-87.81968763,-87.80648005,-87.81488002,-87.78341346000001,-87.82353476999999,-87.82253521,-87.79254174,-87.78257354,-87.79770061000001,-87.79862696000001,-87.82385284999999,-87.79977232,-87.79276512,-87.81841562,-87.80399971,-87.7924151,-87.7919397,-87.82608338999999,-87.78487521,-87.80490904,-87.81661375,-87.7844954,-87.80003719,-87.79588713,-87.81193564,-87.80341592000001,-87.79484431,-87.80014575,-87.81217965,-87.81108394,-87.79410171000001,-87.91220377,-87.89478097999999,null,-89.06440476,-88.9748791,-89.02562545000001,-89.04562172,-89.02103617,-89.04502459,-89.00680296,-89.0331626,-88.97918882,-89.01483503999999,-89.03831307,-89.03139382000001,-89.02421312,-89.03695848,-89.03373242000001,-89.05014801,-89.0358238,-88.9969919,null,-88.41328277,-88.44210542,-89.80593943,-88.22475583000001,-88.2208445,-89.05818716,-88.99463851,-89.05528995,-89.0268591,-88.98202515,-88.98731493,-89.04677021000001,-89.02316227999999,-89.06790746,-89.05151394000001,-89.03771872999999,-88.98964743000001,-89.03793543,-89.01175107,-88.99030359,-89.01180059000001,-89.02021555,-89.05643946000001,-88.9525117,-89.01908289000001,-89.38214902999999,-89.38162930999999,-89.38562915,-89.37324149,-89.37952563,-89.38281256,-88.33414543000001,-88.33639659000001,-88.31730725,-89.73839837,-89.73082741,-89.73042758,-89.32875823000001,-89.67475149000001,-89.01546654000001,-88.58911143,-88.60607047000001,-88.10802792,-88.15119346,-88.11502453999999,-88.12669304000001,-88.17442263,-88.14699649000001,-87.81008135,-87.94911561000001,-87.84325414,-87.9839729,-88.2819422,-88.26626537999999,-88.3731413,-88.168783,-88.50893368,-89.41050491,-88.72839897999999,-88.72242899,-88.72809602,-88.27565973999999,-88.64996514000001,-88.60976211000001,-88.62560682,-88.666664,-88.64991827999999,-88.61224657,-89.25604883,-88.38529689000001,-88.35419978,-88.36916836,-88.40030849999999,-88.36509658,-88.37117302,-88.3788905,-92.05087754,-91.14898466,-88.19395953999999,-88.17570682,-88.18320662000001,-88.16132655,-88.18649447999999,-88.1760482,-88.18426647,-88.18549944,-88.19654310999999,-88.20936044,-88.18097691,-88.18561803999999,-88.22553338,-88.19603949,-88.39210498,-88.74716818,-87.99914851,-87.9885833,-87.98838671,-87.99153243000001,-87.99212914,-87.72889038,-87.71293475,-87.73486484999999,-87.73716749,-87.73642461,-87.7371459,-87.71773109,-87.71780375,-87.72780036,-87.73182439999999,-87.72318061,-87.7212351,-87.71960415,-87.71505413,-87.74182487,-87.72289585,-87.71462016,-87.71298372,-87.71480560000001,-87.71959909,-87.71465774000001,-87.71981735,-87.72284514,-87.71460380000001,-87.72263704,-87.72621272000001,-87.71576996,-87.75130965,-87.82110797,-87.81959101,-88.01420014999999,-88.02115607,-87.77453405999999,-89.14834507,-89.15165989,-89.15284449000001,null,-88.83952974,-88.82954177000001,-88.83113603,-88.8216585,-88.82964269,-88.83678462,-88.14583588000001,-88.10622513,-88.12636094,-88.11562266999999,-88.15804885999999,-88.14595986,-88.154562,-88.85088397,-88.84213185,-88.83623949,-88.84335466,-88.83715699,-87.89605315,-88.80707158,-88.81738458,-87.79836389,-87.77966308000001,-87.95022281999999,-87.97323722,-87.88161239,-89.47250488,-89.46964611,-89.46883294,-89.46235692,-89.45621186,-89.45956188,-89.46265416,-89.46043555,-87.80774525,-87.81231989,-87.8159368,-89.71134716,-88.60236311,-88.62456691,-88.30840818,-88.19978291,-88.23562637000001,-92.03320315000001,-91.393084,-91.49753029,-89.22170798000001,-90.41676456,-90.33590477,-89.23997378,-89.4875054,-91.90920838,-91.42911244,-89.36368238,-88.06711232000001,-87.24880219000001,-87.22983689,-87.88796369000001,-87.97146746,-88.02588685000001,-87.88357825,-87.91106159,-87.90782577,-88.02130853,-87.96717095,-87.94246865,-87.96280095,-87.93294124000001,-87.93704643,-87.93234728,-87.95798962000001,-87.93892627,-87.94563472999999,-87.91409480999999,-87.94578693,-87.97878106,-87.93782702999999,-87.89230584000001,-87.90960412,-87.93816207,-87.94637849,-87.95405979,-87.88303174000001,-87.91841563,-87.99183724,-87.94728087999999,-87.98315676999999,-87.97920281,-87.98668241,-87.96990302,-88.01350023000001,-87.95977707,-87.95169969,-88.00585590999999,-88.0055512,-88.03210593999999,-87.93091345000001,-87.91870093999999,-87.92112106,-87.93961188,-87.91268465,-87.93683708,-87.93716139999999,-87.95724091,-87.94875445,-87.99683622000001,-88.0054461,-88.00453056000001,-87.91902607,-87.94816235,-87.93578685,-87.93392206,-87.94684327,-87.90086021,-87.90338135,-87.96318501,-87.94779822,-87.93078975,-87.93724176000001,-87.94779822,-87.91123684,-88.00620435,-87.93123180000001,-87.92825025,-87.9334224,-87.89449488,-87.94835663000001,-87.91240941,-88.00764349000001,-87.94812949,-87.91138914,-87.93634281999999,-87.95007157000001,-88.00444351,-87.95763416,-87.91823552,-87.92002060999999,-87.94779088999999,-87.94780586,-87.94838564,-87.90712121,-87.92358744000001,-87.94224778,-87.89723506999999,-87.93850242000001,-87.94604113,-87.92827080000001,-87.94497427,-87.94127182,-88.01943599000001,-87.96757026,-87.94744166,-87.92439251,-87.93292589000001,-87.92858289999999,-87.98248864,-87.94929906,-87.95770760000001,-87.93299522,-87.94816323000001,-87.95348063,-87.93092873000001,-87.93813175,-88.0070034,-87.98822208,-87.96719539999999,-87.97620707,-87.97616674,-87.93049784999999,-87.90499466,-87.92339971,-87.95268636,-87.91606942,-88.00585349000001,-88.00672511,-87.94110821,-87.94759492,-87.91834681,-87.94740863,-87.91520885,-87.93548892,-87.95760086999999,-87.94196536,-87.96498438,-87.90360147,-87.93299467,-87.92341046999999,-87.92128008,-87.91852538000001,-87.90997844,-88.02530942,-87.98943558000001,-87.9292785,-87.95585612000001,-88.00555910999999,-87.96559911999999,-88.00586026000001,-87.90156233,-87.91883871,-87.94699575999999,-87.91413722,-87.92536481,-87.91258055999999,-87.89300186,-87.88628571,-87.98418483,-87.96709298,-88.043684,-87.97602772,-87.98192998,-87.92184562,-87.93926593,-87.93753506,-87.95109316,-87.94219432,-87.94698854000001,-87.89782126999999,-88.00562864,-87.95335624000001,-87.92027783,-88.00765228,-87.94502395000001,-87.95769023,-87.93044713,-87.90657547000001,-87.90330249,-87.94735879,-87.98601689,-87.93340522,-87.92853338,-87.97641591999999,-87.94769975,-88.02615505,-87.9070589,-87.93734726,-87.91916562,-87.93725524,-87.92716111,-87.96436094000001,-87.91069734,-87.97976303,-87.97355924,-87.98794553,-87.90770707,-87.9484585,-87.92516510999999,-87.93053436,-87.92496247,-87.95105467,-87.94762074,-87.88788832,-87.8837271,-87.88766204,-87.96034057,-88.00710284,-87.96777662,-87.88289664,-87.94017569,-87.90932606,-87.91896801,-87.99061799,-87.97763466000001,-87.98712953,-87.94660491,-87.92611135999999,-87.95769017000001,-87.94770791000001,-87.92692159000001,-87.92137819,-87.92737784000001,-87.94830603,-87.88366384,-87.92555188999999,-87.92861936,-87.94499991000001,-87.93306538,-87.96806694,-88.00707075,-87.89237049,-87.95771892,-87.92720577,-87.95293454999999,-87.95695636000001,-87.98646003,-88.02582695,-88.00303626,-88.00341174,-88.0252547,-87.91439149999999,-87.9575135,-87.98266652,-87.97992837,-87.94646668999999,-87.90527911,-87.94867669999999,-87.95132683,-87.91121029999999,-87.96275943000001,-87.9674662,-87.95534656,-88.00728153999999,-87.94758308999999,-87.89979270000001,-87.95873625,-87.94833706999999,-87.93840600999999,-87.96612603,-87.91167541999999,-87.91070571,-87.90330589,-87.97344421,-87.97752606,-87.94769178,-87.97034854,-87.94769934999999,-87.98302524,-87.94766847,-87.99981701999999,-87.97161091,-88.00403527,-87.91898041,-87.90752523,-87.94699485,-87.9168257,-87.99706537,-87.96352521,-87.93847347000001,-88.01843372,-88.00484607,-88.00208977,-87.95038484,-87.91903598,-87.94086906,-87.95607913000001,-87.93808737000001,-87.91871223,-87.93484947,-87.9215533,-87.90509412999999,-87.92765765,-87.98060198,-87.96352388,-87.92607262,-87.9913164,-87.97732556,-87.9056945,-87.91385647,-88.02536135,-88.04586214,-87.92800256,-87.95740942,-87.95978927,-87.9418802,-87.92835377,-87.88428102,-87.90099779000001,-88.03296821000001,-88.0059012,-88.04037185999999,-87.91442624,-87.89151405,-88.00147434,-87.95988491999999,-87.93113959,-87.94281906000001,-87.92057091,-87.90037848,-87.93451356999999,-87.95247033,-87.92708474,-87.96007129,-87.942482,-87.94745793,-87.96088339000001,-87.98952312,-87.93852450999999,-88.01293802000001,-87.98732209000001,-87.95077639,-87.89103866000001,-87.99195333999999,-90.07389587999999,-89.04999637,-89.40275058,-87.95238562,-87.95396765,-88.41513012,-90.30260233,-92.10406191,-92.12137337999999,-91.25844533999999,-87.88142477,-87.83844916,-88.58195870999999,-88.1334098,-90.5425877,-89.45706036,-87.93048749,-89.5986784,-87.8398021,-87.91509325,-87.85022218,-88.92266075000001,-89.00435791,-88.01725428,-87.93416935,-87.93433127,-87.93405504,-87.93406404,-87.93716560999999,-87.93413328,-87.92604737000001,-87.93295062,-87.93416526999999,-87.93580668,-87.94804322,-87.9211232,-87.92994143,-87.92870139999999,-87.90729528999999,-87.97172974,-88.04017259,-88.04490164000001,-87.97387843999999,-87.91445528,-88.02859875,-87.95404271,-87.96236806,-87.96364477,-87.95725347,-87.91893388,-87.97100465,-88.0306336,-87.94574163999999,-87.89505167,-87.92467075,-87.98150859,-87.98150859,-87.94606939000001,-87.95690620000001,-87.94740633000001,-87.94743357999999,-87.94060132,-87.95770568,-87.96751913999999,-87.9785662,-87.96729753,-87.94701080999999,-87.96757177000001,-87.90760693999999,-87.92137828,-88.01070013,-87.95608587,-87.9576622,-87.9577213,-87.92252173999999,-87.93192565,-87.88691784,-87.94072054999999,-88.03216847,-87.9873046,-87.94663427,-87.96959013999999,-87.89510825000001,-87.89421283999999,-87.92879536,-87.94724581,-87.91487082,-87.92612603000001,-88.02593125999999,-87.91492574,-87.89811935,-87.90538148,-87.95746475,-87.94750217000001,-88.03780985,-87.89038136000001,-87.88771379000001,-87.91884208,-87.90411979,-87.91835448,-87.91837537000001,-89.39736521,-89.39348131,-89.38583507,-89.37638776,-89.35929897,-89.39484845,-89.38981905,-89.32493252,-89.36377131,-89.35165680999999,-89.36791854000001,-89.37524772,-89.38459862000001,-89.39253787,-89.40068352,-89.40408979,-89.37319786,-89.51130474999999,-89.51736425,-89.30007603,-89.30690307,-89.38597674,-89.30036002999999,-89.30306571,-89.32959135999999,-89.40736839,-89.40080974999999,-89.4851359,-89.29470726,-89.28611872,-89.41391016,-89.30991152,-89.49662975,-89.34153895999999,-89.36029842000001,null,-89.37527136,-89.40461246,-89.40569517,null,-89.40739744,-89.39746091000001,-89.39018067000001,-89.36986337,-89.48004922,-89.41626934999999,-89.45115837,-89.55280403,-89.2990109,-89.39444988,-89.34543712,-89.35530706,-89.5109085,-89.40074414,-89.35943759,-89.35942391,-89.37328448,-89.38069938,-89.4440144,-89.34643269999999,-89.40264057,-89.34409968999999,-89.49690747,-89.40269834,-89.36390376,-89.38688206,-89.30118432,-89.35537263000001,-89.37409914,-89.37956563,-89.36000862,-89.39902763000001,-89.36036313,-89.35104864,-89.37348338,-89.33754771,-89.35956237000001,-89.50263409,-89.50274422,-89.3155537,-89.34645455,-89.36215617000001,-89.3957316,-89.31862183,-89.35460147000001,-89.35789871,-89.37137362,-89.49892398999999,-89.41288136,-89.40072558999999,-89.40074967,-89.41290947,-89.31663859,-89.32153094,-89.31947294,-89.40406967,-89.38094390000001,-89.32737408,-89.37369434999999,-89.39255780000001,-89.39110672,-89.50932364000001,-89.3147814,-89.38197847000001,-89.40992534,-89.39314983,-89.40900409,-89.45610689,-89.45689145,-89.50271693000001,-89.37547357,-89.39375504,-89.40737708,-89.31304471,-89.33150044,-89.37096515,-89.36209611,-89.34911031999999,-89.39578518,-89.36029901000001,-89.36696704000001,-89.40063596,-89.35350034,-89.34949188,-89.50289798,-89.40092464999999,-89.3660702,-89.3847044,-89.39583242,-89.36558645,-89.42880900999999,-89.45770494999999,-89.45963721,-89.44366899000001,-89.45117555,-89.37411376999999,-89.49892500999999,-89.38227503,-89.31821938,-89.44364738,-89.36195413999999,-89.37900627,-89.37543540999999,-89.34717796,-89.38012605999999,-89.38961826000001,-89.38580483,-89.3727502,-89.32144178999999,null,-89.33925544,-89.34942547,-89.28948446,-89.31621259000001,-89.52559986,-89.40065325,-89.43523901,-89.4006593,-89.45137303,-89.43788394000001,-89.51799887,-89.58822859,-89.23158436999999,null,-89.23300944,-89.21322917000001,-89.22463507000001,-89.24823287,-89.26777928,-89.22461619000001,-89.24313155999999,-89.22497428,-88.04887626999999,-88.01990184,-87.98324160999999,-87.96989752,-87.96770513,-88.01369714,-88.01748005,-88.0430748,-87.95808716000001,-88.03775998,-87.99372547999999,-88.07020159,-87.96790147999999,-88.08480401,-87.96773795,-88.06402543,-88.00007882,-87.98793181000001,-87.96796933,-88.00029417,-88.0241886,-87.99061497,-87.99374087,-88.0165897,-88.00481468,-87.97284728,-87.99447388999999,-88.01005748,-87.94797595,-88.06227607,-88.01082864,-88.06888721,-87.99786415,-87.94847847,-88.06164253999999,-87.9660599,-88.07865341999999,-88.00275039,-88.05771638,-88.00910648,-91.10927744,-91.09930428,-87.88960118999999,-87.91883586,-87.92874624,-87.94460429,-87.91449634,-87.91101887000001,-87.97620006,-87.97322232,-87.89930975999999,-87.9183747,-87.92126722,-87.91039360000001,-87.89812156000001,-87.90729987,-87.89946707999999,-87.93558575,-87.92268558000001,-87.91182221,-87.94362058999999,-87.94566897999999,-87.96102304,-87.97833763,-87.95738856,-87.98271124,-87.93636128999999,-87.94862637999999,-87.95260619,-88.03012629,-87.97581637,-87.94643796,-88.01578691,-88.03481425,-88.04421043000001,-87.99581605,-87.98628333000001,-87.90522294,-87.93870477999999,-87.94730647,-87.90955536,-87.91414697,-87.93824351000001,-87.93420397,-87.94717738,-87.91982967,-87.93211638,-87.94738611,-87.94902749000001,-87.93930994999999,-87.91843623,-87.92922129999999,-87.89430004,-87.94875513,-87.94807905,-87.92875100000001,-87.90982574,-87.95748525,-87.99127442,-88.00136709,-87.89078954,-87.88365725,-87.97855514,-87.9745716,-88.47317685,-88.44816160000001,-88.47306082999999,-88.43894299999999,-88.44341543,-88.43178349999999,-88.45963026,-88.43361084,-88.42190975,-88.44687175,-88.44449049000001,-88.43695332999999,-88.45441709000001,-88.46685371,-88.47960986,-88.44304223,-88.44742452,-88.44693244,-88.45241101000001,-88.4651556,-88.44454198,-88.45336247,-88.44714810000001,-88.47306456,-88.44874221000001,-88.46274434999999,-88.43144384999999,-88.46202925999999,-88.43901477999999,-88.47305215999999,-88.46314655,-88.42626708,-88.44710091,-88.44860319,-88.47969358,-88.32318184,-91.16552604,-91.23978667,-91.24671023000001,-91.24093752,-91.25514576,-91.23900891,null,-91.24361211,-91.24901117,-91.2424044,-91.24829926,-91.25130483,-91.23902636,-91.23589782000001,-91.21981135,-91.23934604,-91.21975602000001,-91.21379365,-91.24816724999999,-91.22863556,-91.24672941,-91.24889037,-91.2525893,-91.24829467000001,-91.24951394999999,-91.2389498,-91.24873047,-91.25001468000001,-91.25345057,-91.24819091000001,-91.25362754,-91.24806725000001,-91.23904554000001,-91.250038,-91.24901128,-91.23941416,-91.24829393,-91.21989009000001,-91.21983828,-91.23890400000001,-91.24795795999999,-91.20458284,-91.24314725000001,-87.65965325000001,-87.99581917,-87.66497412,-88.00894921,-87.91109465,null,-88.11075812,-88.03072476,-88.04260124,-87.84572127,-88.09432943,-87.95267987,-87.83054369,-88.11948547999999,-88.05120277,-88.00966751,-88.04043466,-88.15538143000001,-88.09966858,-88.08960257,-88.08462279,-88.06714937,-88.10717345,-88.0376428,-88.09535418999999,-88.03877992,-88.02396982,-87.99558507,-88.09062063,-88.06559206,-88.06777783,-88.07359756,-88.05411749,-88.05378517,-88.07081786000001,-88.07554308,-88.06682922,null,null,-88.05922325,null,-88.06045979,-88.06040303,-88.06046146,-88.08422441,null,-90.48789934,-90.48029013999999,-90.47832491,-90.47069481,-90.49307056000001,-91.14376661999999,-88.33047649,null,-90.81940456,-90.82068547,-90.82075429,-90.80090952,-89.02676197,-89.03557854,-88.48490510000001,-90.88935162,-90.88663554999999,-88.98829562,-89.50589650000001,-89.50173483,-89.49343827,-89.50405418,-89.53481404999999,-89.52503856,-89.51215818999999,-89.47971679,-89.51463043,-89.50665852,-89.5054073,-89.50228122,-89.45885393,-89.47521011000001,-89.46735911,-89.47660654000001,-89.41266029000001,-89.46002639,-89.4681858,-89.47205211000001,-89.41833552999999,-89.4218484,-89.47065413999999,-87.91573021000001,-87.89017490000001,-88.05191978000001,-88.00954587,-88.00004625,-87.94979072,-87.98059978000001,-87.99919799,-88.0595557,-88.01165128,-87.95887788,-88.12266919,-88.12866141000001,-88.11149254,-88.11574333,-88.06482287,-88.10669077,-88.1157011,-89.35407325,-89.35423596,-89.33603838000001,-88.00740884,-88.04787195999999,-88.04748979999999,-88.04798697,-87.99925192000001,-88.03760817,-87.99747846,-88.01077256000001,-88.04740463,-88.02780892,-88.03234617,-88.04791478999999,-88.02351856,-88.04784814,-88.04730986,-87.99748577,-88.05820045,-88.0415907,-88.04754523,-88.05744405,-88.05306586,-88.04616537,-88.05987158000001,-88.02217932000001,-87.99350697,-88.04733855000001,-88.04615935,-87.99028762,-88.05213809,-88.04814890999999,-88.04991366,-88.05684703,-88.00369462,-88.01061863,-88.04699621,-88.04695586,-88.00005867,-88.04675696,-88.00892909,-88.04692648,-88.0420443,-88.00869982,-88.00861601,-88.00139281,-87.98819472,-88.05833945000001,-88.00746392000001,-87.99005040999999,-88.00386339000001,-88.06726224000001,-88.04625602,-88.00828082,-88.04137717,-88.04684736,-87.98747661,-87.98734159,-88.00721767,-88.00005037,-87.98936875,-88.02775054,-87.99787444,-88.02596205,-88.04658929999999,-88.01709123000001,-88.04277315,-89.81844961,-89.81891503999999,-89.81743362,-89.81214941,-91.44600681999999,-91.44285877999999,-91.46056926,-91.46668628,-91.44790902,-89.63984648,-89.64101382,-89.64212272,-89.72594836,-89.72651492999999,-89.58883822,-89.54933054999999,-89.57496163,-89.56444542,-89.56617476,-89.57468507999999,-88.52191376,-88.53539214,-88.5437226,-88.54118025,-89.63527021,-90.23776552,-90.30013929,-88.45536412,-88.49958418999999,-88.45324049,-88.46016595,-88.46319978,-88.46721668000001,-88.49024983,-88.49265723000001,-88.46672758,-88.46170402,-88.49403642,-88.42442164000001,-88.44313154,-88.41561627999999,-88.44613295000001,-88.44596301,-88.42354641,-88.44628562,-88.44604228999999,-88.42362317,-88.13672880999999,-88.13416915000001,-88.16750523,-88.74201716,-88.50790557000001,-88.50381264000001,-88.60290778,-88.57863328000001,-88.62286593,-88.56783057,-88.4157316,-88.37497501999999,-88.40261751,-88.42576253,-88.40378186,-88.41544361,-88.40412712,-88.35447162,null,-88.40352338,-88.4157754,-88.38000217,-88.35849804999999,-88.42991263,-88.37457066,-88.40413387,-88.36891437,-88.35438455000001,-88.41916709,-88.38014328,-88.39822184000001,-88.40075739,-88.401833,-88.39556177,-88.41741725999999,null,-88.38680384,-88.4129812,-88.7211061,-88.25722405,-88.26342950999999,-88.40456781,-88.21478571,-88.29167706,-88.10252081,-91.51454303,-91.45457868,-91.53005237000001,-91.49483275999999,-91.47292473,-91.58076647999999,-91.51281929,-91.47993646,-91.45801665,-91.46489781,-91.50357259,-91.4783372,-91.49910271,-91.51904695,-91.50901643,-91.49615472000001,-91.46973560000001,-91.46313918,-91.47926277000001,-91.50992429,-91.53235938,-91.49500119,-91.45821441,-91.49802371,-91.54031999,-91.42754175,-91.53965958000001,-89.63869712,-89.60819819,-88.60913579,-88.60389424,-88.60914622,-88.58081385,null,null,-88.24266104,-87.5979217,-87.63621284,-87.63330492,-87.62965486,-87.63143227,-87.62037737,-87.64665026999999,-89.81702425,-89.81325305999999,-89.81443016999999,-89.80570251,-89.81546144000001,-89.81213126,-89.83231879,-89.83973739,-89.82974093999999,-89.84474167,-89.77222956999999,-89.77440565000001,-89.79590211,-89.77048671,-89.77659183,-89.78443978,-88.83357585,-88.83200771999999,-87.98236919,-87.91659294999999,-87.99147805,-87.92435359,-87.99567,-87.92410589000001,-87.96313772000001,-88.01736493,-87.98736965000001,-87.70003088,-87.65878321,-87.69785297999999,-87.69725815,-87.65928637,-87.68504509,-87.67248610999999,-87.62797415999999,-87.66199458,-87.70048731,-87.68523716,-87.66086283,-87.65773697,-87.66031859,-87.67054111,-87.67707660000001,-87.66167624000001,-87.69848435,-87.67473991,-88.25229084,-88.22873961000001,-88.22902766,-88.22172418,-88.22712067000001,-88.22566908,-88.22117301999999,-88.23508479,-88.22147147,-88.19726033000001,-88.22569287,-88.22662299,-88.17795169,-88.22676034,-88.25448194000001,-88.23404097,-88.28562878,-88.23458372,-88.23179266,-88.23153981,-88.22960270999999,-88.2307162,-88.22581869,-88.23571403,-88.15791661999999,-88.23819595000001,-88.2271758,-88.2435667,-88.44337908,-88.3135097,-88.40299998,-88.38804093,-88.37064374000001,-88.24396341000001,-88.30709299,-88.28940251,null,-87.92681197,-88.41211896999999,-88.49590179,-88.46201668,-88.48540199,null,-91.23527104,-88.34507225,-88.32442995,-88.32263276,-88.31635961000001,-91.60215218,-89.12923827,-92.7161426,-92.79065699,-92.66114662,null,-92.72141139,-92.69827625000001,-92.72154535999999,null,-91.10050007,-91.73943441,-91.73345447,-91.73665698000001,-91.74824212999999,-91.73336168,-92.6127331,-92.61344634,-92.62670328999999,-92.62176954,-92.62756807,-92.62586541,-92.62378332,-92.62939724,-92.62178217,-91.92968272,null,-91.91954131,-91.93101107,-91.89870701,-91.92769769,-87.1532485,-87.12177404000001,-87.49896316,-87.36676472000001,-87.37602244,-89.63692654,-89.65594611,-89.66634823,-89.62428727,-89.62425232,-89.64036092000001,-89.62128989,-89.61914534,-89.62626880000001,null,-89.63930803,-89.61518375999999,-89.63692619,-89.63477661,-89.64045776,-89.61735251,-89.63915531000001,-89.64784571,-89.65456890999999,-89.61811829,-89.16000307,-91.26744399,-91.26201797,-91.09694625,-91.09122395,-91.2615701,-88.93235801,-88.84270873,-88.86757965,-88.58727023,-88.73824767000001,-88.95064007000001,-89.43076259,-89.41163913,-89.40267779,-89.41590524,-88.41523528,-88.345141,-88.52955267,-88.31200586999999,-88.19714103,-90.50457023,-90.50938879,null,-88.46833208,-88.41309982,-88.46173382000001,-88.46111105999999,-88.47603482,-88.44769881000001,-87.97046509,-87.96646385,-87.9675503,-87.96017163,-89.37851967,-89.40395503000001,-89.40863778000001,-89.40014524,-88.28002348,-88.27379134,-88.26719285,-88.54714933,-88.55625219,-88.56447163,-88.54276554,-88.57820558,-88.57902641,-88.57853377000001,-88.56240399000001,-88.57560791,-88.58501387,-88.57265524,-88.54241754,-88.53756224,-88.58140277,-88.55614079999999,-88.58017421,-88.59445372,-88.57140746,-88.54243931000001,-88.54255368,-88.56731474999999,-88.58176028,-88.53753897999999,-88.58181193999999,-88.54256486,-88.59174387,-88.54134587,-88.58264269999999,-88.54848393,-88.5574652,-88.53737963,-88.57204389,-88.54258894,-88.57838924000001,-88.56865471,-89.43375618,-89.44320392,-89.45318197,-89.43374686999999,-89.44367273,-88.62571333,-88.53279689,-89.16837221,-92.70421992,-92.69695855000001,null,-87.90417945,-87.89351899,-87.89979071,-87.90366324999999,-87.90711816,-87.90898663,-87.90689728,-90.53804974000001,-90.32460213,-90.40167739,-90.72010019,-87.91179149,-88.76198527,null,-89.27453997000001,-89.30137782,-88.51117074,-87.96470290000001,-87.96470091,-87.95197795999999,-87.95272993,-87.95043634,-87.94661975,-89.76659497,-91.47283987,-90.22337199,-90.33394970000001,-87.84191353999999,-87.92658111999999,-87.85889973,-87.83558284999999,-87.84197815,-87.82827266,-87.81887838,-87.84759754,-87.84562441999999,-87.89499076,-87.85429558,-87.84150814,-87.84439879,-87.88028168,-87.82773607999999,-87.85019581,-87.84014688000001,-87.81827139000001,-87.89303397,-87.83075873,-87.83203304,-87.9635814,-87.8459003,-87.83217671,-87.8356117,-87.82309831000001,-87.83534575,-87.83678997,-87.83564957,-87.87355744,-87.83336816000001,-87.85512684,-87.88659819,-87.8238133,-87.83355705,-87.82159926,-87.84552017999999,-87.84550018,-87.82309004,-87.82298634,-87.82134859,-87.83565858999999,-87.82795673,-87.85880074000001,-87.82271454000001,-87.82778546999999,-87.82700444,-87.85759811,-87.95002981,-87.83079178,-89.68446686999999,-89.65198477,-89.61596387,-89.65245754,-89.63939433,-88.48360101,-87.9005872,-89.54531883,-89.53839168,-87.96576739,-88.05701182999999,-87.95681082,-87.97263131,-88.00161077999999,-89.155415,-89.01743885,-89.21184508,-89.02787497,-91.27310962999999,-91.01372065,-89.79709244,-90.03906919000001,-90.18794603000001,-91.0798411,-91.19553123,-91.36496377,-92.10379594,-92.10413334,-92.09532194000001,-92.10554028,-92.08761991,-92.11579175,-92.06469343000001,-92.09409078,-92.10728833,-92.09782909,-90.80031697,-88.24858227999999,-87.55418641,-87.56987506,-87.55292104,-87.57969172999999,-87.56662876,-87.55995492,-88.59708562,-88.47254386,-88.49452737999999,-88.47065662999999,-88.47093283,-88.47481718,-88.48295446,-88.49802015,-88.48535102,-91.90505443000001,-90.17552062999999,null,null,-90.17016199,-90.17986575,-90.15620358,-90.18532687,-90.15668185,-88.22680662,-87.9861987,-87.98721801000001,-87.98910637,-87.98965819,-87.98815214,-89.30247402000001,-92.10441444999999,-87.96855795,-88.0089371,-88.00813813000001,-87.98836978,-87.95755849,-88.00799956,-87.97899274,null,-88.04805601,-87.96973419,-88.04735728,-88.00816567,-88.04577190000001,-88.06917688,-88.00634225,-88.04690325999999,null,-87.84412268,-87.86890969,-87.92739458,-87.95122557000001,-87.89170067000001,-88.24259111000001,-88.15139854,-89.17233969999999,-88.91380719999999,-87.93036827,-87.91410489,-87.91671771,-87.91297333,-87.94751405,-87.91378539999999,-92.53123604,-92.53759732,-92.51732927,-87.91810608,-87.85277062999999,-87.94896785,-87.91208777,-87.87285419,-87.87064995999999,-87.94815765,-88.05113765999999,-88.95686111000001,-88.95687234,-88.95169215999999,-88.75235424,-88.72481929999999,-88.74123745,-88.72488648,-88.72980891,-88.73005642,-88.10666372999999,-88.08214857999999,-88.10503319999999,-89.68311678000001,-89.69623147,-88.62185678,-87.89376682,-87.89242591,-87.89428466,-87.88516408,-87.87281947,-87.88511525,-89.75164644,-89.73385165000001,-89.77124105999999,-89.70971462999999,-87.87228284,-87.85072683999999,-87.85706277,-87.86497507,-87.85490006000001,-87.85881963999999,-87.85168412,-87.87136588,-87.86746798,-87.87187532999999,-87.96705029,-87.96939854,-87.97370074,-87.97043456,-87.96754935,-87.96695278999999,-87.97721079,-87.97285048000001,-87.86297326,-87.79369681999999,-87.87027575,-87.84098326,-87.86769524,-87.84631686,-87.80621501,-87.91276037,-87.7924895,-87.83569476,-87.86303497,-90.27037666,-89.85000435000001,-90.07656452000001,-90.07222278,-88.75201559,null,-91.38679123,-91.39522626,-91.39888354999999,-91.39339696,-91.41025032,null,-88.32228639,-88.04564026,-87.88397005,null,-92.36013570999999,-89.55909032,-89.49012214,-92.79471835,-89.79199487,-89.79356292999999,-89.78592584,-89.79640802,-89.79215447999999,-89.78874757,-89.79109793000001,-89.81382124,-89.79228428,-89.54087341,-88.06761263,-88.08936584999999,-88.10775344,-88.101777,-88.40449316,-88.39967557,-88.40393066,-91.46338129,-91.26890972,-88.34992197,-87.88654028000001,-87.87715862,-87.89401252,-90.73383543999999,-90.88878149999999,-90.50931074,-90.69293552000001,-90.73605498000001,-92.16345912,-89.58269066,-89.55351416000001,-89.57295112,-89.6112389,-89.5913853,-89.60893562,-89.58872642,-92.35738506,-92.5544689,-90.59509122999999,-89.19728425,-89.20865670000001,-89.36100064999999,-89.22902501999999,-89.21780115,-89.21046162,-89.23668775,-87.85920616,-87.87027209,-87.87011289,-87.86940769,-87.87984157,-87.87363413,-87.86004824,-87.86004413000001,-87.85961482,-88.10380917000001,-88.10612455,-88.13277655,-88.17575955,-88.96173684,-88.83543791,-88.7899247,-88.83479645,-89.53388534,-89.53018072,-89.52409428999999,-89.55900914999999,-89.56355476,-89.53608745,-89.44651777,-89.45384315,-89.44688272,-89.45036567,-89.46175660999999,-90.385341,-89.89053629999999,-87.80770616,-87.78323159,-87.79200599000001,-87.8197703,-87.78398799,-87.81619103,-87.7836389,-87.81735424999999,-87.79816836000001,-87.78235261,-87.79173341000001,-87.78640307000001,-87.78473166000001,null,-87.8046037,-87.80091251,-87.81610465,-87.80253204,-87.81613175,-87.81619692,-87.8001922,-87.79478115000001,-87.78689518,null,-87.81332503,null,-87.82604123,-87.79203364,-87.82603955,-87.79197495,-87.78691438,-87.80175377,-87.78449498000001,-87.80387872,-87.80101326,-87.79595198,-87.78355797,-87.82603648,-87.78819957,-87.84998597000001,-87.81063474,-87.79294529000001,-87.78696246,-87.79164237000001,-87.79537972999999,-87.78140487,-87.79868931999999,-87.78820361,-87.82507982,-87.81263804,-87.81629332,-87.79910862,-87.7865469,-87.81270397,-87.91500033,-87.91105655,-88.97476094,-89.01195156,-89.03600604,-88.98901395999999,-88.97406865000001,-89.03399374,-89.04033226999999,-89.02138782999999,-88.99863302999999,-88.98105205,-88.97323971,-89.03695755,-89.03588352,-89.02466745,-89.02355860999999,-89.01092414,-88.98769451,-88.98394691,-89.03105067,-89.03162881,-89.04562374,-89.03186207,-89.03582071,-89.03807831,-89.02324656,-89.03625264999999,-89.02694327,-89.01892952999999,-88.41406411,-88.43343188,-89.85869502,null,-89.03362211,-89.04175854,-88.98413186000001,-89.02676233,-89.03792502,-89.05149414,-89.04104402999999,-88.98376795999999,-89.01547812,-88.98362547000001,-89.01160545,-89.02009052,-89.03361145,-88.99052854999999,-89.02408555,-89.01165768,-89.02402434,-89.02515946,-89.06187778,-89.04907459,-89.03196181,-89.0117527,-89.0403067,-89.02549697000001,-89.03256559,-89.06940792,-89.06450611,-88.93815303,-88.34990347,-88.33876055,-89.37783625,-89.62747441,-89.27949184000001,-89.52375043000001,-89.39738005,-88.60034794000001,-88.60043302,-88.09936853000001,-88.14590954000001,-88.07872306,-88.13918977,-87.8125579,-87.91358354,-88.26061335,-88.26487729999999,-88.26692752,-88.25206752,-88.28213964,-91.89694799999999,-88.47031007,-88.47757110000001,-88.58257232,null,-89.29575987,-89.23147774,-88.72414083,-88.71897375,-88.69638455,-88.72581412,-88.71659601,-88.73169784,-88.72047575000001,-88.71222493,-90.33661764999999,-88.65416942,-88.6359229,-88.64534183000001,-88.61111653,-91.31558581,null,-87.88752271,null,-88.36042371000001,-88.39220761999999,-88.54429157,-88.13754566,-88.15227015000001,-91.69108562,-88.14209975999999,-88.21169571999999,-88.17869847999999,-88.17608047,-88.180713,-88.18552534,-88.2062239,-88.18101712000001,-88.20142445,-88.20101515,-88.17165343000001,-88.40601475,-88.40592977999999,-88.74007847999999,-88.73284491,-88.74706015,-87.97913636,-87.99711762,-88.01726504,-88.0015346,-87.99538655000001,-87.7122328,-87.72781852999999,-87.72637975000001,-87.70440075,-87.75030362,-87.70446262,-87.72541328,-87.72125574,-87.71795046,-87.71297517000001,-87.70785158,-87.72833138999999,-87.72450941,-87.71280851,-87.73453849000001,-87.71626163000001,-87.71961223,-87.72295215,-87.73890487,-87.71626291,-87.71442963,-87.72302804,-87.72449639,-87.71455564,-87.72295066,-87.76284797,-88.01604216,-87.76939283999999,-88.1310474,-87.76814288999999,-89.15527247999999,-89.15219951,-89.15363351000001,-88.83423652,-88.82465119,-88.83889646999999,-88.83451079,-88.10578941999999,-88.0709556,-88.07167711,-88.08644013,-88.11445338999999,-88.13680334,-88.14602403000001,-88.12690296,-88.12843066000001,-88.86273499000001,-88.84133933,-88.84333955,-88.8500528,-88.84330027,-88.83741576,-87.8926965,-88.81748527000001,-88.80089832,-90.33169614000001,-90.33159725,-90.32972083999999,-87.94417349,-87.96828266,-87.96109545,-87.87337749,-89.44671137,-89.45953819,-89.46794276999999,-89.47110696,-89.47069553,-87.94474549,-87.84139141999999,-87.82006320000001,-88.54941359999999,-88.20077285000001,-88.21423434,-88.20789619999999,-91.18075016,-91.10981,-90.82783014,-88.2476953,-89.77298827,-90.53295752,-89.69750466000001,-89.69970875,-91.87472176,-91.40759949,-87.85934039,-87.92845708999999,-87.94803673,-87.94767615000001,-87.95752091999999,-87.97736759,-87.91370537,-87.92215227,-88.03972586,-87.90862475,-87.92921801999999,-87.95774517,-87.94223869,-87.9260709,-87.89575141,-87.92817972,-87.94848772,-88.0446676,-88.02442275999999,-88.00855494,-87.94533823,-87.90887592,-87.95054272,-87.95257976000001,-87.94639873,-87.91090164000001,-87.88796787,-87.8882579,-87.91078247,-87.92005455,-87.91732656000001,-87.95226133,-87.92300392,-87.94345164000001,-87.93769637,-87.94846738,-87.97383687999999,-88.00926387,-87.94655197,-87.93970413,-87.92818343,-87.92846735000001,-87.92846943000001,-87.92395017,-87.97274191,-87.98204219,-87.96052398,-87.93430136000001,-87.94761203,-87.93023461,-87.95212058,-87.94768961,-87.95174448,-87.92452432,-87.98107887,-87.97004702,-87.95746370000001,-87.89786384,-87.94776945,-87.95738168,-87.97164318,-87.95736196999999,-87.94963995000001,-87.98644937,-87.91847024,-87.99337955,-87.9669614,-87.93545309,-87.91612275999999,-87.94855516,-88.00587569,-87.98612073,-87.91822315,-87.9503313,-87.90378031,-87.93310630000001,-87.92540396,-87.93675197,-87.94798806,-87.92541592000001,-87.9140671,-87.97723732,-88.0167227,-87.96348017,-87.95766833,-88.00780313999999,-87.94789591,-87.97702382999999,-87.9485092,-87.98489361,-87.92334231,-87.95404164,-87.92134942,-87.94847799999999,-87.93296072,-87.93730352,-87.93072487000001,-87.89318813,-87.9041489,-87.91132186999999,-87.91573716000001,-87.91117761,-87.92692117,-87.98188012,-87.91853806,-87.8923578,-87.97123154000001,-87.89490794,-88.02255825,-87.94772140000001,-87.95682682,-87.92928046,-87.92961108999999,-87.95299806,-87.91934981,-87.91744464,-87.95808263000001,-88.01424896,-87.95760163999999,-87.95766909,-87.91445793,-87.95263421999999,-87.93530527999999,-88.01403534000001,-88.0415112,-87.99852153,-87.88920788999999,-87.91935466,-87.91209679000001,-87.94804913,-88.02763682,-87.91729755,-87.91836244,-87.94985167999999,-87.91396817,-87.91454111,-87.9716794,-87.96581301000001,-87.88367886,-87.94680176,-88.00620409,-87.96736136,-87.96407748999999,-87.97709648999999,-87.95826397,-87.95567059,-87.95847022,-88.01555086,-87.98965855,-87.94265138,-87.93568415,-87.94838999,-87.99236286999999,-87.92879453,-87.9041495,-88.02424314,-88.00952922,-87.97720339999999,-87.98742592000001,-87.91838959,-87.91452762,-87.94710009000001,-87.9467514,-87.98151126,-88.03165317,-87.99790287,-87.9293033,-87.94918709,-87.96772626000001,-87.91241451,-87.92006204,-87.92601992,-87.94770174999999,-87.97493672,-87.9227211,-87.90814729,-87.90894802,-87.88493518,-87.9110299,-87.93272763,-87.89927496999999,-87.88783866999999,-87.91324276,-87.94829827,-87.91494879,-87.95752048,-87.98708161,-87.94069211,-87.93954551,-87.94240802,-87.97482379,-87.98684986000001,-88.00555398,-87.92877609999999,-87.92489418,-87.88786105,-87.90759008000001,-87.89930849,-87.91112496,-87.90757175,-87.88806552,-87.94845119,-87.95980286,-88.03048846999999,-87.96049996000001,-87.91401972,-87.91176285,-87.90225359999999,-87.89801787,-87.90876749,-87.9045302,-87.90333788,-87.9085407,-87.91113608000001,-87.89120887,-87.89545346,-87.8973893,-87.9507452,-88.03255383,-87.95246911,-88.01740431,-88.01093206,-87.90706245,-87.91123731,-87.99708277000001,-87.94132161,-87.94742828,-87.95072593,-87.95746527999999,-87.88773791,-87.95768115,-87.92613209,-87.97594614,-87.93913496,-87.99112092999999,-87.98414606999999,-87.99082951,-87.88792229000001,-88.01260324,-87.95743478999999,-87.96708581,-87.9832854,-87.98305065,-87.92335509,-87.91926494000001,-87.94200724,-87.94777254,-87.93643518,-87.9542027,-87.93336275,-87.89247487999999,-88.04190431000001,-88.02513456,-88.0527953,-87.94772634,-87.96090983000001,-87.98194487000001,-87.90351629,-87.91114852,-87.95746668,-87.95626213,-87.95737975999999,-87.95988504,-87.8977675,-87.94699762,-87.95314612,-87.98430904,-87.98517117,-87.94871666,-87.96307286,-87.94232396,-87.92680448,-87.94728922,-87.94779314,-87.9002574,-87.94808020000001,-87.93540451,-87.93187512999999,-87.95774299,-88.0453466,-87.96624476,-87.91075336,-87.90388446999999,-87.92394745999999,-87.9322646,-87.93309153,-88.02588621,-87.9789031,-88.04271743,-88.03990211999999,-87.91125484,-87.90846209,-87.98600143,-87.92127777,-87.91681124999999,-87.94477284,-87.97620917,-87.94772079000001,-88.00130755000001,-88.02589715000001,-88.01323008,-87.96456989000001,-87.95985052,-87.93143766,-87.94267197000001,-87.98191625,-87.95764761,-87.95766823,-87.91483382,-87.91549375,-87.90946603,-87.95750725000001,-87.92476308000001,-87.90523450000001,-87.94613273,-87.94640138,-87.94788224,-87.9735543,-87.94842654999999,-87.94849884999999,-87.9493971,-88.00502587,-87.9227526,-87.88042772,-87.88860031999999,-87.8948523,-87.96777152999999,-88.01388334000001,-87.91097756000001,-88.01269471000001,-88.02750336,-87.9864577,-87.92270139999999,-87.95736706,-87.99695136,-87.96736024,-88.00712992,-87.94776941000001,-87.93736231,-87.92229094,-87.93880285,-87.94729006999999,-87.94738371,-87.89796452,-87.90756619,-87.91405507,-88.02516949,-87.99329781,-87.99579414999999,-87.94413075999999,-87.93412819,-87.97240794,-87.95743557,-87.96709946,-87.93032214,-87.95148514,-87.95889266,-87.93298904,-87.9755282,-87.92254081999999,-87.93970418000001,-87.92183393000001,-87.94779807,-87.90628762,-87.87471154000001,-87.96217776,-87.92331211,-87.97689329000001,-87.96701365,-87.97701078999999,-87.9599022,-87.91152799,-87.96547004999999,-88.04236301,-87.96875702,-88.00753752999999,-87.95997212,-87.9665382,-87.94826507000001,-87.95743675,-87.92410105,-87.93747763,-87.92806345,-87.94493905,-87.92706003000001,-87.95897733,-87.94692262,-87.93297832,-87.92573134,-87.91352556,-87.9291432,-87.93775017999999,-89.39823808,-88.48535375,-89.13127469,-89.30195248,-90.4853569,-90.52596849,-88.31151853,-88.40572725,-89.28575051999999,-88.44240916,-89.79144257999999,-90.59026704,-90.37819042,-89.79217786,-91.88826892,-88.40422096,-89.80761837999999,-90.07217924,-89.99663724,-90.84555315,-88.58544512,-88.01702903,-88.1672549,-87.93950787999999,-87.94049022,-87.93665393000001,-87.93540213,-88.02518246,-87.92881915,-87.93020368000001,-87.93015676,-87.90478958999999,-88.00587787000001,-87.96541179,-87.95772156,-87.95907703,-87.92151595999999,-87.95776632,-87.95291322999999,-87.94364312,-88.02923857,-88.01056507,-87.99889426999999,-88.00549293,-87.93946905999999,-87.96545607,-87.98690016,-87.92870931,-88.05563694,-87.95266379,-88.00560269,-87.94735807000001,-87.90344417999999,-87.89803694,-87.89913351,-87.89238979,-87.92161071,-87.88788828,-88.02721095,-87.91550442,-89.57349891,-89.40569304,-89.42884486,-89.32582069,-89.30749955,-89.29763337999999,-89.38813383,-89.40071457000001,-89.36956315,-89.38160388,-89.36445662,-89.38462545,-89.47763332,-89.50299665,-89.51129822,-89.39521533999999,-89.39533294,-89.51474072000001,-89.40068918999999,-89.38930865,-89.36244093000001,-89.37624065999999,-89.52507649,-89.46096052999999,-89.40068850999999,-89.36191565999999,-89.37509523999999,-89.37672351000001,-89.3895481,-89.36691623,-89.51268552000001,-89.37523041999999,-89.36574305000001,-89.32144766,-89.52140631,-89.4007539,-89.31864379,-89.30731729,-89.39258178,-89.44761717999999,-89.45249206,-89.40075388,-89.43627024,-89.37976197,-89.38826721,-89.39424643,-89.30501851,-89.29377444000001,-89.2904013,-89.5092995,-89.42878114,-89.45666281,-89.38872345999999,-89.39351915,-89.4210066,-89.4007187,-89.42864486000001,-89.40071872999999,-89.48651597,-89.34437733,-89.3095174,-89.29653981,-89.40568386,-89.32359098000001,-89.36397273,-89.50614615000001,-89.28605451,-89.41827859,-89.3784249,-89.36666891,-89.39472976,-89.393502,-89.38981724,-89.40598654999999,-89.32425453,-89.36627841000001,-89.39921326,-89.39749698,-89.38974098,-89.38015377000001,-89.40710267,-89.40031872,-89.39377188,-89.38823698,-89.36551824,-89.51749839,-89.40898867,-89.33042618,-89.38591479,-89.38185228,-89.38488512000001,-89.38734554,-89.31203379,-89.48702772,-89.45118443,-89.40068719999999,-89.40096944,-89.34087255999999,-89.34501001,-89.39739163,-89.3414391,-89.36425955999999,-89.5141876,-89.47821571,-89.31300637,-89.52742832,-89.39259303,-89.51740015999999,-89.54542322,-89.40093177999999,-89.31933974,-89.34314478,-89.41902776000001,-89.39395247,-89.40901073000001,-89.42569865,-89.39410999,-89.39324295,-89.39499492,-89.52282968999999,-89.34285039,-89.38579136,-89.36630356000001,-89.35851552,-89.47206316,-89.4828084,-89.30918308,-89.3896417,-89.50317637000001,-89.42303020999999,-89.39258683,-89.39432336,-89.50317511,-89.35106708000001,-89.35347174,-89.30316381,-89.40075189,-89.37278885000001,-89.52631013,-89.59824082999999,-89.42277339,-89.33753091,-89.07165448000001,-89.80462722999999,-89.43333287,-89.35505517,-89.22600138,-89.22675859,null,-89.21483138000001,-89.23078554,-89.25472551999999,-89.24342786,-89.24611616,-89.23274531,-88.05951342,-88.03237477,-88.06405243,-87.9982871,-88.06220168,-88.0291728,-88.04843319,-88.01988334000001,-87.96693655999999,-88.06411518,-88.01120039,-88.05239807,-88.02051772,-88.06216956999999,-88.06350295,-88.05982355,-87.95808603,-87.98953631000001,-87.9479437,-88.00748753000001,-87.97768358,-87.99931311,-88.00361483,-88.07899242000001,-88.01076818,-87.99098770000001,-87.98251135,-87.97794211999999,-88.01408384,-88.06319477,-88.09651205999999,-88.02095780000001,-88.01796369,-88.03741501,-88.02169897,-87.97988561,-87.96776404000001,-88.0036645,-88.09938772,-88.09930523,-87.96041565,-88.03293480000001,-87.96785912999999,-87.99484002,-87.99415257,-88.05147277,-91.10909873999999,-91.1111184,-87.93326252999999,-87.91879632,-87.98192929,-87.95753584000001,-87.94380821999999,-87.92235647,-87.91262765,-87.9440963,-87.92037587,-87.91454048999999,-87.91241505000001,-87.90483021999999,-87.91921719,-87.88532961,-87.90345356,-87.9144467,-87.93317381,-87.9113222,-87.93297328,-87.93298473,-87.93501683,-87.92903138,-87.94145472,-87.96746797,-87.95752005999999,-87.94834166,-87.92629615,-87.95520832,-87.96903917,-87.95290835,-88.00418994,-88.0059471,-87.93212574,-88.02954523,-87.9959453,-87.93339279,-87.89795325,-87.94726206,-87.90732898,-87.88779735,-87.91506951,-87.89412983,-88.00797116,-87.92990521999999,-87.92832493,-87.92703525,-87.94855464,-87.92921265,-87.97557424,-87.96250458999999,-87.97097868,-87.95734766,-87.95006748,-88.04166413999999,-87.97123345999999,-87.89493710000001,-87.98963204,-87.94736315,-87.93886727,-87.94759494,-87.94858874000001,-87.89883508,-87.95770487999999,-88.45053826,-88.44446425,-88.44701044,-88.45955938,-88.44282533000001,-88.48470294000001,-88.44468089999999,-88.44708813,-88.43907480999999,-88.44466337,-88.43169485,-88.45072971,-88.46384098,-88.43186942,-88.44832798,-88.4469287,-88.47621995999999,-88.43408856000001,-88.45185944000001,-88.41143667,-88.48474186,-88.45144422,-88.47325451,-88.43457179000001,-88.44761515,-88.47603298,-88.35762154,-88.30328548,-91.24819821,-91.2197534,-91.24729917000001,-91.24096375000001,-91.24601676,-91.23890513000001,-91.23899025999999,-91.24761911,-91.24829775000001,-91.21975618,-91.2487933,-91.23734363,-91.24739699,-91.25246686,-91.23454357999999,-91.2490062,-91.25343506999999,-91.24726652,null,-91.23377531,-91.25339769999999,-91.24789418,-91.24449944,-91.21984101,-91.24680658,-91.25093871999999,-91.24829468,-91.22944126,-91.21974922,-91.23682164,-91.24116312,-91.23903267999999,-91.24898883,-91.23927264,-91.23913021,-91.24967678,-91.24818478,-91.24452196,-91.25070538,-91.2398951,-87.98692136,-88.1881317,-87.95258560000001,-88.18346750000001,-88.15912226,-88.11137442,-87.91123340999999,-87.95412917,-87.826452,null,null,-87.87415559999999,-87.82688229,-88.09525447,-88.04863326,-88.16807386000001,-88.0863595,-87.99347554000001,-88.08976423999999,-88.02770205,-88.02231304999999,-88.02658266,-87.94974417,-88.04331596,-87.9958561,-88.07099254000001,-88.10035849,-88.06541885999999,-88.06964791,-88.06803176,-88.06760224,-88.04365848,-88.09000931,-88.05991006000001,-88.08047752,null,-88.04970031000001,-88.08098282,-88.86509644,-88.86029759,-88.86009817999999,-90.13461608,-90.13767875000001,-90.14388776,-90.47722678,-90.47650725,-90.47704607,-90.47710646,-91.13837232,-88.33070594,-90.81072285,-90.81881791000001,-90.81817556999999,-90.83999199,-90.81261455000001,-90.81085444,-89.02656282,-89.02033234,-89.06982171,-88.4504639,-90.88851721,-90.88917647,-90.88894376,-88.99019835999999,-89.48980684,-89.50424294,-89.52711345,-89.49343875,-89.51428945000001,-89.52464873,-89.48607247,-89.49558718999999,-89.48681446000001,-89.49855406,-89.41641239,-89.42064286,-89.42235356,-89.47674403000001,-87.89979145,-87.91569219,-87.92500461,-87.87687287999999,-88.0391023,-87.86731243,-87.90099419000001,-88.03783129999999,-87.87572335,-88.05036143,-87.93087982999999,-87.87642687,-87.97227203999999,-88.04846954,-88.01032406,-87.95308836,-87.95499327,-88.05589995,-88.03232563,-88.00916823,-88.02908069999999,-87.95068297,-87.98007981000001,-88.10104755,-88.06548512000001,-88.10053238,-88.08997305,-88.09056246999999,-88.088555,-88.12031158000001,-88.16521281,-88.1372373,-89.32625219000001,-89.33150917,-89.32488617,-89.35453526000001,-89.33402988,-89.33801034,-89.31090709,-89.33185602,-89.3285035,-88.04722099,-88.00471661,-88.02233131,-88.06590315,-88.05546901,-87.98829141,-88.02746845999999,-88.00742357999999,-88.03481167,-88.05155003,-87.99352057,-88.03201831,-88.04773294,-88.06594586,-88.00744611,-88.01250099000001,-87.9966873,-87.99742001,-88.05401556,-88.00763923,-88.02714317,-88.05835166999999,-88.0170873,-87.98739439000001,-87.98754398,-87.98562296,-87.98743047000001,-87.98671365,-88.00171027,-87.99790066,-88.04656559,-88.04726568,-87.98746318000001,-88.03944548,-88.04710679999999,-88.04664497,-88.00563773,-88.00004328,-88.00003128,-88.04091334,-88.04673059,-88.00738774,-88.00473907999999,-87.99018869,-87.98057544,-88.05196660999999,-87.99428381,-88.05691188999999,-88.0060744,-88.04765193999999,-88.01696801999999,-88.00737337,-88.05817801000001,-88.01260313,-88.01709129,-88.05055118,-88.02432392,-88.0259798,-88.0468346,-88.04680852,-89.81770268,-91.44478692,-89.63919496,-89.63841289,-89.64114576999999,-89.66281039,-89.65255829,-89.72523149,-89.72871411,-89.734481,-89.7320335,-89.73422773,-89.73402631,-89.57467002,-89.58671135,-89.56465291000001,-89.56387277,-89.48934602999999,-89.57474286999999,-89.57762945,-89.57568018000001,-89.57801306,-89.5647467,-88.54326562999999,-88.53310005,-88.54150740999999,-89.37678385,-88.46471837,-88.45733099,-88.51312852,-88.50519807000001,-88.46671646999999,-88.48707914000001,-88.48506261,-88.45220621,-88.48960576,-88.47586162,-88.49512808999999,-88.43805734,-88.4487353,-88.45741063,-88.45318605,-88.4491527,-88.44612524999999,-88.40090467,-88.44639501,-88.44915875,-88.45323277,-88.4459449,-88.17416028,-88.73318091,-88.57526307000001,-88.50275533999999,-88.65491486000001,-88.64812356,-88.56553011,-88.50667553,-88.54468253,-88.53524215,-88.37485372,-88.39554584,-88.36305539,-88.43312275,-88.37482253,-88.41574007,-88.42323768999999,-88.40087176,-88.40302416,-88.41565498999999,-88.41850139,-88.39052475,-88.41569241000001,-88.42825332,-88.41560726,-88.41663788,-88.39876381000001,-88.41578389,-88.43330568,-88.40592536,-88.34588214999999,-88.39452706,-88.40092303,-88.3954901,-88.39459681,null,-88.41533454,-88.36929417,-88.41574706999999,-88.38022644,-88.3749679,-88.37482147999999,-88.41548355,-88.41503783,null,-88.40404306000001,-88.41602788,-88.41542812,-88.41006547000001,-88.43775949,-88.41597948,-88.22085946999999,-88.11012499,-91.42921385,-91.46985297000001,-91.51938007,-91.53712105,-91.4587618,-91.46821717,-91.42737334,-91.49500238,-91.46944157,-91.50338041000001,-91.43746326,-91.49640418,-91.54410278,-91.4950003,-91.48166903000001,-91.46304957,-91.46667881,-91.51708847,-91.52007433999999,-91.54410193,-91.51825540999999,-91.51518913,-91.49397141999999,-91.46051754,-91.50942821,-90.97473908000001,-92.67477368,-92.38095072,-89.6241516,-89.61586757000001,-89.63510997,-89.61573896,-89.63784554,-88.60765370999999,-88.60561946,-88.60443935000001,-87.63915675,-87.62426916,-87.65734881,-87.63061647000001,-87.63065927,-87.63537956,-87.64678480000001,-87.63028106,-87.65314822000001,-88.67515765,-88.06430611,-89.11818649,-89.07662311,-89.01878802,-89.09825213000001,-89.81718485,-89.81205299,-89.82970598999999,-89.81752135000001,-89.81414859,-89.77782578999999,-89.74898028,-89.76223511000001,-89.76898498,-89.76288193000001,-88.84357258,-88.84704290000001,-87.97983587,-88.00374288,-87.92552184,-87.90690569,-87.99381172,-87.97956117,-87.68415708000001,-87.6572644,-87.67688427,-87.66476345,-87.65772164000001,-87.6883359,-87.70632409,-87.67148389,-87.66579151000001,-87.67140979,-87.67474,-87.7068246,-88.24873612,-88.25949288,-88.22636244,-88.24157907,-88.21936184,-88.24710481,-88.23359920999999,-88.22116080000001,-88.25597714,-88.20759173,-88.17960887,-88.22676533000001,-88.22585703,-88.22282976,-88.2468241,-88.22977989,-88.25024328000001,-88.25978554,-88.2332321,-88.2298681,-88.21266807000001,-88.10636442000001,-88.3599064,-88.19737507000001,-88.19990108,-88.24818397,-88.34645355000001,-88.34000648999999,-88.22747755,-88.30174614000001,-88.47310043,-88.19180815,-88.20184779,-88.22978026,-88.24336906000001,-88.22520153000001,-88.34202851000001,-88.33896116,-88.35173908,null,-88.33347636000001,-90.35002799,-90.395348,-90.39523051,-87.73188949999999,-87.77585022,-88.02488990000001,-91.32270372000001,-88.42898568,-88.49429904,-90.91962433,-90.57422565,-91.18373861000001,-91.18327616000001,-91.24040275999999,-91.23144076,-91.2102488,-91.225706,-91.23195988000001,-91.20844697,-91.22641828,-88.32412221,-88.31708207,-88.32247381000001,-88.32414976,-88.32020092,-88.31268052,-88.32411212,-88.32412745000001,-88.33999436000001,-91.60093543000001,-92.75702271,-92.63770614000001,-92.75300473,-92.73735646,-92.73268639,-92.73423037000001,-92.72104967,-92.7412449,-92.73856494,-90.91969451,-91.29609152,-90.89128488,-90.91423888,-90.82618764,-91.73151799999999,-91.73370383,-91.74821076000001,-92.61378434,-92.60892487,-92.61187872000001,-92.62691527,-92.63956611,-92.60661643,-91.91950222,-91.92336582999999,-91.9319433,-91.92714305,-91.92847135,-91.91877030000001,-91.93262858999999,-91.92969977,-91.92854665999999,-91.9297638,-91.92848878,-91.92974871,-91.93194137,-87.06783484,-87.1221568,-87.65560806000001,-87.1229051,-87.35046506,-87.36590058,-87.37619707,-87.36934282,-87.39146775,-87.39702101,-87.38207251,-92.75649,-89.66967961,-89.63933587,-89.64336132,-89.65556519,-89.62719851,-89.62387889,-89.64586952000001,-89.63358665,-89.63927928,-89.62345385,-89.61509322000001,-89.62135186,-89.63037217999999,-89.62369114000001,-89.63923071000001,-89.62713985000001,-89.62346178999999,-89.62581114,-89.27793794,-89.50053818000001,-91.25274211999999,-91.25265773,-88.90032035,-88.76114622,-88.75689081,-89.156481,-89.1150923,-89.17056602,-89.05749373,-89.39975411,-89.40621826,-89.41270823000001,-89.42673676,-88.50671396,-88.29284318000001,-88.34733362999999,-88.51437804,-88.6577901,-88.29306210999999,-90.50846033000001,-90.50862553,-88.4705536,-88.46055713,-88.48676936,-88.41603536,-88.40977159000001,-88.49267491000001,-88.47901114,-88.45618869,-87.96536531,-87.98333196,-87.9680288,-89.38498669000001,-89.37441533000001,-89.37744653999999,null,-89.69789349,-89.69179513,-89.38321483,-88.28540961,-88.26614958,-88.27091116,-88.27141589,-88.27379792000001,-88.54679437,-88.53753986,-88.56062892999999,-88.52753706999999,-88.59334604,-88.58064485,-88.53748632,-88.58189346,-88.53743337,null,-88.59350799000001,-88.57975915,-88.53508759,-88.58161343,-88.58696449999999,-88.55787337,-88.57302787,-88.5411249,-88.54638529,-88.53761371,-88.55898526,-88.52734484,-88.54272281,-88.5250077,-89.43671266,-89.44877121,-89.43862648,-89.43385118,-89.45114959999999,-89.43374049000001,-89.03776348,-89.17143133,-88.45027764,-88.45191618,-87.90665996,-87.90466419000001,-87.89915034000001,-87.91179357999999,-87.89241893000001,-87.90682122,-87.90422411,-87.90302247,-87.90659536,-90.4341144,-90.89889131,-87.91296497,-88.76478496999999,null,null,null,-89.28917891,-89.30354133,-88.58083454,-88.39183468,-88.41244193999999,-88.71968862999999,-88.38496471000001,-87.96460697000001,-87.9409847,-87.92176056,-91.47185927,-90.29769155,-87.83556212000001,-87.82378506000001,-87.82860436999999,-87.85542924000001,-87.83567056,-87.84253128,-87.83834075999999,-87.83691537,-87.82670558,-87.85793742,-87.88497312,-87.82831167000001,-87.82174469,-87.81929263000001,-87.85132468,-87.84681727,-87.81883274,-87.86962529,-87.87631555999999,-87.82186861,-87.82713329000001,-87.83552548999999,-87.83922025,-87.82230733999999,-87.83593466000001,-87.82160053,-87.82160053,-87.84535047999999,-87.83806294,-87.85159840999999,-87.834952,-87.82294467,-87.82160112,-87.84665068,-87.82236413,-87.88270393000001,-87.82529233,-87.88250904,-87.83575055,-87.87101255,-87.87642432,-87.88375796,-87.88375796,-87.89359579000001,-87.86259394,-87.84579151,-87.83307936999999,-87.83618591,-87.82690117999999,-87.83594201,-87.9548063,-87.94811523,-87.83922109,-87.85575174,-88.02570436000001,-89.65412139999999,-89.59198675,-90.10519897,-89.49210638,-88.47974786,-87.98556336999999,-87.94496307,-89.54618325,-89.50969311,-89.53082761,-89.55020141999999,-88.16127133000001,-87.9561223,-88.23859865999999,-89.01176044,-88.98568544,-88.88537986999999,-91.08039519,-90.07898152,-89.85442695,-89.76162811,-90.00658326999999,-89.76885925000001,-89.68883567,-89.62076329,-90.10581605,-89.75960461,-90.06900211999999,-91.11192225000001,-91.47719201,-88.57746545000001,-92.58618898,-92.64475666,-92.08390156999999,-92.11475022,-92.05755483999999,-92.10385303,-92.10408509,-92.06458712,-92.10101495000001,-92.10419937,-92.10402863,-92.1038095,-92.10543850000001,-87.60534405,-87.56834879,-87.58488045999999,-88.74276908,-88.47374468,-88.49073454000001,-88.49062533999999,-88.49645006,-88.47046055,-88.48370839,-88.49062563,-88.48318499,-88.49703476000001,-88.50296779999999,-88.47149267,-91.89451319,-89.78862654,-90.17546321,null,-90.18145911000001,-90.16532467,-90.17334552,-90.16011779999999,-90.18876344,-90.18518191,-90.188267,-88.25361744999999,-88.23282869000001,-87.99944712999999,-91.81982961999999,-91.83098219999999,-92.00730181,-91.73846646,-87.97853888,-87.99824647,-87.95576251,-88.00534168999999,-87.96211737,-88.06746532,-87.95929724,-87.99816952,-88.02271223,-87.98538626,-87.96968078,-87.97543854,-87.95929589000001,-88.0103673,-87.96809385,-88.00899389999999,-87.86495497999999,-87.92801989,-87.92276776,-87.82354502,-87.94800802,-88.14336582999999,-88.16798458,-88.16665918,-87.91430256,-87.91515753,-92.53588791999999,-92.53849058,-90.18440099999999,-87.91178866,-87.92814426,-87.91844299,-87.91189850000001,-87.88374699000001,-87.94652096,-87.94711445999999,-87.94949962,-87.91424348,-87.94840361999999,-87.92913498999999,-87.95023456,-87.91012784999999,-87.91191391,-88.03618868,-88.04871725,-88.04806815000001,-88.95393899,-88.71865215,-88.72481526999999,-88.73233216,-88.72686136999999,-88.08701098,-88.09095028999999,-87.87529673,-87.88747060999999,-87.88736136999999,-87.8833846,-87.88526797999999,-89.75309154999999,-89.76878915,-89.74510401000001,-89.73330857000001,-89.75517484,-89.74259128999999,-91.50338235,-89.72205953,-89.70735996000001,-89.69154897,-89.71850582,-87.87382447,-87.87179140000001,-87.8599145,-87.87157571,-87.86063654,-87.87013329,-87.87092515000001,-87.86083576,-87.8616732,-87.87115592000001,-87.86578048,-87.87189007000001,-87.87021132,-87.96977542,-87.96768336,-87.96478644,-87.97605093999999,-87.87029604999999,-87.84598703,-87.84907213,-87.84668838,-87.87044542,-87.8516281,-87.83955424,-87.84864487,-87.84808264999999,-87.84669209,-87.87217419,-87.84432017,-87.84590077,-90.11917043,-90.11329264,-90.07291628999999,-90.07203151,-90.07809557,-88.73079472000001,-91.40604351,-91.35559945,-91.38595149,-89.5281871,-89.47498428999999,null,null,-87.8644946,-92.36546438000001,-89.99851467000001,-89.9946716,-89.99458237,-89.98465917999999,-92.78051666,-92.80212188,-89.79291906,-89.76892993,-89.79749178,-89.79010311,-89.78385325000001,-89.79148692,-90.66337581000001,-88.1084688,-88.06753264,-88.10167613,-88.10639217000001,-88.10233807,-88.40204138999999,-88.37137208,-88.3668189,-88.34995886,-87.88117665,-87.87978456,-87.87567516,-88.86641315,-90.70737565,-90.7096719,-89.58340208,-89.59263647,-89.59173328999999,-89.60872867,-89.61041092000001,-89.5621435,-89.5887817,-89.59112553999999,-89.59084188999999,-89.57250236,-92.64017835,-89.20542146,-89.37326351999999,-89.25060046999999,-89.21044925,-89.23060675000001,-89.22300455,-89.23172228,-87.86041824,-87.86985596,-87.88001095,-87.85178359,-87.87975959000001,-87.88176016,-87.86846665,-87.86805605000001,-87.85998376000001,-87.86004566,-88.12292610999999,-88.12805741,-88.1306755,-88.14634669,-88.54647729,-88.54822691,-88.55208899,-88.55026135999999,-88.43383162000001,-88.80567658,-88.70979861000001,-89.53341053,-89.52801276,-89.51761799000001,-89.53859816000001,-89.54172393,-89.45602593,-89.46171878,-89.41157508000001,-89.45648678000001,-90.38420653999999,-87.79272259,-87.79830707000001,-87.78485533999999,-87.78815706,-87.81924535,-87.78257057,-87.81193087,-87.83082924,-87.79195796,-87.80408958,-87.80859069,-87.78696135,-87.80820304,-87.80554969000001,-87.804641,-87.7847764,-87.79658111000001,-87.79977357,-87.80168289,-87.79810934,-87.83578833999999,-87.8264152,-87.79372329,-87.83592974,-87.79405601000001,-87.79626847,-87.80978039999999,-87.78704012999999,-87.78273817,-87.78575626,-87.80015707,-87.80855407,-87.7885654,-87.78482972,-87.78867743000001,-87.79781862999999,-87.83590834,-87.80398706,-87.78268626000001,-87.78574052,-87.79161434,-87.78000149,-87.78820039999999,-87.82571643999999,-87.78252705,-87.91507776,null,-87.89001949999999,-89.02554671,-89.05178968,-89.03576605000001,-89.00231837,-89.00678397,-89.02045626,-89.02459713,-88.98207281000001,-89.01748198999999,-88.98724394,-89.04502416,-88.97353952,-88.99927535,-89.02942862,-88.99361021,-89.02633449,-88.97638409,-89.01312040000001,-89.01111294,-89.03152675,-89.00544683,-89.01373125000001,-89.03192287,-89.02823788000001,-88.99365118,-89.04237277,-89.02307103,-89.03204854000001,-89.04703652000001,-88.43563494,-88.43556298,-88.417675,-88.41912901000001,-88.42226288000001,-88.43855186,-88.43446754999999,-89.61759029,-90.29165318,-89.03807449999999,-89.02301021,-89.0310305,-89.00791941999999,-89.05241791,-89.01791726,-89.04132850000001,-89.02683565,-89.03795924000001,-89.03349978999999,-89.01538567999999,-89.04204647,-89.02134133,-89.02546773,-89.00750587,-89.03691548,-89.04316246,-89.03362325000001,-89.01275891,-88.98741891,-89.04367283000001,-89.01553652,-89.01184467,-89.01787244,-88.98805846,-89.03787545,-89.06481583999999,-89.0632207,-88.95256870999999,-88.96410168,-89.37264411,-89.38415394,-88.31411642,-88.33243585,-89.74544147,-89.73555568,-89.73965422000001,-89.7490732,-89.28450749,-89.64609555,-89.01578071,-88.09505624000001,-88.14581918,-88.14022281,-88.17442561,-87.80947639,-87.80951802,-87.80432528,-87.98333257,-88.26814689,-88.27684762,-88.27468745,null,-88.37324998,-88.15039650999999,-88.17090285,-91.88550564000001,-88.4416336,-88.47290877,-88.43831693,-88.42447306,-88.45047117,-88.52504513,-89.27114056000001,-89.24705089,-88.72511609999999,-88.73085439,-88.72418809,-88.73230713,-88.72931124999999,-88.72850975,-88.74220759000001,-88.74647714,-88.73073013,-88.72394481000001,-88.69927318000001,-88.72262035,-88.28529682,-90.34099118,-88.656848,-87.88777665000001,-87.88300398,-87.88071329,-87.88289356999999,-88.37888927,-88.38537955,-88.37873988,-88.36294719999999,-88.37888065999999,-88.37888993,-92.02035008,-91.67062069000001,-88.18972126,-88.18325345,-88.18121137999999,-88.18112204000001,-88.18091328,-88.20109741,-88.18358353000001,-88.20113576,-88.20325106,-88.16139257,-88.19436640000001,-88.17466699000001,-88.18285306,-88.18089265,-88.19402805,-88.19297914000001,-88.1810404,-88.17726673999999,-88.74268368,-88.74695930999999,-88.73994978,null,-88.75133526,-88.01233218,-88.00617446,-87.73764281,-87.72302095000001,-87.74496938999999,-87.71464714,-87.72301937,-87.72222334999999,-87.71461981,-87.72831151,-87.71545439,-87.71313666,-87.73949136,-87.75450343999999,-87.72929123999999,-87.72006327,-87.71960448999999,-87.73231013,-87.71793912,-87.71460596,-87.7243132,-87.72194853000001,-87.71297611999999,-87.73070125,-87.71306883,-87.71461121999999,-87.71281626,-87.71960077,-87.71627048000001,-87.72451684000001,-87.72291183999999,-87.74462715999999,-87.73919530000001,-87.9466118,-87.82543947000001,-88.00127116,-87.75042345999999,-87.7664364,-89.14930242,-89.15222728000001,-89.15225106,-89.14410779000001,-89.15847601999999,-88.81783924,-88.82621134,-88.83456412,-88.85655661,-88.81033743,-88.82915014,-88.12624924000001,-88.0868177,-88.15098229,-88.12633626,-88.06635485,-88.12619994000001,-88.11823228,-88.16645404,-88.06683793000001,-88.06818036999999,-88.10897067000001,-88.11109924,-88.06757355000001,-88.0865889,-88.83068842,-88.83839786999999,-88.84882523,-88.85667056,-87.9144944,-87.90204478,-87.91271675,-88.80621334999999,-88.80460194,-88.81720318000001,-88.89749809,-87.95954709,-87.98116949,-87.94485081000001,-87.89341853000001,null,-87.87575553000001,-87.88084899,-87.87104488999999,-89.46899136,-89.46383299999999,-89.46352514,-89.46387636999999,-87.94474765,-87.82003987,-87.81982963999999,-88.60823927,-91.27437836999999,-91.12511926000001,-91.12305112999999,-89.62686998,-90.39123304,-89.69564971,-88.04035325,-91.41968081,-91.41907239,null,-90.44768985,-88.07498927,-87.20477,-87.95278507,-87.92707056,-87.95958177999999,-87.92711254,-87.91980934999999,-87.90586494,-87.94486022,-87.92719486,-87.94806317,-87.91264724,-87.96741470000001,-88.00715631,-88.00722718,-87.94051103,-87.91189043999999,-87.91869566,-87.94780125,-87.88809641,-87.92252006,-87.93381998,-87.95782832,-87.91915895,-87.94770582,-87.95005027000001,-87.94789221000001,-87.91760812,-87.94928888,-88.00549332999999,-87.95770541,-87.92729887,-87.9108281,-87.91605475999999,-87.92246113,-87.91887007,-87.9484269,-87.92343345,-87.90882256,-87.9538747,-87.94456941999999,-87.9909208,-87.93325759,-87.94745444,-87.95685766,-87.88363354000001,-87.97243263,-87.96619905999999,-88.00033682999999,-87.9494181,-87.90694745,-87.9185256,-87.90677581999999,-87.93454558000001,-87.93902781,-87.94348285,-87.9362264,-87.93648786,-87.91992361,-87.904747,-87.96143288,-87.93138515,-87.95771589,-87.92926969,-87.94974134,-87.98622266,-88.05550251,-87.97615051,-87.94697373,-87.95439421,-87.88807411000001,-87.89653718,-87.92364453,-87.90063536,-87.94131901999999,-87.91853414000001,-87.91403923,-87.9350049,-87.94770767,-87.95782260999999,-87.88382473,-87.89014520000001,-87.9013851,-87.88449663,-87.88378907000001,-87.89589264999999,-87.98613776000001,-87.98949897999999,-87.99036922000001,-87.95738457,-87.97736362000001,-87.90923208,-87.88811886000001,-87.90814223,-87.95512565999999,-87.95714155,-88.02157523,-87.91646966,-87.90543037,-87.91216892,-88.03117249,-87.96105753000001,-87.93736602,-87.91410533,-87.93569773,-87.9403147,-87.95151975,-87.92590473,-87.92560309,-87.9738917,-87.96148051999999,-87.99969102999999,-87.96662121999999,-88.03907735999999,-88.00486325,-87.92847901,-87.92112809,-87.91593463,-87.91899189,-88.01731696,-87.96708701999999,-87.97680689000001,-87.90439433,-87.94779278999999,-87.91892075,-87.91877617,-87.94712067,-87.94785941000001,-87.95027523,-87.92981398000001,-87.92985545000001,-87.92673490999999,-87.96730744,-87.9425548,-87.9855625,-87.95765763999999,-87.96077597999999,-88.02771101,-87.91846468,-87.95157755,-87.91122993,-87.94440332000001,-87.94826632,-87.89151464,-87.92950476999999,-87.91894575000001,-87.91485908999999,-87.90347224999999,-87.90327698999999,-87.90454441999999,-87.90353901,-87.88802337,-87.90556058,-87.91923011,-87.94821041,-87.98203241,-87.91099130000001,-88.02593688,-87.92725434,-87.91551334,-88.01248196,-87.95528984000001,-87.93569841999999,-87.97143690999999,-87.97128411,-88.00752977,-87.99535301,-87.94654195,-87.94731453999999,-87.92948063,-87.89239634,-87.93430015,-87.95813407,-87.93540385,-87.89523272,-87.92751045,-88.01273516000001,-87.93368341999999,-87.97737694999999,-87.88791637999999,-87.93120295,-87.94770487,-87.93783628,-87.9332077,-87.91909382999999,-87.94914557,-87.93905605,-87.93537956999999,-87.94728834,-87.94785981,-87.8772843,-87.88898612,-87.88509306,-87.88582838000001,-87.98772941999999,-87.98778731,-87.98441275,-87.95738222999999,-87.96971549,-87.93560417,-87.94774995,-87.90527947,-87.91399905999999,-87.94211908,-87.95393282000001,-87.94776954,-87.94226449,-87.94499714,-88.01056156999999,-87.9445474,-87.92392731,-87.93294738,-87.93298831,-88.00453143,-87.95763218,-87.96755745,-87.92878081000001,-87.91907474,-87.94813266,-88.00917552,-87.96742992,-87.89015567,-87.90269563,-87.93196387,-87.9480403,-87.9861238,-88.02588084999999,-87.99093120000001,-87.93914540999999,-87.94726955,-88.02746302,-87.94729164,-88.00708036,-87.93783024,-87.91942681,-87.90973488,-87.94821028,-87.90341779000001,-87.89684797,-87.88780532,-87.8922348,-87.91305418,-87.90322876,-87.95092203,-87.97609513,-87.93012978,-87.91944534,-88.00726562,-88.01589993,-88.03133011,-88.00735238999999,-88.03646048,-87.93390571,-87.9776653,-87.99555555000001,-87.9484535,-87.96698988,-87.99478058,-88.00727435,-87.93383141,-87.92910607,-87.95860091,-87.94825471999999,-87.95202638000001,-87.90503053,-87.90878379999999,-87.8879323,-87.9061528,-87.95748729,-87.95517751,-88.00606892,-88.01127169,-87.96639668,-87.92018354,-87.89947798,-87.92254253,-87.94516937,-87.91117737,-87.91430585000001,-87.93812459,-87.9294519,-87.93360362999999,-87.94713593,-87.95769033000001,-87.91730139000001,-87.93300859,-87.94583639,-87.91256954000001,-87.96742055,-87.94700154,-87.9381048,-88.03507097000001,-87.95705713,-87.94779320000001,-88.02284296000001,-87.89440492,-87.95223208,-87.92705251,-87.98331851,-87.92885588,-87.93331907,-87.91886879,-87.9259141,-87.95238736,-88.02544853000001,-87.95144326,-87.93143642,-87.89113263,-87.92924843999999,-87.99114542,-88.01639007,-88.02891378,-87.91318153,-87.91925182999999,-87.88827179,-87.91214300999999,-87.90816323,-87.91071122,-88.00383754000001,-87.98525238000001,-87.9573812,-88.00738841,-88.01622211,-87.96493043,-88.02482802,-87.96785798000001,-87.94784721000001,-87.95760039,-88.01716906999999,-87.93080186,-87.89154378000001,-87.94663205000001,-87.9446818,-87.94229398,-87.91701578,-87.96248418,-87.9577216,-87.97734191000001,-87.93061756,-87.97118140000001,-87.92719744,-87.96029299,-87.92714635,-87.94761665,-88.04586177,-87.93085833000001,-87.94767763999999,-87.98192777,-87.94563288000001,-87.94894411999999,-87.93300323,-87.94639305,-87.94827497,-87.91785127,-87.95587355000001,-87.94785075,-87.92724823,-87.92544925999999,-87.93818177,-87.90571482999999,-87.93801241,-87.94339752,-87.93304705,-87.94834779,-87.89846104,-87.87601828,-87.92926162000001,-87.924229,-87.92152014,-87.93056626000001,-87.9997712,-87.98604942,-88.01398522,-88.03019714,-87.94227994000001,-87.95466715000001,-87.98999059,-87.99599873,-87.96736743,-88.40337642,-89.55381496,-92.10367033,-89.56171381999999,-88.98289093,-89.69754902,-88.35568546,-92.73993274999999,-88.34673605,-89.10316597000001,-88.43062844000001,-88.19454389000001,-87.82296864,-88.2237382,-87.95285690999999,-89.47530809,-89.27896394,-89.28560914000001,-91.98445232,-90.06819251,-89.83473669999999,-88.0092356,-87.93465036000001,-87.92817469000001,-87.93155082,-87.9415951,-87.93777303,-87.9341448,-87.93304725,-87.92873557,-87.99250384,-88.027711,-88.00653695,-87.95715584,-87.93523558,-87.9898733,-88.0259343,-87.98390603,-87.89858257,-88.02252804,-87.93816307,-87.91258120000001,-87.95771917,-87.93298074,-88.01780083,-88.00748993000001,-90.91789917,-89.56965695,-89.40727789,-89.38182488,-89.39331924,-89.52591916999999,-89.47364113,-89.39491536,-89.52757566,-89.39319485,-89.45519831999999,-89.52184594000001,-89.39735118999999,-89.39409369000001,-89.3932653,-89.46127085000001,-89.36374343,-89.38586252,-89.52513887000001,-89.47356517,-89.38976475,-89.4818655,-89.28648262,-89.48874478,-89.35503236,-89.38671306000001,-89.35497362,-89.35527715000001,-89.38022173,-89.28674736000001,-89.39909161,-89.4041209,-89.47646002,-89.40436215,-89.47426127,-89.42664454,-89.37818652999999,-89.35409996,-89.38596192,-89.4059622,-89.50627826,-89.40216669,-89.36604344,-89.40288986,-89.40035397,-89.50201116,-89.39396359,-89.51168121000001,-89.42114872000001,-89.39908502999999,-89.3268994,-89.40249864,-89.37240892,-89.39407159,-89.37097013,-89.37698727999999,-89.39499606,-89.40146467,-89.38773337000001,-89.39406088,-89.39033922,-89.34754742,-89.37167501,-89.35304094,-89.35371644999999,-89.39124252000001,-89.38778010999999,-89.40521597,-89.46094136000001,-89.36370942000001,-89.38699204,-89.43619676,-89.39254463,-89.36340801,-89.36255457999999,-89.37731509,-89.35908705,-89.32235109,-89.35106863999999,-89.36252978,-89.38488443,-89.37547714999999,-89.38692708000001,-89.35914867,-89.31025471,-89.35974708000001,-89.35382421,-89.31217237,-89.38460388,-89.3129819,-89.32867623999999,-89.36539245,-89.39994763999999,-89.39739808,-89.2755513,-89.41025354999999,-89.38459279999999,-89.49697125,-89.36986127,-89.50603851,-89.51756247,-89.53352799,-89.47680966,-89.27363853,-89.39537738,-89.49661691,-89.41739625,-89.39368638000001,-89.34681045000001,-89.28424585,-89.30829687000001,-89.50296551,-89.45962926,-89.50149564,-89.42732928,-89.44325008,-89.40721868,-89.49385062,-89.34502055,-89.36351282,-89.39317722,-89.40408816999999,-89.46054521000001,-89.38071827,-89.36922353,-89.3135855,-89.30867191,-89.31019335000001,-89.31503437000001,-89.40068712999999,-89.39840499,-89.3159806,-89.29135875999999,-89.36119616000001,-89.30853260000001,-89.34180476,-89.38859812,-89.39412989,-89.38935847,-89.40396986,-89.40394256,-89.35414984000001,-89.36354732,-89.28621628,-89.69104718,-89.71866008000001,-89.5215573,-89.34290306,-89.09860926,-89.33790983,-89.28596514,-89.29579197,-89.27135206,-89.21167426,-89.24238444,-89.23351966,-89.2648657,-89.27617674,-89.21480509,-89.22626763,-89.24816215,-89.24639463,-89.21190525999999,-89.20963758000001,-88.03964275,-88.00868886000001,-88.01675547000001,-88.01577675999999,-88.05461357999999,-88.02221143,-88.0498592,-87.98496029,-87.97803686,-88.0061134,-88.02394275,-88.00076903,-87.9731756,-88.01192174000001,-88.01604313,-88.02507356,-87.96840149000001,-87.99272544999999,-87.99070639,-88.06699897999999,-88.03169002999999,-87.93473301,-87.92791068,-88.01317736999999,-88.05004230999999,-88.00641543,-87.96777659,-87.98111088,-88.06331412999999,-88.00911343,-88.00914447,-87.97020301000001,-87.98280115,-88.01848266,-88.05972773000001,-88.07965686,-88.00021718000001,-87.98117582,-88.02185709,-88.02352820999999,-88.05664527,-88.00408623,-88.01565239,-88.06156928999999,-88.06185197000001,-88.02468757,-87.97264125,-87.97423782,-88.06400379,-88.00925947,-88.01192577,-87.94156784,-87.99911564,-87.96893439999999,-88.05596980999999,-88.01039494,-88.02816785,-87.95183306,-88.05772286,-87.98071528,-91.09952846,-87.98040955,-87.90921557,-87.90960475999999,-87.89692110999999,-87.90569719,-87.91653445,-87.95768981000001,-87.94929959,-87.93082642,-87.92834252,-87.97454667,-87.95634348,-87.98478964,-87.94869860999999,-87.93321988,-87.95771612999999,-88.00598698,-87.96697245,-88.06373868999999,-87.94995978,-87.9110457,-87.95001456999999,-88.03485009000001,-88.03485001999999,-87.92112394,-87.91431369999999,-87.95076713,-87.94139029999999,-87.94686811,-87.90778064,-87.92596270999999,-87.95001112,-87.96711821,-87.95970205,-87.98214525,-87.97733485000001,-87.95842836999999,-88.01826699999999,-87.95844323999999,-87.97159214,-88.00754114999999,-88.02849971000001,-87.99146188,-88.02514755,-87.99136224999999,-87.95413673,-87.96708185999999,-87.92105884,-87.8954332,-87.89496123000001,-87.90334699,-87.95734308,-88.43484036,-88.44693955,-88.42203379,-88.45703220999999,-88.43662827,-88.48594833999999,-88.45880931000001,-88.44749699,-88.45051517,-88.44957908000001,null,-88.44698817,-88.47311001999999,-88.4469082,-88.43490352000001,-88.43920749999999,-88.43704676999999,-88.44697504,-88.47592179999999,-88.43185242,-88.42201402000001,-88.44685653000001,-88.4457152,-88.46238772,-88.47010621,-88.46672673,-88.47418388,-88.47579521999999,-88.42666985,-88.47331049,-88.4469077,-88.44465417000001,-88.43908454,-88.30325394,-88.1616528,-88.15781205,-88.33298381,null,-88.28972208,-91.23957179999999,-91.21926932,-91.23423554,-91.23898216000001,-91.24461671,-91.2085474,-91.24816722,-91.24956261,null,-91.22428244,-91.25249424,-91.21989822,-91.22434024,-91.25315619,-91.25479688,-91.25015517,-91.22683972999999,-91.23242698999999,-91.24817702999999,-91.24186863,-91.24734884999999,-91.21396919999999,-91.22498843,-91.25187248,-91.24679605999999,-91.22929564,-91.21575276999999,-91.24896676,-91.24678314000001,-91.24536413,-91.23836784,-91.25163867000001,-91.23976397,-91.21913886,-91.24179035,-91.24242091000001,-91.23985058,-91.22025336999999,-91.24530301999999,-91.23752905000001,-91.21602746000001,-91.25022564,-91.21718538,-87.95224378,-87.8257425,-87.92579597,-88.11662851,-87.85962609000001,-88.1776677,-87.83599276,-87.992369,-87.91489190999999,-88.01581584,-88.00083891,-87.97303192,-87.97152435,-88.08476062,-88.08476084,-88.09950597,-88.00160468,-88.06475561000001,-87.92539643000001,-88.03184444,-87.78445246,-88.0846779,-88.07181998999999,-88.11936157,-88.08318215,-88.07499262,-88.0657994,-88.06666459,-88.06637373,-88.082427,-88.06952796,-88.08344443999999,-88.07358399,-88.0544433,-88.06063224,-88.08276567,-88.06037309,-88.05181791,-88.05923017000001,-88.04674675,-88.04369258,null,-88.03757126000001,-91.48886962,-90.71069383,-88.76101808,-90.48028518,-90.47641183,-90.47574675,-91.13949185,-91.12859005999999,null,-91.14165843000001,null,-88.33056732,-90.82091692,-90.83449973,-90.81070149999999,-90.82084149000001,-90.81452562,-90.81502460999999,-90.8114862,-88.50153997,-88.45253441,-90.88271499,-88.99412191,-89.50832441,-89.50956341,-89.49817426,-89.51065432,-89.51150816000001,-89.50957119,-89.50028455,-89.48558188,-89.49566654,-89.52671669999999,-89.38697062999999,-89.41477277,-89.39574768,-89.41944529,-89.45885444,-89.41498161,-89.41944803,-89.42779508,-89.39645725,-89.38027879000001,-89.42434342,-89.37229827,-89.47541873,-89.41753543,-89.42287705,-88.03664901,-88.04901728,-87.87710297,-87.87444807999999,-87.93556244,-87.88634875,-87.9994373,-87.94967079,-88.00950408,-88.04380971,-88.001901,-87.96405253,-87.95488201000001,-88.11001127,-88.11480696,-88.0643961,-88.064891,-88.11130391,-88.10035121999999,-88.13801157,-88.13634007,-89.32071616,-89.3258227,-89.32624448999999,-89.32473331,-89.33622947000001,-89.32606131999999,-89.33659237000001,-89.32607172,-89.32626051,-88.00745999999999,-88.04675385,-88.04770867000001,-88.00837097,-88.06657379000001,-88.04746381,-87.99168404,-87.99751242000001,-88.00328100999999,-88.00332797999999,-88.00332519,-87.99750756,-88.02751856,-88.00744127999999,-88.06528062,-88.05750071999999,-87.99736722,-88.05501626,-88.02501226,-88.04398973000001,-88.06631256,-88.05612556,-88.03424943,-88.02081638999999,-88.02063323,-87.98746355999999,-88.03949455999999,-88.01407192000001,-87.99941849,-88.05800963999999,-88.00001711,-88.04659755,-87.9874655,-87.99106727,-88.00726032999999,-88.00738635,-88.04726158,-88.02986500999999,-88.00449971,-88.0120477,-88.02714544,-88.04627644999999,-88.01690370999999,-87.98263819,-88.00607428000001,-87.99682985,-88.00727556,-88.03970914999999,-88.04709818000001,-88.04692525999999,-87.98737835,-88.03672062,-88.04328884,-87.98747641999999,-87.99963081999999,-88.03621258,-87.98632262,-88.02713914,-88.02976704,-88.02711965,-88.02479834,-87.98747089,-88.01402355,-88.04701918000001,-87.98743917,-88.06829964000001,-87.97735507,-87.99618735999999,-88.00863381000001,-88.049007,-88.05698442000001,-88.03722632,-88.01253364999999,-88.04721038,-88.04708983,-87.98732121,-88.04977449,-88.008261,-89.81750008,-89.81746987,-91.46279513,-91.4573031,-91.43978897,-91.46056926,-89.63987432,-89.63985323999999,-89.64038872,-89.72938478,-89.74492189,-89.57230482,-89.55574489999999,-89.59645352,-89.58658988000001,-89.57910809000001,-89.58439084,-89.58439116,-89.58472763,-89.57337111,-89.56458041,-88.54210747,-88.46284545,-88.49549476999999,-88.46236252999999,-88.49022124,-88.49509190000001,-88.4636251,-88.46275391,-88.46556228,-88.46367246,-88.48499485000001,-88.46409997000001,-88.47476789,-88.46149607,-88.46489216000001,-88.48639621,-88.48344143,-88.45872477,-88.48551297,-88.46483523000001,-88.44012196,-88.44602689,-88.43162592,-88.40452723999999,-88.40407377,-88.44008214999999,-88.44011254999999,-88.44586386,-88.44613226,-88.42375977,-88.45320578,-88.44612008999999,-87.70479498,-88.15486,-88.73439655999999,-88.54208049,-88.66418401,-88.59717593000001,-88.59828902,-88.5649162,-88.72145869000001,-88.68087769,-88.4154384,-88.4088031,-88.36494515,-88.40084398,-88.39287323000001,-88.41370779,-88.40301442000001,-88.41547455,-88.41077315,-88.3752107,-88.35422783999999,-88.40400909,-88.40717239999999,-88.42579658,-88.44177424,-88.4009125,-88.41926590999999,-88.4282867,-88.43870397000001,-88.40587678999999,-88.39950143999999,null,-88.42567893,-88.41583335,-88.37897445999999,-88.36492977,null,-88.43562166,-88.43204623,-88.41581544,-88.43088539,-88.38356116999999,-88.42584553,-88.41533182000001,-88.39562232,-88.40595475000001,-88.4247826,-88.431363,-88.40724701000001,-88.41916701,-88.41432488,-88.42579910000001,-88.40097475,-88.35850942,-88.42177654,-88.38017856,-88.26212025,-88.23056453,-88.17158800999999,-88.19381988000001,-91.50254694,-91.51353545000001,-91.49165832,-91.47818853,-91.53869804,-91.50125826,-91.50626093,-91.5222225,-91.52848974,-91.46820374000001,-91.52993787,-91.46557575,-91.47343379,-91.47070432,-91.51486430999999,-91.503326,-91.50895914,-91.51901067,-91.54233947,-91.47995464,-91.51906493,-91.52263455000001,-91.49908162,-91.46846644,-91.4631881,-91.46820018,-91.49428558,-91.46969184,-91.46842205999999,-91.50976609999999,-91.43627495,-91.51899416000001,-91.46314621,-91.52997114999999,-91.46341538999999,-92.67473222,-92.30566367999999,-89.62275255,-89.68543450999999,-89.715205,-87.63041534,-87.63196273,-87.63888729,-87.62973746,-87.63723115000001,-87.61385826999999,-87.66035081,-87.62955580000001,-87.63951102999999,-87.63462825000001,-87.63067778,-90.07214553999999,-88.06840595,-89.08491381,-89.10066892,-89.08614579,-87.60225973,-87.58264939,-89.81717269000001,-89.81212486,-89.83608108,-89.81695996000001,-89.83710798,-89.83097853,-89.80686702,-89.81695698999999,-89.81195031999999,-89.8163133,-89.83229901999999,-89.81522664000001,-89.81218011999999,-89.77373713,-89.77683021,-88.83889458,-88.8260052,-88.00368989,-87.92620993,-87.92426969,-87.98248592,-87.9240137,-87.65766112,-87.66061076,-87.66823909999999,-87.69184924,-87.65215996000001,-87.66055458,-87.67260906999999,-87.67478916,-87.68792157,-87.66059067,-87.67476267000001,-87.68748071,-87.68858632,-87.65992765999999,-87.69903393,-87.69097209,-87.66086334000001,-87.66085809,-88.22672396999999,-88.22717854,-88.25023804,-88.24214893,-88.21870911000001,-88.23454129,-88.24662013,-88.25850907,-88.23156277,-88.22696451,-88.23563608000001,-88.22669427,-88.2354103,-88.25606033,-88.21892765,-88.23711711999999,-88.22905473,-88.22801707000001,-88.22180575,-88.19480518,-88.44262689,-88.25995098,-88.23949748,-88.23006588,-88.29962937000001,-88.37831409,-88.36928954,-88.37970568,-88.25761060000001,-88.34726714999999,-88.34202677,-87.53581345000001,-87.98510871000001,-87.61841138,-88.43269441,-88.51027852999999,-88.44556032,-88.48547225999999,-90.79358505,-91.2278476,-91.19378349,-91.18291278,-91.22025882,-91.23185097,-91.22014767,-91.23397663,-91.21213523999999,-88.33765065,-88.31561928000001,-88.31352984,-88.32416669,-92.41535272,-92.75645397,-92.70262025,-92.64704999,-92.73050574,-92.75855795,-92.73359735,-92.71095448,-92.7269252,-89.32292686,-89.40995405,-89.37757811,-89.18503249,-88.00862361,-91.24556226,-90.83005179,-90.37112164,-91.75428291999999,-91.73316669,-91.73327052,-92.62912901999999,-92.62327371000001,-91.92490454999999,-91.93434062999999,-91.92981742000001,-91.92975723000001,-91.93207544000001,-91.92965513,-91.92706238,-91.92974606999999,-91.93223527000001,-91.92979466,-87.12165081000001,-87.37858267,-92.18563325,-89.62539596000001,-89.63930503,-89.64543014,-89.64541808,-89.61594803,-89.62282034,-89.62361325000001,-89.63622923,-89.62899141,-89.63673805000001,-89.62151892,-89.6735164,-89.63924756999999,-89.62318617,-89.62315654,-89.63945137,-89.62281618,-89.61885932,-89.60891085,-89.64045523999999,-89.6550324,-89.62665819,-89.6418082,-89.65563964,-89.65543581,-89.61827725000001,-89.29237406999999,-89.00692694,-89.49822691999999,-89.51757468,-91.85509921000001,-91.25445892,-91.23870559,-91.08119813,-91.09118085999999,-91.07993317,-91.10448863000001,-91.06998831999999,-88.76978817,-89.40911086,-89.40900385,-89.42003099999999,-89.42508242,-89.4250851,-89.4160773,-88.54945814,-88.2920026,-88.68303632,-88.32404615999999,-89.4945194,-90.50477193,-90.50503084,-88.44582662000001,-88.4598572,-88.44143536999999,-88.43896049999999,-88.46913696,-88.45411888,-88.4490727,-88.47940195,-88.43722018,-88.46132844,-87.98449332,-87.96603635,-87.96607083000001,-87.98703628,-89.70128566,-89.70138439,-89.41127109999999,-89.40860176,-89.39026608,-89.40608493000001,-89.38270355,-89.38999821,-88.2665293,-88.26598318000001,-88.2837159,-88.27364577,-88.26656954000001,-88.27106938999999,-88.54822383,-88.56941335,-88.54249122,-88.53753684,-88.58325268,-88.53758430000001,-88.56768563,-88.56244415,-88.54161642,-88.52797588,-88.53758443,-88.54622568000001,-88.53014443000001,-88.54246202,-88.54475984,-88.542597,-88.57300096,-88.56738692,-88.57293132,-88.5375276,-88.54255512,-88.53758411,-88.53753358,-88.5352781,-88.54260085999999,-88.53758763,-88.56157759,-88.5693553,-88.57556468999999,-88.58322518999999,-88.5376473,-88.52989234,-88.53757634999999,-88.54603225,-88.5314635,-88.5274958,-89.4496012,-89.45114923,-88.39874810000001,-88.56717691999999,-87.91188723,-87.90667843,-87.88982651000001,-87.90680967,-87.89975779,-87.90942118,-87.9022034,-87.89454481999999,-90.68377757,-90.50354479000001,-90.41860388000001,-90.37613705,-90.31664524999999,-90.5569848,-90.43416474,-90.59809500999999,-90.89196244,-90.88139963,-92.37397452,-92.37653948000001,-89.29435663,-88.86683307,-88.24065193,-87.96072628,-87.94515106,-87.95677107,-91.48188715000001,-87.83294595,-87.83815863,-87.82686563,-87.82147876000001,-87.85451947,-87.82557978,-87.83204155,-87.83222831,-87.85504444999999,-87.83365452,-87.85573687999999,-87.83685403,-87.84581598,-87.83584825,-87.83777449,-87.83000475,-87.83587481000001,-87.82534224,-87.84361532,-87.85689709,-87.8238231,-87.85572088000001,-87.85183843,-87.82420848,-87.83571262,-87.86279562,-87.84574052000001,-87.86314392,-87.84522051,-87.82633781,-87.8873751,-87.83603432,-87.8795166,-87.8252674,-87.82345581,-87.81757183000001,-87.82308906999999,-87.83551034,-87.84037416,-87.83587552,-87.84573558,-87.8214797,-87.83220711,-87.83230562,-87.83045955,-87.82835145999999,-87.8484807,-87.84808202000001,-87.8369182,-87.84439919,-87.84770874,-87.86747764,-87.95045871000001,-88.02245134,-89.92636433,-89.4829113,-90.30998481,-88.47554212999999,-88.04411217000001,-87.92682176,-89.52775028000001,-89.55078158000001,-88.28191892,-88.05725687,-88.03218952,-88.05220375,-88.05189835,-88.06412072000001,-87.95809791000001,-88.22528689000001,-89.32836062,-89.13327201,-88.98603384,-91.11054221000001,-89.76875219999999,-89.92463499999999,-89.7616251,-89.75891793,-91.49241395,-92.1040615,-92.10429193,-92.1038894,-92.12574908000001,-92.10729913999999,-92.10393772,-92.01925335999999,-92.10233606,-92.08741748,-92.04767715,-88.44989587000001,-88.24858952,-87.5760906,-88.5735689,-88.53939179,-88.58557870999999,-88.74338183,-88.48633869,-88.49945197,-88.51911157000001,-88.4963966,-88.49840426,-88.49928980999999,-88.49572909,-88.47203248,-88.47154870999999,-88.50630954,-88.49915698,-88.51621022,-92.10109317,-92.02970225,-89.88227979,-89.86486141,-90.18288701,-90.17553270000001,-90.14135804999999,-90.18565549,-88.22978835000001,-87.98928766,-87.98752217000001,-89.28860213,-89.30077772999999,-89.29084335,-89.30106905,-87.95708603999999,-87.99843380999999,-87.98866399000001,-87.97350007,-88.00822947,-87.95930461,-87.98899371,-88.01200257000001,-87.94890097,null,-88.00838172,-88.00773008,-87.90998736,-87.84747294,-87.8454088,-87.87117141,-87.85428846000001,-88.13186897999999,-87.91408165,-87.9139962,-87.91170973,-87.93246061000001,-87.91582818000001,-92.53745360000001,-92.53752636,-92.54077733,-92.53748631000001,-90.49861545,-90.18037531,-87.93032237,-87.91305656,-87.92055305,-87.90272450000001,-87.89665205999999,-87.94573729,-87.93547737999999,-87.93533856000001,-87.90204691,-88.04720827,-88.04834274,-88.04893376,-88.94115623,-88.93503049,-88.72988558999999,-88.72811283999999,-88.74724453,-88.72604663,-88.07465495,-88.07865129,-88.07184175,-88.08644698000001,-90.58352426,-90.32983950000001,-89.65206320999999,-89.67839521000001,-89.6510296,-89.73454559,-88.6378031,-88.62304321000001,null,-87.87756117000001,-87.887762,-87.88743305,-87.88753409,-87.88504389000001,-87.88998365,-87.88742142,-87.89222649,-87.89721840999999,-90.84886625,-89.74220766000001,-89.74247124,-89.73139934,-89.76991725000001,-89.74248648,-89.7195873,-89.70808418,-89.71140118,-87.86479407,-87.86059969999999,-87.86490152,-87.86743959,-87.86024921000001,-87.86070966,-87.86751578000001,-87.86079672,-87.86491191,-87.86550323,-87.96122108,null,null,-87.96752628,-87.96624013,-87.97236121,-87.96769405000001,-87.96480966999999,-87.96853754,-87.84816459,-87.87046193,-87.84372725,-87.89841143,-87.80274793,-87.86664871000001,-87.8598863,-87.84527045,-87.86623096,-87.84902405,-87.87002463,-87.90482335999999,-87.87032386,-87.79821932999999,-87.86296944999999,-87.86892306999999,-90.07805190000001,-90.07000821,-91.50191129,-91.43195445000001,null,-91.41345334,-91.3881277,-91.42186889,-91.39800185,-91.40792859,-91.39045273000001,-89.24676153999999,-87.94119657,-87.93891431,-88.52236800999999,-88.15167233,-90.00809491,-89.9944538,-89.98044951,-90.01209921,-92.48361800000001,-92.47952372,-89.91659533000001,-89.67800948999999,-89.78392276,-89.79342484,-89.78732332,-89.79124170999999,-89.78018469,-89.79328919,-89.79641957,-89.53821286,-90.93717445999999,-88.08895978,-88.08845115,-88.10852319999999,-88.08933192000001,-88.12697891000001,-88.10447157999999,-88.10706183000001,-88.17504273,-88.40422597,-88.34418657000001,-91.23572316000001,-91.22347962000001,-91.42344575,-88.08230500000001,-87.88242828,-87.87918792000001,-87.88253731,-90.70959347,-89.60772710000001,-89.60698846,-89.59264594,-89.61250724999999,-89.61435021,-89.61365398,-89.58162529000001,-89.49486828000001,-89.61274160000001,-89.58197851,-90.29658273,-92.56064493,-92.56501554,-92.62302233,-92.48849174999999,-89.2091886,-89.19956172000001,-89.36016954999999,-89.35226355,-89.333916,-89.24051545,-87.85758829,-87.85011285,-87.8701799,-87.85993771,-87.85008151,-87.85081384,-87.86583361,-87.87305227,-88.10319834000001,-88.11119644,-88.10612458,-88.10325453,-88.08974689999999,-88.17569832,-88.11560713,-88.55093114,-88.9602792,-88.52431552,-88.93428959000001,-89.5408876,-89.44465289999999,-89.45556497,-87.79568114999999,-87.79360066,null,-87.79824286,-87.82606765,-87.79311306,-87.78692746999999,-87.78599092,-87.79288705,-87.80361933,-87.84398559,-87.78702638,-87.79301399000001,-87.8020186,-87.79172636,-87.80329537,-87.80157930999999,-87.78359924,-87.82607099000001,-87.78659764,-87.80406261,-87.78405109000001,-87.79759515000001,-87.81099514,-87.79237497,-87.78262038,-87.81847003,-87.82390551,-87.78612785999999,-87.79107596,-87.82586216,-87.78949642000001,-87.80558133,-87.81741318,-87.79284642,-87.80845337,-87.79829379,-87.78255939,-87.7982076,null,-87.80013884,-87.78592614,-87.78848281,-87.81168363,-89.0730332,-89.02628729,-89.00422288999999,-89.0526323,-89.00119768,-89.02193127,-89.0119885,-88.9621164,-88.99866478,-89.01232147,-88.99771118,-89.00781558,-89.00283575,-89.00819334000001,-89.00085061,-88.96840874,-89.03119820000001,-89.02483818,-89.02535152,-89.00178003000001,-89.00879764,-89.00328399,-89.02555486999999,-89.00570335,-89.02572932,-89.03095063000001,-89.051902,-89.00292562,-88.99658538,-89.00582491,-89.00279857,-88.99645138,-88.98772968,-89.01934512,-89.02468568,-88.98956299,-89.01096549,-88.98132748,-89.02631654,-89.02820611,-88.9801583,-88.43682092,-88.43732602999999,-88.43750764000001,-88.43276338,-88.43894664,-91.92544589000001,-91.92917305,-88.21655598,-90.29715547000001,-90.35859528,-89.06207211,-89.04048139,-89.04665042000001,-89.03485874,-89.04554567,-89.02930014,-89.0318023,-89.00699563000001,-89.02411451,-89.00003484,-89.03359076,-89.01195479,-89.04026036,-89.04096253,-89.01815383,-89.01921886,-89.03919929,-89.07142696,-88.94758241,-89.38754648,-89.38337251999999,-89.38340933000001,-89.37742067000001,-88.34914759999999,-88.32926147000001,-88.33761978,-88.34097743,-89.73313383,-89.73842671,-89.72150024,-89.62025681,-89.55225839000001,-89.54811233,-89.28515142000001,-88.14269817,-88.15644965,-88.10868907,-87.79639963,-87.91115992,-87.82060401,-87.83581912,-87.81132703,-87.80904986,-87.81590873,-87.98418974000001,-88.2781277,-88.28397485000001,-88.28174011,-88.29776785999999,-88.25251127,-88.27644302,-88.40265839,-88.16258567,-91.89367054,-88.46113495,-89.27086729,-89.28893100000001,-89.29751147,-89.30754457,-89.27572524,-89.31630518999999,-88.73274892000001,-88.70998360999999,-88.73051202000001,-88.71523366,-88.28273083000001,-90.34577768,-88.62561040999999,-88.61093588999999,-91.31620411,-87.88282876,-87.88280541,-87.88908177,-87.87778464,-88.38401845,-88.36504364,-88.36803765000001,-88.39222621,-88.36850501000001,-88.38535464,-88.37899541,-88.20942399,-88.1848651,-88.18105538,-88.1849892,-88.1896892,-88.16871415,-88.22581728999999,-88.21108126999999,-88.20128477999999,-88.1811256,-88.18105571,-88.19055863,-88.16871413,-88.73282596,-88.74690812,null,-88.74957218,null,-88.00889720000001,-88.00883168,-88.0081084,-87.99407203,-87.99818725999999,-87.72301279,-87.73388584999999,-87.72293808000001,-87.72291718,-87.74042052999999,-87.71304954999999,-87.71623449000001,-87.71960436000001,-87.71295524999999,-87.72197792,-87.72126717,-87.71795040000001,-87.72006349999999,-87.72514735999999,-87.73930546,-87.72198538000001,-87.71294211999999,-87.71295512,-87.73470983999999,-87.70621694,-87.75079162999999,-87.71625822,-87.72661545,-87.72464185,-87.80841359,-87.74662298,-87.7620895,-87.7628462,-87.75467178,-89.15230117999999,-89.15399617999999,-89.15425248,-88.83575051,-88.81008077,-88.83277852000001,-88.82885509,-88.06672030999999,-88.14653778,-88.12578121,-88.126653,-88.10673767,-88.8631994,-88.83701141,-88.83916923,-88.84169036999999,-88.84762393,-88.83702674,-87.89677167000001,-88.80744964,-88.91884405,-90.34933147,-90.33334428000001,-89.63513304,-87.97099732,-87.97730842999999,-87.87946374000001,-87.89584857,-87.89356005,-89.46945139,-89.4613767,-89.46964602,-89.46964265,-89.45515679,-89.46168937,-89.4877432,-89.46151046999999,-87.85038535,-87.81102901,-89.72852075999999,-88.59041377,-88.22087901,-91.47741704000001,-91.61051403,-88.2259229,-88.67403520000001,-89.40275487,-90.11839965999999,-90.79717968999999,-90.21084398000001,-89.21409647,-89.21496628,-89.49310704,-89.36392126,-87.944925,-87.93539060000001,-87.89792429000001,-87.94728046,-87.95826196,-87.96892844,-87.90733701000001,-87.94760164,-87.95859756999999,-87.99061322999999,-87.96750922,-87.88643767000001,-88.02310181,-87.95136467,-87.94868234,-87.909252,-87.99104994,-87.93372313,-87.94233878,-87.90675589999999,-87.98391429,-87.98533662,-87.93559088000001,-87.96177546,-87.95159699,-87.93735279000001,-87.94822822,-87.97942711,-88.00461661999999,-87.95407105,-87.93463357,-87.91243818,-87.93359113,-87.93821043,-87.92392715,-87.93373968,-87.95651401000001,-87.8849707,-87.89446846,-87.94779394,-87.90519721,-87.96230601000001,-87.99369612,-87.98983126,-87.90707999999999,-87.92876149,-87.96800849,-87.98058258,-88.02104368000001,-88.01465045,-87.98618682,-87.99191259,-87.96536834,-87.94779588999999,-88.03082646999999,-87.90338515000001,-87.95292727,-88.00379943999999,-87.92497349,-87.92056474,-87.91689253,-87.93294501,-87.92801314,-88.01872801,-87.91852498,-87.91601258,-87.91119418,-88.01259601,-87.90940826000001,-87.96007744000001,-87.91274249,-87.91527486,-87.90613049,-87.88778003,-87.90405902000001,-87.91900527999999,-87.91274187,-87.90531341000001,-87.95766755,-87.918509,-87.95518712000001,-87.97581261000001,-87.96081796999999,-87.96736224,-87.90529674,-87.90969518999999,-87.894288,-87.91764008,-87.89109987000001,-87.98445902,-87.94183270000001,-87.90598614,-87.89754238,-87.93796079000001,-87.94779316,-87.88502424000001,-87.88465562,-87.91703765,-87.92628726,-88.02822001,-87.95755396,-87.91409879,-87.91261363,-87.95357499000001,-87.90522591,-87.95774985,-87.98075532999999,-87.90740821,-87.91846959,-87.95770863,-87.90518039,-87.94442007000001,-87.92004986000001,-87.91847405,-87.92590806,-87.93946815,-87.99040511,-87.91438662,-87.9329475,-87.92675618,-87.91107239999999,-87.93089208000001,-87.9479213,-87.92820048,-87.96757027,-87.92819539,-87.94362151,-87.93885278,-87.94757610000001,-87.95749361,-87.94816516,-87.93469182,-87.93538604,-87.90423072999999,-87.89247327,-87.88637802,-87.90664266,-87.8850803,-88.00922785,-88.00478176,-87.96869674,-87.92964416,-87.91020394,-87.92879680999999,-87.96343752,-87.91449736,-87.91255184000001,-87.91569247,-87.96757026,-87.95181316999999,-87.93912133000001,-88.00501366,-87.94773545,-87.91123953,-87.94095184,-87.95657983,-87.94765841,-88.05945133,-87.98918093,-87.96042405,-88.00891611,-87.93892088,-87.96746817,-87.94499690000001,-87.92868448,-87.91399998,-87.9130445,-87.90275187,-87.91890318999999,-87.89934315000001,-87.88806151999999,-87.89804082000001,-87.91097233000001,-87.9050369,-87.89173734000001,-87.90887099,-87.96038776,-87.8952678,-88.01763273,-87.8780592,-87.89495087,-87.89813065,-87.95742002,-87.97269652,-87.99085113,-87.88589533,-87.88497405,-87.90813118,-87.88786232,-87.88350255,-87.91901335,-87.90429275,-87.9172662,-87.94665517999999,-87.94879993000001,-87.93362293,-88.00710793,-87.97332792,-87.91449683,-88.00562530000001,-87.91827814,-87.90547495,-87.87956749,-88.03021325,-88.03021325,-87.99090638,-88.00788597,-87.96779045,-87.96936501,-87.91764415,-87.90525061,-87.90894097,-87.95875608,-87.9504142,-87.93279871,-87.93300797000001,-87.95755386,-87.92814715,-87.95384961000001,-87.9479233,-87.96066383,-87.93042697,-87.93947918000001,-87.93894075,-87.91940965000001,-87.93383389,-87.95563446,-87.96709882,-87.95771598,-87.88913714,-87.91597793,-87.93370183,-87.91255083,-87.94862006,-87.92933678999999,-87.91608128,-88.00114533999999,-87.94801479,-87.95007158,-87.92860915999999,-87.9528091,-88.02220065,-87.94756602,-87.98750377,-87.90799370000001,-87.95763436,-87.92187145,-87.95766838999999,-87.9481959,-87.94814392000001,-87.95692381000001,-87.91882377,-87.88306040000001,-87.9065758,-87.96141470000001,-87.92814342,-87.92903609,-87.89498977,-87.91119549,-87.94091160000001,-87.93423745,-87.91393041000001,-87.91750412,-87.94777874,-87.91894743,-87.92979665999999,-87.94264477999999,-87.95763853,-87.93973833,-87.98509934,-87.90894986000001,-87.90904492999999,-87.91511135,-87.9047456,-87.90432674,-87.94779357,-87.91744565,-87.90903658000001,-87.95640763,-87.94450372999999,-87.90684197,-88.02706803,-87.98842203,-87.9671644,-87.97583837000001,-87.95736343,-87.94993107000001,-87.98615159000001,-88.00539498000001,-87.89953957,-87.90559546,-88.05280856,-87.93131738,-87.94772448000001,-87.95763812,-87.95771592,-88.007244,-87.95767678,-87.94831485,-87.94056071999999,-87.95261557000001,-87.93312702999999,-87.95176434,-87.93219593000001,-87.96729577000001,-87.92014638000001,-88.00493163,-87.97622816000001,-87.98963845,-88.00606673999999,-88.00281569000001,-87.93184554,-87.97145265,-88.00179267,-87.99103821,-87.94758668,-87.95766922999999,-87.95994856999999,-87.94709893,-87.96757374000001,-87.92912884,-87.95749084000001,-87.98022389,-87.97243281999999,-87.95746552,-87.95752019,-87.94777856,-87.95225155999999,-87.90524297,-87.89943592,-87.94477458999999,-87.93477643999999,-87.94789858999999,-87.96712666000001,-87.93567284,-87.9868616,-87.95769006,-87.95947525,-87.95836029,-87.96872731000001,-87.94776955,-87.95901984,-87.92303226999999,-88.02254188000001,-87.98851368,-87.94281698,-87.94683447,-87.94150093,-87.97751981,-87.933468,-87.96698440999999,-87.91707867,-87.96720352,-87.99674386,-87.90625000999999,-87.90346891999999,-87.91104713,-87.92595968000001,-87.9473289,-88.02503240999999,-87.96666566,-87.93433371,-87.94908442000001,-87.94699946999999,-87.89779463000001,-87.9345678,-87.89554457,-87.9142947,-87.92924963,-88.03485199000001,-88.03488152,-87.91121711,-87.94910355,-87.9505915,-87.95797561000001,-87.92680437,-87.9771161,-87.98994351,-87.96734732,-87.9894474,-87.96737005999999,-88.01614456999999,-87.96645725,-87.98743071,-87.9673992,-87.98643723000001,-87.97724171,-87.91248403,-87.92223024,-87.91405756,-87.9190942,-87.89392853,-87.91128922,-88.02075944000001,-87.90488967,-87.94077577,-87.91399453,-87.93322185,-87.90654483,-88.00620227,-87.98703632,-87.96733301,-87.97437589,-88.02956023,-87.99722645,-87.98556899,-87.95409087,-87.98192983,-87.93757445,-87.94767444999999,-87.94898474999999,-87.9762265,-87.94254926000001,-87.94286169999999,-87.9823866,-87.94370179000001,-87.98572392,-87.90092371,-87.89780387,-87.9435502,-87.9137327,-87.93312677999999,-87.94923292,-87.91823658,-87.94288702,-87.9463597,-87.91985441,-87.94785116,-87.9477977,-87.95792684,-87.95288366,-87.98299788999999,-87.92805983,-87.89554563,-87.92231507,-87.90025163999999,-87.91367927,-87.89375056999999,-87.92136462000001,-87.93452427,-87.91870504000001,-87.94828327,-91.41180079,-92.47895307,-91.34985531,-88.50523886000001,-88.25235381,-90.6372178,-88.33955159,-87.9449201,-90.06289178,-88.32413775000001,-88.30390919,-92.50026507,-89.86940092,-89.82623696,-89.47137972,-88.48266984999999,-89.48800971,-88.44586735,-88.46218472,-89.76821346,-89.25704268,-91.92907049999999,-91.23281725,-88.74690841,-87.93247782,-87.94043992,-87.93398881,-87.93708617,-87.9633109,-87.93963724,-87.90822835,-88.02958868,-87.90876183,-88.02580965999999,-89.57476372000001],3,null,"Crash Points",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":["#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#FAFA6E","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#808080","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#EDC346","#BD5721","#808080","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#808080","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#808080","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#808080","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#FAFA6E","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#808080","#808080","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#9B1C1C","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#EDC346","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#EDC346","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#808080","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#808080","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#BD5721","#FAFA6E","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#808080","#FAFA6E","#808080","#9B1C1C","#FAFA6E","#9B1C1C","#FAFA6E","#FAFA6E","#EDC346","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#808080","#D88D2D","#808080","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#FAFA6E","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#FAFA6E","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#808080","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#EDC346","#D88D2D","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#EDC346","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#FAFA6E","#808080","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#808080","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#808080","#BD5721","#EDC346","#D88D2D","#808080","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#808080","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#EDC346","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#808080","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#9B1C1C","#EDC346","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#FAFA6E","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#D88D2D","#FAFA6E","#808080","#FAFA6E","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#808080","#D88D2D","#EDC346","#EDC346","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#808080","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#FAFA6E","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#EDC346","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#FAFA6E","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#808080","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#808080","#EDC346","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#FAFA6E","#FAFA6E","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#EDC346","#FAFA6E","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#808080","#9B1C1C","#EDC346","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#FAFA6E","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#808080","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#D88D2D","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#808080","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#FAFA6E","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#FAFA6E","#808080","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#808080","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#EDC346","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#808080","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#808080","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#808080","#808080","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#808080","#EDC346","#9B1C1C","#EDC346","#FAFA6E","#808080","#D88D2D","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#808080","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#EDC346","#9B1C1C","#9B1C1C","#808080","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#9B1C1C","#D88D2D","#FAFA6E","#808080","#9B1C1C","#808080","#808080","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#EDC346","#EDC346","#D88D2D","#9B1C1C","#BD5721","#808080","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#808080","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#808080","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#808080","#D88D2D","#EDC346","#EDC346","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#FAFA6E","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#808080","#808080","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#FAFA6E","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#D88D2D","#808080","#BD5721","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#EDC346","#9B1C1C","#FAFA6E","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#EDC346","#808080","#9B1C1C","#EDC346","#FAFA6E","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#EDC346","#808080","#808080","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#FAFA6E","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#808080","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#EDC346","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#D88D2D","#808080","#808080","#9B1C1C","#808080","#BD5721","#FAFA6E","#FAFA6E","#D88D2D","#D88D2D","#808080","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#D88D2D","#808080","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#FAFA6E","#808080","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#808080","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#D88D2D","#FAFA6E","#808080","#9B1C1C","#EDC346","#EDC346","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#808080","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#808080","#EDC346","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#808080","#9B1C1C","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#808080","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#808080","#808080","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#9B1C1C","#808080","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#808080","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#EDC346","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#FAFA6E","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#FAFA6E","#EDC346","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#EDC346","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#EDC346","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#EDC346","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#808080","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#EDC346","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#808080","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#9B1C1C","#FAFA6E","#808080","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#BD5721","#808080","#808080","#BD5721","#D88D2D","#9B1C1C","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#808080","#EDC346","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#808080","#BD5721","#EDC346","#808080","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#808080","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#808080","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#EDC346","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#808080","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#808080","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#FAFA6E","#FAFA6E","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#808080","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#808080","#9B1C1C","#FAFA6E","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#D88D2D","#808080","#FAFA6E","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#808080","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#808080","#808080","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#808080","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#FAFA6E","#808080","#9B1C1C","#9B1C1C","#D88D2D","#808080","#D88D2D","#808080","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#FAFA6E","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#FAFA6E","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#EDC346","#BD5721","#9B1C1C","#808080","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#808080","#D88D2D","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#808080","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#BD5721","#FAFA6E","#FAFA6E","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#EDC346","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#808080","#EDC346","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#FAFA6E","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#D88D2D","#BD5721","#808080","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#EDC346","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#808080","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#FAFA6E","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#808080","#FAFA6E","#9B1C1C","#808080","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#D88D2D","#BD5721","#EDC346","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#808080","#FAFA6E","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#D88D2D","#EDC346","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#808080","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#808080","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#808080","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#808080","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#FAFA6E","#FAFA6E","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#FAFA6E","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#FAFA6E","#FAFA6E","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#808080","#BD5721","#FAFA6E","#BD5721","#EDC346","#D88D2D","#9B1C1C","#EDC346","#EDC346","#808080","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#FAFA6E","#D88D2D","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#FAFA6E","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#EDC346","#9B1C1C","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#808080","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#808080","#D88D2D","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#808080","#EDC346","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#808080","#BD5721","#808080","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#808080","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#FAFA6E","#EDC346","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#EDC346","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#EDC346","#808080","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#D88D2D","#808080","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#808080","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#808080","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#808080","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#FAFA6E","#EDC346","#808080","#EDC346","#EDC346","#BD5721","#D88D2D","#FAFA6E","#EDC346","#BD5721","#BD5721","#808080","#EDC346","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#808080","#D88D2D","#808080","#9B1C1C","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#808080","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#808080","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#EDC346","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#FAFA6E","#D88D2D","#BD5721","#808080","#BD5721","#808080","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#808080","#EDC346","#D88D2D","#808080","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#808080","#808080","#EDC346","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#808080","#D88D2D","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#9B1C1C","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#808080","#808080","#D88D2D","#BD5721","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#808080","#FAFA6E","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#808080","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#808080","#9B1C1C","#BD5721","#808080","#FAFA6E","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#9B1C1C","#9B1C1C","#808080","#BD5721","#808080","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#D88D2D","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#808080","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#EDC346","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#808080","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#808080","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#EDC346","#EDC346","#BD5721","#EDC346"],"fillOpacity":0.8},null,null,null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#fafa6e","#edc346","#d88d2d","#bd5721","#9b1c1c"],"labels":["No apparent injury","Possible Injury","Suspected Minor Injury","Suspected Serious Injury","Fatality"],"na_color":null,"na_label":"NA","opacity":0.5,"position":"bottomleft","type":"unknown","title":"Injury Severity","extra":null,"layerId":null,"className":"info legend","group":"Crash Points"}]},{"method":"setGroupOptions","args":["Crash Points",{"zoomLevels":[10,11,12,13,14,15,16,17,18,19,20]}]},{"method":"addPolygons","args":[[[[{"lng":[-87.80576536926374,-87.80573635416049,-87.80558219064822,-87.80558340635899,-87.81624254685386,-87.83583837037521,-87.85607161572247,-87.87506046502401,-87.8759475261995,-87.89559516119256,-87.93535955206289,-87.95315185015544,-87.9730375278498,-88.01221912944629,-88.0319789788399,-88.05220411438115,-88.07095374411769,-88.09062969080541,-88.11064564104764,-88.130102575075,-88.14993234365073,-88.16897448376692,-88.18830608933057,-88.1882209280114,-88.18829188066668,-88.1881691804811,-88.18810748808465,-88.21766821045806,-88.22245123932042,-88.23018655395818,-88.23822064818575,-88.252357677313,-88.26722974901116,-88.27575039928564,-88.2820199556428,-88.28618926116201,-88.29205611866679,-88.29600076319666,-88.30058720350813,-88.30251241910983,-88.30595524327022,-88.305963376007,-88.30585968304065,-88.30554911949791,-88.30528200846089,-88.30527604370745,-88.30505291283799,-88.30491279436573,-88.30464816659092,-88.29972764484418,-88.29483418347785,-88.28993920767398,-88.2850449976364,-88.28013540441833,-88.27987299706787,-88.27522504763775,-88.27275998728915,-88.27031470015933,-88.26540512461078,-88.26164869542015,-88.26051141850094,-88.25561771968852,-88.25072401987212,-88.2471456182716,-88.24583034491071,-88.24417673408415,-88.2409091087044,-88.24049456607392,-88.24041470235468,-88.23598789151274,-88.23106592113339,-88.2261447185854,-88.2212679271727,-88.21639114239521,-88.21151283821978,-88.20663529138332,-88.2017311055551,-88.19682691479861,-88.1919219466027,-88.19190370568407,-88.18701625615245,-88.18640992785092,-88.1829583823789,-88.18281232020587,-88.18204852051913,-88.18165901439937,-88.17946955368244,-88.17715457754194,-88.17226139739479,-88.1673674557595,-88.16243957048788,-88.161350992389,-88.16071199442663,-88.15751244227637,-88.15611425660751,-88.15602068827533,-88.15258531736291,-88.15115213677311,-88.14765819314043,-88.14274560819935,-88.13783302620548,-88.13292120518743,-88.1280093881367,-88.1231271570623,-88.11824492840718,-88.11336271054196,-88.10848049931815,-88.10355355021976,-88.09862661031038,-88.09369967207365,-88.08996074487341,-88.08877274753348,-88.08387272624933,-88.08345216069031,-88.07897195685963,-88.07407195561622,-88.06917120314709,-88.06868909563975,-88.06688841865255,-88.06422999117694,-88.05933593886715,-88.05444266806998,-88.04955016313106,-88.04461429546649,-88.04261319066721,-88.04005402497906,-88.03967995844212,-88.03474563940684,-88.02981133774425,-88.02800395830224,-88.02493742228458,-88.02407821576868,-88.02006352513071,-88.01518886667849,-88.01257248092571,-88.01031574769326,-88.00534342275265,-88.00325273696566,-88.00132176185159,-88.00096279436387,-88.00037186913313,-87.99539956606326,-87.99042803528214,-87.98549170742095,-87.98055539225315,-87.97561909984263,-87.97068358774436,-87.96580462293132,-87.96092567055045,-87.95931912815985,-87.95604673640433,-87.95234401629753,-87.95116781569621,-87.9462422320468,-87.94135011407451,-87.93645801724465,-87.931566703055,-87.92664741136366,-87.92172737929759,-87.91680812022969,-87.91509083000824,-87.9118896426873,-87.90700709861355,-87.90212533695077,-87.89724359323237,-87.89319119338911,-87.892361103032,-87.88740626927085,-87.88549776549459,-87.88245145835866,-87.87749667561013,-87.87254114767852,-87.86761104747816,-87.86267945394559,-87.85963521754393,-87.85774863649618,-87.85281860193008,-87.84790166439153,-87.84675605505629,-87.84298474819087,-87.83806785316249,-87.83315021213225,-87.82824956018523,-87.82335653058068,-87.81846427835363,-87.81357127791533,-87.81248015470909,-87.80848366766119,-87.80622082028164,-87.80622798889316,-87.80618348935872,-87.80524177751477,-87.80536748897259,-87.80549329702799,-87.8055604684795,-87.80564197048167,-87.80460360110388,-87.80427000349478,-87.80424034820942,-87.80411429622961,-87.80403994327992,-87.80385326447978,-87.80372744153452,-87.80368319340083,-87.80240687055431,-87.80225151448744,-87.80217715982694,-87.80229535950252,-87.80274101316861,-87.80306009007553,-87.80339313496222,-87.80343074463218,-87.80343813294058,-87.80323789293425,-87.80307415046529,-87.80305984419577,-87.80314875098719,-87.80327440611914,-87.80340843765023,-87.80375007687392,-87.803846331874,-87.80349695978254,-87.80320070956353,-87.80326718719155,-87.80325231084947,-87.80368326511977,-87.80374981146669,-87.80393535943124,-87.80447725438574,-87.80492239325453,-87.80507016527086,-87.80509991308102,-87.80559732417663,-87.80557484949004,-87.80559724600403,-87.8056633599568,-87.80573509393582,-87.80565762821357,-87.80573593715619,-87.80574418556755,-87.80582437503791,-87.80585536886095,-87.80585855381929,-87.80574585151936,-87.80553652954562,-87.80543340542393,-87.80534531913473,-87.80502706306937,-87.80498367610768,-87.80496423267404,-87.80498742040406,-87.8050332549839,-87.80531497625662,-87.80534483864231,-87.80539827147305,-87.80546785797421,-87.8055929327497,-87.80559443563436,-87.80556550187382,-87.80543346675854,-87.80541120644311,-87.80540031142736,-87.80546059706053,-87.80566147139429,-87.8057358449134,-87.80578890863306,-87.80608987252901,-87.80613852052622,-87.80625449323037,-87.80626304081389,-87.80624115456156,-87.8061159656048,-87.8061091139156,-87.80615502377648,-87.80616262620319,-87.80623813691622,-87.8063437258669,-87.80657672405775,-87.80695727160214,-87.80715124142021,-87.80726456202295,-87.80770483895712,-87.8079466875798,-87.80802347006544,-87.80809952531276,-87.80817556155884,-87.80827665230561,-87.80855578602461,-87.80857153967482,-87.80852834361032,-87.8085283312829,-87.80864851819015,-87.80873291730782,-87.80890783100944,-87.80914058679468,-87.80935129700235,-87.80946461336691,-87.80946611435581,-87.80942197008494,-87.80929716057433,-87.80929030146801,-87.80937470805689,-87.80962342416625,-87.80969947670594,-87.80973139958854,-87.80971842200016,-87.80985531904783,-87.80992294461298,-87.80994008891018,-87.8102015642486,-87.81045068841611,-87.81054503416573,-87.81066896482319,-87.81087646694425,-87.81100511461581,-87.81123628142606,-87.81125598332247,-87.81154502007988,-87.81171460612092,-87.8117238910817,-87.81168736179414,-87.81151021880252,-87.81140670913015,-87.81137853666888,-87.8115009890155,-87.81180505462834,-87.81179077929987,-87.811688016367,-87.81162254745205,-87.81159436417624,-87.81164911110527,-87.81180124621191,-87.81181720717824,-87.81180274035096,-87.81162615529585,-87.81161244157366,-87.81173489987863,-87.81184288043305,-87.81187201687578,-87.81189227087873,-87.81189600748996,-87.81196287994543,-87.81210147022389,-87.81215926306824,-87.81221088378906,-87.81229760945099,-87.81235163641686,-87.81243760835521,-87.81251213525435,-87.8125128209093,-87.81254552484965,-87.81254929181175,-87.81254236518677,-87.81251494422791,-87.81250424888729,-87.81265337366376,-87.81260688341115,-87.81276512951638,-87.81275443213318,-87.81277116208511,-87.81282443588645,-87.81281600364531,-87.81286583554859,-87.8128873158208,-87.81289122022652,-87.81289495255162,-87.81294060041741,-87.81299761114866,-87.81302866749513,-87.81301107570729,-87.8129398513624,-87.81264786290326,-87.81261205584107,-87.81268203960271,-87.81283345909115,-87.81282734646175,-87.81278394117291,-87.81295968563838,-87.81303578120396,-87.81310649933864,-87.8130447541337,-87.81304774939473,-87.8131070064033,-87.81324696398558,-87.81324920144019,-87.8132362348609,-87.81316463467536,-87.81314255372838,-87.81311435574391,-87.81329462233138,-87.81343607730447,-87.81351591802742,-87.8136475250347,-87.81367185226198,-87.8136776524584,-87.81358471781974,-87.8135403664419,-87.8131922656097,-87.81328377018085,-87.81332367974083,-87.81329455559774,-87.8131461039595,-87.81319270007697,-87.81319344428086,-87.81315122414537,-87.81302289212472,-87.81303961700102,-87.8130264640828,-87.81294421815359,-87.81299958131046,-87.81300032348143,-87.8129222480874,-87.81276163445879,-87.81290887480688,-87.81288828629768,-87.81283801339112,-87.81285398191962,-87.81281799300625,-87.81266799865301,-87.81267195614753,-87.81271761677269,-87.8127518038777,-87.81268554745965,-87.81267924716751,-87.81264250910033,-87.81255380885564,-87.81237185006403,-87.81245861267327,-87.81246085926058,-87.81236103459044,-87.81236500336951,-87.81231412198733,-87.81221818060699,-87.81225623013383,-87.81222192149383,-87.81223938390774,-87.81235689111868,-87.81218783770376,-87.8121885812575,-87.81267102006629,-87.81282920777795,-87.81316481417686,-87.81323556599257,-87.81325751892419,-87.81329706264169,-87.81335108537128,-87.81369583391032,-87.81380239382672,-87.81386402199577,-87.81389746745064,-87.81384556432353,-87.81378860574684,-87.81373700120378,-87.81364104589112,-87.81352244079332,-87.81310743982013,-87.81287041947425,-87.81273067010586,-87.81264917849447,-87.81262023224505,-87.81262097498077,-87.81271231487463,-87.81277470059234,-87.81276192582581,-87.8126908823062,-87.81235570918567,-87.81231247118892,-87.81230025748688,-87.81233523316268,-87.81231465318751,-87.81232068127274,-87.81234879595691,-87.81213016359573,-87.8121331817981,-87.81221234242308,-87.81216891269486,-87.81206607460304,-87.81206758811022,-87.81222062589104,-87.81229902805599,-87.81227987051921,-87.81236890649865,-87.81233328083015,-87.81217066531697,-87.81213428142468,-87.81228808281129,-87.81230406445009,-87.81230782979763,-87.81234815834351,-87.81234499618402,-87.81231087350461,-87.81222993865659,-87.8120968311725,-87.81206731400246,-87.81205283529074,-87.81216781590979,-87.81224471181675,-87.81225608873059,-87.81216866630099,-87.81202108325829,-87.8119551882336,-87.812061040514,-87.81211585317409,-87.81214388354742,-87.81224957711893,-87.81228515001706,-87.81232548579547,-87.81239477521245,-87.81268950714107,-87.81275042231051,-87.81266582968398,-87.81260030247601,-87.81252754600021,-87.81240123051008,-87.81211881693719,-87.8120534840711,-87.81204051470421,-87.81210980260646,-87.81246622055588,-87.81260329225969,-87.81270304534969,-87.81275024896271,-87.81276294956234,-87.81280140608571,-87.81315217987085,-87.81324224441225,-87.81325747227865,-87.81324526496807,-87.81317287898517,-87.81312107148229,-87.81306851344206,-87.81303786674471,-87.81297027064625,-87.81291084803949,-87.81291311224317,-87.81294357222711,-87.81294733970174,-87.81280558057196,-87.81281010329306,-87.81293572421934,-87.81284953142082,-87.81285940855905,-87.8127907832513,-87.81276936673508,-87.8127898772461,-87.81302663975413,-87.81316523997997,-87.81328653285139,-87.81348858771376,-87.81354114628613,-87.81355177880765,-87.81336816151546,-87.81333920448391,-87.81334222230157,-87.81348157592848,-87.81357598332687,-87.81376160810959,-87.8138890060327,-87.8139430832701,-87.81404202115816,-87.81418137880145,-87.81426282960426,-87.81439533034333,-87.81435951165425,-87.81427074722966,-87.81403380479736,-87.81359076659226,-87.81314809184727,-87.81297038274693,-87.8124957446276,-87.81228793807975,-87.81199307429189,-87.81174277562329,-87.81175719664608,-87.81168034153841,-87.81161043701944,-87.81158481789812,-87.81158479764132,-87.81168317958105,-87.81224423028179,-87.81241911179957,-87.81261884692042,-87.81295535033149,-87.81336587168401,-87.81378861643297,-87.81401828805262,-87.81470353904858,-87.8149568254827,-87.81518556014862,-87.81574409751137,-87.81591245908793,-87.816036811053,-87.81609297678594,-87.81608686944058,-87.81603580883376,-87.8160394315493,-87.81606048295353,-87.81597229398223,-87.81589452575666,-87.81517931045887,-87.8158267619996,-87.81649756965422,-87.81688751473732,-87.81717656153016,-87.81741730684323,-87.81760699722778,-87.81798636999012,-87.81806254423338,-87.81829108286389,-87.81853560292798,-87.81867498765966,-87.81881642921245,-87.81890503613249,-87.81902919028487,-87.81907900916863,-87.81915861376164,-87.81916923947065,-87.81915071188725,-87.81903192438814,-87.81903569239844,-87.81917650523434,-87.81933113718416,-87.81937074168279,-87.81936596654427,-87.81943293496148,-87.81946097215537,-87.81945533960358,-87.81940059389218,-87.81939062583129,-87.81933569056372,-87.81935459859443,-87.819238614241,-87.81924312559767,-87.8193032412555,-87.81943729397749,-87.81946844080871,-87.81943184247777,-87.81937276109045,-87.81927652022335,-87.81922562946843,-87.81924444557201,-87.81923239970989,-87.81913004246236,-87.81899071625763,-87.81884150371656,-87.81874145128202,-87.8185995687121,-87.81845618200458,-87.81838749172263,-87.81828530945661,-87.81821436526754,-87.81802374303221,-87.81799014748577,-87.8179459158239,-87.81782163211335,-87.81774917806808,-87.81767897592948,-87.81742126652632,-87.81737017829634,-87.81734881393949,-87.81734568949905,-87.81727547040997,-87.81720376973489,-87.81721588175228,-87.81714416911773,-87.81718377251715,-87.81715016779627,-87.81716227414583,-87.81722473563214,-87.8172269906042,-87.81712928464981,-87.81711853664891,-87.81694537916776,-87.81690189629659,-87.81679969618276,-87.81672723367278,-87.81670586468883,-87.81672373269595,-87.81668861810037,-87.81657879025057,-87.81640151678502,-87.81634279350361,-87.81632066753966,-87.81617386637696,-87.81617461536185,-87.81622795974681,-87.81619209146861,-87.81618134601229,-87.81615310455024,-87.81613845981461,-87.81613920169495,-87.81615519070967,-87.8161208306736,-87.81604835518235,-87.81594614514735,-87.81588204327193,-87.81583392198111,-87.81576219511427,-87.81574456603883,-87.81569569446627,-87.81555073277754,-87.81525933443825,-87.81519260878687,-87.81503724219908,-87.81501531458559,-87.81482221016579,-87.81475048765141,-87.81435683868078,-87.81401967869311,-87.81388734019359,-87.81363104212859,-87.813301496007,-87.81306802967471,-87.8129962852645,-87.81277805601405,-87.81235610150063,-87.81219735685917,-87.81211112589915,-87.81185475559653,-87.81161662146856,-87.81139762789367,-87.81136247205609,-87.81137380354492,-87.81130277849449,-87.81119979297851,-87.81120814386118,-87.81112729870868,-87.81108991643723,-87.81111352169906,-87.81108451615894,-87.81096703461783,-87.81082052981476,-87.81082424652374,-87.81077311347809,-87.81075321579972,-87.81069446692767,-87.81070281271937,-87.81068218080063,-87.81056376343729,-87.81049979152375,-87.8104265477468,-87.81032280482961,-87.81028693306139,-87.81020532074558,-87.81016942077633,-87.81013278995157,-87.8100450545659,-87.8099335043686,-87.80987456968799,-87.80984704069934,-87.8097516690389,-87.80974478378209,-87.80968603232124,-87.80967744436133,-87.80964155830002,-87.80962164607212,-87.80961154807287,-87.80952527719484,-87.80954125954912,-87.8095274984266,-87.80939621502705,-87.80930845722837,-87.80906546142694,-87.80900671004846,-87.80888065131042,-87.80871686520086,-87.80861311503175,-87.80849671637598,-87.80841189996347,-87.80818817563252,-87.80806671935457,-87.80784913035767,-87.80775447038569,-87.80762078624285,-87.80733048414213,-87.80717504897592,-87.80704118071888,-87.80686232621341,-87.80680301454855,-87.80675894573579,-87.80670946439898,-87.80667990467718,-87.80650885554019,-87.80645659594209,-87.80629012766943,-87.80612001842465,-87.80604425698101,-87.80576536926374],"lat":[42.6675020293892,42.66758969730409,42.66780947274644,42.66782250120244,42.66781594553232,42.66784383587923,42.66834379211917,42.66871071904078,42.66866413214,42.66897542056467,42.66938527148516,42.66954233768877,42.6695689349545,42.66955378527978,42.66966976257191,42.66973845729594,42.66977480387198,42.66964960727013,42.66942686869771,42.66932602292127,42.6692792493547,42.669380098871,42.66939089790771,42.65489052392997,42.64044563174852,42.62594530133406,42.61138455764456,42.61119444377741,42.6111401289402,42.61108109177611,42.61105598799626,42.61094980590028,42.61100196533954,42.61100641176651,42.61097648211404,42.61092721431026,42.6109003092111,42.61083214646072,42.61077337244595,42.61080860185216,42.61075474772304,42.59625026180046,42.58177455431866,42.56723131009677,42.55274341287518,42.53822444333841,42.52379734982025,42.50931038478156,42.49469593359601,42.49469680519761,42.49469753606669,42.49469803641379,42.49469833470053,42.4947050907216,42.49470551436425,42.49471176822821,42.49471501402979,42.49471823042148,42.49472435568187,42.49475283150505,42.4947614628481,42.49479822838691,42.49483477621573,42.49486085639066,42.49487041840509,42.49487590216594,42.49488516344728,42.49488639463665,42.49488657399112,42.49489913235875,42.49491287993072,42.49492628732759,42.49495593478434,42.49498522684164,42.49501443337055,42.49504358677201,42.49509982836098,42.49515586159358,42.49521237780069,42.49521195130109,42.49526726414293,42.49527272662692,42.49530288970455,42.49530408834662,42.49531082796023,42.49531421529677,42.49533347816288,42.4953535187918,42.49539601013409,42.49543828013378,42.49547079420979,42.4954779567501,42.49548218907975,42.49550324878453,42.4955124124839,42.49551301775016,42.49553548708257,42.49554487291186,42.49556751574962,42.49559647545422,42.49562522377302,42.49565391291131,42.49568224906658,42.49568764232858,42.49569296726126,42.49569794611987,42.49570271929712,42.49570301942585,42.49570311008282,42.49570313221182,42.49570291004829,42.49570279961831,42.49569313534978,42.49569229130329,42.49568325183252,42.49567316837759,42.49566286373247,42.49565994320097,42.4956489924443,42.49563281293187,42.49560278342985,42.4955724120359,42.49554199348889,42.49548768630267,42.49546561231589,42.4954374794895,42.49543332930632,42.4953787648009,42.49532398791258,42.49530921404105,42.49528410731563,42.49527703343391,42.49524388331513,42.49520385938243,42.49518228092766,42.49516351171201,42.49515781591108,42.49515544486791,42.49515315391216,42.49515265760484,42.4951519133122,42.49514564788951,42.49513917514413,42.49507865077078,42.49501791618856,42.49495696671137,42.49489567712418,42.4948499599384,42.49480417000256,42.49478893160688,42.49475802893303,42.49472286558316,42.49471168622586,42.49462743048887,42.49454356297518,42.49445949103066,42.49437522110922,42.49430951225184,42.49424343870093,42.49417745108208,42.49415437129372,42.49411111975784,42.49403947232381,42.4939676273036,42.49389557198032,42.49383575251311,42.49382343943927,42.49373188975265,42.49369653795429,42.49364013331135,42.49354801455516,42.49345595387948,42.49337695382737,42.49329757675369,42.49324861759923,42.49321813548407,42.49313850377098,42.4930764880565,42.49306200006501,42.49301412774161,42.4929515492986,42.49288889083763,42.49284111504909,42.49279299636466,42.49274468146297,42.49269628543182,42.49269008633156,42.49266759334045,42.49265481320264,42.4932110304883,42.49324394674319,42.49322745528464,42.49367759471859,42.49386419231845,42.4942484872162,42.49444070672216,42.49457784300377,42.49328777195598,42.49326581491204,42.49326030011477,42.49327688941133,42.49322181227931,42.4931010639722,42.49295289339349,42.49291434634632,42.49296384759596,42.49347980305647,42.49364444938804,42.4936883166007,42.49408912130623,42.49476443133515,42.49486322785341,42.4949345643864,42.49500600497096,42.49509924799331,42.49522547389393,42.49542318185549,42.49548356199002,42.49552201656098,42.49612600839689,42.49652661984182,42.49675166885054,42.49678454057396,42.4969712699066,42.49709199482048,42.4973391769604,42.49735016209181,42.49743800354187,42.49747090298671,42.49796501939074,42.49841530248924,42.49871712436161,42.49930454277419,42.49942525982523,42.49952418431501,42.49969978957145,42.50004097104791,42.50008113827347,42.50029946728936,42.50075945593084,42.50107631936432,42.50112531586262,42.50131687951388,42.5016467906902,42.50193362416511,42.50201143080371,42.50205068960509,42.50210312713641,42.50214746380438,42.50231185870334,42.50236647558821,42.50240435947433,42.50241791784184,42.50243396957961,42.50249380643088,42.5026354252992,42.50299564131665,42.50306138275784,42.5031273802399,42.50318353020246,42.50321109996111,42.50339198408365,42.50345167431055,42.50347156020223,42.50349817252526,42.50354689191941,42.50418471133716,42.50438137029924,42.50463221787931,42.50469232568653,42.50473087979937,42.5047868782864,42.50480883612062,42.50527953772431,42.50530135647633,42.50533896424828,42.50538657266893,42.50544520810924,42.50565666168982,42.5058089592989,42.50598363574048,42.50698897655753,42.50740390862538,42.5076663902634,42.50779743573963,42.50801600458644,42.50845370989386,42.50891212872664,42.50904905835345,42.50913138755329,42.50917529057406,42.5093060550637,42.50956839913623,42.50996178615321,42.51028916322034,42.51052901704204,42.51076940617719,42.51087890478766,42.51094489686234,42.51105507607677,42.5111207961201,42.51136132864598,42.51179819949692,42.51197300537461,42.5121480916883,42.51234539535426,42.51267318954033,42.51306747678046,42.5132518498583,42.51393365554028,42.51459889728503,42.51481640310283,42.51534150012255,42.51593531248015,42.51630360924458,42.51717858515838,42.51761669979579,42.51831619501276,42.51892869730559,42.51912037445381,42.51916428026728,42.51926938072954,42.51935759785652,42.51944542293637,42.51981712179564,42.52056586542369,42.52062609550332,42.52075822666565,42.52088994778118,42.52102167040029,42.52126234390877,42.5216338998493,42.52174339723018,42.52178730131838,42.52194165861071,42.522029342215,42.52240103656129,42.52286053781354,42.52311563661952,42.52329838002565,42.52364894955385,42.52400016508974,42.52436766819372,42.52467382500234,42.52546193036343,42.52574584534028,42.52583298524358,42.52607312605049,42.52646670378348,42.52690487767649,42.52705788757813,42.52727703989989,42.52771521186664,42.52780319252601,42.5280223501562,42.52845900020591,42.52876626010904,42.52926851323271,42.52950962054426,42.52959717653756,42.5296841686387,42.53001297891727,42.53067820938525,42.53143632905848,42.53176044845301,42.53217673287835,42.53230789769781,42.53274574391148,42.53362195414394,42.53412591174207,42.53442214728169,42.53487288872664,42.53504836881442,42.53531085949154,42.53563864016403,42.53577008679284,42.53587985174835,42.53638285721753,42.53653570965514,42.53692977798503,42.53743401598405,42.53774067482091,42.53841945159995,42.53905403573238,42.53931692349351,42.53944851344792,42.53973362668933,42.5397557172596,42.53993120705391,42.54128599521375,42.54161625940019,42.54211982788884,42.54268868667114,42.54290752802203,42.54348270516104,42.54383368292827,42.54386140270883,42.54389063834412,42.54412567389772,42.54444316896714,42.54447075372348,42.54449338729643,42.54466298658877,42.54475066032926,42.54484806511692,42.54488304344707,42.54501436351821,42.54515129932231,42.5452832621224,42.54539800598275,42.54548568210723,42.54565078859599,42.54569457667591,42.54601186735628,42.54618736054612,42.54634089477852,42.5464285770817,42.54654369255744,42.54674105745875,42.54682386740187,42.54691127339014,42.54732729327701,42.54743718343087,42.54753035367811,42.54755793330387,42.54759127467484,42.54759230140589,42.54774521911821,42.54794239204831,42.54840298838804,42.54879057310821,42.54887430505841,42.54894057251848,42.54900616513104,42.54926919536351,42.54953194730338,42.55015569243011,42.55031005547605,42.55041954138775,42.55181907540484,42.55278214173368,42.55370046768459,42.55402868178593,42.55475148490188,42.55501423973531,42.55523294541903,42.55621701457407,42.55645740475313,42.55674182155344,42.55709211483344,42.55779353491842,42.55805120296016,42.55811185133479,42.55817811958475,42.55821708302221,42.55826319332877,42.55833577183942,42.55843511525697,42.55852319141202,42.55858904876016,42.55867672289928,42.55887334662646,42.55913597282872,42.55919651161562,42.55933417477326,42.55968811982759,42.55977073409291,42.55990234519294,42.5601868172191,42.56027464953501,42.56060316958132,42.56093155390796,42.56115292832927,42.56130621815718,42.56154636837559,42.56161265666982,42.5617013065676,42.56174509307898,42.56198454646197,42.56222468332847,42.56279459744605,42.56316607392973,42.56324869248542,42.56328315584139,42.56334380717777,42.56360508357997,42.56367067590973,42.5638896889873,42.56406464932792,42.56465611981154,42.56482628767795,42.56487638251513,42.56489424261129,42.56491098355078,42.56495488712433,42.56510707968594,42.56525966344554,42.5654786801931,42.56558366526715,42.56562347928612,42.56567892620419,42.56578732309856,42.5659182407682,42.56664102267563,42.5675162636313,42.56861136121089,42.5687643725796,42.56889514947656,42.5691550321436,42.5692639795836,42.56948383324519,42.56957221162734,42.569627666416,42.57084489476124,42.57084231412746,42.57090326176406,42.57099109455302,42.57114367705664,42.5715125257288,42.57170833235759,42.57188260259606,42.57201351743682,42.57230375267268,42.57235809668131,42.57243120742177,42.57249062088341,42.57253424718628,42.57264390379003,42.572754101093,42.57277660953532,42.57275520746079,42.57269524055947,42.57264667656658,42.57266917752221,42.57275688113914,42.57282218673837,42.57301938797033,42.57339321385091,42.5736123796982,42.57398342839254,42.57453208192219,42.57464160262018,42.5749709484536,42.57538745463055,42.57569388258144,42.57645835686709,42.57669795306231,42.57684448908774,42.57690280334807,42.57694601862665,42.57709931115388,42.57721075892943,42.57725480995159,42.57740809999217,42.57771341603343,42.57799733551838,42.57837332642572,42.57845427672835,42.57854128073181,42.57906617168251,42.57939329845351,42.5797649094189,42.58007037683311,42.58015834040803,42.58019210536258,42.58023837620223,42.58036330995849,42.58054312438962,42.58057237045076,42.58059904615831,42.58063954140935,42.58075210078596,42.58087521884888,42.58087662047699,42.58096182601915,42.58489688245482,42.58774020308362,42.58780605317008,42.5879548301036,42.58861659452232,42.58882128253309,42.58914295347819,42.58967027673621,42.59054247192913,42.591305005284,42.59164230141422,42.59250073654697,42.59292543678433,42.59324624943974,42.59448385944141,42.59476693290404,42.59504508752719,42.59526903703575,42.59533476794611,42.59537910271051,42.59538437841795,42.59545780573098,42.59597603208385,42.59604335624562,42.59606263897835,42.5992037223961,42.60252858441475,42.60251026954396,42.60258880450779,42.60289422026797,42.60324369132198,42.60403028743067,42.60424884608474,42.60472963314319,42.60542937581424,42.60595432911238,42.60639869639589,42.60667602687035,42.60715735302296,42.60747629737741,42.60816445631089,42.60853682290534,42.60891483139693,42.60965492934105,42.60998354780768,42.61140679017011,42.61197565675399,42.61221631259681,42.61385951929968,42.6146698495375,42.61596234426842,42.61684417759177,42.61732097055464,42.61780297452011,42.61821968503665,42.61938072138427,42.62036725231305,42.62087105864514,42.62161569384281,42.62240365963896,42.62321415250962,42.62330196174034,42.62335711881322,42.62340692222506,42.62346744483821,42.62386712138338,42.62414661464306,42.62432786552511,42.62447660835129,42.62503926093395,42.62587455168356,42.62661997748997,42.62719019605441,42.62778196158595,42.6280452423766,42.62837426727907,42.62868187266962,42.62905438364296,42.62916413733468,42.62936184807424,42.62958123536976,42.63004155339016,42.63030580864719,42.63039362000966,42.63050324261253,42.63096329143016,42.63148931594455,42.63173066414978,42.63227809381069,42.63258515313893,42.63284775900747,42.63319846217395,42.63374603328324,42.63405241241804,42.63427139613431,42.63501653444688,42.63545476790948,42.63600330830538,42.63617864118742,42.63637635688831,42.63659573884748,42.63670536416901,42.6370009025941,42.63724210568254,42.63748357327879,42.63756109540982,42.63764904272445,42.63773670047809,42.63792371182898,42.6380112439797,42.63814241507468,42.63831789222696,42.63871222602444,42.6388875689056,42.63976373949077,42.63987322025818,42.63996090622835,42.64024573701124,42.64048707238802,42.64070659407706,42.64099170202603,42.64143006845782,42.64173698571138,42.64221898180453,42.64256981354357,42.64305233858754,42.64368909519702,42.64374410401259,42.64378321047822,42.64382162832348,42.64474265393167,42.64498385855369,42.64588388921035,42.64645505045737,42.64662010010782,42.64701565428943,42.64758681394596,42.64813546569052,42.64839875965863,42.64899117968891,42.65002278374937,42.65052741123709,42.65072528563643,42.65133948662498,42.65210740177812,42.65259033776834,42.65287529416032,42.6532694836508,42.65364225946252,42.65377410221609,42.65390554073183,42.65394972110244,42.65399375274654,42.65412505542872,42.65421286495337,42.65436665938964,42.65465216268586,42.6550025893908,42.65511248508948,42.65537536463787,42.65546330641892,42.6556165506685,42.6557481409514,42.65581988326173,42.65616521600876,42.65627511434948,42.65636317991807,42.65645099835285,42.65649516458631,42.65669245300504,42.65675844617877,42.6568683461927,42.65691813182531,42.65698960897988,42.65723066964915,42.65736265541561,42.65742837470751,42.65751631466642,42.6581735220705,42.65832690825169,42.65858992702556,42.65920320498029,42.65948845100529,42.65959794149217,42.65970742783098,42.66003669623942,42.66019049927576,42.6604436154943,42.66053141642197,42.66060329645579,42.66059861768864,42.66066487262605,42.66093926728529,42.66142152699052,42.6621892904429,42.66275935031134,42.66339567261095,42.66363713330669,42.66368705644526,42.66448253154493,42.66456538139777,42.66457703148786,42.66456685182827,42.66458358211845,42.66464408582959,42.66490175280677,42.66491821446517,42.66492464132669,42.66495769473431,42.66548425315896,42.66552883614438,42.66620824953567,42.6675020293892]}],[{"lng":[-87.8038395664413,-87.80462076639532,-87.80477250886301,-87.80377927159864,-87.8038395664413],"lat":[42.49263535687786,42.49267453338506,42.49253265340758,42.49248941302695,42.49263535687786]}]],[[{"lng":[-90.20613303555834,-90.21042333380959,-90.2154301202556,-90.22043689942566,-90.22544328142804,-90.23045004011641,-90.23536837070056,-90.24028708233807,-90.24520579950943,-90.25012489569316,-90.25508913522854,-90.26005374614142,-90.26501834386002,-90.26998331033923,-90.27497014717294,-90.27995735756919,-90.28494455643069,-90.28993174733469,-90.29485082942075,-90.29977027625775,-90.30468933543456,-90.30850532106113,-90.31347498522886,-90.31844502864321,-90.32341467879128,-90.32838394403235,-90.33330605892604,-90.33822778086727,-90.34314949150256,-90.34807043000968,-90.35302552313551,-90.35797984488636,-90.36293454657041,-90.36788923827908,-90.37281768181127,-90.37774649187101,-90.38267529345111,-90.38760446064188,-90.3925466995592,-90.39748893592778,-90.4024311721482,-90.40737378550999,-90.41229372655202,-90.41721365931954,-90.422133587118,-90.42691400075881,-90.42663468494735,-90.426258214542,-90.42626062869508,-90.42611799882891,-90.42609497363352,-90.42599860648318,-90.42592386849259,-90.42593906034216,-90.42582643360319,-90.42595233244536,-90.42605578586037,-90.4260877439954,-90.42585004725876,-90.42597517084566,-90.42606685079036,-90.42575701805984,-90.42629534813233,-90.42658689794838,-90.42680191136854,-90.42177484378166,-90.41687900858007,-90.41198316748073,-90.40871192281519,-90.40708694997967,-90.40217857277227,-90.39727019373655,-90.39503586581775,-90.3923618134812,-90.38745344053109,-90.38257276982414,-90.3776920903467,-90.3751182402853,-90.37511177407708,-90.37281140131046,-90.36793032801778,-90.36300318076712,-90.35807526903231,-90.35314734646391,-90.35179022938632,-90.34821942303509,-90.34368676982724,-90.34333456542264,-90.342300767997,-90.3384493182776,-90.33356444022522,-90.32867955498314,-90.32614522603296,-90.32380678215647,-90.31893475773994,-90.31754264169084,-90.31406272783427,-90.30934055722965,-90.3091910765238,-90.30875668915073,-90.30414427544899,-90.29924886749222,-90.29435269635526,-90.28945652274646,-90.28459162164624,-90.2797267164559,-90.27486180868844,-90.2699968930357,-90.26820230405622,-90.26556253169061,-90.26506310695657,-90.26012931407163,-90.25865880145095,-90.25519552053622,-90.25190796943551,-90.25176989509993,-90.25026210412942,-90.24741468711247,-90.24654479139627,-90.24535995052166,-90.24045817156143,-90.23555639112715,-90.23065498269688,-90.22575774876174,-90.22086089087975,-90.21596364464537,-90.21106639717884,-90.20610147269296,-90.20113578112317,-90.19616970176243,-90.19120362010132,-90.18654836359462,-90.18165270970725,-90.17675704368196,-90.1718609903922,-90.16793133619376,-90.16730295358602,-90.1668974757455,-90.16193357291301,-90.15696967305288,-90.15200500870716,-90.14712859209016,-90.14653140019087,-90.14648309094076,-90.14225255128653,-90.13737575118003,-90.13249856660539,-90.12849132522983,-90.12756473433687,-90.12543083326045,-90.12263089520681,-90.11769667181065,-90.11276206882218,-90.10783579117641,-90.10290951761468,-90.0979828624686,-90.09305659014109,-90.08817145323953,-90.083287073658,-90.07840268837222,-90.07408734051673,-90.07351791628462,-90.06867222041649,-90.06820853641737,-90.06377670706566,-90.05888119669314,-90.05398569677295,-90.05365171974169,-90.05345430355084,-90.04907533328317,-90.04798592101996,-90.04494857403486,-90.04416536751665,-90.04223797778764,-90.03925503631469,-90.03691380206945,-90.03434510458509,-90.03374676766148,-90.0294344236351,-90.02452414013193,-90.01961349468647,-90.01769564646736,-90.01757316682325,-90.01470400620641,-90.00975421810512,-90.00480520819592,-89.99985621963511,-89.99948688323876,-89.99490763296978,-89.99001649901722,-89.98512500556095,-89.98023390876479,-89.97534244929317,-89.97039473419257,-89.96544704062019,-89.96049936958791,-89.95555096408094,-89.95078540154985,-89.94588974911652,-89.94099371598833,-89.93609768000977,-89.93121154427678,-89.92632616497663,-89.92144002273018,-89.91655387962209,-89.91161753402035,-89.90668118451588,-89.90651154411161,-89.90343212348378,-89.90174483341048,-89.89680924654469,-89.89188663107333,-89.88696477933249,-89.88204292822323,-89.87712108296962,-89.87353659248197,-89.87217643367052,-89.86723178726682,-89.86526458001042,-89.86228638392573,-89.85734098461162,-89.85243127274171,-89.84752079732895,-89.84261108472315,-89.83770072858296,-89.83768375473755,-89.83773885838278,-89.8378102305756,-89.83798625050315,-89.83796803598898,-89.83795055351337,-89.83766020767615,-89.83745303876096,-89.83738475297326,-89.83734666118659,-89.83722726779084,-89.83749454885955,-89.83759983771377,-89.83770220070957,-89.83785217197948,-89.83814320993281,-89.83827250236085,-89.83863360851912,-89.83856530077314,-89.83847452501898,-89.83848835112659,-89.84808280558327,-89.85288040030791,-89.85767721804758,-89.86266507695976,-89.86765254735649,-89.87264001508514,-89.87762747244204,-89.88260391513013,-89.88757995694669,-89.89255599013872,-89.89753277364309,-89.90230559786441,-89.90707881572368,-89.91185204124547,-89.91662527750319,-89.92156596902009,-89.92650705135115,-89.93144775173319,-89.9363888428464,-89.94130853849008,-89.9462286196479,-89.95114870399001,-89.95621250712223,-89.96117194046377,-89.96613176664563,-89.971091602236,-89.9760510649284,-89.98099793473942,-89.98594404041901,-89.99089053411856,-89.99583741326566,-90.00077703642071,-90.00571705397469,-90.01065707107468,-90.01559671191765,-90.02057113066299,-90.02554516543877,-90.0305188187706,-90.03549323608421,-90.0403973601813,-90.04530225609359,-90.05020677722355,-90.0551116892225,-90.06003144666143,-90.06495157783235,-90.06987132587393,-90.07318026354952,-90.07815085734421,-90.08312221130642,-90.08809318443679,-90.09306377624543,-90.09798211625838,-90.1029000871533,-90.10781806916931,-90.11273644073898,-90.11766738668166,-90.12259872354721,-90.12753044466156,-90.1324614093909,-90.13738706519592,-90.14231196303859,-90.14723687228049,-90.15216140699677,-90.15713803824518,-90.16211430045706,-90.16709096251181,-90.17206802186219,-90.17698746331614,-90.181907667709,-90.18682787349907,-90.1909514865238,-90.19581973296187,-90.20068760166028,-90.20436439849836,-90.20613303555834],"lat":[42.81487995606373,42.81488205713192,42.81482213789677,42.8147619979368,42.81470163619644,42.81464106029107,42.814650798775,42.81466046627596,42.81466992734536,42.81467903097794,42.81460495815611,42.81453052760504,42.81445602473427,42.81438116286102,42.81432812125881,42.81427486400063,42.81422153427981,42.81416784144031,42.81410060197809,42.81403314842357,42.8139654894203,42.81391284969798,42.81387999191973,42.8138467775513,42.81381348417213,42.8137799786461,42.81372219430185,42.81366434061071,42.81360613677624,42.8135478623835,42.81351572325369,42.81348350953254,42.81345094344012,42.81341830405875,42.81334360518966,42.81326869177551,42.81319356441399,42.81311822548816,42.81311734560111,42.81311625423159,42.81311494772292,42.81311328670519,42.81309306092577,42.81307248514676,42.81305169373591,42.81303121419595,42.79837377343329,42.76931869168605,42.75475182727163,42.74010491129666,42.72558980895188,42.71100290141671,42.69644345069093,42.68186266740086,42.66737996790902,42.65286581462377,42.63836254014824,42.62388355440482,42.60935825775189,42.59484438024872,42.57984077373486,42.56536389777436,42.53633719981306,42.52169629432906,42.50716420301351,42.50714862225549,42.50713318466961,42.50711739930561,42.50710673709924,42.50710140308156,42.5070867891283,42.50707182631005,42.50706505782459,42.50705580985665,42.50704141043979,42.50707764804798,42.50711381586434,42.50713268212659,42.50713270329116,42.50714963964494,42.50718525680234,42.50721377284466,42.50724207944248,42.50727031525035,42.50727800864383,42.50729820051856,42.5073390405791,42.50734220690872,42.50735149200887,42.50738600623887,42.50742959868368,42.50747284186192,42.50748978952921,42.50750514520418,42.507536961996,42.50754603040453,42.50756871032794,42.50759914176688,42.50760010883675,42.5075998697876,42.50759729053006,42.50759427191699,42.50759091358906,42.50758748169217,42.50760135603743,42.50761502083941,42.50762862203419,42.50764187687522,42.50764426152854,42.50764787182785,42.50764860902601,42.50765498832258,42.50765690525095,42.50766129446896,42.50766532972239,42.50766549205574,42.50766724692183,42.50768145364498,42.50768585792528,42.50769177736131,42.50771581700238,42.50774006839485,42.50776396952575,42.50778582430404,42.50780718694197,42.50782847911416,42.50784970188223,42.507880269099,42.50791076121619,42.50794104127414,42.50797110371474,42.50802324129513,42.50807810799295,42.50813262268199,42.50818692456635,42.50819148580781,42.50819212026362,42.50819256978155,42.50819786497528,42.50820308380731,42.50820794696929,42.50821233769277,42.50821282368507,42.50821288544127,42.50821680565238,42.50822092903043,42.50822469817541,42.50823756252417,42.50824071132813,42.50824742538428,42.50825622750206,42.50827153166721,42.50828690835277,42.5082806723406,42.50827436807932,42.5082678475268,42.5082611179183,42.50829467371903,42.50832815999048,42.50836129702467,42.50839033682056,42.50839422614093,42.50833686214471,42.50833165351968,42.50828143652306,42.50822439041922,42.50816727930922,42.50815997859981,42.508155704804,42.50806085414383,42.50803724992266,42.50797108137022,42.50795407492757,42.50791216747388,42.5078473700644,42.5077963660552,42.50774031361949,42.50772642029845,42.50762629180786,42.5075120601029,42.5073974806508,42.50735261885174,42.50734982348383,42.50728268638075,42.50715290696324,42.50702277752143,42.50689243436628,42.50688286449397,42.5067621566284,42.50664335396471,42.50652448297892,42.50640539842345,42.5062861093072,42.50613437208195,42.50598255625714,42.50583039427909,42.5056781540226,42.50569703174586,42.5057163565568,42.50573533036142,42.50575423304045,42.50576336429559,42.50577242940628,42.5057812869603,42.50578979329883,42.50579608485744,42.50580216379505,42.50580230586699,42.50580622497499,42.50580816875628,42.50581368024417,42.50579563307529,42.50577723658009,42.505758767358,42.50574008616334,42.50572155275729,42.50571469693433,42.50568909376722,42.50567877853384,42.50566313528186,42.50563724555408,42.50564242688699,42.50564767659218,42.50565258073791,42.50565724262913,42.52033991191586,42.54968879784906,42.56420135407748,42.57890032629727,42.59641803952638,42.61069761258552,42.62497380901284,42.63960200811778,42.65429734288675,42.6688027213932,42.68317145939232,42.69773544578404,42.70507761448827,42.71223346413238,42.72678116871145,42.74142809865639,42.75002100692032,42.77031571621668,42.78480834692638,42.79939981864721,42.81387588115929,42.81373303440504,42.81366131003549,42.81358938612554,42.8135460470812,42.81350235168797,42.81345858499402,42.81341445512695,42.81333238599323,42.81325010141013,42.81316760119012,42.81308488783775,42.81313827004584,42.81319131257378,42.81324415796735,42.8132969418233,42.81332305143911,42.81334908312186,42.81337476759951,42.81340037167737,42.81341872068506,42.81343686094249,42.81345464873676,42.81347283958808,42.81353171493118,42.81359023939502,42.81364868767098,42.81370678240632,42.8137262484248,42.81374563684811,42.81376467606778,42.81378349554844,42.8137915437735,42.81379946889116,42.81380704225971,42.81381454120183,42.81381084427407,42.81380679270433,42.81380266320541,42.81379831622815,42.81385372578048,42.81390906241819,42.81396404988123,42.81401882709298,42.81399613773885,42.81397337665554,42.81395026637713,42.81387468368468,42.81386736118017,42.81385996647201,42.81385221333866,42.81384438518209,42.8139136383196,42.8139828185662,42.81405164833976,42.81412026711794,42.81416136264586,42.81420224967761,42.81424292087335,42.81428337628663,42.81434037450832,42.81439716118391,42.81445359617798,42.81450996031341,42.81460769087588,42.81470520445311,42.81480250422727,42.81489958406931,42.81489241213776,42.81488502825801,42.81487743479022,42.81487097016432,42.81487405411742,42.8148769311552,42.8148789391456,42.81487995606373]}]],[[{"lng":[-89.01355183931872,-89.03336505564414,-89.05311050921058,-89.07283932766059,-89.09258471645968,-89.1123006543061,-89.13200353422839,-89.15173496730576,-89.17151788593189,-89.19130037059284,-89.21111977095035,-89.25018532384676,-89.26997043370534,-89.28950470039031,-89.30922382169533,-89.3290650263725,-89.34986537283693,-89.36910923971921,-89.36921691625506,-89.36924373375507,-89.36927386789074,-89.36926230575088,-89.36921395006003,-89.36924454270843,-89.36918873442038,-89.3688565458669,-89.36874151311613,-89.36868725490052,-89.36857437879716,-89.36846904125346,-89.36836904796021,-89.36817211070638,-89.368140707411,-89.3679351471818,-89.36792033929093,-89.36763068575991,-89.36766302606961,-89.36742400661898,-89.36721230337606,-89.36724358782782,-89.36718627074318,-89.36711752714774,-89.36714681249815,-89.36714702014886,-89.36701992924388,-89.36689021414519,-89.36684787198212,-89.3666119150148,-89.36650396638096,-89.36645922129259,-89.36610405487821,-89.36602156415003,-89.36588936673984,-89.36580522512587,-89.36101438000789,-89.3604196153465,-89.35719023158413,-89.35612011226158,-89.35122509010542,-89.34859200515919,-89.34632931722282,-89.34137454266956,-89.33641902105472,-89.33146427893168,-89.3265087891439,-89.32162949446608,-89.31675022091983,-89.31631522099839,-89.31495319589069,-89.31187096114098,-89.30699171854751,-89.30205143602285,-89.30163315466778,-89.29711192399533,-89.29610197113143,-89.2937086537832,-89.29217167217857,-89.29087044769571,-89.2872314301755,-89.28234433429731,-89.27879119440121,-89.27745648478931,-89.27679483811073,-89.27360371552757,-89.27256941322905,-89.27160812328508,-89.26768083387502,-89.26477685670609,-89.26270628711937,-89.25961526735152,-89.25773100285656,-89.25275574693782,-89.24960544306977,-89.24778050873546,-89.24310158042664,-89.23820666440075,-89.23331175560162,-89.22841762095669,-89.22352798764481,-89.21863912096761,-89.21375026439956,-89.20886141947298,-89.20635632237899,-89.20393944560354,-89.203609388369,-89.19901748543833,-89.1940955412239,-89.18917360643003,-89.18849449159924,-89.18753703766164,-89.1842410892786,-89.18325702226991,-89.18001051386977,-89.17930782730485,-89.17437533966316,-89.16944210593849,-89.1645054977751,-89.15956889393678,-89.1546323052727,-89.14969572296447,-89.14474534929683,-89.13979498513804,-89.13903368521271,-89.13854617727777,-89.13484539223261,-89.13400803860077,-89.12989580489989,-89.12707668980944,-89.12490550996574,-89.12371535340053,-89.12167041690725,-89.12001180726284,-89.11877298526734,-89.11744518513733,-89.11535690819503,-89.1151173571026,-89.11199407223599,-89.11022291963353,-89.10875899118167,-89.10532542165612,-89.10042869560584,-89.09996252089947,-89.09553122041847,-89.09063375773263,-89.08574677664804,-89.08085980288487,-89.07597207523533,-89.07108436456306,-89.06619092658762,-89.06129749099286,-89.05640406788289,-89.05150988678335,-89.04657455634285,-89.0444898412059,-89.04445789946507,-89.04249867612741,-89.04163923686708,-89.04151526287627,-89.03670392148186,-89.03176784786034,-89.02687144168266,-89.02197504523959,-89.01951011236766,-89.01841340688523,-89.01707865217185,-89.01218150614828,-89.00737069203126,-89.00247623260898,-89.00026019073864,-88.9975817843914,-88.992686587355,-88.98776278655863,-88.98283823634675,-88.97791446410011,-88.97298994716883,-88.96805761923511,-88.96312455186744,-88.95819150101516,-88.9532592324683,-88.94838406431424,-88.94350891788623,-88.93863379071739,-88.93509226583704,-88.93375792616382,-88.93213084549558,-88.92884020711028,-88.9277940168885,-88.92392326633427,-88.92199663943371,-88.91900558902762,-88.91885960698446,-88.91408716706648,-88.90916099902154,-88.90423484408777,-88.90277198268805,-88.89930871369846,-88.89563560146368,-88.8943825940086,-88.89099850425316,-88.88950451516692,-88.88532821260539,-88.88461201453234,-88.87971876794489,-88.87482630380246,-88.86990433616968,-88.86498240523672,-88.86006046086621,-88.85814536841181,-88.8551377934282,-88.85429172266863,-88.85318188096319,-88.8501951911459,-88.84525109407845,-88.84030778016036,-88.83536525537346,-88.83045860248131,-88.82555273223787,-88.82064612148231,-88.81574029444364,-88.81082784489085,-88.80591617013989,-88.80100375402101,-88.7968752367298,-88.79609135223426,-88.794735373669,-88.79119522319084,-88.78629833253383,-88.78140069370396,-88.77650399055716,-88.77648934228013,-88.77644547081347,-88.77666797541589,-88.77659364623598,-88.77643690780351,-88.77619902288686,-88.77603314717292,-88.77612844211116,-88.77626026445273,-88.77659909899006,-88.77673146266778,-88.77658025554857,-88.77758845960938,-88.77792908393262,-88.77812591369074,-88.77845415642545,-88.77884675340658,-88.77864117534739,-88.77839496521915,-88.77745939059268,-88.77722897158361,-88.77706941537998,-88.79675219738526,-88.81652762443053,-88.83667907533568,-88.87573902018147,-88.89485029589581,-88.91454325863221,-88.93433173526017,-88.95416090170694,-88.97382009485024,-89.01355183931872],"lat":[42.84745845093136,42.84764122122791,42.84751157630802,42.84746632550096,42.84733282572882,42.84716754890255,42.84705365666722,42.84663715696359,42.8464697754384,42.84638677281468,42.84628400084866,42.84596718991532,42.84582228462106,42.84580030756275,42.84573136734264,42.84568591142081,42.84534670656257,42.84513516509661,42.8304888770198,42.81611704509376,42.81360279406251,42.80149819740233,42.78721958908849,42.78473290679167,42.7702072776522,42.75566995775596,42.74999641782982,42.74480367362549,42.74140112819318,42.73055425038965,42.72693816949577,42.71594399741483,42.71249165165069,42.70129970972814,42.69801770014122,42.68662264173518,42.68358234686529,42.66953190170603,42.65520085343651,42.64383167904959,42.64075878432576,42.62902740602276,42.6263602302185,42.62498406724315,42.61502657059236,42.6005109399294,42.59731653186644,42.58517437786685,42.57303164341086,42.55847922817498,42.54376070115047,42.5291814084371,42.51470185254227,42.5000620729396,42.50001350966468,42.50000751641283,42.49997453591605,42.49996360322825,42.49991361970637,42.49988658520157,42.49986328660252,42.49978271631237,42.49970192261031,42.4996207811343,42.49953956151194,42.49944731819961,42.49935486909361,42.49934664586773,42.49932078384354,42.49926221597651,42.49916935157346,42.49909504462713,42.4990886996353,42.49902052943259,42.49900518520915,42.49896893195061,42.49894565811872,42.49892593578089,42.49887071253656,42.4988057371015,42.49875852870289,42.49874069018225,42.49873187469139,42.49868917914231,42.49867530229444,42.49866244144123,42.49860983378388,42.49853495413991,42.4984815472418,42.49840181375544,42.49835318106526,42.49822446165062,42.49814294301871,42.49809580303444,42.49805936816141,42.49802116322113,42.49798289517706,42.49794427731464,42.49791097553779,42.4978776059471,42.49784388494926,42.497809958495,42.49777927205728,42.49774956448251,42.49774544223912,42.49768881565062,42.49762799173325,42.49756696377293,42.49755793443727,42.49754523830421,42.4975014217095,42.49748836112605,42.49744505794252,42.49743566686109,42.49736984385298,42.49730366144119,42.49726327332572,42.49722295532379,42.497182145042,42.49714125955888,42.49710822194364,42.49707497235745,42.49706982038773,42.49706657764935,42.49704151351125,42.49703589262116,42.49700783786689,42.4969744395591,42.49694859446227,42.49693443618909,42.49691005506879,42.49689029383183,42.4968755718864,42.49685972569903,42.49683461537453,42.4968317832996,42.49679439523772,42.49677306198233,42.49675619922012,42.49671649746293,42.49665959103969,42.49665410171083,42.49660246823225,42.4965451386362,42.49650020124351,42.49645505791404,42.49640984480101,42.49636427861045,42.49634618197656,42.49632815548254,42.49630963552288,42.49629104624111,42.49627767561928,42.49627198959434,42.49627186434054,42.49626648604691,42.49626408885592,42.4962637525415,42.49625014846849,42.49623627245442,42.49621506317153,42.4961936404699,42.49618299266346,42.49617810460372,42.49617215145039,42.4961503074455,42.49610465879118,42.49605807826554,42.496036936457,42.49601129180267,42.49596414617641,42.49589908816795,42.49583409467647,42.49576861918839,42.49570292300864,42.49560401384255,42.49550488810399,42.4954055495288,42.49530615044371,42.49520410657973,42.49510185184448,42.49499953519609,42.49492502686692,42.4948968601523,42.49486369686256,42.49479639937282,42.49477493762124,42.49469573909545,42.49465624454151,42.49459486087424,42.49459193192845,42.49449376271262,42.4944019471568,42.49431005918274,42.4942826948149,42.49421782283517,42.49414899624682,42.494125655731,42.49405735490457,42.49402726942071,42.49394282004613,42.49392839094973,42.493829443432,42.49373014746963,42.49362303833622,42.49351473366044,42.4934083262254,42.49336646203283,42.49330071322937,42.49327691762283,42.4932455576774,42.49316131145721,42.49302168141985,42.49288198765703,42.49274208560863,42.49263751661721,42.49253260931432,42.49242762114978,42.49232228806554,42.49224623043041,42.49217010583786,42.4920936267143,42.49202924868916,42.49201693711159,42.49201351755733,42.49200451111739,42.4919920113058,42.49197929664821,42.49196631144915,42.49982554862766,42.50636782170666,42.53541078271973,42.5499413446767,42.56447521234337,42.58007420348268,42.59462985049874,42.60918669924827,42.62374460632203,42.63816313546936,42.65277191512529,42.6675668871798,42.69660280348809,42.71102356248439,42.72550170712858,42.74005424561336,42.75490682194901,42.76932925007065,42.78386644885619,42.81282133541756,42.82729837044177,42.84278680661289,42.84310577867347,42.84363099036151,42.84398578655024,42.8452030023348,42.84594834697327,42.84608746168136,42.84610433783609,42.84602305060051,42.84654999539134,42.84745845093136]}]],[[{"lng":[-88.30669912122222,-88.3063114192002,-88.32613686424564,-88.34586042649832,-88.36560580737037,-88.37516305733767,-88.38532720745407,-88.40482585033295,-88.42405655562992,-88.44375092181275,-88.46375623898017,-88.4830562192151,-88.50290840276611,-88.52242344996844,-88.54157560458098,-88.56119287500165,-88.58103930036722,-88.60089595943785,-88.6203056757771,-88.65921760678587,-88.67903503054923,-88.69878736514089,-88.73831336875595,-88.75008370635844,-88.75657865582002,-88.77706941537998,-88.77722897158361,-88.77745939059268,-88.77839496521915,-88.77864117534739,-88.77884675340658,-88.77845415642545,-88.77812591369074,-88.77792908393262,-88.77758845960938,-88.77658025554857,-88.77673146266778,-88.77659909899006,-88.77626026445273,-88.77612844211116,-88.77603314717292,-88.77619902288686,-88.77643690780351,-88.77659364623598,-88.77666797541589,-88.77644547081347,-88.77648934228013,-88.77650399055716,-88.77146171856035,-88.76656795315472,-88.7616749470657,-88.7567811725626,-88.75192870100145,-88.74707621740066,-88.74324108808344,-88.74222295101112,-88.74020189722287,-88.73813442139559,-88.73737043862666,-88.73286831865357,-88.73240105897435,-88.73117811637712,-88.72743166545696,-88.72684873101596,-88.72246301076865,-88.7174943409012,-88.71446919652365,-88.71259521562349,-88.70895377205238,-88.70769684364234,-88.70687664216322,-88.70279846000849,-88.69790006833405,-88.69295492239523,-88.6880089955793,-88.6841551350205,-88.68306381500989,-88.67874038173284,-88.67849913324788,-88.67811861635295,-88.67420068646442,-88.6732213910724,-88.67130008710402,-88.66832415810867,-88.66660449500573,-88.66342767597159,-88.65921752794408,-88.65853117880343,-88.6553457869139,-88.65341035602252,-88.64883577531698,-88.64851700597565,-88.64480438349115,-88.64362288304559,-88.63872952170523,-88.63380110128875,-88.63358278964022,-88.63149397193509,-88.62887344321554,-88.62394578580501,-88.62325052829553,-88.6196456869352,-88.61951333053736,-88.61901736697125,-88.61675999416219,-88.61410864736281,-88.60919916803974,-88.60429045995376,-88.60209241710859,-88.60040624077863,-88.59938099623544,-88.5944427353284,-88.58950372218591,-88.5888511677357,-88.58726542396711,-88.58456623698163,-88.58366118519636,-88.58315313983145,-88.57962723664519,-88.57870468254271,-88.57467221378377,-88.56971643671574,-88.56476067040663,-88.55980566659319,-88.55496485015267,-88.55012404407186,-88.54892087849048,-88.54808961245816,-88.54528323872887,-88.54488471824976,-88.54418578518919,-88.54044320288831,-88.5354993590456,-88.53060495201726,-88.53003307622753,-88.52801325993283,-88.52571055586073,-88.52530978753551,-88.52081616888518,-88.51587597347329,-88.51219973256369,-88.51093579128423,-88.505994856095,-88.50159844233414,-88.50105545129793,-88.4979779625985,-88.49617300414437,-88.49129132307927,-88.48640964222622,-88.48152797095152,-88.48012095880608,-88.47661787245306,-88.47519942993402,-88.47170774915426,-88.46679764321267,-88.46188754660336,-88.45699778127828,-88.45210801794511,-88.44721827008914,-88.44232852784612,-88.43738535444339,-88.43244066839351,-88.4274975089094,-88.4225543641639,-88.41757307705763,-88.4126792680138,-88.40789044576832,-88.40778546282301,-88.40508029441534,-88.40505671086916,-88.40289166046004,-88.39799076439782,-88.39793370904596,-88.39655333213032,-88.39308984410103,-88.38818894754924,-88.38328881827599,-88.37839148555375,-88.37809642961724,-88.37679757648836,-88.3756127908583,-88.37349492576253,-88.36859761782613,-88.36370107871925,-88.35881180173517,-88.35392253244767,-88.34903327467619,-88.344143268628,-88.33917624198,-88.33420846515517,-88.32924068728828,-88.32427367902068,-88.31936718125257,-88.31446069115722,-88.30955496901703,-88.30464816659092,-88.30491279436573,-88.30505291283799,-88.30527604370745,-88.30528200846089,-88.30554911949791,-88.30585968304065,-88.305963376007,-88.30595524327022,-88.30606122151917,-88.30604039756533,-88.30588416482617,-88.30617394592386,-88.30664918732002,-88.30681999846253,-88.30769725724335,-88.30795626793517,-88.30740929198514,-88.30723775520377,-88.30693383533426,-88.30669912122222],"lat":[42.82780170433821,42.84225141692194,42.84254142748204,42.84278755578304,42.84282179569691,42.84282296278795,42.8428386397425,42.8427151716288,42.84256907813322,42.84265652747189,42.84263669348578,42.84271757254704,42.84283195118576,42.8428730663895,42.84302906610112,42.84285606232987,42.84272488706689,42.84261163920308,42.84247422949627,42.84254476773254,42.84261476602104,42.84265470802576,42.84270630726495,42.84268724510304,42.84272315768588,42.84278680661289,42.82729837044177,42.81282133541756,42.78386644885619,42.76932925007065,42.75490682194901,42.74005424561336,42.72550170712858,42.71102356248439,42.69660280348809,42.6675668871798,42.65277191512529,42.63816313546936,42.62374460632203,42.60918669924827,42.59462985049874,42.58007420348268,42.56447521234337,42.5499413446767,42.53541078271973,42.50636782170666,42.49982554862766,42.49196631144915,42.4920293642786,42.49209035138347,42.49215114065085,42.49221170830607,42.49233667997127,42.49246144955766,42.49256002834012,42.49258614481122,42.49263796093354,42.49269091579174,42.49271050589133,42.49284472478167,42.49285869124258,42.49289511119976,42.49300652520578,42.49302383247559,42.49315429162617,42.49330169697421,42.49335898156868,42.49339451108366,42.49346358438745,42.49348726823712,42.4935027810923,42.49357980967707,42.49367200349054,42.49381748715223,42.49396275440962,42.49407573982428,42.49410766765268,42.49423435647935,42.49424142289561,42.49425251307449,42.49433656500269,42.49435759447588,42.49439865540172,42.49446218909243,42.49449890037957,42.49456672168988,42.49465641841667,42.49467104232539,42.49471222422066,42.49473720034309,42.49479606089557,42.49480018294389,42.49484794033757,42.4948632312918,42.49492579557786,42.49495635577313,42.49495769241464,42.49497061584319,42.49498670754618,42.49501685279299,42.49502102723493,42.49504294975963,42.49504374622769,42.49504677442342,42.49504628578234,42.49504562494364,42.49504439815957,42.4950428286515,42.49504206760088,42.49504146843864,42.49504103953489,42.49503460782402,42.49502795150811,42.49502709480429,42.49502486589792,42.49502096244727,42.49501963062389,42.49501897757504,42.49501388039716,42.49501299477556,42.49500920020979,42.49500415760305,42.49499890069926,42.49499343590679,42.49498371142042,42.49497378550565,42.49497121537463,42.49496955358825,42.49496379181584,42.4949629493147,42.49496153313429,42.49495346225529,42.4949266843366,42.49490004788102,42.49489693723384,42.49488592041834,42.4948732011959,42.49487099870537,42.49484614851638,42.49482659471156,42.49481199032288,42.4948068279878,42.4947868340991,42.49476882663358,42.49476665072225,42.49477630444747,42.4947819006368,42.49479680654651,42.4948116478714,42.49482614015941,42.49482465329979,42.49482105042796,42.49482033559683,42.49481701888385,42.49481220911851,42.49480719078368,42.49477972329358,42.49475218934644,42.49472444318857,42.4946964871192,42.49467660089813,42.49465648548352,42.49463631190585,42.4946157853112,42.49466023703213,42.49470384636471,42.49474617643962,42.49474710856403,42.4947708401541,42.4947710725152,42.49479016407818,42.4947829599842,42.49478356566647,42.4947817060156,42.49477694739444,42.49477002368516,42.49476290166384,42.49473591070326,42.49473426892995,42.49472698906721,42.49472047495121,42.49470872067163,42.49468130879383,42.49465370150109,42.49463935773817,42.4946249403197,42.49461017992865,42.49459519510273,42.49461659712083,42.49463763473335,42.49465859725803,42.49467921139103,42.49468375464398,42.49468808776301,42.49469208150268,42.49469593359601,42.50931038478156,42.52379734982025,42.53822444333841,42.55274341287518,42.56723131009677,42.58177455431866,42.59625026180046,42.61075474772304,42.62504699729642,42.65432616988463,42.66872624204937,42.6832133567564,42.69770008340528,42.71218748734195,42.7411171917572,42.75556647801108,42.78438263435982,42.79883691143522,42.81326091364536,42.82780170433821]}]],[[{"lng":[-89.36910923971921,-89.36906898103508,-89.38881608876333,-89.40850441127328,-89.44759965443573,-89.46714648622253,-89.48576813505673,-89.49479319726817,-89.50381785624491,-89.50552280735447,-89.52514645266957,-89.54514300795077,-89.56493716000482,-89.58520584195124,-89.60228985994488,-89.62191194149194,-89.62508825799024,-89.64211508724455,-89.68167737403266,-89.70175871694434,-89.71998591593058,-89.73960635237539,-89.74939806062871,-89.75919033038993,-89.77915062815362,-89.79890628704922,-89.81866945692421,-89.83804341311203,-89.83811983036239,-89.83848835112659,-89.83847452501898,-89.83856530077314,-89.83863360851912,-89.83827250236085,-89.83814320993281,-89.83785217197948,-89.83770220070957,-89.83759983771377,-89.83749454885955,-89.83722726779084,-89.83734666118659,-89.83738475297326,-89.83745303876096,-89.83766020767615,-89.83795055351337,-89.83796803598898,-89.83798625050315,-89.8378102305756,-89.83773885838278,-89.83768375473755,-89.83770072858296,-89.83267301540403,-89.82777702770071,-89.82288104228192,-89.82058747857231,-89.82050912198815,-89.81798582105928,-89.81307546403632,-89.80816511112016,-89.80325476849052,-89.79834442882357,-89.79338839564736,-89.78843160472032,-89.78347481487835,-89.77851879269943,-89.77358555511637,-89.76865307948903,-89.76372136679278,-89.75878889548967,-89.75383965132787,-89.74960852370124,-89.74889040419154,-89.7439419203431,-89.7389934333398,-89.73408076313844,-89.72916809652952,-89.72425619561828,-89.71934353517796,-89.7144111412557,-89.70951602975998,-89.70462016118083,-89.69972429488683,-89.69586383187932,-89.69480876371566,-89.68989400371184,-89.68497848865306,-89.68006298616878,-89.67514219836991,-89.67022142520509,-89.66671626090222,-89.66564143767012,-89.66530065157215,-89.6603806601526,-89.65545851493225,-89.65053638223958,-89.64894283324432,-89.64561426045856,-89.64376057705937,-89.64069291398407,-89.63578387036634,-89.63087484426569,-89.62596659341145,-89.62105759834778,-89.61616013746408,-89.61126345694295,-89.60636603184801,-89.60146862958602,-89.59645519552227,-89.59156500008086,-89.5866740677188,-89.5817839236806,-89.576886005777,-89.57198962947811,-89.56709251764924,-89.56219542624719,-89.55724464783631,-89.55229311994515,-89.54734160841748,-89.54239010923698,-89.53746829985859,-89.53254649996603,-89.52762547773112,-89.52270370782512,-89.51781939458969,-89.51293509447157,-89.50805157328514,-89.50316730811211,-89.49828759859848,-89.49340789619944,-89.48852819284467,-89.48364849425471,-89.47850457169122,-89.47605012535429,-89.47508417142254,-89.47361013866775,-89.46871495355943,-89.467950556647,-89.46381977936436,-89.4589033336032,-89.45587847914368,-89.45563356905835,-89.45398690166981,-89.44966981852507,-89.44907047832774,-89.4457725903514,-89.44415407016753,-89.43929082904384,-89.43442759946282,-89.42956514033297,-89.42470269333892,-89.41980380831308,-89.41490493456939,-89.41000683017594,-89.40510797920702,-89.40019773284097,-89.39528749940344,-89.39037727799956,-89.38546706745942,-89.3805517745822,-89.37563649632085,-89.37531479285957,-89.37444855562683,-89.37123534671555,-89.37072047136758,-89.36580522512587,-89.36588936673984,-89.36602156415003,-89.36610405487821,-89.36645922129259,-89.36650396638096,-89.3666119150148,-89.36684787198212,-89.36689021414519,-89.36701992924388,-89.36714702014886,-89.36714681249815,-89.36711752714774,-89.36718627074318,-89.36724358782782,-89.36721230337606,-89.36742400661898,-89.36766302606961,-89.36763068575991,-89.36792033929093,-89.3679351471818,-89.368140707411,-89.36817211070638,-89.36836904796021,-89.36846904125346,-89.36857437879716,-89.36868725490052,-89.36874151311613,-89.3688565458669,-89.36918873442038,-89.36924454270843,-89.36921395006003,-89.36926230575088,-89.36927386789074,-89.36924373375507,-89.36921691625506,-89.36910923971921],"lat":[42.84513516509661,42.85653163837185,42.85621416701706,42.85634436267594,42.85619223740235,42.85633390126363,42.85633750719141,42.8563910164326,42.85649334386546,42.85652266720551,42.85663846792163,42.85671692845931,42.85686640241168,42.85711112419614,42.85725049040472,42.85744284758245,42.85744498395681,42.85758413066183,42.85766230102172,42.85756520286226,42.85756995593366,42.85754050566459,42.85746735442662,42.85742064454454,42.8572730909831,42.85733275570049,42.85732303656139,42.85739194784052,42.84267396985268,42.81387588115929,42.79939981864721,42.78480834692638,42.77031571621668,42.75002100692032,42.74142809865639,42.72678116871145,42.71223346413238,42.70507761448827,42.69773544578404,42.68317145939232,42.6688027213932,42.65429734288675,42.63960200811778,42.62497380901284,42.61069761258552,42.59641803952638,42.57890032629727,42.56420135407748,42.54968879784906,42.52033991191586,42.50565724262913,42.50564961778089,42.50564208592911,42.50563420080855,42.50563049464071,42.5056303719501,42.50562625064514,42.50559175186549,42.50555717831039,42.50552240046904,42.50548741164084,42.50547000104488,42.50545223487237,42.50543453221231,42.50541647800856,42.50540923102614,42.50540163276197,42.50539410167813,42.50538607888188,42.50538892354814,42.50539101682629,42.50539141339848,42.5053936936522,42.50539589644089,42.50538375896801,42.50537126984175,42.50535857440386,42.50534566415298,42.50532306398104,42.50530035150393,42.50527742251901,42.50525428864801,42.50521849894657,42.50520865686013,42.50516295618744,42.5051170444989,42.50507092384019,42.50501753941211,42.5049639425281,42.50492566136412,42.50491380891923,42.50491112553826,42.50485626560558,42.50478007897357,42.50470368219858,42.50467883219099,42.50462693420179,42.50459797123465,42.50455011892365,42.50445300811076,42.50435554296608,42.50425787312095,42.50415999365094,42.50404476783748,42.50392962483819,42.50381398305247,42.50369827557638,42.50352974028997,42.50336509109605,42.50320022511453,42.50303515328972,42.50289911662968,42.50276287215201,42.50262641814172,42.50248989360296,42.50241867222066,42.5023472255309,42.50227557044712,42.50220370148249,42.50213047117065,42.5020568884508,42.50198309999784,42.50190923333744,42.50181308626033,42.50171700593086,42.50162058214157,42.50152394946507,42.50152506638281,42.5015258296109,42.50152653403405,42.50152688597365,42.50146827493415,42.50144019240796,42.50142901764598,42.50141212616196,42.50135590655525,42.5013471522137,42.50129947668771,42.50124076771688,42.50120463621114,42.50120164588341,42.50118185093611,42.50113010144548,42.50112286070802,42.50108303713751,42.50106351917174,42.50101379563777,42.50096386882309,42.50091387932484,42.50086354067595,42.50080591316787,42.50074808116759,42.50069018235689,42.5006319341122,42.50057312980152,42.50051397956884,42.5004547533991,42.50039532115784,42.50031228795012,42.50022905130053,42.50022363756571,42.50020892062552,42.50015447245434,42.50014573411959,42.5000620729396,42.51470185254227,42.5291814084371,42.54376070115047,42.55847922817498,42.57303164341086,42.58517437786685,42.59731653186644,42.6005109399294,42.61502657059236,42.62498406724315,42.6263602302185,42.62902740602276,42.64075878432576,42.64383167904959,42.65520085343651,42.66953190170603,42.68358234686529,42.68662264173518,42.69801770014122,42.70129970972814,42.71249165165069,42.71594399741483,42.72693816949577,42.73055425038965,42.74140112819318,42.74480367362549,42.74999641782982,42.75566995775596,42.7702072776522,42.78473290679167,42.78721958908849,42.80149819740233,42.81360279406251,42.81611704509376,42.8304888770198,42.84513516509661]}]],[[{"lng":[-87.82489604223208,-87.82616683454643,-87.83512814622783,-87.85476851997387,-87.87461423204257,-87.89426496388873,-87.91392068416792,-87.93359859823084,-87.95198108370946,-87.99182918278653,-88.01172508842647,-88.03143929549327,-88.06997879242012,-88.10946424977345,-88.12916694898622,-88.14894895006611,-88.16882789605202,-88.18808894871943,-88.20784677923588,-88.22740778534782,-88.25011823502415,-88.26727318221572,-88.28709320093746,-88.3063114192002,-88.30669912122222,-88.30693383533426,-88.30723775520377,-88.30740929198514,-88.30795626793517,-88.30769725724335,-88.30681999846253,-88.30664918732002,-88.30617394592386,-88.30588416482617,-88.30604039756533,-88.30606122151917,-88.30595524327022,-88.30251241910983,-88.30058720350813,-88.29600076319666,-88.29205611866679,-88.28618926116201,-88.2820199556428,-88.27575039928564,-88.26722974901116,-88.252357677313,-88.23822064818575,-88.23018655395818,-88.22245123932042,-88.21766821045806,-88.18810748808465,-88.1881691804811,-88.18829188066668,-88.1882209280114,-88.18830608933057,-88.16897448376692,-88.14993234365073,-88.130102575075,-88.11064564104764,-88.09062969080541,-88.07095374411769,-88.05220411438115,-88.0319789788399,-88.01221912944629,-87.9730375278498,-87.95315185015544,-87.93535955206289,-87.89559516119256,-87.8759475261995,-87.87506046502401,-87.85607161572247,-87.83583837037521,-87.81624254685386,-87.80558340635899,-87.80561485400777,-87.80542081357409,-87.80540162271649,-87.80517314052331,-87.80508900249039,-87.80494534809455,-87.80482391404774,-87.80465661471455,-87.80457644573369,-87.80441462721961,-87.80438019650231,-87.80413728263254,-87.80404858508982,-87.80388315593984,-87.80362044297721,-87.80343959921004,-87.80341331986125,-87.80334388197781,-87.80311331168889,-87.80300915575231,-87.80287709310268,-87.80282049415111,-87.80241593853458,-87.80226806398967,-87.8019433146621,-87.8018840163472,-87.8018709504169,-87.80183504188366,-87.80172511051214,-87.80144535359378,-87.80138728277622,-87.80131397756529,-87.8010588699277,-87.80084812746819,-87.80077007452604,-87.8005267796684,-87.80046814523108,-87.80034444136024,-87.8003008813285,-87.80011001828552,-87.79970465861663,-87.79952213632734,-87.79903806034453,-87.79886859057385,-87.79820414820585,-87.79816694524504,-87.7977650576866,-87.79772021586707,-87.79771461323604,-87.79760608190996,-87.79760751847365,-87.79757920883263,-87.79749826661586,-87.79717419377117,-87.79720176766584,-87.79719633596447,-87.79709613391216,-87.79707399409277,-87.79700211218719,-87.7969531260907,-87.79687287977697,-87.79671246896478,-87.79658943148257,-87.79644567728896,-87.79593605070791,-87.79583984121167,-87.79571411077563,-87.79564204908829,-87.79540065223769,-87.795342561883,-87.79515926827273,-87.79487179323625,-87.7944327791752,-87.79418584178897,-87.79411178435952,-87.79397964683426,-87.79374332211594,-87.79328050792009,-87.79293386826832,-87.79261769084113,-87.79218902060664,-87.7918492467527,-87.79161983749556,-87.79149370526677,-87.79136177968044,-87.79077694440143,-87.79071644102522,-87.790665948073,-87.79056210061938,-87.79032583099283,-87.79019295156388,-87.79012721672227,-87.78989764763512,-87.7897516801293,-87.78949497493241,-87.78934757388107,-87.78915593071349,-87.78902216028469,-87.7887466660119,-87.78847934981216,-87.78830073442793,-87.7882119835823,-87.7881384872406,-87.78812463276719,-87.78816343195955,-87.78816487621368,-87.78812891636758,-87.78791030198582,-87.78755666673207,-87.78744664884339,-87.78726396929861,-87.78722798271188,-87.78722389299841,-87.78711203169128,-87.78518526564696,-87.78506866514472,-87.78489499832924,-87.7837580723096,-87.78373999404091,-87.7836520692848,-87.78331575345464,-87.78315374852565,-87.78283264568516,-87.78270181304585,-87.78245404531718,-87.7823384503491,-87.78226787360867,-87.78219592225706,-87.78208936610137,-87.78198070653241,-87.78198206071599,-87.78206108569719,-87.78215208373666,-87.78216980764314,-87.78214210732959,-87.78207011818076,-87.78194423066871,-87.78193176162452,-87.78197123268967,-87.78196640949383,-87.78181279395915,-87.78182944970213,-87.78181840124437,-87.78166082579197,-87.78138711702667,-87.78134350258321,-87.78131714282273,-87.78127489845318,-87.78117312362843,-87.78087993707638,-87.78081005989846,-87.78069269539789,-87.78053792388084,-87.78045655944983,-87.78028622841187,-87.78010847931334,-87.77997484894588,-87.77978893484847,-87.77946102730422,-87.77934232771935,-87.77801093109625,-87.77818161267038,-87.77859603341467,-87.77886369484791,-87.77919021257554,-87.77975596636067,-87.77995023835463,-87.7801832834357,-87.7803941570528,-87.78059881375171,-87.78096191649021,-87.78100815025118,-87.78100953655665,-87.78099092634734,-87.78096733191852,-87.7808052957312,-87.78055266608131,-87.78038925318901,-87.78012105013256,-87.77995036766352,-87.77982357955585,-87.77965378649765,-87.77961721865266,-87.7796186213543,-87.77971248670028,-87.77971528803322,-87.77963422358978,-87.77942713006944,-87.77908714119032,-87.77888006176268,-87.77881355683417,-87.77883644535689,-87.77887926802595,-87.77839281591966,-87.77794568751786,-87.7778148389542,-87.77777092382462,-87.77776380125826,-87.77780883530188,-87.77798751155221,-87.7780555180764,-87.77815410236539,-87.77865518602574,-87.77880495535864,-87.77891781886278,-87.77899832216102,-87.778922677138,-87.77892755840172,-87.77889842916919,-87.77878209826348,-87.77857854716756,-87.77846696449616,-87.77828217111205,-87.77822315707212,-87.77798472953745,-87.77794059748521,-87.77791148403661,-87.77793520275912,-87.77798767791083,-87.77819630692099,-87.77825900958753,-87.77999174886915,-87.77998832800196,-87.78017260226842,-87.78022040425722,-87.78029724105529,-87.78031527554531,-87.78047117785053,-87.78066239055617,-87.780814052759,-87.78091242543617,-87.78096646685438,-87.78106556451168,-87.78113685485485,-87.78119504950773,-87.78129416965358,-87.78137032533334,-87.78152278177626,-87.78159895713056,-87.78167655553895,-87.78170449311708,-87.78165291217391,-87.78158570754719,-87.78157897804758,-87.78166831146915,-87.78168356732552,-87.78170852501569,-87.78183942563987,-87.78184642650186,-87.78193995807705,-87.78196564287721,-87.78194555239662,-87.78194003397117,-87.78172916766025,-87.78175416245988,-87.78174792783365,-87.78160251139875,-87.78151801924683,-87.78137328706464,-87.78129294656407,-87.78121955008173,-87.78098248219163,-87.78090853004957,-87.78078381236932,-87.78075613757485,-87.78079155587471,-87.78077428709047,-87.78065726891299,-87.78058452101321,-87.7804743838628,-87.78030604398694,-87.7801973253207,-87.78002417479472,-87.77993347878264,-87.77980112143773,-87.77956287343457,-87.77940145170248,-87.77929199281922,-87.77920685194812,-87.77898718054135,-87.77884454963544,-87.77876346023379,-87.77866023761358,-87.77858514852103,-87.77848011820943,-87.77838592488897,-87.77833600562278,-87.77820648287462,-87.77815522465347,-87.77810323447726,-87.7779479035334,-87.7778808127418,-87.77783721209606,-87.77775059492726,-87.77767641762912,-87.77763277729069,-87.77752958455905,-87.7774707035541,-87.77743392006865,-87.77742217338846,-87.77738616724855,-87.7771810954971,-87.77717011753376,-87.77716810412687,-87.77696072288903,-87.77670226495194,-87.77650480899369,-87.77628089622476,-87.77625747423903,-87.77609965887537,-87.77606275006343,-87.77593108694604,-87.77587353202989,-87.77580845109651,-87.77559396320386,-87.77546920930658,-87.77507219096385,-87.77482170400141,-87.7747038808312,-87.77438616076937,-87.77405459985714,-87.77385640676205,-87.7735247552903,-87.77268450847706,-87.77216680196177,-87.77204899454217,-87.77190125129286,-87.77170873184593,-87.77132288612999,-87.7707835949101,-87.77024300320279,-87.76960949773463,-87.76945499187136,-87.7690178437541,-87.76874390236065,-87.76814353665026,-87.76772890645547,-87.76749947076432,-87.7674029540275,-87.7672915685252,-87.76721015442975,-87.76684899286104,-87.76661399105443,-87.76650305573565,-87.76627755448091,-87.76596393284444,-87.76583645642036,-87.76557814731277,-87.76521480425835,-87.7650662726915,-87.76496245179506,-87.76478589515355,-87.76464517994684,-87.76449666523388,-87.76419972035053,-87.76393195787836,-87.76372425850073,-87.76342567886743,-87.76309754698444,-87.76255975047471,-87.76223161796165,-87.76199340305051,-87.76175548869617,-87.76161476754794,-87.76130555307456,-87.76106228060114,-87.76086290725098,-87.76068581672685,-87.76050747316827,-87.76009963700453,-87.75946917217256,-87.75926085111716,-87.75891138128891,-87.75873306145978,-87.75842164273099,-87.75819286863812,-87.75797239791754,-87.75767740640161,-87.75754491069063,-87.75750954898444,-87.75751149805265,-87.75762780689038,-87.7576659121344,-87.75780899748331,-87.75790653469829,-87.75849000864295,-87.75883510618921,-87.75922551070431,-87.75945246501716,-87.75946786200564,-87.75957196684813,-87.75980797634152,-87.76001913278385,-87.7600943456621,-87.76044570669683,-87.76056558511743,-87.76066347681849,-87.76099356162021,-87.76125654628821,-87.76141394743888,-87.76163138310312,-87.76186441838504,-87.7622840248941,-87.76249503030435,-87.76290034534492,-87.76328289081931,-87.76365847955354,-87.7642674321001,-87.76516097434717,-87.76554477430237,-87.76568681167798,-87.76599525010224,-87.76637018452259,-87.76655023705069,-87.76814278498772,-87.76882460210297,-87.7692443026026,-87.76967854725936,-87.76992039727591,-87.77141535649274,-87.77167647058842,-87.7720063068857,-87.77278369423954,-87.77510435865314,-87.77601728249411,-87.77634874500387,-87.7773075284373,-87.77756954809779,-87.77771943906242,-87.77865586537241,-87.77909814095501,-87.77939821447985,-87.77993138768818,-87.780552525088,-87.78105470177246,-87.78151919114995,-87.78229773975254,-87.78300269147819,-87.78376246217454,-87.78444405523483,-87.78459342226668,-87.78481807206082,-87.78556864635303,-87.78620605569959,-87.78721752431133,-87.78799619478701,-87.78891083217654,-87.7900964033694,-87.79078696301345,-87.79147749410677,-87.79224927473807,-87.79266174020533,-87.79311998974997,-87.79386255482493,-87.7948301314659,-87.79510136598776,-87.79521387200801,-87.7952896741797,-87.79530567549763,-87.79544853995976,-87.79649928341024,-87.79675431198976,-87.79714607006103,-87.79761852790992,-87.79768899198795,-87.79837043819904,-87.79890547783772,-87.79934852852294,-87.7996115728769,-87.79987427330343,-87.80019844241355,-87.80105475013062,-87.80153690216321,-87.80183055523906,-87.80233434373207,-87.80280180384844,-87.80292997187887,-87.80318617489989,-87.80342892611368,-87.80394820606546,-87.804293671716,-87.80485081719637,-87.80550357356442,-87.80612599988036,-87.80670495367538,-87.80732180033957,-87.80800865838745,-87.80838397817877,-87.80879049520779,-87.8092021273234,-87.80951745986231,-87.8101570556493,-87.81033074167411,-87.81052772560912,-87.81065575539265,-87.81079831816285,-87.8112659148547,-87.81191080650805,-87.81237002558792,-87.81267830917783,-87.81312262282877,-87.81409333567096,-87.81544765989364,-87.81582417263814,-87.81587709917335,-87.81598297921931,-87.81612576529496,-87.81635913217221,-87.81680277960875,-87.81710362423529,-87.81733775664874,-87.81803808791506,-87.81832516979541,-87.81875485033973,-87.81885347134028,-87.81960007386928,-87.81982564422273,-87.82029915166596,-87.82057023165005,-87.82118936015681,-87.8216265468897,-87.82179341965688,-87.82230517912129,-87.82269801241483,-87.82296597313501,-87.82313559730542,-87.82337779920411,-87.82373261821085,-87.82398303360286,-87.82437495232232,-87.82468465802668,-87.82479916659577,-87.82489184614715,-87.82531550643436,-87.82537375586909,-87.8254025153151,-87.82535965659318,-87.82524948944693,-87.82491823314112,-87.82489604223208],"lat":[42.83982493084547,42.84200374749139,42.84214283144107,42.84231652414437,42.84255017654665,42.84274232160082,42.84297227221951,42.84327564183744,42.84353318435384,42.84358925139676,42.84359744865059,42.84347224082507,42.84334495427471,42.84326883538048,42.84316303232093,42.84298673409209,42.84283937969329,42.84279136047088,42.84251697775025,42.84221967336304,42.84194479869109,42.84201999934584,42.84205301958309,42.84225141692194,42.82780170433821,42.81326091364536,42.79883691143522,42.78438263435982,42.75556647801108,42.7411171917572,42.71218748734195,42.69770008340528,42.6832133567564,42.66872624204937,42.65432616988463,42.62504699729642,42.61075474772304,42.61080860185216,42.61077337244595,42.61083214646072,42.6109003092111,42.61092721431026,42.61097648211404,42.61100641176651,42.61100196533954,42.61094980590028,42.61105598799626,42.61108109177611,42.6111401289402,42.61119444377741,42.61138455764456,42.62594530133406,42.64044563174852,42.65489052392997,42.66939089790771,42.669380098871,42.6692792493547,42.66932602292127,42.66942686869771,42.66964960727013,42.66977480387198,42.66973845729594,42.66966976257191,42.66955378527978,42.6695689349545,42.66954233768877,42.66938527148516,42.66897542056467,42.66866413214,42.66871071904078,42.66834379211917,42.66784383587923,42.66781594553232,42.66782250120244,42.66815989178479,42.6689493212488,42.66927792196936,42.67033051001135,42.67092238533576,42.67155829130187,42.67190954951898,42.6725452789418,42.67272102923206,42.67296275006524,42.67322577280162,42.67384260083352,42.67391378786859,42.67427953867406,42.6747220813986,42.67481076993811,42.67499374412363,42.67516773175316,42.67528234002002,42.67553234533131,42.67573017509279,42.67608084790504,42.67660860003706,42.67675716218535,42.67675191076813,42.67704920827916,42.67726831246392,42.67737807521254,42.67755381374337,42.67789471411167,42.67809213266067,42.67824578454735,42.67866623082466,42.67873717992703,42.67896038084755,42.6792188257934,42.67938893796974,42.67963039806405,42.67978405645705,42.68006967491771,42.6805754535133,42.6809487539256,42.68171767927273,42.68191562776351,42.68249929945177,42.68251588788983,42.68251238061141,42.68255091651379,42.68268784986235,42.68306074128237,42.68323594678091,42.68338947236625,42.6835213015511,42.68362537786367,42.68368697145304,42.6838621888966,42.68434455984946,42.68436664550694,42.68467368600674,42.68498046412294,42.68522191425038,42.68557311940047,42.68594600958538,42.68651632892576,42.68781112317772,42.6879429398941,42.68798188466063,42.68825050786843,42.68875549186089,42.68893109354409,42.68923852087165,42.68957939425849,42.69001992262108,42.69003444284815,42.69027305866697,42.69049282404696,42.69076770519679,42.69144894024857,42.69180104886825,42.69224070320492,42.69258222910435,42.69291237953031,42.69307778406282,42.69312769308279,42.69329807053617,42.69341707683176,42.6935311475258,42.69372856577709,42.69383856281654,42.69398202116139,42.69413606301587,42.69431151611602,42.69529833864315,42.69562758201337,42.69608877535268,42.69626476402659,42.69641893461719,42.69646883442044,42.69647026717119,42.69652082346426,42.6965872986331,42.69663708398613,42.69670854707009,42.69688387757922,42.6970589606287,42.69719026214203,42.69732196770073,42.69784862251284,42.69828838060147,42.6984642427683,42.69888127457423,42.69905659851538,42.69945091170488,42.69985045823024,42.69996009463146,42.70025641333685,42.70084850644056,42.70453614690562,42.70463668244896,42.70483435511566,42.70549294887813,42.70575658460587,42.70645908630944,42.70687584952683,42.70749028777189,42.70792901142244,42.70838928899027,42.70865241794227,42.70924440199335,42.70959532320569,42.70981442164911,42.71027394421385,42.71054740511892,42.7108211307016,42.71110594040833,42.71141297029462,42.71231159086773,42.71264017422187,42.71292473838524,42.71323151527123,42.71443689654661,42.71461211463942,42.71507214088307,42.71544603153599,42.71601605960286,42.71614761848562,42.71637321507493,42.71670192092677,42.71700907374188,42.71754706975161,42.71805126045654,42.71828170618019,42.7185124158226,42.71858948758477,42.71869987296161,42.71878282062033,42.71882722173874,42.71886090345149,42.71889534880393,42.71888488669567,42.7189130797633,42.72176520339579,42.72848153092021,42.72842552018206,42.72828172713084,42.72830085823534,42.72835471972324,42.72860560522946,42.72890024911411,42.72932646575637,42.7299763748217,42.73015694746743,42.7303321477734,42.73044730666459,42.73059514627352,42.73079306832571,42.73089834338509,42.73092092549465,42.7309276811653,42.73096138045153,42.73100577102864,42.73112151739666,42.73124771967196,42.73140097062328,42.73191536955118,42.73222201848194,42.73237564053793,42.73257381329507,42.73281625935652,42.7329924841627,42.73308039750274,42.73310222760785,42.73312163237098,42.73353162694802,42.73390917734623,42.73391747483774,42.73392857853155,42.73399977841308,42.73402147375663,42.73402072235056,42.73419004402015,42.73431563484443,42.73456511727316,42.73466848094034,42.73484317303182,42.73511164736595,42.73541268885564,42.73596025787717,42.73609181489858,42.73639910288011,42.73679685992879,42.73701376709072,42.73722827073714,42.73725596878303,42.73724064655374,42.73727918494632,42.73738879357746,42.73755837675999,42.73758556463735,42.73762296345519,42.73766301056921,42.73767481966572,42.73811290254018,42.73874724074906,42.73911934433599,42.73946949336447,42.73981991216277,42.74060763393779,42.74117625744767,42.74154798282242,42.74172267220774,42.74194152381412,42.74216012755949,42.74238776128571,42.74257573945053,42.74277239563047,42.7430348707634,42.74338465665069,42.7436251878564,42.743997159683,42.74462678230794,42.74465997549537,42.74466022055702,42.74472045217089,42.7447420194769,42.74476384153508,42.74507035436458,42.74563922050703,42.74642770806532,42.74693112409961,42.74728141022237,42.74756636511584,42.74872719420526,42.75005710525919,42.7501484815847,42.75030186622262,42.75067472546208,42.75126628866172,42.75172681625438,42.751902405014,42.75199032511253,42.75210645373934,42.75216706755404,42.75243043547766,42.75264953824702,42.75324046791654,42.75380984017704,42.75492699674371,42.75514634973461,42.75532205992243,42.75567322660363,42.75598023763056,42.75659428156935,42.75727338048645,42.75751492905015,42.75832624053864,42.75861168999026,42.75887492940003,42.75929130360007,42.75979596056997,42.76043170068617,42.76056351419745,42.76067350796836,42.76095795493516,42.76137492745017,42.76163818181921,42.76194492798712,42.76242727587942,42.76251506230884,42.7625592224034,42.76263105882244,42.76269166509562,42.76275750942568,42.76308647860542,42.76317438349569,42.76328398864073,42.76335022449189,42.76341619517584,42.76354774002841,42.7638761932321,42.76398594528257,42.76435918579907,42.76455933176269,42.76459418877953,42.76475436103148,42.76501836295018,42.76541341324806,42.76577925308325,42.76579343250846,42.76589167243633,42.7659411832993,42.7662265027023,42.76651128766523,42.76666493934865,42.7668739342029,42.76711548640944,42.76766480892716,42.76796160411889,42.76813744038262,42.76843447492401,42.76881932021215,42.76914879153851,42.76962115001483,42.77062151202684,42.77108391217379,42.77123765896062,42.77133144371902,42.77150216611951,42.77169557975753,42.77214165535315,42.77253845769675,42.77339536906276,42.77354951918451,42.77383084679462,42.77403473208186,42.77439335504542,42.77468552356832,42.77488366337687,42.7749334138631,42.77495037683396,42.77498368419327,42.77546712520228,42.77586241239356,42.77599434031282,42.77616792595571,42.77636990160784,42.77645183330426,42.77666657057352,42.77684900158638,42.77694276439644,42.77702543910439,42.77723979842596,42.77734988904766,42.7774218430138,42.77749990114402,42.77761609746374,42.77765551497173,42.77765151193969,42.77759838821,42.77746954317739,42.77741641573839,42.77741218153081,42.77748449557478,42.77759458658297,42.77803400115184,42.77827603280399,42.77855072206806,42.77871581743083,42.7788096938859,42.77895394940157,42.77931827033851,42.7793959386459,42.77944692483312,42.77951885192486,42.77970100831886,42.77994303859559,42.78027246282912,42.78061323345382,42.78085475650538,42.78103007832134,42.78131461737102,42.78181765311752,42.78190507139649,42.78206855110744,42.78213926567622,42.78244293370376,42.78270407817777,42.78310723141732,42.7834454165876,42.78350566187719,42.78366978754453,42.78411704892267,42.78440610597855,42.78446048029438,42.78461199885168,42.78469904308539,42.7848025435267,42.78501442831837,42.78526495383993,42.78545572751407,42.78561334631402,42.7858257195678,42.78611926593097,42.78639184544609,42.78665809714897,42.78696273657283,42.78733322272075,42.78799248591539,42.78874890377114,42.78914669992089,42.78925541854107,42.78956043297638,42.7898650490843,42.78997915312242,42.79055149800432,42.79103529684274,42.79130687005109,42.79155663523301,42.79167390871069,42.79239091555784,42.79248267162398,42.79263978239917,42.79295333919904,42.79417346994315,42.79473642579531,42.79495546584248,42.79547611180396,42.7956499027207,42.79577508052208,42.79632313986858,42.79660679508991,42.79680664047848,42.79721995304686,42.79756715059598,42.79782184527845,42.79812604169636,42.79855999923352,42.79904359577788,42.79964025294923,42.80013647466811,42.80023419713516,42.80034252345221,42.80094081954437,42.80134809669486,42.8019396049075,42.80232976885245,42.80287253748707,42.80381336840258,42.80427511162384,42.80480242174161,42.80530202499217,42.80554621688061,42.80592158085891,42.80642680194719,42.80716077274971,42.80742207796421,42.80752555001516,42.80765096905903,42.80773851010198,42.80789110651981,42.80865199015982,42.80887499053686,42.80929450400365,42.80965872245036,42.80974098348914,42.81033364262805,42.81091658245271,42.8112701059337,42.81154784118478,42.81177069326305,42.81211404765111,42.81284301253834,42.81340972953046,42.81366553941164,42.81418286408307,42.81473325593767,42.8149132790905,42.81519087778007,42.81558921485942,42.81614482158754,42.81642778584215,42.81699396108453,42.81749414443644,42.81787950186087,42.81843510832969,42.81897877647345,42.81983473328437,42.8201610326837,42.82044824594041,42.82072064649372,42.82097065706966,42.8216076100168,42.8218202943415,42.82213106967578,42.82227281533489,42.82239260428702,42.82276962396282,42.82332252739368,42.82382910505932,42.82406293269266,42.8245588126096,42.82545673667533,42.82677394795826,42.82717706114132,42.82728078695673,42.82740071209292,42.82751487145398,42.8277708968284,42.82815700155178,42.82845118080405,42.82875083661108,42.82949161378145,42.82987303730374,42.83035257374003,42.83050528433474,42.83140986910887,42.831627466055,42.83201384565232,42.8322421570931,42.83307620126818,42.83353926846248,42.83381737697818,42.83435642843398,42.83488534197986,42.83520307364821,42.83540300280931,42.83577933778865,42.83621522436999,42.8366409646822,42.83708767928614,42.83752383192846,42.83772580457843,42.83811393050841,42.83868084471816,42.83876440082012,42.83888201208471,42.83912263568744,42.83932005642477,42.83975922304194,42.83982493084547]}]],[[{"lng":[-88.55575798660554,-88.57561693395257,-88.59542162876348,-88.61520897431133,-88.6351474042944,-88.65426170987278,-88.67412835546867,-88.69399205917703,-88.713854280744,-88.73377902164459,-88.75381749145841,-88.77218167526664,-88.81198656810606,-88.8319767875479,-88.85193355961864,-88.87204439716012,-88.89053420427582,-88.93047320261559,-88.95059380143627,-88.97029305798998,-88.99024756111362,-89.00893093278214,-89.00919610236676,-89.00991061365372,-89.01011441175609,-89.01075551205756,-89.01128221380699,-89.01218937276809,-89.01165354230407,-89.01142288160962,-89.01138990314719,-89.01152455711167,-89.01194000362271,-89.01243742016707,-89.01274366244073,-89.01267695369161,-89.01287196581205,-89.0129694431199,-89.01299273577361,-89.01316469017233,-89.01330661937311,-89.01330685344853,-89.01323491628472,-89.01334625218932,-89.01355183931872,-88.97382009485024,-88.95416090170694,-88.93433173526017,-88.91454325863221,-88.89485029589581,-88.87573902018147,-88.83667907533568,-88.81652762443053,-88.79675219738526,-88.77706941537998,-88.75657865582002,-88.75008370635844,-88.73831336875595,-88.69878736514089,-88.67903503054923,-88.65921760678587,-88.6203056757771,-88.60089595943785,-88.58103930036722,-88.56119287500165,-88.54157560458098,-88.541775507233,-88.54182119162149,-88.54190209016873,-88.54206576066477,-88.5422037081517,-88.54205663568779,-88.54201579644906,-88.54190859852307,-88.54175419309293,-88.54173337169473,-88.54151656089421,-88.5416583439745,-88.54107384003312,-88.54061604102276,-88.54045794766117,-88.54014947024478,-88.54001321309755,-88.53963032094227,-88.53933624040663,-88.53885335605531,-88.53829876936243,-88.53778115819927,-88.53688968262125,-88.5359410881281,-88.55575798660554],"lat":[43.19654694994303,43.19684899737635,43.19701045330408,43.19702561099509,43.19699299142812,43.19707778737825,43.19698631764829,43.19713870013167,43.19751329073057,43.19762962460953,43.19771983869138,43.19768689565642,43.19784137152033,43.19793949323494,43.1978970275533,43.19771668665831,43.19771240527896,43.1977444929648,43.19778820706028,43.19786708725692,43.19786546613631,43.19774165145298,43.18321344664254,43.16870175590542,43.15413580108552,43.13970190313033,43.12519240938813,43.11074581271208,43.09621750860835,43.08172696915402,43.06711851298672,43.05267748783012,43.03808689073226,43.02348655488703,43.00801964885319,42.99356449126417,42.97894186740231,42.96441812433536,42.94992747130295,42.93533225394695,42.90543364475108,42.89073426712228,42.87498964306116,42.86224101738205,42.84745845093136,42.84654999539134,42.84602305060051,42.84610433783609,42.84608746168136,42.84594834697327,42.8452030023348,42.84398578655024,42.84363099036151,42.84310577867347,42.84278680661289,42.84272315768588,42.84268724510304,42.84270630726495,42.84265470802576,42.84261476602104,42.84254476773254,42.84247422949627,42.84261163920308,42.84272488706689,42.84285606232987,42.84302906610112,42.85748063622073,42.87188476028108,42.87498042092061,42.886518056889,42.90093369879317,42.93097037647559,42.94555248159234,42.9601165364241,42.97456416337572,42.98922351941281,43.00334748519111,43.01936040612961,43.03377400434164,43.04829780317562,43.06276094008987,43.07721312020427,43.09180816018741,43.10756273593904,43.12202596694807,43.13669526564909,43.15113399585627,43.16552279028502,43.18006379340926,43.19610326351531,43.19654694994303]}]],[[{"lng":[-88.06408840188878,-88.06337064821824,-88.08313733353911,-88.10300801840647,-88.12289548547963,-88.14272821863607,-88.18229922424693,-88.20201831238045,-88.22176665419151,-88.24152890790469,-88.26137432404036,-88.27039017910155,-88.27258925249244,-88.27431626621818,-88.28135077568176,-88.30004972627486,-88.31989702782737,-88.33979058416247,-88.35972494246954,-88.37903858294756,-88.41799159606697,-88.43769399080274,-88.45765746742819,-88.47763997051757,-88.49747899402223,-88.51706557385971,-88.5359410881281,-88.53688968262125,-88.53778115819927,-88.53829876936243,-88.53885335605531,-88.53933624040663,-88.53963032094227,-88.54001321309755,-88.54014947024478,-88.54045794766117,-88.54061604102276,-88.54107384003312,-88.5416583439745,-88.54151656089421,-88.54173337169473,-88.54175419309293,-88.54190859852307,-88.54201579644906,-88.54205663568779,-88.5422037081517,-88.54206576066477,-88.54190209016873,-88.54182119162149,-88.541775507233,-88.54157560458098,-88.52242344996844,-88.50290840276611,-88.4830562192151,-88.46375623898017,-88.44375092181275,-88.42405655562992,-88.40482585033295,-88.38532720745407,-88.37516305733767,-88.36560580737037,-88.34586042649832,-88.32613686424564,-88.3063114192002,-88.28709320093746,-88.26727318221572,-88.25011823502415,-88.22740778534782,-88.20784677923588,-88.18808894871943,-88.16882789605202,-88.14894895006611,-88.12916694898622,-88.10946424977345,-88.06997879242012,-88.06981121907179,-88.0695847218017,-88.06951591942094,-88.06953160013737,-88.06950195226659,-88.06949863887012,-88.06937933023744,-88.06920731080652,-88.06891545318365,-88.06838419758415,-88.06772134939031,-88.06722275740727,-88.06696962467812,-88.06689467654888,-88.06684259173134,-88.06641614572125,-88.06615574137049,-88.06563863193631,-88.0650215118869,-88.06448374928438,-88.06408840188878],"lat":[43.1624886742729,43.19211553761593,43.19206345461876,43.19188136362271,43.19192626916827,43.19210357730323,43.19256989392087,43.19288593144706,43.19304988513917,43.19318869821051,43.19322179008228,43.19318478642206,43.19315806298565,43.19315091475013,43.19316587857562,43.19304980299687,43.19293290305888,43.19289482713996,43.19305618931592,43.19356997175885,43.19471211504208,43.19525512152497,43.19567782300344,43.19571797612418,43.19565089533788,43.19574093150162,43.19610326351531,43.18006379340926,43.16552279028502,43.15113399585627,43.13669526564909,43.12202596694807,43.10756273593904,43.09180816018741,43.07721312020427,43.06276094008987,43.04829780317562,43.03377400434164,43.01936040612961,43.00334748519111,42.98922351941281,42.97456416337572,42.9601165364241,42.94555248159234,42.93097037647559,42.90093369879317,42.886518056889,42.87498042092061,42.87188476028108,42.85748063622073,42.84302906610112,42.8428730663895,42.84283195118576,42.84271757254704,42.84263669348578,42.84265652747189,42.84256907813322,42.8427151716288,42.8428386397425,42.84282296278795,42.84282179569691,42.84278755578304,42.84254142748204,42.84225141692194,42.84205301958309,42.84201999934584,42.84194479869109,42.84221967336304,42.84251697775025,42.84279136047088,42.84283937969329,42.84298673409209,42.84316303232093,42.84326883538048,42.84334495427471,42.85818586870271,42.87292205570113,42.88733050006886,42.90209335752844,42.91663634320746,42.92991470463438,42.9445239329454,42.95912210769972,42.9736490045284,42.98824780407032,43.00277591995229,43.01637981192132,43.03092737963682,43.04541292055882,43.05989853295511,43.08892161797551,43.10468955082277,43.11918376943945,43.13359691006697,43.14799081746929,43.1624886742729]}]],[[{"lng":[-90.34994847439631,-90.3510814753643,-90.3519140354403,-90.35278930133735,-90.353409234681,-90.3541091859116,-90.35514511559882,-90.35593324286391,-90.35707949479257,-90.3579634902036,-90.35881822575595,-90.35979675036413,-90.36047599006213,-90.36111859478802,-90.36198726996349,-90.36297287023039,-90.36372511651022,-90.36474032242143,-90.36576270221514,-90.36674126136342,-90.36876385335532,-90.36976393848575,-90.37060356799793,-90.37126780664374,-90.37217306883041,-90.3731219785717,-90.37424587940841,-90.37528212402671,-90.37595400982973,-90.37708575247387,-90.37791761060464,-90.37853033274594,-90.37942044510369,-90.38022335409448,-90.38093857046239,-90.38161711264324,-90.38247830349935,-90.38332510992861,-90.38419393553346,-90.38536223068969,-90.386786046483,-90.38788852780549,-90.38923231961869,-90.39029927709436,-90.3910009437766,-90.39176115790031,-90.39248473171179,-90.39288755204076,-90.39323735216658,-90.39361704449564,-90.39426699179045,-90.39514285134382,-90.39585788792631,-90.39666023121023,-90.3975792242864,-90.39825035180624,-90.39974614966627,-90.40092828310327,-90.40303118382859,-90.40442604995225,-90.40505016307152,-90.40563812171445,-90.40630213573873,-90.40703887913598,-90.40821326046843,-90.4088121386805,-90.40936017164854,-90.41042807818616,-90.41122563227938,-90.41193532090905,-90.41270365093337,-90.41379389852774,-90.41626699488781,-90.41743699182433,-90.41824622260445,-90.41887639150471,-90.41907448976328,-90.41943623258183,-90.42489205892055,-90.42528272180341,-90.42628284146004,-90.42720290981521,-90.4280943856793,-90.42921955613011,-90.42956773981183,-90.42973220661005,-90.42998435282803,-90.4297794964622,-90.42961250648716,-90.42928796780956,-90.42911370488581,-90.42880499246316,-90.42865311125506,-90.42856142773084,-90.42850734561486,-90.42853031435303,-90.42862099832736,-90.42851720095905,-90.42836218372096,-90.42816635950311,-90.4278388244887,-90.42762411254132,-90.42746849926317,-90.42749474859387,-90.42738498290845,-90.42726479246603,-90.42704540028976,-90.42691400075881,-90.422133587118,-90.41721365931954,-90.41229372655202,-90.40737378550999,-90.4024311721482,-90.39748893592778,-90.3925466995592,-90.38760446064188,-90.38267529345111,-90.37774649187101,-90.37281768181127,-90.36788923827908,-90.36293454657041,-90.35797984488636,-90.35302552313551,-90.34807043000968,-90.34314949150256,-90.33822778086727,-90.33330605892604,-90.32838394403235,-90.32341467879128,-90.31844502864321,-90.31347498522886,-90.30850532106113,-90.30468933543456,-90.29977027625775,-90.29485082942075,-90.28993174733469,-90.28494455643069,-90.27995735756919,-90.27497014717294,-90.26998331033923,-90.26501834386002,-90.26005374614142,-90.25508913522854,-90.25012489569316,-90.24520579950943,-90.24028708233807,-90.23536837070056,-90.23045004011641,-90.22544328142804,-90.22043689942566,-90.2154301202556,-90.21042333380959,-90.20613303555834,-90.20436439849836,-90.20068760166028,-90.19581973296187,-90.1909514865238,-90.18682787349907,-90.181907667709,-90.17698746331614,-90.17206802186219,-90.16709096251181,-90.16211430045706,-90.15713803824518,-90.15216140699677,-90.14723687228049,-90.14231196303859,-90.13738706519592,-90.1324614093909,-90.12753044466156,-90.12259872354721,-90.11766738668166,-90.11273644073898,-90.10781806916931,-90.1029000871533,-90.09798211625838,-90.09306377624543,-90.08809318443679,-90.08312221130642,-90.07815085734421,-90.07318026354952,-90.06987132587393,-90.06495157783235,-90.06003144666143,-90.0551116892225,-90.05020677722355,-90.04530225609359,-90.0403973601813,-90.03549323608421,-90.0305188187706,-90.02554516543877,-90.02057113066299,-90.01559671191765,-90.01065707107468,-90.00571705397469,-90.00077703642071,-89.99583741326566,-89.99089053411856,-89.98594404041901,-89.98099793473942,-89.9760510649284,-89.971091602236,-89.96613176664563,-89.96117194046377,-89.95621250712223,-89.95114870399001,-89.9462286196479,-89.94130853849008,-89.9363888428464,-89.93144775173319,-89.92650705135115,-89.92156596902009,-89.91662527750319,-89.91185204124547,-89.90707881572368,-89.90230559786441,-89.89753277364309,-89.89255599013872,-89.88757995694669,-89.88260391513013,-89.87762747244204,-89.87264001508514,-89.86765254735649,-89.86266507695976,-89.85767721804758,-89.85288040030791,-89.84808280558327,-89.83848835112659,-89.83811983036239,-89.83804341311203,-89.83801962133883,-89.83807463819963,-89.83819382946238,-89.83834784150501,-89.83848587919265,-89.83852826643759,-89.83844365571326,-89.8384335204001,-89.83847759289257,-89.83824870615616,-89.83819091088803,-89.83814735811801,-89.83823153651944,-89.83818775481305,-89.83809163019218,-89.83810455945378,-89.8380927297094,-89.83799832068006,-89.83803973788552,-89.83816251795569,-89.83817774647476,-89.83817824394943,-89.83955843344036,-89.84027758463934,-89.84085098026208,-89.84128418136439,-89.8418332959465,-89.84237629153964,-89.84329748226008,-89.84667761548572,-89.84966991243621,-89.85136258143488,-89.85274469146806,-89.85378134953372,-89.85423659747202,-89.85458006781199,-89.85534934515864,-89.85599926377652,-89.85692908459581,-89.85782888727606,-89.858522956953,-89.85927939891444,-89.86025026868219,-89.8611345465266,-89.86211701271635,-89.86352194379894,-89.86425411836836,-89.86533168585053,-89.86599849645468,-89.86670702196714,-89.86760590440588,-89.86829648285401,-89.86922522031531,-89.86962222963351,-89.87004116398639,-89.87101196106453,-89.87189312841221,-89.87268494394991,-89.87350645118052,-89.87476240097392,-89.87559595559611,-89.87630461375295,-89.87710273184813,-89.87785919474834,-89.87877650855027,-89.88002143248858,-89.88068863550507,-89.88132606501716,-89.88259214421888,-89.88325354854673,-89.88434402184284,-89.88509794972528,-89.8857476302763,-89.88623048258344,-89.88705890707836,-89.88790508708462,-89.88910274119671,-89.89006794438633,-89.89074715320736,-89.89185227957144,-89.89250758874662,-89.89371092153607,-89.89446146066159,-89.89528349674268,-89.8960339553533,-89.89709411586085,-89.89776714504723,-89.89869631209275,-89.89999465094786,-89.90084037766455,-89.90181711401114,-89.90274034807676,-89.90361883785997,-89.90470263914752,-89.90577143745841,-89.9072478415285,-89.90822412813574,-89.9090992288707,-89.9103789359105,-89.91123226455848,-89.91235269483531,-89.91313917752329,-89.91436340142391,-89.91519441405929,-89.91594383613536,-89.91681205089988,-89.91819975397219,-89.91915331982328,-89.92060771966295,-89.92338660780396,-89.9246182341837,-89.92524141713344,-89.92590173848248,-89.92669551671918,-89.92755616706678,-89.92820159120306,-89.92936646325529,-89.93047938621785,-89.93151830795695,-89.93435317878698,-89.93525112599917,-89.93746637675309,-89.93819362907662,-89.93900994443474,-89.93973716254851,-89.94060163389986,-89.94109685408412,-89.94871127120832,-89.94961728295571,-89.95032603708536,-89.95150611303231,-89.95225576699995,-89.95309449969788,-89.95372913298719,-89.95452338441683,-89.95594116675126,-89.95672423897129,-89.95745902954344,-89.95864653653238,-89.9598785572617,-89.9609546990615,-89.96161519853293,-89.96274323582209,-89.96350019293568,-89.96444271374317,-89.96568207062907,-89.96698080305271,-89.96802720280844,-89.96881385281482,-89.96968955364385,-89.97141498505501,-89.97206802518144,-89.9730253375443,-89.97430172498504,-89.97496961210865,-89.9758824397079,-89.97702536533933,-89.9781088957302,-89.97903651593784,-89.97983797395642,-89.98089174793925,-89.98156707344064,-89.98276933886552,-89.98394938920885,-89.98506055058893,-89.98599415999557,-89.98664730525238,-89.98731529227048,-89.98860672468054,-89.98996494305067,-89.99114503194579,-89.99244388381082,-89.99410270005221,-89.99497107469445,-89.99631445691752,-89.99823674529149,-89.99914963710252,-90.00004025785331,-90.00092345405774,-90.00171758054211,-90.00248943192796,-90.00395889970576,-90.00468620513166,-90.00531701759651,-90.00606656801789,-90.00694968793717,-90.00757306333995,-90.00857489374812,-90.00960637478588,-90.01028906489772,-90.01120180304761,-90.01181029203818,-90.01316080874301,-90.0138212078773,-90.01491197432658,-90.01575044205218,-90.01642566659054,-90.0180728733979,-90.01882967864357,-90.01988699734666,-90.02063641044477,-90.02131902901341,-90.02321472946883,-90.02386021387817,-90.02437951810192,-90.02512137309807,-90.02569999718126,-90.02601364378,-90.02618216051016,-90.02670134152606,-90.02702021695704,-90.02768026769112,-90.02835130153623,-90.02859590983878,-90.02898506298808,-90.02950400789612,-90.02993040620051,-90.0306720355934,-90.03179932748999,-90.03270414797886,-90.0338981567311,-90.03450628831263,-90.03509961542306,-90.03566328329775,-90.03624552782757,-90.03719490394005,-90.03793659389369,-90.03962396937467,-90.04035082624223,-90.04173775306329,-90.0431283159312,-90.04779330156634,-90.04873135144592,-90.04910937848236,-90.04963173921955,-90.04968316407343,-90.04958708495623,-90.0495169694193,-90.04946332404835,-90.04936643773166,-90.0491840451224,-90.04910736290894,-90.04910936221214,-90.0489456581105,-90.04891534443631,-90.0489893256623,-90.04900040516857,-90.04921997317157,-90.04955482757302,-90.04991208840875,-90.05032898022898,-90.0506937973432,-90.05128203610697,-90.05185252344155,-90.05198937719497,-90.05234654236122,-90.05258449641757,-90.05273288910782,-90.0527473495263,-90.05269488880216,-90.05224673019138,-90.05202266515057,-90.05194143162188,-90.05188290698446,-90.05183574670781,-90.05205112970896,-90.05232640198464,-90.05263886457027,-90.05275468315834,-90.05313017873475,-90.05385268870938,-90.05464240000373,-90.05573770678279,-90.05703422712338,-90.05850950171263,-90.05954534257678,-90.06052166448796,-90.06118512218642,-90.06187845383675,-90.06239295226764,-90.06288514863608,-90.06349673523121,-90.06433213503729,-90.06530199561266,-90.06604051185717,-90.06724892303302,-90.06797247121379,-90.06857664974025,-90.06948234920128,-90.0698088118765,-90.07028681041093,-90.07050808626026,-90.07138796898425,-90.07205915115445,-90.07299880958492,-90.07437855009788,-90.07502013998713,-90.07617679785085,-90.07664699174101,-90.07723661955383,-90.07768447680742,-90.07805020323809,-90.07834747966602,-90.07888617173681,-90.07940116502984,-90.07993851271812,-90.08126455169206,-90.08224371671869,-90.08362054804871,-90.08463500834647,-90.08548617669457,-90.0863600612447,-90.08722320258254,-90.08791071091072,-90.08906607253893,-90.09028839797989,-90.09091448095185,-90.09179396098351,-90.09253921704575,-90.0938059339824,-90.09514716668207,-90.09607112205842,-90.09706970719911,-90.09797138132031,-90.09932780452522,-90.10004335496352,-90.1009303233815,-90.10204855213284,-90.10284628994614,-90.10365151026802,-90.10431499409182,-90.10558976880853,-90.10655143281075,-90.10738640324017,-90.10795703074801,-90.10884290441727,-90.10938417152423,-90.11088223378211,-90.11205980018913,-90.11284230695257,-90.11366961582623,-90.11491496869135,-90.11561595993724,-90.11671205833815,-90.11747244357636,-90.11876962336137,-90.12046949872554,-90.12083780587403,-90.1211992752236,-90.12146134401171,-90.12216244576472,-90.12311733934457,-90.12427352474347,-90.12516884153656,-90.12592222763156,-90.12662345542192,-90.12727242389204,-90.12807811587112,-90.12906266120933,-90.12946926652202,-90.12971158812225,-90.1305172313737,-90.13138991319011,-90.132135944067,-90.13306092748402,-90.13389636648371,-90.13451548256913,-90.13561900373936,-90.13690143440867,-90.13836264969119,-90.13951073643315,-90.14047245641667,-90.14167279026802,-90.14291782912841,-90.14369325831247,-90.14530384567412,-90.14598978034385,-90.1466235329285,-90.1476823609601,-90.14886802618332,-90.1495689571375,-90.15027738481609,-90.15114975214645,-90.15223827550197,-90.15386363610217,-90.15554855263693,-90.15674292451739,-90.15751182970511,-90.15828072093491,-90.15897448884027,-90.15963070623125,-90.16077419271583,-90.1623295520493,-90.16386606130509,-90.16488696278694,-90.16565478987734,-90.16718092288652,-90.16814520755483,-90.1727423440695,-90.17433383973759,-90.17488598273269,-90.17532359718575,-90.17577521941591,-90.17627130925406,-90.17719843180663,-90.17777904933811,-90.17869690218421,-90.17945595582346,-90.18001765151554,-90.18109500773953,-90.18221988470944,-90.18261305946685,-90.18328942612881,-90.18382474760338,-90.18450111500879,-90.1849615730122,-90.18535652569436,-90.18576119774924,-90.18626110357926,-90.18671346756022,-90.18677482351195,-90.18693873400119,-90.18711875894201,-90.18757011108792,-90.18789718428084,-90.18816582601372,-90.18855642907198,-90.18923226878286,-90.18999796868287,-90.19071439111211,-90.1915114221826,-90.19249660282892,-90.19300887401924,-90.19350008819332,-90.19428960434774,-90.19504290152649,-90.19615506944821,-90.19699638434858,-90.19870008666064,-90.19967962356388,-90.2012882488231,-90.21052951819736,-90.21151048116404,-90.21265951406333,-90.21352263547668,-90.21421687774297,-90.21462649408608,-90.21642441479258,-90.21763810433326,-90.21830345227714,-90.21978109730424,-90.22082733361226,-90.22226893263863,-90.2231587772408,-90.22384979132681,-90.22440603422146,-90.22507206777544,-90.22603115243881,-90.22698329061897,-90.22749601789438,-90.22799416430762,-90.22912967195523,-90.22984035731021,-90.23104909127447,-90.2318769134916,-90.23276318736589,-90.23324695145556,-90.23381133963875,-90.23422910561476,-90.23510113460495,-90.23586298545732,-90.23645643675057,-90.23692528571986,-90.23771647397552,-90.23920366253545,-90.23975315470631,-90.24045679396777,-90.24113795592879,-90.24187725570908,-90.24278490177365,-90.24373598972998,-90.24433590907502,-90.24517710495421,-90.2458648595032,-90.24707945136667,-90.24812504473657,-90.24898027316756,-90.24977034023478,-90.25034835851649,-90.25092709832097,-90.25223929673753,-90.2533540406267,-90.2538523879581,-90.25431407329164,-90.25521494169922,-90.25574964080296,-90.25646721611612,-90.25710431172499,-90.25768271495944,-90.25837094831269,-90.25917628252185,-90.2598056455541,-90.26068290543334,-90.26169108428849,-90.26301275648986,-90.26380129738332,-90.26463402370135,-90.26577377547029,-90.26671628612952,-90.26778987635586,-90.2684177461002,-90.26957087819925,-90.27029323184522,-90.27092802043883,-90.2721756386193,-90.27310232062848,-90.27389780862811,-90.27491945912352,-90.27563463780355,-90.2763351969857,-90.27700664695229,-90.27803596490904,-90.27908778171421,-90.28023545586983,-90.28106209489887,-90.28178654167876,-90.28292101955637,-90.28360954475481,-90.28431361085866,-90.28463100369918,-90.28467064402622,-90.28468033550951,-90.28471982975465,-90.2850015630973,-90.28520106859642,-90.28539310004001,-90.28574631487113,-90.28653003516592,-90.28682679145109,-90.28728173412399,-90.28796434575733,-90.2885156219464,-90.28922059088393,-90.29031361037035,-90.29092934598124,-90.29153742544646,-90.2921525901408,-90.29333149842385,-90.29595920046077,-90.29702742772099,-90.29768557507343,-90.29851176895221,-90.29929397728002,-90.29972985423566,-90.30035352483959,-90.30125161136365,-90.30677892289194,-90.30835638769646,-90.30951792194294,-90.31094330973465,-90.3121274208885,-90.31296838041158,-90.31378747863251,-90.31497200489227,-90.31567401422444,-90.31641226183197,-90.317548668607,-90.31799054525,-90.31917388436079,-90.32045246117819,-90.32148280236606,-90.32274019778284,-90.32426800453989,-90.33057514964922,-90.33269095562531,-90.33531637108054,-90.33595245688794,-90.33658851089554,-90.33789634184404,-90.33911620081149,-90.33989081680924,-90.34103105612122,-90.3419959237941,-90.34289511202682,-90.34353093231736,-90.34424681130373,-90.34507977365151,-90.34644656673329,-90.34751372629253,-90.34861766925511,-90.34994847439631],"lat":[43.20973205313496,43.20976600414796,43.20966187409068,43.2093598119646,43.20913872121165,43.20885322966725,43.20853461281047,43.20833437160164,43.20813834727718,43.20808747422946,43.20803133564814,43.20789996224913,43.20782832927209,43.20774076985049,43.20757230571412,43.20740345981444,43.20732088405813,43.20721608041758,43.20708986237824,43.20696912129627,43.20667929551129,43.20649430634504,43.20636328993669,43.2062328366771,43.20608021267206,43.20589536182352,43.20564578524893,43.20540450057896,43.20533279677554,43.20517404744321,43.20497350509518,43.20478972123007,43.20455690392659,43.20440455377457,43.20425249244251,43.20407916407981,43.2038998731607,43.20375805056043,43.20363217973247,43.20348391576152,43.20329735087982,43.20314393311265,43.20301641571643,43.20302347682996,43.20304513619386,43.20307995482491,43.20309885726044,43.20313430477412,43.2031160355471,43.20304150851108,43.2029751206736,43.20281172617758,43.20264086130411,43.20241088142483,43.20214040150843,43.20196165460946,43.20161965005858,43.20136425911038,43.20111630780265,43.20098843138425,43.20094166852144,43.20084514997408,43.20070113181161,43.20050605856593,43.20019181870455,43.2001432843029,43.20014228290893,43.20029882779976,43.20045633966193,43.2005874342743,43.20074504043424,43.20096027994062,43.20143243207288,43.20155112248823,43.20162372608055,43.20167261433075,43.2016440353518,43.20167056320545,43.2012749955985,43.20119880695574,43.20105609089233,43.20096177983818,43.20095844750982,43.20093552144998,43.16158009806882,43.14726000595375,43.11815372012878,43.1039249611276,43.08960287663988,43.07524223737529,43.06055737999174,43.04610880517364,43.03157236844184,43.01701962881606,43.00246108224344,42.9879108266366,42.97333349973654,42.95872407749516,42.94423047453341,42.92924746264596,42.91463370506475,42.90009081775904,42.88549814800526,42.8708539598755,42.8562860867326,42.84208110525407,42.82761586578194,42.81303121419595,42.81305169373591,42.81307248514676,42.81309306092577,42.81311328670519,42.81311494772292,42.81311625423159,42.81311734560111,42.81311822548816,42.81319356441399,42.81326869177551,42.81334360518966,42.81341830405875,42.81345094344012,42.81348350953254,42.81351572325369,42.8135478623835,42.81360613677624,42.81366434061071,42.81372219430185,42.8137799786461,42.81381348417213,42.8138467775513,42.81387999191973,42.81391284969798,42.8139654894203,42.81403314842357,42.81410060197809,42.81416784144031,42.81422153427981,42.81427486400063,42.81432812125881,42.81438116286102,42.81445602473427,42.81453052760504,42.81460495815611,42.81467903097794,42.81466992734536,42.81466046627596,42.814650798775,42.81464106029107,42.81470163619644,42.8147619979368,42.81482213789677,42.81488205713192,42.81487995606373,42.8148789391456,42.8148769311552,42.81487405411742,42.81487097016432,42.81487743479022,42.81488502825801,42.81489241213776,42.81489958406931,42.81480250422727,42.81470520445311,42.81460769087588,42.81450996031341,42.81445359617798,42.81439716118391,42.81434037450832,42.81428337628663,42.81424292087335,42.81420224967761,42.81416136264586,42.81412026711794,42.81405164833976,42.8139828185662,42.8139136383196,42.81384438518209,42.81385221333866,42.81385996647201,42.81386736118017,42.81387468368468,42.81395026637713,42.81397337665554,42.81399613773885,42.81401882709298,42.81396404988123,42.81390906241819,42.81385372578048,42.81379831622815,42.81380266320541,42.81380679270433,42.81381084427407,42.81381454120183,42.81380704225971,42.81379946889116,42.8137915437735,42.81378349554844,42.81376467606778,42.81374563684811,42.8137262484248,42.81370678240632,42.81364868767098,42.81359023939502,42.81353171493118,42.81347283958808,42.81345464873676,42.81343686094249,42.81341872068506,42.81340037167737,42.81337476759951,42.81334908312186,42.81332305143911,42.8132969418233,42.81324415796735,42.81319131257378,42.81313827004584,42.81308488783775,42.81316760119012,42.81325010141013,42.81333238599323,42.81341445512695,42.81345858499402,42.81350235168797,42.8135460470812,42.81358938612554,42.81366131003549,42.81373303440504,42.81387588115929,42.84267396985268,42.85739194784052,42.87201104914899,42.90107184940074,42.91546309332157,42.93002826376703,42.94471972631703,42.95923471358009,42.97366660905374,42.98818130448327,43.00278268882019,43.03195553242645,43.06003479911405,43.07467064743285,43.08933928230738,43.10390357808071,43.11820437488557,43.13308862866323,43.14759770418096,43.16207454524373,43.17663793192492,43.1911237297947,43.20557692751107,43.20604780124761,43.20498960128882,43.20439813794901,43.20374547728746,43.20318410530289,43.20270130575467,43.20227948579584,43.20183204472553,43.20036416506969,43.19914834583232,43.19851452509352,43.19825057532469,43.19801665837394,43.19785637917955,43.19767787695566,43.19719529106011,43.19682146271828,43.19642619843581,43.19613108517126,43.19596640188112,43.1958627812697,43.19572892664793,43.19570386133889,43.1957050496,43.19583742788708,43.1959341372462,43.19601382523138,43.19604946117213,43.19607207082048,43.1961776680542,43.19623945344145,43.1963102211432,43.19630033077664,43.1962196671768,43.19611185649391,43.19615205594651,43.19620956993808,43.19630632249733,43.19651681002421,43.19654821664265,43.19650977562496,43.19639737065063,43.19627184402166,43.19610292382973,43.19586898705544,43.19570849932134,43.19554797802782,43.19513978416544,43.19488778871798,43.19444454247435,43.19406194152617,43.19370101351933,43.19339654495526,43.19296172280474,43.19257919732447,43.19208809131376,43.19172308581803,43.19146670577142,43.19108875133214,43.19087154946563,43.19049802200988,43.19029396777815,43.19005511982459,43.18989026036871,43.18966032954503,43.18950846128418,43.18927839847166,43.18901815717975,43.18883156738472,43.18862330486053,43.18836270986264,43.18815434290553,43.18799842209234,43.18791653568266,43.18797437779011,43.18804486632605,43.18809783813784,43.18817247974852,43.18823830438526,43.18834234107975,43.18845154573014,43.18863709253436,43.18874631698178,43.18882832168249,43.18887239746085,43.18891141092089,43.18895009673263,43.18906515081545,43.18933855475494,43.18957829704954,43.18974161106249,43.1898832263515,43.1901335233679,43.19031869543431,43.19051459010501,43.19075967008538,43.19101013983024,43.19107593062493,43.19118076213643,43.19122471746243,43.19126939028649,43.19131865559403,43.19136253485827,43.19144980259182,43.19158058126991,43.19162191879744,43.19317171182298,43.1933388450126,43.19336087369477,43.19332880273543,43.19324766400046,43.19313940799589,43.19303106347846,43.19285218647305,43.1925052093662,43.19236975576606,43.19228857790776,43.1922075610747,43.1921428416257,43.19211606138219,43.19214343745162,43.19220353772106,43.19227437789367,43.19230725619538,43.19238908444566,43.19246548931317,43.19254723813081,43.19262890930074,43.19272688609011,43.19292824382582,43.19306959259953,43.19325444609822,43.19359684099208,43.1937653223904,43.19387955274832,43.19394494729296,43.19408091644409,43.19437975003479,43.19467312073967,43.19509142340184,43.19531959908145,43.19563473608856,43.19578695177693,43.1958000456014,43.19574378225012,43.1956949878244,43.19565162024477,43.19560288422738,43.19559215417162,43.19563026017499,43.19558691521117,43.19546211880031,43.19536984536835,43.1952232832199,43.19490837934833,43.1947509149458,43.19455000453029,43.19422419265865,43.19395267192261,43.1936920106978,43.19312723400634,43.19288284929067,43.19258416420527,43.19226917773169,43.19187272728536,43.19160118029504,43.19111239437213,43.1904878434081,43.1900533714487,43.1896025820306,43.18934187603593,43.18867924717963,43.1883153521902,43.18776133849919,43.1873485333382,43.18702805815715,43.18622414529205,43.18583847987954,43.18539303197507,43.18515396758911,43.18490948728333,43.18417061782196,43.18389354647397,43.18356219504111,43.18307875002073,43.18267678868114,43.18239751858076,43.18228570803289,43.18173171073872,43.18129179245167,43.18051512256645,43.17946150606075,43.1789184291426,43.17808208336995,43.17716424971258,43.17667542797702,43.17600188707914,43.17506759295449,43.17439942642885,43.17347051575282,43.17302506156071,43.17265562976189,43.17232964605496,43.17206338429278,43.17161237570649,43.17126459901836,43.17056896312256,43.17026462268129,43.16966680471592,43.16900380464193,43.16720456513888,43.16671001954826,43.16631345715429,43.16552585606517,43.16490679030155,43.16425777202581,43.16403595017623,43.16366337801268,43.16310410692554,43.16229509106682,43.16200107851333,43.1616652202118,43.16102453003928,43.1603241813736,43.15962294104191,43.15943277849134,43.15908807063431,43.1583785370355,43.15773446850227,43.15709583679732,43.15659364447878,43.1558785348218,43.15528889462868,43.15499147177741,43.154287375691,43.15364062775023,43.15285477015333,43.15227217041121,43.1520007886411,43.15086051265975,43.15030128597546,43.15017348941075,43.14987486777708,43.1495974357705,43.1487133237841,43.14815114289729,43.14751254455347,43.14724639423965,43.1468738642014,43.14643697516544,43.14616103145462,43.14594222840046,43.14573422862383,43.14543062603922,43.14539735121789,43.14546777743438,43.14566932729367,43.14593088597043,43.14621163648282,43.14653877821554,43.14700772972372,43.1476948288121,43.14865468973268,43.14930363098458,43.1502715223,43.15082769475315,43.15126388516109,43.15183659462782,43.15196438560485,43.15211768497579,43.15222311734046,43.15257726788574,43.15291516941373,43.15337840739989,43.15410601049467,43.15459670983422,43.15570641713784,43.15620267569918,43.15682981996892,43.15733154739286,43.1577187322605,43.15807254936994,43.1586076256271,43.1591256755254,43.15963278445899,43.16051513441347,43.16105266199588,43.16163122098892,43.16191205446351,43.16210767109542,43.16220375479113,43.1622940808889,43.16230352615398,43.16225897718723,43.16212978406961,43.16207471780031,43.16198670777374,43.16187151376138,43.16153215749474,43.16118726709848,43.16095185008243,43.16077638793017,43.16060100251211,43.16045522345409,43.16042731720842,43.16038288400536,43.16044737103732,43.16053396764435,43.16063692209227,43.16067451458697,43.16073882843092,43.16078159540363,43.16084083980505,43.1608983682038,43.16091459163199,43.16086622775772,43.16073928187465,43.16063445113975,43.16053545916448,43.16048007460193,43.16075439919994,43.1609119391169,43.16108544803908,43.16111468207963,43.16118974114235,43.16134893944712,43.16141877916176,43.16148665983066,43.16156616557634,43.16176732371324,43.16213736709314,43.16251263487123,43.16289909837857,43.16313837410122,43.16338315708207,43.1635897966234,43.16387811104937,43.16413620660269,43.1642763267735,43.16431554951851,43.16457110522759,43.16479929365823,43.16506035966323,43.16533759028174,43.16557125796766,43.16573969644423,43.16583661657372,43.16592785520409,43.16596156355873,43.16598200016625,43.16600264813316,43.16605028168679,43.1660869305336,43.16614052795065,43.16628582964862,43.1663231525215,43.16636054242071,43.16646013039249,43.16660047570175,43.16667049671196,43.16675688225615,43.16681575565048,43.16685796482386,43.16693218694888,43.16697356409956,43.16693203929544,43.16691725623266,43.16689560293869,43.16683286689414,43.1667564452233,43.16654549284019,43.16606281259514,43.16555267965411,43.16510161648208,43.16469553178428,43.16384216476967,43.16328133256365,43.16083431220739,43.15995329747847,43.15958179525639,43.15935161343062,43.15905532877461,43.15875941037823,43.15837359147374,43.15813245023599,43.15778781317225,43.15751493927975,43.15735673980621,43.15705988441529,43.15698259339663,43.15702358395468,43.15721426301997,43.15751199052189,43.15794334136179,43.15828580274288,43.15866954738934,43.15916310721805,43.16014041954379,43.16089472969179,43.16113815874224,43.1613768066259,43.16158390784481,43.16200187477278,43.16224557255627,43.16242432014774,43.16257683830845,43.16280909782635,43.16307406427877,43.1633134361715,43.16363820226231,43.16402255522327,43.1642465169407,43.16435922292037,43.16460914004392,43.16494999207383,43.16560563160905,43.16605858405041,43.166691797901,43.16696807887993,43.16754528328909,43.17039670983206,43.17105244076211,43.17172656436472,43.17208847267631,43.17229349629012,43.17236439635094,43.17268977679446,43.17303495884453,43.17322614198092,43.17384610312821,43.1743305645405,43.1750681745415,43.17554442551014,43.17592577278273,43.17622939778816,43.17659160868946,43.17718845344941,43.17787618167669,43.17825472297703,43.17863863057378,43.17951575467023,43.18008098867696,43.18099002264628,43.18161381537337,43.1822348072764,43.18266148792424,43.18315749994404,43.18351481972805,43.18421868047516,43.18476239251814,43.18520486952411,43.18554069118947,43.18610571011548,43.18716910632583,43.18756889649178,43.18815011293906,43.18858704084178,43.18894364994437,43.1893747408699,43.18970416254751,43.18991137236318,43.19016082486495,43.1904052602453,43.19084634577554,43.19104722365593,43.1911469381773,43.19139112489825,43.19159300468517,43.1919712894483,43.19303223071712,43.19404012812782,43.19440254389293,43.19473295911011,43.19524949848356,43.19556370807329,43.19592561963794,43.19626097881841,43.19653766230923,43.19686754871619,43.19723993744385,43.19746837980462,43.19756795605927,43.19752555982116,43.19731938615799,43.19717857891477,43.19711785390484,43.1970884837738,43.19707025110069,43.19695013459594,43.19683105764579,43.19652362990829,43.19629205453707,43.1960874143828,43.19567282037659,43.19538728165,43.19517689321697,43.19489111478742,43.1946969422761,43.19450280181687,43.19433545629602,43.19413516392959,43.19406310980189,43.19418325935123,43.19440040963806,43.19463919002119,43.1950613822024,43.19542854279359,43.19599345121874,43.19668227762712,43.19735040592987,43.1978635837207,43.19849964152538,43.19937298056614,43.19984826393971,43.20028614560286,43.20081450002446,43.20185023985363,43.2021589458091,43.20255874351032,43.20319852552928,43.20387872804206,43.2046039844328,43.20548060061502,43.20587463224012,43.20619383105872,43.20646490041446,43.20694835254549,43.20779691700344,43.20805074784121,43.20813457435559,43.20820993240428,43.2082560023299,43.20829268909446,43.20822649748533,43.20805841299457,43.20706009470633,43.20684469230699,43.20675602345424,43.20681898089948,43.20685852322313,43.20696314113425,43.20707850587793,43.20719820488562,43.20728180533177,43.20730649340353,43.20730176396579,43.20725400447665,43.2071437920942,43.20707874090916,43.20705981341467,43.20713645984542,43.20738957066849,43.20890739412712,43.20929707459748,43.20961015620443,43.20965640364174,43.20969729837491,43.20962929337207,43.20951342066688,43.20950043376006,43.20952377097763,43.20955296195977,43.20959838337788,43.20959647592365,43.20953551990064,43.20950093739891,43.20952353705945,43.20954702547173,43.20961316464614,43.20973205313496]}]],[[{"lng":[-87.88468257258192,-87.88484791850436,-87.88488560651895,-87.88487027853223,-87.8847965543462,-87.88476582652635,-87.88472130557383,-87.88466139737302,-87.88464681314032,-87.88461685268409,-87.88461763276401,-87.88437792781787,-87.88428882578263,-87.88423581638818,-87.88403449550391,-87.88401914262235,-87.88388467815146,-87.88359270057194,-87.8833837226252,-87.88336142970448,-87.88334684293029,-87.88327921559532,-87.8831970197739,-87.88304795279724,-87.88296498873004,-87.88292042037138,-87.88284664210018,-87.882644548732,-87.88257691707736,-87.88249421398508,-87.88248018589228,-87.88246558665884,-87.88242031891669,-87.88237578815965,-87.88233199232933,-87.88225668754072,-87.88216682504373,-87.88206154184408,-87.88203234666865,-87.88195702834457,-87.88195703962825,-87.88192784272287,-87.88189869576424,-87.88159978996622,-87.88158443083007,-87.88158445115582,-87.88153911897513,-87.88153989868871,-87.88150993228929,-87.88147996430989,-87.88144999937589,-87.88145001046131,-87.88139007741324,-87.88139008598503,-87.88134628811518,-87.88124100212441,-87.88106120252198,-87.88091296286501,-87.88082995650358,-87.88082229992715,-87.88083787333836,-87.88085269654826,-87.8808535031699,-87.88086831534413,-87.88086856918659,-87.88088338228546,-87.88088358709071,-87.8809586182433,-87.88101881754125,-87.88101902155299,-87.88103441061054,-87.88103445801261,-87.88101985957765,-87.88101911881596,-87.88110992040608,-87.8812301117238,-87.88128973883224,-87.88145537729493,-87.88147078665801,-87.88153083349718,-87.88156141462852,-87.88157623898121,-87.88165146854938,-87.8816670631044,-87.88168110877814,-87.88171133063173,-87.88172672011405,-87.8817421379225,-87.881756757308,-87.88175754719447,-87.88177159135385,-87.88177256633524,-87.88181721426115,-87.88183262448321,-87.88184724315292,-87.88184802032166,-87.88186283504005,-87.88186304050875,-87.88187784458196,-87.88187805005893,-87.88189266946782,-87.88189271310333,-87.8819081006037,-87.88190889057073,-87.881938520007,-87.88196854930214,-87.8820587697298,-87.88207359489496,-87.88211956730068,-87.88211901297831,-87.88226962360601,-87.88228444042265,-87.88228446220391,-87.88229926588814,-87.8822994722683,-87.88234429419546,-87.88235989988273,-87.88249495072343,-87.88262343135517,-87.88270555373289,-87.88281808417156,-87.8828859751591,-87.88300697128507,-87.8830367853314,-87.88308122446627,-87.88321664446552,-87.88324665870137,-87.88327724014911,-87.88327666695233,-87.88344188634545,-87.88365233883223,-87.88368294567297,-87.88377336954736,-87.88378801629189,-87.8839394295812,-87.88398504971197,-87.88399278768519,-87.88401511455589,-87.88401513759395,-87.88407517245182,-87.88416602623164,-87.88427127166072,-87.88430076493177,-87.88433155882716,-87.88437753714346,-87.88439120693734,-87.88444391929991,-87.88456510620095,-87.88476745420905,-87.8848126760749,-87.88487292044171,-87.88490254705638,-87.88494775630164,-87.88494795039189,-87.88515862506611,-87.88521924074118,-87.88524886449895,-87.88526387852993,-87.88530909108459,-87.88538433945159,-87.88542954981212,-87.88548981109194,-87.88558005159818,-87.88559488167833,-87.88562528893625,-87.88565537446577,-87.88567094788677,-87.88568655966696,-87.8857162099613,-87.88591150192261,-87.88598713645048,-87.8860171747873,-87.8861070405169,-87.88616765783367,-87.88619732238124,-87.88622849567699,-87.88622774149805,-87.88624331532324,-87.88625820828604,-87.88627302457901,-87.88625867810063,-87.88624407856911,-87.88621339826878,-87.88619878632332,-87.88619201394226,-87.88623049721865,-87.88624477819954,-87.88626035398715,-87.88626058667305,-87.88627522358823,-87.88627618003056,-87.88626158006137,-87.88626162785924,-87.88627627486954,-87.88635901217772,-87.88663773919197,-87.88672758602975,-87.88675760464818,-87.88677225627723,-87.88678784231006,-87.88678728263089,-87.88683347267337,-87.88683273018322,-87.88684811081745,-87.88687819141002,-87.886961306019,-87.88710443883853,-87.88719413872246,-87.88724685987872,-87.88736689933802,-87.88798992166703,-87.88825265953371,-87.88840289452648,-87.88862873650086,-87.88903423920578,-87.88909425747109,-87.88915427440814,-87.88955979681981,-87.88964982169809,-87.88986026644749,-87.88996570059972,-87.89013113169796,-87.89051378245041,-87.89063383532989,-87.89065634496143,-87.89075465770495,-87.89095763105163,-87.89112998130091,-87.89118153510061,-87.8914303260038,-87.89143052183765,-87.89160256351558,-87.89165546315337,-87.89173800879367,-87.8921810956666,-87.89247492550048,-87.8925278363815,-87.89258748346948,-87.89266075178193,-87.90460877413194,-87.94427904076873,-87.95753931123069,-87.96412337787197,-87.98392872747706,-88.02378745201553,-88.04349239301756,-88.06337064821824,-88.06408840188878,-88.06448374928438,-88.0650215118869,-88.06563863193631,-88.06615574137049,-88.06641614572125,-88.06684259173134,-88.06689467654888,-88.06696962467812,-88.06722275740727,-88.06772134939031,-88.06838419758415,-88.06891545318365,-88.06920731080652,-88.06937933023744,-88.06949863887012,-88.06950195226659,-88.06953160013737,-88.06951591942094,-88.0695847218017,-88.06981121907179,-88.06997879242012,-88.03143929549327,-88.01172508842647,-87.99182918278653,-87.95198108370946,-87.93359859823084,-87.91392068416792,-87.89426496388873,-87.87461423204257,-87.85476851997387,-87.83512814622783,-87.82616683454643,-87.82710859137303,-87.8271277259,-87.82830093709104,-87.82519328765358,-87.82650097216573,-87.82930125119704,-87.82935549571863,-87.82940823382241,-87.83025706021273,-87.83048273179779,-87.83089563075325,-87.83110600497976,-87.83171818846452,-87.83194385562102,-87.83231986782521,-87.83250116835949,-87.83284235889606,-87.83352380981006,-87.83367567052893,-87.83403389693241,-87.83420699022631,-87.83452545164133,-87.83477525378962,-87.83495772787015,-87.83518687386589,-87.83533377386775,-87.83536399654321,-87.83536437390705,-87.83555489266365,-87.83572952573972,-87.8359596410217,-87.83619301745524,-87.8361976094041,-87.83628905049882,-87.8364250548146,-87.83657828385306,-87.83665595411652,-87.83667432508767,-87.83696261272317,-87.83738214690389,-87.83750038494176,-87.8377274652035,-87.8378497193507,-87.83797522488486,-87.8384160281358,-87.83858401140448,-87.83894024153538,-87.83909961910626,-87.8391775065688,-87.8394698138171,-87.83993844269438,-87.83999297958516,-87.8399202862503,-87.83995932677236,-87.84026394732794,-87.84064242054305,-87.840986869189,-87.84123657013238,-87.84138065659563,-87.84173888994296,-87.84178519986855,-87.84198133684929,-87.84201291542722,-87.84200147559713,-87.84209333401314,-87.84226785193674,-87.84275830256807,-87.84279676416151,-87.8428350403089,-87.84283581836385,-87.84288290572339,-87.8430356396821,-87.8430312971032,-87.84304227186175,-87.84309448810538,-87.84313255074186,-87.84328844857414,-87.84340933475478,-87.84352887761078,-87.84354436649166,-87.84363368845851,-87.84367902641588,-87.84370905925053,-87.84372302147467,-87.84372397294457,-87.84382783847948,-87.84384371256429,-87.84385843750374,-87.84387429990106,-87.84388826235447,-87.8438892236142,-87.8439335921254,-87.84399365800768,-87.84404607260953,-87.84416544402276,-87.84416620931525,-87.84423297111253,-87.84423315946098,-87.84424788552684,-87.84425590490793,-87.84424920634864,-87.84423389476315,-87.84423464312931,-87.84424917295662,-87.84424916744514,-87.84426466043649,-87.84427976449878,-87.84429448999501,-87.84429468847858,-87.84431018152709,-87.84430959551382,-87.84432509768881,-87.84432452286923,-87.84434747521138,-87.84446014587274,-87.84447487472792,-87.84447487988022,-87.84448960730177,-87.8445043340425,-87.84450509291459,-87.84451982029729,-87.84451311848548,-87.84440827271092,-87.84437918659762,-87.84444594019216,-87.84444613837421,-87.84446163183883,-87.84446105570633,-87.84447654930457,-87.84447597042167,-87.84451346856135,-87.84464050097418,-87.84471472567317,-87.84488058900702,-87.8448800111741,-87.84504415754405,-87.84509006723604,-87.84516372854311,-87.84516391765895,-87.84519414514399,-87.84519413845831,-87.84526951694914,-87.84546351295823,-87.84553831018434,-87.84558250852032,-87.84562823397953,-87.84565788131594,-87.84576253098464,-87.84585225860417,-87.84592744337512,-87.84595786464506,-87.84603324665409,-87.84609197767251,-87.84610708894415,-87.84613655681449,-87.8461373237278,-87.84618132139839,-87.84621920494212,-87.84630128632377,-87.84633090588777,-87.84358984454589,-87.84353300445282,-87.84349951607466,-87.84359424612748,-87.84357204722808,-87.84353108589701,-87.84339999780255,-87.84349146985146,-87.84355558925655,-87.84354448610793,-87.84361758942974,-87.84362103591927,-87.84371978892428,-87.84401853958072,-87.84437700151467,-87.84471211545301,-87.84511459681288,-87.84547324576498,-87.84578616506533,-87.84668204554391,-87.84715208827066,-87.84739228956826,-87.84778692298921,-87.84781086051238,-87.84787210503966,-87.84789107814971,-87.8478652610811,-87.84803293904839,-87.84802090451306,-87.84812352385501,-87.84814250383494,-87.84814023021693,-87.84826448623252,-87.84830315551315,-87.84841130566591,-87.84832143002279,-87.8483281782442,-87.84830790253119,-87.84837777697467,-87.84837951249828,-87.84839598055314,-87.8483379900959,-87.8482051661028,-87.84823733737304,-87.84820232484734,-87.84811602072753,-87.848155273231,-87.84807165588246,-87.84796275625487,-87.84754624724917,-87.84744940260823,-87.8474811764507,-87.84748252429463,-87.84733341539412,-87.84735350583718,-87.84726410553957,-87.84707767960388,-87.84703023322801,-87.84732121171035,-87.84730399849377,-87.84732774612411,-87.84727090703473,-87.847146256041,-87.84710618392124,-87.84692741790161,-87.84692741882118,-87.84685315616022,-87.84683860500161,-87.84673448593767,-87.84658595691727,-87.84658595439832,-87.84657140191578,-87.84658691048942,-87.84658632541691,-87.8466016382518,-87.8466165596153,-87.84660124328742,-87.84660201088306,-87.84658746055406,-87.8465729079704,-87.8465575913708,-87.84652773283956,-87.84642361383084,-87.84639451562224,-87.84636388793152,-87.84636465795218,-87.84634933731367,-87.84635009238002,-87.8463202262347,-87.84627658319134,-87.84623216831942,-87.8461425796993,-87.84597949339437,-87.84597949309884,-87.84594887594498,-87.84591977673361,-87.84581564156012,-87.84572606181953,-87.84548719428628,-87.84530095401945,-87.84519701543795,-87.84512964314548,-87.84508523334799,-87.84501095844573,-87.84500933744174,-87.84493015970878,-87.84476146386911,-87.84451089564755,-87.84434469189723,-87.84418593759099,-87.84399199066392,-87.84380550838856,-87.84347537998268,-87.84319422403672,-87.84308232869226,-87.84322731047327,-87.84349928475275,-87.84365401706802,-87.84385733225493,-87.84385408670477,-87.84377088078918,-87.84370687894517,-87.84360963724242,-87.84337916076339,-87.84330432054718,-87.84315558907817,-87.8430663970727,-87.84292399345024,-87.84261813722784,-87.842558802143,-87.84245411275663,-87.84243898686371,-87.84249831290396,-87.84275995230628,-87.84286445518751,-87.84290884985454,-87.84287974642119,-87.84289429276916,-87.84293160582568,-87.84305199003093,-87.84317180501465,-87.84347038856693,-87.84400017058574,-87.84409682871554,-87.84411979274296,-87.84413510598009,-87.84408265642084,-87.8440231256248,-87.84387346093042,-87.8437237819747,-87.84357487197946,-87.8434250112058,-87.84270897947582,-87.84243987303836,-87.84237977710934,-87.84235739113088,-87.84234992765145,-87.84235758976226,-87.842476855934,-87.84249159933623,-87.84247628823199,-87.84240930492111,-87.84234919708796,-87.84231953365864,-87.8421183521376,-87.84205192879581,-87.84196235232474,-87.84190262616323,-87.8417533370302,-87.84127542579309,-87.84100651896682,-87.84085721942522,-87.84070793113285,-87.84058849985659,-87.84056590764952,-87.84055864209708,-87.84057299049448,-87.84062562122803,-87.84076782797617,-87.84084935801124,-87.84090982455042,-87.8409098265473,-87.84094025035603,-87.84093966880587,-87.84095516750661,-87.84095458822883,-87.8409700933199,-87.84098519453559,-87.84100069000853,-87.84100010113889,-87.84101484363356,-87.84101501271381,-87.84103070664516,-87.84103068434197,-87.84104484672062,-87.84106088393274,-87.84108344917746,-87.84107577484112,-87.84106197863676,-87.84104743230596,-87.8410466514862,-87.84105591065335,-87.84106118616801,-87.84106191296986,-87.84107722436779,-87.84109287895483,-87.84110779498781,-87.84110852242223,-87.84113836843383,-87.84113905301314,-87.84112448353788,-87.84110916874299,-87.8410953717819,-87.84094673404188,-87.84086555247781,-87.84086554283074,-87.8407384077714,-87.84072384845277,-87.84039680470374,-87.84027733118639,-87.84013566110777,-87.83966699704172,-87.83948073183407,-87.83939055714518,-87.83936069640363,-87.83930861735323,-87.83932391644879,-87.83932388904118,-87.83933939472003,-87.839338810467,-87.83935411379058,-87.83935409171738,-87.83936901174756,-87.83936899322181,-87.83938448906957,-87.83938961286313,-87.83941489922259,-87.83941488714869,-87.83944436330563,-87.83944512767353,-87.83953429810009,-87.83953505976338,-87.83954959706715,-87.83955723153585,-87.8395495626005,-87.83944614774855,-87.83946834136093,-87.83949819070932,-87.83958854122152,-87.83964748632685,-87.83970797349218,-87.83981209238615,-87.83987181175858,-87.83993153530383,-87.83999124518526,-87.8400808289128,-87.84022379344744,-87.84024542545566,-87.84035853972361,-87.84055185214474,-87.84067989822121,-87.84076180823239,-87.84080659023049,-87.84085118358196,-87.84087433286199,-87.84100102280401,-87.84112925848983,-87.84121118126768,-87.84129271250276,-87.84139798249754,-87.84156220422111,-87.84168279468317,-87.84187687863104,-87.84197392194231,-87.8421463785054,-87.84243043350307,-87.84246029583826,-87.84261707191598,-87.84273745786216,-87.84286417100594,-87.84294647316661,-87.84310419170383,-87.84314094099192,-87.84317195344164,-87.84317118801279,-87.84323187017074,-87.84330631345217,-87.84345580574873,-87.84350155155269,-87.84371038232318,-87.84383058851418,-87.84386063341097,-87.84387536840732,-87.84387555457108,-87.84389106501543,-87.84392110722531,-87.84398064238196,-87.8440861058229,-87.84410141173163,-87.84411614862142,-87.84411557124554,-87.84413088558451,-87.84413164400532,-87.84414619278152,-87.84414619444466,-87.84416092975698,-87.84416188191953,-87.84417586395679,-87.84417681513179,-87.84432610898273,-87.84434142498004,-87.84435672990068,-87.84435673099549,-87.84437128098362,-87.84437127208355,-87.84440190549128,-87.84440112950995,-87.84443214538504,-87.84445999225882,-87.84452209985399,-87.84452133481142,-87.84453608205851,-87.84455080867232,-87.84458106110434,-87.84458104913458,-87.8445965626594,-87.84459598544548,-87.84461130039971,-87.84462737535466,-87.84464134715418,-87.84464229665392,-87.84465627014887,-87.84465645793972,-87.84467177547323,-87.84467175752428,-87.84468725900135,-87.84470199822178,-87.8448145589237,-87.84495679448291,-87.84503107348574,-87.8450618845926,-87.84507662155136,-87.84509212783453,-87.84510610090986,-87.84510628764689,-87.84512160568643,-87.84512236116257,-87.8451363352451,-87.8451663803064,-87.84518189443102,-87.84518207905208,-87.8451966331132,-87.84521192373209,-87.84522724114223,-87.84522799242659,-87.8452427304982,-87.8452421525229,-87.84525747090959,-87.84525745934897,-87.84534705847027,-87.84534782408649,-87.84539261633144,-87.84539261550019,-87.84543722416984,-87.84555762568883,-87.84557314042192,-87.84557256107686,-87.84560223565819,-87.84561697509007,-87.84569239667874,-87.84570693939604,-87.84572245429115,-87.84573718337711,-87.84575269807119,-87.84575211896852,-87.84576762397799,-87.84578236549604,-87.84579786810473,-87.8457972915682,-87.84581280383239,-87.84581222734563,-87.8458277299254,-87.84582715249651,-87.8458426576853,-87.84585815684058,-87.84587269865575,-87.84587269670274,-87.84588800175005,-87.84591862667594,-87.84593336470859,-87.84593355485967,-87.84594829291895,-87.8459484805491,-87.84596321949925,-87.8459787246575,-87.84599423005157,-87.84600935385558,-87.84603826491646,-87.84605451977207,-87.84606926852277,-87.84606944912008,-87.84608476425029,-87.84608475027525,-87.84607019956073,-87.8460694299567,-87.84605487735702,-87.84604030890128,-87.84602575881269,-87.84602574665783,-87.84590700407999,-87.84589243842059,-87.84590775726133,-87.84590775048915,-87.84592248900513,-87.84593760581724,-87.84595311728863,-87.84597472795133,-87.84596856952275,-87.84595325243178,-87.84593943573557,-87.84592411854197,-87.8459248750051,-87.84591032431132,-87.84590955229021,-87.84589499840976,-87.84588043888952,-87.84588043351104,-87.84580611398552,-87.84579155354946,-87.84573179657792,-87.84573179827943,-87.84567280813013,-87.84567280895649,-87.84562761042091,-87.84556861975271,-87.84555328225539,-87.84553873104701,-87.84553948674566,-87.84552417161375,-87.84551635890868,-87.84552415312747,-87.84553966955114,-87.84554059795877,-87.84552527830844,-87.84552527063713,-87.84550994529882,-87.84549539131436,-87.84548158815049,-87.84545095123332,-87.8454371470412,-87.84542106329519,-87.8454218203114,-87.84540726880961,-87.84540649609977,-87.84522874262231,-87.84519961781578,-87.8451689819032,-87.84508087176103,-87.84502111702992,-87.84484258383596,-87.8447230674506,-87.8446640661453,-87.8446647848688,-87.84467934146882,-87.84468084362885,-87.84466551589423,-87.84465095915283,-87.84465095084566,-87.8446363983871,-87.84463562191317,-87.84456206916921,-87.84445787470207,-87.84436898791304,-87.84433909668822,-87.84433908656375,-87.84435459083136,-87.84435401227782,-87.84432412869708,-87.84420612374655,-87.84411647166209,-87.84402682621099,-87.8438559457805,-87.84379005412345,-87.84371496267447,-87.84363986918079,-87.84351421342406,-87.84349122738978,-87.84331269886681,-87.84321613603306,-87.84321687947948,-87.84307588574629,-87.84295710164089,-87.8429049698352,-87.8428306248078,-87.84280072240784,-87.84282368529706,-87.84278687921638,-87.84274241371132,-87.84275865745312,-87.84280360673338,-87.84284111301008,-87.84290160465866,-87.84296133430647,-87.84305153047333,-87.84311930793467,-87.84313365661149,-87.84329140058141,-87.84335187303805,-87.84342021031033,-87.84344370688061,-87.84345863565865,-87.8435187627768,-87.84351186019769,-87.84344518993336,-87.84344516786449,-87.84335623507955,-87.84347591216512,-87.84351323634198,-87.84359596049337,-87.84365645866278,-87.84370200906177,-87.84370122080618,-87.84368741550112,-87.84360542265762,-87.84344067947679,-87.84340388869394,-87.84338242939954,-87.84338930732275,-87.84350917210014,-87.8435244817416,-87.84358498327695,-87.84359951459309,-87.84368988379717,-87.84372013663332,-87.84390015844853,-87.84401161920742,-87.84422228862709,-87.84447584771523,-87.844618342025,-87.84484298469376,-87.84494850309545,-87.84512832834211,-87.84527789692073,-87.84535408534434,-87.84536170314428,-87.84533945788074,-87.84528734135507,-87.84521299963792,-87.84513177696232,-87.84498982608105,-87.84496013151421,-87.84494554014292,-87.84488651129239,-87.84488650161376,-87.8448642642003,-87.84478990878998,-87.84478990851117,-87.84481977145217,-87.84482052928396,-87.84477528897713,-87.84479845600541,-87.84477716246015,-87.84473269693309,-87.84473996138694,-87.84471081142122,-87.84471769370762,-87.84474795036273,-87.84475655883458,-87.84472721211047,-87.84476398703288,-87.84476396386725,-87.8447796712976,-87.84477966191629,-87.84480186678327,-87.84485511665923,-87.84486986084491,-87.84488497886728,-87.84493017930149,-87.84493016970249,-87.84494492466058,-87.84494511169936,-87.84496062121754,-87.84503473336164,-87.84503546866127,-87.84502089739985,-87.84508085559008,-87.84509559004604,-87.84512585694404,-87.84512584810754,-87.84509671991118,-87.84509595116864,-87.84514115389298,-87.84541812864477,-87.84550068685334,-87.84558286436902,-87.84561983658533,-87.84572594902416,-87.84578589894481,-87.84589067353586,-87.84604065624592,-87.84616784051335,-87.84625059851633,-87.84640805426503,-87.84651935160348,-87.84661685771607,-87.84671359836229,-87.84673677932042,-87.84699080918382,-87.84724559624551,-87.84731993183318,-87.84763449026084,-87.84779177521165,-87.8478892758823,-87.84798641190818,-87.84818813201569,-87.84843584169906,-87.8484965581771,-87.84852568435973,-87.84859349445884,-87.84877282115231,-87.84918453319251,-87.84928952268307,-87.84955907407505,-87.84965678866702,-87.84987346822706,-87.84991121455255,-87.85021871351388,-87.85023383878105,-87.85024860035686,-87.85026448823673,-87.8503234979671,-87.85033882832579,-87.85033958741612,-87.85035358204468,-87.85036947908787,-87.8504737053196,-87.85053463093971,-87.85058674636993,-87.85064652347171,-87.85094657129207,-87.85126003340194,-87.851425578866,-87.85172448660519,-87.85179882575507,-87.85211382993657,-87.85233110818159,-87.85279500016047,-87.85311595338995,-87.85324414689271,-87.85330354583104,-87.85334895252933,-87.85337885063298,-87.85337961942831,-87.8534238742328,-87.85363717959432,-87.85384391932548,-87.85400047638755,-87.85406103063836,-87.85421049693767,-87.854248239784,-87.85442761039489,-87.85447321770674,-87.85450331030917,-87.85455619212043,-87.85465316325143,-87.85478729460397,-87.85504234967418,-87.85514697356257,-87.85518396468301,-87.85520696552612,-87.85520697045051,-87.85519240954356,-87.8552000806903,-87.85516942516006,-87.85511040818582,-87.85505062181093,-87.85475265741097,-87.85457311347685,-87.8544979997434,-87.85444664972944,-87.85444664691602,-87.85447615637862,-87.85459727475386,-87.85459727642439,-87.85464135208375,-87.85469424643641,-87.85473123728242,-87.85477645972438,-87.85490331466546,-87.85499300199425,-87.85511257499807,-87.85556174644586,-87.85574034068556,-87.85609906572464,-87.85612857728593,-87.8565171971632,-87.85660649455417,-87.85668141936974,-87.85676363735597,-87.85682439005096,-87.8569811487142,-87.85792441694812,-87.85813369113737,-87.85834297029091,-87.85890488654375,-87.85897215739723,-87.85910707388793,-87.85919637403984,-87.85937554466824,-87.85943514695651,-87.85958443247603,-87.85968907327781,-87.85991349391087,-87.86010841969183,-87.86023587033905,-87.86045341456369,-87.86073784752203,-87.86091685847161,-87.86121660639495,-87.86132163648202,-87.8615830678479,-87.86200183936579,-87.86244359676687,-87.86292159328232,-87.86328058363479,-87.8634157065931,-87.8635506521927,-87.86371548917488,-87.86389490139419,-87.86422458602179,-87.86425449439575,-87.86449407815239,-87.86456079330718,-87.86483066259449,-87.86507791719323,-87.86540605615912,-87.86561573912664,-87.86578057810665,-87.86587027823761,-87.86673896790117,-87.86685781074269,-87.867082460536,-87.86717216543454,-87.86759827818051,-87.86797951305427,-87.86818958572944,-87.86839891060876,-87.86886276152157,-87.86910235552826,-87.86940081957833,-87.86979034821761,-87.87011296348955,-87.87034471090718,-87.87043364554933,-87.87071751973917,-87.87115189334075,-87.87152589294764,-87.87191542359682,-87.87211000447179,-87.87234886359258,-87.87264830011361,-87.87294773745215,-87.87323145523592,-87.87329202781169,-87.873471643293,-87.8735389364152,-87.87374869222893,-87.87383840706273,-87.87418960823702,-87.874369246863,-87.87453414281772,-87.87466124732296,-87.87472087005646,-87.87474309828156,-87.87445952806223,-87.87508053122158,-87.87513699519417,-87.87565063189815,-87.87581829844119,-87.87596035244898,-87.87626726557336,-87.87634950824695,-87.87658128038389,-87.87688742901335,-87.8775221669944,-87.8778519018533,-87.87806049232729,-87.87829267203247,-87.87841903184162,-87.87857681144833,-87.87867344214843,-87.87892827904741,-87.87945135850686,-87.8797135086742,-87.87973594275348,-87.87993787844491,-87.88008748627476,-87.88014754611727,-87.88014680242502,-87.88016233299034,-87.88016254760035,-87.88017731323909,-87.88019210031096,-87.88027458059798,-87.88046920232964,-87.8808804796367,-87.88108179315526,-87.88133642860457,-87.88139623291394,-87.8816106459507,-87.88213675811872,-87.88226988107138,-87.882460368751,-87.8824423364423,-87.8822916036617,-87.88212514107839,-87.88254828525304,-87.88278913208018,-87.88307312339869,-87.88341750431111,-87.88373126112981,-87.88411136790093,-87.88480195976196,-87.8853864629227,-87.88583171344015,-87.88620948496782,-87.88640256402353,-87.88653602178404,-87.88672907245463,-87.88742365460813,-87.88778661933249,-87.88794856425881,-87.88685907322341,-87.88691043781201,-87.88714954968883,-87.88739573171385,-87.887542922512,-87.88783095227525,-87.88734839580434,-87.8874872036169,-87.88838592380586,-87.88878885428332,-87.88895759271119,-87.88909359066385,-87.88902716632992,-87.88896296095025,-87.88913626849673,-87.88952167767138,-87.88973080860269,-87.89002435578671,-87.89013084505238,-87.89541473011025,-87.89309428894011,-87.89388711692811,-87.89617751535621,-87.8965473483939,-87.8943634452195,-87.89475698045436,-87.89697605416775,-87.89728554441984,-87.89518400718676,-87.89570732187485,-87.89587980486482,-87.89594859896599,-87.89603278109621,-87.89584845328521,-87.89591173061621,-87.89598425865277,-87.89857145412917,-87.89855805040625,-87.89854349393482,-87.89852803962751,-87.89851367259924,-87.8985136997246,-87.89845404254535,-87.89845331056175,-87.89841579645447,-87.89840876874293,-87.89839363456355,-87.89837839250353,-87.89836382205709,-87.89836443266077,-87.89834853405473,-87.89834837852516,-87.89833400416957,-87.89830345294862,-87.89827432563256,-87.8982596105582,-87.89824370222108,-87.89819912469308,-87.89815410414398,-87.89816186029969,-87.89826702301718,-87.89825939929159,-87.89822936784934,-87.89819968744278,-87.89819876314112,-87.89818439795202,-87.89818501442419,-87.89809477964721,-87.89806471478073,-87.89801969792111,-87.89793010421454,-87.89791547086118,-87.89790109265792,-87.89790052026179,-87.89784009057587,-87.89778051367998,-87.89772068434858,-87.89770630910127,-87.89770538430956,-87.89769100904205,-87.89769084956448,-87.8976757185749,-87.89767555908278,-87.89766118377514,-87.89761662794351,-87.8976014847333,-87.89757168435996,-87.89751119221705,-87.89748201072075,-87.89746610128431,-87.89746672975691,-87.89743627485815,-87.89740722697047,-87.89740730490051,-87.89739202111581,-87.89736274316137,-87.89727252823151,-87.89727182090282,-87.89731022889055,-87.89749676951494,-87.89752598377879,-87.8975268009666,-87.89751130808072,-87.89748220739905,-87.89741514126058,-87.89722749352732,-87.89713819778106,-87.89712271364823,-87.89710833758063,-87.89709291460882,-87.89707776979158,-87.89707858989196,-87.89706325364374,-87.89704800254152,-87.89703267523193,-87.89703331898551,-87.8970181774377,-87.89700289167331,-87.89700301986379,-87.89699593581338,-87.89696583155443,-87.8952756140086,-87.89496011400055,-87.89657618599472,-87.89653882896849,-87.89650482699435,-87.89584672568776,-87.89562432114015,-87.89545384333726,-87.8952669311884,-87.89499834330347,-87.89483833056963,-87.89448279428804,-87.89375020436788,-87.89304660750948,-87.89219385106601,-87.89177608079956,-87.89077412584528,-87.89004490941774,-87.8887442633161,-87.88832963018112,-87.88788956645207,-87.88738932149749,-87.88706927200856,-87.88656060727217,-87.88575109203161,-87.88534037087031,-87.88467266510851,-87.88410864559019,-87.88194220168003,-87.88188458149391,-87.88268375436078,-87.88334046661606,-87.88461761430257,-87.88519899984291,-87.88596844089032,-87.88624793219961,-87.88650780905962,-87.8867884340934,-87.88716106481901,-87.88742432326404,-87.8876613699049,-87.88779708846293,-87.8897536670307,-87.88998675093899,-87.88906318140823,-87.88868704138618,-87.88864269329986,-87.88940052487264,-87.88707726749688,-87.8872268011649,-87.88770240892994,-87.8867479302333,-87.88713795659319,-87.88678194363348,-87.88630903698659,-87.88617524830843,-87.88602346502583,-87.88573741016256,-87.88554185566403,-87.88537436472967,-87.88525494710984,-87.88520373451794,-87.88486438739618,-87.88437719149033,-87.8839047327712,-87.88364506313593,-87.88343290308545,-87.88339160858246,-87.88300369252843,-87.88284959918816,-87.8828234050354,-87.88260617905964,-87.88231432711569,-87.88228761099961,-87.88200532507713,-87.88192660294986,-87.88225346323026,-87.88255493462805,-87.88274762068028,-87.88284967911505,-87.8826368960094,-87.88253495816191,-87.8821512699927,-87.88196538348193,-87.88173669722373,-87.88150573295326,-87.88144053236046,-87.88132813694165,-87.88114075519952,-87.88074508154948,-87.88021325984741,-87.87912170039442,-87.87885931066718,-87.87871796211077,-87.87829885079762,-87.87794051476533,-87.87764819637412,-87.87734130384716,-87.87716194829204,-87.87707178409627,-87.877041852491,-87.87680241823148,-87.8765042776316,-87.87617502874886,-87.87605492382347,-87.87590566291493,-87.87578518646686,-87.87569540098629,-87.8756441896377,-87.8755613336336,-87.87550149987473,-87.87546469224877,-87.87545626172628,-87.87549316201709,-87.87549399525388,-87.87544934264652,-87.87543341983599,-87.87543323357059,-87.87540427421347,-87.87534428109976,-87.87532835573138,-87.87531456988525,-87.87531460667101,-87.87532842978042,-87.87535915825924,-87.87547817464234,-87.87550813618773,-87.87552334738035,-87.87550819970757,-87.87549267374378,-87.8752838283132,-87.87508297571328,-87.87470765755641,-87.87452045108562,-87.87428875314265,-87.87422998896442,-87.8740497399107,-87.87396688576631,-87.87386141662772,-87.87377185095538,-87.8736598226815,-87.87345034398376,-87.87315931380994,-87.87270177884999,-87.87225342629776,-87.87203626020762,-87.87201381773758,-87.87187204392255,-87.87184960220068,-87.87162494780829,-87.87142312504595,-87.87137074758584,-87.87113842089516,-87.87111598131639,-87.87092201762448,-87.87074166173466,-87.87068257342413,-87.87023362040152,-87.87002334114995,-87.86981477029077,-87.86969502604666,-87.86930607421895,-87.86888697855467,-87.86879717335795,-87.86872233850919,-87.86867802261315,-87.86861758288411,-87.86861069710102,-87.86866983672267,-87.86866988359415,-87.86862445319406,-87.86857995074656,-87.86846025246705,-87.86820529184922,-87.86798927288011,-87.86787647623063,-87.86787648908968,-87.86786190260304,-87.86786096673325,-87.86784657544941,-87.86783201307206,-87.86778674031579,-87.86778674795123,-87.86775605643561,-87.86775606571659,-87.86771884905843,-87.86758454422773,-87.8673972859881,-87.86694852986234,-87.86676800024755,-87.86633480620213,-87.86605008052068,-87.86590790395589,-87.86569856771634,-87.86508492662927,-87.86484507449836,-87.86451542055332,-87.86440411837503,-87.86423833937351,-87.86386583708041,-87.86387926947542,-87.8638029466334,-87.86366295444762,-87.86362213034846,-87.86358839819268,-87.86359897872239,-87.86368078607177,-87.8637340243732,-87.8637285509525,-87.86370582987138,-87.86373351317447,-87.86375625635704,-87.86382149207051,-87.86405802287807,-87.86444626829561,-87.86493214944311,-87.86567276987859,-87.8660168940869,-87.8661962499929,-87.8663239460418,-87.86650359828778,-87.86674197308517,-87.8668916931028,-87.86704909794916,-87.86710898676586,-87.86722801930468,-87.86736319092817,-87.86745226259185,-87.86746762896364,-87.8675567066328,-87.86755671507788,-87.86758742473663,-87.86758742968672,-87.86763197429237,-87.86763197925681,-87.8679153498943,-87.86791612494983,-87.86794607844719,-87.86794608351605,-87.86799139406551,-87.8679913894339,-87.86802057886904,-87.86803518030703,-87.86809587246614,-87.86825946827344,-87.86827483090303,-87.86833473615093,-87.86833397547876,-87.86837928214005,-87.86837928817728,-87.86848372632016,-87.86848373239222,-87.8686933876976,-87.86885772241997,-87.86908195039338,-87.86918715862525,-87.86930622487242,-87.86936613363112,-87.86948517036939,-87.86957503307028,-87.86977011081697,-87.86978471386321,-87.86984384920821,-87.86985920920537,-87.86994831031888,-87.87008349157206,-87.8700980908547,-87.87014340475609,-87.87015801402963,-87.87018873114258,-87.8701879710493,-87.87033774888387,-87.87036771225272,-87.87036772399347,-87.87042765105471,-87.8704722098213,-87.87053213394861,-87.8705313734868,-87.87054673412878,-87.87056212455353,-87.87057671985806,-87.87057672465735,-87.87060591858193,-87.87060670053516,-87.87062129859737,-87.87062134797127,-87.87063671210687,-87.8706367293902,-87.87060604052546,-87.87057596465965,-87.87056156679837,-87.87054623324131,-87.87054628003655,-87.87059927790942,-87.87074060699658,-87.87075521355841,-87.87078516997673,-87.87078595509045,-87.87076984700849,-87.87076986776827,-87.87075510740181,-87.87072537022645,-87.87072537575845,-87.87069468329491,-87.87069527288459,-87.87068087393965,-87.87065000574788,-87.87063561088225,-87.87062007807445,-87.870590338973,-87.87056024173137,-87.87053127255321,-87.87051574406634,-87.87050058861819,-87.87049982471829,-87.87048524456794,-87.87048583985622,-87.87047067471734,-87.87047069643151,-87.87045611303088,-87.87045537903029,-87.87047074776575,-87.87046999382305,-87.8704853583946,-87.87048536876527,-87.87053069630491,-87.87052994166741,-87.87050001672085,-87.87049984339853,-87.8704854481533,-87.8704846923734,-87.87051544567177,-87.87050009579832,-87.87049991596923,-87.87048475132215,-87.87048552728226,-87.87042488667035,-87.87040955047158,-87.87045488513449,-87.87046950929282,-87.87049947174079,-87.870544830724,-87.87054486612098,-87.87055946264688,-87.87055947302612,-87.87058943479633,-87.87058866482892,-87.87067852871701,-87.87086595366389,-87.87101571384657,-87.87108254402807,-87.87108256097238,-87.87111251967835,-87.87132201222389,-87.87160636080023,-87.87168085634845,-87.8717031365139,-87.87168087808988,-87.87168165727046,-87.8717185268938,-87.87180762280644,-87.87184525869247,-87.87202499249159,-87.87215941507327,-87.87224928136376,-87.87236913472735,-87.87237606396971,-87.87223442065894,-87.87227897134383,-87.87232431386917,-87.87235350811808,-87.87242805908528,-87.87251870572645,-87.87261548495104,-87.87276524169808,-87.87297493496069,-87.87307095733439,-87.87308710363273,-87.87311629324979,-87.87311629830876,-87.87316086158744,-87.87323540613751,-87.87326616875302,-87.873326105014,-87.8733929286838,-87.87356501424966,-87.87356502111315,-87.87386385490795,-87.87399828608709,-87.87401366075908,-87.87405821523136,-87.87407359751573,-87.87408279444459,-87.8741327687551,-87.87420810555399,-87.87425266073447,-87.87425266782544,-87.87437251094038,-87.87441709367936,-87.87449239094434,-87.87458227827844,-87.87458151943085,-87.87461224364552,-87.87461225334265,-87.8746568165258,-87.87476129729323,-87.87479127823998,-87.87483583480856,-87.87483661231282,-87.87491113389854,-87.87498496746197,-87.87506026906833,-87.87511255966352,-87.87511263467016,-87.87508296525017,-87.87517192697294,-87.87528410689022,-87.87529948096616,-87.87534403933732,-87.87534404679612,-87.87544930884705,-87.8754485502179,-87.87550924429055,-87.87550848567989,-87.87558300366459,-87.87558301449837,-87.87562758337998,-87.87567291728875,-87.87570288636726,-87.8757028948372,-87.87579278973928,-87.87583737466116,-87.87586737016058,-87.8758827636298,-87.87588281035393,-87.87591280242614,-87.87592744740138,-87.87597970956053,-87.87618100671082,-87.87621100136931,-87.87621102131983,-87.87625638413581,-87.87639014134902,-87.87645008171617,-87.87648006714198,-87.87665984131749,-87.8768550047926,-87.87704937714693,-87.87709394001448,-87.87713849086752,-87.87730369764921,-87.877422786694,-87.87746811651694,-87.87767709244662,-87.8779313949945,-87.87809580947808,-87.87826100896947,-87.87829097447235,-87.87834361254851,-87.8783948895065,-87.87871736108858,-87.87898641691156,-87.8793755007034,-87.8794354196195,-87.88015366871491,-87.88024391968371,-87.88042271993265,-87.88066241424198,-87.88068451122388,-87.88075306626581,-87.88088751850174,-87.88105194398291,-87.88120174768395,-87.88122384522924,-87.88143720093517,-87.88163507451699,-87.88176952921417,-87.88178490220498,-87.88212909432578,-87.88219595786634,-87.88233099739324,-87.88263772810213,-87.88286976969287,-87.88297504490362,-87.88314716908496,-87.88359588034396,-87.88384252670997,-87.88441806559206,-87.88468775020584,-87.88490520346447,-87.88515186997455,-87.88536162299458,-87.88557140568899,-87.88572123675107,-87.88610940592268,-87.886320125833,-87.88641618800122,-87.88664826842415,-87.88693333502016,-87.88712007410733,-87.88735929187008,-87.887442091021,-87.88785334839719,-87.88799646141217,-87.88862509360872,-87.88901316340507,-87.89045797799055,-87.89050333309231,-87.89065244243019,-87.890801558267,-87.89102674077922,-87.891116676839,-87.89114664803529,-87.89137032877002,-87.89144566912334,-87.89168546160468,-87.89192525926676,-87.89224652322582,-87.89244098312598,-87.89277838742295,-87.89285294939623,-87.89297211929777,-87.89303284154954,-87.89316738630468,-87.89357170397946,-87.89381077793115,-87.89406603914014,-87.89406528665782,-87.89412602539214,-87.89412527311595,-87.89415525361268,-87.89415527165436,-87.89436439143437,-87.89439440018567,-87.89445512251602,-87.89457449292478,-87.89465653926662,-87.89480618050563,-87.89488860411258,-87.8953521514759,-87.89560739672177,-87.89565275334077,-87.89590649466942,-87.89604109479518,-87.89611645399586,-87.89613184060156,-87.89632561460061,-87.89670005489604,-87.89696986667599,-87.89711901809713,-87.89725357329236,-87.89750887310736,-87.89750888814403,-87.8975827303762,-87.89758350624962,-87.89767349799966,-87.89767351392014,-87.89773351090257,-87.89773275960368,-87.89777812863898,-87.89777814376438,-87.89782274334786,-87.89782276172257,-87.89786736124857,-87.89786814281642,-87.89792735900537,-87.89792814059454,-87.89834648185069,-87.89837725962303,-87.89848184461984,-87.89848185998123,-87.89866186910679,-87.89866111809739,-87.89876649617911,-87.89881114123004,-87.89887114229953,-87.89887039135333,-87.89894577218824,-87.89905046069372,-87.89908045870517,-87.89909509766893,-87.89912586297379,-87.89917745986425,-87.89918596433814,-87.89921600302414,-87.89927600582669,-87.89927525499627,-87.89932062451091,-87.89931987369413,-87.89936525643272,-87.89945455447062,-87.89951455812189,-87.89954534857837,-87.89961919992864,-87.8996346070123,-87.89970999582847,-87.89978466653075,-87.89981389613386,-87.89987471041599,-87.89988936634747,-87.89991860041619,-87.89999406350613,-87.90013020834778,-87.90017052516737,-87.90027653238258,-87.90030677292982,-87.9003208132288,-87.90032179858277,-87.90033582952154,-87.90033681475973,-87.90035162592851,-87.9003518430553,-87.90039704975734,-87.90042729398978,-87.90045633328934,-87.90048658659622,-87.90051773451887,-87.90053238542563,-87.90053248902851,-87.90054805732582,-87.90056290792492,-87.90057848471749,-87.90057793406694,-87.90059331937506,-87.9005933444074,-87.90060815318851,-87.90063841997753,-87.90063847137918,-87.90065308715648,-87.90065389874103,-87.90066869724627,-87.90066893492325,-87.90068431807752,-87.9006836022299,-87.90069897817041,-87.90071443701845,-87.90072924596409,-87.90074451662277,-87.90076008508454,-87.90075955301202,-87.90077493531535,-87.90079041542604,-87.9008052133068,-87.90080545098932,-87.90082025073821,-87.90083517772635,-87.90085074634428,-87.90085101645748,-87.90086581608718,-87.9008810967668,-87.90089589484353,-87.90089691525959,-87.90091094678543,-87.90092661013939,-87.90094217640421,-87.90095709114416,-87.90097190058738,-87.90098752704955,-87.90100233468276,-87.90101718971331,-87.9010325620735,-87.9010326408341,-87.90104802689881,-87.90107820058022,-87.90109376964394,-87.90110864094233,-87.90112343928284,-87.90112370091033,-87.90113831747554,-87.90113914881381,-87.90115452220967,-87.90116919470576,-87.90116927122602,-87.90118466412861,-87.90118471690005,-87.90119951625699,-87.9011997517589,-87.90121437095139,-87.90124453698148,-87.90125992340199,-87.90126076824407,-87.90127538477769,-87.90127544686425,-87.90130629570749,-87.90132894927207,-87.90132443672179,-87.90133983040604,-87.90134088334834,-87.90135552675407,-87.90135653112578,-87.90134118047141,-87.90134208614963,-87.90135670368994,-87.90134134583674,-87.90134144085314,-87.90132685911983,-87.90132862895044,-87.90131404388855,-87.90131416754411,-87.90129958224016,-87.90129987789516,-87.90128529593945,-87.90127000312289,-87.90121016686804,-87.90118108028386,-87.90116572835915,-87.90116652163825,-87.90115193952875,-87.90115120517201,-87.90112127644514,-87.90112207228243,-87.90100244076226,-87.90098790030437,-87.9009280789989,-87.90089814418754,-87.90083834176511,-87.90073396670236,-87.90073475259564,-87.90064495928699,-87.90064497769849,-87.90059968080257,-87.90059969689476,-87.90053983205853,-87.90045084267345,-87.90037638156369,-87.90037640070086,-87.90027200227823,-87.90015230493464,-87.90015231518433,-87.90012314475401,-87.90012316130426,-87.89998808382383,-87.89986143005618,-87.89977160678278,-87.89959266428198,-87.89912959990311,-87.89894219661295,-87.89865108302985,-87.8985681347551,-87.89841918757404,-87.89838927283758,-87.89821043265101,-87.89819433523589,-87.89816516196777,-87.89816517695178,-87.89813522834066,-87.89813601329773,-87.89809072819669,-87.89771686771824,-87.89741129371954,-87.89728381507362,-87.89694059555919,-87.89673170884321,-87.89642526577092,-87.89620105647394,-87.89602134910092,-87.89579706463307,-87.89512347836693,-87.89497450553341,-87.89491536186929,-87.89476556260198,-87.89452668074922,-87.89446598234304,-87.89436153619705,-87.89419715753684,-87.89407811334767,-87.89400282684836,-87.89392757028976,-87.89380856560871,-87.89373413766243,-87.89367425413479,-87.89367502456544,-87.89313669739212,-87.89308371041696,-87.89308449023532,-87.89295013995302,-87.89280038891746,-87.89243401427339,-87.89205305468775,-87.89205383828372,-87.891874144337,-87.89163528717481,-87.89163529969518,-87.89158998242003,-87.89158999492297,-87.89150092587627,-87.89145564821918,-87.89145644656024,-87.89144107652258,-87.89142575871324,-87.8913819961151,-87.89138125417091,-87.89130758364834,-87.89124691981137,-87.89118782575042,-87.89118785043631,-87.89112874279979,-87.89109885447056,-87.8910681512713,-87.89102443949211,-87.89099449153265,-87.89099451855019,-87.89095000045597,-87.89094925814508,-87.89092008094737,-87.89092087636685,-87.89087559569278,-87.89077808925056,-87.89075599926863,-87.89071856922197,-87.89065180428332,-87.89062185292183,-87.89059191843151,-87.89021098154949,-87.88974009134958,-87.88955421284818,-87.88938143135201,-87.88934459862715,-87.88909720325472,-87.88902302325955,-87.88900765119739,-87.88900767661245,-87.88897850791852,-87.88896397094696,-87.88894861001003,-87.88890413717031,-87.88881429521062,-87.88879896132457,-87.88876978926959,-87.88877057256755,-87.88875444385081,-87.88873987988104,-87.88873998775394,-87.88872539275434,-87.88872540988149,-87.88862099614209,-87.88860644638817,-87.88859108509284,-87.88859111199126,-87.88857651987445,-87.88857731449002,-87.8885611852963,-87.88856196846992,-87.88854660954271,-87.88853205143181,-87.88833779630291,-87.88828086193404,-87.88803979544649,-87.88796530010057,-87.88796531348814,-87.8878677424173,-87.88783012175955,-87.88780093386151,-87.88780094737437,-87.88774830677733,-87.88775561980405,-87.88774141721083,-87.88765153913063,-87.88751635446189,-87.88745724074376,-87.88742727559841,-87.88742728481735,-87.88725522057858,-87.88705390026514,-87.88695632695779,-87.88667971717385,-87.88650758645765,-87.88645532505441,-87.88632750084696,-87.88629733450742,-87.88627524020788,-87.88626083063217,-87.88626089288836,-87.88621556123942,-87.88609229705617,-87.88605272598599,-87.88602469899901,-87.88598172897173,-87.88594051517371,-87.88590334519056,-87.88588490035492,-87.8858901668048,-87.88590835435905,-87.88600318000935,-87.88601952003664,-87.88598354337654,-87.88596145116368,-87.88592427216339,-87.88573789324735,-87.88572206901212,-87.88572065225821,-87.88583002807921,-87.88583523581066,-87.88578953457889,-87.88571500006225,-87.88566215544206,-87.88557880456031,-87.88545520820969,-87.88543456228599,-87.88544612815451,-87.88552564688551,-87.88554460050918,-87.88554373712222,-87.88543440908212,-87.88541249113921,-87.88535256478944,-87.88518217528492,-87.88514897690646,-87.88513936916971,-87.88514693641147,-87.88519909512851,-87.88536348502902,-87.88534853662064,-87.88530398322418,-87.88528169327338,-87.88525133199366,-87.88519117243604,-87.88496486273269,-87.8848926611183,-87.88482702660112,-87.88481649878976,-87.88479418533333,-87.88476458370207,-87.88470769039156,-87.88468233805261,-87.88468849079418,-87.8847144027702,-87.88479054349094,-87.88497797044698,-87.8850939574571,-87.88510954968828,-87.88504962174321,-87.88503504990425,-87.88496741165828,-87.8848922544252,-87.8848026744643,-87.88474308451649,-87.88468230576358,-87.88465943356796,-87.88460735691797,-87.88459987834635,-87.88468257258192],"lat":[43.16225005734923,43.16238199114628,43.16242602002344,43.16251381564171,43.16273418686204,43.16277807699273,43.16295424407363,43.16308623593527,43.1631523729621,43.16319627967463,43.16321824243771,43.16363673091086,43.163834871992,43.1639228063853,43.16420919550801,43.16425308839158,43.16447345928346,43.16491377889543,43.16526586644252,43.16528796578063,43.16533187517567,43.1654201039766,43.16559613605828,43.16583846969985,43.16601448737953,43.16608063270336,43.16614651998123,43.16647706428302,43.16654306822007,43.16675595503151,43.16691721000171,43.16693916828845,43.16720339649886,43.16735733678023,43.16744544691132,43.1675554824392,43.16781972982511,43.16795172015544,43.16801786526957,43.1681059562771,43.16812790480139,43.16817181943369,43.16836994347725,43.16889848193286,43.16894237129472,43.16900849932129,43.16909657822979,43.16911854341674,43.16916244428756,43.16925080838657,43.16929471169963,43.16931666021587,43.16942670264596,43.16944865111515,43.16953675653925,43.16969097764635,43.17004332090337,43.17048347523019,43.17059365097398,43.17068158199298,43.17069819378804,43.17075868525093,43.17086872200595,43.17088503332923,43.17107779096383,43.17109410108597,43.17113265668237,43.17129753629726,43.17140220029152,43.17144075708737,43.17146270598969,43.17159467818431,43.17161663628135,43.17170470030425,43.17188055858492,43.1720291106589,43.17212813455694,43.1724522666121,43.17254034769975,43.17273843295209,43.17278795995333,43.1728484513275,43.17300770235472,43.17309043899407,43.17310674087443,43.17323335746408,43.17325531357266,43.17336534063666,43.17338727518105,43.17345341741751,43.17346971804209,43.17350828484981,43.17364024042441,43.17372831842549,43.17375025294412,43.17379444603673,43.17381075909743,43.17384931165018,43.17386590904913,43.1739044616017,43.17392640038371,43.17403642538412,43.17405837413375,43.17412451818829,43.17417937408351,43.17428938778703,43.17445989151727,43.17452038343689,43.17461409068805,43.17465235009985,43.17489995019404,43.17493848877171,43.17498238576074,43.1749989812721,43.17503753869858,43.17511997012213,43.17520242413691,43.17545536209917,43.17563135254395,43.17572488800406,43.1758952448067,43.17597781854869,43.17617027773898,43.17619756398826,43.17629124366902,43.17648903232493,43.17655515063128,43.17658245102104,43.17659903842477,43.17680244531589,43.1771434432904,43.17723686614181,43.17742397814524,43.1775120392818,43.17780354670161,43.17792989183624,43.17806200135021,43.17812798206869,43.17817187602267,43.17830383080313,43.17858999554822,43.17879341879112,43.17898586901262,43.17907395275989,43.17914543242647,43.17919492363315,43.17927187386508,43.17943675846472,43.17967883893937,43.1797722496746,43.17994275842766,43.17999789678886,43.18004713039591,43.18006373928685,43.18042105741682,43.18055864920979,43.18059155886666,43.1806467084119,43.18071817292402,43.1808996514737,43.18097111650366,43.18116357045579,43.18133407286582,43.18139456376151,43.18144943607858,43.18166947444773,43.18168608131111,43.18179076347231,43.18186757004079,43.18222516713526,43.18239567947455,43.18250569399689,43.1826649334043,43.18280252590469,43.18292350456012,43.18297838843452,43.18302255253129,43.18303916175392,43.18323162360922,43.18324794036854,43.1834184765056,43.18344043399217,43.18361629876503,43.18363854176861,43.18396847900623,43.18405670735714,43.18415545458644,43.18417206323293,43.18427674556129,43.1843206280914,43.18476073461853,43.18478269513387,43.18491494980911,43.18498078504088,43.18510161856651,43.18540420094787,43.18551953746771,43.18558565972699,43.1856737229101,43.18569004956643,43.18572858608602,43.18583861913366,43.1858825019352,43.18590473440231,43.18608059420931,43.18621269657186,43.18638867466147,43.18659743288818,43.18667438071218,43.18680631619365,43.18731756756939,43.18750447944078,43.18763078273206,43.1878617498171,43.18821337466107,43.18827948097755,43.18832335930999,43.18871915882365,43.18878497714838,43.1889720456746,43.18908176308779,43.18921369109562,43.18960399949711,43.18973593419923,43.18977461777778,43.18986788175056,43.19009335485001,43.19020317865353,43.19024718195403,43.19054947712215,43.19056608418835,43.19081884609327,43.19086850392932,43.19097301347922,43.19141817624914,43.19179755268378,43.19184692821473,43.19192400239272,43.19204812108276,43.19209323953142,43.19229326590127,43.19243341836921,43.19247874315823,43.19256750679293,43.19252260352161,43.19231283175034,43.19211553761593,43.1624886742729,43.14799081746929,43.13359691006697,43.11918376943945,43.10468955082277,43.08892161797551,43.05989853295511,43.04541292055882,43.03092737963682,43.01637981192132,43.00277591995229,42.98824780407032,42.9736490045284,42.95912210769972,42.9445239329454,42.92991470463438,42.91663634320746,42.90209335752844,42.88733050006886,42.87292205570113,42.85818586870271,42.84334495427471,42.84347224082507,42.84359744865059,42.84358925139676,42.84353318435384,42.84327564183744,42.84297227221951,42.84274232160082,42.84255017654665,42.84231652414437,42.84214283144107,42.84200374749139,42.8436183193004,42.84368340454618,42.84590988684432,42.84676261438929,42.84908003334834,42.84829263741721,42.84831617435052,42.84833912392197,42.84917438053747,42.84937001062145,42.84963616357385,42.84981011497766,42.85056742943189,42.85080724093545,42.85112249543313,42.85134063552113,42.85192988097843,42.85293865986151,42.85321139735591,42.85397036164638,42.85418300103089,42.85470117940237,42.85506102915284,42.85542129858557,42.85597830826831,42.85643723658681,42.85646988887168,42.85652476561317,42.85696144754962,42.85730552493897,42.85792276653961,42.85890673742375,42.85932273294787,42.85953016498556,42.85975391642198,42.86011982463803,42.86043674005531,42.86083076636113,42.86131628598732,42.86220612361866,42.86282941196561,42.8631620973579,42.86347338495079,42.86412972846043,42.86491528342324,42.86531945365243,42.86585408912942,42.8661323048333,42.8665094442862,42.86710028087776,42.86801045050714,42.86824560559836,42.86842123703242,42.86857421001874,42.86918553280871,42.86978558216808,42.87065935774948,42.87098092807446,42.8712374645522,42.87200175146545,42.87209998893854,42.87235610355563,42.8725038715319,42.87289790211842,42.87311630927564,42.87337820589243,42.87397192127417,42.87405396978635,42.87416331150974,42.87427279274244,42.87445856232404,42.87486271480302,42.87503119345143,42.87517744427691,42.87526003404425,42.87535361437899,42.87560109329077,42.87586507152061,42.87625565624318,42.87627226777226,42.87654184659583,42.87662430526103,42.87672870992435,42.87674529509473,42.87678386221659,42.87705342792362,42.87714687448781,42.87716347279548,42.87738917030489,42.87740575424232,42.87744404307418,42.87757629233295,42.87769730210392,42.87777426678388,42.87790624109876,42.87792820475536,42.87805468618009,42.87809324013158,42.87810983901696,42.87836297178006,42.87853337414935,42.87857754599089,42.87892958876073,42.87897376094391,42.87906184233417,42.87907845566283,42.87925996122362,42.87927656069822,42.8793367813431,42.87935339527426,42.87943611765076,42.87945244659399,42.87951293782815,42.87957893820021,42.87972766924003,42.87978816600574,42.87985401380388,42.87987061085668,42.87995305802702,42.88001919909786,42.88003579857785,42.88018425041154,42.88029427377609,42.88036041994183,42.88050912996762,42.88054740379668,42.88056401528112,42.88064645753651,42.8806630659812,42.88072355773697,42.88078955236198,42.88085554063206,42.88094360704005,42.88125711353897,42.88127370806985,42.88152668237331,42.88163672940249,42.88176305803486,42.88177966275161,42.88181259518328,42.88183482397069,42.88197778845381,42.8822527109897,42.88239031688253,42.88250567651687,42.88257717068664,42.88267086953849,42.88285237330536,42.88306680082079,42.88319344217089,42.88328687460506,42.88345178542173,42.88354547220152,42.8835950013161,42.88362791919651,42.88364987981377,42.88370501733662,42.88380394125494,42.88393042881602,42.8840469237467,42.8851586101193,42.88538406707573,42.88568621902419,42.88615231328285,42.88619636005834,42.8865152532012,42.8867410011281,42.88692732508146,42.88732755661434,42.88771201909672,42.88824974222155,42.88854612507405,42.88872132563733,42.88880180742795,42.88886006014158,42.88895135030656,42.88895442768542,42.88902928284154,42.88912071683308,42.88935144421801,42.88943654723398,42.88957219685195,42.88960297445832,42.88972892789891,42.88988259810948,42.89019531215912,42.89056345649211,42.89089190794573,42.89119390449044,42.89167646454739,42.8920330770002,42.89249452674328,42.89297130207567,42.89309190886806,42.89334945286339,42.89454708381132,42.89516741571256,42.89533221942876,42.89554598618162,42.89576016260735,42.89588091490231,42.89598562933229,42.89612917716363,42.89628258368898,42.89651886279619,42.89682143063303,42.89699129237001,42.89743658033958,42.89768441620955,42.89775283858082,42.89778619396402,42.89790695153614,42.8980662488724,42.89801757628155,42.89781421903561,42.89776554533564,42.89782140909181,42.89823896075526,42.89891810133532,42.89928078583504,42.89945625928444,42.89970366680532,42.89980994219131,42.8998395809004,42.90011508139835,42.90013703058488,42.90031319780397,42.90040128248348,42.90070942371287,42.90095172796831,42.90103980609349,42.90108399237158,42.90110032778169,42.90120499483447,42.9012269530845,42.90130405169899,42.90137017520169,42.90154606447085,42.90163415215573,42.90165638926401,42.9017664110788,42.9018544897488,42.90209650222976,42.90214069502084,42.90222876159824,42.90227267441347,42.90229489703538,42.9026688884656,42.90280114736013,42.90288925106104,42.90317544201429,42.90343967743004,42.90374811299775,42.90377006214838,42.90381395018274,42.90390204113064,42.90410043950832,42.9041885142118,42.90436467742183,42.90448048351619,42.90456322999647,42.90462921570343,42.90469534863707,42.90484956634003,42.90480817230214,42.90494934883404,42.90508883809705,42.90520511911234,42.90529513534467,42.90534701382054,42.90537628654668,42.90536714327474,42.90521825154823,42.90515779822592,42.90518326663747,42.90530672329916,42.90538895265578,42.90545236491942,42.90559351867764,42.90568660216699,42.90574553372144,42.90582452842825,42.9059127458578,42.90617713471522,42.90623763234555,42.90630940204166,42.90632037962071,42.9063205134354,42.9062218831066,42.90621091710638,42.90620528304605,42.9062657799555,42.90629898136397,42.9063922694441,42.90644714665728,42.90651326430638,42.90660135860416,42.90666719569857,42.90671686329913,42.90679933143401,42.90685421183426,42.90696395970453,42.90722776537317,42.90728811287879,42.90731021559447,42.90735412209059,42.90736523088101,42.90735988664707,42.90730472742704,42.90722790254083,42.90717303379615,42.90712349742263,42.90693159789463,42.90683281842545,42.90679988397967,42.90678314047406,42.90675570741571,42.90671166905631,42.9065189127666,42.90646937956659,42.90642547471288,42.90639241346309,42.90640366161165,42.90641998488437,42.90656870981944,42.90660741498507,42.90662936753327,42.90662964685646,42.90660769595426,42.9064374376219,42.90635498056459,42.90633330859009,42.90628940780663,42.90628940614138,42.90630051921208,42.90631135363265,42.90633892281423,42.90636636502704,42.90641576367662,42.90647076495888,42.90655885852252,42.90658080770165,42.9066303435275,42.90666888765021,42.90668550148441,42.90674598749463,42.90676232419494,42.90694382754797,42.90696044131466,42.9070431626542,42.90705947827159,42.90718611036576,42.90721904927679,42.90735130549204,42.90738421489628,42.90767041867979,42.90783546416488,42.90798952756753,42.90807762562322,42.90809958060555,42.90820959306389,42.90825141639533,42.90827571713118,42.90851801586015,42.90856192028554,42.90890298537528,42.9090020415418,42.90922238808357,42.90939826515879,42.90999259184706,42.91012485323803,42.91014679554584,42.91027879425235,42.91093952718036,42.91113750567163,42.9111597385561,42.9114238202178,42.91148995891451,42.91217264726379,42.91234879921805,42.9125028675031,42.91283366870849,42.91292723396481,42.91298800120317,42.91300995011608,42.9130978892476,42.91318597156495,42.91331823059375,42.91333455960974,42.91341700247364,42.91343924055199,42.91361511032173,42.91364831693437,42.91380224008181,42.9138188540614,42.91395711957951,42.91400036679774,42.91404454630829,42.91409941506765,42.91412137861499,42.91430850551168,42.91435241812107,42.91437464170809,42.91450676021864,42.91459469156392,42.91483699552905,42.91494687558844,42.91499105528612,42.91505692127051,42.91512303939518,42.91516695355018,42.91527697447555,42.9153208764811,42.91538672521348,42.91543090422927,42.91551870142031,42.91567842179077,42.91571681846353,42.91583235671414,42.91608532746844,42.9162776881705,42.91643174914085,42.91648690635662,42.91656934985043,42.91665195536325,42.9169270206097,42.91711403936826,42.91726781995285,42.91738895397867,42.91750997275137,42.91774100323889,42.91788397286128,42.9181808547011,42.91829636487201,42.91855484999547,42.9189068878704,42.91892883823911,42.91911020086611,42.91934687296837,42.91953385678294,42.91969890234049,42.91994106586088,42.92002899255766,42.92006193592768,42.92008387059928,42.92018828763458,42.92038104373211,42.92066160185872,42.92077699330032,42.9211565951778,42.92142055678845,42.92154718917252,42.92156378880458,42.92160234732668,42.92161867884456,42.92172336328045,42.9218387316197,42.92213027712902,42.92221836127471,42.92223496030237,42.92227349713873,42.92229545690749,42.92233964724218,42.92236159258491,42.92240549201755,42.92242209040144,42.92246065605435,42.92247695873634,42.92251552923431,42.92288978558473,42.92297759445221,42.92299983126338,42.92304372703352,42.92306566811279,42.92310985067402,42.9231757101965,42.92321987405038,42.92327477048009,42.92337659649598,42.92352803503462,42.92354996971238,42.92356628372322,42.92364901431401,42.9237038914556,42.92374807091517,42.92376440543232,42.92380294469817,42.9238249019787,42.92393494596128,42.92395153111494,42.92401205248171,42.92402863705735,42.92413303617047,42.92415499349072,42.92430920099372,42.92432581434636,42.92443020725357,42.92460623224153,42.9247878794968,42.92494179902786,42.92509039151626,42.92510699102505,42.92523334983431,42.92524993373718,42.92533238859299,42.92535434403583,42.92544243610572,42.92545901637544,42.92558564896427,42.92560198341054,42.92564053580042,42.92566247988549,42.92588282288893,42.92592672495459,42.92614679171879,42.92616339122536,42.92624583288563,42.9262677858826,42.92631196533436,42.92644393949861,42.9264659029959,42.92654300763888,42.92656495670342,42.92664740104358,42.92697215053254,42.92698848007107,42.92702702354079,42.92707654634,42.92713704154766,42.92730223695106,42.92739030645494,42.92740663536764,42.92748936094766,42.92750569654042,42.92754423575688,42.92756084963271,42.92766524483277,42.92768185744309,42.92772039488312,42.92773673102965,42.92777526725438,42.92779188168395,42.92785237426322,42.92786898569975,42.92808341960371,42.92810564244201,42.92830346680598,42.92832570401026,42.92858966882756,42.92860626702451,42.92868872190484,42.9287053201002,42.92876582281842,42.92878241981249,42.92888683177748,42.92890344562765,42.92899686857542,42.9290683289902,42.9292611082769,42.92927742818955,42.92936016134949,42.9293821184232,42.92953632163428,42.92958023041956,42.92966828946683,42.92969024914318,42.92984445987524,42.92986641716238,42.93008647185995,42.93039489852763,42.93057105895102,42.93061496335832,42.93072499128993,42.93074158949353,42.9308791961909,42.93089553047412,42.93122038644508,42.93172650774933,42.93174844997266,42.93207883213506,42.93210077435111,42.93218886209235,42.93221081873587,42.93227693593521,42.93229888826038,42.93238697524942,42.93247505411664,42.93269539701343,42.93280542998795,42.93295963375573,42.93300353190638,42.93317970460554,42.93322360273814,42.9333116733938,42.93348784297947,42.9336420390749,42.93366399626321,42.93370819315313,42.93373013109131,42.93377838621422,42.93386239235219,42.93387872069926,42.93420347050574,42.93422541565309,42.93433544228984,42.93442350870189,42.93444546826127,42.93455579814668,42.93464357684441,42.93475390852545,42.93477583440457,42.93488587543077,42.93490783076771,42.93497394792209,42.93550244135978,42.93563471321347,42.93567859617003,42.93594285410842,42.93607483420031,42.93664749002146,42.93693367301224,42.93710984364068,42.93757219280972,42.93759413454485,42.93790229030789,42.93799035954812,42.93801231650082,42.93805649897438,42.93807845114159,42.93812261610459,42.93834269394858,42.9385408011693,42.93876115179555,42.93893730699248,42.93904733349859,42.93906394205871,42.93912443328605,42.93927835806879,42.93956484732566,42.93985103040061,42.94002718501428,42.94051162759447,42.94064376792933,42.94086381309042,42.94101800680751,42.94119432623758,42.94126030190306,42.94159067714142,42.9419209056632,42.94205317806802,42.94240535760837,42.94275768326264,42.94308790392974,42.94335214203353,42.94352829404409,42.94374821778845,42.94403426623342,42.94425460590956,42.94479829141996,42.94493702551992,42.94522306741554,42.94544313560561,42.94559734113267,42.94575662203161,42.94592167461461,42.94605926688075,42.94665345371343,42.94704967514695,42.94735234255963,42.9478421327943,42.94789728790577,42.94799634777837,42.94808429096235,42.94828226934619,42.94839257271811,42.94892076856407,42.94917937343366,42.94938296959762,42.94958094248588,42.94977906005793,42.95003233383873,42.95025236774481,42.95036241436801,42.95049453303933,42.95062677920459,42.95069305939079,42.95078101270389,42.95091312087641,42.95125418262598,42.95136421433219,42.95160623116389,42.9517604252504,42.95211247020811,42.9521895815373,42.95249744366808,42.95266247240787,42.95292645173334,42.95332265598304,42.95358647559745,42.95393316492865,42.95420276227861,42.95460432690633,42.95503880245623,42.9555340912203,42.95597433976514,42.9561506375199,42.95630470403545,42.95645891983729,42.95656882226955,42.95661848580585,42.95665704068676,42.95694323044145,42.95716357407166,42.95727360150301,42.957449617767,42.95764801246192,42.95771385756259,42.95786805987034,42.9579781017468,42.95822037490726,42.95841272498361,42.95862759346086,42.95880375153272,42.9590126887677,42.95923303569514,42.95940903435864,42.95950809377987,42.95959070867434,42.95994837034701,42.96008019753005,42.96016855172415,42.96020149076594,42.96028956918405,42.9604216782184,42.96058645581653,42.96060305481625,42.96071871453663,42.96089459099186,42.96093877328942,42.96095509036761,42.96099364138198,42.96101025539267,42.96127982387412,42.96158796470447,42.9616321499827,42.96175850388099,42.96184123227845,42.96189611111345,42.96198418526473,42.96205032989389,42.96211616169449,42.96222619605555,42.96263324722092,42.96272681483715,42.96285330170537,42.96289170875121,42.96305691217252,42.9632054947759,42.96338699655229,42.96374438405817,42.96394262568145,42.96409642298602,42.96432759580527,42.96445406829782,42.96460251340328,42.96470704549875,42.96474546987379,42.9649542601766,42.96520724904708,42.96529503597065,42.96561414845387,42.96580648654498,42.96595520952145,42.96607043607393,42.96635112490448,42.96678547696656,42.96697824705108,42.96704407980754,42.96714328006082,42.96734109895829,42.96775348551461,42.96788546742565,42.96835314976988,42.96849596542704,42.96876567214653,42.96882604128084,42.96952461329147,42.96961832094586,42.96963464049258,42.96981643731385,42.97003647549663,42.97005843097001,42.97012456930617,42.97014087686063,42.97025654793084,42.97049853390315,42.97070762983532,42.97081750970167,42.9709055845364,42.97120246440824,42.97146639354499,42.97164227952791,42.97192816572367,42.97201623186803,42.97230213107118,42.97246716853634,42.97279132422457,42.9730826784813,42.97323112881945,42.97333017266152,42.97343486069971,42.97356683010345,42.97367687373759,42.97390281801174,42.97416036037255,42.97443043476668,42.97466693475579,42.97473279131186,42.97495282946628,42.97499152721449,42.97527741395213,42.97537647395585,42.97548087311534,42.97556909868244,42.97564577018237,42.97573382584524,42.97593727724534,42.97603631675757,42.97609666995451,42.97616266580366,42.9762726920322,42.97629464828315,42.97642676532517,42.97651483268207,42.97658097573382,42.97662516391705,42.97679601024613,42.9769116754663,42.97697780211043,42.97704381255286,42.97717606478948,42.97725316033096,42.97749518189247,42.97751713206104,42.97761616507265,42.97770410867496,42.97774250821514,42.97776445873216,42.97779751158922,42.97779722135188,42.97781915995273,42.97784080750963,42.97786272810154,42.97788436134293,42.97789532822605,42.97791695853657,42.97792791873464,42.97795549082896,42.9780377915108,42.97812025305276,42.97826332504481,42.97908775391574,42.9792858365374,42.97946168297062,42.97996745830998,42.98001683884009,42.98006072477312,42.9800716842221,42.98005505523113,42.98006039417475,42.9801098963785,42.98016475694381,42.98034623479113,42.98058259705832,42.98070907423757,42.98097849775864,42.98128632057092,42.98145118973255,42.98167121626356,42.98178123640092,42.9819788740433,42.98223714485083,42.98242943200486,42.98268204920853,42.98294032711092,42.98306694401979,42.98322085618683,42.98335281380484,42.98352865902277,42.98381451787741,42.98385841161362,42.98404551149434,42.98411119472742,42.98430926696757,42.98445205159798,42.98460562476987,42.98472659676726,42.98483660313801,42.98488048577973,42.98549605586619,42.98556187127244,42.98571576270258,42.98575964258789,42.98602871964647,42.98619903387171,42.98630903334914,42.98644068712476,42.98663842760784,42.98675938796655,42.98695151344888,42.98725929841101,42.98748479323903,42.98758899975205,42.98761091626974,42.98771525080784,42.9879456376535,42.98821514154764,42.98845678682986,42.98861629732299,42.98878113623194,42.98896792332403,42.98913248349602,42.98930828387608,42.98933023212848,42.98943487379741,42.98948423947199,42.98969299290038,42.98975910422747,42.98995669404002,42.99008300637851,42.99025884240556,42.99035237914859,42.99037965395178,42.99037978657694,42.99053294771078,42.99086583588882,42.99089586685926,42.99109647195644,42.99094735154269,42.99102990419171,42.99117826776313,42.99123888738222,42.99134308719145,42.99151366713691,42.99182681554486,42.99200289635132,42.99213480335519,42.99231638897262,42.99243185236533,42.99250315835094,42.99256910410153,42.9928276481559,42.99331177878381,42.99360309663831,42.99364178312277,42.99385601276997,42.99409825047331,42.99424681611062,42.99429070011412,42.99430730848989,42.99434558075385,42.99436217799434,42.99442266611651,42.99456573792092,42.99472523490841,42.99500552807492,42.99512660060822,42.99530240158403,42.99532461647232,42.9955553911589,42.99606404314587,42.99629556439508,42.99666490340309,42.9969890209889,42.99715844399734,42.99731716479157,42.99765451007944,42.99756245254004,42.99750889504462,42.9975054189523,42.9975675035091,42.99770707058778,42.99820524714039,42.99884609635649,42.99925503210837,42.99964189591937,42.99978024929403,42.9998907713565,42.99998522832787,43.00068156561775,43.00051661864089,43.00060149414443,43.00138194141476,43.00140456175916,43.00140813462112,43.0016752209962,43.00174322373038,43.00215403286125,43.00258634687287,43.0027200396616,43.00231594717587,43.00261856598127,43.0028634024501,43.00319120444434,43.0034066488356,43.0035574214396,43.0036689517806,43.00363272928805,43.00357158733611,43.00362033448487,43.00380239284016,43.01588574135009,43.01796052508671,43.01953742810316,43.01746742192823,43.01842871318043,43.02043427770958,43.02130765105758,43.0193958660958,43.02010335371335,43.02209919188158,43.02478713067792,43.02476779261779,43.02526881395018,43.02588071038538,43.02588744949141,43.02726829117492,43.0288499359248,43.02892562573265,43.02904863081286,43.02907059432541,43.0291862468851,43.02920258561889,43.02924676095232,43.02948879201392,43.02953267372038,43.02964285637115,43.0297364303693,43.02975275620911,43.02988473195601,43.02990697547332,43.02995651191868,43.02997282066848,43.03002234303859,43.03003896190031,43.03021483728837,43.03025904122067,43.030330530043,43.03034712010203,43.03048446296177,43.03056721388127,43.03067709971931,43.03076513794168,43.03083112331489,43.03094678949204,43.03100730438038,43.03105681261788,43.03107315437797,43.03114492182171,43.03127129649299,43.03134306382351,43.03140329991138,43.0316456220184,43.03182713041139,43.03184374853392,43.03210769068558,43.03234970468026,43.03272398635205,43.03299331046578,43.03300992922232,43.03305943743057,43.03307605618457,43.03312557845641,43.03314190120857,43.0331914234796,43.03320804222869,43.03338956668454,43.03340617192112,43.03358233988393,43.03373627892168,43.03396170434942,43.03397829183571,43.03404977735829,43.0341102826432,43.03426451377258,43.03437453876225,43.03446261474318,43.03455606419001,43.03472661693686,43.03481468479085,43.03488067467662,43.03503464871508,43.03512269618521,43.03518855995459,43.03526030853396,43.0353261860605,43.0354254070638,43.03559586038537,43.03571690592426,43.03578838039687,43.0358049984458,43.03596454879671,43.03598115331771,43.03604701409393,43.0360692457739,43.03620121982238,43.03622316407832,43.03631660288306,43.0363332056311,43.03642128149451,43.03659715853738,43.03662488622002,43.03663024072718,43.03667653723812,43.03807263669528,43.03801935403444,43.03830428072688,43.03871561612049,43.04059532519702,43.04110843736396,43.04131465702911,43.04186669063134,43.04240624296239,43.04250826087977,43.04240435514547,43.04237707785106,43.04242180981004,43.04245309387985,43.04244145562929,43.0424378983564,43.04258090696036,43.04289683146579,43.04301721122309,43.04323026101569,43.04349763680859,43.0437235944161,43.04401247703638,43.04461573574912,43.04488982223971,43.04576442960929,43.04621182347814,43.04613036806458,43.04631079825966,43.04636667652987,43.04639261908738,43.0464061140316,43.04648045769699,43.04650846668213,43.04639150650968,43.04619764362089,43.04575710404833,43.04525156936734,43.04495899872699,43.04475936357764,43.04469518131317,43.04556984028084,43.04606742621259,43.0470206327968,43.0470919156098,43.04762405830754,43.04805815977922,43.05044060275576,43.05053312818894,43.05082864970848,43.05156149605825,43.05287436586516,43.0530065200588,43.05227460169213,43.05170146562088,43.05151800285327,43.05157969017323,43.05164276387543,43.0514699897312,43.0511934196749,43.05116518234109,43.05125908134057,43.05134546498252,43.0513603620922,43.05130181620073,43.05113383799082,43.05099575406788,43.05098463660349,43.05113627024244,43.05127310529969,43.0513191709037,43.05130391641079,43.05118833522612,43.05111810498956,43.0512871748629,43.05191285173367,43.05236218960704,43.05267247675285,43.05276187592884,43.05287950298628,43.05303181696658,43.05343245397339,43.05366031815736,43.05383842748284,43.05403815709013,43.05414866296484,43.05422565499407,43.0543853920019,43.05468787694111,43.05517749253505,43.05598624580136,43.05620649512565,43.05634400756905,43.05663563426479,43.0568116125706,43.05703158353621,43.05729574488187,43.05740019068625,43.05743313187301,43.05743313695582,43.05749932041813,43.05753205662564,43.05753213294185,43.05754313358069,43.05757609466143,43.05762000991691,43.05766420984705,43.05770265212592,43.05779059648653,43.05787868503664,43.05796664003045,43.05803289126783,43.05820888388732,43.05838477269087,43.05854433832647,43.05856092544141,43.05858849827068,43.05862707160566,43.05878635166246,43.0588029381064,43.05889104399932,43.05900106528855,43.05904521938089,43.05911107678039,43.05928718641754,43.05937525544854,43.05953480626186,43.05955112566969,43.05962287759319,43.05993640679168,43.06017411370582,43.06061849573421,43.06081649278025,43.06110258582981,43.06115945772652,43.06133366713134,43.06146579156124,43.0616748716137,43.06180124110271,43.06191143371318,43.06208735081894,43.06229101534681,43.06264860138673,43.06294022342155,43.06311627518046,43.06314371727682,43.0632482919538,43.06327573281495,43.0634462934885,43.06357816923294,43.06362784610254,43.06379827093578,43.06382570621706,43.06397433351784,43.06406242696489,43.06410635220196,43.06437037875658,43.06445819785643,43.06451875180181,43.06454100703072,43.06455739679039,43.06451328984655,43.06451330693005,43.06452429386697,43.06454063067457,43.06457918233278,43.06466712829526,43.06484326003276,43.06508554051179,43.06528898179747,43.06537707377784,43.06555296176928,43.06584452021008,43.06611963590581,43.06629565128426,43.06633954880427,43.06636179221262,43.06645519693478,43.06647180968437,43.0665818432313,43.0666699193055,43.06669186808669,43.06673575505349,43.06675770386509,43.06681272622681,43.06696696263237,43.06714299810085,43.06759948892282,43.06782489400089,43.06847414746643,43.06880425499648,43.06894173572766,43.06911229304118,43.06956345072867,43.06972837655657,43.0699372019393,43.07002545018503,43.07017937520276,43.07051655989994,43.07054973246135,43.07062541003958,43.0707882535258,43.07092481283078,43.07107810527082,43.07123757082479,43.07175516728302,43.07227758470968,43.07272236025488,43.07328781860537,43.07361784265914,43.07415628866177,43.07422307372825,43.07433104378988,43.07433688293428,43.07433863776293,43.07432206875552,43.07433834118653,43.07434646594044,43.07438317777826,43.07442704976769,43.07452632638572,43.07463632744527,43.07479037308568,43.07485649175,43.07503232777084,43.07534044198356,43.07547266766338,43.07551656621349,43.07567074721841,43.07569269051265,43.07573688237829,43.07575883107914,43.07584689230573,43.07586884100653,43.07633110478282,43.07635306783636,43.07639695853488,43.07641890723609,43.07650698380903,43.07652921261464,43.07657308905168,43.07666115684035,43.07683703419384,43.07721123771193,43.07727736982864,43.07738738838996,43.07740932281805,43.07747544811948,43.07749739683558,43.07765157696817,43.07767352568441,43.07798161502171,43.0781796801982,43.07839968837989,43.07855387794776,43.07886197122875,43.0789719832177,43.07914810143679,43.0793242385604,43.07963234012433,43.07967622473488,43.07976427650345,43.07980845974168,43.07996235288672,43.08022656548977,43.08029268434055,43.08038075765519,43.08044659092577,43.08049078221087,43.08051271665347,43.08079886720835,43.08088693795091,43.08093083535783,43.08110697560556,43.08119475322168,43.08137089761043,43.08141506092386,43.08143701093929,43.08156898840201,43.08159093267705,43.0816351059798,43.08172316475855,43.08176707649867,43.08178901473891,43.08203129648781,43.08205324655462,43.08214132517153,43.08222939030058,43.08245479021846,43.08247140496308,43.08255947807905,43.08273534490399,43.08284551512159,43.08304342889362,43.08313149514277,43.08319761946517,43.08328570992829,43.0833295845002,43.08341766194933,43.0834891438646,43.08354965297518,43.08359383053472,43.08365966794504,43.08370920429194,43.08372581841957,43.08384117913131,43.08385779393671,43.08395148849498,43.08401199448937,43.08417154879969,43.08423206910962,43.08430353668389,43.08431985824173,43.08436402086311,43.08438597768143,43.08445746210415,43.08447406193832,43.0845399080895,43.08458409857412,43.08471605850892,43.0847599621219,43.08482607350671,43.08484802845842,43.08491415407195,43.08502417844873,43.08509028738655,43.08517837396116,43.08522761094488,43.08524422571981,43.08531034192966,43.08546427059218,43.08548621794201,43.08553573812745,43.08555233979325,43.08557430281836,43.08566237626481,43.08575044379612,43.08588241568476,43.08601437880765,43.08610245065248,43.08636667862923,43.08649865042126,43.08652059106004,43.08658671665722,43.0866306067676,43.08665282554996,43.08676283565646,43.08704883796549,43.08720301777689,43.08729093054932,43.08737900483583,43.08744512786311,43.08769270817444,43.08788512848034,43.08795123191998,43.08799526151876,43.08803931115314,43.08810545104334,43.08814947242564,43.08821528808974,43.08825932064786,43.08850156775191,43.08865545401864,43.08878769116369,43.0890296689135,43.08909564472702,43.08921682114998,43.08928292893536,43.08941490443195,43.08945877796718,43.08972298812896,43.08985495684443,43.0899428639521,43.09005313937408,43.09027314661078,43.09040521606406,43.09047108171202,43.09051523828706,43.090537186946,43.09062524743421,43.09084527524786,43.09102143816886,43.09115339518103,43.09124158977406,43.09150564075147,43.09152758944109,43.09196789327104,43.09212177809454,43.09216567887202,43.09223179087947,43.09231987345055,43.09234255229981,43.09247404647128,43.092737987878,43.09280409677876,43.09282604546893,43.09300217332441,43.09313412956028,43.09328832176783,43.09342028077129,43.09344221461919,43.09348639809851,43.09350834683514,43.09359640975014,43.09375058346249,43.09383837112451,43.09390447981653,43.09392644281751,43.0940586748094,43.09441065918691,43.09454262345695,43.09478474685636,43.09504897477082,43.09548486292889,43.09557712357311,43.09575310806332,43.0958192392957,43.09588535084852,43.09590729892825,43.09606120498455,43.09608313944224,43.09617121403723,43.09619314849535,43.09630343444005,43.0963253831893,43.09639120967477,43.09650151409544,43.09654540660576,43.09656735287844,43.09672153924829,43.09685349369576,43.09700768995247,43.09711771976392,43.09724969340488,43.0973816595321,43.09755779709379,43.09766766885831,43.09795392156011,43.09808588764566,43.09815201818463,43.09832816364978,43.09872431576211,43.09883432498786,43.09892211649147,43.09914240460952,43.09940631217712,43.09960436336254,43.09967047429096,43.09971463461646,43.09995659987803,43.10008853365992,43.10015465684816,43.10039686955115,43.10063880410473,43.10081490668076,43.10105715311728,43.10107909511242,43.10115604627994,43.10120567877787,43.10145309607647,43.10162382140233,43.10183279749295,43.10185472848445,43.10225101383365,43.10228420357535,43.10237756320602,43.10255365320925,43.10258107879146,43.10261977277846,43.10272975694031,43.10288362602449,43.10299389420876,43.1030213148324,43.10315949275577,43.10336800734994,43.1034779880837,43.10349994406536,43.10376407004986,43.10385197377089,43.10398954503336,43.1042042988032,43.104402191026,43.10453442204137,43.10471038276417,43.10508449226693,43.10530460126814,43.10587690469376,43.10607492706184,43.1062508746643,43.10649292911314,43.10664707191633,43.10684510888748,43.10695509195712,43.10714769873658,43.10729623250212,43.10740634215446,43.10762617530329,43.1078464269116,43.10802236585926,43.10832505768846,43.10839665507149,43.10863302308181,43.10873752633974,43.10935384378937,43.10968404329569,43.11102620211972,43.11109231751229,43.11124617720263,43.11142226135729,43.11164252379183,43.11175251589503,43.11177445339833,43.11203858569918,43.11214858874211,43.1123685543766,43.11261074961023,43.11289665364315,43.11309468010045,43.11340282489564,43.1134908714472,43.11366696283505,43.11373308609294,43.11393112871694,43.11434912445897,43.11463519816771,43.11500936829151,43.11503130294005,43.11511937137667,43.11514130055717,43.11518547169757,43.11520742053262,43.11549350334374,43.11555933768591,43.11562545896345,43.11579592841375,43.11586750181529,43.1159169669571,43.11597757592514,43.11648360916737,43.11681387302463,43.11685775819414,43.11720966313292,43.11747383518734,43.11758383787815,43.11762801789686,43.11791409324507,43.11839822007448,43.1186401144793,43.11881619094144,43.11899228462001,43.11936644092987,43.11938838969837,43.11952031079376,43.1195425580872,43.1196964417494,43.11971839053318,43.11982839430416,43.11985032898585,43.11991644656017,43.1199383953287,43.12000449387835,43.12002644513831,43.12009254853282,43.12011451138735,43.1202025497799,43.1202245126341,43.12084084657979,43.12090669275536,43.12106084633684,43.12108279510645,43.12143502559367,43.12145696028225,43.12163279636717,43.12176502778365,43.12187502614482,43.12189696083466,43.12202891049526,43.12233727086762,43.12238115525188,43.12244726899039,43.1224911692802,43.12266714126618,43.12275536986409,43.1228653849443,43.12297538311104,43.12299731780234,43.12306343718386,43.12308537187544,43.12315120511764,43.12341537998059,43.12352538046297,43.12361345773257,43.12374537883549,43.12381150720722,43.12394345709028,43.1241637506489,43.12420762072226,43.12438376282406,43.12447182827306,43.12451569536019,43.12475767333255,43.12502271017841,43.12505693364935,43.12530453188107,43.12543115093199,43.1254474505247,43.12548601949786,43.1255025931207,43.12554116573926,43.12555747339948,43.12559603130892,43.12568943632256,43.12581605661894,43.12586554815905,43.12599188467174,43.12604704854602,43.12611287957337,43.1262670868202,43.12628368863543,43.12636612694588,43.12638245714081,43.12642099365644,43.12644294546625,43.12648712193627,43.12650343498976,43.12667423042421,43.12674007921146,43.12676201141565,43.12682815626295,43.1268447481872,43.12690525007232,43.12692719635719,43.12699302984337,43.12701526053337,43.1271472344819,43.12716354812955,43.12730114678827,43.12731775283178,43.12737824058455,43.12740019170436,43.12755411570974,43.12757070760357,43.12763121252214,43.12764779897624,43.12784026672963,43.12785687276273,43.12796127034335,43.1279778628687,43.12811518139363,43.12813177206232,43.12821423919908,43.1282308176212,43.12837939889069,43.1283960054752,43.12856652146287,43.12858283204582,43.12868751022219,43.12870382623969,43.12878626332924,43.12880849329608,43.12891851612806,43.12894046788424,43.12922635102844,43.12924295581821,43.12934734590652,43.1293639389804,43.12946861970558,43.12949055185524,43.12955613221234,43.12957836278779,43.12966614681548,43.1297761677686,43.1298203495901,43.1298861959403,43.12990278780603,43.12996329266335,43.12998522485019,43.1302713880517,43.13029334099841,43.13040337603996,43.13042531668096,43.13051338889848,43.13066731631751,43.13119561610144,43.13240579173821,43.13244997110552,43.13284590826659,43.13291202352873,43.13324211138286,43.13326405844411,43.13346217531906,43.13348410744803,43.13350633587573,43.13363831284876,43.13366027523159,43.13399037709379,43.13401233698054,43.13418848799702,43.13421045334862,43.13462860341188,43.13465056456538,43.13476059220595,43.13491481865682,43.13506877032788,43.13509071429486,43.13513491027766,43.1351568708012,43.13520075421068,43.13526689663556,43.13531108962442,43.135663163912,43.13575125260674,43.13592743185275,43.13597134111941,43.13616946727317,43.13636761673938,43.13638957960264,43.13656577337228,43.13658772214791,43.13665386261158,43.13667580587241,43.13678585970838,43.1370059606854,43.13713825122773,43.13716020001458,43.13733640441301,43.13760040002079,43.13762263014204,43.13766655322466,43.13768850196207,43.13795278407714,43.13817303625634,43.13830504489514,43.13848128602266,43.13900995454025,43.13918631888024,43.13940636636966,43.13949460652852,43.13971472709521,43.1398028149957,43.14015520494938,43.14022131618004,43.14026524294235,43.14028719164077,43.14033138017341,43.14035334302183,43.1404414322939,43.1410797842754,43.14156434757568,43.14171845907376,43.14222483669413,43.14248916011105,43.14284173693089,43.14317189999597,43.14339201991247,43.14361216147275,43.14436092414803,43.14458104317455,43.14464720366001,43.14477951661055,43.14502161316216,43.14506580063879,43.14519781955463,43.14537403615506,43.14552829681077,43.14559444349662,43.14570448748528,43.14592459438531,43.1461446794271,43.14625472667543,43.14627696893812,43.14709152455293,43.14717974586477,43.14720170862589,43.14746571258733,43.14770804115071,43.14817036815244,43.1486991111331,43.14872107396493,43.14902925691923,43.14938165623141,43.14940360484882,43.14946973997044,43.14949168858719,43.14966788805401,43.14979986535684,43.14984377623738,43.14986600789843,43.14995379627163,43.15006413944968,43.15010802253851,43.15032812039674,43.15043814763806,43.15061433225878,43.15065822947805,43.15081246603764,43.15098862795698,43.15105446872229,43.1512526092382,43.15131874540596,43.15136264266319,43.1514949170549,43.15153880012378,43.15160494926614,43.15164886069159,43.15178084191811,43.15200106218421,43.15201753436817,43.15210013905648,43.15232035830024,43.15236426442016,43.15245235213252,43.15309083140995,43.15372961703997,43.15401574024689,43.15436794264521,43.1545000791011,43.1544518985087,43.15475330431229,43.15477553133068,43.15481943096408,43.15490752930695,43.15503951112867,43.15506146049274,43.15530375693525,43.155501885775,43.15558995734114,43.15565582873517,43.15570002141937,43.15572195232532,43.15581004113304,43.15603008852695,43.15605204470054,43.15609622627831,43.1563602088663,43.1564702480943,43.15649219314175,43.15655831717682,43.15658028067825,43.1566464176699,43.15666835279171,43.15671254425194,43.1567344905521,43.15682229549629,43.15732886903537,43.15757571869845,43.15790133831737,43.1580330565877,43.15805501066122,43.15818714538677,43.15829731835847,43.1583412377863,43.1583631863891,43.15841849193834,43.15842932089792,43.15848449429014,43.15861649426859,43.15885852263163,43.15903470286197,43.15907888993694,43.15910083845764,43.15938692825967,43.1596071940104,43.15973933334559,43.16006963683948,43.16024598250148,43.16026781135689,43.16025165682637,43.16025701197498,43.16027348561336,43.16029010492672,43.1604220727823,43.1604882065759,43.16060720957897,43.16061773321199,43.16060567555436,43.16055873746348,43.16055009428986,43.160557847882,43.16058001704445,43.16062795145173,43.16065783280285,43.16073921983582,43.16077807374293,43.16084043695469,43.16085691360865,43.16086494732227,43.16085249883393,43.1608654342727,43.16088425751258,43.16098954979072,43.16101693922028,43.1610937598934,43.1611818625246,43.16122056525276,43.16122999418346,43.16122489648314,43.16124393082562,43.16128747957509,43.16134466515212,43.16137456193764,43.16139958714717,43.1615379773943,43.16154939141161,43.16154828337265,43.16149560848626,43.16149978066061,43.16151085562171,43.1615366015475,43.16158456104178,43.16167736399785,43.16175418524532,43.1618422832122,43.16186437813247,43.16187535692651,43.16188099801202,43.16182250265356,43.16179837817194,43.16176227007685,43.16168863050762,43.16166683612344,43.16165587745901,43.16165594813132,43.161677707835,43.16178897143063,43.16181787045301,43.16186148944561,43.16193276947103,43.16198021616175,43.16201849336624,43.16210658658945,43.16219467042048,43.16223872494282,43.16223339705179,43.16220050191345,43.16216732237086,43.16207953085436,43.16207404205487,43.16209052561509,43.16212893914512,43.16225005734923]}],[{"lng":[-87.84277650458915,-87.84263343948457,-87.84239798148603,-87.84220691032323,-87.84209863951891,-87.84201333428291,-87.84187561630881,-87.84181268200432,-87.84173673833531,-87.84175509900039,-87.84178989762751,-87.84184670745677,-87.8419262663307,-87.8420035403141,-87.84202880059507,-87.84197258199275,-87.84211565715387,-87.84216997788431,-87.84225433105161,-87.84239128007228,-87.8425810185756,-87.84273938787459,-87.84289775986586,-87.84297561102984,-87.84294749832615,-87.84277650458915],"lat":[42.90473261129259,42.90477381245998,42.90491766909217,42.90506208255284,42.9051590923121,42.90525625598955,42.90538535423326,42.90547759221965,42.90572322517064,42.90583331962643,42.90591107946715,42.90599431915042,42.90606194672368,42.90599755720923,42.90590995427846,42.90559035056188,42.9053296613905,42.90526484073028,42.9051949561829,42.90510974188064,42.90502552026256,42.90494071242532,42.90489979845933,42.90481881318895,42.90472485892195,42.90473261129259]}]],[[{"lng":[-90.54304852623738,-90.54382389825705,-90.54461300326848,-90.54540144062614,-90.55279436693864,-90.5536974102846,-90.55460029790754,-90.55530663808162,-90.55602027763659,-90.55658103359966,-90.55761615513626,-90.55810723269668,-90.55840854622664,-90.55868890398376,-90.5590684583961,-90.55947102157694,-90.55980749551914,-90.56050977226276,-90.56161338473412,-90.56184195415385,-90.56226936986984,-90.56259918760743,-90.56327041556871,-90.5640579730435,-90.5653194847872,-90.56602679241463,-90.56696764186268,-90.56806199313149,-90.56873339494244,-90.56975520659593,-90.57135440898828,-90.57217950992957,-90.57328859699005,-90.5741716974207,-90.57497466647676,-90.57561712033781,-90.57624475307732,-90.57725196982433,-90.57792294001712,-90.57857949576682,-90.57935966469024,-90.58046043985334,-90.58148087437876,-90.58223925636321,-90.58270866390887,-90.58351906773511,-90.58441371884139,-90.58549859847072,-90.58897355683052,-90.58978683801992,-90.59032161994432,-90.59077149791426,-90.59149669788481,-90.59198221713775,-90.59266510852567,-90.59324653001592,-90.59396547000742,-90.59433400488265,-90.59469294035189,-90.59494968630594,-90.59521560149642,-90.59551225613151,-90.59592051226961,-90.60246696391816,-90.60310905556454,-90.60376167693641,-90.60432251512614,-90.60480920917105,-90.60541612801022,-90.60602788169604,-90.60649123700421,-90.60717656303706,-90.60778202096031,-90.6083316856265,-90.60888217855961,-90.60952527211531,-90.610243575662,-90.61098582075877,-90.61191835753031,-90.61281212895457,-90.61345827779961,-90.61415022138212,-90.61502079819664,-90.61608171312288,-90.61672197035099,-90.61767976812308,-90.61859681882287,-90.61970975827002,-90.62035398896593,-90.62095199491444,-90.6216075355122,-90.62224577119609,-90.62313320656692,-90.62393397006794,-90.62476825743454,-90.62544684219435,-90.62642957733502,-90.6270792800066,-90.62782670222735,-90.62864227296116,-90.62969889355922,-90.63025375103831,-90.63092882262595,-90.63150777198945,-90.63232862604792,-90.63325309142181,-90.63393685049263,-90.63467254695507,-90.63542029126826,-90.6356737945781,-90.63637635337489,-90.6372352669033,-90.63814774573453,-90.63908342227387,-90.63980527601308,-90.64018956254471,-90.64048426671681,-90.64078501729374,-90.64158454944287,-90.64223979546493,-90.6428312562976,-90.64364701022686,-90.64419827482335,-90.64485265739364,-90.64562146438871,-90.64637349478318,-90.64738972065298,-90.64810760959044,-90.64897381275885,-90.64969590812663,-90.65029236148469,-90.65108894297065,-90.65165632686654,-90.65202380209723,-90.65246887318916,-90.65280280963638,-90.65380114456839,-90.65416839736456,-90.65446215393565,-90.65477753213585,-90.65516635369897,-90.65569503460827,-90.65635965968389,-90.65671212480306,-90.65705234710131,-90.65735911782436,-90.65808382510974,-90.65888960710176,-90.66030595660627,-90.66129771792293,-90.6666626822648,-90.66741665605829,-90.66828811196451,-90.66933849012446,-90.67198391772163,-90.67264625747572,-90.67346467898128,-90.6744944681344,-90.67515828981972,-90.67585434503638,-90.67680803429487,-90.6777450347563,-90.67836115013537,-90.67881910256547,-90.67911671010954,-90.67977819286432,-90.68056349785455,-90.68127901195224,-90.68236806901692,-90.68316152660547,-90.68453118116541,-90.68543384397586,-90.68635181466706,-90.68714501897033,-90.68796940748194,-90.68887142690983,-90.68974161239825,-90.69053230156065,-90.69799972825764,-90.69819856421628,-90.69829859936395,-90.69827269946251,-90.69819033116663,-90.69814404037155,-90.69795151541102,-90.69776499332009,-90.69764133843063,-90.6976045758567,-90.69756823361618,-90.69760163084119,-90.69757693179551,-90.69758542859239,-90.69769552834289,-90.69786767811138,-90.69795212393745,-90.69817241340716,-90.69867308546272,-90.69948334267005,-90.70008352247557,-90.70040198507017,-90.70122868171428,-90.70216396024662,-90.70276741937563,-90.70335465734678,-90.70370722906176,-90.7040059225897,-90.70459017565423,-90.70537895392305,-90.70609671482566,-90.70668306084737,-90.7071923243405,-90.70777931235205,-90.70829700021956,-90.70910299088101,-90.71000391306255,-90.7106249252887,-90.71130603137139,-90.71212398362127,-90.71266530355128,-90.71335313615145,-90.71399458287618,-90.71499245138503,-90.71544327229401,-90.71615743047289,-90.71698632086971,-90.71804196168424,-90.71874740006341,-90.71946598245857,-90.72008115826392,-90.72044913094786,-90.7209012642285,-90.72102936696616,-90.72165025370926,-90.72218384359515,-90.72275611594887,-90.72345981741758,-90.72481258231686,-90.72569273817948,-90.72612442725338,-90.72663227642384,-90.72699070967411,-90.72729333284835,-90.72757356625067,-90.72772379234952,-90.72815463499337,-90.72881069749698,-90.72935863839405,-90.73012925141174,-90.73133921464303,-90.73196276053771,-90.73220802816263,-90.73240788489143,-90.73259033825379,-90.73269622506133,-90.73274209562415,-90.73286674190027,-90.73320119164187,-90.73372550761289,-90.73405656692418,-90.73427344759482,-90.73446447160285,-90.73463563690991,-90.73478089682611,-90.73494557804214,-90.73518798275147,-90.73577318704172,-90.73629735045525,-90.73703699496193,-90.73776113852261,-90.73822313688716,-90.7383077835958,-90.73841173263608,-90.73852484795725,-90.73858033169871,-90.73866965710127,-90.73875414509514,-90.73888109977902,-90.73927746882258,-90.73947372722917,-90.73972223642922,-90.73985791924476,-90.7401524754558,-90.74060948479517,-90.74096676049938,-90.74141541988818,-90.74182949948995,-90.74268035578119,-90.74361832138483,-90.74437854504815,-90.74489847374313,-90.74537708697417,-90.74631717303329,-90.7475641661194,-90.74874871457759,-90.74948388677826,-90.74982246303563,-90.75046478652699,-90.75097456909749,-90.75167818248765,-90.75263635477393,-90.75323109048715,-90.75388665836104,-90.75437133737694,-90.7549334099099,-90.75561889792564,-90.75625695172025,-90.75664766060618,-90.75723798835796,-90.75788589106827,-90.75841058111043,-90.75920605255972,-90.76007070710295,-90.76090495498597,-90.76151591642318,-90.76215768620591,-90.76339703696679,-90.76404777053457,-90.76505620300996,-90.76602582670267,-90.76695778382583,-90.76728469911824,-90.76761251242094,-90.76814871610379,-90.7689771917283,-90.76944721319882,-90.77044071652669,-90.77120090699491,-90.77210902372403,-90.77289282169937,-90.77383267428156,-90.77488978836563,-90.77568948407014,-90.77666604361663,-90.77724617167902,-90.778414620535,-90.77938421390238,-90.78067948728629,-90.78184992473277,-90.78316028766467,-90.78388161785726,-90.78496694969473,-90.7855556728754,-90.78619096720713,-90.7869424313927,-90.78728398197359,-90.7878501741114,-90.78875057668623,-90.78941870644412,-90.79039802035548,-90.79181993715069,-90.7927348472173,-90.79344689149094,-90.79453757222035,-90.79576956706799,-90.79720566265013,-90.79760188825509,-90.79796280588782,-90.79824669813814,-90.79906605078926,-90.80397099692645,-90.80468039937097,-90.805181853973,-90.80586904152419,-90.80646264233827,-90.80727941108121,-90.80778734057181,-90.80831580949878,-90.80847439962193,-90.80856788029324,-90.80867841587161,-90.80873176499846,-90.8087387012575,-90.8087713053018,-90.80884793651121,-90.80895090788324,-90.80918484096014,-90.80973014469294,-90.81037405332499,-90.81060784454223,-90.81120862141833,-90.81218785498889,-90.81272820599185,-90.81311189453712,-90.81365526884763,-90.81431192127843,-90.81498460611451,-90.81588877076068,-90.81673814893317,-90.81782960388897,-90.81973650162915,-90.82108777694057,-90.82181645597578,-90.82251501923716,-90.82356840927785,-90.82455774932301,-90.8255025173758,-90.82685833004159,-90.8276773664179,-90.82852824329309,-90.82911621155756,-90.83026336381529,-90.83100804655939,-90.83163763028244,-90.83244647891149,-90.83323947671256,-90.83465413723236,-90.83541644345398,-90.83624907381721,-90.83718303611128,-90.83829402429404,-90.83877101268088,-90.83926171220077,-90.83977822607903,-90.84038681297926,-90.84109376155791,-90.8416914834748,-90.84205845652437,-90.84258564121617,-90.84312717869417,-90.84329940990897,-90.8435999027367,-90.84403192887238,-90.8443287777169,-90.84478648493096,-90.84545306170872,-90.84601476784216,-90.84668629894452,-90.84752864100498,-90.84838815816424,-90.84938022587673,-90.85008627051182,-90.85085137405092,-90.85199755861051,-90.85266989952143,-90.85383525090339,-90.85478991464198,-90.85547141454549,-90.85629884629003,-90.85694640117543,-90.85779587759023,-90.85830358251471,-90.85923616608513,-90.85990681481051,-90.86071770658899,-90.86148922921113,-90.86234284981063,-90.86299825011162,-90.86374914541642,-90.86450608317737,-90.86527578458323,-90.8658874213361,-90.86670357026316,-90.86747077955459,-90.86783137105961,-90.86809709286239,-90.86824875817724,-90.86859104639495,-90.86880258875506,-90.86918471547352,-90.86952003704816,-90.86980254294984,-90.87010010025357,-90.87069578246798,-90.87125977630146,-90.87193973908474,-90.87222228630372,-90.872487471843,-90.87274642446417,-90.87344781436674,-90.87413497145235,-90.87509619574374,-90.87623656675019,-90.87711691764619,-90.87759260860305,-90.87795479448793,-90.87898920279747,-90.87994254074123,-90.8805002490145,-90.88085376978438,-90.8819567917689,-90.88277859531813,-90.88341941068428,-90.88421805670495,-90.88555773883596,-90.88609805803323,-90.8866152961312,-90.88737977251824,-90.88788680655679,-90.88837867644453,-90.88904864757956,-90.89038165791725,-90.8911197942689,-90.89229568575696,-90.89361049721079,-90.8943359180869,-90.89499284095032,-90.89591313868307,-90.89640059603749,-90.89680591628159,-90.89702806276591,-90.89782589511172,-90.89887759162762,-90.89994971442334,-90.90074996445023,-90.90140784045032,-90.90245459551809,-90.90266362856384,-90.90308883498838,-90.90355166048396,-90.90384279955727,-90.90409701067063,-90.90437765191622,-90.90472780341872,-90.905350765403,-90.90616288170196,-90.90751824478404,-90.90842249347367,-90.90996690729675,-90.91028661203782,-90.91075048199035,-90.91157134214757,-90.91261757646447,-90.91301699150196,-90.91332537049566,-90.91368671459048,-90.91453926501997,-90.91545449027794,-90.91631772716724,-90.91695469222144,-90.9177958032688,-90.91925898925481,-90.92111678377498,-90.92192864409786,-90.92358211422786,-90.92424153273883,-90.92509095051994,-90.9257046996635,-90.9268710005573,-90.92756746158096,-90.92826384316704,-90.92961059522223,-90.93058607026786,-90.93176490412543,-90.93193920281581,-90.93226140577325,-90.93277779013304,-90.93598617212859,-90.93737681718187,-90.93844943952978,-90.93899614642183,-90.93961030601081,-90.94015539278143,-90.94068510569582,-90.94135239995119,-90.94177427515824,-90.94220076993035,-90.94259617062539,-90.94283461298541,-90.94326566939534,-90.94352683355723,-90.94390636473514,-90.94489530818413,-90.94523639175532,-90.9455607442723,-90.94637161252579,-90.9472164035881,-90.94766561032408,-90.94920931974933,-90.95006511610642,-90.9503892501679,-90.9506286249772,-90.95083096358755,-90.95105206450201,-90.95152632774527,-90.95215283270224,-90.95281489717554,-90.95323208448838,-90.9536727000549,-90.95409784109582,-90.9545152158764,-90.95480881729527,-90.95540675809234,-90.95601996582469,-90.95676020447925,-90.95733636379497,-90.95786723475561,-90.95868340669858,-90.95914619300049,-90.95953940961462,-90.95988243245225,-90.96042773040567,-90.96151334432352,-90.96200444982917,-90.9624003121518,-90.96275335751983,-90.96308203104384,-90.96352208216261,-90.96396208723408,-90.96465186149675,-90.9648984394443,-90.96513647779844,-90.96522398577815,-90.96540143392936,-90.96548451304085,-90.96558726763196,-90.96581813861972,-90.96643095384501,-90.96738189256278,-90.96797290338731,-90.96828834370287,-90.96886304398031,-90.96943901758277,-90.96993319480347,-90.97054191654249,-90.97129846976051,-90.97188796145188,-90.9725485555292,-90.97322354828817,-90.97380860753,-90.97442290746022,-90.97535861620986,-90.97610681879743,-90.97689206657853,-90.9774534651651,-90.97834583316832,-90.97911796994296,-90.980019011416,-90.98061195596037,-90.98143035339007,-90.98238272749626,-90.98316210743043,-90.98386702026178,-90.98443753856154,-90.98504013258112,-90.98592350644081,-90.98666440470532,-90.98719379241551,-90.98791964779276,-90.98880302124871,-90.98957151783111,-90.99037656325034,-90.99102289038552,-90.99173637318221,-90.99229171098689,-90.99303485557341,-90.99339172844088,-90.99396137183601,-90.99461125024521,-90.99503447953826,-90.9954666829522,-90.99557369994557,-90.99579999469275,-90.9963079007108,-90.99677446534774,-90.99728151603834,-90.99821548521912,-90.99898241915217,-90.99955282642647,-90.99999206379761,-91.00028837441778,-91.00108450967059,-91.00169256884971,-91.00246603376472,-91.00317008828527,-91.00394774795761,-91.00461140812698,-91.00505001162014,-91.00557619658301,-91.0058942879307,-91.0063931398186,-91.00667210630414,-91.00717785557576,-91.00775086261415,-91.0082397269597,-91.00873089481252,-91.00931985063393,-91.00998270871406,-91.01059862741516,-91.01104818292777,-91.01147158457535,-91.01206863684955,-91.01250434161467,-91.01320290252208,-91.01390012592266,-91.01474733581259,-91.01576099916382,-91.0164663397702,-91.01738302600319,-91.01814889168587,-91.01848794600176,-91.01892838207544,-91.01948009560139,-91.01997816874669,-91.02023743092656,-91.0204695600072,-91.02115585491393,-91.02217417507171,-91.02278218044823,-91.02369887371903,-91.02518051637468,-91.02604471735116,-91.02673601844799,-91.02787721438764,-91.02876297603477,-91.03165469175359,-91.03257802214027,-91.03384048631953,-91.03489440616414,-91.03600940746199,-91.03714900660589,-91.03789718550139,-91.03928054309503,-91.04015472992631,-91.04050982335023,-91.04099050332064,-91.04173965095498,-91.04246415399413,-91.04275016155536,-91.04320242887002,-91.04357913080294,-91.04426354873262,-91.04515847994988,-91.04620269381962,-91.04685370343906,-91.04717970485677,-91.04755292768816,-91.04811906291648,-91.04851659881504,-91.04883875177349,-91.04897584817168,-91.04974204307919,-91.05091387379674,-91.05169855705171,-91.05195774254634,-91.05225092552239,-91.05268538640109,-91.05286421312987,-91.05314968401466,-91.05333899085437,-91.05345970288779,-91.05349525965723,-91.05351085889239,-91.05348551580997,-91.05341643683769,-91.05331010806054,-91.05329939672693,-91.05330841083818,-91.05330820452878,-91.05331215897853,-91.05337289635439,-91.05366615761308,-91.05396843021244,-91.05425072524619,-91.05428352353174,-91.05435538001259,-91.05441666955066,-91.05445618520031,-91.05446677020142,-91.05453304061595,-91.05462297263024,-91.0547999366236,-91.05502035167056,-91.055572250995,-91.05648425106982,-91.0572347326456,-91.05760904183043,-91.05792423231995,-91.05860811591791,-91.05923811838601,-91.05996480483098,-91.06063888537334,-91.06135237161648,-91.06206601432716,-91.06235886101706,-91.06276957479808,-91.06345810757185,-91.0641262740648,-91.06443978485088,-91.06478424810126,-91.0655688882951,-91.06604163174551,-91.06665666550839,-91.06751076444111,-91.06846374916093,-91.06921305332207,-91.06987981982083,-91.07085040898782,-91.07153256772492,-91.07196846945544,-91.07231534946897,-91.07302973029689,-91.07381166171545,-91.07404253448928,-91.0743896745626,-91.07459882625187,-91.07552949584124,-91.07650317472725,-91.07686942427128,-91.07735906029832,-91.07770726824728,-91.07804540621045,-91.07846980614588,-91.07867619156163,-91.07889285471296,-91.07950695485252,-91.07995753726647,-91.08035642644306,-91.0810797215052,-91.08212804191483,-91.08347119762482,-91.08446108614812,-91.08559534825284,-91.08652544425856,-91.08728331771468,-91.08797219607646,-91.08880633473092,-91.08991488367232,-91.09063562486976,-91.09117521308455,-91.09140947918867,-91.0917822794096,-91.09221148815925,-91.09248078615907,-91.09304662863393,-91.09358477521228,-91.09428835041284,-91.09451838376447,-91.09497162621774,-91.0954228542488,-91.09624502242383,-91.09688807753795,-91.09727775393574,-91.09762002124874,-91.09764063982715,-91.09806412915374,-91.09837223751379,-91.09852026874071,-91.09865588371478,-91.09927477816936,-91.0999694596279,-91.10072706088241,-91.1011001265243,-91.10140666983492,-91.10204369106292,-91.10285848296918,-91.10353337694066,-91.10434819195025,-91.10508593542362,-91.10568721150038,-91.10666468037698,-91.10718413449047,-91.1078919699889,-91.10801600288846,-91.10833246995419,-91.10852970861922,-91.10903423784541,-91.10936524522018,-91.10999094365228,-91.11026852031192,-91.11047785886865,-91.11067567909606,-91.1107918064597,-91.11133376311082,-91.11162365567444,-91.11259518031558,-91.11353260604402,-91.11451517742439,-91.11531428585997,-91.11603610522509,-91.11693752258367,-91.11799880138581,-91.11876096087049,-91.11964544790031,-91.12080121958464,-91.12192750670401,-91.12259380922426,-91.12375713396808,-91.12458732963853,-91.12578774055436,-91.12906348284345,-91.13091318055083,-91.13224945374166,-91.13302538432588,-91.13365085888248,-91.13456203706782,-91.13526145949255,-91.13622363355141,-91.13685414211741,-91.13744665682067,-91.13834376827526,-91.13879050458898,-91.13973792513234,-91.1404538019658,-91.14260193915497,-91.14358142175641,-91.14475501780682,-91.14542488777546,-91.14620708771504,-91.14701993726871,-91.14770385979338,-91.14861906498733,-91.14921861768485,-91.14973923072485,-91.15045001843373,-91.15095407190763,-91.15139913891096,-91.15200144477107,-91.15276263976332,-91.15341419575358,-91.1539532179911,-91.15447672195737,-91.15508975000321,-91.15571724295171,-91.15680263043666,-91.15671560576344,-91.15680673160384,-91.1568548297878,-91.15673618989202,-91.15655061777503,-91.15632258084447,-91.15599995542846,-91.15552354820176,-91.1548361494897,-91.15293354818263,-91.15143177973114,-91.14960223066264,-91.14822413015372,-91.14752199287527,-91.14672504912211,-91.1461001366938,-91.14578589977334,-91.14560966084542,-91.14557011261297,-91.14548613064073,-91.14550309631814,-91.14556623437362,-91.14578641064656,-91.1462768209697,-91.14767415091363,-91.14847992352657,-91.14917427383799,-91.14961167718658,-91.14974414581944,-91.14975543335999,-91.14957996834285,-91.14941434446325,-91.14880338294084,-91.14768737451469,-91.14589443280943,-91.1441298141755,-91.14381282585157,-91.14369182329918,-91.14369759327971,-91.14366854702128,-91.14377960142185,-91.14395679433099,-91.14413163486959,-91.1445160972148,-91.14513131430714,-91.14549778374823,-91.14587933423462,-91.14609189197134,-91.14619326688252,-91.14619464984199,-91.14618384528337,-91.14607054443793,-91.145804658419,-91.14546275978695,-91.14520471983099,-91.1445532729218,-91.1435554443714,-91.14235399095659,-91.14079547169267,-91.13939411879885,-91.13690613683028,-91.1360316345901,-91.13547984511915,-91.13398895012604,-91.13130304041249,-91.12925647808053,-91.12744328692327,-91.12652675515413,-91.12513967520538,-91.12394918653688,-91.12243164824486,-91.12110545493708,-91.12044943351646,-91.11937824099923,-91.11709788706295,-91.1160563213823,-91.11561017463811,-91.11414174907294,-91.11286797970811,-91.11238459686138,-91.11138599365381,-91.10982010717701,-91.10842846318069,-91.10680298087334,-91.10589611576357,-91.1053343746958,-91.10469485838718,-91.10403509565866,-91.10353731777064,-91.10262208315265,-91.10174652380913,-91.1008132070743,-91.10023189998614,-91.09984628168699,-91.09925023637844,-91.09852015973657,-91.09769179720035,-91.0972284202104,-91.0962999292647,-91.09511058552037,-91.09468548136006,-91.09389206790311,-91.09278685700932,-91.09173931026973,-91.09089004213472,-91.08974912530401,-91.08884037610288,-91.0878326490848,-91.08721137190471,-91.08660365645667,-91.08628049585016,-91.08565639658171,-91.08489890662102,-91.08312987421056,-91.08170744176579,-91.08078068641214,-91.07980368457761,-91.07930734064703,-91.07902176980129,-91.07910537025187,-91.07922440606677,-91.07965372759207,-91.08031877651912,-91.08124551643651,-91.08183572842501,-91.08223125068012,-91.08231371595271,-91.08221789003765,-91.08192790190169,-91.0813916695749,-91.08090181209076,-91.07995694010837,-91.07917770799607,-91.07853331005673,-91.07816068119827,-91.0778374655211,-91.0777292323844,-91.07773966443008,-91.07804032664667,-91.07879717773388,-91.0796321085537,-91.08030412675872,-91.08069902108194,-91.08103175004878,-91.08113922842298,-91.08118743732375,-91.08114784629721,-91.08097634514714,-91.08078906426113,-91.080645290612,-91.08042774659525,-91.08003620291181,-91.0787531176653,-91.07752069361973,-91.07715110189672,-91.07697329576227,-91.07692601260241,-91.07697185368487,-91.07709478424623,-91.07749134978833,-91.07841258246096,-91.07863080690659,-91.07867442814093,-91.07865163803213,-91.0787551780802,-91.07919208590083,-91.07927968154064,-91.07924560905303,-91.07925490010061,-91.07916165973873,-91.07901563526012,-91.07879182222624,-91.0785498954798,-91.07851437817537,-91.07861667537892,-91.07860051059774,-91.07849528746512,-91.07822912824055,-91.07817696433752,-91.07815296958627,-91.07775223514419,-91.07753011179457,-91.07740433861372,-91.07695219648376,-91.07652994940949,-91.07638058357369,-91.0761154875162,-91.07582176700906,-91.07534742708224,-91.07483301725902,-91.07427689982008,-91.07411224354318,-91.07377845497352,-91.07367173780816,-91.07332354798403,-91.07269353754981,-91.07225260478329,-91.07213032341325,-91.07192532087666,-91.07191291880544,-91.07195576721783,-91.07159096206557,-91.07108170511907,-91.07083998720614,-91.07079522932079,-91.07092956214714,-91.07090050574899,-91.07075054608291,-91.07058798862991,-91.07058305199733,-91.07072326013879,-91.07058254141944,-91.07022541467715,-91.0701236255746,-91.0699598840977,-91.06963886267691,-91.06941146188157,-91.06902201005687,-91.06565800703855,-91.0645677555965,-91.06371355951829,-91.06255278169877,-91.06141401016106,-91.06100771773217,-91.06065933107287,-91.06030767959754,-91.06010738049149,-91.06007139071262,-91.0601248393403,-91.06034687739437,-91.06075516665085,-91.06128256949562,-91.06203872121399,-91.06280005681892,-91.06329648055234,-91.0642716771106,-91.06505547191797,-91.06535938593082,-91.06550887667669,-91.06557944865061,-91.06551275740124,-91.06551663502833,-91.06556642374562,-91.06580146016478,-91.06583094779027,-91.06555026426329,-91.06518984689203,-91.0649705511613,-91.06467924071271,-91.06406313275841,-91.06362089620593,-91.06289363240856,-91.06214689147077,-91.06149829208286,-91.06092470317523,-91.06040732117226,-91.05973372261906,-91.05932660745037,-91.05885221866917,-91.058168360376,-91.05733681690894,-91.05647330513025,-91.05599489239937,-91.0556502410705,-91.05528869135671,-91.05483088437045,-91.05461630805064,-91.05460750292474,-91.05458880792406,-91.05468031869695,-91.05466197500814,-91.0544720580229,-91.05422593187204,-91.0538354133158,-91.05332733341223,-91.05288133823665,-91.05196145666918,-91.05101693451573,-91.05007316631959,-91.04869291557658,-91.04790120075621,-91.04708157126076,-91.04649667268417,-91.04611750762606,-91.04559503875653,-91.04524889713483,-91.04482599510091,-91.04400740786303,-91.04315726411987,-91.04165869814068,-91.03977768847386,-91.03898341682026,-91.03751244273036,-91.03662747471755,-91.03591886607325,-91.03506006024882,-91.03417082017614,-91.0331614911269,-91.03256652467189,-91.03221026677672,-91.03184754838968,-91.03126299130402,-91.03080674344086,-91.03062325845357,-91.03052326235178,-91.03057200838636,-91.03067415180459,-91.0305451320902,-91.03020755336718,-91.0300495128501,-91.02983630376127,-91.02926365371597,-91.0286010946229,-91.02800519465092,-91.02754296123912,-91.02653496376281,-91.02419586584797,-91.02173787536017,-91.01936884070149,-91.01726895478407,-91.01549937486084,-91.01476625679548,-91.01431118111701,-91.01244170304099,-91.0112423625974,-91.01012867396462,-91.00954102801677,-91.00877535680371,-91.00735735274395,-91.00475470863829,-91.00191957488282,-90.99935875049479,-90.99781888950102,-90.99547965435832,-90.99435257192697,-90.99272090944852,-90.99126558134273,-90.98965997212429,-90.98832157905019,-90.98764998021653,-90.9866047140226,-90.98552600524101,-90.98438209354336,-90.98333320472825,-90.98153984224949,-90.98031823699243,-90.97976704910342,-90.97831328309927,-90.97688995644819,-90.97550112552697,-90.97461596744468,-90.9736717789734,-90.97240788533404,-90.97061402866825,-90.96914290070811,-90.96817039339112,-90.96666689279387,-90.96462974421655,-90.96214883591894,-90.96019858183227,-90.95805450405037,-90.95728504159489,-90.95651554488751,-90.95516811896005,-90.95359816689955,-90.95155846659138,-90.95055608239838,-90.94852108264547,-90.94584140546164,-90.94144173717962,-90.93911981632893,-90.93682852412223,-90.93550781907739,-90.93354509164486,-90.93193400264195,-90.92878878610124,-90.92592375854944,-90.92446072962629,-90.92366983388189,-90.92290733876884,-90.9217915264845,-90.92088129376246,-90.91973420185703,-90.91740556921566,-90.91441092193837,-90.91323109179764,-90.91187121630679,-90.9102459360374,-90.90885650796859,-90.90722809155596,-90.9050981394001,-90.90317688829883,-90.90230547743738,-90.9007113101693,-90.89817462693776,-90.89596436701297,-90.89363577265927,-90.89198746118724,-90.89001463672311,-90.88879325220253,-90.88643791600389,-90.88258461187279,-90.87799499038547,-90.87521482321988,-90.87256891108899,-90.86851251336297,-90.86660114252761,-90.86512982508715,-90.86314273793474,-90.85913721391874,-90.85560349633394,-90.85286634956772,-90.8504397622461,-90.84896921236383,-90.84593890840472,-90.84291071477327,-90.84088348508412,-90.84003140038278,-90.83038076165147,-90.83002702677408,-90.82740949589599,-90.82624696240102,-90.82427716225928,-90.82016196900429,-90.81651580353966,-90.81351837769445,-90.81100540376542,-90.80824354483316,-90.80527661038488,-90.80295459253128,-90.80072140511449,-90.79897244864283,-90.79697459127398,-90.79465102784908,-90.79417924601691,-90.78924051964574,-90.78633201378199,-90.78399687451876,-90.78108924629738,-90.77897495136688,-90.77712458701751,-90.77559674577964,-90.77362776181572,-90.77223198520882,-90.77099706819989,-90.76832228621568,-90.76602970254996,-90.76391235914825,-90.76194113217521,-90.76011763881769,-90.7596756262724,-90.75780571358817,-90.75563096753598,-90.75369184648541,-90.75125324569349,-90.750812570747,-90.75007798149738,-90.74816567545983,-90.7466954916876,-90.74462277902637,-90.74186054381163,-90.73962730171441,-90.73765951687437,-90.73619096868171,-90.73416336954892,-90.73278162661813,-90.73103270446803,-90.72821096469104,-90.72515398516541,-90.72303647301099,-90.72083120973079,-90.71974207343681,-90.71827081476853,-90.71697465909372,-90.7156641661399,-90.71369147595786,-90.71204089233358,-90.71065471581521,-90.70938606729231,-90.70767409431647,-90.70634377591978,-90.70530828259952,-90.70412389817636,-90.70363527821442,-90.70312997773679,-90.70223775258499,-90.70178936117347,-90.70119096615207,-90.70097744492587,-90.70076330550668,-90.70063369185827,-90.70080013677631,-90.7007358710478,-90.70061184708653,-90.70044350534194,-90.70017167640705,-90.6996639594568,-90.69909743672716,-90.69805695161693,-90.69666144704311,-90.69529415421592,-90.69443331239017,-90.693881659537,-90.69307545269204,-90.69277335888383,-90.69228950836629,-90.69192757092019,-90.69153056164096,-90.69113404947575,-90.69064993963948,-90.69036298713131,-90.68967430842449,-90.68898422517344,-90.68850268554617,-90.6880512029546,-90.68786679502919,-90.68768272839078,-90.68769658551192,-90.68775569425441,-90.68774498289771,-90.68761910847756,-90.68743624658222,-90.68695232993153,-90.68656505955406,-90.68573117802588,-90.68391727060678,-90.68232666159491,-90.68042647169491,-90.67906157107353,-90.67769706182857,-90.67681227002403,-90.67633978509159,-90.67513016829413,-90.67356810974489,-90.6726107217016,-90.67122728915614,-90.66984303601096,-90.66872453194914,-90.6668096051507,-90.66586667376018,-90.66536489784144,-90.66468500614943,-90.66406391008339,-90.66352962678397,-90.66258058236075,-90.66207541631223,-90.66170104077617,-90.66161149316025,-90.66131323529558,-90.66074581783774,-90.66044171314743,-90.66010321105311,-90.65970381925054,-90.65957349785533,-90.6595037023621,-90.65936162100687,-90.65911414840122,-90.65880594398621,-90.65850094015219,-90.65832000650671,-90.65784235164131,-90.65754328703116,-90.65712767800586,-90.65677068945165,-90.6560015180799,-90.65546961401962,-90.65449548148676,-90.65362657737349,-90.65262340953515,-90.65197522504975,-90.65076868491907,-90.64973851500463,-90.64856116835716,-90.64767628544669,-90.64714486396574,-90.64640653396964,-90.64602104845358,-90.64539846221015,-90.64483576755718,-90.64459682038849,-90.64423888679414,-90.64411588740781,-90.64390364961668,-90.64364170136921,-90.64317989602479,-90.6428734997741,-90.6427465313901,-90.64241086299933,-90.64204235775138,-90.64187619957336,-90.64154300448932,-90.64118096517953,-90.64084912179075,-90.640130628676,-90.63808266796025,-90.63739278700282,-90.63679339841974,-90.63637248231929,-90.6363978196058,-90.6362758206311,-90.63635535080225,-90.6364005349685,-90.6365084706967,-90.6365876124609,-90.63696030479781,-90.63742107528812,-90.63782523785277,-90.63854810015454,-90.63990679386912,-90.64093730989518,-90.63995478619313,-90.63998605371992,-90.63610457251399,-90.63408909474616,-90.63299558378381,-90.63172064744187,-90.62869723455063,-90.6273370941899,-90.62606747945988,-90.62295315719413,-90.61805505059573,-90.61315770606413,-90.60825997848985,-90.60336225151373,-90.59846280677451,-90.59356374474409,-90.58866392469422,-90.583763723933,-90.57883511110444,-90.57390612873817,-90.56897714793776,-90.56404817580996,-90.55912237044487,-90.55419694261769,-90.54927151024029,-90.54434684101996,-90.53948845720024,-90.53459280258762,-90.52969676450432,-90.52480073334779,-90.51989340550354,-90.51498569951744,-90.51007837001535,-90.50861693811144,-90.50517028211812,-90.50348409064208,-90.50032091538775,-90.49547230626324,-90.49062293531175,-90.48577356412818,-90.48514704231289,-90.48087476100969,-90.47597558322546,-90.47107602995887,-90.46617724627015,-90.46327108378466,-90.46211736899735,-90.4613014372442,-90.45642525135482,-90.45154945215108,-90.44788061643446,-90.44667365255896,-90.4417059065692,-90.43673778154512,-90.43177003459583,-90.4288430230468,-90.42680191136854,-90.42658689794838,-90.42629534813233,-90.42575701805984,-90.42606685079036,-90.42597517084566,-90.42585004725876,-90.4260877439954,-90.42605578586037,-90.42595233244536,-90.42582643360319,-90.42593906034216,-90.42592386849259,-90.42599860648318,-90.42609497363352,-90.42611799882891,-90.42626062869508,-90.426258214542,-90.42663468494735,-90.42691400075881,-90.42704540028976,-90.42726479246603,-90.42738498290845,-90.42749474859387,-90.42746849926317,-90.42762411254132,-90.4278388244887,-90.42816635950311,-90.42836218372096,-90.42851720095905,-90.42862099832736,-90.42853031435303,-90.42850734561486,-90.42856142773084,-90.42865311125506,-90.42880499246316,-90.42911370488581,-90.42928796780956,-90.42961250648716,-90.4297794964622,-90.42998435282803,-90.42973220661005,-90.42956773981183,-90.42921955613011,-90.43026382415144,-90.43097186384111,-90.43168724631167,-90.43256312116078,-90.4338043460134,-90.43462955006098,-90.43577562030242,-90.43639626172275,-90.43708955702704,-90.43794337057039,-90.43862942513823,-90.44001746507615,-90.44076285568929,-90.44153051351113,-90.44342791004112,-90.44424687429094,-90.45317352115237,-90.45350081858982,-90.45439842796183,-90.45533061773322,-90.45620441986166,-90.45710791470313,-90.45761272951211,-90.45814480568328,-90.45918261936004,-90.46033726268288,-90.46119970689107,-90.46209218342925,-90.4627730795235,-90.46358648232166,-90.46425321988271,-90.4650655787956,-90.46573143326849,-90.46671158253079,-90.46791858844006,-90.46965911727909,-90.47084429790117,-90.47159765320377,-90.47259235553986,-90.47339686771298,-90.47487394580183,-90.47579533823028,-90.4768262612162,-90.47763061712472,-90.47844252912969,-90.47940059700319,-90.48008883382919,-90.48087223962875,-90.4816632938681,-90.48238136607647,-90.4832025934568,-90.48418497300082,-90.48474930973727,-90.48553993053316,-90.48630107063478,-90.48698892942899,-90.48795507406234,-90.48884793357522,-90.48967430469065,-90.49049315529936,-90.49128247281456,-90.49219516473138,-90.49297644274962,-90.49385989946197,-90.49527603109935,-90.4961963188404,-90.4965484143148,-90.49687031476689,-90.49753974406775,-90.49796498029747,-90.49834740445291,-90.49916052960471,-90.5001059016309,-90.50170976140504,-90.50237649202008,-90.50361430448385,-90.50443477583522,-90.50535012905226,-90.50599220271879,-90.50641067685956,-90.50742569514354,-90.50837449410885,-90.50886853545403,-90.50940429813245,-90.51035429090611,-90.51131863408864,-90.51214340429269,-90.51290935475899,-90.51363875615142,-90.51439738805252,-90.51512700946299,-90.51598861687064,-90.51708294671324,-90.51789957167294,-90.51865845112633,-90.51948277786192,-90.52053391731819,-90.52127213392724,-90.52216482160557,-90.52326345557151,-90.52406900551418,-90.52470565852953,-90.52551728864418,-90.52645995371554,-90.52787054871361,-90.52868091228866,-90.52974794877306,-90.5321999242725,-90.53440244506601,-90.53478511679535,-90.53575257059255,-90.53629397349825,-90.53666836549765,-90.53731358345517,-90.53804111852102,-90.53855516752418,-90.53875466447825,-90.53929112601949,-90.54001784497311,-90.54106649094804,-90.5418556635544,-90.54304852623738],"lat":[43.2115003024822,43.21157412989623,43.21154899671038,43.21144901190821,43.20864707019562,43.20829522675647,43.20792734011799,43.20764592776823,43.2073644828676,43.2071479197872,43.20685955482095,43.2067383262826,43.20669086867248,43.20669127040497,43.20667385182614,43.20669947707876,43.20674193599464,43.20681868389401,43.20682930892144,43.206805118206,43.20679841693486,43.20674427818948,43.20662336534519,43.20643772902752,43.2061374818524,43.20596826591905,43.20576581299218,43.20556793218121,43.2054683736948,43.20532964197349,43.20519871200544,43.20512509300245,43.20494313077614,43.20482109386774,43.20472617788547,43.20465879750606,43.20457010939918,43.2044367292253,43.20429435109617,43.20417342435297,43.2039877206389,43.20370415472372,43.20342633705638,43.20325676124598,43.20307254043325,43.20259270189772,43.20215512401862,43.20174329862371,43.20063224106215,43.20009881411639,43.19948128898307,43.19915286937128,43.19858246386966,43.19816298040679,43.1977531643867,43.19742939904612,43.19697127474483,43.19654703802527,43.19588763757717,43.19523946045131,43.19478368314149,43.1945683968987,43.19438976368949,43.19004530341546,43.18965368028523,43.189160714552,43.18871887527467,43.18836182177597,43.18791551084789,43.18737633105036,43.18699407217976,43.18631523578144,43.18572544119631,43.1853258403168,43.1850106283737,43.18472868385155,43.18447165634772,43.18430311389947,43.184133545963,43.18412454248313,43.18415062161669,43.18414268667195,43.18412113289683,43.18410276302312,43.18411619486032,43.18416588667981,43.1841778102583,43.18417178723578,43.18400793873195,43.18383589527821,43.18365087004963,43.18346594186969,43.18340202967319,43.18332170616326,43.18313569333746,43.18295052694455,43.18262020551359,43.18243096980189,43.18221164977565,43.18189066813307,43.18145863696879,43.18102091780857,43.18049813699768,43.18016156115311,43.17979832565509,43.17941763001529,43.17918174460333,43.17894978536714,43.17876839504345,43.17870536863314,43.17865757920056,43.17863170048435,43.17876587316162,43.17891256957044,43.17901403513476,43.17903370024631,43.17904929397518,43.17896213159302,43.17877196931195,43.17856995211043,43.17833453162012,43.1780429838611,43.17782466260859,43.17754245393346,43.1771751942999,43.17685866909396,43.17644358150407,43.17617154742232,43.17574885447369,43.17533119479638,43.17502818286828,43.17456789260229,43.17424393917076,43.17401342567184,43.17376946983085,43.17361495366541,43.17315348882662,43.17295790293055,43.17288724532994,43.17279764408806,43.17264179332716,43.17232818789626,43.17193613593898,43.17177933264777,43.17164804565341,43.17158435635815,43.17141982853094,43.17128859085354,43.1711031822628,43.17111011594828,43.17174146396064,43.17179518358342,43.17177870549907,43.17175548013824,43.17170009648781,43.1717759516166,43.17189075637191,43.17211823291232,43.17232792313808,43.17263709694442,43.1730187989912,43.17329806068534,43.17341402678538,43.17349975904714,43.17347219864741,43.17346827027317,43.17340094732985,43.1733568131064,43.17331044953956,43.17327723761933,43.17326905093356,43.17325794830824,43.17322396275579,43.17316793771531,43.17311741367919,43.17304932878132,43.17291877018567,43.17264058624665,43.16820355079498,43.16799671073158,43.16779730256279,43.16750677551325,43.16727387984213,43.16720869657282,43.16670291170254,43.16604044918836,43.1654317189918,43.1649363745691,43.16447806027482,43.16399368332814,43.16319067776563,43.16256974360535,43.16198806748498,43.16138892092664,43.1611324384279,43.16081744735793,43.16037009264036,43.15977843734956,43.15932030993904,43.15914054842085,43.15862852442549,43.15808734882094,43.15778744711723,43.15743067609159,43.15714238926222,43.15693308894277,43.15661421877576,43.15619354399497,43.15568785204532,43.15525702076859,43.15488932162604,43.15451543990321,43.15420464774591,43.1539319323151,43.15379533367979,43.15367471132733,43.15336857837281,43.15278818115825,43.15250569712317,43.15211122725539,43.15174266921706,43.15132175380737,43.15121527258818,43.15099030469005,43.15077555094461,43.15056956595897,43.15035437757436,43.14993404327328,43.14932068746979,43.14885698184533,43.14827312191137,43.14812651081639,43.14779562476545,43.14752453479202,43.14723611342076,43.14687850541083,43.14614937797651,43.14558557492298,43.14525245886017,43.14478214942454,43.1441760790922,43.14345644258138,43.14281668910679,43.14236573887088,43.1419642626582,43.14153287654116,43.14116767720088,43.14055897152135,43.13961422164269,43.13906909679178,43.13884600927857,43.1385649879356,43.13824061684829,43.13795934782076,43.13760428537794,43.13725762696509,43.13660612311373,43.13557175293334,43.13463831017391,43.13391350162299,43.13297810260453,43.13233333801646,43.13190860047779,43.13161579504091,43.13125956352945,43.13055736904344,43.13016665491549,43.12958658224479,43.12901229510453,43.12862767484918,43.12854051335689,43.12835182802753,43.12818901221891,43.127936131613,43.12771803833753,43.1273836034166,43.12707976127346,43.12641359661682,43.12613091968293,43.12589236995604,43.12569405627364,43.125456676197,43.12489499037537,43.12462546381091,43.1242025382859,43.12394487782429,43.12356910321684,43.12332377248996,43.12317072834981,43.12312313409994,43.12317837088369,43.12333432215079,43.12359141432502,43.12380012048708,43.12390360386613,43.12385005271828,43.12359520811238,43.12331275288297,43.12298344780075,43.12248728111364,43.12215868500693,43.12171860793021,43.12129389844242,43.12084018954048,43.12030592290842,43.11970930359006,43.11923393753085,43.11855218504584,43.11812638015832,43.11779821784068,43.11736003666272,43.1168587240433,43.11641457631153,43.11614848683036,43.11585940348247,43.11548089158338,43.11528857222459,43.11509955881146,43.11491648614183,43.11483049762396,43.11481920328184,43.11484941912209,43.1149364320653,43.11499585747015,43.11493910173488,43.11480140124633,43.11465957386014,43.11453383039489,43.11441461420635,43.1143399087544,43.11431566394178,43.11422480039137,43.11397893877204,43.11374145583331,43.11330060316578,43.11312026605138,43.1128721988097,43.11259078975599,43.11230841352929,43.11217245888226,43.1119257793376,43.11175655023937,43.11158130102294,43.11137107280205,43.11129581304709,43.1112224215729,43.11110798910081,43.11106920374008,43.11104535787991,43.11097856611759,43.11078425635313,43.11053438239186,43.11010529663124,43.1097834464337,43.10938909622565,43.10923722024574,43.10909206875462,43.10895733315193,43.10859275397583,43.10556789447502,43.10512429940151,43.10483026889784,43.1044722685072,43.10409213515449,43.10353954078244,43.10314861492912,43.10254678186033,43.10230804366551,43.10201563726972,43.10174675480702,43.10048466750975,43.09924000296918,43.09864934908158,43.09842189544995,43.09823597038277,43.09770172250187,43.09720229389578,43.09674163624308,43.0965638005917,43.0961465704138,43.09554722126036,43.09526426756578,43.09504627438838,43.09483616266252,43.09453243935335,43.09426562634195,43.0938718418321,43.09344995924961,43.09256519558323,43.09094368209523,43.08973623220612,43.08901328043571,43.08836459215782,43.08751682151605,43.08711096574662,43.08685921263694,43.08654467759121,43.0861912891385,43.08589462159145,43.08569669507206,43.08547192290299,43.085369679412,43.08537649974884,43.08542188404271,43.08544459499038,43.08546276400174,43.08551416329292,43.08559352376923,43.08569492477135,43.08566970035911,43.08557368712119,43.0853948826929,43.08508919701165,43.0846973855949,43.08411117653197,43.08349443839287,43.08305313415381,43.08239418667063,43.08164969218908,43.08117563758839,43.08042152261402,43.07962656217618,43.07917437091572,43.07855295388169,43.07786448581815,43.07746159861681,43.07713479770342,43.0767981791078,43.07658105104632,43.07639710825239,43.07632066327334,43.07630073768216,43.07630502587772,43.07631995428547,43.07630556646465,43.07622724013557,43.0760626493782,43.07577592308022,43.07540651950147,43.07493689540144,43.07466295772274,43.07439677988797,43.0742920610885,43.0742147631863,43.07410072757413,43.07402309403343,43.07393983052017,43.07374049396269,43.07341863718885,43.07317642667341,43.07302085085646,43.07276688497926,43.07262436452006,43.0726366606382,43.07268369767869,43.072759918664,43.07299893809419,43.07315119992212,43.07322227936127,43.07323003474401,43.07319546997923,43.07311848471299,43.07293452490277,43.07270807837061,43.07244087277674,43.07233097605849,43.07232247234771,43.07234358535374,43.07249202860208,43.07273172136605,43.07312026365155,43.07353875009154,43.07370289047805,43.07373246057998,43.07370375092612,43.07368282745533,43.07363960792077,43.07359666555286,43.07358097696897,43.07340118920979,43.07325632494828,43.07314055169847,43.07296260271281,43.07256435914431,43.0722941948975,43.07199650315018,43.0715472780315,43.07128987158965,43.07110731102958,43.07091924969655,43.07058749135442,43.07040996558845,43.07019023567371,43.07016889268836,43.07015768762604,43.07011375994382,43.06999019507376,43.06991385611803,43.06981343190932,43.06973764614709,43.06950973881382,43.0690692640726,43.06847623601814,43.067899194406,43.06740638439399,43.06665701502494,43.06645724198627,43.06607708346594,43.0656855439434,43.06544663822879,43.06529550963135,43.06513769009975,43.06497805565346,43.06468498335672,43.06440703259485,43.06406936025267,43.06389040288342,43.06356228296948,43.06349269512523,43.06340089303445,43.06320595785795,43.06292055394,43.06277074086871,43.06269696112604,43.0626515857009,43.0625561139147,43.06260974797011,43.06272474740911,43.06286925931157,43.06302044091861,43.06333009046612,43.06374736805584,43.06396247754697,43.06435919989499,43.06448686424264,43.06468502403632,43.06479088621616,43.06495322543075,43.06503070140786,43.06510263229929,43.06520252507637,43.06523892285443,43.06522933021323,43.06522003578025,43.06520436805469,43.06509080163486,43.0640118283327,43.06352112416712,43.06299145713713,43.06266557998985,43.06230312852801,43.06187197508664,43.06142432458689,43.06058487764047,43.06000511998868,43.05923414489973,43.05847927229633,43.05818717067555,43.05771538227316,43.0574302470603,43.05711718750808,43.05607003905327,43.0556460856378,43.05511698893355,43.05330383920992,43.0517494209663,43.05097411723872,43.04818515202793,43.04684815008605,43.04631072552754,43.04602039976707,43.04575540189848,43.04554291694473,43.04516046194615,43.04456442287645,43.0438967323753,43.04351645336698,43.04318584869424,43.04285151525856,43.04256497163647,43.04239782397327,43.04198278392145,43.04157868890155,43.04108487421743,43.0407281840445,43.04037464322548,43.03990788432117,43.03968246775557,43.03957377389187,43.03941627245876,43.03937514790879,43.03923304336297,43.03910222560339,43.03894852613883,43.03878653459544,43.03858260874529,43.03822149181901,43.0378576022099,43.03752485662336,43.03736961475027,43.03709770906597,43.03691603592147,43.03618863168104,43.03570584003992,43.03551402686644,43.03530405307906,43.03488328682956,43.03434882928989,43.03398364931358,43.03379941322694,43.03342753550987,43.03306801188129,43.03283096971435,43.03259319906318,43.03234542719353,43.03221050934534,43.03194999798458,43.03164503250147,43.03138515802316,43.0310640755262,43.03052968422439,43.03008000562004,43.02958567375711,43.02926502467934,43.0288584272045,43.02849164331479,43.02815699705419,43.02792195214589,43.02761570864684,43.02718640077092,43.02680290159821,43.02648653129032,43.02630201028621,43.02616613184618,43.02614743938003,43.02612813962394,43.02623623288186,43.02628538250617,43.02626666781072,43.02614919968796,43.02595660632065,43.02575706593147,43.02550706628472,43.02528614720726,43.02500263193929,43.02489160825252,43.02485051941083,43.02487257949284,43.02494316609611,43.02503815023385,43.02507477805993,43.0251208277686,43.02517367371809,43.02518146308402,43.02513194244985,43.02497418962964,43.02476246676004,43.02454137847593,43.02441611365012,43.02425788672164,43.02398494511512,43.02375797100894,43.02348522003661,43.02312440556817,43.02264658255415,43.0221254155742,43.02169765833155,43.02108349562641,43.02067618744191,43.01977688436062,43.0192867988195,43.01834864688644,43.01736833832111,43.01678496879435,43.01634287718292,43.01587775677253,43.01531501295331,43.01465931169306,43.0141747932945,43.01373658210048,43.01312162936595,43.01271369025248,43.01229979879587,43.01199439119166,43.01162670184743,43.01127968899302,43.01101021544254,43.01073609058219,43.01047437965754,43.01035740938239,43.01012388452962,43.00969783196477,43.00922515544747,43.00896317391616,43.00880517963203,43.00830034286794,43.00778422340767,43.00756822228293,43.007299585197,43.00695107561224,43.00670505362955,43.00650491109451,43.00611786011704,43.00580790059568,43.00490357672565,43.00458493608422,43.00422998059437,43.00404590114154,43.00390282663702,43.00387588020077,43.00391896820103,43.00402000774006,43.00415890612855,43.00418780927883,43.00426536927391,43.00429710677938,43.00429533008302,43.00426551422706,43.00420185241092,43.0041748382508,43.00401898060683,43.00381132582763,43.0035025519085,43.00330901367401,43.00323871807313,43.00310822784727,43.00298076409302,43.00288412598277,43.00277835473745,43.00275125902708,43.00252258277197,43.0021738130111,43.00194723700885,43.00184836939111,43.00173652528633,43.00154295522982,43.00143551886916,43.00117400102584,43.00094351828794,43.00061528954606,43.00036855431818,43.0001505288563,42.99994833928911,42.99973203144619,42.99928966485237,42.99904717931737,42.99880611680584,42.99869957822355,42.99825664644206,42.99806727452657,42.99755754751867,42.99713362447105,42.99669770042338,42.99657659351409,42.99629027911215,42.99616280084974,42.99604194816539,42.99602096073392,42.99592878220714,42.99581227985303,42.9956660601032,42.9955197301712,42.99512674873835,42.99460299294255,42.9942595622199,42.99413561701427,42.9940549551486,42.99387685224885,42.99363829067543,42.99331571139069,42.99300746218029,42.99279581929097,42.99265260979242,42.99260638155125,42.99252149005817,42.99233851038163,42.99227819101156,42.99221263684466,42.99219872891419,42.99217480520922,42.99217228274897,42.99222008520852,42.99228415631748,42.99239163386925,42.99250654015724,42.99264992691609,42.99290129087481,42.99306114553342,42.99320524156891,42.99336412179959,42.99364003423364,42.99389313921566,42.99394331155666,42.9939713732059,42.9940132001122,42.99413744982076,42.99421576642862,42.99426908237472,42.99429479331731,42.99430034340408,42.99426062378853,42.99414244133443,42.99405045698708,42.99394232596129,42.99366224189392,42.99352161283804,42.99346028032338,42.993381413945,42.99332717428379,42.99329784308402,42.99335496411175,42.993466118905,42.99355703843029,42.99372715967743,42.99383698160894,42.994050699997,42.99441418420979,42.99461788602104,42.99483627915614,42.99490140226744,42.9950003861267,42.99509763203367,42.99522645330052,42.9954535121367,42.99575618464339,42.99623769621427,42.99646763037642,42.99690936501844,42.99723752423063,42.99762308228049,42.99786997064475,42.99796228836052,42.99798339957107,42.99797628068447,42.99803232504019,42.99807032248523,42.99812151277184,42.998195654574,42.99861084656514,42.99904193683555,42.99961371450659,42.99989786202838,43.00004493604803,43.0002050421547,43.00034471615934,43.00034030267764,43.00031027679515,43.00019232977959,43.0000424528585,42.99982705770286,42.99973983049789,42.9996387787073,42.999631501947,42.99965389917064,42.99969065185626,42.99976624908143,42.9998327277433,43.00007005691526,43.00016053789876,43.00021004351402,43.00022906235601,43.00021988444813,43.00021945066133,43.00018165929182,43.00005030981572,43.00012153924104,43.00018401087491,43.0001208161807,42.99995862096141,42.99970878155225,42.99953217860512,42.99951364996097,42.9995798058868,42.99961836587728,42.99969598965931,42.99980305156333,42.99984150698599,42.9998278093177,42.99982986035493,42.99978927946563,42.99979317971228,42.99979382334708,42.99970302423739,42.99964141735467,42.99951602191851,42.9993705520827,42.99914489193551,42.99894746057294,42.99873654529252,42.99825938736838,42.99792246484655,42.99730903102145,42.99683089534748,42.99542691641648,42.99491841709152,42.994294375082,42.99418792940372,42.99403325367924,42.99390319865304,42.99374118595532,42.99343277756378,42.99319956391125,42.99278151116653,42.99203737480541,42.99154190701019,42.99112183194728,42.99063367778167,42.99016608926993,42.98989077254007,42.98965260494571,42.9893924246215,42.98907592793631,42.98872603331218,42.98817488563091,42.98639039355358,42.98358470108049,42.98101920092586,42.97982245191984,42.97861231227959,42.97771243127957,42.97689820302433,42.97605739131876,42.9752046308698,42.97303925923628,42.97123620855125,42.96884463486021,42.96698402115755,42.96586346655123,42.96427869201381,42.96265026180387,42.96124383873894,42.96000544421689,42.95890638164365,42.95749793836479,42.95686347682599,42.95611598774808,42.95505653579165,42.95357199002178,42.94976658290416,42.94771492010471,42.94583321684029,42.9440812797471,42.94296641934768,42.94151480610704,42.94031861765918,42.93967191282151,42.93826847613511,42.93602475092431,42.93192711919806,42.92622261238742,42.9246332854875,42.92326741267042,42.92202690377223,42.92149167733522,42.92025039576727,42.91945927585964,42.91854126105823,42.91755079720279,42.91607906683614,42.9151732026998,42.91402770507492,42.91308145134371,42.91233329151663,42.91137508000872,42.91027572261915,42.90934680123279,42.9084472646424,42.90757690739022,42.90710025262759,42.90609200558154,42.90500279077744,42.90378840244325,42.90245092819693,42.9013091334851,42.8994594037534,42.89881971842495,42.8985153556667,42.89769857144038,42.89654125388566,42.89574396704727,42.89512753853771,42.89479831064016,42.89441741071309,42.894302188895,42.89413388290284,42.89392146897611,42.89368812941078,42.89329000517041,42.89226937052955,42.89189878422656,42.89160736739899,42.89097329997707,42.89047830641843,42.89024324619129,42.88961892397622,42.88885883238657,42.88820987378186,42.88736589014459,42.88700826229507,42.88668949846716,42.88630113455824,42.8858282581138,42.88533974403709,42.88453106738024,42.88377856210668,42.88302632085724,42.88267958235669,42.88255637621698,42.88243518470152,42.88232962839493,42.88209780942098,42.88190498479666,42.88142056379079,42.88081200066556,42.88061851620039,42.88017528060156,42.87945276038628,42.87874402790025,42.87838572673435,42.87780478828157,42.8773482624896,42.87672354221302,42.87625019950998,42.87548096285708,42.87507513540264,42.87446110810756,42.87387620055156,42.87244115086484,42.87108749971903,42.87013804679409,42.86904778869414,42.86805177324997,42.86705376176486,42.86636238949445,42.86548748489771,42.86428546363423,42.86286959963884,42.86108514156631,42.85976874584427,42.85884873081105,42.85807294293237,42.85698843912703,42.85573692747487,42.85464251610166,42.85401311800193,42.85310575666807,42.85235216491147,42.85165329677844,42.85116377184327,42.85019425383964,42.84949061826709,42.84896877838384,42.84864204316884,42.8481131764721,42.84765448048295,42.84719703483321,42.84677034578406,42.84609068976924,42.84565292231191,42.84403152811435,42.8412129853448,42.84017169151918,42.83929967145433,42.83875142685308,42.83835865675976,42.83785496363988,42.83676786380381,42.83582097015578,42.83550026059082,42.83519181476708,42.83467080357504,42.83400792623923,42.83335839428852,42.83193127119058,42.82930094991125,42.82863644448443,42.8278469517204,42.8265363402674,42.82587291774389,42.82402244440419,42.8224430269542,42.82048428434431,42.81827129397617,42.81732788735346,42.81552525877814,42.81366679918952,42.81241481228368,42.81147072177864,42.81073695394297,42.80980675162315,42.80927220659255,42.80827400174221,42.80747119722611,42.80663984599383,42.80451527438746,42.80272742874212,42.80210851165422,42.8008724318143,42.79970655884055,42.7988058850158,42.79786408809918,42.79637281618754,42.7949537344735,42.79400020489695,42.79282150606782,42.79216059988951,42.79055699212969,42.78990960944528,42.78915178295791,42.78811476165404,42.78696311778445,42.78654143792104,42.78575412250284,42.78503536264363,42.78417524067608,42.78355855378637,42.78287258261481,42.78217017890734,42.78178997978986,42.78071765427772,42.78014004087856,42.779197151464,42.77809931778262,42.77670396414941,42.77484220882595,42.7744347659624,42.77370515489581,42.77333970107457,42.77217138609097,42.77018702337492,42.76920263835034,42.76881158844682,42.76617905656959,42.76507577032191,42.76435090042877,42.76358651436504,42.76299090007731,42.76272689766596,42.76247643014474,42.76205685694001,42.76150910339376,42.76110067999335,42.75973306198392,42.75929396491409,42.75855736956076,42.7580873034893,42.75757289867645,42.75734027579942,42.75729345666912,42.75728439754725,42.75724882642238,42.75713329082203,42.75692041620515,42.75658149933014,42.75603250902371,42.75514446067027,42.75470709930605,42.75391553493404,42.75340786747774,42.75264938629576,42.7516943703493,42.75117494221768,42.75090988467177,42.7506759810774,42.75053909966045,42.75050363888027,42.75046821610483,42.75054472494678,42.75056425350478,42.75049854886576,42.75025108885293,42.75000045413789,42.74972356237319,42.74925358507632,42.74869843083129,42.74801369072829,42.74752027185742,42.74710132510248,42.74656349192326,42.74555038229175,42.74503272219801,42.74451330550974,42.74338780617128,42.74187167154488,42.74078950245315,42.73996866767379,42.73929989086216,42.73878398808459,42.73826916527845,42.73794850816427,42.73737245953828,42.73709985512532,42.73684875918045,42.73686140676999,42.73693352331564,42.73707103686971,42.73722792666374,42.73738279387166,42.73773398865947,42.73810510231127,42.73829300887729,42.73851702819486,42.73858963973716,42.73853841575183,42.73844730566731,42.73836797896271,42.73820809800697,42.73797803310104,42.73774636374849,42.73732116946767,42.73680970621541,42.73616944017881,42.73569850757318,42.73546364008651,42.73483906107295,42.73411925116307,42.73317090039451,42.7327179190474,42.73200444017295,42.73139796305351,42.73046611132688,42.72977470180636,42.72889014520539,42.72822052530548,42.72774613801678,42.72686383599337,42.72585231366987,42.72531649700544,42.72487699022633,42.72430152287756,42.72308857925623,42.72181178836141,42.7205773486597,42.71962202727478,42.71911822687159,42.71916792419727,42.71918279101065,42.71976231289078,42.72001098887205,42.72012902448035,42.72011267726627,42.71996787813548,42.71941751976144,42.71822817080229,42.71717067011108,42.7158401183558,42.71500942387362,42.71373088799718,42.71300462926914,42.7119364430956,42.71086670855714,42.70958183673572,42.70846771576083,42.70776995686263,42.70663161856893,42.70523394517813,42.70342538484649,42.70204896545133,42.69998619523412,42.6988277780693,42.69830215728265,42.69729711076656,42.69635678781261,42.69574091817298,42.69544536102767,42.69510710369683,42.69498796686946,42.69474329181749,42.69449599513216,42.69422293932559,42.69378100633632,42.69299725873335,42.69195744724459,42.6910862093745,42.69001098551318,42.6895627822541,42.68913638509515,42.68833587052703,42.68737481699523,42.68637429979933,42.68607967133613,42.68538215223391,42.68475493281889,42.68389274172535,42.68360885408027,42.68343273421631,42.68342185508974,42.68361108783084,42.6837974191387,42.68439664804809,42.68509089072364,42.68536246128647,42.68545552134092,42.68548319664846,42.68542731361245,42.68536962598576,42.68518409910101,42.68446671932201,42.68335428132168,42.68290905935719,42.68222717371309,42.6814175010009,42.68069261759811,42.6796880465774,42.6784710054614,42.6774904979164,42.67707523297079,42.676395055512,42.67544083637527,42.67474375364316,42.67398268836249,42.67358423681731,42.67308007543346,42.67279730339849,42.6722095103195,42.67146000473293,42.67052113630514,42.6699472019124,42.66953442134364,42.66893753548997,42.66860557823838,42.66827041162848,42.66775506145918,42.66657294476978,42.66558190769975,42.66488806872393,42.66439743732435,42.66410525545341,42.663434948913,42.66291609930453,42.66264957553776,42.66254761665584,42.66137338801283,42.66126760716744,42.66070216975996,42.66041829819348,42.66004286116411,42.65935800533281,42.65866980144501,42.65819328612267,42.65778897212957,42.65741886268609,42.65705012537504,42.65663345507364,42.65630279433981,42.65600107840385,42.65573357172102,42.65518700959422,42.6549953921612,42.65407704731323,42.65366422048669,42.65336629602316,42.65301820061651,42.65281618040069,42.65259052271478,42.6523627935516,42.65200814400437,42.65179031181308,42.65153887961801,42.65101566886678,42.65059805214046,42.65013602043749,42.64958630056764,42.64914377402613,42.64897363208296,42.64834746364986,42.64795052962381,42.64761686772923,42.64724325758543,42.64718127589713,42.64705621340308,42.6465058688702,42.64616916580295,42.64571718114907,42.64523726327636,42.64484040069348,42.64454999737703,42.64434302661765,42.64398793562977,42.64367216072321,42.64328286455581,42.64271632066255,42.64204298387119,42.64151518791949,42.64094456806636,42.64060512312976,42.64011651420989,42.63960498287103,42.63910450135052,42.63835921048471,42.63761174889725,42.63688442507866,42.63619956463955,42.6351711300363,42.63418351290701,42.63334561690472,42.63231387917386,42.63187307753123,42.63127012619916,42.63014989985758,42.62935170735447,42.62829468058302,42.62753824819726,42.62676029288802,42.62563538147305,42.62481189638971,42.62431430866818,42.62368734652362,42.6230498169384,42.62235874798445,42.62149590241719,42.62065508487125,42.61934097733711,42.61772592395381,42.61600247476358,42.6150335404004,42.61418177005284,42.61284452420133,42.61202374311844,42.6106845445219,42.60975591103393,42.60830797938058,42.60690323721015,42.6054991661204,42.60473231513797,42.60339434199461,42.60192648959354,42.60078214762223,42.59970249246035,42.5989026533495,42.59816768928183,42.5967606091998,42.59545048953564,42.59447639471744,42.59369788022359,42.59307125095674,42.59166701540251,42.59108495385164,42.58985603117186,42.58739903125826,42.58525460858217,42.58292794678987,42.58131248750963,42.57976201758166,42.57918272163116,42.57883921349588,42.57804540088829,42.57712363020334,42.57662057438888,42.57597928927636,42.57529465354789,42.57478167338654,42.5737104547832,42.57319642280042,42.57280970112944,42.57225078987338,42.57166986749561,42.57098022493962,42.56988180966029,42.56917032297657,42.56840404465342,42.56825301567462,42.56773521830448,42.56667764530681,42.56564036229585,42.56408375937291,42.56231094582298,42.56103442983357,42.55997412736199,42.55898994113097,42.55775743911656,42.55628719535666,42.55512003214911,42.55460155689166,42.55373833947839,42.55313399598888,42.55259519263972,42.5520560493167,42.55130270811706,42.55085124369748,42.5500773919985,42.54957366610175,42.54882177558508,42.54845749346917,42.54783648388792,42.54730113986386,42.54670174878003,42.54607888537883,42.54562737724002,42.5450036767412,42.54452967235794,42.54379709622149,42.54315086460829,42.54267602872105,42.54202864506316,42.54146647534731,42.54077492891277,42.53946676306666,42.53726125438903,42.53592083306035,42.53496904545679,42.53362878530312,42.53194226620754,42.53143450795051,42.53033232486042,42.52927363607915,42.52830131883691,42.5267251034272,42.52248269350079,42.52086295597148,42.51945927550049,42.51835755929595,42.51796777751706,42.517492129026,42.51666920653048,42.51534833971832,42.51443857238353,42.51361551038225,42.51285582747602,42.51211717701356,42.51157373980147,42.51072541834738,42.50911593116289,42.50800541197738,42.50800358389274,42.50797400006751,42.50799659222628,42.50800832642799,42.50801465311127,42.50802211186505,42.50803957951766,42.50804731520888,42.50805467889609,42.50807249889465,42.50806960701946,42.50806664642591,42.50806333445131,42.50805981557473,42.5080361123576,42.50801220315054,42.50798808413319,42.50796375754336,42.50791051875173,42.50785706860928,42.50780326901608,42.50774953525751,42.50775144153079,42.50775299256226,42.50775446873357,42.50775559397742,42.50772495658684,42.50769385838239,42.50766255827114,42.5076310519842,42.50761274732182,42.50759452487441,42.50757579990876,42.50757019672663,42.50755687665237,42.50755641618142,42.50755549519559,42.50755390038992,42.50755210856589,42.50754997289151,42.50754361990867,42.50750069299022,42.50745121130657,42.50740152171539,42.50735175693779,42.5073339887029,42.50732696899743,42.50732195461728,42.50729194573591,42.50726172966973,42.50723883572802,42.50723130189637,42.50721495408189,42.50719825372145,42.50718133412417,42.50717121640145,42.50716420301351,42.52169629432906,42.53633719981306,42.56536389777436,42.57984077373486,42.59484438024872,42.60935825775189,42.62388355440482,42.63836254014824,42.65286581462377,42.66737996790902,42.68186266740086,42.69644345069093,42.71100290141671,42.72558980895188,42.74010491129666,42.75475182727163,42.76931869168605,42.79837377343329,42.81303121419595,42.82761586578194,42.84208110525407,42.8562860867326,42.8708539598755,42.88549814800526,42.90009081775904,42.91463370506475,42.92924746264596,42.94423047453341,42.95872407749516,42.97333349973654,42.9879108266366,43.00246108224344,43.01701962881606,43.03157236844184,43.04610880517364,43.06055737999174,43.07524223737529,43.08960287663988,43.1039249611276,43.11815372012878,43.14726000595375,43.16158009806882,43.20093552144998,43.20083804572556,43.20072846654602,43.20062420028616,43.2004818980616,43.20033820681346,43.20026557694916,43.20010084208143,43.20003432652319,43.19990872764895,43.19975043287373,43.19963554422466,43.19959011954594,43.19959793907557,43.19965378384193,43.19981617972781,43.19989318621091,43.20230702636779,43.2022705208563,43.20210658107298,43.20168055724938,43.20126544622906,43.20091436091038,43.20080404606567,43.20081399163085,43.20083655901183,43.20084795267608,43.20087120969396,43.20100125607661,43.20117491706145,43.20147633431011,43.2017088474183,43.20187126873797,43.20198616538969,43.20211047070968,43.20227661038727,43.20245123652098,43.2026281230936,43.20271589796804,43.20282939861696,43.20291695334343,43.2030391313708,43.2031208371871,43.20319138485734,43.20325752678495,43.20335570330406,43.20345326352565,43.20362144435067,43.2038106041024,43.20404249299334,43.20428537233155,43.20463473162324,43.20503151660672,43.20523761533713,43.20541067443413,43.20555177607186,43.20566645837949,43.20585479273123,43.20601670282279,43.20608800728751,43.20613261423619,43.2061399174161,43.20603977042908,43.20595621751133,43.20585618443183,43.20565761025115,43.20559482076124,43.20564942686178,43.20580038094145,43.20634274613988,43.2066871256702,43.20680698852189,43.20704400570169,43.20736597120678,43.20777859599704,43.20798415610216,43.20831550162804,43.20855245132552,43.20877293193272,43.20890975576732,43.20887516230705,43.20877443841557,43.20862054191698,43.20855671110653,43.20854112022793,43.20853154246431,43.20848981600115,43.2083631723682,43.20819402045058,43.20802502932695,43.20785589908331,43.2077136255066,43.20762420812209,43.2074000876033,43.20717721653846,43.20704013115246,43.20686532432124,43.20672155828414,43.20673423324538,43.20686380549631,43.20714746069627,43.20734156812081,43.20744022128996,43.20748995439812,43.20748027534064,43.20749515963275,43.20739786468815,43.20740362297338,43.20783594197137,43.20831152889343,43.20845469462553,43.20877091407695,43.20894646588905,43.20902856542043,43.20926609935222,43.20972242379676,43.21014984026526,43.21024829924225,43.21058255977204,43.21094264724244,43.21119103701821,43.21132419781114,43.2115003024822]}]],[[{"lng":[-89.36308621450327,-89.36311653669287,-89.38297853708403,-89.40273797231046,-89.4224820767834,-89.44236201675233,-89.46229379600105,-89.4815948113163,-89.50146896752312,-89.52150840989843,-89.54141587815563,-89.56117963692689,-89.58116645437349,-89.60073366238774,-89.62072674206142,-89.64046976132153,-89.66038465174843,-89.67025064193517,-89.68011392860041,-89.69988519140722,-89.72043855844444,-89.71952518784315,-89.7189196180838,-89.71815375010547,-89.71767932422195,-89.71727026555688,-89.7168554113007,-89.71655958626602,-89.71602103899691,-89.71575480353602,-89.71535279783097,-89.71505121847586,-89.71457195672269,-89.71428827982049,-89.71403428046654,-89.7137216994124,-89.71358083941644,-89.7134409629987,-89.71344946010227,-89.71349340729394,-89.71354180451594,-89.71368803091148,-89.71386704693307,-89.71407881405969,-89.71428965358511,-89.71478285425671,-89.71507788825123,-89.71550220179704,-89.71706424363214,-89.71804457135144,-89.71875110105043,-89.71925458220424,-89.71965628447485,-89.72056443929884,-89.72094200135088,-89.72141547015919,-89.72194888779124,-89.72238051161878,-89.72271691945059,-89.72312268480817,-89.72370833484317,-89.72501882123544,-89.72600355245788,-89.72666672865898,-89.72734992412995,-89.72773961597385,-89.72938967641139,-89.73150981065807,-89.73259508502971,-89.73390965701483,-89.73469806130464,-89.73527731973644,-89.73585643902777,-89.73661453289671,-89.73781419296404,-89.73853037676166,-89.73928192816176,-89.74005141055832,-89.74097589262527,-89.74188837381898,-89.74271737175862,-89.74342714945401,-89.74417325062777,-89.74490787589554,-89.74604965248184,-89.74655805375895,-89.74707305242714,-89.74733715694877,-89.74767191519568,-89.74784702720223,-89.74821914088086,-89.74855454342283,-89.74933836718928,-89.75013353647286,-89.75092771410108,-89.75191789995576,-89.75296673841979,-89.75386614033661,-89.75468194000443,-89.75533101945513,-89.75600639586472,-89.75668444673985,-89.757321292851,-89.75792243658317,-89.75912221799241,-89.75998582976761,-89.76015153905198,-89.76039108816327,-89.76060408378525,-89.76085700937487,-89.76104398080435,-89.76109806409255,-89.76120165117578,-89.76185185484246,-89.76248401182454,-89.76273467643635,-89.76285457738653,-89.76306764477337,-89.76320040038533,-89.76343194378593,-89.76392855284139,-89.76431758370614,-89.76445113555712,-89.76474475969043,-89.7655874668913,-89.76592903370548,-89.76605347920699,-89.76623551682904,-89.76677563984202,-89.76734264760267,-89.76801729170866,-89.76893118807784,-89.76983839829541,-89.77064443583558,-89.77131090167987,-89.77183646918355,-89.77261276035843,-89.77319161673795,-89.77397570042227,-89.7775221528713,-89.78429922130303,-89.78532155967065,-89.78605438739585,-89.78674544880911,-89.78790715303066,-89.78865783330839,-89.78985527540365,-89.79104083777936,-89.79206520745845,-89.79322055348166,-89.79436994783049,-89.79604424307988,-89.7971763366341,-89.7989936198766,-89.80010771088585,-89.8018985814205,-89.80306658416772,-89.80396665709733,-89.80481631963008,-89.80589551680363,-89.80701660973585,-89.8076519817147,-89.80857110722648,-89.80925470290939,-89.81009688903794,-89.81089486406348,-89.81148084923454,-89.81213615698091,-89.81238499385135,-89.81263110152071,-89.81295529316779,-89.81325530339062,-89.81341765005598,-89.8137417585627,-89.81404174686546,-89.81430569377416,-89.81468919381743,-89.81513824172396,-89.81564075209025,-89.8159995949994,-89.81656130409961,-89.81744281775006,-89.81783708127067,-89.81861608326226,-89.81942183124185,-89.81997096560234,-89.82060971491309,-89.82114128315594,-89.82157739300467,-89.822085306905,-89.82282633372009,-89.82320278753807,-89.82379430580987,-89.82436800480383,-89.82483700207982,-89.82524314834855,-89.82592980429659,-89.82666420408317,-89.82711196502099,-89.82788192251654,-89.82866993757666,-89.82941278484975,-89.82989609214391,-89.83054651498661,-89.83115250859873,-89.83184525136413,-89.83243010319009,-89.83282120425906,-89.8344811402963,-89.83576238312574,-89.83669964572989,-89.8376337931161,-89.83817824394943,-89.83817774647476,-89.83816251795569,-89.83803973788552,-89.83799832068006,-89.8380927297094,-89.83810455945378,-89.83809163019218,-89.83818775481305,-89.83823153651944,-89.83814735811801,-89.83819091088803,-89.83824870615616,-89.83847759289257,-89.8384335204001,-89.83844365571326,-89.83852826643759,-89.83848587919265,-89.83834784150501,-89.83819382946238,-89.83807463819963,-89.83801962133883,-89.83804341311203,-89.81866945692421,-89.79890628704922,-89.77915062815362,-89.75919033038993,-89.74939806062871,-89.73960635237539,-89.71998591593058,-89.70175871694434,-89.68167737403266,-89.64211508724455,-89.62508825799024,-89.62191194149194,-89.60228985994488,-89.58520584195124,-89.56493716000482,-89.54514300795077,-89.52514645266957,-89.50552280735447,-89.50381785624491,-89.49479319726817,-89.48576813505673,-89.46714648622253,-89.44759965443573,-89.40850441127328,-89.38881608876333,-89.36906898103508,-89.36910923971921,-89.34986537283693,-89.3290650263725,-89.30922382169533,-89.28950470039031,-89.26997043370534,-89.25018532384676,-89.21111977095035,-89.19130037059284,-89.17151788593189,-89.15173496730576,-89.13200353422839,-89.1123006543061,-89.09258471645968,-89.07283932766059,-89.05311050921058,-89.03336505564414,-89.01355183931872,-89.01334625218932,-89.01323491628472,-89.01330685344853,-89.01330661937311,-89.01316469017233,-89.01299273577361,-89.0129694431199,-89.01287196581205,-89.01267695369161,-89.01274366244073,-89.01243742016707,-89.01194000362271,-89.01152455711167,-89.01138990314719,-89.01142288160962,-89.01165354230407,-89.01218937276809,-89.01128221380699,-89.01075551205756,-89.01011441175609,-89.00991061365372,-89.00919610236676,-89.00893093278214,-89.00884702467769,-89.00888992908159,-89.00869292301154,-89.00880642859047,-89.00900300097685,-89.00916432123334,-89.02911865181493,-89.04911701109965,-89.06902532997978,-89.08892565293574,-89.10876453103771,-89.12720240601642,-89.14697640705002,-89.16693080530175,-89.18684700293821,-89.2068235602478,-89.22672492046098,-89.24571695243746,-89.26530137888406,-89.30492664172796,-89.32473156437919,-89.3445135012141,-89.36308621450327],"lat":[43.28132041302723,43.29406883663899,43.29405755435983,43.29405523038419,43.29412623165945,43.2941773212738,43.29412052433079,43.29412099180308,43.29384887749068,43.29377987463862,43.29353039950939,43.29331489720363,43.29324593115281,43.29312670785533,43.29314989886444,43.29311956884618,43.29307452439483,43.29300794519546,43.29315971024337,43.29302128235371,43.29297749232346,43.29214666661683,43.29155271808349,43.29080590442587,43.29022969997652,43.28970593035322,43.28914729854833,43.28864122938382,43.28775556481577,43.28730184523031,43.28655155773929,43.28600626442132,43.28520351049835,43.28465825971465,43.28414357970038,43.28340657918859,43.2829270293435,43.28223838286871,43.28169821640547,43.28122784602936,43.28044382798849,43.27977767563502,43.2791116080806,43.27845433408866,43.27799308857691,43.27707513521406,43.27645727249546,43.27560448734597,43.27303812807848,43.27183384426615,43.27117341800476,43.27058655052375,43.27009091446264,43.26900405689432,43.26856934168777,43.2680172400845,43.2673912250332,43.2668608011202,43.26651039146463,43.26620479434338,43.2658838393312,43.26543829635484,43.26518363694483,43.26484978336308,43.26403678207905,43.2635367302348,43.26119850195235,43.25881465541046,43.25792157757937,43.25727376330126,43.25689659100676,43.25664090841695,43.25641571699787,43.25615172771715,43.2557667673132,43.25554187881113,43.25540854915165,43.25526218138611,43.25510745167584,43.25497011098557,43.2548412873737,43.25471654737444,43.25445683796566,43.25408818872332,43.25326738187552,43.25283287182396,43.25224155270066,43.25178907390573,43.25082270558441,43.25026983182754,43.24963462747785,43.24923022549633,43.24846958062145,43.24784400996564,43.24745802684926,43.24722928858202,43.24723155830004,43.24734676343694,43.24750534276576,43.24762871322996,43.24788282250317,43.24821534785833,43.24842145052411,43.24861440624482,43.24888267526466,43.24901517988287,43.24901356297315,43.24894604625764,43.24886874965323,43.24873819465033,43.24855871624224,43.24832561251586,43.24823358047105,43.24807375075919,43.2479574458635,43.24793060641802,43.24786283326888,43.2477661009795,43.24763220375715,43.24708813651775,43.24657511298516,43.24614028251833,43.24550453068304,43.24508256883318,43.24443955595783,43.24394363355452,43.2433470681952,43.24322003339159,43.2430523079104,43.24281386149897,43.24247543918214,43.24189789110267,43.24150764874657,43.24108234305315,43.24053042189443,43.2402090987696,43.23976194100163,43.23952784779244,43.23938564030413,43.23908764874492,43.23847330850157,43.23834454432594,43.23836334020807,43.2383994814298,43.23845827382144,43.23848580006508,43.23854899566174,43.2386034461236,43.23874907200504,43.23892977582457,43.23911045605783,43.23913087877838,43.23914160790335,43.23916659420234,43.23921646690935,43.23911938579036,43.23908219455546,43.23897918774933,43.23880203333776,43.23858169441004,43.23830042810177,43.23804882786303,43.23756245924478,43.23712796223463,43.23646719897452,43.23564516840415,43.23497089762852,43.23403100290665,43.23351735874223,43.23292094279004,43.23211554340014,43.23142337274428,43.23093572491678,43.23015210776681,43.22945993294653,43.22886354195658,43.22813229102943,43.22739243799491,43.2267005875406,43.2262350321648,43.22566089297639,43.22471697422112,43.22435166604117,43.22381271213781,43.22329122120486,43.22292179598188,43.22246102658744,43.22198265630869,43.22155205543096,43.22100829996309,43.22018609528324,43.21977717937869,43.21915077352174,43.21850255832603,43.21801100470831,43.21762390867604,43.21704120426791,43.21641935391118,43.21605410033534,43.21548893055869,43.21484972470436,43.2143847012935,43.21407611961199,43.21364144660008,43.21311522085574,43.21244535933992,43.21201929125236,43.21165828720028,43.20955656864222,43.20816001570284,43.20732057462261,43.20652468762857,43.20604780124761,43.20557692751107,43.1911237297947,43.17663793192492,43.16207454524373,43.14759770418096,43.13308862866323,43.11820437488557,43.10390357808071,43.08933928230738,43.07467064743285,43.06003479911405,43.03195553242645,43.00278268882019,42.98818130448327,42.97366660905374,42.95923471358009,42.94471972631703,42.93002826376703,42.91546309332157,42.90107184940074,42.87201104914899,42.85739194784052,42.85732303656139,42.85733275570049,42.8572730909831,42.85742064454454,42.85746735442662,42.85754050566459,42.85756995593366,42.85756520286226,42.85766230102172,42.85758413066183,42.85744498395681,42.85744284758245,42.85725049040472,42.85711112419614,42.85686640241168,42.85671692845931,42.85663846792163,42.85652266720551,42.85649334386546,42.8563910164326,42.85633750719141,42.85633390126363,42.85619223740235,42.85634436267594,42.85621416701706,42.85653163837185,42.84513516509661,42.84534670656257,42.84568591142081,42.84573136734264,42.84580030756275,42.84582228462106,42.84596718991532,42.84628400084866,42.84638677281468,42.8464697754384,42.84663715696359,42.84705365666722,42.84716754890255,42.84733282572882,42.84746632550096,42.84751157630802,42.84764122122791,42.84745845093136,42.86224101738205,42.87498964306116,42.89073426712228,42.90543364475108,42.93533225394695,42.94992747130295,42.96441812433536,42.97894186740231,42.99356449126417,43.00801964885319,43.02348655488703,43.03808689073226,43.05267748783012,43.06711851298672,43.08172696915402,43.09621750860835,43.11074581271208,43.12519240938813,43.13970190313033,43.15413580108552,43.16870175590542,43.18321344664254,43.19774165145298,43.21227842361091,43.22681935200607,43.24134128502492,43.25584478259473,43.27040864016759,43.28486776619408,43.28404769013458,43.28328499125417,43.28304004369279,43.28275301213944,43.2825993608289,43.28258607546783,43.28276577858692,43.28266170852697,43.28258708668412,43.28254740214091,43.28242211801339,43.28206959042645,43.28162834808964,43.28090522505082,43.28093129163459,43.28116286369145,43.28132041302723]}]],[[{"lng":[-91.20298516787153,-91.20520149878764,-91.20492230133894,-91.20364580738767,-91.20251785722664,-91.20181370845116,-91.20124560785425,-91.20095613573459,-91.20070972183488,-91.20053817231059,-91.20046218924681,-91.20046209726461,-91.20032573677537,-91.20002269170732,-91.19951328476294,-91.1989253342178,-91.19855603200287,-91.19806505112459,-91.19783358924985,-91.19772175846533,-91.19765515083321,-91.19766992630022,-91.19776690368874,-91.19794047513906,-91.19826169053506,-91.19854986482817,-91.19885167574304,-91.19907351499103,-91.19960834473086,-91.20036758632826,-91.20161748578059,-91.20270124548408,-91.20393291080471,-91.20448768603299,-91.20491246880468,-91.20516440968153,-91.20561573544398,-91.20587659371418,-91.20650013031428,-91.20722118620874,-91.20814563399726,-91.21126212470689,-91.2125800276288,-91.21339709629255,-91.21415669335045,-91.21466653505004,-91.21496472918599,-91.2151089524945,-91.21500616246875,-91.21487827911015,-91.21454140872139,-91.21306967198294,-91.21146672861352,-91.21068847852101,-91.20926393688066,-91.20825046010187,-91.20776943340327,-91.20684848328006,-91.20589880189226,-91.20493127548143,-91.20396990757679,-91.20333506364319,-91.20193381205267,-91.20148731969462,-91.19608925868538,-91.18820621240562,-91.18689764143656,-91.18614175284526,-91.1850750562194,-91.18420134465511,-91.18243416056814,-91.18113226596365,-91.18019900696042,-91.17947843451604,-91.17902008784559,-91.17663868058972,-91.17406371809945,-91.17138437508424,-91.16969087858163,-91.16751537702406,-91.16508673907525,-91.16305492163994,-91.16231486225476,-91.15822855361765,-91.15473686830849,-91.15347287915358,-91.15118069828932,-91.14873521206013,-91.14649396906223,-91.14527219765819,-91.14311878994718,-91.14133375761695,-91.13808199384421,-91.13709101475055,-91.13580916995666,-91.13450558735957,-91.1333198567539,-91.13267706532628,-91.13145125948417,-91.13029108366713,-91.12978437042902,-91.12853856330621,-91.1269756487391,-91.12431731068102,-91.12212109590587,-91.12026693502192,-91.1169695816005,-91.11430655273728,-91.11284414483444,-91.11060295495258,-91.10889058547285,-91.10785751710137,-91.10735010412557,-91.10672263817634,-91.10468906953643,-91.10303788924485,-91.1006612265482,-91.09982679807194,-91.09876174141324,-91.09740146550094,-91.09624184887262,-91.09406224610483,-91.09229445122828,-91.08962431983885,-91.08939005824674,-91.0887156724646,-91.08810869837589,-91.08752112624154,-91.08681185668028,-91.08606395630497,-91.0841451520768,-91.08354540742829,-91.08175328569305,-91.08069337631471,-91.079681775381,-91.07745378814192,-91.07527859543163,-91.07211749764265,-91.0717062423558,-91.07139261542993,-91.07132963909081,-91.07139675624829,-91.0718439584486,-91.07231012758736,-91.07268792080583,-91.07281977927141,-91.07276866432277,-91.07264635439427,-91.07236882295855,-91.07179897459514,-91.0710178756115,-91.06987390787539,-91.06908038700223,-91.06861692877325,-91.068096470489,-91.06744187542729,-91.06572053894712,-91.06481630993473,-91.06366049411591,-91.06290866609463,-91.06205800686683,-91.06132151717911,-91.06062278835212,-91.05976554450596,-91.05915979126165,-91.05878599502937,-91.05848981615021,-91.0581106621501,-91.0578247165098,-91.0576938719969,-91.05776462756484,-91.05796449603542,-91.05852955634417,-91.05896901509857,-91.05923247025105,-91.0598213615179,-91.06073212012754,-91.06149964133535,-91.06200772975481,-91.06311110144419,-91.06426522757044,-91.06655999059595,-91.06961095903739,-91.0715311557321,-91.07418679891271,-91.07643502782294,-91.07814186971804,-91.08135328460132,-91.08608749840288,-91.0876353872471,-91.09216078884661,-91.0970615072756,-91.09994465948368,-91.10265944956498,-91.10612642674742,-91.10783722875385,-91.11023360712515,-91.11168154624278,-91.11426668289813,-91.11585154741043,-91.11776107961974,-91.1192845670455,-91.12057443401322,-91.12151892935208,-91.1222976370389,-91.12271030059087,-91.12324643676978,-91.12360951006266,-91.12387113830903,-91.12406676298409,-91.12408064606436,-91.12416267306382,-91.12452685624996,-91.12484513007766,-91.12552542114335,-91.12635702296816,-91.12725043664618,-91.12899781509736,-91.12918653325653,-91.12954421989782,-91.13103206835204,-91.13176399764438,-91.13296223339614,-91.13388239190776,-91.13412899336505,-91.1347771190275,-91.13609304066729,-91.13682913510718,-91.13840964197507,-91.13911676346866,-91.13967404586157,-91.14056388479401,-91.14168108942285,-91.14218590680207,-91.14267713715536,-91.14317832286289,-91.14365198746289,-91.14459136699338,-91.1470233476855,-91.14967484684959,-91.15496782175745,-91.15720797074631,-91.15861439025791,-91.15990900798853,-91.16062466178317,-91.1622294841313,-91.16412344588937,-91.165061691223,-91.16640407794493,-91.16793613582688,-91.16937970338304,-91.17161186448917,-91.17361053076891,-91.17492146588881,-91.17548671211625,-91.17620034424837,-91.17725625188871,-91.17769905482471,-91.17785730444236,-91.17798172507564,-91.17798255407703,-91.17780312639435,-91.17710712344477,-91.17669357832912,-91.17590498656088,-91.1755903365284,-91.17531259285573,-91.17521099395348,-91.17525371699556,-91.17562716127598,-91.17579631885536,-91.17607340999218,-91.17617676299183,-91.17666082758649,-91.17694108583345,-91.17717823335705,-91.1771712572197,-91.17709398692666,-91.17717120114629,-91.17731888955483,-91.17767629170085,-91.17836932367554,-91.17890639153812,-91.1792194580608,-91.17931159274184,-91.17931592461225,-91.17922988307178,-91.17897089202138,-91.17840103723105,-91.17804250488885,-91.17778433795809,-91.17760487543323,-91.17658729142191,-91.1757793956286,-91.17534801305584,-91.17508143718942,-91.17477822369929,-91.17292739090338,-91.17233958584335,-91.17171281646965,-91.17128069181439,-91.17035815660174,-91.16938787846854,-91.168036927865,-91.16691961039457,-91.1657380746654,-91.16327473899328,-91.16159801974804,-91.16071655538103,-91.15979919674103,-91.1588861811159,-91.15807477683761,-91.15747752325828,-91.1571370292563,-91.15690312504995,-91.15680902949063,-91.15680263043666,-91.15571724295171,-91.15508975000321,-91.15447672195737,-91.1539532179911,-91.15341419575358,-91.15276263976332,-91.15200144477107,-91.15139913891096,-91.15095407190763,-91.15045001843373,-91.14973923072485,-91.14921861768485,-91.14861906498733,-91.14770385979338,-91.14701993726871,-91.14620708771504,-91.14542488777546,-91.14475501780682,-91.14358142175641,-91.14260193915497,-91.1404538019658,-91.13973792513234,-91.13879050458898,-91.13834376827526,-91.13744665682067,-91.13685414211741,-91.13622363355141,-91.13526145949255,-91.13456203706782,-91.13365085888248,-91.13302538432588,-91.13224945374166,-91.13091318055083,-91.12906348284345,-91.12578774055436,-91.12458732963853,-91.12375713396808,-91.12259380922426,-91.12192750670401,-91.12080121958464,-91.11964544790031,-91.11876096087049,-91.11799880138581,-91.11693752258367,-91.11603610522509,-91.11531428585997,-91.11451517742439,-91.11353260604402,-91.11259518031558,-91.11162365567444,-91.11133376311082,-91.1107918064597,-91.11067567909606,-91.11047785886865,-91.11026852031192,-91.10999094365228,-91.10936524522018,-91.10903423784541,-91.10852970861922,-91.10833246995419,-91.10801600288846,-91.1078919699889,-91.10718413449047,-91.10666468037698,-91.10568721150038,-91.10508593542362,-91.10434819195025,-91.10353337694066,-91.10285848296918,-91.10204369106292,-91.10140666983492,-91.1011001265243,-91.10072706088241,-91.0999694596279,-91.09927477816936,-91.09865588371478,-91.09852026874071,-91.09837223751379,-91.09806412915374,-91.09764063982715,-91.09762002124874,-91.09727775393574,-91.09688807753795,-91.09624502242383,-91.0954228542488,-91.09497162621774,-91.09451838376447,-91.09428835041284,-91.09358477521228,-91.09304662863393,-91.09248078615907,-91.09221148815925,-91.0917822794096,-91.09140947918867,-91.09117521308455,-91.09063562486976,-91.08991488367232,-91.08880633473092,-91.08797219607646,-91.08728331771468,-91.08652544425856,-91.08559534825284,-91.08446108614812,-91.08347119762482,-91.08212804191483,-91.0810797215052,-91.08035642644306,-91.07995753726647,-91.07950695485252,-91.07889285471296,-91.07867619156163,-91.07846980614588,-91.07804540621045,-91.07770726824728,-91.07735906029832,-91.07686942427128,-91.07650317472725,-91.07552949584124,-91.07459882625187,-91.0743896745626,-91.07404253448928,-91.07381166171545,-91.07302973029689,-91.07231534946897,-91.07196846945544,-91.07153256772492,-91.07085040898782,-91.06987981982083,-91.06921305332207,-91.06846374916093,-91.06751076444111,-91.06665666550839,-91.06604163174551,-91.0655688882951,-91.06478424810126,-91.06443978485088,-91.0641262740648,-91.06345810757185,-91.06276957479808,-91.06235886101706,-91.06206601432716,-91.06135237161648,-91.06063888537334,-91.05996480483098,-91.05923811838601,-91.05860811591791,-91.05792423231995,-91.05760904183043,-91.0572347326456,-91.05648425106982,-91.055572250995,-91.05502035167056,-91.0547999366236,-91.05462297263024,-91.05453304061595,-91.05446677020142,-91.05445618520031,-91.05441666955066,-91.05435538001259,-91.05428352353174,-91.05425072524619,-91.05396843021244,-91.05366615761308,-91.05337289635439,-91.05331215897853,-91.05330820452878,-91.05330841083818,-91.05329939672693,-91.05331010806054,-91.05341643683769,-91.05348551580997,-91.05351085889239,-91.05349525965723,-91.05345970288779,-91.05333899085437,-91.05314968401466,-91.05286421312987,-91.05268538640109,-91.05225092552239,-91.05195774254634,-91.05169855705171,-91.05091387379674,-91.04974204307919,-91.04897584817168,-91.04883875177349,-91.04851659881504,-91.04811906291648,-91.04755292768816,-91.04717970485677,-91.04685370343906,-91.04620269381962,-91.04515847994988,-91.04426354873262,-91.04357913080294,-91.04320242887002,-91.04275016155536,-91.04246415399413,-91.04173965095498,-91.04099050332064,-91.04050982335023,-91.04015472992631,-91.03928054309503,-91.03789718550139,-91.03714900660589,-91.03600940746199,-91.03489440616414,-91.03384048631953,-91.03257802214027,-91.03165469175359,-91.02876297603477,-91.02787721438764,-91.02673601844799,-91.02604471735116,-91.02518051637468,-91.02369887371903,-91.02278218044823,-91.02217417507171,-91.02115585491393,-91.0204695600072,-91.02023743092656,-91.01997816874669,-91.01948009560139,-91.01892838207544,-91.01848794600176,-91.01814889168587,-91.01738302600319,-91.0164663397702,-91.01576099916382,-91.01474733581259,-91.01390012592266,-91.01320290252208,-91.01250434161467,-91.01206863684955,-91.01147158457535,-91.01104818292777,-91.01059862741516,-91.00998270871406,-91.00931985063393,-91.00873089481252,-91.0082397269597,-91.00775086261415,-91.00717785557576,-91.00667210630414,-91.0063931398186,-91.0058942879307,-91.00557619658301,-91.00505001162014,-91.00461140812698,-91.00394774795761,-91.00317008828527,-91.00246603376472,-91.00169256884971,-91.00108450967059,-91.00028837441778,-90.99999206379761,-90.99955282642647,-90.99898241915217,-90.99821548521912,-90.99728151603834,-90.99677446534774,-90.9963079007108,-90.99579999469275,-90.99557369994557,-90.9954666829522,-90.99503447953826,-90.99461125024521,-90.99396137183601,-90.99339172844088,-90.99303485557341,-90.99229171098689,-90.99173637318221,-90.99102289038552,-90.99037656325034,-90.98957151783111,-90.98880302124871,-90.98791964779276,-90.98719379241551,-90.98666440470532,-90.98592350644081,-90.98504013258112,-90.98443753856154,-90.98386702026178,-90.98316210743043,-90.98238272749626,-90.98143035339007,-90.98061195596037,-90.980019011416,-90.97911796994296,-90.97834583316832,-90.9774534651651,-90.97689206657853,-90.97610681879743,-90.97535861620986,-90.97442290746022,-90.97380860753,-90.97322354828817,-90.9725485555292,-90.97188796145188,-90.97129846976051,-90.97054191654249,-90.96993319480347,-90.96943901758277,-90.96886304398031,-90.96828834370287,-90.96797290338731,-90.96738189256278,-90.96643095384501,-90.96581813861972,-90.96558726763196,-90.96548451304085,-90.96540143392936,-90.96522398577815,-90.96513647779844,-90.9648984394443,-90.96465186149675,-90.96396208723408,-90.96352208216261,-90.96308203104384,-90.96275335751983,-90.9624003121518,-90.96200444982917,-90.96151334432352,-90.96042773040567,-90.95988243245225,-90.95953940961462,-90.95914619300049,-90.95868340669858,-90.95786723475561,-90.95733636379497,-90.95676020447925,-90.95601996582469,-90.95540675809234,-90.95480881729527,-90.9545152158764,-90.95409784109582,-90.9536727000549,-90.95323208448838,-90.95281489717554,-90.95215283270224,-90.95152632774527,-90.95105206450201,-90.95083096358755,-90.9506286249772,-90.9503892501679,-90.95006511610642,-90.94920931974933,-90.94766561032408,-90.9472164035881,-90.94637161252579,-90.9455607442723,-90.94523639175532,-90.94489530818413,-90.94390636473514,-90.94352683355723,-90.94326566939534,-90.94283461298541,-90.94259617062539,-90.94220076993035,-90.94177427515824,-90.94135239995119,-90.94068510569582,-90.94015539278143,-90.93961030601081,-90.93899614642183,-90.93844943952978,-90.93737681718187,-90.93598617212859,-90.93277779013304,-90.93226140577325,-90.93193920281581,-90.93176490412543,-90.93058607026786,-90.92961059522223,-90.92826384316704,-90.92756746158096,-90.9268710005573,-90.9257046996635,-90.92509095051994,-90.92424153273883,-90.92358211422786,-90.92192864409786,-90.92111678377498,-90.91925898925481,-90.9177958032688,-90.91695469222144,-90.91631772716724,-90.91545449027794,-90.91453926501997,-90.91368671459048,-90.91332537049566,-90.91301699150196,-90.91261757646447,-90.91157134214757,-90.91075048199035,-90.91028661203782,-90.90996690729675,-90.90842249347367,-90.90751824478404,-90.90616288170196,-90.905350765403,-90.90472780341872,-90.90437765191622,-90.90409701067063,-90.90384279955727,-90.90355166048396,-90.90308883498838,-90.90266362856384,-90.90245459551809,-90.90140784045032,-90.90074996445023,-90.89994971442334,-90.89887759162762,-90.89782589511172,-90.89702806276591,-90.89680591628159,-90.89640059603749,-90.89591313868307,-90.89499284095032,-90.8943359180869,-90.89361049721079,-90.89229568575696,-90.8911197942689,-90.89038165791725,-90.88904864757956,-90.88837867644453,-90.88788680655679,-90.88737977251824,-90.8866152961312,-90.88609805803323,-90.88555773883596,-90.88421805670495,-90.88341941068428,-90.88277859531813,-90.8819567917689,-90.88085376978438,-90.8805002490145,-90.87994254074123,-90.87898920279747,-90.87795479448793,-90.87759260860305,-90.87711691764619,-90.87623656675019,-90.87509619574374,-90.87413497145235,-90.87344781436674,-90.87274642446417,-90.872487471843,-90.87222228630372,-90.87193973908474,-90.87125977630146,-90.87069578246798,-90.87010010025357,-90.86980254294984,-90.86952003704816,-90.86918471547352,-90.86880258875506,-90.86859104639495,-90.86824875817724,-90.86809709286239,-90.86783137105961,-90.86747077955459,-90.86670357026316,-90.8658874213361,-90.86527578458323,-90.86450608317737,-90.86374914541642,-90.86299825011162,-90.86234284981063,-90.86148922921113,-90.86071770658899,-90.85990681481051,-90.85923616608513,-90.85830358251471,-90.85779587759023,-90.85694640117543,-90.85629884629003,-90.85547141454549,-90.85478991464198,-90.85383525090339,-90.85266989952143,-90.85199755861051,-90.85085137405092,-90.85008627051182,-90.84938022587673,-90.84838815816424,-90.84752864100498,-90.84668629894452,-90.84601476784216,-90.84545306170872,-90.84478648493096,-90.8443287777169,-90.84403192887238,-90.8435999027367,-90.84329940990897,-90.84312717869417,-90.84258564121617,-90.84205845652437,-90.8416914834748,-90.84109376155791,-90.84038681297926,-90.83977822607903,-90.83926171220077,-90.83877101268088,-90.83829402429404,-90.83718303611128,-90.83624907381721,-90.83541644345398,-90.83465413723236,-90.83323947671256,-90.83244647891149,-90.83163763028244,-90.83100804655939,-90.83026336381529,-90.82911621155756,-90.82852824329309,-90.8276773664179,-90.82685833004159,-90.8255025173758,-90.82455774932301,-90.82356840927785,-90.82251501923716,-90.82181645597578,-90.82108777694057,-90.81973650162915,-90.81782960388897,-90.81673814893317,-90.81588877076068,-90.81498460611451,-90.81431192127843,-90.81365526884763,-90.81311189453712,-90.81272820599185,-90.81218785498889,-90.81120862141833,-90.81060784454223,-90.81037405332499,-90.80973014469294,-90.80918484096014,-90.80895090788324,-90.80884793651121,-90.8087713053018,-90.8087387012575,-90.80873176499846,-90.80867841587161,-90.80856788029324,-90.80847439962193,-90.80831580949878,-90.80778734057181,-90.80727941108121,-90.80646264233827,-90.80586904152419,-90.805181853973,-90.80468039937097,-90.80397099692645,-90.79906605078926,-90.79824669813814,-90.79796280588782,-90.79760188825509,-90.79720566265013,-90.79576956706799,-90.79453757222035,-90.79344689149094,-90.7927348472173,-90.79181993715069,-90.79039802035548,-90.78941870644412,-90.78875057668623,-90.7878501741114,-90.78728398197359,-90.7869424313927,-90.78619096720713,-90.7855556728754,-90.78496694969473,-90.78388161785726,-90.78316028766467,-90.78184992473277,-90.78067948728629,-90.77938421390238,-90.778414620535,-90.77724617167902,-90.77666604361663,-90.77568948407014,-90.77488978836563,-90.77383267428156,-90.77289282169937,-90.77210902372403,-90.77120090699491,-90.77044071652669,-90.76944721319882,-90.7689771917283,-90.76814871610379,-90.76761251242094,-90.76728469911824,-90.76695778382583,-90.76602582670267,-90.76505620300996,-90.76404777053457,-90.76339703696679,-90.76215768620591,-90.76151591642318,-90.76090495498597,-90.76007070710295,-90.75920605255972,-90.75841058111043,-90.75788589106827,-90.75723798835796,-90.75664766060618,-90.75625695172025,-90.75561889792564,-90.7549334099099,-90.75437133737694,-90.75388665836104,-90.75323109048715,-90.75263635477393,-90.75167818248765,-90.75097456909749,-90.75046478652699,-90.74982246303563,-90.74948388677826,-90.74874871457759,-90.7475641661194,-90.74631717303329,-90.74537708697417,-90.74489847374313,-90.74437854504815,-90.74361832138483,-90.74268035578119,-90.74182949948995,-90.74141541988818,-90.74096676049938,-90.74060948479517,-90.7401524754558,-90.73985791924476,-90.73972223642922,-90.73947372722917,-90.73927746882258,-90.73888109977902,-90.73875414509514,-90.73866965710127,-90.73858033169871,-90.73852484795725,-90.73841173263608,-90.7383077835958,-90.73822313688716,-90.73776113852261,-90.73703699496193,-90.73629735045525,-90.73577318704172,-90.73518798275147,-90.73494557804214,-90.73478089682611,-90.73463563690991,-90.73446447160285,-90.73427344759482,-90.73405656692418,-90.73372550761289,-90.73320119164187,-90.73286674190027,-90.73274209562415,-90.73269622506133,-90.73259033825379,-90.73240788489143,-90.73220802816263,-90.73196276053771,-90.73133921464303,-90.73012925141174,-90.72935863839405,-90.72881069749698,-90.72815463499337,-90.72772379234952,-90.72757356625067,-90.72729333284835,-90.72699070967411,-90.72663227642384,-90.72612442725338,-90.72569273817948,-90.72481258231686,-90.72345981741758,-90.72275611594887,-90.72218384359515,-90.72165025370926,-90.72102936696616,-90.7209012642285,-90.72044913094786,-90.72008115826392,-90.71946598245857,-90.71874740006341,-90.71804196168424,-90.71698632086971,-90.71615743047289,-90.71544327229401,-90.71499245138503,-90.71399458287618,-90.71335313615145,-90.71266530355128,-90.71212398362127,-90.71130603137139,-90.7106249252887,-90.71000391306255,-90.70910299088101,-90.70829700021956,-90.70777931235205,-90.7071923243405,-90.70668306084737,-90.70609671482566,-90.70537895392305,-90.70459017565423,-90.7040059225897,-90.70370722906176,-90.70335465734678,-90.70276741937563,-90.70216396024662,-90.70122868171428,-90.70040198507017,-90.70008352247557,-90.69948334267005,-90.69867308546272,-90.69817241340716,-90.69795212393745,-90.69786767811138,-90.69769552834289,-90.69758542859239,-90.69757693179551,-90.69760163084119,-90.69756823361618,-90.6976045758567,-90.69764133843063,-90.69776499332009,-90.69795151541102,-90.69814404037155,-90.69819033116663,-90.69827269946251,-90.69829859936395,-90.69819856421628,-90.69799972825764,-90.69053230156065,-90.68974161239825,-90.68887142690983,-90.68796940748194,-90.68714501897033,-90.68635181466706,-90.68543384397586,-90.68453118116541,-90.68316152660547,-90.68236806901692,-90.68127901195224,-90.68056349785455,-90.67977819286432,-90.67911671010954,-90.67881910256547,-90.67836115013537,-90.6777450347563,-90.67680803429487,-90.67585434503638,-90.67515828981972,-90.6744944681344,-90.67346467898128,-90.67264625747572,-90.67198391772163,-90.66933849012446,-90.66828811196451,-90.66741665605829,-90.6666626822648,-90.66675557070612,-90.66675939676249,-90.6668154436063,-90.66679387621825,-90.66669925552971,-90.66689953343349,-90.66648352225552,-90.66626246596412,-90.66601779439453,-90.66585900264407,-90.6659236896073,-90.66586998548509,-90.66593750526323,-90.66602811435482,-90.66601400237072,-90.66871373245618,-90.66861466578494,-90.66855440910163,-90.66839543112097,-90.67345848937214,-90.67852189995185,-90.68358528228219,-90.68864785981575,-90.69351113463642,-90.69837367505176,-90.70323625260129,-90.70809886882135,-90.71281343615878,-90.71752838825034,-90.7222433423525,-90.72695829497644,-90.73190250155245,-90.73684714130388,-90.74179143661037,-90.74673615985957,-90.75183015469112,-90.75692404059146,-90.76201785698481,-90.76711199817173,-90.77208025079547,-90.77704851077539,-90.78201677349887,-90.78814796161437,-90.79304065473733,-90.79793414055113,-90.80282763686701,-90.8077215350914,-90.81274440707824,-90.81776765988758,-90.82279111118442,-90.82781494094672,-90.83281722385053,-90.83781949251265,-90.84282214905159,-90.84782441171001,-90.85278703248417,-90.85774963903197,-90.86271224021442,-90.86767483666084,-90.87260584828758,-90.8775368564402,-90.88246747245419,-90.8873988628702,-90.89236734281647,-90.89733620447561,-90.90230505596043,-90.9080220048638,-90.9129627229872,-90.91790305258243,-90.92284338675441,-90.92778448998263,-90.93276230730898,-90.93774088805641,-90.94271947270528,-90.94769843617186,-90.95274091778927,-90.95778338494465,-90.96282623965158,-90.96786908401812,-90.97281771718926,-90.97776672008413,-90.98271533153454,-90.98766470247885,-90.99261587008793,-90.99756741380403,-91.00251899420577,-91.00747022767332,-91.01243939959336,-91.01740817666104,-91.02237694537091,-91.02787801572993,-91.0328654419899,-91.03785246663836,-91.04283948943652,-91.04782689087293,-91.05276458315346,-91.05770228023367,-91.06264036152231,-91.06757844670189,-91.07263879707975,-91.07769952061282,-91.08275985499392,-91.0878205624233,-91.09270467542039,-91.09758878170793,-91.10247249096111,-91.10735657614596,-91.11230402196826,-91.117251831329,-91.12219924075194,-91.12714702284778,-91.13211515387238,-91.13708366424702,-91.14205216234487,-91.14792695578136,-91.15292816882969,-91.15792898530998,-91.16292979206942,-91.16793136378907,-91.17293153075228,-91.17793245991908,-91.1829330063873,-91.18793392633249,-91.19295087915008,-91.19796783345237,-91.20298516787153],"lat":[43.42282529999411,43.42283200146934,43.42249056521326,43.42053094231462,43.41873885056663,43.41735114755998,43.41599014979072,43.41503479431364,43.41430465455993,43.41296762501693,43.41205223388471,43.41009351167234,43.40758639215414,43.40594065337908,43.4036346982412,43.40176655115895,43.40067133366163,43.39929515499032,43.39833945940609,43.39757948164764,43.39615693122477,43.395437832504,43.3944646311807,43.39346220163478,43.39212000350778,43.39105981169531,43.39018294563959,43.38967328263945,43.38838511523251,43.38670008054189,43.38444627683239,43.38257463222762,43.38036319923415,43.37911728554278,43.37812626664188,43.37719334818367,43.37559622610517,43.37511426943117,43.37440309925629,43.37374717478187,43.37311723391956,43.37147754653489,43.37071677652242,43.37004572836172,43.36937527663211,43.36879217494282,43.36825324885405,43.36773030717301,43.36692831934011,43.36633763482264,43.3659042236437,43.36377792476275,43.36137076394208,43.36011079263582,43.3574341103253,43.35552800944314,43.35464530928668,43.35300609819711,43.35186045960244,43.35078562395998,43.35002052304335,43.34966084211095,43.34911195840709,43.34897567525429,43.34846864076683,43.34776152095208,43.34750751226961,43.34736030735066,43.34713162671905,43.34687307323587,43.34636994694102,43.3459604775987,43.3456318822208,43.34531515642859,43.34508041914305,43.34375203088787,43.34239743917014,43.34114234675153,43.34042694282289,43.33974429716498,43.33896598327998,43.33821143335607,43.33789479876531,43.33621697012985,43.33484308401553,43.3343766328757,43.33363857105405,43.33294449424479,43.33234680148193,43.332049237029,43.33150687921965,43.33101736197133,43.33004914478974,43.32972077041004,43.32929679136446,43.3287601822452,43.32832087068268,43.32801714465442,43.32749379542062,43.32687101277592,43.3266084196261,43.32604274415043,43.32504346478586,43.32326564411753,43.32192021948948,43.32081114864177,43.31888436019626,43.31734609361615,43.31652882560054,43.31535273218721,43.31458004701649,43.31401236312039,43.3137212522943,43.31316342423607,43.31118211641449,43.30952096457533,43.30721844984727,43.30643717743946,43.30515076092847,43.30355736402607,43.30238467035655,43.3002773832622,43.2985468401047,43.29596493790002,43.29581211898843,43.2953255429128,43.29483804485343,43.29433628398495,43.29351151192579,43.29270117600497,43.28949209985068,43.28829989602679,43.28515992663714,43.28357726769347,43.28202256557859,43.27928142636764,43.27679328552961,43.27253847908474,43.27164047075557,43.27024826500562,43.26885342667264,43.26828916887991,43.26739718556002,43.26594110685799,43.26438737205068,43.26310354639966,43.26238534900947,43.26202012251191,43.26158571777462,43.26097087261842,43.26042862777284,43.26007295939735,43.2598971893168,43.25985931116106,43.2598641724121,43.25992656185166,43.26019642939009,43.26031740811094,43.26038472540763,43.26039171438845,43.26027270580332,43.26005414694139,43.25979274206288,43.2592933333385,43.25881973566408,43.25840054255719,43.25799441994259,43.25726517643416,43.25633753291739,43.25545094739176,43.25453436111217,43.25271442792381,43.25082048489342,43.24947782582181,43.2491087347191,43.2480604326867,43.24610727531468,43.24477535711388,43.24406574806498,43.24266034715669,43.24140950780841,43.23924588195339,43.2367791105829,43.23526749748872,43.23281838002892,43.23078189677163,43.22921561808361,43.22660604039675,43.22298156853438,43.22169861505658,43.21827284611659,43.21484358246936,43.21282868065226,43.21057586349794,43.20785056136486,43.20657983144973,43.20485105693081,43.20396326422671,43.20255702171622,43.20178039566696,43.20085988261256,43.19988654996203,43.19880292970338,43.19776489312822,43.1966437694518,43.19603359446556,43.19481636253144,43.1936008235919,43.19211839052385,43.1907072374875,43.18936821825222,43.18857809175854,43.18744696159685,43.18693647251851,43.18622516769605,43.18535731640929,43.18419281866232,43.18183605560035,43.18162286577022,43.18116825837807,43.17884244427198,43.17779207090032,43.17594831778114,43.17468473141037,43.17448502994882,43.17412629286,43.17291532351913,43.17211869290955,43.17012982033769,43.16881203301328,43.16770734912221,43.16534487448187,43.16072500413382,43.15887371397033,43.15734673146726,43.15635514619127,43.15543445858854,43.15419901826703,43.15145466834598,43.14862336147498,43.14401787221085,43.14237438092276,43.14141577589744,43.1406839645567,43.14036660600217,43.13974446492558,43.13913314255559,43.13888412402824,43.13863069367475,43.1382486851693,43.13774064434113,43.1367171594821,43.13558317942399,43.13469597973494,43.134056184472,43.13263932304299,43.13050024913215,43.12950938599772,43.12874657301959,43.12670177649245,43.12374201375384,43.11989629306709,43.1152105559603,43.11269206751611,43.10817611233115,43.10682637652399,43.10537748525483,43.10408183902027,43.10179840560102,43.09769315790394,43.09647943226854,43.09388347668134,43.0917401125304,43.08637951976431,43.08395265160102,43.08077910717359,43.07941212923657,43.0748747709903,43.07287264976038,43.0725469530411,43.07214846902158,43.07119723485371,43.07012040412611,43.06941254979594,43.06869290351094,43.06691693235802,43.06645294309065,43.06597638604152,43.06531983259094,43.06467517452896,43.06424081764831,43.06138164983681,43.0524004770212,43.04682772312037,43.04336499511253,43.04147923617992,43.04018564746881,43.03482082986369,43.03269887868471,43.03056297580613,43.02803054473493,43.02447431859313,43.02193303082969,43.0190717270645,43.01685637287481,43.01379604329837,43.00691516294396,43.00201324028527,43.00007739412091,42.99826853655213,42.99617794082067,42.993860626314,42.99169618420024,42.99044512665199,42.98923547725697,42.98830609820411,42.98817488563091,42.98872603331218,42.98907592793631,42.9893924246215,42.98965260494571,42.98989077254007,42.99016608926993,42.99063367778167,42.99112183194728,42.99154190701019,42.99203737480541,42.99278151116653,42.99319956391125,42.99343277756378,42.99374118595532,42.99390319865304,42.99403325367924,42.99418792940372,42.994294375082,42.99491841709152,42.99542691641648,42.99683089534748,42.99730903102145,42.99792246484655,42.99825938736838,42.99873654529252,42.99894746057294,42.99914489193551,42.9993705520827,42.99951602191851,42.99964141735467,42.99970302423739,42.99979382334708,42.99979317971228,42.99978927946563,42.99982986035493,42.9998278093177,42.99984150698599,42.99980305156333,42.99969598965931,42.99961836587728,42.9995798058868,42.99951364996097,42.99953217860512,42.99970878155225,42.99995862096141,43.0001208161807,43.00018401087491,43.00012153924104,43.00005030981572,43.00018165929182,43.00021945066133,43.00021988444813,43.00022906235601,43.00021004351402,43.00016053789876,43.00007005691526,42.9998327277433,42.99976624908143,42.99969065185626,42.99965389917064,42.999631501947,42.9996387787073,42.99973983049789,42.99982705770286,43.0000424528585,43.00019232977959,43.00031027679515,43.00034030267764,43.00034471615934,43.0002050421547,43.00004493604803,42.99989786202838,42.99961371450659,42.99904193683555,42.99861084656514,42.998195654574,42.99812151277184,42.99807032248523,42.99803232504019,42.99797628068447,42.99798339957107,42.99796228836052,42.99786997064475,42.99762308228049,42.99723752423063,42.99690936501844,42.99646763037642,42.99623769621427,42.99575618464339,42.9954535121367,42.99522645330052,42.99509763203367,42.9950003861267,42.99490140226744,42.99483627915614,42.99461788602104,42.99441418420979,42.994050699997,42.99383698160894,42.99372715967743,42.99355703843029,42.993466118905,42.99335496411175,42.99329784308402,42.99332717428379,42.993381413945,42.99346028032338,42.99352161283804,42.99366224189392,42.99394232596129,42.99405045698708,42.99414244133443,42.99426062378853,42.99430034340408,42.99429479331731,42.99426908237472,42.99421576642862,42.99413744982076,42.9940132001122,42.9939713732059,42.99394331155666,42.99389313921566,42.99364003423364,42.99336412179959,42.99320524156891,42.99306114553342,42.99290129087481,42.99264992691609,42.99250654015724,42.99239163386925,42.99228415631748,42.99222008520852,42.99217228274897,42.99217480520922,42.99219872891419,42.99221263684466,42.99227819101156,42.99233851038163,42.99252149005817,42.99260638155125,42.99265260979242,42.99279581929097,42.99300746218029,42.99331571139069,42.99363829067543,42.99387685224885,42.9940549551486,42.99413561701427,42.9942595622199,42.99460299294255,42.99512674873835,42.9955197301712,42.9956660601032,42.99581227985303,42.99592878220714,42.99602096073392,42.99604194816539,42.99616280084974,42.99629027911215,42.99657659351409,42.99669770042338,42.99713362447105,42.99755754751867,42.99806727452657,42.99825664644206,42.99869957822355,42.99880611680584,42.99904717931737,42.99928966485237,42.99973203144619,42.99994833928911,43.0001505288563,43.00036855431818,43.00061528954606,43.00094351828794,43.00117400102584,43.00143551886916,43.00154295522982,43.00173652528633,43.00184836939111,43.00194723700885,43.0021738130111,43.00252258277197,43.00275125902708,43.00277835473745,43.00288412598277,43.00298076409302,43.00310822784727,43.00323871807313,43.00330901367401,43.0035025519085,43.00381132582763,43.00401898060683,43.0041748382508,43.00420185241092,43.00426551422706,43.00429533008302,43.00429710677938,43.00426536927391,43.00418780927883,43.00415890612855,43.00402000774006,43.00391896820103,43.00387588020077,43.00390282663702,43.00404590114154,43.00422998059437,43.00458493608422,43.00490357672565,43.00580790059568,43.00611786011704,43.00650491109451,43.00670505362955,43.00695107561224,43.007299585197,43.00756822228293,43.00778422340767,43.00830034286794,43.00880517963203,43.00896317391616,43.00922515544747,43.00969783196477,43.01012388452962,43.01035740938239,43.01047437965754,43.01073609058219,43.01101021544254,43.01127968899302,43.01162670184743,43.01199439119166,43.01229979879587,43.01271369025248,43.01312162936595,43.01373658210048,43.0141747932945,43.01465931169306,43.01531501295331,43.01587775677253,43.01634287718292,43.01678496879435,43.01736833832111,43.01834864688644,43.0192867988195,43.01977688436062,43.02067618744191,43.02108349562641,43.02169765833155,43.0221254155742,43.02264658255415,43.02312440556817,43.02348522003661,43.02375797100894,43.02398494511512,43.02425788672164,43.02441611365012,43.02454137847593,43.02476246676004,43.02497418962964,43.02513194244985,43.02518146308402,43.02517367371809,43.0251208277686,43.02507477805993,43.02503815023385,43.02494316609611,43.02487257949284,43.02485051941083,43.02489160825252,43.02500263193929,43.02528614720726,43.02550706628472,43.02575706593147,43.02595660632065,43.02614919968796,43.02626666781072,43.02628538250617,43.02623623288186,43.02612813962394,43.02614743938003,43.02616613184618,43.02630201028621,43.02648653129032,43.02680290159821,43.02718640077092,43.02761570864684,43.02792195214589,43.02815699705419,43.02849164331479,43.0288584272045,43.02926502467934,43.02958567375711,43.03008000562004,43.03052968422439,43.0310640755262,43.03138515802316,43.03164503250147,43.03194999798458,43.03221050934534,43.03234542719353,43.03259319906318,43.03283096971435,43.03306801188129,43.03342753550987,43.03379941322694,43.03398364931358,43.03434882928989,43.03488328682956,43.03530405307906,43.03551402686644,43.03570584003992,43.03618863168104,43.03691603592147,43.03709770906597,43.03736961475027,43.03752485662336,43.0378576022099,43.03822149181901,43.03858260874529,43.03878653459544,43.03894852613883,43.03910222560339,43.03923304336297,43.03937514790879,43.03941627245876,43.03957377389187,43.03968246775557,43.03990788432117,43.04037464322548,43.0407281840445,43.04108487421743,43.04157868890155,43.04198278392145,43.04239782397327,43.04256497163647,43.04285151525856,43.04318584869424,43.04351645336698,43.0438967323753,43.04456442287645,43.04516046194615,43.04554291694473,43.04575540189848,43.04602039976707,43.04631072552754,43.04684815008605,43.04818515202793,43.05097411723872,43.0517494209663,43.05330383920992,43.05511698893355,43.0556460856378,43.05607003905327,43.05711718750808,43.0574302470603,43.05771538227316,43.05818717067555,43.05847927229633,43.05923414489973,43.06000511998868,43.06058487764047,43.06142432458689,43.06187197508664,43.06230312852801,43.06266557998985,43.06299145713713,43.06352112416712,43.0640118283327,43.06509080163486,43.06520436805469,43.06522003578025,43.06522933021323,43.06523892285443,43.06520252507637,43.06510263229929,43.06503070140786,43.06495322543075,43.06479088621616,43.06468502403632,43.06448686424264,43.06435919989499,43.06396247754697,43.06374736805584,43.06333009046612,43.06302044091861,43.06286925931157,43.06272474740911,43.06260974797011,43.0625561139147,43.0626515857009,43.06269696112604,43.06277074086871,43.06292055394,43.06320595785795,43.06340089303445,43.06349269512523,43.06356228296948,43.06389040288342,43.06406936025267,43.06440703259485,43.06468498335672,43.06497805565346,43.06513769009975,43.06529550963135,43.06544663822879,43.0656855439434,43.06607708346594,43.06645724198627,43.06665701502494,43.06740638439399,43.067899194406,43.06847623601814,43.0690692640726,43.06950973881382,43.06973764614709,43.06981343190932,43.06991385611803,43.06999019507376,43.07011375994382,43.07015768762604,43.07016889268836,43.07019023567371,43.07040996558845,43.07058749135442,43.07091924969655,43.07110731102958,43.07128987158965,43.0715472780315,43.07199650315018,43.0722941948975,43.07256435914431,43.07296260271281,43.07314055169847,43.07325632494828,43.07340118920979,43.07358097696897,43.07359666555286,43.07363960792077,43.07368282745533,43.07370375092612,43.07373246057998,43.07370289047805,43.07353875009154,43.07312026365155,43.07273172136605,43.07249202860208,43.07234358535374,43.07232247234771,43.07233097605849,43.07244087277674,43.07270807837061,43.07293452490277,43.07311848471299,43.07319546997923,43.07323003474401,43.07322227936127,43.07315119992212,43.07299893809419,43.072759918664,43.07268369767869,43.0726366606382,43.07262436452006,43.07276688497926,43.07302085085646,43.07317642667341,43.07341863718885,43.07374049396269,43.07393983052017,43.07402309403343,43.07410072757413,43.0742147631863,43.0742920610885,43.07439677988797,43.07466295772274,43.07493689540144,43.07540651950147,43.07577592308022,43.0760626493782,43.07622724013557,43.07630556646465,43.07631995428547,43.07630502587772,43.07630073768216,43.07632066327334,43.07639710825239,43.07658105104632,43.0767981791078,43.07713479770342,43.07746159861681,43.07786448581815,43.07855295388169,43.07917437091572,43.07962656217618,43.08042152261402,43.08117563758839,43.08164969218908,43.08239418667063,43.08305313415381,43.08349443839287,43.08411117653197,43.0846973855949,43.08508919701165,43.0853948826929,43.08557368712119,43.08566970035911,43.08569492477135,43.08559352376923,43.08551416329292,43.08546276400174,43.08544459499038,43.08542188404271,43.08537649974884,43.085369679412,43.08547192290299,43.08569669507206,43.08589462159145,43.0861912891385,43.08654467759121,43.08685921263694,43.08711096574662,43.08751682151605,43.08836459215782,43.08901328043571,43.08973623220612,43.09094368209523,43.09256519558323,43.09344995924961,43.0938718418321,43.09426562634195,43.09453243935335,43.09483616266252,43.09504627438838,43.09526426756578,43.09554722126036,43.0961465704138,43.0965638005917,43.09674163624308,43.09720229389578,43.09770172250187,43.09823597038277,43.09842189544995,43.09864934908158,43.09924000296918,43.10048466750975,43.10174675480702,43.10201563726972,43.10230804366551,43.10254678186033,43.10314861492912,43.10353954078244,43.10409213515449,43.1044722685072,43.10483026889784,43.10512429940151,43.10556789447502,43.10859275397583,43.10895733315193,43.10909206875462,43.10923722024574,43.10938909622565,43.1097834464337,43.11010529663124,43.11053438239186,43.11078425635313,43.11097856611759,43.11104535787991,43.11106920374008,43.11110798910081,43.1112224215729,43.11129581304709,43.11137107280205,43.11158130102294,43.11175655023937,43.1119257793376,43.11217245888226,43.11230841352929,43.11259078975599,43.1128721988097,43.11312026605138,43.11330060316578,43.11374145583331,43.11397893877204,43.11422480039137,43.11431566394178,43.1143399087544,43.11441461420635,43.11453383039489,43.11465957386014,43.11480140124633,43.11493910173488,43.11499585747015,43.1149364320653,43.11484941912209,43.11481920328184,43.11483049762396,43.11491648614183,43.11509955881146,43.11528857222459,43.11548089158338,43.11585940348247,43.11614848683036,43.11641457631153,43.1168587240433,43.11736003666272,43.11779821784068,43.11812638015832,43.11855218504584,43.11923393753085,43.11970930359006,43.12030592290842,43.12084018954048,43.12129389844242,43.12171860793021,43.12215868500693,43.12248728111364,43.12298344780075,43.12331275288297,43.12359520811238,43.12385005271828,43.12390360386613,43.12380012048708,43.12359141432502,43.12333432215079,43.12317837088369,43.12312313409994,43.12317072834981,43.12332377248996,43.12356910321684,43.12394487782429,43.1242025382859,43.12462546381091,43.12489499037537,43.125456676197,43.12569405627364,43.12589236995604,43.12613091968293,43.12641359661682,43.12707976127346,43.1273836034166,43.12771803833753,43.127936131613,43.12818901221891,43.12835182802753,43.12854051335689,43.12862767484918,43.12901229510453,43.12958658224479,43.13016665491549,43.13055736904344,43.13125956352945,43.13161579504091,43.13190860047779,43.13233333801646,43.13297810260453,43.13391350162299,43.13463831017391,43.13557175293334,43.13660612311373,43.13725762696509,43.13760428537794,43.13795934782076,43.13824061684829,43.1385649879356,43.13884600927857,43.13906909679178,43.13961422164269,43.14055897152135,43.14116767720088,43.14153287654116,43.1419642626582,43.14236573887088,43.14281668910679,43.14345644258138,43.1441760790922,43.14478214942454,43.14525245886017,43.14558557492298,43.14614937797651,43.14687850541083,43.14723611342076,43.14752453479202,43.14779562476545,43.14812651081639,43.14827312191137,43.14885698184533,43.14932068746979,43.14993404327328,43.15035437757436,43.15056956595897,43.15077555094461,43.15099030469005,43.15121527258818,43.15132175380737,43.15174266921706,43.15211122725539,43.15250569712317,43.15278818115825,43.15336857837281,43.15367471132733,43.15379533367979,43.1539319323151,43.15420464774591,43.15451543990321,43.15488932162604,43.15525702076859,43.15568785204532,43.15619354399497,43.15661421877576,43.15693308894277,43.15714238926222,43.15743067609159,43.15778744711723,43.15808734882094,43.15862852442549,43.15914054842085,43.15932030993904,43.15977843734956,43.16037009264036,43.16081744735793,43.1611324384279,43.16138892092664,43.16198806748498,43.16256974360535,43.16319067776563,43.16399368332814,43.16447806027482,43.1649363745691,43.1654317189918,43.16604044918836,43.16670291170254,43.16720869657282,43.16727387984213,43.16750677551325,43.16779730256279,43.16799671073158,43.16820355079498,43.17264058624665,43.17291877018567,43.17304932878132,43.17311741367919,43.17316793771531,43.17322396275579,43.17325794830824,43.17326905093356,43.17327723761933,43.17331044953956,43.1733568131064,43.17340094732985,43.17346827027317,43.17347219864741,43.17349975904714,43.17341402678538,43.17329806068534,43.1730187989912,43.17263709694442,43.17232792313808,43.17211823291232,43.17189075637191,43.1717759516166,43.17170009648781,43.17175548013824,43.17177870549907,43.17179518358342,43.17174146396064,43.17709148961859,43.19164440232871,43.20523094556119,43.21899828201001,43.23411023027093,43.24855463843114,43.26298567393702,43.27743690903671,43.29212995840795,43.30668459103727,43.32088473808982,43.33542686399774,43.35001635972074,43.36434765840512,43.3794643136347,43.37947497890624,43.39396094685216,43.40850123831021,43.42301505869146,43.42284799729602,43.42268042266456,43.42251262399362,43.42234460839504,43.42260865711376,43.42287250220895,43.42313585753225,43.42339900821327,43.4234121667892,43.42342540579473,43.42343817311797,43.42345074419705,43.42374668988905,43.42404242198172,43.4243376554542,43.42463239746631,43.4242596308974,43.42388664542202,43.42351286442364,43.42313914313103,43.42319233496689,43.42324531694052,43.4232977996819,43.42336258695273,43.42348011096596,43.42359769851574,43.42371479807858,43.42383168412815,43.42383432701884,43.42383674956347,43.42385357744454,43.42386990402084,43.4238628111142,43.42385521978158,43.42384768458068,43.42383965495204,43.42381284552634,43.42378554174234,43.42375802381463,43.42373057323444,43.42373522118324,43.42373965952611,43.42374360794258,43.42374761677382,43.42372749058209,43.4237071393996,43.42368657782007,43.42366238659632,43.4236967365002,43.42373058842696,43.42376451440487,43.42379793915877,43.4238083379169,43.42381823157314,43.42382819049602,43.42383765040989,43.42383538290706,43.42383261891971,43.4238296268319,43.42382640995957,43.42379789163526,43.42376887080345,43.42373963788445,43.42371018541934,43.42367262486753,43.42363484782713,43.4235968620884,43.42355867588971,43.42353136955519,43.42350413831903,43.42347640362628,43.42344564095483,43.42342600660391,43.42340588046708,43.42338581646889,43.42336553084304,43.42339529230463,43.42342483740413,43.42345444836521,43.42348384232924,43.42346263759698,43.4234412053488,43.42341983485581,43.42339795531993,43.42336684509097,43.42333552686531,43.42330400623045,43.42327227088708,43.42320116156629,43.42312983822942,43.4230580195311,43.42298626271997,43.42295067365683,43.42291514457693,43.42287912000014,43.42283631188064,43.42281608338937,43.42279564314767,43.42277498423254,43.42275409812366,43.42276058431313,43.42276655878497,43.42277260295957,43.42277814239362,43.42279399194034,43.42280989486244,43.42282529999411]}]],[[{"lng":[-90.19217075325167,-90.19198882188178,-90.21204383994329,-90.23194095795225,-90.27165539560794,-90.29174737832243,-90.31104722689545,-90.33087499506871,-90.35079397120572,-90.37111166868728,-90.39098794184197,-90.41099940979028,-90.43146252152884,-90.45138999990237,-90.47126413073863,-90.49111210331459,-90.51096899737169,-90.53072223269763,-90.55232166652986,-90.57191648786889,-90.59176767227466,-90.61185255986719,-90.63135808772979,-90.67165496000318,-90.67147671467734,-90.67115713120066,-90.67006784920301,-90.66912418789749,-90.66855433052224,-90.66845012153523,-90.66846820465308,-90.66839543112097,-90.66855440910163,-90.66861466578494,-90.66871373245618,-90.66601400237072,-90.66602811435482,-90.66593750526323,-90.66586998548509,-90.6659236896073,-90.66585900264407,-90.66601779439453,-90.66626246596412,-90.66648352225552,-90.66689953343349,-90.66669925552971,-90.66679387621825,-90.6668154436063,-90.66675939676249,-90.66675557070612,-90.6666626822648,-90.66129771792293,-90.66030595660627,-90.65888960710176,-90.65808382510974,-90.65735911782436,-90.65705234710131,-90.65671212480306,-90.65635965968389,-90.65569503460827,-90.65516635369897,-90.65477753213585,-90.65446215393565,-90.65416839736456,-90.65380114456839,-90.65280280963638,-90.65246887318916,-90.65202380209723,-90.65165632686654,-90.65108894297065,-90.65029236148469,-90.64969590812663,-90.64897381275885,-90.64810760959044,-90.64738972065298,-90.64637349478318,-90.64562146438871,-90.64485265739364,-90.64419827482335,-90.64364701022686,-90.6428312562976,-90.64223979546493,-90.64158454944287,-90.64078501729374,-90.64048426671681,-90.64018956254471,-90.63980527601308,-90.63908342227387,-90.63814774573453,-90.6372352669033,-90.63637635337489,-90.6356737945781,-90.63542029126826,-90.63467254695507,-90.63393685049263,-90.63325309142181,-90.63232862604792,-90.63150777198945,-90.63092882262595,-90.63025375103831,-90.62969889355922,-90.62864227296116,-90.62782670222735,-90.6270792800066,-90.62642957733502,-90.62544684219435,-90.62476825743454,-90.62393397006794,-90.62313320656692,-90.62224577119609,-90.6216075355122,-90.62095199491444,-90.62035398896593,-90.61970975827002,-90.61859681882287,-90.61767976812308,-90.61672197035099,-90.61608171312288,-90.61502079819664,-90.61415022138212,-90.61345827779961,-90.61281212895457,-90.61191835753031,-90.61098582075877,-90.610243575662,-90.60952527211531,-90.60888217855961,-90.6083316856265,-90.60778202096031,-90.60717656303706,-90.60649123700421,-90.60602788169604,-90.60541612801022,-90.60480920917105,-90.60432251512614,-90.60376167693641,-90.60310905556454,-90.60246696391816,-90.59592051226961,-90.59551225613151,-90.59521560149642,-90.59494968630594,-90.59469294035189,-90.59433400488265,-90.59396547000742,-90.59324653001592,-90.59266510852567,-90.59198221713775,-90.59149669788481,-90.59077149791426,-90.59032161994432,-90.58978683801992,-90.58897355683052,-90.58549859847072,-90.58441371884139,-90.58351906773511,-90.58270866390887,-90.58223925636321,-90.58148087437876,-90.58046043985334,-90.57935966469024,-90.57857949576682,-90.57792294001712,-90.57725196982433,-90.57624475307732,-90.57561712033781,-90.57497466647676,-90.5741716974207,-90.57328859699005,-90.57217950992957,-90.57135440898828,-90.56975520659593,-90.56873339494244,-90.56806199313149,-90.56696764186268,-90.56602679241463,-90.5653194847872,-90.5640579730435,-90.56327041556871,-90.56259918760743,-90.56226936986984,-90.56184195415385,-90.56161338473412,-90.56050977226276,-90.55980749551914,-90.55947102157694,-90.5590684583961,-90.55868890398376,-90.55840854622664,-90.55810723269668,-90.55761615513626,-90.55658103359966,-90.55602027763659,-90.55530663808162,-90.55460029790754,-90.5536974102846,-90.55279436693864,-90.54540144062614,-90.54461300326848,-90.54382389825705,-90.54304852623738,-90.5418556635544,-90.54106649094804,-90.54001784497311,-90.53929112601949,-90.53875466447825,-90.53855516752418,-90.53804111852102,-90.53731358345517,-90.53666836549765,-90.53629397349825,-90.53575257059255,-90.53478511679535,-90.53440244506601,-90.5321999242725,-90.52974794877306,-90.52868091228866,-90.52787054871361,-90.52645995371554,-90.52551728864418,-90.52470565852953,-90.52406900551418,-90.52326345557151,-90.52216482160557,-90.52127213392724,-90.52053391731819,-90.51948277786192,-90.51865845112633,-90.51789957167294,-90.51708294671324,-90.51598861687064,-90.51512700946299,-90.51439738805252,-90.51363875615142,-90.51290935475899,-90.51214340429269,-90.51131863408864,-90.51035429090611,-90.50940429813245,-90.50886853545403,-90.50837449410885,-90.50742569514354,-90.50641067685956,-90.50599220271879,-90.50535012905226,-90.50443477583522,-90.50361430448385,-90.50237649202008,-90.50170976140504,-90.5001059016309,-90.49916052960471,-90.49834740445291,-90.49796498029747,-90.49753974406775,-90.49687031476689,-90.4965484143148,-90.4961963188404,-90.49527603109935,-90.49385989946197,-90.49297644274962,-90.49219516473138,-90.49128247281456,-90.49049315529936,-90.48967430469065,-90.48884793357522,-90.48795507406234,-90.48698892942899,-90.48630107063478,-90.48553993053316,-90.48474930973727,-90.48418497300082,-90.4832025934568,-90.48238136607647,-90.4816632938681,-90.48087223962875,-90.48008883382919,-90.47940059700319,-90.47844252912969,-90.47763061712472,-90.4768262612162,-90.47579533823028,-90.47487394580183,-90.47339686771298,-90.47259235553986,-90.47159765320377,-90.47084429790117,-90.46965911727909,-90.46791858844006,-90.46671158253079,-90.46573143326849,-90.4650655787956,-90.46425321988271,-90.46358648232166,-90.4627730795235,-90.46209218342925,-90.46119970689107,-90.46033726268288,-90.45918261936004,-90.45814480568328,-90.45761272951211,-90.45710791470313,-90.45620441986166,-90.45533061773322,-90.45439842796183,-90.45350081858982,-90.45317352115237,-90.44424687429094,-90.44342791004112,-90.44153051351113,-90.44076285568929,-90.44001746507615,-90.43862942513823,-90.43794337057039,-90.43708955702704,-90.43639626172275,-90.43577562030242,-90.43462955006098,-90.4338043460134,-90.43256312116078,-90.43168724631167,-90.43097186384111,-90.43026382415144,-90.42921955613011,-90.4280943856793,-90.42720290981521,-90.42628284146004,-90.42528272180341,-90.42489205892055,-90.41943623258183,-90.41907448976328,-90.41887639150471,-90.41824622260445,-90.41743699182433,-90.41626699488781,-90.41379389852774,-90.41270365093337,-90.41193532090905,-90.41122563227938,-90.41042807818616,-90.40936017164854,-90.4088121386805,-90.40821326046843,-90.40703887913598,-90.40630213573873,-90.40563812171445,-90.40505016307152,-90.40442604995225,-90.40303118382859,-90.40092828310327,-90.39974614966627,-90.39825035180624,-90.3975792242864,-90.39666023121023,-90.39585788792631,-90.39514285134382,-90.39426699179045,-90.39361704449564,-90.39323735216658,-90.39288755204076,-90.39248473171179,-90.39176115790031,-90.3910009437766,-90.39029927709436,-90.38923231961869,-90.38788852780549,-90.386786046483,-90.38536223068969,-90.38419393553346,-90.38332510992861,-90.38247830349935,-90.38161711264324,-90.38093857046239,-90.38022335409448,-90.37942044510369,-90.37853033274594,-90.37791761060464,-90.37708575247387,-90.37595400982973,-90.37528212402671,-90.37424587940841,-90.3731219785717,-90.37217306883041,-90.37126780664374,-90.37060356799793,-90.36976393848575,-90.36876385335532,-90.36674126136342,-90.36576270221514,-90.36474032242143,-90.36372511651022,-90.36297287023039,-90.36198726996349,-90.36111859478802,-90.36047599006213,-90.35979675036413,-90.35881822575595,-90.3579634902036,-90.35707949479257,-90.35593324286391,-90.35514511559882,-90.3541091859116,-90.353409234681,-90.35278930133735,-90.3519140354403,-90.3510814753643,-90.34994847439631,-90.34861766925511,-90.34751372629253,-90.34644656673329,-90.34507977365151,-90.34424681130373,-90.34353093231736,-90.34289511202682,-90.3419959237941,-90.34103105612122,-90.33989081680924,-90.33911620081149,-90.33789634184404,-90.33658851089554,-90.33595245688794,-90.33531637108054,-90.33269095562531,-90.33057514964922,-90.32426800453989,-90.32274019778284,-90.32148280236606,-90.32045246117819,-90.31917388436079,-90.31799054525,-90.317548668607,-90.31641226183197,-90.31567401422444,-90.31497200489227,-90.31378747863251,-90.31296838041158,-90.3121274208885,-90.31094330973465,-90.30951792194294,-90.30835638769646,-90.30677892289194,-90.30125161136365,-90.30035352483959,-90.29972985423566,-90.29929397728002,-90.29851176895221,-90.29768557507343,-90.29702742772099,-90.29595920046077,-90.29333149842385,-90.2921525901408,-90.29153742544646,-90.29092934598124,-90.29031361037035,-90.28922059088393,-90.2885156219464,-90.28796434575733,-90.28728173412399,-90.28682679145109,-90.28653003516592,-90.28574631487113,-90.28539310004001,-90.28520106859642,-90.2850015630973,-90.28471982975465,-90.28468033550951,-90.28467064402622,-90.28463100369918,-90.28431361085866,-90.28360954475481,-90.28292101955637,-90.28178654167876,-90.28106209489887,-90.28023545586983,-90.27908778171421,-90.27803596490904,-90.27700664695229,-90.2763351969857,-90.27563463780355,-90.27491945912352,-90.27389780862811,-90.27310232062848,-90.2721756386193,-90.27092802043883,-90.27029323184522,-90.26957087819925,-90.2684177461002,-90.26778987635586,-90.26671628612952,-90.26577377547029,-90.26463402370135,-90.26380129738332,-90.26301275648986,-90.26169108428849,-90.26068290543334,-90.2598056455541,-90.25917628252185,-90.25837094831269,-90.25768271495944,-90.25710431172499,-90.25646721611612,-90.25574964080296,-90.25521494169922,-90.25431407329164,-90.2538523879581,-90.2533540406267,-90.25223929673753,-90.25092709832097,-90.25034835851649,-90.24977034023478,-90.24898027316756,-90.24812504473657,-90.24707945136667,-90.2458648595032,-90.24517710495421,-90.24433590907502,-90.24373598972998,-90.24278490177365,-90.24187725570908,-90.24113795592879,-90.24045679396777,-90.23975315470631,-90.23920366253545,-90.23771647397552,-90.23692528571986,-90.23645643675057,-90.23586298545732,-90.23510113460495,-90.23422910561476,-90.23381133963875,-90.23324695145556,-90.23276318736589,-90.2318769134916,-90.23104909127447,-90.22984035731021,-90.22912967195523,-90.22799416430762,-90.22749601789438,-90.22698329061897,-90.22603115243881,-90.22507206777544,-90.22440603422146,-90.22384979132681,-90.2231587772408,-90.22226893263863,-90.22082733361226,-90.21978109730424,-90.21830345227714,-90.21763810433326,-90.21642441479258,-90.21462649408608,-90.21421687774297,-90.21352263547668,-90.21265951406333,-90.21151048116404,-90.21052951819736,-90.2012882488231,-90.19967962356388,-90.19870008666064,-90.19699638434858,-90.19615506944821,-90.19504290152649,-90.19428960434774,-90.19350008819332,-90.19300887401924,-90.19249660282892,-90.19249187947447,-90.19247446247552,-90.19252425615433,-90.19251181078069,-90.19253437047958,-90.19246228857939,-90.19242406338491,-90.1921767224859,-90.19200373166426,-90.19199501143439,-90.19196448209475,-90.19187188253861,-90.19193105457619,-90.19188470598095,-90.19169557928859,-90.19180911578444,-90.1918319214267,-90.19178807595624,-90.19171659194743,-90.19175797092592,-90.19188686242606,-90.19198140208481,-90.19211041450761,-90.19217075325167],"lat":[43.54003388860421,43.55498397148928,43.55482255606803,43.55467680069025,43.55407486262494,43.55397732598703,43.55400757385724,43.55400207921745,43.55404773678051,43.55406330472655,43.55395915654978,43.55383446441191,43.5536885271219,43.55353063593542,43.55334247481231,43.55328350413281,43.55301147272245,43.5528583524725,43.55272075786599,43.55269268715337,43.55273196362972,43.55273446114953,43.55279066239035,43.55295051847808,43.53821972056083,43.5237032767784,43.49498725945761,43.48073755019667,43.46632493768491,43.45183584550696,43.43743322078474,43.42301505869146,43.40850123831021,43.39396094685216,43.37947497890624,43.3794643136347,43.36434765840512,43.35001635972074,43.33542686399774,43.32088473808982,43.30668459103727,43.29212995840795,43.27743690903671,43.26298567393702,43.24855463843114,43.23411023027093,43.21899828201001,43.20523094556119,43.19164440232871,43.17709148961859,43.17174146396064,43.17111011594828,43.1711031822628,43.17128859085354,43.17141982853094,43.17158435635815,43.17164804565341,43.17177933264777,43.17193613593898,43.17232818789626,43.17264179332716,43.17279764408806,43.17288724532994,43.17295790293055,43.17315348882662,43.17361495366541,43.17376946983085,43.17401342567184,43.17424393917076,43.17456789260229,43.17502818286828,43.17533119479638,43.17574885447369,43.17617154742232,43.17644358150407,43.17685866909396,43.1771751942999,43.17754245393346,43.17782466260859,43.1780429838611,43.17833453162012,43.17856995211043,43.17877196931195,43.17896213159302,43.17904929397518,43.17903370024631,43.17901403513476,43.17891256957044,43.17876587316162,43.17863170048435,43.17865757920056,43.17870536863314,43.17876839504345,43.17894978536714,43.17918174460333,43.17941763001529,43.17979832565509,43.18016156115311,43.18049813699768,43.18102091780857,43.18145863696879,43.18189066813307,43.18221164977565,43.18243096980189,43.18262020551359,43.18295052694455,43.18313569333746,43.18332170616326,43.18340202967319,43.18346594186969,43.18365087004963,43.18383589527821,43.18400793873195,43.18417178723578,43.1841778102583,43.18416588667981,43.18411619486032,43.18410276302312,43.18412113289683,43.18414268667195,43.18415062161669,43.18412454248313,43.184133545963,43.18430311389947,43.18447165634772,43.18472868385155,43.1850106283737,43.1853258403168,43.18572544119631,43.18631523578144,43.18699407217976,43.18737633105036,43.18791551084789,43.18836182177597,43.18871887527467,43.189160714552,43.18965368028523,43.19004530341546,43.19438976368949,43.1945683968987,43.19478368314149,43.19523946045131,43.19588763757717,43.19654703802527,43.19697127474483,43.19742939904612,43.1977531643867,43.19816298040679,43.19858246386966,43.19915286937128,43.19948128898307,43.20009881411639,43.20063224106215,43.20174329862371,43.20215512401862,43.20259270189772,43.20307254043325,43.20325676124598,43.20342633705638,43.20370415472372,43.2039877206389,43.20417342435297,43.20429435109617,43.2044367292253,43.20457010939918,43.20465879750606,43.20472617788547,43.20482109386774,43.20494313077614,43.20512509300245,43.20519871200544,43.20532964197349,43.2054683736948,43.20556793218121,43.20576581299218,43.20596826591905,43.2061374818524,43.20643772902752,43.20662336534519,43.20674427818948,43.20679841693486,43.206805118206,43.20682930892144,43.20681868389401,43.20674193599464,43.20669947707876,43.20667385182614,43.20669127040497,43.20669086867248,43.2067383262826,43.20685955482095,43.2071479197872,43.2073644828676,43.20764592776823,43.20792734011799,43.20829522675647,43.20864707019562,43.21144901190821,43.21154899671038,43.21157412989623,43.2115003024822,43.21132419781114,43.21119103701821,43.21094264724244,43.21058255977204,43.21024829924225,43.21014984026526,43.20972242379676,43.20926609935222,43.20902856542043,43.20894646588905,43.20877091407695,43.20845469462553,43.20831152889343,43.20783594197137,43.20740362297338,43.20739786468815,43.20749515963275,43.20748027534064,43.20748995439812,43.20744022128996,43.20734156812081,43.20714746069627,43.20686380549631,43.20673423324538,43.20672155828414,43.20686532432124,43.20704013115246,43.20717721653846,43.2074000876033,43.20762420812209,43.2077136255066,43.20785589908331,43.20802502932695,43.20819402045058,43.2083631723682,43.20848981600115,43.20853154246431,43.20854112022793,43.20855671110653,43.20862054191698,43.20877443841557,43.20887516230705,43.20890975576732,43.20877293193272,43.20855245132552,43.20831550162804,43.20798415610216,43.20777859599704,43.20736597120678,43.20704400570169,43.20680698852189,43.2066871256702,43.20634274613988,43.20580038094145,43.20564942686178,43.20559482076124,43.20565761025115,43.20585618443183,43.20595621751133,43.20603977042908,43.2061399174161,43.20613261423619,43.20608800728751,43.20601670282279,43.20585479273123,43.20566645837949,43.20555177607186,43.20541067443413,43.20523761533713,43.20503151660672,43.20463473162324,43.20428537233155,43.20404249299334,43.2038106041024,43.20362144435067,43.20345326352565,43.20335570330406,43.20325752678495,43.20319138485734,43.2031208371871,43.2030391313708,43.20291695334343,43.20282939861696,43.20271589796804,43.2026281230936,43.20245123652098,43.20227661038727,43.20211047070968,43.20198616538969,43.20187126873797,43.2017088474183,43.20147633431011,43.20117491706145,43.20100125607661,43.20087120969396,43.20084795267608,43.20083655901183,43.20081399163085,43.20080404606567,43.20091436091038,43.20126544622906,43.20168055724938,43.20210658107298,43.2022705208563,43.20230702636779,43.19989318621091,43.19981617972781,43.19965378384193,43.19959793907557,43.19959011954594,43.19963554422466,43.19975043287373,43.19990872764895,43.20003432652319,43.20010084208143,43.20026557694916,43.20033820681346,43.2004818980616,43.20062420028616,43.20072846654602,43.20083804572556,43.20093552144998,43.20095844750982,43.20096177983818,43.20105609089233,43.20119880695574,43.2012749955985,43.20167056320545,43.2016440353518,43.20167261433075,43.20162372608055,43.20155112248823,43.20143243207288,43.20096027994062,43.20074504043424,43.2005874342743,43.20045633966193,43.20029882779976,43.20014228290893,43.2001432843029,43.20019181870455,43.20050605856593,43.20070113181161,43.20084514997408,43.20094166852144,43.20098843138425,43.20111630780265,43.20136425911038,43.20161965005858,43.20196165460946,43.20214040150843,43.20241088142483,43.20264086130411,43.20281172617758,43.2029751206736,43.20304150851108,43.2031160355471,43.20313430477412,43.20309885726044,43.20307995482491,43.20304513619386,43.20302347682996,43.20301641571643,43.20314393311265,43.20329735087982,43.20348391576152,43.20363217973247,43.20375805056043,43.2038998731607,43.20407916407981,43.20425249244251,43.20440455377457,43.20455690392659,43.20478972123007,43.20497350509518,43.20517404744321,43.20533279677554,43.20540450057896,43.20564578524893,43.20589536182352,43.20608021267206,43.2062328366771,43.20636328993669,43.20649430634504,43.20667929551129,43.20696912129627,43.20708986237824,43.20721608041758,43.20732088405813,43.20740345981444,43.20757230571412,43.20774076985049,43.20782832927209,43.20789996224913,43.20803133564814,43.20808747422946,43.20813834727718,43.20833437160164,43.20853461281047,43.20885322966725,43.20913872121165,43.2093598119646,43.20966187409068,43.20976600414796,43.20973205313496,43.20961316464614,43.20954702547173,43.20952353705945,43.20950093739891,43.20953551990064,43.20959647592365,43.20959838337788,43.20955296195977,43.20952377097763,43.20950043376006,43.20951342066688,43.20962929337207,43.20969729837491,43.20965640364174,43.20961015620443,43.20929707459748,43.20890739412712,43.20738957066849,43.20713645984542,43.20705981341467,43.20707874090916,43.2071437920942,43.20725400447665,43.20730176396579,43.20730649340353,43.20728180533177,43.20719820488562,43.20707850587793,43.20696314113425,43.20685852322313,43.20681898089948,43.20675602345424,43.20684469230699,43.20706009470633,43.20805841299457,43.20822649748533,43.20829268909446,43.2082560023299,43.20820993240428,43.20813457435559,43.20805074784121,43.20779691700344,43.20694835254549,43.20646490041446,43.20619383105872,43.20587463224012,43.20548060061502,43.2046039844328,43.20387872804206,43.20319852552928,43.20255874351032,43.2021589458091,43.20185023985363,43.20081450002446,43.20028614560286,43.19984826393971,43.19937298056614,43.19849964152538,43.1978635837207,43.19735040592987,43.19668227762712,43.19599345121874,43.19542854279359,43.1950613822024,43.19463919002119,43.19440040963806,43.19418325935123,43.19406310980189,43.19413516392959,43.19433545629602,43.19450280181687,43.1946969422761,43.19489111478742,43.19517689321697,43.19538728165,43.19567282037659,43.1960874143828,43.19629205453707,43.19652362990829,43.19683105764579,43.19695013459594,43.19707025110069,43.1970884837738,43.19711785390484,43.19717857891477,43.19731938615799,43.19752555982116,43.19756795605927,43.19746837980462,43.19723993744385,43.19686754871619,43.19653766230923,43.19626097881841,43.19592561963794,43.19556370807329,43.19524949848356,43.19473295911011,43.19440254389293,43.19404012812782,43.19303223071712,43.1919712894483,43.19159300468517,43.19139112489825,43.1911469381773,43.19104722365593,43.19084634577554,43.1904052602453,43.19016082486495,43.18991137236318,43.18970416254751,43.1893747408699,43.18894364994437,43.18858704084178,43.18815011293906,43.18756889649178,43.18716910632583,43.18610571011548,43.18554069118947,43.18520486952411,43.18476239251814,43.18421868047516,43.18351481972805,43.18315749994404,43.18266148792424,43.1822348072764,43.18161381537337,43.18099002264628,43.18008098867696,43.17951575467023,43.17863863057378,43.17825472297703,43.17787618167669,43.17718845344941,43.17659160868946,43.17622939778816,43.17592577278273,43.17554442551014,43.1750681745415,43.1743305645405,43.17384610312821,43.17322614198092,43.17303495884453,43.17268977679446,43.17236439635094,43.17229349629012,43.17208847267631,43.17172656436472,43.17105244076211,43.17039670983206,43.16754528328909,43.16696807887993,43.166691797901,43.16605858405041,43.16560563160905,43.16494999207383,43.16460914004392,43.16435922292037,43.1642465169407,43.16402255522327,43.19124883127178,43.20624580941165,43.22083601820304,43.23532780953518,43.24932031369276,43.2640405112387,43.27851129904155,43.29312534736654,43.30764609547007,43.32209448916278,43.33659241322466,43.36549505620697,43.380183490575,43.3945580443358,43.40894433844772,43.42347668153153,43.43799310653019,43.45255406089247,43.46729595062897,43.48205365394828,43.49660745078342,43.511066177964,43.52553409547855,43.54003388860421]}]],[[{"lng":[-88.04052010655988,-88.0405657554798,-88.06069272508813,-88.10050273968879,-88.12048023945951,-88.14050418918985,-88.16089247082365,-88.18076597476048,-88.22066153599803,-88.24079168724691,-88.26069782382322,-88.28109837573015,-88.30097707462798,-88.32105258707949,-88.34139921169078,-88.36153599354644,-88.38150514784591,-88.40038722566466,-88.40048473507235,-88.40027033538985,-88.40049339711108,-88.40063486622796,-88.4007897580849,-88.40084772887296,-88.40117467317546,-88.40129353556767,-88.40141647705669,-88.40161293030467,-88.41842519465703,-88.41868420102017,-88.4187220875307,-88.41869873265193,-88.41896999426521,-88.41924784992437,-88.41901555768169,-88.41874544730426,-88.41854482845476,-88.41840983888821,-88.41799159606697,-88.37903858294756,-88.35972494246954,-88.33979058416247,-88.31989702782737,-88.30004972627486,-88.28135077568176,-88.27431626621818,-88.27258925249244,-88.27039017910155,-88.26137432404036,-88.24152890790469,-88.22176665419151,-88.20201831238045,-88.18229922424693,-88.14272821863607,-88.12289548547963,-88.10300801840647,-88.08313733353911,-88.06337064821824,-88.06356097158179,-88.06380500395962,-88.06389079088187,-88.06385766436534,-88.06364349265742,-88.06322052367899,-88.06311859736117,-88.06282164277093,-88.062833315501,-88.06277736110481,-88.06240606313712,-88.06001148730822,-88.03994757185127,-88.04026665502197,-88.04052434388848,-88.04080604103498,-88.04085200235829,-88.04081031747339,-88.04082537293851,-88.04083231007003,-88.04067114555838,-88.04070334567498,-88.04071839461524,-88.04076467436306,-88.04075621422199,-88.04077906001024,-88.0407921697969,-88.04061024427924,-88.0405438547278,-88.04052010655988],"lat":[43.52761788609668,43.54245288718558,43.54242180833634,43.54247809652309,43.54260225855359,43.54270314019833,43.54290963327492,43.54292619148728,43.54303987959839,43.54285330901683,43.5429216858072,43.54290872829484,43.54307683445758,43.54315433361464,43.54330623264602,43.54335499784923,43.54336716666524,43.54353172662881,43.52967937930915,43.51510034993555,43.50043708543167,43.48224659082728,43.45679621015693,43.44286867146754,43.42833989691621,43.39925958184434,43.38471744223489,43.370013664638,43.37024924954844,43.35436840615627,43.33989755886728,43.32546522800874,43.31090186783978,43.28194443383148,43.26741227810466,43.25297326782923,43.238439462054,43.22383785294426,43.19471211504208,43.19356997175885,43.19305618931592,43.19289482713996,43.19293290305888,43.19304980299687,43.19316587857562,43.19315091475013,43.19315806298565,43.19318478642206,43.19322179008228,43.19318869821051,43.19304988513917,43.19288593144706,43.19256989392087,43.19210357730323,43.19192626916827,43.19188136362271,43.19206345461876,43.19211553761593,43.20657761575723,43.22111654758722,43.23564516984783,43.25020663452576,43.26469386911857,43.27893301158491,43.29338774487895,43.30786334562508,43.32229658496487,43.33676776016401,43.36727794246322,43.36723735143967,43.36725795629837,43.38180830848151,43.39627681965879,43.41076681328136,43.42521671750971,43.4323026775112,43.43276945244415,43.43971160991319,43.45451664994476,43.4596443698906,43.46011142363726,43.4690370528018,43.47020797525249,43.47069682963846,43.48361340721895,43.49823171878192,43.51288111389557,43.52761788609668]}]],[[{"lng":[-87.7918286273507,-87.79185615959284,-87.80081614031187,-87.82090766490433,-87.84088502276668,-87.86088554730206,-87.88100713465224,-87.90091956911125,-87.92104899772424,-87.94110570420469,-87.96075621026934,-87.98088938899572,-88.02084046220357,-88.0405657554798,-88.04052010655988,-88.0405438547278,-88.04061024427924,-88.0407921697969,-88.04077906001024,-88.04075621422199,-88.04076467436306,-88.04071839461524,-88.04070334567498,-88.04067114555838,-88.04083231007003,-88.04082537293851,-88.04081031747339,-88.04085200235829,-88.04080604103498,-88.04052434388848,-88.04026665502197,-88.03994757185127,-88.06001148730822,-88.06240606313712,-88.06277736110481,-88.062833315501,-88.06282164277093,-88.06311859736117,-88.06322052367899,-88.06364349265742,-88.06385766436534,-88.06389079088187,-88.06380500395962,-88.06356097158179,-88.06337064821824,-88.04349239301756,-88.02378745201553,-87.98392872747706,-87.96412337787197,-87.95753931123069,-87.94427904076873,-87.90460877413194,-87.89266075178193,-87.89267833327122,-87.89269354992298,-87.8928363466338,-87.89307611369669,-87.89312902429447,-87.89321157567672,-87.89337703617389,-87.89340629462718,-87.89350460612165,-87.89370016787858,-87.89379046734318,-87.8939717782487,-87.89407646219939,-87.89409110418265,-87.89422738989629,-87.89449025120938,-87.89473036629862,-87.89518147854174,-87.89524905965574,-87.89526466958712,-87.89546859313127,-87.89559582426047,-87.89562546387498,-87.89570909816611,-87.89582209526615,-87.89592445941213,-87.89601731108559,-87.89603178156626,-87.89604737545928,-87.89609264312658,-87.89628840308957,-87.89634846871283,-87.89636369055373,-87.89658989035728,-87.89666440688924,-87.89692065187585,-87.89701154992414,-87.89710152284812,-87.89722187039659,-87.89726675237061,-87.89729760559534,-87.89731241919438,-87.89731266481056,-87.89732824593247,-87.89732770352083,-87.897343091389,-87.89735777566166,-87.89737337067979,-87.89738823018206,-87.89738825149301,-87.8974036533703,-87.8974029178549,-87.89741831975847,-87.89741839991368,-87.89743380188034,-87.8974348062834,-87.89744943837636,-87.8974503247711,-87.89746513958775,-87.89746465414437,-87.89748024530846,-87.89748131094665,-87.89749594233386,-87.89749600897652,-87.89751141092511,-87.89751067900399,-87.89752607771923,-87.8975415464336,-87.89755636065475,-87.89755766248329,-87.89758807547231,-87.8975883395364,-87.89757373897929,-87.89755922312074,-87.89754385494643,-87.89754464307771,-87.89753003984228,-87.89751472096719,-87.89750012028394,-87.89748570151241,-87.89746955271929,-87.89748576771623,-87.89747123747574,-87.89739597713097,-87.89735147379766,-87.8972616244978,-87.89706803780913,-87.89703815092186,-87.89700897550856,-87.89700908921573,-87.89699449181775,-87.8969799862205,-87.89695006717794,-87.89678568643653,-87.89665195371099,-87.89657662156358,-87.89650208779231,-87.89648750627573,-87.89638221663154,-87.89627689850113,-87.89611318546179,-87.89603866676563,-87.89597878180531,-87.89594965785587,-87.89578528262491,-87.89574079994874,-87.89573319501383,-87.89574176257902,-87.89575601882221,-87.89575681517921,-87.89578689021761,-87.89580248444156,-87.89583238986066,-87.89587786618263,-87.89589346319211,-87.89589290568424,-87.89590772541681,-87.8959229752973,-87.89593779504276,-87.89593801481166,-87.89598288770694,-87.89604441547908,-87.89608912163158,-87.89610470492887,-87.89611956887858,-87.8961343847666,-87.89615001630182,-87.89616407189699,-87.89619514088616,-87.89620918922773,-87.89625492428821,-87.89625575786472,-87.89627058515521,-87.89627158681527,-87.89628545234225,-87.89630131413854,-87.89631614001357,-87.89631636784338,-87.89633118801164,-87.89634683168637,-87.89636164958702,-87.89636186337881,-87.89637669005519,-87.8964366054162,-87.89660278051619,-87.89661763972261,-87.89661847930607,-87.89658855246873,-87.89658872787737,-87.89660429002829,-87.89662008507317,-87.89663554151328,-87.89663563595542,-87.89665033714068,-87.89666535084365,-87.89668047378166,-87.89671171149074,-87.89672653960855,-87.8967259851614,-87.89674157119315,-87.89674102634221,-87.89675661075097,-87.89675605787606,-87.89677164249045,-87.89678652147262,-87.89687703976007,-87.89699063786375,-87.8971400008473,-87.89720004583168,-87.89729013393317,-87.89734328562042,-87.89746363224639,-87.89747885807502,-87.89755454068141,-87.89768996512284,-87.8979300961969,-87.89799199287189,-87.89800604294014,-87.89805173285016,-87.89809680707016,-87.89819423310357,-87.89854072702825,-87.89873590830537,-87.89888604555679,-87.89894686869022,-87.89902156103197,-87.89916381227188,-87.89926181309242,-87.89937480749686,-87.89959218063169,-87.89964511893041,-87.89980358821043,-87.89993122252147,-87.90013476381044,-87.90032959114755,-87.9005030378667,-87.90056985495481,-87.90062279578683,-87.90078128569628,-87.90081844131564,-87.90097691940827,-87.90111129765661,-87.90124757635814,-87.90133766489051,-87.90151075899146,-87.90158585246471,-87.90158528309455,-87.90161493372497,-87.90173609144657,-87.90173552227868,-87.90187957331108,-87.90201433557679,-87.90211984969569,-87.9024210392233,-87.90263882560475,-87.90276688902486,-87.90293987514011,-87.90313592208952,-87.90323334100229,-87.90337678632353,-87.90348906582602,-87.90354200182009,-87.90385728034377,-87.90388810593478,-87.90398632436785,-87.90412938859743,-87.90432426251729,-87.90439225136139,-87.9045203026236,-87.90465550242025,-87.90483676438004,-87.9049638739971,-87.90510733984561,-87.90522812755498,-87.90533213883025,-87.90540823494742,-87.90548360466381,-87.9057094005648,-87.90582226665153,-87.90592013503057,-87.90603301291917,-87.90607093834592,-87.90620579274704,-87.90634165548023,-87.90644703473106,-87.90645494536078,-87.90653799379086,-87.90659832568612,-87.90670313132287,-87.90683218391574,-87.90686935254196,-87.90701247908858,-87.90704928076332,-87.90706496296932,-87.90719323406537,-87.90729091657835,-87.90729035837715,-87.90755426932938,-87.90765195473791,-87.90774293019565,-87.90775741702983,-87.90777301257317,-87.90778791241581,-87.90780350552515,-87.90780295759117,-87.9078185627546,-87.90783344983912,-87.90786353240482,-87.90801445151182,-87.90804549578741,-87.90806018572921,-87.90807578155361,-87.90819554261705,-87.90831658517062,-87.90845952290717,-87.90854218024204,-87.90867925272927,-87.90887445595274,-87.90893522917388,-87.90904097433494,-87.90910109548473,-87.9091465057503,-87.90919201983917,-87.90938764633817,-87.90943338369912,-87.90944822236551,-87.90944845211892,-87.90946405537581,-87.90946350983232,-87.90947910271764,-87.90949396754691,-87.90956875510287,-87.9097342530092,-87.90979516513474,-87.90980966434516,-87.90982527137658,-87.90984095242615,-87.90985500987746,-87.9098703544103,-87.90988576922594,-87.909886587679,-87.90990142360479,-87.90990168446771,-87.90991708712352,-87.90991717363819,-87.90993181643962,-87.90994729979192,-87.90996213500834,-87.90997700949411,-87.91002268362728,-87.91003756959046,-87.91005316470658,-87.9100977321423,-87.91017309890459,-87.91020340864269,-87.91021900387088,-87.91021846674616,-87.91023406195038,-87.91023351525709,-87.910248927868,-87.91024898845541,-87.91026439068575,-87.91027910474251,-87.91029471131047,-87.91029416298416,-87.9103095781758,-87.910324665432,-87.91033949297305,-87.9103397142177,-87.91035531749304,-87.91038489785029,-87.91056629322392,-87.91056651445346,-87.91058134221714,-87.91058156366273,-87.91059716716839,-87.91059662240991,-87.91061203372995,-87.91061206456806,-87.9106267089475,-87.91064218206932,-87.91068729144533,-87.91070277410486,-87.91073244900556,-87.91077799126001,-87.91079358962155,-87.91079305030111,-87.91080864876332,-87.91080811804568,-87.9108237164894,-87.91082318900347,-87.91083878506011,-87.91086838464501,-87.91088398325302,-87.91089972694986,-87.9109145550887,-87.91091486549648,-87.91093029961682,-87.91093142303144,-87.91094547927578,-87.9109465093908,-87.91096134025106,-87.91096083181903,-87.91097642643115,-87.91097589841095,-87.9109915067546,-87.91100717305925,-87.91102201023392,-87.91103767902416,-87.91105232416054,-87.91105237246754,-87.91106798101676,-87.91108423419503,-87.91111516410666,-87.91112999121319,-87.91122008278785,-87.91123569164138,-87.91129574002065,-87.91131134910484,-87.91135628730575,-87.91137175198601,-87.91138659072514,-87.91138681242181,-87.91140225717945,-87.91141709751341,-87.91144754428983,-87.91144860478704,-87.91143399912856,-87.91143329730077,-87.91144873279485,-87.91143411725471,-87.91144953288561,-87.91146496837221,-87.91146503881315,-87.91148063617956,-87.91148092839993,-87.91149636397114,-87.91149566229268,-87.91151126932846,-87.91151152236318,-87.91152693967713,-87.91155634241062,-87.91157193996311,-87.91157141228508,-87.91160227421375,-87.91161699022979,-87.91163258790797,-87.91163206096286,-87.91164767066761,-87.91164813850976,-87.91166355625735,-87.91167825149185,-87.9117233671757,-87.91170959089823,-87.91169420446481,-87.91169424374948,-87.9116788668447,-87.91167966463921,-87.91166428688054,-87.91166435759204,-87.91167977273145,-87.91167982424173,-87.91169466277974,-87.91169488561587,-87.91172534306909,-87.91174003852502,-87.91175545650285,-87.91175555434189,-87.91171099406509,-87.91169645492607,-87.911621918649,-87.91160659919863,-87.91159121235579,-87.91159201953985,-87.91157741293333,-87.91157753203046,-87.91159141077755,-87.91159221878939,-87.9116078194541,-87.91160727069116,-87.91162288092599,-87.9116223410707,-87.91163775909673,-87.91163811506188,-87.91162350836393,-87.91162434501626,-87.91159438791131,-87.91157908004799,-87.91151917962988,-87.91147535444453,-87.91147477279975,-87.91149098611068,-87.9114756109298,-87.91147569945115,-87.91144574077975,-87.91144577174335,-87.91143116454778,-87.91143198999001,-87.91141585529847,-87.91141687068675,-87.91140228009392,-87.91138777037561,-87.91129790844464,-87.91129795672448,-87.91126800129106,-87.91126810591248,-87.91123448623784,-87.91124713179553,-87.91126254636251,-87.91126366932818,-87.91123355707677,-87.91117377400371,-87.91112901635384,-87.91109844030365,-87.91108367969862,-87.91106925171208,-87.91102452923354,-87.91101010378533,-87.91097947230196,-87.91086112446582,-87.91086097069751,-87.91084577439885,-87.91084564281302,-87.91083122355855,-87.91083107044656,-87.91081587341422,-87.91081572120191,-87.91080129478048,-87.91080192778023,-87.91078596181246,-87.91077126674058,-87.91075684105256,-87.91075679365419,-87.9107423679134,-87.91072789284758,-87.91071251292128,-87.91071256127547,-87.9106979527311,-87.91068327352234,-87.9106688467226,-87.91066796212634,-87.91065353620978,-87.91059359552753,-87.91057917913047,-87.91056447102601,-87.91054928384162,-87.91053458775635,-87.91052016069959,-87.91052080575618,-87.9105048488062,-87.91049088058406,-87.9104603237227,-87.91044635956116,-87.91043039292678,-87.91043106439103,-87.9104158666748,-87.91041652027373,-87.91040209385372,-87.91037127662975,-87.91035684695819,-87.91035748268735,-87.91034228481645,-87.91034217018949,-87.91032774021183,-87.91032767181675,-87.91031324522082,-87.91031334979867,-87.91029874842241,-87.91029786562365,-87.91028343493815,-87.9102840705583,-87.91026811479037,-87.91026873748191,-87.91025432031785,-87.91022421435495,-87.91020979324948,-87.91020887065035,-87.91019367314787,-87.91017970730553,-87.91016451863737,-87.91016458651691,-87.91014996465736,-87.91013463297402,-87.9101357242568,-87.91012034391063,-87.91010565619932,-87.91009123622081,-87.91007668991745,-87.90997219778838,-87.90994220556099,-87.90994203488022,-87.90989686228491,-87.90986747604333,-87.90980768265496,-87.90973316406182,-87.90967319598671,-87.90967398495724,-87.90964322149648,-87.90964304968908,-87.90958327282551,-87.90956850918415,-87.90952333535758,-87.90949394810873,-87.90935956535998,-87.90910567531805,-87.90901570285095,-87.90883589368102,-87.90862668595683,-87.90853673648178,-87.90850813520507,-87.90847757224638,-87.90843305628864,-87.90843310191499,-87.90841771809779,-87.90841835143577,-87.90840392295995,-87.90838941799745,-87.90837326681687,-87.90837388042441,-87.90835867971462,-87.90835929580302,-87.90834410628636,-87.908329362956,-87.90829879999154,-87.90830016408067,-87.90828419570941,-87.9081205629394,-87.90806059048246,-87.90806139656102,-87.90803063960799,-87.90801586864343,-87.90800143981619,-87.90800070528833,-87.90797148953524,-87.90797131622259,-87.90795688480958,-87.90795615273771,-87.90792693172249,-87.90792677687655,-87.90789621299544,-87.90782174071998,-87.90779252437994,-87.90779313664282,-87.90777793601772,-87.90777720129675,-87.90774798404823,-87.90774780812389,-87.90773337879843,-87.90773264403929,-87.90771803181768,-87.907703463377,-87.90767347520129,-87.90765890586135,-87.90762815712601,-87.90762875347293,-87.90761355271786,-87.90755422282834,-87.90752442926298,-87.90749505274708,-87.907479092203,-87.90747988667707,-87.90746450328915,-87.90745051311777,-87.90743455018648,-87.90743536513887,-87.90742075250805,-87.90742059629635,-87.90740539612288,-87.90740545524618,-87.90739009106322,-87.90739098604237,-87.9073756016335,-87.90736089960834,-87.90734646978167,-87.90733183441543,-87.90731663228729,-87.90731728753622,-87.9073020894229,-87.90730292091078,-87.90728676479989,-87.90728741632454,-87.90727298408162,-87.90725756519403,-87.90724313528888,-87.90721376909069,-87.90716857659491,-87.90710849395791,-87.90709405963742,-87.90709390403038,-87.90707948359319,-87.90706414165604,-87.90706495629031,-87.90704957145822,-87.90704943213896,-87.90703500198248,-87.90701950245156,-87.90700507229064,-87.90698975000041,-87.90690039837793,-87.90670600283934,-87.90670659790784,-87.90666141303646,-87.90661664988518,-87.90660221598353,-87.90660205235706,-87.90658685006623,-87.90657208673046,-87.90655689334169,-87.90648218953982,-87.90646776859002,-87.90645245049144,-87.90643783653846,-87.90643864698818,-87.90642249404047,-87.90639313064638,-87.90636333033429,-87.90630399426772,-87.90628879097335,-87.90624404194865,-87.90621424114255,-87.9061841515383,-87.90616972035664,-87.90615438611647,-87.9061249876338,-87.90611055649158,-87.90611037809842,-87.90609441738538,-87.90602048018474,-87.90599066826192,-87.90596130488113,-87.9059453406506,-87.90594595386214,-87.90593151919929,-87.90591603621087,-87.90590160482246,-87.90590223147105,-87.90588626012655,-87.90588689008004,-87.90587245523098,-87.90587154614543,-87.9058571145965,-87.90585714899679,-87.90582715333694,-87.9058134672336,-87.90579715482222,-87.90578272305584,-87.90576048425805,-87.9057458596955,-87.90573899385311,-87.90569363007828,-87.90567884434958,-87.90561904947573,-87.90560369763877,-87.90548447978836,-87.90537994618822,-87.9053353312343,-87.9053353562874,-87.90530460126612,-87.90529062196521,-87.90527618561924,-87.90527602666251,-87.90526083324063,-87.90526066540627,-87.90524624293428,-87.90524608467602,-87.90523088087362,-87.90521636246193,-87.90518715306379,-87.90518699480889,-87.90517103211845,-87.90515649864797,-87.90514188285617,-87.90514172372474,-87.90512728802179,-87.90512733114772,-87.90509735132956,-87.90509738510454,-87.90505278690431,-87.90505261358318,-87.90503740863662,-87.90503744402614,-87.90500821503849,-87.90496293307294,-87.90493371343672,-87.9049329698219,-87.90490373451443,-87.90488895667549,-87.90484375680548,-87.9048291630092,-87.90469454855894,-87.90466517285086,-87.90464920073209,-87.90465000831047,-87.90463540752674,-87.9046046340892,-87.90458984670879,-87.90454465729225,-87.90454447963715,-87.90450081558089,-87.90450083347753,-87.90447005795963,-87.90444086576812,-87.90418626213442,-87.90418608417558,-87.90411166143696,-87.90411166956416,-87.90388006005499,-87.90375311308915,-87.90375293514836,-87.9037377403007,-87.90367777209489,-87.90367759650597,-87.90366316279818,-87.90366396549354,-87.90364856699129,-87.9036486339249,-87.90363402208035,-87.90363337911957,-87.90361875935294,-87.9036188554922,-87.90360423806619,-87.9036050637832,-87.90357429343047,-87.90357509605077,-87.9035443416266,-87.90348605972456,-87.90347142850241,-87.90344083646022,-87.90342621880747,-87.90342704393035,-87.90341165382732,-87.90339709817451,-87.90330714110435,-87.90326329293306,-87.9032631155095,-87.9032471498069,-87.90321775582363,-87.90318794991465,-87.90318777155831,-87.90309872819,-87.90308342840697,-87.90294888261991,-87.90287463489791,-87.90261951156299,-87.90261952621304,-87.90255573253299,-87.90254472151503,-87.90251568337709,-87.90251494667685,-87.90248571032912,-87.90248555039713,-87.9024703428264,-87.90247116733462,-87.90245577954526,-87.90244103574464,-87.90242660069048,-87.90242587845781,-87.90239666034384,-87.90239649616478,-87.90238129260268,-87.90236749404475,-87.902336720314,-87.90233656021537,-87.90232212503986,-87.90230678681229,-87.90221835630547,-87.90221817830631,-87.90220220260836,-87.90220279552499,-87.90218759809822,-87.90218838921298,-87.9021284056182,-87.90212823079473,-87.90211302272074,-87.90209824009288,-87.90202361006968,-87.90176909563911,-87.9017244925043,-87.90170990626314,-87.9016791491436,-87.90164990670672,-87.90163530612107,-87.90160452581063,-87.90160511934019,-87.90158991076056,-87.90158973244677,-87.9015753063604,-87.90142690833031,-87.90139688654359,-87.90139671145805,-87.90138150277271,-87.90135229661611,-87.90126227401235,-87.90123229053005,-87.9012022699854,-87.90120305504571,-87.90117226166012,-87.90117227989171,-87.90099297020126,-87.90090294220249,-87.90090294657864,-87.90087293326192,-87.90087372005438,-87.90084369700529,-87.90084294246296,-87.9008129308865,-87.9008135231703,-87.90073829486968,-87.90070907044532,-87.90049899815688,-87.90049882262775,-87.90043899664551,-87.90042497288991,-87.90039438887835,-87.90039441974723,-87.90034980361342,-87.90035039468025,-87.90033518686751,-87.90033521768835,-87.90030520824061,-87.900305800285,-87.90029060195428,-87.90029042465451,-87.90027521675337,-87.90027580797269,-87.90026060950672,-87.90026062990134,-87.90020064141993,-87.90002137567156,-87.89996215838428,-87.89993136261761,-87.89993137622552,-87.8998875165119,-87.89988753010253,-87.89985673431417,-87.89982752588764,-87.89979673959458,-87.89979733065061,-87.89973826186146,-87.89970749613693,-87.89961823120487,-87.89961824466918,-87.89958746053938,-87.89958747482345,-87.89942352138279,-87.8993340676427,-87.89919878945292,-87.89909393582052,-87.89904948138027,-87.89904949462598,-87.89896020951308,-87.8989594541837,-87.89889941259028,-87.89884015916412,-87.89866005874232,-87.89864525666256,-87.89861542335737,-87.89861466788726,-87.89852595537997,-87.89833139341025,-87.89818859679582,-87.89787411106498,-87.89759699312165,-87.89728212254379,-87.8971928548975,-87.89716361211062,-87.89713282574237,-87.89713341287322,-87.89710357837244,-87.89710340993578,-87.89704356002783,-87.89701355536607,-87.89698352676695,-87.89698354254841,-87.8967739968251,-87.89671453265152,-87.89664714884199,-87.89653456667379,-87.89627971065342,-87.89584568685174,-87.89583106551069,-87.8957556185884,-87.89568076175944,-87.89554584778175,-87.89504462093944,-87.89456488827469,-87.89422775981463,-87.89403237373328,-87.89403315702742,-87.89394307789514,-87.89392826911937,-87.89389843099245,-87.89386842018173,-87.89383838609797,-87.89383917015357,-87.89374910039484,-87.89373370736944,-87.8936443814507,-87.89347944351087,-87.89334488181521,-87.89334412425836,-87.89326905710271,-87.89302996446607,-87.89295508516298,-87.89287982110103,-87.89287982216969,-87.8928351695661,-87.89280495206968,-87.89259570975941,-87.89258109361505,-87.89252025985772,-87.89252026078653,-87.89237167425891,-87.89234088227482,-87.89231162812845,-87.89229624405644,-87.8922662170976,-87.89226622874951,-87.89220697553854,-87.89217694837878,-87.89217753559396,-87.89214693672318,-87.89208749889836,-87.89207229329858,-87.8920420974892,-87.8920276547486,-87.89202747094848,-87.89201226607706,-87.8920128551086,-87.89193760048612,-87.89186299440576,-87.89183296795893,-87.89183355613604,-87.89178831471831,-87.89178832850996,-87.89165435171472,-87.89165436212683,-87.8915340482632,-87.89118981608827,-87.89077005380476,-87.89057442421044,-87.89021536474375,-87.89001241836237,-87.88984068836292,-87.88963126150151,-87.8896310765162,-87.88958661117786,-87.88958663283971,-87.88955583423659,-87.88955662551992,-87.88946732663986,-87.88946714572928,-87.889451928383,-87.88940787484188,-87.88939189027732,-87.88936246772371,-87.889339550988,-87.88930263563306,-87.88927337196513,-87.88927262467348,-87.88924336276905,-87.88924337522563,-87.88918332564349,-87.88918313876204,-87.88913868225984,-87.88910924976442,-87.88909326494607,-87.88907923965407,-87.88906326288756,-87.88906404477991,-87.88903401595519,-87.88903384039871,-87.88882459224658,-87.88879438757263,-87.88873451700938,-87.88873453045284,-87.88864519344664,-87.88857112344593,-87.88854051614784,-87.88852514824153,-87.88849588250315,-87.88849570953458,-87.88848049443335,-87.88846592596244,-87.88845128572969,-87.88842130379264,-87.88840667323035,-87.88839190884003,-87.88837669427748,-87.8883767145832,-87.88836208139423,-87.88834733260836,-87.88833211393514,-87.88833291682191,-87.88830291569019,-87.88830390831774,-87.88831934214893,-87.8883194901082,-87.88833491420104,-87.88833502329017,-87.88832038884755,-87.88832024963295,-87.88830579925552,-87.88830564752448,-87.888290429143,-87.88829102535601,-87.888275819404,-87.8882610230214,-87.88824580393378,-87.88823104225204,-87.88821659245214,-87.88821672156861,-87.88823215549031,-87.88822448559749,-87.88823201198907,-87.88821756542336,-87.88821758765184,-87.88823223975915,-87.88826321585556,-87.88827864108379,-87.88829410432282,-87.88830876085812,-87.88830879056655,-87.88832421597974,-87.88832346781591,-87.88833889240883,-87.88833959312477,-87.88832514635118,-87.88832440821967,-87.88830978542302,-87.88831062863711,-87.88829522724726,-87.88829604812925,-87.88828064667938,-87.8882806762721,-87.88826604345232,-87.88826611945406,-87.88825071596813,-87.88823612352448,-87.88820685865765,-87.88820610863939,-87.88817685338628,-87.88816224262075,-87.88811679915204,-87.88810198435078,-87.88808677490475,-87.88807216302303,-87.88802750119811,-87.8880273178591,-87.88801287775814,-87.88801269432743,-87.88799670696676,-87.88799807185822,-87.88798208339695,-87.88795264165489,-87.88793742135941,-87.88793724925905,-87.88787736724517,-87.88783271690282,-87.88780266895289,-87.88778805817719,-87.88774338739513,-87.88771258713041,-87.88768331916908,-87.88765387877012,-87.88759381129643,-87.88756318891122,-87.88753373700555,-87.88748848790476,-87.88747386688753,-87.88744459678021,-87.88742920275642,-87.8873991548335,-87.88739897843058,-87.88738453057614,-87.88735451188096,-87.88730906733792,-87.88711503302331,-87.88699563466055,-87.88696560638479,-87.88690552691443,-87.88686087002844,-87.8868308201438,-87.8868308327571,-87.88680078046755,-87.88678596128634,-87.8867553373136,-87.88675611806346,-87.88669602606481,-87.88659184893152,-87.88653118184027,-87.88648634091763,-87.88647189141064,-87.88647170554239,-87.88645572481536,-87.88644188859702,-87.88642725459876,-87.88642730209465,-87.88641111658106,-87.88641173024408,-87.88639728156109,-87.88639787452026,-87.88638189511646,-87.88636804703376,-87.88633724695545,-87.88633707090936,-87.88632262206683,-87.88630727071946,-87.88629264802938,-87.8862934361124,-87.88627881168779,-87.88627885624599,-87.8862488446304,-87.88624889409269,-87.88623425836001,-87.8862040981287,-87.88618964656563,-87.8861740832823,-87.88615963417499,-87.88615945546411,-87.88612961115506,-87.88610017327636,-87.88608495249076,-87.88608476392497,-87.88607032453805,-87.88603933456157,-87.88601025969942,-87.8860094996257,-87.88596559790587,-87.88596561825447,-87.88592093864217,-87.88590556151712,-87.88589092680277,-87.88589075042229,-87.88587629747515,-87.88586091964754,-87.88584628469836,-87.88583093151115,-87.88578708136703,-87.88578713523141,-87.88577173914935,-87.88577253717311,-87.88575789876758,-87.88572875476251,-87.88571256940234,-87.88569855528441,-87.88568334294901,-87.88568335230049,-87.88565331568897,-87.88565333567067,-87.88563870037538,-87.88562390382612,-87.88560869133158,-87.88559407152839,-87.88556403963739,-87.88556405601082,-87.88554864913141,-87.88554945604744,-87.88553404812082,-87.88551926091651,-87.88550481075542,-87.8855048384937,-87.88549019316595,-87.88547483964111,-87.88546020394475,-87.88546034012012,-87.88547577326368,-87.88549128233593,-87.88553684117618,-87.88554465410934,-87.88553776865767,-87.88552314910586,-87.88549310358677,-87.88549313050368,-87.88547848467279,-87.88547851071688,-87.88546309326024,-87.88545617935436,-87.88547856464386,-87.88547171191384,-87.88547947042218,-87.88550958058133,-87.88551037612973,-87.88555513260417,-87.88558526136374,-87.8856006892768,-87.88560148737139,-87.88561614214331,-87.88561621279462,-87.8856015763552,-87.88560161343572,-87.88558697697862,-87.88557145376321,-87.88555700257467,-87.88554240792078,-87.88552777129269,-87.88552780736296,-87.88551317854565,-87.88551246842094,-87.88549783168143,-87.88549843360227,-87.88548245074135,-87.88548327594711,-87.88546863495739,-87.88546845767391,-87.88545401591213,-87.88545460858515,-87.8854239865816,-87.88539377313471,-87.88537931746824,-87.88537914195399,-87.8853639172297,-87.88536393687033,-87.8853046318539,-87.88530464992871,-87.88527382884716,-87.88522999523163,-87.88521535469846,-87.88521536365761,-87.88518532446149,-87.88518514019989,-87.88516991607445,-87.88515531387166,-87.8851406725489,-87.88514075353905,-87.88515618102566,-87.88515710074046,-87.88517251956887,-87.88517256179395,-87.88520188303848,-87.88521810838012,-87.88523199572721,-87.8852327923119,-87.88524822114927,-87.88524908647848,-87.88523290717615,-87.88521831250343,-87.88515822322017,-87.885158807935,-87.88514358318849,-87.88514417870537,-87.88512895296354,-87.88512876534364,-87.88511432275851,-87.88511413515216,-87.88509891368867,-87.885098928848,-87.88506965086243,-87.88506889062992,-87.88502497795649,-87.88502479448609,-87.8850088068825,-87.88499476245306,-87.88498031622004,-87.88496572252346,-87.88493490169088,-87.8849202851938,-87.88490487533056,-87.88489084038278,-87.88487484520002,-87.88486161136872,-87.88484639609834,-87.88483156765747,-87.88481634589682,-87.88480153468035,-87.88478708182895,-87.8847863277156,-87.88477168933716,-87.8847716979086,-87.88475705959252,-87.88474246056128,-87.88472704888267,-87.88472706562597,-87.88471167394955,-87.88469703558019,-87.88469781303789,-87.88466700925339,-87.88457762814789,-87.88457762576132,-87.88447283289823,-87.88445801686677,-87.8844427913133,-87.88442799239901,-87.88441353500113,-87.88439796268534,-87.88438350952961,-87.88438276568148,-87.88435348538948,-87.88430864725389,-87.88429420032736,-87.88427882294975,-87.88426418386126,-87.88421952494971,-87.88417484071805,-87.88417409333354,-87.88415945412248,-87.88413021408383,-87.88413028472128,-87.8841457142298,-87.88414496757204,-87.88416118067877,-87.88417661207961,-87.88417589744323,-87.88416126538489,-87.88416189140567,-87.88414667408148,-87.88414748402576,-87.88413207466527,-87.88413209066169,-87.8841166784795,-87.88410263841369,-87.88408663945252,-87.88408743680388,-87.88407279725294,-87.88407261873569,-87.88405739307359,-87.88405741076477,-87.88402812611434,-87.88401273863522,-87.88398268413802,-87.88398326835643,-87.88395340901107,-87.88393802131192,-87.88390873905303,-87.8838933598355,-87.88387871028793,-87.88387853951386,-87.8838633136143,-87.88384851676747,-87.88383329965004,-87.88381868307481,-87.8838040429568,-87.8837886547465,-87.88377401054876,-87.88375997705032,-87.88374398100561,-87.88374402344175,-87.88371476963032,-87.88367008755766,-87.88362539153881,-87.88358070961706,-87.8835498880554,-87.88346050086083,-87.88341503820479,-87.88341485382522,-87.88340040446748,-87.88340041279692,-87.88334108186,-87.88331161610485,-87.88308678136366,-87.88305654552805,-87.88304131704525,-87.88304190166531,-87.88302591377906,-87.88299644774958,-87.88298199247198,-87.88298181342719,-87.88296581740533,-87.88293712197803,-87.88292189332917,-87.88292114182202,-87.88287721219849,-87.88286238902964,-87.88284639281622,-87.88283253353336,-87.88280170649516,-87.88278708628859,-87.88277167504076,-87.88277226534643,-87.88275703827478,-87.88275762775574,-87.88274163934629,-87.88274242316388,-87.8827131706372,-87.88271242215023,-87.88269777678957,-87.88269856263037,-87.88268314870072,-87.88268373900618,-87.8826677416598,-87.88266833519667,-87.88265310705597,-87.88265313016959,-87.88263847887953,-87.88262309388291,-87.88259381500798,-87.88259363593525,-87.88257840757134,-87.88257822940078,-87.88256377928235,-87.8825481917407,-87.8825044569176,-87.8824898447326,-87.88245901306556,-87.88242975657633,-87.88241434133754,-87.8823997713306,-87.88238512946405,-87.88237133477348,-87.88231125392315,-87.88231054288548,-87.88232597032113,-87.88232735554745,-87.88231135395377,-87.88231195358375,-87.8822967247412,-87.88229731710834,-87.8822813260593,-87.88228190951114,-87.8822666805262,-87.88225206738778,-87.88223742512119,-87.8822374369479,-87.88222202206941,-87.88222263520723,-87.88220663685874,-87.88219280540832,-87.88217739032007,-87.8821781890889,-87.8821627733119,-87.88216355846507,-87.88213523154616,-87.882118120851,-87.88211891864727,-87.88210349705194,-87.88210353204856,-87.88208811684004,-87.88208890835728,-87.88207426559619,-87.88205971223668,-87.88204506851105,-87.88204431878901,-87.88202967185715,-87.88202970021528,-87.88201505385703,-87.88200045525875,-87.88197040570948,-87.8819704401304,-87.88195580344247,-87.8819558659109,-87.88194122297487,-87.8819421144707,-87.88195753385094,-87.88195766128408,-87.88194304259261,-87.88192762564725,-87.88192841067823,-87.88191376466152,-87.88191301741813,-87.88189836423254,-87.88189916504864,-87.88188297067936,-87.88188454610221,-87.88186835704249,-87.88186914805821,-87.88185450454274,-87.88185452612844,-87.88183911069771,-87.88183912828229,-87.88180984620918,-87.88180986604901,-87.88179444905099,-87.88177983304855,-87.88176517957355,-87.88176521103765,-87.88174978489826,-87.88174980054474,-87.8817351567652,-87.88170511977449,-87.88167586287517,-87.88167588422625,-87.88163040844283,-87.88161580488554,-87.88160115094092,-87.88160194519652,-87.88158574620199,-87.88157189268696,-87.88155647583015,-87.88155649087892,-87.88152720496493,-87.8815264477636,-87.88151180373858,-87.8814964102266,-87.88145171645967,-87.88142244727781,-87.88137698058931,-87.88137776478119,-87.88133307028353,-87.88131767392345,-87.88128837706897,-87.88128839315125,-87.88125755734438,-87.88124369428067,-87.88115351549666,-87.88115352980411,-87.88113888276722,-87.88113811876138,-87.88109342501191,-87.88100401989624,-87.88091382801129,-87.88091383465223,-87.88088377126641,-87.88086989988811,-87.8808097770286,-87.88080901278848,-87.88077894586672,-87.88074967724748,-87.88071962576112,-87.88067571820609,-87.88064489047599,-87.88063029258602,-87.8806156471134,-87.88060025368945,-87.88058560566333,-87.88055633413772,-87.88054091675978,-87.88052627757894,-87.88044380841821,-87.88040603409659,-87.8803613330002,-87.88034669842274,-87.88028657045874,-87.88027193938697,-87.88012239772378,-87.8800923529468,-87.88003223214201,-87.87994280585835,-87.8799273973686,-87.87983798512306,-87.87977787696114,-87.87959904391485,-87.87959905861588,-87.87956898720765,-87.87955434978964,-87.87938936843548,-87.87925443196407,-87.8792089448425,-87.87920973115436,-87.87914960179,-87.87914961131698,-87.87913419081819,-87.87911955614972,-87.87910490908135,-87.87910569554398,-87.87909027560104,-87.87907489590501,-87.87906024456744,-87.87906026151978,-87.87904560450893,-87.87904561827239,-87.87903097088359,-87.87901634564318,-87.87895620708787,-87.8789562195974,-87.87892615556633,-87.87888146665861,-87.87886604544872,-87.87885140489915,-87.87883675306435,-87.8788367672436,-87.8787766346608,-87.87877741097141,-87.87876121764727,-87.87876200360279,-87.87874734282194,-87.87873193387394,-87.87867257515441,-87.87864253129636,-87.87858239743636,-87.87858316917624,-87.87855233179651,-87.87853847043472,-87.87849298789587,-87.87844826612888,-87.87835806321316,-87.87820848375047,-87.87820849731312,-87.87817842100981,-87.87816381978767,-87.87814916815519,-87.87814917891653,-87.87811989370121,-87.87805976936224,-87.8780289166591,-87.87802969325899,-87.87795412539566,-87.87795489946998,-87.87792481862762,-87.87780453096123,-87.87734028510316,-87.87720534062967,-87.87717606462776,-87.87715986315381,-87.87716066065501,-87.87714523929209,-87.87714525574242,-87.87719136405138,-87.87719156222026,-87.87720641001636,-87.87722128480061,-87.87722211379246,-87.87720746176731,-87.8771774112096,-87.87716198883663,-87.87714811565485,-87.87713192293374,-87.87713269766104,-87.87711727516144,-87.8771172940401,-87.87709570522948,-87.87711037002879,-87.87702787202755,-87.87697620237789,-87.87693842710162,-87.8769230101468,-87.87690836017681,-87.87689371609143,-87.87689374726902,-87.8768490301307,-87.87683440153842,-87.87681975138408,-87.87678967813032,-87.87674494855131,-87.87674418309928,-87.87671409888767,-87.87666938076225,-87.87666937989557,-87.87641489928235,-87.87636939632236,-87.87618970467534,-87.87608559370541,-87.87604086181675,-87.87598071413477,-87.87592056154787,-87.87587583319286,-87.87577094161922,-87.8756814822046,-87.87541075024484,-87.87524569558413,-87.87521638586504,-87.87521638381145,-87.875171659516,-87.87508693898091,-87.87378601178995,-87.87345130484916,-87.87330714028793,-87.87307034259823,-87.87301173023339,-87.87280895269677,-87.87239785262659,-87.8723091516532,-87.87205926104804,-87.87188420930549,-87.87153248721145,-87.87065304286965,-87.87054195153605,-87.87016233101505,-87.8698884617996,-87.86965853887068,-87.86924187311331,-87.86903196351579,-87.86706840447006,-87.86643975396977,-87.86428882241107,-87.86414097738029,-87.86418667167331,-87.86635426370157,-87.86855223856496,-87.86841605501525,-87.86475125332267,-87.86396898833695,-87.86788762808824,-87.86905684971191,-87.86916655469734,-87.86917763287576,-87.86897643797697,-87.86890507259932,-87.87033858050044,-87.87031004476238,-87.86858489272204,-87.86780991953995,-87.86713567571712,-87.86782394579322,-87.86778276927272,-87.86713052253444,-87.86703766177376,-87.86703450834287,-87.86684238596774,-87.86678374904064,-87.86675444715178,-87.86630078452609,-87.8662282830865,-87.86584400069917,-87.86565879775301,-87.86538134703714,-87.86500684014854,-87.86461727074631,-87.86456478245728,-87.86454259851897,-87.86455921269726,-87.86499626487291,-87.86517648815166,-87.86519111616319,-87.8651885819112,-87.86513072476068,-87.86498334162246,-87.86489770563092,-87.86488179098319,-87.86476297779292,-87.86428844280478,-87.86418428627145,-87.86417117759521,-87.86418662083609,-87.86427734165011,-87.86427889558601,-87.86423414657776,-87.86348201064095,-87.86321576081046,-87.86294948263266,-87.86232129113169,-87.86210203164502,-87.8613834487402,-87.860529776532,-87.86002650939626,-87.85943136629008,-87.85920828394195,-87.85864632702871,-87.85801449413728,-87.8576213782969,-87.85712422873793,-87.85673109824388,-87.85631806698942,-87.85613972973394,-87.85576993080699,-87.85546845598701,-87.8553051669285,-87.85489096711505,-87.85449817665425,-87.85409688504541,-87.8537123754239,-87.85317808739457,-87.85302831002197,-87.85252430172605,-87.85211526240607,-87.85198921279142,-87.85169193815109,-87.85126031141729,-87.85079103775806,-87.85029355331453,-87.84985534031662,-87.84940128723422,-87.8481736703425,-87.84791245148212,-87.84751880090745,-87.84724368650438,-87.8468932894628,-87.84632027058531,-87.84590943690094,-87.84532752381291,-87.84465154881303,-87.84444302863643,-87.84422659539612,-87.84409297228667,-87.84381030429826,-87.84372823290758,-87.84334225159679,-87.84288009542175,-87.8425542399392,-87.84177993325974,-87.84138430797692,-87.84081173557666,-87.83993218131039,-87.83961858962762,-87.8388942807648,-87.83852139751671,-87.83829815742261,-87.83814434591544,-87.83743886290092,-87.83708193789883,-87.83671109055518,-87.83607838542054,-87.83565502475199,-87.83514279028928,-87.83474705789389,-87.83416627797976,-87.83393526905684,-87.83373383168724,-87.83333208548913,-87.83294707432356,-87.8327230111905,-87.83256751004244,-87.83241163297481,-87.8320623682737,-87.83186149829628,-87.83116991688388,-87.83064064277738,-87.83026012639586,-87.82968004133767,-87.82929290103384,-87.8282651767565,-87.82786467278548,-87.82758127471926,-87.8271044755176,-87.82691123810864,-87.82665232216125,-87.82636251681282,-87.82616927188774,-87.8259459138726,-87.8255911293128,-87.82495412000821,-87.82438583997885,-87.82417092741515,-87.82402251196639,-87.82397843626465,-87.82362284455628,-87.82346045006729,-87.82331201197722,-87.82310408102676,-87.82271907022646,-87.82225837093272,-87.82179913024234,-87.82135287959578,-87.82077331646376,-87.82039468108718,-87.8202091233431,-87.81901036523226,-87.81828662120512,-87.81759698299537,-87.81708435057429,-87.81670498255778,-87.81605766341329,-87.81562549269354,-87.81507393072894,-87.81482058130656,-87.81455045072991,-87.81416132946504,-87.81359103727564,-87.81308096239198,-87.81269252899602,-87.81263372150167,-87.8125462113895,-87.8125631170311,-87.81271520202593,-87.81273062264117,-87.8126761735183,-87.81269378164754,-87.81267975261852,-87.81257900356731,-87.81221070883407,-87.81203278582102,-87.81197614649584,-87.81182908996759,-87.81157767352751,-87.81150416347215,-87.81117772220054,-87.81103145852732,-87.81079396306832,-87.81055021217882,-87.8104689543041,-87.81029162281548,-87.80974043633742,-87.80932432652992,-87.80925083549806,-87.80905887857811,-87.80895503433999,-87.8084487074217,-87.80792908127732,-87.80740618100386,-87.8072578362063,-87.80707131167173,-87.80695917424188,-87.80684153544813,-87.80676936766181,-87.80660827405288,-87.80649761169136,-87.80637152002325,-87.80598405078985,-87.80588750672875,-87.80580650053568,-87.80505827394371,-87.80439309630214,-87.80416182696437,-87.80404342431164,-87.80382976044638,-87.80377933501998,-87.80387332484068,-87.80392097529317,-87.80390021927423,-87.80376917320555,-87.80365147105489,-87.80350471770366,-87.80344983734527,-87.80343635195788,-87.80333424063163,-87.80323123172883,-87.80295100238908,-87.80281858431339,-87.80276611215905,-87.80263586703342,-87.80212155978771,-87.80180070273808,-87.80147838807591,-87.80131792159068,-87.80109718389924,-87.80096546685959,-87.80079383844422,-87.80073570296094,-87.80049956029727,-87.80045538202882,-87.80037116706299,-87.80031249193486,-87.8000446802821,-87.79970625706736,-87.79961647374326,-87.79950804336832,-87.79938248269333,-87.79874820808745,-87.79871803628706,-87.79830455877256,-87.79794770494668,-87.79766658923802,-87.79753343130588,-87.79685494308116,-87.79663271927956,-87.79646864343296,-87.79627663296856,-87.79612795297741,-87.79599623992607,-87.79568492359415,-87.79545014161218,-87.79509536406361,-87.79502249381135,-87.79469645772045,-87.79447565831596,-87.79422251495788,-87.7938502698867,-87.79327049502838,-87.79310711181151,-87.79302489971309,-87.79287221413904,-87.79275653461883,-87.79274647455452,-87.79268917240566,-87.79267660845439,-87.79261820306093,-87.79251534161615,-87.79226288786285,-87.79168862526626,-87.79144349369851,-87.7913026373258,-87.79112184758861,-87.79085086588556,-87.79067725975491,-87.7906248627515,-87.7906104924444,-87.79065585678893,-87.79074723552911,-87.79126068386978,-87.79143477007638,-87.79152592452027,-87.79162552486692,-87.79170191487114,-87.79179590670381,-87.79184496403026,-87.79190729667948,-87.79211004955417,-87.79228176711922,-87.79237433853939,-87.79269621449926,-87.79295849906165,-87.79303775475505,-87.7930910284318,-87.79318570560501,-87.79319072715725,-87.79333978505927,-87.79345697693171,-87.79353815880188,-87.79357558335943,-87.7938060405057,-87.79392874179827,-87.79390697356703,-87.79393632732321,-87.79395305679959,-87.79409241501145,-87.79412311602977,-87.79402186726952,-87.79388148846432,-87.79385961646422,-87.79386293573421,-87.79377579565363,-87.79377704620303,-87.79381618306454,-87.79381109090809,-87.79375281439975,-87.79374134479934,-87.7936047815779,-87.79363118349964,-87.79373968719115,-87.79378785650404,-87.79389563062655,-87.79382253501529,-87.79379437877151,-87.79381173499743,-87.79393568990449,-87.79389467403099,-87.79401021778277,-87.79400448924271,-87.79390985626672,-87.79382880834847,-87.79372677750908,-87.79375261684588,-87.79370259146197,-87.79369681625629,-87.79375270045486,-87.79372150314371,-87.79373069944609,-87.79359729164022,-87.79354661398825,-87.79355566829889,-87.79360190969052,-87.79364873837267,-87.79366654649218,-87.79355064414619,-87.79354627206824,-87.79357069829767,-87.79375493961136,-87.79377227172175,-87.79372799830003,-87.79369981531821,-87.79354459935568,-87.79352346642838,-87.79358576557324,-87.79370701266416,-87.79381421965094,-87.79392075316119,-87.79403156260811,-87.79409964947875,-87.79409718711027,-87.79416195125511,-87.7941325750166,-87.79415373154127,-87.79411031735189,-87.79409680227626,-87.79403321506551,-87.79399553795049,-87.79399676046948,-87.79388131564548,-87.79365985138769,-87.79351116537271,-87.79340557097288,-87.79340309243057,-87.79333698622762,-87.79314444477926,-87.79304052957069,-87.79296666549249,-87.79295328251507,-87.79286398952586,-87.79285117718123,-87.79282165560012,-87.79277999677331,-87.79261637174348,-87.79258683482,-87.79260287415917,-87.79258166339258,-87.79254580075893,-87.79254781317908,-87.79249640678992,-87.79249063396882,-87.79235852455369,-87.79235228199303,-87.7923485750952,-87.79227548056481,-87.79217079720623,-87.79212917938575,-87.79192820079346,-87.79186283064055,-87.79184400294807,-87.79183592294426,-87.79180603617647,-87.79177137220134,-87.79182664584627,-87.7918286273507],"lat":[43.54292210766361,43.54303203664013,43.54304212169477,43.54305860078474,43.54308823774143,43.54318571854968,43.54329656835628,43.54344027283105,43.54335091017519,43.5431466726304,43.54289452454069,43.54266271604939,43.54254927222809,43.54245288718558,43.52761788609668,43.51288111389557,43.49823171878192,43.48361340721895,43.47069682963846,43.47020797525249,43.4690370528018,43.46011142363726,43.4596443698906,43.45451664994476,43.43971160991319,43.43276945244415,43.4323026775112,43.42521671750971,43.41076681328136,43.39627681965879,43.38180830848151,43.36725795629837,43.36723735143967,43.36727794246322,43.33676776016401,43.32229658496487,43.30786334562508,43.29338774487895,43.27893301158491,43.26469386911857,43.25020663452576,43.23564516984783,43.22111654758722,43.20657761575723,43.19211553761593,43.19231283175034,43.19252260352161,43.19256750679293,43.19247874315823,43.19243341836921,43.19229326590127,43.19209323953142,43.19204812108276,43.19207790252792,43.19212743029274,43.19233631972535,43.19265532749839,43.19270469787849,43.19280920645297,43.19296308094576,43.19300694976409,43.19310049343022,43.19343022514176,43.19364489748631,43.19391949321267,43.19405142271101,43.19409530854402,43.19433727650633,43.19465614533561,43.19487610862635,43.19549192996309,43.19562936474469,43.19568986924805,43.19600061361367,43.19634962218028,43.19640475729932,43.19670175172502,43.19688307806962,43.19708277528576,43.1972460025575,43.19733968921523,43.19735601473778,43.19749359963448,43.19779603496207,43.19790603535272,43.19795555965153,43.19833480837643,43.19849431746233,43.19896191467308,43.1991597104144,43.19942924517092,43.19966557580613,43.1997921808203,43.19992415232628,43.19994074603736,43.20002319744277,43.20003980283219,43.20007806423668,43.20010029539463,43.20021030589612,43.20022662943002,43.2003090680336,43.20035324940612,43.20037519627628,43.20044131134693,43.20046325821536,43.20059523477033,43.20061718102945,43.20101339649201,43.20103533041691,43.20123344368245,43.20125003617775,43.20139859845457,43.2014149225089,43.20158546698972,43.20160740150216,43.20171742044883,43.20173937581396,43.2018054842501,43.20182743772963,43.20195941142751,43.20197600268275,43.20254273988498,43.20262039623326,43.20301575104415,43.20303771232477,43.20321387321184,43.20323582341507,43.2032800140025,43.20330197826714,43.20341199946134,43.20343396072861,43.20376404052942,43.20378625786461,43.20387406733574,43.20402827910593,43.20424834974843,43.20444646919045,43.20471044392054,43.2051948110075,43.20539291880149,43.20548073929837,43.20567883700443,43.20572302674233,43.20589890981846,43.20605312057018,43.2064932851048,43.20673563236623,43.20684567490053,43.20699962664267,43.20706577026806,43.20726389584907,43.20741812987843,43.20770438431526,43.20788028663447,43.20810035453739,43.20829847902405,43.2087828162708,43.20902482986721,43.20917889025905,43.20937714766209,43.20941004713466,43.20945395816906,43.20958620011002,43.20960252868929,43.20976206350309,43.20991625549643,43.20993257864213,43.2099711224142,43.20998771518415,43.21008113148621,43.21009772486025,43.21013600022104,43.210240657196,43.2105321789545,43.21066412881981,43.21068073682718,43.21076317494078,43.21077976578529,43.21086221862374,43.21087851276449,43.21104904295583,43.21106562210127,43.21132421421571,43.21143425318411,43.2114505663713,43.21153330938828,43.21155523297812,43.21172041704263,43.2117367253335,43.21179722929597,43.21181382505572,43.21191822686944,43.21193481711146,43.21197336959165,43.21198968092889,43.21214920398447,43.21244068533113,43.21252312144944,43.21265539018371,43.21278737085273,43.2130954942939,43.21338138349264,43.21341431600911,43.21354657390997,43.21370048951893,43.21383244959257,43.21386565104928,43.21405248566501,43.21419572700945,43.21421203832386,43.21425057666062,43.21426718401707,43.21430544346605,43.21432205018256,43.21436059158766,43.21437719283395,43.21448158048582,43.21466868242868,43.21483341182981,43.21498754626492,43.21503142139669,43.21511917741914,43.21522933627143,43.21542176554835,43.21547128661337,43.21559761366423,43.21591103727897,43.21633471645411,43.21657109362058,43.21658767195928,43.21673596032987,43.21683499199735,43.21697803894818,43.21732966807014,43.21749420715863,43.21764835167912,43.21769223896635,43.21778027797711,43.21791767445723,43.21804413008483,43.21815960243806,43.21843992027151,43.21848928801814,43.21871477666046,43.21885218703952,43.21915447581197,43.21937443905253,43.2195447652791,43.21963828859068,43.21968765896621,43.2199350935504,43.21997347782425,43.22019896618609,43.22034184075193,43.22045183327226,43.22053987364835,43.22074311227107,43.22084213284671,43.22085872760832,43.22089163156036,43.22110601805641,43.22112260795807,43.22134248129127,43.22147439018146,43.22160632714906,43.2220463120988,43.22231537118233,43.22250793931705,43.22282682653719,43.22310167645141,43.22320054595816,43.22337115849433,43.22353051660883,43.22358016763147,43.22403615921588,43.22410229268919,43.22424534852165,43.22440469875811,43.22464660652029,43.22475112005979,43.22489950817253,43.22508629411608,43.22538872786496,43.22556466958791,43.2257350030517,43.22596064000091,43.22611448908884,43.22625207881048,43.22643326449148,43.22685131527688,43.22701630744263,43.22719227858719,43.22735698439585,43.22739566739325,43.22761536369227,43.22789557976052,43.22807703393713,43.22811573209859,43.22827510645167,43.22842365683736,43.2285994727884,43.22878642201211,43.22882480999882,43.22905028663953,43.22912187033196,43.22924822112297,43.22941320627309,43.22959480331354,43.22961111193022,43.230018040339,43.23019963468008,43.23039742681716,43.23046888164672,43.23048548764883,43.23058987405001,43.23060647939526,43.23064501539382,43.23066134189398,43.23076600711676,43.23085407096379,43.23118942890778,43.23127187734883,43.23135993799533,43.23137654456775,43.23172287294197,43.2319867738365,43.23219564724333,43.23234432277818,43.23267970680939,43.23304823810886,43.2332516606912,43.23337796786743,43.23348796637275,43.23373556897341,43.23386753056226,43.23426898173403,43.23443949573625,43.23445580860244,43.23451658902862,43.23453291465504,43.23457145615655,43.23458806126255,43.23464854564511,43.23480242371594,43.2350496915066,43.23518165280935,43.23527533778131,43.23529165856235,43.23541829156165,43.2354348691571,43.23561636203171,43.23563830737093,43.23570445060385,43.23572075849516,43.23580320974597,43.23582543939335,43.23593546182683,43.23595739547997,43.23606742148628,43.2360837287481,43.23616645013732,43.23624888510992,43.23633132277213,43.23634792844553,43.23648521283344,43.23664472853237,43.23677134305908,43.23678794992713,43.2368262082549,43.23684281633631,43.23688135476818,43.23690330427085,43.23696915092811,43.23699138051794,43.23710138389338,43.23711771067855,43.23715624907933,43.2371781986203,43.23727724022385,43.23729383182942,43.23733238429296,43.23734871222525,43.23751920654235,43.23790970776322,43.23794826447867,43.23796485605578,43.23800340669501,43.23801973459738,43.23805827062807,43.23808022127123,43.23812439711342,43.23814633070093,43.23823412861537,43.23833315389901,43.23844317975529,43.2384983088991,43.23865221596623,43.23866882220192,43.23870708048213,43.23872368428558,43.23878417110759,43.23880077612445,43.23886126604481,43.23887786858395,43.23904780800613,43.23906441058539,43.23925688275194,43.23927347489833,43.23942205160111,43.23946595071797,43.23990605866947,43.23992263610058,43.24000509770555,43.24002168867822,43.24010412886176,43.24012073500128,43.24018121882099,43.24019754553811,43.24030222444983,43.24031853585833,43.24042321724147,43.24044514835034,43.24051127806838,43.24052760173838,43.24135826392913,43.2415344143401,43.24155100521946,43.24182052959452,43.24183685506873,43.24208444729616,43.24210076850797,43.24222737077772,43.24231544562876,43.2423317521511,43.24237030763287,43.24243643402023,43.24245274360739,43.24259793097065,43.24310754188485,43.24312950105061,43.24321756452463,43.24326145931857,43.24328370648593,43.24377865970716,43.24382255875126,43.2439106320658,43.24392723757193,43.24405386514255,43.24409776418231,43.24418582399881,43.24420214878996,43.24428488067996,43.24430683068503,43.24448267030046,43.24449927518851,43.24455976019418,43.24464783895969,43.24475784512064,43.24477444878625,43.24483493805905,43.24485126348718,43.24519794052278,43.24521988565108,43.24530794637091,43.24540697613462,43.24549479411795,43.24551702540737,43.24556092229255,43.24558287408279,43.24562706205915,43.24564901383153,43.24573708469521,43.24575903706799,43.2458251594967,43.24584147387262,43.24588002388269,43.24593488976989,43.24602295047683,43.24604489559479,43.24617715007916,43.24628720450342,43.24639723933269,43.24657343438181,43.24666122536824,43.24668345845549,43.24672736935754,43.24674933094215,43.24690353266311,43.24692545090408,43.24696936181966,43.24698596675493,43.24702450813786,43.24704083357495,43.24710159982987,43.24712354982537,43.24756364446923,43.24758560301491,43.24767369513712,43.24776178115054,43.24787180311485,43.24804770480344,43.24813609986617,43.24835585452335,43.24842199487996,43.24844394483887,43.24855396527943,43.24864205242785,43.24868623367441,43.24870819643772,43.24877405147764,43.24881821712173,43.24912635498636,43.24917026186314,43.24932447903171,43.24958846701174,43.24965459420591,43.24974268317411,43.24987465073936,43.25002485936101,43.2505107615771,43.25053271094246,43.25097281693135,43.25111042902789,43.25121513512855,43.25133081369167,43.25136936766607,43.25144084629436,43.25145747056536,43.25161703855525,43.25163365982468,43.2518314790804,43.25211773325131,43.25216725280666,43.25218386300962,43.25225532981444,43.25227166663795,43.25232119045985,43.25233779638909,43.25238731779496,43.25240393597782,43.2524754197897,43.25249201105728,43.25265157003287,43.25266818883066,43.25284967956458,43.25286629835896,43.25306441209985,43.25308635941844,43.25315248596948,43.25317444738028,43.25335595284987,43.25337257404589,43.25346597756636,43.25348259634432,43.25388444792033,43.25390078475908,43.25406062188814,43.25407694889373,43.25423650352359,43.25425312469332,43.25434683643015,43.25436314693066,43.25447882421433,43.25453932396616,43.25465500009919,43.25467159068977,43.25478697067688,43.25480357470847,43.25489700692331,43.25491362808764,43.2551393006794,43.25515591752194,43.25522740074705,43.2552440053726,43.25533742293393,43.25535404706233,43.25551358867779,43.25553020982571,43.25566217726978,43.25570637376524,43.25579977606508,43.25581639287773,43.2558878760939,43.255904186578,43.25597594983535,43.25599229147632,43.25615213163065,43.25616846528968,43.25621797197683,43.25623458144998,43.25635025262385,43.2563665783279,43.25645465142375,43.25647689886586,43.25656496956613,43.25698313077515,43.25700507799036,43.25718686339643,43.25720320435359,43.25731324047346,43.25762169656184,43.25766560620319,43.25769317857874,43.257775643563,43.2578693717222,43.25797407982989,43.25819416543608,43.25832644515796,43.25834840762052,43.25839230307816,43.25841987968514,43.25854653539711,43.25861801490348,43.25870047970303,43.25879420590815,43.25903092601679,43.25958708513929,43.25974104351845,43.26000000565185,43.26033046735832,43.2605286020982,43.26064429285675,43.26070479189771,43.26090291796828,43.26096904256184,43.26099099372295,43.26106247441438,43.26107909526834,43.26125525561108,43.26127719029616,43.26132672806729,43.26134332931674,43.2613928671328,43.26140918952265,43.26152484857737,43.26158535303261,43.26161295224738,43.26162954552276,43.26215780550444,43.26229008480993,43.26233399560679,43.26240011840944,43.26247160482837,43.26248822258053,43.26253210518962,43.26259825677955,43.26262582847315,43.26264244738781,43.26268633004045,43.2627524857767,43.26280200522238,43.26286250467508,43.26317066630803,43.26323681965773,43.26328635739151,43.26330296099065,43.26334684358891,43.26341299508459,43.26344056672638,43.26345718990422,43.26350107250038,43.26352303341966,43.26361112190844,43.26367725927508,43.26376534652345,43.26383119393674,43.26385878092436,43.26387538267342,43.26410109234365,43.26416161064289,43.26427728141634,43.26429359443547,43.26433778224781,43.26435973327427,43.26445345853222,43.26446976663701,43.26453591013568,43.26455787222108,43.26460739345042,43.26462399517991,43.26471207286075,43.26475596494733,43.26493212722369,43.26495407821706,43.26513586276405,43.26515248527033,43.2653998329674,43.26541643647072,43.26553209807865,43.26554870469297,43.26563679163316,43.26565872605604,43.26575216051712,43.26576877567221,43.26601639352897,43.26603301115414,43.26614840780956,43.26623115028261,43.26647879447115,43.26649541503504,43.26654493321988,43.26656126950206,43.26664934674638,43.26671548596318,43.26673743203377,43.26680890156346,43.26682551915515,43.26696311757459,43.26697973394597,43.2670897552858,43.26733742654675,43.2677064197383,43.26773400669016,43.26781647001582,43.26795409133275,43.26797070940534,43.26799800158028,43.26801460862277,43.26810831956031,43.26812464161976,43.26839425023795,43.26841058338761,43.26854283724114,43.26856479794409,43.26863094071577,43.26865287080583,43.26879049370439,43.26885100605404,43.26907672024002,43.2690933217491,43.26925289418755,43.26931340952398,43.26951714029009,43.26953376139264,43.26962154921349,43.26971527963714,43.26973189769238,43.26975946743418,43.26977577963083,43.27004539765237,43.27010619421184,43.27024381270935,43.27026012542713,43.27030966009193,43.27032627805812,43.27048582211306,43.27050244013486,43.27057392303934,43.27059051285535,43.27066199581945,43.27067861620554,43.27075006854961,43.27076668899391,43.27081058561289,43.270876722272,43.27114097533024,43.27121242522004,43.27122904808138,43.27136088805766,43.27138312995977,43.27147107766778,43.27158111574953,43.27165287568195,43.2717795286836,43.27184537598801,43.27208771651073,43.27239588229518,43.27248398229756,43.27252816326657,43.272594005579,43.27270967862923,43.27272629890583,43.27277581697631,43.2727921431034,43.27284194372021,43.27285827971329,43.27290780083536,43.27292440400561,43.27310056821665,43.273188667071,43.2732381863665,43.27325449717055,43.2734087112796,43.27343067601873,43.27348019529619,43.2734968143473,43.27356294058504,43.27365102651019,43.27369492309736,43.2738049694355,43.27383254472213,43.27384914845062,43.27389304506598,43.27395919491243,43.27420148138803,43.27426735171353,43.27431151797754,43.27435544063323,43.27442692029631,43.27450966705981,43.27457580535705,43.27484008984643,43.27495548063224,43.27497207267837,43.27503821290932,43.27508212157515,43.27512601535226,43.27519778054143,43.27528024161681,43.2753078143846,43.27539058184912,43.27541253015501,43.27545642811076,43.27556647503012,43.27609502880069,43.27612260520638,43.27627121744074,43.27629344584181,43.27664571423847,43.27686596307207,43.27689353278596,43.27690985745473,43.27708602830206,43.27711360109783,43.27713022120427,43.27717413186384,43.27719635928291,43.27728415239422,43.27732834463652,43.27752642635233,43.27754838776641,43.2777025852639,43.2777245497582,43.27781263401207,43.27787876004697,43.27792267070069,43.27801074012284,43.2784069892793,43.27842922769834,43.27875929250089,43.27878125392409,43.27886934666529,43.27889128966628,43.2790235568578,43.27928781570331,43.27937592580588,43.27940349673339,43.27941980719295,43.27953547928047,43.2795959948359,43.27962356756911,43.27981636801167,43.2799702897877,43.28036654307823,43.28050981166182,43.28087318169156,43.28089512991827,43.28100313588559,43.28107693620756,43.28113746626222,43.28118134805375,43.28124749763948,43.28129701805046,43.28131362136412,43.28140171284785,43.28142365575173,43.28156126464285,43.28157788212185,43.2816437127384,43.28173181484128,43.28178133517037,43.28179793854417,43.2819079893731,43.28197410949155,43.28202363050146,43.28204024735556,43.28215027296535,43.28239232511094,43.28241989722844,43.28243649066558,43.28246407753507,43.28248039889231,43.28252458898089,43.2826785297215,43.2827061049357,43.28272270940391,43.28279418729853,43.28294842587286,43.28338327688966,43.28351555108594,43.28360363696768,43.28369171061266,43.28373563404966,43.28380176927603,43.28384566508478,43.2838732501382,43.28388985634744,43.2839174284512,43.28393376144643,43.28439616950926,43.28444035520041,43.28446792736059,43.28448453049828,43.28459458045315,43.28477076295299,43.28485856612681,43.28490275300157,43.28492471535562,43.28496889229131,43.28499084056905,43.28527681187285,43.28545299275137,43.28547521983403,43.28551913194423,43.28554108885824,43.2855852822745,43.28560721636231,43.28565112301578,43.285678709258,43.28580535569343,43.28589345718247,43.28628972606862,43.2863172982106,43.28644394515501,43.28651572550959,43.28657622171294,43.28662011815383,43.28673016206731,43.28675775314843,43.28677435372308,43.28681825016164,43.28688438917925,43.28691197541403,43.28692829891927,43.28695587102546,43.28697247219783,43.28700005780923,43.2870163843476,43.28706055783006,43.28723672676789,43.28763299866618,43.28780918648851,43.28785336180501,43.28787530937936,43.28796341965663,43.28798536723027,43.28802953887688,43.28813959076222,43.28818348289678,43.28821106667817,43.28831578466093,43.28840385206967,43.28858005010498,43.28860199828198,43.28864588857201,43.28866783676386,43.28893241863398,43.28911395585217,43.28932869767495,43.28953246629349,43.28959298872744,43.28961493689665,43.28976918182475,43.28979111586997,43.28987920986867,43.29001150052372,43.29031968155456,43.29036921488117,43.29040777947817,43.29042971351609,43.29058959237921,43.29087021563596,43.29110170268588,43.29153121766691,43.29197155382142,43.29243426520761,43.2926101784504,43.29269855825229,43.29274244719517,43.29277003636804,43.29280859627323,43.29283589005664,43.2929405879282,43.29302867522049,43.29307285955067,43.2930948077534,43.29349670816789,43.29359015750149,43.29366742697592,43.29384909568999,43.29417953669573,43.29481253587488,43.29485672741102,43.2949667661581,43.29512662347354,43.29535234197468,43.29607921322418,43.29665171368003,43.29699892639346,43.29725757098081,43.29727953330462,43.2974337606651,43.29748329623026,43.29752185640953,43.297609941469,43.29765412543774,43.29767608777542,43.29783003547531,43.29787420946161,43.29800650437525,43.29829807261838,43.29849087059689,43.29851280392186,43.29863382310274,43.29897523639803,43.29911314289016,43.29921755316548,43.29923978560582,43.29930564959427,43.29937740580595,43.29970220333604,43.29974611423438,43.29983418706028,43.29985641949566,43.3001204288185,43.30020878052566,43.30025270181901,43.30031882364085,43.30036272763518,43.30040690328651,43.30058308113763,43.30062698510256,43.30065457730417,43.30071506964308,43.30091882356961,43.30093514032732,43.30105079734252,43.30106741573061,43.30109498702799,43.3011113050065,43.30113889055251,43.30130971061394,43.30161785483787,43.30166176358063,43.30168934728541,43.30177208464367,43.301794032777,43.30203636562354,43.30205831369356,43.30226206700873,43.30274645035831,43.30323112455785,43.30347344402836,43.30400735418091,43.30426050974236,43.30452465749678,43.30496509165975,43.30499266352043,43.30509736275142,43.30514126131521,43.3052073802769,43.30525129061439,43.30549360034167,43.30552117227494,43.30553777359103,43.30569734635607,43.30571393593245,43.30582932309638,43.30586801283211,43.30604403473898,43.30611018438217,43.30615406752685,43.30622021172184,43.30626439220762,43.30639637881426,43.30642395063276,43.30652836346971,43.30664403490032,43.30666062199521,43.3067762915218,43.30679259666078,43.30683679134874,43.30690292375397,43.30693021428709,43.30738725323577,43.30750290605338,43.30760731982862,43.30762926793385,43.30780573142647,43.30807533688918,43.30813582923685,43.30824584646537,43.30831199827642,43.3083615157644,43.30837811941498,43.30855399495662,43.3085762341931,43.30877433710846,43.30879629502509,43.30897779311596,43.30899439980054,43.30906052096754,43.30908248004474,43.30930815985955,43.30932476220539,43.30939061754716,43.3095448273902,43.31013912477957,43.31018302100649,43.31057921339197,43.31062339396593,43.31090955941624,43.31093151663378,43.31106911063763,43.3110857283808,43.31117914192917,43.31119574548498,43.31124528262924,43.31126159884096,43.31137725880167,43.31139385686607,43.31157535612796,43.31159197690877,43.31194426588026,43.31198816940523,43.31209832871302,43.31212575844348,43.3121423780665,43.31218627415986,43.31220821114552,43.3126266361309,43.31264858678136,43.3127805594294,43.3128024934456,43.31289056988268,43.31291251748986,43.31297863171951,43.31302281350347,43.31333628230815,43.31335290011335,43.31344095749738,43.31348486518776,43.31368297549201,43.3137271484658,43.31385913031165,43.31390330328105,43.31396914733429,43.31401333936157,43.31421143061534,43.31423337847018,43.31438758703622,43.31445373203224,43.314497613846,43.31456347873497,43.31465156195434,43.31473964166121,43.3148114037086,43.31482772042756,43.31493803597429,43.31504807608746,43.31507564550009,43.31509198371584,43.31511955555847,43.31513614060171,43.31516345833855,43.31518005065495,43.31529571415416,43.31531231518262,43.31533960695779,43.31546625107204,43.31562046420564,43.31566465104282,43.31573050670074,43.31581859382896,43.31592888989486,43.31597281083303,43.3160884785197,43.31622045826061,43.31625900640958,43.31635272298007,43.31643517677813,43.31650131186528,43.31654523330574,43.31661135106258,43.31665553778564,43.31668282582653,43.31669944348187,43.31680947420839,43.31689754928285,43.31747023194504,43.31766837184915,43.31775644959198,43.31786648818284,43.31799847326118,43.31804265978657,43.31806460784033,43.31810879005698,43.31815831824302,43.31819686795514,43.31821882716659,43.31830691576246,43.31851068186369,43.31859312747677,43.31875268724303,43.31876930656934,43.31879687834738,43.31881318300957,43.31894545617271,43.31896741798676,43.31909938725823,43.31912159458278,43.31921502519752,43.3192316408803,43.31928117426266,43.31929748440917,43.31940780830209,43.31947364349291,43.31952316387252,43.31953978136585,43.31976009923564,43.31980400905258,43.31987014673273,43.31989182416981,43.32002379458374,43.32017799916422,43.32030996966296,43.32035415403084,43.32062372351266,43.32064033850349,43.32075570173614,43.32077231676816,43.32082183648016,43.32088234215111,43.32101995597943,43.3210365615968,43.32106413270644,43.32108046459068,43.32119610310688,43.32125662296978,43.32130078906513,43.3214108429088,43.32145473890235,43.32156505496939,43.32167507629546,43.32169703315268,43.321746550468,43.32176317086169,43.32187318426151,43.32189514597164,43.32209323679358,43.32235748608927,43.32253362946885,43.32257752489622,43.32266560810723,43.32268756669909,43.32314990448558,43.32317211534502,43.32333167995365,43.32334799748745,43.32339217901128,43.32348025555942,43.3235241539638,43.32354611137849,43.32370594481317,43.32372226354882,43.32383257421182,43.32389842395778,43.32396455219153,43.32398649471486,43.32411875820221,43.32414070556737,43.32430025583084,43.3243168707492,43.32438271708969,43.32440495578751,43.32460304343588,43.32462500263988,43.32504313926371,43.32510926748598,43.32539543561426,43.32563742186728,43.3259676271369,43.32612170158032,43.32620978108979,43.32627591263741,43.32634175590326,43.32636399458253,43.32642983843931,43.32645206588465,43.32651806408953,43.32660598900493,43.32687007718098,43.32702413487371,43.32717832629358,43.32726641608614,43.32739836699457,43.32759645369835,43.32761840228503,43.32770649394238,43.32772842822798,43.32797070088022,43.32799265825169,43.32810267935996,43.3281246361207,43.32841642298197,43.3284330384833,43.32860919713239,43.32863115448835,43.32874117556696,43.32878508024083,43.32900539123779,43.32902734858628,43.32912106276815,43.32913736418235,43.32931352772486,43.32933548498976,43.32940723150213,43.32942356749462,43.32947310444624,43.32953359728181,43.32967119638908,43.32968781056516,43.32973733087452,43.3297539308237,43.32979782796362,43.32997400280766,43.33001789566126,43.33008401519435,43.33043633684611,43.33045829408243,43.33050247129477,43.33056832073074,43.33059589430952,43.33061249302519,43.33074447681037,43.33076642976543,43.33103064905327,43.33105260497801,43.33153687867403,43.33155911167006,43.33169107572239,43.3317791325769,43.3318891715783,43.33191109170561,43.33199918206317,43.33202113070222,43.33235148743141,43.33237342045482,43.33252734361091,43.33268155602111,43.33270914503172,43.33272574554974,43.33275304718953,43.33276965194284,43.33279722423417,43.33281355711814,43.33284112880156,43.3328577293739,43.33290162762577,43.33296777318461,43.33301193432661,43.33312198738689,43.33314955853728,43.33316586525649,43.33325958322956,43.33327592089138,43.33345207448473,43.33351819389161,43.33365045151638,43.33367239872295,43.33376583475209,43.33378242584094,43.33400813051971,43.33402444603066,43.33409620899546,43.33411280648071,43.33420623542565,43.33422285138847,43.33426673296608,43.33428869138605,43.3343328673489,43.334354823336,43.33453098102699,43.33455292391656,43.33461905022438,43.33470712008671,43.33472907423968,43.33477326868159,43.33486105398033,43.33503723174235,43.335059461559,43.33525758391927,43.33532906251952,43.3353456610967,43.33543880445487,43.33545541967428,43.33559301208064,43.33560962372646,43.33567545445725,43.33574160218896,43.33601146003774,43.33602779272741,43.33618198875615,43.33620394830599,43.33640205666509,43.33651209201377,43.33660014887562,43.33662210780011,43.33682022545144,43.33710667050126,43.33712862354255,43.33721668101729,43.33730477209636,43.3373267203042,43.3375248041002,43.33756870604336,43.33775049305459,43.33776681024634,43.33792102552455,43.33794296532311,43.33800909036577,43.33803103862125,43.33814670545781,43.33816329270431,43.33822915071539,43.33825110657619,43.33830062615314,43.3383172264914,43.33836112171233,43.33842727228907,43.33853728800558,43.33860341641613,43.33863100296581,43.33869151185674,43.33880152755425,43.33886767084374,43.33899963869323,43.33902187461555,43.33909334207748,43.33910994177491,43.33926949430251,43.33928581570728,43.3394180724572,43.33944003313199,43.33955004878635,43.33957200573342,43.33970962583773,43.33972621004527,43.33985817879516,43.34005657321585,43.34018856094576,43.34027664622152,43.34043086314786,43.34047474981232,43.34067287719309,43.34080512455198,43.34083269625703,43.34084903363726,43.34089320650961,43.34102520497857,43.3411408663336,43.34157566117068,43.34169131122889,43.34170791136829,43.34173549730835,43.34175180128518,43.34186746557868,43.34188408245941,43.34191137459114,43.34192795868274,43.34204363844327,43.34206023977847,43.34210411829665,43.34219222352028,43.34226369987402,43.34228028576807,43.34236838607422,43.34243450042943,43.34254453254775,43.34256647697235,43.34261601075067,43.34263260905136,43.342682142206,43.34269845160198,43.34278681578301,43.34294075142291,43.34302881424357,43.34305076797681,43.34311690965444,43.3431388540151,43.34318838535755,43.34320497120262,43.34325450503636,43.34327110451726,43.34333694814449,43.34335918932907,43.34349115254577,43.34357924749317,43.34362876701466,43.34364536952014,43.34369488662594,43.34371121901326,43.34382686296736,43.34393156739602,43.34406354732823,43.34412966148538,43.3443058267726,43.34432777289177,43.34463589292342,43.34465785093057,43.34501016528837,43.34527439492582,43.34549442138554,43.34551637704164,43.3456539942669,43.34567058423124,43.34574206588523,43.34575866408178,43.34580819726798,43.34582450654069,43.34585209122913,43.3458686924585,43.34600066682987,43.34602262480524,43.34608875272499,43.34613292438341,43.34624830172879,43.34626488869677,43.34646300218958,43.34648494887887,43.34661721298741,43.34663915418962,43.34670529582099,43.34678805931677,43.34692533508827,43.34703537239167,43.3470575967905,43.34718956342431,43.34721150705656,43.34729959287192,43.34732155385187,43.34771774575719,43.34776193227395,43.34784999317669,43.3478719498157,43.34798197163281,43.34802615931091,43.34820203295418,43.34833428788334,43.34848848368566,43.34853238821754,43.34879660763653,43.34881856129464,43.3492806063596,43.34930283974775,43.34980904692699,43.34996325209761,43.34998519870488,43.35005133361386,43.35007329450212,43.35013912317903,43.35016136116637,43.35024916805723,43.35027137931171,43.3504033719888,43.35044753165559,43.35053561863525,43.35055757530453,43.35064565106668,43.35066759586341,43.35075566607819,43.35084375579383,43.35093183151965,43.35095377080844,43.35108575043108,43.35110798839215,43.35117355485963,43.35119577850184,43.35123967420365,43.35126163206585,43.35143777885443,43.35163589204507,43.35172396535602,43.35185621394348,43.35203208733886,43.35205433013005,43.35212018795658,43.35214239421177,43.35225243777725,43.35227438432682,43.35234051041802,43.35242860239804,43.35247248376976,43.352494437338,43.35264863167419,43.35278061621104,43.3529790111633,43.35311097647599,43.35317711559636,43.35330910127712,43.35341911741365,43.35348525837543,43.35352915406938,43.35359527197227,43.35368337002922,43.35392565492552,43.35396955058346,43.35399150404192,43.35403566676374,43.35421182922563,43.35447607783949,43.35465223465888,43.35467418247578,43.35471808235861,43.35478423250589,43.35491621222634,43.35496037371889,43.35502650572833,43.35520266943799,43.35529046487704,43.35557693888901,43.35566500444206,43.35590699983273,43.35592896054078,43.35608314798261,43.35610510863875,43.35628127342962,43.35630321738395,43.35641352888637,43.3566556727269,43.35672165746328,43.35685364073574,43.35694172189888,43.35709592794161,43.35720596231311,43.35762441532027,43.35780056439226,43.35797671930834,43.35817483712778,43.35826290933698,43.35850492450861,43.35876914927826,43.35929763987074,43.35934153549784,43.3594076670536,43.35949575106424,43.3598700181694,43.36006813928227,43.36020038650145,43.36024429643642,43.3604204506524,43.36048657837774,43.36050851720291,43.36064077741861,43.36066273362791,43.36075082343681,43.360772767737,43.36099279933291,43.36101475545588,43.36110283098368,43.36112506848858,43.36121313909194,43.36123509953931,43.36136707597985,43.36152127918053,43.3615651747512,43.36165325087723,43.36191748206242,43.36193942752006,43.36204973624619,43.36207169658274,43.36211558914071,43.36229174547577,43.36233593244727,43.3623578641702,43.36240177408661,43.36242401147791,43.36251208102231,43.36266601580761,43.3628641132459,43.3630402663922,43.36308446057049,43.36317252283182,43.36328256324949,43.36341453356938,43.36350261475847,43.36378907460813,43.36411917334404,43.36416306891582,43.36425142485059,43.36455954945916,43.36458150240534,43.36464763010949,43.36482379133619,43.36499966161851,43.36504383054284,43.36506579261488,43.36521999149382,43.36524195351881,43.36528613430878,43.36555037082738,43.36627699501457,43.36660736463521,43.36678324545694,43.36680545401612,43.36698161178799,43.3670035527334,43.36711357581519,43.36720700125112,43.36724555801301,43.36726215341384,43.36734430773075,43.36771856213598,43.36774051737289,43.36798279152244,43.36800473001561,43.36809283021379,43.36811475318135,43.3681589486046,43.36818088891255,43.36829091019578,43.36840108772638,43.36842303046547,43.36873129521533,43.36884148192735,43.36895136063731,43.36903943090797,43.36906138613931,43.36914946832617,43.36934755762122,43.36956789307995,43.36972181785304,43.36974377245889,43.3698760257105,43.36996411328035,43.36998604670276,43.3700302276801,43.37016220402046,43.37020638077078,43.37080071421973,43.3709329579422,43.37126305902558,43.37157148195548,43.37165956796291,43.37183571860263,43.37196769722469,43.37212190274694,43.37229806876407,43.37251813461497,43.37293657890477,43.37322276575955,43.37328890772891,43.37333308564976,43.37346506789764,43.37365989339278,43.3761833112047,43.37673168698772,43.37721410327504,43.37756563995071,43.37769735859536,43.37833344583876,43.37912406685292,43.3792557911114,43.37980460846281,43.38028729280084,43.38096787400342,43.38228663565451,43.38241850618917,43.38277131670742,43.38314466565628,43.38340881772842,43.38373955316143,43.38385072109975,43.38320941988139,43.38414987563596,43.38343974416409,43.38351914429079,43.38360216043323,43.38427742968192,43.38501175082053,43.38522080687935,43.38404772021038,43.38520842357272,43.38651570902778,43.38626710441797,43.38635131481293,43.38656367718416,43.38671215655646,43.38689906461588,43.38692577989689,43.38727781816467,43.3873160109922,43.38919382660927,43.38912272505777,43.38740761916341,43.38719553124901,43.38695995230112,43.38709946780347,43.38723334692381,43.38754096942938,43.3876726811279,43.38780410245374,43.38881394443653,43.38907680763545,43.38964842773522,43.38982449007938,43.38999038613309,43.39012943038519,43.39021388367113,43.39023625877635,43.39027467209271,43.3903729008069,43.39040863871601,43.39044042637844,43.39074909137292,43.39137060562825,43.39156790003796,43.39185327936011,43.3921823006845,43.39228386258532,43.39250280416363,43.39318219027263,43.39337917965138,43.39344477859599,43.39348839744261,43.39360798970267,43.39367358111498,43.39376109700751,43.39463141737992,43.39504878998078,43.39537892933413,43.39608132070594,43.39632511678055,43.39722700126324,43.39819500598069,43.39887664887653,43.3994932592295,43.39975723779745,43.40052669127644,43.40117608853564,43.40168730489017,43.40225931035577,43.40277052082251,43.40342992430929,43.4036499902115,43.40419934135208,43.40478091844882,43.40503363027393,43.40555034639255,43.40609447342066,43.40655121546335,43.40703528299258,43.40769492443546,43.40782689269579,43.40845924947663,43.40887222162839,43.40903164677611,43.40933979374226,43.40975825007681,43.41017149311516,43.41074909307747,43.41120034254102,43.41170643697192,43.41286821714831,43.41315987116964,43.41352893972051,43.4138422779746,43.41410157953494,43.41465213329664,43.41496094368122,43.41545701540968,43.41618879481338,43.41638689126732,43.41654685500799,43.41670106036022,43.41696528719392,43.41708079131308,43.41749332478191,43.41792017535892,43.41831330315227,43.41905108890185,43.41936495085107,43.41996528720009,43.42070895118628,43.42092981347655,43.42149744541686,43.42175714195277,43.42197717385336,43.42217713884234,43.42314748802693,43.42354394544653,43.42402765252993,43.42470954756615,43.42512810298297,43.42574361842554,43.42607996828968,43.42662524579348,43.42686735488007,43.42703799141801,43.42745581926006,43.42794542880695,43.42816571964423,43.42836873934516,43.42851744310698,43.42893541954421,43.42911140561714,43.42990358607777,43.43041014873842,43.43072960812419,43.43127459211767,43.43169268025416,43.43270552949087,43.43315121794415,43.43341004211906,43.4339158963984,43.43417981610624,43.43446639776533,43.43479600772888,43.43508158276686,43.43534548968156,43.43582889833,43.43681763472171,43.43780598546073,43.43813532196062,43.43831145523404,43.43839924764499,43.43888263451421,43.43919018323265,43.43940992106366,43.43965188833581,43.44022306134578,43.44077253674127,43.44143176932909,43.44196547646988,43.44259821688301,43.4431197016247,43.4433401372528,43.44461047350575,43.44542812861505,43.44613444102682,43.44677237480565,43.44714076631486,43.44787207795317,43.44831232806484,43.44878603436684,43.44897899664837,43.44914462769005,43.44931135733982,43.44951120228015,43.44973329758969,43.45003059578896,43.4501406131952,43.4504253795534,43.45053487490603,43.45068719682547,43.45073082055583,43.4512126195877,43.45143130379533,43.45158466897377,43.45197948026817,43.45268177815892,43.45296734245496,43.45327408292443,43.45360329035252,43.45399887595774,43.45415222614893,43.45463584631879,43.45494284024522,43.45531617731831,43.45577718446415,43.45593094727394,43.45617825753678,43.45676674463049,43.4572725597933,43.45738229144022,43.45777760283888,43.45791489482595,43.45841559997344,43.45909162849654,43.45951604362831,43.45973013359857,43.45986780614008,43.45997792494977,43.4601973930198,43.46054800736447,43.46096500885564,43.46116237739301,43.461316402012,43.4616907920977,43.46186085649529,43.46194315093618,43.46240177785405,43.46289209885423,43.46313414141526,43.46331025899695,43.46374875348167,43.463946438338,43.46427379348802,43.46455805133381,43.46528050609545,43.46576279823469,43.46600476996657,43.46657932687737,43.46679324588829,43.46695224478682,43.46727555161616,43.46751695653761,43.46802198602882,43.46830728451168,43.46905164156263,43.46949004690872,43.47069682082997,43.47163972929178,43.47247342935075,43.47297766356711,43.47346047718888,43.47381106607583,43.47464400741868,43.47481930863017,43.47523654760985,43.47536794192666,43.4759211914831,43.47604752454018,43.4764427662809,43.47710142209387,43.47723306521286,43.47749518751025,43.4778034040048,43.47903261178755,43.47905482416272,43.47977899504259,43.48028449990318,43.48078978085213,43.48098755336946,43.48230424902344,43.48265590064709,43.48285363753943,43.48313947002718,43.48340250406504,43.48368780925187,43.48421500910514,43.48474143249739,43.48542198135292,43.48561922919082,43.4861680893563,43.48660727370236,43.48693694126509,43.48731101724193,43.48799284452649,43.48823448410938,43.48843323421375,43.48882674353448,43.48926514316133,43.48979589787945,43.49005337389831,43.49022842654648,43.4904312965779,43.49064512351375,43.49101869534966,43.49224760965957,43.49263201436533,43.49276406916806,43.49282529008076,43.49283749827272,43.49287128355188,43.49288799859956,43.4929428701881,43.49299186068641,43.493029641757,43.49310906482432,43.49316814450124,43.49323321656312,43.49334234182223,43.49347324716479,43.49377866668461,43.49415046379921,43.49439140162493,43.49491529252612,43.49552722328273,43.49570205719778,43.49618154002818,43.49670545861044,43.49703366670804,43.49779918340464,43.49817101925746,43.49862722111141,43.49903415045166,43.49923365779474,43.4993607196558,43.49939435864395,43.49971028867596,43.49992846940106,43.50001668405101,43.50031438275364,43.50057666092404,43.50114406899699,43.50136244345632,43.50208333303706,43.50258372036221,43.5027172309961,43.50324149717508,43.50376598137918,43.50404990775656,43.50433372469003,43.50477060039285,43.50505450412945,43.50566627008827,43.50686790995799,43.50750122685224,43.50800332430723,43.50852732205701,43.50898579246535,43.50937914554862,43.50968501530019,43.51009981393022,43.51062358978753,43.51138841525714,43.51182480433783,43.51213054276089,43.51262674808046,43.51300475590854,43.51370396199307,43.51414058915835,43.51464328128186,43.51499263257655,43.51553844982527,43.51590644925421,43.51696936927071,43.51734102011247,43.51773423991509,43.51795248241102,43.51810531586898,43.51843289164084,43.51896249933957,43.51978721545655,43.52026771487932,43.52057347576612,43.52114090109265,43.52157764502251,43.52175264715105,43.52208018258762,43.5225830926224,43.52282325608377,43.52315085069101,43.52332511303769,43.52360883224428,43.52380503764272,43.52411725156936,43.52468918459221,43.52556279968852,43.52631080966133,43.52648019432467,43.52751211120363,43.52779067378359,43.52814015771335,43.52848417381824,43.52881743866501,43.52912330987724,43.53004088932762,43.53081151167687,43.53115585473219,43.53190901655082,43.53204064909442,43.53236858063602,43.5330243971871,43.53326493373187,43.53361465977256,43.53383302292685,43.5341391240532,43.53455389735687,43.53466334198556,43.53527508438604,43.53564671351722,43.53577782209617,43.53597424771954,43.53611030655254,43.53652069736433,43.5368046395011,43.53713228763617,43.537459976439,43.53800637892348,43.53862246305145,43.53897832094421,43.5393277814244,43.53954663533413,43.54011448623375,43.5406612432519,43.54101085261939,43.54133575500193,43.54155703564561,43.54165522088604,43.54222320157874,43.54261622180869,43.54292210766361]}]],[[{"lng":[-88.40097207174414,-88.40113552589871,-88.42115171026438,-88.44111978249987,-88.46143138803924,-88.5003335252194,-88.52176016421119,-88.54162801225924,-88.56166241723139,-88.58193821891022,-88.60165500144825,-88.62204432888247,-88.64475505931871,-88.66464453842032,-88.68464840342922,-88.70453015379113,-88.724775395528,-88.74481599930515,-88.76537059135291,-88.78556949958627,-88.80612255072141,-88.82563894421516,-88.84569974364216,-88.86562996726542,-88.88605693062478,-88.89105814905881,-88.89605936177739,-88.90107615081993,-88.90609294221285,-88.91109864809496,-88.91610435415836,-88.92111421161566,-88.92612406527758,-88.93113312879981,-88.93614218947197,-88.94117139760509,-88.94620060520455,-88.95120524113123,-88.956209885172,-88.96119492627378,-88.96617997383026,-88.97118171516617,-88.97618345843813,-88.98118421710967,-88.98618497565224,-88.99120552625895,-88.99622608380851,-89.00124709850552,-89.00611413653318,-89.00678278855787,-89.00713046569355,-89.00715514605076,-89.00690912488838,-89.00713470500305,-89.00702402162153,-89.00668855951511,-89.00624618207762,-89.00617235208128,-89.00612043267661,-89.00585109808745,-89.00542309717396,-89.00514643083959,-89.00491489189483,-89.00475817379039,-89.00450813882682,-89.008890244936,-89.00903498347738,-89.00927962384735,-89.00940452040257,-89.00948540114554,-89.00939149545977,-89.00916432123334,-89.00900300097685,-89.00880642859047,-89.00869292301154,-89.00888992908159,-89.00884702467769,-89.00893093278214,-88.99024756111362,-88.97029305798998,-88.95059380143627,-88.93047320261559,-88.89053420427582,-88.87204439716012,-88.85193355961864,-88.8319767875479,-88.81198656810606,-88.77218167526664,-88.75381749145841,-88.73377902164459,-88.713854280744,-88.69399205917703,-88.67412835546867,-88.65426170987278,-88.6351474042944,-88.61520897431133,-88.59542162876348,-88.57561693395257,-88.55575798660554,-88.5359410881281,-88.51706557385971,-88.49747899402223,-88.47763997051757,-88.45765746742819,-88.43769399080274,-88.41799159606697,-88.41840983888821,-88.41854482845476,-88.41874544730426,-88.41901555768169,-88.41924784992437,-88.41896999426521,-88.41869873265193,-88.4187220875307,-88.41868420102017,-88.41842519465703,-88.40161293030467,-88.40141647705669,-88.40129353556767,-88.40117467317546,-88.40084772887296,-88.4007897580849,-88.40063486622796,-88.40049339711108,-88.40027033538985,-88.40048473507235,-88.40038722566466,-88.40048945796518,-88.4005683282427,-88.40063260840979,-88.40065883623653,-88.40097207174414],"lat":[43.61644019217638,43.63097549591814,43.63116091643821,43.63147442211609,43.63166243443132,43.63175635988895,43.63200624851689,43.63207046926787,43.63220254418292,43.63245171486344,43.63265950320489,43.63276956958853,43.63297836492579,43.63313821909549,43.63317380843957,43.6332332167987,43.63317897923904,43.63316533644905,43.63306192408413,43.63299744034925,43.63300595224921,43.63305529337314,43.6330797747018,43.63329246519595,43.6335185496434,43.63349779179172,43.63347681500083,43.63343968918271,43.63340234678456,43.63337723592002,43.6333519057827,43.63332904625567,43.6333059743521,43.63325772722322,43.63320925745843,43.63317988965763,43.63315029504599,43.63312403758728,43.63309756589167,43.63309159182287,43.63308540157136,43.6330522856912,43.63301895212495,43.63298409043901,43.63294901478346,43.6329761767733,43.63300311583559,43.63303003774633,43.63305592745678,43.63305946862176,43.61841319269143,43.6040087778683,43.58939460826986,43.5602069898075,43.54564256206733,43.51691441224148,43.48782958757759,43.47328253076293,43.45866949862039,43.44426586081406,43.4297471312411,43.41528286253615,43.40065911877004,43.38613419667757,43.37165541266784,43.37159045055144,43.35734241922503,43.3428701091469,43.32840235321832,43.31388465316473,43.29944813439482,43.28486776619408,43.27040864016759,43.25584478259473,43.24134128502492,43.22681935200607,43.21227842361091,43.19774165145298,43.19786546613631,43.19786708725692,43.19778820706028,43.1977444929648,43.19771240527896,43.19771668665831,43.1978970275533,43.19793949323494,43.19784137152033,43.19768689565642,43.19771983869138,43.19762962460953,43.19751329073057,43.19713870013167,43.19698631764829,43.19707778737825,43.19699299142812,43.19702561099509,43.19701045330408,43.19684899737635,43.19654694994303,43.19610326351531,43.19574093150162,43.19565089533788,43.19571797612418,43.19567782300344,43.19525512152497,43.19471211504208,43.22383785294426,43.238439462054,43.25297326782923,43.26741227810466,43.28194443383148,43.31090186783978,43.32546522800874,43.33989755886728,43.35436840615627,43.37024924954844,43.370013664638,43.38471744223489,43.39925958184434,43.42833989691621,43.44286867146754,43.45679621015693,43.48224659082728,43.50043708543167,43.51510034993555,43.52967937930915,43.54353172662881,43.55807732236608,43.57265547907448,43.58725590924367,43.60182847644046,43.61644019217638]}]],[[{"lng":[-90.15223173271862,-90.17187496897635,-90.19205515298384,-90.21209376704076,-90.23134066790392,-90.25126203762186,-90.27121990240774,-90.29077641681482,-90.31263231201274,-90.31235463972381,-90.312159238988,-90.31182867976166,-90.31146989434041,-90.31117932610299,-90.31104722689545,-90.29174737832243,-90.27165539560794,-90.23194095795225,-90.21204383994329,-90.19198882188178,-90.19217075325167,-90.19211041450761,-90.19198140208481,-90.19188686242606,-90.19175797092592,-90.19171659194743,-90.19178807595624,-90.1918319214267,-90.19180911578444,-90.19169557928859,-90.19188470598095,-90.19193105457619,-90.19187188253861,-90.19196448209475,-90.19199501143439,-90.19200373166426,-90.1921767224859,-90.19242406338491,-90.19246228857939,-90.19253437047958,-90.19251181078069,-90.19252425615433,-90.19247446247552,-90.19249187947447,-90.19249660282892,-90.1915114221826,-90.19071439111211,-90.18999796868287,-90.18923226878286,-90.18855642907198,-90.18816582601372,-90.18789718428084,-90.18757011108792,-90.18711875894201,-90.18693873400119,-90.18677482351195,-90.18671346756022,-90.18626110357926,-90.18576119774924,-90.18535652569436,-90.1849615730122,-90.18450111500879,-90.18382474760338,-90.18328942612881,-90.18261305946685,-90.18221988470944,-90.18109500773953,-90.18001765151554,-90.17945595582346,-90.17869690218421,-90.17777904933811,-90.17719843180663,-90.17627130925406,-90.17577521941591,-90.17532359718575,-90.17488598273269,-90.17433383973759,-90.1727423440695,-90.16814520755483,-90.16718092288652,-90.16565478987734,-90.16488696278694,-90.16386606130509,-90.1623295520493,-90.16077419271583,-90.15963070623125,-90.15897448884027,-90.15828072093491,-90.15751182970511,-90.15674292451739,-90.15554855263693,-90.15386363610217,-90.15223827550197,-90.15114975214645,-90.15027738481609,-90.1495689571375,-90.14886802618332,-90.1476823609601,-90.1466235329285,-90.14598978034385,-90.14530384567412,-90.14369325831247,-90.14291782912841,-90.14167279026802,-90.14047245641667,-90.13951073643315,-90.13836264969119,-90.13690143440867,-90.13561900373936,-90.13451548256913,-90.13389636648371,-90.13306092748402,-90.132135944067,-90.13138991319011,-90.1305172313737,-90.12971158812225,-90.12946926652202,-90.12906266120933,-90.12807811587112,-90.12727242389204,-90.12662345542192,-90.12592222763156,-90.12516884153656,-90.12427352474347,-90.12311733934457,-90.12216244576472,-90.12146134401171,-90.1211992752236,-90.12083780587403,-90.12046949872554,-90.11876962336137,-90.11747244357636,-90.11671205833815,-90.11561595993724,-90.11491496869135,-90.11366961582623,-90.11284230695257,-90.11205980018913,-90.11088223378211,-90.10938417152423,-90.10884290441727,-90.10795703074801,-90.10738640324017,-90.10655143281075,-90.10558976880853,-90.10431499409182,-90.10365151026802,-90.10284628994614,-90.10204855213284,-90.1009303233815,-90.10004335496352,-90.09932780452522,-90.09797138132031,-90.09706970719911,-90.09607112205842,-90.09514716668207,-90.0938059339824,-90.09253921704575,-90.09179396098351,-90.09091448095185,-90.09028839797989,-90.08906607253893,-90.08791071091072,-90.08722320258254,-90.0863600612447,-90.08548617669457,-90.08463500834647,-90.08362054804871,-90.08224371671869,-90.08126455169206,-90.07993851271812,-90.07940116502984,-90.07888617173681,-90.07834747966602,-90.07805020323809,-90.07768447680742,-90.07723661955383,-90.07664699174101,-90.07617679785085,-90.07502013998713,-90.07437855009788,-90.07299880958492,-90.07205915115445,-90.07138796898425,-90.07050808626026,-90.07028681041093,-90.0698088118765,-90.06948234920128,-90.06857664974025,-90.06797247121379,-90.06724892303302,-90.06604051185717,-90.06530199561266,-90.06433213503729,-90.06349673523121,-90.06288514863608,-90.06239295226764,-90.06187845383675,-90.06118512218642,-90.06052166448796,-90.05954534257678,-90.05850950171263,-90.05703422712338,-90.05573770678279,-90.05464240000373,-90.05385268870938,-90.05313017873475,-90.05275468315834,-90.05263886457027,-90.05232640198464,-90.05205112970896,-90.05183574670781,-90.05188290698446,-90.05194143162188,-90.05202266515057,-90.05224673019138,-90.05269488880216,-90.0527473495263,-90.05273288910782,-90.05258449641757,-90.05234654236122,-90.05198937719497,-90.05185252344155,-90.05128203610697,-90.0506937973432,-90.05032898022898,-90.04991208840875,-90.04955482757302,-90.04921997317157,-90.04900040516857,-90.0489893256623,-90.04891534443631,-90.0489456581105,-90.04910936221214,-90.04910736290894,-90.0491840451224,-90.04936643773166,-90.04946332404835,-90.0495169694193,-90.04958708495623,-90.04968316407343,-90.04963173921955,-90.04910937848236,-90.04873135144592,-90.04779330156634,-90.0431283159312,-90.04173775306329,-90.04035082624223,-90.03962396937467,-90.03793659389369,-90.03719490394005,-90.03624552782757,-90.03566328329775,-90.03509961542306,-90.03450628831263,-90.0338981567311,-90.03270414797886,-90.03179932748999,-90.0306720355934,-90.02993040620051,-90.02950400789612,-90.02898506298808,-90.02859590983878,-90.02835130153623,-90.02768026769112,-90.02702021695704,-90.02670134152606,-90.02618216051016,-90.02601364378,-90.02569999718126,-90.02512137309807,-90.02437951810192,-90.02386021387817,-90.02321472946883,-90.02131902901341,-90.02063641044477,-90.01988699734666,-90.01882967864357,-90.0180728733979,-90.01642566659054,-90.01575044205218,-90.01491197432658,-90.0138212078773,-90.01316080874301,-90.01181029203818,-90.01120180304761,-90.01028906489772,-90.00960637478588,-90.00857489374812,-90.00757306333995,-90.00694968793717,-90.00606656801789,-90.00531701759651,-90.00468620513166,-90.00395889970576,-90.00248943192796,-90.00171758054211,-90.00092345405774,-90.00004025785331,-89.99914963710252,-89.99823674529149,-89.99631445691752,-89.99497107469445,-89.99410270005221,-89.99244388381082,-89.99114503194579,-89.98996494305067,-89.98860672468054,-89.98731529227048,-89.98664730525238,-89.98599415999557,-89.98506055058893,-89.98394938920885,-89.98276933886552,-89.98156707344064,-89.98089174793925,-89.97983797395642,-89.97903651593784,-89.9781088957302,-89.97702536533933,-89.9758824397079,-89.97496961210865,-89.97430172498504,-89.9730253375443,-89.97206802518144,-89.97141498505501,-89.96968955364385,-89.96881385281482,-89.96802720280844,-89.96698080305271,-89.96568207062907,-89.96444271374317,-89.96350019293568,-89.96274323582209,-89.96161519853293,-89.9609546990615,-89.9598785572617,-89.95864653653238,-89.95745902954344,-89.95672423897129,-89.95594116675126,-89.95452338441683,-89.95372913298719,-89.95309449969788,-89.95225576699995,-89.95150611303231,-89.95032603708536,-89.94961728295571,-89.94871127120832,-89.94109685408412,-89.94060163389986,-89.93973716254851,-89.93900994443474,-89.93819362907662,-89.93746637675309,-89.93525112599917,-89.93435317878698,-89.93151830795695,-89.93047938621785,-89.92936646325529,-89.92820159120306,-89.92755616706678,-89.92669551671918,-89.92590173848248,-89.92524141713344,-89.9246182341837,-89.92338660780396,-89.92060771966295,-89.91915331982328,-89.91819975397219,-89.91681205089988,-89.91594383613536,-89.91519441405929,-89.91436340142391,-89.91313917752329,-89.91235269483531,-89.91123226455848,-89.9103789359105,-89.9090992288707,-89.90822412813574,-89.9072478415285,-89.90577143745841,-89.90470263914752,-89.90361883785997,-89.90274034807676,-89.90181711401114,-89.90084037766455,-89.89999465094786,-89.89869631209275,-89.89776714504723,-89.89709411586085,-89.8960339553533,-89.89528349674268,-89.89446146066159,-89.89371092153607,-89.89250758874662,-89.89185227957144,-89.89074715320736,-89.89006794438633,-89.88910274119671,-89.88790508708462,-89.88705890707836,-89.88623048258344,-89.8857476302763,-89.88509794972528,-89.88434402184284,-89.88325354854673,-89.88259214421888,-89.88132606501716,-89.88068863550507,-89.88002143248858,-89.87877650855027,-89.87785919474834,-89.87710273184813,-89.87630461375295,-89.87559595559611,-89.87476240097392,-89.87350645118052,-89.87268494394991,-89.87189312841221,-89.87101196106453,-89.87004116398639,-89.86962222963351,-89.86922522031531,-89.86829648285401,-89.86760590440588,-89.86670702196714,-89.86599849645468,-89.86533168585053,-89.86425411836836,-89.86352194379894,-89.86211701271635,-89.8611345465266,-89.86025026868219,-89.85927939891444,-89.858522956953,-89.85782888727606,-89.85692908459581,-89.85599926377652,-89.85534934515864,-89.85458006781199,-89.85423659747202,-89.85378134953372,-89.85274469146806,-89.85136258143488,-89.84966991243621,-89.84667761548572,-89.84329748226008,-89.84237629153964,-89.8418332959465,-89.84128418136439,-89.84085098026208,-89.84027758463934,-89.83955843344036,-89.83817824394943,-89.8376337931161,-89.83669964572989,-89.83576238312574,-89.8344811402963,-89.83282120425906,-89.83243010319009,-89.83184525136413,-89.83115250859873,-89.83054651498661,-89.82989609214391,-89.82941278484975,-89.82866993757666,-89.82788192251654,-89.82711196502099,-89.82666420408317,-89.82592980429659,-89.82524314834855,-89.82483700207982,-89.82436800480383,-89.82379430580987,-89.82320278753807,-89.82282633372009,-89.822085306905,-89.82157739300467,-89.82114128315594,-89.82060971491309,-89.81997096560234,-89.81942183124185,-89.81861608326226,-89.81783708127067,-89.81744281775006,-89.81656130409961,-89.8159995949994,-89.81564075209025,-89.81513824172396,-89.81468919381743,-89.81430569377416,-89.81404174686546,-89.8137417585627,-89.81341765005598,-89.81325530339062,-89.81295529316779,-89.81263110152071,-89.81238499385135,-89.81213615698091,-89.81148084923454,-89.81089486406348,-89.81009688903794,-89.80925470290939,-89.80857110722648,-89.8076519817147,-89.80701660973585,-89.80589551680363,-89.80481631963008,-89.80396665709733,-89.80306658416772,-89.8018985814205,-89.80010771088585,-89.7989936198766,-89.7971763366341,-89.79604424307988,-89.79436994783049,-89.79322055348166,-89.79206520745845,-89.79104083777936,-89.78985527540365,-89.78865783330839,-89.78790715303066,-89.78674544880911,-89.78605438739585,-89.78532155967065,-89.78429922130303,-89.7775221528713,-89.77397570042227,-89.77319161673795,-89.77261276035843,-89.77183646918355,-89.77131090167987,-89.77064443583558,-89.76983839829541,-89.76893118807784,-89.76801729170866,-89.76734264760267,-89.76677563984202,-89.76623551682904,-89.76605347920699,-89.76592903370548,-89.7655874668913,-89.76474475969043,-89.76445113555712,-89.76431758370614,-89.76392855284139,-89.76343194378593,-89.76320040038533,-89.76306764477337,-89.76285457738653,-89.76273467643635,-89.76248401182454,-89.76185185484246,-89.76120165117578,-89.76109806409255,-89.76104398080435,-89.76085700937487,-89.76060408378525,-89.76039108816327,-89.76015153905198,-89.75998582976761,-89.75912221799241,-89.75792243658317,-89.757321292851,-89.75668444673985,-89.75600639586472,-89.75533101945513,-89.75468194000443,-89.75386614033661,-89.75296673841979,-89.75191789995576,-89.75092771410108,-89.75013353647286,-89.74933836718928,-89.74855454342283,-89.74821914088086,-89.74784702720223,-89.74767191519568,-89.74733715694877,-89.74707305242714,-89.74655805375895,-89.74604965248184,-89.74490787589554,-89.74417325062777,-89.74342714945401,-89.74271737175862,-89.74188837381898,-89.74097589262527,-89.74005141055832,-89.73928192816176,-89.73853037676166,-89.73781419296404,-89.73661453289671,-89.73585643902777,-89.73527731973644,-89.73469806130464,-89.73390965701483,-89.73259508502971,-89.73150981065807,-89.72938967641139,-89.72773961597385,-89.72734992412995,-89.72666672865898,-89.72600355245788,-89.72501882123544,-89.72370833484317,-89.72312268480817,-89.72271691945059,-89.72238051161878,-89.72194888779124,-89.72141547015919,-89.72094200135088,-89.72056443929884,-89.71965628447485,-89.71925458220424,-89.71875110105043,-89.71804457135144,-89.71706424363214,-89.71550220179704,-89.71507788825123,-89.71478285425671,-89.71428965358511,-89.71407881405969,-89.71386704693307,-89.71368803091148,-89.71354180451594,-89.71349340729394,-89.71344946010227,-89.7134409629987,-89.71358083941644,-89.7137216994124,-89.71403428046654,-89.71428827982049,-89.71457195672269,-89.71505121847586,-89.71535279783097,-89.71575480353602,-89.71602103899691,-89.71655958626602,-89.7168554113007,-89.71727026555688,-89.71767932422195,-89.71815375010547,-89.7189196180838,-89.71952518784315,-89.72043855844444,-89.72103387112421,-89.72151481305836,-89.72229217236129,-89.72309341385305,-89.72366890504811,-89.72432475087939,-89.72466892194539,-89.72514380236747,-89.72555337626167,-89.72634885986807,-89.72682918790993,-89.72705630574227,-89.72713706026271,-89.72707735672238,-89.72697213809252,-89.72676364336454,-89.72654695996302,-89.72616836371176,-89.72592775222678,-89.72563779392819,-89.7254435810879,-89.72533381780185,-89.72512668366582,-89.72500319636673,-89.72489004958894,-89.72490558809717,-89.72496865500926,-89.72492942586413,-89.72465684402623,-89.72436137874165,-89.72415649745378,-89.72392711892459,-89.72364346817825,-89.72330278135621,-89.72306749797508,-89.7227005528715,-89.72218056753427,-89.72175754652532,-89.72114148320605,-89.72065825213022,-89.71996382304701,-89.7194266838242,-89.71850817680732,-89.71800817368558,-89.71714081213833,-89.71604761784999,-89.71534890904319,-89.71415620454088,-89.71318642043073,-89.71267445417101,-89.71215629091131,-89.71186261169031,-89.7113309536693,-89.71035807285341,-89.70961102058706,-89.70912296781347,-89.70807467462258,-89.70729733719173,-89.70644148178921,-89.7056202532625,-89.70471945311802,-89.70416404654048,-89.70372782049299,-89.70329096538761,-89.70293387465109,-89.70260656555413,-89.70233394953297,-89.70185570160626,-89.70151025921386,-89.70128580456851,-89.70099194540717,-89.70070108331903,-89.70033428183631,-89.70006768594507,-89.69957667151255,-89.69917673295795,-89.69867408388565,-89.69839531507137,-89.69774480466631,-89.69738448066931,-89.69684640635657,-89.69558901530934,-89.69504517639,-89.6923431861093,-89.69169377466714,-89.6912946839811,-89.69073275499677,-89.69035174854083,-89.68991067645553,-89.68919108721241,-89.68879218238648,-89.68833875123053,-89.68001624366681,-89.67963557175447,-89.67907719097143,-89.67843801716324,-89.67776924279104,-89.67704092789063,-89.67613529397043,-89.67515451404009,-89.67424302378028,-89.67304004495273,-89.67192152702383,-89.67121517189514,-89.6705299105674,-89.66935265407473,-89.66792013275825,-89.66665620426133,-89.66588522164299,-89.66511361678039,-89.66424761167714,-89.66150647464696,-89.6599838770324,-89.65896222409813,-89.65714394814702,-89.65629026851011,-89.65598668602357,-89.65523506063262,-89.65381514314228,-89.65272291048844,-89.65165777273995,-89.64884447137533,-89.64710814528945,-89.64632573826988,-89.64570868057098,-89.64125034813901,-89.6401936018204,-89.63929009481704,-89.63852544371534,-89.63749279560002,-89.63654746997662,-89.6357406663174,-89.6339582628793,-89.63331402828854,-89.63272977001584,-89.63210364051054,-89.63112222369138,-89.62997797388013,-89.62887584908151,-89.62805076664523,-89.62737013047632,-89.62672572090591,-89.62579796288007,-89.62466868491337,-89.62352379477862,-89.62240602177367,-89.62094745836323,-89.61967008364381,-89.61857311301536,-89.61782528018868,-89.61707150817389,-89.61649848677708,-89.61590711638847,-89.6152285881725,-89.61396776333656,-89.613156072229,-89.61258276106129,-89.61188879909294,-89.61135166007625,-89.61077231435843,-89.61012064292541,-89.60902224661692,-89.60833405530848,-89.60773635430273,-89.60717478196661,-89.60642320000194,-89.6059159007566,-89.60528804969792,-89.60354612885719,-89.60078218841876,-89.60086073665471,-89.60082274596088,-89.60083787690445,-89.60099600091438,-89.60085649048834,-89.60057746841971,-89.60034305825675,-89.60003610040202,-89.59992201089545,-89.59975568893599,-89.59974524973565,-89.59975947931407,-89.59974585100346,-89.59972303087625,-89.59970991662426,-89.59970288312573,-89.60010521524229,-89.60063115148651,-89.6017024612598,-89.60220947518022,-89.60290505531627,-89.60354772953862,-89.6041690360409,-89.60483152774711,-89.60547011180827,-89.60635772277654,-89.60733515038029,-89.60792282692536,-89.60872128878688,-89.60948613191273,-89.6102344318693,-89.61154780941258,-89.61224829478559,-89.61337319410327,-89.6143500815781,-89.61563536490171,-89.61715622925651,-89.61792774763572,-89.61857306579539,-89.6194857683809,-89.62017549618983,-89.62082633481099,-89.62157938845559,-89.62312687724693,-89.62445106627689,-89.62515042093366,-89.62693557666229,-89.62797005393189,-89.62987953733833,-89.63100708739621,-89.63178488427364,-89.63258595692007,-89.63343076443425,-89.63410077996531,-89.63490901887926,-89.63583619587767,-89.63704511196593,-89.63785087599106,-89.63879237482959,-89.63947664928446,-89.64032357935699,-89.64132293270829,-89.64241662687587,-89.64342529883358,-89.64434645282297,-89.64565273748994,-89.64635579263188,-89.64844270424071,-89.64945091154631,-89.65152314356325,-89.65256304108519,-89.6534355754094,-89.65457212134689,-89.65535743431866,-89.6563724089909,-89.65734586523001,-89.65824855932591,-89.65937644593863,-89.65994751694217,-89.66051881135922,-89.66144816782892,-89.66237818757737,-89.66290031371453,-89.66316066642763,-89.66370946094494,-89.66446307940662,-89.66518088370616,-89.66646566049364,-89.6671641225696,-89.66820977550304,-89.66896189635335,-89.67076491493009,-89.67150765523378,-89.67269326248204,-89.67347881825219,-89.67451790173848,-89.67544550208217,-89.67651655816654,-89.68197888294078,-89.6827888963046,-89.68347912527116,-89.68427367316129,-89.68505559087554,-89.68581301793979,-89.6866821764267,-89.6878621715759,-89.68858065737953,-89.68954703295329,-89.69038934675547,-89.69161280662146,-89.69286782934181,-89.69387772615679,-89.69510339100097,-89.69603521030392,-89.69679450948229,-89.69792982550534,-89.69896794168547,-89.69964214362041,-89.70087398650313,-89.70190216181832,-89.70285052503866,-89.70364162923367,-89.70500053542168,-89.70577696095025,-89.70653865404321,-89.70767379003198,-89.70982061548418,-89.71167922358157,-89.71357980140293,-89.71542419715556,-89.71742248840135,-89.71833699925592,-89.71905733762729,-89.7196781900812,-89.7204737118979,-89.72148276606275,-89.7226713373051,-89.72364642470512,-89.72436927399356,-89.72533448458056,-89.72643550025843,-89.72733743716239,-89.72812763929061,-89.72882785173589,-89.72951956540479,-89.73014075544658,-89.7304752359052,-89.73110159954052,-89.73140930681512,-89.73190066123033,-89.73241222411507,-89.73274240172509,-89.73309240767196,-89.73355582624517,-89.73394831633337,-89.73419546466285,-89.73442517709395,-89.73454343948994,-89.73457983767513,-89.73456208361178,-89.73444267034083,-89.73426049033026,-89.73412772191203,-89.73397131124848,-89.73348256002048,-89.73312629315205,-89.73263867651946,-89.73218075622107,-89.73177864067567,-89.7311940033586,-89.73061204156528,-89.72976931158667,-89.72909696163711,-89.72822505439842,-89.72764054218996,-89.72696842634207,-89.72636682543835,-89.7257726058783,-89.72509324617586,-89.72456252536934,-89.72385385598163,-89.72315224719576,-89.7220946673547,-89.721655979256,-89.72104623234047,-89.72044054438456,-89.71988826115762,-89.71946782877866,-89.71907648750924,-89.71863625668617,-89.71840599802523,-89.71820770993902,-89.7181008257848,-89.71795167079111,-89.71782023731251,-89.71757990966968,-89.71741234488547,-89.71736618422145,-89.71750438709854,-89.71766395252183,-89.71782496431157,-89.71803749484684,-89.71842153450143,-89.71865259249894,-89.7189617736138,-89.71912842055752,-89.71928509269581,-89.719587419851,-89.71983093978437,-89.72025568136367,-89.72083254081559,-89.72136813235711,-89.72190981969896,-89.72299960574357,-89.72396122601722,-89.72443999663201,-89.72477014502817,-89.72577612168156,-89.72786110488914,-89.72868245149347,-89.73000895005181,-89.73072579054741,-89.73145948025082,-89.73363360073773,-89.7343138400299,-89.73585871835947,-89.73656783983792,-89.73722836928644,-89.73803939453832,-89.73884517034409,-89.73948085636199,-89.74025713562618,-89.74086348096047,-89.74188680781724,-89.74291703784355,-89.74353772509259,-89.74516843020866,-89.74598730826763,-89.74686654259888,-89.74749133697591,-89.74797809848252,-89.74861731580989,-89.74944940768971,-89.74998127063421,-89.75054201975163,-89.75130758192961,-89.75200176323932,-89.75229787328422,-89.75269457511592,-89.75330562611437,-89.75409445805795,-89.75489567820885,-89.75577014341617,-89.7560808927883,-89.75661964783777,-89.75702427468013,-89.75748258274899,-89.75771755353389,-89.75778662469789,-89.75789284232461,-89.75804135294459,-89.75826709790657,-89.75866252743941,-89.75917150708592,-89.75971345213857,-89.76040573317562,-89.76094681426865,-89.7617843566714,-89.7628104834769,-89.7637850064642,-89.76437099876546,-89.76496341818373,-89.76550086950414,-89.76627916499042,-89.76701182341387,-89.76761759643956,-89.76802418045155,-89.76832541707458,-89.76875613518204,-89.76900866892753,-89.76927463227862,-89.76973661362858,-89.77030026774639,-89.77105958832597,-89.7725613934826,-89.77374285739191,-89.77437831671004,-89.77486747895581,-89.77513766413483,-89.77520766631517,-89.77513181284718,-89.77481107974039,-89.77447579616543,-89.77413350610072,-89.77358841628879,-89.77324845986037,-89.77292720710592,-89.77283204206475,-89.77280261318428,-89.77287140257317,-89.77301114550795,-89.77327789091683,-89.77396110108808,-89.77447470327229,-89.77581310031655,-89.77636113054355,-89.77891229711949,-89.78003301634466,-89.78109664611297,-89.78134098253474,-89.78175590364557,-89.78211496723617,-89.78225706388749,-89.78221136889181,-89.78204589148187,-89.78170673880913,-89.78102478448436,-89.78034555266866,-89.7797516922453,-89.77903130598231,-89.77830351781745,-89.77759694744147,-89.77703410925213,-89.77626954117088,-89.7757216932864,-89.77553866687364,-89.7754422853841,-89.77569437056643,-89.77600119435596,-89.77630703131489,-89.77685432047954,-89.77769089460351,-89.77828711319752,-89.77885883011575,-89.77926056029619,-89.77979545385207,-89.78035716300366,-89.78100177664086,-89.78145680194888,-89.78213633569597,-89.78253233201157,-89.78270799558584,-89.78322133586865,-89.783606098155,-89.78372686903788,-89.78416303651237,-89.7854990955754,-89.78610311075421,-89.79871346074538,-89.81858833806128,-89.83795807866336,-89.85781145588197,-89.87771987747104,-89.89779550665324,-89.91771340070703,-89.95472131411607,-89.97489062586777,-89.99466324602996,-90.0144345234785,-90.03436247506929,-90.05415445940176,-90.07245747939938,-90.0924606100763,-90.11217563666582,-90.13213614922311,-90.15223173271862],"lat":[43.64197506994864,43.64211134061831,43.64183843353508,43.64168406806354,43.64161614531146,43.64163297972348,43.64149323893088,43.64130151798764,43.64104192689968,43.62648310418918,43.61200196331075,43.59749217106452,43.58287830680522,43.56847300029111,43.55400757385724,43.55397732598703,43.55407486262494,43.55467680069025,43.55482255606803,43.55498397148928,43.54003388860421,43.52553409547855,43.511066177964,43.49660745078342,43.48205365394828,43.46729595062897,43.45255406089247,43.43799310653019,43.42347668153153,43.40894433844772,43.3945580443358,43.380183490575,43.36549505620697,43.33659241322466,43.32209448916278,43.30764609547007,43.29312534736654,43.27851129904155,43.2640405112387,43.24932031369276,43.23532780953518,43.22083601820304,43.20624580941165,43.19124883127178,43.16402255522327,43.16363820226231,43.1633134361715,43.16307406427877,43.16280909782635,43.16257683830845,43.16242432014774,43.16224557255627,43.16200187477278,43.16158390784481,43.1613768066259,43.16113815874224,43.16089472969179,43.16014041954379,43.15916310721805,43.15866954738934,43.15828580274288,43.15794334136179,43.15751199052189,43.15721426301997,43.15702358395468,43.15698259339663,43.15705988441529,43.15735673980621,43.15751493927975,43.15778781317225,43.15813245023599,43.15837359147374,43.15875941037823,43.15905532877461,43.15935161343062,43.15958179525639,43.15995329747847,43.16083431220739,43.16328133256365,43.16384216476967,43.16469553178428,43.16510161648208,43.16555267965411,43.16606281259514,43.16654549284019,43.1667564452233,43.16683286689414,43.16689560293869,43.16691725623266,43.16693203929544,43.16697356409956,43.16693218694888,43.16685796482386,43.16681575565048,43.16675688225615,43.16667049671196,43.16660047570175,43.16646013039249,43.16636054242071,43.1663231525215,43.16628582964862,43.16614052795065,43.1660869305336,43.16605028168679,43.16600264813316,43.16598200016625,43.16596156355873,43.16592785520409,43.16583661657372,43.16573969644423,43.16557125796766,43.16533759028174,43.16506035966323,43.16479929365823,43.16457110522759,43.16431554951851,43.1642763267735,43.16413620660269,43.16387811104937,43.1635897966234,43.16338315708207,43.16313837410122,43.16289909837857,43.16251263487123,43.16213736709314,43.16176732371324,43.16156616557634,43.16148665983066,43.16141877916176,43.16134893944712,43.16118974114235,43.16111468207963,43.16108544803908,43.1609119391169,43.16075439919994,43.16048007460193,43.16053545916448,43.16063445113975,43.16073928187465,43.16086622775772,43.16091459163199,43.1608983682038,43.16084083980505,43.16078159540363,43.16073882843092,43.16067451458697,43.16063692209227,43.16053396764435,43.16044737103732,43.16038288400536,43.16042731720842,43.16045522345409,43.16060100251211,43.16077638793017,43.16095185008243,43.16118726709848,43.16153215749474,43.16187151376138,43.16198670777374,43.16207471780031,43.16212978406961,43.16225897718723,43.16230352615398,43.1622940808889,43.16220375479113,43.16210767109542,43.16191205446351,43.16163122098892,43.16105266199588,43.16051513441347,43.15963278445899,43.1591256755254,43.1586076256271,43.15807254936994,43.1577187322605,43.15733154739286,43.15682981996892,43.15620267569918,43.15570641713784,43.15459670983422,43.15410601049467,43.15337840739989,43.15291516941373,43.15257726788574,43.15222311734046,43.15211768497579,43.15196438560485,43.15183659462782,43.15126388516109,43.15082769475315,43.1502715223,43.14930363098458,43.14865468973268,43.1476948288121,43.14700772972372,43.14653877821554,43.14621163648282,43.14593088597043,43.14566932729367,43.14546777743438,43.14539735121789,43.14543062603922,43.14573422862383,43.14594222840046,43.14616103145462,43.14643697516544,43.1468738642014,43.14724639423965,43.14751254455347,43.14815114289729,43.1487133237841,43.1495974357705,43.14987486777708,43.15017348941075,43.15030128597546,43.15086051265975,43.1520007886411,43.15227217041121,43.15285477015333,43.15364062775023,43.154287375691,43.15499147177741,43.15528889462868,43.1558785348218,43.15659364447878,43.15709583679732,43.15773446850227,43.1583785370355,43.15908807063431,43.15943277849134,43.15962294104191,43.1603241813736,43.16102453003928,43.1616652202118,43.16200107851333,43.16229509106682,43.16310410692554,43.16366337801268,43.16403595017623,43.16425777202581,43.16490679030155,43.16552585606517,43.16631345715429,43.16671001954826,43.16720456513888,43.16900380464193,43.16966680471592,43.17026462268129,43.17056896312256,43.17126459901836,43.17161237570649,43.17206338429278,43.17232964605496,43.17265562976189,43.17302506156071,43.17347051575282,43.17439942642885,43.17506759295449,43.17600188707914,43.17667542797702,43.17716424971258,43.17808208336995,43.1789184291426,43.17946150606075,43.18051512256645,43.18129179245167,43.18173171073872,43.18228570803289,43.18239751858076,43.18267678868114,43.18307875002073,43.18356219504111,43.18389354647397,43.18417061782196,43.18490948728333,43.18515396758911,43.18539303197507,43.18583847987954,43.18622414529205,43.18702805815715,43.1873485333382,43.18776133849919,43.1883153521902,43.18867924717963,43.18934187603593,43.1896025820306,43.1900533714487,43.1904878434081,43.19111239437213,43.19160118029504,43.19187272728536,43.19226917773169,43.19258416420527,43.19288284929067,43.19312723400634,43.1936920106978,43.19395267192261,43.19422419265865,43.19455000453029,43.1947509149458,43.19490837934833,43.1952232832199,43.19536984536835,43.19546211880031,43.19558691521117,43.19563026017499,43.19559215417162,43.19560288422738,43.19565162024477,43.1956949878244,43.19574378225012,43.1958000456014,43.19578695177693,43.19563473608856,43.19531959908145,43.19509142340184,43.19467312073967,43.19437975003479,43.19408091644409,43.19394494729296,43.19387955274832,43.1937653223904,43.19359684099208,43.19325444609822,43.19306959259953,43.19292824382582,43.19272688609011,43.19262890930074,43.19254723813081,43.19246548931317,43.19238908444566,43.19230725619538,43.19227437789367,43.19220353772106,43.19214343745162,43.19211606138219,43.1921428416257,43.1922075610747,43.19228857790776,43.19236975576606,43.1925052093662,43.19285218647305,43.19303106347846,43.19313940799589,43.19324766400046,43.19332880273543,43.19336087369477,43.1933388450126,43.19317171182298,43.19162191879744,43.19158058126991,43.19144980259182,43.19136253485827,43.19131865559403,43.19126939028649,43.19122471746243,43.19118076213643,43.19107593062493,43.19101013983024,43.19075967008538,43.19051459010501,43.19031869543431,43.1901335233679,43.1898832263515,43.18974161106249,43.18957829704954,43.18933855475494,43.18906515081545,43.18895009673263,43.18891141092089,43.18887239746085,43.18882832168249,43.18874631698178,43.18863709253436,43.18845154573014,43.18834234107975,43.18823830438526,43.18817247974852,43.18809783813784,43.18804486632605,43.18797437779011,43.18791653568266,43.18799842209234,43.18815434290553,43.18836270986264,43.18862330486053,43.18883156738472,43.18901815717975,43.18927839847166,43.18950846128418,43.18966032954503,43.18989026036871,43.19005511982459,43.19029396777815,43.19049802200988,43.19087154946563,43.19108875133214,43.19146670577142,43.19172308581803,43.19208809131376,43.19257919732447,43.19296172280474,43.19339654495526,43.19370101351933,43.19406194152617,43.19444454247435,43.19488778871798,43.19513978416544,43.19554797802782,43.19570849932134,43.19586898705544,43.19610292382973,43.19627184402166,43.19639737065063,43.19650977562496,43.19654821664265,43.19651681002421,43.19630632249733,43.19620956993808,43.19615205594651,43.19611185649391,43.1962196671768,43.19630033077664,43.1963102211432,43.19623945344145,43.1961776680542,43.19607207082048,43.19604946117213,43.19601382523138,43.1959341372462,43.19583742788708,43.1957050496,43.19570386133889,43.19572892664793,43.1958627812697,43.19596640188112,43.19613108517126,43.19642619843581,43.19682146271828,43.19719529106011,43.19767787695566,43.19785637917955,43.19801665837394,43.19825057532469,43.19851452509352,43.19914834583232,43.20036416506969,43.20183204472553,43.20227948579584,43.20270130575467,43.20318410530289,43.20374547728746,43.20439813794901,43.20498960128882,43.20604780124761,43.20652468762857,43.20732057462261,43.20816001570284,43.20955656864222,43.21165828720028,43.21201929125236,43.21244535933992,43.21311522085574,43.21364144660008,43.21407611961199,43.2143847012935,43.21484972470436,43.21548893055869,43.21605410033534,43.21641935391118,43.21704120426791,43.21762390867604,43.21801100470831,43.21850255832603,43.21915077352174,43.21977717937869,43.22018609528324,43.22100829996309,43.22155205543096,43.22198265630869,43.22246102658744,43.22292179598188,43.22329122120486,43.22381271213781,43.22435166604117,43.22471697422112,43.22566089297639,43.2262350321648,43.2267005875406,43.22739243799491,43.22813229102943,43.22886354195658,43.22945993294653,43.23015210776681,43.23093572491678,43.23142337274428,43.23211554340014,43.23292094279004,43.23351735874223,43.23403100290665,43.23497089762852,43.23564516840415,43.23646719897452,43.23712796223463,43.23756245924478,43.23804882786303,43.23830042810177,43.23858169441004,43.23880203333776,43.23897918774933,43.23908219455546,43.23911938579036,43.23921646690935,43.23916659420234,43.23914160790335,43.23913087877838,43.23911045605783,43.23892977582457,43.23874907200504,43.2386034461236,43.23854899566174,43.23848580006508,43.23845827382144,43.2383994814298,43.23836334020807,43.23834454432594,43.23847330850157,43.23908764874492,43.23938564030413,43.23952784779244,43.23976194100163,43.2402090987696,43.24053042189443,43.24108234305315,43.24150764874657,43.24189789110267,43.24247543918214,43.24281386149897,43.2430523079104,43.24322003339159,43.2433470681952,43.24394363355452,43.24443955595783,43.24508256883318,43.24550453068304,43.24614028251833,43.24657511298516,43.24708813651775,43.24763220375715,43.2477661009795,43.24786283326888,43.24793060641802,43.2479574458635,43.24807375075919,43.24823358047105,43.24832561251586,43.24855871624224,43.24873819465033,43.24886874965323,43.24894604625764,43.24901356297315,43.24901517988287,43.24888267526466,43.24861440624482,43.24842145052411,43.24821534785833,43.24788282250317,43.24762871322996,43.24750534276576,43.24734676343694,43.24723155830004,43.24722928858202,43.24745802684926,43.24784400996564,43.24846958062145,43.24923022549633,43.24963462747785,43.25026983182754,43.25082270558441,43.25178907390573,43.25224155270066,43.25283287182396,43.25326738187552,43.25408818872332,43.25445683796566,43.25471654737444,43.2548412873737,43.25497011098557,43.25510745167584,43.25526218138611,43.25540854915165,43.25554187881113,43.2557667673132,43.25615172771715,43.25641571699787,43.25664090841695,43.25689659100676,43.25727376330126,43.25792157757937,43.25881465541046,43.26119850195235,43.2635367302348,43.26403678207905,43.26484978336308,43.26518363694483,43.26543829635484,43.2658838393312,43.26620479434338,43.26651039146463,43.2668608011202,43.2673912250332,43.2680172400845,43.26856934168777,43.26900405689432,43.27009091446264,43.27058655052375,43.27117341800476,43.27183384426615,43.27303812807848,43.27560448734597,43.27645727249546,43.27707513521406,43.27799308857691,43.27845433408866,43.2791116080806,43.27977767563502,43.28044382798849,43.28122784602936,43.28169821640547,43.28223838286871,43.2829270293435,43.28340657918859,43.28414357970038,43.28465825971465,43.28520351049835,43.28600626442132,43.28655155773929,43.28730184523031,43.28775556481577,43.28864122938382,43.28914729854833,43.28970593035322,43.29022969997652,43.29080590442587,43.29155271808349,43.29214666661683,43.29297749232346,43.2934833893325,43.29395068500794,43.29481076917889,43.29567090576133,43.29633881106308,43.29704611758481,43.29743465874598,43.2979367778388,43.29837339046458,43.29920735081165,43.29983145018151,43.30039395878421,43.3010083905559,43.30168783368351,43.30254141997721,43.30314644776097,43.30358156056923,43.30420796436264,43.30465608634648,43.30546566140635,43.30620577180925,43.30673697687899,43.30769486248765,43.30862246122206,43.3092407818359,43.30976357793929,43.31033004831398,43.31109230825116,43.31200647302113,43.31270277267867,43.31315533204987,43.31374723363233,43.31446533821191,43.31526172113982,43.31583618127979,43.31645170206893,43.31719171078169,43.31774334973252,43.31846996758903,43.31904776722558,43.31982682024854,43.32036501137075,43.32087594545185,43.3211729777171,43.32166209333078,43.32226468387861,43.32265332249105,43.32333021187767,43.32386729130038,43.32414233903069,43.32445684912097,43.32458834894232,43.32493286846131,43.3254786856622,43.32591102923928,43.32620366601871,43.32680629461943,43.32728240774369,43.32784164966205,43.32846336985104,43.32921888101624,43.32976133660512,43.33050586897669,43.3313775949447,43.33190740220751,43.33248991628778,43.33294537719948,43.33367224405354,43.33427225246835,43.33470590662154,43.33520077912602,43.33569566171375,43.33635702163867,43.33680371983765,43.33767089886339,43.33834532784974,43.33912913792729,43.33960211638722,43.34050834473383,43.34106444351728,43.3417121752408,43.34319137949822,43.34378206942539,43.34687150348202,43.34752768469092,43.34800470252686,43.3485909377411,43.34905484471073,43.3495098178331,43.35036317880402,43.35079632445391,43.35131266327709,43.3594875058411,43.35985926560117,43.36030070615677,43.36067173866122,43.36095495813294,43.36112835166471,43.36129685312221,43.36146513398989,43.36160290019208,43.36172666680488,43.36179364310158,43.36179161469903,43.3617808705853,43.36159325143707,43.36136540840299,43.36100781907366,43.36072949939103,43.36056620062853,43.36036810869153,43.36000343383618,43.35992973330365,43.35987844053319,43.35984668787896,43.35985728252855,43.3598471617435,43.3598935840971,43.36010860525599,43.36031144240774,43.36050558256848,43.36101455129943,43.36136010380655,43.36151559297839,43.36164802637634,43.36281125597443,43.36309742822401,43.36339284134143,43.3635878087935,43.36386087220958,43.36410788323035,43.36431146713904,43.36479264614552,43.3649528707242,43.3651352157715,43.36528233592747,43.36552479865369,43.36585006734512,43.36616668915967,43.36640086603857,43.36660918831075,43.36679130540596,43.3670996925246,43.36742495879164,43.36784227141201,43.36824650269484,43.36882503852661,43.36926819018618,43.36970315845461,43.37006909928013,43.37042186201715,43.37071381826539,43.37105395472312,43.37138941372039,43.37205186381687,43.37252283143496,43.37285424199928,43.37324664618012,43.37356062482606,43.3738920063471,43.37424945283178,43.37488170538825,43.37530480988919,43.3756799735099,43.37604648598826,43.37650445010996,43.37684482501577,43.37722864574475,43.37832355531492,43.38004627794542,43.39507468100066,43.40956292036201,43.42406791376997,43.43855197995676,43.46729105552186,43.48173859606176,43.49631287039438,43.51049644006201,43.52484530293198,43.53935939647612,43.55438948711436,43.55505814290888,43.55565096242596,43.55616611172794,43.55668129739296,43.55811050909408,43.55854245074769,43.55899599720991,43.55990315474922,43.56028604795,43.56077546788424,43.5611941146628,43.56154210507527,43.56190082409139,43.56220652436656,43.562650702692,43.56309165637621,43.56339363877301,43.56374574403411,43.56404478860198,43.56427672949123,43.56455645942341,43.56467882153169,43.56483790625028,43.56499647951141,43.56512079501936,43.56521412175994,43.56523434537238,43.56525767269456,43.56520778105647,43.56511479094966,43.56503225795188,43.56490065044224,43.56461638436382,43.56433842440815,43.56420940267395,43.56398660635038,43.56385940394022,43.56360261515889,43.56347311480577,43.5634024002638,43.56334851395015,43.56328417565738,43.56323338772212,43.56319714894824,43.5631542333327,43.56306632017577,43.56303711493597,43.56303303600887,43.5630316695912,43.56301668895048,43.56307629198781,43.56318558998087,43.56331225325874,43.56346686959338,43.56373912903409,43.56384717247266,43.56424532432315,43.5644566282057,43.56488291356122,43.56507311155402,43.5652522105419,43.56551679177984,43.56567443994953,43.56598451360336,43.56634386176253,43.56677356821446,43.56729216735091,43.56757971018217,43.56782843918671,43.56827231408827,43.56859973269735,43.56872071040022,43.5687624434146,43.56886135552729,43.56897288284957,43.56906321286946,43.56931399753206,43.56939366782297,43.56944258400302,43.56947299412711,43.56948173162731,43.56945210711645,43.56939696236334,43.56933071038968,43.56924897569156,43.5691386882727,43.56897586210292,43.56748233022157,43.56726423976993,43.56706147333453,43.56686251647523,43.56675880655116,43.56669736670894,43.56661505977367,43.56648771233761,43.56644732284728,43.56633349849702,43.56627931916564,43.56619087024927,43.56609896740878,43.56601345143465,43.56596732109593,43.56596627180621,43.56601063926152,43.56607716227158,43.56617165532644,43.56625106397138,43.56642721442871,43.56657105853783,43.56666175179439,43.56665674542779,43.56665673420514,43.56667637764981,43.56673127253757,43.56684005017761,43.5670878229065,43.56722566525674,43.56742503926716,43.56759351500884,43.56798766453851,43.56827487523893,43.56835781655305,43.56844050701181,43.56853420483804,43.56863195164606,43.5687442361418,43.56884188023749,43.56891067524554,43.56904710187909,43.56920501553854,43.56938361960029,43.56958665213076,43.56983534020481,43.57009858361608,43.57037132373025,43.57058733125239,43.57095234148392,43.57118611870022,43.57156110141867,43.57214608942252,43.57253363844878,43.57296146035485,43.57353776379004,43.57424094412084,43.57488378889766,43.57562893458263,43.57633147528061,43.57688561000277,43.57761253283757,43.57827570064406,43.57886108830203,43.57924514772019,43.57949209859214,43.58024616052278,43.58067586360596,43.58116877787341,43.58153118905777,43.58189726040575,43.58236876821182,43.58278381597806,43.58343115764618,43.58396949831883,43.58462028857977,43.58505295580896,43.58553129485428,43.58598156158864,43.58640714287731,43.58687133697568,43.58720883919877,43.58770824113638,43.58825353182525,43.58913320851239,43.58950973834663,43.590129347849,43.59091835790396,43.59170396259478,43.59232403015947,43.59295122488922,43.59364887203751,43.59408942478589,43.59442897753159,43.59468475848992,43.59494043688255,43.59527371240181,43.59578834734294,43.59631727436474,43.59684297386447,43.59740088984426,43.59770502218667,43.5979307367373,43.59813975870622,43.59856770937731,43.59875212698795,43.59893724142108,43.59901056692713,43.59911214486955,43.5992562722796,43.59935107265581,43.59950371551154,43.59959701622234,43.59969590402415,43.59975491905389,43.59983520035128,43.59980223680046,43.59978272578194,43.59971243510358,43.59953487716368,43.5991340264862,43.59897717698502,43.59878622498992,43.59865028701908,43.59854614070294,43.59828655920307,43.59818933094646,43.59801998959562,43.59797927781339,43.59794551149798,43.59791913873292,43.59798450269027,43.59808123858722,43.59823122011664,43.59837728266782,43.59866897256056,43.59905241960845,43.59925496336225,43.60003498184657,43.60045674916063,43.60096333894308,43.60135290470238,43.60165747176954,43.60208587818092,43.60284643137673,43.60340516965341,43.60402749125829,43.60503490911903,43.60569280240156,43.60588659601795,43.60609660454497,43.6063061339043,43.60638899694433,43.60641189424137,43.60633612594221,43.60621478808756,43.60582624116289,43.60544244611785,43.60499171205188,43.60452639149486,43.60438256338172,43.60425476755687,43.60412450039217,43.60402820419532,43.60386464293025,43.60374074012999,43.60363129918789,43.60355276982259,43.60359291454873,43.6036897512827,43.60393538533905,43.60433969967216,43.6047537987544,43.60539022690854,43.60580421788924,43.60610224656212,43.6062731313273,43.60660608552663,43.60695980432245,43.60755680797195,43.60876573389031,43.60907350156156,43.60955540275624,43.61000521949369,43.61042802426343,43.61091091079353,43.61178240522099,43.61209882795575,43.61231181838943,43.61268332349353,43.61316732141677,43.61393324150968,43.61473768901984,43.61543226237221,43.61611974512148,43.61672957878572,43.61766366837671,43.6182946756343,43.61911627964136,43.61935369378727,43.61968137362387,43.62013215183944,43.62046016401853,43.62080381190491,43.62126039943624,43.62161077733205,43.62223450455203,43.62247554662793,43.62356742142813,43.62396129757376,43.62469735402766,43.62489061335427,43.62509032926321,43.62529151852906,43.62554298814345,43.62592669706639,43.62617426835338,43.62659356431084,43.62709689683752,43.62751553980699,43.62783552892625,43.6282117339299,43.62861615266416,43.62919352523486,43.62965471824321,43.63014374950078,43.63048851037016,43.630747907494,43.63115493016483,43.6319564937387,43.63241232664817,43.63267486921917,43.63294686519095,43.63336138102787,43.63374013494189,43.63412239430862,43.63447936698871,43.63514403478001,43.63566739997043,43.63610975076836,43.63657996944348,43.63744938490284,43.63812416667929,43.63859384782833,43.63907122734874,43.63949895872286,43.63973036103656,43.64001876170646,43.64101772866643,43.64101482294735,43.64095342723817,43.64093652873563,43.6410291332044,43.64109908118214,43.64117970838038,43.64116219469303,43.6411705878084,43.64114577999612,43.64122900131095,43.64144061319973,43.64149930776543,43.64167238954822,43.64174893230723,43.64178024503553,43.64179486972733,43.64188900714431,43.64188294200162,43.64197506994864]}]],[[{"lng":[-89.12693009088831,-89.12692081089389,-89.13190358899669,-89.13688636273004,-89.14186604017844,-89.14684571276382,-89.15184450182139,-89.15684328919387,-89.16184473986877,-89.1668461793172,-89.17182271962211,-89.17679925622913,-89.18180183395114,-89.18680441538085,-89.19174963360577,-89.19669485306423,-89.20175013674881,-89.20680542288439,-89.2117460842754,-89.21668674280897,-89.22165801532107,-89.2266292826056,-89.23161734915278,-89.23660541649963,-89.24156606253975,-89.24530144136622,-89.26547417950229,-89.28548926868109,-89.30581080263319,-89.32601865081703,-89.3458756521632,-89.36474910813779,-89.38485929150009,-89.40490283255471,-89.42486138307717,-89.44495541853297,-89.46493782222814,-89.48355875175881,-89.50336856740469,-89.52352602019513,-89.54352487295013,-89.56339471529061,-89.58341546498831,-89.59968022417522,-89.61976983632218,-89.63957293760204,-89.6596692448025,-89.6797426518787,-89.69973364676692,-89.71877153273246,-89.73920395888452,-89.75890612300924,-89.77874878437008,-89.78499058623474,-89.7854990955754,-89.78416303651237,-89.78372686903788,-89.783606098155,-89.78322133586865,-89.78270799558584,-89.78253233201157,-89.78213633569597,-89.78145680194888,-89.78100177664086,-89.78035716300366,-89.77979545385207,-89.77926056029619,-89.77885883011575,-89.77828711319752,-89.77769089460351,-89.77685432047954,-89.77630703131489,-89.77600119435596,-89.77569437056643,-89.7754422853841,-89.77553866687364,-89.7757216932864,-89.77626954117088,-89.77703410925213,-89.77759694744147,-89.77830351781745,-89.77903130598231,-89.7797516922453,-89.78034555266866,-89.78102478448436,-89.78170673880913,-89.78204589148187,-89.78221136889181,-89.78225706388749,-89.78211496723617,-89.78175590364557,-89.78134098253474,-89.78109664611297,-89.78003301634466,-89.77891229711949,-89.77636113054355,-89.77581310031655,-89.77447470327229,-89.77396110108808,-89.77327789091683,-89.77301114550795,-89.77287140257317,-89.77280261318428,-89.77283204206475,-89.77292720710592,-89.77324845986037,-89.77358841628879,-89.77413350610072,-89.77447579616543,-89.77481107974039,-89.77513181284718,-89.77520766631517,-89.77513766413483,-89.77486747895581,-89.77437831671004,-89.77374285739191,-89.7725613934826,-89.77105958832597,-89.77030026774639,-89.76973661362858,-89.76927463227862,-89.76900866892753,-89.76875613518204,-89.76832541707458,-89.76802418045155,-89.76761759643956,-89.76701182341387,-89.76627916499042,-89.76550086950414,-89.76496341818373,-89.76437099876546,-89.7637850064642,-89.7628104834769,-89.7617843566714,-89.76094681426865,-89.76040573317562,-89.75971345213857,-89.75917150708592,-89.75866252743941,-89.75826709790657,-89.75804135294459,-89.75789284232461,-89.75778662469789,-89.75771755353389,-89.75748258274899,-89.75702427468013,-89.75661964783777,-89.7560808927883,-89.75577014341617,-89.75489567820885,-89.75409445805795,-89.75330562611437,-89.75269457511592,-89.75229787328422,-89.75200176323932,-89.75130758192961,-89.75054201975163,-89.74998127063421,-89.74944940768971,-89.74861731580989,-89.74797809848252,-89.74749133697591,-89.74686654259888,-89.74598730826763,-89.74516843020866,-89.74353772509259,-89.74291703784355,-89.74188680781724,-89.74086348096047,-89.74025713562618,-89.73948085636199,-89.73884517034409,-89.73803939453832,-89.73722836928644,-89.73656783983792,-89.73585871835947,-89.7343138400299,-89.73363360073773,-89.73145948025082,-89.73072579054741,-89.73000895005181,-89.72868245149347,-89.72786110488914,-89.72577612168156,-89.72477014502817,-89.72443999663201,-89.72396122601722,-89.72299960574357,-89.72190981969896,-89.72136813235711,-89.72083254081559,-89.72025568136367,-89.71983093978437,-89.719587419851,-89.71928509269581,-89.71912842055752,-89.7189617736138,-89.71865259249894,-89.71842153450143,-89.71803749484684,-89.71782496431157,-89.71766395252183,-89.71750438709854,-89.71736618422145,-89.71741234488547,-89.71757990966968,-89.71782023731251,-89.71795167079111,-89.7181008257848,-89.71820770993902,-89.71840599802523,-89.71863625668617,-89.71907648750924,-89.71946782877866,-89.71988826115762,-89.72044054438456,-89.72104623234047,-89.721655979256,-89.7220946673547,-89.72315224719576,-89.72385385598163,-89.72456252536934,-89.72509324617586,-89.7257726058783,-89.72636682543835,-89.72696842634207,-89.72764054218996,-89.72822505439842,-89.72909696163711,-89.72976931158667,-89.73061204156528,-89.7311940033586,-89.73177864067567,-89.73218075622107,-89.73263867651946,-89.73312629315205,-89.73348256002048,-89.73397131124848,-89.73412772191203,-89.73426049033026,-89.73444267034083,-89.73456208361178,-89.73457983767513,-89.73454343948994,-89.73442517709395,-89.73419546466285,-89.73394831633337,-89.73355582624517,-89.73309240767196,-89.73274240172509,-89.73241222411507,-89.73190066123033,-89.73140930681512,-89.73110159954052,-89.7304752359052,-89.73014075544658,-89.72951956540479,-89.72882785173589,-89.72812763929061,-89.72733743716239,-89.72643550025843,-89.72533448458056,-89.72436927399356,-89.72364642470512,-89.7226713373051,-89.72148276606275,-89.7204737118979,-89.7196781900812,-89.71905733762729,-89.71833699925592,-89.71742248840135,-89.71542419715556,-89.71357980140293,-89.71167922358157,-89.70982061548418,-89.70767379003198,-89.70653865404321,-89.70577696095025,-89.70500053542168,-89.70364162923367,-89.70285052503866,-89.70190216181832,-89.70087398650313,-89.69964214362041,-89.69896794168547,-89.69792982550534,-89.69679450948229,-89.69603521030392,-89.69510339100097,-89.69387772615679,-89.69286782934181,-89.69161280662146,-89.69038934675547,-89.68954703295329,-89.68858065737953,-89.6878621715759,-89.6866821764267,-89.68581301793979,-89.68505559087554,-89.68427367316129,-89.68347912527116,-89.6827888963046,-89.68197888294078,-89.67651655816654,-89.67544550208217,-89.67451790173848,-89.67347881825219,-89.67269326248204,-89.67150765523378,-89.67076491493009,-89.66896189635335,-89.66820977550304,-89.6671641225696,-89.66646566049364,-89.66518088370616,-89.66446307940662,-89.66370946094494,-89.66316066642763,-89.66290031371453,-89.66237818757737,-89.66144816782892,-89.66051881135922,-89.65994751694217,-89.65937644593863,-89.65824855932591,-89.65734586523001,-89.6563724089909,-89.65535743431866,-89.65457212134689,-89.6534355754094,-89.65256304108519,-89.65152314356325,-89.64945091154631,-89.64844270424071,-89.64635579263188,-89.64565273748994,-89.64434645282297,-89.64342529883358,-89.64241662687587,-89.64132293270829,-89.64032357935699,-89.63947664928446,-89.63879237482959,-89.63785087599106,-89.63704511196593,-89.63583619587767,-89.63490901887926,-89.63410077996531,-89.63343076443425,-89.63258595692007,-89.63178488427364,-89.63100708739621,-89.62987953733833,-89.62797005393189,-89.62693557666229,-89.62515042093366,-89.62445106627689,-89.62312687724693,-89.62157938845559,-89.62082633481099,-89.62017549618983,-89.6194857683809,-89.61857306579539,-89.61792774763572,-89.61715622925651,-89.61563536490171,-89.6143500815781,-89.61337319410327,-89.61224829478559,-89.61154780941258,-89.6102344318693,-89.60948613191273,-89.60872128878688,-89.60792282692536,-89.60733515038029,-89.60635772277654,-89.60547011180827,-89.60483152774711,-89.6041690360409,-89.60354772953862,-89.60290505531627,-89.60220947518022,-89.6017024612598,-89.60063115148651,-89.60010521524229,-89.59970288312573,-89.59970991662426,-89.59972303087625,-89.59974585100346,-89.59975947931407,-89.59974524973565,-89.59975568893599,-89.59992201089545,-89.60003610040202,-89.60034305825675,-89.60057746841971,-89.60085649048834,-89.60099600091438,-89.60083787690445,-89.60082274596088,-89.60086073665471,-89.60078218841876,-89.60354612885719,-89.60528804969792,-89.6059159007566,-89.60642320000194,-89.60717478196661,-89.60773635430273,-89.60833405530848,-89.60902224661692,-89.61012064292541,-89.61077231435843,-89.61135166007625,-89.61188879909294,-89.61258276106129,-89.613156072229,-89.61396776333656,-89.6152285881725,-89.61590711638847,-89.61649848677708,-89.61707150817389,-89.61782528018868,-89.61857311301536,-89.61967008364381,-89.62094745836323,-89.62240602177367,-89.62352379477862,-89.62466868491337,-89.62579796288007,-89.62672572090591,-89.62737013047632,-89.62805076664523,-89.62887584908151,-89.62997797388013,-89.63112222369138,-89.63210364051054,-89.63272977001584,-89.63331402828854,-89.6339582628793,-89.6357406663174,-89.63654746997662,-89.63749279560002,-89.63852544371534,-89.63929009481704,-89.6401936018204,-89.64125034813901,-89.64570868057098,-89.64632573826988,-89.64710814528945,-89.64884447137533,-89.65165777273995,-89.65272291048844,-89.65381514314228,-89.65523506063262,-89.65598668602357,-89.65629026851011,-89.65714394814702,-89.65896222409813,-89.6599838770324,-89.66150647464696,-89.66424761167714,-89.66511361678039,-89.66588522164299,-89.66665620426133,-89.66792013275825,-89.66935265407473,-89.6705299105674,-89.67121517189514,-89.67192152702383,-89.67304004495273,-89.67424302378028,-89.67515451404009,-89.67613529397043,-89.67704092789063,-89.67776924279104,-89.67843801716324,-89.67907719097143,-89.67963557175447,-89.68001624366681,-89.68833875123053,-89.68879218238648,-89.68919108721241,-89.68991067645553,-89.69035174854083,-89.69073275499677,-89.6912946839811,-89.69169377466714,-89.6923431861093,-89.69504517639,-89.69558901530934,-89.69684640635657,-89.69738448066931,-89.69774480466631,-89.69839531507137,-89.69867408388565,-89.69917673295795,-89.69957667151255,-89.70006768594507,-89.70033428183631,-89.70070108331903,-89.70099194540717,-89.70128580456851,-89.70151025921386,-89.70185570160626,-89.70233394953297,-89.70260656555413,-89.70293387465109,-89.70329096538761,-89.70372782049299,-89.70416404654048,-89.70471945311802,-89.7056202532625,-89.70644148178921,-89.70729733719173,-89.70807467462258,-89.70912296781347,-89.70961102058706,-89.71035807285341,-89.7113309536693,-89.71186261169031,-89.71215629091131,-89.71267445417101,-89.71318642043073,-89.71415620454088,-89.71534890904319,-89.71604761784999,-89.71714081213833,-89.71800817368558,-89.71850817680732,-89.7194266838242,-89.71996382304701,-89.72065825213022,-89.72114148320605,-89.72175754652532,-89.72218056753427,-89.7227005528715,-89.72306749797508,-89.72330278135621,-89.72364346817825,-89.72392711892459,-89.72415649745378,-89.72436137874165,-89.72465684402623,-89.72492942586413,-89.72496865500926,-89.72490558809717,-89.72489004958894,-89.72500319636673,-89.72512668366582,-89.72533381780185,-89.7254435810879,-89.72563779392819,-89.72592775222678,-89.72616836371176,-89.72654695996302,-89.72676364336454,-89.72697213809252,-89.72707735672238,-89.72713706026271,-89.72705630574227,-89.72682918790993,-89.72634885986807,-89.72555337626167,-89.72514380236747,-89.72466892194539,-89.72432475087939,-89.72366890504811,-89.72309341385305,-89.72229217236129,-89.72151481305836,-89.72103387112421,-89.72043855844444,-89.69988519140722,-89.68011392860041,-89.67025064193517,-89.66038465174843,-89.64046976132153,-89.62072674206142,-89.60073366238774,-89.58116645437349,-89.56117963692689,-89.54141587815563,-89.52150840989843,-89.50146896752312,-89.4815948113163,-89.46229379600105,-89.44236201675233,-89.4224820767834,-89.40273797231046,-89.38297853708403,-89.36311653669287,-89.36308621450327,-89.3445135012141,-89.32473156437919,-89.30492664172796,-89.26530137888406,-89.24571695243746,-89.22672492046098,-89.2068235602478,-89.18684700293821,-89.16693080530175,-89.14697640705002,-89.12720240601642,-89.10876453103771,-89.08892565293574,-89.06902532997978,-89.04911701109965,-89.02911865181493,-89.00916432123334,-89.00939149545977,-89.00948540114554,-89.00940452040257,-89.00927962384735,-89.00903498347738,-89.008890244936,-89.00450813882682,-89.00475817379039,-89.00491489189483,-89.00514643083959,-89.00542309717396,-89.00585109808745,-89.00612043267661,-89.00617235208128,-89.00624618207762,-89.00668855951511,-89.00702402162153,-89.00713470500305,-89.00690912488838,-89.00715514605076,-89.00713046569355,-89.00678278855787,-89.0118230782972,-89.01686336303736,-89.02185117987048,-89.02683898938285,-89.03182746639854,-89.03681594523289,-89.04183506383423,-89.04685417137061,-89.05186559456645,-89.05687699947335,-89.0618941664691,-89.0669113181109,-89.07191852559444,-89.07692571626681,-89.08193308300336,-89.08694043857732,-89.09194950880128,-89.09695857198847,-89.10196460367746,-89.10697063435501,-89.11197666402779,-89.1169826934489,-89.12198871503826,-89.12715742982972,-89.12706244244727,-89.12696744365545,-89.12693009088831],"lat":[43.64276459624421,43.64367084478808,43.64361801638228,43.64356496400917,43.64350969953264,43.64345421500449,43.64342365890735,43.64339288355045,43.6433460303878,43.64329896495762,43.64328736199507,43.64327554413724,43.64326286672989,43.6432499673442,43.64323830802143,43.64322643473621,43.64323680572573,43.6432469549582,43.64324673128272,43.64324629583813,43.64322141770494,43.64319632330641,43.64318782992318,43.64317911885503,43.64303301278404,43.64300958994215,43.64311722969444,43.64312888531771,43.64290873255303,43.64272481582071,43.64272750122974,43.64274800754315,43.64284887034942,43.64272158938279,43.64272205604908,43.64273629367175,43.6426696580573,43.64268456195027,43.64277055144162,43.64308140991739,43.64297671644474,43.64280809361703,43.64265232529311,43.64260489711846,43.64256343088345,43.64248376599066,43.6427555178015,43.64299636954991,43.64309054980033,43.64302582469619,43.64239358627557,43.6419120200652,43.64104998322221,43.64102017007051,43.64101772866643,43.64001876170646,43.63973036103656,43.63949895872286,43.63907122734874,43.63859384782833,43.63812416667929,43.63744938490284,43.63657996944348,43.63610975076836,43.63566739997043,43.63514403478001,43.63447936698871,43.63412239430862,43.63374013494189,43.63336138102787,43.63294686519095,43.63267486921917,43.63241232664817,43.6319564937387,43.63115493016483,43.630747907494,43.63048851037016,43.63014374950078,43.62965471824321,43.62919352523486,43.62861615266416,43.6282117339299,43.62783552892625,43.62751553980699,43.62709689683752,43.62659356431084,43.62617426835338,43.62592669706639,43.62554298814345,43.62529151852906,43.62509032926321,43.62489061335427,43.62469735402766,43.62396129757376,43.62356742142813,43.62247554662793,43.62223450455203,43.62161077733205,43.62126039943624,43.62080381190491,43.62046016401853,43.62013215183944,43.61968137362387,43.61935369378727,43.61911627964136,43.6182946756343,43.61766366837671,43.61672957878572,43.61611974512148,43.61543226237221,43.61473768901984,43.61393324150968,43.61316732141677,43.61268332349353,43.61231181838943,43.61209882795575,43.61178240522099,43.61091091079353,43.61042802426343,43.61000521949369,43.60955540275624,43.60907350156156,43.60876573389031,43.60755680797195,43.60695980432245,43.60660608552663,43.6062731313273,43.60610224656212,43.60580421788924,43.60539022690854,43.6047537987544,43.60433969967216,43.60393538533905,43.6036897512827,43.60359291454873,43.60355276982259,43.60363129918789,43.60374074012999,43.60386464293025,43.60402820419532,43.60412450039217,43.60425476755687,43.60438256338172,43.60452639149486,43.60499171205188,43.60544244611785,43.60582624116289,43.60621478808756,43.60633612594221,43.60641189424137,43.60638899694433,43.6063061339043,43.60609660454497,43.60588659601795,43.60569280240156,43.60503490911903,43.60402749125829,43.60340516965341,43.60284643137673,43.60208587818092,43.60165747176954,43.60135290470238,43.60096333894308,43.60045674916063,43.60003498184657,43.59925496336225,43.59905241960845,43.59866897256056,43.59837728266782,43.59823122011664,43.59808123858722,43.59798450269027,43.59791913873292,43.59794551149798,43.59797927781339,43.59801998959562,43.59818933094646,43.59828655920307,43.59854614070294,43.59865028701908,43.59878622498992,43.59897717698502,43.5991340264862,43.59953487716368,43.59971243510358,43.59978272578194,43.59980223680046,43.59983520035128,43.59975491905389,43.59969590402415,43.59959701622234,43.59950371551154,43.59935107265581,43.5992562722796,43.59911214486955,43.59901056692713,43.59893724142108,43.59875212698795,43.59856770937731,43.59813975870622,43.5979307367373,43.59770502218667,43.59740088984426,43.59684297386447,43.59631727436474,43.59578834734294,43.59527371240181,43.59494043688255,43.59468475848992,43.59442897753159,43.59408942478589,43.59364887203751,43.59295122488922,43.59232403015947,43.59170396259478,43.59091835790396,43.590129347849,43.58950973834663,43.58913320851239,43.58825353182525,43.58770824113638,43.58720883919877,43.58687133697568,43.58640714287731,43.58598156158864,43.58553129485428,43.58505295580896,43.58462028857977,43.58396949831883,43.58343115764618,43.58278381597806,43.58236876821182,43.58189726040575,43.58153118905777,43.58116877787341,43.58067586360596,43.58024616052278,43.57949209859214,43.57924514772019,43.57886108830203,43.57827570064406,43.57761253283757,43.57688561000277,43.57633147528061,43.57562893458263,43.57488378889766,43.57424094412084,43.57353776379004,43.57296146035485,43.57253363844878,43.57214608942252,43.57156110141867,43.57118611870022,43.57095234148392,43.57058733125239,43.57037132373025,43.57009858361608,43.56983534020481,43.56958665213076,43.56938361960029,43.56920501553854,43.56904710187909,43.56891067524554,43.56884188023749,43.5687442361418,43.56863195164606,43.56853420483804,43.56844050701181,43.56835781655305,43.56827487523893,43.56798766453851,43.56759351500884,43.56742503926716,43.56722566525674,43.5670878229065,43.56684005017761,43.56673127253757,43.56667637764981,43.56665673420514,43.56665674542779,43.56666175179439,43.56657105853783,43.56642721442871,43.56625106397138,43.56617165532644,43.56607716227158,43.56601063926152,43.56596627180621,43.56596732109593,43.56601345143465,43.56609896740878,43.56619087024927,43.56627931916564,43.56633349849702,43.56644732284728,43.56648771233761,43.56661505977367,43.56669736670894,43.56675880655116,43.56686251647523,43.56706147333453,43.56726423976993,43.56748233022157,43.56897586210292,43.5691386882727,43.56924897569156,43.56933071038968,43.56939696236334,43.56945210711645,43.56948173162731,43.56947299412711,43.56944258400302,43.56939366782297,43.56931399753206,43.56906321286946,43.56897288284957,43.56886135552729,43.5687624434146,43.56872071040022,43.56859973269735,43.56827231408827,43.56782843918671,43.56757971018217,43.56729216735091,43.56677356821446,43.56634386176253,43.56598451360336,43.56567443994953,43.56551679177984,43.5652522105419,43.56507311155402,43.56488291356122,43.5644566282057,43.56424532432315,43.56384717247266,43.56373912903409,43.56346686959338,43.56331225325874,43.56318558998087,43.56307629198781,43.56301668895048,43.5630316695912,43.56303303600887,43.56303711493597,43.56306632017577,43.5631542333327,43.56319714894824,43.56323338772212,43.56328417565738,43.56334851395015,43.5634024002638,43.56347311480577,43.56360261515889,43.56385940394022,43.56398660635038,43.56420940267395,43.56433842440815,43.56461638436382,43.56490065044224,43.56503225795188,43.56511479094966,43.56520778105647,43.56525767269456,43.56523434537238,43.56521412175994,43.56512079501936,43.56499647951141,43.56483790625028,43.56467882153169,43.56455645942341,43.56427672949123,43.56404478860198,43.56374574403411,43.56339363877301,43.56309165637621,43.562650702692,43.56220652436656,43.56190082409139,43.56154210507527,43.5611941146628,43.56077546788424,43.56028604795,43.55990315474922,43.55899599720991,43.55854245074769,43.55811050909408,43.55668129739296,43.55616611172794,43.55565096242596,43.55505814290888,43.55438948711436,43.53935939647612,43.52484530293198,43.51049644006201,43.49631287039438,43.48173859606176,43.46729105552186,43.43855197995676,43.42406791376997,43.40956292036201,43.39507468100066,43.38004627794542,43.37832355531492,43.37722864574475,43.37684482501577,43.37650445010996,43.37604648598826,43.3756799735099,43.37530480988919,43.37488170538825,43.37424945283178,43.3738920063471,43.37356062482606,43.37324664618012,43.37285424199928,43.37252283143496,43.37205186381687,43.37138941372039,43.37105395472312,43.37071381826539,43.37042186201715,43.37006909928013,43.36970315845461,43.36926819018618,43.36882503852661,43.36824650269484,43.36784227141201,43.36742495879164,43.3670996925246,43.36679130540596,43.36660918831075,43.36640086603857,43.36616668915967,43.36585006734512,43.36552479865369,43.36528233592747,43.3651352157715,43.3649528707242,43.36479264614552,43.36431146713904,43.36410788323035,43.36386087220958,43.3635878087935,43.36339284134143,43.36309742822401,43.36281125597443,43.36164802637634,43.36151559297839,43.36136010380655,43.36101455129943,43.36050558256848,43.36031144240774,43.36010860525599,43.3598935840971,43.3598471617435,43.35985728252855,43.35984668787896,43.35987844053319,43.35992973330365,43.36000343383618,43.36036810869153,43.36056620062853,43.36072949939103,43.36100781907366,43.36136540840299,43.36159325143707,43.3617808705853,43.36179161469903,43.36179364310158,43.36172666680488,43.36160290019208,43.36146513398989,43.36129685312221,43.36112835166471,43.36095495813294,43.36067173866122,43.36030070615677,43.35985926560117,43.3594875058411,43.35131266327709,43.35079632445391,43.35036317880402,43.3495098178331,43.34905484471073,43.3485909377411,43.34800470252686,43.34752768469092,43.34687150348202,43.34378206942539,43.34319137949822,43.3417121752408,43.34106444351728,43.34050834473383,43.33960211638722,43.33912913792729,43.33834532784974,43.33767089886339,43.33680371983765,43.33635702163867,43.33569566171375,43.33520077912602,43.33470590662154,43.33427225246835,43.33367224405354,43.33294537719948,43.33248991628778,43.33190740220751,43.3313775949447,43.33050586897669,43.32976133660512,43.32921888101624,43.32846336985104,43.32784164966205,43.32728240774369,43.32680629461943,43.32620366601871,43.32591102923928,43.3254786856622,43.32493286846131,43.32458834894232,43.32445684912097,43.32414233903069,43.32386729130038,43.32333021187767,43.32265332249105,43.32226468387861,43.32166209333078,43.3211729777171,43.32087594545185,43.32036501137075,43.31982682024854,43.31904776722558,43.31846996758903,43.31774334973252,43.31719171078169,43.31645170206893,43.31583618127979,43.31526172113982,43.31446533821191,43.31374723363233,43.31315533204987,43.31270277267867,43.31200647302113,43.31109230825116,43.31033004831398,43.30976357793929,43.3092407818359,43.30862246122206,43.30769486248765,43.30673697687899,43.30620577180925,43.30546566140635,43.30465608634648,43.30420796436264,43.30358156056923,43.30314644776097,43.30254141997721,43.30168783368351,43.3010083905559,43.30039395878421,43.29983145018151,43.29920735081165,43.29837339046458,43.2979367778388,43.29743465874598,43.29704611758481,43.29633881106308,43.29567090576133,43.29481076917889,43.29395068500794,43.2934833893325,43.29297749232346,43.29302128235371,43.29315971024337,43.29300794519546,43.29307452439483,43.29311956884618,43.29314989886444,43.29312670785533,43.29324593115281,43.29331489720363,43.29353039950939,43.29377987463862,43.29384887749068,43.29412099180308,43.29412052433079,43.2941773212738,43.29412623165945,43.29405523038419,43.29405755435983,43.29406883663899,43.28132041302723,43.28116286369145,43.28093129163459,43.28090522505082,43.28162834808964,43.28206959042645,43.28242211801339,43.28254740214091,43.28258708668412,43.28266170852697,43.28276577858692,43.28258607546783,43.2825993608289,43.28275301213944,43.28304004369279,43.28328499125417,43.28404769013458,43.28486776619408,43.29944813439482,43.31388465316473,43.32840235321832,43.3428701091469,43.35734241922503,43.37159045055144,43.37165541266784,43.38613419667757,43.40065911877004,43.41528286253615,43.4297471312411,43.44426586081406,43.45866949862039,43.47328253076293,43.48782958757759,43.51691441224148,43.54564256206733,43.5602069898075,43.58939460826986,43.6040087778683,43.61841319269143,43.63305946862176,43.63304579840237,43.63303190705832,43.63302426425066,43.63301639700228,43.6329935363898,43.63297045257163,43.63290087884126,43.63283108336404,43.63270837321665,43.63258544375526,43.63247063803824,43.63235561253178,43.63225200749267,43.63214818049106,43.63205916915547,43.63196994136566,43.63193114239139,43.63189212624866,43.63187972279728,43.63186710188862,43.63185425926773,43.63184119676501,43.63182791371499,43.6318139703535,43.63546584069399,43.63911768911664,43.64276459624421]}]],[[{"lng":[-91.25045373453425,-91.25773901760637,-91.25825807221518,-91.25879532971059,-91.25933442602914,-91.26032401931475,-91.2609868086361,-91.26221942218712,-91.26299713192029,-91.26374097209752,-91.26480900702629,-91.26593954402098,-91.26648961189041,-91.26742665986511,-91.26791228239671,-91.26827789148261,-91.26839974663854,-91.26840338971884,-91.26836004247464,-91.26804067302589,-91.26782578379243,-91.26764679555922,-91.26762205184238,-91.26768840216843,-91.26774130416435,-91.26794966946527,-91.26820401336236,-91.26855833279025,-91.26870250713641,-91.26902951975219,-91.27004075284449,-91.27034893526532,-91.27040496426265,-91.27051030437684,-91.27059902629173,-91.27075561055776,-91.27095252579019,-91.27146208546348,-91.27182490803446,-91.27215428410618,-91.2724328571594,-91.27262349278537,-91.27270013520805,-91.27261249198637,-91.27236735480592,-91.27197679160651,-91.27163804672661,-91.27124915350696,-91.2712631786665,-91.27132977398574,-91.27147557446975,-91.27199847568491,-91.27237390019536,-91.27280397286245,-91.27311896640791,-91.27325505225684,-91.273263499367,-91.2732330120096,-91.27320172026278,-91.27207415932098,-91.27199921007485,-91.27198433639128,-91.27191065543545,-91.27214445801668,-91.27231775111005,-91.27236307463454,-91.27219397594429,-91.27194356626597,-91.27154825595161,-91.27126060631416,-91.2709574587407,-91.27052130009578,-91.26980881165554,-91.26908112251313,-91.26779338771432,-91.26653572952195,-91.26578773817798,-91.2651963810022,-91.26456413455311,-91.26440375606958,-91.26400385593602,-91.26363758257084,-91.26330335658196,-91.26294590652522,-91.26267365028724,-91.26250040539338,-91.26243453696094,-91.26230878092954,-91.26243460938946,-91.26263971741569,-91.26293109244023,-91.26350064599869,-91.26407410445637,-91.26545251697233,-91.26586719424014,-91.26654330350165,-91.26732767168247,-91.26798021673656,-91.26826968399182,-91.26838260022689,-91.26836333790726,-91.2683431951353,-91.26821862955664,-91.26805090281195,-91.26796071567529,-91.26783142589939,-91.26785513364592,-91.26795560916376,-91.26803059048385,-91.26820919018222,-91.26851392473797,-91.26863819219587,-91.26872412091615,-91.26888393054435,-91.26890695015368,-91.26889361485978,-91.26876699609168,-91.26823009689052,-91.26684347848851,-91.26600552293303,-91.26564694209131,-91.26404725609345,-91.26253869772516,-91.26206245229088,-91.26071621558101,-91.25958980193094,-91.25927530812703,-91.25789195597862,-91.25512563508141,-91.25386819539759,-91.25213799441511,-91.25111034442527,-91.25037201714413,-91.24788933273382,-91.24540671317284,-91.24328855400039,-91.24216468651989,-91.24003673806776,-91.23810454595483,-91.23596051428369,-91.23489204557204,-91.23368442106018,-91.23291049943062,-91.2323116040597,-91.23201063336792,-91.23186685962928,-91.23171187367666,-91.23154003525806,-91.23151551394386,-91.23153137969769,-91.23165581881835,-91.23182869367886,-91.23215145759644,-91.23229271538241,-91.23238359776308,-91.23246289159641,-91.23272910984346,-91.2331264127625,-91.23344164850737,-91.23398524180686,-91.23449215999959,-91.23547772680459,-91.23676638790948,-91.23772401595124,-91.23848064065457,-91.23919885737087,-91.23959712425771,-91.24067862671518,-91.24147327625191,-91.24213454210033,-91.24264804516061,-91.24324894879801,-91.24384374228248,-91.2441560718278,-91.24433737979754,-91.24430006655899,-91.2441236347284,-91.24398645564335,-91.2437204249577,-91.24346077285466,-91.24326996705655,-91.24312033138315,-91.24275801171176,-91.2420041801778,-91.24122977313242,-91.2401235371253,-91.23962814365736,-91.23866667481393,-91.23777435102002,-91.23694149945678,-91.23648252878249,-91.2356408902465,-91.23503473865725,-91.23489843826638,-91.234687772455,-91.23430827945603,-91.23410232502852,-91.23361166228551,-91.23304867661007,-91.23248378794017,-91.23181249423408,-91.23104456594378,-91.23020124314017,-91.22904713166707,-91.22791665533485,-91.22715536254415,-91.22643245253718,-91.22553149272056,-91.22453361752568,-91.22411128900227,-91.2229928155234,-91.22206803055074,-91.22082994361483,-91.21919973950118,-91.21882549873226,-91.21809305604944,-91.21773259581666,-91.21747645022064,-91.21720442205137,-91.21714895713129,-91.21727103249395,-91.21753009130234,-91.21768939463483,-91.21784445058718,-91.21787009853628,-91.2177871984229,-91.21769881038716,-91.21768310923289,-91.21776289790026,-91.21810451549207,-91.21809780968283,-91.21794722846997,-91.21752351895563,-91.21724508218614,-91.21688566546071,-91.21616270996959,-91.21557699310523,-91.21524575596882,-91.2151666156839,-91.21534272316327,-91.2157185429874,-91.21636159124665,-91.21726990300755,-91.21765781340125,-91.21847214340366,-91.22027503558893,-91.22083575559155,-91.22195759949564,-91.22282329081276,-91.22447952511395,-91.22535518838636,-91.22673141737455,-91.22788090971166,-91.22882014393298,-91.2296425341802,-91.23040365562632,-91.23161458260549,-91.23224231156341,-91.23266832194186,-91.23292501639838,-91.23307856442085,-91.23318852727746,-91.23308237558985,-91.23295746974509,-91.23277139396116,-91.2321180578264,-91.23121195286777,-91.22917770674887,-91.22415354192313,-91.22281282650175,-91.21976566838948,-91.21889613690819,-91.21706685636572,-91.21472575814775,-91.21306309744392,-91.21137101312884,-91.20648751911411,-91.20520149878764,-91.20298516787153,-91.19796783345237,-91.19295087915008,-91.18793392633249,-91.1829330063873,-91.17793245991908,-91.17293153075228,-91.16793136378907,-91.16292979206942,-91.15792898530998,-91.15292816882969,-91.14792695578136,-91.14205216234487,-91.13708366424702,-91.13211515387238,-91.12714702284778,-91.12219924075194,-91.117251831329,-91.11230402196826,-91.10735657614596,-91.10247249096111,-91.09758878170793,-91.09270467542039,-91.0878205624233,-91.08275985499392,-91.07769952061282,-91.07263879707975,-91.06757844670189,-91.06264036152231,-91.05770228023367,-91.05276458315346,-91.04782689087293,-91.04283948943652,-91.03785246663836,-91.0328654419899,-91.02787801572993,-91.02237694537091,-91.01740817666104,-91.01243939959336,-91.00747022767332,-91.00251899420577,-90.99756741380403,-90.99261587008793,-90.98766470247885,-90.98271533153454,-90.97776672008413,-90.97281771718926,-90.96786908401812,-90.96282623965158,-90.95778338494465,-90.95274091778927,-90.94769843617186,-90.94271947270528,-90.93774088805641,-90.93276230730898,-90.92778448998263,-90.92284338675441,-90.91790305258243,-90.9129627229872,-90.9080220048638,-90.90230505596043,-90.89733620447561,-90.89236734281647,-90.8873988628702,-90.88246747245419,-90.8775368564402,-90.87260584828758,-90.86767483666084,-90.86271224021442,-90.85774963903197,-90.85278703248417,-90.84782441171001,-90.84282214905159,-90.83781949251265,-90.83281722385053,-90.82781494094672,-90.82279111118442,-90.81776765988758,-90.81274440707824,-90.8077215350914,-90.80282763686701,-90.79793414055113,-90.79304065473733,-90.78814796161437,-90.78201677349887,-90.77704851077539,-90.77208025079547,-90.76711199817173,-90.76201785698481,-90.75692404059146,-90.75183015469112,-90.74673615985957,-90.74179143661037,-90.73684714130388,-90.73190250155245,-90.72695829497644,-90.7222433423525,-90.71752838825034,-90.71281343615878,-90.70809886882135,-90.70323625260129,-90.69837367505176,-90.69351113463642,-90.68864785981575,-90.68358528228219,-90.67852189995185,-90.67345848937214,-90.66839543112097,-90.66846820465308,-90.66845012153523,-90.66855433052224,-90.66912418789749,-90.67006784920301,-90.67115713120066,-90.67147671467734,-90.67165496000318,-90.63135808772979,-90.61185255986719,-90.59176767227466,-90.57191648786889,-90.55232166652986,-90.53072223269763,-90.51096899737169,-90.49111210331459,-90.47126413073863,-90.45138999990237,-90.43146252152884,-90.41099940979028,-90.39098794184197,-90.37111166868728,-90.35079397120572,-90.33087499506871,-90.31104722689545,-90.31117932610299,-90.31146989434041,-90.31182867976166,-90.312159238988,-90.31235463972381,-90.31263231201274,-90.31247827731967,-90.31240126520738,-90.31230795651693,-90.31210490188579,-90.33218106448773,-90.35219396811229,-90.37221043015518,-90.39219489121838,-90.41212420766682,-90.43278757951857,-90.45278027507655,-90.4728087080306,-90.51279258963507,-90.53255678399817,-90.55249734613845,-90.57231016887427,-90.58226558429075,-90.5870234979336,-90.58755714765469,-90.59287063552455,-90.59779157215911,-90.59925337930829,-90.6020233367115,-90.60724175983519,-90.6070849032492,-90.61189362811373,-90.6319294414655,-90.65198188233197,-90.67089146080342,-90.69084785507273,-90.71057177527119,-90.73051283242111,-90.75046322893893,-90.77048408222987,-90.79059026529616,-90.81072207991724,-90.83076341366947,-90.85063985294758,-90.87065258663574,-90.8906238665745,-90.91056952551784,-90.93062090634358,-90.950671263606,-90.9706842273374,-90.99069712282703,-91.01085415449275,-91.03074535875112,-91.05064906941581,-91.07075063602552,-91.09101175352602,-91.11104299543587,-91.13114164628813,-91.15073640996489,-91.19063014437894,-91.2105821458114,-91.23043258039677,-91.25045373453425],"lat":[43.72559020404867,43.72572711712397,43.72453818686159,43.72329226878146,43.72211667210599,43.72066824365313,43.71984355131065,43.71840677492548,43.71749638836378,43.71683988842045,43.71588379336548,43.71467348379424,43.71404725025126,43.7124020980437,43.71148084636967,43.71040561290418,43.70972784681776,43.70898104555415,43.70830511028822,43.70605374850047,43.70323792171389,43.69888540827917,43.69725091133241,43.69579857963186,43.69462833500687,43.69345635759075,43.6926080183967,43.69146255823114,43.69092550878354,43.6898650478907,43.6871622117199,43.6861300910613,43.68555153021731,43.68411311142528,43.68278742461595,43.68194015901334,43.68114872391779,43.68043850025531,43.67970148607074,43.67873975111089,43.67814464266336,43.67705754670259,43.67609833911975,43.67562013668542,43.67504521142332,43.67448568763438,43.67406683276509,43.67312687722556,43.67287319947788,43.67233701103756,43.67189841456211,43.67090610761643,43.67030991639079,43.6695302278455,43.66880809774101,43.66836960940351,43.66783405993183,43.66732708387357,43.66676356612331,43.66208338244996,43.66174600519726,43.66104161298445,43.660323807073,43.65944753920049,43.65845911411542,43.65785253212895,43.65672695167579,43.65589828077113,43.65464859806931,43.65389068243488,43.65331639715432,43.65288427037301,43.65222983543689,43.65177309354967,43.65099812954918,43.65025123647858,43.64976627404521,43.64932178203909,43.6487933259608,43.64855536647109,43.647982132401,43.64718285692445,43.64604501786467,43.64520343991101,43.64424808969377,43.64337633877744,43.64302478509885,43.64164519181266,43.64023468032715,43.63937253487919,43.63846751050773,43.63695333390609,43.63560821162325,43.63333830544181,43.63275577105248,43.63169144233244,43.6302311364895,43.62896981026015,43.62798009748258,43.62734462646198,43.62642868486034,43.62547083056308,43.62509150969984,43.62450164054523,43.62389656071738,43.62329219658037,43.6225589498663,43.62181106665666,43.6212322905622,43.6204976077988,43.61929641502653,43.61875957787132,43.61822316852279,43.61751654957057,43.61676952412977,43.61613544989039,43.61565767225032,43.61456458064158,43.6122687428543,43.61116462304498,43.61070376070699,43.60887535950451,43.6072150302323,43.60669861895194,43.60538903993513,43.60438681700577,43.60417869024499,43.60340494323304,43.6018709032065,43.60109572381103,43.59994501148846,43.59902603108105,43.59848458471464,43.59656684369259,43.59466339388732,43.59302351749444,43.59211957485066,43.59046567360223,43.58889431080022,43.58691636392959,43.58587105926209,43.58464379069521,43.58376439729489,43.58292531529771,43.58242123438433,43.58201422766431,43.58155077793686,43.58073522868042,43.5804816952461,43.57507007380642,43.57263088318322,43.57160002226348,43.56983512068037,43.56917123373517,43.56791587394502,43.56611138646461,43.56489634073393,43.56396209839977,43.56325412826283,43.56236023241187,43.56156577706472,43.56046985695495,43.55906085006431,43.5580217678006,43.55712554314696,43.55624407770703,43.55581712921082,43.55469198705742,43.55376746949194,43.5529428842415,43.55200706729286,43.55107057585744,43.54983785866226,43.54901705499051,43.54840927299534,43.54753572112192,43.54602973288902,43.54500250657969,43.5433708715283,43.54204896195623,43.54078258161277,43.54010777319935,43.53943528107034,43.53856979141153,43.53766203288065,43.53660310989842,43.53605894637012,43.534984091016,43.53397910260477,43.53304408746025,43.53238668495354,43.53100042611644,43.52978100461547,43.52926108391979,43.52843188073325,43.52692806814599,43.52631012959969,43.52506131352842,43.52403866359505,43.52339645587366,43.52276946144733,43.52214350301657,43.52163118721491,43.5210659283326,43.52071171675583,43.52040980950108,43.52009341820922,43.51959575439844,43.51908505071987,43.51879355840336,43.51807281394212,43.51734971270701,43.51644704428207,43.51530881324761,43.51500272415247,43.51420718952573,43.51360521958787,43.51290308719371,43.51189132619303,43.51107450926455,43.51039677133343,43.50980226646944,43.5090535090749,43.50809375256345,43.50696599138286,43.50572682544349,43.50423391792342,43.50104913417182,43.49923028651292,43.49695758833264,43.49518214578549,43.49347857723309,43.49166508409616,43.49032923716437,43.48929026488956,43.48798728159438,43.48678160368146,43.48569983293781,43.48464380456304,43.48328904891589,43.4817771307052,43.4800651143649,43.47757506529861,43.47666910594955,43.47481428247866,43.4716100924236,43.47061757827355,43.46867474861703,43.46748171389253,43.46564597707167,43.46493201464499,43.46409984175713,43.46353796168346,43.46310523436637,43.46264533260295,43.46200290819652,43.46066512019897,43.45965775884976,43.45872320158425,43.45802991890953,43.45701331186646,43.45577207355368,43.45434998469216,43.45344921775835,43.45284540273919,43.45116133299184,43.44940935626849,43.44685236364928,43.44087452776195,43.43959226062397,43.43665142543827,43.43573043934356,43.43419978519424,43.43220940641532,43.43077539400633,43.42931381660783,43.42440463898223,43.42283200146934,43.42282529999411,43.42280989486244,43.42279399194034,43.42277814239362,43.42277260295957,43.42276655878497,43.42276058431313,43.42275409812366,43.42277498423254,43.42279564314767,43.42281608338937,43.42283631188064,43.42287912000014,43.42291514457693,43.42295067365683,43.42298626271997,43.4230580195311,43.42312983822942,43.42320116156629,43.42327227088708,43.42330400623045,43.42333552686531,43.42336684509097,43.42339795531993,43.42341983485581,43.4234412053488,43.42346263759698,43.42348384232924,43.42345444836521,43.42342483740413,43.42339529230463,43.42336553084304,43.42338581646889,43.42340588046708,43.42342600660391,43.42344564095483,43.42347640362628,43.42350413831903,43.42353136955519,43.42355867588971,43.4235968620884,43.42363484782713,43.42367262486753,43.42371018541934,43.42373963788445,43.42376887080345,43.42379789163526,43.42382640995957,43.4238296268319,43.42383261891971,43.42383538290706,43.42383765040989,43.42382819049602,43.42381823157314,43.4238083379169,43.42379793915877,43.42376451440487,43.42373058842696,43.4236967365002,43.42366238659632,43.42368657782007,43.4237071393996,43.42372749058209,43.42374761677382,43.42374360794258,43.42373965952611,43.42373522118324,43.42373057323444,43.42375802381463,43.42378554174234,43.42381284552634,43.42383965495204,43.42384768458068,43.42385521978158,43.4238628111142,43.42386990402084,43.42385357744454,43.42383674956347,43.42383432701884,43.42383168412815,43.42371479807858,43.42359769851574,43.42348011096596,43.42336258695273,43.4232977996819,43.42324531694052,43.42319233496689,43.42313914313103,43.42351286442364,43.42388664542202,43.4242596308974,43.42463239746631,43.4243376554542,43.42404242198172,43.42374668988905,43.42345074419705,43.42343817311797,43.42342540579473,43.4234121667892,43.42339900821327,43.42313585753225,43.42287250220895,43.42260865711376,43.42234460839504,43.42251262399362,43.42268042266456,43.42284799729602,43.42301505869146,43.43743322078474,43.45183584550696,43.46632493768491,43.48073755019667,43.49498725945761,43.5237032767784,43.53821972056083,43.55295051847808,43.55279066239035,43.55273446114953,43.55273196362972,43.55269268715337,43.55272075786599,43.5528583524725,43.55301147272245,43.55328350413281,43.55334247481231,43.55353063593542,43.5536885271219,43.55383446441191,43.55395915654978,43.55406330472655,43.55404773678051,43.55400207921745,43.55400757385724,43.56847300029111,43.58287830680522,43.59749217106452,43.61200196331075,43.62648310418918,43.64104192689968,43.66991801504625,43.69885283020114,43.7133733738876,43.73149651770613,43.73054339463266,43.72976335485831,43.72863962335374,43.72778092470568,43.72694171926093,43.72596204334683,43.72586394709511,43.72587812495082,43.72577228151363,43.72567038148162,43.72568407534055,43.72572841526091,43.72578196641825,43.72578076080274,43.72947056287656,43.72952069729853,43.72953815964638,43.7295218859344,43.72957628186245,43.72962624881537,43.72589682981403,43.72593418787865,43.72625315190789,43.72622551148628,43.7263175582725,43.7261705557893,43.72605893779857,43.72591073227824,43.72567991640598,43.72558907062518,43.72541224892033,43.72541938266258,43.725504662652,43.72555839027285,43.72553784312758,43.72549610612565,43.72540437774017,43.72530436768437,43.72526668633795,43.72519794818096,43.72517522737304,43.72522034637419,43.72520327457034,43.72532528110033,43.7250286331175,43.72498353643528,43.72484591690304,43.72520298614249,43.72528979379747,43.72541785479854,43.72543552809567,43.72534332602778,43.72559020404867]}]],[[{"lng":[-87.73150650495312,-87.73147245126725,-87.74150600402396,-87.76140480479903,-87.78144350084835,-87.80141889354485,-87.82156379666672,-87.84156369697691,-87.86192638937587,-87.88167704501761,-87.90176704997771,-87.92218673189848,-87.94213869450074,-87.96219597843263,-87.98218357476459,-88.00237690399022,-88.0225788363169,-88.04177954176711,-88.06170057546862,-88.0820085416071,-88.10226376132411,-88.12238202923311,-88.14293122537686,-88.14584567649212,-88.15795747701694,-88.16222992734724,-88.16222071918443,-88.16155570607509,-88.16136545972407,-88.16129106522169,-88.16116209509212,-88.16109247850049,-88.16104249692795,-88.16077763206296,-88.16055837977572,-88.16052179649942,-88.16055774785684,-88.16061587870522,-88.16068155486509,-88.16068651080927,-88.1604806768396,-88.16023674152184,-88.15997522599534,-88.16004178907085,-88.16022805532712,-88.1603839419322,-88.16042401975928,-88.16056669093173,-88.16089247082365,-88.14050418918985,-88.12048023945951,-88.10050273968879,-88.06069272508813,-88.0405657554798,-88.02084046220357,-87.98088938899572,-87.96075621026934,-87.94110570420469,-87.92104899772424,-87.90091956911125,-87.88100713465224,-87.86088554730206,-87.84088502276668,-87.82090766490433,-87.80081614031187,-87.79185615959284,-87.79199809729545,-87.79203091349356,-87.79208859176497,-87.79224020970408,-87.79242390940475,-87.79252413009924,-87.79284588010687,-87.79303850199273,-87.79315538267052,-87.79318239144615,-87.79316643375725,-87.79313124343454,-87.7930580826051,-87.792990596805,-87.79300803693387,-87.79298620465225,-87.79291871769949,-87.79284562371515,-87.79281033124823,-87.79285015936811,-87.79284444065446,-87.79275579836359,-87.79271919243938,-87.79272054825455,-87.79261714930313,-87.79262484695282,-87.79255812751437,-87.79251450532892,-87.7924842711147,-87.79237337407534,-87.7923519835708,-87.79234015695722,-87.79223585777265,-87.79205671179187,-87.79204965307244,-87.79208815301182,-87.79207407727229,-87.79192507127898,-87.79187933899121,-87.79183720547411,-87.79174728822387,-87.79170229204698,-87.79169017381884,-87.79159444552597,-87.79146931929668,-87.79143267403136,-87.79132166978475,-87.79128499808056,-87.79119580338204,-87.79109949842656,-87.79101143853987,-87.79084839686401,-87.79072896204099,-87.79044638471679,-87.79032692999191,-87.79029804107491,-87.79018682790334,-87.79006680709827,-87.78998447445159,-87.7897971986441,-87.78974444592158,-87.78965589115666,-87.78952097022076,-87.78907395300237,-87.78891918095573,-87.78879336976533,-87.78868446868273,-87.78849981485519,-87.78830526196704,-87.78821599898571,-87.78817998211791,-87.78812799676653,-87.7876122283173,-87.78721526100399,-87.78701354461944,-87.78673676627928,-87.7866397772076,-87.78643744290378,-87.78615351554062,-87.78607896425316,-87.78578670250833,-87.78567421831322,-87.78533961823045,-87.78510064061793,-87.78488327498641,-87.78463611487631,-87.78455462337342,-87.78441971183648,-87.78418307506487,-87.78397131870291,-87.7838061854148,-87.7837092011283,-87.78343095159418,-87.7833185087582,-87.78316242274356,-87.78288602700731,-87.78272104042456,-87.78260929027178,-87.7824146289863,-87.78209983083713,-87.78191270081835,-87.78126014457499,-87.7809458549642,-87.78043644303844,-87.78016628339367,-87.78000208152761,-87.7798296091174,-87.77964987877088,-87.77955288172751,-87.77935053302211,-87.77917811015934,-87.7788255074821,-87.77786655901706,-87.77760388969166,-87.77740194250119,-87.77718429035275,-87.77707240042812,-87.77694467981325,-87.77668247454768,-87.77650958933741,-87.77632861958028,-87.7760294981109,-87.77575305611325,-87.77543810893691,-87.77511570806517,-87.77488354692829,-87.77456816082884,-87.77434296821669,-87.77350311405347,-87.77345879556053,-87.77312197396155,-87.77297290191592,-87.77220031764735,-87.77185848870899,-87.77157081729695,-87.77144304385473,-87.77121097329822,-87.77073789467049,-87.77041593325831,-87.77017618222696,-87.76999607629695,-87.76973318543681,-87.76947076995492,-87.76919258849139,-87.76902019015054,-87.7687575515567,-87.76850581914479,-87.76825437408198,-87.76794594585024,-87.76765351341557,-87.76691860019487,-87.76663386471151,-87.76630457782397,-87.76609484426123,-87.76554846886216,-87.7649555780726,-87.76491122998698,-87.76465726852933,-87.76451456351496,-87.76441885117039,-87.7643294726501,-87.76402977618299,-87.7635719753283,-87.76312903363932,-87.76228846332575,-87.76212323786535,-87.76180886335992,-87.76157661437041,-87.76147959527934,-87.76107382439734,-87.76078948415268,-87.76053486928326,-87.76003935724584,-87.75960427875462,-87.7589507084402,-87.75877827899464,-87.75866564575257,-87.75858394472182,-87.75846360250969,-87.75826881878403,-87.75786306676244,-87.7578030804241,-87.7574571645292,-87.75733757854451,-87.75713556094917,-87.75694827729917,-87.75651238454604,-87.75624223291578,-87.75580670715361,-87.7555058718453,-87.75487545163283,-87.75441628783346,-87.7543044791519,-87.75422238794957,-87.75415444351322,-87.75378593173393,-87.75340335926629,-87.75310266811118,-87.75275725918227,-87.7523139295041,-87.75202068811085,-87.75187083499779,-87.75159230354748,-87.75124945717616,-87.75104451495716,-87.75063988605399,-87.75042140334277,-87.75026435338984,-87.75014351129794,-87.74527499179612,-87.74508494037413,-87.74475418854392,-87.74438051343648,-87.74405171514375,-87.74345213803839,-87.7431684540863,-87.74252444415559,-87.74225625428787,-87.74213587379111,-87.74198585547006,-87.74176269147596,-87.74148455567617,-87.74105870420716,-87.7408862547896,-87.74058577803495,-87.74039933220125,-87.74003308695961,-87.73922225778946,-87.73888640952157,-87.73848934238775,-87.73815221995203,-87.73765802213433,-87.73753766992353,-87.73704540319132,-87.73665604443201,-87.73649059129914,-87.73619132085022,-87.73596604627205,-87.73562951308105,-87.73542036346426,-87.73521756890925,-87.73497179257018,-87.73484357669392,-87.73474631992102,-87.73434946884966,-87.73397488958155,-87.73372057563505,-87.73346568287919,-87.73322681667555,-87.73299984640339,-87.73262894058387,-87.73246392964374,-87.73231545243156,-87.73197669468479,-87.73161752846666,-87.73153656943484,-87.73120560402887,-87.73108657505902,-87.73074138389669,-87.73057796628451,-87.73026377464195,-87.73006867800714,-87.73005462754313,-87.72971655779041,-87.72945516589984,-87.72914121838527,-87.72900589277633,-87.72873623749722,-87.72843745051624,-87.72836211854509,-87.7283325116374,-87.72806350634406,-87.72776327938372,-87.72734605337304,-87.7267329790638,-87.7266371670065,-87.72635883222875,-87.72615031302503,-87.72610575284256,-87.72598730699215,-87.72571748320188,-87.72544054925255,-87.72518612091385,-87.72499949902534,-87.72488032016076,-87.72470062161962,-87.72465683064094,-87.72444808336736,-87.7239245174887,-87.72374620208336,-87.72344741182421,-87.72325408588073,-87.72251279344418,-87.72183263105306,-87.72154699299392,-87.72123343273046,-87.72108465471283,-87.72087391790238,-87.72071042022108,-87.72066533373783,-87.72048687518273,-87.72032191654652,-87.72003658242886,-87.71955022218441,-87.71943882638389,-87.71930353669417,-87.71910978634166,-87.71887181956259,-87.71879712739604,-87.71860982712326,-87.71843161695925,-87.71831794905027,-87.71818264194457,-87.71797404029198,-87.71779411705504,-87.71769032143244,-87.71752684068126,-87.71677758893449,-87.71644898574289,-87.71619498149261,-87.71588063849966,-87.71549094906698,-87.71511663367654,-87.71495104874333,-87.71474251517462,-87.71418949467261,-87.71409151513774,-87.71382798540924,-87.71349846942975,-87.712832099173,-87.71273464453479,-87.71229983427773,-87.71206085223743,-87.71198547052118,-87.71189515786976,-87.71168457612885,-87.71145984023005,-87.71090505220582,-87.7107850982616,-87.71066300115062,-87.71059055050402,-87.71019314677416,-87.70989274642803,-87.70947977883473,-87.70913578599755,-87.70888114520626,-87.70868585748234,-87.70811245273197,-87.7077711214968,-87.70724741019441,-87.70666351192129,-87.706170542826,-87.70529728355463,-87.70530458159942,-87.70504950043521,-87.70464719827831,-87.70433266140745,-87.70398051124539,-87.70386197289857,-87.7037646601615,-87.70373416084075,-87.70372517285222,-87.7036802915739,-87.70351696614699,-87.70330063035735,-87.70315829575698,-87.70312988266448,-87.70302605525856,-87.70295358195763,-87.70294279662072,-87.70304055284679,-87.70301135063198,-87.70287845086108,-87.70284984709633,-87.70283976090145,-87.70280411839759,-87.70284684118319,-87.70281218589093,-87.70282372918548,-87.70279669694084,-87.7027669780656,-87.70274025829868,-87.70277844237283,-87.70284261062764,-87.70284359994292,-87.70290829557337,-87.70307912126583,-87.70320254464771,-87.70328080092624,-87.70348030907965,-87.70371511436049,-87.70377856996966,-87.70378264681835,-87.70382413011713,-87.70378776399748,-87.70378237581409,-87.70383884644576,-87.70384167350961,-87.70379780219781,-87.70370816590311,-87.70326512871517,-87.70303461275624,-87.70302932426189,-87.70285097126553,-87.70274964797196,-87.70277672695597,-87.70275719391729,-87.7027753249174,-87.70272492582328,-87.70273433261707,-87.70279731621487,-87.70281618207038,-87.70298939364257,-87.70299561797475,-87.70295291458947,-87.70299337628046,-87.70302004217632,-87.70302803879183,-87.70303613188172,-87.70301856284118,-87.70302802500807,-87.7030005400766,-87.70301787790321,-87.70294037696509,-87.70294461151634,-87.70307016921296,-87.70352417793649,-87.70409847066364,-87.70413238811362,-87.70412016276225,-87.70416830480346,-87.70443167953285,-87.70504731217709,-87.70524841562506,-87.70535655793462,-87.70541832232281,-87.7055120674397,-87.70581889312361,-87.70609433738157,-87.70621327827921,-87.70627893052342,-87.70638649051391,-87.70649385533298,-87.70652465239785,-87.70654248119216,-87.70662070983006,-87.70668319957089,-87.70674662755522,-87.70687135661701,-87.70693425531609,-87.70716624485978,-87.70728902336656,-87.70730584287601,-87.70736685087783,-87.70739830138648,-87.70756941630943,-87.70773845046136,-87.70792478986607,-87.70828053745177,-87.70839023524701,-87.70857545271392,-87.70857717881499,-87.70874634804119,-87.70884131007553,-87.70885855486711,-87.70895219866171,-87.70900393907387,-87.70911370744652,-87.70920008034197,-87.70922824102351,-87.70919840121383,-87.70920083350134,-87.70924788427634,-87.70935462115106,-87.70938612715425,-87.7093617099279,-87.70940867587234,-87.70944144488809,-87.70953403295073,-87.70956775326671,-87.70961467306238,-87.70973820036126,-87.7098004593868,-87.70985029540985,-87.70983883160982,-87.70987161140825,-87.70993392087132,-87.70996716312963,-87.70995356656984,-87.71000452263706,-87.70996176851916,-87.70993675453188,-87.70990832281235,-87.70988746511861,-87.71003150157902,-87.71003303089996,-87.71000541456385,-87.71002299250455,-87.71001017235216,-87.7098911991408,-87.7099031287712,-87.70961288309225,-87.70959089327913,-87.70955832916817,-87.70957646343174,-87.70962934781505,-87.70970557636581,-87.70973705975291,-87.70973673520618,-87.70964013884547,-87.70959505545575,-87.70956460390646,-87.70957725579096,-87.70960768653276,-87.70970386924502,-87.70988350765977,-87.70967493799834,-87.70952640042654,-87.70906365291093,-87.70883762681453,-87.7086891075422,-87.70861499801771,-87.70803098919566,-87.7077154742706,-87.70761334690121,-87.70750013090601,-87.70746209588852,-87.70742755878561,-87.70740039870147,-87.70726457828327,-87.70702133158589,-87.70678021752737,-87.7065460495902,-87.70650781866996,-87.70640258810155,-87.70625965172827,-87.70616896037633,-87.70600910613301,-87.70594906436891,-87.70528179722034,-87.70517552240966,-87.70511578538336,-87.70504130410161,-87.70502625442708,-87.7050501847317,-87.70499254969862,-87.70496261818521,-87.70488133518033,-87.70474654103262,-87.70465573216232,-87.70441202270291,-87.7043431009366,-87.70427969506154,-87.7042178340524,-87.70409973505001,-87.70408610832202,-87.70393358590846,-87.70367859091301,-87.70368833150532,-87.70351365685117,-87.70340306357923,-87.70329909158826,-87.70329493341589,-87.70332015814523,-87.70332573866385,-87.70335024974224,-87.70335909771516,-87.7033602824098,-87.70334166667649,-87.70257200283282,-87.70289164013262,-87.70309778182211,-87.70320540345719,-87.70325586588727,-87.70324139803799,-87.70322912940887,-87.70312928453234,-87.70304068350649,-87.70305756743493,-87.70301497431133,-87.703016929089,-87.70279890988678,-87.70274007126559,-87.70261561971385,-87.70246022161307,-87.70238615394756,-87.70229059244791,-87.70228491530122,-87.70218207638183,-87.70216014202705,-87.7021306533194,-87.70215325998181,-87.70370224074455,-87.70376310608643,-87.70376426410779,-87.7037322993591,-87.70368767496922,-87.7036652162043,-87.7036379552198,-87.70365911248962,-87.70365211201863,-87.70363677922934,-87.70360105466055,-87.70354621116253,-87.70345667884122,-87.70344262214532,-87.70335536661237,-87.70322093399754,-87.70309404653553,-87.70303289686431,-87.70274274212146,-87.70257119063673,-87.70245287740373,-87.70232723605321,-87.7022715691724,-87.70217753983819,-87.70207132173175,-87.70187557924682,-87.7016806522508,-87.70152693833381,-87.70145749323019,-87.70144819452454,-87.70144256218865,-87.70138328731483,-87.70108429372132,-87.70087768050907,-87.70056851894047,-87.70031262797895,-87.70009745572426,-87.69990623776411,-87.69931530553309,-87.6990159004925,-87.69860351312957,-87.69831571482661,-87.6981015303114,-87.69785044866759,-87.69761812479841,-87.69739689137241,-87.69722996825331,-87.69687604700009,-87.6966093777657,-87.69643090716524,-87.6961574662962,-87.69595584444438,-87.69582480379292,-87.69554394568405,-87.69554446655668,-87.69568290957608,-87.69576200260437,-87.69596164998863,-87.69594657730779,-87.69578349463958,-87.69578336343167,-87.69587511493863,-87.69596653729251,-87.69622331228092,-87.69628457380396,-87.6963653185106,-87.69647875122939,-87.69662939145498,-87.69699190129595,-87.69738514966885,-87.69753658359305,-87.69771960013249,-87.69823495678706,-87.698508447276,-87.69866081797591,-87.69895035586967,-87.69901927886224,-87.69918090464671,-87.69925805652868,-87.69926105719711,-87.69932365430977,-87.69972043100172,-87.69990341198356,-87.70004788880969,-87.70013934829066,-87.70031620630485,-87.70043688224314,-87.70053531329202,-87.70058106785943,-87.70094055897881,-87.70119190020081,-87.70194167106416,-87.70243240262562,-87.70268478929802,-87.70299195613519,-87.70343707430186,-87.70394454754951,-87.70409963901945,-87.7044827549566,-87.70475966154606,-87.70523574603105,-87.70574309452705,-87.70602429879129,-87.7062104008964,-87.7062881848621,-87.70642799145227,-87.70661464442145,-87.70668418452196,-87.70690638958789,-87.70690775415805,-87.70683342801713,-87.70679081286144,-87.7068228339888,-87.70686986232417,-87.7070469555439,-87.7073613087647,-87.70749981216365,-87.70760795302323,-87.70790336828244,-87.70799610816181,-87.70848894719234,-87.70854077544857,-87.70891984763139,-87.70895146116118,-87.70939718836429,-87.70964506292985,-87.70982989427442,-87.71007980822667,-87.71020513531079,-87.7103912898467,-87.71051620180957,-87.71082336934965,-87.71114560462746,-87.71140653871058,-87.71156055031837,-87.71177702081889,-87.71208420969502,-87.712269678916,-87.71230340664091,-87.71239537144264,-87.71252072533352,-87.71262902327938,-87.71282985448956,-87.7131695191771,-87.71347686281537,-87.71363071341808,-87.71393105547551,-87.7142923876316,-87.71459162793728,-87.71470561922452,-87.71491889729175,-87.71511235530532,-87.71516052176163,-87.71521485317133,-87.71522256476698,-87.71519276156772,-87.7151947400434,-87.71527390579811,-87.71562541025898,-87.71588868591134,-87.71639832467146,-87.71670569894486,-87.71693764886341,-87.71713732173592,-87.71750907904443,-87.7178647948387,-87.71798911479074,-87.71848380731851,-87.71859534827207,-87.71864874254889,-87.71888589380862,-87.71910251370811,-87.71922759811065,-87.71924430219715,-87.71929059372681,-87.71973544975617,-87.7199130653502,-87.72014966420572,-87.72033599048977,-87.72052110191845,-87.72082904051682,-87.72098240567968,-87.72133948161164,-87.72154181010978,-87.72170763782873,-87.72181337100984,-87.72195434273038,-87.72206336606885,-87.72238682362394,-87.72254013419123,-87.72280392436116,-87.7235877001787,-87.7238714343723,-87.7239860638922,-87.72431422710669,-87.72474519954721,-87.72530300035889,-87.72569037260669,-87.7259088629044,-87.72621818827432,-87.72653147355419,-87.72656564353429,-87.72666100790863,-87.72665183348904,-87.72676391441435,-87.72664652475706,-87.72650503011447,-87.7263741005732,-87.72633075506168,-87.72624943933324,-87.7260707370618,-87.72573964338788,-87.72565775096771,-87.72565059411542,-87.72583118328659,-87.72606323650416,-87.72635669522828,-87.72673458793905,-87.72718938136578,-87.72783986887947,-87.72798094814097,-87.7282466492495,-87.72837234771212,-87.72835747045553,-87.72837430078167,-87.72848642012133,-87.72854176205756,-87.72851577266943,-87.72834416804785,-87.72836713064164,-87.72833809611028,-87.7282972101807,-87.72831607095036,-87.72836379118451,-87.72876660191108,-87.72885503161974,-87.72906658137215,-87.72924273794919,-87.72924903732424,-87.72922318892093,-87.72932267746536,-87.72941169886927,-87.72943996673736,-87.72944313201091,-87.7295205341825,-87.72951209961293,-87.72955576262814,-87.72955515026624,-87.72957897329272,-87.72952250325193,-87.72945670979988,-87.72923898033717,-87.72918415311953,-87.72908200307968,-87.72905560208514,-87.72895405830032,-87.72866233220988,-87.72858999273677,-87.72855575504173,-87.7284620818301,-87.72840899417905,-87.72821002908462,-87.72809499733276,-87.72801512806144,-87.72795688895189,-87.72791290036976,-87.72795531999675,-87.72803009965878,-87.72806562426497,-87.72809074933977,-87.7281460373754,-87.72814145730057,-87.72807089009318,-87.72809159428142,-87.72808309166066,-87.72799764418181,-87.7279986912456,-87.72797992575393,-87.72800495182803,-87.72823847664979,-87.72850246293854,-87.7286661097227,-87.72886321786692,-87.72901774862329,-87.72959964757175,-87.7296556843375,-87.7296827786226,-87.72976137104001,-87.72982009581594,-87.72990002204695,-87.73011881781665,-87.73045101423556,-87.73062969128992,-87.73073038785695,-87.73084905688216,-87.73099040474656,-87.73131625016394,-87.73178395438094,-87.73194008702207,-87.73249306422052,-87.73261674423195,-87.73270122555307,-87.73288080589474,-87.73309892565067,-87.73341439257619,-87.7335079547715,-87.73352013629624,-87.73357635105448,-87.73366986382932,-87.73375248032515,-87.73381445142728,-87.73386071596924,-87.73395758705715,-87.7341292770011,-87.73437781836664,-87.73448605805815,-87.73453528609353,-87.73454487448325,-87.7345132880257,-87.73456029203574,-87.73466999371978,-87.73497972914275,-87.73508948868411,-87.73523418073022,-87.73532764268109,-87.73552117223008,-87.73561487347234,-87.73560248747596,-87.7355781960226,-87.73561473426906,-87.73572380730585,-87.73576727058006,-87.73594552563252,-87.73594752451493,-87.73601590969524,-87.73597390747724,-87.73586920997749,-87.73570515239989,-87.73553928507593,-87.7354201111775,-87.73542052615345,-87.73534615640065,-87.73531725853994,-87.73492782872178,-87.73474703630745,-87.73437104319746,-87.73387275548983,-87.73373897213743,-87.73361968082071,-87.73320247242926,-87.73295891124955,-87.73282582253725,-87.73243569243454,-87.73215091498447,-87.73196922594289,-87.73187999813126,-87.73170091708396,-87.73164070871684,-87.73150650495312],"lat":[43.89241428946165,43.89247711858745,43.89233589240699,43.89223595844059,43.89205736227971,43.89196799895091,43.89181647260845,43.89162685784589,43.89155926102666,43.89170036652643,43.8919306574658,43.89206099833228,43.89192491306569,43.89184686522379,43.89180345220383,43.89172664745881,43.89169110833134,43.89176736631076,43.89178001911741,43.89181116154545,43.89173990559351,43.89169234947587,43.89162377378217,43.89158611718663,43.89152395603874,43.8915305497929,43.87707495818343,43.86254519646554,43.84798195912234,43.83354350832874,43.81900679101666,43.80445833912497,43.79005225130739,43.77553379013165,43.76104754141356,43.74665342308541,43.73209062052509,43.71760973446546,43.70315651055484,43.68860436152588,43.67409605620977,43.65956571959624,43.63044978285041,43.61579350881734,43.60126995729985,43.58674560404043,43.57210371177265,43.55751858150985,43.54290963327492,43.54270314019833,43.54260225855359,43.54247809652309,43.54242180833634,43.54245288718558,43.54254927222809,43.54266271604939,43.54289452454069,43.5431466726304,43.54335091017519,43.54344027283105,43.54329656835628,43.54318571854968,43.54308823774143,43.54305860078474,43.54304212169477,43.54303203664013,43.54359870577187,43.54401351978769,43.54434074100965,43.54506144945019,43.5454758003551,43.5458032813592,43.54663222490941,43.5473745456887,43.54805124832396,43.5488373612475,43.54999517333365,43.55034451886719,43.55073787312156,43.55089103881124,43.55121861352956,43.5513715361823,43.55152470726239,43.55185250073011,43.55228934745004,43.55266068368663,43.55294447885579,43.55333780731671,43.55355629027523,43.55373104531617,43.5541682725082,43.55421174851673,43.5543649329195,43.55462717295336,43.55467104761992,43.55524993622482,43.55534828127295,43.55554501429789,43.55609138876179,43.55644133012799,43.55652869948016,43.5567033343595,43.5568344590041,43.5572277480054,43.557420447408,43.55759943351836,43.55773078085312,43.55783993061672,43.55829861264458,43.55877959132351,43.55926028929017,43.55950071355495,43.55980667164079,43.56006904166124,43.56024402156171,43.5605499765604,43.56109610404272,43.56155524658462,43.56177409404899,43.56253930306482,43.56277981453046,43.56299844559383,43.563309741,43.56352322946557,43.56361617802901,43.56376421662316,43.56387349270268,43.56415765230251,43.56437647912105,43.56542606464375,43.56608148019296,43.56632608910615,43.56646804358307,43.56662878817438,43.56686953223866,43.56708812062904,43.56743773036016,43.56754701864889,43.56844389235106,43.5690127296597,43.56940640175346,43.569778643119,43.56997541022858,43.57023794713843,43.57076283000819,43.57095975346667,43.57133169000635,43.57152872016938,43.57233764656251,43.57279699349321,43.57315236820389,43.57349703889327,43.57367188163997,43.57384708687103,43.57426343204703,43.5746343901983,43.57483152330021,43.57500662545777,43.57529103927689,43.57544445608636,43.57583787526329,43.57632463077707,43.57655974778731,43.576778456205,43.57706280235898,43.57745679845903,43.57774663739349,43.57846383815337,43.57905424042665,43.57966702038422,43.58008832669578,43.58030151283962,43.58061329226655,43.58084868417757,43.58102350026638,43.58124241211755,43.58151058225747,43.58192100143174,43.58330470401112,43.58360572703732,43.58393943976861,43.58415298701293,43.58431147112989,43.58443728983437,43.5848095065297,43.58498453038309,43.58521088541288,43.58559729446457,43.58604041988712,43.58647800742676,43.58684454178125,43.58717822877122,43.58750129199843,43.58783482904074,43.58890173937645,43.58903283649988,43.58957972654058,43.58986409805186,43.59082708074778,43.59134122926844,43.59175148269306,43.59189895814536,43.59227090377963,43.59277461095011,43.5931903861188,43.5935185681436,43.5938248403322,43.594087572567,43.59442121991057,43.5946785857758,43.59488089747086,43.59509467634351,43.59536944383717,43.59563633132698,43.59591561613793,43.59624389012896,43.59727228261097,43.59762236781715,43.59823466091654,43.598524592613,43.59941597653372,43.60020374841996,43.60033484623316,43.60079413385006,43.6011137933049,43.60146081754709,43.60165771341237,43.60213889772647,43.6026862073888,43.60314573439626,43.60415795884224,43.60443693304864,43.60487449685264,43.60529002627266,43.60542121428637,43.60585895273949,43.60638404110038,43.60673413897622,43.60733583716527,43.60791565086942,43.60853956889552,43.60882402750313,43.60902074522168,43.60923945643724,43.60941435500993,43.60963337904355,43.61002749464822,43.61012029100479,43.61050882866973,43.61068402111386,43.61105568460895,43.61130186323356,43.61175615343155,43.61210621656143,43.61257120734433,43.61285060849271,43.61357822063795,43.61403260892582,43.61418572816839,43.61439345197028,43.61449172129102,43.61482015017756,43.61531796302744,43.61561368073408,43.61590372878572,43.6164726540534,43.61671364977642,43.61691047082874,43.61715146911386,43.61762164158632,43.61786239485102,43.6184312331068,43.61866103467445,43.61886362104926,43.61896759756475,43.62500319305141,43.62523804207044,43.62556859177928,43.62605248418373,43.62655836059204,43.62724065648005,43.6276585091453,43.62845106378205,43.62886865846414,43.62900077335471,43.62922093052564,43.62959439938248,43.62994623763817,43.63051856112508,43.63071689324018,43.63100300739578,43.63122328770045,43.63181704500253,43.63267577802227,43.63318150182921,43.63368741969143,43.63406171387733,43.63467797434038,43.63478813934003,43.63557971916901,43.63608578490253,43.63626201757025,43.63667982788887,43.63692212245264,43.63736226785849,43.63767015725946,43.63791205384896,43.63830784375006,43.63846202348739,43.63863764125692,43.63901214763528,43.63947431914205,43.63987022385186,43.64017833236114,43.64059592482293,43.64090317578337,43.64143181722261,43.64173973486436,43.64193768307284,43.64231193140349,43.6427957826732,43.64294977449764,43.64330194281344,43.64349963333076,43.64396181262185,43.64424753214984,43.6447094854812,43.64495152367714,43.64499541742865,43.64539161545788,43.64580931922619,43.64616154049124,43.64635946595804,43.6466672652144,43.6471514655272,43.64721749588308,43.64728331062884,43.64763529707416,43.64807528794975,43.64882274146935,43.64978998319657,43.64998784624299,43.6503399218977,43.65066975450012,43.65082362281046,43.65108715304459,43.65143940131716,43.65185677874141,43.65225266303565,43.65249485850576,43.65273642936221,43.65300043155359,43.65315431151268,43.65357164055791,43.65434172234704,43.65467130635446,43.65513298448582,43.65557256504972,43.65660643853642,43.65768317152003,43.65798079067076,43.65844272990214,43.65872844313085,43.65899237980618,43.65927779828074,43.65932220176425,43.65969566821475,43.65993773163226,43.66026770374675,43.66099376998351,43.66121298000492,43.66136728550762,43.66165293965195,43.66224637590018,43.66235601989095,43.66253263574131,43.66279665424552,43.66299387603684,43.66314845459641,43.66347798772636,43.66380753218665,43.66407135007435,43.66433509837285,43.66536877931785,43.66591875385713,43.66640240499826,43.66684180485815,43.66732583969861,43.667854073694,43.668029714498,43.66831562996821,43.66928287113981,43.66939289528038,43.66957529495325,43.66994375971055,43.67095515301521,43.67115325645949,43.67168083145004,43.67203281793275,43.67209883492526,43.67223123439407,43.67240709503773,43.6726493502704,43.67337512827223,43.67357334211626,43.67372592371319,43.67383701802488,43.67427698710244,43.67467360124032,43.67513519985997,43.67559734347856,43.6759931811025,43.67623517680958,43.67697970093199,43.67735100840707,43.67803209837903,43.678888387417,43.67965730747967,43.68126887426507,43.68128084033625,43.68180890198195,43.68257794985462,43.68301787435806,43.68358984134167,43.68383112267743,43.6839630944672,43.68405111361248,43.68448986304718,43.6847312135505,43.68517051745511,43.68563745486534,43.68585180695664,43.68602736860345,43.6862689465439,43.68666421344932,43.68719042723806,43.68800159887695,43.68817742361276,43.68855065548443,43.6887920531376,43.6893405142086,43.68960371431761,43.69012988333079,43.69059062316144,43.69110068593167,43.69140232798954,43.69149007794866,43.69188514031346,43.69291598130671,43.69326644800145,43.69346398527925,43.69390224098811,43.69438427820474,43.69462507723474,43.69493164821976,43.69541425894947,43.69604894959094,43.69637773632992,43.69686007322024,43.6972767633028,43.69751828938062,43.69778125373718,43.69811017962193,43.69848304121228,43.69863663069739,43.69879042073584,43.7001959346882,43.70078891772472,43.70100855706467,43.70153534057132,43.701974482101,43.70254478532376,43.70287330667419,43.7033123180223,43.70357578741646,43.70381682170507,43.70403614916356,43.70449655502086,43.70524171747834,43.70605329419767,43.70633858020253,43.70663988860512,43.70665252749,43.70674778609592,43.70684052006793,43.70685367328733,43.70707304240972,43.70746752680245,43.70764316449864,43.70843308266222,43.70885014443372,43.70944184869302,43.71104095956791,43.71263967458511,43.71299065267702,43.713473227359,43.71373614097688,43.71443724913578,43.71542200822367,43.71592574917141,43.71610067818897,43.71621024081382,43.71653879022445,43.71697627800683,43.71726035892885,43.7174574515203,43.71756681572276,43.7176758929395,43.71785108670987,43.71793864359738,43.71822374011828,43.7185525381604,43.71868378377872,43.71903450636054,43.71938505687164,43.71964798750237,43.72021734184734,43.72043617211688,43.72052401484343,43.72063328396078,43.72076474884346,43.72118094194714,43.72150930577523,43.72203497383033,43.72275733816406,43.72321759611898,43.72358989812773,43.72380911173244,43.72409358884092,43.72455383038723,43.7247730773656,43.7251457914718,43.72580352935551,43.72624184393457,43.72700888252513,43.72720640192166,43.72733776428681,43.72757922216758,43.72768849178258,43.72781977617187,43.72792957723938,43.72863108830174,43.72876285994177,43.72898213649755,43.72917925808903,43.72961773490315,43.72977117402215,43.73001168735138,43.73023098837735,43.73073534502043,43.73123960168417,43.73145859617773,43.73165623507028,43.73198525067002,43.73213832029997,43.73279660734431,43.73310384321606,43.73373949991846,43.7339153424975,43.735011961114,43.73597682340804,43.73620138488074,43.73643717299366,43.73674955991439,43.73696370011919,43.73800769801855,43.73804085783789,43.73818275410891,43.73820988654406,43.73820895339904,43.73830329396796,43.73834120945038,43.73835708975163,43.73840667881755,43.7384559074123,43.73858733685215,43.73860950455837,43.73867529891494,43.73915752495797,43.7392144075722,43.73925656937109,43.73932882306622,43.74032038663147,43.74069443195463,43.74157341251346,43.74190313679652,43.74227634234809,43.74240822185119,43.74333175318385,43.74372805056627,43.74390241776303,43.74414352464337,43.74422491462587,43.74429597188945,43.7443567645589,43.74441734131689,43.74444537979311,43.74453958087517,43.74471607719096,43.74472121691591,43.74487497751601,43.74497959213242,43.74499661940957,43.74497512055331,43.74500261341135,43.74507671793977,43.74511566218707,43.74517579988732,43.74529669638483,43.74540612117608,43.74545021664841,43.74580047703306,43.74595406683886,43.7461513552339,43.74632703073777,43.74638766734201,43.74648855985361,43.74652488111258,43.74655905958047,43.74663406480849,43.7467791216813,43.74679038389549,43.74692209408608,43.74731790816435,43.74734736727607,43.74759145366148,43.74798651254576,43.74824918483597,43.74862162177266,43.74869275332297,43.74870918417503,43.74892069788576,43.74899374587459,43.74912516823476,43.74914505019944,43.74917543629341,43.74932226422871,43.74945302392104,43.74962259457252,43.75000794956815,43.75038609245989,43.75060530838664,43.75104391370288,43.75120897729003,43.75127487650321,43.75151570854645,43.75164714512832,43.75282054240552,43.75344510758223,43.75379627440575,43.75396196561962,43.75407161270498,43.75435752327758,43.75444491624877,43.75469776096976,43.75470294858377,43.75476341157572,43.75480156521348,43.75508059109055,43.7551130450848,43.7551842544402,43.75535017965674,43.75558309464512,43.75570334630875,43.75601004570308,43.75626876123701,43.75649229890654,43.75666981176786,43.75693385463718,43.75727151391117,43.75752153038405,43.75756429950142,43.75773445790288,43.75796077838888,43.7583346938467,43.75851240757576,43.75895309674807,43.75911452374149,43.7592238450886,43.75940279212132,43.75955895275163,43.75970309137546,43.75982081643963,43.75996515259524,43.7601489010299,43.76031068346452,43.76042098699251,43.7604610380839,43.76048652523936,43.76057452783628,43.76086028288057,43.76100440095594,43.7612108870409,43.76136442597953,43.76144815621199,43.76151464966627,43.76163808267712,43.76173165530582,43.76179509332714,43.76184922635318,43.7619070901535,43.76199572438237,43.76210133499566,43.76218100587142,43.76222124904841,43.76225829102964,43.7624293284622,43.76254783759816,43.76269285121226,43.76300981900861,43.76347029694266,43.76417225275161,43.76425976784186,43.76445585499983,43.76476188627823,43.76500197477157,43.76511139875895,43.76537484146646,43.76541873123136,43.76551652756022,43.76552174431246,43.76548753109143,43.76544909619202,43.76532805190207,43.76524536980304,43.76518453901772,43.76510630938947,43.76507682119315,43.76507621623749,43.76510240979088,43.765209305544,43.76530597473898,43.76538219585353,43.76556669306633,43.7656322354289,43.76587211354502,43.76604698776661,43.76635345188239,43.76646247029284,43.76682722510097,43.76693557774433,43.7669950385806,43.7670601895852,43.76726745463695,43.76729970645427,43.76730450438257,43.76732624509621,43.76763087729329,43.76779940913831,43.76851761641486,43.76910624519461,43.7693895867489,43.76980402126863,43.7703270169678,43.77104709054174,43.77141794929993,43.77189776773035,43.77231215042061,43.77287908998608,43.77366443212731,43.77449474473435,43.774887886098,43.77512832515876,43.77541221117846,43.77589258346011,43.77602368936971,43.77628531309069,43.77635117901647,43.77654832846412,43.77678944204151,43.77700813622351,43.7771390703404,43.77742286021895,43.77779324940057,43.77798960524839,43.77820814706856,43.77897262281518,43.77914723887806,43.77986727938413,43.77997439077171,43.78052164432118,43.78060893653927,43.78124136995979,43.78178739994419,43.78209300215786,43.78274851770819,43.78322934193042,43.78362247711858,43.78397190081035,43.7844302010508,43.78477879194131,43.7851056186279,43.78532366147716,43.7857165554006,43.78617485745326,43.78654574506091,43.78663899071395,43.78689546124617,43.78737628321676,43.78755092785483,43.78798768027546,43.78851133781385,43.78892546714253,43.78920934048143,43.78962389014168,43.79019102755553,43.79051241969825,43.79059910715509,43.79066921217145,43.79066829633955,43.79066813328053,43.79068976364723,43.79071157951677,43.79082099860239,43.79095243109058,43.7912803948751,43.79173900687211,43.79208724640377,43.79300370094976,43.79341809617513,43.79385490440063,43.79416023109423,43.79492423406323,43.79557931661606,43.79588482330679,43.79688931453737,43.79732652467642,43.79741368548676,43.79765335620014,43.79802429497614,43.79833037843066,43.79848349399013,43.79861440611671,43.79907177455429,43.79932460288627,43.79966076868519,43.80003194482928,43.80027170122566,43.80079554656281,43.80099161610195,43.80175588148178,43.80225820699137,43.8025558141837,43.8026358608054,43.80272898561814,43.80282457539879,43.80337010719244,43.80358840532002,43.80406860102492,43.80513707098088,43.80541986587477,43.80557267702147,43.80642469782974,43.80718873661817,43.80821442855164,43.80902232830231,43.80961218820141,43.81024521168841,43.81116305222039,43.81149123524377,43.81190645196884,43.81247574083513,43.8130443454154,43.81337316995437,43.81433710617234,43.81479733787923,43.81503844173011,43.81523574567778,43.81552142658841,43.81582939387111,43.81593946032304,43.81600515722661,43.81652955097981,43.81698800061271,43.81744626648752,43.81811667036659,43.81878832403883,43.82011971453213,43.82060054639889,43.82129966405443,43.82171491731281,43.82175879804682,43.82186829638737,43.82243661966307,43.82333385240837,43.82379363643089,43.82495701917544,43.82545801561254,43.82556773190428,43.82607167568116,43.82631205098019,43.82650882120464,43.82742590621852,43.82781987826299,43.82843125416499,43.82936099017432,43.82997363184153,43.8303681456975,43.83118803565431,43.83166923933376,43.83219453403674,43.83313574398264,43.83408714887322,43.83467839806547,43.83526927176603,43.83583872973176,43.83660421765418,43.8377648231682,43.83796215394904,43.83892654489031,43.83940854449116,43.83984684318632,43.84015327820021,43.84065742247692,43.84166591777331,43.84199451520705,43.84232302161024,43.84278342983389,43.84350602710865,43.84409798714147,43.84471131410264,43.84493087033267,43.84521557060654,43.84602585076073,43.84648531109961,43.84674789774405,43.84685664656669,43.84707547762888,43.84799465220687,43.84827901295408,43.84882682002714,43.84926446275106,43.8498773705724,43.85046877339612,43.85062551080391,43.85087385810333,43.85113629934127,43.85168256038476,43.85218440406657,43.85268707081811,43.85318927311586,43.85360453538595,43.85482734708238,43.85513345168651,43.85550538294245,43.85581137528329,43.85629253650755,43.85668633834992,43.85723230364526,43.85784354001671,43.8582584376616,43.85843290953899,43.8588921928258,43.85930718536395,43.8599838510234,43.86118553444535,43.86160054206984,43.86358946613315,43.86391717068086,43.86406852971733,43.86441928887054,43.86494356276579,43.86608003617745,43.86632020217988,43.86675795642823,43.86699850469943,43.86726061789076,43.86785113913248,43.8679604063283,43.8681352026034,43.86861655720938,43.86905297400715,43.86955506381194,43.86983912731618,43.87007953886928,43.87029862684455,43.8708241399853,43.87102061499793,43.87134831940034,43.87196022252011,43.87226598599861,43.87294326359744,43.87322759974309,43.87364249950028,43.87449546026943,43.87480189588703,43.87499133063828,43.87552578841248,43.87607575435874,43.87642746479507,43.87763605327398,43.8780761342715,43.87935118881478,43.8799670945312,43.88045120082461,43.88102360367633,43.88139733423441,43.88175004141802,43.88182123688811,43.88207973500221,43.8824316987391,43.88351029799728,43.88392846431688,43.8846111756305,43.88533844591826,43.88593226487956,43.88632857779265,43.88739958624263,43.88805650235384,43.88867256410269,43.889685293826,43.89058701755358,43.89102766809159,43.89122594304598,43.8918641578755,43.89197437942976,43.89241428946165]}]],[[{"lng":[-88.16172662154615,-88.16163186470745,-88.17119629338869,-88.17878654716196,-88.18964386273232,-88.19766336918127,-88.20492337265135,-88.21226238628093,-88.21987932617925,-88.22712285814674,-88.23456028858644,-88.24211224886136,-88.25729231787585,-88.27243770705373,-88.28275907940201,-88.30249063056931,-88.31530347585432,-88.32444873966641,-88.33250854695179,-88.3399429889228,-88.35502920574338,-88.39832390759837,-88.40313063432883,-88.40294319931996,-88.42285442054033,-88.50387399436924,-88.52405242079386,-88.5440328679274,-88.56418162509517,-88.58371563957768,-88.60398529016818,-88.62415606153226,-88.6444955078249,-88.66476182317638,-88.6845122188888,-88.72467283515151,-88.74487786793479,-88.7649983705338,-88.78500273455859,-88.82608079827595,-88.84578355486197,-88.8657691779275,-88.88569822435285,-88.88570937059792,-88.8856279873319,-88.88566386722331,-88.88545509354321,-88.8854357552955,-88.88541717869781,-88.88539782160262,-88.8853784638963,-88.88542192040127,-88.88546614475837,-88.88550959184361,-88.88571581018616,-88.88579585004344,-88.88587585930487,-88.88595038064726,-88.88602487375152,-88.88600707605958,-88.8859892994672,-88.88594628886254,-88.88590326613787,-88.88585960955866,-88.88581595631591,-88.88577231014165,-88.88572867034969,-88.88558604841897,-88.88529544063509,-88.88529060985329,-88.885285786176,-88.88524310355331,-88.88522866461695,-88.88521422450228,-88.88519978345791,-88.88519472413272,-88.88519307937388,-88.88518570224538,-88.88520545881182,-88.8852177581429,-88.88523058705981,-88.88524412100149,-88.88525765063854,-88.88524644715356,-88.88523524639457,-88.88523723218174,-88.88523921564189,-88.8852771539311,-88.88531508572999,-88.88535096982514,-88.88538684755886,-88.88542271944365,-88.88545858913412,-88.88549445333771,-88.88553031532604,-88.88556091218523,-88.88559150844506,-88.88568340352381,-88.88577528640744,-88.88585127454692,-88.88592725146516,-88.88599209678358,-88.88605693062478,-88.86562996726542,-88.84569974364216,-88.82563894421516,-88.80612255072141,-88.78556949958627,-88.76537059135291,-88.74481599930515,-88.724775395528,-88.70453015379113,-88.68464840342922,-88.66464453842032,-88.64475505931871,-88.62204432888247,-88.60165500144825,-88.58193821891022,-88.56166241723139,-88.54162801225924,-88.52176016421119,-88.5003335252194,-88.46143138803924,-88.44111978249987,-88.42115171026438,-88.40113552589871,-88.40097207174414,-88.40065883623653,-88.40063260840979,-88.4005683282427,-88.40048945796518,-88.40038722566466,-88.38150514784591,-88.36153599354644,-88.34139921169078,-88.32105258707949,-88.30097707462798,-88.28109837573015,-88.26069782382322,-88.24079168724691,-88.22066153599803,-88.18076597476048,-88.16089247082365,-88.16056669093173,-88.16042401975928,-88.1603839419322,-88.16022805532712,-88.16004178907085,-88.15997522599534,-88.16023674152184,-88.1604806768396,-88.16068651080927,-88.16068155486509,-88.16061587870522,-88.16055774785684,-88.16052179649942,-88.16055837977572,-88.16077763206296,-88.16104249692795,-88.16109247850049,-88.16116209509212,-88.16129106522169,-88.16136545972407,-88.16155570607509,-88.16222071918443,-88.16222992734724,-88.16219838684974,-88.16208910875125,-88.16198912766266,-88.16194830567915,-88.16181320147423,-88.16177465517484,-88.16172013890014,-88.1617495505391,-88.16172662154615],"lat":[43.93566601024512,43.93771919106279,43.93773223348712,43.93777623113033,43.93778726203311,43.93778061341374,43.93781766697498,43.9378133445923,43.9376162164243,43.93755325757383,43.937506892797,43.93753203717663,43.93763819178714,43.93760132209332,43.93765860542905,43.9376865973063,43.93763745052713,43.93769468926556,43.93763701501886,43.93769612402012,43.93768957894309,43.93768666657946,43.93773497034536,43.89289883518981,43.89307734164262,43.89372430096464,43.89378534254491,43.8937663019278,43.89402892384137,43.89433299288108,43.89459965812265,43.89453881738664,43.89462187102767,43.89463714784224,43.89468931848928,43.89476460566325,43.89473853285476,43.89494098223489,43.8948981089378,43.89484152799164,43.89502097117968,43.8951452405442,43.89517984900812,43.8914924937493,43.88787789150209,43.88492087142003,43.88062995438155,43.8769922824935,43.87335520184447,43.86971753988643,43.86608015533385,43.86245266077783,43.85882545780311,43.85519795927179,43.8515774777734,43.84795249331749,43.84432748803926,43.84071728313189,43.83710706109892,43.83346522654183,43.82982339481078,43.82617955667192,43.82253573074906,43.81890033702022,43.81526494168553,43.81162956970696,43.80799416757914,43.79346518137594,43.75709554290216,43.75347006083646,43.74984457297094,43.74613118020471,43.74251521664215,43.73889953112162,43.7352835679817,43.73166375160019,43.72804368361516,43.72442384080389,43.72080898239151,43.7173225823843,43.71368714650094,43.7100490676328,43.70641097918703,43.70276543696541,43.69911989252434,43.69546930686099,43.69181872378586,43.68819108613162,43.68456344495696,43.68091533730937,43.67726722855085,43.67361913631704,43.66997104422882,43.66632294921436,43.66267485556123,43.65903477162527,43.65539468300042,43.65175337559981,43.64811206332267,43.64446374028559,43.64081541665372,43.6371669852636,43.6335185496434,43.63329246519595,43.6330797747018,43.63305529337314,43.63300595224921,43.63299744034925,43.63306192408413,43.63316533644905,43.63317897923904,43.6332332167987,43.63317380843957,43.63313821909549,43.63297836492579,43.63276956958853,43.63265950320489,43.63245171486344,43.63220254418292,43.63207046926787,43.63200624851689,43.63175635988895,43.63166243443132,43.63147442211609,43.63116091643821,43.63097549591814,43.61644019217638,43.60182847644046,43.58725590924367,43.57265547907448,43.55807732236608,43.54353172662881,43.54336716666524,43.54335499784923,43.54330623264602,43.54315433361464,43.54307683445758,43.54290872829484,43.5429216858072,43.54285330901683,43.54303987959839,43.54292619148728,43.54290963327492,43.55751858150985,43.57210371177265,43.58674560404043,43.60126995729985,43.61579350881734,43.63044978285041,43.65956571959624,43.67409605620977,43.68860436152588,43.70315651055484,43.71760973446546,43.73209062052509,43.74665342308541,43.76104754141356,43.77553379013165,43.79005225130739,43.80445833912497,43.81900679101666,43.83354350832874,43.84798195912234,43.86254519646554,43.87707495818343,43.8915305497929,43.89463118822663,43.90119495858885,43.90510256138968,43.91323318106961,43.92601734950241,43.92772429300447,43.93126402877164,43.93493537820454,43.93566601024512]}]],[[{"lng":[-89.16862837487618,-89.16864715629663,-89.24712927669276,-89.26731172508164,-89.28739016829527,-89.32758361795707,-89.34763664505516,-89.36537660657579,-89.38543899781979,-89.40550965180074,-89.44575297882696,-89.46587724797541,-89.48241171811274,-89.50245481723042,-89.5223978713525,-89.54240276287585,-89.56273370389762,-89.58271591610561,-89.59803404484316,-89.59786004400837,-89.59766695997052,-89.59754724534774,-89.59749698283754,-89.59736222788662,-89.59732534796237,-89.59731260234936,-89.59735812724564,-89.59785322358637,-89.59789444381025,-89.59800082331782,-89.598358686515,-89.59860388323911,-89.59888506258831,-89.59896830191893,-89.59924473161223,-89.59940482720229,-89.59953717269221,-89.59955613431748,-89.5999153302409,-89.59968022417522,-89.58341546498831,-89.56339471529061,-89.54352487295013,-89.52352602019513,-89.50336856740469,-89.48355875175881,-89.46493782222814,-89.44495541853297,-89.42486138307717,-89.40490283255471,-89.38485929150009,-89.36474910813779,-89.3458756521632,-89.32601865081703,-89.30581080263319,-89.28548926868109,-89.26547417950229,-89.24530144136622,-89.24531508153753,-89.24532871529708,-89.24534312972257,-89.24535676342285,-89.24535734395339,-89.24535590426348,-89.24535926657806,-89.24527374570187,-89.24534840828146,-89.24542307848526,-89.24545740190521,-89.24549173316905,-89.24551798524307,-89.24554324973812,-89.24556851095493,-89.24559299110194,-89.24559222023635,-89.24558756438806,-89.24558445784375,-89.24558134621812,-89.24557687681016,-89.24557686941949,-89.24558544950686,-89.24557352256764,-89.24555862301924,-89.24553183403557,-89.24550500091483,-89.24548675844989,-89.24547011873722,-89.24545345820654,-89.24540438938487,-89.24538051573539,-89.24537643536422,-89.24537233085756,-89.24537055093553,-89.24536488901244,-89.24052674542749,-89.24082011687905,-89.24331689233011,-89.2434454231672,-89.24294974073891,-89.24121990554336,-89.24021420192503,-89.2397551777558,-89.23881877997447,-89.23775389122885,-89.2372398195477,-89.23628504453129,-89.23591100221086,-89.23590942749708,-89.23590689509257,-89.23580005702378,-89.23583817440711,-89.23576678112273,-89.2274519916223,-89.22697843209663,-89.22644646200663,-89.22589107833903,-89.22450258948004,-89.22203820731038,-89.221241790324,-89.22002407039894,-89.21881871931024,-89.21743773602414,-89.21729280411579,-89.21598050857102,-89.21475219870017,-89.21422101311872,-89.21393578375881,-89.21289643538631,-89.21197511718194,-89.21039037891906,-89.20847324814693,-89.20823096999241,-89.20808409244052,-89.20736196027964,-89.20705416910782,-89.20427702043146,-89.20305868658771,-89.20219416152962,-89.19995877233022,-89.19831851031581,-89.19560237959115,-89.19418259462164,-89.19276430462841,-89.19184156831393,-89.19100186194107,-89.18866728672246,-89.18792230939138,-89.18686680442886,-89.18572996686116,-89.18428038069497,-89.18203740257935,-89.17986297663688,-89.1793257566048,-89.17857364981376,-89.17733767395804,-89.17617037093193,-89.17551424647675,-89.17340082245425,-89.17280574230283,-89.17273713881748,-89.17193818873456,-89.17131805056933,-89.16863256349028,-89.16756443689377,-89.16752913973801,-89.16753728494658,-89.16754270584886,-89.16754711821882,-89.16756094689754,-89.16757554938467,-89.16759092180087,-89.16760398209659,-89.16765919735981,-89.16771321751227,-89.16774079689289,-89.16777403905517,-89.16783212197454,-89.16789746196102,-89.16793932596551,-89.16890717099162,-89.17012786909136,-89.17166139742308,-89.17336269865864,-89.17517091370094,-89.17667392813203,-89.1780853326005,-89.17945103392162,-89.18129733093291,-89.18236537649963,-89.18347168242538,-89.18487547903126,-89.1870422880737,-89.18918608324564,-89.19048309027136,-89.19245914677174,-89.19397730188467,-89.19488525822894,-89.19574735629963,-89.19627385827543,-89.19702915680703,-89.19754032640452,-89.19783779608706,-89.19806668118588,-89.19818113567109,-89.19802850917198,-89.19770045131459,-89.19701380162132,-89.19617459264343,-89.19548038720836,-89.1949462864029,-89.19461826926505,-89.1943664320992,-89.19425969263087,-89.19459532313761,-89.19491577346047,-89.19542695891889,-89.19577021408823,-89.19596104608135,-89.19578411302639,-89.19803021953808,-89.19802964686703,-89.198028438151,-89.19802723611828,-89.19802602407323,-89.19805068080223,-89.19807456413962,-89.19809844594458,-89.19812233230999,-89.19813740504658,-89.19815170383653,-89.19816677377023,-89.19818184600868,-89.19818158886717,-89.19818132877535,-89.19818185150454,-89.19818159158066,-89.19321897445433,-89.18825635913574,-89.18318792904202,-89.17811872971107,-89.17305030083304,-89.16810183713179,-89.16805281250097,-89.16812099210559,-89.16819470571657,-89.16826565708102,-89.16837065964896,-89.16844802933164,-89.16852773221132,-89.16834386352346,-89.16816047424105,-89.16813304101727,-89.16810559461166,-89.16807814823531,-89.16805068445856,-89.16814092091279,-89.16823115265231,-89.16832217687437,-89.16841243214481,-89.16844511442,-89.16847719413104,-89.16850996654276,-89.16854550437458,-89.16855423456394,-89.16856607512433,-89.16857557475606,-89.16858663342195,-89.16860080602606,-89.16861498353681,-89.16862837487618],"lat":[43.97838115038348,43.98295732731483,43.98249328634362,43.98250267414682,43.9824124462612,43.98242955058925,43.98251597137569,43.98246763274587,43.98248416726661,43.98245501722677,43.982231601412,43.9822078617207,43.98212925640028,43.98211418420076,43.9821303719153,43.98221394545342,43.98226487015236,43.98237477839643,43.98225251991258,43.95226138981233,43.93793080864269,43.92335228736874,43.90886682447099,43.89433235101196,43.89056703848745,43.87605910972522,43.86155698021785,43.84702459724741,43.83243824742146,43.81797898691405,43.80308248110737,43.78850883431432,43.77399070277669,43.75955822535595,43.73069271068719,43.71528123111015,43.70076015054364,43.68625017483257,43.67163527568585,43.64260489711846,43.64265232529311,43.64280809361703,43.64297671644474,43.64308140991739,43.64277055144162,43.64268456195027,43.6426696580573,43.64273629367175,43.64272205604908,43.64272158938279,43.64284887034942,43.64274800754315,43.64272750122974,43.64272481582071,43.64290873255303,43.64312888531771,43.64311722969444,43.64300958994215,43.64662505216136,43.65024051451358,43.65385597733135,43.65747142726659,43.66113913522175,43.66480681961441,43.66847453825159,43.67222274493337,43.67590278904876,43.67958283691389,43.68323188205343,43.68688092250712,43.69046087519312,43.69407610486103,43.69769132981597,43.70130682883903,43.70495648767249,43.70860639822324,43.71225631791594,43.71590623345142,43.7159062495476,43.71590924366661,43.71590921032222,43.71751959361504,43.71953083827906,43.72315245205203,43.72677407785216,43.73066549149925,43.73433176943396,43.73799802727673,43.74152730071752,43.74515764523516,43.74882159185315,43.75248557064712,43.75614929619031,43.75981356160801,43.75985104078767,43.76067916957054,43.76264838583091,43.76328704945833,43.76372614162268,43.76422408179646,43.76453777853389,43.76577519035061,43.76671986541881,43.76678636385427,43.76663998135833,43.76723869291133,43.7672821998633,43.76727798963478,43.76727922264399,43.76737875154621,43.76773265426244,43.76792758089181,43.76792701649968,43.76751571887762,43.76746225325903,43.76740643553816,43.76692580009448,43.76633073870748,43.76636692935823,43.76642225561318,43.76642228158624,43.76626585180823,43.7662734824612,43.76633452990869,43.76631161400351,43.76626696560174,43.76624298919827,43.76615806795369,43.76608278035788,43.76583419775921,43.7655334429793,43.76552632730443,43.76552200973597,43.76550060376334,43.76549147912706,43.76567457575209,43.7655942583776,43.76553726190081,43.76553724288365,43.76565171325348,43.76597211853331,43.76602939289676,43.76608658600736,43.76603865880087,43.76599503497516,43.76576616621217,43.76556728838111,43.76528549969105,43.76487351898766,43.76459882943594,43.76453015996492,43.76462172947185,43.7647266464312,43.76487352678608,43.76562880758595,43.76620104225518,43.76640317756706,43.76645277954102,43.76642992859694,43.76642991961196,43.76623662336979,43.76608658054246,43.76578519384769,43.7655792324701,43.76721554995676,43.77076256284591,43.77271929023958,43.77430959559444,43.77796159889141,43.78161304378891,43.78526476436011,43.78891620134096,43.79253304279602,43.79614987753118,43.79779002392264,43.79976675405298,43.80338389287319,43.80700498829088,43.81012942700696,43.80971145457523,43.80950164663081,43.80951309511069,43.80949402215195,43.80913161646431,43.80856704721661,43.80762864280924,43.80677412556765,43.80562589391279,43.80488588274532,43.80445478456751,43.80433655170378,43.80443190318709,43.80459214035337,43.80477142050498,43.80526353103438,43.80616762333071,43.80713273924596,43.80851363400046,43.80916213429442,43.8103370670805,43.81111144303404,43.81161497335751,43.81218336874341,43.81269835737811,43.81306837201803,43.81342314311288,43.81378553223938,43.81393436113954,43.81409455680168,43.8141860674197,43.814308175254,43.81449889170808,43.81489180788333,43.81518555130265,43.81551357867499,43.81583019350148,43.81637956471479,43.81686021199145,43.81790834585324,43.81789046408779,43.82159298041511,43.82522627704127,43.8288595738722,43.8324928634954,43.83616797383694,43.83984279859304,43.84351789701348,43.84719243808807,43.85082835953605,43.854464001527,43.85809991718354,43.86173555518258,43.86541216163903,43.86908848731138,43.87276509519103,43.87644141316839,43.87645744537893,43.87647353805594,43.87649007110505,43.87650637560507,43.87652245469216,43.87648314710768,43.88016422107601,43.88378954117982,43.88741518439249,43.89104080033303,43.89473644528316,43.89838657866053,43.90203708718125,43.905687313726,43.90933827189377,43.91298623082648,43.9166344706616,43.92028270698309,43.92393122478347,43.92757018215889,43.93120942166863,43.93484866399562,43.93848761569514,43.94212305354061,43.94575848350468,43.94939363779839,43.95302936497315,43.95665083465671,43.96027288157832,43.96389462956247,43.96751638906617,43.97113816897162,43.97475966214645,43.97838115038348]}]],[[{"lng":[-88.88604953674745,-88.88608544974562,-88.88611528643541,-88.89112863315253,-88.89618655816305,-88.90122137306599,-88.90625619842567,-88.9113274250775,-88.91639866042519,-88.92145293745408,-88.92650881429498,-88.95087106477048,-88.95180191242689,-88.9568194688753,-88.96184011942712,-88.96686076393335,-88.96688952683716,-88.97188141315357,-88.97690206375835,-88.98192606222793,-88.98695006969822,-88.99197586242735,-88.9970016618572,-89.00202339789298,-89.00633770514861,-89.00634460600611,-89.01127955949688,-89.01630945883423,-89.02133935680909,-89.02636848704704,-89.03144441733447,-89.03651957134363,-89.04159473094657,-89.04666988338873,-89.05164213903149,-89.05661518512852,-89.06158744694947,-89.06656048450881,-89.07160952768712,-89.07665856668136,-89.08170761455416,-89.08675666596064,-89.09174242178538,-89.0967281770301,-89.10171393401214,-89.10669967829836,-89.11171489506282,-89.11673012131786,-89.12174535539887,-89.12824974021009,-89.13334998308977,-89.13844944367116,-89.14354891078005,-89.14864914948906,-89.15364806341125,-89.15864776329219,-89.16364745677836,-89.16864715629663,-89.16862837487618,-89.16861498353681,-89.16860080602606,-89.16858663342195,-89.16857557475606,-89.16856607512433,-89.16855423456394,-89.16854550437458,-89.16850996654276,-89.16847719413104,-89.16844511442,-89.16841243214481,-89.16832217687437,-89.16823115265231,-89.16814092091279,-89.16805068445856,-89.16807814823531,-89.16810559461166,-89.16813304101727,-89.16816047424105,-89.16834386352346,-89.16852773221132,-89.16844802933164,-89.16837065964896,-89.16826565708102,-89.16819470571657,-89.16812099210559,-89.16805281250097,-89.16810183713179,-89.17305030083304,-89.17811872971107,-89.18318792904202,-89.18825635913574,-89.19321897445433,-89.19818159158066,-89.19818185150454,-89.19818132877535,-89.19818158886717,-89.19818184600868,-89.19816677377023,-89.19815170383653,-89.19813740504658,-89.19812233230999,-89.19809844594458,-89.19807456413962,-89.19805068080223,-89.19802602407323,-89.19802723611828,-89.198028438151,-89.19802964686703,-89.19803021953808,-89.19578411302639,-89.19596104608135,-89.19577021408823,-89.19542695891889,-89.19491577346047,-89.19459532313761,-89.19425969263087,-89.1943664320992,-89.19461826926505,-89.1949462864029,-89.19548038720836,-89.19617459264343,-89.19701380162132,-89.19770045131459,-89.19802850917198,-89.19818113567109,-89.19806668118588,-89.19783779608706,-89.19754032640452,-89.19702915680703,-89.19627385827543,-89.19574735629963,-89.19488525822894,-89.19397730188467,-89.19245914677174,-89.19048309027136,-89.18918608324564,-89.1870422880737,-89.18487547903126,-89.18347168242538,-89.18236537649963,-89.18129733093291,-89.17945103392162,-89.1780853326005,-89.17667392813203,-89.17517091370094,-89.17336269865864,-89.17166139742308,-89.17012786909136,-89.16890717099162,-89.16793932596551,-89.16789746196102,-89.16783212197454,-89.16777403905517,-89.16774079689289,-89.16771321751227,-89.16765919735981,-89.16760398209659,-89.16759092180087,-89.16757554938467,-89.16756094689754,-89.16754711821882,-89.16754270584886,-89.16753728494658,-89.16752913973801,-89.16756443689377,-89.16863256349028,-89.17131805056933,-89.17193818873456,-89.17273713881748,-89.17280574230283,-89.17340082245425,-89.17551424647675,-89.17617037093193,-89.17733767395804,-89.17857364981376,-89.1793257566048,-89.17986297663688,-89.18203740257935,-89.18428038069497,-89.18572996686116,-89.18686680442886,-89.18792230939138,-89.18866728672246,-89.19100186194107,-89.19184156831393,-89.19276430462841,-89.19418259462164,-89.19560237959115,-89.19831851031581,-89.19995877233022,-89.20219416152962,-89.20305868658771,-89.20427702043146,-89.20705416910782,-89.20736196027964,-89.20808409244052,-89.20823096999241,-89.20847324814693,-89.21039037891906,-89.21197511718194,-89.21289643538631,-89.21393578375881,-89.21422101311872,-89.21475219870017,-89.21598050857102,-89.21729280411579,-89.21743773602414,-89.21881871931024,-89.22002407039894,-89.221241790324,-89.22203820731038,-89.22450258948004,-89.22589107833903,-89.22644646200663,-89.22697843209663,-89.2274519916223,-89.23576678112273,-89.23583817440711,-89.23580005702378,-89.23590689509257,-89.23590942749708,-89.23591100221086,-89.23628504453129,-89.2372398195477,-89.23775389122885,-89.23881877997447,-89.2397551777558,-89.24021420192503,-89.24121990554336,-89.24294974073891,-89.2434454231672,-89.24331689233011,-89.24082011687905,-89.24052674542749,-89.24536488901244,-89.24537055093553,-89.24537233085756,-89.24537643536422,-89.24538051573539,-89.24540438938487,-89.24545345820654,-89.24547011873722,-89.24548675844989,-89.24550500091483,-89.24553183403557,-89.24555862301924,-89.24557352256764,-89.24558544950686,-89.24557686941949,-89.24557687681016,-89.24558134621812,-89.24558445784375,-89.24558756438806,-89.24559222023635,-89.24559299110194,-89.24556851095493,-89.24554324973812,-89.24551798524307,-89.24549173316905,-89.24545740190521,-89.24542307848526,-89.24534840828146,-89.24527374570187,-89.24535926657806,-89.24535590426348,-89.24535734395339,-89.24535676342285,-89.24534312972257,-89.24532871529708,-89.24531508153753,-89.24530144136622,-89.24156606253975,-89.23660541649963,-89.23161734915278,-89.2266292826056,-89.22165801532107,-89.21668674280897,-89.2117460842754,-89.20680542288439,-89.20175013674881,-89.19669485306423,-89.19174963360577,-89.18680441538085,-89.18180183395114,-89.17679925622913,-89.17182271962211,-89.1668461793172,-89.16184473986877,-89.15684328919387,-89.15184450182139,-89.14684571276382,-89.14186604017844,-89.13688636273004,-89.13190358899669,-89.12692081089389,-89.12693009088831,-89.12696744365545,-89.12706244244727,-89.12715742982972,-89.12198871503826,-89.1169826934489,-89.11197666402779,-89.10697063435501,-89.10196460367746,-89.09695857198847,-89.09194950880128,-89.08694043857732,-89.08193308300336,-89.07692571626681,-89.07191852559444,-89.0669113181109,-89.0618941664691,-89.05687699947335,-89.05186559456645,-89.04685417137061,-89.04183506383423,-89.03681594523289,-89.03182746639854,-89.02683898938285,-89.02185117987048,-89.01686336303736,-89.0118230782972,-89.00678278855787,-89.00611413653318,-89.00124709850552,-88.99622608380851,-88.99120552625895,-88.98618497565224,-88.98118421710967,-88.97618345843813,-88.97118171516617,-88.96617997383026,-88.96119492627378,-88.956209885172,-88.95120524113123,-88.94620060520455,-88.94117139760509,-88.93614218947197,-88.93113312879981,-88.92612406527758,-88.92111421161566,-88.91610435415836,-88.91109864809496,-88.90609294221285,-88.90107615081993,-88.89605936177739,-88.89105814905881,-88.88605693062478,-88.88599209678358,-88.88592725146516,-88.88585127454692,-88.88577528640744,-88.88568340352381,-88.88559150844506,-88.88556091218523,-88.88553031532604,-88.88549445333771,-88.88545858913412,-88.88542271944365,-88.88538684755886,-88.88535096982514,-88.88531508572999,-88.8852771539311,-88.88523921564189,-88.88523723218174,-88.88523524639457,-88.88524644715356,-88.88525765063854,-88.88524412100149,-88.88523058705981,-88.8852177581429,-88.88520545881182,-88.88518570224538,-88.88519307937388,-88.88519472413272,-88.88519978345791,-88.88521422450228,-88.88522866461695,-88.88524310355331,-88.885285786176,-88.88529060985329,-88.88529544063509,-88.88558604841897,-88.88572867034969,-88.88577231014165,-88.88581595631591,-88.88585960955866,-88.88590326613787,-88.88594628886254,-88.8859892994672,-88.88600707605958,-88.88602487375152,-88.88595038064726,-88.88587585930487,-88.88579585004344,-88.88571581018616,-88.88550959184361,-88.88546614475837,-88.88542192040127,-88.8853784638963,-88.88539782160262,-88.88541717869781,-88.8854357552955,-88.88545509354321,-88.88566386722331,-88.8856279873319,-88.88570937059792,-88.88569822435285,-88.88569821128614,-88.88572053782667,-88.88574290530458,-88.88576464105972,-88.88578637579873,-88.88580848677957,-88.88583059933438,-88.88585131958963,-88.88586455919868,-88.88587204032086,-88.88591222101222,-88.88595240958446,-88.88594360387967,-88.88593480008818,-88.88590436785302,-88.88587392824762,-88.88588329559711,-88.88589266463214,-88.88590862576181,-88.88592459191041,-88.88591863417888,-88.88591268215633,-88.88597052364204,-88.88602836091748,-88.88604953674745],"lat":[43.97956382172816,43.98329923902174,43.98329873536341,43.98321370828217,43.98319914336938,43.98323470530794,43.98327004237912,43.98329507304219,43.98331987742277,43.98336181264477,43.98340335870214,43.98346862178796,43.98346380767949,43.98343766503932,43.9834319636211,43.98342603843185,43.9834260042846,43.9834198968649,43.98341353341927,43.98339286923411,43.98337198294283,43.98335775063023,43.98334329481906,43.9833273154774,43.98331341518944,43.98331339496008,43.9832792806999,43.98326835569308,43.98325721344676,43.98324555441182,43.98323098549394,43.9832161771808,43.98320114343033,43.98318588839147,43.98317236608719,43.98315835362531,43.98314439725919,43.98313023505539,43.98313982128379,43.9831494736874,43.98315889205807,43.98316809155064,43.98313774028662,43.98310688690459,43.9830758159319,43.98304481237247,43.98307571552903,43.98310611954634,43.98313658552489,43.98317565451503,43.98314885940177,43.98312183250592,43.9830945743745,43.98306709800312,43.98304005014925,43.98301278629641,43.9829853090529,43.98295732731483,43.97838115038348,43.97475966214645,43.97113816897162,43.96751638906617,43.96389462956247,43.96027288157832,43.95665083465671,43.95302936497315,43.94939363779839,43.94575848350468,43.94212305354061,43.93848761569514,43.93484866399562,43.93120942166863,43.92757018215889,43.92393122478347,43.92028270698309,43.9166344706616,43.91298623082648,43.90933827189377,43.905687313726,43.90203708718125,43.89838657866053,43.89473644528316,43.89104080033303,43.88741518439249,43.88378954117982,43.88016422107601,43.87648314710768,43.87652245469216,43.87650637560507,43.87649007110505,43.87647353805594,43.87645744537893,43.87644141316839,43.87276509519103,43.86908848731138,43.86541216163903,43.86173555518258,43.85809991718354,43.854464001527,43.85082835953605,43.84719243808807,43.84351789701348,43.83984279859304,43.83616797383694,43.8324928634954,43.8288595738722,43.82522627704127,43.82159298041511,43.81789046408779,43.81790834585324,43.81686021199145,43.81637956471479,43.81583019350148,43.81551357867499,43.81518555130265,43.81489180788333,43.81449889170808,43.814308175254,43.8141860674197,43.81409455680168,43.81393436113954,43.81378553223938,43.81342314311288,43.81306837201803,43.81269835737811,43.81218336874341,43.81161497335751,43.81111144303404,43.8103370670805,43.80916213429442,43.80851363400046,43.80713273924596,43.80616762333071,43.80526353103438,43.80477142050498,43.80459214035337,43.80443190318709,43.80433655170378,43.80445478456751,43.80488588274532,43.80562589391279,43.80677412556765,43.80762864280924,43.80856704721661,43.80913161646431,43.80949402215195,43.80951309511069,43.80950164663081,43.80971145457523,43.81012942700696,43.80700498829088,43.80338389287319,43.79976675405298,43.79779002392264,43.79614987753118,43.79253304279602,43.78891620134096,43.78526476436011,43.78161304378891,43.77796159889141,43.77430959559444,43.77271929023958,43.77076256284591,43.76721554995676,43.7655792324701,43.76578519384769,43.76608658054246,43.76623662336979,43.76642991961196,43.76642992859694,43.76645277954102,43.76640317756706,43.76620104225518,43.76562880758595,43.76487352678608,43.7647266464312,43.76462172947185,43.76453015996492,43.76459882943594,43.76487351898766,43.76528549969105,43.76556728838111,43.76576616621217,43.76599503497516,43.76603865880087,43.76608658600736,43.76602939289676,43.76597211853331,43.76565171325348,43.76553724288365,43.76553726190081,43.7655942583776,43.76567457575209,43.76549147912706,43.76550060376334,43.76552200973597,43.76552632730443,43.7655334429793,43.76583419775921,43.76608278035788,43.76615806795369,43.76624298919827,43.76626696560174,43.76631161400351,43.76633452990869,43.7662734824612,43.76626585180823,43.76642228158624,43.76642225561318,43.76636692935823,43.76633073870748,43.76692580009448,43.76740643553816,43.76746225325903,43.76751571887762,43.76792701649968,43.76792758089181,43.76773265426244,43.76737875154621,43.76727922264399,43.76727798963478,43.7672821998633,43.76723869291133,43.76663998135833,43.76678636385427,43.76671986541881,43.76577519035061,43.76453777853389,43.76422408179646,43.76372614162268,43.76328704945833,43.76264838583091,43.76067916957054,43.75985104078767,43.75981356160801,43.75614929619031,43.75248557064712,43.74882159185315,43.74515764523516,43.74152730071752,43.73799802727673,43.73433176943396,43.73066549149925,43.72677407785216,43.72315245205203,43.71953083827906,43.71751959361504,43.71590921032222,43.71590924366661,43.7159062495476,43.71590623345142,43.71225631791594,43.70860639822324,43.70495648767249,43.70130682883903,43.69769132981597,43.69407610486103,43.69046087519312,43.68688092250712,43.68323188205343,43.67958283691389,43.67590278904876,43.67222274493337,43.66847453825159,43.66480681961441,43.66113913522175,43.65747142726659,43.65385597733135,43.65024051451358,43.64662505216136,43.64300958994215,43.64303301278404,43.64317911885503,43.64318782992318,43.64319632330641,43.64322141770494,43.64324629583813,43.64324673128272,43.6432469549582,43.64323680572573,43.64322643473621,43.64323830802143,43.6432499673442,43.64326286672989,43.64327554413724,43.64328736199507,43.64329896495762,43.6433460303878,43.64339288355045,43.64342365890735,43.64345421500449,43.64350969953264,43.64356496400917,43.64361801638228,43.64367084478808,43.64276459624421,43.63911768911664,43.63546584069399,43.6318139703535,43.63182791371499,43.63184119676501,43.63185425926773,43.63186710188862,43.63187972279728,43.63189212624866,43.63193114239139,43.63196994136566,43.63205916915547,43.63214818049106,43.63225200749267,43.63235561253178,43.63247063803824,43.63258544375526,43.63270837321665,43.63283108336404,43.63290087884126,43.63297045257163,43.6329935363898,43.63301639700228,43.63302426425066,43.63303190705832,43.63304579840237,43.63305946862176,43.63305592745678,43.63303003774633,43.63300311583559,43.6329761767733,43.63294901478346,43.63298409043901,43.63301895212495,43.6330522856912,43.63308540157136,43.63309159182287,43.63309756589167,43.63312403758728,43.63315029504599,43.63317988965763,43.63320925745843,43.63325772722322,43.6333059743521,43.63332904625567,43.6333519057827,43.63337723592002,43.63340234678456,43.63343968918271,43.63347681500083,43.63349779179172,43.6335185496434,43.6371669852636,43.64081541665372,43.64446374028559,43.64811206332267,43.65175337559981,43.65539468300042,43.65903477162527,43.66267485556123,43.66632294921436,43.66997104422882,43.67361913631704,43.67726722855085,43.68091533730937,43.68456344495696,43.68819108613162,43.69181872378586,43.69546930686099,43.69911989252434,43.70276543696541,43.70641097918703,43.7100490676328,43.71368714650094,43.7173225823843,43.72080898239151,43.72442384080389,43.72804368361516,43.73166375160019,43.7352835679817,43.73889953112162,43.74251521664215,43.74613118020471,43.74984457297094,43.75347006083646,43.75709554290216,43.79346518137594,43.80799416757914,43.81162956970696,43.81526494168553,43.81890033702022,43.82253573074906,43.82617955667192,43.82982339481078,43.83346522654183,43.83710706109892,43.84071728313189,43.84432748803926,43.84795249331749,43.8515774777734,43.85519795927179,43.85882545780311,43.86245266077783,43.86608015533385,43.86971753988643,43.87335520184447,43.8769922824935,43.88062995438155,43.88492087142003,43.88787789150209,43.8914924937493,43.89517984900812,43.89518361501652,43.89881978986738,43.90245597260675,43.90613633376184,43.90981669018316,43.91349841156745,43.91718012702551,43.92085328764394,43.92320006861795,43.92452644780776,43.92821356926523,43.93190069153031,43.93557746833488,43.93925424287077,43.94291189770687,43.94656954776625,43.95023186534499,43.9538941794565,43.95755180342935,43.96120942458031,43.9648792398587,43.96854904987501,43.97222433332026,43.97589961684817,43.97956382172816]}]],[[{"lng":[-91.18701536650215,-91.18761887598214,-91.18801346561311,-91.18916843290316,-91.1897235807543,-91.19013698267597,-91.19034048448205,-91.19072740990701,-91.19112449261733,-91.19155337123048,-91.19222145713051,-91.19318176256809,-91.19335780834712,-91.19403356236333,-91.19494715271529,-91.19580833487107,-91.19635014448619,-91.19685960569963,-91.19743001987889,-91.19780952066911,-91.19823192713787,-91.19847619856654,-91.19913631271676,-91.19985066200442,-91.2006312931568,-91.20089327215301,-91.20142408330307,-91.20149617023192,-91.20142880143798,-91.20095626269594,-91.20034322749152,-91.19993605906687,-91.19955180158433,-91.19934497390881,-91.19895298951849,-91.19877267973247,-91.19871899771893,-91.19896016731897,-91.1992011323883,-91.19937256143203,-91.19961461559815,-91.19962204979618,-91.19970578733154,-91.1996874400578,-91.19952526636555,-91.19959158031656,-91.19980458909886,-91.20016875548419,-91.20079076188854,-91.2012840329695,-91.20231789363183,-91.20324187419699,-91.20447503263421,-91.20533774574922,-91.20640722687062,-91.20771214807941,-91.20826877703735,-91.2084257219593,-91.2084640180917,-91.20840105670831,-91.20818768916367,-91.20804034720076,-91.20802569841248,-91.20810485465681,-91.208291268586,-91.20866074645477,-91.20883061378166,-91.20913138688262,-91.20941234578784,-91.2097430631577,-91.2105396769108,-91.21142926600187,-91.21189414845277,-91.21224196381084,-91.21276535453048,-91.21370241988464,-91.21405365411709,-91.21425256065211,-91.21466832125826,-91.21526465816784,-91.21591901824912,-91.21641098500636,-91.2169297312914,-91.21745421758662,-91.21744940122323,-91.21668763204532,-91.21631648388943,-91.21608332148982,-91.21596579633531,-91.21614390944212,-91.21652143340997,-91.21727691796374,-91.21850290634791,-91.2196895946622,-91.22066322335213,-91.22105434392351,-91.22118440455581,-91.22127225425081,-91.22132497415241,-91.22108125659675,-91.22091935081458,-91.22093009975814,-91.22098459619961,-91.22115140939673,-91.22138027177877,-91.22219024543921,-91.22283027867633,-91.2234501640886,-91.22474571762994,-91.22607245149726,-91.22675890400158,-91.22816711011011,-91.22960937288788,-91.23085792592764,-91.23176265190155,-91.23241768625418,-91.23312897395191,-91.23390281691063,-91.23473207348408,-91.23571455634246,-91.23679242101565,-91.23760713708535,-91.23859731955058,-91.23958844453193,-91.24050517080663,-91.2414254910713,-91.24267969977397,-91.24342815240803,-91.24419109510711,-91.24534931400333,-91.2462171101906,-91.24764213068264,-91.24820276715673,-91.24880048244074,-91.24931403769465,-91.24994277883383,-91.25051324428493,-91.25123705356509,-91.25209577037614,-91.25254703801761,-91.25308932872461,-91.25353585678887,-91.2540064897285,-91.25441491521518,-91.25470569119621,-91.25490043711955,-91.25514538349211,-91.25573870252029,-91.25615648568436,-91.25660273373923,-91.25749325689885,-91.2585404053422,-91.25920942321662,-91.26014527676013,-91.2613273968371,-91.26220469340137,-91.26323627569671,-91.26356919518133,-91.26377692052483,-91.26396965840668,-91.26421742134649,-91.26443197331503,-91.26513531539912,-91.26570264644513,-91.26631131927118,-91.26713111144541,-91.267784369663,-91.26849844067539,-91.26905592591739,-91.26957704442852,-91.26999027092435,-91.27025566385785,-91.27038112263457,-91.27066686336023,-91.27113741407106,-91.27167256974539,-91.27213243013325,-91.27349047530937,-91.27382065945415,-91.27405027511408,-91.27435812041638,-91.27542161355397,-91.27603256269647,-91.27703353220188,-91.27764435221889,-91.27802847856046,-91.27863125061104,-91.27911626283483,-91.27966509904888,-91.28076478529729,-91.28162717032345,-91.28237812168597,-91.28290556408345,-91.2836028705251,-91.28392808991508,-91.2842846059378,-91.28469616349503,-91.28554090238276,-91.28624587692497,-91.28723444580152,-91.28893888836919,-91.2897728768796,-91.29125330832575,-91.29240137205426,-91.29395316476325,-91.29547431602944,-91.29758250254703,-91.29829644625144,-91.29896775187882,-91.29977993395998,-91.30047960083058,-91.30127839289935,-91.30196433472827,-91.30302322935964,-91.30387662810421,-91.3047020097937,-91.30535068261992,-91.30606075994567,-91.30709210481436,-91.30777605448843,-91.30863022990681,-91.30922060793245,-91.30965637222909,-91.30982798509289,-91.31010562366835,-91.31031537192742,-91.31145398415156,-91.31187062440657,-91.31207157392858,-91.31240341816003,-91.31251957450239,-91.31285536889241,-91.31321434956128,-91.31344419615061,-91.3137383620918,-91.31398132771798,-91.31470171174804,-91.31546058566158,-91.31583143615241,-91.31609751611535,-91.31655173899628,-91.31686690339788,-91.31696124478948,-91.31701025247133,-91.3172021302781,-91.31769094901215,-91.31854446465609,-91.31888655853939,-91.31938922912252,-91.3198518481592,-91.32075823312528,-91.32133287602187,-91.32177548576672,-91.32238355843045,-91.32342434093889,-91.32411709051296,-91.324816076019,-91.32547208018836,-91.32618773556395,-91.32670630113445,-91.32726862935372,-91.32805128904394,-91.32839519066032,-91.32887774846193,-91.32935448307784,-91.32990597864098,-91.33042523361107,-91.33121691066668,-91.33166409986114,-91.33197045707213,-91.33221171793669,-91.33238493114874,-91.33231300631482,-91.33205774188059,-91.33164579960233,-91.33122275850364,-91.33026320203135,-91.32937746858104,-91.32884640148309,-91.32795662552491,-91.32781457563564,-91.32825346448436,-91.32913302512657,-91.33011268613208,-91.33126841112809,-91.33272645826258,-91.33303374487618,-91.33345495424058,-91.33362105587652,-91.3337384440038,-91.33422394475353,-91.33494685575459,-91.3358771179945,-91.33657176859435,-91.33740255499544,-91.33825357284383,-91.33901782767006,-91.33935843114664,-91.33963645560739,-91.33990978533606,-91.34009522409275,-91.34007596595534,-91.33997133795054,-91.33962304849631,-91.33926471312674,-91.33891850116922,-91.33866446327335,-91.33844404413948,-91.33845337287539,-91.3385819531685,-91.33886240574884,-91.33922821892244,-91.33991805081067,-91.3401963674725,-91.3405150174983,-91.34091576157876,-91.34097360422659,-91.34092592523642,-91.34077788503893,-91.3405977005774,-91.34031915673155,-91.34017068372101,-91.34018221081183,-91.34024220003556,-91.34055116846524,-91.34103797323174,-91.34159293231171,-91.3420022212905,-91.34232801993841,-91.3428238924086,-91.3430562644745,-91.34338487392233,-91.34360606950042,-91.34376279245092,-91.34393303571119,-91.34434987895952,-91.34463095029236,-91.34470407283362,-91.34444946392976,-91.34397219007343,-91.34360004698802,-91.34306945030102,-91.34267236845334,-91.34163764126335,-91.34094156122552,-91.33944411516553,-91.33901413912292,-91.33855006980289,-91.33799809393281,-91.3373368837584,-91.33711362175528,-91.33700975317352,-91.33696907247011,-91.33699915645097,-91.3371021382618,-91.33735935888873,-91.33786174188725,-91.33811592086413,-91.33823272251044,-91.33830528833694,-91.33819251377706,-91.33789077619711,-91.33729043975192,-91.3368026764835,-91.33561685792378,-91.33451176729717,-91.33381498473528,-91.3332873880544,-91.33206994460568,-91.33097275432516,-91.32919280054637,-91.32870026375515,-91.32822915887179,-91.32820550143855,-91.32834612630255,-91.32873409373389,-91.32907479684371,-91.32967370710027,-91.32992772343151,-91.32981057933695,-91.32930619898538,-91.32921961503952,-91.3290780403279,-91.32901934958184,-91.32886597147579,-91.32877422118773,-91.32856290692328,-91.32832686474626,-91.32761565422743,-91.32720077846903,-91.32680632940657,-91.32593728972348,-91.32507981538133,-91.32407190452501,-91.3238556039249,-91.32357009366032,-91.32318907822487,-91.32292346565357,-91.32261894815711,-91.32213308712858,-91.32187649571232,-91.32172533195676,-91.32162923252901,-91.32149891896434,-91.321483326066,-91.32156020253461,-91.32164573163574,-91.32180092824636,-91.32209369729327,-91.3221470494825,-91.32217820324995,-91.3222149222926,-91.32206417691256,-91.32273749223997,-91.3240471106859,-91.32589482942097,-91.33099066928533,-91.33594039137922,-91.34102876891247,-91.34588489363435,-91.35085748233209,-91.35585564140391,-91.36085419277133,-91.36585245170768,-91.37089670271423,-91.3752142945486,-91.3758661908753,-91.37898695809683,-91.38087719074953,-91.38369700626674,-91.38589612822204,-91.39121549592382,-91.39586419238046,-91.39926479432779,-91.40089319829731,-91.40592219387732,-91.40794260082565,-91.40944163130166,-91.41097457399339,-91.4121729371667,-91.41311486174584,-91.41639155494055,-91.41893051465368,-91.4210256218863,-91.42272681302872,-91.42535505399678,-91.42529942200521,-91.42499271724185,-91.42454995176209,-91.42430003829908,-91.42310757678439,-91.4220549081099,-91.42044501293969,-91.41777322663764,-91.41542568311002,-91.41411492471114,-91.41319781555444,-91.41249866925637,-91.41222903898387,-91.41130664663518,-91.41058307135835,-91.41007478495639,-91.40976863027076,-91.40937354054564,-91.40908154148858,-91.40869954573272,-91.40824846217993,-91.4077663827936,-91.40698713549435,-91.40660681873668,-91.40585072535644,-91.40446720807984,-91.40242049843613,-91.40017775196006,-91.39846456793845,-91.39659230736822,-91.39476844033349,-91.39228734111066,-91.39134139145651,-91.39057132677628,-91.38950234165532,-91.38855249957331,-91.38729422494788,-91.38521222191559,-91.38380051376556,-91.38286371404563,-91.38198632472628,-91.38138743585189,-91.38021634744396,-91.37881916408065,-91.37431010730657,-91.37077022464803,-91.36720118921951,-91.36598684269121,-91.36526696425783,-91.36492378982224,-91.36456637799773,-91.36422882612848,-91.3641234724316,-91.36397914856686,-91.36395177254923,-91.36381079928135,-91.36345995928984,-91.36249097688473,-91.35948138371496,-91.35877098565958,-91.35782194541065,-91.35732354945996,-91.35676607782801,-91.35605648194928,-91.35491649459686,-91.35356903607192,-91.35211262112689,-91.35112641796245,-91.35004015904114,-91.34914974314859,-91.348394646034,-91.34775884087534,-91.34697669210556,-91.34649344462083,-91.34607829673249,-91.34420551119565,-91.34299574902153,-91.34196471928142,-91.34073511829654,-91.33907343487077,-91.33802049684425,-91.33612741605684,-91.3346521847383,-91.33315001383217,-91.33070608060206,-91.32970383612302,-91.32842259107348,-91.32676582938693,-91.32494790964427,-91.32246483131304,-91.32137582064315,-91.32016485781213,-91.31889124715383,-91.31820838696723,-91.3168110667764,-91.31548654536653,-91.31489799564122,-91.31418187268382,-91.31373040758587,-91.31361224200539,-91.31215583062701,-91.31191376207248,-91.31174115689997,-91.31151146181938,-91.31132228867803,-91.31093576170721,-91.31059184249305,-91.31023226577588,-91.30992345634199,-91.30849084086609,-91.30741798566238,-91.3063068174913,-91.30583427716688,-91.30463057615073,-91.30333024578114,-91.30272891660633,-91.30174217500857,-91.30091050655467,-91.30037387565091,-91.29955669836721,-91.29887691027518,-91.29790489034843,-91.29709450210072,-91.29538791021849,-91.29211308246666,-91.28946854929897,-91.28856173711659,-91.28712760974959,-91.28496960505029,-91.28409820622592,-91.28381477001638,-91.28365053636263,-91.28285064251548,-91.28231502168181,-91.28176904260391,-91.28088653087018,-91.27986703633542,-91.27880121202432,-91.27826065356768,-91.27757786989004,-91.27719168048289,-91.27703514337973,-91.27705236612847,-91.2771474968295,-91.27719557498337,-91.27712926308911,-91.27691086049529,-91.27682104740705,-91.27629002163627,-91.27580519286181,-91.27515147407311,-91.27417711169097,-91.27378537562269,-91.27304207973638,-91.27228909964091,-91.27185111333681,-91.27160239663718,-91.27123436979977,-91.27089422829287,-91.27029574295548,-91.26899191837569,-91.26845681274527,-91.26812641610185,-91.26776501672509,-91.26761833832713,-91.26754538014984,-91.26753738596597,-91.26732565964623,-91.26721774311606,-91.26690114867104,-91.26637035797062,-91.26576081190981,-91.26481444497421,-91.26386961141331,-91.26335605818353,-91.26309047362,-91.26296328459188,-91.26293169596913,-91.26293182660841,-91.26283447662426,-91.26264124047486,-91.26243155993474,-91.26215777839404,-91.26181605245745,-91.26138915706746,-91.26067303087756,-91.26005518194411,-91.25924141774541,-91.25673418770883,-91.25558527105582,-91.25403908062221,-91.25154400799401,-91.25033760709265,-91.24971554761368,-91.24853301649216,-91.2473684630494,-91.24646843584534,-91.24557648262567,-91.24483827755158,-91.24447854902353,-91.24433059932123,-91.24425980010157,-91.24422081970262,-91.24439540827507,-91.24450086217051,-91.24540485235121,-91.24642027456333,-91.24742394322101,-91.2477081733599,-91.24829133077421,-91.24931292041295,-91.24953474434591,-91.25012924936971,-91.25060933263232,-91.25159191251699,-91.25199922701375,-91.25233930296535,-91.25276667958336,-91.2532980994357,-91.25374483455072,-91.25432422534824,-91.25484382369449,-91.25525171280374,-91.25532018759583,-91.25535514422864,-91.25532279243714,-91.25537103793066,-91.25546885606565,-91.25543002780931,-91.25522091141009,-91.25496475592936,-91.2548853741216,-91.25480157597865,-91.25493361076802,-91.25511579387407,-91.25529926217195,-91.25602195572883,-91.25746057302366,-91.25773901760637,-91.25045373453425,-91.23043258039677,-91.2105821458114,-91.19063014437894,-91.15073640996489,-91.13114164628813,-91.11104299543587,-91.09101175352602,-91.07075063602552,-91.05064906941581,-91.03074535875112,-91.01085415449275,-90.99069712282703,-90.9706842273374,-90.950671263606,-90.93062090634358,-90.91056952551784,-90.91088059048498,-90.91087774310849,-90.91090434498963,-90.91106030330218,-90.91098747520617,-90.91102533302151,-90.91084802274162,-90.91077585054451,-90.91062841554766,-90.91059167596347,-90.91023779558441,-90.9101122753397,-90.91009489441147,-90.9106372808736,-90.91114945386282,-90.91157824633116,-90.91197645996748,-90.91242870811851,-90.9128393390483,-90.91293703486038,-90.91311315854867,-90.91306488151525,-90.91306588777341,-90.91289887367468,-90.9328605807158,-90.95304077689916,-90.97311658919136,-90.99327612578168,-91.01332927561721,-91.02278491004904,-91.03238425516378,-91.0524163486854,-91.06237429934477,-91.07244486428712,-91.08243997254668,-91.0928011170125,-91.09749521750693,-91.10269237569359,-91.1122483914467,-91.127063682246,-91.13266927361042,-91.14249480997711,-91.15185261486283,-91.15191686538863,-91.15194029950142,-91.15195651636627,-91.15197142647845,-91.15198828480689,-91.15242508357558,-91.15303837933131,-91.15337720449651,-91.15384329177756,-91.1545394113826,-91.15557755619942,-91.15607691432211,-91.15707406677178,-91.15804329689209,-91.15839137591284,-91.15892020108524,-91.16007832256142,-91.16090906532368,-91.16197582523677,-91.1626355393804,-91.164043953858,-91.16570424229579,-91.16615798126192,-91.16648661266929,-91.16679741790367,-91.16741421428772,-91.16804828446681,-91.1682588480937,-91.16811724261069,-91.16795348245665,-91.16788694421469,-91.1680102407212,-91.16816884416789,-91.16864218769788,-91.16871992089585,-91.16913372592018,-91.16936613077637,-91.16971762285472,-91.17050322976228,-91.1715258481959,-91.17219667185488,-91.17263480020756,-91.17295897521352,-91.17367944887594,-91.17409681340366,-91.1743066318346,-91.1750154221574,-91.17642090643943,-91.17717549951205,-91.17919321323689,-91.180217743555,-91.18089313142697,-91.18152832598079,-91.18308295848611,-91.18442472897107,-91.18567985607764,-91.18640070350092,-91.18703875539579,-91.18729775527272,-91.18742911621602,-91.18754665554,-91.18743219000714,-91.18698082622301,-91.18643419544091,-91.18622000246914,-91.18614672076764,-91.18621023407722,-91.18628069685131,-91.18645946070001,-91.18680699209979,-91.18701536650215],"lat":[44.09069101766466,44.09069485824761,44.09062992107219,44.08996866661219,44.08957740264075,44.08913689111689,44.08880672557609,44.08840034778951,44.08784841210937,44.08747874286487,44.08710657575776,44.08656904544829,44.08644478778857,44.08623553040812,44.08617525408123,44.08630826220546,44.08651217281441,44.08679432723867,44.08716368850732,44.08733189711075,44.08738819268392,44.08739618113709,44.08732838973588,44.08715857666741,44.08677469297905,44.08651867127176,44.08587820685525,44.08571093205592,44.08516384925315,44.08476304383531,44.08437385640466,44.08416308169852,44.08390902238693,44.08372495850202,44.08313056055532,44.08256437157265,44.08199685114088,44.08139580374301,44.08078461674044,44.08021473068445,44.07972188867749,44.0793295566303,44.07902255465627,44.07873542622639,44.07802195226884,44.07747346143172,44.07687270509271,44.07609283900845,44.07553850787237,44.07522899421547,44.07486306225729,44.07463016128737,44.07437877248181,44.07424793982693,44.07425187020566,44.07407069943024,44.07376555267781,44.07318059323088,44.07264253808098,44.07196860588399,44.07150929403021,44.07049134300983,44.06977125066281,44.06916682413172,44.06864749188491,44.06813636743185,44.06791929832526,44.06769597288194,44.06753358510734,44.06739451815386,44.06713246844858,44.06694551185262,44.06687722497681,44.06689630645612,44.0669211918991,44.06699239581523,44.06693779589423,44.06688254477368,44.06675388014029,44.06633161884506,44.06599496447007,44.06562960409339,44.06519801291644,44.06436059000173,44.06378241355111,44.06196454123202,44.06101492499079,44.06027686617977,44.05968974656968,44.05876978141918,44.05831433704313,44.05776863749383,44.05718748438029,44.05674875553074,44.05621084908361,44.05573495757713,44.05531574118365,44.05498079084802,44.05452995542516,44.05396447691291,44.0536864840704,44.05345380118366,44.05327586759542,44.05319817551162,44.05311422395206,44.05317149873675,44.05351463317377,44.05390362441963,44.05431580753585,44.05487473221291,44.0554202315906,44.05651590767092,44.05755541070674,44.0580694720078,44.05828289720727,44.05832655498867,44.05836960119795,44.05837646029151,44.05834214061908,44.05823514655167,44.05798001450675,44.05758570562349,44.05717427372493,44.05680846760898,44.05658548652519,44.0565349144978,44.05664300863727,44.05678195903391,44.05694103522504,44.05716680593454,44.05729428905352,44.05749683955672,44.05773418044819,44.05806241095679,44.05840170419965,44.05886654321215,44.05923564045928,44.05987188204518,44.06056750408295,44.06095311777528,44.06165220179874,44.06247914229112,44.06344783455886,44.06446793270005,44.06524585594453,44.065806729322,44.0664126977199,44.06719236414626,44.067654412658,44.06813136011227,44.06865921339598,44.06894186707776,44.06897507149027,44.06898503912297,44.06899735568235,44.06923112982674,44.0697725943459,44.07021019299298,44.0707151111021,44.07099280562127,44.07125575568868,44.07141289485021,44.07173479853692,44.07194661594423,44.07211739958405,44.0722909047136,44.07224307919606,44.07207791693749,44.07182826175931,44.07152321262611,44.07110777224553,44.07035921277657,44.06931801996281,44.06886342075254,44.06849806081236,44.06833773626704,44.06831452956239,44.06832983279659,44.06835175855343,44.06825810891684,44.06811219748158,44.06718733641782,44.06681024803875,44.06625126828546,44.06586909539619,44.0654133728927,44.06433132777298,44.06366144618721,44.06301620298576,44.06214668033865,44.06169065914979,44.06128659937576,44.06095605648827,44.06067432933207,44.06056781748541,44.06050308551129,44.06048958418687,44.06052065573028,44.06059387664411,44.06077041164988,44.06119754711467,44.06138087658379,44.06185615093585,44.06224894462344,44.06276902651283,44.06317277868904,44.06372201068937,44.06388127855892,44.0640207383212,44.06416873798621,44.06431801525157,44.06449658878897,44.06466122812542,44.06483174923599,44.06493360263872,44.06504083781878,44.06510951066112,44.06509125086013,44.06496786813086,44.06472164853475,44.06421986349743,44.06355879025994,44.06290455719044,44.0626346131242,44.06233537643014,44.06216660505861,44.06116953424311,44.0606068126759,44.06030876972012,44.0595710383236,44.05909799482128,44.05837895672781,44.05819290828585,44.05811435508402,44.0580881994457,44.05808704456596,44.05822077625097,44.05818667795415,44.05801096806499,44.05772791933181,44.05664230974497,44.05499528764941,44.05449205862331,44.0538473270939,44.05330238832602,44.05251056043454,44.05103992617111,44.05060991031369,44.05012732065138,44.04974156653815,44.04907170350264,44.04866435532426,44.04839275215122,44.04816019812384,44.04784381389724,44.04768869055283,44.04749798849598,44.04727227381834,44.04688355464079,44.04648697519126,44.04616089417279,44.04570103750812,44.04559493064836,44.04547887721287,44.04541131900127,44.04533786346168,44.04518074812871,44.04473531756926,44.04429389772985,44.04384397581571,44.04331365561564,44.04257109033145,44.04187196953435,44.04114962133529,44.04065227908617,44.04028693840389,44.03982640402129,44.03920776039519,44.03872701137506,44.03792580353098,44.03723256629552,44.03673545886899,44.03645133373526,44.03624211574527,44.03604605019947,44.03594895307376,44.03604405188616,44.03635531703774,44.03689499225523,44.03708240135056,44.03741149876436,44.03766680764047,44.03776244770297,44.03769853042525,44.03743519478962,44.03682163691008,44.03610257621563,44.03561672177034,44.03516203846128,44.03449944712571,44.03368064939943,44.03313814779571,44.03255100279556,44.03175875213147,44.03114414162488,44.03044316531015,44.02977661128685,44.02872924837344,44.02820670516329,44.02767261548916,44.02701501667006,44.02640206182975,44.02550633906473,44.02506686517614,44.02454575742485,44.0236128418431,44.02323599873544,44.0228163883607,44.02217395319089,44.02149445216934,44.02084534562884,44.02028487813327,44.02007090268376,44.01961370197094,44.01897604859859,44.01843268361228,44.01810662037342,44.01800121862084,44.01797624999426,44.01805229480809,44.01816550692615,44.0182051147,44.01821769487866,44.01817030332339,44.01808418745854,44.01755684080049,44.01662024877529,44.0158129062704,44.01512100912503,44.01452810118034,44.01422482805251,44.01401851319638,44.01392457660659,44.01385558101906,44.01384346077243,44.01382552606897,44.01377006182857,44.01371477416092,44.01359393022229,44.0132567625625,44.01298387010637,44.01277365871826,44.01263636669934,44.01230206721495,44.01200474583847,44.01175512281655,44.01096812155922,44.01008257678608,44.00902618831299,44.00850289654147,44.00755064458976,44.0069455109366,44.00618663166767,44.00574598722768,44.00488743393358,44.00418009569664,44.00381795653141,44.00347920469552,44.00277314954668,44.00210118829506,44.00106181740459,44.00071756621021,44.00007379855824,43.99932845363143,43.99870293495857,43.99782599905519,43.99735031914506,43.99648107057099,43.99589988034388,43.99537373042148,43.9944970332119,43.99439036046956,43.99417186838212,43.99392213571009,43.99303120752462,43.99238302921933,43.99182079926796,43.99154116768349,43.99115380057724,43.99109269762432,43.99109219108536,43.99118851228436,43.99117309869489,43.99102754259201,43.99102523395533,43.99095263052124,43.9908196663891,43.99071720511004,43.99045599640019,43.98945731504239,43.98865887163162,43.98817875688567,43.98764728428841,43.98715678723204,43.98613744374506,43.98594939521894,43.9857642010308,43.98557075432726,43.9851514401724,43.9850514496164,43.98490173453821,43.98469221468157,43.98450838722226,43.98450734929678,43.98450569171498,43.98450284293724,43.98449538290244,43.98441878819516,43.98433978549709,43.98426076228649,43.98418043578756,43.98419693619947,43.98421321925868,43.98421690490048,43.9842209427156,43.98422759830532,43.9842273493707,43.98422631235477,43.98422571804741,43.98421890968908,43.98421364685305,43.98420191587004,43.98420403958806,43.98420550448336,43.98420609791299,43.98420764916889,43.98420838299685,43.98420875886372,43.98420954061578,43.98421612447899,43.98422108070931,43.98423903976222,43.98425256825996,43.98426480148485,43.98427824541579,43.98429941179831,43.9841497302713,43.98356186082675,43.98300354209088,43.98275315558629,43.98185192056663,43.98107581736267,43.97985590747608,43.97787401259889,43.97598651404883,43.97503065266113,43.97421059104691,43.97352850561413,43.97326426626915,43.9722188835801,43.97132578793338,43.97045844778049,43.96988431677183,43.96886054182675,43.96806087101281,43.9671778973605,43.9662392183754,43.96565346353962,43.96488791909759,43.96447000665781,43.96385919719391,43.96308700714926,43.9623372871222,43.96154744780031,43.96086363147464,43.96005511782798,43.95923191702323,43.95823353615268,43.95782245985915,43.95743708697676,43.95675963965942,43.95617949372728,43.95534929291644,43.95388082562003,43.95272832093979,43.95186576695411,43.95104496575087,43.9504605094278,43.94916409196725,43.94777163992801,43.94382419274567,43.94085083102792,43.93786391648434,43.93677945278943,43.93599883886517,43.93548158325216,43.9343584407297,43.93323506702092,43.93247552757164,43.93041994602835,43.92922224089256,43.92818120388375,43.92732583326875,43.92544918539629,43.92044024667594,43.91920845872891,43.91776820162076,43.91728117995748,43.91678050993254,43.9164363857902,43.91602731117176,43.91547943318258,43.91486277419728,43.9143671481317,43.91373173323976,43.91315026466521,43.91251092297598,43.9119829992442,43.91100576960788,43.91032100563919,43.90963543481161,43.90610642517553,43.90387989000833,43.90224350868087,43.90042599923415,43.89845851152131,43.89755473607716,43.89657636519696,43.89595941774021,43.89544152483823,43.8946526600811,43.89426985571841,43.89362243469698,43.8927258536369,43.89157732599021,43.88988669192224,43.88911035119144,43.88809540607746,43.88688422226614,43.88596219736803,43.88400539653579,43.88225904624753,43.88118088697911,43.87962475050205,43.87858721171259,43.87809533850135,43.87165817684971,43.87039256919493,43.86963374792812,43.86893156914238,43.86828575793685,43.86754317858095,43.86696948035102,43.86655071895065,43.86623012940382,43.86486561046265,43.8638914321922,43.86295988864443,43.86272584646714,43.86200692527486,43.86133129868675,43.86098561079939,43.86040514537333,43.85976635592889,43.85926516820974,43.85841490071446,43.85760526830068,43.85678488151556,43.85624458215699,43.85522120928148,43.85327129504805,43.85163830914203,43.85112716890884,43.85008624641445,43.84844767550606,43.84775293594112,43.8472628862595,43.84685619426321,43.8445259114983,43.84315098718985,43.84219878558262,43.84099684684177,43.83976801319545,43.83862466228324,43.83793995994031,43.83694706657734,43.83619056887323,43.83524806232149,43.83423326806062,43.83275250539902,43.83227308372118,43.83007523926666,43.8289645983417,43.82841609817415,43.82678729482379,43.82504515358843,43.82360116495543,43.8212586957618,43.82023438891019,43.81822753033273,43.81530464824691,43.81392858055359,43.81321274102415,43.81238539726574,43.81193815296655,43.81125433587282,43.81032455808361,43.80987975032718,43.80943238574373,43.8089150274164,43.80840934901959,43.80773375321228,43.80643730713977,43.8046923699077,43.80420033392111,43.80348495048428,43.80232119718904,43.80108796520386,43.79957653464387,43.79813541448151,43.79732372814212,43.79672087838536,43.79621498235157,43.79563740396236,43.79472155006229,43.79380649549383,43.79294905632215,43.79223276400501,43.79170034691375,43.79116867937979,43.79029946707961,43.78954654859158,43.78884882263051,43.78806855635473,43.785855631552,43.78486772065492,43.78348939445721,43.78137497858391,43.78041578153522,43.7799715514207,43.77922365914019,43.778404934221,43.77768179224245,43.77686035837718,43.77598040737308,43.77550515299325,43.77494318365698,43.77433789164859,43.77339432446556,43.77198305384425,43.77143239009707,43.77001345454332,43.76835356412209,43.76704606659966,43.76622559101428,43.76435909513333,43.76158602335886,43.76103380035906,43.75971696744422,43.75849957612142,43.75572690896154,43.75476410541141,43.75335127955027,43.75147239868266,43.74946547464048,43.74851629945623,43.74739656829604,43.7462212130578,43.74527274013817,43.74483501861902,43.74418636277505,43.74356685916972,43.74214288070714,43.7403238812005,43.7393943794403,43.73822702386597,43.73620059967441,43.7351868524022,43.73396156180513,43.73283294470738,43.73180197391546,43.7312785841504,43.72957960926689,43.72636489230257,43.72572711712397,43.72559020404867,43.72534332602778,43.72543552809567,43.72541785479854,43.72528979379747,43.72520298614249,43.72484591690304,43.72498353643528,43.7250286331175,43.72532528110033,43.72520327457034,43.72522034637419,43.72517522737304,43.72519794818096,43.72526668633795,43.72530436768437,43.72540437774017,43.7398603413851,43.75418003753158,43.76869271172173,43.78325412212559,43.7976794499677,43.8124831400621,43.82703527884954,43.84149904142552,43.85602329534383,43.87028355409011,43.88489210253077,43.89922446765303,43.9138085930289,43.92825908090527,43.9426987920241,43.95711662478883,43.97140270806222,43.98584222470765,44.00004035435915,44.01428890406849,44.02873654765141,44.04306553731878,44.05752716896793,44.07146398048012,44.07126301234888,44.07111666393764,44.07089363920405,44.07094883817575,44.07123322641028,44.07120519439928,44.0712060292859,44.07122010071332,44.07119738477494,44.07123041750779,44.07123401958874,44.07121551753245,44.07118399871118,44.07113308863475,44.07107191591541,44.07115117085613,44.07129771251667,44.07112865079322,44.07095107761685,44.07483618774872,44.07626156453539,44.07725569616738,44.07814236857303,44.07961373377456,44.07958141956262,44.07971186964593,44.07980713289067,44.07996341898792,44.08030129332114,44.08085887840476,44.08120887528242,44.08182773111393,44.08245700544355,44.08259166449368,44.08268142875343,44.08289285114986,44.08291484401465,44.08277212279248,44.08268425672867,44.08274092609031,44.08272399616247,44.08286183238387,44.08297234696295,44.0832099053577,44.08380211975193,44.08455646411736,44.08524412775193,44.08591510044442,44.08689063142607,44.08723940238373,44.08761769249833,44.08782170527641,44.08827335853385,44.08835815234115,44.08851333003797,44.08854890927137,44.08856668427875,44.08843690741923,44.0881931011156,44.08795290087543,44.08767279436454,44.08735670559294,44.0867812221639,44.08651152651372,44.08647044710877,44.08601681016556,44.08521108491021,44.08493956302284,44.08449268745453,44.08435023421945,44.08434325455489,44.0844381276089,44.08476694487477,44.08500665198901,44.08513565258513,44.08529047539628,44.0855273108025,44.08569948372664,44.08594862164104,44.08629300169192,44.0869028524527,44.08755677792987,44.08837400512918,44.08892402125856,44.08948272054194,44.08977579392913,44.09013943678739,44.09034174352556,44.09065016203962,44.09069101766466]}]],[[{"lng":[-90.90560604801088,-90.90562809075314,-90.9058312846127,-90.90583557374369,-90.90810453843748,-90.90871630257384,-90.90952475188799,-90.91030011927239,-90.91098900986182,-90.91130657115185,-90.91218051552364,-90.913293180444,-90.91561490114577,-90.91717590329884,-90.91928186866431,-90.92072277346163,-90.9213640474145,-90.92211783935036,-90.92273692055748,-90.92375272732592,-90.92458945475794,-90.92537110962891,-90.92685377618926,-90.92793834862267,-90.9291627752616,-90.93031350142111,-90.931855626321,-90.93261876942579,-90.93313509173966,-90.93439433804093,-90.93476990731452,-90.93512343286577,-90.93648244893153,-90.93705839308808,-90.93788995515857,-90.93849172209521,-90.93935725462811,-90.93988626423641,-90.94007861416129,-90.94028446595357,-90.94053771338815,-90.94104596663887,-90.94130943953252,-90.94192084419751,-90.94232821841854,-90.94268687187727,-90.94331668298439,-90.94355776663073,-90.94375492848775,-90.94379449949967,-90.94409804784213,-90.94425215436875,-90.94461576156638,-90.94513709800573,-90.94571674834336,-90.94613120534152,-90.94655023126266,-90.94683653505174,-90.94748529900431,-90.94814168283075,-90.94890905424228,-90.94929494408969,-90.94978568061018,-90.95006428658205,-90.95055059159635,-90.95089857865308,-90.95129400100799,-90.95166741847837,-90.95204782056989,-90.95239820614195,-90.95268381215062,-90.95301260138109,-90.95324497280046,-90.9534756011643,-90.95385608398462,-90.95431615361846,-90.95468210830823,-90.9550720489413,-90.95562559767038,-90.95602748095205,-90.95627904885502,-90.95663110608983,-90.95695891984261,-90.95750642556696,-90.95791476858443,-90.95814396828736,-90.95838008374272,-90.95844459983999,-90.95848489792574,-90.9585991941648,-90.95872154180697,-90.95884608653697,-90.95933375978976,-90.95989457890833,-90.96030586824743,-90.96077804450564,-90.96120742097023,-90.96166936599492,-90.96208546678169,-90.96234681327741,-90.96278348505926,-90.96307631049086,-90.96338524985239,-90.96368610099736,-90.9638908430048,-90.96404553163677,-90.96469812187271,-90.9650874205504,-90.96528346998973,-90.96565070591446,-90.9659923560326,-90.96636295133727,-90.96670767667885,-90.96679636485747,-90.96693577936892,-90.96713488727626,-90.96719737610054,-90.9676920721564,-90.96827322020678,-90.96866638892818,-90.96908296562941,-90.96933627846757,-90.96959261540432,-90.96983217917487,-90.97031899518132,-90.9706491455601,-90.97123415247523,-90.9718878410977,-90.9728578185901,-90.97307044974434,-90.97364900836078,-90.97428934519191,-90.97482865100525,-90.97529487445213,-90.97532261110494,-90.97559829968596,-90.97591107146792,-90.97670073227094,-90.9775452347309,-90.97793493629621,-90.97832818482736,-90.97839423291349,-90.9782783837922,-90.97803530764978,-90.97748026022234,-90.9767780773165,-90.97357868637913,-90.97357910761941,-90.97364209869329,-90.97343635689207,-90.97311658919136,-90.95304077689916,-90.9328605807158,-90.91289887367468,-90.91306588777341,-90.91306488151525,-90.91311315854867,-90.91293703486038,-90.9128393390483,-90.91242870811851,-90.91197645996748,-90.91157824633116,-90.91114945386282,-90.9106372808736,-90.91009489441147,-90.9101122753397,-90.91023779558441,-90.91059167596347,-90.91062841554766,-90.91077585054451,-90.91084802274162,-90.91102533302151,-90.91098747520617,-90.91106030330218,-90.91090434498963,-90.91087774310849,-90.91088059048498,-90.91056952551784,-90.8906238665745,-90.87065258663574,-90.85063985294758,-90.83076341366947,-90.81072207991724,-90.79059026529616,-90.77048408222987,-90.75046322893893,-90.73051283242111,-90.71057177527119,-90.69084785507273,-90.67089146080342,-90.65198188233197,-90.6319294414655,-90.61189362811373,-90.6070849032492,-90.60724175983519,-90.6020233367115,-90.59925337930829,-90.59779157215911,-90.59287063552455,-90.58755714765469,-90.5870234979336,-90.58226558429075,-90.57231016887427,-90.55249734613845,-90.53255678399817,-90.51279258963507,-90.4728087080306,-90.45278027507655,-90.43278757951857,-90.41212420766682,-90.39219489121838,-90.37221043015518,-90.35219396811229,-90.33218106448773,-90.31210490188579,-90.31226798070723,-90.31235136034779,-90.31218703163181,-90.31215249556973,-90.31226082473654,-90.31189536279567,-90.31185167292649,-90.31175644981666,-90.31186511427624,-90.31202258337494,-90.31212829038544,-90.31214072163154,-90.31220209987212,-90.31218664771895,-90.31243748554286,-90.3124756029043,-90.31268863587783,-90.31272661075458,-90.31268997874909,-90.31261078764229,-90.31256891644304,-90.31255717355018,-90.31243992318906,-90.31257650715359,-90.31249037199038,-90.31250940829204,-90.31255936223594,-90.31257148004434,-90.33272152681826,-90.35287155015935,-90.37268670999562,-90.39300729571573,-90.41329694005607,-90.43573641269367,-90.45577719200294,-90.47582557686732,-90.49600240313585,-90.51627574696587,-90.53628567157378,-90.55332672031982,-90.59352807072146,-90.6136818150834,-90.63371064974345,-90.6537367601467,-90.67242174671763,-90.69248579923836,-90.73289192766293,-90.75306778949425,-90.77317699474099,-90.792547280169,-90.81267906887999,-90.83279559098922,-90.85291225691054,-90.87292237927204,-90.89279177820694,-90.90560604801088],"lat":[44.15835164898743,44.1583514766718,44.15825374114124,44.15822285470041,44.15701838817051,44.15665639874641,44.15618173569052,44.15570732624754,44.15534471178783,44.15520726268009,44.15480705255381,44.15434153499344,44.15323845728512,44.15229127428958,44.15070468856205,44.14905207464074,44.14823353494927,44.14764239914177,44.14737778695787,44.14700132683948,44.14672791762628,44.14657441181984,44.14634120796957,44.14626824283069,44.14635812800669,44.14644151208501,44.14656173894903,44.14673010203762,44.14691793795542,44.14714811087038,44.14720059365075,44.14725325139008,44.14746432968276,44.14750655173182,44.14745691873546,44.14728787823984,44.1468812115175,44.14649871613963,44.14626818538225,44.14604427694177,44.14571565866939,44.144720608454,44.14439649568738,44.14421308641823,44.14426561526138,44.14440654045619,44.14474156020315,44.14496300169913,44.14526966204496,44.14551756293552,44.14605250506309,44.14625580169665,44.14668802033577,44.14706898911883,44.14737812214086,44.14741259929581,44.14742500168995,44.14738311570803,44.14705666950979,44.14658745878678,44.14562502490529,44.14497254699187,44.14406234684611,44.14351778438716,44.14295008994485,44.1426351478419,44.14235171079957,44.14212876798534,44.14196886102375,44.14182705545652,44.14176912402042,44.14165527255464,44.14167904033094,44.14166331490416,44.1416799794255,44.14174858065979,44.14181791311182,44.14192777181137,44.14189335080483,44.14187014914392,44.14181778358382,44.14171430998034,44.14158377982515,44.14112969574017,44.14064823842328,44.14019773176066,44.13946562949399,44.13910267146645,44.13853155204711,44.13802337930885,44.13775252431075,44.13758672086377,44.13711172671651,44.13687156638391,44.13674521569808,44.1366420422284,44.13657513726082,44.13656311744559,44.13656953429201,44.13657981269671,44.13680173750732,44.1369660814764,44.13721331255846,44.13741711463192,44.13747093846169,44.13747161491816,44.13713676155227,44.13696337716192,44.13687785927262,44.13675967866833,44.13656331504239,44.13634296066298,44.13607922668392,44.13589090561583,44.1356556082333,44.13536425227662,44.13512615348088,44.13447982551908,44.13366866699088,44.13287336834077,44.13169258967411,44.13082712338998,44.13014713700401,44.12965280228047,44.12913495964805,44.12891410302648,44.12876330576893,44.12875774628211,44.12888341275519,44.12899026112543,44.12923505051642,44.12962200805713,44.12988853126611,44.13000940221178,44.13002107311367,44.13003458968458,44.13005052803278,44.12987967813294,44.12943009198728,44.12903434202585,44.12825327711213,44.12726920127128,44.12685308304972,44.12657415987209,44.12618374805626,44.12574190788377,44.12447270551832,44.12430803644397,44.09981197759692,44.08534826261454,44.07089363920405,44.07111666393764,44.07126301234888,44.07146398048012,44.05752716896793,44.04306553731878,44.02873654765141,44.01428890406849,44.00004035435915,43.98584222470765,43.97140270806222,43.95711662478883,43.9426987920241,43.92825908090527,43.9138085930289,43.89922446765303,43.88489210253077,43.87028355409011,43.85602329534383,43.84149904142552,43.82703527884954,43.8124831400621,43.7976794499677,43.78325412212559,43.76869271172173,43.75418003753158,43.7398603413851,43.72540437774017,43.72549610612565,43.72553784312758,43.72555839027285,43.725504662652,43.72541938266258,43.72541224892033,43.72558907062518,43.72567991640598,43.72591073227824,43.72605893779857,43.7261705557893,43.7263175582725,43.72622551148628,43.72625315190789,43.72593418787865,43.72589682981403,43.72962624881537,43.72957628186245,43.7295218859344,43.72953815964638,43.72952069729853,43.72947056287656,43.72578076080274,43.72578196641825,43.72572841526091,43.72568407534055,43.72567038148162,43.72577228151363,43.72587812495082,43.72586394709511,43.72596204334683,43.72694171926093,43.72778092470568,43.72863962335374,43.72976335485831,43.73054339463266,43.73149651770613,43.74600163973769,43.76046026044098,43.77498649173297,43.78938712291612,43.80384303782895,43.81886209491397,43.83337771654388,43.84777780541992,43.86220599520895,43.87673024260273,43.89108380910906,43.89450482281894,43.90907257888276,43.93788422694664,43.9523911450388,43.96686511926514,43.98139935570669,43.99582402446128,44.01036022645523,44.024736226198,44.03931523029567,44.05391043552562,44.06840122201152,44.0975150356859,44.11161595068894,44.12610959788544,44.14060818271015,44.15511218135964,44.15588264938319,44.15669345351403,44.15754934856398,44.15863077153544,44.15965298347594,44.16104801175586,44.16096551086419,44.16091238494808,44.16070718435749,44.16060611357817,44.16045853617576,44.16022226714097,44.16007623627178,44.15996499301897,44.15987564768592,44.15961625006025,44.15952526333378,44.15919329128257,44.15922825094869,44.15908973373853,44.15904004616009,44.15885605701167,44.15869515868565,44.15865180400463,44.15856636225617,44.15852151957127,44.1584511980868,44.15835164898743]}]],[[{"lng":[-88.88665763008113,-88.88671856725719,-88.90118965761219,-88.90705952873373,-88.92126365455081,-88.92714930195866,-88.94141482061754,-88.94678154512218,-88.96170435302125,-88.96697193009267,-88.98216838146314,-88.98720256903357,-89.00230628410644,-89.00674402265962,-89.02218460340984,-89.0268666664816,-89.0470652051138,-89.06259717122266,-89.06705072108478,-89.082749926727,-89.08731750134979,-89.10339144508758,-89.1235515895945,-89.12515328807739,-89.128509633213,-89.1435987487058,-89.14867660069804,-89.16369635614922,-89.16886539659811,-89.18389239847502,-89.18896277148478,-89.20423374454447,-89.2091970569831,-89.22478846334496,-89.24495450970251,-89.24718149344083,-89.26512629102095,-89.26715722964373,-89.28516501453706,-89.28730941970467,-89.3054511450699,-89.30761686573018,-89.32576984160833,-89.32787009882664,-89.34637931337403,-89.34780650825294,-89.36503170954315,-89.36645849821782,-89.38515109007037,-89.38656225593051,-89.40544584431451,-89.40671039570134,-89.42558039205501,-89.42671808786653,-89.44581424754614,-89.44708838852908,-89.46563398917118,-89.48223864266727,-89.48767047250057,-89.50235070167143,-89.50777452811808,-89.52264072255541,-89.52798975369382,-89.54239346529262,-89.54819264954467,-89.56276291999311,-89.56837593835347,-89.5886062211549,-89.59794367528031,-89.59756120381316,-89.59736450302465,-89.59735672363372,-89.59758496868349,-89.59779498968973,-89.59786784234875,-89.59776534831357,-89.59804812509789,-89.59807969716023,-89.59801100575416,-89.59801884681586,-89.59801798816302,-89.59797254231782,-89.59803371735727,-89.59816908222263,-89.59803404484316,-89.58271591610561,-89.56273370389762,-89.54240276287585,-89.5223978713525,-89.50245481723042,-89.48241171811274,-89.46587724797541,-89.44575297882696,-89.40550965180074,-89.38543899781979,-89.36537660657579,-89.34763664505516,-89.32758361795707,-89.28739016829527,-89.26731172508164,-89.24712927669276,-89.16864715629663,-89.16364745677836,-89.15864776329219,-89.15364806341125,-89.14864914948906,-89.14354891078005,-89.13844944367116,-89.13334998308977,-89.12824974021009,-89.12174535539887,-89.11673012131786,-89.11171489506282,-89.10669967829836,-89.10171393401214,-89.0967281770301,-89.09174242178538,-89.08675666596064,-89.08170761455416,-89.07665856668136,-89.07160952768712,-89.06656048450881,-89.06158744694947,-89.05661518512852,-89.05164213903149,-89.04666988338873,-89.04159473094657,-89.03651957134363,-89.03144441733447,-89.02636848704704,-89.02133935680909,-89.01630945883423,-89.01127955949688,-89.00634460600611,-89.00633770514861,-89.00202339789298,-88.9970016618572,-88.99197586242735,-88.98695006969822,-88.98192606222793,-88.97690206375835,-88.97188141315357,-88.96688952683716,-88.96686076393335,-88.96184011942712,-88.9568194688753,-88.95180191242689,-88.95087106477048,-88.92650881429498,-88.92145293745408,-88.91639866042519,-88.9113274250775,-88.90625619842567,-88.90122137306599,-88.89618655816305,-88.89112863315253,-88.88611528643541,-88.88627451072807,-88.88627123059942,-88.88621323808248,-88.88595749332249,-88.8859039644629,-88.88583130849678,-88.88590818443028,-88.88603856312423,-88.88613406925911,-88.88623622025185,-88.88636428535015,-88.8864481156795,-88.88662738066897,-88.88665763008113],"lat":[44.22814217273233,44.24267213821624,44.2426749130008,44.24266593633192,44.24267177591666,44.24265600743025,44.24286108454674,44.24284455578528,44.24289025006804,44.2428586542789,44.24292384170667,44.24294522189527,44.2428498985965,44.24287136229936,44.2428488309784,44.24286372687526,44.24285795583996,44.24294523368116,44.24295885521751,44.24296625857017,44.24294596131402,44.2429661778108,44.24301860462268,44.24300385585395,44.24305873982774,44.24298447453779,44.24291349668927,44.24297927246727,44.24298993071753,44.24315748289659,44.24317244023375,44.24324985375142,44.24325303997448,44.24337156167419,44.24353370561612,44.24358917690893,44.24368575336979,44.24370889686373,44.24378104479846,44.24374320005481,44.24367821797949,44.2436235247439,44.24366482765303,44.24372049437933,44.24368746052343,44.24366520596073,44.24380358558594,44.24381879875006,44.24384154648422,44.24385389254246,44.24387828373132,44.24383757127851,44.24389175869705,44.24393515511649,44.24391707564514,44.24393616892117,44.24386260564966,44.24393146271448,44.24398455065,44.24411136777979,44.24419302147131,44.24437967061369,44.24452194806709,44.24481159589533,44.244956974647,44.2451923792924,44.24522432666372,44.24551473202287,44.24567049821225,44.21389119421129,44.19950540898979,44.18506201295779,44.17062587412254,44.15609116468404,44.14102586976765,44.1264626961453,44.11198411455122,44.09744947370934,44.0829586161518,44.06846179645765,44.05478309919279,44.04019851838255,44.01125430814553,43.99677551391397,43.98225251991258,43.98237477839643,43.98226487015236,43.98221394545342,43.9821303719153,43.98211418420076,43.98212925640028,43.9822078617207,43.982231601412,43.98245501722677,43.98248416726661,43.98246763274587,43.98251597137569,43.98242955058925,43.9824124462612,43.98250267414682,43.98249328634362,43.98295732731483,43.9829853090529,43.98301278629641,43.98304005014925,43.98306709800312,43.9830945743745,43.98312183250592,43.98314885940177,43.98317565451503,43.98313658552489,43.98310611954634,43.98307571552903,43.98304481237247,43.9830758159319,43.98310688690459,43.98313774028662,43.98316809155064,43.98315889205807,43.9831494736874,43.98313982128379,43.98313023505539,43.98314439725919,43.98315835362531,43.98317236608719,43.98318588839147,43.98320114343033,43.9832161771808,43.98323098549394,43.98324555441182,43.98325721344676,43.98326835569308,43.9832792806999,43.98331339496008,43.98331341518944,43.9833273154774,43.98334329481906,43.98335775063023,43.98337198294283,43.98339286923411,43.98341353341927,43.9834198968649,43.9834260042846,43.98342603843185,43.9834319636211,43.98343766503932,43.98346380767949,43.98346862178796,43.98340335870214,43.98336181264477,43.98331987742277,43.98329507304219,43.98327004237912,43.98323470530794,43.98319914336938,43.98321370828217,43.98329873536341,43.99779998386413,44.04120424707753,44.05566092569573,44.06904677291227,44.0980961775561,44.11264570120965,44.12688152875604,44.14126218075988,44.15570969920053,44.17013501726911,44.18463651856537,44.19916062642808,44.21360065673952,44.22814217273233]}]],[[{"lng":[-89.90249769979482,-89.902399786834,-89.91903817156829,-89.92411451313639,-89.93904671840785,-89.95561762348943,-89.962081183195,-89.97635745599034,-89.98221114651531,-90.00012710180005,-90.00251158250923,-90.01639140705998,-90.03657140895912,-90.04294164432767,-90.05681172449506,-90.06305165977052,-90.07307617765639,-90.08071378207278,-90.09335565210898,-90.10096872222667,-90.11151972639878,-90.13357625087677,-90.15371127550409,-90.17395187019221,-90.19230849878359,-90.19934920423879,-90.23971033225128,-90.2533114075096,-90.27337647833042,-90.2934491370244,-90.31268957121769,-90.31290824716854,-90.31335289848919,-90.31276125185333,-90.31252777955537,-90.31258414598355,-90.31257148004434,-90.31255936223594,-90.31250940829204,-90.31249037199038,-90.31257650715359,-90.31243992318906,-90.31255717355018,-90.31256891644304,-90.31261078764229,-90.31268997874909,-90.31272661075458,-90.31268863587783,-90.3124756029043,-90.31243748554286,-90.31218664771895,-90.31220209987212,-90.31214072163154,-90.31212829038544,-90.31202258337494,-90.31186511427624,-90.31175644981666,-90.31185167292649,-90.31189536279567,-90.31226082473654,-90.31215249556973,-90.31218703163181,-90.31235136034779,-90.31226798070723,-90.31210490188579,-90.31230795651693,-90.31240126520738,-90.31247827731967,-90.31263231201274,-90.29077641681482,-90.27121990240774,-90.25126203762186,-90.23134066790392,-90.21209376704076,-90.19205515298384,-90.17187496897635,-90.15223173271862,-90.13213614922311,-90.11217563666582,-90.0924606100763,-90.07245747939938,-90.05415445940176,-90.03436247506929,-90.0144345234785,-89.99466324602996,-89.97489062586777,-89.95472131411607,-89.91771340070703,-89.89779550665324,-89.87771987747104,-89.85781145588197,-89.83795807866336,-89.81858833806128,-89.79871346074538,-89.78610311075421,-89.7854990955754,-89.78593520534881,-89.78649843564948,-89.78697528886379,-89.78782750293092,-89.78824547479347,-89.78871928163251,-89.78929243614577,-89.78979250489128,-89.7900233735448,-89.79008174541561,-89.78992675341415,-89.78968202193643,-89.78921129197377,-89.78866535931664,-89.78816034642047,-89.78793041012081,-89.78755638137729,-89.78714663552009,-89.78647515675353,-89.78557731115315,-89.78529658566536,-89.7851675167866,-89.78522641673327,-89.78538477330127,-89.78549250649172,-89.78577222058902,-89.78628743886729,-89.78660875535796,-89.78664064099561,-89.78646623766141,-89.78642071916587,-89.78659072535172,-89.78721207446839,-89.78753484674075,-89.78775644714551,-89.78790064141789,-89.78805875844166,-89.78808545550839,-89.78796634949279,-89.78786312298212,-89.78781954046555,-89.78787442385944,-89.78795245257177,-89.78797454865996,-89.78793504763929,-89.78787668326778,-89.78796018147686,-89.78808654281643,-89.7883520605567,-89.78882914542869,-89.78928483122145,-89.79013093468389,-89.79058190991451,-89.79168059693848,-89.7923985863831,-89.79291285740773,-89.79365048064828,-89.79439322523207,-89.79516071944879,-89.79615200363379,-89.79758316678073,-89.79838988974176,-89.79948573645639,-89.80037917307899,-89.80155585976307,-89.80217720837727,-89.80307839743206,-89.80375840176123,-89.80484605521683,-89.80562030015092,-89.80623664032916,-89.80735248628777,-89.80789593305379,-89.80846340083761,-89.80904526138407,-89.80943522374383,-89.8099777474487,-89.81067267864388,-89.81112032599634,-89.81206181367654,-89.81244177012466,-89.81276104755217,-89.81338983172176,-89.81388270156394,-89.81417029982164,-89.81446071865973,-89.81462433535323,-89.81504941139606,-89.81573734245956,-89.81635771717026,-89.81686643199696,-89.81727355582075,-89.81783553229552,-89.81842687464898,-89.81887032585259,-89.81946622544557,-89.81982215608404,-89.82009802449973,-89.82056008727309,-89.82109955828795,-89.82175106527237,-89.82256249855966,-89.82329628407467,-89.82356610964069,-89.82366432118314,-89.82406388328502,-89.8243901246593,-89.82469897621891,-89.82497910310327,-89.82518099434897,-89.82532298789513,-89.82557512048506,-89.82570514820205,-89.82587535623627,-89.82608008004922,-89.82642748352583,-89.82677095896865,-89.8271196534216,-89.82743671346664,-89.82789221732116,-89.82827299351965,-89.82874341120689,-89.82967487663062,-89.83014459066376,-89.83030386553303,-89.83046052403388,-89.83066968342004,-89.83075190865951,-89.83090194547688,-89.83103812714623,-89.83112911856601,-89.83138580217633,-89.83150085459657,-89.83186290496303,-89.83244012495773,-89.83277699908331,-89.83359422464495,-89.8338995640124,-89.83467309358933,-89.83541956555169,-89.83576380889919,-89.8360789194311,-89.83675469419506,-89.83705262622765,-89.83728495900701,-89.83775893158898,-89.83792680673623,-89.83805885647432,-89.83829455031392,-89.83859880411789,-89.83902207775384,-89.83940200649623,-89.8396878413426,-89.83997823684213,-89.84043821888866,-89.84073862340642,-89.84101457669881,-89.84147938059239,-89.84190767063652,-89.84201353656471,-89.84213100655603,-89.84224724363318,-89.84231417011172,-89.84238068945498,-89.84247613826929,-89.84265497043529,-89.8427451063048,-89.84286948699733,-89.84296478752815,-89.84301640424481,-89.8431020391177,-89.84312964152267,-89.84320524947053,-89.84329691298909,-89.84337935961463,-89.84340882902286,-89.84348135160691,-89.84369183046179,-89.84381720123135,-89.84401955015277,-89.8441054045563,-89.84400156389729,-89.84375508905876,-89.84362591276653,-89.84359763661855,-89.84362418510312,-89.84383571186714,-89.84400217549647,-89.84452205318451,-89.84537006718662,-89.8458560955019,-89.8466432667114,-89.8472065326032,-89.84754603578372,-89.84790522451728,-89.84853920816523,-89.84931173687808,-89.84977057302613,-89.85001940045393,-89.85032928019912,-89.85048500865709,-89.85064958060663,-89.85077867961209,-89.85121048036839,-89.85169164941756,-89.85198987260412,-89.85218512897875,-89.85266812291506,-89.8535682218545,-89.85474306359309,-89.85555043843269,-89.85662251164075,-89.85715712882163,-89.85814353513531,-89.85860006656692,-89.86196609172245,-89.8625207327939,-89.86275907224251,-89.86360786064624,-89.86415243258291,-89.86461424062691,-89.86511228035575,-89.86528171528259,-89.86548744400498,-89.86588103775534,-89.86650574894192,-89.86718186351426,-89.86779721211286,-89.86836162418855,-89.86984344318012,-89.87046142235373,-89.87129568974166,-89.87184521148865,-89.87234106159259,-89.8729463738119,-89.8734617599154,-89.87403339951966,-89.87478739055406,-89.87609823543939,-89.87646530663613,-89.87684664043992,-89.87738537378468,-89.87799875773425,-89.87867568147441,-89.87949136243732,-89.88011935984117,-89.88078628096432,-89.88199081621266,-89.88262324192677,-89.88303895919877,-89.88351569071459,-89.88408241156563,-89.88467603186865,-89.88536202341326,-89.88595802682909,-89.88646887281614,-89.88694300552689,-89.88732227842642,-89.88797113563848,-89.88837945022932,-89.88888752939388,-89.88953201644847,-89.8902520981856,-89.89075333380701,-89.89128600840267,-89.89188924796794,-89.89266751908885,-89.89302248590739,-89.89338979118889,-89.89380066802404,-89.8948929549143,-89.89529912813722,-89.89575629795191,-89.89643938760763,-89.89676505425794,-89.89695429551723,-89.89709935117007,-89.89721546451938,-89.89758179315163,-89.89792615665684,-89.89817365854962,-89.89842132945547,-89.89887551710724,-89.89954210878575,-89.90057126420837,-89.90169782472813,-89.90261023436662,-89.90292019085692,-89.90325934859837,-89.9035619645403,-89.90393771273345,-89.90395186999255,-89.90412154120342,-89.90414154745093,-89.90455980880722,-89.9051677455089,-89.90997549729947,-89.91055747860646,-89.91107834765378,-89.91141398427419,-89.91192742600582,-89.91267228469933,-89.91365572081422,-89.91427878833989,-89.91495055035033,-89.91537145763135,-89.9158724929503,-89.91624432049778,-89.91655747610095,-89.91668554527841,-89.91669461607498,-89.91646180241058,-89.91631727773571,-89.91617506141628,-89.91615227408525,-89.91631001983194,-89.91650395115879,-89.91675407259795,-89.91721141202684,-89.91763705915427,-89.91806747436115,-89.91839809614412,-89.91866799163978,-89.91902991753103,-89.91919490004037,-89.91928904502032,-89.91934224213593,-89.91966092556008,-89.92148594809412,-89.92339906387764,-89.92566798372414,-89.92631833195392,-89.92664686815236,-89.92715633297814,-89.92774834243301,-89.92841112937656,-89.9292201916421,-89.9299244248173,-89.93091867820947,-89.93185196142582,-89.93282650706145,-89.93385188604447,-89.93446096168532,-89.93517963440028,-89.93563272153705,-89.9372674215693,-89.93787413518315,-89.93842462569643,-89.93898464119449,-89.93937423812251,-89.93987081640681,-89.94044801825841,-89.94132041972745,-89.94205403231619,-89.94291204525867,-89.94361402202868,-89.94423313940682,-89.94552749674132,-89.94609294539367,-89.94671446810345,-89.9475526972756,-89.94824223778861,-89.94871009863522,-89.94929494843717,-89.9499993461413,-89.9505209232681,-89.9511156073102,-89.95241951603279,-89.95336254938185,-89.9540546696942,-89.95443890234924,-89.95512965792662,-89.95575860681652,-89.95673126836844,-89.95726265760504,-89.95795970912179,-89.95840081074162,-89.95890768848884,-89.95925353924291,-89.95941403335948,-89.95985254876774,-89.95999823450353,-89.96025291173164,-89.96056185751006,-89.96125897951698,-89.96168545549975,-89.96213874476332,-89.96241161446605,-89.96264289300932,-89.96262536676484,-89.96243972077292,-89.96211016849905,-89.96171957438789,-89.96134107484424,-89.9611577880635,-89.96100126590557,-89.96084220660644,-89.96085891986171,-89.96099998192926,-89.96093371772477,-89.960691592595,-89.96033234703329,-89.95985103783431,-89.95979116982922,-89.9598335765064,-89.95993234411398,-89.96024527176806,-89.96066937963533,-89.96112527925651,-89.96175922814591,-89.96230049408094,-89.96292463204655,-89.96355362328867,-89.96438247947394,-89.96498706856616,-89.96526483335288,-89.96549863089139,-89.96594674846418,-89.96622441769928,-89.96670447501194,-89.96696766715382,-89.96716739378802,-89.96739637907818,-89.96773265888372,-89.96815679334651,-89.96843952556179,-89.96888561154245,-89.96925130969038,-89.96982913417729,-89.97049968423342,-89.97086057755222,-89.97158967931774,-89.97212135065728,-89.97251155844199,-89.9729359322094,-89.97351131451433,-89.97373049028256,-89.97394563553898,-89.974406480205,-89.97463070826879,-89.97471827048419,-89.97480584392629,-89.97491789326403,-89.97513471836946,-89.97555388010989,-89.9759147885877,-89.97626597046818,-89.97674645706286,-89.97771479573936,-89.97782180997478,-89.97803417206893,-89.97814033400192,-89.97850127605189,-89.97874188921473,-89.97903174208933,-89.97921216221478,-89.9794560401469,-89.97983164888009,-89.98056101973334,-89.98098053946367,-89.98126828429662,-89.98143407955645,-89.9815510789371,-89.98178994239029,-89.98190692400971,-89.98197504370926,-89.98186548090062,-89.98180134629399,-89.98171123831662,-89.9815494382468,-89.98137426030168,-89.98102266808505,-89.98046109007322,-89.97999229270059,-89.97917686441588,-89.97826376640229,-89.97754598985581,-89.97697959264116,-89.97617883672753,-89.97394745882485,-89.97287814398457,-89.97176976602005,-89.97098362181096,-89.97031948923225,-89.96970409865827,-89.96913265600412,-89.9689585564973,-89.96861059150332,-89.96842949096069,-89.96736754527514,-89.966640112755,-89.9663399853721,-89.96586402895299,-89.96555652684457,-89.96517762761239,-89.96458068105419,-89.96424895931209,-89.96349269201276,-89.96251914679965,-89.96184079209446,-89.96116487657341,-89.96000821164894,-89.95928584177165,-89.95839256563029,-89.95762612695798,-89.95680586888861,-89.95652857814177,-89.95624470498453,-89.95585853336947,-89.95495268126258,-89.9541370472638,-89.95307957781061,-89.95251298914972,-89.95202193360875,-89.95190320259564,-89.95174733681223,-89.95163808556413,-89.95149833831306,-89.95147353094599,-89.95173092518702,-89.95195976581957,-89.95232531734553,-89.95281783176931,-89.95305186184765,-89.95328972532826,-89.95382523556876,-89.95482052675126,-89.9554157986363,-89.95595742072163,-89.95680385401394,-89.95695862311271,-89.95722380221281,-89.95745486676736,-89.95778389774263,-89.95803474774634,-89.95800995005891,-89.95792647866647,-89.95758902118044,-89.95720284982737,-89.95704636828077,-89.956808165235,-89.95665897844039,-89.9559919592571,-89.95536165278313,-89.95472802369915,-89.95438055327435,-89.95411429833396,-89.95374833723302,-89.9535004737948,-89.95329009699087,-89.95307990643894,-89.95286828552722,-89.95271272875803,-89.95247226853532,-89.95221165731111,-89.95207121370868,-89.95195406807926,-89.95188694342137,-89.95180637584576,-89.95171918831882,-89.9516053000729,-89.95151805854579,-89.95151096047007,-89.95151048656349,-89.95153003402262,-89.95166967527368,-89.95193577704198,-89.95218875198715,-89.95256820045363,-89.95457817488011,-89.95541670067487,-89.95572313183145,-89.95631615573075,-89.95658259158559,-89.95703573036924,-89.95730887457434,-89.95766865501679,-89.95821170214029,-89.95850489277423,-89.95935777071621,-89.95969761506416,-89.96037073246595,-89.96083736758143,-89.96118392381764,-89.96159045647885,-89.96185033400096,-89.96224362549745,-89.96248668029209,-89.96233283637811,-89.96211565753417,-89.96155475826318,-89.96121416326527,-89.96089353462875,-89.96057288117761,-89.96022540904679,-89.9600613945548,-89.95997744860487,-89.95985683586181,-89.9597696649011,-89.95978248287759,-89.95993548776737,-89.96063501764544,-89.96078809118013,-89.96105440359548,-89.96146422036691,-89.96171745550728,-89.9620607712218,-89.96266763860434,-89.96294438702877,-89.96313359350678,-89.96342239949144,-89.96391481303789,-89.96460185007972,-89.96526889212043,-89.9662761962613,-89.96682319578059,-89.96737353927929,-89.96750600949568,-89.9676354581585,-89.96766688752155,-89.96758547885274,-89.96689924862888,-89.96661873180436,-89.96631969404197,-89.96575438245692,-89.9650865705827,-89.96497615847385,-89.96503583430835,-89.9651323136508,-89.96525171318062,-89.96548568226301,-89.96587913391652,-89.96644270813739,-89.9670496371692,-89.96787337565266,-89.96852716677635,-89.9692644517277,-89.97002517562548,-89.97071255100701,-89.97283140393615,-89.97357215031305,-89.97446638393822,-89.97527051792864,-89.97662515345633,-89.97731915784364,-89.97812327426226,-89.97910426709723,-89.98026885556791,-89.98090957642984,-89.98181725634664,-89.98279836555723,-89.98358922762228,-89.9845635768415,-89.98500063409051,-89.9854410586735,-89.98591485991422,-89.98808727926207,-89.98906841298128,-89.98966910937349,-89.99093394230258,-89.99199522638905,-89.99283624769909,-89.99454502837244,-89.99560635603432,-89.99712160711817,-89.99783584470205,-90.00050928854476,-90.00124357741613,-90.00220150039996,-90.00278226800899,-90.0035098981915,-90.00484503167924,-90.00562610449754,-90.0062269564763,-90.00674774960329,-90.00688799973541,-90.00691148867026,-90.00670463449585,-90.00649773754334,-90.00625745420597,-90.00597710969195,-90.00536964451396,-90.00481222386638,-90.00408454605571,-90.00347701908376,-90.00241216023541,-90.00152420877565,-90.00019892490923,-89.99970485756683,-89.99907724370487,-89.99867663083383,-89.99818919420241,-89.99804481801576,-89.9979421208193,-89.99798548597583,-89.99802481352808,-89.99807465469708,-89.99814443403893,-89.99846618697183,-89.99902707080687,-89.99965474248086,-90.00030245880681,-90.0009835719451,-90.00150444465066,-90.00191847822865,-90.0023392137963,-90.00349463913065,-90.0036015249899,-90.00370841934316,-90.00432964347459,-90.00463690990043,-90.00524472593806,-90.00595271367506,-90.00650039961478,-90.0073954011533,-90.00817016944602,-90.00894496246171,-90.01173043132238,-90.01434243297341,-90.01514406257326,-90.01573195647985,-90.0161595742547,-90.01664065919022,-90.01711518079111,-90.01748949191294,-90.01767667427946,-90.01798414841656,-90.01853901094252,-90.01868618165477,-90.01864624703195,-90.01847948657387,-90.01834615416703,-90.01822614560527,-90.01817955823782,-90.01817979405214,-90.01832702302922,-90.01859442038064,-90.01938984812008,-90.01988441637826,-90.02032555861908,-90.02059300088209,-90.02063993570907,-90.02062679770791,-90.020346449852,-90.01973211812876,-90.01929807405692,-90.01920472726549,-90.01921825090149,-90.01959268368563,-90.02045510109255,-90.02133750066176,-90.0218923048934,-90.02330926169816,-90.0240177661358,-90.02506050505069,-90.02581599106145,-90.02600339645281,-90.02601713860911,-90.02595059574293,-90.02579069028968,-90.02571075077238,-90.02564416452397,-90.02555100303761,-90.02547122698434,-90.02543166281966,-90.02576674657819,-90.02610148576464,-90.02635595119615,-90.02663719154609,-90.02717281473056,-90.02756100237589,-90.02778861293118,-90.02817684231636,-90.02833749731141,-90.02858526117257,-90.02873268850598,-90.02875982553635,-90.02882705724255,-90.02872042139191,-90.02850680379871,-90.02801252770522,-90.02779597249607,-90.02746157524747,-90.02670309574522,-90.02611509963073,-90.02566735027304,-90.02487874944855,-90.02433075940739,-90.02366251813437,-90.02314798695932,-90.02277385105789,-90.0222393591898,-90.02182508449607,-90.02125694450869,-90.02061522586244,-90.01962584208492,-90.01902417316001,-90.01810154358418,-90.01743294869785,-90.01669746571719,-90.01597533086128,-90.01380218711498,-90.01211719253998,-90.01143519869562,-90.01047239612895,-90.00939599124094,-90.00864720703112,-90.00803213292056,-90.00737694148124,-90.0069891836708,-90.00652791698528,-90.00635412658256,-90.00650133993835,-90.00680900763633,-90.00717013577585,-90.00799946566569,-90.00858799103429,-90.00927015861727,-90.01015302504371,-90.01055434969405,-90.01102257599982,-90.01142394040325,-90.01186550794095,-90.01210646943976,-90.01225372111189,-90.01237425109434,-90.012494777965,-90.01252166489431,-90.01246825953208,-90.01230135098892,-90.01207412045098,-90.01165958794191,-90.01118481235811,-90.01066319748142,-90.01002117929131,-90.00941926662699,-90.00867018902433,-90.00693121085014,-90.00591456585565,-90.00477085121673,-90.00362044737253,-90.00275095633894,-90.00180120179614,-90.00066416222437,-90.0000889470937,-89.99927962323136,-89.99808901632227,-89.99696525749196,-89.99570097418562,-89.99517920154838,-89.99440324868952,-89.99374770159496,-89.9929717523414,-89.99166072343891,-89.99095174852592,-89.99010904291194,-89.98960078131132,-89.98931992582041,-89.98895884548782,-89.9885843872287,-89.98787554525506,-89.98712654366381,-89.9864845290663,-89.98586926436666,-89.98447818637226,-89.98317402663186,-89.98221093791383,-89.98123445952393,-89.98047197625813,-89.97982983741251,-89.97862576002311,-89.97783634473093,-89.97728103895055,-89.97678593585702,-89.97598294339123,-89.9755144095265,-89.97538040933483,-89.97543365938166,-89.97563405078765,-89.97648996968567,-89.97699822689455,-89.97796126423347,-89.97856322160183,-89.97921869155495,-89.97986081946024,-89.98139931660231,-89.98249632951631,-89.9842756005494,-89.98533241493401,-89.9859744884012,-89.98680372177358,-89.98693733723226,-89.98680336344714,-89.98656243559961,-89.98593350823784,-89.98472932248866,-89.98367235619011,-89.98262878787817,-89.98179928063769,-89.97975895981774,-89.97902311001246,-89.97804639523308,-89.97716331265053,-89.97654779744076,-89.9757314702379,-89.9752094590883,-89.97477420566143,-89.97460001224978,-89.97438543932897,-89.9741708346485,-89.97406355900877,-89.97399634317711,-89.97398249951908,-89.97392870848243,-89.97390169325669,-89.97386778918181,-89.97382738082098,-89.9738404756429,-89.97357247864294,-89.97298324380806,-89.97254135265196,-89.97216642268074,-89.97195209170573,-89.97176452301055,-89.97169735681253,-89.97161683175614,-89.97175039129418,-89.97200425985942,-89.97219124462731,-89.97223111616563,-89.97220410050342,-89.9720029251833,-89.97178848089754,-89.97152047382298,-89.97115872748722,-89.97099786079663,-89.97097754852609,-89.97093693852779,-89.97097676921625,-89.97096306776824,-89.97106967932395,-89.97118974755968,-89.97132306252286,-89.97140305815257,-89.97152327065758,-89.97169678699254,-89.97193043523221,-89.97201049583961,-89.97178259357416,-89.97142094029373,-89.97098565933476,-89.9703160904804,-89.96972690105609,-89.96911097143446,-89.96834779177486,-89.96753112948936,-89.96656725048157,-89.96567035328707,-89.96405742051657,-89.96325435128919,-89.96206314946296,-89.96093889310036,-89.96020284482205,-89.95925270766858,-89.95861041007352,-89.95786100310616,-89.95662974543124,-89.95567945686594,-89.95414014079964,-89.95328347168544,-89.95235981661153,-89.95140940762332,-89.95065973671726,-89.94956198642976,-89.94859802298416,-89.94667677125894,-89.94576635622909,-89.94480248544137,-89.94383874394204,-89.94315615994654,-89.94231300740555,-89.94085444456198,-89.93981100524806,-89.93919571548294,-89.93842006547283,-89.93783201713683,-89.93756537945789,-89.93743940917653,-89.93738651064552,-89.93730672956525,-89.93721361868175,-89.93692028160424,-89.9365732114769,-89.93621258671061,-89.93573137062377,-89.93507963307749,-89.93430047813074,-89.93319015834248,-89.93253452970845,-89.93182527796154,-89.93058062744902,-89.92979761112218,-89.92883380866797,-89.9277624979475,-89.92687823332366,-89.92640914534633,-89.92596684072883,-89.92559158409004,-89.92484767674354,-89.92433774500797,-89.9239620052294,-89.92310982321187,-89.92278758034814,-89.92243856308704,-89.92223671353806,-89.92207508396872,-89.92199377539458,-89.9220196320172,-89.9219914389691,-89.92214264753896,-89.92212851175385,-89.92222155298434,-89.92277485033432,-89.92325528379253,-89.92386935925998,-89.92425679504585,-89.92496509886894,-89.92524538678832,-89.92537840177478,-89.9253375135317,-89.92510927819495,-89.92459294549585,-89.9239895075649,-89.92339971999607,-89.92270294102755,-89.92151089624723,-89.92076105221756,-89.91966331019155,-89.91770914371877,-89.91618348859335,-89.91508610035888,-89.91382809756593,-89.91273055485053,-89.91195430433166,-89.91070939726578,-89.90973213227645,-89.90887530026104,-89.90751633066624,-89.90673962143576,-89.90588228843028,-89.90503807138735,-89.90446164408228,-89.90391178561727,-89.9032811525295,-89.90273083030107,-89.90238156120029,-89.90207231337719,-89.90169590026493,-89.90145371662655,-89.9012921589843,-89.9011437680182,-89.90105521256291,-89.90104098249735,-89.9010802686529,-89.9012527948384,-89.90163258005329,-89.90217995458178,-89.90268761550416,-89.90317535491276,-89.90373711203532,-89.90451314173104,-89.90524911295076,-89.90605222772409,-89.90686886415438,-89.90788650053652,-89.90970141195605,-89.91098717193429,-89.91164355953438,-89.91278227856363,-89.91363980339865,-89.91554888438233,-89.91699565054415,-89.91810742339536,-89.91876374286642,-89.91971457472167,-89.92066543645892,-89.92222048650906,-89.92282725885032,-89.92381200167736,-89.92464183571917,-89.92544445331774,-89.92581843505587,-89.92603154363341,-89.92613774931193,-89.92616384045566,-89.92594221958736,-89.92559345419572,-89.92480233339487,-89.92425282935767,-89.92318072788392,-89.92256440117033,-89.92145231558237,-89.92071547232352,-89.91974437110346,-89.91849863992202,-89.91765485019619,-89.91638263674056,-89.91540503766791,-89.9141394788217,-89.91342967829475,-89.9121305742776,-89.91124656837809,-89.91046965872815,-89.90973284073382,-89.90882167440671,-89.90780309801271,-89.90732031884932,-89.90697138418767,-89.90654178886925,-89.90623279824077,-89.90609812002681,-89.9059499640875,-89.90592233291308,-89.90590798717921,-89.90614082270903,-89.9063811017535,-89.9066213834068,-89.90710245768044,-89.9079115482437,-89.90871454619487,-89.90961149116859,-89.91054879919214,-89.91214228881078,-89.91324711480972,-89.91477411856658,-89.91593942751263,-89.9168904363605,-89.9177208702267,-89.91837709745572,-89.91950864162911,-89.92036559335402,-89.92151697535357,-89.92272166780124,-89.92364523287324,-89.92493610888232,-89.92531010516758,-89.9254163977085,-89.92528118924477,-89.92499868064122,-89.92468979654892,-89.92422005341635,-89.92361636051626,-89.92305310258239,-89.92180633117772,-89.92113609333524,-89.91969521783408,-89.91898492555447,-89.91832826807301,-89.91747069056478,-89.91677390271218,-89.91591643082995,-89.9147106036792,-89.91350499054957,-89.91264765582498,-89.91195107167921,-89.9113079796613,-89.91051747527762,-89.90986090126137,-89.90921763425271,-89.90830603024388,-89.9075682002083,-89.90708460185368,-89.90688281006166,-89.9068151833937,-89.90685511437546,-89.90693252401466,-89.90713210291833,-89.90747608101775,-89.90814496387492,-89.9086668777487,-89.90916211781465,-89.90965712907696,-89.90999124336898,-89.90998828984925,-89.9098476999649,-89.90965488891045,-89.90923872971062,-89.90859464582385,-89.90796415852374,-89.90711920261015,-89.90648893908595,-89.90551030382854,-89.90455886919054,-89.90336680982062,-89.90252983407227,-89.90199440292403,-89.9014590232641,-89.90038770720912,-89.89975800349329,-89.89840453364982,-89.89735882957712,-89.89641348180928,-89.8957694954524,-89.89533998367362,-89.89501751841156,-89.89473510017041,-89.89459488090253,-89.89466654693835,-89.89497332370738,-89.89570872885335,-89.89632435129336,-89.89718137205044,-89.89825287377097,-89.8990163169197,-89.89963232546501,-89.9004351956581,-89.90107710671759,-89.90208616128348,-89.90256711134002,-89.90308787895219,-89.90334109476603,-89.90342023956445,-89.90347259428961,-89.90333674030639,-89.90321497824735,-89.90293147434947,-89.90274260196055,-89.90258042348255,-89.90249769979482],"lat":[44.24796058032422,44.24944132194388,44.24935212885782,44.24934146435981,44.24941797744272,44.24926020033513,44.24918027273036,44.24905531794778,44.24894768906087,44.24890039900276,44.24892963325976,44.24886236499956,44.2488976356554,44.24891961303283,44.24894675756748,44.24899356317775,44.2490455467978,44.24902858819268,44.24905552829549,44.24911404469584,44.2491565627303,44.24916159590413,44.24914471264169,44.24909458555109,44.2490240770053,44.24901932105588,44.24899323945016,44.24889522665491,44.24885167011152,44.24876630550021,44.24874610466057,44.22747217550507,44.21305826676058,44.19854165828323,44.18404822326872,44.16956662096725,44.15511218135964,44.14060818271015,44.12610959788544,44.11161595068894,44.0975150356859,44.06840122201152,44.05391043552562,44.03931523029567,44.024736226198,44.01036022645523,43.99582402446128,43.98139935570669,43.96686511926514,43.9523911450388,43.93788422694664,43.90907257888276,43.89450482281894,43.89108380910906,43.87673024260273,43.86220599520895,43.84777780541992,43.83337771654388,43.81886209491397,43.80384303782895,43.78938712291612,43.77498649173297,43.76046026044098,43.74600163973769,43.73149651770613,43.7133733738876,43.69885283020114,43.66991801504625,43.64104192689968,43.64130151798764,43.64149323893088,43.64163297972348,43.64161614531146,43.64168406806354,43.64183843353508,43.64211134061831,43.64197506994864,43.64188294200162,43.64188900714431,43.64179486972733,43.64178024503553,43.64174893230723,43.64167238954822,43.64149930776543,43.64144061319973,43.64122900131095,43.64114577999612,43.6411705878084,43.64116219469303,43.64117970838038,43.64109908118214,43.6410291332044,43.64093652873563,43.64095342723817,43.64101482294735,43.64101772866643,43.64134247555607,43.64158933256856,43.64173203865802,43.64189948255007,43.64207394527859,43.64256457503048,43.64333140716106,43.64415809632312,43.64484313529082,43.64552432360633,43.64607455084146,43.64657520910394,43.64708250813418,43.64755084777777,43.6481286561393,43.64856228633018,43.64920032611671,43.64963009599099,43.6498582229948,43.6501917873283,43.6503847455778,43.65062860473078,43.65114746753005,43.65171592426006,43.65217135680997,43.65278238510358,43.65345737423158,43.65399084018577,43.65459434362059,43.65511982695914,43.65562084755679,43.65633753947473,43.65793729694904,43.65875660772485,43.65932164508531,43.65978420209932,43.66043381480283,43.66113611943095,43.66183109519046,43.6625567159004,43.66291509659491,43.6637788862962,43.66508825963115,43.66571644297298,43.66658095507654,43.66671999675621,43.66704788606631,43.66722223049354,43.66757335499039,43.66807534185704,43.66844318703951,43.66907994761672,43.66940896370722,43.67011675749682,43.6705591745296,43.67086712224903,43.67126016411058,43.67157910617277,43.67177104238005,43.67192103379637,43.67210354950871,43.67220025462782,43.67234333821771,43.67268367654604,43.67338092239535,43.67367489730948,43.67388466004459,43.67408697653985,43.67452289740046,43.67490533426128,43.67525574579756,43.67600928790454,43.67635603713946,43.67679457420412,43.67729665144007,43.67775253053582,43.6783992249518,43.67928966111364,43.67996442454901,43.68132460158161,43.68188632055932,43.6824161815117,43.68349705315693,43.68450712445737,43.68506868939946,43.6855067428823,43.68579557700188,43.6862028930314,43.68705093551375,43.68773301180281,43.68835844474133,43.68881079453,43.68951747420739,43.69016773116387,43.69067659812639,43.69143625272211,43.69194497458156,43.69239358091188,43.69319536675964,43.69413842494534,43.69502872399068,43.69612041629978,43.6971625776058,43.69744426456542,43.69764925146245,43.69829300975262,43.69900281608981,43.69983964131734,43.7005211451858,43.70134721567718,43.70186265113114,43.70297816719583,43.70343006264934,43.70428431120479,43.70497981370692,43.70596137408162,43.70662179997721,43.70716224644184,43.70770970119321,43.70832794420097,43.70871316394991,43.70922556189732,43.71013034686883,43.71090034331142,43.71134875083526,43.71186420078315,43.71273967259065,43.713773758823,43.71491733819154,43.71579975801774,43.71631511260235,43.71673542802181,43.71701265254056,43.71749837027876,43.71813088737642,43.71859013437759,43.71953353850391,43.71996450336167,43.7208866640256,43.72192523040022,43.72237389563751,43.72280134115039,43.72391037812234,43.72439778679995,43.72485334176579,43.72592679625684,43.7268304280327,43.72748698725265,43.72851069096033,43.72937569574296,43.73032203273198,43.73110245007683,43.73158630267854,43.73218661865217,43.73306948174628,43.73357099834654,43.73411835808304,43.73502945431164,43.73595108003986,43.73640998109094,43.73708416080042,43.73822767394791,43.73869004630681,43.73930768915036,43.74003124063293,43.74143950263049,43.7423359631633,43.74316541464506,43.7439489553199,43.74468655731956,43.74544538208804,43.74605944178438,43.74693117594839,43.74818051863299,43.74923223244627,43.7500650838365,43.75119089230508,43.75262036759698,43.75308282025362,43.75389826185165,43.75458297996439,43.75520038583554,43.75591737964063,43.75643497592305,43.75669551956507,43.75709839930815,43.75751517066937,43.75777645690252,43.75819004101611,43.75880168148991,43.7591305243236,43.75974560355176,43.76034273303976,43.76086193104211,43.76129998308645,43.76186191449418,43.76251577692318,43.76303159198325,43.7638047358669,43.76548134718917,43.76649433469312,43.76757123313084,43.76784626857084,43.76848555311679,43.76907809460432,43.76936524672058,43.76954984185368,43.76979664610415,43.77011892415783,43.77060740718049,43.77102130402312,43.77173548419284,43.77218078760351,43.77309951416692,43.7736258780219,43.77959374074911,43.77990155694643,43.77998639988866,43.78047439473667,43.78088439192612,43.78128016949449,43.78181008428695,43.78227256062018,43.7828409498976,43.78325781552628,43.78378787020801,43.78420506396368,43.78457277610034,43.78484867657694,43.78547497746352,43.78576504506587,43.7862776680143,43.78669822234205,43.78716458127885,43.78770163822152,43.7881503743339,43.78849330212561,43.78899169673618,43.78985646106961,43.79010265456149,43.79028741274418,43.79057543188575,43.79077370458619,43.7908697032649,43.79100466236027,43.79120999430071,43.79144006550004,43.79201651867832,43.79245827202148,43.79286451502198,43.79321435986143,43.7936348669108,43.7940059922437,43.79447954711051,43.79488595821874,43.79524641022311,43.79570209859232,43.79608711312252,43.79690291320424,43.79739734894542,43.79795540029316,43.79852063890504,43.79905065941083,43.79937226175624,43.79982093068685,43.80031906801523,43.80102909482748,43.80142112976893,43.80179673197343,43.80219467171352,43.80307436100809,43.80345584297101,43.80393618490408,43.80479431105145,43.80525335181532,43.8057122686926,43.80636523390753,43.80684878826687,43.80775955200232,43.80869852717802,43.80929512104407,43.80979290816293,43.81064022722889,43.81123718493756,43.81213440989731,43.81308463452305,43.81388998933135,43.81418540780102,43.81435980104126,43.81450128235799,43.81468297728809,43.81467274957375,43.81470361452606,43.81471349764275,43.81481663898251,43.81496052515224,43.81592157109581,43.81618316212208,43.81657879818273,43.81700604257315,43.81748988898323,43.81803037111651,43.81874040941734,43.81927020336081,43.81983531518654,43.82030848903364,43.82099345202281,43.82172066202319,43.82258897909722,43.82337247018584,43.82385945253101,43.82479088822689,43.82532010684967,43.82593754440384,43.8265480148207,43.82713422439007,43.82777277060831,43.82842578386234,43.82904365751135,43.82967562043618,43.83039228131985,43.8310135875946,43.83149016895518,43.83240438722628,43.83296558961423,43.8336431864436,43.83393854493018,43.8344233148905,43.83676065642173,43.83894275486825,43.84132267367694,43.84175007610575,43.84199321066993,43.84223053474383,43.84253438536074,43.84277476193189,43.84301522472784,43.84326267332774,43.84358792922743,43.84394137292756,43.84446421063036,43.84533289570886,43.84569671049686,43.84616645357529,43.84650900253543,43.84761089564588,43.84794646774152,43.84842668172068,43.8491433263788,43.84962698302336,43.85041063567668,43.85104259336371,43.85149825857585,43.8517774078018,43.8520036847605,43.85223340444499,43.85242426664654,43.85277071373719,43.85300740998288,43.85325471747402,43.85384441062739,43.85440227759638,43.85473419484299,43.85512968034522,43.85545111577152,43.85571952899262,43.85604443235848,43.85679661572853,43.85758039864982,43.85807823910056,43.85832220122848,43.85854799840933,43.85877055453294,43.85915203784814,43.85942395536596,43.85992530476642,43.86030657640928,43.86078667298409,43.86140080567776,43.86206427580085,43.86270314425824,43.86292777553348,43.86309172843161,43.86319389332201,43.86369168955679,43.86413999174077,43.86461653085151,43.86503301625172,43.86567180288824,43.86639872959657,43.86687858323567,43.86738309069371,43.8679899147564,43.86873436126792,43.86930949265317,43.86997637687525,43.87078441480654,43.87133491148615,43.87194544503863,43.87257707183131,43.87358622328087,43.87465532176149,43.87586199628538,43.87616465246964,43.87643718174759,43.87676894029725,43.87722071597907,43.87769372180597,43.87805733900748,43.8784421903882,43.87883759553537,43.87933888887393,43.87990369582452,43.88075086307321,43.88137564688844,43.88193327852314,43.88259675936053,43.88388842645015,43.8846471951796,43.88558599053432,43.886087153035,43.88666240237446,43.88727647582787,43.88799291373378,43.88867055952232,43.88918231102469,43.88990230403609,43.89040701418629,43.89117997237788,43.89195647754928,43.89236237747127,43.89320946937445,43.89366128243015,43.89403895464369,43.89440251914072,43.89489961993009,43.89515463226834,43.89534493818107,43.89605432380582,43.89664015178656,43.89729299532879,43.89793171881313,43.89839048515994,43.89920567836261,43.90050788491209,43.90108314883566,43.90159842576458,43.90219135644167,43.90332781459711,43.9034217158225,43.903703393186,43.90390311540552,43.90460471251741,43.90513218745532,43.90559353180602,43.90606288999861,43.9065287296232,43.90716044820296,43.90811333797048,43.9088615081286,43.90960965086855,43.91011429281789,43.91058716568387,43.91161760244868,43.91216811047098,43.91289151625138,43.91308192824433,43.91327051201613,43.91359369977466,43.91384288300807,43.9141194275453,43.91453576322753,43.91518496465547,43.91570713714,43.91632452588883,43.91699129091892,43.91745694919324,43.91777795075796,43.91817300739482,43.91915704469338,43.91959436156571,43.92001401774002,43.92034552210406,43.92073704245106,43.92126266553336,43.92174595396887,43.92185883102989,43.92198446631189,43.92203512049068,43.92222184494056,43.92223221901386,43.9221823394445,43.92197706211263,43.92183314923575,43.92156657053864,43.92088714554384,43.92047064918162,43.91976818853028,43.91915386775774,43.91881488318542,43.91849001100702,43.91802734476108,43.91784359095806,43.91773387760735,43.91775124307507,43.91793796070514,43.91802659442521,43.918138983,43.91832223287953,43.91870651231877,43.91920021418985,43.9199055349475,43.92027582177649,43.92080140127479,43.92087685426161,43.92116133846474,43.92156344931507,43.92231501449577,43.92280197489468,43.92448176966462,43.92525819165336,43.92603820106992,43.92680414307224,43.92707785783903,43.92732279657725,43.92786318186985,43.92884457138326,43.92938470520036,43.9298648262505,43.93084614371655,43.93103661138725,43.93153963572193,43.93202145783106,43.93281554901213,43.93369782868586,43.93424477600793,43.93489756634052,43.93563494806747,43.93619587407944,43.93634050373485,43.93649261087764,43.93657811895947,43.93692477235415,43.93720880462957,43.93746873490344,43.93765633572762,43.93784912886137,43.93809282693688,43.93834997623017,43.93854593618992,43.93897616831054,43.93924720406368,43.93953492724204,43.94005519425746,43.94074890360346,43.94126439480804,43.94182807535282,43.94237732019185,43.94305665165018,43.94367334322204,43.94431893047019,43.94499825866661,43.94552825945679,43.9461112599764,43.94667499509715,43.94717132746814,43.94798089741906,43.94853509509848,43.9493928922732,43.95475635192242,43.9572332277057,43.95775371201083,43.95858266539758,43.95908867602654,43.95968630137052,43.96015858724932,43.96074172214654,43.96157546335913,43.96201884591948,43.96340196890129,43.96393208892903,43.96487186610037,43.96535866720843,43.9658598712419,43.96647192094651,43.96692491414349,43.9673972270694,43.96809594148535,43.96874152535669,43.96931481563461,43.97010480789371,43.97065396557959,43.9712609472436,43.97189683186944,43.97272061974081,43.97355410696915,43.97437316539191,43.97514402884855,43.97578963430357,43.97657018064786,43.97723996190312,43.97883501538923,43.9794277015863,43.98031915484768,43.98116247397578,43.98166846617567,43.98217930553463,43.98274322989411,43.98301187163682,43.98317740077799,43.9834005121279,43.98379880476207,43.98425674649837,43.98469540307073,43.98526424988668,43.98561131538142,43.9859583822311,43.98610678382223,43.98626509724847,43.98645473602622,43.98655285416815,43.98684960576681,43.9869554528976,43.98714961037895,43.98755271817342,43.98836678282619,43.98887747511266,43.98953276478895,43.9899406208582,43.99024281530811,43.99059771316337,43.99111337441202,43.99174953391231,43.99245316094792,43.99334957286894,43.99384120616764,43.99422685966175,43.99447278891635,43.99458860251035,43.99498421189008,43.99518675246168,43.99543749524663,43.99569785507904,43.99631004327266,43.99663299878844,43.99702824440335,43.99743315607759,43.99774654126451,43.99783337428616,43.9980021583459,43.99816130943858,43.9984167859352,43.99894210335503,43.9994577014598,43.99987212010619,44.00031544736664,44.00141423420682,44.00181905699953,44.00209856070173,44.00259011926203,44.00292265308882,44.00322143335217,44.00370333956189,44.00398765568651,44.00432979275919,44.00456107940949,44.00529827888654,44.0054572667599,44.00570297778072,44.00591496778775,44.00614621432353,44.00669543725565,44.007153122814,44.00767826700761,44.00850696200501,44.00903694423602,44.0101065704049,44.01097866953868,44.01149903748566,44.01201459148023,44.01252532740695,44.01321916921229,44.01376364488528,44.01429366636473,44.01461650109897,44.01519952523202,44.01576326234292,44.01661126445835,44.01703044186525,44.0176134294927,44.01810006066794,44.01912149528821,44.01942426587298,44.01999839128172,44.02103429002945,44.02144224088924,44.02173001287347,44.02203936153629,44.02295191157185,44.0236168195606,44.02406972781468,44.02465754022709,44.02536098273382,44.02610296558175,44.02674859032518,44.02766402799821,44.03039105026896,44.03094995312895,44.03165339283979,44.03363843583614,44.0343418696171,44.03505492281175,44.03555597263539,44.03583539502387,44.03621115439508,44.0364134627449,44.03675067384689,44.03869693906788,44.04069133715507,44.04113450327367,44.0415584168103,44.04205943925047,44.0426471806294,44.0436010980663,44.04445866428358,44.04495971612501,44.04563420476304,44.04703136673726,44.0476962393528,44.04816842451477,44.04893934434291,44.04982589815191,44.05059681534063,44.05116535700915,44.05193625477224,44.05277458063664,44.05331416307644,44.05461491958397,44.05516409921695,44.05575183066968,44.05632995567409,44.05681175395375,44.05745738257009,44.05822832978565,44.0592691438701,44.0600208436902,44.06061829985551,44.06110974616156,44.06190948736148,44.06330657983882,44.06441458027817,44.06495410472277,44.06588853297247,44.06637982888611,44.06713122724411,44.06802722706055,44.06871134907858,44.06956896992769,44.07021460742479,44.07131316557884,44.07190099404427,44.07245990320617,44.0733849958961,44.07436790436437,44.07561097933048,44.07773085776353,44.0790220288398,44.08012049188522,44.0812864035191,44.08328095734401,44.08437938804084,44.08512131919989,44.08625828625752,44.08674005681686,44.08764579184405,44.08840701043538,44.08922607244331,44.09001621905881,44.09068114234341,44.09130754611422,44.09218455620412,44.0926193267449,44.09312761485804,44.09406391560745,44.09476748684761,44.09516267215515,44.09582773695489,44.0963674795679,44.09715778248938,44.09783241711176,44.09852629536547,44.09951892180419,44.10020316546327,44.10067544139046,44.10108991086126,44.10157189170632,44.10183217037592,44.1020443145075,44.10213114350087,44.10213125335716,44.10204463159358,44.10148601802578,44.10107185791596,44.10099483679129,44.10097565822051,44.10130338107227,44.10173706473234,44.1021225551176,44.10258513190685,44.10298987562871,44.10376078883273,44.10431006156115,44.10531220824481,44.10605416841676,44.10645886359642,44.10776931933069,44.10834744604152,44.10900264551181,44.11008181590248,44.11062139974318,44.11129588375929,44.11198000911853,44.11299175253848,44.11402279363535,44.11463948779329,44.11537181565631,44.11607523766374,44.11671121821976,44.11719303177637,44.11857100666595,44.11937082884113,44.12004539726708,44.12052724912754,44.12091274200181,44.12128860829558,44.12153919766837,44.12171270580651,44.12179954986877,44.12178997283439,44.12184784117714,44.12196351800239,44.1221466258662,44.12237791392885,44.12272482320448,44.12307172512634,44.12364025293567,44.12461348093978,44.1255385223904,44.12680080575871,44.12715732193012,44.12742709524694,44.12761014408767,44.12771609987846,44.12747510799368,44.12705106747498,44.12638610605249,44.12581753236417,44.12539352037023,44.12476714134711,44.12417930259569,44.12338907075205,44.1228300947503,44.12244457773502,44.12211687525305,44.12164452709135,44.12137453167322,44.12123947976657,44.12116223848387,44.12120065475396,44.12136435420057,44.12182666814534,44.12230832197243,44.12273219981769,44.12311754557191,44.12401353453991,44.1248035938142,44.12534318808476,44.12597918018595,44.12664411167965,44.12732845456529,44.12761763993021,44.12812854334224,44.1283117406879,44.12851421842812,44.12861069647307,44.12866877027962,44.12872676326889,44.12895828602264,44.12930532501822,44.12971012126445,44.13079909816901,44.13158926888121,44.13240832036252,44.13285155043591,44.13327546512335,44.13340057902874,44.13336188889087,44.13325573541435,44.13318815432604,44.13307217914629,44.1330238658327,44.13307186289817,44.1331776875421,44.13333173569755,44.13376518851678,44.13426615529924,44.13523930113482,44.13583669690252,44.13697370647642,44.13816853010501,44.13869848675484,44.13941154030572,44.14046186948585,44.14106892580118,44.14164708568121,44.14266849766411,44.14326592260431,44.14391154507676,44.14472090948689,44.1456554670992,44.14625279501523,44.14672487352968,44.1471777153369,44.14762092492303,44.14815089323923,44.14862303626816,44.14919159868588,44.15005890595028,44.15086837683189,44.15146582046702,44.15199579604343,44.1528822625767,44.15351818859929,44.15419264099098,44.15496343408157,44.15548373861436,44.15596553484772,44.15689058398132,44.15755547907422,44.15820109162036,44.15916471851811,44.15998381176593,44.16110162607001,44.16175689222096,44.16229654302724,44.16334690878213,44.16463819405663,44.16518746771206,44.16588120346027,44.16631473621259,44.16672897359168,44.16716242112636,44.16747062009371,44.16770171704719,44.16790386277377,44.16797108817044,44.16796117544481,44.16787418300505,44.16748824712502,44.16722782261296,44.16683235381855,44.1664465350696,44.1660993824416,44.16561724636834,44.16524121448506,44.16489404307153,44.16446959729356,44.16426687784106,44.16410245566332,44.16402501921811,44.16401500062814,44.1639856967841,44.1640239161962,44.1641005261701,44.16426391115545,44.16459065131566,44.16473476367187,44.1647728457975,44.16467601791702,44.16454077413051,44.16433799797161,44.16377836335356,44.16309366044785,44.16263080451738,44.16191732314989,44.16103049043111,44.16000892799557,44.15888144642862,44.15827434713347,44.1577732272493,44.15722392565075,44.15616379827951,44.15529636715431,44.15459273428569,44.15402394068845,44.1534035808728,44.15293425373869,44.15245180514721,44.15229724449281,44.1522197382027,44.15219007655306,44.15224741810137,44.15239135998186,44.15289175995989,44.15364280828397,44.15416285245111,44.15466364069864,44.15505847475711,44.1559059622051,44.15693667629484,44.15768803959566,44.15941231519822,44.16017334746378,44.16093435264128,44.16174364393595,44.1625047764047,44.16325633172792,44.16395014444864,44.16502935836182,44.16711083851974,44.16767935329874,44.16819012482803,44.16993461847296,44.17111053718212,44.1724888941804,44.17313476298607,44.17414701035275,44.17484098784468,44.17553486360001,44.17610336045831,44.17659464723118,44.17725919145328,44.17797185553516,44.17847253169472,44.17886713978675,44.17913613325886,44.17914525458031,44.17898067431294,44.17844930378901,44.17790857784726,44.17752233136849,44.17710703823623,44.1768460334754,44.17662380990392,44.17643012286604,44.17633299871305,44.17628413645214,44.17626377377639,44.17634986563904,44.17661896890151,44.17705189209851,44.1774753937182,44.17802418531378,44.17883307800592,44.17965166655884,44.18033552518568,44.18110613835561,44.18200196267922,44.18269554619009,44.18321575002219,44.18387086888522,44.18477657346986,44.18527763245248,44.18580764301943,44.18674248578525,44.18787022053402,44.18889210253927,44.18964414463013,44.190299802446,44.19074353445473,44.19119707217187,44.19158312254024,44.19186323037577,44.19206625582453,44.19220198216889,44.1920781645208,44.19204063121978,44.19194478183712,44.19171439481929,44.19144523881995,44.19100340880445,44.19073466347186,44.19059092376354,44.19052394412309,44.19054388687157,44.19054455115152,44.19067336796829,44.19082136897186,44.1910477619257,44.19144338947749,44.19218588294017,44.19299554863748,44.19394001019259,44.19469168435534,44.19525058942501,44.19575151454426,44.19617526936032,44.19687817525604,44.19715725653464,44.19760943388889,44.19776318949355,44.1980515098133,44.19817627093523,44.19819486279241,44.19825179493717,44.19822228341394,44.19805754626624,44.19794119594285,44.19781498469967,44.19775663250974,44.1976785560405,44.19767787267777,44.19771580998989,44.19781158778787,44.19805176188177,44.19845565510298,44.19883106750004,44.19926440522744,44.19988075518393,44.20045865960526,44.20092107114605,44.20143165321291,44.201961610974,44.20255903014117,44.20355172038359,44.20408189481861,44.2046120711328,44.20535443089279,44.20622232336095,44.20671439834897,44.2071005511272,44.20738072722548,44.20782521978357,44.20807659542778,44.20820301168313,44.20832914438449,44.20842620068189,44.20853279510817,44.2086778056596,44.20901586865781,44.20933445518563,44.20988449681329,44.21066583083735,44.21130242416094,44.21283539161303,44.21373177875942,44.21443527176022,44.21540840956659,44.2163140037255,44.21688232123068,44.21750834513636,44.21809573233689,44.21849042960415,44.21900992002577,44.21923108560891,44.21959624764798,44.21970174226893,44.21977836146672,44.21980665207671,44.21983505897298,44.21978624879178,44.21972754103565,44.21952427997715,44.21938872274177,44.2192821918369,44.21924315097831,44.21922326160534,44.2192420183372,44.21931859877609,44.21962621719471,44.22019414175085,44.22097425833429,44.22148479921213,44.22194376544317,44.22240440961505,44.22274142016204,44.22305811669803,44.22340283074673,44.22411642568152,44.22456009635485,44.22492665670416,44.22544738808824,44.22603544086277,44.22630487231961,44.22665007096693,44.22691204543326,44.22739351088299,44.22794224285132,44.22835608166536,44.2287986502895,44.22905830718886,44.2292791278369,44.22924942759831,44.22885335276774,44.22849611109792,44.22812948775373,44.22773395746304,44.22728977879698,44.22721213644662,44.22721094077892,44.22747017776501,44.22780658043813,44.22822997372102,44.22861501671213,44.22908688139029,44.22964550631508,44.22993184217736,44.23051267134067,44.23133200639293,44.23228663416663,44.23277862583031,44.2331841062103,44.23357050336677,44.23385062024609,44.23414024386322,44.23489254412635,44.23573142479145,44.23744748058925,44.23839221264858,44.2395875062277,44.2404742203058,44.24125479639329,44.24202570718982,44.24313371928885,44.24381776266813,44.24504128324963,44.2457734454298,44.24657308604695,44.24796058032422]}]],[[{"lng":[-89.87813696676984,-89.89836665670592,-89.90048547976981,-89.902399786834,-89.90249769979482,-89.90258042348255,-89.90274260196055,-89.90293147434947,-89.90321497824735,-89.90333674030639,-89.90347259428961,-89.90342023956445,-89.90334109476603,-89.90308787895219,-89.90256711134002,-89.90208616128348,-89.90107710671759,-89.9004351956581,-89.89963232546501,-89.8990163169197,-89.89825287377097,-89.89718137205044,-89.89632435129336,-89.89570872885335,-89.89497332370738,-89.89466654693835,-89.89459488090253,-89.89473510017041,-89.89501751841156,-89.89533998367362,-89.8957694954524,-89.89641348180928,-89.89735882957712,-89.89840453364982,-89.89975800349329,-89.90038770720912,-89.9014590232641,-89.90199440292403,-89.90252983407227,-89.90336680982062,-89.90455886919054,-89.90551030382854,-89.90648893908595,-89.90711920261015,-89.90796415852374,-89.90859464582385,-89.90923872971062,-89.90965488891045,-89.9098476999649,-89.90998828984925,-89.90999124336898,-89.90965712907696,-89.90916211781465,-89.9086668777487,-89.90814496387492,-89.90747608101775,-89.90713210291833,-89.90693252401466,-89.90685511437546,-89.9068151833937,-89.90688281006166,-89.90708460185368,-89.9075682002083,-89.90830603024388,-89.90921763425271,-89.90986090126137,-89.91051747527762,-89.9113079796613,-89.91195107167921,-89.91264765582498,-89.91350499054957,-89.9147106036792,-89.91591643082995,-89.91677390271218,-89.91747069056478,-89.91832826807301,-89.91898492555447,-89.91969521783408,-89.92113609333524,-89.92180633117772,-89.92305310258239,-89.92361636051626,-89.92422005341635,-89.92468979654892,-89.92499868064122,-89.92528118924477,-89.9254163977085,-89.92531010516758,-89.92493610888232,-89.92364523287324,-89.92272166780124,-89.92151697535357,-89.92036559335402,-89.91950864162911,-89.91837709745572,-89.9177208702267,-89.9168904363605,-89.91593942751263,-89.91477411856658,-89.91324711480972,-89.91214228881078,-89.91054879919214,-89.90961149116859,-89.90871454619487,-89.9079115482437,-89.90710245768044,-89.9066213834068,-89.9063811017535,-89.90614082270903,-89.90590798717921,-89.90592233291308,-89.9059499640875,-89.90609812002681,-89.90623279824077,-89.90654178886925,-89.90697138418767,-89.90732031884932,-89.90780309801271,-89.90882167440671,-89.90973284073382,-89.91046965872815,-89.91124656837809,-89.9121305742776,-89.91342967829475,-89.9141394788217,-89.91540503766791,-89.91638263674056,-89.91765485019619,-89.91849863992202,-89.91974437110346,-89.92071547232352,-89.92145231558237,-89.92256440117033,-89.92318072788392,-89.92425282935767,-89.92480233339487,-89.92559345419572,-89.92594221958736,-89.92616384045566,-89.92613774931193,-89.92603154363341,-89.92581843505587,-89.92544445331774,-89.92464183571917,-89.92381200167736,-89.92282725885032,-89.92222048650906,-89.92066543645892,-89.91971457472167,-89.91876374286642,-89.91810742339536,-89.91699565054415,-89.91554888438233,-89.91363980339865,-89.91278227856363,-89.91164355953438,-89.91098717193429,-89.90970141195605,-89.90788650053652,-89.90686886415438,-89.90605222772409,-89.90524911295076,-89.90451314173104,-89.90373711203532,-89.90317535491276,-89.90268761550416,-89.90217995458178,-89.90163258005329,-89.9012527948384,-89.9010802686529,-89.90104098249735,-89.90105521256291,-89.9011437680182,-89.9012921589843,-89.90145371662655,-89.90169590026493,-89.90207231337719,-89.90238156120029,-89.90273083030107,-89.9032811525295,-89.90391178561727,-89.90446164408228,-89.90503807138735,-89.90588228843028,-89.90673962143576,-89.90751633066624,-89.90887530026104,-89.90973213227645,-89.91070939726578,-89.91195430433166,-89.91273055485053,-89.91382809756593,-89.91508610035888,-89.91618348859335,-89.91770914371877,-89.91966331019155,-89.92076105221756,-89.92151089624723,-89.92270294102755,-89.92339971999607,-89.9239895075649,-89.92459294549585,-89.92510927819495,-89.9253375135317,-89.92537840177478,-89.92524538678832,-89.92496509886894,-89.92425679504585,-89.92386935925998,-89.92325528379253,-89.92277485033432,-89.92222155298434,-89.92212851175385,-89.92214264753896,-89.9219914389691,-89.9220196320172,-89.92199377539458,-89.92207508396872,-89.92223671353806,-89.92243856308704,-89.92278758034814,-89.92310982321187,-89.9239620052294,-89.92433774500797,-89.92484767674354,-89.92559158409004,-89.92596684072883,-89.92640914534633,-89.92687823332366,-89.9277624979475,-89.92883380866797,-89.92979761112218,-89.93058062744902,-89.93182527796154,-89.93253452970845,-89.93319015834248,-89.93430047813074,-89.93507963307749,-89.93573137062377,-89.93621258671061,-89.9365732114769,-89.93692028160424,-89.93721361868175,-89.93730672956525,-89.93738651064552,-89.93743940917653,-89.93756537945789,-89.93783201713683,-89.93842006547283,-89.93919571548294,-89.93981100524806,-89.94085444456198,-89.94231300740555,-89.94315615994654,-89.94383874394204,-89.94480248544137,-89.94576635622909,-89.94667677125894,-89.94859802298416,-89.94956198642976,-89.95065973671726,-89.95140940762332,-89.95235981661153,-89.95328347168544,-89.95414014079964,-89.95567945686594,-89.95662974543124,-89.95786100310616,-89.95861041007352,-89.95925270766858,-89.96020284482205,-89.96093889310036,-89.96206314946296,-89.96325435128919,-89.96405742051657,-89.96567035328707,-89.96656725048157,-89.96753112948936,-89.96834779177486,-89.96911097143446,-89.96972690105609,-89.9703160904804,-89.97098565933476,-89.97142094029373,-89.97178259357416,-89.97201049583961,-89.97193043523221,-89.97169678699254,-89.97152327065758,-89.97140305815257,-89.97132306252286,-89.97118974755968,-89.97106967932395,-89.97096306776824,-89.97097676921625,-89.97093693852779,-89.97097754852609,-89.97099786079663,-89.97115872748722,-89.97152047382298,-89.97178848089754,-89.9720029251833,-89.97220410050342,-89.97223111616563,-89.97219124462731,-89.97200425985942,-89.97175039129418,-89.97161683175614,-89.97169735681253,-89.97176452301055,-89.97195209170573,-89.97216642268074,-89.97254135265196,-89.97298324380806,-89.97357247864294,-89.9738404756429,-89.97382738082098,-89.97386778918181,-89.97390169325669,-89.97392870848243,-89.97398249951908,-89.97399634317711,-89.97406355900877,-89.9741708346485,-89.97438543932897,-89.97460001224978,-89.97477420566143,-89.9752094590883,-89.9757314702379,-89.97654779744076,-89.97716331265053,-89.97804639523308,-89.97902311001246,-89.97975895981774,-89.98179928063769,-89.98262878787817,-89.98367235619011,-89.98472932248866,-89.98593350823784,-89.98656243559961,-89.98680336344714,-89.98693733723226,-89.98680372177358,-89.9859744884012,-89.98533241493401,-89.9842756005494,-89.98249632951631,-89.98139931660231,-89.97986081946024,-89.97921869155495,-89.97856322160183,-89.97796126423347,-89.97699822689455,-89.97648996968567,-89.97563405078765,-89.97543365938166,-89.97538040933483,-89.9755144095265,-89.97598294339123,-89.97678593585702,-89.97728103895055,-89.97783634473093,-89.97862576002311,-89.97982983741251,-89.98047197625813,-89.98123445952393,-89.98221093791383,-89.98317402663186,-89.98447818637226,-89.98586926436666,-89.9864845290663,-89.98712654366381,-89.98787554525506,-89.9885843872287,-89.98895884548782,-89.98931992582041,-89.98960078131132,-89.99010904291194,-89.99095174852592,-89.99166072343891,-89.9929717523414,-89.99374770159496,-89.99440324868952,-89.99517920154838,-89.99570097418562,-89.99696525749196,-89.99808901632227,-89.99927962323136,-90.0000889470937,-90.00066416222437,-90.00180120179614,-90.00275095633894,-90.00362044737253,-90.00477085121673,-90.00591456585565,-90.00693121085014,-90.00867018902433,-90.00941926662699,-90.01002117929131,-90.01066319748142,-90.01118481235811,-90.01165958794191,-90.01207412045098,-90.01230135098892,-90.01246825953208,-90.01252166489431,-90.012494777965,-90.01237425109434,-90.01225372111189,-90.01210646943976,-90.01186550794095,-90.01142394040325,-90.01102257599982,-90.01055434969405,-90.01015302504371,-90.00927015861727,-90.00858799103429,-90.00799946566569,-90.00717013577585,-90.00680900763633,-90.00650133993835,-90.00635412658256,-90.00652791698528,-90.0069891836708,-90.00737694148124,-90.00803213292056,-90.00864720703112,-90.00939599124094,-90.01047239612895,-90.01143519869562,-90.01211719253998,-90.01380218711498,-90.01597533086128,-90.01669746571719,-90.01743294869785,-90.01810154358418,-90.01902417316001,-90.01962584208492,-90.02061522586244,-90.02125694450869,-90.02182508449607,-90.0222393591898,-90.02277385105789,-90.02314798695932,-90.02366251813437,-90.02433075940739,-90.02487874944855,-90.02566735027304,-90.02611509963073,-90.02670309574522,-90.02746157524747,-90.02779597249607,-90.02801252770522,-90.02850680379871,-90.02872042139191,-90.02882705724255,-90.02875982553635,-90.02873268850598,-90.02858526117257,-90.02833749731141,-90.02817684231636,-90.02778861293118,-90.02756100237589,-90.02717281473056,-90.02663719154609,-90.02635595119615,-90.02610148576464,-90.02576674657819,-90.02543166281966,-90.02547122698434,-90.02555100303761,-90.02564416452397,-90.02571075077238,-90.02579069028968,-90.02595059574293,-90.02601713860911,-90.02600339645281,-90.02581599106145,-90.02506050505069,-90.0240177661358,-90.02330926169816,-90.0218923048934,-90.02133750066176,-90.02045510109255,-90.01959268368563,-90.01921825090149,-90.01920472726549,-90.01929807405692,-90.01973211812876,-90.020346449852,-90.02062679770791,-90.02063993570907,-90.02059300088209,-90.02032555861908,-90.01988441637826,-90.01938984812008,-90.01859442038064,-90.01832702302922,-90.01817979405214,-90.01817955823782,-90.01822614560527,-90.01834615416703,-90.01847948657387,-90.01864624703195,-90.01868618165477,-90.01853901094252,-90.01798414841656,-90.01767667427946,-90.01748949191294,-90.01711518079111,-90.01664065919022,-90.0161595742547,-90.01573195647985,-90.01514406257326,-90.01434243297341,-90.01173043132238,-90.00894496246171,-90.00817016944602,-90.0073954011533,-90.00650039961478,-90.00595271367506,-90.00524472593806,-90.00463690990043,-90.00432964347459,-90.00370841934316,-90.0036015249899,-90.00349463913065,-90.0023392137963,-90.00191847822865,-90.00150444465066,-90.0009835719451,-90.00030245880681,-89.99965474248086,-89.99902707080687,-89.99846618697183,-89.99814443403893,-89.99807465469708,-89.99802481352808,-89.99798548597583,-89.9979421208193,-89.99804481801576,-89.99818919420241,-89.99867663083383,-89.99907724370487,-89.99970485756683,-90.00019892490923,-90.00152420877565,-90.00241216023541,-90.00347701908376,-90.00408454605571,-90.00481222386638,-90.00536964451396,-90.00597710969195,-90.00625745420597,-90.00649773754334,-90.00670463449585,-90.00691148867026,-90.00688799973541,-90.00674774960329,-90.0062269564763,-90.00562610449754,-90.00484503167924,-90.0035098981915,-90.00278226800899,-90.00220150039996,-90.00124357741613,-90.00050928854476,-89.99783584470205,-89.99712160711817,-89.99560635603432,-89.99454502837244,-89.99283624769909,-89.99199522638905,-89.99093394230258,-89.98966910937349,-89.98906841298128,-89.98808727926207,-89.98591485991422,-89.9854410586735,-89.98500063409051,-89.9845635768415,-89.98358922762228,-89.98279836555723,-89.98181725634664,-89.98090957642984,-89.98026885556791,-89.97910426709723,-89.97812327426226,-89.97731915784364,-89.97662515345633,-89.97527051792864,-89.97446638393822,-89.97357215031305,-89.97283140393615,-89.97071255100701,-89.97002517562548,-89.9692644517277,-89.96852716677635,-89.96787337565266,-89.9670496371692,-89.96644270813739,-89.96587913391652,-89.96548568226301,-89.96525171318062,-89.9651323136508,-89.96503583430835,-89.96497615847385,-89.9650865705827,-89.96575438245692,-89.96631969404197,-89.96661873180436,-89.96689924862888,-89.96758547885274,-89.96766688752155,-89.9676354581585,-89.96750600949568,-89.96737353927929,-89.96682319578059,-89.9662761962613,-89.96526889212043,-89.96460185007972,-89.96391481303789,-89.96342239949144,-89.96313359350678,-89.96294438702877,-89.96266763860434,-89.9620607712218,-89.96171745550728,-89.96146422036691,-89.96105440359548,-89.96078809118013,-89.96063501764544,-89.95993548776737,-89.95978248287759,-89.9597696649011,-89.95985683586181,-89.95997744860487,-89.9600613945548,-89.96022540904679,-89.96057288117761,-89.96089353462875,-89.96121416326527,-89.96155475826318,-89.96211565753417,-89.96233283637811,-89.96248668029209,-89.96224362549745,-89.96185033400096,-89.96159045647885,-89.96118392381764,-89.96083736758143,-89.96037073246595,-89.95969761506416,-89.95935777071621,-89.95850489277423,-89.95821170214029,-89.95766865501679,-89.95730887457434,-89.95703573036924,-89.95658259158559,-89.95631615573075,-89.95572313183145,-89.95541670067487,-89.95457817488011,-89.95256820045363,-89.95218875198715,-89.95193577704198,-89.95166967527368,-89.95153003402262,-89.95151048656349,-89.95151096047007,-89.95151805854579,-89.9516053000729,-89.95171918831882,-89.95180637584576,-89.95188694342137,-89.95195406807926,-89.95207121370868,-89.95221165731111,-89.95247226853532,-89.95271272875803,-89.95286828552722,-89.95307990643894,-89.95329009699087,-89.9535004737948,-89.95374833723302,-89.95411429833396,-89.95438055327435,-89.95472802369915,-89.95536165278313,-89.9559919592571,-89.95665897844039,-89.956808165235,-89.95704636828077,-89.95720284982737,-89.95758902118044,-89.95792647866647,-89.95800995005891,-89.95803474774634,-89.95778389774263,-89.95745486676736,-89.95722380221281,-89.95695862311271,-89.95680385401394,-89.95595742072163,-89.9554157986363,-89.95482052675126,-89.95382523556876,-89.95328972532826,-89.95305186184765,-89.95281783176931,-89.95232531734553,-89.95195976581957,-89.95173092518702,-89.95147353094599,-89.95149833831306,-89.95163808556413,-89.95174733681223,-89.95190320259564,-89.95202193360875,-89.95251298914972,-89.95307957781061,-89.9541370472638,-89.95495268126258,-89.95585853336947,-89.95624470498453,-89.95652857814177,-89.95680586888861,-89.95762612695798,-89.95839256563029,-89.95928584177165,-89.96000821164894,-89.96116487657341,-89.96184079209446,-89.96251914679965,-89.96349269201276,-89.96424895931209,-89.96458068105419,-89.96517762761239,-89.96555652684457,-89.96586402895299,-89.9663399853721,-89.966640112755,-89.96736754527514,-89.96842949096069,-89.96861059150332,-89.9689585564973,-89.96913265600412,-89.96970409865827,-89.97031948923225,-89.97098362181096,-89.97176976602005,-89.97287814398457,-89.97394745882485,-89.97617883672753,-89.97697959264116,-89.97754598985581,-89.97826376640229,-89.97917686441588,-89.97999229270059,-89.98046109007322,-89.98102266808505,-89.98137426030168,-89.9815494382468,-89.98171123831662,-89.98180134629399,-89.98186548090062,-89.98197504370926,-89.98190692400971,-89.98178994239029,-89.9815510789371,-89.98143407955645,-89.98126828429662,-89.98098053946367,-89.98056101973334,-89.97983164888009,-89.9794560401469,-89.97921216221478,-89.97903174208933,-89.97874188921473,-89.97850127605189,-89.97814033400192,-89.97803417206893,-89.97782180997478,-89.97771479573936,-89.97674645706286,-89.97626597046818,-89.9759147885877,-89.97555388010989,-89.97513471836946,-89.97491789326403,-89.97480584392629,-89.97471827048419,-89.97463070826879,-89.974406480205,-89.97394563553898,-89.97373049028256,-89.97351131451433,-89.9729359322094,-89.97251155844199,-89.97212135065728,-89.97158967931774,-89.97086057755222,-89.97049968423342,-89.96982913417729,-89.96925130969038,-89.96888561154245,-89.96843952556179,-89.96815679334651,-89.96773265888372,-89.96739637907818,-89.96716739378802,-89.96696766715382,-89.96670447501194,-89.96622441769928,-89.96594674846418,-89.96549863089139,-89.96526483335288,-89.96498706856616,-89.96438247947394,-89.96355362328867,-89.96292463204655,-89.96230049408094,-89.96175922814591,-89.96112527925651,-89.96066937963533,-89.96024527176806,-89.95993234411398,-89.9598335765064,-89.95979116982922,-89.95985103783431,-89.96033234703329,-89.960691592595,-89.96093371772477,-89.96099998192926,-89.96085891986171,-89.96084220660644,-89.96100126590557,-89.9611577880635,-89.96134107484424,-89.96171957438789,-89.96211016849905,-89.96243972077292,-89.96262536676484,-89.96264289300932,-89.96241161446605,-89.96213874476332,-89.96168545549975,-89.96125897951698,-89.96056185751006,-89.96025291173164,-89.95999823450353,-89.95985254876774,-89.95941403335948,-89.95925353924291,-89.95890768848884,-89.95840081074162,-89.95795970912179,-89.95726265760504,-89.95673126836844,-89.95575860681652,-89.95512965792662,-89.95443890234924,-89.9540546696942,-89.95336254938185,-89.95241951603279,-89.9511156073102,-89.9505209232681,-89.9499993461413,-89.94929494843717,-89.94871009863522,-89.94824223778861,-89.9475526972756,-89.94671446810345,-89.94609294539367,-89.94552749674132,-89.94423313940682,-89.94361402202868,-89.94291204525867,-89.94205403231619,-89.94132041972745,-89.94044801825841,-89.93987081640681,-89.93937423812251,-89.93898464119449,-89.93842462569643,-89.93787413518315,-89.9372674215693,-89.93563272153705,-89.93517963440028,-89.93446096168532,-89.93385188604447,-89.93282650706145,-89.93185196142582,-89.93091867820947,-89.9299244248173,-89.9292201916421,-89.92841112937656,-89.92774834243301,-89.92715633297814,-89.92664686815236,-89.92631833195392,-89.92566798372414,-89.92339906387764,-89.92148594809412,-89.91966092556008,-89.91934224213593,-89.91928904502032,-89.91919490004037,-89.91902991753103,-89.91866799163978,-89.91839809614412,-89.91806747436115,-89.91763705915427,-89.91721141202684,-89.91675407259795,-89.91650395115879,-89.91631001983194,-89.91615227408525,-89.91617506141628,-89.91631727773571,-89.91646180241058,-89.91669461607498,-89.91668554527841,-89.91655747610095,-89.91624432049778,-89.9158724929503,-89.91537145763135,-89.91495055035033,-89.91427878833989,-89.91365572081422,-89.91267228469933,-89.91192742600582,-89.91141398427419,-89.91107834765378,-89.91055747860646,-89.90997549729947,-89.9051677455089,-89.90455980880722,-89.90414154745093,-89.90412154120342,-89.90395186999255,-89.90393771273345,-89.9035619645403,-89.90325934859837,-89.90292019085692,-89.90261023436662,-89.90169782472813,-89.90057126420837,-89.89954210878575,-89.89887551710724,-89.89842132945547,-89.89817365854962,-89.89792615665684,-89.89758179315163,-89.89721546451938,-89.89709935117007,-89.89695429551723,-89.89676505425794,-89.89643938760763,-89.89575629795191,-89.89529912813722,-89.8948929549143,-89.89380066802404,-89.89338979118889,-89.89302248590739,-89.89266751908885,-89.89188924796794,-89.89128600840267,-89.89075333380701,-89.8902520981856,-89.88953201644847,-89.88888752939388,-89.88837945022932,-89.88797113563848,-89.88732227842642,-89.88694300552689,-89.88646887281614,-89.88595802682909,-89.88536202341326,-89.88467603186865,-89.88408241156563,-89.88351569071459,-89.88303895919877,-89.88262324192677,-89.88199081621266,-89.88078628096432,-89.88011935984117,-89.87949136243732,-89.87867568147441,-89.87799875773425,-89.87738537378468,-89.87684664043992,-89.87646530663613,-89.87609823543939,-89.87478739055406,-89.87403339951966,-89.8734617599154,-89.8729463738119,-89.87234106159259,-89.87184521148865,-89.87129568974166,-89.87046142235373,-89.86984344318012,-89.86836162418855,-89.86779721211286,-89.86718186351426,-89.86650574894192,-89.86588103775534,-89.86548744400498,-89.86528171528259,-89.86511228035575,-89.86461424062691,-89.86415243258291,-89.86360786064624,-89.86275907224251,-89.8625207327939,-89.86196609172245,-89.85860006656692,-89.85814353513531,-89.85715712882163,-89.85662251164075,-89.85555043843269,-89.85474306359309,-89.8535682218545,-89.85266812291506,-89.85218512897875,-89.85198987260412,-89.85169164941756,-89.85121048036839,-89.85077867961209,-89.85064958060663,-89.85048500865709,-89.85032928019912,-89.85001940045393,-89.84977057302613,-89.84931173687808,-89.84853920816523,-89.84790522451728,-89.84754603578372,-89.8472065326032,-89.8466432667114,-89.8458560955019,-89.84537006718662,-89.84452205318451,-89.84400217549647,-89.84383571186714,-89.84362418510312,-89.84359763661855,-89.84362591276653,-89.84375508905876,-89.84400156389729,-89.8441054045563,-89.84401955015277,-89.84381720123135,-89.84369183046179,-89.84348135160691,-89.84340882902286,-89.84337935961463,-89.84329691298909,-89.84320524947053,-89.84312964152267,-89.8431020391177,-89.84301640424481,-89.84296478752815,-89.84286948699733,-89.8427451063048,-89.84265497043529,-89.84247613826929,-89.84238068945498,-89.84231417011172,-89.84224724363318,-89.84213100655603,-89.84201353656471,-89.84190767063652,-89.84147938059239,-89.84101457669881,-89.84073862340642,-89.84043821888866,-89.83997823684213,-89.8396878413426,-89.83940200649623,-89.83902207775384,-89.83859880411789,-89.83829455031392,-89.83805885647432,-89.83792680673623,-89.83775893158898,-89.83728495900701,-89.83705262622765,-89.83675469419506,-89.8360789194311,-89.83576380889919,-89.83541956555169,-89.83467309358933,-89.8338995640124,-89.83359422464495,-89.83277699908331,-89.83244012495773,-89.83186290496303,-89.83150085459657,-89.83138580217633,-89.83112911856601,-89.83103812714623,-89.83090194547688,-89.83075190865951,-89.83066968342004,-89.83046052403388,-89.83030386553303,-89.83014459066376,-89.82967487663062,-89.82874341120689,-89.82827299351965,-89.82789221732116,-89.82743671346664,-89.8271196534216,-89.82677095896865,-89.82642748352583,-89.82608008004922,-89.82587535623627,-89.82570514820205,-89.82557512048506,-89.82532298789513,-89.82518099434897,-89.82497910310327,-89.82469897621891,-89.8243901246593,-89.82406388328502,-89.82366432118314,-89.82356610964069,-89.82329628407467,-89.82256249855966,-89.82175106527237,-89.82109955828795,-89.82056008727309,-89.82009802449973,-89.81982215608404,-89.81946622544557,-89.81887032585259,-89.81842687464898,-89.81783553229552,-89.81727355582075,-89.81686643199696,-89.81635771717026,-89.81573734245956,-89.81504941139606,-89.81462433535323,-89.81446071865973,-89.81417029982164,-89.81388270156394,-89.81338983172176,-89.81276104755217,-89.81244177012466,-89.81206181367654,-89.81112032599634,-89.81067267864388,-89.8099777474487,-89.80943522374383,-89.80904526138407,-89.80846340083761,-89.80789593305379,-89.80735248628777,-89.80623664032916,-89.80562030015092,-89.80484605521683,-89.80375840176123,-89.80307839743206,-89.80217720837727,-89.80155585976307,-89.80037917307899,-89.79948573645639,-89.79838988974176,-89.79758316678073,-89.79615200363379,-89.79516071944879,-89.79439322523207,-89.79365048064828,-89.79291285740773,-89.7923985863831,-89.79168059693848,-89.79058190991451,-89.79013093468389,-89.78928483122145,-89.78882914542869,-89.7883520605567,-89.78808654281643,-89.78796018147686,-89.78787668326778,-89.78793504763929,-89.78797454865996,-89.78795245257177,-89.78787442385944,-89.78781954046555,-89.78786312298212,-89.78796634949279,-89.78808545550839,-89.78805875844166,-89.78790064141789,-89.78775644714551,-89.78753484674075,-89.78721207446839,-89.78659072535172,-89.78642071916587,-89.78646623766141,-89.78664064099561,-89.78660875535796,-89.78628743886729,-89.78577222058902,-89.78549250649172,-89.78538477330127,-89.78522641673327,-89.7851675167866,-89.78529658566536,-89.78557731115315,-89.78647515675353,-89.78714663552009,-89.78755638137729,-89.78793041012081,-89.78816034642047,-89.78866535931664,-89.78921129197377,-89.78968202193643,-89.78992675341415,-89.79008174541561,-89.7900233735448,-89.78979250489128,-89.78929243614577,-89.78871928163251,-89.78824547479347,-89.78782750293092,-89.78697528886379,-89.78649843564948,-89.78593520534881,-89.7854990955754,-89.78499058623474,-89.77874878437008,-89.75890612300924,-89.73920395888452,-89.71877153273246,-89.69973364676692,-89.6797426518787,-89.6596692448025,-89.63957293760204,-89.61976983632218,-89.59968022417522,-89.5999153302409,-89.59955613431748,-89.59953717269221,-89.59940482720229,-89.59924473161223,-89.59896830191893,-89.59888506258831,-89.59860388323911,-89.598358686515,-89.59800082331782,-89.59789444381025,-89.59785322358637,-89.59735812724564,-89.59731260234936,-89.59732534796237,-89.59736222788662,-89.59749698283754,-89.59754724534774,-89.59766695997052,-89.59786004400837,-89.59803404484316,-89.59816908222263,-89.59803371735727,-89.59797254231782,-89.59801798816302,-89.59801884681586,-89.59801100575416,-89.59807969716023,-89.59804812509789,-89.59776534831357,-89.59786784234875,-89.59779498968973,-89.59758496868349,-89.59735672363372,-89.59736450302465,-89.59756120381316,-89.59794367528031,-89.60631106105592,-89.61809575573101,-89.6251447343238,-89.62640967799308,-89.64654213464712,-89.65841404528911,-89.66670552944839,-89.68697281615887,-89.69853768587106,-89.70683814978918,-89.71726378578875,-89.72490270081347,-89.73801472229823,-89.74506661960554,-89.76512426764876,-89.77828102247524,-89.78540609635584,-89.79848112650504,-89.80555821288951,-89.81861152387735,-89.8378352407947,-89.84338225431542,-89.8579006533943,-89.86363264267926,-89.87813696676984],"lat":[44.24942985093369,44.24948617419223,44.24945143076794,44.24944132194388,44.24796058032422,44.24657308604695,44.2457734454298,44.24504128324963,44.24381776266813,44.24313371928885,44.24202570718982,44.24125479639329,44.2404742203058,44.2395875062277,44.23839221264858,44.23744748058925,44.23573142479145,44.23489254412635,44.23414024386322,44.23385062024609,44.23357050336677,44.2331841062103,44.23277862583031,44.23228663416663,44.23133200639293,44.23051267134067,44.22993184217736,44.22964550631508,44.22908688139029,44.22861501671213,44.22822997372102,44.22780658043813,44.22747017776501,44.22721094077892,44.22721213644662,44.22728977879698,44.22773395746304,44.22812948775373,44.22849611109792,44.22885335276774,44.22924942759831,44.2292791278369,44.22905830718886,44.2287986502895,44.22835608166536,44.22794224285132,44.22739351088299,44.22691204543326,44.22665007096693,44.22630487231961,44.22603544086277,44.22544738808824,44.22492665670416,44.22456009635485,44.22411642568152,44.22340283074673,44.22305811669803,44.22274142016204,44.22240440961505,44.22194376544317,44.22148479921213,44.22097425833429,44.22019414175085,44.21962621719471,44.21931859877609,44.2192420183372,44.21922326160534,44.21924315097831,44.2192821918369,44.21938872274177,44.21952427997715,44.21972754103565,44.21978624879178,44.21983505897298,44.21980665207671,44.21977836146672,44.21970174226893,44.21959624764798,44.21923108560891,44.21900992002577,44.21849042960415,44.21809573233689,44.21750834513636,44.21688232123068,44.2163140037255,44.21540840956659,44.21443527176022,44.21373177875942,44.21283539161303,44.21130242416094,44.21066583083735,44.20988449681329,44.20933445518563,44.20901586865781,44.2086778056596,44.20853279510817,44.20842620068189,44.20832914438449,44.20820301168313,44.20807659542778,44.20782521978357,44.20738072722548,44.2071005511272,44.20671439834897,44.20622232336095,44.20535443089279,44.2046120711328,44.20408189481861,44.20355172038359,44.20255903014117,44.201961610974,44.20143165321291,44.20092107114605,44.20045865960526,44.19988075518393,44.19926440522744,44.19883106750004,44.19845565510298,44.19805176188177,44.19781158778787,44.19771580998989,44.19767787267777,44.1976785560405,44.19775663250974,44.19781498469967,44.19794119594285,44.19805754626624,44.19822228341394,44.19825179493717,44.19819486279241,44.19817627093523,44.1980515098133,44.19776318949355,44.19760943388889,44.19715725653464,44.19687817525604,44.19617526936032,44.19575151454426,44.19525058942501,44.19469168435534,44.19394001019259,44.19299554863748,44.19218588294017,44.19144338947749,44.1910477619257,44.19082136897186,44.19067336796829,44.19054455115152,44.19054388687157,44.19052394412309,44.19059092376354,44.19073466347186,44.19100340880445,44.19144523881995,44.19171439481929,44.19194478183712,44.19204063121978,44.1920781645208,44.19220198216889,44.19206625582453,44.19186323037577,44.19158312254024,44.19119707217187,44.19074353445473,44.190299802446,44.18964414463013,44.18889210253927,44.18787022053402,44.18674248578525,44.18580764301943,44.18527763245248,44.18477657346986,44.18387086888522,44.18321575002219,44.18269554619009,44.18200196267922,44.18110613835561,44.18033552518568,44.17965166655884,44.17883307800592,44.17802418531378,44.1774753937182,44.17705189209851,44.17661896890151,44.17634986563904,44.17626377377639,44.17628413645214,44.17633299871305,44.17643012286604,44.17662380990392,44.1768460334754,44.17710703823623,44.17752233136849,44.17790857784726,44.17844930378901,44.17898067431294,44.17914525458031,44.17913613325886,44.17886713978675,44.17847253169472,44.17797185553516,44.17725919145328,44.17659464723118,44.17610336045831,44.17553486360001,44.17484098784468,44.17414701035275,44.17313476298607,44.1724888941804,44.17111053718212,44.16993461847296,44.16819012482803,44.16767935329874,44.16711083851974,44.16502935836182,44.16395014444864,44.16325633172792,44.1625047764047,44.16174364393595,44.16093435264128,44.16017334746378,44.15941231519822,44.15768803959566,44.15693667629484,44.1559059622051,44.15505847475711,44.15466364069864,44.15416285245111,44.15364280828397,44.15289175995989,44.15239135998186,44.15224741810137,44.15219007655306,44.1522197382027,44.15229724449281,44.15245180514721,44.15293425373869,44.1534035808728,44.15402394068845,44.15459273428569,44.15529636715431,44.15616379827951,44.15722392565075,44.1577732272493,44.15827434713347,44.15888144642862,44.16000892799557,44.16103049043111,44.16191732314989,44.16263080451738,44.16309366044785,44.16377836335356,44.16433799797161,44.16454077413051,44.16467601791702,44.1647728457975,44.16473476367187,44.16459065131566,44.16426391115545,44.1641005261701,44.1640239161962,44.1639856967841,44.16401500062814,44.16402501921811,44.16410245566332,44.16426687784106,44.16446959729356,44.16489404307153,44.16524121448506,44.16561724636834,44.1660993824416,44.1664465350696,44.16683235381855,44.16722782261296,44.16748824712502,44.16787418300505,44.16796117544481,44.16797108817044,44.16790386277377,44.16770171704719,44.16747062009371,44.16716242112636,44.16672897359168,44.16631473621259,44.16588120346027,44.16518746771206,44.16463819405663,44.16334690878213,44.16229654302724,44.16175689222096,44.16110162607001,44.15998381176593,44.15916471851811,44.15820109162036,44.15755547907422,44.15689058398132,44.15596553484772,44.15548373861436,44.15496343408157,44.15419264099098,44.15351818859929,44.1528822625767,44.15199579604343,44.15146582046702,44.15086837683189,44.15005890595028,44.14919159868588,44.14862303626816,44.14815089323923,44.14762092492303,44.1471777153369,44.14672487352968,44.14625279501523,44.1456554670992,44.14472090948689,44.14391154507676,44.14326592260431,44.14266849766411,44.14164708568121,44.14106892580118,44.14046186948585,44.13941154030572,44.13869848675484,44.13816853010501,44.13697370647642,44.13583669690252,44.13523930113482,44.13426615529924,44.13376518851678,44.13333173569755,44.1331776875421,44.13307186289817,44.1330238658327,44.13307217914629,44.13318815432604,44.13325573541435,44.13336188889087,44.13340057902874,44.13327546512335,44.13285155043591,44.13240832036252,44.13158926888121,44.13079909816901,44.12971012126445,44.12930532501822,44.12895828602264,44.12872676326889,44.12866877027962,44.12861069647307,44.12851421842812,44.1283117406879,44.12812854334224,44.12761763993021,44.12732845456529,44.12664411167965,44.12597918018595,44.12534318808476,44.1248035938142,44.12401353453991,44.12311754557191,44.12273219981769,44.12230832197243,44.12182666814534,44.12136435420057,44.12120065475396,44.12116223848387,44.12123947976657,44.12137453167322,44.12164452709135,44.12211687525305,44.12244457773502,44.1228300947503,44.12338907075205,44.12417930259569,44.12476714134711,44.12539352037023,44.12581753236417,44.12638610605249,44.12705106747498,44.12747510799368,44.12771609987846,44.12761014408767,44.12742709524694,44.12715732193012,44.12680080575871,44.1255385223904,44.12461348093978,44.12364025293567,44.12307172512634,44.12272482320448,44.12237791392885,44.1221466258662,44.12196351800239,44.12184784117714,44.12178997283439,44.12179954986877,44.12171270580651,44.12153919766837,44.12128860829558,44.12091274200181,44.12052724912754,44.12004539726708,44.11937082884113,44.11857100666595,44.11719303177637,44.11671121821976,44.11607523766374,44.11537181565631,44.11463948779329,44.11402279363535,44.11299175253848,44.11198000911853,44.11129588375929,44.11062139974318,44.11008181590248,44.10900264551181,44.10834744604152,44.10776931933069,44.10645886359642,44.10605416841676,44.10531220824481,44.10431006156115,44.10376078883273,44.10298987562871,44.10258513190685,44.1021225551176,44.10173706473234,44.10130338107227,44.10097565822051,44.10099483679129,44.10107185791596,44.10148601802578,44.10204463159358,44.10213125335716,44.10213114350087,44.1020443145075,44.10183217037592,44.10157189170632,44.10108991086126,44.10067544139046,44.10020316546327,44.09951892180419,44.09852629536547,44.09783241711176,44.09715778248938,44.0963674795679,44.09582773695489,44.09516267215515,44.09476748684761,44.09406391560745,44.09312761485804,44.0926193267449,44.09218455620412,44.09130754611422,44.09068114234341,44.09001621905881,44.08922607244331,44.08840701043538,44.08764579184405,44.08674005681686,44.08625828625752,44.08512131919989,44.08437938804084,44.08328095734401,44.0812864035191,44.08012049188522,44.0790220288398,44.07773085776353,44.07561097933048,44.07436790436437,44.0733849958961,44.07245990320617,44.07190099404427,44.07131316557884,44.07021460742479,44.06956896992769,44.06871134907858,44.06802722706055,44.06713122724411,44.06637982888611,44.06588853297247,44.06495410472277,44.06441458027817,44.06330657983882,44.06190948736148,44.06110974616156,44.06061829985551,44.0600208436902,44.0592691438701,44.05822832978565,44.05745738257009,44.05681175395375,44.05632995567409,44.05575183066968,44.05516409921695,44.05461491958397,44.05331416307644,44.05277458063664,44.05193625477224,44.05116535700915,44.05059681534063,44.04982589815191,44.04893934434291,44.04816842451477,44.0476962393528,44.04703136673726,44.04563420476304,44.04495971612501,44.04445866428358,44.0436010980663,44.0426471806294,44.04205943925047,44.0415584168103,44.04113450327367,44.04069133715507,44.03869693906788,44.03675067384689,44.0364134627449,44.03621115439508,44.03583539502387,44.03555597263539,44.03505492281175,44.0343418696171,44.03363843583614,44.03165339283979,44.03094995312895,44.03039105026896,44.02766402799821,44.02674859032518,44.02610296558175,44.02536098273382,44.02465754022709,44.02406972781468,44.0236168195606,44.02295191157185,44.02203936153629,44.02173001287347,44.02144224088924,44.02103429002945,44.01999839128172,44.01942426587298,44.01912149528821,44.01810006066794,44.0176134294927,44.01703044186525,44.01661126445835,44.01576326234292,44.01519952523202,44.01461650109897,44.01429366636473,44.01376364488528,44.01321916921229,44.01252532740695,44.01201459148023,44.01149903748566,44.01097866953868,44.0101065704049,44.00903694423602,44.00850696200501,44.00767826700761,44.007153122814,44.00669543725565,44.00614621432353,44.00591496778775,44.00570297778072,44.0054572667599,44.00529827888654,44.00456107940949,44.00432979275919,44.00398765568651,44.00370333956189,44.00322143335217,44.00292265308882,44.00259011926203,44.00209856070173,44.00181905699953,44.00141423420682,44.00031544736664,43.99987212010619,43.9994577014598,43.99894210335503,43.9984167859352,43.99816130943858,43.9980021583459,43.99783337428616,43.99774654126451,43.99743315607759,43.99702824440335,43.99663299878844,43.99631004327266,43.99569785507904,43.99543749524663,43.99518675246168,43.99498421189008,43.99458860251035,43.99447278891635,43.99422685966175,43.99384120616764,43.99334957286894,43.99245316094792,43.99174953391231,43.99111337441202,43.99059771316337,43.99024281530811,43.9899406208582,43.98953276478895,43.98887747511266,43.98836678282619,43.98755271817342,43.98714961037895,43.9869554528976,43.98684960576681,43.98655285416815,43.98645473602622,43.98626509724847,43.98610678382223,43.9859583822311,43.98561131538142,43.98526424988668,43.98469540307073,43.98425674649837,43.98379880476207,43.9834005121279,43.98317740077799,43.98301187163682,43.98274322989411,43.98217930553463,43.98166846617567,43.98116247397578,43.98031915484768,43.9794277015863,43.97883501538923,43.97723996190312,43.97657018064786,43.97578963430357,43.97514402884855,43.97437316539191,43.97355410696915,43.97272061974081,43.97189683186944,43.9712609472436,43.97065396557959,43.97010480789371,43.96931481563461,43.96874152535669,43.96809594148535,43.9673972270694,43.96692491414349,43.96647192094651,43.9658598712419,43.96535866720843,43.96487186610037,43.96393208892903,43.96340196890129,43.96201884591948,43.96157546335913,43.96074172214654,43.96015858724932,43.95968630137052,43.95908867602654,43.95858266539758,43.95775371201083,43.9572332277057,43.95475635192242,43.9493928922732,43.94853509509848,43.94798089741906,43.94717132746814,43.94667499509715,43.9461112599764,43.94552825945679,43.94499825866661,43.94431893047019,43.94367334322204,43.94305665165018,43.94237732019185,43.94182807535282,43.94126439480804,43.94074890360346,43.94005519425746,43.93953492724204,43.93924720406368,43.93897616831054,43.93854593618992,43.93834997623017,43.93809282693688,43.93784912886137,43.93765633572762,43.93746873490344,43.93720880462957,43.93692477235415,43.93657811895947,43.93649261087764,43.93634050373485,43.93619587407944,43.93563494806747,43.93489756634052,43.93424477600793,43.93369782868586,43.93281554901213,43.93202145783106,43.93153963572193,43.93103661138725,43.93084614371655,43.9298648262505,43.92938470520036,43.92884457138326,43.92786318186985,43.92732279657725,43.92707785783903,43.92680414307224,43.92603820106992,43.92525819165336,43.92448176966462,43.92280197489468,43.92231501449577,43.92156344931507,43.92116133846474,43.92087685426161,43.92080140127479,43.92027582177649,43.9199055349475,43.91920021418985,43.91870651231877,43.91832223287953,43.918138983,43.91802659442521,43.91793796070514,43.91775124307507,43.91773387760735,43.91784359095806,43.91802734476108,43.91849001100702,43.91881488318542,43.91915386775774,43.91976818853028,43.92047064918162,43.92088714554384,43.92156657053864,43.92183314923575,43.92197706211263,43.9221823394445,43.92223221901386,43.92222184494056,43.92203512049068,43.92198446631189,43.92185883102989,43.92174595396887,43.92126266553336,43.92073704245106,43.92034552210406,43.92001401774002,43.91959436156571,43.91915704469338,43.91817300739482,43.91777795075796,43.91745694919324,43.91699129091892,43.91632452588883,43.91570713714,43.91518496465547,43.91453576322753,43.9141194275453,43.91384288300807,43.91359369977466,43.91327051201613,43.91308192824433,43.91289151625138,43.91216811047098,43.91161760244868,43.91058716568387,43.91011429281789,43.90960965086855,43.9088615081286,43.90811333797048,43.90716044820296,43.9065287296232,43.90606288999861,43.90559353180602,43.90513218745532,43.90460471251741,43.90390311540552,43.903703393186,43.9034217158225,43.90332781459711,43.90219135644167,43.90159842576458,43.90108314883566,43.90050788491209,43.89920567836261,43.89839048515994,43.89793171881313,43.89729299532879,43.89664015178656,43.89605432380582,43.89534493818107,43.89515463226834,43.89489961993009,43.89440251914072,43.89403895464369,43.89366128243015,43.89320946937445,43.89236237747127,43.89195647754928,43.89117997237788,43.89040701418629,43.88990230403609,43.88918231102469,43.88867055952232,43.88799291373378,43.88727647582787,43.88666240237446,43.886087153035,43.88558599053432,43.8846471951796,43.88388842645015,43.88259675936053,43.88193327852314,43.88137564688844,43.88075086307321,43.87990369582452,43.87933888887393,43.87883759553537,43.8784421903882,43.87805733900748,43.87769372180597,43.87722071597907,43.87676894029725,43.87643718174759,43.87616465246964,43.87586199628538,43.87465532176149,43.87358622328087,43.87257707183131,43.87194544503863,43.87133491148615,43.87078441480654,43.86997637687525,43.86930949265317,43.86873436126792,43.8679899147564,43.86738309069371,43.86687858323567,43.86639872959657,43.86567180288824,43.86503301625172,43.86461653085151,43.86413999174077,43.86369168955679,43.86319389332201,43.86309172843161,43.86292777553348,43.86270314425824,43.86206427580085,43.86140080567776,43.86078667298409,43.86030657640928,43.85992530476642,43.85942395536596,43.85915203784814,43.85877055453294,43.85854799840933,43.85832220122848,43.85807823910056,43.85758039864982,43.85679661572853,43.85604443235848,43.85571952899262,43.85545111577152,43.85512968034522,43.85473419484299,43.85440227759638,43.85384441062739,43.85325471747402,43.85300740998288,43.85277071373719,43.85242426664654,43.85223340444499,43.8520036847605,43.8517774078018,43.85149825857585,43.85104259336371,43.85041063567668,43.84962698302336,43.8491433263788,43.84842668172068,43.84794646774152,43.84761089564588,43.84650900253543,43.84616645357529,43.84569671049686,43.84533289570886,43.84446421063036,43.84394137292756,43.84358792922743,43.84326267332774,43.84301522472784,43.84277476193189,43.84253438536074,43.84223053474383,43.84199321066993,43.84175007610575,43.84132267367694,43.83894275486825,43.83676065642173,43.8344233148905,43.83393854493018,43.8336431864436,43.83296558961423,43.83240438722628,43.83149016895518,43.8310135875946,43.83039228131985,43.82967562043618,43.82904365751135,43.82842578386234,43.82777277060831,43.82713422439007,43.8265480148207,43.82593754440384,43.82532010684967,43.82479088822689,43.82385945253101,43.82337247018584,43.82258897909722,43.82172066202319,43.82099345202281,43.82030848903364,43.81983531518654,43.81927020336081,43.81874040941734,43.81803037111651,43.81748988898323,43.81700604257315,43.81657879818273,43.81618316212208,43.81592157109581,43.81496052515224,43.81481663898251,43.81471349764275,43.81470361452606,43.81467274957375,43.81468297728809,43.81450128235799,43.81435980104126,43.81418540780102,43.81388998933135,43.81308463452305,43.81213440989731,43.81123718493756,43.81064022722889,43.80979290816293,43.80929512104407,43.80869852717802,43.80775955200232,43.80684878826687,43.80636523390753,43.8057122686926,43.80525335181532,43.80479431105145,43.80393618490408,43.80345584297101,43.80307436100809,43.80219467171352,43.80179673197343,43.80142112976893,43.80102909482748,43.80031906801523,43.79982093068685,43.79937226175624,43.79905065941083,43.79852063890504,43.79795540029316,43.79739734894542,43.79690291320424,43.79608711312252,43.79570209859232,43.79524641022311,43.79488595821874,43.79447954711051,43.7940059922437,43.7936348669108,43.79321435986143,43.79286451502198,43.79245827202148,43.79201651867832,43.79144006550004,43.79120999430071,43.79100466236027,43.7908697032649,43.79077370458619,43.79057543188575,43.79028741274418,43.79010265456149,43.78985646106961,43.78899169673618,43.78849330212561,43.7881503743339,43.78770163822152,43.78716458127885,43.78669822234205,43.7862776680143,43.78576504506587,43.78547497746352,43.78484867657694,43.78457277610034,43.78420506396368,43.78378787020801,43.78325781552628,43.7828409498976,43.78227256062018,43.78181008428695,43.78128016949449,43.78088439192612,43.78047439473667,43.77998639988866,43.77990155694643,43.77959374074911,43.7736258780219,43.77309951416692,43.77218078760351,43.77173548419284,43.77102130402312,43.77060740718049,43.77011892415783,43.76979664610415,43.76954984185368,43.76936524672058,43.76907809460432,43.76848555311679,43.76784626857084,43.76757123313084,43.76649433469312,43.76548134718917,43.7638047358669,43.76303159198325,43.76251577692318,43.76186191449418,43.76129998308645,43.76086193104211,43.76034273303976,43.75974560355176,43.7591305243236,43.75880168148991,43.75819004101611,43.75777645690252,43.75751517066937,43.75709839930815,43.75669551956507,43.75643497592305,43.75591737964063,43.75520038583554,43.75458297996439,43.75389826185165,43.75308282025362,43.75262036759698,43.75119089230508,43.7500650838365,43.74923223244627,43.74818051863299,43.74693117594839,43.74605944178438,43.74544538208804,43.74468655731956,43.7439489553199,43.74316541464506,43.7423359631633,43.74143950263049,43.74003124063293,43.73930768915036,43.73869004630681,43.73822767394791,43.73708416080042,43.73640998109094,43.73595108003986,43.73502945431164,43.73411835808304,43.73357099834654,43.73306948174628,43.73218661865217,43.73158630267854,43.73110245007683,43.73032203273198,43.72937569574296,43.72851069096033,43.72748698725265,43.7268304280327,43.72592679625684,43.72485334176579,43.72439778679995,43.72391037812234,43.72280134115039,43.72237389563751,43.72192523040022,43.7208866640256,43.71996450336167,43.71953353850391,43.71859013437759,43.71813088737642,43.71749837027876,43.71701265254056,43.71673542802181,43.71631511260235,43.71579975801774,43.71491733819154,43.713773758823,43.71273967259065,43.71186420078315,43.71134875083526,43.71090034331142,43.71013034686883,43.70922556189732,43.70871316394991,43.70832794420097,43.70770970119321,43.70716224644184,43.70662179997721,43.70596137408162,43.70497981370692,43.70428431120479,43.70343006264934,43.70297816719583,43.70186265113114,43.70134721567718,43.7005211451858,43.69983964131734,43.69900281608981,43.69829300975262,43.69764925146245,43.69744426456542,43.6971625776058,43.69612041629978,43.69502872399068,43.69413842494534,43.69319536675964,43.69239358091188,43.69194497458156,43.69143625272211,43.69067659812639,43.69016773116387,43.68951747420739,43.68881079453,43.68835844474133,43.68773301180281,43.68705093551375,43.6862028930314,43.68579557700188,43.6855067428823,43.68506868939946,43.68450712445737,43.68349705315693,43.6824161815117,43.68188632055932,43.68132460158161,43.67996442454901,43.67928966111364,43.6783992249518,43.67775253053582,43.67729665144007,43.67679457420412,43.67635603713946,43.67600928790454,43.67525574579756,43.67490533426128,43.67452289740046,43.67408697653985,43.67388466004459,43.67367489730948,43.67338092239535,43.67268367654604,43.67234333821771,43.67220025462782,43.67210354950871,43.67192103379637,43.67177104238005,43.67157910617277,43.67126016411058,43.67086712224903,43.6705591745296,43.67011675749682,43.66940896370722,43.66907994761672,43.66844318703951,43.66807534185704,43.66757335499039,43.66722223049354,43.66704788606631,43.66671999675621,43.66658095507654,43.66571644297298,43.66508825963115,43.6637788862962,43.66291509659491,43.6625567159004,43.66183109519046,43.66113611943095,43.66043381480283,43.65978420209932,43.65932164508531,43.65875660772485,43.65793729694904,43.65633753947473,43.65562084755679,43.65511982695914,43.65459434362059,43.65399084018577,43.65345737423158,43.65278238510358,43.65217135680997,43.65171592426006,43.65114746753005,43.65062860473078,43.6503847455778,43.6501917873283,43.6498582229948,43.64963009599099,43.64920032611671,43.64856228633018,43.6481286561393,43.64755084777777,43.64708250813418,43.64657520910394,43.64607455084146,43.64552432360633,43.64484313529082,43.64415809632312,43.64333140716106,43.64256457503048,43.64207394527859,43.64189948255007,43.64173203865802,43.64158933256856,43.64134247555607,43.64101772866643,43.64102017007051,43.64104998322221,43.6419120200652,43.64239358627557,43.64302582469619,43.64309054980033,43.64299636954991,43.6427555178015,43.64248376599066,43.64256343088345,43.64260489711846,43.67163527568585,43.68625017483257,43.70076015054364,43.71528123111015,43.73069271068719,43.75955822535595,43.77399070277669,43.78850883431432,43.80308248110737,43.81797898691405,43.83243824742146,43.84702459724741,43.86155698021785,43.87605910972522,43.89056703848745,43.89433235101196,43.90886682447099,43.92335228736874,43.93793080864269,43.95226138981233,43.98225251991258,43.99677551391397,44.01125430814553,44.04019851838255,44.05478309919279,44.06846179645765,44.0829586161518,44.09744947370934,44.11198411455122,44.1264626961453,44.14102586976765,44.15609116468404,44.17062587412254,44.18506201295779,44.19950540898979,44.21389119421129,44.24567049821225,44.2457470550387,44.2458746543327,44.24599186464313,44.24599683037091,44.24637568807721,44.2466186874885,44.24672829777504,44.24702051926255,44.24720505507303,44.24735032229645,44.2474515581854,44.24763101732683,44.24779639782325,44.24798105255493,44.24820632741051,44.24846142900952,44.24852387377258,44.24868787407171,44.24883619422911,44.24897562567993,44.24924899756191,44.2493162948461,44.24937556310428,44.24936191672521,44.24942985093369]}]],[[{"lng":[-88.40393884892106,-88.4041092980025,-88.41562495794709,-88.43579095830485,-88.45592610801256,-88.47616775524783,-88.4967461876776,-88.50011505471187,-88.50567858274097,-88.51688342540284,-88.52473887385358,-88.54498743197328,-88.5573761254834,-88.56491767627622,-88.57753756946762,-88.58523897761408,-88.59780351838269,-88.6053834599058,-88.61838988785561,-88.62516202797228,-88.6262425895672,-88.63874475079639,-88.64514485269237,-88.65900791904137,-88.66544683400716,-88.67905752421396,-88.68514443228652,-88.69903796812739,-88.70533014133676,-88.71918727582292,-88.72519787505247,-88.73983554532209,-88.74543678335978,-88.76041631754742,-88.76615928557443,-88.78017415886838,-88.78600542397932,-88.8060774252392,-88.8262742711091,-88.84667995121436,-88.86092698885135,-88.86577776119223,-88.8709216717187,-88.88104671982688,-88.88671856725719,-88.88665763008113,-88.88662738066897,-88.8864481156795,-88.88636428535015,-88.88623622025185,-88.88613406925911,-88.88603856312423,-88.88590818443028,-88.88583130849678,-88.8859039644629,-88.88595749332249,-88.88621323808248,-88.88627123059942,-88.88627451072807,-88.88611528643541,-88.88608544974562,-88.88604953674745,-88.88602836091748,-88.88597052364204,-88.88591268215633,-88.88591863417888,-88.88592459191041,-88.88590862576181,-88.88589266463214,-88.88588329559711,-88.88587392824762,-88.88590436785302,-88.88593480008818,-88.88594360387967,-88.88595240958446,-88.88591222101222,-88.88587204032086,-88.88586455919868,-88.88585131958963,-88.88583059933438,-88.88580848677957,-88.88578637579873,-88.88576464105972,-88.88574290530458,-88.88572053782667,-88.88569821128614,-88.88569822435285,-88.8657691779275,-88.84578355486197,-88.82608079827595,-88.78500273455859,-88.7649983705338,-88.74487786793479,-88.72467283515151,-88.6845122188888,-88.66476182317638,-88.6444955078249,-88.62415606153226,-88.60398529016818,-88.58371563957768,-88.56418162509517,-88.5440328679274,-88.52405242079386,-88.50387399436924,-88.42285442054033,-88.40294319931996,-88.40313063432883,-88.40331114720442,-88.40337133400541,-88.40351404024915,-88.40356843714844,-88.40367179860547,-88.40369970082997,-88.40376276850662,-88.40380391190315,-88.40389131669616,-88.40400058849755,-88.40407042063164,-88.40410458920377,-88.40414166692517,-88.40419564878231,-88.40427462467409,-88.40421521955435,-88.40393884892106],"lat":[44.22965794521769,44.24410354392196,44.24410455096277,44.2441252294886,44.24415909155618,44.24410135755271,44.24409566676905,44.24409772718376,44.24407601398638,44.24398917160661,44.24396499398155,44.24369006917511,44.24367985704066,44.24362194669405,44.24372892874628,44.24366322133822,44.24366402006929,44.24363626181965,44.24368576053542,44.24362470271318,44.24367566403092,44.24359862354217,44.24354658195062,44.24351409637917,44.24350976746706,44.24345642793223,44.24340668912394,44.24337447424573,44.24331502037045,44.24333593050586,44.24330177240219,44.24335278499311,44.24342812179444,44.24337969067699,44.24337939374167,44.24330789606785,44.2432386110121,44.24287841735525,44.24272248388279,44.24264949377633,44.24262106866449,44.24261108351595,44.2426212308762,44.24268144706073,44.24267213821624,44.22814217273233,44.21360065673952,44.19916062642808,44.18463651856537,44.17013501726911,44.15570969920053,44.14126218075988,44.12688152875604,44.11264570120965,44.0980961775561,44.06904677291227,44.05566092569573,44.04120424707753,43.99779998386413,43.98329873536341,43.98329923902174,43.97956382172816,43.97589961684817,43.97222433332026,43.96854904987501,43.9648792398587,43.96120942458031,43.95755180342935,43.9538941794565,43.95023186534499,43.94656954776625,43.94291189770687,43.93925424287077,43.93557746833488,43.93190069153031,43.92821356926523,43.92452644780776,43.92320006861795,43.92085328764394,43.91718012702551,43.91349841156745,43.90981669018316,43.90613633376184,43.90245597260675,43.89881978986738,43.89518361501652,43.89517984900812,43.8951452405442,43.89502097117968,43.89484152799164,43.8948981089378,43.89494098223489,43.89473853285476,43.89476460566325,43.89468931848928,43.89463714784224,43.89462187102767,43.89453881738664,43.89459965812265,43.89433299288108,43.89402892384137,43.8937663019278,43.89378534254491,43.89372430096464,43.89307734164262,43.89289883518981,43.93773497034536,43.98105173739948,43.99553418507482,44.01154451731195,44.02563730991831,44.04130184512852,44.05570734895646,44.07031110241372,44.08491451490941,44.09939164791364,44.11401169739388,44.12922368842061,44.15691417361346,44.17136089224626,44.18555487900495,44.20116661236132,44.21506353353534,44.22965794521769]}]],[[{"lng":[-88.04336074145135,-88.04324349685317,-88.05045743950546,-88.07066430088069,-88.09078723742923,-88.11103892114063,-88.13168313575301,-88.15186641153528,-88.16286703116081,-88.1720036589862,-88.19243162664242,-88.21274467223182,-88.23286017079442,-88.25346535209779,-88.27376275122427,-88.28332743802116,-88.29399084333929,-88.31412820986291,-88.33433440029357,-88.3751131886861,-88.38337159340861,-88.39538333937662,-88.4041092980025,-88.40393884892106,-88.40421521955435,-88.40427462467409,-88.40419564878231,-88.40414166692517,-88.40410458920377,-88.40407042063164,-88.40400058849755,-88.40389131669616,-88.40380391190315,-88.40376276850662,-88.40369970082997,-88.40367179860547,-88.40356843714844,-88.40351404024915,-88.40337133400541,-88.40331114720442,-88.40313063432883,-88.39832390759837,-88.35502920574338,-88.3399429889228,-88.33250854695179,-88.32444873966641,-88.31530347585432,-88.30249063056931,-88.28275907940201,-88.27243770705373,-88.25729231787585,-88.24211224886136,-88.23456028858644,-88.22712285814674,-88.21987932617925,-88.21226238628093,-88.20492337265135,-88.19766336918127,-88.18964386273232,-88.17878654716196,-88.17119629338869,-88.16163186470745,-88.16172662154615,-88.1617495505391,-88.16172013890014,-88.16177465517484,-88.16181320147423,-88.16194830567915,-88.16198912766266,-88.16208910875125,-88.16219838684974,-88.16222992734724,-88.15795747701694,-88.14584567649212,-88.14293122537686,-88.12238202923311,-88.10226376132411,-88.0820085416071,-88.06170057546862,-88.04177954176711,-88.0416070079427,-88.04177728419302,-88.04170421548179,-88.04193492829152,-88.04195620297969,-88.04193150799217,-88.04201182246865,-88.04207962903095,-88.04211636597879,-88.04228659928569,-88.04229448218477,-88.04278004500257,-88.04299622932758,-88.04301464908457,-88.04299567470974,-88.04307511891746,-88.04319304397866,-88.04324234291283,-88.04339499339834,-88.04361961970866,-88.0436264856,-88.04366345818096,-88.0436557070842,-88.04374106616437,-88.04361357158757,-88.04354971979477,-88.04341550610501,-88.04336074145135],"lat":[44.23327932464666,44.24099797882138,44.24098504613499,44.24100116624517,44.24109586528225,44.24113203289872,44.2410579177071,44.24122976593463,44.24144782801896,44.24162829330152,44.24197412579547,44.24234939314719,44.24263865377657,44.24286324272578,44.24300317905895,44.24309129536241,44.24318854905561,44.24343089152077,44.24359810331313,44.24399902330055,44.24406636304079,44.24410203842915,44.24410354392196,44.22965794521769,44.21506353353534,44.20116661236132,44.18555487900495,44.17136089224626,44.15691417361346,44.12922368842061,44.11401169739388,44.09939164791364,44.08491451490941,44.07031110241372,44.05570734895646,44.04130184512852,44.02563730991831,44.01154451731195,43.99553418507482,43.98105173739948,43.93773497034536,43.93768666657946,43.93768957894309,43.93769612402012,43.93763701501886,43.93769468926556,43.93763745052713,43.9376865973063,43.93765860542905,43.93760132209332,43.93763819178714,43.93753203717663,43.937506892797,43.93755325757383,43.9376162164243,43.9378133445923,43.93781766697498,43.93778061341374,43.93778726203311,43.93777623113033,43.93773223348712,43.93771919106279,43.93566601024512,43.93493537820454,43.93126402877164,43.92772429300447,43.92601734950241,43.91323318106961,43.90510256138968,43.90119495858885,43.89463118822663,43.8915305497929,43.89152395603874,43.89158611718663,43.89162377378217,43.89169234947587,43.89173990559351,43.89181116154545,43.89178001911741,43.89176736631076,43.90650309456274,43.92105784995339,43.93555212448424,43.95011206738736,43.95631914965537,43.96105563102194,43.97193843942838,43.97490198879753,43.97923773981972,43.99366599400128,44.00819528745404,44.03730968830483,44.05188045248271,44.06641290839723,44.08093962813587,44.09546096139695,44.1099494434857,44.12450339464439,44.13902419694771,44.15344659662363,44.15619605200362,44.15971381838881,44.16072906983354,44.18231888871603,44.2003355579666,44.21138826918899,44.22590930584431,44.23327932464666]}]],[[{"lng":[-87.5435954457834,-87.54346371762379,-87.58338409189102,-87.6034303558524,-87.62364329401851,-87.64428377041807,-87.66446633438143,-87.68481061053474,-87.70497230985588,-87.72523887787443,-87.76609434299709,-87.78628963086699,-87.80657677561869,-87.82684082288874,-87.84684441748232,-87.86698653430517,-87.88748577628226,-87.88760062979424,-87.88766496383337,-87.88783764454006,-87.88794059609648,-87.88795241736021,-87.88801035692548,-87.88802428955617,-87.88799830248536,-87.88800850651745,-87.9082384531095,-87.92377326177289,-87.92858337919232,-87.94888148384429,-87.98936381135402,-88.01008266137626,-88.03021287242136,-88.04324349685317,-88.04336074145135,-88.04341550610501,-88.04354971979477,-88.04361357158757,-88.04374106616437,-88.0436557070842,-88.04366345818096,-88.0436264856,-88.04361961970866,-88.04339499339834,-88.04324234291283,-88.04319304397866,-88.04307511891746,-88.04299567470974,-88.04301464908457,-88.04299622932758,-88.04278004500257,-88.04229448218477,-88.04228659928569,-88.04211636597879,-88.04207962903095,-88.04201182246865,-88.04193150799217,-88.04195620297969,-88.04193492829152,-88.04170421548179,-88.04177728419302,-88.0416070079427,-88.04177954176711,-88.0225788363169,-88.00237690399022,-87.98218357476459,-87.96219597843263,-87.94213869450074,-87.92218673189848,-87.90176704997771,-87.88167704501761,-87.86192638937587,-87.84156369697691,-87.82156379666672,-87.80141889354485,-87.78144350084835,-87.76140480479903,-87.74150600402396,-87.73147245126725,-87.7312797445575,-87.73072198568819,-87.73043566550496,-87.73040647471672,-87.73023995763081,-87.73009033035231,-87.72973101940768,-87.72873778075167,-87.72851218037775,-87.72840780317635,-87.72810585585111,-87.72774556552949,-87.72756519946073,-87.72715338830282,-87.72690353730825,-87.72678349957667,-87.72670945571211,-87.72665091518765,-87.72665128127258,-87.72651989507925,-87.7264607594542,-87.72634059572484,-87.72628133440887,-87.72625518514359,-87.72627626875679,-87.72620289667643,-87.7261459783888,-87.7260270172188,-87.72597003114693,-87.72590985509592,-87.72582089130781,-87.72561132384809,-87.72549072354184,-87.72532568697855,-87.7251595233101,-87.72492645809902,-87.72482783670222,-87.72460358987661,-87.72427183074174,-87.72409139964404,-87.72371531429667,-87.72367098768274,-87.72366235709043,-87.72365977551401,-87.7237837368944,-87.72380037330053,-87.72377192446584,-87.7238063738321,-87.72377884048413,-87.72371960387598,-87.7237062946466,-87.72364766042757,-87.72351338511992,-87.72325715680243,-87.72297276973923,-87.72262590572798,-87.72247424664234,-87.72235397082771,-87.72226324430301,-87.7221424760392,-87.72206932409213,-87.72194951405307,-87.72173759769952,-87.72158718674449,-87.72150041118765,-87.72140358750103,-87.72132180771368,-87.72127022113682,-87.72129493003007,-87.7212664197089,-87.72119161415415,-87.7211020474589,-87.72097007667949,-87.72071557564047,-87.72056596119637,-87.72042995342942,-87.72046259368011,-87.7203416832461,-87.72028246655599,-87.72017731639427,-87.72007435711012,-87.7199545702149,-87.71976007847513,-87.71953583543554,-87.71946091487878,-87.71943313851372,-87.71932772878553,-87.71920788495157,-87.71916300553291,-87.71916510650115,-87.71903025281766,-87.71906181258788,-87.71905298348796,-87.71874465553886,-87.71857933548542,-87.71852070596741,-87.71833914499345,-87.71800816873004,-87.71766337162509,-87.71722567015873,-87.71705902259401,-87.71682526101337,-87.71664322911951,-87.7163715013974,-87.71581187253489,-87.7154567392033,-87.71474520762612,-87.71426855589685,-87.71386749905257,-87.71351901749303,-87.71282255777501,-87.71232225970222,-87.71174624885025,-87.71146010713478,-87.71134528826268,-87.71099618997496,-87.71032217778473,-87.70995885528087,-87.70972358128556,-87.70933680783865,-87.70878343188359,-87.70849513122744,-87.70762363631562,-87.70652683781573,-87.70586011746073,-87.70546602230648,-87.70508768242222,-87.70450321705832,-87.70421500723063,-87.70416954255907,-87.7039201544855,-87.70327749114348,-87.70287006421717,-87.70274917008368,-87.70251527622908,-87.7021080256242,-87.70187092529507,-87.70178133887897,-87.70153930371414,-87.70128179846694,-87.70119152076953,-87.70102479958987,-87.70089704403246,-87.70080631931982,-87.70073934527088,-87.70055741464364,-87.70033228085747,-87.700167265264,-87.69995558456868,-87.69969118686086,-87.69951731918394,-87.69932169710565,-87.69931523773057,-87.6993070625561,-87.69919336409495,-87.69874743409163,-87.69874057703245,-87.69882628077214,-87.6988275773253,-87.69878250850918,-87.69876127598985,-87.69877091916439,-87.6988175953401,-87.6988288000716,-87.69880706500554,-87.69861562038051,-87.69854054297585,-87.6983901580288,-87.69831628915901,-87.69819642227554,-87.69807997395363,-87.69791449405011,-87.69769155642145,-87.69766266597814,-87.69768086103662,-87.69753903111592,-87.69742610690783,-87.69732875686954,-87.69726166686137,-87.69724799244243,-87.69720512692651,-87.69720837348707,-87.69713511294373,-87.69713212644227,-87.69706460163228,-87.69703653529123,-87.69684430320086,-87.69680056686597,-87.69671100729045,-87.69651621923089,-87.69633856257606,-87.69624821408823,-87.69624913523873,-87.69617387144021,-87.69599479471229,-87.69585129230468,-87.69578621652151,-87.69569713869164,-87.69551902114692,-87.69544348139991,-87.69532202038204,-87.69517282272326,-87.69491663754594,-87.69486488170189,-87.69492135233637,-87.69484261362022,-87.6947901081633,-87.69471532998621,-87.69469398256311,-87.69439234343373,-87.69424279419903,-87.69398545166348,-87.69384908312738,-87.69373645697412,-87.69370015082056,-87.69353436611574,-87.6934899021509,-87.69326462658508,-87.69300107747954,-87.69282707146105,-87.69279771859344,-87.69266190677756,-87.69252628833671,-87.6917718388388,-87.69146867014405,-87.69113602297229,-87.69099893433737,-87.69094719424638,-87.69086435129213,-87.69060333032814,-87.69023049990969,-87.69012592406087,-87.6900623011433,-87.68996303119512,-87.68978257150231,-87.68956718113397,-87.68949266515679,-87.68934594254206,-87.68917070485472,-87.68903374612168,-87.68885556540549,-87.68878209426038,-87.68860376797545,-87.68841853495817,-87.68796423098554,-87.68787782828763,-87.68760387599131,-87.68759803685221,-87.68750974259473,-87.68742430336313,-87.68733607054838,-87.68723203875813,-87.68697858303878,-87.68693566546109,-87.6867197907864,-87.68660154421468,-87.68638559502484,-87.68616130463569,-87.68604375761414,-87.68567913641949,-87.68563682682147,-87.68557773340757,-87.68548886504091,-87.6853611448599,-87.6852352431345,-87.68519166773113,-87.68510270963947,-87.68508886171989,-87.68509208523602,-87.6850555329231,-87.68493608259118,-87.68490747857106,-87.68475839707509,-87.68449459761953,-87.68428752103394,-87.68421227315818,-87.68401179795922,-87.68384781322675,-87.68375224349131,-87.68352843440516,-87.68340062230295,-87.68330581926455,-87.68311897364811,-87.68297878854868,-87.68258923343164,-87.68160152133629,-87.68151170105375,-87.68122794026365,-87.68106439336255,-87.68073424240836,-87.68046501282677,-87.68002255737734,-87.67992566849762,-87.67971430446063,-87.67957324042976,-87.67925042329709,-87.67923615233676,-87.67886181946464,-87.6785009421438,-87.67827509207839,-87.67820713948653,-87.67789488093973,-87.67763215049189,-87.67750632410593,-87.67739352048335,-87.67729687950792,-87.67710099020239,-87.67680893860172,-87.67646197401774,-87.67599611570611,-87.67585440702372,-87.67559890744313,-87.67507899292499,-87.6746516387679,-87.67447725983652,-87.67417055950581,-87.67398182611625,-87.67364432280115,-87.67311736964336,-87.67282216757791,-87.67234940556065,-87.67141841160776,-87.67097868577058,-87.67046642461865,-87.6700890762468,-87.66956723845527,-87.66922915770527,-87.66900997106143,-87.66863392417292,-87.66839912044779,-87.66784760719993,-87.66756037153502,-87.66706092778973,-87.66685753813745,-87.66654980503134,-87.66626255911301,-87.66621696779158,-87.66599197983632,-87.6659172795582,-87.66560835458039,-87.66531372439491,-87.66508740075656,-87.66480190493169,-87.66441010698594,-87.66379161560225,-87.6633083415504,-87.66279464354962,-87.66259872719333,-87.66250839891836,-87.6622737583026,-87.66212999110382,-87.66184252816092,-87.66101176411219,-87.66010677665196,-87.65984647139891,-87.6596098503385,-87.6594282191886,-87.659203076035,-87.65888576901095,-87.65863685789941,-87.65845540124936,-87.65787398726299,-87.65772260287817,-87.65751886819922,-87.6573917647334,-87.65717239922927,-87.65680295745581,-87.65621458787658,-87.65588232759698,-87.65579129294434,-87.65564874907011,-87.65554357418775,-87.65520029334522,-87.65514297644339,-87.65500901073951,-87.65493608696482,-87.65481624897252,-87.65478936724834,-87.65459625028865,-87.65444849096649,-87.6543761602212,-87.65431546707657,-87.65428806097974,-87.65419891334525,-87.65414271229199,-87.65399373302887,-87.65386720359258,-87.6536491565422,-87.65344348314886,-87.65342942635176,-87.65345197096687,-87.65385226385752,-87.65379623466001,-87.65362155848651,-87.65357887671985,-87.65349819077561,-87.65352575891229,-87.65351411292112,-87.65351180208748,-87.65344355329655,-87.65328451696448,-87.65345311646126,-87.65349190327744,-87.65348571845398,-87.65354797302788,-87.65359738751685,-87.65354863587081,-87.65360681075403,-87.65361189654269,-87.65353895057018,-87.65352698042115,-87.65354336461176,-87.65348731262429,-87.65350612137287,-87.65357106542966,-87.6536510136219,-87.65372056470729,-87.6538986052966,-87.65413823118001,-87.65425444165702,-87.65441157522537,-87.65464617138059,-87.65481823453075,-87.65497391036216,-87.65519333284499,-87.65527311811935,-87.65535983819102,-87.65544127766549,-87.65553754253364,-87.6555647326513,-87.65560676624114,-87.65566104955411,-87.65565740455052,-87.65568133482184,-87.65576079271486,-87.65580954140582,-87.65590286457619,-87.6559832308054,-87.65605023520368,-87.65604658056026,-87.65605953615889,-87.65602579103523,-87.65585525000854,-87.65562433450229,-87.65559561248746,-87.65556498806548,-87.65549633637374,-87.65519962281529,-87.65500024869485,-87.65489277623666,-87.65490383042511,-87.65492638696982,-87.65526140356808,-87.65537620521533,-87.65539989596304,-87.65547764452297,-87.65548362822659,-87.65548420206635,-87.65548510329027,-87.65540189213607,-87.65535555520501,-87.65534004063959,-87.65529588394233,-87.65491451148945,-87.65486811079457,-87.65472299985387,-87.65465481246007,-87.65460909404864,-87.65470086291469,-87.65466232655758,-87.65397415350999,-87.65362112945952,-87.65346295910508,-87.65294541681276,-87.65266005385396,-87.65250170824739,-87.65236669849084,-87.65219042399754,-87.65133866421446,-87.65042316853672,-87.64968921398248,-87.64892736940307,-87.64899980645497,-87.65079812920669,-87.65115005434885,-87.65086261269023,-87.65108669182804,-87.65138048685564,-87.65159766094963,-87.65185023660331,-87.65212582060543,-87.65246515053553,-87.65150546403338,-87.65171716856354,-87.65174422602567,-87.65163371655808,-87.65151516929036,-87.65154472717067,-87.65165282201262,-87.65165234489176,-87.65157965140759,-87.65156645538636,-87.65158334233702,-87.65161570032252,-87.65161999056046,-87.65159246522056,-87.65149003125659,-87.65122246198669,-87.65122408272038,-87.65127109996754,-87.65128835048347,-87.65129145711406,-87.65121748931784,-87.65121960270675,-87.6511770495464,-87.65107353400137,-87.65086470931656,-87.65062431432752,-87.65025478502291,-87.65003007736939,-87.64969235825136,-87.64932797910532,-87.64904207944372,-87.64856299453352,-87.64830656842317,-87.64813020091616,-87.64802956945078,-87.64751043343513,-87.64739932288452,-87.64740102166795,-87.64745437721794,-87.64770946440176,-87.64784133305885,-87.64782021807378,-87.64773062772272,-87.64754136655144,-87.64695138544724,-87.64673183592492,-87.64659638841972,-87.6465742500546,-87.64659601551358,-87.64648652818826,-87.64642212997278,-87.64641565666004,-87.64636172857836,-87.64631641990425,-87.64619547266709,-87.64603019909083,-87.64562184729608,-87.64482724717185,-87.64418447782433,-87.6436161284194,-87.64297225027877,-87.64175496055053,-87.64174682939102,-87.6415126643091,-87.64082485256441,-87.64064464729667,-87.64017767728392,-87.6397550910975,-87.63949814075181,-87.6391953110559,-87.63883233806196,-87.63826428691453,-87.63802181938877,-87.63755978404214,-87.63704536704194,-87.63640774604083,-87.63622567248841,-87.63539039576784,-87.6352164747482,-87.6343445316955,-87.63400370695784,-87.63321972768027,-87.6324893242019,-87.63194111965355,-87.6307395597278,-87.63017672716086,-87.62927195459811,-87.62896018342543,-87.62768125151646,-87.62630435243588,-87.62583204467043,-87.62509413738587,-87.61867476052974,-87.617778630806,-87.61549415054476,-87.61492762670792,-87.61431859716825,-87.6140981018419,-87.61373300000083,-87.61327683543882,-87.61298023656433,-87.61266846958617,-87.61182453239248,-87.6111772138804,-87.61060610322954,-87.61011979012173,-87.61001287590659,-87.609891448726,-87.60976856379115,-87.60907668158934,-87.60899287466374,-87.60893954296429,-87.60890986835464,-87.60887183262182,-87.6087881459985,-87.60768436315898,-87.60726543022027,-87.60717493467263,-87.60655879737214,-87.60644441745097,-87.6057136747287,-87.60562338762001,-87.60537852846869,-87.60483136613487,-87.60354549191845,-87.60276137050586,-87.60208437353317,-87.60160536298096,-87.60111040233589,-87.60108785025322,-87.60065280904826,-87.60063026736478,-87.59986205785451,-87.59821748307378,-87.59803556244319,-87.5979442569538,-87.59776165461642,-87.59770049341628,-87.59754791753544,-87.59718237739884,-87.59706151021962,-87.59685524060137,-87.59677176714797,-87.59670278413465,-87.59664965454182,-87.59610164049491,-87.59570640978812,-87.59561488478411,-87.59531039229449,-87.59518873995779,-87.59415404977547,-87.59409265855859,-87.59375803869237,-87.59360545933622,-87.59263873905698,-87.59247911991535,-87.59232687126566,-87.5922654799859,-87.59199189947768,-87.59196143206935,-87.59160368568924,-87.59158036184316,-87.5906904054453,-87.59051515108087,-87.59014233836884,-87.59008887914504,-87.58995213742816,-87.5896174876615,-87.58958702227518,-87.58916821495902,-87.58909900365872,-87.58891706511754,-87.58873388421829,-87.5886724900985,-87.58840637998655,-87.58822399376093,-87.58713574750064,-87.58705883191068,-87.58702836349633,-87.58536210160744,-87.5849278788999,-87.58435711043191,-87.58433455148041,-87.5838394817923,-87.5835727842464,-87.58255346853889,-87.58252299915935,-87.58209634089063,-87.58115260485235,-87.58090835575695,-87.58087787469914,-87.58042107123717,-87.58036045194558,-87.57987349937743,-87.57981211276508,-87.57948524194646,-87.57926330541683,-87.57917255033119,-87.57874587580238,-87.57871539448173,-87.57853376653216,-87.57850328527857,-87.57838852096758,-87.57828962431272,-87.57810720380549,-87.57807672251221,-87.57749788362503,-87.57746741354666,-87.57694919214377,-87.57688857364118,-87.57667522830921,-87.57661461135743,-87.57445191134036,-87.57442142932364,-87.57420886069585,-87.57417839016256,-87.57393490084,-87.57390441884205,-87.57372121721829,-87.57268630129519,-87.57259431195556,-87.57256384212342,-87.57238186922555,-87.57235138699446,-87.57189431562952,-87.57070556435157,-87.57064484138712,-87.57059250714507,-87.57054575525453,-87.57053058569208,-87.57047704146615,-87.57040883600635,-87.5702943203935,-87.57011225161047,-87.56998967691831,-87.56977633850613,-87.56968589433608,-87.56959324077215,-87.56944922266726,-87.56925876851356,-87.56916677589949,-87.5691362935132,-87.56902274575934,-87.56890884885746,-87.56874840353132,-87.56853582694555,-87.56843646276643,-87.56826184327592,-87.56814739392293,-87.56809378758817,-87.56807869184594,-87.5680943771889,-87.56807147535919,-87.56780460457399,-87.56764460789299,-87.56759145173625,-87.56749251708328,-87.56731008702182,-87.56715758402238,-87.56703567590675,-87.56682214548573,-87.56667022741108,-87.56642619010375,-87.56612218787403,-87.56596989528566,-87.56590850174507,-87.56573420817853,-87.56565011696865,-87.56533737279486,-87.56516338111501,-87.56505649163658,-87.56494281973279,-87.56457659497288,-87.56420331797332,-87.56414191154893,-87.56399039417107,-87.56395992225261,-87.56380729626392,-87.56372310683214,-87.56370045176038,-87.56367821711746,-87.56364057389332,-87.56318944276164,-87.56318286228881,-87.56317716291288,-87.56310872667551,-87.56300934386324,-87.56297929846963,-87.5628880076186,-87.56277407068714,-87.56262887930531,-87.56244588623014,-87.5623923916053,-87.56230973276054,-87.56226348877939,-87.5622181458143,-87.56218744132777,-87.56196650721282,-87.56181426282184,-87.56157296634869,-87.56135723051648,-87.56106082879177,-87.56077852930314,-87.56056567768022,-87.55873852117439,-87.55819072827497,-87.55789363487996,-87.55719336761655,-87.55698798213349,-87.55667564040462,-87.55541934791829,-87.55478784749698,-87.55467326181372,-87.55455076233594,-87.55448297557564,-87.55387383412106,-87.55330248404306,-87.55321157405984,-87.55308993055854,-87.55202329641175,-87.55165782941317,-87.55135366020008,-87.55074430075464,-87.55019672246775,-87.55010479694616,-87.55004371698189,-87.549647513157,-87.54942748343863,-87.54882521563258,-87.54873452056661,-87.54727918588011,-87.54687602911538,-87.54635045496036,-87.5457486801798,-87.54538324700798,-87.54495712433652,-87.54494135403894,-87.54478907662703,-87.54477408888206,-87.54442394019635,-87.54418047097414,-87.54381545404627,-87.54317503646585,-87.5431600570998,-87.54291592788937,-87.54290095067948,-87.54268820923861,-87.54264262316769,-87.54240597089533,-87.54239802273021,-87.54233771364179,-87.54215480784944,-87.54181974423211,-87.54043455783609,-87.54039635865453,-87.53964244420256,-87.53933751732174,-87.53860609295292,-87.53830212839158,-87.53828635749139,-87.53792102600325,-87.53761705935695,-87.5372657893687,-87.53714409586001,-87.5369460410124,-87.53685497320463,-87.53676376028838,-87.53638356217813,-87.53610850123084,-87.53545414586392,-87.53533244813175,-87.53521061554748,-87.53508891970205,-87.53507315609909,-87.53469216051562,-87.53388490278584,-87.53361153121769,-87.53336707253791,-87.53327520474414,-87.53303230776555,-87.53286420900153,-87.53236199411398,-87.53227090348484,-87.53204142328761,-87.53198082671058,-87.531919578637,-87.53161529391078,-87.53150921449534,-87.53144783718186,-87.53134175695899,-87.53123476167116,-87.53117429859465,-87.53094467472268,-87.53071674799729,-87.53050353532743,-87.52992398854431,-87.52928510805741,-87.52890377853268,-87.52875194006522,-87.52859946491928,-87.52849323077507,-87.52838636160629,-87.52828014677681,-87.52783754158006,-87.52766992764523,-87.52738839867656,-87.52728218376325,-87.52619312083405,-87.52576585842893,-87.52567525921067,-87.5255533886138,-87.52541639570821,-87.52538576082922,-87.52534000312403,-87.52530938006358,-87.52509584225319,-87.52443271347531,-87.52406782234041,-87.52357230650718,-87.52305488698447,-87.52251423142221,-87.52216302280567,-87.52172206228447,-87.52118072803447,-87.52060917065839,-87.52002319096688,-87.51957344308401,-87.5191543867349,-87.518895522964,-87.51878103155391,-87.51876588739707,-87.51859858037452,-87.51858343589784,-87.51840005895717,-87.51838492585595,-87.518233239903,-87.51823310193924,-87.51817233282779,-87.51809627685314,-87.51788212980351,-87.51788275972899,-87.51782120767608,-87.51753164013064,-87.517349034856,-87.51724297773941,-87.51724283515492,-87.51719706046993,-87.51719770193922,-87.51707508350651,-87.51707494254144,-87.5169838915683,-87.5169231181513,-87.51670942853004,-87.51660456414471,-87.51652227993178,-87.51634421068108,-87.51610016391432,-87.51610002339973,-87.51596304311741,-87.51596290507861,-87.51591790603877,-87.51591776470752,-87.51587198226237,-87.51587184503045,-87.51582528094148,-87.51582592357475,-87.51573407847386,-87.51568907892806,-87.51568894077758,-87.51561301559187,-87.51561287234603,-87.51552195164683,-87.51550666168602,-87.51547510920014,-87.51544482245514,-87.51538389097733,-87.51532333203774,-87.51523225851206,-87.51518683565806,-87.51515527933044,-87.515124853975,-87.51507906946767,-87.51507892768917,-87.51501877712289,-87.51489657798975,-87.51474436348879,-87.51466780294854,-87.51465265342158,-87.51450094491197,-87.51445487700255,-87.51433223920496,-87.51433287704526,-87.51430208974136,-87.51430195102193,-87.51424165533744,-87.51418073239283,-87.5141353061793,-87.51410451523815,-87.5141051555231,-87.51407360053743,-87.5140432997637,-87.51390629985977,-87.51389101955043,-87.5138610105554,-87.51380030422743,-87.51376873254658,-87.51372315301937,-87.51369315718013,-87.51366272744809,-87.51361679621972,-87.51354107964832,-87.51351028747918,-87.51349421650752,-87.51346422003893,-87.51344892555488,-87.51341891724007,-87.51334241687964,-87.51331241828223,-87.51329712701818,-87.51323618640117,-87.51322090816002,-87.51317497800787,-87.51314440487242,-87.51277901001828,-87.51277887151467,-87.51268730412579,-87.51258028636691,-87.51258091517761,-87.51255013636508,-87.51253485284072,-87.51248970470908,-87.51247412706445,-87.51245911740617,-87.51245854840643,-87.51244353881488,-87.51244311433796,-87.51242811637394,-87.51241317908033,-87.51238302500767,-87.51238274175452,-87.51232215503173,-87.5122762216871,-87.51227529876323,-87.51224529997403,-87.51224514779526,-87.51221513708551,-87.51215377969663,-87.51207783553548,-87.51207847672768,-87.51203268150674,-87.51200238770373,-87.51180315443393,-87.51180379383278,-87.51172720705632,-87.51169677178979,-87.51169726881587,-87.51168225834067,-87.51168197197538,-87.51163653526201,-87.51163547138397,-87.51160531887018,-87.51160502059611,-87.51159002183235,-87.51152950372494,-87.51151448858367,-87.5114374083124,-87.51137681502387,-87.51133172921986,-87.51130156377154,-87.51128613786041,-87.51122426358276,-87.51119383833051,-87.51116381338338,-87.5110577888436,-87.51104235055585,-87.5109961296217,-87.51099583503554,-87.51096568829449,-87.51095024978757,-87.51087449823697,-87.5108749979595,-87.51085921467556,-87.51086738473998,-87.51085849205258,-87.51082848981495,-87.51082834879212,-87.51075189599996,-87.51073675264696,-87.5107072941605,-87.51069151417052,-87.51067686682823,-87.51063141209833,-87.51063034476965,-87.5106153448984,-87.51059990527779,-87.51058489090927,-87.51056945054225,-87.51055445030778,-87.51053902163011,-87.51052401910373,-87.51050936261926,-87.51041739591393,-87.51041710068959,-87.51035601575646,-87.51029521539753,-87.51026505984576,-87.51009740251972,-87.51008240181105,-87.51006695774188,-87.5100519568644,-87.51003651601418,-87.51000558795567,-87.50997498941537,-87.50989924074547,-87.5098541379427,-87.50979212563566,-87.50974716195742,-87.50967063301492,-87.50962538382066,-87.50960959911353,-87.50957887081464,-87.50956385341173,-87.50953376185805,-87.50948831321007,-87.50948801548442,-87.50947301397059,-87.50945757248624,-87.50944178742843,-87.50944149071033,-87.50941148401138,-87.50936603497915,-87.50932022264013,-87.50932007843082,-87.50925912881635,-87.50924432495809,-87.50921417815368,-87.50916750568116,-87.50913734231116,-87.50912255021777,-87.50907630755469,-87.50906164435671,-87.50904664230478,-87.50904635354487,-87.50903133968987,-87.50899982531807,-87.5089848205685,-87.50897001447495,-87.50868071674576,-87.50868042777208,-87.50865026635414,-87.50863467724135,-87.50860451585342,-87.50858892587841,-87.50857314045355,-87.50842123337515,-87.50836732853845,-87.50827600282861,-87.50824599342843,-87.50820785944759,-87.5081781131415,-87.50814672499649,-87.50813172174267,-87.50813142311877,-87.50807046675217,-87.50804017165891,-87.5080106075128,-87.50797873457854,-87.50791776983426,-87.5078723257103,-87.50787266210921,-87.50785765869263,-87.50785806269937,-87.50784290076625,-87.50782723115765,-87.507780981545,-87.50775097089733,-87.50772037599427,-87.50767519173935,-87.50744632635664,-87.50744666635224,-87.50743009600798,-87.50743044784798,-87.50741544378629,-87.50735477931265,-87.50733977489926,-87.50732389587651,-87.50730889160933,-87.50729364669239,-87.50727863026246,-87.50726353377433,-87.50724852505957,-87.5072480821228,-87.50723293236838,-87.50723205984588,-87.50721691020814,-87.50721805270662,-87.50723248346173,-87.50723288361036,-87.50721773358998,-87.50721778310609,-87.50720277819049,-87.50718729727261,-87.50717149780671,-87.50715694599289,-87.50714193682803,-87.50714984880013,-87.50714138229282,-87.50712637722275,-87.50712628455605,-87.50711126321937,-87.50711196587949,-87.50709616628575,-87.50709544692583,-87.50708042654975,-87.50706532740755,-87.50705031973801,-87.50705067099392,-87.50703488218795,-87.50703557278523,-87.50701978474883,-87.50701980809983,-87.50703502219582,-87.50703579899387,-87.507020008596,-87.50700512277793,-87.50702049178786,-87.5070277821235,-87.50702049559094,-87.50700470930202,-87.50700510977769,-87.50698995671381,-87.50699742462942,-87.50697473078182,-87.50698295933262,-87.50697500369057,-87.50694488206737,-87.50692987572769,-87.50695154907696,-87.50694437407606,-87.50696036980966,-87.50695192145902,-87.50696000708115,-87.50697550749433,-87.50697429359583,-87.50699002209132,-87.50699060618898,-87.50700595287074,-87.50700542671017,-87.50702094167195,-87.50703604858403,-87.50705155097167,-87.50705190196764,-87.50709661891186,-87.50711201282873,-87.50712752705125,-87.50712800909677,-87.50719717764916,-87.50717340231479,-87.50723472948619,-87.50723445792676,-87.50725031281439,-87.50725007335699,-87.50722025056281,-87.50721923074484,-87.50720427163243,-87.50723538754519,-87.5072508917179,-87.50726551946865,-87.50728102105985,-87.50731135636414,-87.50732686039716,-87.50732702152035,-87.50729611777719,-87.50729715502248,-87.50728136406101,-87.50729579747772,-87.50729679046324,-87.50731229497858,-87.50732722225797,-87.50735776410015,-87.50738833998096,-87.50744920115461,-87.50744912756686,-87.50746386036036,-87.50747946687949,-87.50749497931497,-87.50751102944538,-87.50752575024087,-87.50751734332772,-87.50754151893351,-87.50755547063625,-87.50757102447602,-87.50758652602271,-87.50760209190663,-87.50761758508595,-87.50761715351116,-87.5076328958805,-87.50763268815014,-87.50764740862607,-87.50766296346588,-87.50769368322752,-87.50769403465809,-87.50770899435825,-87.50772400546765,-87.50773973195783,-87.5077388908298,-87.50775439200346,-87.5077698162365,-87.50778555651337,-87.50781591612592,-87.50783165886904,-87.50783081199884,-87.50784631886333,-87.50784588589488,-87.50786161668303,-87.50786219049972,-87.50787636899229,-87.5078770879208,-87.50789182408218,-87.5079069050807,-87.5079226451969,-87.50793858107401,-87.50795408413715,-87.50795287144906,-87.50796837620283,-87.50796809020241,-87.50798381779252,-87.50799975541746,-87.50801449001496,-87.50801404524141,-87.50804476640201,-87.50809139550861,-87.50810611658528,-87.50810646839086,-87.50812196235781,-87.50824316256249,-87.50827449242398,-87.50827420562067,-87.50828915331503,-87.50830446477059,-87.50832019215156,-87.50831935128311,-87.50835068898728,-87.50835117152653,-87.50838047468086,-87.50838096834204,-87.50839591958432,-87.5084115490392,-87.50842649775716,-87.50842721628671,-87.50845698305908,-87.50847237448654,-87.50848810623589,-87.50850341751604,-87.50851837810166,-87.50851831610076,-87.50853404541976,-87.50853321550443,-87.50854894481601,-87.50854888283179,-87.50856384367515,-87.5085714691584,-87.5085641959198,-87.50859511785306,-87.50860984047168,-87.50864800424753,-87.50862536848086,-87.5085645308082,-87.50851904429911,-87.50853362550615,-87.50859510244877,-87.50865584837311,-87.50878578695644,-87.50884714923536,-87.50891540699723,-87.50899133901396,-87.50904546196941,-87.5090989326491,-87.50915980410073,-87.50923623361932,-87.50923608985946,-87.50935750252863,-87.50935736200856,-87.50940419754704,-87.50940405281904,-87.50949555727085,-87.50951031600111,-87.50955646476869,-87.50957191166819,-87.50960190192177,-87.50966279829619,-87.50973973380643,-87.50973958003634,-87.50977036725133,-87.50983158311027,-87.50990758526486,-87.50990779429249,-87.50975573053162,-87.50973180862978,-87.50975457506509,-87.50981677641744,-87.50984628094878,-87.50987700582841,-87.5100371089119,-87.51028974284655,-87.51032032933826,-87.51041174347564,-87.51050306616678,-87.5105643110038,-87.51056416918117,-87.5106095893378,-87.51061022890491,-87.5106401412268,-87.51063999942986,-87.51068684072538,-87.51073136831573,-87.51074722800462,-87.51076296109075,-87.51076290214742,-87.51085465323926,-87.51085381035533,-87.51088459833777,-87.51102154424309,-87.51105287702093,-87.51106808999671,-87.51116024494262,-87.51128160047155,-87.51134334496388,-87.51138850485329,-87.51141929486725,-87.51148034485659,-87.51149556694799,-87.51152557590274,-87.51157143522008,-87.51161781550519,-87.51172458296099,-87.5117395466993,-87.51178541698054,-87.51184716549326,-87.51192242195843,-87.51195321308063,-87.51196866023631,-87.51204467672902,-87.51206068222591,-87.51207563258947,-87.51213687276791,-87.51222793408093,-87.51222779026259,-87.5122588105484,-87.51228999364656,-87.5123354305893,-87.51233528680719,-87.51239638479207,-87.51242709559314,-87.51242695522116,-87.51245765073007,-87.5124567263982,-87.51248820904517,-87.51248792509089,-87.51254957907943,-87.51256504347063,-87.51261032540118,-87.51261018424485,-87.51270124841328,-87.51274809531266,-87.51289998928095,-87.51293099463568,-87.51293085527513,-87.51296188459693,-87.51296174102256,-87.51300688390575,-87.51308373250909,-87.51332818045373,-87.51337345268841,-87.51341955922022,-87.51354197744764,-87.51354182661797,-87.51370969938601,-87.51371033922138,-87.51380077303459,-87.51381677868733,-87.51392414305633,-87.5139240031792,-87.51401443598446,-87.51401507592946,-87.51404531623699,-87.51404517302055,-87.51427449301332,-87.51432024180286,-87.51432088354787,-87.51436631360851,-87.51436617303372,-87.51441238366193,-87.51441224056826,-87.51445768267514,-87.51445832278034,-87.51450375303732,-87.51450361432697,-87.51454982530817,-87.51454968226126,-87.51459511281959,-87.51459497232266,-87.51470276862173,-87.51470262562691,-87.51474805651495,-87.51474791438038,-87.51479334779978,-87.51479320483574,-87.51484020061601,-87.51484005851282,-87.51493078048537,-87.51493063756809,-87.51497764624121,-87.51497748990735,-87.51506822600784,-87.51513030640839,-87.51516022889577,-87.51516008605611,-87.51520601630152,-87.51523672052052,-87.51525162873807,-87.51529714540473,-87.51538910108059,-87.51538896085135,-87.51545040563146,-87.5155113477182,-87.51551120837517,-87.51563373812213,-87.5156638378146,-87.51571006330877,-87.51572542202926,-87.51575535807926,-87.51586301647879,-87.51592420005481,-87.51619851086068,-87.51621405027012,-87.51624493493468,-87.51636596103869,-87.51644283634013,-87.51650402144563,-87.51650411576522,-87.51653426146767,-87.51653512808318,-87.51693190212681,-87.51699234708512,-87.51699228988703,-87.51700802469975,-87.51700798103695,-87.5170379325961,-87.51711444365114,-87.51719122773056,-87.51726740931721,-87.51737443381039,-87.51748164204807,-87.51751180335312,-87.51759573624805,-87.51769511226668,-87.51772581888319,-87.51772567691683,-87.51775561133388,-87.5178023331776,-87.51783224418801,-87.51788210776674,-87.51824151557737,-87.51831771382575,-87.5183788437338,-87.51842368404161,-87.5186832437433,-87.51879098791389,-87.51911069959041,-87.51915711363196,-87.5193477652892,-87.51946321755467,-87.51953881000868,-87.51967646193189,-87.51976792890717,-87.51981352438331,-87.51979823514651,-87.51980635163528,-87.51979859954753,-87.51976058951507,-87.51966935108857,-87.51963149157164,-87.51963043144512,-87.51967715683183,-87.51990609237542,-87.52001235383329,-87.52005783921695,-87.52018829348917,-87.52023409769127,-87.52034141271615,-87.52047778707303,-87.52069945715645,-87.52076038429577,-87.52086748913784,-87.52088304950244,-87.52099782509599,-87.52106664144729,-87.5211575825321,-87.5212652592873,-87.52137133711184,-87.52145509639432,-87.52151770036079,-87.52160085925848,-87.52163175603663,-87.52173853558303,-87.52179904275631,-87.52195170186094,-87.52257794102577,-87.52285286680923,-87.52308219467461,-87.52325033764616,-87.52326594186785,-87.52346401168595,-87.52351766684022,-87.5236164501529,-87.52383868986185,-87.5239454410363,-87.52415194407791,-87.52420504078094,-87.52425016654541,-87.52428129681491,-87.52429703769931,-87.52437275496628,-87.52452588673731,-87.52452597374513,-87.52475523682236,-87.52488520631789,-87.525122299101,-87.52532831153856,-87.52559512298861,-87.52574853335304,-87.52577123977622,-87.52611772720854,-87.52614559653439,-87.52617571776604,-87.52629017429038,-87.52648883977841,-87.52671904747659,-87.52688689068353,-87.52723806553063,-87.52734478150936,-87.52755820065748,-87.52777188499847,-87.52816899686114,-87.52859753533917,-87.52894846356547,-87.52902437855468,-87.52910107527799,-87.52917777202843,-87.52931500665863,-87.52939170521346,-87.52948346863272,-87.52966635905928,-87.5297578023021,-87.53015596968874,-87.53021663668865,-87.53053751290099,-87.53087409141827,-87.53098833892366,-87.53106488713522,-87.53109517493807,-87.53137782968436,-87.53154603632684,-87.53164440209392,-87.53185171984491,-87.53188212250178,-87.53192792977839,-87.53197307482257,-87.53211125167776,-87.53218012390143,-87.53230968220426,-87.53230954515611,-87.53235534082727,-87.53235520374362,-87.53246252104474,-87.53252338808485,-87.53255430589724,-87.5326000536236,-87.53290626450305,-87.53302817462951,-87.53321174264208,-87.5336159021264,-87.53366958718787,-87.53374630303868,-87.53382301940029,-87.5341886474644,-87.53423509383319,-87.53426541011103,-87.53431107147074,-87.53441872269484,-87.53446438684688,-87.53454018949539,-87.53460216484388,-87.53461742198158,-87.53464755801826,-87.53473940176062,-87.53475502587607,-87.5347536144002,-87.53474349528031,-87.53471704383523,-87.53467817547534,-87.53463148889892,-87.53452550654275,-87.53440506767217,-87.53426305453303,-87.53419032696729,-87.53416978718526,-87.53417153595105,-87.53420576052858,-87.53425787547326,-87.53436162109736,-87.53449695273021,-87.53464377664058,-87.53469505590812,-87.53470204521712,-87.5347476723137,-87.53472116029093,-87.53457969496942,-87.5345137806278,-87.53450950821674,-87.53454234059026,-87.5346039215367,-87.53464735968527,-87.5347098990336,-87.53479731824717,-87.5348607316148,-87.53490800762158,-87.53493855037486,-87.53499918907465,-87.53508328127265,-87.53515169988732,-87.53522838120286,-87.53560334074869,-87.53580937873559,-87.53590149807049,-87.53596191275966,-87.53617619266279,-87.53625932668096,-87.53642747221457,-87.53649716010561,-87.53654282999352,-87.53671039578087,-87.5367414533723,-87.53680251986904,-87.53689386341759,-87.53692497586626,-87.53697142983464,-87.53705443512145,-87.53716908847062,-87.53729932974696,-87.53742121805352,-87.53758188677035,-87.53765814808425,-87.53778148435779,-87.53787250666592,-87.53794855926195,-87.53796404372372,-87.5380105032414,-87.53819287728236,-87.53826962467402,-87.53839230297311,-87.53840769997772,-87.53849904869672,-87.53859091645116,-87.53865199022637,-87.53869766774942,-87.53877426903287,-87.53880534272395,-87.53889643104701,-87.53892734927729,-87.53897367406159,-87.53900383043256,-87.53911071873158,-87.53915639602896,-87.53926406399206,-87.53932422464581,-87.53940148017283,-87.5394625582415,-87.53955391678302,-87.53962993508412,-87.53976832918002,-87.5399976747978,-87.54005875484373,-87.54018144618865,-87.5402274503068,-87.54046459655474,-87.54054813404096,-87.54068561122368,-87.54081547057878,-87.54093021005455,-87.54104522893749,-87.54112153767433,-87.54117525449293,-87.54131394318246,-87.54145151271179,-87.54146724058835,-87.54149752545678,-87.54155930719098,-87.54166613988419,-87.54189494641167,-87.54197236479526,-87.54197223101272,-87.54201805151291,-87.54201713636812,-87.54206406230234,-87.54206392842376,-87.54215576290552,-87.54220920435121,-87.54223209861176,-87.54227771337631,-87.5424076521025,-87.54267580535172,-87.54274438821476,-87.54277530577427,-87.54283710984301,-87.54292088291236,-87.543195935113,-87.54324187006908,-87.54336412032421,-87.54347872877933,-87.54359409922341,-87.54373176003772,-87.54376196612819,-87.54382384173984,-87.54390316667933,-87.54394706598487,-87.54399223438605,-87.54409963345145,-87.54419139160628,-87.54422270225824,-87.54426114253144,-87.54426814838068,-87.54419196962209,-87.54416896199348,-87.54420772575622,-87.5443249593209,-87.54441433083522,-87.54442882194287,-87.54444459105918,-87.54452124463444,-87.54455164128963,-87.54461344223365,-87.54464357790393,-87.54465944120986,-87.54468958348045,-87.54476672539775,-87.54478217640454,-87.5447971254502,-87.54479789247361,-87.54484329139886,-87.54485926080436,-87.54488197100842,-87.54493589031962,-87.54497446174038,-87.54500490633342,-87.54502021560519,-87.54499013679234,-87.54499023092021,-87.54502024021507,-87.54502098616746,-87.54500659845475,-87.5450676567706,-87.54506776271818,-87.54508992837181,-87.54508273938944,-87.54509810805261,-87.54509923865763,-87.54511396620336,-87.54511463385032,-87.54512923130355,-87.54512185268665,-87.54512944833989,-87.54516055655904,-87.54520704822671,-87.54521417998816,-87.54520722635988,-87.54523797530648,-87.54523822010712,-87.54526877476808,-87.54526099907413,-87.54525399098776,-87.54529236083641,-87.54528474760791,-87.54524709098241,-87.54525589906335,-87.54541705012302,-87.54540880662221,-87.54541726528275,-87.54540181653076,-87.54535658368412,-87.54535614035225,-87.54532660052712,-87.54531884453344,-87.54527625346186,-87.54519672238207,-87.54512812152596,-87.54509021505726,-87.54502892272249,-87.54493756515799,-87.54490776661652,-87.54489169701915,-87.54481650697758,-87.54480122170338,-87.54472501588799,-87.54458792677198,-87.54457171056259,-87.54448102283554,-87.54442000180786,-87.54438981368652,-87.54437451136782,-87.5443133604949,-87.54425193245262,-87.54416070983638,-87.54411472388344,-87.54402350049335,-87.54394639688512,-87.54385505029695,-87.54376316258779,-87.54373296253837,-87.54368798670889,-87.5435954457834],"lat":[44.32729906884882,44.32755375314434,44.32759888705398,44.32750949879264,44.32748420068813,44.3274894616293,44.32751819688376,44.32740202852244,44.32724226603047,44.32720594680451,44.32708944600079,44.32724151159139,44.32745590945147,44.32740826636435,44.32747281585745,44.32756654559461,44.32756203941445,44.31699782349152,44.31301887255975,44.29851972460033,44.28394919838663,44.27913620176,44.27329714782011,44.26568959037581,44.26018095807194,44.24044652419057,44.24042567449251,44.24039450853692,44.24038447503737,44.2403838222652,44.2407390816216,44.24093683522049,44.24102039913571,44.24099797882138,44.23327932464666,44.22590930584431,44.21138826918899,44.2003355579666,44.18231888871603,44.16072906983354,44.15971381838881,44.15619605200362,44.15344659662363,44.13902419694771,44.12450339464439,44.1099494434857,44.09546096139695,44.08093962813587,44.06641290839723,44.05188045248271,44.03730968830483,44.00819528745404,43.99366599400128,43.97923773981972,43.97490198879753,43.97193843942838,43.96105563102194,43.95631914965537,43.95011206738736,43.93555212448424,43.92105784995339,43.90650309456274,43.89176736631076,43.89169110833134,43.89172664745881,43.89180345220383,43.89184686522379,43.89192491306569,43.89206099833228,43.8919306574658,43.89170036652643,43.89155926102666,43.89162685784589,43.89181647260845,43.89196799895091,43.89205736227971,43.89223595844059,43.89233589240699,43.89247711858745,43.89283266495578,43.8936476421493,43.89422014258963,43.89437402518021,43.89466051274916,43.89503484174376,43.89613511607149,43.89827083827443,43.89882118287969,43.89915110978919,43.8997238535331,43.90058213466433,43.90108864232732,43.90199148154002,43.90258523159529,43.90293763409506,43.90326759696886,43.90361953145369,43.90377344064468,43.90487345717307,43.90515926266903,43.90555555480529,43.90588552824775,43.90663341309931,43.90769426437004,43.90812890248382,43.90903064164578,43.90955862683332,43.91019644811443,43.91057058135858,43.91094441916307,43.91158257704677,43.91184689957691,43.91213341285322,43.91255157365715,43.91294814157477,43.91314622012393,43.91374019383844,43.91435679015554,43.9148630096335,43.91574346979168,43.91600762579055,43.91654005486677,43.91668940704855,43.91719466040884,43.91737083623746,43.91781058815348,43.91851972659093,43.91926195375738,43.91956998539458,43.91987808612199,43.92025195956756,43.9206699122255,43.92126437461199,43.922188578049,43.92289320908591,43.9231135813386,43.92324595503917,43.9233997310801,43.9239324592396,43.92425793417554,43.92450032671032,43.92483063005366,43.92516075264658,43.92612828722957,43.92650252859581,43.92678872367262,43.92714051318224,43.92749241513616,43.92787195487876,43.92824044426581,43.92852648677714,43.92949452657997,43.93028652621087,43.93088057421008,43.9310573620083,43.93136469194914,43.93171678409342,43.93200314282328,43.93228915362589,43.93290495251509,43.93341096596642,43.93389523514445,43.93470949805959,43.9350397215477,43.93550143148029,43.93587549421044,43.93611788271955,43.93629367340176,43.93664597126448,43.93724003299499,43.9373717749517,43.93748047768232,43.93798835681805,43.93834040648079,43.93869233062517,43.93900072586257,43.93981510446704,43.94082756227773,43.94164233506859,43.94190657561724,43.94221504581025,43.94241314123737,43.94291977257133,43.94360267948075,43.94413127297924,43.94507870909771,43.945607399133,43.94611424921325,43.94648878846034,43.94732593955596,43.94780012861172,43.94846102567544,43.94881373721142,43.94892369279469,43.9492323755186,43.94976722557111,43.95020251054282,43.95034578032897,43.95074261066726,43.95123850867721,43.95152505462227,43.95249483081241,43.95377266459633,43.95450007950055,43.95498453170759,43.95540346109522,43.95597636590806,43.95621900654342,43.95630728290122,43.95659346851009,43.95758441474394,43.95833278223145,43.95861957996867,43.95892774242223,43.95934776696687,43.95969862520416,43.95994103543122,43.96035903950917,43.96073368611508,43.96095357159644,43.96119611853067,43.96143832318155,43.96154847693335,43.96179021685923,43.96216441419602,43.962890835172,43.96333120426029,43.96374925489092,43.96407986469983,43.9643658719793,43.96487230611181,43.96489834348699,43.96490830840666,43.96516936218758,43.96598389713508,43.96618155288385,43.9664235550813,43.96675304115693,43.96695161570926,43.96725926942618,43.96753406158532,43.96779806909831,43.96843583928879,43.96889766094441,43.97004144472903,43.9703713618017,43.97085563649588,43.97129530787271,43.97173574207687,43.97281350452398,43.97338553896027,43.97437562247525,43.97463923080542,43.97539812445261,43.97588228863973,43.97634424063714,43.97656454647596,43.97682851207103,43.977444116443,43.97792802074871,43.97860980032624,43.97909365820584,43.98001727919167,43.98041318421185,43.98089710641816,43.98201891884636,43.98252503814666,43.98298689845322,43.98369085257833,43.98463682892994,43.98485699514512,43.9850548034358,43.98542889233308,43.9860889867529,43.98683673857892,43.9871890871792,43.98749705498242,43.98857497881111,43.98879488136374,43.98899303021509,43.98956538717805,43.99020338567612,43.99053349097471,43.99072567134587,43.99078654093309,43.99087438885373,43.99109458402764,43.99142445803156,43.9921287825424,43.99256889333516,43.9930751956803,43.99329555140319,43.99364749751885,43.99402124758637,43.9944174187544,43.99465960838018,43.99536378182226,43.99608997202451,43.99637624623171,43.99653011580199,43.99681631941292,43.99727837549786,43.99886345460134,43.99930383008986,43.99970028261257,43.99989839807334,44.00002648780986,44.00027296587815,44.0006916852413,44.00144013882809,44.00170417746981,44.00207793507472,44.00238597720549,44.00295796765581,44.00348592921159,44.00361806200915,44.004124059626,44.00452115592181,44.00491621801763,44.00526851716283,44.00555429283387,44.00595048248871,44.00648411159506,44.00738143276445,44.00779917772598,44.00856903232614,44.00867920530058,44.00896495461566,44.00955828253971,44.00982237322976,44.0100917724822,44.01061473449224,44.01079618049199,44.01127488457319,44.01164893622026,44.01208938074936,44.01246353573574,44.01285954569651,44.01367398053509,44.01395982055153,44.01413587426448,44.01435577819499,44.01453212781448,44.01486213129047,44.01506016264485,44.01530229309737,44.01547785697889,44.01567543144719,44.01587331937298,44.01613761766627,44.01629150111007,44.01655576323964,44.01752332598898,44.01809533380759,44.01820549895621,44.0186679137846,44.01895409921077,44.01924560884538,44.01974637454436,44.0199446653142,44.02029639943395,44.02064880228227,44.02098442015974,44.02159576958268,44.02324778536958,44.02345134611914,44.02390868901071,44.02428294014238,44.02478970096582,44.02527406532006,44.02594059804215,44.02604525914449,44.02620555736933,44.02644296414606,44.02708097564201,44.02714680434777,44.02778573612006,44.02825951295156,44.02843104528989,44.0285135064978,44.02923979386011,44.02963649707481,44.02992260263607,44.03005507772254,44.03025287003602,44.03049562898097,44.03096376615234,44.03130022994928,44.03188468518496,44.03213782905006,44.03246856012525,44.03305865648923,44.03361518655255,44.03378607538339,44.03424883607311,44.03444756737404,44.03495977888249,44.0354895207305,44.03573784174069,44.03637728261982,44.03742377406797,44.03781657060669,44.03836825915324,44.03872153373217,44.03911912171769,44.03950527015046,44.03970393072349,44.04012305800568,44.04032196511107,44.04071978538844,44.04096262907222,44.04130552357442,44.04149887104978,44.04184623928964,44.04208908673473,44.04217734225472,44.04246365649587,44.04261771633594,44.04291582415911,44.0431478197303,44.04336855649419,44.04376504570029,44.04420634543894,44.04475836551469,44.04514489569012,44.04563040471941,44.04585119403925,44.04590645936053,44.0460009734176,44.04610578332908,44.04639278153754,44.0470445357166,44.04791646547437,44.04822652321438,44.04848980013794,44.04864447732743,44.04895300744867,44.04928383973261,44.04948271192421,44.0495932185119,44.05011220025408,44.05021179176124,44.05043212546964,44.05060846072382,44.05082931872853,44.05111659284366,44.05171223043214,44.05196650421403,44.05209855378892,44.05223095554843,44.05238522765828,44.05315554833693,44.05344134721494,44.05377143033887,44.05405719308727,44.05436534119475,44.0546509186897,44.0551350949539,44.05559684634166,44.05592679156084,44.05608056397916,44.05630030025073,44.05654239975218,44.05693794649384,44.0573118899242,44.05818400689856,44.05817305628675,44.05818458196819,44.05838236254407,44.05840420935558,44.05842397171826,44.05889408018354,44.05964168921048,44.0599713979489,44.06102592311974,44.0617895068869,44.06182753068745,44.06188600461244,44.06197407120205,44.06212807487098,44.06236393221656,44.06248824559814,44.06278297171533,44.0630242380736,44.06335358738814,44.06383678895382,44.06431965390818,44.06480311425673,44.06508886787041,44.06535224653284,44.06545105824713,44.06600050391843,44.06637367450521,44.06672472751297,44.06703191263825,44.067207218292,44.06748096897638,44.06777624466821,44.06799527126942,44.06852180586786,44.06900379039001,44.06950812409602,44.06981489442422,44.07038491045081,44.07073598255813,44.07180069970666,44.07232736530822,44.07275530159813,44.07297587891652,44.07331463885319,44.07369894912768,44.07402833173794,44.07419312864624,44.07443418733849,44.07474129729648,44.07502652844607,44.07538296006107,44.07595912719015,44.07628879157428,44.07643507745248,44.07687441660169,44.07814879915473,44.07929139346817,44.0797418013243,44.07978591153817,44.07982445316798,44.07982680081015,44.07983508588178,44.07986832659528,44.08008237857076,44.0801042228473,44.08008071969633,44.08011880502312,44.08015136848377,44.08067289141503,44.08093635625022,44.08098110212517,44.08105708919472,44.08142450866698,44.08156985609454,44.08180446444276,44.08191441000203,44.08259699991476,44.0826649803088,44.0826431484681,44.08270927097858,44.0828191835704,44.08290688189776,44.08295363601393,44.08395207204808,44.08437105665622,44.08467925797088,44.08542854067723,44.08591278239599,44.08606736753268,44.08624380776102,44.08641743162443,44.0873258309693,44.08710302031099,44.08801242324749,44.08915223754898,44.08923531623947,44.0890683508499,44.09017678458006,44.09124477625141,44.09130368400758,44.09054840015784,44.09030837979179,44.08964733921766,44.08887817610664,44.08888515272773,44.09121720472566,44.09158871463708,44.0915954600863,44.09194149914763,44.0923129707565,44.09237490891039,44.09248432877875,44.09255549655166,44.09281396554966,44.09298953903529,44.09325322842642,44.09336277575766,44.09384593569486,44.0940876078702,44.09450555625889,44.09520932872799,44.09538520262777,44.09553865729099,44.09571429097362,44.09591186029635,44.09624176779928,44.09644466496318,44.0967304779225,44.09707694209237,44.09753911776463,44.0978914844936,44.09831040379735,44.09864114450264,44.09900585017136,44.09941277462174,44.09980949495392,44.10060794113814,44.10091101746402,44.10122333663448,44.10141764393827,44.10212269538218,44.10236461495614,44.10251855130691,44.10264990959601,44.10291231627366,44.10313138945494,44.10332902442734,44.10346137947189,44.10366539772023,44.10416754427315,44.10432788936512,44.10445479814863,44.10452073699468,44.10460193316395,44.10468464353411,44.10473311329127,44.10471919519093,44.10468094536542,44.10468141689673,44.10479708984614,44.10500638050897,44.1053980361446,44.10597838985318,44.10653035535083,44.10684048511297,44.1072824158004,44.10829826305299,44.10832595198608,44.10851918227469,44.10918104752951,44.10945079251715,44.11001846695046,44.11043231802854,44.11060903681118,44.11091788348156,44.11122689052181,44.11158652113519,44.11175228515832,44.11211663645352,44.11244304207884,44.11276436810791,44.11282558804727,44.11328517599188,44.11335725968016,44.11389373135417,44.11413594049204,44.11462049055532,44.11499529439262,44.11532548073248,44.11617329189006,44.11653664721383,44.11720800713297,44.11740635369857,44.11811663114133,44.1189317724192,44.1192179298988,44.11971885731444,44.12322380350399,44.123713221633,44.12500361807569,44.12527959960497,44.12554400584995,44.12562661211666,44.12580832954738,44.12600108323009,44.12614990291636,44.12628743523022,44.12670052828563,44.12700322146091,44.12729512411673,44.12749877021359,44.12751537894319,44.12750439965019,44.12751026486367,44.12777459604397,44.12781869520914,44.12786259481688,44.12790108289839,44.12801113715071,44.1280715624724,44.12853403905309,44.12873233214839,44.12878727141523,44.12905176423596,44.12911773340431,44.12941498398804,44.12946457934753,44.12956944893178,44.12982806715002,44.13040625941925,44.13078621201699,44.13106713138128,44.13128186257065,44.13148529022353,44.13150197847501,44.13167261365228,44.13168901936036,44.13200317537128,44.13261990998974,44.13267488106992,44.13269153021746,44.13264774023411,44.13265320593145,44.1326972576271,44.13282967617075,44.13286258250436,44.13293983103073,44.13299462771788,44.13307729550571,44.13311584835724,44.13333585694797,44.13346820855125,44.13349019763287,44.13360054038603,44.13363342819169,44.13398610415005,44.13399718972679,44.13411814803924,44.13416220227113,44.1345146039241,44.13455878541658,44.13461381677768,44.13462490015131,44.13472407326486,44.13472398936799,44.13485627530327,44.13487266453537,44.13521963666642,44.13530231285756,44.13543989743994,44.13546718449907,44.13550593657392,44.13562716776628,44.13562708510081,44.13578114690282,44.13579234186717,44.13584730283613,44.13591348817013,44.13592457076052,44.13601264150256,44.13607856255998,44.13653554202434,44.13656318119388,44.13656309899599,44.13716877714746,44.13727888400392,44.13749919958819,44.13751588253356,44.13771923015265,44.13784047479902,44.13821502849122,44.13821494932327,44.13836909358735,44.13863354273121,44.13872149490402,44.13872169528751,44.13888673176908,44.13889782629302,44.13907403423588,44.13908483257266,44.1392059143056,44.13928308142008,44.13930506933445,44.13945920310309,44.13945940047087,44.13952532508787,44.13952551996874,44.13958048324587,44.13959132409574,44.13965751389109,44.13965770804911,44.13984490239121,44.13984482003287,44.14002091612802,44.14003200881882,44.14010906992404,44.1401201625018,44.14087973410732,44.14087993031147,44.14095700024524,44.14095691517397,44.14104487092774,44.14104506456242,44.14111094804736,44.14138661401034,44.14141954290059,44.14141945558883,44.14147439178908,44.14147458561122,44.14160694799925,44.14189873377966,44.1418932248428,44.14185469065681,44.14179433333967,44.14174505817829,44.14167892782613,44.14164624479493,44.14161877067696,44.1416188352441,44.14163535757914,44.14167386123351,44.14170710150815,44.14171807255536,44.14176199514909,44.14179507808549,44.14182800413572,44.14182819709489,44.14187220556376,44.14194377137856,44.14202616455326,44.14210322918532,44.14212530726223,44.14219136472115,44.1422572907418,44.14230679068605,44.14235092069647,44.14248264530554,44.14252660904892,44.14266975606996,44.14274118355815,44.14277972525387,44.14282938566222,44.14289526795639,44.14291734339326,44.14291755908813,44.1428845935135,44.14287347523997,44.14287924837643,44.14291806315263,44.14297305765147,44.14298384347791,44.14306087585146,44.14311056601723,44.14324794688351,44.14337450191666,44.14348447586882,44.14355041827207,44.1436770924718,44.14384215542348,44.14385322451462,44.14390823228712,44.14390814445385,44.14395215283142,44.1439852446147,44.14398504326703,44.1440126996539,44.14403496653779,44.14424985576084,44.14494125671501,44.14553533522143,44.1455462537166,44.14560659468007,44.14563408420995,44.14578265705661,44.14589276288451,44.14600276309319,44.14606300131716,44.146090559058,44.14616222282634,44.14622256939384,44.14626099270237,44.14626652303915,44.14626124634966,44.14620088022831,44.14621570497716,44.14638777821254,44.14656404273992,44.14670149720021,44.14682243021465,44.14803761022326,44.148340156366,44.14853271422098,44.14895072093426,44.14906083693193,44.14918722515478,44.14980320884713,44.15018272173575,44.15023231781313,44.15026542481326,44.15029829691755,44.15062820791644,44.15100787595993,44.15105178957132,44.15113977556057,44.15168438007802,44.15190415108307,44.15209682268522,44.15252546291694,44.15287749440127,44.15292700854676,44.15294876496773,44.15317434031525,44.15327878311484,44.15359221233285,44.15363077934227,44.15453808850575,44.15478010689736,44.15507153470033,44.15542885335136,44.15566548410627,44.15598971644168,44.15601188086086,44.15612170635573,44.15614389305025,44.15640757652082,44.1566054715824,44.15686939808348,44.1573094293584,44.15733133091518,44.15750726235063,44.15752916939,44.15768326560793,44.15772701734561,44.15789214103182,44.1579141968714,44.1579359639077,44.15806792002233,44.15828774895506,44.15928847954086,44.15930481921864,44.15986026387777,44.16006920195046,44.16068477242356,44.16092664875347,44.1609488152579,44.16125660678677,44.1614984739233,44.1618062875611,44.16189425526351,44.16207032508458,44.16213616455645,44.16222422590734,44.16253197192957,44.1627738994427,44.1633016426026,44.16338961129328,44.16349951691913,44.16358748234764,44.16360936588518,44.16391709139761,44.16464296702465,44.16486270104724,44.16508249249839,44.16514859324126,44.16536842135058,44.16550039659352,44.16593997036358,44.16600608708291,44.16620397796565,44.16626990802933,44.16631388157775,44.16659962072614,44.16668763540872,44.16675354830313,44.1668415694966,44.16695150894473,44.16699550210034,44.16721532698717,44.16741324875228,44.16763314986154,44.16818273675681,44.1688424501039,44.16919403107837,44.16934801545568,44.16947976322022,44.16959000222519,44.1696779968556,44.16978767438596,44.17018350350539,44.17035937352705,44.17062336766745,44.17073304120738,44.17198646409792,44.17242595206137,44.1725359624766,44.17264585859084,44.17279959787621,44.17282172244281,44.17288769089063,44.17290953120026,44.1731735847724,44.17394303038783,44.17440468379808,44.17499826086193,44.17559192220065,44.1762734208217,44.17666896634961,44.17728453567032,44.17794406945775,44.17855961394626,44.17935096644067,44.17998856859675,44.18047209594267,44.1808459999071,44.18102160428678,44.1810657239776,44.18130741949128,44.18135154158038,44.18165928353758,44.18170312864787,44.18194516070668,44.18196710248233,44.18205496604104,44.18220889812603,44.18256041910555,44.18258265902528,44.18267051083709,44.18319791911198,44.18350567606171,44.18370368601167,44.18372562767963,44.18379158993289,44.18381354865093,44.18403342693425,44.18405536863613,44.18423119639404,44.18431905915938,44.18469647346456,44.18494037085058,44.18513073932237,44.18533027242379,44.18570421486234,44.18572615656711,44.18598989088262,44.18601183264012,44.18607781366164,44.1860997529156,44.18616571748078,44.1861876592551,44.18625360557762,44.18627556432035,44.18645137616756,44.18651735465129,44.18653929640423,44.18667127933453,44.18669322097598,44.18684710738971,44.18691317062224,44.18695693945131,44.18704490131223,44.18715498841605,44.18733063215485,44.18750674181116,44.18763854696212,44.18768231135853,44.18779221911753,44.1878581784375,44.18788012010623,44.18799022217277,44.18814398833447,44.18858379489504,44.18869353894059,44.18873766034477,44.1889794046005,44.18908925185092,44.1893091265696,44.18933108520613,44.18937514815673,44.18939708988596,44.18952913067269,44.18963893582196,44.18977074104344,44.1898148008188,44.18983675950814,44.18988052361807,44.1899687692513,44.19023249744458,44.1902982834384,44.19034236138721,44.19053995244985,44.19058399816655,44.1907380248464,44.1907818215823,44.19089172454632,44.1909796290488,44.19119940009836,44.19124345967599,44.19130950558313,44.19135330588826,44.1914193686993,44.19146344836199,44.19168319915252,44.19172700240806,44.19179306222555,44.19190314546477,44.19196893261236,44.19205683451328,44.19218867771761,44.19269445349069,44.1927163952116,44.19284803528549,44.193067965616,44.19309020307337,44.19313398364823,44.19319976875215,44.19328769043677,44.1933976363993,44.19341981579031,44.1935075847674,44.19352976172585,44.19359558911507,44.1936174891279,44.19374939133229,44.19381541226394,44.19385929556127,44.19403522261906,44.19412312709804,44.19414505172124,44.19418884920282,44.19421107024836,44.19425514952148,44.19443077519431,44.1945627612637,44.1945847199684,44.19465067958008,44.19473864148012,44.19506825642336,44.1950902150888,44.1952002391356,44.19531014380885,44.19535404410059,44.19537622336431,44.1954201065816,44.19555190924113,44.19559577551087,44.19566179442742,44.19570595883489,44.19572785688865,44.19601350678212,44.19603569078278,44.19634320153719,44.19651912909597,44.19671677343582,44.1967830764695,44.19687080055796,44.19700280821782,44.19711242723749,44.19715678856987,44.19746423701739,44.19755224102972,44.19768402811706,44.19772819258997,44.19779392877332,44.1978819321561,44.19810198005942,44.19814588039527,44.19816776549508,44.19823377778184,44.19827775053707,44.19832155179598,44.19834349344101,44.19843157375993,44.1984754120426,44.19867339801955,44.19869528012661,44.19878301986687,44.19891510737037,44.19895897353342,44.1989808683837,44.19906887654187,44.19909105434694,44.19917905822801,44.19920095974833,44.19928868425075,44.19931057902993,44.19939860546372,44.19970635427333,44.19975052175695,44.19988226160659,44.19997012245318,44.20003613968724,44.20067366593165,44.20069556494258,44.20078356622166,44.20080546826398,44.20089347143132,44.20095919271898,44.20109132004351,44.20131108275996,44.20150900927371,44.20166267448169,44.20183865926873,44.20205840357234,44.20227827209428,44.20230015211203,44.2024539403351,44.20247611914301,44.2026518622979,44.20278366490741,44.20282783231373,44.2028497312192,44.20293773305109,44.20295961546714,44.20300377803109,44.20304757939375,44.20317937646696,44.20324562205264,44.20326756361017,44.2033773604393,44.20348732753545,44.20355306258614,44.20375095573025,44.20381697792673,44.20392665711827,44.20405872427286,44.20414674301548,44.20416864245627,44.20421252798862,44.20423470679736,44.20438847402044,44.20441037521703,44.20452033491696,44.2053335698966,44.20537745298414,44.20544347446941,44.20555342249249,44.20561943970929,44.20572938466493,44.20575126937419,44.20636690650726,44.20647657935297,44.20656461353387,44.2066084126815,44.20669648252815,44.20693806621379,44.2070701756918,44.20709207679911,44.20713623746706,44.20724603952372,44.20733371871759,44.20766364675634,44.20775157901803,44.20786165677969,44.20799317910845,44.20805930014311,44.20808119634417,44.20825704533028,44.2083011654226,44.20854277904174,44.208674845424,44.20871863832019,44.20885048594149,44.2089386849456,44.20959793582026,44.20966405874264,44.20968592188751,44.20975176361647,44.2097736603471,44.21019153398574,44.21021343556026,44.21036726331633,44.21038916002627,44.21056494629877,44.21058712966062,44.21074097205405,44.21076287108916,44.21082897508246,44.21087281814604,44.21100474861746,44.21104858742507,44.21146640195033,44.21153227204901,44.21170811782473,44.2117519608747,44.21186196253086,44.21188386407057,44.21221353748834,44.21223569886973,44.21254345213519,44.21256534931652,44.21258184259089,44.21270825842703,44.21273015751883,44.21286210315892,44.21288428638346,44.21301597036742,44.21303812869332,44.21314783634431,44.21317001472169,44.2133238648753,44.21334576085871,44.21341160254121,44.21343348207326,44.21356544662692,44.21358732678103,44.21429096456364,44.21435684629566,44.21530217079004,44.21532405514181,44.21591763961868,44.21596129982279,44.21615924364533,44.21631326128497,44.21633514146563,44.21651098895174,44.21655482701007,44.21663742663046,44.21678576085335,44.21696149781678,44.21733522399976,44.21751124991312,44.21753314650315,44.21768695336911,44.21806069655779,44.21812660019719,44.21845642624724,44.21865410531172,44.21867610881911,44.2187419162738,44.21875857840966,44.21881879793318,44.21886302235984,44.219060789338,44.21908251109711,44.21928062551713,44.21930262662403,44.219368468245,44.21958804988596,44.2197422757764,44.21976399993454,44.21980817999687,44.22011578656549,44.22075306767692,44.22106107012205,44.22145663011869,44.2215444746493,44.22169836156376,44.22183022443964,44.2219840918772,44.22211599722798,44.22237973272573,44.22240173140436,44.22255566328932,44.22257766433857,44.22284138032344,44.22286338567414,44.22319312109681,44.2233691268374,44.2235669308659,44.22358881521311,44.22365467978084,44.22409443796755,44.22411643907206,44.22422620794337,44.22428117712238,44.22439100011717,44.22450627627193,44.22454509904259,44.22456680182591,44.22480881256691,44.22483053175912,44.22500643864149,44.22502842868302,44.22511630087548,44.22560017108639,44.22562185984165,44.22575386659675,44.22577587002615,44.22590759376299,44.22592987663199,44.22599570049737,44.22601208199019,44.22607256439729,44.22609454894224,44.22622655873755,44.22631444621119,44.2263802871669,44.226396647915,44.22652301924784,44.226539680613,44.22657820455885,44.22660020309199,44.22675387562288,44.22677025218439,44.2269408478106,44.22695722745866,44.22699574823819,44.2270177553923,44.22708357678672,44.2271002406593,44.22716073768668,44.2271770856134,44.22721564361138,44.2272373451899,44.2273805959207,44.22739698096896,44.22750142234489,44.22752342332115,44.22758923316229,44.22761123478117,44.22765511475212,44.22767177853694,44.22777622237012,44.22779792511292,44.22786402951731,44.22795191386868,44.22823765010282,44.22825963641938,44.22832547736429,44.22834776017528,44.22907288636677,44.22912786821042,44.22917175119482,44.22918839608921,44.2292706031593,44.22928726385055,44.22932578779167,44.22938048833337,44.22942467259715,44.2294905812713,44.22953448250292,44.22955112624426,44.22964431072284,44.22966095501275,44.22969950994595,44.22975446066129,44.22985326711846,44.2298699290965,44.22995213004982,44.2299684955672,44.23000703650375,44.23002369720637,44.230061944189,44.23007860549716,44.23011714643353,44.23013350708718,44.23019388017146,44.23034761826771,44.23052356492256,44.2305455518094,44.23080943494995,44.23091923122229,44.23100708746742,44.23113917035908,44.23118309574428,44.23126546344689,44.2313095531153,44.23136443259343,44.23137533723593,44.23140833631247,44.23146344923436,44.23153468696456,44.23158424301726,44.23169951594672,44.23179852696324,44.23182046418577,44.23204031240466,44.2320622539525,44.23213923386206,44.23216117531788,44.23234801506507,44.2324248623261,44.23251814826524,44.23257869005935,44.23262830142332,44.23279871151308,44.23294134524352,44.23296356369524,44.23301290973053,44.23319430264299,44.23335913830748,44.23344692069666,44.23360087134998,44.23366702954715,44.23377668689596,44.23389761076965,44.23405158634207,44.23413947385798,44.23437000560712,44.23468892746449,44.23479875583361,44.23496927478185,44.23521631024482,44.23530429896547,44.23532624047672,44.23538124743296,44.23540320598244,44.23543621709105,44.23545815860259,44.23553514111827,44.23566693588857,44.23575477804702,44.23577143912117,44.23580997827187,44.23599119504154,44.2360297189225,44.2360790640473,44.2364691744171,44.23652415429514,44.23659031915003,44.23679911623907,44.23715062314909,44.23728251091126,44.23743654522647,44.23748588902693,44.23763435983145,44.23770024519204,44.23774956889768,44.23788701646913,44.23797496204471,44.23828282842714,44.23829918810384,44.23843635619216,44.2385682443558,44.23878820342482,44.23883754709714,44.23889809338564,44.23906292842813,44.23912882591048,44.23914546973948,44.239326585215,44.23952438037833,44.2395463218357,44.23959032529584,44.23966753002372,44.23972225214079,44.2397441935985,44.23985440655934,44.23988714522822,44.23990908675987,44.23994210896868,44.23996403341846,44.23999707884865,44.24004095880206,44.24015652951783,44.24021678856202,44.24029373626722,44.24031567778083,44.24051347564363,44.24059045738725,44.24094206665281,44.24098635226329,44.2410082938144,44.24105201217522,44.24107395363436,44.24117284273156,44.24129943194927,44.24183227044242,44.24190949906825,44.24204133011247,44.2422938266713,44.24231604516426,44.24267869334388,44.2427006518604,44.2428764923008,44.24294239254723,44.24316220443249,44.24318414596718,44.24335998134263,44.24338193985786,44.2434259270433,44.24344786850464,44.24393142380415,44.24399740684785,44.24401936539872,44.24407437101826,44.24409631253565,44.24415133938638,44.24417328084875,44.24422800524333,44.24424996375708,44.24430497175621,44.24432691027425,44.24438193585978,44.24440387732269,44.24445888285948,44.24448082437777,44.24463481116265,44.24465675262614,44.24471175810761,44.24473369958967,44.24478870753925,44.2448106490031,44.24486568851255,44.24488762999496,44.24501958479081,44.24504152625519,44.24509628696891,44.24511850715936,44.24525018191577,44.24539304891754,44.24542605355278,44.24544799501799,44.24554690154434,44.24557992074185,44.24563482580776,44.24570643542954,44.24592056356297,44.24594250508379,44.24606341288548,44.24614042299989,44.24616236453952,44.24633833599393,44.24640425816739,44.24645900152777,44.24650322427735,44.24653594759764,44.24671187968145,44.24678326339758,44.24718423703931,44.24726137685646,44.24732732020242,44.24746471410962,44.24759102131502,44.24766240596205,44.24767872541086,44.24770639245913,44.24772300894191,44.24828335018989,44.24840957441462,44.24844811962071,44.24846477802307,44.24850304207358,44.248591187268,44.24874477819038,44.24885476306209,44.24899765344789,44.24915162084141,44.24933850897183,44.24936589586206,44.24949207123935,44.24967907212924,44.24971209616432,44.24973403763941,44.24976676281874,44.24986568424328,44.2498989681451,44.25001624538278,44.25062809725603,44.25077070217497,44.25088063224387,44.2509685371822,44.2513860636852,44.25167199413633,44.25235331725094,44.25244097584992,44.25289639046377,44.25316673505075,44.25334252604695,44.25360631528443,44.25386994958205,44.25414468411289,44.25445241937472,44.2546503780833,44.25476021263929,44.25482634630471,44.2548921690877,44.25493607755137,44.25497994361122,44.25507886427948,44.25533170064313,44.25548564886693,44.2555955159246,44.25606790455087,44.25618875194235,44.25639224323194,44.25670524270302,44.25729861803266,44.25756271335555,44.25777126138362,44.25784812007197,44.25807906417804,44.25839762723879,44.25880445060726,44.25916718285255,44.2594747374828,44.25966139823456,44.25984844338087,44.26006800352403,44.26013394678409,44.26033179422503,44.26041975941783,44.26060650998384,44.26148549890046,44.26183723319232,44.26224930972273,44.26249631394638,44.26253491436501,44.26281520710634,44.26293593889783,44.26310069670352,44.2634580325707,44.26369414460517,44.26403482055734,44.26415019479477,44.26428762637102,44.26444135140997,44.26445801133905,44.26465011651597,44.26491930433162,44.26493590685039,44.26533137356975,44.2655181874026,44.26591383040301,44.26621060751052,44.26664458658446,44.26696329247972,44.26705662750446,44.26766338862524,44.26772701218939,44.26779293674295,44.26795775274432,44.26814998922356,44.26852353327309,44.26875983465258,44.26929270494427,44.26947422636696,44.26978157274489,44.27004531385981,44.27052881304132,44.27112215074451,44.27160548927145,44.27173739703314,44.27186931254354,44.27200123529546,44.27222083646879,44.27235275789452,44.27251763874705,44.27282515685885,44.27297906012954,44.27355035364732,44.27361637381055,44.27408864963525,44.2744293194033,44.27459974711324,44.27484757783388,44.27489099542382,44.27543474474699,44.27568202221997,44.2758577378591,44.276143558816,44.27616559708566,44.27623129566825,44.27627531383996,44.27647298803002,44.27660501795346,44.27680279068594,44.27682473220678,44.27689071059461,44.27691265333024,44.27709924765625,44.27729159086557,44.27745093290984,44.27755545585186,44.27796748541549,44.27810487721839,44.27834095018333,44.27890167237702,44.27902240162405,44.27915431856341,44.27928623120494,44.27981348548967,44.27990142284395,44.28000054449613,44.28008846243089,44.2802860367247,44.28037395891044,44.28052780126021,44.28063773684548,44.28070361769086,44.28076953839853,44.28098927898257,44.28112128016058,44.28115501377167,44.28120965217755,44.28124284567127,44.28127323433366,44.2812846050011,44.28129047215545,44.28128618298071,44.28127327117326,44.2812705739381,44.28129348018223,44.28134528501963,44.28136965558024,44.28137838091835,44.28138849914899,44.28139254528178,44.28140274802685,44.28143142701757,44.28152639203965,44.28170884168144,44.28174343685244,44.28186726528879,44.28192632828974,44.28195352679375,44.28199249399366,44.28201830442949,44.28200967689343,44.28195644770419,44.28188884200748,44.28183338366741,44.28180795503621,44.28180805285779,44.28181892779111,44.28186828943112,44.28191787428639,44.28199465107277,44.28250549483652,44.28287905982658,44.28305491643535,44.28316481634623,44.2834724449099,44.2835822714751,44.28381322287017,44.28394498622137,44.2840329076591,44.28429647953506,44.28434047629899,44.28447233548827,44.2846481714833,44.28474702809822,44.28483496688023,44.28496673453036,44.28510959663458,44.28532931964983,44.2855052554697,44.28574673278469,44.28588988721017,44.28608751626453,44.28625237410823,44.28640059415341,44.28646113431932,44.2865490679163,44.28688976612133,44.28702139790781,44.28719734968915,44.28724128610352,44.28741712633546,44.28763685868255,44.28776871698448,44.2878566382904,44.28801049550997,44.28805420815957,44.28827392891011,44.28834014369625,44.28845002389622,44.2885156605558,44.28871349582595,44.28880141450139,44.28899926764284,44.28915305032745,44.28932886078639,44.28946071811082,44.28963655522928,44.28982331472763,44.2901858506077,44.29079032479154,44.29092217938325,44.29109812943739,44.29119702570445,44.29174624538279,44.2919219131546,44.29230664726985,44.29259247078335,44.29279019496266,44.29303743436218,44.29327371687182,44.29339443879717,44.29403184546899,44.29433949905582,44.29439441739756,44.29443839617119,44.29464735196608,44.29492198717371,44.29587812052128,44.29603170854265,44.29605364948107,44.29611962862488,44.29614155334763,44.29621852423112,44.29624046820641,44.29640533990811,44.29657022688325,44.29673502394498,44.29689974238057,44.29724042728709,44.29804266663197,44.29829538155104,44.29849326232041,44.29870193938341,44.29909761679784,44.2997348596285,44.29991084119843,44.30022941075497,44.30058102109304,44.30106459379071,44.30142710551448,44.30154816640545,44.30181170480463,44.30223907462905,44.30261419676411,44.30278988306407,44.30342717103031,44.30380079379672,44.30406452055264,44.30425131258797,44.30451535718141,44.30480124542554,44.30497714698853,44.30517492121565,44.30546384115897,44.30566945620915,44.30573531904743,44.30575169162787,44.30599922948817,44.30628488080991,44.3066255026178,44.30695503280889,44.30698801035305,44.30718587734106,44.30751557775726,44.30774632434527,44.30780122781082,44.30793319088281,44.30832888178089,44.30860353068935,44.30873540640742,44.308889332956,44.30905417758984,44.30930128599695,44.30977961134982,44.31021897494252,44.31046092746649,44.31081239782907,44.31107631298568,44.31125211726436,44.3117798139516,44.31202148401275,44.31237307070194,44.3123951425409,44.31247762645343,44.31258202393293,44.31264226944733,44.3132086170587,44.31329079988704,44.31350530095788,44.31399948864621,44.31436224456984,44.31467552665913,44.31482394674918,44.31506574452612,44.31523042801658,44.31531849341356,44.31545024886734,44.31608759164046,44.31672523534666,44.31757147939066,44.31792298773024,44.31818691512262,44.31880238965321,44.3196926303723,44.31989023496882,44.32017597304895,44.32039593116949,44.32074747118116,44.32107747245251,44.3212971220773,44.32167085599471,44.32216565567938,44.3225502188867,44.32274793089191,44.32292379628461,44.32307777669718,44.32340750958329,44.32353937670228,44.32360514862053,44.32397939859964,44.32404518007443,44.32433107152136,44.32470483129941,44.32479282396786,44.32501256646437,44.32512238039246,44.32518840777755,44.32525447573386,44.32538623418225,44.32556215249386,44.32573827780467,44.32582590776953,44.32600203112271,44.32617789649878,44.3263756841971,44.32666151468956,44.32685920518016,44.32703519994391,44.32729906884882]}]],[[{"lng":[-88.19044708223143,-88.19050963358627,-88.21065009442253,-88.23086420086784,-88.24506999047934,-88.25517389345318,-88.26527439755002,-88.28525340283485,-88.30545505101263,-88.32581432821404,-88.34619810546009,-88.36669113189521,-88.38692078676998,-88.40700496881928,-88.42722740836422,-88.44734946988005,-88.46706471624948,-88.48875097127099,-88.50878963166886,-88.51876857749508,-88.52875356732308,-88.5491929057044,-88.56918831135212,-88.58954419523914,-88.60609131180627,-88.62516545211024,-88.62711871254692,-88.63636876540519,-88.64807746286232,-88.65677433360528,-88.66812901309993,-88.68848911228864,-88.70847273031914,-88.71812246302734,-88.73676857636589,-88.73679895346302,-88.7367209244004,-88.73676559960617,-88.73694210324116,-88.73699217301491,-88.73693744468321,-88.73696988898872,-88.73687059222027,-88.7366552815445,-88.73657535296903,-88.7367254383126,-88.73683078837601,-88.73680343949111,-88.7368561428741,-88.73733781467342,-88.73760027278418,-88.73797759193566,-88.73852355510996,-88.7389091933488,-88.73904760679326,-88.73941065513952,-88.73983554532209,-88.72519787505247,-88.71918727582292,-88.70533014133676,-88.69903796812739,-88.68514443228652,-88.67905752421396,-88.66544683400716,-88.65900791904137,-88.64514485269237,-88.63874475079639,-88.6262425895672,-88.62516202797228,-88.61838988785561,-88.6053834599058,-88.59780351838269,-88.58523897761408,-88.57753756946762,-88.56491767627622,-88.5573761254834,-88.54498743197328,-88.52473887385358,-88.51688342540284,-88.50567858274097,-88.50011505471187,-88.4967461876776,-88.47616775524783,-88.45592610801256,-88.43579095830485,-88.41562495794709,-88.4041092980025,-88.39538333937662,-88.38337159340861,-88.3751131886861,-88.33433440029357,-88.31412820986291,-88.29399084333929,-88.28332743802116,-88.27376275122427,-88.25346535209779,-88.23286017079442,-88.21274467223182,-88.19243162664242,-88.19231714327182,-88.19220183561657,-88.1920872599627,-88.19197188286149,-88.1918491068232,-88.1917255303679,-88.19161836660061,-88.19151510357595,-88.1914141416305,-88.19131317343528,-88.19121218125912,-88.19111118192964,-88.19103547018425,-88.19095896622497,-88.19088323037938,-88.19080669270012,-88.19101321234268,-88.19122053067079,-88.19192370605472,-88.19262695881757,-88.19259709504973,-88.19256678177528,-88.19253006132671,-88.1924949012857,-88.19246100509226,-88.19126795675201,-88.19130282207158,-88.19133770078835,-88.19137257837089,-88.1914074521865,-88.19143464897975,-88.19146106852169,-88.19148827100825,-88.19151546799564,-88.1915157934436,-88.19151689749688,-88.19151721683629,-88.19151751427083,-88.19152316026218,-88.19152799871441,-88.1915336255655,-88.19153844247498,-88.19147940320849,-88.19144721731668,-88.19139051961108,-88.19126629149024,-88.19114204405297,-88.19101402187617,-88.19088597133992,-88.19075790635696,-88.19062216036501,-88.19058390025616,-88.19056374484049,-88.19052730629312,-88.19049162907901,-88.19045517563056,-88.19045833840771,-88.1904701366484,-88.19048638068308,-88.19049528550769,-88.19050943524303,-88.19049631395895,-88.19048319493106,-88.19047320485471,-88.19046476696509,-88.19044807881211,-88.19040700470107,-88.19038634979766,-88.19035863256018,-88.19038387042956,-88.19040912233864,-88.19043435823509,-88.19045960996824,-88.19043096349739,-88.19040230529919,-88.19037285988328,-88.19034287331482,-88.19035608177076,-88.19036849059029,-88.19038168261667,-88.19039408200962,-88.19039380035093,-88.19039351498628,-88.19039242544989,-88.19039213091753,-88.19043963756599,-88.19048714749212,-88.19053465847757,-88.19058217448185,-88.19054256849137,-88.19050373573926,-88.19046489007705,-88.19042605179713,-88.19031430841845,-88.19020254393767,-88.19009076465896,-88.18997895728063,-88.19013525527475,-88.19029076862654,-88.19044708223143],"lat":[44.58530729519,44.58676920400452,44.5862400283254,44.58547691087819,44.58473515885485,44.58490025197448,44.58522898423831,44.58592461131919,44.58658797131825,44.58706945477474,44.58744835325241,44.58773092762275,44.58840587297092,44.58862958147043,44.58890004726302,44.58922155234988,44.58948257189274,44.58949646846967,44.58987152755488,44.59012047500688,44.59003947725403,44.59031377416655,44.59039768057051,44.5905221988718,44.59052978124822,44.5905223240956,44.59053058642723,44.59052784543635,44.59057200357959,44.59055487717974,44.59065612166645,44.59067723392303,44.59063336053983,44.59053763333708,44.59058915811602,44.57474531534685,44.56030631862374,44.53126952084196,44.51668834278785,44.50223852312029,44.48917106023895,44.47454648418109,44.46037871608702,44.44510791365298,44.43065979408269,44.41620967912123,44.40284443620071,44.3883492453795,44.37388557184322,44.35963703692344,44.34513987779236,44.33057726518547,44.31603195233638,44.30141984604774,44.28703680462919,44.27239679673201,44.24335278499311,44.24330177240219,44.24333593050586,44.24331502037045,44.24337447424573,44.24340668912394,44.24345642793223,44.24350976746706,44.24351409637917,44.24354658195062,44.24359862354217,44.24367566403092,44.24362470271318,44.24368576053542,44.24363626181965,44.24366402006929,44.24366322133822,44.24372892874628,44.24362194669405,44.24367985704066,44.24369006917511,44.24396499398155,44.24398917160661,44.24407601398638,44.24409772718376,44.24409566676905,44.24410135755271,44.24415909155618,44.2441252294886,44.24410455096277,44.24410354392196,44.24410203842915,44.24406636304079,44.24399902330055,44.24359810331313,44.24343089152077,44.24318854905561,44.24309129536241,44.24300317905895,44.24286324272578,44.24263865377657,44.24234939314719,44.24197412579547,44.24555999813417,44.24914641634317,44.25273290354835,44.25631910478193,44.25996708559476,44.26361505330431,44.26726327623651,44.27091127666424,44.27445802753913,44.27800449659549,44.28155095831774,44.28509714003151,44.28863556362467,44.29217368692118,44.29571182156139,44.29924993841869,44.30295965488327,44.30666937903628,44.31018156349172,44.31369373991515,44.31520268434764,44.31713448385714,44.32093402812434,44.32455465965604,44.32815927255876,44.328159255603,44.33179393108588,44.33542804543089,44.33906215401227,44.34269625982775,44.34624837563474,44.34980019142603,44.35335201761633,44.35690384718896,44.36056412338912,44.36422441162285,44.36788440811449,44.37154495895457,44.37515889034537,44.37877337342054,44.38238758242721,44.38600233517682,44.3896264922866,44.39158862310116,44.39325101770012,44.39687582239496,44.40050062942,44.40411974063107,44.40773913364934,44.41135824701887,44.41517473409149,44.41677157722276,44.41879944305317,44.42242393406426,44.42604871588299,44.4296729271023,44.43328537805552,44.43689768174202,44.43746540212456,44.44050963630214,44.44412169471538,44.44775188508701,44.45138179560842,44.45501175119639,44.45864201195464,44.46225947795455,44.46587739973236,44.46949536341844,44.47311265142614,44.47671979853941,44.48032638639668,44.48393324973235,44.48753955080208,44.49116018499176,44.4947808211656,44.49840115951226,44.50219360433961,44.50581085359251,44.50942836954096,44.51304589461422,44.51666340201304,44.52028380828755,44.5239042081728,44.52752487650147,44.53114498943411,44.53477092381281,44.53839657044999,44.54202222047672,44.54564758157437,44.54924061978105,44.55283366514221,44.55642671431731,44.56001919502379,44.56362739415833,44.56723559503511,44.57084351206036,44.57445171094016,44.57807005652242,44.58168867126027,44.58530729519]}]],[[{"lng":[-91.15522211124967,-91.16558473260876,-91.16561291389721,-91.16558650775687,-91.16564126112311,-91.16573671904601,-91.16571002180022,-91.16572573464759,-91.16575272886048,-91.16573309923938,-91.16581089849709,-91.16602774067815,-91.16610569844779,-91.16580282098711,-91.16553150663509,-91.16530198488134,-91.16516025141033,-91.16518076297726,-91.16517022393931,-91.165024049476,-91.16499597689024,-91.16483231860764,-91.1647221112375,-91.16471235711367,-91.16493443031213,-91.16497498044434,-91.16516244984146,-91.16539295891776,-91.16548521913273,-91.16551816686352,-91.16572691377191,-91.16583424555255,-91.16587801324691,-91.16599057259485,-91.16598671482615,-91.16624917524169,-91.16630573409422,-91.16611076663204,-91.1660548316102,-91.16607471721473,-91.16598046720993,-91.16584510953402,-91.16555247578346,-91.15356474709759,-91.15314508348109,-91.15294886348643,-91.15271847638256,-91.15260324612024,-91.15262191991471,-91.15261683468341,-91.15252543138426,-91.15255661320427,-91.15249543666654,-91.15239807724106,-91.1523188300996,-91.15224623937792,-91.15217522354023,-91.15211967530291,-91.15206414565083,-91.15200744897432,-91.15206366374429,-91.15207108942553,-91.15209219126292,-91.15212227897453,-91.15215353845947,-91.15220533639399,-91.15225752775933,-91.15224724292626,-91.1522338386178,-91.15219140301409,-91.15215092048942,-91.15209795793052,-91.15204500094215,-91.15200938126958,-91.15198828480689,-91.15197142647845,-91.15195651636627,-91.15194029950142,-91.15191686538863,-91.15185261486283,-91.14249480997711,-91.13266927361042,-91.127063682246,-91.1122483914467,-91.10269237569359,-91.09749521750693,-91.0928011170125,-91.08243997254668,-91.07244486428712,-91.06237429934477,-91.0524163486854,-91.03238425516378,-91.02278491004904,-91.01332927561721,-90.99327612578168,-90.97311658919136,-90.97343635689207,-90.97364209869329,-90.97357910761941,-90.97357868637913,-90.9767780773165,-90.97748026022234,-90.97803530764978,-90.9782783837922,-90.97839423291349,-90.97832818482736,-90.97793493629621,-90.9775452347309,-90.97670073227094,-90.97591107146792,-90.97559829968596,-90.97532261110494,-90.97529487445213,-90.97482865100525,-90.97428934519191,-90.97364900836078,-90.97307044974434,-90.9728578185901,-90.9718878410977,-90.97123415247523,-90.9706491455601,-90.97031899518132,-90.96983217917487,-90.96959261540432,-90.96933627846757,-90.96908296562941,-90.96866638892818,-90.96827322020678,-90.9676920721564,-90.96719737610054,-90.96713488727626,-90.96693577936892,-90.96679636485747,-90.96670767667885,-90.96636295133727,-90.9659923560326,-90.96565070591446,-90.96528346998973,-90.9650874205504,-90.96469812187271,-90.96404553163677,-90.9638908430048,-90.96368610099736,-90.96338524985239,-90.96307631049086,-90.96278348505926,-90.96234681327741,-90.96208546678169,-90.96166936599492,-90.96120742097023,-90.96077804450564,-90.96030586824743,-90.95989457890833,-90.95933375978976,-90.95884608653697,-90.95872154180697,-90.9585991941648,-90.95848489792574,-90.95844459983999,-90.95838008374272,-90.95814396828736,-90.95791476858443,-90.95750642556696,-90.95695891984261,-90.95663110608983,-90.95627904885502,-90.95602748095205,-90.95562559767038,-90.9550720489413,-90.95468210830823,-90.95431615361846,-90.95385608398462,-90.9534756011643,-90.95324497280046,-90.95301260138109,-90.95268381215062,-90.95239820614195,-90.95204782056989,-90.95166741847837,-90.95129400100799,-90.95089857865308,-90.95055059159635,-90.95006428658205,-90.94978568061018,-90.94929494408969,-90.94890905424228,-90.94814168283075,-90.94748529900431,-90.94683653505174,-90.94655023126266,-90.94613120534152,-90.94571674834336,-90.94513709800573,-90.94461576156638,-90.94425215436875,-90.94409804784213,-90.94379449949967,-90.94375492848775,-90.94355776663073,-90.94331668298439,-90.94268687187727,-90.94232821841854,-90.94192084419751,-90.94130943953252,-90.94104596663887,-90.94053771338815,-90.94028446595357,-90.94007861416129,-90.93988626423641,-90.93935725462811,-90.93849172209521,-90.93788995515857,-90.93705839308808,-90.93648244893153,-90.93512343286577,-90.93476990731452,-90.93439433804093,-90.93313509173966,-90.93261876942579,-90.931855626321,-90.93031350142111,-90.9291627752616,-90.92793834862267,-90.92685377618926,-90.92537110962891,-90.92458945475794,-90.92375272732592,-90.92273692055748,-90.92211783935036,-90.9213640474145,-90.92072277346163,-90.91928186866431,-90.91717590329884,-90.91561490114577,-90.913293180444,-90.91218051552364,-90.91130657115185,-90.91098900986182,-90.91030011927239,-90.90952475188799,-90.90871630257384,-90.90810453843748,-90.90583557374369,-90.9058312846127,-90.90562809075314,-90.90560604801088,-90.89279177820694,-90.87292237927204,-90.85291225691054,-90.83279559098922,-90.81267906887999,-90.792547280169,-90.77317699474099,-90.75306778949425,-90.73289192766293,-90.69248579923836,-90.67242174671763,-90.6537367601467,-90.63371064974345,-90.6136818150834,-90.59352807072146,-90.55332672031982,-90.53628567157378,-90.51627574696587,-90.49600240313585,-90.47582557686732,-90.45577719200294,-90.43573641269367,-90.41329694005607,-90.39300729571573,-90.37268670999562,-90.35287155015935,-90.33272152681826,-90.31257148004434,-90.31258414598355,-90.31252777955537,-90.31276125185333,-90.31335289848919,-90.31290824716854,-90.31268957121769,-90.31798901845411,-90.31795269780832,-90.31782185056704,-90.31763054411111,-90.31761068759637,-90.31717663698026,-90.31712417664914,-90.31719255794108,-90.31711200098111,-90.31699363898568,-90.31645547383944,-90.31699542724684,-90.31605951735993,-90.3361661486399,-90.35621212055355,-90.37589119790344,-90.39608385885572,-90.41629517071705,-90.4363300387361,-90.47691806234334,-90.49725354285799,-90.51768553478777,-90.53775635389049,-90.55878541094961,-90.57897947973746,-90.59921325455696,-90.61926239143332,-90.6394707634047,-90.65979034736355,-90.67456709660355,-90.68047773002216,-90.70068296624419,-90.72084320423969,-90.74088103055642,-90.76099840909444,-90.78118731778234,-90.80202707421182,-90.80192462907361,-90.80176882428586,-90.8017271805095,-90.80173896529602,-90.80150752984018,-90.80153746688808,-90.83199030561835,-90.8345771921236,-90.84209681438151,-90.85243417250925,-90.86248681109024,-90.87266685947321,-90.87750629583914,-90.88268520935088,-90.90286198231935,-90.91185201868468,-90.91284184819106,-90.91786892839036,-90.9228988029905,-90.92283538261546,-90.92280029130185,-90.92270495600367,-90.92265057021768,-90.92269643766825,-90.92268742975152,-90.92259508745849,-90.92251682640757,-90.92238568947366,-90.92230489425538,-90.92232429924952,-90.92235738000974,-90.93183294307923,-90.93743071465772,-90.94259371994943,-90.94755777858134,-90.95268258982294,-90.95777094285687,-90.96283099738159,-90.96785592243045,-90.97805750438165,-90.98308056926325,-90.99326429393849,-90.99827041114489,-91.01395718291212,-91.03386709131445,-91.03595889377156,-91.04381852768933,-91.05402783268788,-91.05476583383243,-91.06413528112586,-91.07583371122342,-91.08429585293767,-91.09443819252779,-91.10457984892707,-91.11485025537496,-91.11604471442645,-91.13494235105021,-91.14506770180044,-91.15522211124967],"lat":[44.59683022528856,44.59691485130265,44.58967117457112,44.5825912111683,44.57853106250372,44.56805052505351,44.56182129153316,44.56083365489245,44.55350779889619,44.54705903286899,44.53896544495224,44.52437107845641,44.5099114449896,44.50257988594561,44.49509540623138,44.48775391820207,44.48053475382484,44.47315355952862,44.46590912323481,44.45871726239046,44.45141756073457,44.44417128539701,44.43692417014882,44.42965211313062,44.42219170638021,44.41478350795347,44.40732231414608,44.39283717038934,44.38548439393591,44.37535926792062,44.36763052540517,44.35678660586552,44.34251763537409,44.33522029021214,44.31977065103098,44.30534066980429,44.29812431806737,44.29076676212322,44.28360358890214,44.27633188044052,44.25456919489456,44.2494629250337,44.24745487180724,44.24754908335292,44.23046108123044,44.22329579599855,44.2160202820089,44.20882883806482,44.20150239770585,44.19434021237359,44.18712177399169,44.16558064756227,44.15836271532229,44.15393499446754,44.15031427361581,44.14669348334823,44.14307267250095,44.13944298358352,44.13581357429361,44.1321838948824,44.12855447758079,44.12498744968595,44.12142027928424,44.117853300607,44.11428630735194,44.11067099121421,44.10705595034641,44.10344097573724,44.09982574831638,44.09620293845341,44.09257981790164,44.08895682523746,44.08533354759523,44.08173794983947,44.07961373377456,44.07814236857303,44.07725569616738,44.07626156453539,44.07483618774872,44.07095107761685,44.07112865079322,44.07129771251667,44.07115117085613,44.07107191591541,44.07113308863475,44.07118399871118,44.07121551753245,44.07123401958874,44.07123041750779,44.07119738477494,44.07122010071332,44.0712060292859,44.07120519439928,44.07123322641028,44.07094883817575,44.07089363920405,44.08534826261454,44.09981197759692,44.12430803644397,44.12447270551832,44.12574190788377,44.12618374805626,44.12657415987209,44.12685308304972,44.12726920127128,44.12825327711213,44.12903434202585,44.12943009198728,44.12987967813294,44.13005052803278,44.13003458968458,44.13002107311367,44.13000940221178,44.12988853126611,44.12962200805713,44.12923505051642,44.12899026112543,44.12888341275519,44.12875774628211,44.12876330576893,44.12891410302648,44.12913495964805,44.12965280228047,44.13014713700401,44.13082712338998,44.13169258967411,44.13287336834077,44.13366866699088,44.13447982551908,44.13512615348088,44.13536425227662,44.1356556082333,44.13589090561583,44.13607922668392,44.13634296066298,44.13656331504239,44.13675967866833,44.13687785927262,44.13696337716192,44.13713676155227,44.13747161491816,44.13747093846169,44.13741711463192,44.13721331255846,44.1369660814764,44.13680173750732,44.13657981269671,44.13656953429201,44.13656311744559,44.13657513726082,44.1366420422284,44.13674521569808,44.13687156638391,44.13711172671651,44.13758672086377,44.13775252431075,44.13802337930885,44.13853155204711,44.13910267146645,44.13946562949399,44.14019773176066,44.14064823842328,44.14112969574017,44.14158377982515,44.14171430998034,44.14181778358382,44.14187014914392,44.14189335080483,44.14192777181137,44.14181791311182,44.14174858065979,44.1416799794255,44.14166331490416,44.14167904033094,44.14165527255464,44.14176912402042,44.14182705545652,44.14196886102375,44.14212876798534,44.14235171079957,44.1426351478419,44.14295008994485,44.14351778438716,44.14406234684611,44.14497254699187,44.14562502490529,44.14658745878678,44.14705666950979,44.14738311570803,44.14742500168995,44.14741259929581,44.14737812214086,44.14706898911883,44.14668802033577,44.14625580169665,44.14605250506309,44.14551756293552,44.14526966204496,44.14496300169913,44.14474156020315,44.14440654045619,44.14426561526138,44.14421308641823,44.14439649568738,44.144720608454,44.14571565866939,44.14604427694177,44.14626818538225,44.14649871613963,44.1468812115175,44.14728787823984,44.14745691873546,44.14750655173182,44.14746432968276,44.14725325139008,44.14720059365075,44.14714811087038,44.14691793795542,44.14673010203762,44.14656173894903,44.14644151208501,44.14635812800669,44.14626824283069,44.14634120796957,44.14657441181984,44.14672791762628,44.14700132683948,44.14737778695787,44.14764239914177,44.14823353494927,44.14905207464074,44.15070468856205,44.15229127428958,44.15323845728512,44.15434153499344,44.15480705255381,44.15520726268009,44.15534471178783,44.15570732624754,44.15618173569052,44.15665639874641,44.15701838817051,44.15822285470041,44.15825374114124,44.1583514766718,44.15835164898743,44.1584511980868,44.15852151957127,44.15856636225617,44.15865180400463,44.15869515868565,44.15885605701167,44.15904004616009,44.15908973373853,44.15922825094869,44.15919329128257,44.15952526333378,44.15961625006025,44.15987564768592,44.15996499301897,44.16007623627178,44.16022226714097,44.16045853617576,44.16060611357817,44.16070718435749,44.16091238494808,44.16096551086419,44.16104801175586,44.15965298347594,44.15863077153544,44.15754934856398,44.15669345351403,44.15588264938319,44.15511218135964,44.16956662096725,44.18404822326872,44.19854165828323,44.21305826676058,44.22747217550507,44.24874610466057,44.24872131661176,44.26311689901433,44.27763003856202,44.29212558179782,44.3060250030039,44.31621712072477,44.32066365376046,44.33756949038587,44.35192924207807,44.36604626629953,44.38052172750965,44.39487261339503,44.42451308139614,44.42418694831731,44.42392920381236,44.42335601766673,44.42326353549391,44.422876226,44.42250092726376,44.42253381207379,44.422578145855,44.42245843562467,44.42225182256328,44.42218048352801,44.42207602256305,44.42217626153898,44.42210932950175,44.42199719171492,44.42214642726501,44.42221010925028,44.42224934295366,44.42234105593582,44.42224801662125,44.42222789347374,44.4222937093945,44.42233660973785,44.42246112030769,44.4369185953951,44.4514093217829,44.46586094845338,44.48025223817702,44.49487476666066,44.50961937931145,44.50979067602659,44.50981175150541,44.50981704113284,44.50984726034601,44.50989866338094,44.50992429925519,44.50982222991222,44.50986362688864,44.50990677370666,44.50996166521483,44.50995235436567,44.50996185532917,44.50999868715459,44.51318052489814,44.51718615336206,44.52440115541928,44.5316442287544,44.53532200334762,44.54237395619963,44.55326562587666,44.56786229406483,44.57510396689796,44.58231905683878,44.59126491929116,44.5963690979187,44.59643142400605,44.59647788564564,44.59654369442332,44.59657800317316,44.59664254932036,44.59659604166232,44.59657712200516,44.59652957998296,44.59649104390273,44.59649769984664,44.59656767870636,44.59657297738278,44.59649023561369,44.59667019617311,44.59670638775267,44.59664918644632,44.59671383453065,44.59669914215425,44.59661140368305,44.59658960782667,44.59653998022426,44.5965180936253,44.59643960900602,44.59652720270881,44.59651947883386,44.59666497152805,44.59672034350088,44.59683022528856]}]],[[{"lng":[-91.51896064835536,-91.52893575226737,-91.5289213492313,-91.52891617364321,-91.52893437006971,-91.52894746485839,-91.52894952812601,-91.52894379137197,-91.52891778506272,-91.52892030822629,-91.52890771004181,-91.52895201083493,-91.52892375198557,-91.5289020367902,-91.52888838061487,-91.52885886435938,-91.52892430698719,-91.52891865742987,-91.528913114357,-91.5289219059225,-91.52895744642191,-91.52899570838015,-91.52897632134534,-91.5289638671353,-91.52897468770563,-91.52897034097414,-91.52896497688232,-91.5289373786331,-91.52894792150387,-91.52895475633993,-91.52898697338672,-91.52901268922776,-91.52898394898199,-91.52899305393581,-91.52895725190832,-91.52888997038779,-91.52891599566335,-91.52892598863036,-91.52894232141809,-91.52894392714506,-91.52894642088708,-91.52896290029923,-91.52898158044168,-91.52902203458805,-91.5290405686784,-91.52902114337289,-91.52899952155126,-91.52900232545758,-91.52901541241667,-91.52903498088857,-91.52903263141778,-91.52906837774752,-91.52905471331022,-91.52909636373479,-91.52912330158809,-91.5291736200938,-91.52922422909103,-91.52922677118825,-91.52922917716921,-91.52920173310189,-91.52913490636998,-91.52902986373093,-91.52895053805723,-91.52892897247845,-91.52891569258803,-91.52894092826993,-91.52895233718992,-91.52896243602837,-91.52896649881552,-91.52900862954982,-91.52904209837891,-91.52909201378873,-91.52914957073355,-91.52916747025024,-91.52914040684581,-91.52909786399933,-91.52903490248652,-91.52906041189861,-91.52906101981637,-91.52908062063541,-91.52908270660235,-91.52909102938776,-91.52911052529286,-91.52911867225619,-91.52913690745169,-91.52906938904931,-91.52900165952202,-91.52896963851011,-91.52889634004643,-91.52881735541179,-91.52879521347685,-91.52876770392089,-91.52874792889756,-91.52879173267392,-91.52886356120047,-91.52888996727665,-91.52893333841372,-91.52899990079696,-91.52905432395349,-91.52907384841477,-91.52910014372799,-91.52910173544112,-91.52913361333796,-91.52916473600509,-91.52916043998037,-91.52919725510544,-91.52924007790854,-91.52925993119598,-91.5292971755398,-91.52930522494425,-91.52935470931784,-91.52942060497892,-91.52944658057152,-91.52943724629198,-91.52945184869039,-91.52943586592394,-91.52946076579185,-91.52947548317098,-91.52949415813011,-91.52948987514773,-91.52945234255483,-91.52943744702316,-91.52940560926325,-91.52938877516463,-91.52936885463788,-91.52934260617326,-91.52934369761694,-91.52934467910593,-91.52935979775131,-91.52935845478014,-91.52938082168447,-91.52937558326819,-91.52938923092063,-91.5294083482347,-91.52939807623216,-91.52938715434989,-91.52939458429569,-91.5294294544522,-91.52943162942483,-91.5294403717923,-91.52944922057706,-91.52949331919724,-91.52946243210133,-91.52951179733664,-91.52951099709556,-91.53113463004459,-91.53209332262151,-91.53209642447757,-91.53210130623128,-91.53211149284942,-91.53227031355328,-91.53288310206504,-91.53384037603423,-91.53423610493755,-91.5347019174947,-91.53553414215814,-91.53653052044005,-91.53688906854437,-91.53709765470427,-91.53720120921692,-91.53723969006442,-91.53709731256973,-91.53647820148059,-91.53630053448651,-91.53615305771086,-91.53614834549444,-91.5362793318596,-91.53638946733271,-91.53668420429766,-91.53697501208164,-91.53762878334332,-91.5382204345949,-91.53855173950761,-91.53869395604036,-91.53856463826924,-91.53834113072084,-91.53789411950149,-91.53712544473539,-91.53595382059456,-91.53562331795024,-91.53520058419227,-91.53498817272963,-91.53468845756227,-91.53444274288925,-91.53423726139052,-91.53412500972156,-91.53414166846174,-91.53428353431978,-91.5345002058675,-91.53482526640394,-91.53561978352859,-91.53640163725436,-91.53705160423414,-91.53807710666725,-91.53840919049924,-91.53868087469401,-91.53894341510895,-91.53913220135138,-91.53938847292989,-91.53958385484016,-91.53975336106215,-91.53967101753597,-91.53924679862897,-91.53887448488761,-91.53863788919061,-91.53873697282638,-91.53888276894997,-91.53912165892062,-91.53978828121458,-91.54055476428405,-91.54145886153474,-91.54212662316303,-91.54256560600093,-91.54293600216062,-91.54318356608329,-91.54370382186406,-91.54433480499048,-91.54475205113697,-91.54496240956874,-91.54522582668488,-91.54586489914668,-91.54655820717475,-91.54749341564944,-91.54813387222408,-91.54893114530844,-91.54959901616633,-91.55004282802501,-91.55034358605273,-91.55059978900746,-91.55075824200517,-91.55101042476659,-91.55117398282397,-91.55138070716748,-91.55143982526536,-91.55149167457446,-91.55139366464424,-91.5512586343675,-91.55110360127301,-91.55108323540834,-91.55131640722054,-91.5515174624167,-91.55176351048974,-91.55216390927872,-91.55270227145189,-91.5530315181162,-91.55327498130906,-91.55324022839456,-91.55337855809528,-91.55359875652722,-91.55409611333219,-91.55450063966443,-91.55481497962633,-91.55522490726206,-91.55550012674357,-91.55565587927039,-91.55581433127993,-91.55597215485199,-91.55595766382687,-91.55598431280156,-91.55611849830477,-91.55634972767153,-91.55652268908518,-91.55679874955602,-91.55742289811306,-91.55778378744074,-91.55821235440597,-91.55863129411078,-91.55946814512501,-91.56002256584318,-91.5602758485135,-91.56101348916191,-91.56206004452136,-91.56238453393871,-91.56263847255806,-91.56281588922921,-91.56306281068358,-91.56336791160153,-91.56344325994915,-91.56348273573442,-91.56340281053934,-91.56322961475672,-91.56276431323953,-91.56230258664057,-91.56201034550969,-91.56167507916433,-91.56147063384003,-91.56141710219762,-91.56143235409914,-91.56155512101117,-91.56184298810675,-91.56222042467586,-91.56296906501959,-91.56371496463308,-91.56436381705313,-91.5651428041437,-91.56590567727739,-91.56675824705016,-91.56759267024306,-91.56791614388553,-91.56818509878939,-91.56825911606849,-91.56815442205983,-91.56780411569201,-91.56737023569976,-91.56685451143471,-91.56648505986344,-91.56625689652677,-91.56611873724822,-91.56617081116602,-91.56629034829105,-91.56660595287127,-91.56684687348222,-91.56704210488147,-91.56719136055447,-91.56746919528413,-91.56783496963469,-91.56815074066198,-91.56895134337894,-91.56961199151259,-91.57066075501996,-91.57093457064072,-91.57125502415016,-91.57141935269745,-91.57159197930153,-91.57164254454622,-91.57164863699465,-91.57167321860126,-91.57179904520675,-91.57203792452434,-91.57253124602579,-91.57280435456863,-91.57314411713492,-91.57335806152069,-91.57343189622082,-91.57339552727896,-91.57344719377625,-91.57354633130255,-91.5737870687705,-91.57409604741305,-91.5742746334422,-91.57450389240915,-91.57474549649086,-91.57505329982791,-91.57538804594294,-91.5757343729308,-91.57614654343503,-91.57681007729532,-91.5776122357172,-91.57799011759349,-91.57854892146207,-91.57931854447264,-91.58024939939922,-91.58053158415373,-91.58104319255864,-91.5818526152112,-91.58229267975152,-91.58253695302798,-91.58260384676657,-91.58252776088429,-91.58237425740042,-91.58208021909945,-91.58164017827126,-91.58125948099344,-91.58107044725354,-91.58073160033435,-91.58025125794192,-91.58024317782164,-91.58028526698104,-91.58039556547357,-91.58090303545087,-91.5816075637408,-91.58262535377693,-91.58342220005296,-91.5836538663424,-91.58386779045254,-91.58400771317548,-91.5840915076228,-91.58406178902442,-91.58408227941914,-91.5842548721776,-91.58460013379852,-91.58538974441187,-91.58595235431727,-91.58608835149801,-91.58628531058646,-91.58652987430206,-91.5868609139186,-91.58737175292924,-91.58785126610942,-91.58805640852437,-91.58842283063758,-91.58873280562163,-91.58956562574178,-91.58977300757083,-91.5898297676391,-91.58989955274298,-91.59038845949055,-91.59124857319306,-91.59186936985846,-91.59228863538294,-91.59279448911433,-91.59297565452876,-91.59309346949642,-91.59300202142676,-91.59292480549473,-91.59292954165502,-91.59299986620238,-91.5930749047435,-91.59320475820934,-91.59340557230283,-91.59357282465963,-91.59410444256623,-91.59426156459219,-91.59426961941571,-91.5943542014345,-91.59446824266112,-91.59467958115356,-91.59534252107669,-91.5961529223174,-91.59700794891488,-91.59761539552701,-91.59820242005596,-91.59871650680491,-91.60026780183453,-91.60064894419958,-91.60105029050025,-91.60121678565251,-91.6013247237188,-91.60136021818421,-91.60144388776121,-91.60141926779491,-91.60139274418874,-91.60143694692994,-91.60160154484733,-91.60195947218902,-91.60219690841082,-91.6023582725654,-91.60255041916517,-91.60265712173226,-91.60269872720123,-91.60282033743812,-91.60298811165498,-91.60354043631278,-91.60398808667216,-91.60453927231644,-91.60488397761372,-91.60527888946483,-91.60559151657264,-91.60642810703889,-91.60715219445061,-91.60745322764825,-91.60790218978586,-91.60811214352874,-91.60833244714732,-91.60848356379908,-91.60849399589911,-91.60825147528104,-91.60786137361738,-91.6073514705941,-91.60692967610174,-91.60645767691258,-91.60621960724903,-91.6057951216394,-91.60551704174557,-91.60507126889061,-91.60448425674332,-91.60422552915816,-91.60399829588624,-91.60383720091181,-91.60376501082598,-91.60360594004023,-91.60349975959922,-91.60328419716224,-91.60290906785802,-91.60247300232334,-91.60205686526561,-91.60168370687101,-91.60154138584021,-91.60132681613389,-91.6009577502538,-91.60062017044076,-91.60021707627146,-91.59994350159145,-91.5998251572954,-91.59947430974091,-91.59942998374439,-91.59951817952756,-91.59981198967566,-91.600047626258,-91.60037554060658,-91.60039107157603,-91.6003596053648,-91.6001130797241,-91.59995036200374,-91.59965594036284,-91.59932434113352,-91.5992057114544,-91.59910741677101,-91.59905141544336,-91.59899904929001,-91.59901989086705,-91.59908125316508,-91.59922075662739,-91.59934685504366,-91.59940315705589,-91.59937684766417,-91.59931760555178,-91.59911986815675,-91.59903384798709,-91.5988344591911,-91.59866878520596,-91.59838726725478,-91.59817306735019,-91.59789448882873,-91.59728990709372,-91.59725765825833,-91.59724534845077,-91.59726176364067,-91.59737418932679,-91.59778515813167,-91.59786041092879,-91.59779170855498,-91.59772465427122,-91.59761739953684,-91.59749435761212,-91.59709058287036,-91.5966327482739,-91.59646084231936,-91.59641338343565,-91.59640116206515,-91.59643403824388,-91.59649857163113,-91.5966366911764,-91.59676654342286,-91.59728470880948,-91.59759954674733,-91.59808922352859,-91.59825249580312,-91.59850471624122,-91.59871555774781,-91.59881811839027,-91.59891700433083,-91.59896072492073,-91.59897317690456,-91.59890882913474,-91.59884054420144,-91.59874579106511,-91.59859186969314,-91.59856119916701,-91.59855460645574,-91.59856198756162,-91.59859589192949,-91.59870225971797,-91.59889366028133,-91.5991321103173,-91.59944581790501,-91.6002030016608,-91.6009947587773,-91.60171212176363,-91.60206725069212,-91.60248800398294,-91.60298463569225,-91.60331263670575,-91.60357266846091,-91.60377248461501,-91.60396125793777,-91.60405824473776,-91.60413177230203,-91.6042528382316,-91.6043788220119,-91.60446352448896,-91.60466773433194,-91.60475464816514,-91.60517957383901,-91.60566096753625,-91.60594172328776,-91.60624257974231,-91.60657287573122,-91.6073393760915,-91.60755200648413,-91.60814823424909,-91.60866144850175,-91.60899338105612,-91.60916817117375,-91.60942722183459,-91.60954353467096,-91.60971665771831,-91.60998796798559,-91.6102164565409,-91.61038452769155,-91.61074674937903,-91.61105025063993,-91.61125258259769,-91.611445485576,-91.61158529425671,-91.61177748543594,-91.6119553172031,-91.61220814802687,-91.61241623899427,-91.61256292273762,-91.61265866334656,-91.61276610513823,-91.61282409616628,-91.61283493103249,-91.61284204464117,-91.61281656671336,-91.61277781225554,-91.61257168289519,-91.61244932191998,-91.61229571289407,-91.61223922948525,-91.61210677421707,-91.61207337890103,-91.61211919162426,-91.61211088325226,-91.61210423677159,-91.61211381041409,-91.61217797253195,-91.61220463482117,-91.6121938553531,-91.6121290797609,-91.61202322157051,-91.61188195488106,-91.61160360079519,-91.61105549768159,-91.61026297980264,-91.60963661082683,-91.60902601478088,-91.60864014903878,-91.60783839087418,-91.60750456543734,-91.60650142802484,-91.60638474101484,-91.60641365666227,-91.60655503990125,-91.60673590320005,-91.60697152554694,-91.607182754005,-91.60716377295081,-91.60660310866739,-91.60564963835172,-91.60538593330106,-91.60505667759533,-91.60486631735751,-91.60426553332233,-91.60371826641979,-91.60345324107411,-91.60330157475569,-91.60280353756059,-91.6025517822322,-91.60238976814513,-91.60225987518545,-91.60215261493676,-91.60211640752664,-91.60216042105122,-91.60223810132433,-91.60241301944828,-91.60237031646541,-91.60216805080556,-91.60182827302643,-91.60144874623887,-91.60096471224624,-91.60083964200108,-91.60058221753314,-91.60036371910614,-91.60008618767745,-91.59969718129676,-91.59921283373531,-91.59888599499439,-91.59862520567401,-91.5985650437357,-91.5983083992723,-91.59807392085196,-91.59779475134437,-91.59715238149256,-91.59692689194317,-91.59650904435171,-91.59632361035055,-91.59603418961674,-91.5957203815326,-91.59562088868866,-91.59556271764002,-91.59560549549782,-91.59573977439965,-91.5957789621077,-91.59573277405539,-91.59520733555658,-91.59501342869623,-91.59479419469521,-91.59443657062552,-91.5941160194361,-91.59290442365304,-91.5921499472082,-91.59183121871378,-91.59158280222006,-91.59156851239688,-91.59185052171068,-91.59173748006027,-91.59158889345075,-91.59127500494009,-91.59106001756662,-91.59049478576902,-91.59023649386116,-91.59002020251359,-91.58972962245566,-91.58936831830401,-91.58907888696449,-91.58895513814807,-91.58918915803133,-91.58939424358564,-91.58964289578952,-91.58996763306132,-91.59025892031231,-91.59062028863138,-91.59071971430686,-91.59073073795118,-91.59055533520106,-91.59026741032017,-91.58989183593413,-91.58956596432063,-91.5890780498784,-91.58863315723738,-91.58839444496201,-91.58812695324833,-91.58785726203408,-91.58779550482997,-91.58782660597925,-91.58796408655412,-91.5881497338677,-91.58851450379052,-91.5886201728604,-91.58863408515184,-91.588540815409,-91.58827059338334,-91.58810730133375,-91.58788062480403,-91.58753557865731,-91.5873596461651,-91.58720202721118,-91.58711717280023,-91.58705332215862,-91.58661409603197,-91.58636149441776,-91.58614474676826,-91.58586332484076,-91.58567587391333,-91.58553654082539,-91.58529864528269,-91.5850359914967,-91.58460742863161,-91.58346456745883,-91.5830334068886,-91.58241946310126,-91.58203735443803,-91.58158556414044,-91.58106604556309,-91.58001333038759,-91.57955802019208,-91.579254694921,-91.57885721871018,-91.57856243148291,-91.57844240813473,-91.57821643415507,-91.57804492003032,-91.57771356411889,-91.57742668338918,-91.57710422478642,-91.57681275425871,-91.57658438210613,-91.57632477446055,-91.57621887962107,-91.57619640482153,-91.57621323372443,-91.57632390420063,-91.57636411407474,-91.57631945901623,-91.57604659373331,-91.57585278526871,-91.57512582076171,-91.57472800704429,-91.57458231062871,-91.57458691247194,-91.57449516736069,-91.57419848428313,-91.57392388610475,-91.57377152738569,-91.57366331717157,-91.57352638417341,-91.57349720488726,-91.573550213858,-91.57368962836841,-91.57366182800149,-91.57356080774868,-91.5733553744266,-91.5730759239508,-91.5726646537864,-91.57231291764411,-91.57212361690536,-91.57172212984354,-91.57130205503357,-91.57093808543037,-91.57071747998148,-91.57040536941405,-91.5703771141108,-91.57107337146822,-91.57145769540222,-91.57216161600824,-91.57235791023419,-91.57243503369229,-91.57243133804535,-91.5719487749973,-91.57159344971932,-91.57113511436296,-91.57086142580499,-91.57032247719341,-91.57012531225222,-91.56977081566218,-91.56963305482162,-91.56944821711413,-91.56930112592241,-91.56923214409761,-91.56907423049641,-91.56886402085753,-91.5686249255278,-91.56849500789575,-91.56827935445574,-91.56790902831236,-91.56772723638765,-91.56764956226684,-91.56773437654127,-91.56780436174287,-91.56778346097197,-91.56773213582464,-91.56756653065496,-91.5672589438411,-91.56698881156224,-91.56690737448189,-91.56657854189008,-91.56639545430468,-91.56623380245993,-91.56606211458967,-91.5658647875232,-91.56572411363344,-91.56560007153386,-91.56543550945331,-91.56518566921481,-91.56494496921185,-91.56339332058008,-91.56314729173307,-91.56296292441935,-91.56295983261302,-91.5628026979487,-91.56257194076291,-91.56237694749551,-91.56211773978023,-91.56192074478446,-91.56157318703541,-91.56125484634818,-91.56099039174842,-91.56074773791975,-91.5606053966812,-91.56034837733957,-91.56021386684741,-91.56003941906117,-91.55998566440728,-91.55996238793941,-91.5600441881988,-91.56002468941169,-91.55993685173887,-91.55967825165337,-91.55936068314166,-91.55895330789163,-91.55876564095215,-91.55865802817982,-91.55854639328068,-91.55851918498601,-91.55859541522784,-91.55870039268081,-91.55887048932509,-91.55888381239895,-91.55859499346634,-91.55850812689553,-91.55834460358582,-91.55816908016327,-91.55809737524433,-91.55806347581536,-91.55804284119316,-91.5580717094312,-91.55799888680788,-91.55794563655681,-91.55794744260312,-91.5577432741393,-91.55746527394861,-91.55729522008311,-91.55659666944572,-91.55582358052983,-91.55517798854532,-91.55432673999731,-91.55346975684186,-91.55319750866525,-91.5530457910191,-91.55293237554889,-91.55284874208449,-91.55268454381293,-91.55253795317898,-91.55221684537216,-91.55162057123158,-91.55120902733786,-91.55108114148736,-91.5508869141686,-91.55055970752362,-91.55029763077982,-91.54999439979912,-91.54979548666756,-91.54955334289107,-91.54931216501515,-91.54870009415485,-91.54863735981104,-91.54874734693458,-91.54894985651536,-91.54921127123002,-91.54932433726923,-91.54953370885123,-91.54965022412706,-91.54979282365555,-91.55000689758621,-91.5504079479179,-91.55087276442671,-91.55104590678251,-91.55116336550304,-91.55121631008734,-91.55118862383075,-91.55111240275617,-91.55096553654765,-91.55073114841328,-91.55057871522123,-91.55052166310104,-91.55055667127075,-91.55060246831782,-91.55075080711528,-91.55085861692886,-91.55102252632092,-91.55117618652852,-91.55140332547474,-91.55172419222534,-91.55239499895414,-91.55252563661455,-91.55257964675864,-91.55257508242934,-91.55245239570623,-91.5519962737588,-91.55171100876585,-91.55122927172356,-91.55134904729366,-91.55130282454235,-91.55118969512228,-91.5509017731939,-91.55016409403035,-91.5496675563319,-91.54942751741636,-91.5492122809396,-91.5483008281096,-91.54796530495604,-91.54758541808249,-91.547519465867,-91.54773741104563,-91.54808064049122,-91.54839939396729,-91.54853926684144,-91.54854907711163,-91.54851017947641,-91.54842391750319,-91.54788795934746,-91.54730086825784,-91.54695306944409,-91.5465446285599,-91.54611926964051,-91.54542417819007,-91.54478247439822,-91.54450384762902,-91.54432757933267,-91.54420668071072,-91.54413538451658,-91.54423370220391,-91.54407340419623,-91.54387585052294,-91.54362310692716,-91.54320649019651,-91.54293020892196,-91.54252466610684,-91.54196362824975,-91.5412390088357,-91.54079038352683,-91.54054100594873,-91.54009073329286,-91.53977089963774,-91.53944232849031,-91.53933110575565,-91.53925252593726,-91.53927797903614,-91.53955382142428,-91.53969307858573,-91.53991696978942,-91.54046865564499,-91.54082750194257,-91.54089203131338,-91.54070431303485,-91.53998022986876,-91.53934095089633,-91.53864199108585,-91.53806240983742,-91.53756331655057,-91.53722920715194,-91.53695293106206,-91.53663296122227,-91.53635970019616,-91.53614340554479,-91.53586225681619,-91.53566000457666,-91.53564640668678,-91.5357242824348,-91.53583383141299,-91.53591184862891,-91.53585266612338,-91.53525954266024,-91.53499502878888,-91.53459407269884,-91.53435146459699,-91.53426685543808,-91.53419040614622,-91.53418751582342,-91.53446157365988,-91.53491519033135,-91.5353193688927,-91.53541945118275,-91.53554444522619,-91.53568664301224,-91.53615439274473,-91.53652556370707,-91.5365764105844,-91.53641420976891,-91.53639313958159,-91.53640129051421,-91.5365288563189,-91.53676079268995,-91.53696706157767,-91.53720491400401,-91.53767630917753,-91.53798870328079,-91.53829879201079,-91.53852831949736,-91.53875157406002,-91.53883660405708,-91.53906758806821,-91.53942303582944,-91.53980561646175,-91.54016598432074,-91.54057616472707,-91.54087473877678,-91.54101769390925,-91.54104738067471,-91.5410195437228,-91.54092473202685,-91.54072566275208,-91.54067307141771,-91.54086777098736,-91.54114731590103,-91.54140897519117,-91.54161702045531,-91.54167165641638,-91.54153795899455,-91.54139511262332,-91.54130196399403,-91.54130072023754,-91.54129809460964,-91.541471535227,-91.54184480761649,-91.54229024681848,-91.54238140669638,-91.54239329665066,-91.5423963909482,-91.5423176041289,-91.54238534041487,-91.54251648523682,-91.54261867783124,-91.54295199237934,-91.5432483541032,-91.54332196935306,-91.54329139802918,-91.54314223732626,-91.54267775309748,-91.54217752164878,-91.54209038702496,-91.54211825236202,-91.54219978605563,-91.54235853108248,-91.54254356769229,-91.54284891400145,-91.54291811441922,-91.5428776088919,-91.54280333051892,-91.542573183798,-91.54230008286616,-91.54209964805234,-91.54177703631652,-91.54147879149751,-91.54090739228792,-91.5407062740161,-91.54045557673598,-91.54015129862663,-91.5399488323271,-91.53999914348906,-91.54011657186568,-91.54023215203628,-91.54033845645169,-91.54050859146777,-91.54085150749187,-91.54098277893341,-91.54115587959579,-91.54136449307401,-91.54159415610452,-91.5420731029492,-91.54223411581428,-91.54230156433219,-91.54226706426697,-91.54207905999442,-91.54157747902936,-91.54152190195946,-91.54153773004683,-91.54174081259882,-91.54195159911708,-91.54221501392804,-91.54257256986193,-91.54282659379074,-91.54300310527948,-91.54317704532507,-91.54332741910807,-91.54346358120191,-91.54362762639037,-91.54374821864793,-91.54380986198824,-91.54400831217563,-91.54421664575005,-91.54439869448817,-91.54471497011029,-91.54501811243976,-91.54508411484704,-91.54513474353826,-91.54521501251011,-91.54533396459196,-91.54555769488795,-91.54585199788532,-91.54599871628862,-91.54621810684999,-91.54635995474175,-91.54673378594599,-91.54711248098103,-91.54726851525538,-91.54746075723925,-91.54756146127423,-91.54765741367078,-91.54781219667292,-91.54796053182561,-91.54817333041458,-91.54861452287122,-91.54880540033132,-91.5488894435544,-91.54902265284869,-91.54911069943097,-91.54918113500628,-91.54931533314091,-91.54951674197051,-91.54964598308162,-91.54963274673294,-91.54946493472093,-91.54943795666479,-91.5494709291454,-91.54947689425516,-91.54950255420717,-91.54974291958779,-91.54979791069228,-91.5498599433903,-91.5499152150791,-91.54995572978736,-91.55009102612573,-91.55024525266131,-91.55046665714129,-91.55068358012473,-91.55109955103853,-91.55162888575686,-91.55307656364548,-91.55421835081424,-91.55494383773868,-91.55526186542822,-91.55565836991407,-91.55602608395478,-91.55642091731485,-91.55673045487634,-91.55709285632547,-91.55759077967173,-91.55822152059652,-91.55853369945888,-91.55857237241912,-91.55863262322596,-91.55873087063874,-91.55873039468779,-91.55871972509102,-91.55880214732963,-91.55886072317566,-91.55895160016509,-91.55912177818755,-91.55911377146293,-91.55904915143056,-91.55882394594092,-91.55861055528013,-91.55850700386249,-91.55830013480373,-91.55829471464715,-91.5584513831526,-91.55857218069032,-91.55872092770882,-91.55879195571666,-91.55872459013378,-91.55874347703731,-91.55881655056405,-91.55884685198359,-91.5590138413564,-91.55950457932131,-91.56016235433279,-91.56080447124405,-91.56203866762151,-91.5631742607184,-91.5637683166464,-91.56426834567725,-91.56467843639351,-91.56496643304104,-91.565279012573,-91.56606312627646,-91.56671720159592,-91.5673548442815,-91.56806325465226,-91.56874105269189,-91.56905754070925,-91.57002768584435,-91.57032063691754,-91.57064185775779,-91.57081328709475,-91.57087897875094,-91.57106762722827,-91.57109345999797,-91.57072287128254,-91.57080985757403,-91.5707915623306,-91.57065358536599,-91.57117820312362,-91.57131560782966,-91.57130282775816,-91.57120038929988,-91.57084992220949,-91.56993088200649,-91.5692717880342,-91.56876099339381,-91.5682278490774,-91.56740488885819,-91.56632156964997,-91.56565053818954,-91.56488515102497,-91.5643261579381,-91.56384263578184,-91.56288174233407,-91.5617352223999,-91.56109896246107,-91.55966451103201,-91.55764896397078,-91.55650984931461,-91.55601639558466,-91.55593358492611,-91.5562559332692,-91.55695116739352,-91.55780222837643,-91.55904402916252,-91.55828069391045,-91.55688213872176,-91.55597940389278,-91.55448403678722,-91.55212008111786,-91.55016075227869,-91.54848902693925,-91.54719030847207,-91.54548838618248,-91.54276683750508,-91.54041712518217,-91.53904147915601,-91.53688338781022,-91.53394589294381,-91.53135230818033,-91.52880925194289,-91.52651149188989,-91.5247996899426,-91.52318262495186,-91.52151503031389,-91.52043664849877,-91.51847155843019,-91.5167025515844,-91.51434166906412,-91.51271924364093,-91.5107992468821,-91.50853358910966,-91.5069558670121,-91.50582038614426,-91.50458351220989,-91.50364792217231,-91.50319286565299,-91.50208611677118,-91.50129189491932,-91.50000052551569,-91.4990670917342,-91.49819213557168,-91.49751741971195,-91.49672472998185,-91.49583423211135,-91.49507222011111,-91.49256878009666,-91.48704499957378,-91.48393768669435,-91.48142425472146,-91.48034361845087,-91.4795999142983,-91.47868327042413,-91.47766119557691,-91.47418009337365,-91.47060249523328,-91.46921008115345,-91.46806060974501,-91.46726050023733,-91.46614509423036,-91.46522355308576,-91.46402848354502,-91.46347864782365,-91.46263055793109,-91.46204769283848,-91.45926381703431,-91.45731031441412,-91.45601096189365,-91.45375893811401,-91.45061059056786,-91.44604304814213,-91.44348914731458,-91.441878206879,-91.44067891632903,-91.43989160382861,-91.43864786735482,-91.43737124526092,-91.43602267686909,-91.4341781620296,-91.43314658465269,-91.43207397743609,-91.43127458369966,-91.43083268289998,-91.43034074122879,-91.42973759998596,-91.42900875500109,-91.42805411340822,-91.42758536919506,-91.42660824452234,-91.42625742604706,-91.42593956224194,-91.42559138229709,-91.42535505399678,-91.42272681302872,-91.4210256218863,-91.41893051465368,-91.41639155494055,-91.41311486174584,-91.4121729371667,-91.41097457399339,-91.40944163130166,-91.40794260082565,-91.40592219387732,-91.40089319829731,-91.39926479432779,-91.39586419238046,-91.39121549592382,-91.38589612822204,-91.38369700626674,-91.38087719074953,-91.37898695809683,-91.3758661908753,-91.3752142945486,-91.37089670271423,-91.36585245170768,-91.36085419277133,-91.35585564140391,-91.35085748233209,-91.34588489363435,-91.34102876891247,-91.33594039137922,-91.33099066928533,-91.32589482942097,-91.3240471106859,-91.32273749223997,-91.32206417691256,-91.3222149222926,-91.32217820324995,-91.3221470494825,-91.32209369729327,-91.32180092824636,-91.32164573163574,-91.32156020253461,-91.321483326066,-91.32149891896434,-91.32162923252901,-91.32172533195676,-91.32187649571232,-91.32213308712858,-91.32261894815711,-91.32292346565357,-91.32318907822487,-91.32357009366032,-91.3238556039249,-91.32407190452501,-91.32507981538133,-91.32593728972348,-91.32680632940657,-91.32720077846903,-91.32761565422743,-91.32832686474626,-91.32856290692328,-91.32877422118773,-91.32886597147579,-91.32901934958184,-91.3290780403279,-91.32921961503952,-91.32930619898538,-91.32981057933695,-91.32992772343151,-91.32967370710027,-91.32907479684371,-91.32873409373389,-91.32834612630255,-91.32820550143855,-91.32822915887179,-91.32870026375515,-91.32919280054637,-91.33097275432516,-91.33206994460568,-91.3332873880544,-91.33381498473528,-91.33451176729717,-91.33561685792378,-91.3368026764835,-91.33729043975192,-91.33789077619711,-91.33819251377706,-91.33830528833694,-91.33823272251044,-91.33811592086413,-91.33786174188725,-91.33735935888873,-91.3371021382618,-91.33699915645097,-91.33696907247011,-91.33700975317352,-91.33711362175528,-91.3373368837584,-91.33799809393281,-91.33855006980289,-91.33901413912292,-91.33944411516553,-91.34094156122552,-91.34163764126335,-91.34267236845334,-91.34306945030102,-91.34360004698802,-91.34397219007343,-91.34444946392976,-91.34470407283362,-91.34463095029236,-91.34434987895952,-91.34393303571119,-91.34376279245092,-91.34360606950042,-91.34338487392233,-91.3430562644745,-91.3428238924086,-91.34232801993841,-91.3420022212905,-91.34159293231171,-91.34103797323174,-91.34055116846524,-91.34024220003556,-91.34018221081183,-91.34017068372101,-91.34031915673155,-91.3405977005774,-91.34077788503893,-91.34092592523642,-91.34097360422659,-91.34091576157876,-91.3405150174983,-91.3401963674725,-91.33991805081067,-91.33922821892244,-91.33886240574884,-91.3385819531685,-91.33845337287539,-91.33844404413948,-91.33866446327335,-91.33891850116922,-91.33926471312674,-91.33962304849631,-91.33997133795054,-91.34007596595534,-91.34009522409275,-91.33990978533606,-91.33963645560739,-91.33935843114664,-91.33901782767006,-91.33825357284383,-91.33740255499544,-91.33657176859435,-91.3358771179945,-91.33494685575459,-91.33422394475353,-91.3337384440038,-91.33362105587652,-91.33345495424058,-91.33303374487618,-91.33272645826258,-91.33126841112809,-91.33011268613208,-91.32913302512657,-91.32825346448436,-91.32781457563564,-91.32795662552491,-91.32884640148309,-91.32937746858104,-91.33026320203135,-91.33122275850364,-91.33164579960233,-91.33205774188059,-91.33231300631482,-91.33238493114874,-91.33221171793669,-91.33197045707213,-91.33166409986114,-91.33121691066668,-91.33042523361107,-91.32990597864098,-91.32935448307784,-91.32887774846193,-91.32839519066032,-91.32805128904394,-91.32726862935372,-91.32670630113445,-91.32618773556395,-91.32547208018836,-91.324816076019,-91.32411709051296,-91.32342434093889,-91.32238355843045,-91.32177548576672,-91.32133287602187,-91.32075823312528,-91.3198518481592,-91.31938922912252,-91.31888655853939,-91.31854446465609,-91.31769094901215,-91.3172021302781,-91.31701025247133,-91.31696124478948,-91.31686690339788,-91.31655173899628,-91.31609751611535,-91.31583143615241,-91.31546058566158,-91.31470171174804,-91.31398132771798,-91.3137383620918,-91.31344419615061,-91.31321434956128,-91.31285536889241,-91.31251957450239,-91.31240341816003,-91.31207157392858,-91.31187062440657,-91.31145398415156,-91.31031537192742,-91.31010562366835,-91.30982798509289,-91.30965637222909,-91.30922060793245,-91.30863022990681,-91.30777605448843,-91.30709210481436,-91.30606075994567,-91.30535068261992,-91.3047020097937,-91.30387662810421,-91.30302322935964,-91.30196433472827,-91.30127839289935,-91.30047960083058,-91.29977993395998,-91.29896775187882,-91.29829644625144,-91.29758250254703,-91.29547431602944,-91.29395316476325,-91.29240137205426,-91.29125330832575,-91.2897728768796,-91.28893888836919,-91.28723444580152,-91.28624587692497,-91.28554090238276,-91.28469616349503,-91.2842846059378,-91.28392808991508,-91.2836028705251,-91.28290556408345,-91.28237812168597,-91.28162717032345,-91.28076478529729,-91.27966509904888,-91.27911626283483,-91.27863125061104,-91.27802847856046,-91.27764435221889,-91.27703353220188,-91.27603256269647,-91.27542161355397,-91.27435812041638,-91.27405027511408,-91.27382065945415,-91.27349047530937,-91.27213243013325,-91.27167256974539,-91.27113741407106,-91.27066686336023,-91.27038112263457,-91.27025566385785,-91.26999027092435,-91.26957704442852,-91.26905592591739,-91.26849844067539,-91.267784369663,-91.26713111144541,-91.26631131927118,-91.26570264644513,-91.26513531539912,-91.26443197331503,-91.26421742134649,-91.26396965840668,-91.26377692052483,-91.26356919518133,-91.26323627569671,-91.26220469340137,-91.2613273968371,-91.26014527676013,-91.25920942321662,-91.2585404053422,-91.25749325689885,-91.25660273373923,-91.25615648568436,-91.25573870252029,-91.25514538349211,-91.25490043711955,-91.25470569119621,-91.25441491521518,-91.2540064897285,-91.25353585678887,-91.25308932872461,-91.25254703801761,-91.25209577037614,-91.25123705356509,-91.25051324428493,-91.24994277883383,-91.24931403769465,-91.24880048244074,-91.24820276715673,-91.24764213068264,-91.2462171101906,-91.24534931400333,-91.24419109510711,-91.24342815240803,-91.24267969977397,-91.2414254910713,-91.24050517080663,-91.23958844453193,-91.23859731955058,-91.23760713708535,-91.23679242101565,-91.23571455634246,-91.23473207348408,-91.23390281691063,-91.23312897395191,-91.23241768625418,-91.23176265190155,-91.23085792592764,-91.22960937288788,-91.22816711011011,-91.22675890400158,-91.22607245149726,-91.22474571762994,-91.2234501640886,-91.22283027867633,-91.22219024543921,-91.22138027177877,-91.22115140939673,-91.22098459619961,-91.22093009975814,-91.22091935081458,-91.22108125659675,-91.22132497415241,-91.22127225425081,-91.22118440455581,-91.22105434392351,-91.22066322335213,-91.2196895946622,-91.21850290634791,-91.21727691796374,-91.21652143340997,-91.21614390944212,-91.21596579633531,-91.21608332148982,-91.21631648388943,-91.21668763204532,-91.21744940122323,-91.21745421758662,-91.2169297312914,-91.21641098500636,-91.21591901824912,-91.21526465816784,-91.21466832125826,-91.21425256065211,-91.21405365411709,-91.21370241988464,-91.21276535453048,-91.21224196381084,-91.21189414845277,-91.21142926600187,-91.2105396769108,-91.2097430631577,-91.20941234578784,-91.20913138688262,-91.20883061378166,-91.20866074645477,-91.208291268586,-91.20810485465681,-91.20802569841248,-91.20804034720076,-91.20818768916367,-91.20840105670831,-91.2084640180917,-91.2084257219593,-91.20826877703735,-91.20771214807941,-91.20640722687062,-91.20533774574922,-91.20447503263421,-91.20324187419699,-91.20231789363183,-91.2012840329695,-91.20079076188854,-91.20016875548419,-91.19980458909886,-91.19959158031656,-91.19952526636555,-91.1996874400578,-91.19970578733154,-91.19962204979618,-91.19961461559815,-91.19937256143203,-91.1992011323883,-91.19896016731897,-91.19871899771893,-91.19877267973247,-91.19895298951849,-91.19934497390881,-91.19955180158433,-91.19993605906687,-91.20034322749152,-91.20095626269594,-91.20142880143798,-91.20149617023192,-91.20142408330307,-91.20089327215301,-91.2006312931568,-91.19985066200442,-91.19913631271676,-91.19847619856654,-91.19823192713787,-91.19780952066911,-91.19743001987889,-91.19685960569963,-91.19635014448619,-91.19580833487107,-91.19494715271529,-91.19403356236333,-91.19335780834712,-91.19318176256809,-91.19222145713051,-91.19155337123048,-91.19112449261733,-91.19072740990701,-91.19034048448205,-91.19013698267597,-91.1897235807543,-91.18916843290316,-91.18801346561311,-91.18761887598214,-91.18701536650215,-91.18680699209979,-91.18645946070001,-91.18628069685131,-91.18621023407722,-91.18614672076764,-91.18622000246914,-91.18643419544091,-91.18698082622301,-91.18743219000714,-91.18754665554,-91.18742911621602,-91.18729775527272,-91.18703875539579,-91.18640070350092,-91.18567985607764,-91.18442472897107,-91.18308295848611,-91.18152832598079,-91.18089313142697,-91.180217743555,-91.17919321323689,-91.17717549951205,-91.17642090643943,-91.1750154221574,-91.1743066318346,-91.17409681340366,-91.17367944887594,-91.17295897521352,-91.17263480020756,-91.17219667185488,-91.1715258481959,-91.17050322976228,-91.16971762285472,-91.16936613077637,-91.16913372592018,-91.16871992089585,-91.16864218769788,-91.16816884416789,-91.1680102407212,-91.16788694421469,-91.16795348245665,-91.16811724261069,-91.1682588480937,-91.16804828446681,-91.16741421428772,-91.16679741790367,-91.16648661266929,-91.16615798126192,-91.16570424229579,-91.164043953858,-91.1626355393804,-91.16197582523677,-91.16090906532368,-91.16007832256142,-91.15892020108524,-91.15839137591284,-91.15804329689209,-91.15707406677178,-91.15607691432211,-91.15557755619942,-91.1545394113826,-91.15384329177756,-91.15337720449651,-91.15303837933131,-91.15242508357558,-91.15198828480689,-91.15200938126958,-91.15204500094215,-91.15209795793052,-91.15215092048942,-91.15219140301409,-91.1522338386178,-91.15224724292626,-91.15225752775933,-91.15220533639399,-91.15215353845947,-91.15212227897453,-91.15209219126292,-91.15207108942553,-91.15206366374429,-91.15200744897432,-91.15206414565083,-91.15211967530291,-91.15217522354023,-91.15224623937792,-91.1523188300996,-91.15239807724106,-91.15249543666654,-91.15255661320427,-91.15252543138426,-91.15261683468341,-91.15262191991471,-91.15260324612024,-91.15271847638256,-91.15294886348643,-91.15314508348109,-91.15356474709759,-91.16555247578346,-91.16584510953402,-91.16598046720993,-91.16607471721473,-91.1660548316102,-91.16611076663204,-91.16630573409422,-91.16624917524169,-91.16598671482615,-91.16599057259485,-91.16587801324691,-91.16583424555255,-91.16572691377191,-91.16551816686352,-91.16548521913273,-91.16539295891776,-91.16516244984146,-91.16497498044434,-91.16493443031213,-91.16471235711367,-91.1647221112375,-91.16483231860764,-91.16499597689024,-91.165024049476,-91.16517022393931,-91.16518076297726,-91.16516025141033,-91.16530198488134,-91.16553150663509,-91.16580282098711,-91.16610569844779,-91.16602774067815,-91.16581089849709,-91.16573309923938,-91.16575272886048,-91.16572573464759,-91.16571002180022,-91.16573671904601,-91.16564126112311,-91.16558650775687,-91.16561291389721,-91.16558473260876,-91.17055702158184,-91.17579769608747,-91.18087459770896,-91.18605445306008,-91.19406574624126,-91.20123588170128,-91.206312143555,-91.21142761523095,-91.21649700087791,-91.22156952997749,-91.23153420920781,-91.23667642941352,-91.24682142735874,-91.25018982797998,-91.25736384693039,-91.26709102228749,-91.28658941937543,-91.29671735439102,-91.30680442539222,-91.31534387915751,-91.31681865453042,-91.32700668096886,-91.34716057750735,-91.3561848232372,-91.35719821335191,-91.36724929169668,-91.37735676937483,-91.37827853802177,-91.39760357793388,-91.40757367204267,-91.41772625228764,-91.42790509459191,-91.43289174602589,-91.43800827034393,-91.4431261961907,-91.44798998034518,-91.45709272089664,-91.45800647718707,-91.46304593008192,-91.46779657470762,-91.47291823161572,-91.47811933012495,-91.48329649945775,-91.48825380218194,-91.49355077924751,-91.50014865513367,-91.50887874560955,-91.51896064835536],"lat":[44.59617595160157,44.5961963055812,44.59457076045571,44.59139335803843,44.5865738479818,44.58349671540256,44.58029687269193,44.57709713031931,44.57237872211498,44.56919561764071,44.56767126274789,44.56295190284396,44.55978596315832,44.558211467562,44.55500623889661,44.55343184590415,44.55026464425008,44.54870668317835,44.5455125091733,44.54390968046009,44.54079313177457,44.53912289694558,44.53599591422776,44.53283532917516,44.52966884821662,44.52651932450183,44.52333071794434,44.52018708007031,44.51700942918968,44.51398818708305,44.51238503706119,44.50919042312125,44.50600212176187,44.50441044684672,44.501250161754,44.49807912571585,44.49489566793991,44.49333748880473,44.49172337527565,44.49014296907589,44.48695423835755,44.48534570688776,44.48217909370319,44.48059257976217,44.47742038339265,44.47428778456113,44.47271327059305,44.46953569504824,44.46645291499,44.46331978841986,44.46024279765395,44.45713179299592,44.45556274711969,44.45237906102626,44.44922907255988,44.44607877241759,44.44293963458946,44.43975087985794,44.43655654014485,44.43341285995514,44.43025295188355,44.42712147595782,44.42407900372435,44.42250447606618,44.41930474916681,44.41608775733643,44.41293796058797,44.40973791932415,44.40660497196321,44.40343800590558,44.40023764615471,44.39707057497604,44.39389781341877,44.39069765713145,44.38756511621448,44.38279093873815,44.37865747816848,44.3762924047718,44.37508921534872,44.37272005752914,44.37034696933004,44.36799045080503,44.36561712826526,44.36448044738476,44.36328534514976,44.36091318892949,44.35853270295003,44.35741321208422,44.35504112539342,44.35267328149409,44.3514870455223,44.3503175322825,44.34799468686894,44.34566266633314,44.34329279494619,44.3409610024582,44.33861232958991,44.33626334713315,44.3338937080736,44.33152037134033,44.32918441119686,44.32679049695079,44.32444613709023,44.32207264260275,44.32090281422053,44.31852507750811,44.31615558562662,44.31379472903992,44.31143363622648,44.30906460965948,44.30672833341544,44.30435436329765,44.30200591101005,44.29963710934095,44.29729713622269,44.29612329256137,44.29373321788882,44.292625580848,44.29021893203336,44.28904909619075,44.28670981480228,44.28434940916048,44.2820058850446,44.2807987448101,44.27846755185968,44.27611562314262,44.27492906191945,44.27373833606942,44.27242252055484,44.27013687226196,44.26787171917375,44.26666442147377,44.26551516065848,44.2643533317915,44.26317524613714,44.26197218767489,44.26080635545588,44.25958186546059,44.25843691675135,44.25609283806085,44.25375292232292,44.25120852746538,44.24912310787194,44.24667023233931,44.24663935725052,44.24663743352643,44.24663293718076,44.24644114193955,44.24620507005791,44.2454647609032,44.2454348908551,44.24561569384759,44.24577119071241,44.24588074758185,44.24603724868211,44.24643955099061,44.24683373559327,44.24687355424022,44.24681263990624,44.24671247577754,44.2463691259041,44.24619405550652,44.245771173995,44.24553632301961,44.24527640470184,44.24496892970917,44.24476079615304,44.24460543021944,44.24443876849113,44.24433794502899,44.24419919209181,44.24388406162101,44.24335387381367,44.24282032395943,44.2422727127078,44.24195276757234,44.24176783456178,44.24159506521758,44.24140998982015,44.24141118799485,44.24151463070607,44.24154174979715,44.2415167227662,44.24144211672691,44.24126131057967,44.2409147534727,44.24069315448116,44.24037508352406,44.24018281627,44.24003701287088,44.23994067884615,44.23998923624914,44.24002184020654,44.23996077898591,44.23991233066482,44.23979245857277,44.2396320361257,44.23945923581978,44.23888870748372,44.23818904391984,44.23744247359892,44.23680562325809,44.23629152500159,44.23587714126188,44.2355077175258,44.23532964120116,44.23513544382035,44.23495822367257,44.23468637518209,44.23446338784834,44.23416174167342,44.23393416742579,44.2338016197676,44.2337814677178,44.23379036348499,44.23392467526174,44.23417605530875,44.23427758969159,44.23428636537555,44.23431758720923,44.23424986868064,44.23405736294458,44.23369027114637,44.23336261254995,44.23306236002091,44.23284064625958,44.23263122794377,44.23241114337962,44.23199031330161,44.2319329493378,44.23193244276262,44.232005758959,44.23217259175424,44.23228105700692,44.23264364763151,44.23298476914339,44.23315481721015,44.23332572278741,44.23367111036172,44.23373538312766,44.23369779354923,44.23360870856528,44.23321340047939,44.23244112610074,44.23184003630297,44.23110130206521,44.23040474404151,44.23009896917529,44.22998047111065,44.22952476983328,44.22897581513981,44.22843399733011,44.22777864514276,44.22719384255365,44.22698714039882,44.22645334679809,44.22589593385479,44.22569718445157,44.22548183100943,44.22521463254757,44.22493646242255,44.22475397706498,44.22453196264255,44.22426523777888,44.22419364328275,44.22417312057421,44.22424705768015,44.22451917064289,44.22463940335746,44.22462037341756,44.22455712974168,44.22437151843487,44.22442698911387,44.22455715874367,44.22468606189871,44.22471404896132,44.22464014382718,44.22449140557998,44.22424635541953,44.22397435169894,44.22386818710588,44.22366350606814,44.22360323915811,44.22356922780907,44.2234818673701,44.22332675358042,44.22313573359678,44.22300080893791,44.22285493722877,44.22274059998397,44.22267105267505,44.22271397093829,44.22296367225859,44.22296069349962,44.22290866880244,44.22286868084523,44.22280382118478,44.22267423062841,44.2224685401013,44.22209311561586,44.22147776816666,44.22124794795449,44.22104689250173,44.22092750710601,44.22085908542746,44.22075951946626,44.22062509728349,44.22035199241325,44.22018276986748,44.22002802617165,44.21983397592118,44.21977837500056,44.21982799243926,44.21993296738817,44.22008941818596,44.22017155994769,44.22019627783404,44.22032524838028,44.22045793922784,44.22066799164769,44.22066354059456,44.22056035188929,44.22046853107218,44.22016640524702,44.21990429032007,44.21920717471899,44.21896830089614,44.21883873384214,44.21871153212405,44.21872406816675,44.21880730939789,44.21898291641228,44.21924270940658,44.21985602352595,44.22034090186476,44.22080617791394,44.2210683411366,44.22177977755887,44.22227761796032,44.22244499065882,44.2225580427271,44.22260536329247,44.22255627868731,44.2223661329161,44.22180018518106,44.22123923703977,44.22086383847287,44.22075824777871,44.22072897174017,44.2207689352827,44.22098276166788,44.22138928689298,44.22149569736644,44.22158504827302,44.22144388454002,44.22118077984915,44.22092639624253,44.2205808829828,44.22027675224002,44.22015407834405,44.22003612854793,44.21995234609883,44.21986155136288,44.21974214934892,44.21945691763957,44.21869565015975,44.21841715702043,44.21817833818353,44.21794936926802,44.21757610986079,44.21750728576131,44.21748136910331,44.21735045466234,44.21724264875293,44.21709441963642,44.21688910597405,44.21671675869397,44.21622097710724,44.21575994788783,44.21556085847403,44.21546922415605,44.21551142825381,44.21597027569182,44.21644685406802,44.21705254438699,44.21739158126997,44.21768841542628,44.21805345766191,44.21815765015518,44.21816208046014,44.218079974293,44.21796364959273,44.21747359462189,44.21693907231025,44.21661936588118,44.21645293208174,44.2160030989721,44.2156130685125,44.21548627362777,44.21552176897981,44.21568012602998,44.21583177123284,44.21610716758305,44.2166755192565,44.21694231201617,44.21733811689296,44.21747874636627,44.21756485724239,44.21758628752335,44.21754281237313,44.21743547103563,44.21674283469338,44.21617356541999,44.21555912271474,44.21473686468255,44.2144076778885,44.21431587238504,44.21422982223223,44.21412989483483,44.21385803037547,44.21354237255444,44.21307931274906,44.21265272093791,44.21152874952217,44.21122568312015,44.21089023532274,44.21066246434223,44.21009978132442,44.20959127379275,44.20916767634417,44.20873983258955,44.20817477633241,44.20787715566806,44.2072841460678,44.20655255683466,44.20617771849042,44.20581449029127,44.20536217496942,44.20502466072742,44.20443927778799,44.20377597892782,44.20330105911443,44.20247222805789,44.20202291206524,44.20163142669252,44.20144915790408,44.20127965825419,44.20119702500656,44.20116163144689,44.20121642070723,44.20126215268869,44.20131810093086,44.20128483337839,44.20121781700129,44.20113143379435,44.20103804103278,44.20057479855248,44.20011954202432,44.19948580487344,44.19907234204922,44.19862413674817,44.1984453714371,44.19820583955744,44.19815298664842,44.19802136179734,44.19791644629124,44.19780953104457,44.19762097247794,44.19737027435819,44.19682783802098,44.19610940980529,44.1959908263681,44.19563649915961,44.19523904252174,44.19490255030916,44.19467898615802,44.19455919916793,44.19450753893229,44.19448730704766,44.19442856186419,44.19439689737863,44.19436631032158,44.19427051843808,44.19420910323941,44.19392266426402,44.19370765597355,44.19341994865098,44.19312560145165,44.19296064666596,44.19261218117322,44.19251463675136,44.19235375204681,44.19223962118183,44.19219541545228,44.19213914431507,44.19204148579762,44.19198504044823,44.19189281938626,44.1918041647318,44.1916596304626,44.19153441027664,44.19141443486676,44.19122668623728,44.19108241231343,44.19092473769603,44.19069848922715,44.19055783674417,44.19030405815271,44.19008333370395,44.18938909265645,44.18900297732298,44.18867135309215,44.18851456164269,44.18832716315918,44.1878276095587,44.1877356673883,44.18757894840166,44.18743926706654,44.18730070373031,44.18693513310642,44.18676226405456,44.18604256520393,44.18574189039723,44.18550806125321,44.18536741258971,44.18500681731536,44.18462989560852,44.1843940615273,44.18424836915553,44.18412760471342,44.18399931330835,44.18384733213687,44.18372918825238,44.18364681666119,44.18350513327153,44.18348749217039,44.18339510052655,44.18334840220764,44.18323239970646,44.18311613878976,44.18301559382199,44.18287653513665,44.18270160457421,44.18256487622287,44.18242361883051,44.18221373615694,44.18199425926933,44.18167683062099,44.18140656211976,44.18126915262601,44.18116881354712,44.18100418696151,44.18085522741382,44.1806688168601,44.18052892441561,44.18042541805216,44.180196248019,44.18003156782076,44.17994075899742,44.17992792651652,44.17989356260597,44.17985598328756,44.17978320529,44.17969529993426,44.17961986500112,44.17954691669888,44.17943862281572,44.17932137998282,44.17909979226741,44.17860610615477,44.17839389033379,44.17779726727049,44.177627784601,44.17725557622867,44.17684712948112,44.17661868265499,44.17639945998381,44.17627313427829,44.17590755562684,44.17575725514993,44.175347179054,44.17490282856835,44.17460446715464,44.17450032075679,44.174389937557,44.17434976497454,44.17433279571408,44.17436383637788,44.17443788351049,44.17447300785174,44.17458120690973,44.17461515334031,44.17462636591239,44.17459459166897,44.17454032570542,44.17448241095284,44.17439563428063,44.17421340168833,44.1739983730092,44.17380225584144,44.17356205563313,44.17320899533638,44.17296703440856,44.17264062739395,44.17244091776875,44.17224661788622,44.17205072857814,44.17170387271096,44.17144103093506,44.17105697671126,44.17095961775607,44.17049310581674,44.17029445547524,44.16983777787212,44.16953283416315,44.16928888368003,44.16912168985572,44.16895808595924,44.16875142983018,44.1686919348833,44.16849682591181,44.1683152839171,44.16808790742966,44.16787669188123,44.16757383887253,44.16740189442748,44.16731029197511,44.16726950253198,44.16717666665289,44.16693758901436,44.16676143531602,44.16578316278641,44.16557800922496,44.16527047931689,44.16501197816564,44.16483511560066,44.16466010965137,44.16434654192513,44.16418483526357,44.16378513538649,44.16372765868284,44.16372392126243,44.16378665552482,44.16389225225372,44.1641310696393,44.16414247808497,44.16419268399008,44.1642922814038,44.1646891398078,44.16473701029218,44.16471604157279,44.16468880927425,44.16459194354137,44.16445839488194,44.16429507910114,44.16411227346762,44.16378601057001,44.16369944652423,44.16364659551562,44.16365475644707,44.16375119492245,44.16405924208405,44.16411022472747,44.16414288772166,44.16412270767201,44.16404202076551,44.16395191528152,44.1639124830722,44.16395455666741,44.16416157833189,44.16423462190139,44.16438682153171,44.16437267103148,44.16427493711036,44.16402529969112,44.16404488786019,44.16411564095152,44.16412404435524,44.1641105256397,44.1639058559234,44.16380846700051,44.16366817872259,44.16312412801512,44.16262605705334,44.16203690880489,44.16175781051861,44.16113899834208,44.16073729453711,44.16042410236908,44.16029792621581,44.16022681915692,44.16033233440198,44.16034875757452,44.16021515143251,44.16000814542192,44.15947670625352,44.15883194181963,44.15874187014327,44.15870775367946,44.15874118068649,44.15887536072379,44.15952120008705,44.15974345606057,44.1598045753253,44.15975041492857,44.15957540981978,44.15935187793765,44.15871563451071,44.15826344204233,44.15798583354167,44.15774320786785,44.1573967848242,44.1571557356905,44.15675433037458,44.15654957302167,44.15639305824077,44.15613930722317,44.15594466354229,44.15577666106525,44.15579493715375,44.15582865837771,44.15589061370184,44.15591952027517,44.15587675437948,44.15571828744401,44.15555596284908,44.15518707189392,44.15492025425881,44.15469228940282,44.1543780169357,44.15418364559476,44.15402190294449,44.15385469301464,44.15369230916062,44.15363991241624,44.15361401118376,44.15368853879194,44.15374908965452,44.1538907351006,44.15403718319757,44.15419361351717,44.15464274692707,44.15475077025965,44.15479445881326,44.15479494537949,44.15476610547097,44.15468668799934,44.15454287324611,44.15392627203036,44.15354825539603,44.15296060532835,44.15283294097874,44.15272797040657,44.15270728506471,44.15271354203506,44.15274080464909,44.15264609104175,44.1524946431134,44.15250299803637,44.15254500923429,44.15268854066751,44.15280958154506,44.15303034024067,44.15328764020575,44.15354281606789,44.15368042440669,44.15370231868756,44.15365984883631,44.15357002896237,44.15339409583812,44.1531799498302,44.15294202097844,44.15268194064511,44.15242601504706,44.15211749536002,44.1517158704942,44.15140716487861,44.15134231331999,44.1511038818572,44.15083556655767,44.15051215023554,44.1500821227615,44.14990681880425,44.14973883556208,44.14973099681387,44.14979256362318,44.14979560351421,44.14995728070841,44.15007389953507,44.15024868507599,44.15091175952892,44.15110593188871,44.15125258786776,44.1514181185546,44.15149751649519,44.15154384808404,44.15167071109265,44.15183601625682,44.1521153765257,44.15220177383299,44.15217191852062,44.15212189000673,44.15186546673716,44.15153465461052,44.15099892791139,44.15075879622693,44.15031896028923,44.15017384139292,44.15003913427069,44.14977448464796,44.1493543581408,44.14917948582191,44.14910407243796,44.14913109582496,44.14947465473288,44.14952180049809,44.14954410475261,44.149522754895,44.14942090598094,44.14917867451347,44.14892695393068,44.14883896182114,44.14882441721964,44.14893810524702,44.14906861934355,44.14929729945823,44.14933144140488,44.1492033892603,44.14898054990498,44.14870637215809,44.14842641127056,44.14824656707776,44.14813686501866,44.14811675684872,44.14824795159965,44.14840854774604,44.14852041195915,44.1487628147334,44.14885829830318,44.14884889385146,44.14879508093824,44.14862733734719,44.14849562040702,44.14820950103066,44.14780519718479,44.14751227497926,44.14725990474716,44.14612051862866,44.1459567778963,44.14569782271963,44.14546145425309,44.14513056630573,44.14499177095171,44.14489815154708,44.14486102279934,44.14492759828677,44.14501955053954,44.14507554919602,44.14495197719818,44.14470248304592,44.1444284627933,44.14418179018727,44.14396314631163,44.14377377783799,44.1435711388501,44.14339783979179,44.14303575548078,44.14290818475149,44.14281357594237,44.1426223841239,44.14251452504842,44.14236498815686,44.14228620052673,44.14218307397061,44.14203603016091,44.14181308775692,44.14164353692578,44.14133239494942,44.14085507717396,44.14020452014753,44.1384838598068,44.13817283584474,44.13747778267238,44.13693978237424,44.13666766002815,44.13640843530951,44.13612800650768,44.13569181413052,44.13549586626003,44.13501428450192,44.13480156419175,44.13426436222032,44.13395396993992,44.13381740030624,44.13349076816267,44.13334588166001,44.1331739421321,44.1328274570726,44.13226181228197,44.13196381090336,44.13171601392148,44.13150181579147,44.13102065168485,44.13017519597156,44.12961450055236,44.12897578926108,44.12828966809655,44.1279669180085,44.1278366112706,44.12768076075492,44.12729561919939,44.12689559934643,44.12640580154564,44.12600522908831,44.12558085544581,44.12536871312789,44.12446356190804,44.12400402693019,44.12375560479457,44.1235394118734,44.12329607671199,44.12311779543524,44.12251597279388,44.12238991750042,44.12224516403346,44.12210280097669,44.12188271402698,44.12159132802329,44.1214262773473,44.12128784775978,44.12115666932345,44.12102339926901,44.12088497613783,44.12070591938985,44.12049502751444,44.12021817983037,44.12002502777577,44.11968389293419,44.11958448848985,44.11939653593689,44.11933353212835,44.11929987415832,44.1193152191555,44.11936442868939,44.11946062241877,44.11950997077384,44.11940728781479,44.11931358312035,44.11913932232194,44.11899034313799,44.11861654874851,44.11818196441715,44.11721659030729,44.11675457809492,44.1162948300889,44.11609174740041,44.11555489132188,44.11449798492229,44.11390558067318,44.11367059888522,44.11345851919928,44.11267441925817,44.11225512283128,44.11169027376477,44.11110655644943,44.11051898764411,44.11006856858229,44.10945771586937,44.10898812593462,44.10819876789805,44.10788393541181,44.10767796505693,44.1071554214753,44.10681662621757,44.10669674610381,44.10657700395148,44.10641937908242,44.10601590304331,44.10564498541848,44.10547443128139,44.10536350633156,44.10521115571702,44.10495063710186,44.10469835440291,44.10442850757861,44.1042742894305,44.10422795424979,44.10411773191057,44.10410212494024,44.10394680676907,44.1037863316209,44.1038130817178,44.1039081293533,44.10395033581941,44.10410756198378,44.10410598938166,44.10393726570067,44.10378360742206,44.10355223873379,44.10327082885047,44.10276287935547,44.10250617993442,44.10229760412578,44.10206362503304,44.10191437784278,44.10178691196398,44.10157083417205,44.10121886917823,44.10100825315111,44.10084228702245,44.10058701495954,44.10011142822079,44.0998868737065,44.09976555172013,44.0996819745892,44.09964531819955,44.09964279439227,44.09958587860908,44.09945011486951,44.09923745723658,44.09902668530242,44.09891796721638,44.09864835512005,44.09827463810944,44.0976906893565,44.09706943777515,44.09679311677234,44.09669077938888,44.09661156999093,44.09646151968514,44.09623259563729,44.09565526425531,44.09515955597377,44.09432104743667,44.09410327730944,44.09363673491161,44.0934282245716,44.09289212876859,44.09234636537774,44.09176472391129,44.09117863571022,44.09099265126101,44.09073703547379,44.09051574865597,44.09035958821952,44.09035196911069,44.09038972681169,44.09077799627381,44.09100311823921,44.09099894259197,44.09098575753465,44.09076955690684,44.09055775671033,44.08988599204204,44.08932216322135,44.08882739181272,44.08842038746821,44.08804604114017,44.08780764999307,44.08762473501885,44.08745141865169,44.08667436398537,44.08643730468731,44.08599421808477,44.08572905505449,44.08541499483698,44.08522228797832,44.08517384747017,44.08510948786407,44.08493841146549,44.08467518052418,44.08452694570617,44.08435254078425,44.08430464950817,44.08420354840259,44.08406953981036,44.08399609757103,44.08397444862156,44.08386101481963,44.08369815360697,44.08337743758502,44.08308259093771,44.08284746125051,44.08269994785742,44.082599783226,44.0823977152226,44.0822222782831,44.08205569722938,44.08190901094456,44.08165005819259,44.08133113750346,44.08100173815679,44.08072713788287,44.08047638344934,44.08028404423196,44.08018893211393,44.08006871979093,44.07982784997281,44.07965808190534,44.07922605068492,44.07894713128251,44.07867814004803,44.07850085025409,44.07844629621336,44.07843902794007,44.07849366523303,44.07893618550023,44.07904283810375,44.07905686317898,44.0789025372698,44.07849855392238,44.07831266577175,44.07775934900204,44.077457512578,44.07732520414788,44.07723879212526,44.07724168002291,44.07734939605201,44.07758889670653,44.0776606066749,44.07766634150653,44.07765104249003,44.0775225086557,44.07734986360952,44.07715870244942,44.07701671514178,44.07676345656093,44.0766405845988,44.07637008720189,44.07622894481045,44.07620728112818,44.07621631171738,44.07630851569933,44.07633298493279,44.07630154505668,44.07616515674096,44.07606473498191,44.07603534291407,44.07609700041024,44.07619118631983,44.0763319893928,44.07653899446596,44.0766000524476,44.07656152940226,44.07645491546065,44.07621334429396,44.07588567836327,44.07582530168256,44.07581259749161,44.07583971564623,44.07591373750107,44.07582141178031,44.07572935946671,44.0755832594581,44.07551818658008,44.07548116673686,44.07547603819745,44.07543750182101,44.07528393607532,44.0750096854719,44.07473650219932,44.07449034933418,44.07437581396942,44.07429483610339,44.07422497880729,44.07412320857429,44.07400832729603,44.0737737474949,44.07344133758258,44.07337272624718,44.07325261967839,44.07314812847168,44.07300797910459,44.07281121237001,44.07220695062431,44.07192900882355,44.07127148345514,44.0707233232082,44.07015297451873,44.06926548191004,44.0688909100726,44.06864311104017,44.06848852823008,44.06837596497958,44.06815622975734,44.06788974388193,44.06772694176346,44.06754677187519,44.06727382844461,44.06696718032669,44.06612904022972,44.06565526266107,44.06535485171563,44.06520776523574,44.06486718846924,44.06459081607446,44.06429025260829,44.06401121767461,44.06363900600719,44.0631956404474,44.06251472903587,44.0618877434443,44.06174921094465,44.06158859101149,44.06141728767705,44.06116888545251,44.06103177210608,44.0603718301719,44.0602259997026,44.06007924993913,44.05974743290568,44.05959806421062,44.05938602421091,44.05921073000028,44.05898745464062,44.05871812832136,44.05778556042496,44.05680640146552,44.05637008907654,44.0560604682554,44.05558776453994,44.05521091463417,44.05465206369863,44.05429746659821,44.05401174074706,44.05390500595975,44.0533181106913,44.05271217835979,44.05229396287897,44.05205134246558,44.05197600958491,44.0520043230613,44.05190113596139,44.05183041018265,44.05170768547388,44.0515705485735,44.05112780215208,44.05012320420276,44.04879883974188,44.04762085824222,44.04682189641948,44.04623838058452,44.04610670226425,44.04524567574507,44.04513076569327,44.0449985978363,44.04478331566633,44.04448858157031,44.04395982933207,44.04340408778504,44.04241532833693,44.04187335879536,44.04116923004619,44.0405601149855,44.03960424466882,44.03921909484716,44.03888638917068,44.03836963342551,44.03762922282908,44.03736239506016,44.03685328594948,44.03645857608983,44.0361340363739,44.03583675794181,44.03515296485723,44.03480119249581,44.03454386544892,44.03415561720862,44.03356838425691,44.0326267073583,44.03199031330892,44.03173119341316,44.03119186179284,44.0306487976376,44.03029171084558,44.0299374616591,44.02923993492924,44.02860675472058,44.0280383593398,44.02725823448498,44.02537821362285,44.02526957523455,44.02488799540529,44.02458855446874,44.02405239459647,44.02332741578087,44.02273053860125,44.0225306576362,44.02241461367511,44.02223732492138,44.02198460056056,44.02181598489177,44.02175462276665,44.02160698640674,44.02161130354205,44.0216461013755,44.02175078189832,44.02188758293705,44.02194561241819,44.02189656795375,44.02177755152867,44.02172128650005,44.02146466711036,44.02120568659431,44.02077783586627,44.02051656884795,44.02008280982461,44.01954750669115,44.019109160007,44.01873557882027,44.01822180272357,44.0178112488553,44.01757752087162,44.01704259020755,44.01653168109121,44.01564690006004,44.01502497766607,44.01440228063938,44.01397418369278,44.01350542574374,44.0130379393705,44.0126253189355,44.01168569184568,44.0098129973,44.00890917570597,44.00832196894607,44.00805405682251,44.00797900713917,44.00801928933466,44.00813099039022,44.00868325286849,44.00929291783367,44.00943772903712,44.00952284452875,44.00954747081025,44.00944897206833,44.00929169753655,44.00912385659082,44.008989942929,44.00864854595833,44.00836002460434,44.0070991273675,44.00625045555447,44.00581600823579,44.00512610601118,44.00412314388711,44.00294111170511,44.00228268502472,44.0018663612241,44.00151516921916,44.00124317414205,44.00068093512583,43.99995028656377,43.99907956458884,43.99787658500644,43.99718501446941,43.99642332819528,43.99564442144779,43.99512832466854,43.99455685729581,43.99381740908923,43.99272754814295,43.99117513952185,43.99034958617022,43.98826230720515,43.9874774843347,43.98642467442318,43.98493529590387,43.98429941179831,43.98427824541579,43.98426480148485,43.98425256825996,43.98423903976222,43.98422108070931,43.98421612447899,43.98420954061578,43.98420875886372,43.98420838299685,43.98420764916889,43.98420609791299,43.98420550448336,43.98420403958806,43.98420191587004,43.98421364685305,43.98421890968908,43.98422571804741,43.98422631235477,43.9842273493707,43.98422759830532,43.9842209427156,43.98421690490048,43.98421321925868,43.98419693619947,43.98418043578756,43.98426076228649,43.98433978549709,43.98441878819516,43.98449538290244,43.98450284293724,43.98450569171498,43.98450734929678,43.98450838722226,43.98469221468157,43.98490173453821,43.9850514496164,43.9851514401724,43.98557075432726,43.9857642010308,43.98594939521894,43.98613744374506,43.98715678723204,43.98764728428841,43.98817875688567,43.98865887163162,43.98945731504239,43.99045599640019,43.99071720511004,43.9908196663891,43.99095263052124,43.99102523395533,43.99102754259201,43.99117309869489,43.99118851228436,43.99109219108536,43.99109269762432,43.99115380057724,43.99154116768349,43.99182079926796,43.99238302921933,43.99303120752462,43.99392213571009,43.99417186838212,43.99439036046956,43.9944970332119,43.99537373042148,43.99589988034388,43.99648107057099,43.99735031914506,43.99782599905519,43.99870293495857,43.99932845363143,44.00007379855824,44.00071756621021,44.00106181740459,44.00210118829506,44.00277314954668,44.00347920469552,44.00381795653141,44.00418009569664,44.00488743393358,44.00574598722768,44.00618663166767,44.0069455109366,44.00755064458976,44.00850289654147,44.00902618831299,44.01008257678608,44.01096812155922,44.01175512281655,44.01200474583847,44.01230206721495,44.01263636669934,44.01277365871826,44.01298387010637,44.0132567625625,44.01359393022229,44.01371477416092,44.01377006182857,44.01382552606897,44.01384346077243,44.01385558101906,44.01392457660659,44.01401851319638,44.01422482805251,44.01452810118034,44.01512100912503,44.0158129062704,44.01662024877529,44.01755684080049,44.01808418745854,44.01817030332339,44.01821769487866,44.0182051147,44.01816550692615,44.01805229480809,44.01797624999426,44.01800121862084,44.01810662037342,44.01843268361228,44.01897604859859,44.01961370197094,44.02007090268376,44.02028487813327,44.02084534562884,44.02149445216934,44.02217395319089,44.0228163883607,44.02323599873544,44.0236128418431,44.02454575742485,44.02506686517614,44.02550633906473,44.02640206182975,44.02701501667006,44.02767261548916,44.02820670516329,44.02872924837344,44.02977661128685,44.03044316531015,44.03114414162488,44.03175875213147,44.03255100279556,44.03313814779571,44.03368064939943,44.03449944712571,44.03516203846128,44.03561672177034,44.03610257621563,44.03682163691008,44.03743519478962,44.03769853042525,44.03776244770297,44.03766680764047,44.03741149876436,44.03708240135056,44.03689499225523,44.03635531703774,44.03604405188616,44.03594895307376,44.03604605019947,44.03624211574527,44.03645133373526,44.03673545886899,44.03723256629552,44.03792580353098,44.03872701137506,44.03920776039519,44.03982640402129,44.04028693840389,44.04065227908617,44.04114962133529,44.04187196953435,44.04257109033145,44.04331365561564,44.04384397581571,44.04429389772985,44.04473531756926,44.04518074812871,44.04533786346168,44.04541131900127,44.04547887721287,44.04559493064836,44.04570103750812,44.04616089417279,44.04648697519126,44.04688355464079,44.04727227381834,44.04749798849598,44.04768869055283,44.04784381389724,44.04816019812384,44.04839275215122,44.04866435532426,44.04907170350264,44.04974156653815,44.05012732065138,44.05060991031369,44.05103992617111,44.05251056043454,44.05330238832602,44.0538473270939,44.05449205862331,44.05499528764941,44.05664230974497,44.05772791933181,44.05801096806499,44.05818667795415,44.05822077625097,44.05808704456596,44.0580881994457,44.05811435508402,44.05819290828585,44.05837895672781,44.05909799482128,44.0595710383236,44.06030876972012,44.0606068126759,44.06116953424311,44.06216660505861,44.06233537643014,44.0626346131242,44.06290455719044,44.06355879025994,44.06421986349743,44.06472164853475,44.06496786813086,44.06509125086013,44.06510951066112,44.06504083781878,44.06493360263872,44.06483174923599,44.06466122812542,44.06449658878897,44.06431801525157,44.06416873798621,44.0640207383212,44.06388127855892,44.06372201068937,44.06317277868904,44.06276902651283,44.06224894462344,44.06185615093585,44.06138087658379,44.06119754711467,44.06077041164988,44.06059387664411,44.06052065573028,44.06048958418687,44.06050308551129,44.06056781748541,44.06067432933207,44.06095605648827,44.06128659937576,44.06169065914979,44.06214668033865,44.06301620298576,44.06366144618721,44.06433132777298,44.0654133728927,44.06586909539619,44.06625126828546,44.06681024803875,44.06718733641782,44.06811219748158,44.06825810891684,44.06835175855343,44.06832983279659,44.06831452956239,44.06833773626704,44.06849806081236,44.06886342075254,44.06931801996281,44.07035921277657,44.07110777224553,44.07152321262611,44.07182826175931,44.07207791693749,44.07224307919606,44.0722909047136,44.07211739958405,44.07194661594423,44.07173479853692,44.07141289485021,44.07125575568868,44.07099280562127,44.0707151111021,44.07021019299298,44.0697725943459,44.06923112982674,44.06899735568235,44.06898503912297,44.06897507149027,44.06894186707776,44.06865921339598,44.06813136011227,44.067654412658,44.06719236414626,44.0664126977199,44.065806729322,44.06524585594453,44.06446793270005,44.06344783455886,44.06247914229112,44.06165220179874,44.06095311777528,44.06056750408295,44.05987188204518,44.05923564045928,44.05886654321215,44.05840170419965,44.05806241095679,44.05773418044819,44.05749683955672,44.05729428905352,44.05716680593454,44.05694103522504,44.05678195903391,44.05664300863727,44.0565349144978,44.05658548652519,44.05680846760898,44.05717427372493,44.05758570562349,44.05798001450675,44.05823514655167,44.05834214061908,44.05837646029151,44.05836960119795,44.05832655498867,44.05828289720727,44.0580694720078,44.05755541070674,44.05651590767092,44.0554202315906,44.05487473221291,44.05431580753585,44.05390362441963,44.05351463317377,44.05317149873675,44.05311422395206,44.05319817551162,44.05327586759542,44.05345380118366,44.0536864840704,44.05396447691291,44.05452995542516,44.05498079084802,44.05531574118365,44.05573495757713,44.05621084908361,44.05674875553074,44.05718748438029,44.05776863749383,44.05831433704313,44.05876978141918,44.05968974656968,44.06027686617977,44.06101492499079,44.06196454123202,44.06378241355111,44.06436059000173,44.06519801291644,44.06562960409339,44.06599496447007,44.06633161884506,44.06675388014029,44.06688254477368,44.06693779589423,44.06699239581523,44.0669211918991,44.06689630645612,44.06687722497681,44.06694551185262,44.06713246844858,44.06739451815386,44.06753358510734,44.06769597288194,44.06791929832526,44.06813636743185,44.06864749188491,44.06916682413172,44.06977125066281,44.07049134300983,44.07150929403021,44.07196860588399,44.07264253808098,44.07318059323088,44.07376555267781,44.07407069943024,44.07425187020566,44.07424793982693,44.07437877248181,44.07463016128737,44.07486306225729,44.07522899421547,44.07553850787237,44.07609283900845,44.07687270509271,44.07747346143172,44.07802195226884,44.07873542622639,44.07902255465627,44.0793295566303,44.07972188867749,44.08021473068445,44.08078461674044,44.08139580374301,44.08199685114088,44.08256437157265,44.08313056055532,44.08372495850202,44.08390902238693,44.08416308169852,44.08437385640466,44.08476304383531,44.08516384925315,44.08571093205592,44.08587820685525,44.08651867127176,44.08677469297905,44.08715857666741,44.08732838973588,44.08739618113709,44.08738819268392,44.08733189711075,44.08716368850732,44.08679432723867,44.08651217281441,44.08630826220546,44.08617525408123,44.08623553040812,44.08644478778857,44.08656904544829,44.08710657575776,44.08747874286487,44.08784841210937,44.08840034778951,44.08880672557609,44.08913689111689,44.08957740264075,44.08996866661219,44.09062992107219,44.09069485824761,44.09069101766466,44.09065016203962,44.09034174352556,44.09013943678739,44.08977579392913,44.08948272054194,44.08892402125856,44.08837400512918,44.08755677792987,44.0869028524527,44.08629300169192,44.08594862164104,44.08569948372664,44.0855273108025,44.08529047539628,44.08513565258513,44.08500665198901,44.08476694487477,44.0844381276089,44.08434325455489,44.08435023421945,44.08449268745453,44.08493956302284,44.08521108491021,44.08601681016556,44.08647044710877,44.08651152651372,44.0867812221639,44.08735670559294,44.08767279436454,44.08795290087543,44.0881931011156,44.08843690741923,44.08856668427875,44.08854890927137,44.08851333003797,44.08835815234115,44.08827335853385,44.08782170527641,44.08761769249833,44.08723940238373,44.08689063142607,44.08591510044442,44.08524412775193,44.08455646411736,44.08380211975193,44.0832099053577,44.08297234696295,44.08286183238387,44.08272399616247,44.08274092609031,44.08268425672867,44.08277212279248,44.08291484401465,44.08289285114986,44.08268142875343,44.08259166449368,44.08245700544355,44.08182773111393,44.08120887528242,44.08085887840476,44.08030129332114,44.07996341898792,44.07980713289067,44.07971186964593,44.07958141956262,44.07961373377456,44.08173794983947,44.08533354759523,44.08895682523746,44.09257981790164,44.09620293845341,44.09982574831638,44.10344097573724,44.10705595034641,44.11067099121421,44.11428630735194,44.117853300607,44.12142027928424,44.12498744968595,44.12855447758079,44.1321838948824,44.13581357429361,44.13944298358352,44.14307267250095,44.14669348334823,44.15031427361581,44.15393499446754,44.15836271532229,44.16558064756227,44.18712177399169,44.19434021237359,44.20150239770585,44.20882883806482,44.2160202820089,44.22329579599855,44.23046108123044,44.24754908335292,44.24745487180724,44.2494629250337,44.25456919489456,44.27633188044052,44.28360358890214,44.29076676212322,44.29812431806737,44.30534066980429,44.31977065103098,44.33522029021214,44.34251763537409,44.35678660586552,44.36763052540517,44.37535926792062,44.38548439393591,44.39283717038934,44.40732231414608,44.41478350795347,44.42219170638021,44.42965211313062,44.43692417014882,44.44417128539701,44.45141756073457,44.45871726239046,44.46590912323481,44.47315355952862,44.48053475382484,44.48775391820207,44.49509540623138,44.50257988594561,44.5099114449896,44.52437107845641,44.53896544495224,44.54705903286899,44.55350779889619,44.56083365489245,44.56182129153316,44.56805052505351,44.57853106250372,44.5825912111683,44.58967117457112,44.59691485130265,44.59693968183822,44.59699614182546,44.59699496976108,44.59702233154481,44.59701229189795,44.59701560301673,44.59704059871418,44.59703850905282,44.59703555172112,44.59703233808407,44.59696782386167,44.59696487235033,44.59701156835715,44.59700822684069,44.5968710116386,44.59674473822623,44.59671004981386,44.59653228570799,44.59632567754988,44.59623277884274,44.59622704672429,44.5961024562954,44.59595724926891,44.595840670322,44.59585508132823,44.59580729554156,44.59581420966018,44.59579999972155,44.5959085167954,44.59588320786884,44.59591468158357,44.59597306404305,44.59604174425336,44.59613951416996,44.59618190183329,44.59624809849015,44.59620694379639,44.59621919817087,44.59617757673898,44.59615913532738,44.59614584586647,44.59615998794629,44.5961466374931,44.59615757298911,44.59611800368086,44.5960951554986,44.59620943408589,44.59617595160157]}]],[[{"lng":[-91.99354707683862,-92.0030831504606,-92.00309054197224,-92.00359080978141,-92.00405855158711,-92.00444864787612,-92.00575437827015,-92.00744287005882,-92.00860993764438,-92.00877587776435,-92.01008994268436,-92.01025278055059,-92.01057732281883,-92.01093670454725,-92.0126231969419,-92.01367002529955,-92.01497001092098,-92.01656457880625,-92.01815603805392,-92.0194728332477,-92.02080591584102,-92.02246354606447,-92.02322859588745,-92.02421764806076,-92.02625429736206,-92.02811948891957,-92.02905836439935,-92.02963194397448,-92.02991981611015,-92.03020204719188,-92.03071286675656,-92.03106351483939,-92.03120536327586,-92.03152548149997,-92.03205563036728,-92.03256236033785,-92.03303627438491,-92.03341046866974,-92.03352387957777,-92.03401237066916,-92.03495626759711,-92.03628839306644,-92.03823189180324,-92.03864303780003,-92.03907943247836,-92.0393941048589,-92.0400019540326,-92.04009873319897,-92.04014117601079,-92.04004478168824,-92.03917408566818,-92.03883038425052,-92.03872946186151,-92.03846115639938,-92.0382611026172,-92.03858504371274,-92.03877882750032,-92.03874734035992,-92.03876041607188,-92.03873444192125,-92.03903724240108,-92.04025086566129,-92.04063844715739,-92.0413957641138,-92.0432826690345,-92.04520606767892,-92.04572608330494,-92.04657740040376,-92.04737686311201,-92.04768803688134,-92.0479804161204,-92.04805356043168,-92.0477370026673,-92.04718510430153,-92.04655116661753,-92.04619734570147,-92.04565087312767,-92.04528724561627,-92.04474760704744,-92.04446090409535,-92.04387535415836,-92.04377575586834,-92.04376462202663,-92.04368050415671,-92.04363074836341,-92.04341083353904,-92.04359507067643,-92.04381438389821,-92.04461102358052,-92.04465972435405,-92.04516350081956,-92.0454862099449,-92.0460462495589,-92.04676439561877,-92.04761759219004,-92.04792416754269,-92.04826355842566,-92.0486153515299,-92.04975452866832,-92.05047544108983,-92.05069260484716,-92.05079998799999,-92.05098438128383,-92.05145560571614,-92.05164180747535,-92.05205786651842,-92.05229393705055,-92.05262284937457,-92.05375480877176,-92.05461959521861,-92.05548593108138,-92.05559097017985,-92.05576432163917,-92.05591533575611,-92.05593205818285,-92.05586974768386,-92.05588437035081,-92.05597022844236,-92.05628410232065,-92.05649911437439,-92.05679050344163,-92.056940651895,-92.05710069167618,-92.05774079445442,-92.05841932804159,-92.0590514432907,-92.05921308834461,-92.0592909096505,-92.0593361770503,-92.05949972512254,-92.06005792679316,-92.06008399330683,-92.05997062418247,-92.05972450065201,-92.05933844333465,-92.05919050577079,-92.0591124398764,-92.0591266269517,-92.05928206208422,-92.06026950187825,-92.06122613611142,-92.06216811671429,-92.06348270624387,-92.06379031301624,-92.06419723697648,-92.06474712183697,-92.06557876434594,-92.06732000369155,-92.06829130145073,-92.0689771745005,-92.06991774218085,-92.07076564715486,-92.07186388579801,-92.0723331746116,-92.07301595468822,-92.07391878327469,-92.07407101606162,-92.07436811046428,-92.07447383523939,-92.07485213178911,-92.07510095925045,-92.07556207390765,-92.07639659704736,-92.0772382507589,-92.07817952933277,-92.07852618718903,-92.07880569609715,-92.07987773281288,-92.08059735187314,-92.08106884953629,-92.08184497013231,-92.08244234663213,-92.08237084718834,-92.08223411881966,-92.0819677985309,-92.08168351893396,-92.08127503035536,-92.08048186122863,-92.08039832168505,-92.08027167354739,-92.08009733495689,-92.07993247417251,-92.07988640294448,-92.07987883535365,-92.08003460466247,-92.08027224798724,-92.08060416923314,-92.08081719748688,-92.08101340508141,-92.08145708597758,-92.08270502307857,-92.08320403306639,-92.08346296212891,-92.08369009203034,-92.08385259522902,-92.08388132013924,-92.08398764923054,-92.08414735689608,-92.08414741314125,-92.08404597130608,-92.08389848856304,-92.08359971589933,-92.08208362821392,-92.07991632924049,-92.07881034796368,-92.07710722687436,-92.07508744749002,-92.07285653686748,-92.07014612866912,-92.0677283802914,-92.06507688473472,-92.06420699155552,-92.06268426293302,-92.06156792125488,-92.06078842367171,-92.05925233369682,-92.0579079950548,-92.05639352321376,-92.05534005152111,-92.05455393369778,-92.05383854703744,-92.0528222338182,-92.0523217187754,-92.05156912516243,-92.05045996261347,-92.04606494305874,-92.04468130614848,-92.04335015677943,-92.04225977883669,-92.04148191461672,-92.04050956400371,-92.03996441298698,-92.03899991643102,-92.03828539964121,-92.03693682781167,-92.03281744697584,-92.03066399588188,-92.02833303120434,-92.02705619341236,-92.02325200718815,-92.02024282032188,-92.01770472756812,-92.01648700932233,-92.01517374602378,-92.01391681802701,-92.01227274419594,-92.01079191727635,-92.00938283582596,-92.00862750761875,-92.00770143371261,-92.00689494011931,-92.00581642999437,-92.0043704736235,-92.00350534851276,-92.00222132368511,-92.00080262421012,-91.99990599268847,-91.99842645260227,-91.99668020360771,-91.9949364531066,-91.99316991563249,-91.98996075191251,-91.98699864291608,-91.98599621095298,-91.98492711893117,-91.98403058322489,-91.98180535170005,-91.97948662278004,-91.97834853767112,-91.97745055812659,-91.97596313122172,-91.97445279213426,-91.97352645695773,-91.97303704867099,-91.97205670153828,-91.9701228522994,-91.96862374383767,-91.96613415837432,-91.96241333367668,-91.96070906140558,-91.95952144419392,-91.95889420902812,-91.95794556345081,-91.95572465525852,-91.95375250530466,-91.95285625152555,-91.95183242071843,-91.95120133517959,-91.95018653044278,-91.94929917757473,-91.94796525208629,-91.94668677556052,-91.94452524924664,-91.94303318840403,-91.9411518301595,-91.94077780689776,-91.93887969429636,-91.93753117260253,-91.93580066889258,-91.93404446536525,-91.93221240321766,-91.93086628573693,-91.92887911273793,-91.92706124398097,-91.92659294133917,-91.92569735992409,-91.92499946418458,-91.92416676312877,-91.9228237258952,-91.92175955312202,-91.92102475800355,-91.92018429932276,-91.91959363647929,-91.9184524970465,-91.91721177345428,-91.91616713644386,-91.91557607062667,-91.91444595562199,-91.91368562016633,-91.91351255954635,-91.91341477816722,-91.91346075750373,-91.91363242396901,-91.91392638543908,-91.91433926267483,-91.9150330633705,-91.91583274843846,-91.9163678782329,-91.91671700723909,-91.91727246007184,-91.91773737902915,-91.91939813643228,-91.92047107091545,-91.9216395583433,-91.92250020586867,-91.92308053196072,-91.92356255526565,-91.92422767727155,-91.92477237447672,-91.92490874199171,-91.92491036548624,-91.92475921537995,-91.9246579207034,-91.92449326658239,-91.92430020491265,-91.92400762716495,-91.92374582648715,-91.92310734241197,-91.92269591414237,-91.9223733188762,-91.92177231705303,-91.92101091665764,-91.92044324492278,-91.91948622839706,-91.91865487246429,-91.91782335165436,-91.91721619992489,-91.91685055627835,-91.91616913447761,-91.91505304067739,-91.91437274853078,-91.91368964104784,-91.91268879593059,-91.91134744446633,-91.91005483618638,-91.90841994728635,-91.90717383249874,-91.90595162166436,-91.90499463115408,-91.90396374330483,-91.90206802714521,-91.89940650564431,-91.89868978852125,-91.89814550739389,-91.89752732789937,-91.89712899072634,-91.89675452948408,-91.89640005331592,-91.89614001627761,-91.89588332803982,-91.89567812321016,-91.89561105060136,-91.8955213805867,-91.89564696037179,-91.8956076583214,-91.89578053690411,-91.89587990688806,-91.89605891048291,-91.89623011094848,-91.89641124551204,-91.89645800867302,-91.8965197252852,-91.89651390707405,-91.89640055605042,-91.89621463438412,-91.89583414678236,-91.89550791105775,-91.89491304877824,-91.89436838372526,-91.89357786243866,-91.89313113977106,-91.89260686876463,-91.89208332764473,-91.89133136491877,-91.8906795711634,-91.89013124950097,-91.88935869981097,-91.88888373470748,-91.88850779542717,-91.88810318220408,-91.88774874190304,-91.8874613029523,-91.88730214133282,-91.88711800285094,-91.88700640348173,-91.88688356755073,-91.88693599431001,-91.88692772435553,-91.88711797016418,-91.88747490828882,-91.88786606204192,-91.88839805337227,-91.88887001357402,-91.88938990665228,-91.88984824289994,-91.89060738147252,-91.89136261578435,-91.89192370531657,-91.89255396306211,-91.89272917180139,-91.89294621188229,-91.89299190436878,-91.8928465317952,-91.8925397116157,-91.89234894663318,-91.89186971204759,-91.89148504357416,-91.8910541219351,-91.89069760934952,-91.88996966483933,-91.88888832471361,-91.88813907495755,-91.88766399825091,-91.88703965845139,-91.88542268718058,-91.88383280291804,-91.88261561001428,-91.88137103123954,-91.88042757558397,-91.87962896432128,-91.87880213017267,-91.87796981836227,-91.87746335920258,-91.87709898453447,-91.87675869084924,-91.87652574928502,-91.87642746310115,-91.87632819510132,-91.87632587042381,-91.87647834910298,-91.87645572922985,-91.87636852495108,-91.87626962813947,-91.87604478097987,-91.87586314320646,-91.87562821939157,-91.87536101068335,-91.87507351865752,-91.87460036670218,-91.87409594096958,-91.87334237020832,-91.87271232464015,-91.87230485691479,-91.87155091376948,-91.87030041886788,-91.8696118154737,-91.86892496835527,-91.86743060614874,-91.86586918434244,-91.86543188997362,-91.86496231387832,-91.86455450130929,-91.86354588942616,-91.86237550933328,-91.86086227877715,-91.85894065637025,-91.85809143553794,-91.85648885229357,-91.85510421934568,-91.85409509279567,-91.85285900762247,-91.85105490828673,-91.85001221947473,-91.84843656636232,-91.84676452597476,-91.84519036933662,-91.84468868250059,-91.84337097272318,-91.8416147468848,-91.84086433796371,-91.83945408793775,-91.83810628693924,-91.83682341239808,-91.83563869288226,-91.83473083281916,-91.83401205053974,-91.83319957762318,-91.83254288700518,-91.83185292086347,-91.83115951746531,-91.83046818280302,-91.82983830526554,-91.8293929649583,-91.82830568436323,-91.8272791923912,-91.82560537890279,-91.8244187946451,-91.82275238359479,-91.82089262598183,-91.81976934919622,-91.81896443204231,-91.81722704307288,-91.81681753305301,-91.81558738386796,-91.81370084813896,-91.81093407833582,-91.80826381918895,-91.80569168231862,-91.80499803141949,-91.80227135560393,-91.79957969406429,-91.79785780977505,-91.79563872690252,-91.79379412112509,-91.7920767487948,-91.79101557383957,-91.79008226203332,-91.78905436897593,-91.78790132751388,-91.78715384255021,-91.78656075670661,-91.78571836365619,-91.78418731414358,-91.78206513244066,-91.78100244666814,-91.78025271883496,-91.7786918627849,-91.77685094030747,-91.77529013422418,-91.7744146493045,-91.77366498480417,-91.77322424772676,-91.77284828223802,-91.7728173666398,-91.77164852375076,-91.77057133586032,-91.76996733019908,-91.76914537160316,-91.76867117485705,-91.76722506041814,-91.76564987073317,-91.76426753618355,-91.76307337288942,-91.76194027417387,-91.76093588902461,-91.75967812023313,-91.75895253218032,-91.75753686895651,-91.75656315039984,-91.75571613709101,-91.75480612779759,-91.754211313768,-91.75336762864362,-91.75274291223481,-91.75205715612987,-91.75075235834031,-91.74988311192659,-91.74848539937513,-91.747646351887,-91.74659334246549,-91.74507678146442,-91.7438081174016,-91.7421369890816,-91.74037162846537,-91.73888469075047,-91.73683935863122,-91.73494737288817,-91.7323710320959,-91.73081975814304,-91.72939064607969,-91.72786537439373,-91.72627751521705,-91.72434531360827,-91.72294128504633,-91.72188124754429,-91.72103521013365,-91.72031294663799,-91.71984043406852,-91.71905005146986,-91.71736381493336,-91.71511004392374,-91.7139372774747,-91.71295450044069,-91.71206492048591,-91.71136144293361,-91.71072198627853,-91.71033248421992,-91.70994466483302,-91.70974318318549,-91.70960402844798,-91.70955842603597,-91.70954333989422,-91.70964719367734,-91.70978726490981,-91.70980719562171,-91.70966714776721,-91.70943227944302,-91.70911221024478,-91.70878932878824,-91.70815966833126,-91.7081175446241,-91.70794219797401,-91.70789149109478,-91.70804188938799,-91.70814740923623,-91.70810002960665,-91.7080306745853,-91.70783374441721,-91.7074533631699,-91.70713888203291,-91.70569904518408,-91.70419782250497,-91.7036061249304,-91.70238831601721,-91.70100960216217,-91.69900483615663,-91.69696524132404,-91.6957503381452,-91.69428659100569,-91.69322879699209,-91.69229789636699,-91.69139758826928,-91.6905321655988,-91.68978918265267,-91.68901877913817,-91.68831106315305,-91.68788056320265,-91.68738840277906,-91.6869604376878,-91.68622124940124,-91.68554181931027,-91.6847377997087,-91.68405647450997,-91.68346574304468,-91.68284394564954,-91.68234483594834,-91.68190708195027,-91.68105797636389,-91.67982972843383,-91.67573194297725,-91.67245555099832,-91.67021817626085,-91.66863974298521,-91.66782335751063,-91.66662005338618,-91.66582039515683,-91.66502302902673,-91.66466446268106,-91.66413618771745,-91.66389009249615,-91.6636571053785,-91.66283894959211,-91.66193452284553,-91.66069915312018,-91.65975904066204,-91.65892760303038,-91.6580343257861,-91.65755637901218,-91.65701765894248,-91.65642018966658,-91.65563829412299,-91.65494838917874,-91.65429109488807,-91.65312727007486,-91.65164526006623,-91.65066183450662,-91.6496414454796,-91.64884273746048,-91.64826901491848,-91.64763738431724,-91.64682088819852,-91.64578916961253,-91.64482565169588,-91.64417658673842,-91.6434361503191,-91.6426375569654,-91.64199363491947,-91.64092431834686,-91.64052612879559,-91.63984585278693,-91.63916618887842,-91.63839062654948,-91.63782846305639,-91.63701574124015,-91.63585350865745,-91.63469007324333,-91.63377661018939,-91.63282990780672,-91.63169553169436,-91.6308080586878,-91.63007626875117,-91.62906377898148,-91.6275867939334,-91.62680413074568,-91.6261770418145,-91.62545875241689,-91.62452503028845,-91.62331304908882,-91.6215731434072,-91.61973718616096,-91.61864766073523,-91.61680994414657,-91.6152807268295,-91.61384434364459,-91.61284368343128,-91.61193756968363,-91.61068609234931,-91.60980909172922,-91.60886950743082,-91.60783171033204,-91.60682452682043,-91.60584516917004,-91.60511626778137,-91.60432178000306,-91.60349269908323,-91.60285445938155,-91.60214743932318,-91.6014703409152,-91.6002730049958,-91.59939732039024,-91.59856662875139,-91.59748521627236,-91.59694711076975,-91.59634522986326,-91.59530882683214,-91.5941482724001,-91.59145927943692,-91.58889545912528,-91.58558348451741,-91.58358773381687,-91.58256284022309,-91.58132101066261,-91.58029908496459,-91.57949429593533,-91.57878416935678,-91.57662444926375,-91.57437076715659,-91.57258018438716,-91.5711585471357,-91.56985910747866,-91.56914731694198,-91.56744404158196,-91.56552287376449,-91.56394348663693,-91.56252110851288,-91.56091415567757,-91.56026397908052,-91.55911680159772,-91.55904402916252,-91.55780222837643,-91.55695116739352,-91.5562559332692,-91.55593358492611,-91.55601639558466,-91.55650984931461,-91.55764896397078,-91.55966451103201,-91.56109896246107,-91.5617352223999,-91.56288174233407,-91.56384263578184,-91.5643261579381,-91.56488515102497,-91.56565053818954,-91.56632156964997,-91.56740488885819,-91.5682278490774,-91.56876099339381,-91.5692717880342,-91.56993088200649,-91.57084992220949,-91.57120038929988,-91.57130282775816,-91.57131560782966,-91.57117820312362,-91.57065358536599,-91.5707915623306,-91.57080985757403,-91.57072287128254,-91.57109345999797,-91.57106762722827,-91.57087897875094,-91.57081328709475,-91.57064185775779,-91.57032063691754,-91.57002768584435,-91.56905754070925,-91.56874105269189,-91.56806325465226,-91.5673548442815,-91.56671720159592,-91.56606312627646,-91.565279012573,-91.56496643304104,-91.56467843639351,-91.56426834567725,-91.5637683166464,-91.5631742607184,-91.56203866762151,-91.56080447124405,-91.56016235433279,-91.55950457932131,-91.5590138413564,-91.55884685198359,-91.55881655056405,-91.55874347703731,-91.55872459013378,-91.55879195571666,-91.55872092770882,-91.55857218069032,-91.5584513831526,-91.55829471464715,-91.55830013480373,-91.55850700386249,-91.55861055528013,-91.55882394594092,-91.55904915143056,-91.55911377146293,-91.55912177818755,-91.55895160016509,-91.55886072317566,-91.55880214732963,-91.55871972509102,-91.55873039468779,-91.55873087063874,-91.55863262322596,-91.55857237241912,-91.55853369945888,-91.55822152059652,-91.55759077967173,-91.55709285632547,-91.55673045487634,-91.55642091731485,-91.55602608395478,-91.55565836991407,-91.55526186542822,-91.55494383773868,-91.55421835081424,-91.55307656364548,-91.55162888575686,-91.55109955103853,-91.55068358012473,-91.55046665714129,-91.55024525266131,-91.55009102612573,-91.54995572978736,-91.5499152150791,-91.5498599433903,-91.54979791069228,-91.54974291958779,-91.54950255420717,-91.54947689425516,-91.5494709291454,-91.54943795666479,-91.54946493472093,-91.54963274673294,-91.54964598308162,-91.54951674197051,-91.54931533314091,-91.54918113500628,-91.54911069943097,-91.54902265284869,-91.5488894435544,-91.54880540033132,-91.54861452287122,-91.54817333041458,-91.54796053182561,-91.54781219667292,-91.54765741367078,-91.54756146127423,-91.54746075723925,-91.54726851525538,-91.54711248098103,-91.54673378594599,-91.54635995474175,-91.54621810684999,-91.54599871628862,-91.54585199788532,-91.54555769488795,-91.54533396459196,-91.54521501251011,-91.54513474353826,-91.54508411484704,-91.54501811243976,-91.54471497011029,-91.54439869448817,-91.54421664575005,-91.54400831217563,-91.54380986198824,-91.54374821864793,-91.54362762639037,-91.54346358120191,-91.54332741910807,-91.54317704532507,-91.54300310527948,-91.54282659379074,-91.54257256986193,-91.54221501392804,-91.54195159911708,-91.54174081259882,-91.54153773004683,-91.54152190195946,-91.54157747902936,-91.54207905999442,-91.54226706426697,-91.54230156433219,-91.54223411581428,-91.5420731029492,-91.54159415610452,-91.54136449307401,-91.54115587959579,-91.54098277893341,-91.54085150749187,-91.54050859146777,-91.54033845645169,-91.54023215203628,-91.54011657186568,-91.53999914348906,-91.5399488323271,-91.54015129862663,-91.54045557673598,-91.5407062740161,-91.54090739228792,-91.54147879149751,-91.54177703631652,-91.54209964805234,-91.54230008286616,-91.542573183798,-91.54280333051892,-91.5428776088919,-91.54291811441922,-91.54284891400145,-91.54254356769229,-91.54235853108248,-91.54219978605563,-91.54211825236202,-91.54209038702496,-91.54217752164878,-91.54267775309748,-91.54314223732626,-91.54329139802918,-91.54332196935306,-91.5432483541032,-91.54295199237934,-91.54261867783124,-91.54251648523682,-91.54238534041487,-91.5423176041289,-91.5423963909482,-91.54239329665066,-91.54238140669638,-91.54229024681848,-91.54184480761649,-91.541471535227,-91.54129809460964,-91.54130072023754,-91.54130196399403,-91.54139511262332,-91.54153795899455,-91.54167165641638,-91.54161702045531,-91.54140897519117,-91.54114731590103,-91.54086777098736,-91.54067307141771,-91.54072566275208,-91.54092473202685,-91.5410195437228,-91.54104738067471,-91.54101769390925,-91.54087473877678,-91.54057616472707,-91.54016598432074,-91.53980561646175,-91.53942303582944,-91.53906758806821,-91.53883660405708,-91.53875157406002,-91.53852831949736,-91.53829879201079,-91.53798870328079,-91.53767630917753,-91.53720491400401,-91.53696706157767,-91.53676079268995,-91.5365288563189,-91.53640129051421,-91.53639313958159,-91.53641420976891,-91.5365764105844,-91.53652556370707,-91.53615439274473,-91.53568664301224,-91.53554444522619,-91.53541945118275,-91.5353193688927,-91.53491519033135,-91.53446157365988,-91.53418751582342,-91.53419040614622,-91.53426685543808,-91.53435146459699,-91.53459407269884,-91.53499502878888,-91.53525954266024,-91.53585266612338,-91.53591184862891,-91.53583383141299,-91.5357242824348,-91.53564640668678,-91.53566000457666,-91.53586225681619,-91.53614340554479,-91.53635970019616,-91.53663296122227,-91.53695293106206,-91.53722920715194,-91.53756331655057,-91.53806240983742,-91.53864199108585,-91.53934095089633,-91.53998022986876,-91.54070431303485,-91.54089203131338,-91.54082750194257,-91.54046865564499,-91.53991696978942,-91.53969307858573,-91.53955382142428,-91.53927797903614,-91.53925252593726,-91.53933110575565,-91.53944232849031,-91.53977089963774,-91.54009073329286,-91.54054100594873,-91.54079038352683,-91.5412390088357,-91.54196362824975,-91.54252466610684,-91.54293020892196,-91.54320649019651,-91.54362310692716,-91.54387585052294,-91.54407340419623,-91.54423370220391,-91.54413538451658,-91.54420668071072,-91.54432757933267,-91.54450384762902,-91.54478247439822,-91.54542417819007,-91.54611926964051,-91.5465446285599,-91.54695306944409,-91.54730086825784,-91.54788795934746,-91.54842391750319,-91.54851017947641,-91.54854907711163,-91.54853926684144,-91.54839939396729,-91.54808064049122,-91.54773741104563,-91.547519465867,-91.54758541808249,-91.54796530495604,-91.5483008281096,-91.5492122809396,-91.54942751741636,-91.5496675563319,-91.55016409403035,-91.5509017731939,-91.55118969512228,-91.55130282454235,-91.55134904729366,-91.55122927172356,-91.55171100876585,-91.5519962737588,-91.55245239570623,-91.55257508242934,-91.55257964675864,-91.55252563661455,-91.55239499895414,-91.55172419222534,-91.55140332547474,-91.55117618652852,-91.55102252632092,-91.55085861692886,-91.55075080711528,-91.55060246831782,-91.55055667127075,-91.55052166310104,-91.55057871522123,-91.55073114841328,-91.55096553654765,-91.55111240275617,-91.55118862383075,-91.55121631008734,-91.55116336550304,-91.55104590678251,-91.55087276442671,-91.5504079479179,-91.55000689758621,-91.54979282365555,-91.54965022412706,-91.54953370885123,-91.54932433726923,-91.54921127123002,-91.54894985651536,-91.54874734693458,-91.54863735981104,-91.54870009415485,-91.54931216501515,-91.54955334289107,-91.54979548666756,-91.54999439979912,-91.55029763077982,-91.55055970752362,-91.5508869141686,-91.55108114148736,-91.55120902733786,-91.55162057123158,-91.55221684537216,-91.55253795317898,-91.55268454381293,-91.55284874208449,-91.55293237554889,-91.5530457910191,-91.55319750866525,-91.55346975684186,-91.55432673999731,-91.55517798854532,-91.55582358052983,-91.55659666944572,-91.55729522008311,-91.55746527394861,-91.5577432741393,-91.55794744260312,-91.55794563655681,-91.55799888680788,-91.5580717094312,-91.55804284119316,-91.55806347581536,-91.55809737524433,-91.55816908016327,-91.55834460358582,-91.55850812689553,-91.55859499346634,-91.55888381239895,-91.55887048932509,-91.55870039268081,-91.55859541522784,-91.55851918498601,-91.55854639328068,-91.55865802817982,-91.55876564095215,-91.55895330789163,-91.55936068314166,-91.55967825165337,-91.55993685173887,-91.56002468941169,-91.5600441881988,-91.55996238793941,-91.55998566440728,-91.56003941906117,-91.56021386684741,-91.56034837733957,-91.5606053966812,-91.56074773791975,-91.56099039174842,-91.56125484634818,-91.56157318703541,-91.56192074478446,-91.56211773978023,-91.56237694749551,-91.56257194076291,-91.5628026979487,-91.56295983261302,-91.56296292441935,-91.56314729173307,-91.56339332058008,-91.56494496921185,-91.56518566921481,-91.56543550945331,-91.56560007153386,-91.56572411363344,-91.5658647875232,-91.56606211458967,-91.56623380245993,-91.56639545430468,-91.56657854189008,-91.56690737448189,-91.56698881156224,-91.5672589438411,-91.56756653065496,-91.56773213582464,-91.56778346097197,-91.56780436174287,-91.56773437654127,-91.56764956226684,-91.56772723638765,-91.56790902831236,-91.56827935445574,-91.56849500789575,-91.5686249255278,-91.56886402085753,-91.56907423049641,-91.56923214409761,-91.56930112592241,-91.56944821711413,-91.56963305482162,-91.56977081566218,-91.57012531225222,-91.57032247719341,-91.57086142580499,-91.57113511436296,-91.57159344971932,-91.5719487749973,-91.57243133804535,-91.57243503369229,-91.57235791023419,-91.57216161600824,-91.57145769540222,-91.57107337146822,-91.5703771141108,-91.57040536941405,-91.57071747998148,-91.57093808543037,-91.57130205503357,-91.57172212984354,-91.57212361690536,-91.57231291764411,-91.5726646537864,-91.5730759239508,-91.5733553744266,-91.57356080774868,-91.57366182800149,-91.57368962836841,-91.573550213858,-91.57349720488726,-91.57352638417341,-91.57366331717157,-91.57377152738569,-91.57392388610475,-91.57419848428313,-91.57449516736069,-91.57458691247194,-91.57458231062871,-91.57472800704429,-91.57512582076171,-91.57585278526871,-91.57604659373331,-91.57631945901623,-91.57636411407474,-91.57632390420063,-91.57621323372443,-91.57619640482153,-91.57621887962107,-91.57632477446055,-91.57658438210613,-91.57681275425871,-91.57710422478642,-91.57742668338918,-91.57771356411889,-91.57804492003032,-91.57821643415507,-91.57844240813473,-91.57856243148291,-91.57885721871018,-91.579254694921,-91.57955802019208,-91.58001333038759,-91.58106604556309,-91.58158556414044,-91.58203735443803,-91.58241946310126,-91.5830334068886,-91.58346456745883,-91.58460742863161,-91.5850359914967,-91.58529864528269,-91.58553654082539,-91.58567587391333,-91.58586332484076,-91.58614474676826,-91.58636149441776,-91.58661409603197,-91.58705332215862,-91.58711717280023,-91.58720202721118,-91.5873596461651,-91.58753557865731,-91.58788062480403,-91.58810730133375,-91.58827059338334,-91.588540815409,-91.58863408515184,-91.5886201728604,-91.58851450379052,-91.5881497338677,-91.58796408655412,-91.58782660597925,-91.58779550482997,-91.58785726203408,-91.58812695324833,-91.58839444496201,-91.58863315723738,-91.5890780498784,-91.58956596432063,-91.58989183593413,-91.59026741032017,-91.59055533520106,-91.59073073795118,-91.59071971430686,-91.59062028863138,-91.59025892031231,-91.58996763306132,-91.58964289578952,-91.58939424358564,-91.58918915803133,-91.58895513814807,-91.58907888696449,-91.58936831830401,-91.58972962245566,-91.59002020251359,-91.59023649386116,-91.59049478576902,-91.59106001756662,-91.59127500494009,-91.59158889345075,-91.59173748006027,-91.59185052171068,-91.59156851239688,-91.59158280222006,-91.59183121871378,-91.5921499472082,-91.59290442365304,-91.5941160194361,-91.59443657062552,-91.59479419469521,-91.59501342869623,-91.59520733555658,-91.59573277405539,-91.5957789621077,-91.59573977439965,-91.59560549549782,-91.59556271764002,-91.59562088868866,-91.5957203815326,-91.59603418961674,-91.59632361035055,-91.59650904435171,-91.59692689194317,-91.59715238149256,-91.59779475134437,-91.59807392085196,-91.5983083992723,-91.5985650437357,-91.59862520567401,-91.59888599499439,-91.59921283373531,-91.59969718129676,-91.60008618767745,-91.60036371910614,-91.60058221753314,-91.60083964200108,-91.60096471224624,-91.60144874623887,-91.60182827302643,-91.60216805080556,-91.60237031646541,-91.60241301944828,-91.60223810132433,-91.60216042105122,-91.60211640752664,-91.60215261493676,-91.60225987518545,-91.60238976814513,-91.6025517822322,-91.60280353756059,-91.60330157475569,-91.60345324107411,-91.60371826641979,-91.60426553332233,-91.60486631735751,-91.60505667759533,-91.60538593330106,-91.60564963835172,-91.60660310866739,-91.60716377295081,-91.607182754005,-91.60697152554694,-91.60673590320005,-91.60655503990125,-91.60641365666227,-91.60638474101484,-91.60650142802484,-91.60750456543734,-91.60783839087418,-91.60864014903878,-91.60902601478088,-91.60963661082683,-91.61026297980264,-91.61105549768159,-91.61160360079519,-91.61188195488106,-91.61202322157051,-91.6121290797609,-91.6121938553531,-91.61220463482117,-91.61217797253195,-91.61211381041409,-91.61210423677159,-91.61211088325226,-91.61211919162426,-91.61207337890103,-91.61210677421707,-91.61223922948525,-91.61229571289407,-91.61244932191998,-91.61257168289519,-91.61277781225554,-91.61281656671336,-91.61284204464117,-91.61283493103249,-91.61282409616628,-91.61276610513823,-91.61265866334656,-91.61256292273762,-91.61241623899427,-91.61220814802687,-91.6119553172031,-91.61177748543594,-91.61158529425671,-91.611445485576,-91.61125258259769,-91.61105025063993,-91.61074674937903,-91.61038452769155,-91.6102164565409,-91.60998796798559,-91.60971665771831,-91.60954353467096,-91.60942722183459,-91.60916817117375,-91.60899338105612,-91.60866144850175,-91.60814823424909,-91.60755200648413,-91.6073393760915,-91.60657287573122,-91.60624257974231,-91.60594172328776,-91.60566096753625,-91.60517957383901,-91.60475464816514,-91.60466773433194,-91.60446352448896,-91.6043788220119,-91.6042528382316,-91.60413177230203,-91.60405824473776,-91.60396125793777,-91.60377248461501,-91.60357266846091,-91.60331263670575,-91.60298463569225,-91.60248800398294,-91.60206725069212,-91.60171212176363,-91.6009947587773,-91.6002030016608,-91.59944581790501,-91.5991321103173,-91.59889366028133,-91.59870225971797,-91.59859589192949,-91.59856198756162,-91.59855460645574,-91.59856119916701,-91.59859186969314,-91.59874579106511,-91.59884054420144,-91.59890882913474,-91.59897317690456,-91.59896072492073,-91.59891700433083,-91.59881811839027,-91.59871555774781,-91.59850471624122,-91.59825249580312,-91.59808922352859,-91.59759954674733,-91.59728470880948,-91.59676654342286,-91.5966366911764,-91.59649857163113,-91.59643403824388,-91.59640116206515,-91.59641338343565,-91.59646084231936,-91.5966327482739,-91.59709058287036,-91.59749435761212,-91.59761739953684,-91.59772465427122,-91.59779170855498,-91.59786041092879,-91.59778515813167,-91.59737418932679,-91.59726176364067,-91.59724534845077,-91.59725765825833,-91.59728990709372,-91.59789448882873,-91.59817306735019,-91.59838726725478,-91.59866878520596,-91.5988344591911,-91.59903384798709,-91.59911986815675,-91.59931760555178,-91.59937684766417,-91.59940315705589,-91.59934685504366,-91.59922075662739,-91.59908125316508,-91.59901989086705,-91.59899904929001,-91.59905141544336,-91.59910741677101,-91.5992057114544,-91.59932434113352,-91.59965594036284,-91.59995036200374,-91.6001130797241,-91.6003596053648,-91.60039107157603,-91.60037554060658,-91.600047626258,-91.59981198967566,-91.59951817952756,-91.59942998374439,-91.59947430974091,-91.5998251572954,-91.59994350159145,-91.60021707627146,-91.60062017044076,-91.6009577502538,-91.60132681613389,-91.60154138584021,-91.60168370687101,-91.60205686526561,-91.60247300232334,-91.60290906785802,-91.60328419716224,-91.60349975959922,-91.60360594004023,-91.60376501082598,-91.60383720091181,-91.60399829588624,-91.60422552915816,-91.60448425674332,-91.60507126889061,-91.60551704174557,-91.6057951216394,-91.60621960724903,-91.60645767691258,-91.60692967610174,-91.6073514705941,-91.60786137361738,-91.60825147528104,-91.60849399589911,-91.60848356379908,-91.60833244714732,-91.60811214352874,-91.60790218978586,-91.60745322764825,-91.60715219445061,-91.60642810703889,-91.60559151657264,-91.60527888946483,-91.60488397761372,-91.60453927231644,-91.60398808667216,-91.60354043631278,-91.60298811165498,-91.60282033743812,-91.60269872720123,-91.60265712173226,-91.60255041916517,-91.6023582725654,-91.60219690841082,-91.60195947218902,-91.60160154484733,-91.60143694692994,-91.60139274418874,-91.60141926779491,-91.60144388776121,-91.60136021818421,-91.6013247237188,-91.60121678565251,-91.60105029050025,-91.60064894419958,-91.60026780183453,-91.59871650680491,-91.59820242005596,-91.59761539552701,-91.59700794891488,-91.5961529223174,-91.59534252107669,-91.59467958115356,-91.59446824266112,-91.5943542014345,-91.59426961941571,-91.59426156459219,-91.59410444256623,-91.59357282465963,-91.59340557230283,-91.59320475820934,-91.5930749047435,-91.59299986620238,-91.59292954165502,-91.59292480549473,-91.59300202142676,-91.59309346949642,-91.59297565452876,-91.59279448911433,-91.59228863538294,-91.59186936985846,-91.59124857319306,-91.59038845949055,-91.58989955274298,-91.5898297676391,-91.58977300757083,-91.58956562574178,-91.58873280562163,-91.58842283063758,-91.58805640852437,-91.58785126610942,-91.58737175292924,-91.5868609139186,-91.58652987430206,-91.58628531058646,-91.58608835149801,-91.58595235431727,-91.58538974441187,-91.58460013379852,-91.5842548721776,-91.58408227941914,-91.58406178902442,-91.5840915076228,-91.58400771317548,-91.58386779045254,-91.5836538663424,-91.58342220005296,-91.58262535377693,-91.5816075637408,-91.58090303545087,-91.58039556547357,-91.58028526698104,-91.58024317782164,-91.58025125794192,-91.58073160033435,-91.58107044725354,-91.58125948099344,-91.58164017827126,-91.58208021909945,-91.58237425740042,-91.58252776088429,-91.58260384676657,-91.58253695302798,-91.58229267975152,-91.5818526152112,-91.58104319255864,-91.58053158415373,-91.58024939939922,-91.57931854447264,-91.57854892146207,-91.57799011759349,-91.5776122357172,-91.57681007729532,-91.57614654343503,-91.5757343729308,-91.57538804594294,-91.57505329982791,-91.57474549649086,-91.57450389240915,-91.5742746334422,-91.57409604741305,-91.5737870687705,-91.57354633130255,-91.57344719377625,-91.57339552727896,-91.57343189622082,-91.57335806152069,-91.57314411713492,-91.57280435456863,-91.57253124602579,-91.57203792452434,-91.57179904520675,-91.57167321860126,-91.57164863699465,-91.57164254454622,-91.57159197930153,-91.57141935269745,-91.57125502415016,-91.57093457064072,-91.57066075501996,-91.56961199151259,-91.56895134337894,-91.56815074066198,-91.56783496963469,-91.56746919528413,-91.56719136055447,-91.56704210488147,-91.56684687348222,-91.56660595287127,-91.56629034829105,-91.56617081116602,-91.56611873724822,-91.56625689652677,-91.56648505986344,-91.56685451143471,-91.56737023569976,-91.56780411569201,-91.56815442205983,-91.56825911606849,-91.56818509878939,-91.56791614388553,-91.56759267024306,-91.56675824705016,-91.56590567727739,-91.5651428041437,-91.56436381705313,-91.56371496463308,-91.56296906501959,-91.56222042467586,-91.56184298810675,-91.56155512101117,-91.56143235409914,-91.56141710219762,-91.56147063384003,-91.56167507916433,-91.56201034550969,-91.56230258664057,-91.56276431323953,-91.56322961475672,-91.56340281053934,-91.56348273573442,-91.56344325994915,-91.56336791160153,-91.56306281068358,-91.56281588922921,-91.56263847255806,-91.56238453393871,-91.56206004452136,-91.56101348916191,-91.5602758485135,-91.56002256584318,-91.55946814512501,-91.55863129411078,-91.55821235440597,-91.55778378744074,-91.55742289811306,-91.55679874955602,-91.55652268908518,-91.55634972767153,-91.55611849830477,-91.55598431280156,-91.55595766382687,-91.55597215485199,-91.55581433127993,-91.55565587927039,-91.55550012674357,-91.55522490726206,-91.55481497962633,-91.55450063966443,-91.55409611333219,-91.55359875652722,-91.55337855809528,-91.55324022839456,-91.55327498130906,-91.5530315181162,-91.55270227145189,-91.55216390927872,-91.55176351048974,-91.5515174624167,-91.55131640722054,-91.55108323540834,-91.55110360127301,-91.5512586343675,-91.55139366464424,-91.55149167457446,-91.55143982526536,-91.55138070716748,-91.55117398282397,-91.55101042476659,-91.55075824200517,-91.55059978900746,-91.55034358605273,-91.55004282802501,-91.54959901616633,-91.54893114530844,-91.54813387222408,-91.54749341564944,-91.54655820717475,-91.54586489914668,-91.54522582668488,-91.54496240956874,-91.54475205113697,-91.54433480499048,-91.54370382186406,-91.54318356608329,-91.54293600216062,-91.54256560600093,-91.54212662316303,-91.54145886153474,-91.54055476428405,-91.53978828121458,-91.53912165892062,-91.53888276894997,-91.53873697282638,-91.53863788919061,-91.53887448488761,-91.53924679862897,-91.53967101753597,-91.53975336106215,-91.53958385484016,-91.53938847292989,-91.53913220135138,-91.53894341510895,-91.53868087469401,-91.53840919049924,-91.53807710666725,-91.53705160423414,-91.53640163725436,-91.53561978352859,-91.53482526640394,-91.5345002058675,-91.53428353431978,-91.53414166846174,-91.53412500972156,-91.53423726139052,-91.53444274288925,-91.53468845756227,-91.53498817272963,-91.53520058419227,-91.53562331795024,-91.53595382059456,-91.53712544473539,-91.53789411950149,-91.53834113072084,-91.53856463826924,-91.53869395604036,-91.53855173950761,-91.5382204345949,-91.53762878334332,-91.53697501208164,-91.53668420429766,-91.53638946733271,-91.5362793318596,-91.53614834549444,-91.53615305771086,-91.53630053448651,-91.53647820148059,-91.53709731256973,-91.53723969006442,-91.53720120921692,-91.53709765470427,-91.53688906854437,-91.53653052044005,-91.53553414215814,-91.5347019174947,-91.53423610493755,-91.53384037603423,-91.53288310206504,-91.53227031355328,-91.53211149284942,-91.53210130623128,-91.53209642447757,-91.53209332262151,-91.53113463004459,-91.52951099709556,-91.52951179733664,-91.52946243210133,-91.52949331919724,-91.52944922057706,-91.5294403717923,-91.52943162942483,-91.5294294544522,-91.52939458429569,-91.52938715434989,-91.52939807623216,-91.5294083482347,-91.52938923092063,-91.52937558326819,-91.52938082168447,-91.52935845478014,-91.52935979775131,-91.52934467910593,-91.52934369761694,-91.52934260617326,-91.52936885463788,-91.52938877516463,-91.52940560926325,-91.52943744702316,-91.52945234255483,-91.52948987514773,-91.52949415813011,-91.52947548317098,-91.52946076579185,-91.52943586592394,-91.52945184869039,-91.52943724629198,-91.52944658057152,-91.52942060497892,-91.52935470931784,-91.52930522494425,-91.5292971755398,-91.52925993119598,-91.52924007790854,-91.52919725510544,-91.52916043998037,-91.52916473600509,-91.52913361333796,-91.52910173544112,-91.52910014372799,-91.52907384841477,-91.52905432395349,-91.52899990079696,-91.52893333841372,-91.52888996727665,-91.52886356120047,-91.52879173267392,-91.52874792889756,-91.52876770392089,-91.52879521347685,-91.52881735541179,-91.52889634004643,-91.52896963851011,-91.52900165952202,-91.52906938904931,-91.52913690745169,-91.52911867225619,-91.52911052529286,-91.52909102938776,-91.52908270660235,-91.52908062063541,-91.52906101981637,-91.52906041189861,-91.52903490248652,-91.52909786399933,-91.52914040684581,-91.52916747025024,-91.52914957073355,-91.52909201378873,-91.52904209837891,-91.52900862954982,-91.52896649881552,-91.52896243602837,-91.52895233718992,-91.52894092826993,-91.52891569258803,-91.52892897247845,-91.52895053805723,-91.52902986373093,-91.52913490636998,-91.52920173310189,-91.52922917716921,-91.52922677118825,-91.52922422909103,-91.5291736200938,-91.52912330158809,-91.52909636373479,-91.52905471331022,-91.52906837774752,-91.52903263141778,-91.52903498088857,-91.52901541241667,-91.52900232545758,-91.52899952155126,-91.52902114337289,-91.5290405686784,-91.52902203458805,-91.52898158044168,-91.52896290029923,-91.52894642088708,-91.52894392714506,-91.52894232141809,-91.52892598863036,-91.52891599566335,-91.52888997038779,-91.52895725190832,-91.52899305393581,-91.52898394898199,-91.52901268922776,-91.52898697338672,-91.52895475633993,-91.52894792150387,-91.5289373786331,-91.52896497688232,-91.52897034097414,-91.52897468770563,-91.5289638671353,-91.52897632134534,-91.52899570838015,-91.52895744642191,-91.5289219059225,-91.528913114357,-91.52891865742987,-91.52892430698719,-91.52885886435938,-91.52888838061487,-91.5289020367902,-91.52892375198557,-91.52895201083493,-91.52890771004181,-91.52892030822629,-91.52891778506272,-91.52894379137197,-91.52894952812601,-91.52894746485839,-91.52893437006971,-91.52891617364321,-91.5289213492313,-91.52893575226737,-91.52903686956154,-91.53923943900399,-91.54923877134291,-91.55611752085672,-91.5593684621421,-91.56945388417275,-91.57952295607356,-91.58961442429859,-91.59965275487197,-91.60969185607959,-91.62009836865573,-91.62994481199949,-91.64008622189347,-91.65035010918928,-91.66048087209883,-91.67060333308949,-91.69068945997594,-91.70084690270868,-91.71082749576568,-91.72092851370566,-91.74124551836506,-91.75014401749077,-91.75124249644655,-91.7719926538456,-91.78207199979893,-91.79215181515173,-91.80206739889935,-91.81240485953712,-91.83265563718096,-91.84282651106186,-91.85292769439745,-91.862740229517,-91.87317041002952,-91.87513690132896,-91.88301232916955,-91.89297318263283,-91.90298966497782,-91.91300595786518,-91.93337135204501,-91.9435494247486,-91.97346385275041,-91.99354707683862],"lat":[44.59668292914044,44.59668715663001,44.5966826838157,44.59634398323603,44.59602482440533,44.59583831824214,44.59518466679653,44.594255485426,44.59353324233625,44.59336251804685,44.59252983470304,44.59237799423635,44.59225481224805,44.59214012864563,44.59176560009866,44.59170216431063,44.59167922755552,44.59168105488505,44.59159296680168,44.59144974675968,44.59117130110204,44.59057225800046,44.59023470120941,44.58973161791483,44.58857110580869,44.58730866292667,44.58655738589625,44.58555773146492,44.58478803392448,44.58325385633376,44.58105597125977,44.58016588061815,44.57979712564623,44.57909258150449,44.57811667821075,44.57694529150127,44.57549764361421,44.57399490394341,44.57324019168564,44.57221204690224,44.57041120292954,44.5683185797166,44.56572030337325,44.56521566869612,44.56470344042686,44.56444214724775,44.56330494716986,44.56273357000585,44.56214813137489,44.56119037660033,44.55967676624298,44.55868232791843,44.55828334456508,44.55727581283232,44.55575022234767,44.55235018895065,44.55136335724328,44.55104819792282,44.55003909748511,44.54769115125005,44.54615657232296,44.54309154632259,44.54218510761947,44.54106217059876,44.53867469205969,44.53613660437,44.53537571129129,44.53399817570565,44.53228975996739,44.53153999413958,44.53037496485526,44.52887446459551,44.52659840544553,44.5256218091149,44.52473321583688,44.52428349362673,44.52370036103381,44.52325637965152,44.52246447273765,44.52199972432851,44.52086870652967,44.52049868022092,44.51993503370864,44.51769390806943,44.51687024279191,44.51477531225509,44.51345272347389,44.5125342919688,44.51110672666012,44.51094500171681,44.51033671760901,44.51001568621016,44.50925605574561,44.50806915594544,44.50651290162494,44.50589240219351,44.50538187930692,44.50484732888722,44.50268303616675,44.50085751561285,44.50016253437698,44.49978752521429,44.49832827271503,44.49623592128222,44.49557293043293,44.49449941886477,44.49407365476167,44.49354257579306,44.49192187663379,44.49090185409439,44.48992676925596,44.48981989735658,44.48953345985214,44.48903451042658,44.487851282886,44.48745161685872,44.4870436533951,44.48642491966827,44.48537111480141,44.48489735468768,44.48412507829772,44.48372849878053,44.48333864799919,44.48190841309185,44.48058201186937,44.47941919054977,44.4787967574981,44.47827596080953,44.47608493714504,44.47526848246419,44.47399435030754,44.4734932623325,44.47176191348666,44.46998289948645,44.46820014757043,44.46772097240206,44.46724053259994,44.46684908561458,44.46634887349249,44.46461017965516,44.46299092887428,44.46145328653625,44.45984646937094,44.45938394590191,44.45878210496203,44.45752687059437,44.45559069671609,44.45219876532155,44.45001598935299,44.44865814187482,44.44684511958188,44.44488357867952,44.44259208558109,44.44151934466022,44.44069700458656,44.43944514489007,44.43917174860524,44.43878742396954,44.43839359541558,44.43739056848341,44.43701201174397,44.43640522573583,44.43566665469415,44.43513503751799,44.43460248275794,44.43433074942513,44.4340574311495,44.43301803001552,44.43184274088664,44.43067196145283,44.42736101445108,44.42461068695082,44.42399532538082,44.42346256370477,44.42288696558351,44.42234759571765,44.42143463349849,44.42000486032969,44.41968851203217,44.41937986366439,44.41908590094107,44.41851535575364,44.41801649543829,44.41741070443194,44.41675355055124,44.41627026166206,44.41584269385007,44.4155969539528,44.41542062554205,44.41514462914784,44.41466080783893,44.41422137619343,44.4136633724718,44.41281393708028,44.41243200249434,44.41215507086524,44.41153288897187,44.40999308548442,44.40946905474336,44.40894985527454,44.40816065966902,44.40740006186441,44.40658533473982,44.405463484619,44.40496371845858,44.40465655087932,44.404294627731,44.40410980367448,44.40403772380582,44.40402948606235,44.40425950122334,44.40427523179451,44.40428530953184,44.40416705515059,44.4040078258316,44.40363688529271,44.40322758581785,44.40277829135575,44.40238116649261,44.40203154691098,44.40162832381614,44.40090134128924,44.40042503259363,44.39964125125592,44.39834396318631,44.39432346255735,44.39346428862643,44.39272541718969,44.39194761861464,44.39112962191874,44.39028048763493,44.38989157340728,44.38926735739045,44.3888814625759,44.38832485109766,44.38663034824995,44.38587136068173,44.38485553061012,44.38428036350006,44.38259708140752,44.38154105708842,44.38082323126333,44.380558905523,44.38032213707434,44.38030942763109,44.38028636468735,44.38010454753664,44.37988684218288,44.37970938469138,44.37948287776535,44.3792199420711,44.37877947155501,44.37818085453426,44.37762408351887,44.37681468935217,44.37560899239297,44.37482739035323,44.37395189532642,44.37306387641105,44.37223628039366,44.37145237812191,44.37015652509231,44.36902931209487,44.36868297871584,44.36851082511478,44.36843103061891,44.36836557996309,44.36838864300346,44.36832171546251,44.36819857329237,44.3678082221872,44.36743569393356,44.3671917560785,44.36701818888314,44.3666018647372,44.36585509569552,44.36510108419792,44.3636360138421,44.36145551027433,44.36034058651665,44.35951189530219,44.35881199965683,44.35789225485139,44.35576373578527,44.35384754194497,44.35304811472734,44.35204295752951,44.35122182476495,44.34976579175975,44.34849832550258,44.3468744161511,44.34546645627941,44.34364841660586,44.34235659006238,44.34096726364264,44.3406098545426,44.33944612586209,44.33882756331531,44.33834572328334,44.33782068230244,44.33719308287378,44.33664389466316,44.335706860523,44.33476693138615,44.33447126848912,44.3336718999247,44.33300760678128,44.33191232538092,44.3299762633608,44.32845159460479,44.32739796407972,44.32606025895416,44.32497803108144,44.32255349258786,44.32005240363443,44.31837120472307,44.3172718014716,44.31517620325297,44.31258036033771,44.31171644922011,44.31093821210239,44.31012268128739,44.30946118982795,44.30884969344419,44.30818414905481,44.30725394355001,44.30661651509325,44.30600068540192,44.30560488775011,44.30486773160023,44.30432256745754,44.30270002176374,44.30155521546025,44.3003744630911,44.29938934774906,44.29868607481666,44.29792396309509,44.29685547344481,44.29580645842904,44.29554420463489,44.29485067043809,44.29391719828735,44.29303493075481,44.29243113481322,44.29168911196675,44.29086211761241,44.29023379381877,44.28915266430433,44.28837943345514,44.288107739065,44.28744179761244,44.28702134262385,44.28663222842015,44.28614556369313,44.28581292344859,44.2854628372245,44.28535177419067,44.28523636960615,44.28505733872319,44.28486787086118,44.28472341538765,44.28449206384406,44.28413633774962,44.28369064473508,44.28326184836077,44.28269977424075,44.28221783519248,44.28173576556229,44.28123152954301,44.28069419999734,44.27952108807018,44.27777999671405,44.27725455416525,44.27683033535467,44.27637273797063,44.27598069596677,44.27558825170474,44.27507421792615,44.27448912735799,44.27400807203016,44.27362997876904,44.27304196234032,44.27250609100388,44.2719058693465,44.27143865304693,44.27081176578324,44.27015149224715,44.26971525227506,44.26903634412139,44.26792400506201,44.26712590452812,44.26605015093256,44.26511450193254,44.26384218865617,44.26330791063612,44.2627250973291,44.26233184864013,44.2618389633756,44.26139729021889,44.26082127057285,44.2604300122209,44.25986673577194,44.25933804758131,44.25844908159549,44.25767999145135,44.25713426344662,44.25635844166654,44.25582893291475,44.25538444024926,44.25480199869553,44.25427049769529,44.25358173791396,44.25313393567488,44.25265166405956,44.25218535355083,44.25135545077561,44.25073056451734,44.24972546352062,44.24888166798053,44.247229064786,44.24588790709179,44.24442316193415,44.24335806775505,44.2422747356167,44.2415305906727,44.24039124435411,44.23913098430113,44.23782159693959,44.23642441461969,44.2358841435525,44.23513526685175,44.23430257476614,44.23277109888855,44.23147609119646,44.23078601986527,44.22937261149111,44.22865086928083,44.22799937845728,44.22739870529264,44.22650060336399,44.22509742745479,44.22427760182666,44.22374808935835,44.22306517558851,44.22149722306289,44.2200154565474,44.21888286129911,44.21763816611937,44.21676971808721,44.21591604503039,44.21492440371922,44.21375954158728,44.2129877014192,44.21214459454674,44.21128336083503,44.21078442790298,44.20998055002388,44.20881319534222,44.207766908288,44.2067180847825,44.20600580601483,44.20520568696233,44.20404957918141,44.20280663093926,44.20196360771833,44.20138846147619,44.20076938412008,44.20048460451756,44.20020314855012,44.19992192055442,44.19957810497767,44.19923225214063,44.19906056014482,44.19871673877559,44.19831436215292,44.19806961384636,44.19788025434929,44.19759325360264,44.19715117850245,44.19702468110609,44.19685426240686,44.19668282728968,44.19609805367395,44.19529336881052,44.19441632260486,44.19333433656444,44.19290278635059,44.19212757430079,44.19139297269795,44.19078590103132,44.1898485398421,44.18856419277634,44.18786872332621,44.18695903987727,44.18592851348845,44.18506349812076,44.18484877503684,44.18426909667534,44.18351810223239,44.18326292227367,44.18268468889585,44.18212738099387,44.18165819365012,44.1813655107497,44.18102391860278,44.18079068781963,44.18053645822054,44.18031319822162,44.18001253587057,44.17960078942707,44.17925540853781,44.1788870888208,44.17849358622084,44.17735325938141,44.17616721116265,44.17405658849405,44.17269526658487,44.17081827856818,44.16868832753477,44.16737011636647,44.16633660616621,44.16416019141754,44.16392165697535,44.1631396618809,44.16213428045046,44.16066425329392,44.15930404437605,44.15812003890184,44.15768563053624,44.15650426706542,44.15545564304261,44.15475913533689,44.15399276742608,44.15333132679808,44.15277955771855,44.1524622466156,44.15227655794276,44.1520253813156,44.15173170442739,44.15156531342564,44.15137427329306,44.15113141927915,44.15059855804283,44.14996377440188,44.14957971178024,44.14932411634881,44.14883638232536,44.14828602368917,44.14779824223108,44.14747789161373,44.14722253628086,44.1469620967062,44.14678984354161,44.14680129177683,44.14597341749921,44.14509965205063,44.14455250819288,44.1439417759952,44.14359293211195,44.14279152976,44.14181372938664,44.14107826531631,44.14042878279935,44.13975612384042,44.13925927950221,44.13854406120124,44.13805415506911,44.13722993696621,44.13671063245891,44.13630050900731,44.13584717643094,44.13558903184362,44.13529025288372,44.13507729574517,44.13488721559921,44.13466244914852,44.13454212946682,44.13431876609161,44.13417573728711,44.13410265770566,44.13404790496116,44.13400060512605,44.13393692151946,44.13383019476009,44.13371948469902,44.13355000088729,44.13333398398544,44.13297245015977,44.13278439450205,44.13253876052273,44.1321834316323,44.13178429645392,44.13125697501716,44.13081056248352,44.13049258349495,44.13010469420757,44.12971465715952,44.12941003549268,44.12879874449337,44.12714305225919,44.12510618787522,44.12409968070338,44.12324617898333,44.12241350026435,44.12160025166681,44.12085271698042,44.12021285241399,44.11961741358432,44.11906392096952,44.11853171998874,44.11802034593403,44.11749726154977,44.11680555885144,44.11631363270327,44.11593491909821,44.11535799746967,44.11471581139421,44.1143421878212,44.11385718449647,44.1123748873805,44.11199710368808,44.11126483896976,44.11057544283889,44.10937098503838,44.10766611439279,44.10495038353074,44.10468442158101,44.10428644333589,44.10395816684741,44.1037625459531,44.10311613082722,44.10249284143028,44.10232356985914,44.10187412632176,44.10120451507748,44.10025468891398,44.09914947842103,44.09881133141125,44.09839893316023,44.09814733298976,44.09800526296749,44.0978405012066,44.09783108790735,44.09777539992972,44.09785347740664,44.09795312897569,44.09802617398946,44.09810012285997,44.09826231645764,44.09834018818079,44.09835021670431,44.09831734500743,44.09826071267322,44.09813578204168,44.09798907738031,44.09781833543691,44.09763571148616,44.09711364784127,44.09628569634486,44.09340689709972,44.09113939804599,44.08958025228696,44.0883788790286,44.08790097316513,44.08684968111093,44.08588168212421,44.08498060371797,44.08431790346141,44.08310087402517,44.08203588911033,44.08143803305924,44.07979137995998,44.07837949513746,44.07617112452006,44.07458164450091,44.07356960169074,44.07253594309744,44.07200859390658,44.07152657459615,44.07113459461417,44.07078974243948,44.07039881181811,44.07008562372086,44.06932312519734,44.06823125512702,44.0672880300243,44.06612277574617,44.06515463788251,44.0645172169386,44.06401426814298,44.06351398125307,44.06306124552292,44.06283034703048,44.06279523470037,44.06282811739965,44.06297325056013,44.06313837754929,44.06355439010826,44.0636602713753,44.06362558694946,44.06361311242983,44.06349059905243,44.06325360060848,44.06288683462379,44.06216887443885,44.06140618100233,44.06075131819162,44.06000773422404,44.05917792075546,44.0583445661952,44.057553438864,44.05665517340472,44.05571878399531,44.05531803206785,44.05497076771518,44.05466925241776,44.0543930219002,44.05409851331645,44.05370035420513,44.05316960296492,44.05282885779415,44.05223140617136,44.05162984241631,44.05102666688072,44.050550964934,44.05015185420739,44.04954602861601,44.04906855431718,44.04856972888041,44.04787195182406,44.04715123274728,44.04631897143272,44.04561682820795,44.04478196475713,44.04379170047256,44.04302131309523,44.04198487716249,44.04091453699619,44.03886055133055,44.03729217019554,44.036234934573,44.03504783779525,44.03454329740792,44.0339726828774,44.03329700061017,44.03260081378593,44.03130243896275,44.03005768345309,44.02852305556807,44.02774916055147,44.0274963611533,44.0272240405385,44.02708231424806,44.02698203152163,44.02698087435496,44.02698847877685,44.02695259858639,44.02691058278427,44.02684095143982,44.02670295014286,44.02662381889267,44.02640214600267,44.02609452056279,44.0258823487367,44.02576845436527,44.02567900841493,44.02559898162816,44.0253918103345,44.02537821362285,44.02725823448498,44.0280383593398,44.02860675472058,44.02923993492924,44.0299374616591,44.03029171084558,44.0306487976376,44.03119186179284,44.03173119341316,44.03199031330892,44.0326267073583,44.03356838425691,44.03415561720862,44.03454386544892,44.03480119249581,44.03515296485723,44.03583675794181,44.0361340363739,44.03645857608983,44.03685328594948,44.03736239506016,44.03762922282908,44.03836963342551,44.03888638917068,44.03921909484716,44.03960424466882,44.0405601149855,44.04116923004619,44.04187335879536,44.04241532833693,44.04340408778504,44.04395982933207,44.04448858157031,44.04478331566633,44.0449985978363,44.04513076569327,44.04524567574507,44.04610670226425,44.04623838058452,44.04682189641948,44.04762085824222,44.04879883974188,44.05012320420276,44.05112780215208,44.0515705485735,44.05170768547388,44.05183041018265,44.05190113596139,44.0520043230613,44.05197600958491,44.05205134246558,44.05229396287897,44.05271217835979,44.0533181106913,44.05390500595975,44.05401174074706,44.05429746659821,44.05465206369863,44.05521091463417,44.05558776453994,44.0560604682554,44.05637008907654,44.05680640146552,44.05778556042496,44.05871812832136,44.05898745464062,44.05921073000028,44.05938602421091,44.05959806421062,44.05974743290568,44.06007924993913,44.0602259997026,44.0603718301719,44.06103177210608,44.06116888545251,44.06141728767705,44.06158859101149,44.06174921094465,44.0618877434443,44.06251472903587,44.0631956404474,44.06363900600719,44.06401121767461,44.06429025260829,44.06459081607446,44.06486718846924,44.06520776523574,44.06535485171563,44.06565526266107,44.06612904022972,44.06696718032669,44.06727382844461,44.06754677187519,44.06772694176346,44.06788974388193,44.06815622975734,44.06837596497958,44.06848852823008,44.06864311104017,44.0688909100726,44.06926548191004,44.07015297451873,44.0707233232082,44.07127148345514,44.07192900882355,44.07220695062431,44.07281121237001,44.07300797910459,44.07314812847168,44.07325261967839,44.07337272624718,44.07344133758258,44.0737737474949,44.07400832729603,44.07412320857429,44.07422497880729,44.07429483610339,44.07437581396942,44.07449034933418,44.07473650219932,44.0750096854719,44.07528393607532,44.07543750182101,44.07547603819745,44.07548116673686,44.07551818658008,44.0755832594581,44.07572935946671,44.07582141178031,44.07591373750107,44.07583971564623,44.07581259749161,44.07582530168256,44.07588567836327,44.07621334429396,44.07645491546065,44.07656152940226,44.0766000524476,44.07653899446596,44.0763319893928,44.07619118631983,44.07609700041024,44.07603534291407,44.07606473498191,44.07616515674096,44.07630154505668,44.07633298493279,44.07630851569933,44.07621631171738,44.07620728112818,44.07622894481045,44.07637008720189,44.0766405845988,44.07676345656093,44.07701671514178,44.07715870244942,44.07734986360952,44.0775225086557,44.07765104249003,44.07766634150653,44.0776606066749,44.07758889670653,44.07734939605201,44.07724168002291,44.07723879212526,44.07732520414788,44.077457512578,44.07775934900204,44.07831266577175,44.07849855392238,44.0789025372698,44.07905686317898,44.07904283810375,44.07893618550023,44.07849366523303,44.07843902794007,44.07844629621336,44.07850085025409,44.07867814004803,44.07894713128251,44.07922605068492,44.07965808190534,44.07982784997281,44.08006871979093,44.08018893211393,44.08028404423196,44.08047638344934,44.08072713788287,44.08100173815679,44.08133113750346,44.08165005819259,44.08190901094456,44.08205569722938,44.0822222782831,44.0823977152226,44.082599783226,44.08269994785742,44.08284746125051,44.08308259093771,44.08337743758502,44.08369815360697,44.08386101481963,44.08397444862156,44.08399609757103,44.08406953981036,44.08420354840259,44.08430464950817,44.08435254078425,44.08452694570617,44.08467518052418,44.08493841146549,44.08510948786407,44.08517384747017,44.08522228797832,44.08541499483698,44.08572905505449,44.08599421808477,44.08643730468731,44.08667436398537,44.08745141865169,44.08762473501885,44.08780764999307,44.08804604114017,44.08842038746821,44.08882739181272,44.08932216322135,44.08988599204204,44.09055775671033,44.09076955690684,44.09098575753465,44.09099894259197,44.09100311823921,44.09077799627381,44.09038972681169,44.09035196911069,44.09035958821952,44.09051574865597,44.09073703547379,44.09099265126101,44.09117863571022,44.09176472391129,44.09234636537774,44.09289212876859,44.0934282245716,44.09363673491161,44.09410327730944,44.09432104743667,44.09515955597377,44.09565526425531,44.09623259563729,44.09646151968514,44.09661156999093,44.09669077938888,44.09679311677234,44.09706943777515,44.0976906893565,44.09827463810944,44.09864835512005,44.09891796721638,44.09902668530242,44.09923745723658,44.09945011486951,44.09958587860908,44.09964279439227,44.09964531819955,44.0996819745892,44.09976555172013,44.0998868737065,44.10011142822079,44.10058701495954,44.10084228702245,44.10100825315111,44.10121886917823,44.10157083417205,44.10178691196398,44.10191437784278,44.10206362503304,44.10229760412578,44.10250617993442,44.10276287935547,44.10327082885047,44.10355223873379,44.10378360742206,44.10393726570067,44.10410598938166,44.10410756198378,44.10395033581941,44.1039081293533,44.1038130817178,44.1037863316209,44.10394680676907,44.10410212494024,44.10411773191057,44.10422795424979,44.1042742894305,44.10442850757861,44.10469835440291,44.10495063710186,44.10521115571702,44.10536350633156,44.10547443128139,44.10564498541848,44.10601590304331,44.10641937908242,44.10657700395148,44.10669674610381,44.10681662621757,44.1071554214753,44.10767796505693,44.10788393541181,44.10819876789805,44.10898812593462,44.10945771586937,44.11006856858229,44.11051898764411,44.11110655644943,44.11169027376477,44.11225512283128,44.11267441925817,44.11345851919928,44.11367059888522,44.11390558067318,44.11449798492229,44.11555489132188,44.11609174740041,44.1162948300889,44.11675457809492,44.11721659030729,44.11818196441715,44.11861654874851,44.11899034313799,44.11913932232194,44.11931358312035,44.11940728781479,44.11950997077384,44.11946062241877,44.11936442868939,44.1193152191555,44.11929987415832,44.11933353212835,44.11939653593689,44.11958448848985,44.11968389293419,44.12002502777577,44.12021817983037,44.12049502751444,44.12070591938985,44.12088497613783,44.12102339926901,44.12115666932345,44.12128784775978,44.1214262773473,44.12159132802329,44.12188271402698,44.12210280097669,44.12224516403346,44.12238991750042,44.12251597279388,44.12311779543524,44.12329607671199,44.1235394118734,44.12375560479457,44.12400402693019,44.12446356190804,44.12536871312789,44.12558085544581,44.12600522908831,44.12640580154564,44.12689559934643,44.12729561919939,44.12768076075492,44.1278366112706,44.1279669180085,44.12828966809655,44.12897578926108,44.12961450055236,44.13017519597156,44.13102065168485,44.13150181579147,44.13171601392148,44.13196381090336,44.13226181228197,44.1328274570726,44.1331739421321,44.13334588166001,44.13349076816267,44.13381740030624,44.13395396993992,44.13426436222032,44.13480156419175,44.13501428450192,44.13549586626003,44.13569181413052,44.13612800650768,44.13640843530951,44.13666766002815,44.13693978237424,44.13747778267238,44.13817283584474,44.1384838598068,44.14020452014753,44.14085507717396,44.14133239494942,44.14164353692578,44.14181308775692,44.14203603016091,44.14218307397061,44.14228620052673,44.14236498815686,44.14251452504842,44.1426223841239,44.14281357594237,44.14290818475149,44.14303575548078,44.14339783979179,44.1435711388501,44.14377377783799,44.14396314631163,44.14418179018727,44.1444284627933,44.14470248304592,44.14495197719818,44.14507554919602,44.14501955053954,44.14492759828677,44.14486102279934,44.14489815154708,44.14499177095171,44.14513056630573,44.14546145425309,44.14569782271963,44.1459567778963,44.14612051862866,44.14725990474716,44.14751227497926,44.14780519718479,44.14820950103066,44.14849562040702,44.14862733734719,44.14879508093824,44.14884889385146,44.14885829830318,44.1487628147334,44.14852041195915,44.14840854774604,44.14824795159965,44.14811675684872,44.14813686501866,44.14824656707776,44.14842641127056,44.14870637215809,44.14898054990498,44.1492033892603,44.14933144140488,44.14929729945823,44.14906861934355,44.14893810524702,44.14882441721964,44.14883896182114,44.14892695393068,44.14917867451347,44.14942090598094,44.149522754895,44.14954410475261,44.14952180049809,44.14947465473288,44.14913109582496,44.14910407243796,44.14917948582191,44.1493543581408,44.14977448464796,44.15003913427069,44.15017384139292,44.15031896028923,44.15075879622693,44.15099892791139,44.15153465461052,44.15186546673716,44.15212189000673,44.15217191852062,44.15220177383299,44.1521153765257,44.15183601625682,44.15167071109265,44.15154384808404,44.15149751649519,44.1514181185546,44.15125258786776,44.15110593188871,44.15091175952892,44.15024868507599,44.15007389953507,44.14995728070841,44.14979560351421,44.14979256362318,44.14973099681387,44.14973883556208,44.14990681880425,44.1500821227615,44.15051215023554,44.15083556655767,44.1511038818572,44.15134231331999,44.15140716487861,44.1517158704942,44.15211749536002,44.15242601504706,44.15268194064511,44.15294202097844,44.1531799498302,44.15339409583812,44.15357002896237,44.15365984883631,44.15370231868756,44.15368042440669,44.15354281606789,44.15328764020575,44.15303034024067,44.15280958154506,44.15268854066751,44.15254500923429,44.15250299803637,44.1524946431134,44.15264609104175,44.15274080464909,44.15271354203506,44.15270728506471,44.15272797040657,44.15283294097874,44.15296060532835,44.15354825539603,44.15392627203036,44.15454287324611,44.15468668799934,44.15476610547097,44.15479494537949,44.15479445881326,44.15475077025965,44.15464274692707,44.15419361351717,44.15403718319757,44.1538907351006,44.15374908965452,44.15368853879194,44.15361401118376,44.15363991241624,44.15369230916062,44.15385469301464,44.15402190294449,44.15418364559476,44.1543780169357,44.15469228940282,44.15492025425881,44.15518707189392,44.15555596284908,44.15571828744401,44.15587675437948,44.15591952027517,44.15589061370184,44.15582865837771,44.15579493715375,44.15577666106525,44.15594466354229,44.15613930722317,44.15639305824077,44.15654957302167,44.15675433037458,44.1571557356905,44.1573967848242,44.15774320786785,44.15798583354167,44.15826344204233,44.15871563451071,44.15935187793765,44.15957540981978,44.15975041492857,44.1598045753253,44.15974345606057,44.15952120008705,44.15887536072379,44.15874118068649,44.15870775367946,44.15874187014327,44.15883194181963,44.15947670625352,44.16000814542192,44.16021515143251,44.16034875757452,44.16033233440198,44.16022681915692,44.16029792621581,44.16042410236908,44.16073729453711,44.16113899834208,44.16175781051861,44.16203690880489,44.16262605705334,44.16312412801512,44.16366817872259,44.16380846700051,44.1639058559234,44.1641105256397,44.16412404435524,44.16411564095152,44.16404488786019,44.16402529969112,44.16427493711036,44.16437267103148,44.16438682153171,44.16423462190139,44.16416157833189,44.16395455666741,44.1639124830722,44.16395191528152,44.16404202076551,44.16412270767201,44.16414288772166,44.16411022472747,44.16405924208405,44.16375119492245,44.16365475644707,44.16364659551562,44.16369944652423,44.16378601057001,44.16411227346762,44.16429507910114,44.16445839488194,44.16459194354137,44.16468880927425,44.16471604157279,44.16473701029218,44.1646891398078,44.1642922814038,44.16419268399008,44.16414247808497,44.1641310696393,44.16389225225372,44.16378665552482,44.16372392126243,44.16372765868284,44.16378513538649,44.16418483526357,44.16434654192513,44.16466010965137,44.16483511560066,44.16501197816564,44.16527047931689,44.16557800922496,44.16578316278641,44.16676143531602,44.16693758901436,44.16717666665289,44.16726950253198,44.16731029197511,44.16740189442748,44.16757383887253,44.16787669188123,44.16808790742966,44.1683152839171,44.16849682591181,44.1686919348833,44.16875142983018,44.16895808595924,44.16912168985572,44.16928888368003,44.16953283416315,44.16983777787212,44.17029445547524,44.17049310581674,44.17095961775607,44.17105697671126,44.17144103093506,44.17170387271096,44.17205072857814,44.17224661788622,44.17244091776875,44.17264062739395,44.17296703440856,44.17320899533638,44.17356205563313,44.17380225584144,44.1739983730092,44.17421340168833,44.17439563428063,44.17448241095284,44.17454032570542,44.17459459166897,44.17462636591239,44.17461515334031,44.17458120690973,44.17447300785174,44.17443788351049,44.17436383637788,44.17433279571408,44.17434976497454,44.174389937557,44.17450032075679,44.17460446715464,44.17490282856835,44.175347179054,44.17575725514993,44.17590755562684,44.17627313427829,44.17639945998381,44.17661868265499,44.17684712948112,44.17725557622867,44.177627784601,44.17779726727049,44.17839389033379,44.17860610615477,44.17909979226741,44.17932137998282,44.17943862281572,44.17954691669888,44.17961986500112,44.17969529993426,44.17978320529,44.17985598328756,44.17989356260597,44.17992792651652,44.17994075899742,44.18003156782076,44.180196248019,44.18042541805216,44.18052892441561,44.1806688168601,44.18085522741382,44.18100418696151,44.18116881354712,44.18126915262601,44.18140656211976,44.18167683062099,44.18199425926933,44.18221373615694,44.18242361883051,44.18256487622287,44.18270160457421,44.18287653513665,44.18301559382199,44.18311613878976,44.18323239970646,44.18334840220764,44.18339510052655,44.18348749217039,44.18350513327153,44.18364681666119,44.18372918825238,44.18384733213687,44.18399931330835,44.18412760471342,44.18424836915553,44.1843940615273,44.18462989560852,44.18500681731536,44.18536741258971,44.18550806125321,44.18574189039723,44.18604256520393,44.18676226405456,44.18693513310642,44.18730070373031,44.18743926706654,44.18757894840166,44.1877356673883,44.1878276095587,44.18832716315918,44.18851456164269,44.18867135309215,44.18900297732298,44.18938909265645,44.19008333370395,44.19030405815271,44.19055783674417,44.19069848922715,44.19092473769603,44.19108241231343,44.19122668623728,44.19141443486676,44.19153441027664,44.1916596304626,44.1918041647318,44.19189281938626,44.19198504044823,44.19204148579762,44.19213914431507,44.19219541545228,44.19223962118183,44.19235375204681,44.19251463675136,44.19261218117322,44.19296064666596,44.19312560145165,44.19341994865098,44.19370765597355,44.19392266426402,44.19420910323941,44.19427051843808,44.19436631032158,44.19439689737863,44.19442856186419,44.19448730704766,44.19450753893229,44.19455919916793,44.19467898615802,44.19490255030916,44.19523904252174,44.19563649915961,44.1959908263681,44.19610940980529,44.19682783802098,44.19737027435819,44.19762097247794,44.19780953104457,44.19791644629124,44.19802136179734,44.19815298664842,44.19820583955744,44.1984453714371,44.19862413674817,44.19907234204922,44.19948580487344,44.20011954202432,44.20057479855248,44.20103804103278,44.20113143379435,44.20121781700129,44.20128483337839,44.20131810093086,44.20126215268869,44.20121642070723,44.20116163144689,44.20119702500656,44.20127965825419,44.20144915790408,44.20163142669252,44.20202291206524,44.20247222805789,44.20330105911443,44.20377597892782,44.20443927778799,44.20502466072742,44.20536217496942,44.20581449029127,44.20617771849042,44.20655255683466,44.2072841460678,44.20787715566806,44.20817477633241,44.20873983258955,44.20916767634417,44.20959127379275,44.21009978132442,44.21066246434223,44.21089023532274,44.21122568312015,44.21152874952217,44.21265272093791,44.21307931274906,44.21354237255444,44.21385803037547,44.21412989483483,44.21422982223223,44.21431587238504,44.2144076778885,44.21473686468255,44.21555912271474,44.21617356541999,44.21674283469338,44.21743547103563,44.21754281237313,44.21758628752335,44.21756485724239,44.21747874636627,44.21733811689296,44.21694231201617,44.2166755192565,44.21610716758305,44.21583177123284,44.21568012602998,44.21552176897981,44.21548627362777,44.2156130685125,44.2160030989721,44.21645293208174,44.21661936588118,44.21693907231025,44.21747359462189,44.21796364959273,44.218079974293,44.21816208046014,44.21815765015518,44.21805345766191,44.21768841542628,44.21739158126997,44.21705254438699,44.21644685406802,44.21597027569182,44.21551142825381,44.21546922415605,44.21556085847403,44.21575994788783,44.21622097710724,44.21671675869397,44.21688910597405,44.21709441963642,44.21724264875293,44.21735045466234,44.21748136910331,44.21750728576131,44.21757610986079,44.21794936926802,44.21817833818353,44.21841715702043,44.21869565015975,44.21945691763957,44.21974214934892,44.21986155136288,44.21995234609883,44.22003612854793,44.22015407834405,44.22027675224002,44.2205808829828,44.22092639624253,44.22118077984915,44.22144388454002,44.22158504827302,44.22149569736644,44.22138928689298,44.22098276166788,44.2207689352827,44.22072897174017,44.22075824777871,44.22086383847287,44.22123923703977,44.22180018518106,44.2223661329161,44.22255627868731,44.22260536329247,44.2225580427271,44.22244499065882,44.22227761796032,44.22177977755887,44.2210683411366,44.22080617791394,44.22034090186476,44.21985602352595,44.21924270940658,44.21898291641228,44.21880730939789,44.21872406816675,44.21871153212405,44.21883873384214,44.21896830089614,44.21920717471899,44.21990429032007,44.22016640524702,44.22046853107218,44.22056035188929,44.22066354059456,44.22066799164769,44.22045793922784,44.22032524838028,44.22019627783404,44.22017155994769,44.22008941818596,44.21993296738817,44.21982799243926,44.21977837500056,44.21983397592118,44.22002802617165,44.22018276986748,44.22035199241325,44.22062509728349,44.22075951946626,44.22085908542746,44.22092750710601,44.22104689250173,44.22124794795449,44.22147776816666,44.22209311561586,44.2224685401013,44.22267423062841,44.22280382118478,44.22286868084523,44.22290866880244,44.22296069349962,44.22296367225859,44.22271397093829,44.22267105267505,44.22274059998397,44.22285493722877,44.22300080893791,44.22313573359678,44.22332675358042,44.2234818673701,44.22356922780907,44.22360323915811,44.22366350606814,44.22386818710588,44.22397435169894,44.22424635541953,44.22449140557998,44.22464014382718,44.22471404896132,44.22468606189871,44.22455715874367,44.22442698911387,44.22437151843487,44.22455712974168,44.22462037341756,44.22463940335746,44.22451917064289,44.22424705768015,44.22417312057421,44.22419364328275,44.22426523777888,44.22453196264255,44.22475397706498,44.22493646242255,44.22521463254757,44.22548183100943,44.22569718445157,44.22589593385479,44.22645334679809,44.22698714039882,44.22719384255365,44.22777864514276,44.22843399733011,44.22897581513981,44.22952476983328,44.22998047111065,44.23009896917529,44.23040474404151,44.23110130206521,44.23184003630297,44.23244112610074,44.23321340047939,44.23360870856528,44.23369779354923,44.23373538312766,44.23367111036172,44.23332572278741,44.23315481721015,44.23298476914339,44.23264364763151,44.23228105700692,44.23217259175424,44.232005758959,44.23193244276262,44.2319329493378,44.23199031330161,44.23241114337962,44.23263122794377,44.23284064625958,44.23306236002091,44.23336261254995,44.23369027114637,44.23405736294458,44.23424986868064,44.23431758720923,44.23428636537555,44.23427758969159,44.23417605530875,44.23392467526174,44.23379036348499,44.2337814677178,44.2338016197676,44.23393416742579,44.23416174167342,44.23446338784834,44.23468637518209,44.23495822367257,44.23513544382035,44.23532964120116,44.2355077175258,44.23587714126188,44.23629152500159,44.23680562325809,44.23744247359892,44.23818904391984,44.23888870748372,44.23945923581978,44.2396320361257,44.23979245857277,44.23991233066482,44.23996077898591,44.24002184020654,44.23998923624914,44.23994067884615,44.24003701287088,44.24018281627,44.24037508352406,44.24069315448116,44.2409147534727,44.24126131057967,44.24144211672691,44.2415167227662,44.24154174979715,44.24151463070607,44.24141118799485,44.24140998982015,44.24159506521758,44.24176783456178,44.24195276757234,44.2422727127078,44.24282032395943,44.24335387381367,44.24388406162101,44.24419919209181,44.24433794502899,44.24443876849113,44.24460543021944,44.24476079615304,44.24496892970917,44.24527640470184,44.24553632301961,44.245771173995,44.24619405550652,44.2463691259041,44.24671247577754,44.24681263990624,44.24687355424022,44.24683373559327,44.24643955099061,44.24603724868211,44.24588074758185,44.24577119071241,44.24561569384759,44.2454348908551,44.2454647609032,44.24620507005791,44.24644114193955,44.24663293718076,44.24663743352643,44.24663935725052,44.24667023233931,44.24912310787194,44.25120852746538,44.25375292232292,44.25609283806085,44.25843691675135,44.25958186546059,44.26080635545588,44.26197218767489,44.26317524613714,44.2643533317915,44.26551516065848,44.26666442147377,44.26787171917375,44.27013687226196,44.27242252055484,44.27373833606942,44.27492906191945,44.27611562314262,44.27846755185968,44.2807987448101,44.2820058850446,44.28434940916048,44.28670981480228,44.28904909619075,44.29021893203336,44.292625580848,44.29373321788882,44.29612329256137,44.29729713622269,44.29963710934095,44.30200591101005,44.30435436329765,44.30672833341544,44.30906460965948,44.31143363622648,44.31379472903992,44.31615558562662,44.31852507750811,44.32090281422053,44.32207264260275,44.32444613709023,44.32679049695079,44.32918441119686,44.33152037134033,44.3338937080736,44.33626334713315,44.33861232958991,44.3409610024582,44.34329279494619,44.34566266633314,44.34799468686894,44.3503175322825,44.3514870455223,44.35267328149409,44.35504112539342,44.35741321208422,44.35853270295003,44.36091318892949,44.36328534514976,44.36448044738476,44.36561712826526,44.36799045080503,44.37034696933004,44.37272005752914,44.37508921534872,44.3762924047718,44.37865747816848,44.38279093873815,44.38756511621448,44.39069765713145,44.39389781341877,44.39707057497604,44.40023764615471,44.40343800590558,44.40660497196321,44.40973791932415,44.41293796058797,44.41608775733643,44.41930474916681,44.42250447606618,44.42407900372435,44.42712147595782,44.43025295188355,44.43341285995514,44.43655654014485,44.43975087985794,44.44293963458946,44.44607877241759,44.44922907255988,44.45237906102626,44.45556274711969,44.45713179299592,44.46024279765395,44.46331978841986,44.46645291499,44.46953569504824,44.47271327059305,44.47428778456113,44.47742038339265,44.48059257976217,44.48217909370319,44.48534570688776,44.48695423835755,44.49014296907589,44.49172337527565,44.49333748880473,44.49489566793991,44.49807912571585,44.501250161754,44.50441044684672,44.50600212176187,44.50919042312125,44.51238503706119,44.51398818708305,44.51700942918968,44.52018708007031,44.52333071794434,44.52651932450183,44.52966884821662,44.53283532917516,44.53599591422776,44.53912289694558,44.54079313177457,44.54390968046009,44.5455125091733,44.54870668317835,44.55026464425008,44.55343184590415,44.55500623889661,44.558211467562,44.55978596315832,44.56295190284396,44.56767126274789,44.56919561764071,44.57237872211498,44.57709713031931,44.58029687269193,44.58349671540256,44.5865738479818,44.59139335803843,44.59457076045571,44.5961963055812,44.59619650769795,44.59624513869773,44.59629054819308,44.59626792687887,44.59633640087362,44.59646325903185,44.59647918123779,44.59652202761883,44.5965076209154,44.59652129753691,44.59656517064241,44.59657417208463,44.59661296996492,44.59668004361672,44.59668961416503,44.59672541389585,44.59668330021224,44.59668945555128,44.596720426742,44.59666909102577,44.59662078550419,44.59660882651686,44.59659339844859,44.59659919788489,44.59656900393168,44.59656717201226,44.59658954593004,44.59664262842454,44.5966320953083,44.59657115263452,44.59653575639501,44.59652442628368,44.59654545085203,44.59653738319432,44.59661488689755,44.5966843200284,44.59667205479733,44.59663022250404,44.59665756202467,44.59661509151864,44.59655905099316,44.59668292914044]}]],[[{"lng":[-90.21835941415408,-90.23852765270243,-90.25876864676478,-90.27890446539546,-90.29921119992024,-90.31628089810378,-90.31643013034584,-90.31652979278724,-90.31633092059324,-90.31623143701526,-90.31610203539138,-90.31586095525211,-90.31578941922035,-90.31598395853197,-90.3157405085812,-90.31534651746242,-90.31552430097413,-90.31544261739202,-90.31565369724672,-90.3156842866528,-90.31579385308098,-90.31614697492491,-90.31585657577598,-90.31567487849748,-90.31605951735993,-90.31699542724684,-90.31645547383944,-90.31699363898568,-90.31711200098111,-90.31719255794108,-90.31712417664914,-90.31717663698026,-90.31761068759637,-90.31763054411111,-90.31782185056704,-90.31795269780832,-90.31798901845411,-90.31268957121769,-90.2934491370244,-90.27337647833042,-90.2533114075096,-90.23971033225128,-90.19934920423879,-90.19230849878359,-90.17395187019221,-90.15371127550409,-90.13357625087677,-90.11151972639878,-90.10096872222667,-90.09335565210898,-90.08071378207278,-90.07307617765639,-90.06305165977052,-90.05681172449506,-90.04294164432767,-90.03657140895912,-90.01639140705998,-90.00251158250923,-90.00012710180005,-89.98221114651531,-89.97635745599034,-89.962081183195,-89.95561762348943,-89.93904671840785,-89.92411451313639,-89.91903817156829,-89.902399786834,-89.90048547976981,-89.89836665670592,-89.87813696676984,-89.86363264267926,-89.8579006533943,-89.84338225431542,-89.8378352407947,-89.81861152387735,-89.80555821288951,-89.79848112650504,-89.78540609635584,-89.77828102247524,-89.76512426764876,-89.74506661960554,-89.73801472229823,-89.72490270081347,-89.72464551514416,-89.72448989958805,-89.72461792663286,-89.72471583273145,-89.72477955412677,-89.72465829525498,-89.72466376702346,-89.72486128273407,-89.72489730381301,-89.72513487689395,-89.72544344854758,-89.72594101957603,-89.72604115513919,-89.72640294426765,-89.72664172601989,-89.72671148444395,-89.72680496811415,-89.7267034453894,-89.74688750888667,-89.76702849619274,-89.78728292386356,-89.8075604214584,-89.82783839360192,-89.84453445277275,-89.84471019711201,-89.84470026967375,-89.84505298092716,-89.84521364948347,-89.84515884531196,-89.84523473402896,-89.84538317876613,-89.84540805318278,-89.84522302151532,-89.8451362915405,-89.84498938997204,-89.86513721741808,-89.88552054213044,-89.90583832829992,-89.9262945151564,-89.94647361133741,-89.96406690850191,-90.00440279541881,-90.02438115466639,-90.04453667178991,-90.06476858999827,-90.0795695849619,-90.11967203719742,-90.13921845616967,-90.15957197243586,-90.17964091949956,-90.19802098116303,-90.21835941415408],"lat":[44.68534730530526,44.68537623258537,44.68526943969768,44.68528443656395,44.68517643711791,44.68509775625969,44.67014716356781,44.65601956081979,44.64178021418017,44.62761258277786,44.61329054186437,44.59898003133616,44.59399188525551,44.58492505150776,44.57043301234307,44.54881030909075,44.54160027343593,44.52713974647411,44.5127866922517,44.49675987378232,44.48239506776557,44.46788634177229,44.45330368709766,44.4388962424689,44.42451308139614,44.39487261339503,44.38052172750965,44.36604626629953,44.35192924207807,44.33756949038587,44.32066365376046,44.31621712072477,44.3060250030039,44.29212558179782,44.27763003856202,44.26311689901433,44.24872131661176,44.24874610466057,44.24876630550021,44.24885167011152,44.24889522665491,44.24899323945016,44.24901932105588,44.2490240770053,44.24909458555109,44.24914471264169,44.24916159590413,44.2491565627303,44.24911404469584,44.24905552829549,44.24902858819268,44.2490455467978,44.24899356317775,44.24894675756748,44.24891961303283,44.2488976356554,44.24886236499956,44.24892963325976,44.24890039900276,44.24894768906087,44.24905531794778,44.24918027273036,44.24926020033513,44.24941797744272,44.24934146435981,44.24935212885782,44.24944132194388,44.24945143076794,44.24948617419223,44.24942985093369,44.24936191672521,44.24937556310428,44.2493162948461,44.24924899756191,44.24897562567993,44.24883619422911,44.24868787407171,44.24852387377258,44.24846142900952,44.24820632741051,44.24798105255493,44.24779639782325,44.24763101732683,44.26213494483088,44.2765816848276,44.29107971211707,44.30557790702304,44.31993390643856,44.33713239398794,44.35161478192043,44.36612262611369,44.38062020136537,44.39514578876233,44.4095342182039,44.42408342519915,44.43860744925102,44.45304006482822,44.46751567287232,44.48202262932777,44.49650260269953,44.51117606422385,44.51133960690733,44.51141436926017,44.51134480726936,44.51129926166129,44.51134886710607,44.51146131670597,44.52597305412945,44.55487017595294,44.56933730387969,44.58384324433466,44.59840962840412,44.61283829529062,44.6273992523436,44.64192371087472,44.65638455336074,44.67075658995169,44.6848980913881,44.68480361162084,44.68463576255136,44.68468731290281,44.684778945411,44.68479589191433,44.68502514417862,44.68499829165096,44.68508979904151,44.68522697871092,44.6851906318859,44.68510367406951,44.68502098744718,44.68530441448904,44.68533130806115,44.68527089807095,44.68535815973613,44.68534730530526]}]],[[{"lng":[-88.60527523117325,-88.60517129824444,-88.64604810764889,-88.66628617490326,-88.68664775738677,-88.7072016807131,-88.73646062252848,-88.75700650305645,-88.77742266539848,-88.79786045523947,-88.81838334025853,-88.83893808969701,-88.85869045939877,-88.87938740238778,-88.90008521921732,-88.92065154505157,-88.94126593561749,-88.96152757844783,-88.98186465321578,-89.0020540212623,-89.02245978654034,-89.04265716202174,-89.08315594224773,-89.10283312398843,-89.12271627148523,-89.14330861146848,-89.16380988627564,-89.18403782807553,-89.20448354682121,-89.22382421173917,-89.22356188347125,-89.22363365125256,-89.22350407857516,-89.22349371754837,-89.22367057935949,-89.22345459335952,-89.22323749060145,-89.22315596640873,-89.22368539782774,-89.22335463060958,-89.22338923101873,-89.2232805169907,-89.22330577286043,-89.22327135739899,-89.22361345995827,-89.22382638404825,-89.22375766571923,-89.22365566563114,-89.22378168261301,-89.22361594567153,-89.22384035526281,-89.22398633728424,-89.22409446539353,-89.22414169009272,-89.2242729323158,-89.22420513719524,-89.22448198835303,-89.22474325971127,-89.22478846334496,-89.2091970569831,-89.20423374454447,-89.18896277148478,-89.18389239847502,-89.16886539659811,-89.16369635614922,-89.14867660069804,-89.1435987487058,-89.128509633213,-89.12515328807739,-89.1235515895945,-89.10339144508758,-89.08731750134979,-89.082749926727,-89.06705072108478,-89.06259717122266,-89.0470652051138,-89.0268666664816,-89.02218460340984,-89.00674402265962,-89.00230628410644,-88.98720256903357,-88.98216838146314,-88.96697193009267,-88.96170435302125,-88.94678154512218,-88.94141482061754,-88.92714930195866,-88.92126365455081,-88.90705952873373,-88.90118965761219,-88.88671856725719,-88.88104671982688,-88.8709216717187,-88.86577776119223,-88.86092698885135,-88.84667995121436,-88.8262742711091,-88.8060774252392,-88.78600542397932,-88.78017415886838,-88.76615928557443,-88.76041631754742,-88.74543678335978,-88.73983554532209,-88.73941065513952,-88.73904760679326,-88.7389091933488,-88.73852355510996,-88.73797759193566,-88.73760027278418,-88.73733781467342,-88.7368561428741,-88.73680343949111,-88.73683078837601,-88.7367254383126,-88.73657535296903,-88.7366552815445,-88.73687059222027,-88.73696988898872,-88.73693744468321,-88.73699217301491,-88.73694210324116,-88.73676559960617,-88.7367209244004,-88.73679895346302,-88.73676857636589,-88.71812246302734,-88.70847273031914,-88.68848911228864,-88.66812901309993,-88.65677433360528,-88.64807746286232,-88.63636876540519,-88.62711871254692,-88.62516545211024,-88.60609131180627,-88.6063193722464,-88.60600928213229,-88.6057584212929,-88.60554006163176,-88.60527523117325],"lat":[44.66296410089188,44.6782522881258,44.67822855074832,44.67840747005786,44.67870940989794,44.67888217150283,44.67909480158058,44.67918776485956,44.67890995372532,44.67917870709034,44.6794216129199,44.67938067091553,44.67963887918679,44.67975158704927,44.67973902053828,44.6796300289791,44.67964915607803,44.67981495657749,44.67982310598547,44.68002998871201,44.68004386623977,44.68002253432422,44.68028168737278,44.68045034691094,44.68046077337946,44.68050990530259,44.68053271333766,44.68087144856959,44.6811611337988,44.68136230634934,44.66432595253298,44.64960742109331,44.63514883489778,44.62067245911896,44.60615061148141,44.59155404337162,44.57604001289564,44.56181591996205,44.54732472977437,44.53278321882283,44.51862957393824,44.50395474181109,44.4899264228002,44.4754838119095,44.46096522904198,44.44645726354766,44.43197718031423,44.4174599710311,44.40320817436047,44.38875939242478,44.3742938060507,44.35969682791015,44.34522616325667,44.3307885256842,44.31597695109139,44.30139610220413,44.2722505904603,44.25787808566184,44.24337156167419,44.24325303997448,44.24324985375142,44.24317244023375,44.24315748289659,44.24298993071753,44.24297927246727,44.24291349668927,44.24298447453779,44.24305873982774,44.24300385585395,44.24301860462268,44.2429661778108,44.24294596131402,44.24296625857017,44.24295885521751,44.24294523368116,44.24285795583996,44.24286372687526,44.2428488309784,44.24287136229936,44.2428498985965,44.24294522189527,44.24292384170667,44.2428586542789,44.24289025006804,44.24284455578528,44.24286108454674,44.24265600743025,44.24267177591666,44.24266593633192,44.2426749130008,44.24267213821624,44.24268144706073,44.2426212308762,44.24261108351595,44.24262106866449,44.24264949377633,44.24272248388279,44.24287841735525,44.2432386110121,44.24330789606785,44.24337939374167,44.24337969067699,44.24342812179444,44.24335278499311,44.27239679673201,44.28703680462919,44.30141984604774,44.31603195233638,44.33057726518547,44.34513987779236,44.35963703692344,44.37388557184322,44.3883492453795,44.40284443620071,44.41620967912123,44.43065979408269,44.44510791365298,44.46037871608702,44.47454648418109,44.48917106023895,44.50223852312029,44.51668834278785,44.53126952084196,44.56030631862374,44.57474531534685,44.59058915811602,44.59053763333708,44.59063336053983,44.59067723392303,44.59065612166645,44.59055487717974,44.59057200357959,44.59052784543635,44.59053058642723,44.5905223240956,44.59052978124822,44.60501056692208,44.61933228181975,44.63347379361313,44.64786210571417,44.66296410089188]}]],[[{"lng":[-89.44622893236405,-89.48987168667402,-89.51016179286768,-89.53056534369048,-89.55078855674194,-89.56089046131241,-89.5709906417013,-89.59124859411895,-89.60812178787887,-89.62832248679049,-89.64868423876443,-89.68912745927109,-89.70948110881086,-89.7267064473004,-89.76705871259486,-89.80744362056154,-89.82774627547043,-89.84498938997204,-89.8451362915405,-89.84522302151532,-89.84540805318278,-89.84538317876613,-89.84523473402896,-89.84515884531196,-89.84521364948347,-89.84505298092716,-89.84470026967375,-89.84471019711201,-89.84453445277275,-89.82783839360192,-89.8075604214584,-89.78728292386356,-89.76702849619274,-89.74688750888667,-89.7267034453894,-89.72680496811415,-89.72671148444395,-89.72664172601989,-89.72640294426765,-89.72604115513919,-89.72594101957603,-89.72544344854758,-89.72513487689395,-89.72489730381301,-89.72486128273407,-89.72466376702346,-89.72465829525498,-89.72477955412677,-89.72471583273145,-89.72461792663286,-89.72448989958805,-89.72464551514416,-89.72490270081347,-89.71726378578875,-89.70683814978918,-89.69853768587106,-89.68697281615887,-89.66670552944839,-89.65841404528911,-89.64654213464712,-89.62640967799308,-89.6251447343238,-89.61809575573101,-89.60631106105592,-89.59794367528031,-89.5886062211549,-89.56837593835347,-89.56276291999311,-89.54819264954467,-89.54239346529262,-89.52798975369382,-89.52264072255541,-89.50777452811808,-89.50235070167143,-89.48767047250057,-89.48223864266727,-89.46563398917118,-89.44708838852908,-89.44581424754614,-89.42671808786653,-89.42558039205501,-89.40671039570134,-89.40544584431451,-89.38656225593051,-89.38515109007037,-89.36645849821782,-89.36503170954315,-89.34780650825294,-89.34637931337403,-89.32787009882664,-89.32576984160833,-89.30761686573018,-89.3054511450699,-89.28730941970467,-89.28516501453706,-89.26715722964373,-89.26512629102095,-89.24718149344083,-89.24495450970251,-89.22478846334496,-89.22474325971127,-89.22448198835303,-89.22420513719524,-89.2242729323158,-89.22414169009272,-89.22409446539353,-89.22398633728424,-89.22384035526281,-89.22361594567153,-89.22378168261301,-89.22365566563114,-89.22375766571923,-89.22382638404825,-89.22361345995827,-89.22327135739899,-89.22330577286043,-89.2232805169907,-89.22338923101873,-89.22335463060958,-89.22368539782774,-89.22315596640873,-89.22323749060145,-89.22345459335952,-89.22367057935949,-89.22349371754837,-89.22350407857516,-89.22363365125256,-89.22356188347125,-89.22382421173917,-89.24415311572126,-89.26453925561569,-89.28460561089636,-89.30496885067069,-89.32536981361115,-89.34581207861542,-89.36602861857324,-89.38579868754832,-89.40581625898182,-89.42609151393067,-89.44622893236405],"lat":[44.6846600190116,44.68582757630345,44.6858795561975,44.68575231510388,44.68578332702339,44.68551781553226,44.6855805531288,44.6854886256647,44.68546654280572,44.68530932587915,44.68523765123325,44.68497602392155,44.68491036166164,44.68492679079197,44.68481940243163,44.68486721995085,44.68483783198781,44.6848980913881,44.67075658995169,44.65638455336074,44.64192371087472,44.6273992523436,44.61283829529062,44.59840962840412,44.58384324433466,44.56933730387969,44.55487017595294,44.52597305412945,44.51146131670597,44.51134886710607,44.51129926166129,44.51134480726936,44.51141436926017,44.51133960690733,44.51117606422385,44.49650260269953,44.48202262932777,44.46751567287232,44.45304006482822,44.43860744925102,44.42408342519915,44.4095342182039,44.39514578876233,44.38062020136537,44.36612262611369,44.35161478192043,44.33713239398794,44.31993390643856,44.30557790702304,44.29107971211707,44.2765816848276,44.26213494483088,44.24763101732683,44.2474515581854,44.24735032229645,44.24720505507303,44.24702051926255,44.24672829777504,44.2466186874885,44.24637568807721,44.24599683037091,44.24599186464313,44.2458746543327,44.2457470550387,44.24567049821225,44.24551473202287,44.24522432666372,44.2451923792924,44.244956974647,44.24481159589533,44.24452194806709,44.24437967061369,44.24419302147131,44.24411136777979,44.24398455065,44.24393146271448,44.24386260564966,44.24393616892117,44.24391707564514,44.24393515511649,44.24389175869705,44.24383757127851,44.24387828373132,44.24385389254246,44.24384154648422,44.24381879875006,44.24380358558594,44.24366520596073,44.24368746052343,44.24372049437933,44.24366482765303,44.2436235247439,44.24367821797949,44.24374320005481,44.24378104479846,44.24370889686373,44.24368575336979,44.24358917690893,44.24353370561612,44.24337156167419,44.25787808566184,44.2722505904603,44.30139610220413,44.31597695109139,44.3307885256842,44.34522616325667,44.35969682791015,44.3742938060507,44.38875939242478,44.40320817436047,44.4174599710311,44.43197718031423,44.44645726354766,44.46096522904198,44.4754838119095,44.4899264228002,44.50395474181109,44.51862957393824,44.53278321882283,44.54732472977437,44.56181591996205,44.57604001289564,44.59155404337162,44.60615061148141,44.62067245911896,44.63514883489778,44.64960742109331,44.66432595253298,44.68136230634934,44.68126402639658,44.68156139240219,44.68171527005441,44.6815841261496,44.68138881054061,44.68136534746322,44.68251489557731,44.68322635176355,44.68338061119933,44.68404664405422,44.6846600190116]}]],[[{"lng":[-92.12517785525441,-92.13527332078654,-92.13506198038175,-92.13523551426505,-92.1349893163044,-92.13490998301727,-92.13499295088023,-92.13482437543705,-92.13500512058825,-92.13508159068371,-92.13541536447369,-92.13539538423124,-92.15558185084251,-92.1657374764965,-92.17577723302139,-92.18588536766568,-92.19578955412585,-92.2060492665607,-92.21632058856896,-92.22635003025476,-92.23642562806823,-92.24637186182264,-92.25021709853901,-92.25653289170563,-92.27681389134524,-92.29647523051548,-92.3076518218642,-92.31284918093831,-92.31623449289351,-92.31607428100244,-92.31539003310382,-92.31484917567433,-92.31435568809241,-92.31391291375036,-92.31351133816709,-92.31316016396529,-92.31306619153311,-92.31287074239185,-92.31248840457184,-92.31183830621721,-92.31154034048301,-92.31125237146833,-92.31065648153793,-92.30979972332902,-92.3088754600715,-92.30785553432783,-92.30731903251554,-92.30646410679969,-92.30490027079911,-92.30399667848179,-92.3032258707695,-92.30306615974094,-92.30273827424119,-92.30255059091245,-92.30247087735606,-92.3025345685185,-92.30257779718856,-92.30260607005816,-92.30287345758593,-92.30293236684518,-92.30294781400499,-92.30297954870368,-92.30290291759896,-92.30293875735464,-92.30288575101784,-92.30266803254779,-92.30257217362245,-92.30238476095357,-92.30162005750672,-92.29986336944901,-92.29780499709874,-92.29497916027428,-92.29310149972439,-92.29107811575841,-92.28879030167033,-92.2866793915999,-92.28414772090368,-92.28102272682662,-92.28039851085893,-92.27872888336563,-92.27688707180869,-92.27405740366635,-92.26942659356436,-92.26667133674034,-92.26442035829702,-92.26214915913322,-92.26039803301227,-92.25566918443782,-92.25367971683492,-92.25151785420323,-92.24935499838743,-92.24794561137601,-92.2459834261056,-92.24379288349421,-92.24281555724896,-92.24183302188082,-92.23918876182115,-92.23524273970723,-92.23441650320206,-92.23312321175838,-92.23097295900561,-92.22879977568509,-92.22616755876612,-92.22434864880815,-92.22287401246886,-92.21917102273964,-92.2164064308645,-92.21337396399429,-92.21017110852178,-92.20582851533278,-92.20111797821885,-92.19602302034123,-92.19190180321584,-92.18773728470471,-92.18166732997665,-92.18003291110854,-92.17676645626983,-92.17362116800189,-92.17103644151724,-92.16765023744232,-92.16351131494618,-92.16010739574999,-92.15631701843552,-92.15068319594872,-92.14849953465465,-92.14031633027173,-92.13939310987779,-92.1372537487583,-92.12983090491254,-92.12703193824322,-92.12552329040304,-92.12508697393399,-92.12438154412028,-92.12335097077097,-92.12226739384302,-92.12135644059603,-92.12078301201089,-92.11966107749495,-92.11846605394223,-92.11667652252412,-92.11496150994839,-92.11335408097668,-92.11259114441501,-92.11119672359104,-92.10873839367177,-92.10542812336926,-92.10272546612956,-92.09949158921076,-92.09717754981752,-92.09478920689445,-92.09273776349906,-92.09036848552174,-92.08875827827832,-92.08726634048077,-92.08621379763564,-92.0840801211168,-92.08359971589933,-92.08389848856304,-92.08404597130608,-92.08414741314125,-92.08414735689608,-92.08398764923054,-92.08388132013924,-92.08385259522902,-92.08369009203034,-92.08346296212891,-92.08320403306639,-92.08270502307857,-92.08145708597758,-92.08101340508141,-92.08081719748688,-92.08060416923314,-92.08027224798724,-92.08003460466247,-92.07987883535365,-92.07988640294448,-92.07993247417251,-92.08009733495689,-92.08027167354739,-92.08039832168505,-92.08048186122863,-92.08127503035536,-92.08168351893396,-92.0819677985309,-92.08223411881966,-92.08237084718834,-92.08244234663213,-92.08184497013231,-92.08106884953629,-92.08059735187314,-92.07987773281288,-92.07880569609715,-92.07852618718903,-92.07817952933277,-92.0772382507589,-92.07639659704736,-92.07556207390765,-92.07510095925045,-92.07485213178911,-92.07447383523939,-92.07436811046428,-92.07407101606162,-92.07391878327469,-92.07301595468822,-92.0723331746116,-92.07186388579801,-92.07076564715486,-92.06991774218085,-92.0689771745005,-92.06829130145073,-92.06732000369155,-92.06557876434594,-92.06474712183697,-92.06419723697648,-92.06379031301624,-92.06348270624387,-92.06216811671429,-92.06122613611142,-92.06026950187825,-92.05928206208422,-92.0591266269517,-92.0591124398764,-92.05919050577079,-92.05933844333465,-92.05972450065201,-92.05997062418247,-92.06008399330683,-92.06005792679316,-92.05949972512254,-92.0593361770503,-92.0592909096505,-92.05921308834461,-92.0590514432907,-92.05841932804159,-92.05774079445442,-92.05710069167618,-92.056940651895,-92.05679050344163,-92.05649911437439,-92.05628410232065,-92.05597022844236,-92.05588437035081,-92.05586974768386,-92.05593205818285,-92.05591533575611,-92.05576432163917,-92.05559097017985,-92.05548593108138,-92.05461959521861,-92.05375480877176,-92.05262284937457,-92.05229393705055,-92.05205786651842,-92.05164180747535,-92.05145560571614,-92.05098438128383,-92.05079998799999,-92.05069260484716,-92.05047544108983,-92.04975452866832,-92.0486153515299,-92.04826355842566,-92.04792416754269,-92.04761759219004,-92.04676439561877,-92.0460462495589,-92.0454862099449,-92.04516350081956,-92.04465972435405,-92.04461102358052,-92.04381438389821,-92.04359507067643,-92.04341083353904,-92.04363074836341,-92.04368050415671,-92.04376462202663,-92.04377575586834,-92.04387535415836,-92.04446090409535,-92.04474760704744,-92.04528724561627,-92.04565087312767,-92.04619734570147,-92.04655116661753,-92.04718510430153,-92.0477370026673,-92.04805356043168,-92.0479804161204,-92.04768803688134,-92.04737686311201,-92.04657740040376,-92.04572608330494,-92.04520606767892,-92.0432826690345,-92.0413957641138,-92.04063844715739,-92.04025086566129,-92.03903724240108,-92.03873444192125,-92.03876041607188,-92.03874734035992,-92.03877882750032,-92.03858504371274,-92.0382611026172,-92.03846115639938,-92.03872946186151,-92.03883038425052,-92.03917408566818,-92.04004478168824,-92.04014117601079,-92.04009873319897,-92.0400019540326,-92.0393941048589,-92.03907943247836,-92.03864303780003,-92.03823189180324,-92.03628839306644,-92.03495626759711,-92.03401237066916,-92.03352387957777,-92.03341046866974,-92.03303627438491,-92.03256236033785,-92.03205563036728,-92.03152548149997,-92.03120536327586,-92.03106351483939,-92.03071286675656,-92.03020204719188,-92.02991981611015,-92.02963194397448,-92.02905836439935,-92.02811948891957,-92.02625429736206,-92.02421764806076,-92.02322859588745,-92.02246354606447,-92.02080591584102,-92.0194728332477,-92.01815603805392,-92.01656457880625,-92.01497001092098,-92.01367002529955,-92.0126231969419,-92.01093670454725,-92.01057732281883,-92.01025278055059,-92.01008994268436,-92.00877587776435,-92.00860993764438,-92.00744287005882,-92.00575437827015,-92.00444864787612,-92.00405855158711,-92.00359080978141,-92.00309054197224,-92.0030831504606,-91.99354707683862,-91.97346385275041,-91.9435494247486,-91.93337135204501,-91.91300595786518,-91.90298966497782,-91.89297318263283,-91.88301232916955,-91.87513690132896,-91.87317041002952,-91.862740229517,-91.85292769439745,-91.84282651106186,-91.83265563718096,-91.81240485953712,-91.80206739889935,-91.79215181515173,-91.78207199979893,-91.7719926538456,-91.75124249644655,-91.75014401749077,-91.74124551836506,-91.72092851370566,-91.71082749576568,-91.70084690270868,-91.69068945997594,-91.67060333308949,-91.66048087209883,-91.65035010918928,-91.65028508047365,-91.65029794300006,-91.65036417751614,-91.6503821965623,-91.65032462481713,-91.65034355881956,-91.69060205867686,-91.71078139389535,-91.72081449336366,-91.74127111817133,-91.75011680764048,-91.75128955356979,-91.77172190969985,-91.77670269971568,-91.78194426556212,-91.81222382578342,-91.82242464648414,-91.83250952949101,-91.85281867530243,-91.87310179946323,-91.87509381947589,-91.8929240426054,-91.90283921274465,-91.91301656891515,-91.93339309997921,-91.94342507207948,-91.95365237751618,-91.97395874836312,-91.99433968671991,-92.01391969574766,-92.03418627723856,-92.04419107240037,-92.05440347664496,-92.06447501741204,-92.07454553013037,-92.08470950500651,-92.09480464557689,-92.10479305242961,-92.11496979955726,-92.12517785525441],"lat":[44.68431257827008,44.68438928946278,44.66935111759604,44.65508386455838,44.64031944823747,44.62495264937356,44.61183705843313,44.59729249571902,44.58277822134217,44.56826305189582,44.55402437185899,44.53953570005439,44.53941239173943,44.53943233523499,44.53947776954776,44.53960513671882,44.53975774944761,44.53971977351539,44.53970821926232,44.53983183526145,44.53992694101833,44.53982845302137,44.53977130323096,44.5397302107224,44.54002528881404,44.54053234208447,44.54084771316204,44.54096142396359,44.54106391741824,44.54085835897678,44.54010955477275,44.53930607589773,44.5384667501775,44.53769588467189,44.53673343869161,44.5358217308657,44.53528629676963,44.53463166592933,44.53293230796569,44.53058821269479,44.52979696415858,44.52924829330765,44.5282723275594,44.52682506665884,44.52550941538077,44.52423001563035,44.52353022432238,44.52273304810053,44.52117005628646,44.52037356789113,44.51925396009508,44.51889313952371,44.51794660673549,44.51687571357738,44.51608002985561,44.51462286232941,44.51264621023764,44.51152763482823,44.50970231448778,44.50812398865854,44.50606124612602,44.50502052455862,44.5043027072772,44.50336628227222,44.50263926477172,44.50141311756941,44.50082566306348,44.50037875214769,44.49940642321415,44.49660798109071,44.4935294709369,44.49000722353354,44.48782637820382,44.48561382198273,44.48345858117193,44.481481764199,44.47926182507164,44.47672451919067,44.47623425142781,44.47501116174249,44.47371327559839,44.47191513858452,44.46921675673565,44.46745156261154,44.46619619394295,44.46504527945235,44.4641960199539,44.46207096809216,44.46132168212349,44.46048039699809,44.45962192294186,44.45883494536817,44.45752148169984,44.45593535753865,44.45506189468416,44.45404138959366,44.45133734595809,44.44748895473982,44.44675987482591,44.44583174265205,44.44464323266561,44.44348973180941,44.44234514373206,44.44159201765979,44.44097958410052,44.43966492938794,44.43885212860708,44.4379834080089,44.43709229585875,44.43611903468655,44.43500528273198,44.43395949547907,44.43307681148397,44.4323245067936,44.43106268765393,44.43069525841989,44.43001233237499,44.42934444924941,44.42877835391789,44.42813204411179,44.42739580753916,44.42691419553435,44.42644850216245,44.42583567892621,44.42565144145171,44.424756330653,44.42465237893446,44.42434584762865,44.42307197763049,44.4225868112901,44.42233751178549,44.42231103152824,44.42220290235058,44.42178854032551,44.42125417758066,44.42080324611421,44.42032831499231,44.4194047081459,44.41845628354369,44.41712021983143,44.41583450998962,44.41484190374103,44.41447453300698,44.41403246718082,44.41358387622589,44.41298636229607,44.41246421901624,44.41196893921133,44.41150028210646,44.41097217355587,44.41040295132494,44.40973570116774,44.40933191788256,44.40886517524394,44.40850320677731,44.4076582171848,44.40740006186441,44.40816065966902,44.40894985527454,44.40946905474336,44.40999308548442,44.41153288897187,44.41215507086524,44.41243200249434,44.41281393708028,44.4136633724718,44.41422137619343,44.41466080783893,44.41514462914784,44.41542062554205,44.4155969539528,44.41584269385007,44.41627026166206,44.41675355055124,44.41741070443194,44.41801649543829,44.41851535575364,44.41908590094107,44.41937986366439,44.41968851203217,44.42000486032969,44.42143463349849,44.42234759571765,44.42288696558351,44.42346256370477,44.42399532538082,44.42461068695082,44.42736101445108,44.43067196145283,44.43184274088664,44.43301803001552,44.4340574311495,44.43433074942513,44.43460248275794,44.43513503751799,44.43566665469415,44.43640522573583,44.43701201174397,44.43739056848341,44.43839359541558,44.43878742396954,44.43917174860524,44.43944514489007,44.44069700458656,44.44151934466022,44.44259208558109,44.44488357867952,44.44684511958188,44.44865814187482,44.45001598935299,44.45219876532155,44.45559069671609,44.45752687059437,44.45878210496203,44.45938394590191,44.45984646937094,44.46145328653625,44.46299092887428,44.46461017965516,44.46634887349249,44.46684908561458,44.46724053259994,44.46772097240206,44.46820014757043,44.46998289948645,44.47176191348666,44.4734932623325,44.47399435030754,44.47526848246419,44.47608493714504,44.47827596080953,44.4787967574981,44.47941919054977,44.48058201186937,44.48190841309185,44.48333864799919,44.48372849878053,44.48412507829772,44.48489735468768,44.48537111480141,44.48642491966827,44.4870436533951,44.48745161685872,44.487851282886,44.48903451042658,44.48953345985214,44.48981989735658,44.48992676925596,44.49090185409439,44.49192187663379,44.49354257579306,44.49407365476167,44.49449941886477,44.49557293043293,44.49623592128222,44.49832827271503,44.49978752521429,44.50016253437698,44.50085751561285,44.50268303616675,44.50484732888722,44.50538187930692,44.50589240219351,44.50651290162494,44.50806915594544,44.50925605574561,44.51001568621016,44.51033671760901,44.51094500171681,44.51110672666012,44.5125342919688,44.51345272347389,44.51477531225509,44.51687024279191,44.51769390806943,44.51993503370864,44.52049868022092,44.52086870652967,44.52199972432851,44.52246447273765,44.52325637965152,44.52370036103381,44.52428349362673,44.52473321583688,44.5256218091149,44.52659840544553,44.52887446459551,44.53037496485526,44.53153999413958,44.53228975996739,44.53399817570565,44.53537571129129,44.53613660437,44.53867469205969,44.54106217059876,44.54218510761947,44.54309154632259,44.54615657232296,44.54769115125005,44.55003909748511,44.55104819792282,44.55136335724328,44.55235018895065,44.55575022234767,44.55727581283232,44.55828334456508,44.55868232791843,44.55967676624298,44.56119037660033,44.56214813137489,44.56273357000585,44.56330494716986,44.56444214724775,44.56470344042686,44.56521566869612,44.56572030337325,44.5683185797166,44.57041120292954,44.57221204690224,44.57324019168564,44.57399490394341,44.57549764361421,44.57694529150127,44.57811667821075,44.57909258150449,44.57979712564623,44.58016588061815,44.58105597125977,44.58325385633376,44.58478803392448,44.58555773146492,44.58655738589625,44.58730866292667,44.58857110580869,44.58973161791483,44.59023470120941,44.59057225800046,44.59117130110204,44.59144974675968,44.59159296680168,44.59168105488505,44.59167922755552,44.59170216431063,44.59176560009866,44.59214012864563,44.59225481224805,44.59237799423635,44.59252983470304,44.59336251804685,44.59353324233625,44.594255485426,44.59518466679653,44.59583831824214,44.59602482440533,44.59634398323603,44.5966826838157,44.59668715663001,44.59668292914044,44.59655905099316,44.59661509151864,44.59665756202467,44.59663022250404,44.59667205479733,44.5966843200284,44.59661488689755,44.59653738319432,44.59654545085203,44.59652442628368,44.59653575639501,44.59657115263452,44.5966320953083,44.59664262842454,44.59658954593004,44.59656717201226,44.59656900393168,44.59659919788489,44.59659339844859,44.59660882651686,44.59662078550419,44.59666909102577,44.596720426742,44.59668945555128,44.59668330021224,44.59672541389585,44.59668961416503,44.59668004361672,44.61111242295237,44.62499674893136,44.63989726043589,44.65438544404942,44.66881758374625,44.68358025974806,44.6837198662657,44.6836202905837,44.68367832354346,44.68374134566402,44.68375610183903,44.68376907339634,44.68371619947562,44.68371508192376,44.68374371729377,44.68381595175189,44.6837844813435,44.6837781546151,44.68370991968632,44.68380223420807,44.68382187537622,44.6838591946625,44.68387252772945,44.68386035318386,44.68388777810988,44.68384412513552,44.68382860318197,44.68390314691359,44.6839201682581,44.68398116021233,44.68415456539656,44.6841017001336,44.68407685489998,44.68410540276719,44.68410494943337,44.68421443394725,44.68429501346608,44.68429142782798,44.68431610928106,44.68431257827008]}]],[[{"lng":[-87.37509630288883,-87.37506753546199,-87.39759340907634,-87.41787261097971,-87.43815145283412,-87.45841669061083,-87.46878080478442,-87.47876942063999,-87.49897448107289,-87.51923648898392,-87.53955695971598,-87.58010640570316,-87.60043476851359,-87.620771015351,-87.64106732515542,-87.66126892633446,-87.68162927345362,-87.70193077123805,-87.72225531068776,-87.73656895066253,-87.73660787172878,-87.73684570341416,-87.73697693205993,-87.737030755606,-87.73726161645075,-87.73750725020992,-87.73769977245041,-87.73806875997974,-87.73831439983036,-87.73855974186006,-87.73869163229574,-87.73905222818856,-87.73916740697544,-87.73929714060041,-87.73945546900947,-87.73954346300327,-87.73959038147007,-87.73963553486433,-87.73963559686089,-87.73972108296135,-87.73985868086781,-87.7400740522819,-87.74013575977222,-87.74039741303446,-87.74053500869445,-87.74075869263233,-87.74087307788258,-87.74091235190659,-87.74117393790233,-87.74130358614497,-87.74136529030673,-87.74167989875154,-87.74238008586956,-87.742541567817,-87.7426641880994,-87.74281791390315,-87.74311776571173,-87.74319530028674,-87.74331783760911,-87.74342545761962,-87.74356383012082,-87.74367144897654,-87.74394819489284,-87.74405581637893,-87.74420923495946,-87.74440948812168,-87.74454003907292,-87.74465488161296,-87.74467077454852,-87.74479349795392,-87.74497063376596,-87.74510814776241,-87.74512397612853,-87.74524723415173,-87.74539269701231,-87.74551651920143,-87.74580032748665,-87.74594623598254,-87.74613827188277,-87.746415101793,-87.74673038951067,-87.74740639689348,-87.74771463023308,-87.74796746353805,-87.748113956396,-87.74822852428022,-87.74828311313405,-87.74831393459958,-87.74846035743377,-87.74856688428751,-87.74859775386135,-87.74862856393682,-87.74873613712263,-87.74877995953055,-87.74879983340274,-87.74879527604394,-87.7487669216456,-87.74847496490702,-87.74838271231705,-87.7483216432461,-87.74822939320782,-87.74816747396137,-87.74806734337767,-87.74803723854379,-87.74802288977003,-87.74802926527595,-87.74804409838569,-87.74812206579136,-87.74832975744896,-87.74844383882898,-87.74849815684445,-87.74853696677407,-87.74853722547988,-87.74852158072663,-87.74832850365472,-87.74829129106817,-87.74832096572531,-87.7484290662119,-87.74846018181233,-87.74850543628726,-87.74850556996748,-87.74855166169961,-87.74867522251058,-87.74872138790488,-87.74873595791759,-87.74885915270519,-87.74890513522202,-87.74890598420565,-87.74898204502685,-87.74902887357774,-87.74928931219951,-87.74933606638081,-87.74939805794793,-87.74947411558585,-87.74947417451195,-87.74955102242599,-87.74955109303322,-87.74962787661093,-87.749627936349,-87.7496739064652,-87.74973564958523,-87.74984317889658,-87.74993578751632,-87.7499890491285,-87.74998086889536,-87.74999754517619,-87.7500584385169,-87.75008563800267,-87.7501587195709,-87.75027425547911,-87.75038117486909,-87.75039706059839,-87.75052770549961,-87.7507658629669,-87.75101202613716,-87.75122706853529,-87.75130305643739,-87.75136497657287,-87.75144175447598,-87.75154139873176,-87.75156437401135,-87.75156535134329,-87.75154964542574,-87.75153411987709,-87.75155722891884,-87.75159561739551,-87.75171074624704,-87.75179537551615,-87.75192506185918,-87.75206891237333,-87.75228901179992,-87.75235034136722,-87.75236589928883,-87.75236211983491,-87.75233851403948,-87.75225096162441,-87.75184140762443,-87.75168717028212,-87.75144896669943,-87.75133406302115,-87.75121154000173,-87.75108856433306,-87.75095789589199,-87.75093522239106,-87.75095075348531,-87.75095020712047,-87.75093457351559,-87.75079692682831,-87.75075065902651,-87.7507348445789,-87.75070428057633,-87.75069628295941,-87.75071951171714,-87.75073467983654,-87.75075068699623,-87.75082679344517,-87.7509653651164,-87.75098131077549,-87.75098071369199,-87.75095027261841,-87.75088837328785,-87.75084283562001,-87.75082664631387,-87.75082756695635,-87.75088881573771,-87.75091901107443,-87.75094988354131,-87.75096582903363,-87.75107359483222,-87.75111950184314,-87.75113459902904,-87.75121149171999,-87.7512724375199,-87.75133501778924,-87.75139620656806,-87.75147321740212,-87.7517188118883,-87.75181079341723,-87.75184172546599,-87.7519337710234,-87.75196391307909,-87.75265631337894,-87.75276400579324,-87.75293256982926,-87.75294766417755,-87.75301018133744,-87.75301023793106,-87.75307117931533,-87.75308627405913,-87.75319395638866,-87.75349312510168,-87.75356138161419,-87.75379349145682,-87.7537935519899,-87.75388620392026,-87.75388547478798,-87.75393136729357,-87.75393142521776,-87.75413163620055,-87.7545309414871,-87.75499178669878,-87.75513875248699,-87.75572242403854,-87.7562137553211,-87.75690514753578,-87.75692017891892,-87.75705919001378,-87.75712085009647,-87.75735052453651,-87.75759648124719,-87.75800356589359,-87.75841181051653,-87.75914114771186,-87.75970134169117,-87.76006347427199,-87.76031702963539,-87.76067800411593,-87.76080112891607,-87.76092319494514,-87.76104620496632,-87.76116916035946,-87.7612310013813,-87.76141525903122,-87.76152338776907,-87.76159159574657,-87.76162639187849,-87.76158193628628,-87.76150921609289,-87.76147505506113,-87.76146769019186,-87.76151753694378,-87.76158946683988,-87.76164562042844,-87.76173846650993,-87.76183067482306,-87.76190509191268,-87.76192080654066,-87.76191619846468,-87.76189734444445,-87.76190869223855,-87.76194679525355,-87.76198787645656,-87.76203411837882,-87.76208791156745,-87.7621220625544,-87.7621609750494,-87.76219892211201,-87.76243924255448,-87.76245856156676,-87.76247404409847,-87.76249211643317,-87.76286584189671,-87.76345271844028,-87.76380938073251,-87.76418932707401,-87.76430345863048,-87.76454614425771,-87.76487433606019,-87.76517056820725,-87.76522767856774,-87.76503380385843,-87.76492168863071,-87.76497810521144,-87.7648809454536,-87.76490616207926,-87.76509172647793,-87.76531640839653,-87.76545099026856,-87.76545155238176,-87.76560195496046,-87.76582936074519,-87.76609434299709,-87.72523887787443,-87.70497230985588,-87.68481061053474,-87.66446633438143,-87.64428377041807,-87.62364329401851,-87.6034303558524,-87.58338409189102,-87.54346371762379,-87.54345901483617,-87.54341301635414,-87.54338268920456,-87.54332165199868,-87.54326036468218,-87.54304680686035,-87.5429400304579,-87.54284850952432,-87.54274133565461,-87.54258934874842,-87.54255838533864,-87.5424516070466,-87.54237476945853,-87.54226786001408,-87.54214633222389,-87.54191697370234,-87.54184077440742,-87.54174903017935,-87.54167296215482,-87.54154384748173,-87.54136740991702,-87.54127579444435,-87.54071071337412,-87.54061896390134,-87.54042002772627,-87.540237425581,-87.54005483695204,-87.54000831280469,-87.53980977914838,-87.53956590754674,-87.53948932622818,-87.53933653145283,-87.53924476494814,-87.53903877362143,-87.53889329250998,-87.53886257890137,-87.53851122358338,-87.53840471464731,-87.53829791757251,-87.53822171010974,-87.53787047991132,-87.53731969427166,-87.53722871565192,-87.53693906566349,-87.53661021455262,-87.53639639062119,-87.53625849585352,-87.53602976240009,-87.53580872657406,-87.53570049420566,-87.53528909063012,-87.5351738085181,-87.53500583690713,-87.53489160729146,-87.53445647667493,-87.53428809046693,-87.53420364927742,-87.53404768869834,-87.53390605146092,-87.53367743727728,-87.53334896996746,-87.533164391431,-87.53308843485115,-87.53307325536265,-87.5330733576005,-87.53308829112987,-87.53311923637055,-87.53322647802993,-87.53340274928381,-87.53347889262669,-87.5336856256351,-87.53374609276001,-87.53374594309672,-87.5337080339677,-87.53356367317896,-87.53354785641326,-87.53355543094136,-87.5335940252252,-87.53363959272633,-87.53365915295355,-87.53371630251192,-87.53378878893764,-87.53380907670095,-87.53380512111232,-87.53378565986414,-87.53375016652619,-87.53373611117982,-87.53374135043177,-87.5337741161034,-87.5338248385743,-87.53386442443562,-87.53392943465199,-87.53409871010464,-87.53422863168097,-87.53428938318115,-87.53444979943943,-87.53449661365281,-87.53460362983381,-87.53467963932847,-87.53480238901008,-87.53484824464228,-87.53486379995707,-87.53487883775854,-87.53489389822279,-87.53494985537709,-87.53493985304385,-87.53489456267586,-87.53485629227485,-87.53480339561013,-87.53474934081331,-87.53462061910571,-87.53455859058461,-87.53445236129305,-87.53440629455311,-87.53437641217575,-87.53433845384357,-87.53432340686412,-87.5342394719946,-87.53418517333195,-87.53412472299638,-87.53400174741159,-87.53375114304438,-87.53357433056235,-87.53336818386997,-87.53322352607842,-87.53309381300967,-87.53298646971157,-87.53289467162639,-87.53284890895149,-87.53244378287225,-87.53237550948879,-87.53216953556186,-87.53211551271895,-87.53205429039244,-87.53202548819283,-87.53193263529003,-87.53190241640075,-87.53184142619295,-87.5317336123243,-87.53168821969265,-87.53158095510805,-87.53148965622579,-87.53134460692729,-87.53113797266211,-87.53089507519137,-87.53026743660345,-87.52992441628935,-87.52989368327265,-87.52975625142636,-87.52949598301561,-87.52943517367994,-87.52887735935323,-87.52874826295685,-87.52864075806981,-87.52845697065186,-87.52841119895098,-87.5282512360037,-87.52808212526237,-87.52797526523756,-87.52788436634216,-87.52769329901714,-87.52732578665741,-87.52717342836692,-87.52707453678917,-87.52679085482254,-87.52641676905682,-87.52621806887363,-87.52604972864344,-87.52598877402556,-87.52579833640452,-87.52561367892157,-87.52537003533109,-87.52509475217659,-87.52479705846584,-87.52460504984697,-87.524483551589,-87.5242851031708,-87.52401030374807,-87.5238177830295,-87.52352009097261,-87.52300027238167,-87.52287798529363,-87.52255787992357,-87.52234324222262,-87.52211420576648,-87.52173227561775,-87.52170139422108,-87.52162410073161,-87.5215253417372,-87.52141829709461,-87.52137223160156,-87.52127317481273,-87.52100561549281,-87.52089886250951,-87.52083773746112,-87.52080736775891,-87.52073013675991,-87.52069989320231,-87.52059270467312,-87.52052395795788,-87.52031903213222,-87.52017986086337,-87.52001780845787,-87.51992025832261,-87.5198625859492,-87.51978303377986,-87.51964553583031,-87.51955315756368,-87.51943162660234,-87.51920210605488,-87.51900381346339,-87.51889710848647,-87.51883520492029,-87.51869726368733,-87.51862172737516,-87.51852970999106,-87.51843727220636,-87.51833071542839,-87.51827022502802,-87.51820816204004,-87.5181620869285,-87.51811650736586,-87.51800993697064,-87.51790245340362,-87.51776575734516,-87.51773458392273,-87.51769579702788,-87.51769531948159,-87.51768038586803,-87.51765677517318,-87.51757980488595,-87.51753422645619,-87.51747323137135,-87.51747308691839,-87.51739627196565,-87.51739611895503,-87.51725894892952,-87.5172587924752,-87.51716741566193,-87.5171672736241,-87.51704472126156,-87.51700711642276,-87.51690708409934,-87.51689950135685,-87.51687651465049,-87.51688358401165,-87.51687578794649,-87.51689188776064,-87.51690630639585,-87.51693704321724,-87.51699856308328,-87.51699797920882,-87.51693675839715,-87.51686797570221,-87.51684484690558,-87.51684450449504,-87.51688297034812,-87.5168819317675,-87.51686728154711,-87.51688227380947,-87.51688209860126,-87.51682058564228,-87.51678295928292,-87.5167907094596,-87.51675165208505,-87.51675941410024,-87.51678960157724,-87.51678995395119,-87.51680582043409,-87.51682031972118,-87.51688212874593,-87.51688184329834,-87.51692807296601,-87.51695815005483,-87.51697323432106,-87.51701888027509,-87.51703474706876,-87.51707244257126,-87.51711135546748,-87.5171872013613,-87.51720920976761,-87.51732553959525,-87.51735549680211,-87.51745446092795,-87.517576313715,-87.51759186292855,-87.5176153173044,-87.51767663861891,-87.5177218010443,-87.51772214453143,-87.51778280670048,-87.51779757196384,-87.51781393798453,-87.51781339124223,-87.51778342629275,-87.51772129195464,-87.51772685725264,-87.5177665513943,-87.51775208879182,-87.51772792872346,-87.51774331307806,-87.5177825186373,-87.51778958097978,-87.51778159123334,-87.51766680991255,-87.51757467407343,-87.51745297306093,-87.51738354320692,-87.51728436744585,-87.51714623865752,-87.51697814487049,-87.51683987629463,-87.51676351657571,-87.5167633714311,-87.51662634004451,-87.51638053935436,-87.51636519713944,-87.51633493500337,-87.51627392399271,-87.51625792819976,-87.51619691669822,-87.51608244637042,-87.51600642357943,-87.51599093430887,-87.51582953503699,-87.51578341988704,-87.51570749892367,-87.51561557828542,-87.51546288629875,-87.51534071758513,-87.51518661736367,-87.51504907394009,-87.5149652118656,-87.51480432414229,-87.51466584803677,-87.5146203785054,-87.51457398326015,-87.51443708649353,-87.51440603275726,-87.51437576607991,-87.51434471322617,-87.51428403328299,-87.51425313486678,-87.51417661365133,-87.51413129177233,-87.51402307631935,-87.51397711411991,-87.51373273011006,-87.51368661823915,-87.51358718462463,-87.51352615099641,-87.51328136584753,-87.51318159309984,-87.51312105036871,-87.51311340155063,-87.51314374523498,-87.51315875070834,-87.51322498829748,-87.51328841767189,-87.51331159428408,-87.51331135007894,-87.51327332989858,-87.51319606241587,-87.51298250119093,-87.51279774369959,-87.51276722524149,-87.51277497835812,-87.51275996613002,-87.51275941793396,-87.51273669920758,-87.51269877054916,-87.51259795727319,-87.51253750963672,-87.5124913940902,-87.51246111918806,-87.51239994284219,-87.51235382712456,-87.51227743570016,-87.51221580810505,-87.51213887699984,-87.51210845589276,-87.51204716313198,-87.51198632326748,-87.5118635180043,-87.51184738096275,-87.51178682948563,-87.51171798571708,-87.51148051201669,-87.51141981300201,-87.51135877838541,-87.51128223403281,-87.51125117077189,-87.51100569048391,-87.51094484145364,-87.5108987621168,-87.51086008235151,-87.51082167007399,-87.51047004259928,-87.51042391799622,-87.51037779404561,-87.51033245198774,-87.51028632877943,-87.51021070858611,-87.51014936210238,-87.51011908326592,-87.51008802888768,-87.51005774983089,-87.51002747080612,-87.50999562222616,-87.50992949296014,-87.50935303567987,-87.50926110985785,-87.50918484700755,-87.50918470117503,-87.50896990304055,-87.50866388496132,-87.50864866361036,-87.50788358495583,-87.5077759171544,-87.50753891849,-87.50739297164009,-87.50733176244428,-87.50730069375463,-87.50719399887946,-87.50716356461221,-87.50705621959942,-87.50694873977385,-87.50690323146139,-87.5068423721207,-87.50681084308133,-87.50674935052962,-87.50670339550713,-87.50661175919333,-87.50648964155798,-87.5063272966291,-87.50615265789459,-87.50609160244521,-87.50604576223532,-87.50580026314793,-87.50569385350835,-87.50552418507823,-87.50498877548659,-87.50488143202004,-87.50469812678377,-87.50457495650059,-87.50451358851697,-87.50443260531181,-87.50423811401757,-87.50416953390584,-87.5040621965455,-87.50386233613585,-87.50378608602651,-87.5035784606691,-87.50346390435136,-87.50307338065825,-87.50288898770131,-87.50266739194927,-87.50263663520032,-87.50247532019905,-87.50221546076752,-87.502199376162,-87.50214543548479,-87.50188513143711,-87.50186883929702,-87.5019076610325,-87.5018842581046,-87.50185352764758,-87.50169961084758,-87.50169225722924,-87.50176726003039,-87.50176769440294,-87.50184367419165,-87.50195103279151,-87.50204286859987,-87.50224059094934,-87.50224842122346,-87.50231743359463,-87.50230089468438,-87.50235348207666,-87.50227755888318,-87.5021542917349,-87.50210848593187,-87.50197065454952,-87.5019398827022,-87.50192516790865,-87.50184735599993,-87.50177898974006,-87.50176375575762,-87.50161064052118,-87.50151031950733,-87.50148728950916,-87.50149521332011,-87.50155499074668,-87.50155567825287,-87.50151006001273,-87.50148651173653,-87.50135603085633,-87.50124866049092,-87.50121853501886,-87.50120228168268,-87.50115645390746,-87.5011107682908,-87.50092641517358,-87.50075715918351,-87.50068104960442,-87.50061955587014,-87.50054294216393,-87.50027378570458,-87.50009055353095,-87.49817066590798,-87.49803668412054,-87.49793771851998,-87.49787635941999,-87.49783858850958,-87.497777319021,-87.49774685019848,-87.49774591328764,-87.49777671179736,-87.49788348870595,-87.49808248250322,-87.49863400349898,-87.49869230719291,-87.49895897646438,-87.49906256793523,-87.49915590965364,-87.4991389422199,-87.49898605707256,-87.49894709492698,-87.49893909237375,-87.49895433742061,-87.49899316439628,-87.49900055763099,-87.49895438040814,-87.49895500150912,-87.49886279448648,-87.49883235065161,-87.49878633804119,-87.49878588562567,-87.49880112729609,-87.49883154719134,-87.49883225599038,-87.49862428427056,-87.49855580165671,-87.4985096183207,-87.4984331209038,-87.49831059190815,-87.49821838032408,-87.49801981703695,-87.49791252765128,-87.49786633379495,-87.49771364725798,-87.49765128302194,-87.49742144477406,-87.49714557353616,-87.49697698084793,-87.4966473720342,-87.49651774178915,-87.49628032912501,-87.49600512282451,-87.49543270984385,-87.49539653431172,-87.49537345945883,-87.49536381635043,-87.49536346961868,-87.49536778087287,-87.4956517024068,-87.49582017441915,-87.49585820576934,-87.49585837904563,-87.49576663228069,-87.49573474998247,-87.49570427294638,-87.49550504865816,-87.49541360993501,-87.4953213819814,-87.49529075287775,-87.49532188481903,-87.49532095342771,-87.49532721090667,-87.4951806080734,-87.49507959193467,-87.49502195793784,-87.49489233216204,-87.49484629675021,-87.49476962528119,-87.49470803340886,-87.49467756163712,-87.49466913039142,-87.49463064021232,-87.49459969845128,-87.49455444538647,-87.49450825178856,-87.49444681236557,-87.49438663361067,-87.49435584572066,-87.49430257394494,-87.49415675591449,-87.49406373577581,-87.49395626706861,-87.49384956569588,-87.49345106659688,-87.49319052246892,-87.49307548848829,-87.49288424946988,-87.49224749143156,-87.49213230209735,-87.49137451493743,-87.4911818457926,-87.49110530632714,-87.49093651863028,-87.4908447423995,-87.49081440554758,-87.49078328807221,-87.49067657741111,-87.49064545725423,-87.49058321815693,-87.4905066882441,-87.49042998058178,-87.49036853627415,-87.49030723254531,-87.49020021281953,-87.49015462581731,-87.49012351553331,-87.4900931801091,-87.49003219589042,-87.49001678809195,-87.49000028471764,-87.48997765367005,-87.48996943082985,-87.48996256343381,-87.48986166118615,-87.48984703973048,-87.48981639298147,-87.48975415152074,-87.489692379224,-87.48966173253159,-87.48964632250471,-87.48955387912191,-87.48952322749729,-87.4894623953663,-87.48941618459433,-87.48933995140885,-87.48932454153672,-87.48927817078749,-87.48923950289023,-87.48921639936,-87.48919988002429,-87.48915398058121,-87.48913919559357,-87.48907725119197,-87.48901609638963,-87.48886218603793,-87.48884662055966,-87.48883121036715,-87.48881502619055,-87.48879945614433,-87.4887383048348,-87.48867683433581,-87.48843191156389,-87.48837045156273,-87.48832485322733,-87.48826245145067,-87.48820160027788,-87.48818618887455,-87.488109770547,-87.48797061279971,-87.48793916944052,-87.48787847337319,-87.48781699925998,-87.48776291060283,-87.48775456951579,-87.48780155733265,-87.48780013703625,-87.48776963418604,-87.48760141985115,-87.48750913217006,-87.48740159915309,-87.48731779647464,-87.48724830640555,-87.48711104197901,-87.487065603717,-87.48691151139461,-87.48683510817052,-87.48678887036469,-87.48669658021265,-87.48660491789714,-87.48654344625957,-87.48648965856771,-87.48634371464948,-87.48625074576562,-87.48614364928042,-87.48603609310098,-87.48594332228551,-87.48592790685942,-87.48577521763609,-87.48577505902402,-87.48554469192435,-87.48529904271753,-87.48517607421098,-87.48509966013752,-87.48502307816271,-87.48493122976187,-87.48474709167483,-87.4846857697825,-87.48462364811063,-87.48450098753739,-87.48439342927657,-87.48434719618541,-87.48434781318556,-87.48430174888976,-87.48430158085905,-87.48422516249023,-87.48407182587871,-87.48401803726473,-87.48400199672874,-87.483986826311,-87.48397140638011,-87.48397156049775,-87.48388613666881,-87.48385562272665,-87.48383597862222,-87.48383749865289,-87.48381461269165,-87.483768844588,-87.48375326622725,-87.48373817093248,-87.48366171358046,-87.48364581847984,-87.48367082863012,-87.48373820858717,-87.48376884219033,-87.48381460109236,-87.48381442956486,-87.4840454373922,-87.48409187992239,-87.48412179967838,-87.48413015145476,-87.48415340254527,-87.48415321366234,-87.48414581275637,-87.48414596617017,-87.48410016077212,-87.48400874259521,-87.48400872848703,-87.4839931479039,-87.48399310107364,-87.48397814861525,-87.48397025336207,-87.48397851736465,-87.48403270619797,-87.4840402236636,-87.48403278117981,-87.48399420900847,-87.48399450319268,-87.48397197585878,-87.48397968340282,-87.48397177506948,-87.48402645348378,-87.4840341035251,-87.48401945833149,-87.48387358709917,-87.48385106801736,-87.4838199155289,-87.48375838427368,-87.48369718072234,-87.48360531808849,-87.48360515832994,-87.4832383177509,-87.48322289017193,-87.4831774309543,-87.48313133519233,-87.4831154405602,-87.48311590738938,-87.4831008115989,-87.48302464611724,-87.48297886684851,-87.48293306855295,-87.48288003206179,-87.48285705859999,-87.48279585150816,-87.48278026706286,-87.48271938577103,-87.48264274980141,-87.48256565854773,-87.48253544916645,-87.48250413917449,-87.48216797082596,-87.48216781045652,-87.48210660674835,-87.48210645059747,-87.48184577728956,-87.48170780597695,-87.48170764796598,-87.48166217914084,-87.48161638195704,-87.48155440506227,-87.48155502872564,-87.48144837155091,-87.48144819863592,-87.48124872346861,-87.48124856272266,-87.48069777777008,-87.48069761765011,-87.48060605159095,-87.48060589058431,-87.4805445258306,-87.48054436310071,-87.48048316768623,-87.48040638023643,-87.4803602861206,-87.48036012501221,-87.48025265957499,-87.4802532852556,-87.48020718733454,-87.48019191567748,-87.48005346430625,-87.48005330646708,-87.48002310643375,-87.48002293311207,-87.47993198968716,-87.47991655709428,-87.47980910010862,-87.47979384058897,-87.47951787472297,-87.47951770132212,-87.479395143424,-87.4793949697625,-87.47928751029033,-87.47928734874124,-87.47922771998105,-87.47922755067722,-87.47916634801756,-87.47916618726745,-87.4791200890686,-87.4791199274506,-87.47907382923138,-87.47907366759428,-87.47896697815567,-87.47896681986988,-87.4789207169964,-87.47892055954034,-87.47882882343465,-87.47882866169607,-87.47878238785434,-87.47873659175919,-87.47870559141352,-87.47870621819213,-87.47859188274612,-87.47847696043888,-87.47847679855481,-87.47839969512574,-87.4784003201146,-87.47827774309371,-87.47827757943023,-87.47820048892042,-87.47801683320078,-87.47790936611223,-87.47790919448114,-87.47777245479587,-87.47751126588911,-87.47717420402384,-87.47709739809075,-87.47706640885582,-87.47706624634472,-87.47700643993544,-87.47700627745166,-87.47688304160081,-87.47666839914424,-87.47665313495439,-87.47637712007376,-87.47637694536891,-87.47631557537996,-87.47628581825226,-87.47625560244444,-87.47610214094713,-87.47590244406136,-87.47583382484733,-87.47581085201423,-87.47579557464047,-87.47568746648211,-87.47564198236991,-87.47555035173343,-87.47552735521197,-87.47542783258757,-87.47537458206624,-87.47532040447662,-87.47522878251677,-87.47507547118303,-87.47452386312756,-87.47441922059738,-87.47427880689843,-87.47423331630186,-87.47409576290403,-87.47394245298862,-87.47390387125122,-87.47378155517082,-87.47376607363397,-87.47378225173827,-87.47378202333047,-87.47379695319496,-87.47379675374833,-87.4738129317745,-87.47372098049838,-87.47372113699808,-87.47369776890918,-87.4736440393705,-87.47359041975433,-87.47356789177083,-87.47354551142539,-87.47353039402782,-87.47349212036669,-87.47342298437378,-87.47340737714039,-87.47328468468056,-87.47325410671741,-87.47324633030347,-87.47325396080569,-87.47327013546133,-87.47330094489452,-87.47336226922,-87.47340807576852,-87.47340828115153,-87.47338543602017,-87.47338539839019,-87.47346875121026,-87.47346125839962,-87.47346919636391,-87.47341139961053,-87.47334781881985,-87.47331694100809,-87.47310216051071,-87.47294869829582,-87.47290263912205,-87.4728645116418,-87.4728715167581,-87.47286394029342,-87.47284866980952,-87.47280371040522,-87.47274211000568,-87.47274240817119,-87.47271955023139,-87.4725814307448,-87.47244344797612,-87.47205284602755,-87.47193816101213,-87.471700201191,-87.47165403035947,-87.47163088496669,-87.47156285218935,-87.47153931048808,-87.47144718567814,-87.47140105831565,-87.47127947234642,-87.47115665427627,-87.47103350752771,-87.47094183777378,-87.47088025780133,-87.47081114434346,-87.47075731786343,-87.47069606408891,-87.47058989199253,-87.47054359674571,-87.47040574571375,-87.47016017439474,-87.46997576171833,-87.4698691698113,-87.46985388256135,-87.46980775121595,-87.469669644202,-87.46966947934459,-87.46953169826047,-87.46953152357258,-87.46943954631003,-87.46930143592043,-87.46916406102071,-87.46907224804673,-87.46907207316313,-87.46901144714229,-87.46901128116052,-87.46896514758336,-87.46893458101314,-87.4688884435609,-87.46888906477312,-87.46878117555967,-87.46876571991639,-87.46872020403642,-87.46865828471103,-87.46862817317336,-87.46861255337119,-87.46861230420718,-87.46856702883191,-87.46853646083466,-87.46831421780618,-87.46830680119822,-87.46809955159515,-87.46800727442427,-87.46779280798793,-87.46773942776714,-87.46773924987127,-87.46766237457054,-87.46754756457706,-87.46720766538827,-87.4670262084054,-87.46682669432549,-87.4667958443019,-87.46667348520336,-87.46653538854196,-87.46650532548234,-87.46627432549832,-87.4661979541721,-87.46613684776064,-87.46591384037492,-87.46583036671746,-87.46579951822395,-87.46572312851066,-87.46549291872377,-87.4648490604104,-87.46480291566007,-87.46467206630078,-87.46430378609391,-87.4642126213906,-87.46395141590676,-87.46373663809611,-87.46349825356786,-87.46331511164723,-87.46311540189271,-87.46270111441191,-87.46242578385539,-87.46239493134699,-87.4623487799004,-87.46227193279401,-87.462092289057,-87.46206422202528,-87.46183471000059,-87.46177404684204,-87.46165874871544,-87.46145964179493,-87.46121373409422,-87.46107543793978,-87.46093050822748,-87.46085378041671,-87.46080762722788,-87.46080744577574,-87.46074617231415,-87.4607460055429,-87.46066960313263,-87.46066943380823,-87.46031592963435,-87.46030064238745,-87.46025606000381,-87.46016341144652,-87.46016323036511,-87.46002539173642,-87.46002521229637,-87.45993351917289,-87.45993334952034,-87.45988719153239,-87.45985181961971,-87.45977233514589,-87.45968709779308,-87.45951146463555,-87.45941948587536,-87.45929709980187,-87.45920433648746,-87.45914305622324,-87.45911218592744,-87.45895875938038,-87.4587673835649,-87.45863755624293,-87.45826958329978,-87.45810871244703,-87.45785621790108,-87.45764060406125,-87.45739534914095,-87.45713383427059,-87.45690795926447,-87.45688150290798,-87.45688077979021,-87.45677394891963,-87.45677376818152,-87.45664376843078,-87.45644397654095,-87.45632174542574,-87.45612151666032,-87.45598380848715,-87.45585379076853,-87.45563100711297,-87.45558501076137,-87.45544668166463,-87.45541581878149,-87.4553704381006,-87.45498700118608,-87.45484866882153,-87.45481780527034,-87.45478754931895,-87.45475667336024,-87.45461851143936,-87.45448018915414,-87.45426594816163,-87.45423568806147,-87.45420481514755,-87.45417377000727,-87.45371318676816,-87.4535365427643,-87.45319952251342,-87.45284624414074,-87.45278511638307,-87.45246348226038,-87.45240183009525,-87.45234054014104,-87.45229385374446,-87.45229429586267,-87.45218639981371,-87.45206344644699,-87.45206327362416,-87.45203301014405,-87.45195684713075,-87.45191067096503,-87.45189536179865,-87.45181893652769,-87.45161884078037,-87.45152649016745,-87.45138814857005,-87.45135019446097,-87.45134332305281,-87.45128974018692,-87.45125894570111,-87.45125101143479,-87.45121971606336,-87.45120457632342,-87.45118972350932,-87.45111240664853,-87.45108215641358,-87.45108198315663,-87.45105093199685,-87.4510203228528,-87.45083569588752,-87.45078978727379,-87.45069848608351,-87.45066743510704,-87.45063743901483,-87.45060604016895,-87.45057577672624,-87.45056030398246,-87.45052925103126,-87.45052986684946,-87.45042184908375,-87.45042167809784,-87.45036019775405,-87.45036081350615,-87.45029914887635,-87.45009955703073,-87.44996180838731,-87.44980787633776,-87.44980849102392,-87.44966951298088,-87.4495467144815,-87.44945460427626,-87.44930154973106,-87.44919492402497,-87.44910307982526,-87.44904150403741,-87.44902558908417,-87.44897205267061,-87.44893392155181,-87.44894905552049,-87.44890296817616,-87.44871909416872,-87.44845833536932,-87.44830412534877,-87.44830473859263,-87.44824323605299,-87.44816608754165,-87.44807476663925,-87.44804370568372,-87.44792098036972,-87.44784408211943,-87.4478136380619,-87.44770612820413,-87.44759826464184,-87.446969187725,-87.44675362762254,-87.44663183768235,-87.44657051443343,-87.4465552097213,-87.4464779556253,-87.44638599826975,-87.44624725881461,-87.446124851294,-87.44603246522722,-87.44603228984165,-87.44587936327186,-87.44585415395831,-87.44580991350493,-87.44563405083198,-87.44555661758214,-87.44555723060537,-87.44552616856612,-87.44548041399307,-87.44524943771576,-87.44518905947689,-87.44505047445733,-87.44500445298624,-87.44486604002108,-87.44486586416205,-87.44468186573123,-87.44452788194276,-87.44437572884497,-87.44437555706381,-87.4442982935031,-87.44405269819522,-87.44376037487851,-87.44376018884375,-87.44368372140765,-87.44368354932,-87.44356130812494,-87.44346959709841,-87.44334621835289,-87.44268662391704,-87.44199605585663,-87.44161138842324,-87.44135045210918,-87.44091300335053,-87.44077432042934,-87.44042201872227,-87.44032251409753,-87.44026081992062,-87.44026064220499,-87.44023036102872,-87.4402301833003,-87.44015273066393,-87.44011446998745,-87.44006034520297,-87.44006063173285,-87.44010036204797,-87.44009256376862,-87.44006926596502,-87.43993061470864,-87.43987685201232,-87.43980767876032,-87.43978452712321,-87.43975370998439,-87.43971083023011,-87.43973858675398,-87.43976179864757,-87.43975364616701,-87.43970750214311,-87.43961551780473,-87.4395848774699,-87.43958441420654,-87.43956147794529,-87.43951630945129,-87.43950831929621,-87.43947750288886,-87.43943190141906,-87.43929326536846,-87.43926201698173,-87.43924659026582,-87.43920063515635,-87.43915503530798,-87.43915485706233,-87.43912378207135,-87.43903142587308,-87.43900114837523,-87.43900096995822,-87.43889304301898,-87.4388399894226,-87.43868627804292,-87.43854068846714,-87.43844808159011,-87.43834077231121,-87.43827869537999,-87.43824840491058,-87.43824822968409,-87.43820183865566,-87.43812600574333,-87.43809494290001,-87.43800275503155,-87.43795643954303,-87.43787982111618,-87.43784936245514,-87.43778720998384,-87.43774160095013,-87.43774142465846,-87.43768006947631,-87.43766456150969,-87.4375725591148,-87.43757238349555,-87.43748781736004,-87.43745771665488,-87.43741149684347,-87.43713525658045,-87.43704299998639,-87.43670419305597,-87.43653639822689,-87.4365054956417,-87.43645927910636,-87.43606714823107,-87.43597549092537,-87.43586007802361,-87.43556047768791,-87.43543871198878,-87.43531518330427,-87.43522382334795,-87.43510113171519,-87.43497784635692,-87.43494729930482,-87.43466776547828,-87.43454291114941,-87.43447083495342,-87.43439452442794,-87.43436369474671,-87.43424024235711,-87.43417875784355,-87.43409480090432,-87.43404856395482,-87.43395570209519,-87.43386500708883,-87.43366507967195,-87.43361079582138,-87.43361061960826,-87.43355729906403,-87.43347248517988,-87.43338761118025,-87.43324153681911,-87.43319639945848,-87.43299658850923,-87.43272074113916,-87.4326285929734,-87.43254418994943,-87.43252770681435,-87.43251220862754,-87.43252050389883,-87.432555638149,-87.43225493150287,-87.43184640107852,-87.43179152941634,-87.43175288212133,-87.43169938027708,-87.43163783284277,-87.43156064682923,-87.43150768186204,-87.43148430172083,-87.43148454752456,-87.4315150249397,-87.43163716560396,-87.43166049395352,-87.43164504506989,-87.43160687728917,-87.43149115249058,-87.43127630449845,-87.43112271552233,-87.43050877952678,-87.43026321385692,-87.42992499501631,-87.4294641006078,-87.42921864077422,-87.42904596705156,-87.4289120559297,-87.42848217218298,-87.42826754784362,-87.42777627399541,-87.42756067839224,-87.42719203252479,-87.426954032832,-87.4264700813489,-87.42591032324724,-87.42568728360551,-87.42535007274248,-87.42511943939587,-87.42475035991448,-87.42471260535068,-87.42451985410101,-87.42437466655294,-87.42396697791956,-87.42357594922274,-87.42289224835898,-87.42267744424264,-87.42238519327653,-87.42149514744357,-87.42124913849497,-87.42112593736995,-87.42091874879897,-87.42080384892171,-87.42072650683208,-87.42068086592947,-87.42063484166624,-87.42060375913326,-87.42046487879925,-87.42020432361984,-87.42005042465081,-87.4199280063706,-87.41972757392264,-87.41958126906621,-87.41948172542381,-87.41945814662363,-87.4194660915082,-87.41938151347333,-87.41938173528604,-87.41929636772977,-87.419205446142,-87.41900525414655,-87.41894385483438,-87.41887460828478,-87.41884378799401,-87.41882038473614,-87.41877394965513,-87.41870466733316,-87.41865150883086,-87.41858992108465,-87.4185588568502,-87.41857395130243,-87.4185744490309,-87.41855896407149,-87.4184667271093,-87.41835160926898,-87.41812090620365,-87.41799786939332,-87.41796676847923,-87.41788978351849,-87.41769097803908,-87.41742931767554,-87.41715341521042,-87.41693078992976,-87.41679872464087,-87.41644614265745,-87.41601641794357,-87.41590064298661,-87.41556285597204,-87.41516282677226,-87.41494833066029,-87.41470195559712,-87.41411184646952,-87.4137433142871,-87.41353553955747,-87.41352746788819,-87.41337460696006,-87.41316700311745,-87.41282195111184,-87.41230685238803,-87.41203045701869,-87.41173008606739,-87.41141590016123,-87.41135425772831,-87.41123182575937,-87.41083993543197,-87.41081792095247,-87.41072601969253,-87.41047997407802,-87.41029623301624,-87.41015021002302,-87.40992781361894,-87.40983554673264,-87.40955884228509,-87.40934472512714,-87.40915984641659,-87.40879864352661,-87.40871439798775,-87.40852945699088,-87.40822270222593,-87.40800860946523,-87.40797787558706,-87.40733281109098,-87.40731001986954,-87.40690227450827,-87.40628864661639,-87.40598109881248,-87.40553568432841,-87.4049521309597,-87.40483735305266,-87.40464515532129,-87.40443010229603,-87.40414632914995,-87.40406972294276,-87.40393092636083,-87.40386261179123,-87.40381635957034,-87.40375472452101,-87.40339416895648,-87.40338634383649,-87.40340239840307,-87.40337822221466,-87.4033480837271,-87.4032025409029,-87.40281868713406,-87.40265738736764,-87.40251893657759,-87.40225837463467,-87.40221209917732,-87.40218118300952,-87.40207364437997,-87.40185916776771,-87.40170476869652,-87.40159803041202,-87.40142885802248,-87.40131444294175,-87.40109879931995,-87.40108344715559,-87.40086819903939,-87.40058498772056,-87.40055407299975,-87.40033958823214,-87.40007764348385,-87.39962621141783,-87.39946452079359,-87.39898843735368,-87.39865023993133,-87.39847415107675,-87.39842057293964,-87.39802899963271,-87.39777569886166,-87.39749912984038,-87.39726905460493,-87.39709984915893,-87.39696215444471,-87.39660796414816,-87.3964860402485,-87.39633178511177,-87.39630067195216,-87.39617754178535,-87.39614800262098,-87.39607097000922,-87.39593248515331,-87.39590155005793,-87.39587122458541,-87.39574888264416,-87.39571776440887,-87.39539448547788,-87.39508796428468,-87.39501094259455,-87.39497981335124,-87.39482733336726,-87.39471898590547,-87.39444317636838,-87.39441204651267,-87.39427374652166,-87.39424262903188,-87.39416638020333,-87.39407476122658,-87.39399773431303,-87.39365218264896,-87.39316025036462,-87.39311395168608,-87.39306785547315,-87.39299180854553,-87.39297625170724,-87.39297605199984,-87.3929912234873,-87.39311488170588,-87.39320631108841,-87.39328360680054,-87.39328406386912,-87.39323757243115,-87.39322240724933,-87.39320644736841,-87.39319128235611,-87.39316133942918,-87.39314538495046,-87.39314578476746,-87.39311445695954,-87.39306856163689,-87.39299250059727,-87.39296138055761,-87.39293064418625,-87.39288434247709,-87.39288414846607,-87.39283784742669,-87.39283844101945,-87.39277618768537,-87.39277676703314,-87.39273107015755,-87.39263904926283,-87.39263885259801,-87.39259255097541,-87.39259235684294,-87.39253069183719,-87.39245464318442,-87.39236991325649,-87.39203969464069,-87.39183280636141,-87.39126416177335,-87.3907108723961,-87.39060289449262,-87.39045467681875,-87.39044686757005,-87.3902737309178,-87.389942696413,-87.38983588652839,-87.38973520326719,-87.38961972012279,-87.38949025732279,-87.38911369224678,-87.38900550177702,-87.38886913405608,-87.38883820289921,-87.38868429173101,-87.38865336033192,-87.38853058719403,-87.38831520629873,-87.38814710387291,-87.38811617191716,-87.38798511503973,-87.38798491650394,-87.3879537900615,-87.3879390007902,-87.38786272905412,-87.38786253131688,-87.38783140366137,-87.38780065633213,-87.38768517087368,-87.38741674936475,-87.38737024097632,-87.38686394491465,-87.38684857620643,-87.38672480599416,-87.3866798711325,-87.38657226893888,-87.38643332448095,-87.3863186228829,-87.38611819376477,-87.385970339061,-87.38600322117402,-87.38579572559462,-87.38565782377539,-87.3854122584943,-87.38532712128006,-87.38496527700686,-87.38468206642723,-87.38452872671641,-87.38448200952487,-87.38435901705741,-87.38414398898622,-87.38411382890253,-87.38402119234527,-87.38379097928578,-87.38371351165726,-87.38351442614896,-87.38340659768023,-87.38337566307852,-87.38319195155853,-87.38314523435629,-87.38311487420347,-87.38299128039618,-87.38284582665176,-87.38263838888879,-87.38259980428565,-87.38246110181457,-87.38230045779233,-87.38220781109949,-87.38212361710292,-87.38209323305871,-87.38209261131711,-87.38212382007291,-87.38211570300464,-87.38213070766683,-87.38213111667565,-87.38211514293459,-87.38203902190669,-87.38180839399664,-87.38167001687636,-87.38160851586917,-87.38136282543446,-87.38130187427356,-87.38127798622877,-87.38122450973012,-87.38120949488064,-87.38116256925311,-87.38110657753457,-87.38105518210709,-87.38102500186243,-87.38097867523022,-87.38097847383065,-87.38085545165423,-87.38068730146345,-87.380447976648,-87.38034034384646,-87.38024887028359,-87.38009510193774,-87.37990270600608,-87.37974183922881,-87.37941144562944,-87.37910353185028,-87.37894306081863,-87.37880387877449,-87.37864202671339,-87.37848979515572,-87.37842826758953,-87.37841227514532,-87.3783817034375,-87.37838287769274,-87.37835152051814,-87.37835190432777,-87.37833594161418,-87.37832073179793,-87.37830555506628,-87.37830495090283,-87.37828976143285,-87.37828994349914,-87.3782739807002,-87.37827414910306,-87.37825877065974,-87.3782597250694,-87.37824354693099,-87.37825929284605,-87.37824411603597,-87.37825927657413,-87.37825925944519,-87.37830474593848,-87.37845858314063,-87.37845897121403,-87.37847458755769,-87.37847438045604,-87.37848975583283,-87.37848970952044,-87.37850448413327,-87.37848890291801,-87.37848946144753,-87.37847349368737,-87.37847367915693,-87.37844349405998,-87.37821199758608,-87.37818200996206,-87.3781823977871,-87.37816720490055,-87.3781665822092,-87.37818194516485,-87.37818213031341,-87.37822054542707,-87.37838978044728,-87.37849642309307,-87.37854296472945,-87.37854256229295,-87.37855838155438,-87.37857396965398,-87.37856564564727,-87.37855045167639,-87.3785514064357,-87.37853522726682,-87.37851979937882,-87.37850462127126,-87.3785042204166,-87.37838192379553,-87.37833538540877,-87.37828922949527,-87.37825807055135,-87.37821290317497,-87.37798159392419,-87.37779757660319,-87.37745878131794,-87.37742800566532,-87.37725957816784,-87.37725937596971,-87.37716667274795,-87.37712879667102,-87.3770288058786,-87.37702860698712,-87.37696688033503,-87.37695208421306,-87.37685209648484,-87.37674406347482,-87.3766598759984,-87.37665991442822,-87.37659108610536,-87.37629863110831,-87.37617518424896,-87.37580662041343,-87.37570624088853,-87.37549938392776,-87.37537633143187,-87.37509630288883],"lat":[44.67554380888729,44.67559013851595,44.67553195524631,44.67556760290603,44.67566574774301,44.67558977649062,44.67557695395281,44.67531323996248,44.67514742728769,44.67520726645773,44.67534070860845,44.6754257173247,44.67552625311357,44.67559013222908,44.67572607913523,44.67598419321645,44.67639893170143,44.67663414622867,44.67690953327746,44.67697261717788,44.67693957805876,44.67678562373415,44.67667598045159,44.67661009257121,44.67641239407783,44.6762200585731,44.67611584227786,44.67587418292471,44.67574232836134,44.67557755367798,44.6755115235764,44.6753028880757,44.67522049384745,44.67514907674246,44.67501154557233,44.67491848344955,44.67478662961248,44.67472056636309,44.67469862431879,44.67458891574253,44.67445716747468,44.67429235287099,44.67422634118964,44.67400673972931,44.67387499484295,44.67369909464993,44.67361667506888,44.67360029341495,44.67340263452616,44.67329267045576,44.67322665803219,44.67296309395145,44.67249644345141,44.67241945959981,44.67234817634821,44.67222715033972,44.67201842887289,44.67193050371399,44.67182067634928,44.6716888933266,44.67155715462027,44.67142537376832,44.67116161841609,44.67102983724477,44.67087588833429,44.67061230515042,44.67045846922048,44.67028266213894,44.67023880570522,44.67006315539952,44.66988716906575,44.6697773559914,44.66975544089679,44.66966757441559,44.66953569024073,44.66945346023552,44.66933247056681,44.66925010668803,44.66909636149901,44.66893162492472,44.66869000038245,44.66837700609123,44.66825621583681,44.66814079686229,44.66806350691413,44.66797574232164,44.66790986777823,44.66788768754843,44.66768999029012,44.66738235720654,44.66733851476708,44.66731661748244,44.6672669747727,44.66725517634129,44.66723053407801,44.66720568899997,44.66718458881685,44.66712960224048,44.66712974959709,44.66711869969028,44.66711884758109,44.66712972472705,44.66712971702839,44.66711308932161,44.66709677001339,44.66707467227361,44.667058083757,44.66701967654996,44.66697032185061,44.66691546116267,44.66687686744297,44.66681124137108,44.66672318758727,44.66667927749693,44.66637164013607,44.66615175512721,44.66597595097858,44.6656683447298,44.66553673273959,44.66542678308814,44.66538262193838,44.66525102508545,44.66505315919929,44.66489934080818,44.66476740666971,44.66441592959374,44.66432793803747,44.66430601147211,44.66417416415791,44.66406424470777,44.66369072243106,44.66360302794718,44.66342729350043,44.66329544577687,44.66327350423541,44.66314167143001,44.66311944929254,44.6630095572601,44.66298761512576,44.66289990442877,44.66281194238751,44.66270209707213,44.66257029019796,44.66241633210718,44.66224062617724,44.66219678438596,44.66213074933312,44.66207980556923,44.66200444255396,44.66185058351749,44.66167489206096,44.66163104252964,44.66143302904931,44.66112545577379,44.66077386677734,44.66055416898853,44.66044426193158,44.66029047310507,44.66018058090523,44.66007057315014,44.66002685761838,44.6599607697235,44.65993879725904,44.6598509971618,44.65976311740094,44.6597081703173,44.65962576282815,44.65959817145937,44.6595877838543,44.65959849505128,44.65961492290912,44.65959869195041,44.65956326835516,44.65953871771013,44.65951715571091,44.65949798893836,44.65948823387323,44.65946072416076,44.65936206622216,44.65929594467949,44.6592026656101,44.65905986034092,44.65885107217854,44.65878507995156,44.65858733193131,44.65849955089862,44.65845535622456,44.65826387501249,44.65811498448191,44.65799398334947,44.65792811763347,44.65782921202455,44.6576974468916,44.6576313571673,44.65754361782173,44.65738982609839,44.65717002544691,44.65710423243754,44.65703810681357,44.65692835144153,44.65679632103301,44.65673043445683,44.65659873751721,44.65655458755669,44.65635690082606,44.65626915833747,44.65622503380794,44.65615923774879,44.65596133800255,44.65589528667763,44.65585142025406,44.6556976449388,44.65560966139602,44.65549977397417,44.6553240236233,44.65512636255428,44.65468670692517,44.65448906450088,44.65442299937393,44.65420340929146,44.65413732917838,44.65317054701898,44.65299458626622,44.65275287337386,44.65270899933855,44.65262105426667,44.65259911203407,44.65251112739933,44.65246726064596,44.65229157948725,44.65185185100314,44.65175810662783,44.651401451989,44.65137950982938,44.65122547983271,44.65120352213454,44.65113774895237,44.65111580674045,44.65082998307363,44.65036858806515,44.64988505627359,44.64975318879922,44.64931370402429,44.64891797653616,44.64842348761908,44.64840156244557,44.6482917639882,44.64822573461046,44.64803360354083,44.64786879860113,44.64765426402401,44.6473685782808,44.64689057867692,44.64658846116262,44.6463741645253,44.6462367909625,44.64601149673743,44.64594555324395,44.64590715604368,44.64588508947926,44.64588497237505,44.64589602752651,44.64596181678117,44.64597828244028,44.64596724169981,44.64592319539886,44.64589053131836,44.64585506817528,44.64580066620209,44.64574622378762,44.64570022240165,44.64565380485779,44.6456487150105,44.64563225446723,44.64563237016752,44.64566477850044,44.64568646528251,44.64572435641902,44.64578418575686,44.6458170424738,44.64583044981372,44.64582788288874,44.64581415975083,44.64576795101235,44.6457202326561,44.64561015351706,44.64556616455449,44.6453702966264,44.64478901848695,44.64432302160277,44.64377926763518,44.63252904623511,44.61796278771708,44.60351464666762,44.58906692930475,44.57441901251185,44.55988189454592,44.54532390478824,44.53077088852672,44.51631444084509,44.5017348897408,44.48723728650045,44.47268667467829,44.45814146779671,44.44361831777717,44.42904566251572,44.41451143739052,44.38534389467968,44.37080602941852,44.35611858385268,44.34160675739534,44.32708944600079,44.32720594680451,44.32724226603047,44.32740202852244,44.32751819688376,44.3274894616293,44.32748420068813,44.32750949879264,44.32759888705398,44.32755375314434,44.32756284546539,44.32765075386718,44.32773872411845,44.32784882337197,44.32800251712062,44.32844243409357,44.32872794643021,44.32907989839062,44.32929984739817,44.32954162091681,44.32960734659544,44.32976147086524,44.32989317071291,44.3300692369074,44.33020109962338,44.33053095314868,44.33068489395123,44.33081683101116,44.33094882838081,44.33118715576416,44.33143233701409,44.33154233942954,44.33215810788747,44.33229005118651,44.33264193414989,44.33301555375994,44.3332575074947,44.33330151935932,44.33358730219071,44.33385128716399,44.33393910067205,44.33418085225403,44.33431306879486,44.33466452239136,44.33486254119215,44.33488466707431,44.33541247244032,44.33552214829823,44.33567626872692,44.33582992353384,44.33633578828091,44.3369076801344,44.33703963479716,44.33734764015442,44.33765564318924,44.33787525339217,44.3379853720015,44.3382052250502,44.33844718261163,44.33857904928208,44.33917278760474,44.33930449547265,44.3394586972599,44.33954654385152,44.33982692326133,44.3399535436379,44.34004146518046,44.34026429084069,44.34042609416412,44.34062400008286,44.34086588509695,44.34104195101924,44.3411517185064,44.34119584558146,44.3413055691953,44.34136075200047,44.34142668884225,44.3415803670573,44.34178926798213,44.34189922917859,44.34212960631694,44.34223950888185,44.34226173441192,44.34230564466185,44.34238270989366,44.34240459388472,44.34244836160742,44.34248154837397,44.34249800996592,44.34249899423872,44.34250107083587,44.34251136044153,44.34253233760067,44.3425519418159,44.34256727567157,44.34259098920904,44.34262697810784,44.34265156615637,44.3426742195165,44.34269866620197,44.34270824195288,44.34272849715276,44.34280529813576,44.34290432072112,44.34297006034802,44.34323939064807,44.34333830419451,44.34359100385064,44.34372290682046,44.3441239300853,44.34437671412574,44.3446789253974,44.3448438333717,44.34519526143367,44.34541281958292,44.34574486048226,44.34596473421455,44.346316423285,44.34662418817458,44.34686609279236,44.34726168519909,44.34752536297608,44.34783338668596,44.34805295768594,44.34831676917072,44.34849262917178,44.34851480767489,44.34902024445247,44.34917436824606,44.34943780200136,44.34978963098911,44.35036123251104,44.35066913697898,44.35115279897406,44.35146055147548,44.35163639592218,44.35174632618973,44.3518782587618,44.35192228463083,44.35249420588639,44.35262608363109,44.3529558558904,44.35306582010334,44.35319784946861,44.35328612954249,44.353648452433,44.35371447493821,44.35393428676473,44.35424198888678,44.35435185195162,44.35457178761715,44.35474761887473,44.35498952338247,44.35529733635168,44.355758822825,44.35666042906812,44.35707810664847,44.35710022778479,44.35725396127533,44.35760590439587,44.35767182645914,44.35844130831482,44.35863910153867,44.3587709756032,44.35905705002889,44.35910107265101,44.35934265440572,44.35954071168055,44.359694539027,44.3598045383865,44.36000240406597,44.36044204479055,44.36059601343688,44.36072806648236,44.36105783567433,44.36154150449507,44.36182725811697,44.36202532898954,44.36211318840464,44.36233300564836,44.36250877798666,44.36270690118852,44.36294850777865,44.36325658800126,44.36347636792796,44.36358626750473,44.36382841007052,44.36411419555633,44.36429007764664,44.36459787122913,44.36516952106249,44.3652794017784,44.3656533827583,44.36585128393275,44.36609304320982,44.36644486078247,44.36648892490365,44.36655476748648,44.36666459281991,44.36684063789698,44.3669285408608,44.36708252751463,44.36745624140427,44.36758811700184,44.36769819794755,44.36778588169453,44.36796172559671,44.3680277420096,44.36822572429914,44.36834914401567,44.36863250389001,44.36886326534281,44.36917146483169,44.36945687152767,44.3696337050395,44.36980865652292,44.37020403927857,44.37053400803096,44.37088556518766,44.37143509235496,44.37200667353677,44.37224855601137,44.37235833622002,44.37257815584273,44.3727320896277,44.37288623467143,44.37310591367695,44.37332557014226,44.37345760818916,44.3735896107962,44.37367751155089,44.3738093120135,44.37402924930297,44.37427083239572,44.37477651195968,44.37486445693541,44.37500259000628,44.37514381010373,44.3753857167662,44.3755174312337,44.37564938890753,44.37578119094558,44.37586932617211,44.37589126719678,44.37600100493808,44.37602322782854,44.37624306356963,44.37626528638422,44.3764410989907,44.37646304006559,44.37672680277941,44.37683682899197,44.37725440481482,44.3774522983902,44.37760624940134,44.37819974164329,44.37830985695656,44.37848575860765,44.37903523662646,44.37931020655525,44.37961791855177,44.37970596269675,44.37994770417758,44.38014567487346,44.38032156931049,44.3808490664309,44.38120100713091,44.3815965414952,44.38179456630087,44.38195946987747,44.38222335992801,44.38310260146989,44.38345429222399,44.38358640711237,44.38391612499278,44.38404795868784,44.38416903034435,44.38423486495825,44.38426784547953,44.38438885790666,44.38465268350568,44.38469656557319,44.38488353528562,44.38508140227634,44.385114365756,44.38538937949786,44.38542236242056,44.38577400706198,44.38605984210356,44.38645564305558,44.38651041613855,44.38719208852526,44.38776384909718,44.38822542023306,44.38866526769018,44.3886872654731,44.38881916065314,44.38903908863049,44.38926992173592,44.38933604606097,44.38977568109116,44.3900944727647,44.390171354657,44.39061106586841,44.39122681791151,44.39184243507508,44.39202626420838,44.39253494031578,44.39306240667189,44.39339244594953,44.39367805453452,44.39392001021659,44.39406842815806,44.39423874252125,44.39474462042512,44.39503041833616,44.3955142019874,44.39568992987639,44.39632752923911,44.39692123187817,44.3975367949617,44.3981521591645,44.39830607320663,44.39832801414471,44.39863590799254,44.39925146511647,44.39931724624893,44.39938326625372,44.39947111750955,44.39951521932529,44.39960307599814,44.39982284176808,44.40004287509153,44.40013059887877,44.4006801888963,44.40076836524991,44.40085617618841,44.40098809296109,44.40135050283543,44.40160357864867,44.40199915625026,44.40226314871369,44.40248273341823,44.40283455232231,44.40312046988621,44.40323032364332,44.40336210373521,44.40364777090166,44.40371377311286,44.40377978941358,44.40384578737081,44.40399976202877,44.40404353901741,44.4042193966057,44.40430731232775,44.40452720964637,44.40459316667527,44.40498874110282,44.40507663882294,44.40527450389195,44.40536263758353,44.40558237249826,44.40571411432948,44.40584614784905,44.40593404015389,44.40603288603564,44.40625293082363,44.40667159561212,44.406934331245,44.4071652524805,44.40731913402877,44.40760498889254,44.40789082637124,44.40848457188901,44.4092319876551,44.40945188784553,44.4095837193081,44.40971561822896,44.41026533592591,44.41037540247638,44.41052931202103,44.41081492039523,44.41116667147986,44.41125456916042,44.41132058773607,44.41143038267218,44.41151827421101,44.41167219031425,44.41184808465395,44.41219976618584,44.41228772126665,44.41252973942685,44.41270565625911,44.41299134196676,44.41305710685264,44.41318913932452,44.4133871015479,44.41391449036638,44.41406846345344,44.41415631378976,44.41433216865609,44.41439816543567,44.41494760227914,44.41512351464247,44.41532141527374,44.41558530509736,44.41569503382878,44.41626662746694,44.41635452282721,44.41644241939755,44.41653033421715,44.41661822650914,44.41677215670951,44.41690417028635,44.41697018384068,44.41703590449762,44.41710191985307,44.41716793276901,44.41723391630185,44.41738608201388,44.41862965441277,44.4188715695912,44.41900353371125,44.41902547455708,44.41944307370681,44.41988258962095,44.41992670713203,44.42102577500228,44.4211576172064,44.42148751318744,44.42170714141805,44.42181720992284,44.42188320725266,44.42210285106816,44.42219080440591,44.42238876887846,44.42260839591198,44.42271852685319,44.42289415757624,44.42302625940924,44.42317992675934,44.42335588536564,44.42355362657268,44.42372960704144,44.42398376417074,44.42421317244075,44.42430102239683,44.42434503102667,44.42465279106278,44.42482854916161,44.42507016464133,44.42586166917734,44.42605935311596,44.4264551191577,44.42678467884954,44.42691668871344,44.42704826970907,44.42735630070129,44.42751009424977,44.42781805612247,44.4285654082124,44.42880709667423,44.42931261237278,44.42964235788855,44.43104948556619,44.43159911212366,44.4321923807493,44.4323244932725,44.43282989834926,44.43373122707924,44.43412699250553,44.43454499684287,44.43562214626709,44.43582013101656,44.43625423486949,44.43660060217659,44.43684243908128,44.43752383659546,44.4376778420503,44.43906842409161,44.43926086695137,44.43974444776822,44.44011843982256,44.44058014690903,44.44124785460221,44.44169055953713,44.4426139952737,44.44375724993388,44.44495547083137,44.44537299540496,44.44627449849462,44.44653822819279,44.44693386280744,44.44706597634979,44.44726371385944,44.44772536415938,44.44829694198681,44.44834105811192,44.44856080014058,44.44886863259018,44.44913230182844,44.44946219650175,44.44984695775941,44.45008863867813,44.45055042849491,44.45066047884254,44.45101238003917,44.45143005950761,44.45158385486927,44.45200155328729,44.4522655651639,44.45239735432564,44.4528150379535,44.45332053995834,44.45376028118867,44.45424395240615,44.4545297948248,44.45516702891209,44.45546600745215,44.45813092023887,44.45828805919238,44.45839786219245,44.45843646665348,44.45847474139465,44.45858480768276,44.4586727566539,44.45869468001553,44.4587277105556,44.45876606044281,44.45881571846482,44.45898084636119,44.4589953486831,44.4590608361592,44.4593945122389,44.45969223582264,44.45968482926953,44.45964068703283,44.4596516502263,44.45967342121217,44.45973958693549,44.45980542563342,44.45987141627317,44.45995930646235,44.45998154419289,44.46013538506155,44.46033305311273,44.46050900203103,44.46057482380114,44.46064098946253,44.46070129721746,44.46073985862682,44.46115757727141,44.46128942672117,44.46137731657685,44.46153121989353,44.46175106324214,44.46190490101544,44.4622125484394,44.46238827653702,44.46247644732716,44.46274008141339,44.46289400951422,44.46317958982951,44.4635311128815,44.46370718390436,44.46410254147771,44.46421251252227,44.46434431596321,44.46445953097727,44.46459804628041,44.46461722935492,44.46464232200852,44.46466574537416,44.46469218044597,44.46470156137894,44.46513569231582,44.46536670513626,44.46543280640405,44.46552058693371,44.46571831997466,44.46589429911438,44.4659822478697,44.46626792686296,44.46642178042912,44.46657561781597,44.46668550577313,44.46694951295072,44.46708143840899,44.46735756459007,44.46734984458421,44.46752542973761,44.46758690011107,44.46769658729286,44.46776253677444,44.4679383744881,44.46809231719697,44.46829026411855,44.46887271611699,44.46909271778952,44.46924649185974,44.46931245047716,44.46940033837545,44.46953234099834,44.46970825716374,44.46984009066707,44.46992810271697,44.47010382743476,44.47025764389335,44.47045531039984,44.47065327812613,44.47122463381471,44.47151037039365,44.47166426361011,44.47192789088218,44.4729610178224,44.47313685109859,44.47427956418129,44.47463120902525,44.4747851031391,44.47509283038354,44.47529055730323,44.4753565626433,44.47542255628525,44.4757302380801,44.47579622615088,44.47592820837031,44.47608181960489,44.47625793603154,44.47638965355001,44.47649971719279,44.47674127751615,44.47685139912635,44.47691710825124,44.47698311888485,44.47715901665977,44.47722506799774,44.47733498595976,44.47753282718304,44.4777428020785,44.47810444598158,44.47869780287553,44.47876387450722,44.47887376100842,44.47911546243783,44.47929134142795,44.47940123213515,44.47946728943077,44.48030305841834,44.48041294470833,44.4805669009963,44.48065478569074,44.48087451912907,44.48094057333078,44.48116039945718,44.48151205551716,44.48177571451181,44.48210563123455,44.48236935771808,44.48256737121877,44.48320491117548,44.4837324660517,44.48469966800228,44.48478766249455,44.48485372205522,44.48491947463538,44.48500747327292,44.48520530724353,44.485337305751,44.48584281201253,44.48597453277977,44.48608465203955,44.48623829340001,44.48650224652053,44.48656830473454,44.4870299748181,44.48801916149736,44.48812903467378,44.4884807692166,44.48872248552298,44.48903019574275,44.48920612241578,44.48939311540033,44.48948114382345,44.4895690920051,44.48978876412441,44.48994259027676,44.49014024615408,44.4903162057557,44.49046996761119,44.49075587389328,44.49084377511252,44.49128347463707,44.49141514264927,44.49150330819294,44.49165713359158,44.49183291409785,44.49196462924803,44.49211873819072,44.49295389203135,44.49363547693579,44.49398731172651,44.49429496847943,44.49451461518472,44.4945806686707,44.49493234499823,44.4949542852875,44.49539398999887,44.49598781439204,44.49625152396418,44.49638319047263,44.4965370766215,44.49673507798203,44.49708662395493,44.49719639691328,44.49730643486735,44.49752626410973,44.49772391879154,44.4978118025309,44.49783404012656,44.49789969809824,44.49792192203915,44.49805358783208,44.49838330364818,44.49853712738261,44.49870895156889,44.49915283627911,44.49921888935487,44.49930666904363,44.49970230196375,44.49979025054015,44.50000925578753,44.50002870132214,44.50006730231937,44.50019907871209,44.5002870738449,44.50030896202462,44.50066062888324,44.50079250271751,44.50110645478708,44.50138589531733,44.50155087043758,44.50163852844749,44.50166074865145,44.50224847253268,44.50248469136876,44.50277596401394,44.50327607126306,44.50353962798683,44.50378156618716,44.5038804313986,44.50396820675869,44.50442970582237,44.50489132336495,44.50500131838668,44.50508931648186,44.50552875211496,44.50563870050161,44.50596824436044,44.50656175140404,44.50705639990717,44.50732017015544,44.50780361338096,44.50824304214849,44.50841888242935,44.50870477781209,44.50872661243916,44.50905643244106,44.50948497769957,44.51000138882895,44.5101771787755,44.5108806628055,44.51116627862966,44.51134198485877,44.51158398016089,44.51178181131536,44.51197952636369,44.51200146657086,44.51270486356945,44.51277091624462,44.51285881455049,44.513034473097,44.51305662800447,44.51310052574951,44.51312241683048,44.51343019855291,44.51356197716158,44.51380375599399,44.51395788051249,44.51408959910417,44.51428743083741,44.51437542369925,44.51452909490287,44.51479297605793,44.51501268491847,44.515056747358,44.51514467538411,44.51562817973387,44.51565011991372,44.51573823211219,44.51576017238467,44.51613393750773,44.51639759238299,44.51641953261171,44.5165074306596,44.51663949031052,44.51672730309285,44.51674925995932,44.51692498623894,44.51694721061478,44.51723285688563,44.51725479705063,44.51804611704813,44.51806805722346,44.51822189608495,44.51824383623999,44.51835388528571,44.5183758254022,44.51846365725869,44.51863947835457,44.51870541834253,44.51872735849341,44.51890335145089,44.51892530896973,44.51899124880878,44.51903535770738,44.51925511305959,44.51927705328043,44.51932083987053,44.51934305997219,44.51951885267302,44.51958490472173,44.5197606117303,44.519804446694,44.52022203561961,44.52024425267649,44.52044185217392,44.520464074087,44.52063978174025,44.52066172187354,44.52074959005355,44.52077180780657,44.5208596405863,44.52088158073633,44.5209475195013,44.52096945963183,44.52103539594525,44.521057336075,44.52123334246297,44.52125528266591,44.52132121881164,44.5213431590326,44.52151893329025,44.52154087341582,44.5216290326862,44.52176081087708,44.52180485660649,44.5218268141486,44.52201587158807,44.52220041718122,44.52222235730086,44.52233233948407,44.52235429637874,44.52255218048814,44.52257412056702,44.52268382267199,44.52305758791377,44.52323329645931,44.52325551597431,44.52345336253969,44.52378293404143,44.52426668529973,44.52444250846232,44.52448627253425,44.52450821384621,44.52461829714746,44.52464023724379,44.52492587388863,44.52523368489272,44.52527751625646,44.5256950991721,44.52571731617716,44.52582708551809,44.52591504845533,44.52595910901217,44.52628881176975,44.52659638582399,44.52672821970224,44.52675022005241,44.52679433122217,44.52694807484914,44.52703596940488,44.52729980117905,44.52743151751702,44.52780517263267,44.52809094761512,44.52828893282233,44.52855247878711,44.52886023785535,44.52962956408039,44.52981207948069,44.53000337031641,44.53009126655649,44.53028908988346,44.53059656289785,44.53070655374228,44.53097026771022,44.53114631871591,44.53124513758291,44.5314867948994,44.53154170548882,44.5316736402491,44.53177246457349,44.53249794518472,44.53300349900422,44.533289090658,44.53353096911047,44.53397034288512,44.53403652135754,44.53419019324443,44.53421236637665,44.5343879115502,44.53458583931658,44.53467383559465,44.53509142330594,44.53528908056445,44.53548696295741,44.53572879713842,44.5358276183693,44.53591551272989,44.53602546334137,44.53618486245092,44.53628924157672,44.53639901761709,44.53650901160935,44.53685520358697,44.53693747047677,44.53695396411447,44.53745344609369,44.53790469840582,44.5380365198525,44.53856403651345,44.53920150337996,44.53957493575306,44.53972881857366,44.53994869393305,44.54001463854105,44.54005846794324,44.54038831448729,44.54063001799405,44.5406958555062,44.54080590884931,44.54117955165894,44.541640966372,44.54273990787592,44.54313544531179,44.54370689748581,44.54388283156738,44.54392676960353,44.54426229234147,44.54433350704673,44.54455315642341,44.54461908753117,44.54488309648341,44.5451029044521,44.54536659224192,44.54563013363678,44.54576211769164,44.54585005301018,44.54589386962236,44.54598197903211,44.54628964521758,44.54637751889765,44.54681699312466,44.54745438535834,44.54780618070496,44.54795995192381,44.54800406193804,44.54806999592427,44.54833363253471,44.54835557249205,44.54857532892675,44.5485975531419,44.54879525858968,44.54905889161028,44.54943254388864,44.54960830540253,44.54963052960925,44.54974031111282,44.54976225103972,44.5498281803623,44.54991612068289,44.54998205596546,44.55000401334781,44.55022387123829,44.5502899203549,44.55037781113179,44.55055367418194,44.55068550927977,44.5507735038053,44.55101515753479,44.55127888505064,44.55136682460588,44.55182833243765,44.55187233657182,44.55222389989527,44.55235576541263,44.55261967814302,44.55270739402523,44.5527296157215,44.55290542840502,44.55310318484779,44.55351932328844,44.55372966725213,44.55399334218878,44.55401516337145,44.55416914986098,44.55432306590867,44.55434490569478,44.55460872689437,44.55471843751528,44.55478459856258,44.55513608754471,44.55524620370877,44.55526802404331,44.55537801840274,44.55564157104313,44.5562791097373,44.55634504192192,44.55647688917587,44.556784641666,44.55687236073191,44.55707023574116,44.55726802275019,44.55746583849835,44.55764182249511,44.55792743121506,44.55858693567934,44.55898255367621,44.55900437055474,44.55907030096009,44.5591363950093,44.55934030183681,44.55940662936955,44.55970761014004,44.55981767127037,44.55997152477718,44.56027908503801,44.56063118337209,44.56080703481541,44.56102690405819,44.56118048897907,44.56124641626745,44.56126863541358,44.56135645617119,44.56137839603012,44.56148838418111,44.56151032337483,44.56203782408772,44.56208165250371,44.56214761633484,44.5623233499059,44.56234557391856,44.56256503383599,44.56258725788414,44.56274107320843,44.56276301299754,44.56282893735859,44.56288216962928,44.56302668888133,44.56315870471823,44.56337844734413,44.56346642579964,44.5636201220992,44.56370807865862,44.56379589836913,44.56381799599024,44.56401573173324,44.56423540779047,44.56443338099284,44.56489472350282,44.56513673863147,44.56542228982784,44.56562004159627,44.56588381127595,44.56621360683634,44.566538289344,44.56660353052943,44.56662011614305,44.56679581288337,44.56681803627543,44.56703766661305,44.56732354464791,44.56745529513039,44.56769699674334,44.5678947917762,44.56811470646672,44.56842229187412,44.56846627935396,44.56864212362115,44.56866393895184,44.56872988300596,44.56914754623638,44.56932338482277,44.56934520179767,44.5693892603317,44.56941136027326,44.56956525883167,44.56974081696292,44.56996053393416,44.57000459222483,44.57002668782756,44.57007072859138,44.57048807083201,44.57073001127858,44.5711475745292,44.57163088840695,44.57169676506457,44.57215827385942,44.57229024820553,44.57257611372381,44.57270786100184,44.57275175732579,44.57305936661757,44.57327915306121,44.57330109273302,44.57334514790887,44.57352096776602,44.57358689384913,44.57363100079098,44.57374069902529,44.57396044645692,44.57409230018258,44.57446590800524,44.57468589869561,44.57525740020786,44.57556482082096,44.5756749740982,44.5759825727464,44.57615826516308,44.57618043104242,44.57626815488346,44.57648811437704,44.57653188753057,44.57655382718087,44.57659786691503,44.57668579929485,44.57703755303045,44.57716931393633,44.57736702030773,44.57741105811236,44.57752094880352,44.57760886524476,44.57765291757397,44.57771868699048,44.57776272410312,44.57778468137403,44.57800451198662,44.5780264516819,44.57813620612573,44.57815816339487,44.57829013498987,44.57864183640773,44.57903739353301,44.57938898937563,44.57941094661992,44.57976259736959,44.58015821079614,44.58035617396919,44.5807955620829,44.58103737090932,44.58130117144538,44.58152092072869,44.58154278996972,44.58174076991414,44.5819824194977,44.58215830637555,44.58231200592679,44.58266377701775,44.58308134209161,44.58336681876228,44.58338877596974,44.58349880647461,44.58369654256204,44.58389423890141,44.58393827754739,44.58422389170264,44.58448774324096,44.58455373667675,44.58470747304938,44.5849053661814,44.58628976806975,44.58666332790146,44.58692730003251,44.58701511291937,44.5870589346797,44.58716889503859,44.58734491363253,44.58756434256736,44.587806356819,44.58793820197923,44.58796014153758,44.58817980873222,44.58821609992746,44.5882733421971,44.58853132358278,44.58866321790016,44.58868517510039,44.58872921057184,44.58883903150631,44.58916863839862,44.58923480718957,44.589432570547,44.58947655365513,44.5896523777629,44.58967431730323,44.58993802335749,44.59009183396638,44.59031152125044,44.59033346027131,44.59044341766871,44.5907290891967,44.59114650205898,44.59116872158476,44.59127841433782,44.59130035395545,44.59152014230879,44.59176200043836,44.59202565122056,44.59297075770267,44.59384961892565,44.59428915016709,44.59461864018293,44.59505839538566,44.59516809650351,44.59549778471931,44.59562974992782,44.59576143303268,44.59578337250417,44.59582742095626,44.59584936042723,44.59598125595839,44.59613512838509,44.59659641136205,44.59694835431977,44.59724491916134,44.59733280071845,44.59748672543536,44.59788225453587,44.59810217113456,44.5984756300363,44.59880538514329,44.59891525237646,44.59917423951186,44.5994207381498,44.59951972654562,44.59965148274083,44.59980545954859,44.59998119029882,44.60006912285288,44.60022299921572,44.6003327605148,44.60046453423622,44.60057463385419,44.60068450586358,44.60077238234067,44.6009701378079,44.60103610892469,44.60118993280468,44.60132168387288,44.60140955965923,44.6014314990994,44.60147553487992,44.60169542508351,44.60173919728763,44.60176113915405,44.60195902150108,44.60209089638363,44.60239859405598,44.60277229982863,44.60292607944636,44.60314563405694,44.60332147565266,44.60336552878986,44.60338746829012,44.60347532712539,44.60369531021563,44.60373906149854,44.60393701174846,44.60411264528805,44.60433260934516,44.60439832180446,44.60448638525458,44.60457426326631,44.60459620273801,44.60468400502182,44.60475004881175,44.60492577919983,44.60494772111661,44.60507973152479,44.6051015638378,44.60516748274527,44.60543135093388,44.6055412448898,44.60584872145778,44.6060463832487,44.60606847447673,44.60613439184574,44.60650790684819,44.60656830148447,44.60659580888233,44.60658485925873,44.60659562794347,44.60662857930897,44.60662849762733,44.606606610838,44.60656248206892,44.60654069584096,44.60641400775896,44.60638757123013,44.60645037300695,44.60657356620456,44.60668343643167,44.60694707266748,44.60714487291828,44.60729855461757,44.60736475318701,44.60745241040139,44.6075623380717,44.60773817036804,44.60782613123859,44.60784807069458,44.60791410734925,44.60797999988699,44.60802929424805,44.60807327397772,44.60807872581272,44.60807310632478,44.60802358101659,44.60802347526896,44.60806208689026,44.60807859733849,44.60814435856861,44.60818843200532,44.6082311421749,44.608423837643,44.6086861243899,44.60864437706056,44.60862775558707,44.60864427114699,44.6086825569509,44.60875396332156,44.6088475797297,44.60891344244023,44.60897927943032,44.60905620680528,44.60921565384332,44.6092761007249,44.60942991862917,44.60947378783393,44.60956177039424,44.60968268739558,44.60975406677348,44.61008346389193,44.61020424604436,44.61040762589408,44.61066000890642,44.61081398954954,44.61090715379507,44.610978691996,44.61124217537073,44.61135774200994,44.61156638808313,44.61170388340995,44.61191809780166,44.61202779627642,44.61223097185646,44.6124560719917,44.61256581890671,44.6127635809573,44.61295587113433,44.61319736088868,44.61321394885208,44.61335110527584,44.6134280068815,44.61359829390229,44.61380158615683,44.61410348548393,44.61416924420365,44.61424057686288,44.61455918619819,44.61463577484677,44.61469628783722,44.61483901961692,44.61494332701444,44.61505326561878,44.61514113532274,44.61527315909187,44.61531690933399,44.6156246324766,44.61597602860184,44.61619592265671,44.61632762580857,44.61683314052292,44.61727263398748,44.61749235076907,44.61750897605097,44.61752519258887,44.61774496620642,44.61781108341633,44.61803083363934,44.61816269196713,44.61836043502621,44.6184482266364,44.61862417896693,44.61882181365998,44.61888767618507,44.61897552529017,44.61906341870166,44.61910751401714,44.61921724150508,44.61934932674686,44.6196129880826,44.61983271272997,44.61998652900802,44.62027223898682,44.62046993439806,44.620733661936,44.62084340859487,44.62088743788336,44.62095349457835,44.6211729358435,44.62137069063489,44.62155209352641,44.62172231719444,44.6218045730551,44.62206272667099,44.6223371365986,44.62242510200311,44.62263378914997,44.62284247345737,44.62293580139544,44.62307285095799,44.62337485007679,44.62358368133444,44.62372076237769,44.62374280000304,44.6238141693532,44.62392959227044,44.62408859420504,44.62436865287453,44.62448954257361,44.62458260396818,44.62463202374156,44.62465397375412,44.62471421377884,44.62500493805435,44.62507476924022,44.62515708059555,44.62532169867017,44.62543174761823,44.62550861380956,44.62560202894717,44.62565704614313,44.62576695295011,44.62590444400104,44.625986895674,44.62611879404152,44.62613516789213,44.62620129758981,44.62627816665992,44.62634419699376,44.62634434514153,44.62656966268587,44.62658602370912,44.62670139143543,44.62691053792593,44.62698738353676,44.62715223956783,44.62748190965936,44.62756453977509,44.62774021611264,44.62791593947908,44.62820149631187,44.62831144254594,44.62859692628457,44.62875066380244,44.6289043384397,44.62901434234931,44.62951955349408,44.62953597764253,44.62954703009493,44.62954141850984,44.62956351743495,44.62971746872931,44.63000299895564,44.63015687119795,44.63031069852612,44.6305523341115,44.63061823720428,44.63064003850555,44.63077206388898,44.63096973452292,44.63114542013178,44.63127718548934,44.63151892725854,44.63171662535503,44.63204621183833,44.63209002853637,44.63246351084762,44.63285906889451,44.63288087281863,44.63316659753579,44.63347402530689,44.63408940596915,44.63428686687158,44.63474836442369,44.63512184863772,44.63534148673185,44.63542944653741,44.63595672200621,44.63626406241322,44.63652782993622,44.63679153071381,44.6369452115989,44.63709905107835,44.63740661764067,44.63756025401092,44.63771427477361,44.63775801510125,44.63786801294376,44.63791178974586,44.63797783346811,44.63813165182751,44.63815373118462,44.63819749240359,44.63830751019133,44.63835125145564,44.638637012124,44.63898842323319,44.63905418200385,44.63909820424391,44.639230041135,44.639361756465,44.63962553438511,44.63966955341293,44.63980143062521,44.63984516845426,44.63991122572389,44.64002138331269,44.64008714430756,44.64048267323241,44.64103183445465,44.64109773199925,44.64122946345907,44.64136135263298,44.64142711166954,44.64153710506663,44.64160300009758,44.64192118518429,44.64227268199591,44.64272850053785,44.64296454491448,44.6432282055753,44.64325008697433,44.64336000059669,44.64338187713222,44.6435575857364,44.6435794460568,44.64362334178618,44.6436892979944,44.64388686510331,44.64410681217352,44.64415054956623,44.64423846191738,44.64430436048401,44.64432629934858,44.6443921991264,44.64441415598223,44.64450191240909,44.64452414854934,44.6446117239454,44.64476575345511,44.64478769225718,44.64485359009385,44.64487552895341,44.64498524197499,44.6452049068922,44.6453368847062,44.64577607821099,44.64599585045066,44.64647910563998,44.6470063184054,44.64709415397073,44.64723564920384,44.64723406287531,44.64736879535936,44.64772019814475,44.64785222829544,44.64800577766607,44.64822566198902,44.64842328801312,44.64892837014104,44.64903842462529,44.64921422706747,44.64923602312493,44.64943393072334,44.64945572794,44.64960961447638,44.64989501570938,44.65009287682132,44.65011467387713,44.65031254126307,44.65033447999621,44.65037821583278,44.65044426883923,44.65059809314573,44.65062003189605,44.65066377010091,44.65075168559399,44.65097128820226,44.65136687312864,44.65145470670889,44.65217962126397,44.65222343310144,44.65239924414644,44.65248711346058,44.65261883723316,44.65281651971345,44.65294836696085,44.65314605058178,44.65326138461346,44.65326635315161,44.65339326018606,44.65349756628367,44.65371728372057,44.65380507457554,44.65406882734195,44.65435434681447,44.65457392174491,44.65468369379664,44.65485951881258,44.65510102863075,44.65512312127538,44.6552549102433,44.65551857805924,44.65562848979201,44.65602368279998,44.65617762605342,44.65619942477972,44.65646303233592,44.65657280563171,44.65661683910741,44.65677069947262,44.65690240268226,44.65704505573412,44.6570616136244,44.6571658974305,44.65731975463193,44.65745153759369,44.65769323427539,44.65791281598345,44.65806668166478,44.658231410868,44.65851676776901,44.65862120135886,44.65885724230443,44.65896687176083,44.65918680782262,44.65949407127619,44.65962593101492,44.65971369535625,44.66037282875445,44.66065837981292,44.66094365612458,44.6612732651085,44.66144903059827,44.66158073659634,44.66191366436497,44.66198703609926,44.66209690282913,44.66216279337515,44.66218473138473,44.66236054748388,44.66255811650771,44.66277796676534,44.66290968435118,44.66299760728035,44.66317328268686,44.66334891419174,44.66352470089845,44.66378831399159,44.6640079899769,44.6641399024153,44.66427174009305,44.66446916621518,44.66473292724449,44.6649084651518,44.66501838107326,44.66508435160188,44.66512826503422,44.66519421811898,44.66523811278598,44.66525996712413,44.66536989796564,44.66539177400099,44.66545759102408,44.66547974880482,44.66554558267204,44.6655674363907,44.66563355380718,44.665677367214,44.66583099416258,44.66587506819698,44.66596292320551,44.66598479679757,44.6660506957389,44.6661384682515,44.66633615665969,44.66675351832731,44.66679741369027,44.6668357475444,44.66705011106595,44.66709378903028,44.66726961336146,44.66729161877203,44.66735737015697,44.6674673787078,44.66748923719713,44.66755507355533,44.66766494000837,44.6680602216455,44.66814815116081,44.66819204651036,44.66821420540309,44.66836779302914,44.6684117479192,44.66847758304616,44.66858733975076,44.66896059972118,44.66913100244294,44.66923531521986,44.66927919241013,44.66929559254675,44.66942198427921,44.66964150242473,44.66966366073121,44.66981728760066,44.66986136162786,44.67008100044981,44.67010287950426,44.6701467579411,44.67049813414185,44.67058596005601,44.67071768359227,44.67076170097886,44.67087150519288,44.67124485152261,44.6716184365981,44.67218933762293,44.67227724634827,44.67258479989675,44.67260673845664,44.67282628975953,44.67291431725953,44.67306814973902,44.67309008837297,44.67319979656143,44.67326556876329,44.67341940297362,44.67355926746467,44.67367745532247,44.67369405827517,44.67380387897506,44.67422111036819,44.67435302493362,44.67481407722178,44.67492401923883,44.67512181289096,44.67529734182051,44.67554380888729]}]],[[{"lng":[-91.64046021466288,-91.65049307183322,-91.64997132487431,-91.64979851565667,-91.64965676824727,-91.64969532979805,-91.64980572111766,-91.64989206205163,-91.65012533012461,-91.65005676500739,-91.65010209021908,-91.65008083413259,-91.65013383366608,-91.65034355881956,-91.65032462481713,-91.6503821965623,-91.65036417751614,-91.65029794300006,-91.65028508047365,-91.65035010918928,-91.64008622189347,-91.62994481199949,-91.62009836865573,-91.60969185607959,-91.59965275487197,-91.58961442429859,-91.57952295607356,-91.56945388417275,-91.5593684621421,-91.55611752085672,-91.54923877134291,-91.53923943900399,-91.52903686956154,-91.52893575226737,-91.51896064835536,-91.50887874560955,-91.50014865513367,-91.49355077924751,-91.48825380218194,-91.48329649945775,-91.47811933012495,-91.47291823161572,-91.46779657470762,-91.46304593008192,-91.45800647718707,-91.45709272089664,-91.44798998034518,-91.4431261961907,-91.43800827034393,-91.43289174602589,-91.42790509459191,-91.41772625228764,-91.40757367204267,-91.39760357793388,-91.37827853802177,-91.37735676937483,-91.36724929169668,-91.35719821335191,-91.3561848232372,-91.34716057750735,-91.32700668096886,-91.31681865453042,-91.31534387915751,-91.30680442539222,-91.29671735439102,-91.28658941937543,-91.26709102228749,-91.25736384693039,-91.25018982797998,-91.24682142735874,-91.23667642941352,-91.23153420920781,-91.22156952997749,-91.21649700087791,-91.21142761523095,-91.206312143555,-91.20123588170128,-91.19406574624126,-91.18605445306008,-91.18087459770896,-91.17579769608747,-91.17055702158184,-91.16558473260876,-91.15522211124967,-91.14506770180044,-91.13494235105021,-91.11604471442645,-91.11485025537496,-91.10457984892707,-91.09443819252779,-91.08429585293767,-91.07583371122342,-91.06413528112586,-91.05476583383243,-91.05402783268788,-91.04381852768933,-91.03595889377156,-91.03386709131445,-91.01395718291212,-90.99827041114489,-90.99326429393849,-90.98308056926325,-90.97805750438165,-90.96785592243045,-90.96283099738159,-90.95777094285687,-90.95268258982294,-90.94755777858134,-90.94259371994943,-90.93743071465772,-90.93183294307923,-90.92235738000974,-90.92194651039065,-90.92194192413497,-90.92185390574279,-90.92177632948489,-90.9216836146182,-90.92162939936726,-90.92165816096932,-90.92179005523975,-90.92177518662398,-90.92175790456905,-90.9217539840775,-90.92167911800689,-90.92155854057337,-90.92150260938037,-90.92137621121695,-90.92133419244931,-90.92131952699037,-90.92113947752763,-90.92126631574567,-90.92143251604251,-90.92159366863365,-90.92172917525021,-90.92191748779803,-90.92196489758057,-90.92203887633731,-90.92212023048546,-90.92213929848918,-90.92209605799522,-90.92214971166658,-90.92226074544025,-90.93243716179539,-90.94265197070976,-90.95314793598354,-90.96292511358602,-90.97417381540349,-90.98329819972393,-90.99343657183391,-90.99417790473498,-91.00018338450647,-91.0132030503098,-91.02398828416028,-91.04412069889359,-91.05438918984233,-91.06455797739407,-91.07469435713007,-91.09495072132083,-91.10518180755068,-91.11445530510953,-91.12567331469252,-91.14586625940251,-91.16576782729726,-91.17596572436312,-91.17771768788712,-91.18605251729815,-91.19619056268427,-91.19744852448228,-91.20631315442137,-91.21659298438283,-91.226637179495,-91.2367367769552,-91.24682547130993,-91.25016469140289,-91.25678956802662,-91.26713210734741,-91.27727487037959,-91.28608151753038,-91.29119698193459,-91.30645973581161,-91.31132869145971,-91.31654366903676,-91.32163972182499,-91.32673916285077,-91.33151551276991,-91.33683849826043,-91.34178021684771,-91.35194425855931,-91.35712928746258,-91.36729935736646,-91.36878779555785,-91.37521373659955,-91.37747617987444,-91.38762857979613,-91.39211472136827,-91.39813558372941,-91.40701749450547,-91.42216691076995,-91.44254938046825,-91.44770205319743,-91.45261408619987,-91.45783025657762,-91.46813259825895,-91.49352993752575,-91.49860187515425,-91.50873306946046,-91.51343161996576,-91.51862440731851,-91.52862327161844,-91.53345533074965,-91.5389465206585,-91.54382397730313,-91.54896419814075,-91.55912578275787,-91.56426395603803,-91.61514319530018,-91.62020914101385,-91.63038932796412,-91.64046021466288],"lat":[44.85619159914388,44.85606396000932,44.82834426391229,44.81393691130943,44.79936506399208,44.78498722209985,44.77777193585568,44.7704194186072,44.74997981043621,44.74133586355163,44.72695837275372,44.7124704024202,44.6980930103361,44.68358025974806,44.66881758374625,44.65438544404942,44.63989726043589,44.62499674893136,44.61111242295237,44.59668004361672,44.59661296996492,44.59657417208463,44.59656517064241,44.59652129753691,44.5965076209154,44.59652202761883,44.59647918123779,44.59646325903185,44.59633640087362,44.59626792687887,44.59629054819308,44.59624513869773,44.59619650769795,44.5961963055812,44.59617595160157,44.59620943408589,44.5960951554986,44.59611800368086,44.59615757298911,44.5961466374931,44.59615998794629,44.59614584586647,44.59615913532738,44.59617757673898,44.59621919817087,44.59620694379639,44.59624809849015,44.59618190183329,44.59613951416996,44.59604174425336,44.59597306404305,44.59591468158357,44.59588320786884,44.5959085167954,44.59579999972155,44.59581420966018,44.59580729554156,44.59585508132823,44.595840670322,44.59595724926891,44.5961024562954,44.59622704672429,44.59623277884274,44.59632567754988,44.59653228570799,44.59671004981386,44.59674473822623,44.5968710116386,44.59700822684069,44.59701156835715,44.59696487235033,44.59696782386167,44.59703233808407,44.59703555172112,44.59703850905282,44.59704059871418,44.59701560301673,44.59701229189795,44.59702233154481,44.59699496976108,44.59699614182546,44.59693968183822,44.59691485130265,44.59683022528856,44.59672034350088,44.59666497152805,44.59651947883386,44.59652720270881,44.59643960900602,44.5965180936253,44.59653998022426,44.59658960782667,44.59661140368305,44.59669914215425,44.59671383453065,44.59664918644632,44.59670638775267,44.59667019617311,44.59649023561369,44.59657297738278,44.59656767870636,44.59649769984664,44.59649104390273,44.59652957998296,44.59657712200516,44.59659604166232,44.59664254932036,44.59657800317316,44.59654369442332,44.59647788564564,44.59643142400605,44.5963690979187,44.61057532439935,44.61899919247822,44.6253362587271,44.63074035657255,44.63979366772914,44.65411590928034,44.66879670083103,44.67478084518684,44.68336899417996,44.68740221356367,44.70438695002519,44.71239797601395,44.71887136914829,44.72688250499917,44.74136800308823,44.74468738282668,44.74992797474036,44.75590660049858,44.76298837758127,44.7704825444668,44.78497370260768,44.79191836810102,44.80512020599955,44.81387450210826,44.81974776548817,44.82842018118201,44.83560964306955,44.84290791105914,44.84913775206599,44.85772829614113,44.85766585151446,44.8576308750965,44.85754509132786,44.85750042307007,44.85739876178373,44.85736832985703,44.85735506751484,44.85734017187218,44.85736337323969,44.85737121748375,44.85750342303486,44.85730137327408,44.85720221366739,44.8572105242202,44.857134960967,44.85714558890984,44.85712352257117,44.85713999064912,44.85702289725008,44.85696829054835,44.85696063115487,44.85690442403597,44.8568776422746,44.85692780036082,44.85692385852288,44.85691629689336,44.85691862403444,44.85694260035523,44.85698928637589,44.85698103215454,44.85694415619141,44.8569954129923,44.85695952911239,44.85695239038142,44.85705091908115,44.85707386501633,44.85706816806812,44.85713084457709,44.8571205952128,44.85714272177882,44.85713560231719,44.85715551007311,44.85714294213845,44.85716598007501,44.85715526781577,44.85719289707187,44.85718511387157,44.85727616464838,44.85729742986698,44.85719713726465,44.85720108950575,44.85718082349684,44.85718922741258,44.85721889468059,44.85717869953962,44.8573066286174,44.8573671067318,44.8574096297255,44.85736664430557,44.85735473149524,44.85727391400426,44.85733748644502,44.85737679565818,44.8573449960418,44.85735148889034,44.85733659445189,44.85735628036453,44.8572814003063,44.85721459140326,44.85716706989287,44.85709552134389,44.85700511572821,44.85693234680983,44.85646345302442,44.8564426359718,44.85629076391621,44.85619159914388]}]],[[{"lng":[-92.7612650207971,-92.76936068087183,-92.76944069719177,-92.76944778176846,-92.76921150638294,-92.76855964047533,-92.76815359629306,-92.76744908669239,-92.76642912684578,-92.76627680665733,-92.76597796035918,-92.76565923988551,-92.76545311507496,-92.7655084959658,-92.76553056121647,-92.76564021436405,-92.76589309615235,-92.76628335344071,-92.7673772409502,-92.76847605971487,-92.76940259626916,-92.77105839082134,-92.7716112872757,-92.77254474637753,-92.77275973049338,-92.77282903117501,-92.77282653073247,-92.77274019178186,-92.7725048587654,-92.77223713023125,-92.77208397672528,-92.77211426683087,-92.77237697963004,-92.77243798253934,-92.77268988127273,-92.77333355661088,-92.77466774108532,-92.77617155860706,-92.77920639636693,-92.77978268155707,-92.78023822477468,-92.78061446370178,-92.7810466582952,-92.78149748712578,-92.7817275666532,-92.78195505209898,-92.78212899901536,-92.78285821605265,-92.78327478921463,-92.7836524696757,-92.7843561390354,-92.78499049230177,-92.7856149311331,-92.78602087165895,-92.78700529498244,-92.78872245313326,-92.79070329336061,-92.79220392654197,-92.79375846678667,-92.79565822791538,-92.79723982977622,-92.79872428677299,-92.800039914466,-92.80126991699169,-92.80263281640524,-92.80344449948913,-92.80408654605546,-92.80502467719846,-92.80601308305931,-92.80720376289875,-92.80768636825314,-92.80795679310333,-92.80816598347599,-92.80826780317207,-92.80833125015552,-92.80827575109529,-92.80823072718019,-92.80782348227004,-92.80719947057756,-92.80648308719209,-92.80586075830722,-92.80526249159364,-92.80486153072088,-92.80447585667166,-92.80410665586837,-92.80382524006097,-92.80355220396603,-92.8030101792769,-92.80250014028884,-92.80192009997938,-92.79981029843729,-92.79749325912906,-92.79385078519904,-92.79280834357007,-92.79188362305381,-92.79039485150309,-92.78885806250175,-92.78667972939434,-92.78415213375376,-92.78180360840497,-92.77881991971,-92.77669655536528,-92.77595647185431,-92.77437600560445,-92.77236962426559,-92.77033512728485,-92.76889607662349,-92.76730625683315,-92.76601520625417,-92.76543890678764,-92.76413674054641,-92.76319676933755,-92.76215492079899,-92.761550095652,-92.76072569274838,-92.75923471983278,-92.75591268425441,-92.75410735430309,-92.75344203421969,-92.75253763154599,-92.75165521310238,-92.75076623270176,-92.74987847882521,-92.74762180438387,-92.74376050906663,-92.74081720675565,-92.73776278273571,-92.73597287998487,-92.73334511701809,-92.73143844768441,-92.72896409007549,-92.7270515046666,-92.72587288837357,-92.72286985751774,-92.72134842876041,-92.71978640361901,-92.71805703681717,-92.71530571570207,-92.71300850125951,-92.71183670511222,-92.70952006514386,-92.70734526569836,-92.70572012176449,-92.70415301436618,-92.70261442595698,-92.70179803622683,-92.70092518330149,-92.70028869788803,-92.69983249401703,-92.69913119677607,-92.69676191133077,-92.69396905013544,-92.69219624154915,-92.69134289800795,-92.69088478293899,-92.68843137658624,-92.6863372826415,-92.68587883494237,-92.68463128201587,-92.68290016281941,-92.68119516730074,-92.67910320067594,-92.67682601186794,-92.67260982918272,-92.67092688768903,-92.66902188126508,-92.66763963964161,-92.66674932037408,-92.66634040016613,-92.66557300201089,-92.664753618511,-92.66367641274553,-92.66240431422746,-92.66160007844957,-92.6604725439432,-92.6597463299767,-92.65877402566518,-92.65737920538227,-92.65606675177843,-92.6552725131816,-92.65364236219369,-92.65213903470409,-92.65082904295822,-92.64897493298834,-92.64747246870199,-92.64682833778913,-92.64563103132028,-92.64500896623478,-92.64431446896576,-92.64295659166048,-92.64204281935812,-92.64162589078934,-92.64084243698576,-92.6399420429162,-92.63926134000067,-92.63889127423104,-92.6387408983523,-92.63814683595467,-92.63700753143026,-92.6355978075582,-92.63409243579369,-92.63327560110787,-92.63255288635919,-92.63200494703416,-92.63134646128178,-92.63046283771537,-92.62960091381026,-92.6279523045495,-92.62662262081776,-92.62473734625048,-92.6242541393954,-92.62318936503081,-92.62280613102247,-92.62234229091123,-92.62193117050379,-92.62155714855582,-92.62097311523168,-92.62069633956929,-92.62034519721725,-92.62027105680929,-92.6202072870111,-92.62011037675335,-92.62021608042372,-92.62013517362435,-92.62028849426962,-92.62068479717021,-92.62113220212242,-92.62163681321979,-92.62214841749535,-92.62269983652793,-92.62285872330104,-92.62320713651523,-92.62327819299156,-92.62325049864634,-92.62313635938381,-92.62282845824168,-92.62248443104421,-92.62229301326869,-92.62207564679527,-92.62151834285011,-92.62075889244728,-92.62023536144549,-92.61948917532733,-92.61854320432062,-92.61764720026353,-92.61680776454274,-92.61614180761106,-92.61557419519971,-92.61476423184382,-92.61347811154265,-92.61219354308476,-92.61067010412302,-92.60910409622647,-92.60770530970746,-92.60627980135412,-92.60538701584272,-92.60444040512905,-92.60375707376981,-92.6029022247845,-92.60214378016485,-92.60138109734723,-92.6005390544983,-92.59941907576047,-92.59829254541525,-92.59753846037665,-92.59671160952769,-92.59593085119549,-92.59513265225132,-92.59424000795681,-92.59250700159743,-92.59100238298829,-92.59048330611013,-92.59036728313133,-92.59008362427993,-92.58959600327968,-92.58932982573261,-92.58922048901304,-92.58909716826946,-92.58887014642627,-92.58845765355767,-92.58778040231948,-92.58713331413276,-92.58636851911628,-92.58548605703648,-92.58473357690397,-92.58412817591953,-92.58347938317054,-92.58285841487339,-92.58202412659669,-92.58162454758558,-92.58108785774577,-92.58043535425735,-92.57990784427065,-92.57949534873539,-92.57910453988687,-92.57834909412753,-92.57742291365848,-92.57709452063428,-92.577025572344,-92.57646583510527,-92.57590761473057,-92.57517678026957,-92.57469019959527,-92.57335161154199,-92.57261848755901,-92.57188306896637,-92.5704549113283,-92.5693975165217,-92.56887396311535,-92.56832335874159,-92.56781962294998,-92.56741723890815,-92.56711050186581,-92.56659992682883,-92.56567250533001,-92.56380749206409,-92.56229958247305,-92.56105117084206,-92.56012701381208,-92.5592909141735,-92.55847770855563,-92.55791936737468,-92.5572958853181,-92.55649453843454,-92.55588213008753,-92.5554247060407,-92.55471821222083,-92.55390927096647,-92.55310227575326,-92.55198797433609,-92.55092171735193,-92.55002157752101,-92.54965003251633,-92.54940414085189,-92.5492585651738,-92.54921920553359,-92.54931344431226,-92.54954407074622,-92.549741106762,-92.55004068088583,-92.55060496566905,-92.55118297562673,-92.55144211795975,-92.55147003162891,-92.55134564382166,-92.55107693441035,-92.5505261388154,-92.54963643988503,-92.54875812876351,-92.5476627639805,-92.54685138061852,-92.54601864164246,-92.54501610036978,-92.54387374504704,-92.54302232804007,-92.54234489472803,-92.54162172489532,-92.54104591679643,-92.54056531492758,-92.53989692136518,-92.5391344327664,-92.5377102999454,-92.5350538908833,-92.53253717067508,-92.53039977669279,-92.5281160819538,-92.5271884779511,-92.52534675155398,-92.52340597837853,-92.52177677079248,-92.52057165236931,-92.51965112975431,-92.51862973739722,-92.51826192594334,-92.51771937875722,-92.51692640682444,-92.51536523108786,-92.51469376785742,-92.51349299191301,-92.51249280314507,-92.51110869364854,-92.50896243435209,-92.50812753544869,-92.50665310031653,-92.50420095444693,-92.50128101378583,-92.49892684219878,-92.49597824327076,-92.49516930332041,-92.49392139194279,-92.49284811102497,-92.49178150832405,-92.49086480845043,-92.48966271821926,-92.48855883337028,-92.48760039297743,-92.48678924469914,-92.48633770074692,-92.48579311135001,-92.4848616068769,-92.48380306545928,-92.48320199179911,-92.48240338047769,-92.48157745984399,-92.48155377426907,-92.48154114729287,-92.4815285143702,-92.48151588399644,-92.48150365035777,-92.48149100725027,-92.48147837950363,-92.48146614164406,-92.48145349928393,-92.4814408714866,-92.48142822753151,-92.48141599217023,-92.48140335151076,-92.48139072029079,-92.48137847145047,-92.48136583241377,-92.48135318859033,-92.48134095068251,-92.48132831164706,-92.4813160628088,-92.48130341950068,-92.48129077905162,-92.48127852993045,-92.48126587566692,-92.48125362603295,-92.48124098700058,-92.48122873803617,-92.48121608297679,-92.48120344327704,-92.48119119341277,-92.48117853907527,-92.48116628165384,-92.48115363837695,-92.48114137750673,-92.4811287369602,-92.48111647773841,-92.48110382170502,-92.48109156003903,-92.48107930341915,-92.48106664823696,-92.48105438737048,-92.48104173651457,-92.48102947467048,-92.48101682034002,-92.48100455955321,-92.48099229781407,-92.48097963407403,-92.48096737241353,-92.48095509954005,-92.48094244861117,-92.4809301876211,-92.48091791472365,-92.48090524777012,-92.48089299030909,-92.48088071736193,-92.48086805041032,-92.48085578950123,-92.48084351653019,-92.48083124716457,-92.48081858088433,-92.48080630812188,-92.48079403427812,-92.48078176162031,-92.48076909711932,-92.48075681219413,-92.48074454113414,-92.48073226814329,-92.48071998244826,-92.48070771404224,-92.48069544118256,-92.48068276037698,-92.48067048932107,-92.4806582036298,-92.4806459213891,-92.48063365015452,-92.48062136446551,-92.48060907980762,-92.48059679489222,-92.48058451005512,-92.48057222882355,-92.48055995599745,-92.48054765907574,-92.48053537442253,-92.48052308946019,-92.48051080462774,-92.4804985190757,-92.4804862384925,-92.4804739418858,-92.48046205124216,-92.48044975443059,-92.48043746960293,-92.48042517299972,-92.4804128881737,-92.48040059136562,-92.4803887015763,-92.480376404127,-92.48036410721825,-92.48035181486797,-92.48033951721479,-92.48032761467496,-92.48031531789894,-92.48030302045504,-92.48029111858665,-92.48027882196826,-92.4802665251958,-92.48025462186342,-92.4802423250411,-92.48023001804006,-92.48021811483952,-92.48020581794249,-92.48019390258111,-92.48018160769487,-92.48016969236126,-92.48015738369286,-92.48014548013626,-92.48013317316892,-92.48012125781341,-92.48010896128538,-92.48009704582851,-92.48008473886517,-92.48007282364273,-92.48006051498233,-92.4800485996586,-92.48003668600911,-92.4800243774034,-92.48001244999843,-92.48000053635201,-92.47998822769775,-92.4799763132296,-92.47996438691085,-92.47995207813058,-92.4799401516849,-92.4799282338227,-92.4799163075083,-92.47990439304631,-92.47989207249742,-92.4798801460572,-92.47986822036434,-92.47985630505698,-92.4798443777705,-92.47983245236493,-92.47982052340741,-92.47980859602099,-92.47979666969177,-92.47978474333782,-92.47977281693336,-92.47976087927076,-92.47974894880161,-92.47973702322427,-92.47972509584568,-92.47971315679855,-92.4797012312246,-92.47968929284868,-92.47967736735445,-92.47966581963837,-92.479653892499,-92.47964195322668,-92.47963001588703,-92.47961808936826,-92.47960654176138,-92.47959460432207,-92.47958266505584,-92.47957111758167,-92.47955917834369,-92.47954724088345,-92.47953569603897,-92.47952375842627,-92.47951181770063,-92.479500260649,-92.47948832229376,-92.47947677490674,-92.4794648244208,-92.47945328035694,-92.47944133018339,-92.4794297826206,-92.47941783311849,-92.47940628828746,-92.47939472882786,-92.47938277840272,-92.47937123344633,-92.47935928073335,-92.4793477246771,-92.47933616517238,-92.47932460814013,-92.47931265888225,-92.47930109930404,-92.47928954418131,-92.4792779872834,-92.47926642778653,-92.47925447827718,-92.47924290853071,-92.47923135006806,-92.47921979389723,-92.47920822250747,-92.47919666659742,-92.4791850951588,-92.4791735381954,-92.47916196675958,-92.47915041157536,-92.4791388436437,-92.47912727226371,-92.47911570500375,-92.47910453891151,-92.4790929675099,-92.47908139865831,-92.47906983168788,-92.47905826031634,-92.47904708215133,-92.47903551503028,-92.47694406580263,-92.47500548629944,-92.47261660911829,-92.47052898027363,-92.46906338504023,-92.46815890916909,-92.46679444974306,-92.46610745353392,-92.46331520814459,-92.46194566047105,-92.4612118031811,-92.45929821414997,-92.45859559323829,-92.45477513541201,-92.45208486359921,-92.44839914181603,-92.44604924951706,-92.44285147257182,-92.44073466518937,-92.43862660054586,-92.43648624178772,-92.43505750012972,-92.4339795782932,-92.43215552776749,-92.42937561150383,-92.42639583043005,-92.42254487104015,-92.41957884237075,-92.41566853317065,-92.41513032741497,-92.41413077888734,-92.41316238538759,-92.41240896251148,-92.41160540152072,-92.41060586037817,-92.40894538354861,-92.40728133762826,-92.40437809617158,-92.40167160964199,-92.40057430542889,-92.39753178271039,-92.39524587108245,-92.39300975456011,-92.39097206094749,-92.38946711934851,-92.38745944768488,-92.38562018056955,-92.38325417482351,-92.38019270046644,-92.37884057162464,-92.37610346882337,-92.37382814690285,-92.37170391180464,-92.36950126285635,-92.36858159414776,-92.36690889384784,-92.36423815600529,-92.3629767750476,-92.36107886770984,-92.35881423333838,-92.35757404785444,-92.3560610117099,-92.35381865806296,-92.35215987401268,-92.35021018612653,-92.34791708656634,-92.3468415232087,-92.34520400097297,-92.34375822497037,-92.34209189418151,-92.3406228791068,-92.33983928619219,-92.33881044785822,-92.33713651200893,-92.33551447896016,-92.33459914381005,-92.33216025639867,-92.32995985792397,-92.32803365528416,-92.32549885509435,-92.32390958425889,-92.32214709959867,-92.3207726423789,-92.31956696713901,-92.31823574923614,-92.31671255255223,-92.31623449289351,-92.31284918093831,-92.3076518218642,-92.29647523051548,-92.27681389134524,-92.25653289170563,-92.25021709853901,-92.24637186182264,-92.23642562806823,-92.22635003025476,-92.21632058856896,-92.2060492665607,-92.19578955412585,-92.18588536766568,-92.17577723302139,-92.1657374764965,-92.15558185084251,-92.13539538423124,-92.13541536447369,-92.13508159068371,-92.13500512058825,-92.13482437543705,-92.13499295088023,-92.13490998301727,-92.1349893163044,-92.13523551426505,-92.13506198038175,-92.13527332078654,-92.13508626310661,-92.13498467970413,-92.13503672216854,-92.13544474415058,-92.13564934303825,-92.13630491728642,-92.13630346611816,-92.13620439656383,-92.13615993159868,-92.13620887492348,-92.13623108262634,-92.13633779498807,-92.14651453273959,-92.15664795734399,-92.17686203633703,-92.21772438397407,-92.22268933180476,-92.22805173564731,-92.23793211969453,-92.24299686629487,-92.24833131341163,-92.25017490592143,-92.25312970139527,-92.2582783902761,-92.26843987773691,-92.27844012283401,-92.29850844122227,-92.30854204957473,-92.31862156675695,-92.32888776857752,-92.33894904724352,-92.35924857949455,-92.37493942571724,-92.38504094066707,-92.39514316895661,-92.42573311639062,-92.43589893896556,-92.45616760252261,-92.46632233768683,-92.47634527100165,-92.4969524259713,-92.5002353461891,-92.50708366744983,-92.51730746541422,-92.53750917846727,-92.55796867759068,-92.56810760160029,-92.57835848875871,-92.58355101260231,-92.58843135612669,-92.59871275103667,-92.6192497236862,-92.62516770684844,-92.62933462279001,-92.63462791863577,-92.63967427206669,-92.64470130382205,-92.64982492078039,-92.65990187799132,-92.68014640620081,-92.69047495280428,-92.70064490236111,-92.71082856110105,-92.72096612784803,-92.73112443267652,-92.74084741279893,-92.7507744617218,-92.7612650207971],"lat":[44.86201211970232,44.86194857671096,44.86103848046049,44.85915799500608,44.85677198502552,44.85232501531467,44.85046299557121,44.84796708812004,44.8449848328956,44.84434741110388,44.84319338329905,44.8416240486474,44.8393585414432,44.83745944346083,44.83690443524323,44.8361391277468,44.83531830924382,44.83482358194676,44.83375731482889,44.83279472160585,44.83180169858479,44.82975966075876,44.82910511263092,44.82774787312909,44.82715328906335,44.82656252955062,44.82600783399184,44.82573255396526,44.82488925732522,44.82387317951622,44.82321833793014,44.82283613720846,44.82222323373659,44.82197053721038,44.82163499410213,44.82083954586727,44.81921260753417,44.81756408913758,44.81434481749005,44.81367193441677,44.81301971388252,44.81223073772232,44.81109353440458,44.80983462154624,44.80854648826637,44.80669522430564,44.80474989201259,44.79916005797578,44.79719165011848,44.79593451291385,44.79437488022737,44.79288614194856,44.79170089832774,44.79103242669134,44.78974330062737,44.78800275553981,44.78618652994321,44.78500597919405,44.78393690538896,44.78245171978003,44.78093998007409,44.77943031804347,44.77795938252089,44.77622215584957,44.77421299441608,44.77289308347876,44.77157761706742,44.76884208806867,44.76564620321696,44.76110203558198,44.75901037356698,44.75706261846084,44.75535886331756,44.75293870183236,44.75224396994059,44.7516039310304,44.7511718040335,44.75080064037906,44.75046940654666,44.75024424572568,44.74994756855784,44.74965029099819,44.74940020879296,44.74897645920074,44.74837900772199,44.74758866046398,44.74697140175297,44.74632615101252,44.74583595692621,44.74540825033848,44.74402164690684,44.74237114166512,44.73996478861781,44.73952218935194,44.73900749505333,44.73838534181272,44.73778178264548,44.73697696637561,44.73599890309832,44.73518943206062,44.73432645422719,44.73365008412608,44.73343403046216,44.73291798170314,44.7321520428651,44.7313003814103,44.73069389502623,44.72998724033471,44.72942917651146,44.72907067634146,44.72827035620523,44.72742637450619,44.7264810415271,44.72602784249228,44.72556251342626,44.72488795670505,44.72352955900043,44.72288868684396,44.72269684545513,44.72259713624348,44.72244512366949,44.72215456788082,44.72188142242391,44.72094777764734,44.71948947737939,44.71841635824462,44.71705127825321,44.71621029285986,44.71460081448966,44.71334647785983,44.71137791356709,44.7099849574445,44.70921585068293,44.70737259216323,44.70654213157646,44.70536630874085,44.7042462162095,44.70257849358893,44.70126393416989,44.70062449327759,44.69941441647349,44.6981142753423,44.69713021496091,44.69583277113208,44.69462127323924,44.69378257511705,44.69278091226662,44.69215456102033,44.69174956116331,44.69129803020549,44.68998484713249,44.68843911431103,44.6874062984915,44.68681989572185,44.68637129685232,44.68428010140803,44.68259618485668,44.68213885508727,44.68090310314475,44.67918470332923,44.67750898894948,44.67533960834304,44.67336527113901,44.66988509861839,44.66867654696445,44.66738652148276,44.66637906903096,44.66549851990212,44.6650573902567,44.66420884475696,44.66329201645429,44.66257194000806,44.66183895420195,44.66124246353164,44.66048892560673,44.66000312489953,44.65945385381925,44.65868906880908,44.65813024588417,44.65775881276556,44.65715559352255,44.65667065454232,44.65616376071146,44.65544414090106,44.65497628027371,44.65469667274732,44.65399637002659,44.65366420169919,44.65334242532755,44.65285399231874,44.65251111801299,44.65241667828342,44.65227895809414,44.65223030100199,44.65221144153463,44.65208130275206,44.65198097400896,44.65173476555633,44.65124092381321,44.65066695835411,44.65012978040024,44.64979331600799,44.64937674940725,44.64907740410035,44.64846860981007,44.64772630837199,44.64691430087947,44.64535772730084,44.64386327922379,44.64190475207097,44.64141314023729,44.64041528871625,44.63999057080049,44.63939469921276,44.6388842553806,44.63813017976351,44.63701717134472,44.63626085517195,44.63547164450781,44.63491013699776,44.63402767959367,44.63241791719199,44.63099423791567,44.62973098056706,44.62828877017328,44.62738730992775,44.62654487596522,44.62535481689788,44.62432045334541,44.62309471078143,44.62231094331831,44.6208816868151,44.62030811835278,44.61969349692786,44.6187775963933,44.61732881430704,44.61669530031416,44.61621441248821,44.61569951982005,44.61517499244615,44.61448180564666,44.61416467345969,44.6137657261532,44.61323294060193,44.61273360484811,44.61240597803553,44.6121700260527,44.61195769080408,44.61175091008625,44.61174576407264,44.61177517172801,44.61189667753368,44.61214067092142,44.61232848937083,44.61246514059114,44.61258089418514,44.61256761829638,44.61247939590742,44.61236020513923,44.6122213647481,44.61197880297092,44.61159935658819,44.61096628531574,44.61019466129987,44.60960529315032,44.60901757003889,44.60837674712957,44.60789217193591,44.60745305879247,44.60667800158082,44.60612279142166,44.60590922909863,44.60547862515089,44.60510386534681,44.60450810934476,44.6039770997771,44.6031474174352,44.60256112209237,44.60182103642845,44.60127561839455,44.60077108965144,44.60040456172082,44.60011834623995,44.59991327696055,44.59989543396321,44.59992658599938,44.60006252771422,44.60028447922011,44.60061534977191,44.60090177428722,44.60138203826794,44.6019858884626,44.60267383657603,44.60322049067474,44.60371461140481,44.60418236245463,44.60463652371421,44.60488644251398,44.60497464482947,44.60493551947035,44.60493067883237,44.60486052088674,44.6048281749798,44.60473710862318,44.60461494653605,44.6044407817473,44.60397050704299,44.6036474376435,44.6033300753835,44.60294382863709,44.60252191917974,44.60220154077557,44.60184439985935,44.60126678746617,44.60003967833759,44.59790637994769,44.59670971865103,44.59535108669241,44.59419334464475,44.59282543952175,44.59143112939311,44.59031721540895,44.58937805194133,44.58825185492143,44.58755522149129,44.58707989150131,44.586454565829,44.58570999156296,44.58500025869337,44.58392462924404,44.58283047260024,44.5816633880453,44.58092645292143,44.58029924549722,44.57918450134869,44.57828429106424,44.57766692837647,44.57684705433373,44.5763573619303,44.5754493023958,44.57448355472444,44.57329216102769,44.5725582954875,44.57208982567602,44.57146861964605,44.5708680846385,44.56990953898045,44.56897627924354,44.56829398254254,44.56764240768206,44.5673834098834,44.56719380546766,44.56699082518597,44.56692964220862,44.56686196357611,44.56689449847023,44.56699725265574,44.56713132317944,44.56722867016355,44.56746889197706,44.56778068882441,44.56847938310584,44.56983842762027,44.57107277752243,44.57210819906613,44.573120662607,44.57353984277471,44.57411794245029,44.57466360003418,44.57511540663016,44.57528071877719,44.57530104319532,44.57523693705096,44.57514124517181,44.57493659252749,44.57453799606824,44.57375768913874,44.57337412852313,44.57251664774779,44.57181059102141,44.57119990897299,44.57034573404368,44.57010413784846,44.56964251687952,44.56900314973089,44.56820040474669,44.56757622292353,44.56666144132922,44.56645378147078,44.56618650731676,44.56603637127909,44.56604250232844,44.56614915685424,44.56638328423269,44.56665014692276,44.56691353864978,44.56722576278802,44.5674437826413,44.56775019598631,44.56807375077763,44.56827008663477,44.56838725570035,44.5684217861278,44.56838798003025,44.56838624652346,44.56838539529748,44.56838454419938,44.56838369304447,44.56838283326294,44.56838170276886,44.56838085337622,44.56837999429028,44.56837886134436,44.56837801073298,44.56837688025033,44.56837601988899,44.56837488690054,44.56837403575015,44.56837289849596,44.5683717636445,44.56837063618994,44.56836977587589,44.56836864102025,44.56836750375932,44.56836636838591,44.56836524024325,44.56836409629801,44.56836268336892,44.56836154733427,44.56836041246885,44.56835927216199,44.5683578604604,44.5683567298603,44.56835558835325,44.5683541735925,44.56835275445736,44.56835161967451,44.56835019939595,44.56834906880599,44.56834764727319,44.56834623254101,44.5683448134901,44.56834339311246,44.56834197835762,44.5683405580696,44.56833914504155,44.56833772173282,44.56833630695396,44.56833488848244,44.56833346759885,44.56833177158354,44.56833035251912,44.56832864982887,44.5683272349678,44.56832581162983,44.56832410832824,44.56832241662949,44.56832099625009,44.56831929172984,44.56831760002692,44.56831617850277,44.56831447337121,44.56831277302278,44.56831107704475,44.56830937676748,44.56830767104169,44.56830597319092,44.56830427899231,44.56830229267436,44.56830059235342,44.56829888660245,44.56829690212081,44.56829520416965,44.56829350145112,44.56829152372902,44.56828982340001,44.56828783891164,44.56828585556269,44.56828415097862,44.56828216648623,44.56828018622509,44.56827819988968,44.56827621537479,44.5682742356431,44.5682725335171,44.56827026478474,44.56826828451555,44.5682662969575,44.56826431243459,44.56826233096525,44.56826034634733,44.56825808489443,44.56825609179995,44.56825382548608,44.56825184095514,44.56824957949693,44.5682475949633,44.56824532864403,44.56824333552333,44.56824107407823,44.5682388053258,44.56823654376723,44.56823427745974,44.56823200438859,44.56822973866728,44.56822747721414,44.56822519986963,44.56822293778806,44.5682206720614,44.56821840021557,44.56821613327168,44.56821358693434,44.56821131812109,44.56820904935132,44.56820649450011,44.56820423297827,44.5682016787318,44.56819913303071,44.56819685570763,44.56819430996697,44.56819175510801,44.56818949482972,44.56818693753904,44.56818439179305,44.56818183996543,44.56817929425367,44.56817673999431,44.56817418508945,44.56817164058833,44.56816880211154,44.56816624720285,44.56816370148314,44.56816114719761,44.56815831416289,44.56815576540275,44.56815292932898,44.56815037511215,44.56814754207228,44.5681449877791,44.56814216208632,44.56813932600611,44.56813648747705,44.56813393319717,44.56813109713163,44.56812826527896,44.56812542985505,44.56812259135653,44.5681197576966,44.56811692342811,44.56811408794374,44.56811096761876,44.56810813647521,44.56810530036124,44.56810246185379,44.56809934884814,44.56809651273038,44.56809339545262,44.56809056115422,44.56808743234789,44.56808459929844,44.56808148081951,44.56807836776803,44.56807552923068,44.56807240284736,44.56806928736292,44.56806616887763,44.56806304552711,44.56805992764659,44.56805681154978,44.56805368996212,44.56805057021901,44.5680474572287,44.56804404838721,44.56804093108794,44.56803780954952,44.56803440681945,44.56803128338293,44.56802788793784,44.56802476214351,44.56802136242643,44.56801824082533,44.56801483506468,44.56801143354041,44.5680083088992,44.56800491350069,44.56800150766137,44.56799810068007,44.56799469182029,44.56799129755756,44.56798788875072,44.56798448470878,44.56798107888063,44.56797767189206,44.56797427155013,44.56797058334493,44.56796718058531,44.5679637716962,44.56796008473889,44.56795668192034,44.56795299374602,44.56794958608511,44.5679458979084,44.56794249203006,44.5679388062063,44.56793511924054,44.56793142914484,44.56792801481097,44.56792432723436,44.56792063960116,44.56791695618089,44.56791326920794,44.5679095706545,44.5679058835869,44.56718861190681,44.56664127930698,44.56576580193978,44.5651349743852,44.56487213447682,44.56470096001076,44.56453999371857,44.56434666090691,44.56367043709999,44.56338798911899,44.56323051866369,44.56269982565379,44.56251747144965,44.5605280000125,44.55924642442213,44.55739113575179,44.55595329325167,44.55413687172003,44.55328922120575,44.55263995978459,44.55288400495115,44.55355929829058,44.5543263966068,44.55550634830818,44.5570534904769,44.55880342789175,44.559629337723,44.56003940482554,44.5605385923055,44.56043632350502,44.56030132960277,44.56033925133216,44.56029440710603,44.5602075791548,44.56007255417934,44.55977845416709,44.55939747995019,44.55895593442288,44.5585709469792,44.55842073110872,44.55812063599922,44.55794328143868,44.55779972626865,44.55776421613951,44.55770907859912,44.55782057542648,44.55789363624247,44.55813379959523,44.55855299243781,44.55868499084924,44.55874199894026,44.55882394072014,44.55904139386128,44.55913046571711,44.55916699006356,44.55916708700514,44.55906629342896,44.55904037031777,44.55887173806961,44.55861528570959,44.55851965365723,44.55827350603075,44.55797317134872,44.55771253232328,44.5574581378791,44.55709796256504,44.55687757893342,44.5565471915147,44.55616080388837,44.55570971457764,44.5553412033459,44.5551493638313,44.55487590001118,44.55424287355573,44.55368668661551,44.55322012162854,44.55224734216383,44.55116583892713,44.5502691589175,44.54870009137901,44.54774471162971,44.54670590475127,44.54565918107547,44.54459185189449,44.54342296547588,44.5416772937218,44.54106391741824,44.54096142396359,44.54084771316204,44.54053234208447,44.54002528881404,44.5397302107224,44.53977130323096,44.53982845302137,44.53992694101833,44.53983183526145,44.53970821926232,44.53971977351539,44.53975774944761,44.53960513671882,44.53947776954776,44.53943233523499,44.53941239173943,44.53953570005439,44.55402437185899,44.56826305189582,44.58277822134217,44.59729249571902,44.61183705843313,44.62495264937356,44.64031944823747,44.65508386455838,44.66935111759604,44.68438928946278,44.69876616622313,44.71336309597544,44.72771434241584,44.7499432097903,44.75663991602217,44.77159932174101,44.78592253318963,44.80032715594138,44.81467755322781,44.82922056736826,44.84376320001839,44.85778519079522,44.85780706008617,44.85785499512549,44.8578929143314,44.85785110749852,44.85783026279401,44.85783914598978,44.85779589800437,44.85782960258236,44.85789237164663,44.8579044491288,44.85795139806978,44.85806743648407,44.85835242592497,44.85860821850212,44.85922721453581,44.85961782205587,44.86003531028397,44.86037045984276,44.86073110416186,44.86150542697573,44.86219626666331,44.86222371297102,44.86227781433609,44.8623536216575,44.86240416640486,44.86255762979981,44.86255084345611,44.86256992485895,44.8624429466423,44.8625123229306,44.86248728880373,44.8625036349694,44.86242257709039,44.86239376233414,44.8624052026493,44.8624435952004,44.86248990366916,44.8625076076681,44.86259917720924,44.86255985205726,44.8625794554094,44.86256539989125,44.862582580995,44.86257119221435,44.8625870347886,44.86263022767813,44.86266053972185,44.8624997505799,44.86244577741284,44.86241796925989,44.86236220339327,44.86227736672961,44.86224683813411,44.86218703571818,44.86212682578643,44.86201211970232]}]],[[{"lng":[-89.02236464920045,-89.04221401220597,-89.06299268193833,-89.08323365832182,-89.10198748348071,-89.12232818344943,-89.14265433898477,-89.16292056879026,-89.18338710622407,-89.20378348816099,-89.22384090418444,-89.22368547562928,-89.22358205656712,-89.22351428294981,-89.22340507011283,-89.22345020031089,-89.223564757292,-89.22372586735082,-89.22380197102518,-89.22382261639312,-89.22399999735813,-89.22389655019968,-89.22394038260849,-89.22381198296551,-89.22386402236428,-89.22416193163835,-89.22423613907712,-89.22424903535909,-89.22447704589224,-89.22420926238593,-89.2241420896999,-89.22431515021917,-89.22406852268533,-89.22386898737348,-89.22382421173917,-89.20448354682121,-89.18403782807553,-89.16380988627564,-89.14330861146848,-89.12271627148523,-89.10283312398843,-89.08315594224773,-89.04265716202174,-89.02245978654034,-89.0020540212623,-88.98186465321578,-88.96152757844783,-88.94126593561749,-88.92065154505157,-88.90008521921732,-88.87938740238778,-88.85869045939877,-88.83893808969701,-88.81838334025853,-88.79786045523947,-88.77742266539848,-88.75700650305645,-88.73646062252848,-88.7072016807131,-88.68664775738677,-88.66628617490326,-88.64604810764889,-88.60517129824444,-88.60527523117325,-88.60554006163176,-88.6057584212929,-88.60600928213229,-88.6063193722464,-88.60609131180627,-88.58954419523914,-88.56918831135212,-88.5491929057044,-88.52875356732308,-88.51876857749508,-88.50878963166886,-88.48875097127099,-88.46706471624948,-88.44734946988005,-88.42722740836422,-88.40700496881928,-88.38692078676998,-88.36669113189521,-88.34619810546009,-88.32581432821404,-88.30545505101263,-88.28525340283485,-88.26527439755002,-88.25517389345318,-88.24506999047934,-88.24503226961743,-88.24499532588709,-88.24495758070788,-88.24492061458297,-88.24479835394639,-88.24467686829878,-88.24455457500413,-88.24443303281275,-88.24435231288058,-88.24427156942939,-88.24419161479057,-88.24411083624796,-88.24397122718922,-88.24383159325753,-88.24369272604426,-88.2435530351618,-88.24341872551727,-88.24328517409246,-88.24315161674967,-88.24301722107452,-88.24285684827863,-88.24283963012502,-88.24600910228943,-88.24604592238917,-88.2524433855173,-88.25226039964117,-88.25202968058741,-88.25194704927875,-88.2523655848308,-88.25248586296122,-88.25260864372366,-88.24756638339539,-88.24271551137343,-88.24271559104652,-88.24272663562162,-88.24273695521708,-88.24303421187565,-88.2433322838806,-88.24362959656122,-88.24392693430083,-88.24418203892559,-88.2444379164177,-88.24488555548866,-88.24533321795629,-88.24575736470662,-88.24618235008617,-88.24660580573141,-88.2470324777814,-88.24743391533872,-88.24783620415376,-88.24823774419031,-88.24864011278268,-88.24924466926103,-88.24984985070004,-88.25045648832156,-88.25233057291413,-88.25166781023017,-88.25089696168197,-88.24882130784084,-88.2482551767299,-88.26870509975592,-88.2889073428731,-88.30932602110443,-88.32983867264387,-88.3502366264126,-88.36990571564988,-88.39032613006314,-88.41053408894534,-88.43093620808632,-88.45140035981591,-88.47191072232364,-88.48911278551212,-88.50937062408872,-88.52974210048235,-88.55026894589982,-88.5710690451845,-88.59134768784156,-88.61172020045848,-88.63233768179656,-88.65265541296425,-88.67298906505967,-88.69345384387869,-88.71383255385555,-88.73620837365212,-88.73606127436132,-88.73604022931148,-88.73577774490236,-88.73569259702414,-88.73591686168808,-88.75585156498659,-88.77631718739946,-88.81686436863585,-88.83733002370614,-88.85902482780453,-88.87952518875102,-88.89962320642201,-88.94049764829914,-88.96059224879458,-88.98142669957852,-88.98200938333721,-88.98189845704606,-88.98200549330569,-88.98180202581548,-88.9813993671234,-88.98167872919642,-89.00204031907418,-89.01220369215976,-89.02236464920045],"lat":[45.02940192965132,45.02957541526514,45.0295958257182,45.02945370581854,45.02952952480312,45.02944736329969,45.02943236149058,45.02944508773579,45.02937660617361,45.02927189568006,45.02935167977672,45.01525268712625,45.00076917790752,44.98617532637645,44.97177357474165,44.95732613721998,44.94289488867241,44.92846842024376,44.91405343792037,44.89951791881218,44.88515136939259,44.87065319623115,44.85620268139061,44.84126344013756,44.8269006793361,44.81241070409524,44.79797037679459,44.78361821043092,44.76912258729396,44.75378186029251,44.73926182771908,44.72471578168197,44.71050866130442,44.69585198326796,44.68136230634934,44.6811611337988,44.68087144856959,44.68053271333766,44.68050990530259,44.68046077337946,44.68045034691094,44.68028168737278,44.68002253432422,44.68004386623977,44.68002998871201,44.67982310598547,44.67981495657749,44.67964915607803,44.6796300289791,44.67973902053828,44.67975158704927,44.67963887918679,44.67938067091553,44.6794216129199,44.67917870709034,44.67890995372532,44.67918776485956,44.67909480158058,44.67888217150283,44.67870940989794,44.67840747005786,44.67822855074832,44.6782522881258,44.66296410089188,44.64786210571417,44.63347379361313,44.61933228181975,44.60501056692208,44.59052978124822,44.5905221988718,44.59039768057051,44.59031377416655,44.59003947725403,44.59012047500688,44.58987152755488,44.58949646846967,44.58948257189274,44.58922155234988,44.58890004726302,44.58862958147043,44.58840587297092,44.58773092762275,44.58744835325241,44.58706945477474,44.58658797131825,44.58592461131919,44.58522898423831,44.58490025197448,44.58473515885485,44.58837462821128,44.59201411285765,44.59565357698079,44.599293052169,44.60288761496463,44.60648190360865,44.61007617338478,44.61367073881251,44.61724313946459,44.6208158203117,44.62438795135974,44.62796062808415,44.63152395543213,44.63508728566628,44.63865062427693,44.6422142282364,44.64575540524034,44.64929687622151,44.65283778086374,44.65637951353337,44.65999764618025,44.66076967724281,44.66082913686205,44.66005978191979,44.66014750362154,44.66447098823048,44.67033026863732,44.67262892692458,44.67263461927582,44.67619400691196,44.67980071222249,44.67969847560652,44.67959983857337,44.67962574692005,44.6832279052208,44.6868562442898,44.6904901083249,44.69412398751068,44.69775785093048,44.7013919945188,44.70501479192352,44.70863900937168,44.71226335176706,44.71588853681214,44.7195099801343,44.72313143025815,44.7267528544491,44.73037376394701,44.73399540450414,44.7376164911673,44.74123756771154,44.74485893065366,44.748453285501,44.75204795590296,44.7556423984112,44.76678829799779,44.78105455531217,44.79535315929687,44.83842061850546,44.85273768869999,44.85306171451946,44.85342143993741,44.85374562698051,44.85402843552533,44.85420800012139,44.85451839330485,44.85461262490723,44.85466929840137,44.85497543883238,44.85504133694698,44.85518604798157,44.85547520342808,44.85545962566091,44.85558506295448,44.85585821346206,44.85593274981041,44.8558882123895,44.8561818882069,44.85642759045112,44.85654394337426,44.85672832634125,44.85671675284106,44.85659167079548,44.85636011196985,44.87084853913731,44.89972927495028,44.91415358614795,44.928643678807,44.94310677138282,44.94339436993677,44.94329198036287,44.94318446934817,44.94307142686327,44.9429315357301,44.94306164366091,44.94310880313439,44.94310709616617,44.9430399716681,44.94283946340502,44.95675616284397,44.97131844317016,44.98583198761373,45.00010137743058,45.01441379667267,45.02881692602856,45.02908271685605,45.02907822127847,45.02940192965132]}]],[[{"lng":[-90.88189973424987,-90.90219667817145,-90.92310612329678,-90.92323663881986,-90.92312120221789,-90.923126955519,-90.92259194944732,-90.92241352114767,-90.92260933850508,-90.92261122488372,-90.92263764306585,-90.92250141869887,-90.92248369665715,-90.92235363012821,-90.9224102791764,-90.92239368712899,-90.92229496344102,-90.92226074544025,-90.92214971166658,-90.92209605799522,-90.92213929848918,-90.92212023048546,-90.92203887633731,-90.92196489758057,-90.92191748779803,-90.92172917525021,-90.92159366863365,-90.92143251604251,-90.92126631574567,-90.92113947752763,-90.92131952699037,-90.92133419244931,-90.92137621121695,-90.92150260938037,-90.92155854057337,-90.92167911800689,-90.9217539840775,-90.92175790456905,-90.92177518662398,-90.92179005523975,-90.92165816096932,-90.92162939936726,-90.9216836146182,-90.92177632948489,-90.92185390574279,-90.92194192413497,-90.92194651039065,-90.92235738000974,-90.92232429924952,-90.92230489425538,-90.92238568947366,-90.92251682640757,-90.92259508745849,-90.92268742975152,-90.92269643766825,-90.92265057021768,-90.92270495600367,-90.92280029130185,-90.92283538261546,-90.9228988029905,-90.91786892839036,-90.91284184819106,-90.91185201868468,-90.90286198231935,-90.88268520935088,-90.87750629583914,-90.87266685947321,-90.86248681109024,-90.85243417250925,-90.84209681438151,-90.8345771921236,-90.83199030561835,-90.80153746688808,-90.80150752984018,-90.80173896529602,-90.8017271805095,-90.80176882428586,-90.80192462907361,-90.80202707421182,-90.78118731778234,-90.76099840909444,-90.74088103055642,-90.72084320423969,-90.70068296624419,-90.68047773002216,-90.67456709660355,-90.65979034736355,-90.6394707634047,-90.61926239143332,-90.59921325455696,-90.57897947973746,-90.55878541094961,-90.53775635389049,-90.51768553478777,-90.49725354285799,-90.47691806234334,-90.4363300387361,-90.41629517071705,-90.39608385885572,-90.37589119790344,-90.35621212055355,-90.3361661486399,-90.31605951735993,-90.31567487849748,-90.31585657577598,-90.31614697492491,-90.31579385308098,-90.3156842866528,-90.31565369724672,-90.31544261739202,-90.31552430097413,-90.31534651746242,-90.3157405085812,-90.31598395853197,-90.31578941922035,-90.31586095525211,-90.31610203539138,-90.31623143701526,-90.31633092059324,-90.31652979278724,-90.31643013034584,-90.31628089810378,-90.31628405880861,-90.31673341632261,-90.3167596772154,-90.31664881964458,-90.31692326672653,-90.31686870079655,-90.3169521279607,-90.31692876977986,-90.31671005484216,-90.31640228779955,-90.31595823529595,-90.31588672406603,-90.31565771532603,-90.31522413269671,-90.3150504103299,-90.31631649712405,-90.31667585055888,-90.3165718796176,-90.31633624312825,-90.31598484446874,-90.31579257161656,-90.31520497823389,-90.31499563035528,-90.33535715565833,-90.37612976673886,-90.39639390495996,-90.41661029347469,-90.42539913586234,-90.43386456563393,-90.43862880399971,-90.44409575757011,-90.45432636083207,-90.47721218064899,-90.4849541227926,-90.49532204865551,-90.51580607522156,-90.51777232209021,-90.52257048667059,-90.52839747131253,-90.55702011798581,-90.57753118850583,-90.5979924831293,-90.6183569784794,-90.63870156975123,-90.65912855383004,-90.67859978527773,-90.69937977024628,-90.71958969027941,-90.73987073788345,-90.76020215646375,-90.77057156849855,-90.78087428255266,-90.80007654950786,-90.80766420408047,-90.82061213744666,-90.84102306627805,-90.85109238612725,-90.86112955620271,-90.88189973424987],"lat":[45.03139269424145,45.03131776878113,45.03107223628498,45.016675601995,45.00212394426956,44.98780584381274,44.97341808646446,44.9590094029031,44.94438779295595,44.92989993325544,44.91535782426362,44.90083978232486,44.89362310269845,44.87913252493296,44.87499039174497,44.87213619207008,44.86362827885132,44.85772829614113,44.84913775206599,44.84290791105914,44.83560964306955,44.82842018118201,44.81974776548817,44.81387450210826,44.80512020599955,44.79191836810102,44.78497370260768,44.7704825444668,44.76298837758127,44.75590660049858,44.74992797474036,44.74468738282668,44.74136800308823,44.72688250499917,44.71887136914829,44.71239797601395,44.70438695002519,44.68740221356367,44.68336899417996,44.67478084518684,44.66879670083103,44.65411590928034,44.63979366772914,44.63074035657255,44.6253362587271,44.61899919247822,44.61057532439935,44.5963690979187,44.59126491929116,44.58231905683878,44.57510396689796,44.56786229406483,44.55326562587666,44.54237395619963,44.53532200334762,44.5316442287544,44.52440115541928,44.51718615336206,44.51318052489814,44.50999868715459,44.50996185532917,44.50995235436567,44.50996166521483,44.50990677370666,44.50986362688864,44.50982222991222,44.50992429925519,44.50989866338094,44.50984726034601,44.50981704113284,44.50981175150541,44.50979067602659,44.50961937931145,44.49487476666066,44.48025223817702,44.46586094845338,44.4514093217829,44.4369185953951,44.42246112030769,44.42233660973785,44.4222937093945,44.42222789347374,44.42224801662125,44.42234105593582,44.42224934295366,44.42221010925028,44.42214642726501,44.42199719171492,44.42210932950175,44.42217626153898,44.42207602256305,44.42218048352801,44.42225182256328,44.42245843562467,44.422578145855,44.42253381207379,44.42250092726376,44.422876226,44.42326353549391,44.42335601766673,44.42392920381236,44.42418694831731,44.42451308139614,44.4388962424689,44.45330368709766,44.46788634177229,44.48239506776557,44.49675987378232,44.5127866922517,44.52713974647411,44.54160027343593,44.54881030909075,44.57043301234307,44.58492505150776,44.59399188525551,44.59898003133616,44.61329054186437,44.62761258277786,44.64178021418017,44.65601956081979,44.67014716356781,44.68509775625969,44.69957722690572,44.71404838777089,44.72853868883831,44.74292355790224,44.75738306362592,44.77188542295863,44.78641212290979,44.80090926281148,44.81523839206284,44.82970923532564,44.8440842028127,44.8591405970203,44.87354077503828,44.88796061193018,44.90238081925438,44.93121949067341,44.94580353204731,44.9602506883797,44.9746866363642,44.98913862053182,45.00354478755866,45.01805001938564,45.0337880054732,45.03341246871904,45.03229757696303,45.03185633380659,45.03143811269953,45.03122524549589,45.03105934252193,45.0309469817547,45.03096053943992,45.03094183468071,45.03095659457883,45.03096292091609,45.03099904236529,45.03102906995763,45.03105364173994,45.03106806105411,45.03105923351456,45.03112622568786,45.03119419007974,45.03123959704359,45.03117130529841,45.03127869402213,45.03123147556237,45.03127800306577,45.03129350010094,45.03127589957592,45.03139126038609,45.03156479026857,45.03157563943799,45.03161160601164,45.03165375286198,45.03166243402408,45.03163581724349,45.03163958683047,45.03160989469099,45.0316062789707,45.03139269424145]}]],[[{"lng":[-89.22428282852927,-89.22423249554947,-89.23987829822558,-89.24423480452579,-89.25978740254608,-89.28020021760199,-89.28569096107837,-89.30245636776095,-89.30615003027771,-89.32657754924253,-89.34345963663704,-89.34565101013618,-89.3628804443253,-89.36614081942228,-89.38368866120065,-89.38645236474282,-89.4046987761635,-89.40653368109599,-89.42596520986999,-89.42692476665246,-89.44647998731814,-89.44739350083935,-89.46689471164899,-89.48734003633474,-89.49203153821411,-89.50782207097892,-89.51245485329042,-89.53297070253147,-89.54953262421581,-89.55338487371512,-89.57405750058348,-89.61048948786421,-89.63147773874853,-89.6517584140272,-89.67308510862763,-89.69275944639813,-89.69358121265672,-89.7139308452585,-89.72686162348732,-89.73448223664532,-89.74730393332665,-89.75504492718424,-89.76785661680444,-89.77544023246855,-89.78828348739509,-89.79682815748355,-89.80842416755507,-89.81718514855575,-89.83758906279327,-89.84456025729295,-89.85818551982912,-89.86507234712739,-89.87861367207529,-89.88557609412113,-89.89912293755457,-89.9203904703048,-89.92656298776809,-89.94710472647165,-89.96137198827824,-89.96467178437187,-89.98513422724614,-90.0019889002387,-90.00536419071605,-90.02250526851259,-90.04380326328118,-90.0457898949138,-90.06442820915409,-90.06601510884207,-90.07928477799975,-90.0848437810819,-90.1050892633555,-90.1200237147264,-90.14056884400102,-90.16082409542395,-90.16729315283401,-90.18107268749453,-90.18766449640258,-90.19780597982991,-90.19772610922529,-90.1976099902254,-90.1975307688506,-90.19750598747723,-90.19737542767656,-90.19747741611118,-90.21777968173011,-90.23822292956568,-90.27880652850945,-90.29923571530669,-90.31499563035528,-90.31520497823389,-90.31579257161656,-90.31598484446874,-90.31633624312825,-90.3165718796176,-90.31667585055888,-90.31631649712405,-90.3150504103299,-90.31522413269671,-90.31565771532603,-90.31588672406603,-90.31595823529595,-90.31640228779955,-90.31671005484216,-90.31692876977986,-90.3169521279607,-90.31686870079655,-90.31692326672653,-90.31664881964458,-90.3167596772154,-90.31673341632261,-90.31628405880861,-90.31628089810378,-90.29921119992024,-90.27890446539546,-90.25876864676478,-90.23852765270243,-90.21835941415408,-90.19802098116303,-90.17964091949956,-90.15957197243586,-90.13921845616967,-90.11967203719742,-90.0795695849619,-90.06476858999827,-90.04453667178991,-90.02438115466639,-90.00440279541881,-89.96406690850191,-89.94647361133741,-89.9262945151564,-89.90583832829992,-89.88552054213044,-89.86513721741808,-89.84498938997204,-89.82774627547043,-89.80744362056154,-89.76705871259486,-89.7267064473004,-89.70948110881086,-89.68912745927109,-89.64868423876443,-89.62832248679049,-89.60812178787887,-89.59124859411895,-89.5709906417013,-89.56089046131241,-89.55078855674194,-89.53056534369048,-89.51016179286768,-89.48987168667402,-89.44622893236405,-89.42609151393067,-89.40581625898182,-89.38579868754832,-89.36602861857324,-89.34581207861542,-89.32536981361115,-89.30496885067069,-89.28460561089636,-89.26453925561569,-89.24415311572126,-89.22382421173917,-89.22386898737348,-89.22406852268533,-89.22431515021917,-89.2241420896999,-89.22420926238593,-89.22447704589224,-89.22424903535909,-89.22423613907712,-89.22416193163835,-89.22386402236428,-89.22381198296551,-89.22394038260849,-89.22389655019968,-89.22399999735813,-89.22382261639312,-89.22380197102518,-89.22372586735082,-89.223564757292,-89.22345020031089,-89.22340507011283,-89.22351428294981,-89.22358205656712,-89.22368547562928,-89.22384090418444,-89.22395235689144,-89.22393275905777,-89.22404342354631,-89.22420227562634,-89.22428282852927],"lat":[45.10175615911004,45.11861649085142,45.11858829980633,45.11856121547652,45.11867287505489,45.11870681597482,45.11859133808555,45.1186290992319,45.11867606477709,45.11874596599204,45.11866277959507,45.11868125757702,45.1187997226699,45.1187995730636,45.11894760761513,45.11895066558273,45.11902355370439,45.1190142518203,45.11913968084905,45.11909639328545,45.11933963378374,45.1193730274783,45.11937649694652,45.11945963765397,45.1194659577049,45.11962542230767,45.11962422090799,45.1196557903696,45.11976320247091,45.11978792069479,45.11969232253745,45.11970417586284,45.1198130540695,45.11972856984797,45.11972647286817,45.11985237903426,45.11983321391013,45.11984786191481,45.11987031186987,45.11988158003335,45.11995659461104,45.1199836035294,45.11992090123289,45.11996503148452,45.1199549511697,45.12002785607586,45.12003044540759,45.12006280594849,45.12009391079572,45.12006984905787,45.12003834637942,45.12006300306314,45.12007368821565,45.12005583376575,45.12009250702674,45.11999902668003,45.11997784187272,45.12009271159781,45.12010685971154,45.12013521126551,45.12010087633464,45.12010182467657,45.12008540921414,45.12007409802554,45.12018135612165,45.12017298966749,45.12023973114574,45.12021407751396,45.12029429341619,45.12028328678322,45.12029071415126,45.12032359121783,45.1203491716574,45.12042800828357,45.12047556000832,45.12052014066544,45.12055143618198,45.12055939249363,45.1056393346996,45.0912425311064,45.07681693125893,45.06239485969758,45.0480145672135,45.0336321490985,45.03357224947872,45.03365247447427,45.03369782341585,45.03377837896498,45.0337880054732,45.01805001938564,45.00354478755866,44.98913862053182,44.9746866363642,44.9602506883797,44.94580353204731,44.93121949067341,44.90238081925438,44.88796061193018,44.87354077503828,44.8591405970203,44.8440842028127,44.82970923532564,44.81523839206284,44.80090926281148,44.78641212290979,44.77188542295863,44.75738306362592,44.74292355790224,44.72853868883831,44.71404838777089,44.69957722690572,44.68509775625969,44.68517643711791,44.68528443656395,44.68526943969768,44.68537623258537,44.68534730530526,44.68535815973613,44.68527089807095,44.68533130806115,44.68530441448904,44.68502098744718,44.68510367406951,44.6851906318859,44.68522697871092,44.68508979904151,44.68499829165096,44.68502514417862,44.68479589191433,44.684778945411,44.68468731290281,44.68463576255136,44.68480361162084,44.6848980913881,44.68483783198781,44.68486721995085,44.68481940243163,44.68492679079197,44.68491036166164,44.68497602392155,44.68523765123325,44.68530932587915,44.68546654280572,44.6854886256647,44.6855805531288,44.68551781553226,44.68578332702339,44.68575231510388,44.6858795561975,44.68582757630345,44.6846600190116,44.68404664405422,44.68338061119933,44.68322635176355,44.68251489557731,44.68136534746322,44.68138881054061,44.6815841261496,44.68171527005441,44.68156139240219,44.68126402639658,44.68136230634934,44.69585198326796,44.71050866130442,44.72471578168197,44.73926182771908,44.75378186029251,44.76912258729396,44.78361821043092,44.79797037679459,44.81241070409524,44.8269006793361,44.84126344013756,44.85620268139061,44.87065319623115,44.88515136939259,44.89951791881218,44.91405343792037,44.92846842024376,44.94289488867241,44.95732613721998,44.97177357474165,44.98617532637645,45.00076917790752,45.01525268712625,45.02935167977672,45.04382954232179,45.05831323147292,45.07273025520691,45.08728428050249,45.10175615911004]}]],[[{"lng":[-88.48403789615827,-88.48362285171676,-88.49767558533703,-88.50008473145353,-88.50403530476402,-88.51833290562109,-88.52447112937612,-88.53875267189564,-88.5449297766948,-88.55942919643691,-88.56520339042629,-88.58553186681806,-88.60033190638866,-88.61072087092116,-88.62078423295965,-88.63125601484896,-88.64144799420789,-88.65135408812428,-88.66169368777402,-88.68300578471548,-88.69264835821677,-88.70376881694926,-88.71290138557673,-88.72415352411488,-88.73729366229674,-88.74487073305637,-88.75016371028026,-88.75763479290879,-88.76510003373549,-88.77818791022028,-88.78563718728581,-88.79869215703675,-88.80683140913035,-88.81898095846799,-88.8395637113987,-88.84804142200174,-88.86029982387173,-88.86859364681706,-88.88071323810455,-88.90143576423277,-88.90929417701575,-88.92194114383743,-88.93059644877597,-88.94226039138952,-88.95102481139071,-88.9627112457506,-88.97156011227966,-88.98220041124316,-88.98199359105405,-88.98211697453954,-88.9820618884207,-88.98209931110588,-88.98195921155974,-88.98167872919642,-88.9813993671234,-88.98180202581548,-88.98200549330569,-88.98189845704606,-88.98200938333721,-88.98142669957852,-88.96059224879458,-88.94049764829914,-88.89962320642201,-88.87952518875102,-88.85902482780453,-88.83733002370614,-88.81686436863585,-88.77631718739946,-88.75585156498659,-88.73591686168808,-88.73569259702414,-88.73577774490236,-88.73604022931148,-88.73606127436132,-88.73620837365212,-88.71383255385555,-88.69345384387869,-88.67298906505967,-88.65265541296425,-88.63233768179656,-88.61172020045848,-88.59134768784156,-88.5710690451845,-88.55026894589982,-88.52974210048235,-88.50937062408872,-88.48911278551212,-88.48905903592609,-88.48888800739138,-88.48885528356227,-88.48873953602255,-88.48854523866301,-88.48831003456795,-88.48814709636429,-88.48783853150647,-88.48747509245679,-88.48666312464519,-88.48632053986464,-88.48556542490965,-88.48535912493409,-88.48491361756886,-88.48439186426211,-88.48403789615827],"lat":[45.1024206461735,45.11688208380239,45.11643689420603,45.11643706313174,45.11647193377903,45.11666426541596,45.11675629433076,45.11692954629917,45.11702603125736,45.11722985340815,45.11720427295857,45.11722544687668,45.11719910034773,45.11728133071895,45.11725826388033,45.11726817483903,45.1172825263975,45.11732381596264,45.11738028980065,45.11737535273891,45.11733632621063,45.11740522476799,45.11743071949311,45.11747576931293,45.11748458505232,45.11745995962573,45.11745377871564,45.11748515070593,45.11749290493779,45.11746645179968,45.11744005849627,45.11750401504162,45.11750345980697,45.11750922975391,45.11755685766485,45.11763809847438,45.11764590931044,45.11762561753121,45.11762086009642,45.11775997552964,45.11786278296034,45.11787386774593,45.11785782565939,45.11804537351598,45.11801669073386,45.1180209155292,45.11797932864449,45.11805119337771,45.10103141279338,45.08661685426557,45.07222993008951,45.05772733362699,45.04334042444124,45.02881692602856,45.01441379667267,45.00010137743058,44.98583198761373,44.97131844317016,44.95675616284397,44.94283946340502,44.9430399716681,44.94310709616617,44.94310880313439,44.94306164366091,44.9429315357301,44.94307142686327,44.94318446934817,44.94329198036287,44.94339436993677,44.94310677138282,44.928643678807,44.91415358614795,44.89972927495028,44.87084853913731,44.85636011196985,44.85659167079548,44.85671675284106,44.85672832634125,44.85654394337426,44.85642759045112,44.8561818882069,44.8558882123895,44.85593274981041,44.85585821346206,44.85558506295448,44.85545962566091,44.85547520342808,44.86994443686082,44.88432459115737,44.89909842366782,44.91365224878512,44.92838673412104,44.94349450689696,44.95807517104879,44.97255062419814,44.98711336884868,45.01588487303309,45.03016661201077,45.04464368185995,45.05921097969227,45.07362879598846,45.08791476765075,45.1024206461735]}]],[[{"lng":[-92.13550952606205,-92.15639790416559,-92.15644043150768,-92.15652929267917,-92.15659493084966,-92.15670593048688,-92.15679857655817,-92.15702879195187,-92.15708595889338,-92.13620273370148,-92.13616657301267,-92.13606603529144,-92.13619436961254,-92.13649898721789,-92.13653103188555,-92.13622687661061,-92.13603344657807,-92.13603937239485,-92.13573380601265,-92.13541762598329,-92.13517754219951,-92.13515791081437,-92.13521294905736,-92.13534341982555,-92.13560448404527,-92.13604880984342,-92.1361224794294,-92.13625826212653,-92.13623776474464,-92.13633779498807,-92.13623108262634,-92.13620887492348,-92.13615993159868,-92.13620439656383,-92.13630346611816,-92.13630491728642,-92.13564934303825,-92.13544474415058,-92.13503672216854,-92.13498467970413,-92.13508626310661,-92.13527332078654,-92.12517785525441,-92.11496979955726,-92.10479305242961,-92.09480464557689,-92.08470950500651,-92.07454553013037,-92.06447501741204,-92.05440347664496,-92.04419107240037,-92.03418627723856,-92.01391969574766,-91.99433968671991,-91.97395874836312,-91.95365237751618,-91.94342507207948,-91.93339309997921,-91.91301656891515,-91.90283921274465,-91.8929240426054,-91.87509381947589,-91.87310179946323,-91.85281867530243,-91.83250952949101,-91.82242464648414,-91.81222382578342,-91.78194426556212,-91.77670269971568,-91.77172190969985,-91.75128955356979,-91.75011680764048,-91.74127111817133,-91.72081449336366,-91.71078139389535,-91.69060205867686,-91.65034355881956,-91.65013383366608,-91.65008083413259,-91.65010209021908,-91.65005676500739,-91.65012533012461,-91.64989206205163,-91.64980572111766,-91.64969532979805,-91.64965676824727,-91.64979851565667,-91.64997132487431,-91.65049307183322,-91.65052242978919,-91.65061172340427,-91.65073941916422,-91.6502963298651,-91.65060684439314,-91.65070237909062,-91.65074384753071,-91.65092220544634,-91.65078727669439,-91.65091121790908,-91.65088971690697,-91.65089119712597,-91.65114155952797,-91.65122571115388,-91.65138164560604,-91.65146765531316,-91.65157787045842,-91.65159655110739,-91.65168238272884,-91.65171043396261,-91.65157259065572,-91.66153683291063,-91.66650522912533,-91.66643037385921,-91.66640302733971,-91.66630641267493,-91.66571000630915,-91.66560699114719,-91.67591082548083,-91.68621350736582,-91.69624586915748,-91.71698644904697,-91.72725237909266,-91.74793116292818,-91.75012015188739,-91.75804933483312,-91.76115750983631,-91.76847831976696,-91.77872058255549,-91.78883695765528,-91.8095818076583,-91.82952173675811,-91.85047175371923,-91.87090208987217,-91.89109547704027,-91.8962505581797,-91.90636946358035,-91.91161368859429,-91.92192492044029,-91.93213173304765,-91.9422908830785,-91.96256402811559,-91.968781977522,-91.97269380421724,-91.99309702050559,-92.00017697919176,-92.00300184962579,-92.0133088565962,-92.03382207261545,-92.05409964442735,-92.07439950374116,-92.0946930022622,-92.10495970522386,-92.13550952606205],"lat":[45.20936790672199,45.20946964562387,45.19347398830449,45.17907015938578,45.16463860746325,45.15028971514801,45.1361054183629,45.12496756369143,45.12159306356287,45.12149192638101,45.10409606710547,45.08971810100427,45.07528687990966,45.04634242675569,45.0318555202662,45.01709159041268,45.00268507639986,44.99999619522576,44.98814067574295,44.97367841040056,44.96648775867263,44.95929888463744,44.94481188739564,44.93018813354555,44.91559285208213,44.90113617722824,44.89390666071063,44.874988675209,44.87224481218249,44.85778519079522,44.84376320001839,44.82922056736826,44.81467755322781,44.80032715594138,44.78592253318963,44.77159932174101,44.75663991602217,44.7499432097903,44.72771434241584,44.71336309597544,44.69876616622313,44.68438928946278,44.68431257827008,44.68431610928106,44.68429142782798,44.68429501346608,44.68421443394725,44.68410494943337,44.68410540276719,44.68407685489998,44.6841017001336,44.68415456539656,44.68398116021233,44.6839201682581,44.68390314691359,44.68382860318197,44.68384412513552,44.68388777810988,44.68386035318386,44.68387252772945,44.6838591946625,44.68382187537622,44.68380223420807,44.68370991968632,44.6837781546151,44.6837844813435,44.68381595175189,44.68374371729377,44.68371508192376,44.68371619947562,44.68376907339634,44.68375610183903,44.68374134566402,44.68367832354346,44.6836202905837,44.6837198662657,44.68358025974806,44.6980930103361,44.7124704024202,44.72695837275372,44.74133586355163,44.74997981043621,44.7704194186072,44.77777193585568,44.78498722209985,44.79936506399208,44.81393691130943,44.82834426391229,44.85606396000932,44.87049691806234,44.87790669795626,44.89969436795982,44.91401223669662,44.92136925759009,44.92866917096796,44.94307477619761,44.95739987938727,44.96464203531294,44.97188719387832,44.97907593333527,44.98642917998669,44.99998684140742,45.00909705105686,45.01892186790445,45.02992552469012,45.0473224416531,45.05887416629007,45.07070087086074,45.08499630198458,45.1208009041951,45.12078096566925,45.12078423276722,45.12498129734739,45.12799899292589,45.13529636277162,45.17896953679163,45.20794220941232,45.20797960287133,45.20809879266024,45.20815889628204,45.20822917063664,45.20823409095576,45.20829826248801,45.20829482601992,45.20832636293519,45.20836006005348,45.20832964566718,45.20833009907145,45.20830066252983,45.20835419245635,45.20828604321038,45.20855389647251,45.20842865828212,45.2085169087495,45.20848431976413,45.20847198908199,45.20844002783444,45.2085378681285,45.20860644185574,45.20861865428264,45.20869486758836,45.20869643114742,45.20873160176244,45.20880380216846,45.20878382024267,45.20883586654475,45.20895282154941,45.20874436993879,45.20891425671452,45.20913555220884,45.20929849788401,45.20929707462571,45.20936790672199]}]],[[{"lng":[-92.75352132689103,-92.75802883195257,-92.75885419997987,-92.76016064672166,-92.76116167108431,-92.7621480776579,-92.76253034422025,-92.76319163527333,-92.7635733875503,-92.76502697136068,-92.76563450590695,-92.76628875509437,-92.76693553654189,-92.76739844812577,-92.76764999712708,-92.76775250924919,-92.76792172602261,-92.76787470457194,-92.76774297417391,-92.76750690133773,-92.76716175692616,-92.76679871655908,-92.76661684494744,-92.76651143569326,-92.76649246742026,-92.76657047676086,-92.76648542738168,-92.76643348940867,-92.76621244884416,-92.76566310107475,-92.76497180342247,-92.76441085042333,-92.76365066680495,-92.76208526662052,-92.75913754376955,-92.75828184848054,-92.75714381272677,-92.75577450152419,-92.75468623050446,-92.75374625654553,-92.75319966796137,-92.7526501321736,-92.75232155893936,-92.75223644454528,-92.75238221709824,-92.75281106734917,-92.75344447051144,-92.75438646162856,-92.7555659582024,-92.75641146834998,-92.75691327317662,-92.75715079736086,-92.75722633045535,-92.75719833791278,-92.75746717099447,-92.75787169228543,-92.75824488053402,-92.75826781667389,-92.75808074498885,-92.75798427401577,-92.75800303132726,-92.75814323736527,-92.75806886491674,-92.75783714771765,-92.75769100720206,-92.75736290546459,-92.75696760735812,-92.75591905809843,-92.75547076299775,-92.75507677067857,-92.75447907408814,-92.75360925596542,-92.75304166284096,-92.7524644652035,-92.75233133157487,-92.75217736719677,-92.75213986175383,-92.75213491009244,-92.75214618704059,-92.7521846049444,-92.75224893548537,-92.75202275511143,-92.75161092871902,-92.75115692987849,-92.75043840947558,-92.74977326165867,-92.74939819167342,-92.74923464222069,-92.74902609016802,-92.74873374902873,-92.74828159407475,-92.74820738931196,-92.7481206360993,-92.74800144542107,-92.74788724472879,-92.7475243698086,-92.74727960950818,-92.74698355297903,-92.74673431059276,-92.74627863903129,-92.74616022218531,-92.74564891775363,-92.74540411299452,-92.74480266960204,-92.74437894529598,-92.74387268592528,-92.74333793652433,-92.74280778683617,-92.74209911560757,-92.7414914136976,-92.74103388205104,-92.74039865986127,-92.74005797912928,-92.7395325743432,-92.73957963393914,-92.73973549280331,-92.74020257127988,-92.74065829077702,-92.7412329198675,-92.74203024534511,-92.7424938180522,-92.7428777475197,-92.74333839080874,-92.74448070523657,-92.745397668385,-92.74679843960627,-92.74791886864919,-92.74909677196507,-92.75022752626205,-92.75096832219579,-92.75180582883517,-92.75275555971129,-92.75438637493188,-92.75489563815609,-92.75592620593667,-92.75705517616706,-92.75803062467732,-92.75988182367716,-92.76083179736864,-92.76294559450996,-92.764253255493,-92.767437145751,-92.77009386369113,-92.77113616296401,-92.77223922845734,-92.77404047372215,-92.7761824176777,-92.78281114125407,-92.78470880190368,-92.78696945801794,-92.7883897540393,-92.78918603873797,-92.79101148426328,-92.79251986700999,-92.79402693776839,-92.79569471283352,-92.79725639387384,-92.79941680475743,-92.80060641611709,-92.80118231277292,-92.80207375799147,-92.8027052555649,-92.80299198115532,-92.80321425342892,-92.80321313567379,-92.80324244953383,-92.80307294160446,-92.80282501608117,-92.80251054692141,-92.80193620060339,-92.80160986974479,-92.80034424579664,-92.79984540106761,-92.79846836857728,-92.79733888798404,-92.79592252889761,-92.79403114592826,-92.79305862424047,-92.78987689208429,-92.78751821663754,-92.78534048578891,-92.78351498460849,-92.78201282925828,-92.78016202095044,-92.7782974035122,-92.77620912897041,-92.77461965340848,-92.77280355280993,-92.77077548480403,-92.76940780103638,-92.76722074010713,-92.76604646854243,-92.76497050588273,-92.764209903761,-92.76315398847998,-92.76260335806046,-92.76213396967202,-92.76189990092439,-92.76194070901782,-92.76248336005683,-92.76307013355191,-92.76388421763903,-92.764754078229,-92.76576213402174,-92.7666364144838,-92.76787534294358,-92.76897846341399,-92.77010479169456,-92.77053261594382,-92.77099995768303,-92.77128076505232,-92.77144839887529,-92.77152109716334,-92.77139262978874,-92.77123392936369,-92.77100313542627,-92.7707503111529,-92.77046548032835,-92.76985093687226,-92.76937127308358,-92.76926341141142,-92.76915261643062,-92.76923619819516,-92.76965225728217,-92.76998507992711,-92.77033404517185,-92.77049157606656,-92.77056177863327,-92.77036108135725,-92.7695520196869,-92.76921276392152,-92.76893428312144,-92.76847027741346,-92.76804250228538,-92.76752818786818,-92.76709877497605,-92.76597536828685,-92.76512907183196,-92.76406476054119,-92.76311199559071,-92.76196077352078,-92.76135749999766,-92.760896950865,-92.76050132467779,-92.76019891718002,-92.75953127376376,-92.75907995910383,-92.75855501458416,-92.75647693600403,-92.75569252024705,-92.75521550312742,-92.75476396660838,-92.75391168046491,-92.75327734107437,-92.75276243969479,-92.75214446935352,-92.75141194801554,-92.75106178713929,-92.75078814459248,-92.7507604214026,-92.75073078360307,-92.75089865261218,-92.75149432343727,-92.75309936474517,-92.75396606134788,-92.75476779182931,-92.75552204365313,-92.75595098248563,-92.75627013785083,-92.75668610524008,-92.75768310987876,-92.75810516051362,-92.75854426261274,-92.75915333188657,-92.75975073604261,-92.76050145390975,-92.76130951143283,-92.76860590058124,-92.77125119293936,-92.77258063079756,-92.77359044403602,-92.77420958901681,-92.77441813678665,-92.77475794275873,-92.7749938548088,-92.77524183767702,-92.77528110212894,-92.77529674008204,-92.77509048652837,-92.77484601198988,-92.77456298035973,-92.77408422501371,-92.7728391834316,-92.77101421881186,-92.76987246948154,-92.76928707254687,-92.76855130368429,-92.76790364611615,-92.76614893430806,-92.76532686660586,-92.76454721657989,-92.76432956161179,-92.76407167093123,-92.76383456079658,-92.76383004158909,-92.76400334649861,-92.76471790395604,-92.76673468396807,-92.76732743885017,-92.76807424642776,-92.76885424399001,-92.76919359222448,-92.76934601251493,-92.76936068087183,-92.7612650207971,-92.7507744617218,-92.74084741279893,-92.73112443267652,-92.72096612784803,-92.71082856110105,-92.70064490236111,-92.69047495280428,-92.68014640620081,-92.65990187799132,-92.64982492078039,-92.64470130382205,-92.63967427206669,-92.63462791863577,-92.62933462279001,-92.62516770684844,-92.6192497236862,-92.59871275103667,-92.58843135612669,-92.58355101260231,-92.57835848875871,-92.56810760160029,-92.55796867759068,-92.53750917846727,-92.51730746541422,-92.50708366744983,-92.5002353461891,-92.4969524259713,-92.47634527100165,-92.46632233768683,-92.45616760252261,-92.43589893896556,-92.42573311639062,-92.39514316895661,-92.38504094066707,-92.37493942571724,-92.35924857949455,-92.33894904724352,-92.32888776857752,-92.31862156675695,-92.30854204957473,-92.29850844122227,-92.27844012283401,-92.26843987773691,-92.2582783902761,-92.25312970139527,-92.25017490592143,-92.24833131341163,-92.24299686629487,-92.23793211969453,-92.22805173564731,-92.22268933180476,-92.21772438397407,-92.17686203633703,-92.15664795734399,-92.14651453273959,-92.13633779498807,-92.13623776474464,-92.13625826212653,-92.1361224794294,-92.13604880984342,-92.13560448404527,-92.13534341982555,-92.13521294905736,-92.13515791081437,-92.13517754219951,-92.13541762598329,-92.13573380601265,-92.13603937239485,-92.13603344657807,-92.13622687661061,-92.13653103188555,-92.13649898721789,-92.13619436961254,-92.13606603529144,-92.13616657301267,-92.13620273370148,-92.15708595889338,-92.15702879195187,-92.15679857655817,-92.15670593048688,-92.15659493084966,-92.15652929267917,-92.15644043150768,-92.15639790416559,-92.17711184105589,-92.18758863711524,-92.19785148233714,-92.20826608572854,-92.2186916530765,-92.22913154220603,-92.2396033515594,-92.25020106994458,-92.26024343509074,-92.27191008510593,-92.28395776429369,-92.30413014324748,-92.32441844216308,-92.33465263573814,-92.34490222299401,-92.35514932022024,-92.36526776433608,-92.37516172981019,-92.38566055741732,-92.40655848259058,-92.41669871212848,-92.42683930518298,-92.44733281675076,-92.4677192253547,-92.47798498398218,-92.50019774384339,-92.50834361369449,-92.52951673737407,-92.53452292688951,-92.5498332223933,-92.57984165811582,-92.58981711979054,-92.60002565232116,-92.61026956627276,-92.62062901899071,-92.62524446501618,-92.63069481522588,-92.64074802086215,-92.65153866233487,-92.66172424818288,-92.67196757808334,-92.68202520402694,-92.69221081671806,-92.71261273267812,-92.72278655852475,-92.73290966180095,-92.75021395364367,-92.75352132689103],"lat":[45.20963445993852,45.20956665076617,45.20888957012022,45.20802588906474,45.20743006965968,45.20704219305276,45.20683378120928,45.20631480175287,45.20559498948415,45.20170369063251,45.2000776705237,45.19839819192242,45.19708233344814,45.19551156896708,45.19412764940191,45.19320642885921,45.19164278446581,45.19067343100838,45.18998349608277,45.18966009652044,45.18911373489534,45.18870677326611,45.1879831676893,45.18732691497012,45.18643507952934,45.1860174257092,45.18477162534943,45.18420071885763,45.18368622788294,45.18297152940039,45.18236435180474,45.18191041482153,45.18139153877194,45.18044150050267,45.17877097714661,45.17830669509637,45.17757129880142,45.17661700169042,45.17589782233143,45.17520993484607,45.17454743044731,45.17381523568915,45.17259273847177,45.17133849117359,45.17029527762264,45.16953947709148,45.16895203001434,45.16816696417492,45.16721975473839,45.166471885195,45.16569686881882,45.16452990934587,45.16355758705888,45.16247524368703,45.16194889845193,45.16119423048236,45.16030135786,45.15976351130534,45.15893593704073,45.158453015791,45.15782863006653,45.15617033116814,45.15513214831033,45.15388988393639,45.15288831551986,45.15218567407116,45.15160617339815,45.15017574600424,45.14951060185405,45.14896565976476,45.14825207558877,45.14747584734131,45.14688304823865,45.1460823173617,45.14586020330874,45.14520538365332,45.14442651208554,45.14382013950048,45.14354250158465,45.14332496779588,45.1426302822012,45.14199436564741,45.14107711276578,45.14029084145572,45.13909517903856,45.13850443210156,45.13783777642274,45.13749486836979,45.13672011542052,45.13521936090235,45.13396522347038,45.1334384371551,45.13316316112537,45.13221297014979,45.13136646422691,45.13043930125257,45.12942264900256,45.12835546940368,45.12673214999541,45.12489747653733,45.12446711528735,45.12350891526653,45.12299495275525,45.1221947607799,45.1215289728861,45.1206747283914,45.12023692919168,45.11990310575671,45.11941744439665,45.11899883340622,45.11864609451195,45.11815865955356,45.11769030830067,45.11694030091622,45.11588202522891,45.11504646763361,45.11406474655788,45.11336038494527,45.11258424347385,45.11185451546086,45.11131480185563,45.11064703657578,45.11004663151461,45.10885793478326,45.10807354282603,45.10717312973208,45.10655710486273,45.10611268437058,45.10570426764537,45.10533984313999,45.10493819970101,45.1043346793971,45.10313438365284,45.10253275287669,45.10157196826648,45.10062623009961,45.10004792525504,45.09936207744709,45.09876720432014,45.09744229323775,45.09664800518949,45.09417917198328,45.09245106899053,45.09174978203256,45.09077836404202,45.08907094660344,45.08784046994553,45.08429067722447,45.08306599612055,45.08176292957943,45.08079232996825,45.08006228683548,45.07837145061661,45.07719919451259,45.07600135058198,45.07459138156514,45.07301042311244,45.07117255437902,45.06999956876377,45.06926613254338,45.06799637064605,45.0664038511775,45.06527017586502,45.06380894539172,45.06229272700467,45.06139069667227,45.06042434946418,45.05935584430026,45.0584279417187,45.05717672045508,45.0565090344361,45.05462495151417,45.05392660987335,45.05226184942529,45.05116318593446,45.0496900850603,45.04800327284234,45.04711732969962,45.04502880706136,45.04378679985174,45.04273077482652,45.04189144888829,45.04115673048853,45.04030080719141,45.03915037638465,45.03791870980988,45.0369002107728,45.03573107231882,45.03422947375002,45.03324011907777,45.03147338439519,45.03044469593801,45.02941361213357,45.0283402810308,45.02671063086155,45.02542431820215,45.02430903269364,45.02299761118744,45.02232064035224,45.02090377256401,45.01939047219248,45.01751636823512,45.01579674829271,45.01390077058632,45.01175653667288,45.00907486942217,45.0066218141524,45.00414202603182,45.0028837498275,45.00143406184272,45.00016191022159,44.99908352019256,44.99805919173089,44.99640708410077,44.99564859011726,44.99440629912077,44.99321659282877,44.9923742327258,44.99077752171621,44.98943718896872,44.98872077636924,44.98794338854552,44.98714413119948,44.98564364869243,44.98443972155091,44.98255941211763,44.9807619508553,44.97968563717202,44.9785641437089,44.97342791536497,44.9719629268868,44.97073922689818,44.96972792204036,44.96895850325189,44.96841623172077,44.96811467340583,44.96760460012439,44.96726137789726,44.96695774343547,44.96644351280662,44.96585615563161,44.96548957694888,44.96505006221865,44.96443568132723,44.96373240319899,44.96253553726334,44.96178381813228,44.96101671094095,44.95840656174104,44.95731629783554,44.95653058026918,44.95525897887975,44.95274915382307,44.95071088472638,44.94862612720314,44.94642288684528,44.94334696145717,44.9416396815561,44.93999976178583,44.93788608289729,44.93676014482428,44.93567304602492,44.93333617043873,44.92812412197594,44.92533031210188,44.92271134915438,44.92011940662828,44.9183758797971,44.91689521697842,44.9153944902113,44.91175693644064,44.91089745068705,44.90988170604599,44.90884440623505,44.90808476298071,44.90746009537173,44.90702448026146,44.9040660654663,44.90278855499874,44.90202850670306,44.90122388464301,44.90041159077023,44.89967875906634,44.89863048385257,44.89745504459891,44.89653052126947,44.89481383684638,44.89361758808003,44.89237469567007,44.89134062565301,44.89053310053148,44.88970417426842,44.88763723715271,44.88466615814804,44.88272664753715,44.88170111827468,44.88059230508135,44.87979361196438,44.87777356036742,44.8768924358072,44.87588874615792,44.87540874931486,44.87460903371025,44.87373088577314,44.87312448102214,44.87216690752219,44.87079787951902,44.8676207817396,44.86677455658204,44.86557773494169,44.86405096442196,44.86300298785247,44.8621153974922,44.86194857671096,44.86201211970232,44.86212682578643,44.86218703571818,44.86224683813411,44.86227736672961,44.86236220339327,44.86241796925989,44.86244577741284,44.8624997505799,44.86266053972185,44.86263022767813,44.8625870347886,44.86257119221435,44.862582580995,44.86256539989125,44.8625794554094,44.86255985205726,44.86259917720924,44.8625076076681,44.86248990366916,44.8624435952004,44.8624052026493,44.86239376233414,44.86242257709039,44.8625036349694,44.86248728880373,44.8625123229306,44.8624429466423,44.86256992485895,44.86255084345611,44.86255762979981,44.86240416640486,44.8623536216575,44.86227781433609,44.86222371297102,44.86219626666331,44.86150542697573,44.86073110416186,44.86037045984276,44.86003531028397,44.85961782205587,44.85922721453581,44.85860821850212,44.85835242592497,44.85806743648407,44.85795139806978,44.8579044491288,44.85789237164663,44.85782960258236,44.85779589800437,44.85783914598978,44.85783026279401,44.85785110749852,44.8578929143314,44.85785499512549,44.85780706008617,44.85778519079522,44.87224481218249,44.874988675209,44.89390666071063,44.90113617722824,44.91559285208213,44.93018813354555,44.94481188739564,44.95929888463744,44.96648775867263,44.97367841040056,44.98814067574295,44.99999619522576,45.00268507639986,45.01709159041268,45.0318555202662,45.04634242675569,45.07528687990966,45.08971810100427,45.10409606710547,45.12149192638101,45.12159306356287,45.12496756369143,45.1361054183629,45.15028971514801,45.16463860746325,45.17907015938578,45.19347398830449,45.20946964562387,45.20956582403343,45.20953129942742,45.20952159127597,45.2094846796933,45.20947416881316,45.20938225655142,45.20931351672787,45.20921911050639,45.20914763983026,45.20922245267278,45.20927128951943,45.20923142958327,45.209243873189,45.20919429257795,45.20917104752719,45.20917450286203,45.20920389480781,45.20920357997237,45.20928822631687,45.2092890673532,45.20925858120351,45.20925559396045,45.20935657464295,45.20928909208632,45.20933652039161,45.20949081645141,45.20963593762423,45.20972525923256,45.20985559795702,45.21016396410787,45.21019622313494,45.21023256159989,45.21018705343349,45.21016710465116,45.21020209517374,45.21019002078346,45.21012561024563,45.2101301028618,45.21010899084352,45.21008493238148,45.21008730351812,45.21003347963109,45.2099515568045,45.20984051578804,45.20983828319186,45.20980738188499,45.20970970588434,45.20963445993852]}]],[[{"lng":[-91.52003558137491,-91.54099965783946,-91.54127598085907,-91.54118416753448,-91.54148512183912,-91.54152999551998,-91.541595047477,-91.54194919533776,-91.54218224460166,-91.54202071782879,-91.5422862834123,-91.56262773564382,-91.57298489699269,-91.57496455050547,-91.57806160340928,-91.59323906221019,-91.60345068847676,-91.61395352328111,-91.61537304878119,-91.62441735757322,-91.63467749982843,-91.63843538161865,-91.64516726456617,-91.66560699114719,-91.66571000630915,-91.66630641267493,-91.66640302733971,-91.66643037385921,-91.66650522912533,-91.66153683291063,-91.65157259065572,-91.65171043396261,-91.65168238272884,-91.65159655110739,-91.65157787045842,-91.65146765531316,-91.65138164560604,-91.65122571115388,-91.65114155952797,-91.65089119712597,-91.65088971690697,-91.65091121790908,-91.65078727669439,-91.65092220544634,-91.65074384753071,-91.65070237909062,-91.65060684439314,-91.6502963298651,-91.65073941916422,-91.65061172340427,-91.65052242978919,-91.65049307183322,-91.64046021466288,-91.63038932796412,-91.62020914101385,-91.61514319530018,-91.56426395603803,-91.55912578275787,-91.54896419814075,-91.54382397730313,-91.5389465206585,-91.53345533074965,-91.52862327161844,-91.51862440731851,-91.51343161996576,-91.50873306946046,-91.49860187515425,-91.49352993752575,-91.46813259825895,-91.45783025657762,-91.45261408619987,-91.44770205319743,-91.44254938046825,-91.42216691076995,-91.40701749450547,-91.39813558372941,-91.39211472136827,-91.38762857979613,-91.37747617987444,-91.37521373659955,-91.36878779555785,-91.36729935736646,-91.35712928746258,-91.35194425855931,-91.34178021684771,-91.33683849826043,-91.33151551276991,-91.32673916285077,-91.32163972182499,-91.31654366903676,-91.31132869145971,-91.30645973581161,-91.29119698193459,-91.28608151753038,-91.27727487037959,-91.26713210734741,-91.25678956802662,-91.25016469140289,-91.24682547130993,-91.2367367769552,-91.226637179495,-91.21659298438283,-91.20631315442137,-91.19744852448228,-91.19619056268427,-91.18605251729815,-91.17771768788712,-91.17596572436312,-91.16576782729726,-91.14586625940251,-91.12567331469252,-91.11445530510953,-91.10518180755068,-91.09495072132083,-91.07469435713007,-91.06455797739407,-91.05438918984233,-91.04412069889359,-91.02398828416028,-91.0132030503098,-91.00018338450647,-90.99417790473498,-90.99343657183391,-90.98329819972393,-90.97417381540349,-90.96292511358602,-90.95314793598354,-90.94265197070976,-90.93243716179539,-90.92226074544025,-90.92229496344102,-90.92239368712899,-90.9224102791764,-90.92235363012821,-90.92248369665715,-90.92250141869887,-90.92263764306585,-90.92261122488372,-90.92260933850508,-90.92241352114767,-90.92259194944732,-90.923126955519,-90.92312120221789,-90.92323663881986,-90.92310612329678,-90.92365583345605,-90.92374961731763,-90.92357938518559,-90.92313449774795,-90.92307057766793,-90.92269972598052,-90.92594451534451,-90.92591550337947,-90.92593465076411,-90.92591522552316,-90.92594665947773,-90.92589073618855,-90.92573627379998,-90.92577598283268,-90.92589626258881,-90.92556860183613,-90.92555618944597,-90.92514756141942,-90.92522151830033,-90.94583088353397,-90.95107226466044,-90.95609924441622,-90.96147785375406,-90.96636847207918,-90.98709865166214,-91.00754963036015,-91.02797916829708,-91.04911086602802,-91.0695333538003,-91.110613382764,-91.1314398481904,-91.1465404423505,-91.17323223577641,-91.19345583424295,-91.21384433557864,-91.2343612652805,-91.25502204218485,-91.27509688410639,-91.29597362137527,-91.30626896866892,-91.31645807046775,-91.33689366414532,-91.35744345910763,-91.37776269098208,-91.39797104515419,-91.41847051850235,-91.43326425056874,-91.43918314247486,-91.45069417283008,-91.45899965886797,-91.47948962198319,-91.49972857853672,-91.52003558137491],"lat":[45.29201953678306,45.29213140574317,45.27847155915706,45.27205021509599,45.2567992447409,45.24958389634961,45.24324668328673,45.23532182730639,45.22758763204046,45.22083600409437,45.2064895802148,45.20696687008787,45.20704208487366,45.20703926302877,45.20705050895698,45.2071561749465,45.20747342373849,45.20762895222263,45.20767357795186,45.20781023221323,45.2077411450927,45.20770386907206,45.20781128382841,45.20794220941232,45.17896953679163,45.13529636277162,45.12799899292589,45.12498129734739,45.12078423276722,45.12078096566925,45.1208009041951,45.08499630198458,45.07070087086074,45.05887416629007,45.0473224416531,45.02992552469012,45.01892186790445,45.00909705105686,44.99998684140742,44.98642917998669,44.97907593333527,44.97188719387832,44.96464203531294,44.95739987938727,44.94307477619761,44.92866917096796,44.92136925759009,44.91401223669662,44.89969436795982,44.87790669795626,44.87049691806234,44.85606396000932,44.85619159914388,44.85629076391621,44.8564426359718,44.85646345302442,44.85693234680983,44.85700511572821,44.85709552134389,44.85716706989287,44.85721459140326,44.8572814003063,44.85735628036453,44.85733659445189,44.85735148889034,44.8573449960418,44.85737679565818,44.85733748644502,44.85727391400426,44.85735473149524,44.85736664430557,44.8574096297255,44.8573671067318,44.8573066286174,44.85717869953962,44.85721889468059,44.85718922741258,44.85718082349684,44.85720108950575,44.85719713726465,44.85729742986698,44.85727616464838,44.85718511387157,44.85719289707187,44.85715526781577,44.85716598007501,44.85714294213845,44.85715551007311,44.85713560231719,44.85714272177882,44.8571205952128,44.85713084457709,44.85706816806812,44.85707386501633,44.85705091908115,44.85695239038142,44.85695952911239,44.8569954129923,44.85694415619141,44.85698103215454,44.85698928637589,44.85694260035523,44.85691862403444,44.85691629689336,44.85692385852288,44.85692780036082,44.8568776422746,44.85690442403597,44.85696063115487,44.85696829054835,44.85702289725008,44.85713999064912,44.85712352257117,44.85714558890984,44.857134960967,44.8572105242202,44.85720221366739,44.85730137327408,44.85750342303486,44.85737121748375,44.85736337323969,44.85734017187218,44.85735506751484,44.85736832985703,44.85739876178373,44.85750042307007,44.85754509132786,44.8576308750965,44.85766585151446,44.85772829614113,44.86362827885132,44.87213619207008,44.87499039174497,44.87913252493296,44.89362310269845,44.90083978232486,44.91535782426362,44.92989993325544,44.94438779295595,44.9590094029031,44.97341808646446,44.98780584381274,45.00212394426956,45.016675601995,45.03107223628498,45.04554913525807,45.05996329392921,45.07446929686818,45.09969076582504,45.10329350658855,45.11923881293394,45.1192327678612,45.13378248858771,45.14821025611236,45.16258428605608,45.17709964478937,45.19144858473739,45.20541176787567,45.21978995912912,45.2341969944619,45.25002260222847,45.26327430261633,45.27802764352131,45.29210389844575,45.29198272163929,45.29193971360342,45.29192076463498,45.29193379449591,45.29191104250098,45.29189419476847,45.2919341763791,45.29183182371706,45.29185972221711,45.29183270575956,45.29191985089914,45.29212620926052,45.29210522552921,45.29201328252722,45.29206094370151,45.2921586854924,45.29203732598842,45.29202975082578,45.29197289356163,45.2918674008032,45.29180093194859,45.29175951831158,45.29172954714701,45.29164280215721,45.29153348000695,45.29161824627583,45.29199568194986,45.2917970637505,45.29169838135288,45.29158329995565,45.29150977069568,45.29164542189029,45.29161360575502,45.29201953678306]}]],[[{"lng":[-87.01216007791777,-87.01231479854081,-87.01256300687677,-87.01278055113133,-87.01299058141502,-87.01309877862509,-87.01319255813111,-87.01336384075412,-87.01346451786124,-87.01347220611579,-87.01341748058755,-87.01341835917756,-87.01357260226678,-87.01360396185149,-87.01361173858336,-87.01363538013156,-87.01363560901673,-87.01368226664155,-87.01387589738316,-87.01410865734721,-87.01442750644419,-87.01458196946946,-87.01495460548935,-87.01532815683176,-87.01542179961977,-87.01554574673706,-87.01560778080406,-87.01616656027009,-87.01638456429154,-87.01647726435236,-87.01660162805726,-87.01678793697695,-87.01698244422293,-87.01728592438745,-87.01731703028101,-87.01796933772587,-87.01806159188087,-87.01828001051506,-87.01840363555426,-87.01855132144151,-87.01870681864311,-87.01885388215597,-87.0190951716914,-87.01938295754159,-87.01951533665637,-87.01972428179474,-87.01994162741202,-87.02009000989696,-87.02041584584704,-87.02053277065936,-87.02081964536151,-87.02090513625214,-87.02095188835921,-87.02104480642716,-87.02107649438079,-87.02113848961039,-87.0212939384004,-87.02145667487139,-87.02153477208246,-87.02158877416568,-87.02166653491169,-87.02173696496112,-87.02186059986704,-87.02214065804165,-87.02224162557296,-87.02228855484745,-87.0223807619733,-87.02242769347586,-87.02250554361943,-87.02254432785818,-87.02254458981477,-87.02259849932152,-87.02266847725085,-87.02269993357648,-87.02304948940476,-87.02333702479478,-87.02336705164848,-87.02338332444599,-87.02339867105177,-87.02346082530518,-87.02347649132706,-87.02349279346538,-87.02349197359936,-87.02347672685048,-87.02347638184234,-87.02346148791815,-87.02346182201323,-87.02344571418324,-87.02344489521046,-87.02343003100063,-87.02346072862797,-87.02347623146839,-87.02350784829495,-87.02351527739161,-87.02354705124689,-87.02364768863548,-87.02368636215958,-87.02361650106604,-87.02358480294482,-87.02356229929352,-87.02354644003005,-87.02349230975115,-87.02345289932937,-87.02343793507907,-87.02345309418033,-87.0234381215509,-87.0233679011249,-87.02334428825493,-87.0233214320202,-87.02329729001966,-87.02322055113467,-87.02318983188171,-87.0231659423048,-87.02321280620194,-87.0231893060209,-87.02312718917813,-87.02309647008862,-87.02308886367284,-87.02308847350976,-87.02307261381407,-87.02307337430855,-87.02305751103924,-87.0230574737857,-87.02304240845895,-87.02304187067841,-87.02302627216199,-87.02302573455466,-87.02301014033453,-87.02301092692575,-87.02299503684937,-87.02299502900973,-87.02297913988181,-87.02296443739014,-87.02294863297084,-87.02297962144222,-87.02297933951945,-87.02295653860045,-87.02297211336432,-87.02296422528573,-87.02293298739274,-87.02294079159925,-87.02301834999184,-87.02310344340988,-87.02319667604056,-87.02327454465819,-87.02316678963267,-87.0231278155555,-87.02303440266465,-87.0229557559849,-87.02290979783048,-87.02290195266667,-87.02293266677854,-87.02292511483431,-87.0227700327551,-87.0227305257889,-87.02266080628566,-87.0225678298436,-87.02250887806484,-87.022537082726,-87.02262179217152,-87.02269220648856,-87.02273132295888,-87.02277863393363,-87.02279809024182,-87.02280885063023,-87.02294858924682,-87.02300334564723,-87.02304210967635,-87.02309657591013,-87.02309613143845,-87.02305762751479,-87.02280639206293,-87.02280497653433,-87.02294082432108,-87.02311900318671,-87.02332937098235,-87.02371002299085,-87.02401223417986,-87.02419849412222,-87.02422991214119,-87.02439300532745,-87.02478130319096,-87.02488328675169,-87.02492074224122,-87.02499157232714,-87.02514632273403,-87.025363449786,-87.02548778190823,-87.02558141067144,-87.02567488392191,-87.0257671814423,-87.02589950505565,-87.02610888221309,-87.0261405408191,-87.02632650986764,-87.02648164955427,-87.02682386474179,-87.02691728346369,-87.02697875013253,-87.02710309761757,-87.02713416693385,-87.02732121568998,-87.02744461364402,-87.02763156432101,-87.0277868593074,-87.02822215761992,-87.02825322719407,-87.02837686630009,-87.02850164731427,-87.02856346782757,-87.02859453908039,-87.02871817801733,-87.02874924745045,-87.02900198010005,-87.02937129499651,-87.02968220656054,-87.02983691741422,-87.0299606975661,-87.03011705428955,-87.03048882715738,-87.03073781316749,-87.03154646268223,-87.03213546904507,-87.03222939569145,-87.03272642059471,-87.03291294915093,-87.0329436713088,-87.03300628940623,-87.03316129821215,-87.03325398122509,-87.03331659678969,-87.03347187072218,-87.03359631058449,-87.03381319698353,-87.03387581567155,-87.03390688584679,-87.03415526768192,-87.03437345142349,-87.03440452174308,-87.03480712087973,-87.03505608327575,-87.03527435200122,-87.03539776331034,-87.03542886066352,-87.03549068592611,-87.03577054087366,-87.03604970695943,-87.03608101658436,-87.03614318640004,-87.0362368789003,-87.03636063424828,-87.03670229543179,-87.03732357199472,-87.03769659706101,-87.03782889692259,-87.03801495839076,-87.03818591941685,-87.03836492359028,-87.03844298820616,-87.03847318554021,-87.03853525043834,-87.03878361379817,-87.03902468081436,-87.03914915455113,-87.03939706323975,-87.03966184620143,-87.040048682703,-87.04014269319708,-87.04046101571024,-87.04051562168813,-87.04067771762033,-87.04082629988858,-87.0410199154045,-87.04114461747942,-87.0412912876519,-87.04139303778015,-87.0415632379121,-87.04161810844276,-87.04170381051597,-87.04182689485403,-87.04188906143175,-87.04192071489479,-87.04200549123399,-87.04229302342488,-87.0427589047937,-87.04288384756447,-87.04303903684099,-87.04313251556708,-87.04316302946074,-87.04319399302305,-87.04322476962025,-87.04325592062504,-87.04335748896546,-87.04339625355114,-87.04341132354786,-87.04341172417791,-87.04328721259307,-87.04331772662266,-87.04337328821821,-87.0434815635227,-87.04352045316492,-87.04354340593895,-87.04356680486265,-87.04372236995329,-87.04378419497455,-87.04412615600071,-87.04443661836453,-87.04462298966705,-87.04468515678272,-87.04477804881319,-87.04493369573588,-87.04502608531703,-87.04524411576675,-87.0453378071233,-87.04546225113904,-87.04552383476364,-87.0455860022751,-87.04580296118883,-87.04599025724417,-87.04617638846948,-87.04620690303084,-87.04630016817731,-87.04642413030116,-87.0466116700451,-87.04664215737411,-87.04689048352594,-87.046921795373,-87.04710821753743,-87.04732569090865,-87.04745002537544,-87.04772992947281,-87.04791642906864,-87.04825741431054,-87.04835139455334,-87.04841356243698,-87.04856807496637,-87.04875503188606,-87.04903379604252,-87.04922130981758,-87.04956298974113,-87.04962512866106,-87.04965564413961,-87.04996580323804,-87.05023503223269,-87.05046259934356,-87.05049369805712,-87.05055629215606,-87.05124050869794,-87.05130233542226,-87.05139552567272,-87.05155049324314,-87.05183029363334,-87.05250607749957,-87.05280838218977,-87.05287112404056,-87.05303427487843,-87.053314252276,-87.0533763170115,-87.05345407878967,-87.05350087162145,-87.0536724595493,-87.05381205393022,-87.05392809464722,-87.05399778036978,-87.05401427248174,-87.05407600269341,-87.05413886588867,-87.05418518975279,-87.05435600624814,-87.05438685744332,-87.05441827860191,-87.05441805817394,-87.05443366887243,-87.05448002313067,-87.05452694034621,-87.05452782353733,-87.05457443115826,-87.05467497222594,-87.05476857246616,-87.05486125821575,-87.05498604544681,-87.05517258266521,-87.05543556918538,-87.05587173401008,-87.05602696685827,-87.05627599520237,-87.05633780137281,-87.05658630737683,-87.0566794286088,-87.05685820648961,-87.0570832779996,-87.05712229555633,-87.05733988703614,-87.05745617894135,-87.05756460086401,-87.05775172105396,-87.05782197190396,-87.05783748473083,-87.05791550593867,-87.05792382724613,-87.05796178101089,-87.05796939539137,-87.05802396793976,-87.05803240895308,-87.05802514624219,-87.05807105137221,-87.05807893674492,-87.05806390562867,-87.05806394908353,-87.05804869723913,-87.05806382296115,-87.05807943286479,-87.05807875770698,-87.05811815461439,-87.05815726400525,-87.05826648843372,-87.05832857190127,-87.05838278580347,-87.05845282937719,-87.05848334716094,-87.05854656538904,-87.05863962970328,-87.05871684087752,-87.05884113158878,-87.05887312315201,-87.05901311972518,-87.05906005079062,-87.05913771947137,-87.05923858202753,-87.05938673359995,-87.05947876550123,-87.05966536141058,-87.05975857270623,-87.06010872047894,-87.06019435444362,-87.0602254313542,-87.06028694090652,-87.06038003052943,-87.06054351018057,-87.06084580527414,-87.06110987521541,-87.06156777748464,-87.06169314936969,-87.0621659603062,-87.06237645881848,-87.06252390722267,-87.06269408683119,-87.06290479796942,-87.06308317965625,-87.06342394777663,-87.06345581941389,-87.06354840019597,-87.06370395955956,-87.06386701710765,-87.06401420053686,-87.06417009451427,-87.06426238682488,-87.06451178140047,-87.06475967284517,-87.06566095013568,-87.0657779741843,-87.06618104761847,-87.06633618566924,-87.0665145591578,-87.06670938721859,-87.06695789787136,-87.0670193684217,-87.06719807388961,-87.0673148515953,-87.06739285428276,-87.06747797658447,-87.06757884690582,-87.06769470344909,-87.06785012729583,-87.06809105102974,-87.06842554910834,-87.06850262823097,-87.06875011096029,-87.06885993178872,-87.06891329999385,-87.06891350396256,-87.0690526803248,-87.06912276456093,-87.0692474021083,-87.06929339962295,-87.0693400369579,-87.06946387409945,-87.06951146441853,-87.06958049231578,-87.06968861076209,-87.06968848230777,-87.06970476212608,-87.06971966004215,-87.0697196050298,-87.06976593544343,-87.06979741416409,-87.06981290285,-87.06981197608813,-87.06982825842076,-87.06988978778541,-87.06988999052336,-87.0699054752809,-87.06990555007094,-87.06992137143141,-87.06992111162627,-87.06993613637694,-87.06995182379386,-87.06996810656146,-87.06996718239833,-87.06998266711668,-87.06998366847003,-87.06999789604923,-87.06999817144941,-87.0700131952526,-87.07001373401098,-87.07004457348512,-87.07004426060459,-87.07005981873597,-87.0701064812323,-87.0701213910605,-87.07013687531564,-87.07013661757054,-87.07017575118759,-87.07018368354478,-87.07021439754109,-87.07023002844856,-87.07026104321899,-87.07026047957437,-87.07027593459595,-87.07027616977904,-87.07029162476918,-87.07029125169895,-87.07027598644304,-87.07013574381186,-87.07013479326183,-87.07016616783221,-87.07022781832636,-87.07024298731895,-87.07025880421588,-87.07025858882336,-87.07024338096957,-87.07024368704755,-87.07025824753508,-87.07025819019755,-87.07027446775459,-87.07027408114602,-87.07028876877615,-87.07028875710571,-87.07030454541379,-87.07030392399112,-87.07032007303205,-87.07031921919874,-87.07033536974137,-87.07030428839715,-87.07030376887194,-87.07031932648694,-87.07033478007367,-87.07033415906879,-87.07035064103643,-87.07036534414013,-87.07038116071523,-87.07038056776484,-87.07039605010287,-87.07041147856651,-87.07047368752917,-87.07048834624653,-87.07048901134316,-87.0705044944707,-87.07051971672666,-87.07053599576861,-87.07055121963529,-87.07056670244314,-87.0706050478896,-87.07061245550989,-87.07065132346696,-87.07066601065816,-87.0706973788446,-87.07090643845906,-87.07104955590667,-87.071231627597,-87.07136454625429,-87.07156625951008,-87.07174409869481,-87.07194561290346,-87.07199266235426,-87.07205429629155,-87.07220865816942,-87.07229395896614,-87.07235618731299,-87.07240279943119,-87.07258805119342,-87.07263512781161,-87.07272831746819,-87.07275911873137,-87.07288370103605,-87.0729296780698,-87.07298368237326,-87.07303871485172,-87.07310060963363,-87.07313110561341,-87.07316252957446,-87.07339462018501,-87.07341122637115,-87.07348826939942,-87.07365129920481,-87.07382165432094,-87.0738676640251,-87.07388314236705,-87.07388380787245,-87.07397625461859,-87.07402202713043,-87.07403830394179,-87.07403817230838,-87.07406929827911,-87.07406872944871,-87.07408417868078,-87.07408484131507,-87.07410032369687,-87.07413811313585,-87.07413052793102,-87.07414601019028,-87.07417733382148,-87.07419360862256,-87.07425419616456,-87.07425512123001,-87.07426980460853,-87.07426966842061,-87.07440951544861,-87.07445607813987,-87.07465714428487,-87.07468829735792,-87.07475800856187,-87.07488147458621,-87.07492138227548,-87.07497432930816,-87.07511451218393,-87.07516933983138,-87.0752002962014,-87.07527000561066,-87.07547159565824,-87.07556463141287,-87.07556496079796,-87.07562604969691,-87.07574278448539,-87.07577417951285,-87.07587497211873,-87.07590579326063,-87.07596800547394,-87.07596833296932,-87.07602941805578,-87.07605272000845,-87.07621525553375,-87.07621558706487,-87.07629294416705,-87.07630875340254,-87.07655709361912,-87.07655662760351,-87.07662633105924,-87.07674339149749,-87.07683562219631,-87.07691327894328,-87.07691360701816,-87.07705250954523,-87.0770528408751,-87.07708379138326,-87.07714666071746,-87.07714539673196,-87.07722341017828,-87.07740953557126,-87.07757949426194,-87.07773499146521,-87.07785220993321,-87.07795219733126,-87.07801396646627,-87.07807583892318,-87.07807616981805,-87.07820071222319,-87.07824637009386,-87.07830893188724,-87.07830879235965,-87.07833924832028,-87.07838578838982,-87.07838611745075,-87.07840037335592,-87.07836995940796,-87.07837050922615,-87.07829204041116,-87.07828482382159,-87.07823755264761,-87.0782218312528,-87.07824512578085,-87.0782448534278,-87.07817505396748,-87.07813628284126,-87.07810492774853,-87.07809768556956,-87.07805820835007,-87.07802663009048,-87.07802649068979,-87.07801170508846,-87.07801156815079,-87.07794887714577,-87.0779028683916,-87.0779100976705,-87.07789419646714,-87.07787876762968,-87.07786286633413,-87.07784820559122,-87.07781625297719,-87.07781651581548,-87.07780141308736,-87.07780163633504,-87.07776959021945,-87.07777029193957,-87.07775441982245,-87.07773900302577,-87.0777390868862,-87.07764518980137,-87.07761403963872,-87.0775677330881,-87.07753640080543,-87.07747348780309,-87.07745838110471,-87.07742713513359,-87.07742656175142,-87.07741128055376,-87.07741147255008,-87.07737257733869,-87.07738012269759,-87.07734850423695,-87.07722454523348,-87.07717789522411,-87.07712292910216,-87.07703012177764,-87.07699939304702,-87.07692137039199,-87.07687503431976,-87.07682826182049,-87.07679671426881,-87.07674279363698,-87.07670332694546,-87.07659469211347,-87.0765794409583,-87.07658632852053,-87.0766187344056,-87.07683243662478,-87.07643949218954,-87.07637735284281,-87.0762917186979,-87.07622265356287,-87.07617600818106,-87.07612042929048,-87.07581067816248,-87.07556965485067,-87.0755699865051,-87.07549150387821,-87.07549157148455,-87.07542246997903,-87.07529712763514,-87.07518809873577,-87.07511864454126,-87.07507204027316,-87.07502478022192,-87.0748542538599,-87.07478464420339,-87.07471461423333,-87.07471494517104,-87.07466735009807,-87.07463715644563,-87.07458935396021,-87.07462071525988,-87.07465178703794,-87.07469831658953,-87.07482930500974,-87.07482175145951,-87.07483766172864,-87.0748845189913,-87.0749459717052,-87.07502432500453,-87.07510920452182,-87.07516393414818,-87.07522578056467,-87.07548226257771,-87.07552125762155,-87.07557448871638,-87.07561407528354,-87.07576975294629,-87.0759167530541,-87.07595525413903,-87.07597875357811,-87.07597853324818,-87.07595627477929,-87.07568360576404,-87.07565270564801,-87.07558283528347,-87.07545845739598,-87.07536510247125,-87.0751712270412,-87.07510128795782,-87.07510068805156,-87.07513180189746,-87.07517901968046,-87.0751940296002,-87.0752483765542,-87.07536475130703,-87.07540384749754,-87.07537970594079,-87.07534865277668,-87.07510128994794,-87.07497673129019,-87.07489961047422,-87.07488364708144,-87.07482865044197,-87.07482135617441,-87.0750147127218,-87.07489863969411,-87.07489072745651,-87.07489105669882,-87.07492200531902,-87.07491446379385,-87.07492115931706,-87.07496110103597,-87.07499189387985,-87.07506943246713,-87.07512353936761,-87.07513864341351,-87.07512385054939,-87.07514657820018,-87.07527098023105,-87.07529407758025,-87.07534161750999,-87.07536478769062,-87.0756202061806,-87.07565928583101,-87.07581442820398,-87.075829326217,-87.07584516786378,-87.07581444845438,-87.07573637612624,-87.07568993321516,-87.07566661661694,-87.0756282395743,-87.07567449554107,-87.07573660519897,-87.07579115603725,-87.07587545463838,-87.07609368137419,-87.07616301347851,-87.07631780043488,-87.07647384995995,-87.07668311618751,-87.07702363030012,-87.07717934811896,-87.07736596362936,-87.07752086963342,-87.07761372761526,-87.07770025817285,-87.07778487361135,-87.07780843471026,-87.07780810747937,-87.07778561179443,-87.07771539888167,-87.07764580284541,-87.07759154245642,-87.07755195975952,-87.07753666453141,-87.07754486758394,-87.07759926399184,-87.07771616375994,-87.07776937059558,-87.07783123180683,-87.07783155995713,-87.07788550537184,-87.07801824801828,-87.07820408568276,-87.07826599881776,-87.07839012695905,-87.07863849472317,-87.07891758345654,-87.07916630578175,-87.07935278404085,-87.07950788155966,-87.07972533227017,-87.0797558359246,-87.07981796880745,-87.07984927170007,-87.0799729585612,-87.08037702963523,-87.08047046042071,-87.08068711737241,-87.08078054898212,-87.08099879415252,-87.08130855734828,-87.08171185713061,-87.08186735571728,-87.08202292100763,-87.08230197074137,-87.08239460807101,-87.08264342213242,-87.08276812769333,-87.08304738360111,-87.08317077883261,-87.08332656331189,-87.08348122893543,-87.08369936981764,-87.08385485774066,-87.08388591030126,-87.08413393219065,-87.08419628792799,-87.08450666322571,-87.08463137125854,-87.0846931769392,-87.08472425827343,-87.08506514134409,-87.08509619386864,-87.08525165704783,-87.0852827376108,-87.08553128133754,-87.08559366715807,-87.08574858292644,-87.08577963568904,-87.08596618055203,-87.08627678504253,-87.08649373153433,-87.08702226302168,-87.08723996733372,-87.08742641085975,-87.08767441507021,-87.08783009412744,-87.0879226714893,-87.08795375346584,-87.0880476326507,-87.08814027494979,-87.0882020833467,-87.08829551988585,-87.0883889197313,-87.08857511708223,-87.08866845105754,-87.08904087554993,-87.08913423717652,-87.08931992947637,-87.08942146837197,-87.08954603268724,-87.08992700446316,-87.08997273816608,-87.09001987566174,-87.09020679924397,-87.09029930236791,-87.0903924188699,-87.09045448805706,-87.09067191317837,-87.09110712885025,-87.0917897317196,-87.0919765853194,-87.09247282505083,-87.09278427790275,-87.09312531555949,-87.093350674853,-87.09359154803012,-87.09377793683784,-87.0941823585792,-87.09458562245113,-87.09533182834505,-87.09571181372503,-87.09589041423416,-87.0962010233999,-87.09629461862799,-87.09651239531492,-87.09679166626547,-87.09710174073368,-87.09713409676354,-87.09775485546812,-87.0980035053521,-87.09803456090091,-87.09809637793732,-87.09812746237222,-87.09840713140676,-87.09856214656087,-87.09871763406936,-87.09912136573227,-87.09961764818244,-87.09980425884069,-87.09986607687117,-87.1001771914281,-87.10048764330946,-87.10117091800976,-87.10138741154834,-87.10158127689762,-87.10176060800912,-87.10222648790941,-87.10269174091648,-87.10323312931293,-87.10340599666732,-87.10352947944068,-87.10356110712134,-87.10384024690477,-87.10387187451082,-87.10433641786008,-87.10452290438191,-87.10467824031764,-87.10470906927328,-87.1048960333611,-87.10492686653181,-87.10502009110961,-87.1057652676442,-87.10591299892842,-87.10657181645938,-87.10671986352847,-87.1070529940059,-87.10726995440065,-87.10744867159161,-87.10758774404775,-87.10778961974188,-87.10804580960014,-87.1083168222122,-87.10839426241856,-87.10847199189645,-87.10872024597819,-87.10883653601194,-87.1089297518938,-87.10919248366615,-87.10935546185756,-87.10944803462564,-87.10955587922376,-87.10960273268154,-87.10967236744244,-87.10967268761,-87.10971824502326,-87.1097343377009,-87.10978848423197,-87.1098350223357,-87.10983406399492,-87.1099041629209,-87.10991897740537,-87.10993523471157,-87.10996582342958,-87.10996550170101,-87.11001154862669,-87.11001919578949,-87.11004914652744,-87.11004005985141,-87.11005551170194,-87.11004745787143,-87.11005547388736,-87.11003895424422,-87.11002294937501,-87.11005335429725,-87.11005336023645,-87.11006880626347,-87.11009189584499,-87.11013824584747,-87.11017264236077,-87.11017215865473,-87.11020306634987,-87.11025008256885,-87.11027969033186,-87.11028002545719,-87.11031075314327,-87.11031122440383,-87.11034181567288,-87.1103415221698,-87.1103802606243,-87.11041097503843,-87.1104727808388,-87.11047309622198,-87.11053521534586,-87.11058171751513,-87.11061964780134,-87.11063525192078,-87.11068110761957,-87.11074261341872,-87.1108584205693,-87.11085873405374,-87.11090587527512,-87.11090619217633,-87.1109517667963,-87.11115341640038,-87.11123862820716,-87.11161030083359,-87.11191292637956,-87.11219284528178,-87.11258006919532,-87.11278178368229,-87.11303689566836,-87.11313005044003,-87.11321510633093,-87.11350212548743,-87.11352540200943,-87.11351695225873,-87.11350167550954,-87.11352474392967,-87.11355565258303,-87.11355596838922,-87.11367256200697,-87.11410607845266,-87.11456290322712,-87.11491931002855,-87.11501342181882,-87.11513699263568,-87.11522235649075,-87.11546268109421,-87.1157114633134,-87.11594309552463,-87.11605215154277,-87.11614521041746,-87.11621492209339,-87.11626943403461,-87.1165948066669,-87.11681143870295,-87.11700585883536,-87.11701282101735,-87.117083409964,-87.11709892379052,-87.11711307704596,-87.11712983682769,-87.11712947213502,-87.11715973060946,-87.11717569465615,-87.11723629729829,-87.11723644205148,-87.1172530074477,-87.11725250705317,-87.11726793470218,-87.1172820869613,-87.11729805263658,-87.11729816639438,-87.11731313926035,-87.11734147696042,-87.11735958337803,-87.11740523974248,-87.11740462036721,-87.11744408213123,-87.11749757524096,-87.11752047689642,-87.11761378972362,-87.11769833374782,-87.1177760224394,-87.11779119334037,-87.11779099442531,-87.11780775292651,-87.11786866642929,-87.11789857703677,-87.11793854381365,-87.11793806046165,-87.11804648042211,-87.1184182704537,-87.11851840000656,-87.11853319920135,-87.11854030681877,-87.11856467844103,-87.11856351836343,-87.1186018717042,-87.11869384668134,-87.11874000128896,-87.11874875319737,-87.11873961534626,-87.11877111869534,-87.11878532242137,-87.11879353346323,-87.11878555373606,-87.11889343380467,-87.11889264210794,-87.11891633081322,-87.11892358028028,-87.11896973522416,-87.11899195839469,-87.11901470689409,-87.11910050542866,-87.11927056405517,-87.11932435504673,-87.11934872305,-87.11936318027851,-87.11941680021306,-87.11951072004811,-87.11950944298542,-87.11955686988128,-87.11978900370107,-87.12009872482012,-87.12025341184686,-87.12026917300889,-87.12035465018772,-87.12052452753743,-87.12058601183828,-87.12065595336027,-87.12069429323449,-87.12110600227182,-87.12119835179141,-87.12126786938039,-87.12130705482861,-87.12130634035589,-87.12135265559188,-87.12152314699551,-87.12152266301426,-87.12164698235718,-87.12167770653105,-87.12170857494638,-87.12173960874982,-87.12177050443813,-87.12181647267043,-87.1218857315109,-87.12196393343311,-87.12212636314695,-87.1221339130274,-87.12211048323493,-87.12212558645496,-87.12218010443827,-87.12223434421129,-87.1223269401827,-87.12228084982659,-87.122272552837,-87.1222966032875,-87.12243556996393,-87.12249701518924,-87.12254446310799,-87.12255922597515,-87.12257467138673,-87.12263684165339,-87.12269845420384,-87.12275966623466,-87.12282176363516,-87.12285245600479,-87.12288414238431,-87.12292985396185,-87.12298325022866,-87.12298300803556,-87.12300605926205,-87.1231537910259,-87.12318450879384,-87.12318416348036,-87.12315274715125,-87.12301298818622,-87.12292603329291,-87.12269349506994,-87.12258470388161,-87.12246793320757,-87.1224207628395,-87.12241374383876,-87.12242089543788,-87.12250620456041,-87.12249722652406,-87.12243554360917,-87.12244300422815,-87.12250472478456,-87.12253561543692,-87.12258177622934,-87.12262072393067,-87.12262082904762,-87.12257331235232,-87.12257268431722,-87.12254238051057,-87.12252606794385,-87.12250982091952,-87.12245546785159,-87.12245546502479,-87.12247090869202,-87.12247008043495,-87.12251652443183,-87.12254820749089,-87.12259496271233,-87.12268711949609,-87.12268694821303,-87.1226713578037,-87.12257887992516,-87.12248565772738,-87.12242278950377,-87.12242286862815,-87.12243765557598,-87.12245389580411,-87.12245323934489,-87.12246871174537,-87.12246881993001,-87.12248344128787,-87.12248409461206,-87.12241498094751,-87.12238326308891,-87.12236650134648,-87.12232807853228,-87.12231197153662,-87.12228090508384,-87.12226559351821,-87.12223370366776,-87.12223369862792,-87.12227198417126,-87.12224084691223,-87.12224813846125,-87.12227965085589,-87.12228677116187,-87.12221617014018,-87.12216948951432,-87.12215355677385,-87.12215227309342,-87.12213730915359,-87.12213641254463,-87.12205085526213,-87.12202673474216,-87.12200344705539,-87.12204220904573,-87.1220876809008,-87.12208753830238,-87.1221037452662,-87.12209514034296,-87.12210322290069,-87.12205660475229,-87.12193197231262,-87.1219243335231,-87.12198567670221,-87.12198629764285,-87.12196256131898,-87.12188533768251,-87.12185362335794,-87.12179101132693,-87.1217909765527,-87.12182185909138,-87.1218292895303,-87.12178226885712,-87.12172031343675,-87.12171247220651,-87.12174346761932,-87.12177355667656,-87.1217738651946,-87.12182047751972,-87.12178978655486,-87.12168878008231,-87.12165675336087,-87.12164965629997,-87.12161763049401,-87.12155598920857,-87.12149355987808,-87.12149387002343,-87.1214626688605,-87.12136866033262,-87.12129095714019,-87.12122900948108,-87.12105767523967,-87.12101134390797,-87.12096484250102,-87.1209643595454,-87.12088662879979,-87.12084026466718,-87.12083994847539,-87.1208093434313,-87.12069933758401,-87.12065300719222,-87.12054455970127,-87.12052925919993,-87.12027957847518,-87.12021780389379,-87.12016332553759,-87.12009291846036,-87.12008511055693,-87.12004655843053,-87.12002271523897,-87.11989122488828,-87.11986766124076,-87.11970488793357,-87.11958801603978,-87.11952609989497,-87.11942436146627,-87.1193942712935,-87.11940184902517,-87.1193850958486,-87.11936945504998,-87.11933839880575,-87.11930697293668,-87.11930614935912,-87.11935227484943,-87.11935193067728,-87.11928993398899,-87.11928243836577,-87.11930517334491,-87.11935927580744,-87.11942101555131,-87.11942053212597,-87.11948227189492,-87.11948258085653,-87.11952967436031,-87.11954463120971,-87.11961457225291,-87.11964616539899,-87.11968437342048,-87.11984004159137,-87.11996388750188,-87.12024255319622,-87.12045178219708,-87.12046966204664,-87.12041078816873,-87.12018597436803,-87.12011810424144,-87.12005656228339,-87.11993146710591,-87.11990041342435,-87.11974585152839,-87.1196215532848,-87.11957522737171,-87.11955967177116,-87.11957516540352,-87.11959058047754,-87.11962111995463,-87.11963735774717,-87.11971305336019,-87.11976777985051,-87.11976045540483,-87.11969803410105,-87.11972093788961,-87.1197513087139,-87.11981358460834,-87.11993047043305,-87.12008525039371,-87.12010835794993,-87.12008462465843,-87.12003824507588,-87.11994511464141,-87.11989078457637,-87.11987519953712,-87.1198598420531,-87.11986633927253,-87.11988180816701,-87.11988174659022,-87.1198978139539,-87.11990524639235,-87.11989758097978,-87.12000525681627,-87.12002875382817,-87.12001978040576,-87.12002689524857,-87.11999595169829,-87.11997968544647,-87.11996441412958,-87.11996375895231,-87.11991802735012,-87.11990193126029,-87.11991654419018,-87.119924222744,-87.11997811721602,-87.1199930417895,-87.11998540546629,-87.11996156596669,-87.11986906362152,-87.11984550788434,-87.11979086645979,-87.11974354695364,-87.11974382530644,-87.1197130528456,-87.1197200649454,-87.11971188522969,-87.11968097118752,-87.11967980216501,-87.11971130136197,-87.1197109604373,-87.11964122441293,-87.11960139933885,-87.11957014619546,-87.11955487593185,-87.1195546433221,-87.11961585476855,-87.11968566600699,-87.11970110711607,-87.11972445923665,-87.11972363032055,-87.11970736644001,-87.11970764718967,-87.11969189361591,-87.11968430790354,-87.11972182022066,-87.11974534239721,-87.1198153565113,-87.11994607104589,-87.12006265796056,-87.12005524716226,-87.12003940996311,-87.12000069938394,-87.11991578759194,-87.1198223871165,-87.11963604470525,-87.11957423456241,-87.11951242195703,-87.11948142925469,-87.11943380445317,-87.1194114670419,-87.11941143919728,-87.11942653203292,-87.11948045075918,-87.11952705068445,-87.1196342931207,-87.11972067927948,-87.11984344890658,-87.11993744016033,-87.1200840771572,-87.12015371855756,-87.12026158487262,-87.12053413785866,-87.12071928003509,-87.12083543243442,-87.12104498235757,-87.12119975609902,-87.12129289688662,-87.12144781852103,-87.12166460775728,-87.12178884690501,-87.12200500669886,-87.12219213175702,-87.12225348696096,-87.12234688298653,-87.12262558484754,-87.12296598778983,-87.12324504157337,-87.12327711085628,-87.12333917354513,-87.12346299528753,-87.12371163320604,-87.12405236736645,-87.12450488028033,-87.12435593231821,-87.12434097964309,-87.12458137757029,-87.12473563038138,-87.12482948130783,-87.12495361398778,-87.12507802945665,-87.12512076949464,-87.12533041025679,-87.12551650159251,-87.1256478825577,-87.12570186610277,-87.1258258134642,-87.12595035292958,-87.12613667219725,-87.12632268595389,-87.12647739756606,-87.12657014958678,-87.12672545190058,-87.12737633527867,-87.12743888929455,-87.12762501115043,-87.12768625454287,-87.12781008359039,-87.12793524168535,-87.12821449923858,-87.12833837800127,-87.12867973455337,-87.12905202905428,-87.12917580396041,-87.12929214085804,-87.12946301230824,-87.12958668246807,-87.12966397722666,-87.1298498953818,-87.12992719071124,-87.13004450287301,-87.13007498576854,-87.13022993780287,-87.13041567886846,-87.13050917350151,-87.13119131016562,-87.13143991556977,-87.13147093577244,-87.13153270045427,-87.13156372082311,-87.1316254812738,-87.13181212226358,-87.13190492910734,-87.13221514450625,-87.13243927007278,-87.13281193259344,-87.13318446760076,-87.13345568388189,-87.13370402848217,-87.13392138134994,-87.13404500143378,-87.13460334633065,-87.13510038821994,-87.1351776090461,-87.13593744378429,-87.13600004783565,-87.13637267051915,-87.13646447180329,-87.13720997072249,-87.13736545295329,-87.13759022892548,-87.13773668929505,-87.13776770646103,-87.13801606982841,-87.13876103647651,-87.1392880680437,-87.13962967821708,-87.13972253194851,-87.14040495866816,-87.1405598505298,-87.14065268587147,-87.14111858780245,-87.14178575205582,-87.14182469408985,-87.14184744433993,-87.14177720036506,-87.14169226957904,-87.14166830884328,-87.14171592915868,-87.14173818715352,-87.14180818095772,-87.14187742068175,-87.14190051456175,-87.1419170440908,-87.14190951568779,-87.14197922132837,-87.14200180270988,-87.14203310385706,-87.14206387015751,-87.14221921651645,-87.14246685065424,-87.14259170880487,-87.14274728658661,-87.1431495720293,-87.14327436131191,-87.14342933269552,-87.14383262771329,-87.14398716182157,-87.14411122590975,-87.14457712199456,-87.14504149797851,-87.14556877584991,-87.14577940583042,-87.14591073305246,-87.14643009268723,-87.1467010978881,-87.14691851973225,-87.14712828779579,-87.1472138382686,-87.14739937758327,-87.14753915594976,-87.14763166323148,-87.14775584195549,-87.14781894743085,-87.14786470920858,-87.14806673489275,-87.14812901688278,-87.14812934696116,-87.14826900604049,-87.14833108993352,-87.14841622931638,-87.14848583414066,-87.14851662112945,-87.14871046204981,-87.14874998834811,-87.14878029790384,-87.14874218947939,-87.1487186010355,-87.1486021633643,-87.14848166519793,-87.14855563286852,-87.14855587511215,-87.14858706491646,-87.14867194311326,-87.14882702103705,-87.14892859384628,-87.14897508534467,-87.14899057028336,-87.14897522952327,-87.14895113216141,-87.14888182735024,-87.14885819357217,-87.14882717511044,-87.14867948198733,-87.14862571068728,-87.1486415427332,-87.14871885975982,-87.14874972925043,-87.14875802283952,-87.14874268548321,-87.14875742201214,-87.14875817591545,-87.14874262476675,-87.14874193672594,-87.14875806973535,-87.14882839691731,-87.14889780089389,-87.14896759816678,-87.14902196787988,-87.1490681565422,-87.14909096485199,-87.14910639344299,-87.14909170103593,-87.14907551852393,-87.14901401760814,-87.14898271957253,-87.14895215194366,-87.14885907235661,-87.14876586625618,-87.14876537061394,-87.14883555078156,-87.14878070753957,-87.14877320716754,-87.14878120180271,-87.14881999899937,-87.14887415385567,-87.14913074333899,-87.14955624968675,-87.14980465829302,-87.15008406207598,-87.15011510654931,-87.15027058461058,-87.15030162926753,-87.15042552581325,-87.15045657050803,-87.15067384902588,-87.15079747645817,-87.15085983415925,-87.15089085064328,-87.15113917282376,-87.15148003645103,-87.15191407648288,-87.15200771474585,-87.152070076735,-87.15213187290985,-87.15228701097939,-87.15237955550823,-87.15250361289303,-87.15253462948569,-87.15278248055829,-87.1529529214032,-87.15299977628231,-87.15300055316153,-87.15291482436641,-87.15290676768451,-87.15291497290968,-87.1531633494702,-87.1532168417864,-87.15326367747535,-87.15340348923296,-87.15368233964148,-87.15386837846181,-87.15407821725675,-87.15430235366871,-87.15454339429972,-87.1546819059777,-87.1547984521868,-87.15507827065407,-87.15535655458491,-87.15544904007389,-87.15582202048839,-87.15603891400411,-87.15653586035673,-87.15690766787137,-87.15718695600498,-87.15783786546218,-87.15839574031449,-87.15864458972807,-87.15867563524732,-87.15957538546799,-87.15988526715525,-87.16000918706152,-87.16004020428035,-87.16020365026165,-87.16069177000162,-87.16087719554834,-87.16109425704352,-87.1613739416194,-87.16165332838017,-87.16174591093052,-87.16227313334933,-87.16236680486593,-87.16276984175701,-87.16308059493493,-87.16360722295188,-87.16373161361301,-87.16397944521819,-87.16423498842197,-87.16453810149474,-87.16500303750151,-87.16518823402727,-87.16549883280824,-87.16585643511814,-87.16601855828578,-87.16622848470892,-87.16632108757372,-87.16668608130573,-87.16690265257304,-87.16725116256752,-87.16743756669001,-87.16762370280927,-87.16776370059014,-87.16779421392373,-87.16788748532217,-87.16803538437803,-87.16808903720897,-87.16813555473369,-87.16813505146699,-87.16816588615335,-87.16816617686547,-87.16825921033021,-87.16844492114953,-87.16847604582806,-87.16850735450537,-87.16861571513451,-87.16868579977661,-87.16877898274655,-87.16892553730388,-87.16901126298103,-87.16929783033838,-87.16947648615697,-87.16953067778532,-87.16953096864789,-87.16957719164137,-87.16959289720046,-87.16970075373399,-87.16993388749894,-87.17012019090322,-87.17018950608463,-87.1703443708294,-87.1703837302569,-87.17056942456495,-87.17058513165148,-87.17064676266368,-87.17064705578866,-87.17075569995811,-87.17075599315736,-87.17080221052657,-87.17080249929388,-87.17087983879323,-87.17088012924367,-87.17098827189841,-87.17098776749852,-87.17101939200144,-87.17101888930551,-87.17111190598075,-87.17111219461435,-87.171259904108,-87.17153028539553,-87.17159329255477,-87.17167033577502,-87.17167062846561,-87.17180937676163,-87.1718410524737,-87.17190297160511,-87.17191896942683,-87.17194900185453,-87.17194929172811,-87.17201200600613,-87.17204259271874,-87.17207342044892,-87.17207371296355,-87.17232904013933,-87.17248438850325,-87.17267048443645,-87.17278621951117,-87.17288728917329,-87.17307377297494,-87.1732441102221,-87.1733134160737,-87.17336042081666,-87.17342985308822,-87.17349146565412,-87.1736392123791,-87.17380969883541,-87.17390995056225,-87.17396459810124,-87.17401160163953,-87.17402709073801,-87.17410420212283,-87.17430556419981,-87.17448396905006,-87.17476268496327,-87.17499636172144,-87.17520437628657,-87.17526695328169,-87.17602685232458,-87.17605738426192,-87.176081280163,-87.17607390594664,-87.17605774972195,-87.17597982528922,-87.17544475985754,-87.17539148914409,-87.17538355495675,-87.17540617032198,-87.17537598987383,-87.17534498836449,-87.17525142785419,-87.17515809106386,-87.17508122588997,-87.17503430998819,-87.17491777051146,-87.17476292769159,-87.17470095832243,-87.17459976538197,-87.1744529829277,-87.17433696148655,-87.1741581148532,-87.17412646121747,-87.17412669036153,-87.174111461314,-87.17406440941819,-87.1740027699082,-87.1739409790125,-87.17392571907165,-87.17392568843938,-87.17398666280683,-87.17398732036126,-87.17395683178711,-87.17388687424821,-87.17387843576338,-87.17384810594817,-87.17376217162753,-87.1737156914068,-87.17368526315636,-87.1736846995525,-87.17374686249697,-87.17373115352164,-87.17362263167009,-87.17351355720939,-87.17346673490326,-87.17342904659934,-87.173437034674,-87.17342093223931,-87.17321152278555,-87.17314172136558,-87.17312667530467,-87.17311912421684,-87.1731265939445,-87.17308781505899,-87.17304852900931,-87.17300225124744,-87.17300174938228,-87.17294036594689,-87.1728008186067,-87.17275449297699,-87.17270771510087,-87.17263809352363,-87.17264565879231,-87.17272262280912,-87.1727310379239,-87.17267629977744,-87.17256767780263,-87.17249046400497,-87.17245190885329,-87.17241287654687,-87.17241276949358,-87.17249026813555,-87.17264913903834,-87.17259863572504,-87.17242819797831,-87.17237414515108,-87.17231987608204,-87.17228055249399,-87.17230424613498,-87.1723657233528,-87.17242870853201,-87.17260611389254,-87.17266021756795,-87.17275326026197,-87.17318767347329,-87.17339708108356,-87.17344270058088,-87.17348225847142,-87.1734825475275,-87.17351333792928,-87.17351260657354,-87.17345090328122,-87.1730324269453,-87.17295554996701,-87.17290115387163,-87.17286239112158,-87.17276903537694,-87.17243635103361,-87.17235873238916,-87.17227245530295,-87.17222937101556,-87.172264760017,-87.17228046009593,-87.17228808232493,-87.17227341145622,-87.17220342642942,-87.17221912809613,-87.17230379928539,-87.17231177579092,-87.17234974057706,-87.17241203917766,-87.17306366277958,-87.17312566934177,-87.1732178870006,-87.17331092416705,-87.17337269416784,-87.17338916136302,-87.17340454086458,-87.17340437930213,-87.17337340050945,-87.1733426753464,-87.17269055357443,-87.17253574493566,-87.17239658575532,-87.17236611368311,-87.17231951218193,-87.17232754791863,-87.17234267751282,-87.17240444741421,-87.17251347298149,-87.17250526649647,-87.17235813703788,-87.17231920589074,-87.1723038468099,-87.17229621165792,-87.17231133922694,-87.17233413341437,-87.17242772696657,-87.17295472073729,-87.17300134737832,-87.17301696670606,-87.17303269883921,-87.17307932304786,-87.17317238824081,-87.17321852489225,-87.1732336542193,-87.17321031790155,-87.1732183150167,-87.17318683113091,-87.17315638262558,-87.17309434871879,-87.17306306765629,-87.17298613182949,-87.17295485088096,-87.17221103201175,-87.17214878610112,-87.17213268655024,-87.17212589921499,-87.17225716651592,-87.17266804798901,-87.17270672958824,-87.17272232507155,-87.17273731202098,-87.17283113175424,-87.17284625934846,-87.172857300155,-87.17231848433993,-87.17219469666034,-87.17216426419301,-87.17221829610941,-87.17222535035944,-87.17214018713457,-87.17214076880593,-87.17212490933862,-87.1721253535858,-87.17216390120115,-87.1722262353001,-87.17232647194379,-87.17238110212321,-87.17241986079196,-87.17241169282293,-87.17236559619873,-87.17229591420478,-87.17222628433878,-87.17220246683237,-87.17219460060429,-87.17224937134606,-87.17237305391529,-87.17243510346226,-87.17243499572481,-87.17235008487771,-87.17231127003234,-87.17224141558731,-87.17221816786997,-87.1722100903557,-87.17224862243975,-87.17223289109059,-87.17218741925124,-87.17210165490572,-87.17192398348331,-87.17179948193028,-87.17171475224443,-87.17168353862385,-87.17172982591319,-87.17186057814024,-87.1718531898028,-87.17183042357296,-87.17177662701721,-87.17172886822675,-87.1715667437354,-87.17154175513859,-87.17146599868693,-87.17117159293514,-87.17098563855826,-87.17090002240344,-87.17083829519302,-87.17065926496019,-87.17049719179764,-87.17036561750976,-87.17022612669535,-87.1701644834459,-87.17015582781907,-87.17017151353558,-87.17017238827435,-87.17014888002473,-87.17009488810724,-87.17006317374747,-87.17001650029911,-87.1699930220805,-87.16999298355721,-87.17002396216431,-87.17008694182503,-87.17017964004967,-87.17028751877913,-87.17038150968983,-87.1704507774252,-87.17076110374714,-87.17123287538621,-87.17134217971395,-87.17140378201263,-87.17141947760763,-87.17148954902005,-87.17157417079021,-87.17163566352751,-87.17174482384549,-87.17180658445525,-87.17183760873914,-87.17202304910401,-87.1720697451678,-87.17212418062599,-87.17211653148804,-87.17213201637711,-87.17220950931301,-87.17234184498213,-87.17249591191488,-87.1726712780263,-87.17283752912415,-87.17318628976415,-87.17327940316225,-87.17339449895938,-87.17371321503686,-87.17399145211708,-87.17430179577318,-87.17446514844112,-87.17454921851547,-87.17468206232957,-87.17482897601472,-87.17550988442231,-87.17557273979996,-87.17616107595654,-87.17619208753459,-87.17662584832367,-87.17675016696333,-87.17681248017446,-87.17702956781308,-87.17718440566267,-87.17721461049885,-87.17752534311003,-87.17755635461539,-87.17768042358573,-87.17780398540549,-87.17786575221471,-87.17820670121691,-87.17833102100091,-87.17845562865941,-87.17867222002501,-87.17901309825153,-87.17943105049429,-87.17945437063193,-87.17958476290198,-87.17997398690842,-87.18009776322698,-87.18056263642016,-87.18093471723044,-87.18105844566594,-87.18121291433835,-87.18152291932087,-87.1818954414972,-87.18223726329602,-87.18245345355541,-87.18276347306879,-87.18283261128944,-87.18288053539494,-87.18287968563911,-87.18290267640207,-87.18293366321976,-87.18299567237493,-87.18304269145048,-87.18311214650956,-87.1831815837788,-87.18324693197842,-87.18338367809595,-87.18341443685237,-87.18350717020118,-87.18391039153039,-87.18402217112674,-87.18424325770405,-87.18458336208357,-87.18471262917156,-87.1847033570465,-87.18467595106827,-87.18472618716828,-87.18477370280169,-87.18478642470866,-87.18484751526452,-87.18487192913138,-87.18491806383575,-87.18507308821324,-87.18541354937422,-87.18560747912304,-87.18565381641899,-87.1856551194474,-87.18560813279326,-87.18560851866097,-87.18563157527213,-87.18575522470695,-87.18577858243226,-87.18580932407025,-87.1858636701501,-87.18592541717972,-87.18598688753465,-87.18608067206877,-87.18637470843535,-87.18667746816074,-87.18679399459639,-87.18715754824997,-87.18725152884753,-87.18734420777193,-87.18752977564132,-87.18767038517076,-87.18770082957207,-87.18796457018716,-87.18831313066393,-87.18844448013957,-87.18856919692132,-87.18892567932892,-87.18901834943567,-87.18912716888053,-87.18915788628151,-87.1894994263466,-87.18970148806554,-87.1899723896462,-87.19004997243091,-87.19015849986017,-87.19057711469218,-87.19063878949936,-87.19065492996243,-87.19081030043269,-87.19090270811725,-87.19113540091011,-87.19122830527742,-87.19122802491523,-87.19127538961902,-87.19133752383604,-87.19143013812607,-87.19146222416805,-87.19152377696743,-87.19165509076858,-87.19171784949943,-87.19207437265847,-87.19247718160561,-87.19266286153957,-87.19284962741446,-87.19309011100914,-87.19324527132615,-87.19327622180109,-87.19333791853579,-87.19335326577149,-87.19347742774137,-87.19353932697157,-87.19360148090098,-87.19362520522773,-87.19363236748625,-87.19367174674296,-87.1937183172938,-87.19375738831528,-87.19375791936258,-87.19378857782115,-87.19385049798542,-87.19392866729854,-87.19402146695167,-87.19406833338161,-87.19411463523974,-87.19414586859685,-87.19414558490661,-87.19420808324803,-87.19420780043717,-87.19443285173999,-87.19455707723124,-87.19458754348157,-87.19488337942103,-87.19497533068323,-87.1952776098456,-87.19555714308886,-87.19571241653458,-87.19586772525186,-87.19608452467041,-87.19620829140015,-87.19664249584142,-87.19689058138404,-87.19695313453289,-87.19707692843214,-87.19732472564517,-87.19735573109963,-87.19744876636619,-87.19763508615013,-87.19797509949177,-87.19828625483541,-87.19844133806461,-87.19868918683903,-87.19941530228431,-87.19961917636287,-87.19980530253561,-87.19987528455415,-87.20005370961536,-87.20014596166099,-87.20017751843089,-87.20045668884916,-87.20074272862702,-87.2007965544569,-87.20085859358532,-87.20089015007063,-87.20095216163928,-87.20144770097183,-87.20147873427082,-87.20157178993843,-87.20166538268015,-87.20172770150309,-87.20197479843135,-87.20203763359413,-87.2020675998851,-87.2021922021799,-87.20234729191212,-87.20259569669039,-87.20268874103215,-87.2027195041486,-87.20287434135727,-87.20290589738939,-87.20337032726772,-87.20340160306216,-87.20367997002617,-87.20377325716859,-87.20399117226097,-87.20408317741813,-87.2041462545909,-87.2042385077584,-87.20426978374148,-87.2043938330206,-87.20442431601884,-87.20467216422401,-87.20513789279444,-87.20526221359928,-87.20544747387032,-87.20550923684873,-87.2055402701146,-87.20585143614403,-87.20594365194442,-87.20603697101282,-87.20659543452086,-87.20691319506763,-87.2070372061454,-87.20720813183711,-87.20732364721475,-87.20738613780496,-87.20758852201004,-87.20772816992516,-87.20785139247479,-87.20788242550145,-87.20809949029275,-87.20881278481728,-87.20955711926698,-87.20999103311567,-87.21011612527717,-87.21030166911919,-87.21039391806391,-87.21089064593276,-87.21095240984305,-87.21098341687886,-87.21107725920091,-87.21110746902757,-87.21160447586294,-87.21185206068553,-87.21206864367096,-87.21209940553189,-87.21237885304866,-87.21260448051386,-87.21275162614559,-87.21296799452533,-87.21309232555883,-87.21315464079217,-87.21346430472745,-87.21386728370665,-87.21402185323188,-87.21411542176739,-87.21440174081829,-87.21470397889389,-87.21510671451368,-87.21516902792854,-87.21520003491908,-87.21532411708507,-87.21541771307049,-87.21560331887598,-87.2157276465536,-87.21591404290228,-87.21594507724292,-87.21600577768949,-87.21613013147321,-87.21619244774155,-87.21656386811833,-87.21668849736784,-87.21684276563032,-87.21712270263357,-87.21746385851273,-87.21795928726654,-87.21827021025578,-87.21830124471269,-87.21842450529847,-87.21879667448931,-87.21898304434747,-87.21910657689874,-87.21944806291394,-87.21967263987779,-87.21972725469699,-87.2199441613175,-87.2202846198164,-87.22043921135239,-87.22066432801323,-87.22090508583749,-87.22099708731746,-87.22112116843263,-87.22136930351121,-87.22161741494187,-87.22189682952056,-87.22195835102093,-87.22208240661472,-87.22226850481556,-87.22261041270482,-87.22318344999665,-87.22358712295926,-87.22378137950004,-87.22396742351908,-87.22404453846302,-87.22420779131379,-87.22429392593432,-87.22438668693266,-87.22454909900905,-87.22454962242055,-87.2245965285335,-87.22461957556573,-87.22464310815285,-87.22464305520522,-87.22462844199877,-87.22456577732471,-87.22441882959239,-87.2243182881892,-87.22416340909344,-87.22405571606291,-87.22394673120799,-87.22379186744551,-87.22366776050931,-87.22354367644998,-87.22342065621049,-87.22329604896474,-87.22317168982769,-87.22295505332899,-87.22289300837673,-87.22286145309978,-87.22273766196668,-87.22267613759929,-87.2224664223253,-87.22238871781627,-87.22230383699483,-87.22222640186436,-87.22216515421501,-87.22209516438714,-87.22204873684977,-87.2220253975772,-87.22197153072592,-87.2219169135016,-87.22188587725617,-87.22188238099514,-87.22180263681889,-87.22176967410742,-87.22170015714845,-87.22163886321201,-87.22163832072687,-87.22157645968581,-87.22152270185069,-87.22146824076387,-87.22146819578363,-87.22139198814217,-87.22129881733099,-87.22125239062339,-87.22092769379987,-87.22088044656269,-87.22081860488133,-87.2207957660721,-87.22078055170738,-87.22078870255723,-87.22081964567309,-87.22088954533854,-87.22089762697527,-87.22092090199412,-87.22097600104081,-87.2210377297276,-87.22105310174551,-87.22128604376925,-87.22149542243385,-87.22164279032434,-87.22170481793528,-87.2221077994988,-87.22213881175499,-87.22220138578554,-87.22232518878113,-87.22263487693904,-87.22288384875054,-87.22313205287104,-87.22338792594694,-87.22351893028274,-87.22379841220835,-87.22399252837738,-87.22413149465656,-87.2242253720282,-87.22439512333,-87.22448001322441,-87.22466590509114,-87.2252551264714,-87.22567329692023,-87.22575125785154,-87.2258210058242,-87.22609996087267,-87.2263473527991,-87.22658814766494,-87.22668888032729,-87.22671249006868,-87.22720804546738,-87.22788976200729,-87.22844871667296,-87.22889072470305,-87.22919194116881,-87.22956502389165,-87.22975036608022,-87.23017646561883,-87.2308348750455,-87.23089028858897,-87.23123871908132,-87.23141717853548,-87.23172610258734,-87.23230733446702,-87.23246299031759,-87.23278041388498,-87.23355391395361,-87.23372442606228,-87.23379495261332,-87.23392597304358,-87.23420519868321,-87.23441492813092,-87.2346623225754,-87.23549939486531,-87.23640436622945,-87.23664486633102,-87.23689304460561,-87.2371022290334,-87.23753547219005,-87.23782132005771,-87.23808433706836,-87.23822434476746,-87.23822381610127,-87.23827074299251,-87.23834076295293,-87.23837842989755,-87.23837101811675,-87.23832410492625,-87.23827666159642,-87.2382143701692,-87.23812238100795,-87.23795856206441,-87.23774223377183,-87.23725310822903,-87.23690451295128,-87.23678019098938,-87.23654823169184,-87.23629930117529,-87.23608271793118,-87.23605168361179,-87.23540034508966,-87.23518987095203,-87.23509789837472,-87.23486488307451,-87.23457781284621,-87.23428903371951,-87.23429844246482,-87.23425127548217,-87.23411164100375,-87.23408755227649,-87.23408783055325,-87.23411090790071,-87.23426500229597,-87.23429656838091,-87.23432784746333,-87.23437321262141,-87.23437348087947,-87.23452884645451,-87.23459009574113,-87.23468394599053,-87.2347839110635,-87.23496977606736,-87.23507793742995,-87.23573673455341,-87.23588386635997,-87.23615429999774,-87.23623992409321,-87.23640214988487,-87.23645650451313,-87.23757176560835,-87.23794395711391,-87.23822258128821,-87.23840099110389,-87.23852480090866,-87.2386329603741,-87.23884186816757,-87.23903486145761,-87.23912763645491,-87.23923635439769,-87.23924429510083,-87.23929760792861,-87.23929814583717,-87.23923456719551,-87.23918766108473,-87.23915665151392,-87.23912539253146,-87.23912565626631,-87.23906363930625,-87.23903288847812,-87.23887704220894,-87.23887731975934,-87.23880734782485,-87.23876865360218,-87.23875967161187,-87.2387838069931,-87.23884557488125,-87.23887553005514,-87.23887579639633,-87.23893809334909,-87.23895293416525,-87.23906930572223,-87.23945604920699,-87.23996738044023,-87.24005988044952,-87.24012244153245,-87.24014577162153,-87.24019930672951,-87.24023058741564,-87.24033873189968,-87.24046995335725,-87.24059372707153,-87.24060937438365,-87.24067087311103,-87.24067113520012,-87.2407480017459,-87.24079518868369,-87.24079545426929,-87.24082540661536,-87.24085694998105,-87.24094972111773,-87.24099585085514,-87.2410273783083,-87.24107324318834,-87.24116655395321,-87.24121187220875,-87.24124314796605,-87.24127389742337,-87.24127336573235,-87.24132028949188,-87.24132055399006,-87.24136666890413,-87.24138231360182,-87.24178386451432,-87.2419386419453,-87.24205499751868,-87.24216367993716,-87.24229539758069,-87.24229566436476,-87.24237279710579,-87.2424804017115,-87.24249604400904,-87.24257369628849,-87.24258932576087,-87.24269694291297,-87.2427430473728,-87.24278943618434,-87.24280481221638,-87.24288299866988,-87.24292805248422,-87.24292883807693,-87.24288881841282,-87.24288060610367,-87.2428652301316,-87.24281910400215,-87.24280320553451,-87.24277882848295,-87.24278704789366,-87.24277193749153,-87.24266273955568,-87.24262377951602,-87.24260787328569,-87.24259277710271,-87.24258402139381,-87.24251458882107,-87.24251484975763,-87.24252969472207,-87.24255990769765,-87.24255937624515,-87.24254453620131,-87.24253552907014,-87.24249709533487,-87.24237333567714,-87.2423643217258,-87.24239532765264,-87.24252624156564,-87.24253285869626,-87.24250185727686,-87.24240141881799,-87.24238551910244,-87.24233887761224,-87.24230707997812,-87.24227633429774,-87.24226043327751,-87.24222968732877,-87.24222994861648,-87.24221300010223,-87.24216687992997,-87.24205770694817,-87.24202695838675,-87.24201106947179,-87.2419797940201,-87.24196389328922,-87.24196442763491,-87.24194931712826,-87.24191725624554,-87.24190214925282,-87.24190214782945,-87.24188704461503,-87.24188625167436,-87.24187114373602,-87.24187061368116,-87.24188598933981,-87.24190162362775,-87.24191698574302,-87.24193130360831,-87.24191619276152,-87.24190029413973,-87.24190056204628,-87.24188545590415,-87.24183856259954,-87.24174422365978,-87.24170632602096,-87.24154257382617,-87.24154282917408,-87.24152694106191,-87.24151182933025,-87.24149593017501,-87.24151156146797,-87.24155714505316,-87.2415574054672,-87.24153436354929,-87.24146387033926,-87.24139498702272,-87.24111489229594,-87.2410454697238,-87.24089019129525,-87.24083719843063,-87.24074339910396,-87.24050332308929,-87.2403949531499,-87.24027013764407,-87.24015381564524,-87.24008465575371,-87.23999140018715,-87.23991323022177,-87.23985891965167,-87.23977412570316,-87.23955683944851,-87.23948636188587,-87.23946304743581,-87.23945616510859,-87.23949406476083,-87.23953300840125,-87.23956454294972,-87.23981203119511,-87.23990503378346,-87.23998267774084,-87.24004441340573,-87.24002056467779,-87.23998983261529,-87.23995936068302,-87.23988967736679,-87.23976513916278,-87.23970286390399,-87.23954812254051,-87.23948612573653,-87.23940132926813,-87.23930063687388,-87.2391845892966,-87.23895857895562,-87.23891990064858,-87.23888915961062,-87.23888915793958,-87.23892758648157,-87.23901980666245,-87.23926067011196,-87.23938442029568,-87.23947743337663,-87.23949200247213,-87.2395850127116,-87.23967748334049,-87.23994139219045,-87.24000339798511,-87.24030227060237,-87.2406382724936,-87.24083912005648,-87.24095570792934,-87.24099438442933,-87.24106301955084,-87.24114065299398,-87.24126518199448,-87.24138892497815,-87.24176093059829,-87.24204735034392,-87.24215598668839,-87.24219387325006,-87.24230471952714,-87.2421941408214,-87.24207013957415,-87.24200892821229,-87.24185366797508,-87.24148085823806,-87.24135765446181,-87.24123338853929,-87.24117139445042,-87.24110938496993,-87.24104765146801,-87.24095464290583,-87.24092365279392,-87.24058291074053,-87.24052143214034,-87.24021064112026,-87.24017963757741,-87.23976127615984,-87.23959063327311,-87.23949763604099,-87.23937469439417,-87.23915742584533,-87.23906468629444,-87.23901779596312,-87.23894757030956,-87.23881589170416,-87.23881641833222,-87.23883998604884,-87.23886278139693,-87.23884772152439,-87.23849104645468,-87.23841288367065,-87.2383670477884,-87.23833577791845,-87.23825840204118,-87.23818898235642,-87.23811929425031,-87.23805781690595,-87.23804217555939,-87.2380419110299,-87.23796506757448,-87.23794942608197,-87.23791868352063,-87.23785692619697,-87.23785612993987,-87.23778802759716,-87.23773317607596,-87.23767116742391,-87.23757842706178,-87.23736115125078,-87.23726867591411,-87.23711340599128,-87.2368653835412,-87.23680417954763,-87.23666374691905,-87.23663327460733,-87.23664174762561,-87.23671118471404,-87.2368500307678,-87.23705115201129,-87.23714442299308,-87.23726842601364,-87.23729943202427,-87.23739243040657,-87.23753127422569,-87.23761685854585,-87.23762428340926,-87.23760839087601,-87.23750001690374,-87.23746928823822,-87.23741779346109,-87.23781034235499,-87.23787129179509,-87.23788718525705,-87.23796403292195,-87.2380101424896,-87.2381187852336,-87.23830478840782,-87.23839698978614,-87.23852205067,-87.23861426081197,-87.23869983428582,-87.23879204292635,-87.2388156359994,-87.23876158299187,-87.23865322243867,-87.23856844152702,-87.23845875367273,-87.2384052339572,-87.23838907938351,-87.23834245460348,-87.23824946544438,-87.23819541446092,-87.23813287743005,-87.23802477884034,-87.23785442041743,-87.23780751301395,-87.2378003595749,-87.23776855494067,-87.23774551259406,-87.23765356803987,-87.23752956726688,-87.23724977397762,-87.23718803984747,-87.23712577565955,-87.23700256804669,-87.23694056170368,-87.2368288729139,-87.23651799598403,-87.23645401442765,-87.23647699322143,-87.23647155115926,-87.23652681891609,-87.23666107226641,-87.23672307438463,-87.23686269206654,-87.23689370333443,-87.23690932766131,-87.23690137501116,-87.23690931870624,-87.23698616033134,-87.23707942754507,-87.23726516102623,-87.23742017924693,-87.23769890647364,-87.2378229047771,-87.23816415984845,-87.23828736284568,-87.23838063919166,-87.2384431606777,-87.23878309128284,-87.23882999601963,-87.2389309276704,-87.23909063247206,-87.23917946234674,-87.23913972291373,-87.23914025165791,-87.23917100270752,-87.23922478385177,-87.23929420100042,-87.23935646820665,-87.23947994372011,-87.23966593318163,-87.23985193564873,-87.23997646323623,-87.24013120089924,-87.24047192676001,-87.24065791188907,-87.24081264828214,-87.24100782961153,-87.241193133745,-87.24128532554137,-87.24144881627248,-87.24152697133114,-87.24155770133382,-87.24157334161377,-87.24163586901884,-87.24165096875565,-87.24169681321958,-87.24169627611067,-87.24168091106976,-87.24165811570556,-87.2416263349498,-87.24152591234105,-87.24132428298694,-87.2411695450923,-87.24110728463114,-87.24095228573503,-87.24076708715754,-87.2406115559701,-87.24034845746365,-87.24005278271726,-87.23999899473769,-87.23988240545877,-87.23975840798842,-87.23963573328832,-87.23954194741938,-87.23951094560066,-87.23926374459829,-87.23913946754017,-87.2389847483756,-87.23873700339388,-87.23866733040295,-87.23862069912438,-87.23856584697153,-87.23858147847739,-87.23861301840927,-87.23872138205391,-87.23876775363019,-87.23877517663158,-87.23877492517816,-87.23875903175198,-87.23875929741618,-87.23882052984847,-87.23890505001239,-87.2389365928055,-87.2390057408425,-87.23904470616421,-87.23904416952959,-87.23900497067355,-87.23891171046277,-87.23889714329306,-87.23890404687499,-87.23896551785168,-87.23899626479204,-87.23902752862394,-87.23908105040026,-87.23914331693646,-87.23917457942898,-87.23929036589153,-87.23928983560546,-87.23932057182107,-87.23938283407944,-87.23938230375582,-87.2394755665742,-87.23947503535572,-87.23955267608926,-87.239645405758,-87.23979270791331,-87.23982542347845,-87.24015680889377,-87.24048501860206,-87.2405281663215,-87.24059810609643,-87.24090066075973,-87.24111685502959,-87.24114785567238,-87.24130337076464,-87.24133437123919,-87.24139662108631,-87.24161361189789,-87.2417444899299,-87.24186052238721,-87.24192278811073,-87.24198450739887,-87.24220149682013,-87.24238721583532,-87.24260418695954,-87.24294463078515,-87.24306887975068,-87.2432236039355,-87.24340958918472,-87.24347104371326,-87.24356455946609,-87.24371902348916,-87.24385123165514,-87.24392063500648,-87.24393626344749,-87.24393600052417,-87.24388276137296,-87.24391269677727,-87.24393654509878,-87.24406001049783,-87.24412305737978,-87.24421604548492,-87.24436998262574,-87.24462618301717,-87.24475096705194,-87.24495947568828,-87.24502200254013,-87.2451613669073,-87.24522337245162,-87.24531636844959,-87.24537094877248,-87.24531663272948,-87.24530922716163,-87.24537836757807,-87.24535532875554,-87.24521598153723,-87.24511583390958,-87.24511610840702,-87.24515453169406,-87.24520141680446,-87.24523215668074,-87.24517812256536,-87.24492272631299,-87.24489941586654,-87.24478363858559,-87.24469038572657,-87.24462150692577,-87.24459845419645,-87.24458176603805,-87.24458945860341,-87.24470628945021,-87.2447762376331,-87.24486101284297,-87.24489227436695,-87.24509255523873,-87.24512382189472,-87.24530953549387,-87.24542583527854,-87.24545655763625,-87.24558054907487,-87.24564202387418,-87.24584444060162,-87.24592975907491,-87.24597559428842,-87.2459745193636,-87.24597965397086,-87.24580155639821,-87.24576884451226,-87.24579191262281,-87.24606715428716,-87.24614993435013,-87.24622388458435,-87.24622843138923,-87.24629778053171,-87.2462746084408,-87.24602330673476,-87.24608452680167,-87.24607738205584,-87.24599949101626,-87.24594596630412,-87.24587602303117,-87.24586066715514,-87.24586834331838,-87.24589192417569,-87.24600002649446,-87.24605433609179,-87.24624058862734,-87.24654261330083,-87.24665893064675,-87.24689951902766,-87.24705372879082,-87.24707757193028,-87.24703915620688,-87.24705401087223,-87.24708500726335,-87.24719417183805,-87.24721669438517,-87.2472551121013,-87.24727180772497,-87.24716293915068,-87.24708583787015,-87.24710219191832,-87.24724111150259,-87.24728719939483,-87.24738758781892,-87.24740375417048,-87.24745754127879,-87.24748853000438,-87.24754257569785,-87.24761968108697,-87.2477129565214,-87.24786080505685,-87.24792255947256,-87.24795435288397,-87.2480004542455,-87.24812366850523,-87.24834065745364,-87.24849617633551,-87.24862043418871,-87.24878179556634,-87.24881385905546,-87.2488361183342,-87.24880591019853,-87.24877466258718,-87.24868245484097,-87.24834067690881,-87.24821773657676,-87.24807810789159,-87.24804685465649,-87.2480479247743,-87.24806275979617,-87.24809296432798,-87.2482180281813,-87.24846603061467,-87.24857412423067,-87.24873850131817,-87.24888332852665,-87.24885336716197,-87.24885997837548,-87.24889946614353,-87.2489688740861,-87.24900703090205,-87.24905367413481,-87.24906241961114,-87.24904679943641,-87.24905450431083,-87.249038872038,-87.24890005863814,-87.24885370899278,-87.24879940763078,-87.24866463225418,-87.24900103758129,-87.24918728933547,-87.24986791435261,-87.2499614419156,-87.25008957412639,-87.25043142176264,-87.250586654196,-87.2507413478599,-87.25081895378263,-87.25085021615358,-87.2508963015333,-87.25094292069501,-87.25102052488334,-87.25105072029518,-87.25129811256718,-87.25144590334719,-87.25149250482073,-87.25170121278602,-87.25175576512908,-87.25180184741272,-87.25192579166379,-87.25197294002896,-87.25198722720914,-87.25204999176556,-87.25213501181564,-87.25221154210929,-87.25225843172878,-87.25242874513395,-87.25247561806147,-87.25253653444835,-87.25264536139524,-87.25270018466485,-87.2528469303609,-87.25290917260691,-87.25297086232756,-87.25306303574514,-87.25313295648763,-87.25326434380617,-87.25339676772208,-87.25345795660184,-87.25353555499889,-87.25372943896431,-87.25386955514622,-87.25406264783187,-87.2541942881909,-87.25431004948018,-87.25444909486654,-87.25451161019734,-87.25498382717289,-87.25513902303449,-87.25534823906638,-87.25538621405983,-87.25554551594173,-87.25563925222097,-87.25566971715909,-87.25591703945108,-87.25607272284527,-87.25611984946205,-87.25619743498207,-87.25629036656497,-87.25635258641236,-87.25643707082621,-87.25655437725682,-87.25663910134104,-87.25709718615775,-87.25722058349076,-87.25726718234317,-87.25743769998901,-87.25758516694873,-87.2576309668621,-87.25788750111836,-87.25788775939819,-87.25796481356612,-87.25801906913328,-87.25803439508836,-87.25810480630302,-87.25820489520389,-87.25832140555043,-87.25841434859184,-87.25846913653103,-87.25848447752244,-87.25854614101505,-87.2586088651863,-87.25870996412084,-87.25877952832319,-87.25888722293038,-87.2588882140319,-87.2589189028604,-87.25892680529522,-87.2589190863068,-87.2589031870027,-87.25890396707423,-87.25888806717722,-87.25888848524701,-87.25887338918163,-87.25886484340346,-87.25888123023765,-87.25889481936156,-87.25898221519319,-87.2589975405624,-87.25899856456134,-87.25901259742847,-87.25900592019731,-87.25902813479345,-87.25920728116202,-87.25925413459865,-87.25937034456656,-87.25940077298398,-87.25944754110955,-87.25953354498709,-87.25959517565792,-87.25961900170762,-87.25968782143384,-87.25985980244921,-87.25990533731807,-87.25990559465643,-87.25993630313575,-87.25993656046073,-87.25996805221608,-87.25996752624857,-87.25999901711366,-87.2599992744116,-87.26002919042985,-87.26004506584628,-87.26006060560066,-87.26008440308988,-87.26006105168284,-87.26009199285092,-87.26009931476848,-87.26013155908333,-87.26016268809984,-87.26014706069175,-87.26014677766527,-87.26013167157608,-87.26011601599419,-87.25999172872075,-87.25996917006592,-87.25998476361933,-87.26003079367925,-87.26005400055288,-87.26010078746046,-87.26013226308984,-87.26013198095299,-87.26016400764217,-87.2601631870053,-87.26019412714697,-87.26021735682961,-87.26024934593508,-87.26028056548694,-87.26031069859565,-87.26037310981025,-87.26037282916445,-87.26045828105353,-87.26047386882402,-87.26045942496951,-87.26041320852731,-87.26039729659736,-87.26038212607587,-87.26036622783181,-87.26036671136337,-87.26040534391123,-87.26054432507732,-87.26055253085077,-87.26048311110056,-87.26046799601347,-87.2605526778672,-87.26057616041453,-87.26064544244882,-87.26068459561553,-87.26073267817131,-87.26093246003477,-87.26101026689092,-87.26109605101082,-87.26117255176878,-87.26120430697559,-87.26120427915366,-87.26118837972676,-87.26118782853379,-87.26117353045035,-87.26115708128556,-87.2611114980416,-87.26107994539522,-87.26106483861145,-87.26094152959392,-87.26091054116482,-87.26091815074679,-87.26091017383304,-87.26089506986328,-87.26087967066454,-87.26086377178866,-87.26086428111743,-87.26084917902672,-87.26085646427016,-87.26084952416281,-87.26088068200841,-87.26087983571669,-87.26085009471568,-87.2608182858923,-87.26081853021397,-87.26080264519683,-87.2607721011654,-87.26075699484004,-87.26072569889861,-87.26072666514071,-87.26079620643495,-87.26080378935734,-87.26086593564851,-87.26086590800259,-87.26085001003341,-87.26083489637935,-87.2608197885169,-87.26074264631778,-87.26071983539758,-87.26071926871307,-87.2606962178638,-87.26069563956651,-87.26066543130493,-87.26066540432194,-87.26063466016168,-87.26063381217851,-87.26064996385709,-87.26064990988981,-87.26066552335477,-87.26065013792359,-87.26063443998937,-87.26061960663326,-87.26061957706062,-87.26060420522693,-87.2606043937005,-87.26058902185262,-87.26062807123715,-87.26061951617477,-87.26060468254873,-87.26058980804989,-87.26061994516745,-87.26065872381615,-87.26063668042275,-87.26055050258664,-87.26052792447173,-87.26055089186505,-87.26058210031871,-87.26064421545956,-87.26062869201445,-87.26064506987609,-87.26064475580829,-87.26062109889463,-87.2606218506284,-87.2606223639299,-87.26060673647751,-87.26059108321263,-87.26059126684463,-87.2606066120857,-87.26062273320493,-87.26065343495999,-87.26071504693876,-87.26074570625003,-87.26074618700558,-87.26076179863587,-87.26076195574296,-87.26077782393584,-87.26077805130501,-87.26079285482018,-87.2607930682158,-87.26074728257254,-87.26070110140259,-87.26068537733958,-87.26062437916906,-87.26060834234188,-87.26055447153759,-87.26056238925406,-87.26073283716575,-87.26073334741852,-87.26071770744878,-87.26068668589467,-87.26068641596673,-87.26077189428361,-87.26079464608901,-87.26076415809997,-87.26077155271334,-87.26084885767008,-87.26091134344792,-87.26094205437072,-87.26101169497025,-87.26105776420036,-87.26110487750152,-87.26115145502725,-87.26116706539955,-87.26116729114263,-87.26113575751596,-87.260957537243,-87.26091939045583,-87.26090373721087,-87.26091933394488,-87.26096538584459,-87.26108201079883,-87.2611756744475,-87.26117514790582,-87.26121403101381,-87.26122166485864,-87.26121366040354,-87.26143109732345,-87.26143897240473,-87.26145482210795,-87.26160960141317,-87.26166355646879,-87.26173331425316,-87.26179600736816,-87.26179572409718,-87.26181106369387,-87.26184198535485,-87.26188828898256,-87.26188854150972,-87.26199724005143,-87.26201256158608,-87.26210591967025,-87.26218361982514,-87.26221482291501,-87.26233837631133,-87.26234654665868,-87.26233090848186,-87.26233856976314,-87.26236976968084,-87.2624464835083,-87.26244675262059,-87.26250917172169,-87.2625395818517,-87.26253929794443,-87.26258689920498,-87.26258661608388,-87.26264797128776,-87.26269471643009,-87.26277325258864,-87.26281847355342,-87.26286555327344,-87.26286606004869,-87.26291207510104,-87.2629117917264,-87.26300459786142,-87.26314426119582,-87.26314451404609,-87.26317519245134,-87.26319105186828,-87.26322253855555,-87.2632537382197,-87.26340797509356,-87.26349340376321,-87.26357911738371,-87.26357882914094,-87.26371850398164,-87.26383383024012,-87.26421371117794,-87.26426819055482,-87.26435309533603,-87.26453909022561,-87.26469414067977,-87.26482536900615,-87.26525902500165,-87.26544504861161,-87.26558395294046,-87.26573105361516,-87.26582469036796,-87.26590194313894,-87.26601757451286,-87.26618903639779,-87.26634326925867,-87.26648272498832,-87.26659068413042,-87.26686930947125,-87.26705557710685,-87.26714816327522,-87.26720266945279,-87.26738023407594,-87.26742679609939,-87.26778256234198,-87.26817040530293,-87.26823285964083,-87.26828682328453,-87.26831724265104,-87.26841088155312,-87.26858020483056,-87.26869716195226,-87.2689136279121,-87.26906815337557,-87.2693081650537,-87.26952437437525,-87.26955534795083,-87.26961753403481,-87.27017569189438,-87.2702376385537,-87.27042263985007,-87.27073204769512,-87.2709178404413,-87.27097977355692,-87.27101126895819,-87.27110417551545,-87.27119629256012,-87.27123521715367,-87.27135121937617,-87.27141317402196,-87.27152143421596,-87.27159051574587,-87.27163731953659,-87.27167699898676,-87.27173786732637,-87.27183156568583,-87.27195463283236,-87.27205547152614,-87.27214043058171,-87.27232623819488,-87.27272825601483,-87.2727906924181,-87.27285236888805,-87.27300773048786,-87.27322474863166,-87.27334808824176,-87.27350317845794,-87.27356511145889,-87.27380254712371,-87.27418304196942,-87.27433822040923,-87.2744931248956,-87.27452462113882,-87.2746795098689,-87.27477138355927,-87.27498794750699,-87.27514387058399,-87.27536038055206,-87.27554542318357,-87.27570001082506,-87.27582387560135,-87.27591676893849,-87.27594746939359,-87.27601735144356,-87.27613353493879,-87.27628889659252,-87.27631959707179,-87.27638153106855,-87.27644320741011,-87.27656678029612,-87.27677586739686,-87.27693914887378,-87.27739509442237,-87.27785203156762,-87.27830076727382,-87.27840899114896,-87.27875771404887,-87.27922179211937,-87.27956261287163,-87.27970151425646,-87.2798022642467,-87.28002708701582,-87.28034428889727,-87.28042126494474,-87.2805611627485,-87.28076265114454,-87.28089427819042,-87.28095581733298,-87.28097948332564,-87.28097070723729,-87.2808937841593,-87.28089427850568,-87.28090962001855,-87.28090926924048,-87.28095646835757,-87.28097100477549,-87.28097096466185,-87.28100213090988,-87.28100262417462,-87.28103354219191,-87.28112564800516,-87.28114173344619,-87.28114242176511,-87.28115691764989,-87.28117224566469,-87.28117275532732,-87.28120367168013,-87.28124218131035,-87.28132852772163,-87.2813588437042,-87.28137417386252,-87.28140519318126,-87.28142078380148,-87.28142122169773,-87.28143655247126,-87.281436457485,-87.2814517874385,-87.28145109571177,-87.28146723057471,-87.2814671743522,-87.28148251495128,-87.28148369432358,-87.28149769604165,-87.28149843602171,-87.28169991186057,-87.28179269938573,-87.28181571738295,-87.28187737103568,-87.28200096813879,-87.28250576220783,-87.28255911703415,-87.28255143356574,-87.28260081286385,-87.28218757681515,-87.28184715189057,-87.28162983652611,-87.28150623454036,-87.28138316298207,-87.28132099227518,-87.28119692621853,-87.28113474394991,-87.28098047146516,-87.28093414481206,-87.28091825291435,-87.28091056670111,-87.28094123818407,-87.28108885491021,-87.28114282269844,-87.2811814332519,-87.28122102308259,-87.28120484127471,-87.28113595462405,-87.28115813443495,-87.28129065409286,-87.2814136152912,-87.28147652644269,-87.28151404479541,-87.28156922098084,-87.28156133689757,-87.28154513385989,-87.28150722487402,-87.28137631520909,-87.2813905607794,-87.28140722289626,-87.28143022685526,-87.28150009316444,-87.28156124832583,-87.28161554132902,-87.2819863636493,-87.28197053107355,-87.28189336616698,-87.2818091108752,-87.28179322864408,-87.28177820221396,-87.2817777097724,-87.28179334417152,-87.28183917437937,-87.28192468972836,-87.28207977914064,-87.28217163275838,-87.28230395362775,-87.28243491840389,-87.28248094053593,-87.28251240117675,-87.28252823501954,-87.28259059627901,-87.28263655119608,-87.28265236995428,-87.28268332809266,-87.28271418417228,-87.28272873156898,-87.28276017994563,-87.28280711683142,-87.28280745807386,-87.28282274345723,-87.28282238827302,-87.28285403909055,-87.28288504644981,-87.28289252462518,-87.28288523483455,-87.28290001587177,-87.28290020718408,-87.28294695166434,-87.28302385420996,-87.28305495943034,-87.28308666161844,-87.28319478045343,-87.28340340939783,-87.283589086245,-87.28365094904792,-87.28376704934225,-87.28392915280163,-87.2841075638035,-87.28419270832613,-87.28423179425718,-87.28427043107543,-87.28427003083409,-87.28428535486822,-87.28428587809063,-87.28427049559411,-87.2842704403169,-87.28425505857066,-87.28425474957412,-87.28423964873612,-87.28422446945093,-87.28420882760724,-87.28419368593612,-87.28417779119405,-87.28417828238945,-87.2841464810361,-87.28414670428016,-87.28413161881141,-87.28413131845002,-87.28411568992998,-87.28411617944928,-87.2840997596273,-87.28410077876222,-87.28408488399624,-87.2840846868195,-87.28413056244239,-87.28414669072292,-87.28414639047308,-87.28416250818094,-87.28416216238058,-87.28417852421777,-87.28417713016803,-87.28419295826656,-87.28417782280212,-87.28417801188067,-87.28416238383728,-87.28416178133506,-87.28414694477796,-87.28414684590263,-87.28413146465867,-87.28413193554778,-87.28411605474639,-87.2841154871889,-87.28410040036697,-87.28410062541022,-87.28406245937018,-87.28399994066746,-87.28396842890726,-87.28384550916492,-87.28376811697711,-87.28372178544312,-87.28365926570525,-87.2836285477749,-87.28355941294814,-87.28349029013627,-87.28345824703182,-87.28314921587696,-87.28299453128979,-87.28293334621743,-87.2828866930486,-87.28282470528688,-87.28273243469997,-87.28267071229594,-87.2825301111769,-87.28243791644543,-87.28239899711046,-87.28236799127829,-87.28233745796655,-87.28224498850777,-87.28207422059154,-87.28204426808178,-87.28204396834198,-87.28199752923116,-87.2819977344756,-87.28196613019313,-87.28195843512115,-87.28198238727974,-87.28204390170727,-87.28204384946366,-87.28205918544174,-87.28206741623023,-87.28205996545404,-87.28207500247703,-87.28207440284584,-87.28222942771413,-87.28229996593251,-87.28246223598919,-87.28257027806879,-87.28266293990183,-87.28264759967153,-87.282617032646,-87.28261692419323,-87.28260129840645,-87.28260144975764,-87.28258607128758,-87.28257841308039,-87.28258654371641,-87.28264065846025,-87.28280292190547,-87.2828496537656,-87.28288020415584,-87.28285708572939,-87.28269477858346,-87.28269523050992,-87.28275643602842,-87.28278698215101,-87.28285007717624,-87.2828653547908,-87.28286500079041,-87.28284981298656,-87.28271080807731,-87.28268018584353,-87.28260271204437,-87.28258726374426,-87.28262608793074,-87.2827030266471,-87.28282595188311,-87.28315796514721,-87.28319321635956,-87.28320989002867,-87.2831368597714,-87.28308283354892,-87.28303649740327,-87.28296689973405,-87.28290472738789,-87.28274946980224,-87.28253311868484,-87.28240906378541,-87.28228577139444,-87.2822307323771,-87.28217694818618,-87.28210006258485,-87.282084661095,-87.28200757213165,-87.28200781697481,-87.28196014258955,-87.28196038633345,-87.2818528484799,-87.28183689650305,-87.28189923839101,-87.28189948240811,-87.281999641076,-87.28213182519312,-87.28221640190431,-87.2823170375984,-87.28240978351894,-87.2825028470549,-87.28264212109052,-87.28273518294604,-87.28284300518921,-87.28312931279318,-87.28357824576223,-87.28370170132504,-87.28387938263677,-87.28415830101905,-87.28425111909148,-87.28432041489376,-87.2845290586412,-87.284838743184,-87.28490140398473,-87.28539542938928,-87.28542638757833,-87.28558135888699,-87.28561231468029,-87.28589158827612,-87.28595241961229,-87.28623037810033,-87.28626133465029,-87.28685035917933,-87.28703552496135,-87.28725190345152,-87.28787067298526,-87.28830325284439,-87.28848977551218,-87.28886051808043,-87.28893039096356,-87.28935601416896,-87.28944075061973,-87.28944768832623,-87.28940197176416,-87.28937103582437,-87.28922422994675,-87.28931501473562,-87.28916952632478,-87.28927060861618,-87.2892939095087,-87.28927834777885,-87.28912418856194,-87.28898433541011,-87.2889685083899,-87.28897672207464,-87.28900028887043,-87.28907649547831,-87.28910743854237,-87.28915450841863,-87.28963406589207,-87.28969593295388,-87.2897892865746,-87.29009827239122,-87.29040754666089,-87.29053136086254,-87.29075519756465,-87.29084778013257,-87.29096389521509,-87.29129738686608,-87.2913894074744,-87.29149011591582,-87.29158319140436,-87.29173822224531,-87.29207796845375,-87.29220203158368,-87.29263501807512,-87.29282072204576,-87.2929754790482,-87.29340882513947,-87.2935323983215,-87.29359405569181,-87.29362501247739,-87.29374912200893,-87.29378006558471,-87.29381025321577,-87.29393408952045,-87.29405794688851,-87.29422867707999,-87.29443729000626,-87.29450640672495,-87.29456050473696,-87.29459927427402,-87.29463027604012,-87.29484714582352,-87.29515555430585,-87.29534187020928,-87.29552789872236,-87.29563561484714,-87.29593738634514,-87.29607664706135,-87.29610819357539,-87.29609974539775,-87.29606962828356,-87.29603815383012,-87.29597625177425,-87.29560476664975,-87.29551218569061,-87.29548865090895,-87.29545085415924,-87.29543505779147,-87.29544257211674,-87.29548782595413,-87.29552035963556,-87.29549591833053,-87.29524053259304,-87.29510126957716,-87.29486671548463,-87.29482084802156,-87.29471688942704,-87.29472385843901,-87.29475071499749,-87.29495296412613,-87.29498662065357,-87.2950472031813,-87.29548132678096,-87.29554296816112,-87.29579084097794,-87.29585249205698,-87.29597556628813,-87.29620799309092,-87.29628500559885,-87.29654047278218,-87.2965788775133,-87.29662632978716,-87.29662639914399,-87.29666432448502,-87.29675725956666,-87.296795665432,-87.29679648096017,-87.29678063486492,-87.29671875331456,-87.29668754416147,-87.29660234770179,-87.29653300750549,-87.29647083876178,-87.29645525854815,-87.29647910299182,-87.29655643133763,-87.2966101756994,-87.29664141328286,-87.29670328966083,-87.29680403423556,-87.29692750652043,-87.29694999767625,-87.29733665100429,-87.29748488513437,-87.29754630694754,-87.2979016764622,-87.2979400802357,-87.29799474238827,-87.29797138059342,-87.29799478158567,-87.29820418300294,-87.29838908365441,-87.29851256226647,-87.2985287472461,-87.29854362094034,-87.29851297467967,-87.29842860312471,-87.29840484070068,-87.29840486449928,-87.29842022050877,-87.29848187501393,-87.29860593878232,-87.29868293194318,-87.29888472042374,-87.29894586946887,-87.29907051109247,-87.29947267063156,-87.29978120809017,-87.29981322401206,-87.29987514369166,-87.29999792375102,-87.30021436385033,-87.30031546042483,-87.30036921290356,-87.30036792572444,-87.30030015835452,-87.30014535583749,-87.30008351306455,-87.29997469887319,-87.29988930566792,-87.2998526264286,-87.29976584435244,-87.29978122147594,-87.29976568070819,-87.29963501305535,-87.29951085435708,-87.29946465434369,-87.29942302270699,-87.29909321707748,-87.29906991821373,-87.29897784511921,-87.29893052242362,-87.29891494213625,-87.2989308595873,-87.2989772111688,-87.29910108995844,-87.29928659955593,-87.2993485079208,-87.29937895269941,-87.29947976407877,-87.29964984730185,-87.29971225671881,-87.29978918257315,-87.29985098809499,-87.2999057106027,-87.29998317462722,-87.30004454260484,-87.30013741024207,-87.30038564869268,-87.30055499837674,-87.30060161579729,-87.3005712096529,-87.30053977228427,-87.30055491318386,-87.30058561856569,-87.30067906730625,-87.30071029460606,-87.30074121582469,-87.30090369446839,-87.30096560302326,-87.30104238786411,-87.30105009173452,-87.30104245456083,-87.30098879966528,-87.30101984923932,-87.30101169529389,-87.30084911370234,-87.30069443626446,-87.30047764859543,-87.30041548934416,-87.30029275238216,-87.30016841806221,-87.29992129843075,-87.2998048783686,-87.29957250960831,-87.29942585104915,-87.29934118695014,-87.29931710768444,-87.29928672779688,-87.29930185439204,-87.29936381124716,-87.29939450760543,-87.29961076654048,-87.29973466114311,-87.29998241207844,-87.30010674586534,-87.30026123705304,-87.30066304937574,-87.30075667543176,-87.30098071423836,-87.30122111329214,-87.30128220305991,-87.30152955100657,-87.30159146023506,-87.30171551399549,-87.30177767784649,-87.30196311251375,-87.30226462545164,-87.30240371828447,-87.30251921282706,-87.30264391976512,-87.30269774113195,-87.30271346815248,-87.30272879978887,-87.30272039674287,-87.30268966001276,-87.30251990120486,-87.30246557971617,-87.30247344501959,-87.30259735507016,-87.30265101891774,-87.30290590259767,-87.30312280979183,-87.30324663688724,-87.30345536246253,-87.30355639862594,-87.30360292337996,-87.30374963690662,-87.30384275514007,-87.30389702595436,-87.3039195665306,-87.30391177422035,-87.30392743286187,-87.30397427353407,-87.30400523543577,-87.30403512383779,-87.30412076401188,-87.30426052509573,-87.30436100105193,-87.30440723715908,-87.30446142619905,-87.30463888549096,-87.30482485903582,-87.30498646141844,-87.30513396431158,-87.30523473186764,-87.30526542762372,-87.30527286965336,-87.30508074498988,-87.30499435644646,-87.30487857695044,-87.30487120507883,-87.30493293004895,-87.3050109549676,-87.30519585716749,-87.30530480332219,-87.30547482451726,-87.30553671912331,-87.30556767936987,-87.30560578854492,-87.30563705142858,-87.30575296607815,-87.30577598428015,-87.30583045234042,-87.30591530848524,-87.30595412732609,-87.3059462317658,-87.30597709531961,-87.30601647030822,-87.30603092280951,-87.30602361062172,-87.30603099601588,-87.30606266200637,-87.30619371006473,-87.30631741228068,-87.30644906900416,-87.30661937695365,-87.30669683019089,-87.30678886281075,-87.30688145051712,-87.30711770499251,-87.30728410541154,-87.30733061405202,-87.3074157297392,-87.30756263941156,-87.30770209549662,-87.30776562396758,-87.30767119007169,-87.30764021380011,-87.30746957722081,-87.30739229140609,-87.30736977151044,-87.30735437491546,-87.30734626903667,-87.30737649348177,-87.3073224112612,-87.30732263183228,-87.3073075293602,-87.30730719380134,-87.30729209140999,-87.30729193724861,-87.30734621853482,-87.30739240303049,-87.30743828454243,-87.30750057443403,-87.30750082522152,-87.30754756983589,-87.30754621785269,-87.30765550240996,-87.30765573739272,-87.30768636157843,-87.30770931013005,-87.30770922443187,-87.30772453540389,-87.30770881682241,-87.30769342037507,-87.30769412629641,-87.30766333369715,-87.30768602847239,-87.30775507332132,-87.30775554492679,-87.30777087220254,-87.30776322888848,-87.30777164092378,-87.3078091075389,-87.30793401610703,-87.30793345961914,-87.30797940775636,-87.30797964516758,-87.30808782199286,-87.30808726373026,-87.30811867857946,-87.30811892903814,-87.30816510962904,-87.30832009877602,-87.30832033175975,-87.30841246213564,-87.30853609540232,-87.30859077601554,-87.30879163944428,-87.30884576072809,-87.30885338103154,-87.30882229459147,-87.30886046215029,-87.30896189060901,-87.3090699714856,-87.30933199885747,-87.30942580621067,-87.30962610623567,-87.30988139236332,-87.30999764235905,-87.31031474500375,-87.31046170187672,-87.31054628899143,-87.3107012600329,-87.31084038959659,-87.31094113792849,-87.31096412613105,-87.31100293147372,-87.31099538821141,-87.31101093256754,-87.31109520955594,-87.3111501786739,-87.31143567383039,-87.31171454750685,-87.31224941175682,-87.31241856693346,-87.31246427033444,-87.31249512060677,-87.31253369050137,-87.31271151797959,-87.31307515901035,-87.31319093128452,-87.31350099816689,-87.31365485973505,-87.31414983076832,-87.31439701868666,-87.31479942950698,-87.31504665004421,-87.31517068633127,-87.31523281196444,-87.31554170387922,-87.315727122555,-87.31616081568852,-87.31622272260725,-87.31659322784876,-87.31665535391772,-87.31684100541128,-87.31690289915085,-87.3171192204012,-87.31718111492842,-87.31733609021433,-87.31749083277907,-87.31752150518896,-87.31777675548837,-87.31795474213456,-87.31838765088868,-87.31844977565416,-87.31879039754136,-87.31903735911203,-87.31960205713725,-87.31974875653114,-87.32011988003261,-87.32027480126473,-87.32058363506279,-87.32069992446296,-87.32081566603843,-87.32094639833461,-87.32100923027988,-87.32108610949464,-87.3213731275825,-87.32151950785753,-87.32161248348957,-87.32164254209067,-87.32167352370348,-87.32172047179662,-87.321751495304,-87.32174234217717,-87.32175894501154,-87.32178097457229,-87.32182838214996,-87.32187401533663,-87.32190507787375,-87.32193536796645,-87.32196703851561,-87.32198234074818,-87.3220286374234,-87.32202853479528,-87.32205223944814,-87.32208206535832,-87.32213709508017,-87.32213632925914,-87.32216730821366,-87.3221670146287,-87.32218279042164,-87.32218285890649,-87.32216712399591,-87.32215148617026,-87.32215194713108,-87.32213631532203,-87.32213677452238,-87.32212113825632,-87.32212001604434,-87.32210517185291,-87.3221048398769,-87.32208920728034,-87.32208966642305,-87.32205884476075,-87.32201223791229,-87.32198053664081,-87.32198870785722,-87.32196572080338,-87.32195749070243,-87.32196478804643,-87.32191925387319,-87.32191850374967,-87.32188759301944,-87.32188828408962,-87.32187264935826,-87.3218719882473,-87.32185635120825,-87.321856752543,-87.32187126219864,-87.32187173459664,-87.32191834635015,-87.32203389949247,-87.3220966182167,-87.32222009499284,-87.32226657599308,-87.32238982049714,-87.32242020609714,-87.32250625189765,-87.32303954392283,-87.32327106011915,-87.32353383984108,-87.32368801306606,-87.32380342991192,-87.32394342861055,-87.32417504007638,-87.32448490364486,-87.32482374348724,-87.32504049108562,-87.32520294397365,-87.32527945585443,-87.32533400654205,-87.32534999342595,-87.32534900175131,-87.32533467144155,-87.32533366660168,-87.32531826147444,-87.3253184146505,-87.32540345727472,-87.3254186657977,-87.32544927770347,-87.32546503306239,-87.32554201710174,-87.32565027694412,-87.32594482362741,-87.32601374205312,-87.32606758846532,-87.3261459263594,-87.32628445844961,-87.32648531515343,-87.32670888163051,-87.32691757991832,-87.3270567909842,-87.32705622699567,-87.32708763160359,-87.327087858664,-87.3271339944725,-87.32714976009309,-87.32718036938935,-87.32721879529744,-87.32721926755812,-87.32723456417334,-87.32725712740888,-87.32733464153206,-87.32737318846847,-87.32740408829895,-87.32745830379285,-87.32753556338754,-87.32758190158695,-87.32759790833786,-87.32764476997323,-87.32767570187265,-87.32774492879742,-87.32779833926122,-87.32782930368673,-87.32792241047667,-87.32796893274811,-87.32799132387737,-87.32798362631895,-87.3276905811184,-87.3278141857826,-87.32789898157941,-87.32794513782765,-87.32794492109984,-87.3279601243522,-87.32801431365299,-87.32804593883475,-87.32815305938702,-87.32830837376358,-87.32849381439384,-87.32849245452873,-87.3285546763327,-87.32863154312642,-87.32869376328412,-87.32869400288052,-87.32875599473435,-87.32881766292989,-87.32891050001538,-87.32897181762823,-87.32903404691326,-87.32910353927886,-87.32924203575053,-87.32932003023524,-87.32931867348762,-87.32935005639514,-87.32935028505753,-87.32955079645509,-87.32968304824087,-87.32976749001683,-87.32979867766001,-87.32984401117008,-87.32984423876995,-87.3298758605206,-87.32998454158908,-87.33008405007251,-87.33019999561374,-87.33026175763379,-87.33040092254615,-87.33056276855268,-87.33079498639543,-87.33103422151643,-87.33118927168749,-87.33118870520346,-87.33122008531105,-87.3312658847138,-87.33126554527098,-87.33128163027716,-87.33129682565104,-87.33129649946974,-87.3313275543252,-87.3314667280863,-87.3315134149269,-87.33151284745513,-87.33159013910389,-87.33160565976173,-87.33169111127265,-87.3317143404481,-87.33179148140243,-87.33196852053214,-87.3320382088156,-87.33212286970199,-87.33223880460385,-87.33235484162373,-87.33266364498952,-87.33277979582557,-87.3330578487639,-87.33323587949182,-87.33364560097587,-87.33398470185688,-87.33425572104176,-87.33471999141254,-87.33513179070432,-87.33528373677065,-87.33533738407156,-87.33623367580513,-87.33642696388034,-87.33654381151881,-87.33700735475531,-87.33714647745961,-87.33719308900159,-87.33720872244209,-87.33717762097561,-87.33719274514803,-87.33722397212601,-87.33731677860068,-87.33774867186848,-87.33821319854916,-87.33849098697019,-87.33856078938834,-87.3386768209518,-87.33892454731053,-87.33901710521873,-87.33904775059264,-87.33910963008567,-87.33969743195499,-87.33985181862099,-87.34006881393545,-87.34062472157125,-87.34105709156096,-87.34120427195319,-87.34142092162547,-87.34166815898816,-87.34186154175502,-87.34200788046826,-87.34240166242822,-87.34257988868768,-87.34277327737819,-87.34311212121955,-87.34319719106659,-87.3431974134612,-87.34327489358012,-87.34336675981959,-87.3434517004351,-87.3435372116648,-87.34356789276107,-87.34364467725274,-87.34370592824558,-87.34378395709442,-87.34379845255934,-87.34381441727513,-87.34382970382114,-87.34389056973696,-87.34390586898785,-87.34390631387248,-87.34393712219608,-87.34396859632128,-87.34401412145651,-87.34404559513555,-87.34407640304181,-87.34412225869085,-87.34416800253867,-87.34416845736371,-87.34419948751054,-87.34421440397574,-87.3442296894611,-87.34423013238776,-87.34439220283598,-87.34442358024008,-87.34442221777593,-87.34466961149818,-87.34478525404965,-87.34480063332519,-87.3447230768699,-87.3447311025418,-87.34471485756897,-87.34472345671294,-87.34477022834911,-87.34477666950214,-87.34476956539736,-87.34473781408839,-87.34479180764366,-87.34480710524721,-87.3448843149788,-87.34494649868806,-87.34494672104088,-87.34499338299351,-87.34506971992145,-87.34506994210929,-87.34510051456279,-87.34510073345439,-87.3451321104954,-87.34513233194104,-87.34520843689589,-87.34526290429598,-87.34533196888709,-87.34542495232026,-87.34542438285001,-87.34559437648872,-87.34559461067069,-87.34573322892747,-87.34573345011654,-87.3457801225202,-87.34582643420056,-87.34590310342026,-87.34616620640594,-87.34630514261035,-87.34639709786323,-87.34641283757006,-87.34653559326401,-87.3466982259298,-87.34681396783185,-87.34696800724886,-87.34713778079561,-87.34718509684554,-87.34729212416208,-87.34741636942246,-87.34758590489159,-87.34786198921267,-87.34787487026698,-87.3479447435024,-87.34822142863143,-87.3483143119181,-87.34839932816482,-87.34841461008784,-87.34869998743392,-87.34901646158603,-87.34930992062212,-87.34985104205632,-87.35015956854309,-87.35056076946215,-87.35077750634207,-87.35114843857478,-87.35161080742506,-87.35210594691769,-87.35250752603467,-87.35304062088291,-87.35325604153127,-87.35352661026943,-87.35404340009055,-87.35429082879288,-87.35455311322117,-87.3551392407654,-87.35544008911307,-87.35566358876743,-87.35586423343429,-87.3559650157065,-87.35617269732138,-87.35631198275274,-87.35641182793582,-87.35645754846885,-87.35651968001588,-87.35651991250873,-87.35656654925806,-87.35662733091678,-87.35670453806515,-87.35670396162885,-87.35675061540253,-87.35675082873618,-87.35681274751943,-87.35681296422177,-87.35688939317347,-87.35695808995334,-87.35712779418485,-87.35731320827574,-87.35745234062848,-87.35751369086753,-87.35783758217829,-87.3578687246648,-87.35796120622037,-87.35800762661026,-87.35805348393612,-87.35808383378148,-87.35846964054359,-87.35857718200896,-87.35867003383008,-87.3587013920981,-87.35877895099378,-87.35880871409987,-87.35883985370997,-87.3589992896278,-87.35921814494189,-87.35930984278389,-87.35970333175658,-87.35981066306212,-87.35987258382224,-87.35996620830606,-87.36007375144099,-87.36010410332413,-87.36028963434256,-87.36041288224691,-87.36045931101158,-87.36056706610766,-87.36059741488017,-87.36065932046387,-87.36079800204233,-87.36093711189253,-87.36127493323455,-87.36136113008494,-87.36140640059595,-87.36148307625304,-87.36173700155642,-87.36190687742527,-87.3620760977625,-87.36229232132621,-87.36237029693046,-87.36245447512439,-87.36251565684992,-87.3625152925042,-87.36254685966158,-87.36254571523008,-87.36257726861562,-87.36257691703192,-87.36260768940382,-87.36260732668936,-87.36263809871136,-87.36263852564109,-87.36269949434248,-87.36274640832357,-87.36279188927,-87.36279152554216,-87.36282309034186,-87.36283743221853,-87.36285270412273,-87.36285313157498,-87.36286842057376,-87.3629911311894,-87.36300720874331,-87.36319059497751,-87.36326705877809,-87.36334416093889,-87.36337493244271,-87.36337535953292,-87.36342082465652,-87.36343660971076,-87.36345188040919,-87.36345078420899,-87.36348219541161,-87.36352788629983,-87.36365096549216,-87.36369665677324,-87.36389697128551,-87.36397363030433,-87.36398875977771,-87.36400483672368,-87.36403451088881,-87.3640345839179,-87.36400342884977,-87.3639797861389,-87.36389415452784,-87.36387881941333,-87.36386336571988,-87.36387791916006,-87.36387732112593,-87.36392306946411,-87.36398503312414,-87.36398547166179,-87.36407683045233,-87.36419989895668,-87.36428542774037,-87.36486251661378,-87.36533295811927,-87.3655171093518,-87.3657789287679,-87.36604104312775,-87.36613268333302,-87.36614817772698,-87.36628665517402,-87.36659421004826,-87.366864014925,-87.36686344726667,-87.36691026855685,-87.36695687976189,-87.3669570930368,-87.36718778865819,-87.36728793215464,-87.36748066141733,-87.36784387293871,-87.36796642188527,-87.36805092811404,-87.36808211212127,-87.36808174062195,-87.3680978124581,-87.36809707701777,-87.36805080220556,-87.36803463678319,-87.368049920255,-87.36805790410102,-87.36812675933912,-87.36812698085393,-87.36821882313292,-87.36823431465308,-87.36832752681357,-87.36832694581594,-87.36838804257715,-87.36838825097799,-87.36850351187189,-87.36865783057564,-87.36887358115941,-87.36899692945946,-87.36909727750074,-87.36926669672825,-87.36943623045711,-87.36946598617286,-87.36949695335436,-87.36975123459544,-87.36987477247857,-87.36994400213526,-87.37032951973005,-87.37062141041217,-87.37083736570868,-87.37100692927791,-87.37106843285751,-87.37111503466647,-87.3711144516612,-87.37117574669199,-87.37117595818742,-87.37120729109968,-87.37120670974051,-87.37129875546427,-87.37131445477074,-87.37134577438603,-87.37139143500829,-87.37142166601708,-87.37142192517862,-87.37146758012021,-87.37148269743663,-87.37151424174344,-87.37151386738196,-87.371697261458,-87.37177483142133,-87.37183596387378,-87.37185011754097,-87.37186639439881,-87.37186529012419,-87.37188061671588,-87.37189650834031,-87.37191178370786,-87.37191141332377,-87.37195742821345,-87.37200329283876,-87.37209612360469,-87.37228014183005,-87.37228034858001,-87.37234243148745,-87.37237339039538,-87.37240313708784,-87.37240334806141,-87.37248069081676,-87.37254261820604,-87.37261895904416,-87.37264971073087,-87.37296553801717,-87.37331305357016,-87.37361323862839,-87.3736977154954,-87.37383622893392,-87.37394409972111,-87.37394351986437,-87.37400459279448,-87.37400480244402,-87.37405139089537,-87.37405161310743,-87.37409741217901,-87.37409762256146,-87.3743125739382,-87.37431278155432,-87.37434410809988,-87.37434431826809,-87.37438954659899,-87.37440522654177,-87.37446729633835,-87.37458953991569,-87.37466687330914,-87.37466628888936,-87.37471208600074,-87.3747743654835,-87.37477457546674,-87.37480431792726,-87.37480452786998,-87.37483585427826,-87.37483527061882,-87.37492729495914,-87.37510705747597,-87.3753448720704,-87.37546164995906,-87.37552392670491,-87.37556972079936,-87.37558439950568,-87.37566230839745,-87.37570832475694,-87.37588573922645,-87.37593211557284,-87.37630258663067,-87.37699105290747,-87.37715244370199,-87.37734604092583,-87.37766920455337,-87.37766941334789,-87.37771599375729,-87.37777787135423,-87.37780894461778,-87.37785499100806,-87.37790219409759,-87.37793271987731,-87.37793293026117,-87.37801738482095,-87.37867342749989,-87.37898243035971,-87.37919830962323,-87.37932220092682,-87.3793531426642,-87.37947682225447,-87.37951526476073,-87.37983202941092,-87.38005586131911,-87.38035712426861,-87.38058073965367,-87.38068936399054,-87.3808049052893,-87.38098241435993,-87.38116788405162,-87.38124457055228,-87.38146181006272,-87.3815917430808,-87.3817002650034,-87.38178553512562,-87.38190149393692,-87.38199367107146,-87.38199387809374,-87.38202439980465,-87.38204027455238,-87.38205554157331,-87.38205595324628,-87.38207120745527,-87.38211723757772,-87.38216342708351,-87.38219474536298,-87.38219415970049,-87.3822254607191,-87.38222567780574,-87.38225618892631,-87.38225639497873,-87.38241078855921,-87.38241020134987,-87.38247283414039,-87.38247224751304,-87.38251881553484,-87.38254974902947,-87.38258105111082,-87.38259514780924,-87.38262646172218,-87.38264212823844,-87.38275077002024,-87.38276606807861,-87.38282713145115,-87.38282755308937,-87.38288940764809,-87.38293619275764,-87.38293560679928,-87.3830283622641,-87.38305929661379,-87.38332882376791,-87.38335174803814,-87.38346832058444,-87.38369928860362,-87.384000560735,-87.38435623124751,-87.38449551896659,-87.38474265108755,-87.38528222107149,-87.38549861028793,-87.38549881585701,-87.3855758959095,-87.38560661734095,-87.38593137768521,-87.38606930219784,-87.38634750363371,-87.38654088162556,-87.38698011324321,-87.3871886711604,-87.38742044871333,-87.38759748246034,-87.38776077080324,-87.38799154942359,-87.38821552277398,-87.38836972209999,-87.38858596461964,-87.3888639394626,-87.38926570050022,-87.38960483067085,-87.38991410530842,-87.39012920226655,-87.39113350511091,-87.39117985442381,-87.39133376380467,-87.39196673724135,-87.39219789201631,-87.39242227270014,-87.3927927058085,-87.39297745510515,-87.39311649594231,-87.39327137461397,-87.39344898341852,-87.39355618512255,-87.39359460740846,-87.39363427454977,-87.39368059147299,-87.39374149507438,-87.39380252533368,-87.3938651452938,-87.3938806181875,-87.39392599647027,-87.39394148046404,-87.39395771816439,-87.39398866338658,-87.39403405237354,-87.39403445318715,-87.39406536051324,-87.39408061973045,-87.39412752356434,-87.39415790682619,-87.3942658762037,-87.39434237166027,-87.39446676562505,-87.39458955295758,-87.39473671673662,-87.39493658305047,-87.3951293029902,-87.39528459473306,-87.39553869572583,-87.39598569976209,-87.39621794174893,-87.39641822336725,-87.39644970368586,-87.39666477587232,-87.39691266006962,-87.3969819236037,-87.39708138235417,-87.39724410103152,-87.39742964713174,-87.3976069860207,-87.39803862798412,-87.39822421387022,-87.39834661321126,-87.39841631929653,-87.39841654245068,-87.3983548021647,-87.39821033774429,-87.39802302877794,-87.39786855393162,-87.39775938160589,-87.39755114627928,-87.39748986840044,-87.3973971212215,-87.39736622937548,-87.3970890646174,-87.39696572311333,-87.39594622782147,-87.3959153489521,-87.39585377938263,-87.39560630593677,-87.39542183536544,-87.39529835694991,-87.39515889492709,-87.39499698349678,-87.39491206773982,-87.39483489495318,-87.39483549278519,-87.39481985969006,-87.39481907717463,-87.39480384449584,-87.39480347715339,-87.39481951921081,-87.39485042008315,-87.39502707793092,-87.39519024607051,-87.39528155451168,-87.39541343228072,-87.39561378782291,-87.39575297312433,-87.39596122969972,-87.39641589745487,-87.39687836785808,-87.39701794916436,-87.39722661989101,-87.3974113999359,-87.39765842531014,-87.3979051140975,-87.39799757352614,-87.39822955841773,-87.39847540084033,-87.3986379642425,-87.39878432020328,-87.39890765681152,-87.39912413820441,-87.39921663918152,-87.39934038023759,-87.39946367096283,-87.39961769491156,-87.39989583920425,-87.40001916999738,-87.4001424718038,-87.40016508481146,-87.4003586550451,-87.40088328395434,-87.40156172740733,-87.40174677328801,-87.40184778211663,-87.40191702887989,-87.40200961938937,-87.40221753816448,-87.40229474820509,-87.40234873887721,-87.40237922398013,-87.40241060511559,-87.40242560474456,-87.40251799644399,-87.40266409134288,-87.40275693636804,-87.40325104046602,-87.40343607339075,-87.40386014473697,-87.40441549315833,-87.40453896451668,-87.40464733461158,-87.40471642704971,-87.4047701153563,-87.40480138637923,-87.40480118276724,-87.40481643480635,-87.40483225484297,-87.40484750361524,-87.40484729930029,-87.40486253963191,-87.40489341844169,-87.40489399805546,-87.40490825646538,-87.40490904598181,-87.40492447929104,-87.40492428805454,-87.4049549601374,-87.40497079840824,-87.40500147972689,-87.40500108085756,-87.40507827060352,-87.4051865397021,-87.4053555716672,-87.40554815658074,-87.40567914101119,-87.40578765272373,-87.4060730548677,-87.40625771451359,-87.40637310503226,-87.40641980164393,-87.40643504849939,-87.40645087077901,-87.40645086484429,-87.40643581884906,-87.40642018217596,-87.40640334801016,-87.40638869760724,-87.40638077061625,-87.40638888965165,-87.40637325313014,-87.40637306959226,-87.40637363866817,-87.40635818621531,-87.4063581902559,-87.40634155849347,-87.40632592541598,-87.40632631495518,-87.40631067955565,-87.4062342536932,-87.40615685935678,-87.40611092871185,-87.40609489262333,-87.40606441405676,-87.40606461093705,-87.40597118244231,-87.40593990227876,-87.40594049434318,-87.40595611954711,-87.4060020455139,-87.40600224155034,-87.40604874887815,-87.40604815638176,-87.40609387314265,-87.40609406668656,-87.40614057549629,-87.40620232341084,-87.40620270417723,-87.40618706838035,-87.40618745965152,-87.40618827706828,-87.40566552078788,-87.40541558779681,-87.40517822742719,-87.4044548312488,-87.40411686942299,-87.40273054821679,-87.40239374450283,-87.40116999141554,-87.40064493522463,-87.40000882458997,-87.39893366632506,-87.3986088309227,-87.39798515394774,-87.3976476270806,-87.3972858656369,-87.39644982596111,-87.39589911295543,-87.39550863753034,-87.39541563343143,-87.39523060270383,-87.39499156044251,-87.39469735897526,-87.39451274653496,-87.39424224737752,-87.39391851480043,-87.39384954642412,-87.39368741824083,-87.39350250223634,-87.39340969110663,-87.39333297243212,-87.39314699597227,-87.39303164136192,-87.39291527978371,-87.39271526009937,-87.39262247520121,-87.3925916190757,-87.39254551643637,-87.39246838311531,-87.39242171449746,-87.39234455743026,-87.39226758642488,-87.39195915548252,-87.39169681700407,-87.3914810197231,-87.39135710977122,-87.39124155965193,-87.39111874601534,-87.39104850819177,-87.39103308304472,-87.39103310958684,-87.39106374518914,-87.39109470293272,-87.39116498025562,-87.39125452457935,-87.39126207008727,-87.39118013636136,-87.39099747056989,-87.39070448016649,-87.39064724042251,-87.39053902059501,-87.39052457345264,-87.39031576425427,-87.39028493890359,-87.39020786775077,-87.39020044332835,-87.39022317390594,-87.39038536062465,-87.39059870319512,-87.39064323021729,-87.39063940204053,-87.39061664434699,-87.39055532172688,-87.39045464829728,-87.39039286872905,-87.39035407242615,-87.39032295429232,-87.39024601593064,-87.39016928028228,-87.38995334245371,-87.38982956793184,-87.38964474992872,-87.38927398743527,-87.38905836508594,-87.38893464702547,-87.38861918647736,-87.38827925249123,-87.38800959629226,-87.38763907698636,-87.38751563666244,-87.38748400086983,-87.38745376610169,-87.38738434322896,-87.38723734143643,-87.38719851793958,-87.38703648339282,-87.38695977011147,-87.38680587644129,-87.38680607717129,-87.38677483018513,-87.38671313280437,-87.38668213969197,-87.38669745355145,-87.38675960709585,-87.38679052091209,-87.38679000628055,-87.3867745809826,-87.38661297715561,-87.38653602643511,-87.38639679941365,-87.38600277427335,-87.38594173642642,-87.38579553580487,-87.38569549747635,-87.38550958049481,-87.38546290413724,-87.38546310436283,-87.38541702812512,-87.38529363677489,-87.38526318247591,-87.3852625935198,-87.38520167464878,-87.38510912004764,-87.38504667759688,-87.38500042043879,-87.3849699540327,-87.3849693651831,-87.3849389138679,-87.38493911597637,-87.38484656654946,-87.38481572899815,-87.38476964195875,-87.38476905318248,-87.38473859985878,-87.38473880448703,-87.38469213908945,-87.38458456017118,-87.38458476154561,-87.38452167381388,-87.38452187606362,-87.38446037136194,-87.38446057619467,-87.38441449857073,-87.38426757614991,-87.38418333636767,-87.38405203541242,-87.38396644023074,-87.38396684937494,-87.38395122653303,-87.38392041522712,-87.38390558617922,-87.38390520273538,-87.38387436506677,-87.38387497584552,-87.38385935656153,-87.38385978645509,-87.38384319558854,-87.38378213594011,-87.38376651436243,-87.38373570477626,-87.38365861786096,-87.38360449606975,-87.38358871024252,-87.38358875821666,-87.3836127640397,-87.38362820460874,-87.38363518993152,-87.3836122624498,-87.38355018831271,-87.38354288187453,-87.38356626554778,-87.38358151528297,-87.38361202614949,-87.38351949024468,-87.38351951380702,-87.38354999838495,-87.38358143004122,-87.38356627010619,-87.38353501641839,-87.38351980247157,-87.38350482897002,-87.38350441409865,-87.38353496125247,-87.38356584419947,-87.38356547353638,-87.38358149817573,-87.38364351491815,-87.3836890555975,-87.38370412686423,-87.38372015479511,-87.38375108481566,-87.38376632003298,-87.38379762048136,-87.38382751878285,-87.38392060352037,-87.38401286193898,-87.38402772597982,-87.38405898919126,-87.38407464645977,-87.38426010459901,-87.38432084048327,-87.38432150464457,-87.38433694159576,-87.38433705769854,-87.38435150326227,-87.38435191167845,-87.384398252118,-87.38444496807662,-87.3844451701777,-87.38447565419011,-87.38447585625062,-87.38450632759519,-87.38456810972416,-87.38456772556724,-87.38458297253193,-87.3845832014224,-87.38459865208421,-87.38459887555908,-87.3846149023975,-87.38463037612971,-87.38469095803396,-87.3848764093793,-87.38487660958303,-87.38503041325322,-87.3850613013601,-87.38510819698182,-87.38509206349003,-87.38509192725056,-87.38512323376028,-87.38520077846154,-87.38523074832503,-87.3852770740247,-87.38533923371298,-87.38540021663299,-87.38544692485834,-87.38567855969714,-87.38567817544987,-87.38570922513279,-87.38570893237444,-87.38570280567322,-87.38568464662241,-87.38571565275318,-87.38582342552509,-87.38588520821978,-87.38593033248117,-87.3860233521865,-87.38611595419708,-87.38613951095762,-87.38610772355321,-87.38605438157617,-87.38602326208836,-87.38593056814074,-87.38586864937477,-87.38580667756821,-87.38576945070699,-87.38573004115207,-87.3856379104222,-87.38563732120511,-87.38559046596754,-87.38559067006166,-87.38554459351775,-87.38551376228035,-87.38546740290228,-87.38545268462008,-87.38540623710797,-87.38538964514747,-87.38540529812543,-87.38557529832042,-87.3856056352863,-87.38558226280935,-87.3855595317155,-87.38551328985874,-87.38539739057985,-87.38534315359644,-87.38534020788184,-87.38532817997127,-87.38529773458725,-87.38529714548926,-87.38525078801851,-87.38509605098832,-87.38497267631895,-87.3849569688731,-87.38499577039944,-87.38504207040423,-87.38506542273122,-87.38506504814498,-87.38501897388183,-87.38501138402194,-87.38503456937396,-87.38514166580298,-87.38515772009841,-87.38514231723553,-87.38501815721223,-87.38496445889672,-87.38487944875014,-87.38473998254442,-87.38463138295266,-87.384631417392,-87.38464685245685,-87.38469335489837,-87.38471712474561,-87.38470038411431,-87.38460851032268,-87.38456990877367,-87.38459594513397,-87.38434595798432,-87.38432273303263,-87.3843078908772,-87.38430675345229,-87.38432278643708,-87.3843229535246,-87.38430768979678,-87.38430693314805,-87.38429131837508,-87.38429178000497,-87.38430702409647,-87.38432249623359,-87.38443059498697,-87.38443021145736,-87.38452265752213,-87.38452228646157,-87.38463055037528,-87.38462996234982,-87.38470715531304,-87.38470735872716,-87.38480018709707,-87.38486116197934,-87.38489161933778,-87.38487677386256,-87.38483023995489,-87.38476797761089,-87.38455245164893,-87.38439785812976,-87.38435158446821,-87.38428991055352,-87.38428932264583,-87.38425862575281,-87.38418218693381,-87.38415095493994,-87.38394948395391,-87.3838417424554,-87.38384194361997,-87.38378047584304,-87.38378067958952,-87.3837494464503,-87.38368770656864,-87.38368677115872,-87.38373330706899,-87.38380315219462,-87.38391157443536,-87.3839491619388,-87.38396422610123,-87.38401093954907,-87.38399543527444,-87.38388690535197,-87.38388710903222,-87.3838566678271,-87.38382534686524,-87.38379474645011,-87.38380251917299,-87.38382491060131,-87.38396309026326,-87.38400978890388,-87.38400999251462,-87.38404046877798,-87.38404067066817,-87.38407193422786,-87.38410282781426,-87.38416396660617,-87.38416339490335,-87.38419464619584,-87.38422552656014,-87.38428790628934,-87.38431011683498,-87.38431828864439,-87.38434802775524,-87.38433278032349,-87.38418672760801,-87.38416317446446,-87.38416991773046,-87.38416249884244,-87.38414725077263,-87.3840694550552,-87.38402313288306,-87.38397728242796,-87.38386163105116,-87.38382992990644,-87.3838067865502,-87.38376307452212,-87.38372245618584,-87.38366828589591,-87.38330545475024,-87.38318183472536,-87.38305836586598,-87.38295835031872,-87.38295776291724,-87.38286526635939,-87.38280362647328,-87.3828037938973,-87.38275701401925,-87.38269561630221,-87.38269544802274,-87.38271088130836,-87.38277162422693,-87.38285687124421,-87.38286499136659,-87.3828646078637,-87.38278733061718,-87.38278773681451,-87.38281841553243,-87.38281828708604,-87.38281082872216,-87.38278730006115,-87.38275666187793,-87.38264103867009,-87.38254006955134,-87.3825019477913,-87.38250920666191,-87.38254010711253,-87.38266321637877,-87.38277165691265,-87.38278708967965,-87.38284803079419,-87.38284823554235,-87.38287870681425,-87.38290958651949,-87.38294823227152,-87.38292546487563,-87.38297083019231,-87.38301752296081,-87.38301772677181,-87.38310933959679,-87.38310954422283,-87.38315603187033,-87.38317147674803,-87.38343361491229,-87.38361106177052,-87.38370285253083,-87.38381876843941,-87.3838804985686,-87.38408029270457,-87.38428125851371,-87.38461234915604,-87.3846977911292,-87.38475951923004,-87.38488176328458,-87.38492825077084,-87.38510627196757,-87.38533650295511,-87.38564468788596,-87.38589931188066,-87.38652458114753,-87.38657881549901,-87.38660874485556,-87.38660894720832,-87.38654590231667,-87.38653188495819,-87.38643933964615,-87.38594620900868,-87.38579207614588,-87.38560673078847,-87.38535982956289,-87.38503544954892,-87.3838324123229,-87.38303067758459,-87.38285351410586,-87.38279963154842,-87.38278402174964,-87.38279142120645,-87.38280665137515,-87.3828614363336,-87.38550611162709,-87.38562126253844,-87.385760442402,-87.38591455748089,-87.38606072547461,-87.38614579044896,-87.38614599298691,-87.38619190199746,-87.38622199797871,-87.38626909783366,-87.38631449700701,-87.38636161979014,-87.38639271323406,-87.38642355263413,-87.38660823690992,-87.38663142649706,-87.38671545472035,-87.38677809933247,-87.38696222655631,-87.3872093425208,-87.38732503937513,-87.38734839561262,-87.3873482088047,-87.38728557340187,-87.38728617790255,-87.38737856081994,-87.38737896404393,-87.38733208704866,-87.38727100151876,-87.3870931401437,-87.38704737360467,-87.38700062819207,-87.38693055882189,-87.38691555060836,-87.38700813290767,-87.38700770931139,-87.38694554074536,-87.38679198513096,-87.38674593954258,-87.38673052877451,-87.38672244234034,-87.3867291775954,-87.3867453978467,-87.3867989993889,-87.38681443947715,-87.38678444965679,-87.38671421882776,-87.38668337845841,-87.38655378043117,-87.38657467094485,-87.3865526870095,-87.38652891898656,-87.386467421601,-87.38633609007675,-87.38628964355199,-87.38621278721972,-87.38614350959944,-87.38609666073658,-87.3860662563696,-87.38605778623027,-87.38608132989549,-87.3861281026561,-87.38621230066198,-87.38635897704062,-87.38651310925427,-87.38682092583339,-87.38699077977444,-87.38703681414509,-87.38706806719077,-87.38706808361327,-87.38702906653359,-87.38698306064495,-87.38689860159469,-87.38683611018756,-87.38655890299125,-87.38649701398406,-87.38646616422061,-87.38622037813015,-87.38617371626165,-87.38609616492079,-87.38599658573986,-87.38596457496469,-87.38592642841208,-87.3858952370947,-87.38591086792333,-87.38595027510695,-87.3860421837625,-87.38609566120716,-87.38618819707854,-87.38628180390707,-87.38634300868735,-87.38662057288998,-87.386721009738,-87.3868290228791,-87.38689819471149,-87.38694372705675,-87.38697438973092,-87.38697479576656,-87.38699003186159,-87.38700611520164,-87.38699046354608,-87.38697742702611,-87.3869674757354,-87.38682103579283,-87.38669678167888,-87.38666593073512,-87.38615755222881,-87.38612670299121,-87.38591062566157,-87.38587977648909,-87.38578716116569,-87.38575631223186,-87.38558718199791,-87.38555634303928,-87.38517064136201,-87.3851397924399,-87.38504638934253,-87.38501554049425,-87.38492371641483,-87.38489286824644,-87.38467679535597,-87.38464594634425,-87.3843064131013,-87.38427556417356,-87.38418295157723,-87.38415210277832,-87.38398218412549,-87.38395133535779,-87.38381255820542,-87.38378172236058,-87.38365875776385,-87.38362790893635,-87.38341183629601,-87.38338098761616,-87.38328758615086,-87.38325753047909,-87.3831649180004,-87.38313407007421,-87.38304066993796,-87.38301140195006,-87.38288685780689,-87.38285602178057,-87.38267108115268,-87.38246311829971,-87.38248596120962,-87.3825164277101,-87.38251662803951,-87.38260156242096,-87.38262726066607,-87.38390482749018,-87.38393566326305,-87.3840290755534,-87.38405991153817,-87.38427520491319,-87.38430604074432,-87.38439866466788,-87.38442950060092,-87.38455296250298,-87.38479988390999,-87.38489171730424,-87.38492255334241,-87.38504680433182,-87.38526289196685,-87.38529372806326,-87.38538556185209,-87.38541639785798,-87.38550902391189,-87.3855398727988,-87.38575594604669,-87.38578679491629,-87.38591025671704,-87.38600287066505,-87.38603371937995,-87.38612554128564,-87.38615639015677,-87.38652756829822,-87.38661939071078,-87.38665023987697,-87.38674364304391,-87.38698979125954,-87.38710530401229,-87.38713957715039,-87.3871674850986,-87.38721350615378,-87.3872362691388,-87.3872058731035,-87.38715606351796,-87.38714439063635,-87.3867742451061,-87.3867434089865,-87.38634158555928,-87.38631073690003,-87.38606430837045,-87.38603347236682,-87.38578625360266,-87.38575541849775,-87.38566358439336,-87.38560160462733,-87.38510825701712,-87.38452208746324,-87.38442868668037,-87.38439783818441,-87.38416698784675,-87.38415112161407,-87.38415132572557,-87.38429048134155,-87.38431337529403,-87.38519031621499,-87.38523064472513,-87.38524628749309,-87.38521589479734,-87.38518397488333,-87.38432092365807,-87.3842077896733,-87.38398934393905,-87.38399665900472,-87.3840585051547,-87.38408214979175,-87.38403585834877,-87.38403547353977,-87.38408150767876,-87.38432039876325,-87.38491341712901,-87.38497596132321,-87.38497508977481,-87.38493787213099,-87.38487484958743,-87.38481346014318,-87.38395035810831,-87.38387352255054,-87.38381154739427,-87.383143797953,-87.38315621985242,-87.38313273327591,-87.38310206269027,-87.38310226706629,-87.38300999764186,-87.38300942292054,-87.38297898053688,-87.38297835561136,-87.38301730368204,-87.38310164323737,-87.3831483391665,-87.38320998711036,-87.38320978536794,-87.38325646140714,-87.38328161564104,-87.38358015345901,-87.38376541876066,-87.38385815088678,-87.38404261018087,-87.38413534555377,-87.3843198047593,-87.38447393888883,-87.38465918981451,-87.38475192139988,-87.38493717284237,-87.38502990351695,-87.38532266681662,-87.385392744947,-87.38540867033979,-87.38533802560268,-87.38539972307088,-87.38543060178409,-87.38542997416417,-87.38539203531106,-87.38536031956239,-87.3853217764111,-87.3852887761676,-87.3852455548911,-87.3850909010431,-87.38496781784445,-87.3848129066867,-87.38475122479086,-87.38453650707703,-87.384474825251,-87.38398053541989,-87.38364087266127,-87.38348754113737,-87.38330228094813,-87.38314816140324,-87.3830242986631,-87.38253158317067,-87.38247726552167,-87.38243848213656,-87.38232363931996,-87.38229191182086,-87.38226110035906,-87.38226176185211,-87.38229938649495,-87.3824229527452,-87.38251548197488,-87.38254682593495,-87.38273157631717,-87.3827621314564,-87.38285464807359,-87.38288599184453,-87.38307074208171,-87.38310208858205,-87.38319461503144,-87.38322515763178,-87.38341704491916,-87.38349527576608,-87.38354872489286,-87.38357127634653,-87.38355636616724,-87.38345634363081,-87.38339411519689,-87.38290069853346,-87.38287014577359,-87.38271593604536,-87.38220753680852,-87.38213814855892,-87.38202143231396,-87.38199100719375,-87.38199170456184,-87.38200665137165,-87.38202953554708,-87.38205296710585,-87.38220683193181,-87.38226852596385,-87.38229985704551,-87.38245377138925,-87.38248511516412,-87.38255392083718,-87.38269963131334,-87.38285433661723,-87.38288487549363,-87.3829544688964,-87.38328622861881,-87.38335582211639,-87.38353317101824,-87.38387170731713,-87.38408025308105,-87.38419632101343,-87.38432510674643,-87.38433494030357,-87.38438064121262,-87.38438816909652,-87.38437296321767,-87.38434443423731,-87.38433442033386,-87.38282408043152,-87.3826685836099,-87.3823989283175,-87.3823457960732,-87.3823370669157,-87.38231954299839,-87.3825458906132,-87.38334717585822,-87.38344019860926,-87.38365608676696,-87.38374831907591,-87.38397210635713,-87.38405642830064,-87.38445786333558,-87.38448794687982,-87.38454417343596,-87.38441883823093,-87.38440789353274,-87.38439615818997,-87.38430309762889,-87.38427254364883,-87.38408699540541,-87.38405645649912,-87.38387169577705,-87.3838403658991,-87.38310115371681,-87.38306980822975,-87.38266897444582,-87.38263841997228,-87.3824220364547,-87.38239140716364,-87.38236017710517,-87.38234469464425,-87.38229826153622,-87.38228648841533,-87.38234475338587,-87.38249866403442,-87.38252999425802,-87.38289999491334,-87.38302278046045,-87.38320752685971,-87.38323886956775,-87.38348580219977,-87.38351634342033,-87.38370189185758,-87.38382466344464,-87.38431851816159,-87.38434986060319,-87.38441154036087,-87.38468110113604,-87.38470191652551,-87.38474274033928,-87.38478085841368,-87.384719414619,-87.38471961575169,-87.38467278642899,-87.38467299013776,-87.38457952343187,-87.38449216126257,-87.38442857108276,-87.38414799421727,-87.38411744048587,-87.38402492820563,-87.38399437725381,-87.38393269652391,-87.38390135700806,-87.38377829100081,-87.38374694863741,-87.38337774124307,-87.3832541821473,-87.38300724844133,-87.38297670997515,-87.38272977703932,-87.38269922734032,-87.38232843731274,-87.38189734757282,-87.38182801214072,-87.38173511641887,-87.38155030766663,-87.38151134147209,-87.38148814066582,-87.38148085124608,-87.38151081920087,-87.38163488755484,-87.38191235889558,-87.38194370131508,-87.38200536626604,-87.38225113678934,-87.38228196960554,-87.38234384950148,-87.38246742421437,-87.38262203268398,-87.38265286545878,-87.38271395673046,-87.38274480137679,-87.38286808093494,-87.38326986162892,-87.3833538862385,-87.38342171610132,-87.38342334654371,-87.38343127956649,-87.38340729653559,-87.38319227921531,-87.38313016428181,-87.38289032227863,-87.38273681752325,-87.38260544623843,-87.38250500983291,-87.382459052166,-87.38238160120498,-87.38233485532903,-87.38221144575566,-87.38200340046015,-87.38177164604402,-87.38174105614685,-87.38170997234248,-87.38152544163688,-87.38149435509085,-87.38140183422148,-87.38137149913082,-87.3813098237485,-87.38127868655539,-87.38120144211936,-87.38112412046476,-87.38110871263103,-87.38117144924416,-87.38130928121565,-87.38140191601219,-87.38140944518435,-87.38136348912259,-87.38125534815063,-87.3811623689059,-87.38110826317858,-87.38101570247173,-87.38097742031947,-87.38095410571496,-87.38095471401853,-87.38093906878301,-87.38074586291943,-87.38069991012185,-87.38054553964764,-87.38042191968256,-87.38021399103329,-87.38015222688654,-87.38012138316263,-87.38002924964806,-87.37995971341576,-87.37991384938989,-87.37984384169482,-87.37983614868367,-87.37991998999908,-87.37968923327901,-87.37968174102676,-87.37962797786408,-87.37955905407755,-87.37937287822042,-87.37931878314556,-87.3792579375576,-87.37920362832888,-87.37917274842781,-87.37898765319839,-87.37884153122356,-87.37877910912174,-87.3787716070094,-87.37898771340352,-87.37906225546223,-87.37857064302398,-87.37851737861668,-87.37839336973478,-87.37836232431513,-87.37830123734622,-87.37824641609589,-87.37820022494036,-87.37815399453847,-87.37760693064997,-87.37761424404493,-87.37766818303298,-87.37776926047815,-87.37779893135743,-87.3777529440753,-87.37743624287047,-87.3774214287445,-87.377467700615,-87.37747523220736,-87.37733675954215,-87.37684341314419,-87.37664986403739,-87.37658843548168,-87.37652684987462,-87.3764646841323,-87.37642721776264,-87.37634906554526,-87.37608747113049,-87.37603283644739,-87.37597140830709,-87.37594823433939,-87.37591011534403,-87.375855900167,-87.37580990929972,-87.37575598065122,-87.37567903541255,-87.37563259109282,-87.37561720577406,-87.37563309313323,-87.37564853674881,-87.37564719267986,-87.37566313279852,-87.37563987397793,-87.37558606453315,-87.37550146447656,-87.37546279946987,-87.37543209854366,-87.37541685931679,-87.37535870982659,-87.37523110289702,-87.37512635601732,-87.37508868769383,-87.37490986001085,-87.37487901843863,-87.37451021414383,-87.37433379697305,-87.37431469667123,-87.37394253707797,-87.37376777243465,-87.37358187051558,-87.37344683922724,-87.37326092693127,-87.37319925749624,-87.37292183167006,-87.37252084565169,-87.37239629048749,-87.37227297495672,-87.37193285091161,-87.37171652540022,-87.37125336761676,-87.37108400107265,-87.37077524210841,-87.37065930815594,-87.37058190572269,-87.37048135218278,-87.37041964627144,-87.37029628568119,-87.37014123042356,-87.36984845629773,-87.36969440014327,-87.36957096893455,-87.36949339538772,-87.3688764836523,-87.36873691474779,-87.36837364651237,-87.36821189160025,-87.3680650288928,-87.36800406930067,-87.367972856601,-87.36788709425177,-87.36785625386935,-87.36756374321367,-87.3675329153818,-87.36748647452227,-87.36734722204199,-87.36727045427374,-87.36723961393551,-87.36719317221434,-87.36716233169491,-87.36691522968198,-87.36666757965992,-87.36657577665792,-87.3665138071844,-87.36603529794,-87.36585039746929,-87.36547949567419,-87.3643989659784,-87.36415206647676,-87.36378125169803,-87.36375037956462,-87.36335659295584,-87.36333362964037,-87.36324104650464,-87.3628403956816,-87.36277842823721,-87.36268505358493,-87.36265421153205,-87.36240786318389,-87.36237703645268,-87.36206844370246,-87.36203760425336,-87.36182109322368,-87.36172907579083,-87.36157374824141,-87.3614817429573,-87.36118899174183,-87.36105759166492,-87.36093376996722,-87.36075491240911,-87.36063201286791,-87.36057718552202,-87.36055403683005,-87.36054474855725,-87.36055234714379,-87.36053638177918,-87.3604751280091,-87.36038173616596,-87.36026437111667,-87.36023342292272,-87.35995439333259,-87.35983851923766,-87.35971506859342,-87.359591649335,-87.35943689295061,-87.35923735863068,-87.35905235465218,-87.35892929279416,-87.35881368351508,-87.35874450833067,-87.35868330621005,-87.35865977550385,-87.35865317424329,-87.35860642381327,-87.35831037254677,-87.35828415018462,-87.35823824943532,-87.35822265570502,-87.35826045857593,-87.35833800389349,-87.35835262440514,-87.35832879524582,-87.35829845763531,-87.3582367935563,-87.35802138184633,-87.35789778453719,-87.35775884682377,-87.35766701120856,-87.35758197825854,-87.3574421747178,-87.357271273305,-87.35700861675039,-87.35647577879591,-87.35627445407667,-87.35610403142367,-87.35585055576261,-87.35574924805148,-87.35547179660074,-87.35523963773082,-87.35489988954697,-87.35476137118896,-87.35456796107884,-87.35415049792297,-87.35392675474611,-87.35385765679291,-87.35374944532072,-87.35357108727163,-87.35327046745596,-87.35310020352973,-87.35293000541786,-87.35272107067381,-87.35249053243929,-87.35218205885752,-87.35206662056922,-87.35201179046268,-87.3516420646541,-87.35133359291032,-87.35111792448539,-87.35081122585274,-87.35065745797665,-87.35050285681959,-87.34976383922633,-87.34945535054432,-87.34917876369043,-87.34899303790321,-87.34846993392189,-87.34843909677289,-87.34825444412908,-87.34800734304386,-87.3476075176734,-87.34733021762146,-87.34723860971555,-87.34712280939522,-87.34703863351804,-87.34701662953492,-87.34696243967046,-87.34693863504472,-87.34693876059012,-87.34696240448291,-87.34700839978939,-87.34729550690439,-87.34748839768702,-87.34753575917749,-87.34764496569622,-87.34765328746077,-87.34763322612906,-87.34764881924971,-87.347648356767,-87.34758826682321,-87.34758929660867,-87.3475734324942,-87.34755819550729,-87.34755934390928,-87.34754330696283,-87.34752821313111,-87.34751217881156,-87.34749785952334,-87.34746716298557,-87.34745205690277,-87.34740647057541,-87.34737598703403,-87.34736109834856,-87.34731437626799,-87.34731494698552,-87.34728446740633,-87.34728481016863,-87.34725353959533,-87.34719249712971,-87.34713131818852,-87.34713110302624,-87.3470861609197,-87.3470859430673,-87.34702418891665,-87.34697047366714,-87.34692557367221,-87.34685616746886,-87.34676378518462,-87.34642574420873,-87.34630243719059,-87.34627051936288,-87.34625571901422,-87.34627117099549,-87.34657772265028,-87.34665379539378,-87.34666969221443,-87.34671528439461,-87.34686093121378,-87.34696050715311,-87.34705202796383,-87.34709792136746,-87.34710404633373,-87.34709552593243,-87.34703237731802,-87.3470243471567,-87.34703198588059,-87.34707721898384,-87.34710712710773,-87.3471067170023,-87.34709112444442,-87.34709076727242,-87.34702171506578,-87.34696648786439,-87.34681252912731,-87.34654916342465,-87.34624051178014,-87.3459239831744,-87.34561476528471,-87.34539096797411,-87.34536772475144,-87.34515154043629,-87.34498068277861,-87.3449035080606,-87.34483366067403,-87.34483387576644,-87.34483014589942,-87.34480190818989,-87.34475536323819,-87.34471670731769,-87.34468577289634,-87.34457732967131,-87.34447697446716,-87.34444578309346,-87.34439865910524,-87.34438282073246,-87.34436720335094,-87.34436668154665,-87.34435105104967,-87.34435110153734,-87.34433570283502,-87.34433318502101,-87.34434943768289,-87.34434732058187,-87.34433194884174,-87.34433121072325,-87.3443155926914,-87.34431602658734,-87.34430043604249,-87.34428485823231,-87.34426926774105,-87.34422142480985,-87.34420662619438,-87.34420628130106,-87.34417530981254,-87.34412855261671,-87.34408193450238,-87.34404974710033,-87.34398747068641,-87.34392553839558,-87.34392496549783,-87.34383214074887,-87.3438161977051,-87.34375483898771,-87.34375505779104,-87.34372307684092,-87.34369255044761,-87.34355209193622,-87.34352135028693,-87.34349016229089,-87.34344404935587,-87.34339648201899,-87.34339669838258,-87.34325760699146,-87.34324144581694,-87.34306384086219,-87.34297006965191,-87.34256031541129,-87.34234391666668,-87.34225922753697,-87.34205111787774,-87.34181878223482,-87.34139457741286,-87.34134103807247,-87.34125582122763,-87.34113989015901,-87.34093850506275,-87.34087545241485,-87.34084401253921,-87.34082841151539,-87.34082886174194,-87.34081327622884,-87.34079656165994,-87.34074966968532,-87.34068040834997,-87.34043300246833,-87.34020837027039,-87.34020042079632,-87.34015450699187,-87.34010802013445,-87.34000747765458,-87.33995411890311,-87.33965163994618,-87.33938115282608,-87.33895652195947,-87.33816753588688,-87.33810654293281,-87.33789017125719,-87.33752624091086,-87.33716296151582,-87.33696186812664,-87.33683859320877,-87.3363744012202,-87.33622842692597,-87.33613469118171,-87.33587921564636,-87.3358245842377,-87.33566481562872,-87.335354399889,-87.33499076476753,-87.33469748881633,-87.33446507457623,-87.33429563974997,-87.33401736547999,-87.33399383721748,-87.33393999319675,-87.33391647800708,-87.33382356587025,-87.33374538238512,-87.33353789159712,-87.33344415174024,-87.33300244977835,-87.33300266820039,-87.33289379462728,-87.33289402778448,-87.33286363966052,-87.33285513974366,-87.33277825316,-87.33270782491751,-87.33251455814069,-87.33242303030933,-87.33236049470609,-87.33229132429157,-87.33217483707543,-87.33208300598547,-87.33199731344054,-87.33182763740302,-87.33178938345608,-87.33177380094794,-87.33178079496126,-87.33179681994821,-87.33178146092581,-87.33172602268797,-87.33162652623824,-87.33159535152319,-87.33157912807636,-87.3315405379271,-87.3300792642623,-87.32983330352576,-87.32960911044582,-87.32599437522536,-87.32459621482668,-87.32424804398207,-87.32390045121097,-87.32327484297637,-87.32322158561783,-87.32261892504111,-87.32254957109362,-87.32034005712492,-87.32007844789615,-87.31812457970457,-87.31743684710749,-87.31496601872941,-87.31322523050595,-87.31237515744218,-87.31231387656291,-87.31228315676606,-87.3122991801976,-87.31226791852872,-87.31219873216057,-87.31204531764571,-87.3117383036229,-87.31155302361294,-87.31115437981528,-87.31103069582258,-87.31075431448006,-87.31035448384769,-87.31001590843282,-87.30980027103558,-87.30952302765003,-87.30943088680876,-87.30927690161803,-87.30884659108594,-87.30871582930456,-87.30863981849382,-87.30848553558357,-87.30833253427298,-87.30820208622877,-87.30798694194407,-87.30763337025408,-87.30724967643074,-87.30694228017119,-87.30681908061733,-87.30644996457924,-87.30632702570516,-87.30618121244834,-87.30609597093455,-87.30603497461119,-87.30598933046235,-87.30598127494707,-87.30599006580381,-87.30605107509615,-87.30609751527795,-87.30619058385565,-87.3062519876611,-87.30646804570762,-87.30668379377603,-87.30671489624524,-87.30684610531912,-87.3069536568951,-87.30703041650287,-87.30714653494307,-87.30731714968012,-87.30736474256204,-87.30738808525189,-87.30740439630975,-87.30739709449692,-87.30738106101194,-87.3073819350296,-87.30713738613036,-87.30706155706372,-87.30698507464938,-87.30698484222212,-87.30694623577536,-87.30686950491082,-87.306616502284,-87.30612532067488,-87.3059950387552,-87.30597162846112,-87.30578686972092,-87.30560977459848,-87.30547959708987,-87.30520364963539,-87.30492628502195,-87.30423507809417,-87.30374279295279,-87.30358879482219,-87.30349664849385,-87.3034353176007,-87.30275764793063,-87.30263472122083,-87.30229692129204,-87.30217399136325,-87.30189646722356,-87.30134301017915,-87.30081925300884,-87.30060439017693,-87.3001722497722,-87.30011143938086,-87.29971087088153,-87.29968138661383,-87.29952627816647,-87.29949600472403,-87.2994027713933,-87.29934195940938,-87.2989411515845,-87.2989116676594,-87.29884977761358,-87.29869574813638,-87.29841934833345,-87.29814239454545,-87.29774192949922,-87.29768003503779,-87.29758814688073,-87.29752705588866,-87.29734222036673,-87.2972803280766,-87.29691093227191,-87.29660315441672,-87.29591161031668,-87.29560355949705,-87.29532654709992,-87.29464972384721,-87.29443432601073,-87.2941265447123,-87.29381881478521,-87.29378826402524,-87.29344995068675,-87.29317345241199,-87.29283430703569,-87.29237293967198,-87.29231159245914,-87.29218836333671,-87.29203430230801,-87.29200323313628,-87.29178806302775,-87.291756993704,-87.29141882650673,-87.29135720417739,-87.29095685949861,-87.29071032787004,-87.29061760714094,-87.29055702393818,-87.29037185201065,-87.28966387117755,-87.28904726034853,-87.28876989113783,-87.28837001135436,-87.28827701411964,-87.28812422460685,-87.28790797834506,-87.28716938311651,-87.28704583195945,-87.28698392826149,-87.28673709762306,-87.2863680416914,-87.28633721259739,-87.2860598234253,-87.28602899171187,-87.28596787990932,-87.28587488138663,-87.28575160451584,-87.28538250944064,-87.28458176620533,-87.28445821106602,-87.28421244297928,-87.28418161081534,-87.2839650786163,-87.28390370098377,-87.28368797279424,-87.28356551570151,-87.28347229791562,-87.28313465651433,-87.28273427498067,-87.28261048699606,-87.28248779746055,-87.28241149429398,-87.2823723416015,-87.28238092062639,-87.28248952011701,-87.28249129082829,-87.28247505776773,-87.28242994876622,-87.28238422487755,-87.28224613178021,-87.28200058120825,-87.28167731135177,-87.28123998734854,-87.28115497587861,-87.28110924783915,-87.28110876608834,-87.28109428296554,-87.28108764829597,-87.28106516842494,-87.28101986268717,-87.28094347887433,-87.2809134991076,-87.28091301728541,-87.28085183802014,-87.28085268062401,-87.28083742451177,-87.28082252412337,-87.28080646571188,-87.28080677275048,-87.28079072491998,-87.2807760678397,-87.2807458341243,-87.28074589825255,-87.28073064198659,-87.28073148462791,-87.28068533368331,-87.28068617529313,-87.28067012650602,-87.28067017977216,-87.2805793902269,-87.28056381749764,-87.28054909574441,-87.28054191365892,-87.2805491021045,-87.2805197854936,-87.28050451207962,-87.28050403054172,-87.28047429175784,-87.28042831381906,-87.2803969951412,-87.28035125708216,-87.28022894748139,-87.2801984164637,-87.2801981766995,-87.2801368751916,-87.28013663213154,-87.2800908306226,-87.28009058754309,-87.28001085330013,-87.27992245366144,-87.27990695294292,-87.27947767682555,-87.27920729614036,-87.27915413068602,-87.27910814895898,-87.27903947819414,-87.27889392967599,-87.27875490622586,-87.27863223165207,-87.27844908404779,-87.27838733905963,-87.27837219129334,-87.27831208915015,-87.27812752980778,-87.27812783286888,-87.27811336233721,-87.27806742653246,-87.27802169144155,-87.27783701580758,-87.27773044558515,-87.27765343560489,-87.27762288568287,-87.27762343244811,-87.27756212082524,-87.27753110084912,-87.27743876665387,-87.27740900493406,-87.27740876321732,-87.27730062183851,-87.27725487098436,-87.27717882773534,-87.27716361671858,-87.27714835333299,-87.27711816845871,-87.2771341002373,-87.27717976423337,-87.27717952075835,-87.27721066296029,-87.27724210043586,-87.27725827174538,-87.27727304764097,-87.27727335081183,-87.2773047876548,-87.27730529966489,-87.27729004745635,-87.27729092222182,-87.27727488079745,-87.27727518395061,-87.27725992361232,-87.2772450119724,-87.27719816785363,-87.27719871528765,-87.27716817773536,-87.27716793678761,-87.27707606928871,-87.27707582477476,-87.2770300270676,-87.27701426708222,-87.27698372824146,-87.27690774259628,-87.27660843242883,-87.27648520934936,-87.2763775297523,-87.27630860198833,-87.27627806355231,-87.27624733069538,-87.27623206514977,-87.27620163427345,-87.27618637306428,-87.27618666292288,-87.27615587765132,-87.276141210783,-87.27609545380597,-87.27609496672898,-87.27607970501877,-87.27606477731204,-87.27604951574747,-87.27603742200588,-87.27601935586083,-87.27600409146031,-87.2759889133321,-87.27591274290998,-87.27589667607302,-87.27589698151152,-87.27580546494808,-87.27575940567486,-87.27574444643305,-87.27571311465842,-87.27568286482185,-87.27559075615777,-87.27554416355511,-87.27554548463974,-87.27546889917268,-87.27542180346256,-87.2753296956933,-87.27528387497586,-87.27528442149905,-87.27523782898092,-87.27523836245811,-87.27519176617034,-87.27519231194684,-87.27511570815096,-87.27511546631619,-87.27503886104361,-87.27503861906168,-87.27499335754067,-87.27464716292988,-87.27444838083501,-87.27404813541673,-87.27404788975564,-87.27392492883723,-87.2739254749679,-87.27380328933907,-87.27380304354746,-87.27369535888276,-87.27367983589033,-87.27361823005732,-87.2733412421059,-87.27302037186656,-87.27278946779377,-87.27272076704219,-87.27253709111876,-87.27242969704432,-87.27238338391012,-87.27235208810536,-87.27235317914844,-87.27233791077411,-87.27233740818026,-87.27229163917738,-87.27229193737456,-87.27221592157537,-87.27210826487591,-87.27207801880282,-87.27206200491781,-87.27204672291788,-87.27204702090762,-87.27195468951049,-87.27194060843448,-87.27192508285472,-87.27192489259926,-87.2719104005854,-87.27189438617675,-87.27184911442117,-87.27169532387516,-87.27167160532125,-87.27159524272517,-87.27143410098618,-87.27121165687755,-87.27104294982793,-87.2709054886006,-87.27087388908613,-87.27060495789691,-87.27044426504906,-87.27012083778236,-87.26998280414422,-87.26989825659609,-87.26934479616436,-87.2692528462569,-87.26909028292172,-87.26865237741256,-87.26821285125992,-87.26788324632339,-87.26772911108476,-87.26748272579007,-87.2671775193905,-87.26669825903376,-87.26666689063482,-87.26605075223243,-87.26602096344178,-87.26546567708347,-87.26534287792285,-87.26485002972088,-87.26469584863251,-87.26423465304185,-87.2640499317432,-87.26384910762302,-87.26351070107543,-87.26332621633456,-87.26311061359839,-87.26190975631722,-87.2617866762365,-87.26123183604231,-87.26095478780816,-87.26055332354967,-87.26024566615138,-87.2595982121418,-87.25922834969683,-87.2591355594319,-87.25892045497486,-87.25851952774326,-87.25824223717751,-87.25811992403538,-87.25722598954765,-87.25719488499804,-87.25691703512304,-87.25657856722383,-87.2560547307515,-87.25599305842059,-87.25574682679188,-87.25534614294943,-87.25512997054292,-87.25509965573569,-87.25497654549875,-87.25494544201837,-87.25482152708,-87.25479201594204,-87.25460641427556,-87.25439158020271,-87.25426766411299,-87.25408313333726,-87.25374384252929,-87.25352738082184,-87.25346567494147,-87.25337312924417,-87.25318884603649,-87.25291127832102,-87.25272674108322,-87.25217204279261,-87.251864357907,-87.25174045153605,-87.251277740801,-87.25072276135508,-87.25038397908915,-87.25009745110675,-87.24992122627189,-87.24979809197339,-87.24968208239639,-87.24959772087212,-87.24949806147538,-87.2494669397817,-87.24945138050791,-87.24942080822335,-87.24908227420227,-87.24905142026753,-87.24886581494263,-87.24869733954546,-87.24821906275392,-87.24815736858713,-87.24797307412447,-87.24795015027101,-87.2477571482751,-87.2477036224324,-87.24758737089026,-87.24751856415176,-87.24734982829241,-87.24680245609625,-87.24658703777382,-87.24632497340035,-87.24612431181448,-87.24591734157002,-87.24578576638881,-87.24569320300216,-87.24560170878136,-87.24488456315812,-87.24432347777118,-87.24415341138324,-87.24361448897349,-87.24268239895522,-87.24232881741548,-87.24207463999738,-87.24184339267491,-87.24181228234217,-87.24148900847327,-87.24111960914431,-87.2408654176641,-87.24046461712381,-87.24008728107006,-87.23981040456012,-87.23937874473545,-87.238854802882,-87.23853351360546,-87.23852646844756,-87.23840758315249,-87.23825385019121,-87.23813044042925,-87.23797564968153,-87.23779133308342,-87.237683742719,-87.23742955486748,-87.23729875684808,-87.2371447545024,-87.23712128787982,-87.23708253163387,-87.23674474129764,-87.23650557579096,-87.23642146467081,-87.23630517486525,-87.23625111923862,-87.23608235228826,-87.23592862300329,-87.23551225895308,-87.23538936616457,-87.23527439302934,-87.23511169934091,-87.23498117372112,-87.23456585729274,-87.23413551217961,-87.23364212483568,-87.23346465060104,-87.23318855455111,-87.23257174231998,-87.23232491218013,-87.23180936353825,-87.23174765395338,-87.23167118525124,-87.23157122796812,-87.2314865872569,-87.23130197770351,-87.23103167218778,-87.23075530511929,-87.23057808055091,-87.22995466206412,-87.22970860786984,-87.22926924206649,-87.22862260046031,-87.22841530431126,-87.22804529297119,-87.22775203040574,-87.22733639155905,-87.22676517045809,-87.22655074741755,-87.22617942639616,-87.22611903381532,-87.2260259370899,-87.22587956216518,-87.22559549925387,-87.2254799820644,-87.22534863212798,-87.22527978582416,-87.22527952521953,-87.2251729584472,-87.22512759898818,-87.22512733405061,-87.22509594841839,-87.22509567015648,-87.22506586540381,-87.2250197007464,-87.22494346416475,-87.22492764830679,-87.22480471891113,-87.22477438682262,-87.22477437378106,-87.22477489790474,-87.22468309179376,-87.22470655938282,-87.22475295956112,-87.22478408167649,-87.22478381998826,-87.22484526169849,-87.22484656511079,-87.22488455070157,-87.22490088000232,-87.2249008775095,-87.22486974162287,-87.22477821005496,-87.22466321176262,-87.22395526191633,-87.22374028487204,-87.22356277715758,-87.22313206072462,-87.22282265823057,-87.22236133837359,-87.22215401983617,-87.22169954934536,-87.22112902237258,-87.220983157939,-87.22079060046774,-87.22069749949499,-87.2206663807337,-87.22046643219201,-87.22038124829739,-87.22028893487764,-87.22016654898297,-87.21964163837895,-87.21921063198749,-87.21893263223582,-87.21877911541526,-87.21874773636547,-87.21865647378503,-87.21840878718031,-87.2182238748226,-87.21796299031716,-87.21780815439865,-87.21767071794416,-87.21751561012373,-87.21714658760682,-87.21711572553031,-87.21693108539625,-87.21680632925437,-87.21662195714863,-87.21652936571471,-87.21649850334008,-87.21631412273187,-87.21606696438889,-87.21578922967232,-87.21569690702871,-87.21551176019021,-87.21548142663694,-87.21535772068317,-87.21529599670171,-87.21514194851392,-87.21501954570796,-87.21498841453494,-87.214818803374,-87.21468031010755,-87.21464946125103,-87.21443395468491,-87.21440309229142,-87.21422254498991,-87.21403195899671,-87.21387869410742,-87.2136320529915,-87.21344664073771,-87.21341551841728,-87.21335380660625,-87.21332347433137,-87.21319977799423,-87.21310718836735,-87.21307686861233,-87.21295341936674,-87.2127060224539,-87.2122130549003,-87.21218166285097,-87.21199650194021,-87.21194295249899,-87.21175042025345,-87.21156447450245,-87.2114415784699,-87.21137960345581,-87.21116282830975,-87.21094814270002,-87.21088565032983,-87.21063880669331,-87.21023792464491,-87.21002190228235,-87.2098981992724,-87.20984410995105,-87.20981375888995,-87.20975322769601,-87.20975293956161,-87.20971464465312,-87.20968401874221,-87.20961437263178,-87.20944579240525,-87.20939144435472,-87.2093220350981,-87.20927607212433,-87.20923804962841,-87.20911484506074,-87.20872175500648,-87.20850648717135,-87.20838382768247,-87.2081825611844,-87.20808311990665,-87.20795966774755,-87.20790453680874,-87.20740444171322,-87.20725012918074,-87.20712613494204,-87.20709527239543,-87.20697261248007,-87.20684915077783,-87.20657189154264,-87.20630278847213,-87.20597957792364,-87.20582549564213,-87.20572495245615,-87.20531705254932,-87.20525272829055,-87.20503499034788,-87.20477325886347,-87.20471229676134,-87.20449568647231,-87.20442574505557,-87.20439589269546,-87.20439584159492,-87.20441138085509,-87.2045038967827,-87.20452734883257,-87.20455050810334,-87.20461266734887,-87.20467410139378,-87.20467462079861,-87.20486812896264,-87.20489052373173,-87.20490604678916,-87.20488385193921,-87.20481392284175,-87.2048054634992,-87.20480674891613,-87.20485337141844,-87.20496829783005,-87.20517657415191,-87.20524697400339,-87.20533871936054,-87.20550185543331,-87.20553190751112,-87.2058333262315,-87.20611964486577,-87.2063440360632,-87.20639781581589,-87.20638987716181,-87.20637455855606,-87.20637481126185,-87.20645769608936,-87.20654412480414,-87.20672982622241,-87.20684535006505,-87.20712322826111,-87.20716961626859,-87.20717007879288,-87.2071924873317,-87.207262631264,-87.2073781469207,-87.20740978257494,-87.20739392427791,-87.2073633056946,-87.20736382608588,-87.20733241869591,-87.20730204825087,-87.20727135231085,-87.20724044277736,-87.20716388410123,-87.20704061939483,-87.20681708998161,-87.20663944233584,-87.20660907092433,-87.20660824279855,-87.20665620954838,-87.20673268439495,-87.20688664410349,-87.2069021968404,-87.20707991458353,-87.2071502888851,-87.20718872388994,-87.20719628024381,-87.2071352230784,-87.20708899356103,-87.207012428536,-87.20685087008003,-87.20672761261342,-87.20665002685369,-87.20660409076324,-87.20651120396278,-87.20631115143036,-87.20628764478901,-87.20624954052232,-87.20618061922623,-87.20617290132454,-87.20619606394108,-87.2062279593658,-87.20638169248581,-87.20669122756004,-87.20669095513146,-87.20681485051011,-87.20681457812216,-87.20695299835721,-87.20695351767635,-87.20709352181034,-87.20725438651851,-87.20737859887164,-87.20745561268549,-87.20757112913587,-87.20772543512156,-87.20793406251533,-87.20811233890338,-87.20825869194064,-87.20862977854249,-87.20872235601163,-87.20893835346294,-87.20929338011274,-87.20951728146716,-87.2097106121562,-87.20995087968197,-87.21010516394256,-87.2101510493963,-87.21018165002842,-87.21032088215271,-87.21048414740223,-87.21073789202971,-87.21096949825586,-87.21124834451574,-87.21130954564856,-87.21146440729726,-87.2114952661734,-87.21163402811342,-87.21189680631882,-87.21195774960368,-87.21201921483019,-87.21222867126528,-87.21228169684046,-87.21232864400498,-87.21239800409388,-87.21243650966008,-87.21243623760016,-87.21256071294486,-87.21262215683007,-87.21268409907371,-87.2127618740374,-87.21280747588418,-87.21280897864753,-87.21279287023162,-87.21279285550764,-87.21277755020468,-87.21277779212294,-87.21276248558932,-87.21276194928315,-87.21274663367169,-87.2127320888856,-87.21267057715313,-87.2126317235885,-87.21263928801962,-87.2126627266348,-87.21267855172766,-87.21270202274351,-87.21281014281863,-87.21291803715376,-87.21296470778113,-87.2129961008154,-87.21310371261518,-87.21338200803496,-87.21350569992133,-87.21375337209723,-87.21389237031427,-87.21392297506182,-87.21395408801384,-87.21398469735404,-87.21401503219467,-87.21404642895087,-87.21418516047875,-87.21438617651326,-87.21439408339904,-87.21455632016067,-87.21489662028713,-87.21511240137805,-87.2151590872032,-87.21532104850262,-87.21566822164343,-87.21590064347254,-87.2159623698051,-87.21614835265973,-87.21624782134421,-87.21633329934967,-87.2165491341445,-87.21672696844632,-87.21687314144955,-87.21690375109877,-87.21705888018295,-87.21718234936702,-87.21729842010072,-87.21739125003361,-87.21742288254775,-87.21745264654021,-87.2174929640816,-87.21752409136022,-87.21757785088772,-87.21757730497744,-87.21760180632413,-87.21759407386384,-87.21764835050443,-87.21764131017382,-87.21761857522401,-87.21760326847861,-87.21760404892476,-87.21758794240922,-87.21757286933233,-87.21755756642068,-87.21754248254021,-87.21752637353258,-87.21751182326508,-87.21748092544829,-87.21748091117534,-87.21745053457299,-87.21744972196903,-87.21743520808909,-87.21740427015023,-87.21735858802109,-87.21735804059691,-87.21732795535915,-87.21725135768054,-87.21715912497905,-87.21709758631476,-87.21708197569434,-87.21703575566532,-87.21697476408977,-87.21691323514848,-87.21689790683516,-87.21688259969552,-87.21683690126216,-87.21675927865429,-87.21672834828084,-87.21669797688973,-87.21665178165236,-87.21663671595205,-87.21660609363526,-87.21660582454582,-87.21649732006276,-87.21649784284531,-87.21645164265075,-87.21637452385659,-87.21632855705691,-87.21626702386325,-87.21623639741948,-87.21620523604828,-87.21606716347388,-87.21605158496416,-87.21568911096628,-87.21562046201851,-87.21560488750507,-87.21554284405575,-87.21554336645684,-87.21543562973912,-87.21543536015109,-87.21511221227402,-87.21508052841116,-87.21483420506125,-87.21448783541933,-87.21394795891027,-87.21337029447524,-87.2132998142243,-87.21326997633204,-87.21314590513974,-87.21274539544795,-87.2125107857282,-87.21228311624112,-87.21217513896309,-87.21178892502161,-87.21166643128184,-87.21140399231535,-87.21124214901269,-87.2110180068786,-87.21074821398706,-87.21070941054678,-87.21047787718064,-87.21046256433105,-87.21024660177274,-87.21010798426714,-87.20990811239486,-87.20977610642204,-87.2095920958795,-87.20933708304655,-87.20915913702034,-87.20875837249932,-87.2087203551267,-87.20801860793148,-87.20783300841006,-87.20745443509085,-87.20730130059276,-87.20697653439686,-87.20649865439259,-87.20614403464864,-87.20596634714397,-87.20534909128121,-87.20502463296873,-87.20473130686156,-87.20399890633377,-87.20361291601712,-87.20321237003822,-87.20287204507235,-87.20280341156658,-87.20219323506144,-87.20206202345412,-87.20163112659966,-87.20156907858036,-87.20114479107745,-87.20073528644576,-87.20040313867389,-87.2000250487129,-87.19963162429664,-87.19946977647052,-87.19913786711578,-87.19891423701445,-87.19788789411416,-87.19675378381032,-87.19619057205965,-87.19551958827087,-87.19517974757238,-87.19470891451216,-87.19435375410288,-87.19422305909109,-87.19388294984803,-87.19347442318798,-87.19317308805311,-87.19310365460835,-87.19298851114854,-87.19271018226434,-87.19246329089314,-87.19227104396488,-87.19213105979685,-87.19197685557899,-87.19167662076948,-87.19152163169302,-87.19136666032107,-87.1912129940724,-87.19081974553674,-87.19037903530892,-87.19013211607771,-87.19002488934393,-87.18988647703129,-87.18972406975044,-87.1896313908811,-87.18948432681685,-87.18942256024864,-87.18920657627443,-87.18895916147152,-87.18881206621354,-87.18877430031125,-87.18850387031877,-87.18812523149614,-87.18772462891495,-87.18748481918813,-87.18732321540629,-87.1871998978131,-87.18713837362239,-87.18704490046883,-87.18701400977388,-87.18689148553237,-87.18673703661705,-87.18636627976716,-87.18624982065882,-87.18601157852014,-87.18568651178609,-87.18550112588109,-87.18489183676034,-87.18464491655809,-87.18398870701284,-87.18381150192721,-87.18371142818862,-87.18361850698582,-87.1833402772014,-87.1832787905509,-87.18324789940087,-87.18306233378294,-87.18293936131145,-87.18287655007273,-87.18249003222462,-87.1819801519397,-87.18188777577151,-87.18151745401383,-87.18114737024065,-87.18086860087564,-87.18022097618321,-87.17966494129675,-87.17951023900589,-87.17926311205413,-87.17886204486895,-87.1787384662165,-87.17858422775954,-87.17851500800791,-87.17849913302115,-87.17849935700742,-87.1784684100721,-87.17839865938539,-87.17807515602355,-87.17799669958855,-87.17792879141074,-87.17787359693989,-87.1777964895161,-87.17766574748654,-87.17764249545874,-87.17764248891453,-87.1776118088133,-87.17754287147066,-87.17740267372496,-87.17730287919089,-87.17708584527121,-87.17668531396924,-87.17649968070899,-87.17646879168231,-87.17640725181418,-87.17628339501475,-87.17625251735232,-87.17612917773209,-87.17609830004866,-87.17603702145006,-87.17591318752248,-87.17572784264196,-87.17560429268939,-87.17544989319721,-87.17535723324181,-87.1752951884352,-87.17518029875404,-87.17512587195726,-87.17501038195294,-87.17485610933241,-87.17473906570773,-87.17467832066238,-87.17450852567167,-87.17436114345469,-87.17424621966313,-87.17394448376028,-87.1738522537713,-87.17382159570664,-87.17374390012942,-87.17362022239423,-87.17338099313592,-87.17324320145333,-87.1732429178536,-87.17316566325817,-87.17316537791552,-87.17310324458111,-87.17310375228499,-87.17302600394127,-87.17302730041605,-87.17299583871866,-87.1729955558673,-87.172964883557,-87.17296459727385,-87.17291909059642,-87.17279483452501,-87.17269519373195,-87.1721859451491,-87.17201545162096,-87.17192322570214,-87.17186900156112,-87.17183819618998,-87.17169859332593,-87.1716845462373,-87.1716677887412,-87.17167699690832,-87.17166909753756,-87.17173834622547,-87.17178545045532,-87.1718240466727,-87.17193203673645,-87.17196228435979,-87.17202443514221,-87.17205475721518,-87.1721023908257,-87.17214851797186,-87.17214823129146,-87.17224102642737,-87.17224073977827,-87.17228660217108,-87.17228789923256,-87.17237987098299,-87.17242619380606,-87.17244142877541,-87.17242680278861,-87.17233392343101,-87.17227265186446,-87.1722806556409,-87.17230298965913,-87.17237278478859,-87.17244312506575,-87.1725190508659,-87.17254248298255,-87.17262802435764,-87.17272874191576,-87.17276669302673,-87.17276719882618,-87.17282943262855,-87.17296841383273,-87.17309208044072,-87.17328463011157,-87.17343201274413,-87.17364041630901,-87.17377986900811,-87.17377984827087,-87.17399570662475,-87.17410458163046,-87.17418228678154,-87.1743831558484,-87.1745297594311,-87.17462259864976,-87.1746532115137,-87.1746998855856,-87.1747304837257,-87.17482303883544,-87.17493092741698,-87.17499315317309,-87.17510105614404,-87.17516328248247,-87.17547272586492,-87.17563499264384,-87.17586694254101,-87.17598939438815,-87.17613614655157,-87.17624488310908,-87.17663089714566,-87.1767857263571,-87.17691684908661,-87.17705618047368,-87.17711794955424,-87.17765812421976,-87.1777130231897,-87.17782861105209,-87.1779291735301,-87.1781453094646,-87.17833135188012,-87.17837780811848,-87.17868605126384,-87.17889507808177,-87.17914955844354,-87.17927284149499,-87.17940406687222,-87.17964382101806,-87.17976740838861,-87.17979854714167,-87.17986034603349,-87.17995354112595,-87.18010747513094,-87.18023077867664,-87.18038548911456,-87.18078727656467,-87.18094197572184,-87.18097287570242,-87.18112703796403,-87.18134379370461,-87.18193064686361,-87.1821777199236,-87.1823632678845,-87.18252558243017,-87.18264144918133,-87.1830049257525,-87.18329055635741,-87.18361469607264,-87.18412407702368,-87.18427105977911,-87.18459647826261,-87.18464980035979,-87.18481210541434,-87.18517559379342,-87.18545409820065,-87.18594858000425,-87.18597948154348,-87.18607135447672,-87.18617167922231,-87.18650406523422,-87.18672001185512,-87.18679047569023,-87.18701399214098,-87.18715377788776,-87.18715428654332,-87.18720018959874,-87.18719990919955,-87.18730801843125,-87.18751721878292,-87.18772543084724,-87.18778001836372,-87.1878573382978,-87.18794200946562,-87.18794252180096,-87.18798917788982,-87.18800443473617,-87.18803556808257,-87.18803529139132,-87.18808091270039,-87.18814396060985,-87.1882678200932,-87.1882981508442,-87.18834426630981,-87.18840703513118,-87.18854617814738,-87.18856115607234,-87.188623585087,-87.18863108068481,-87.18860847640967,-87.18860079877044,-87.18860803727792,-87.18862461617194,-87.18861690351699,-87.18862448129262,-87.18865627609316,-87.18867104891864,-87.18867127985006,-87.18868605022125,-87.18868628201683,-87.18870183868428,-87.18871675519661,-87.188748044059,-87.18874900373544,-87.18877970575339,-87.1887952686648,-87.18878737424623,-87.18874127876593,-87.18867219128585,-87.18851873305958,-87.18851845472504,-87.18847138279433,-87.18842503911247,-87.18834806736858,-87.18819425204235,-87.18819397100677,-87.18814689714291,-87.18812478720577,-87.18814074013282,-87.18817128192376,-87.1881948976458,-87.1881945701426,-87.1881021717238,-87.18794734029468,-87.18791787380962,-87.18788663939431,-87.18785631880989,-87.18785611087172,-87.18788739686005,-87.18792588886845,-87.18804912891503,-87.18810348710925,-87.18828088211775,-87.18840470828792,-87.18852064181381,-87.18869070771956,-87.1887839449526,-87.18883753515972,-87.18884516484738,-87.18878461739949,-87.18875259295119,-87.18867563140846,-87.18864439685072,-87.18859884485583,-87.18858318379937,-87.18858382290739,-87.18859910643549,-87.1887695507215,-87.18880060261502,-87.18879997738109,-87.18876948646876,-87.18866229784348,-87.18855406653498,-87.18852362308664,-87.1884308022757,-87.18841519078885,-87.18838413843213,-87.1883849913979,-87.18841571921453,-87.18843152855601,-87.1885629345971,-87.18860065502174,-87.18860134000718,-87.18852449684651,-87.1885012621411,-87.1885096271307,-87.18852517256049,-87.18854087630152,-87.18858730626037,-87.18858781784016,-87.18861816699493,-87.18861788932288,-87.18880386306806,-87.18883443377155,-87.18889656879016,-87.18895170692861,-87.18900593150228,-87.18902149794772,-87.18907523782278,-87.18914517197143,-87.18916842055027,-87.18909202186751,-87.1890920523976,-87.18913042134848,-87.18913116560299,-87.1891935269161,-87.18919347472072,-87.18922402304256,-87.18920853370609,-87.18921635392302,-87.18928659351405,-87.18933349477896,-87.18933315223906,-87.18934871528407,-87.18937977820417,-87.18940392536089,-87.18940302565569,-87.18937252964795,-87.18932645234719,-87.18919492550202,-87.18916469587748,-87.18911760936126,-87.18907153061099,-87.18902523394067,-87.18894773157204,-87.18882520160371,-87.1887622547527,-87.18870111937136,-87.18865510366554,-87.1886556151964,-87.18850033974648,-87.1883463133087,-87.18830029581342,-87.1882690521725,-87.18820740586537,-87.18817616210987,-87.18800689734405,-87.18772950361873,-87.1875362387951,-87.18727338492053,-87.18704943218769,-87.1870031198351,-87.1868409829986,-87.18668682728165,-87.1864477536655,-87.18619248255237,-87.18616128727322,-87.18605337898954,-87.18598435652213,-87.18571363300792,-87.18559037379509,-87.18552073779557,-87.18549063521837,-87.18544420947826,-87.18538170869148,-87.18533618255577,-87.18511237768371,-87.18491109757147,-87.18471911265493,-87.18437141552099,-87.18425477726306,-87.18414760074695,-87.18414731762371,-87.18408514647255,-87.18408486332288,-87.18397796878516,-87.18396233519768,-87.18386947242985,-87.18386918918902,-87.18379219069777,-87.18366863938543,-87.18363767932802,-87.18357629927239,-87.18357601590824,-87.18352918063381,-87.18352969016338,-87.18349900222262,-87.18346774705606,-87.18337512154042,-87.18335999821413,-87.18332930627309,-87.18329777179675,-87.18326707886568,-87.18323582322964,-87.18309730887799,-87.18308197118679,-87.18306735207912,-87.18303558902873,-87.18303581557146,-87.18295925122588,-87.18285076036423,-87.18285127044071,-87.18277396830428,-87.182619954622,-87.18255721273502,-87.18255692892005,-87.18252702906717,-87.18248064525378,-87.1823880128423,-87.18237209649523,-87.18218715809077,-87.18218686033855,-87.18216359081792,-87.1820476729368,-87.18181647241518,-87.18159165787682,-87.18124458696113,-87.18102107006332,-87.18074314601134,-87.18040309288527,-87.18018648388062,-87.18004021276765,-87.17987058608337,-87.17973145525039,-87.17942966514164,-87.17898986990988,-87.17860299880617,-87.17838749250571,-87.17826350269956,-87.17799307335254,-87.1777686216183,-87.17742094309621,-87.17698834638173,-87.17681065521624,-87.17659462730535,-87.17637782502854,-87.17603779036091,-87.17592224618797,-87.17561345876959,-87.17547386557351,-87.17536595079822,-87.17506485519237,-87.17500316600129,-87.17495504747984,-87.17487149389677,-87.17484931316585,-87.17472524253881,-87.17462420380745,-87.17453160239252,-87.17441592883816,-87.1743700873662,-87.17433859296929,-87.17433830920508,-87.17430760531317,-87.17430811204365,-87.17424591248721,-87.17424562532129,-87.17415324346598,-87.17415296053784,-87.17410768815101,-87.17407641358838,-87.17398322374967,-87.17398293732691,-87.17384528446961,-87.17384499713297,-87.17370518460913,-87.17370648412788,-87.17353574592116,-87.17353544725387,-87.17348939405328,-87.17348990045566,-87.17341286174035,-87.17338079219374,-87.17333551968802,-87.17333523298925,-87.17318064130244,-87.17316579021308,-87.17311894488802,-87.17291822138962,-87.17282546406247,-87.17277910989898,-87.17277882467319,-87.17274890996073,-87.17255503439542,-87.17246997408354,-87.17246968875391,-87.17223882113805,-87.17198323861794,-87.17191440991972,-87.17183619891256,-87.17177500259345,-87.17172829054023,-87.17162024579328,-87.17162154110579,-87.17159004060029,-87.17158975657881,-87.17152855563913,-87.1714357061433,-87.17143563840216,-87.17133515282053,-87.171296591763,-87.17118867537813,-87.17108005101615,-87.17103478536139,-87.17101834598506,-87.17083330989115,-87.17083381436635,-87.17077160221719,-87.17077129968504,-87.17072524215324,-87.17072495347252,-87.17064789919243,-87.17060096447295,-87.17044727009129,-87.17044698471155,-87.17037042983179,-87.17037014527412,-87.1702312935027,-87.17003015931712,-87.16999944667251,-87.16996895015153,-87.16986067369291,-87.16979874649415,-87.16953533591118,-87.16950570575044,-87.16922721518473,-87.16876307560456,-87.16862386057825,-87.16840758132064,-87.16837715511157,-87.16831573979525,-87.16828452374573,-87.16823765075998,-87.16808337318457,-87.16797537667209,-87.16777427739144,-87.1677359143124,-87.16761998277057,-87.16758877652866,-87.16751198085173,-87.16749634374176,-87.1673880518811,-87.16734089143817,-87.16731067870312,-87.16728056372908,-87.16726871928661,-87.16723800582703,-87.16720750262007,-87.16717600909479,-87.16717570490897,-87.16712963724407,-87.16705197400685,-87.16705327175755,-87.16696005206875,-87.1669597515706,-87.16691339467931,-87.1667735922739,-87.16675952346517,-87.16637269822401,-87.16629562302504,-87.16597893931697,-87.16587827283104,-87.16580069115824,-87.16576947129076,-87.16564659745556,-87.16541441438773,-87.16519752430428,-87.1651517402869,-87.16510486050304,-87.16507443137888,-87.1649507755989,-87.16491955283546,-87.16468837000714,-87.16435617259415,-87.16400055100775,-87.16398519882796,-87.16381531596349,-87.16339723964049,-87.16247707604926,-87.16194481360112,-87.16189056359248,-87.161634497577,-87.16133343688,-87.16093132994833,-87.16040545834747,-87.15975662747603,-87.15903776270687,-87.1583965890888,-87.15833389833637,-87.15799347915548,-87.1577157025032,-87.1576307792231,-87.15713639983811,-87.15698907635372,-87.15687400879003,-87.1568036760998,-87.15641749911269,-87.15634767833332,-87.15596889480756,-87.15572183945247,-87.15562846236105,-87.15534993149029,-87.15525813550212,-87.15488308547063,-87.15444638206311,-87.15442335385239,-87.15407471669688,-87.1537117458723,-87.15318611394331,-87.15286869717993,-87.15275334345917,-87.15234279759548,-87.15170139440966,-87.15145437387035,-87.15142345227933,-87.15136128443051,-87.15126873832877,-87.15120657366083,-87.15111402769323,-87.15083577815926,-87.15071175238859,-87.15061891258281,-87.15058797695197,-87.15052660266785,-87.15034120216922,-87.15031028033466,-87.15009364939561,-87.14987677022641,-87.14984584845523,-87.14948322984257,-87.14935097391147,-87.1491968049463,-87.14880275237958,-87.1485243085987,-87.14833025867611,-87.14814539968553,-87.14799042131584,-87.14780551312938,-87.14777457694156,-87.14771242536725,-87.14755769653628,-87.14743394739429,-87.14731068023396,-87.14727974426435,-87.14718690041386,-87.14700125004471,-87.14672280390381,-87.1466609316012,-87.14662946491364,-87.14656759321603,-87.14642135735463,-87.14625900383371,-87.14585702397574,-87.14570181052586,-87.14546246722635,-87.14542440388354,-87.14512289089362,-87.14502161331909,-87.14495944522228,-87.14477484552053,-87.14474390923611,-87.14458864436293,-87.14455771047355,-87.1444656571593,-87.14434162558912,-87.1442180794425,-87.14409404841221,-87.14403267055192,-87.14400173429658,-87.143691997825,-87.14366107550869,-87.14356900647172,-87.1435380839888,-87.14316696793927,-87.14313603141923,-87.14239323262692,-87.14217656743524,-87.14211464276269,-87.14192972464454,-87.14186732054046,-87.14168930011368,-87.14144310470098,-87.14127947380065,-87.14121814592762,-87.14106456300426,-87.14098669540323,-87.14097111850123,-87.14095478202847,-87.14094737840587,-87.14084726163439,-87.14078570301794,-87.14067678762434,-87.1405535488708,-87.1404913780864,-87.14030561203144,-87.14008922312577,-87.14005828638277,-87.13999611535451,-87.13987262712942,-87.13968776211145,-87.13957903903233,-87.13952453722179,-87.13947820153383,-87.13931689128931,-87.13917654755008,-87.13889868269807,-87.13883692987913,-87.13880535716802,-87.13876728588856,-87.13872906475967,-87.13868186326529,-87.13853448583237,-87.13848837287125,-87.13827233985228,-87.1381946036114,-87.13816412177552,-87.13816382044803,-87.13811820215786,-87.13811762300985,-87.13804072828859,-87.13804016060243,-87.13802506181418,-87.1380241818698,-87.13800908040041,-87.13800877563659,-87.13799367676636,-87.13799317845704,-87.13797807975159,-87.13797794480888,-87.1379942951426,-87.13800865096903,-87.138040259042,-87.13804044992908,-87.1380704870796,-87.13808604181574,-87.13807014755874,-87.13807085243596,-87.13805575352687,-87.13803950477366,-87.13802440571034,-87.13802463200361,-87.13790131978482,-87.13786939400174,-87.13782324369721,-87.13780699801934,-87.13777700803725,-87.13776075895429,-87.13774565935746,-87.13774509158436,-87.1377299921526,-87.13773020363409,-87.137684055252,-87.13763754862097,-87.13762244902527,-87.13762186710834,-87.13757573421978,-87.13754408289481,-87.13745123870025,-87.13740499898805,-87.1373822530615,-87.13740552887634,-87.13738192476923,-87.13732767468967,-87.1372504740512,-87.13717288217155,-87.13717388842362,-87.13715721402424,-87.13714193694861,-87.13712683426157,-87.13711107491291,-87.13708030615743,-87.13704913119855,-87.13704905841097,-87.13703316480047,-87.13703386455954,-87.13701876435462,-87.13701816234995,-87.13700349825056,-87.13698681187364,-87.13698751598726,-87.13697241131375,-87.13695665305681,-87.13694076197021,-87.13689474414761,-87.13684859060653,-87.1368174514282,-87.13680236478132,-87.13670813852528,-87.13654597231813,-87.13630717462537,-87.13595094873338,-87.13585000112737,-87.1357577440119,-87.13570387889717,-87.13570329665947,-87.13568819311573,-87.13568732389966,-87.13567222247693,-87.13567198359594,-87.13565661593422,-87.1356573159952,-87.13559441751359,-87.13547940468736,-87.13527067177942,-87.13523143415455,-87.13514641501411,-87.13503007769403,-87.13479779177386,-87.13457351568012,-87.13448872455552,-87.13435737278999,-87.13428717179551,-87.134179653985,-87.13384657432528,-87.13358412889067,-87.13352237437309,-87.13349071134124,-87.13349094270632,-87.13347504487012,-87.13347474210714,-87.13345220739129,-87.1333433083055,-87.13322794353411,-87.13314261454562,-87.13307308811643,-87.1330418040409,-87.1330112378137,-87.13283275221342,-87.13268652719809,-87.13262448930004,-87.13248570826988,-87.13239212027979,-87.13229976993691,-87.13226928138455,-87.13226871153132,-87.13225360810971,-87.13222144997825,-87.13222206994033,-87.13223762622076,-87.13223660183486,-87.1322534437839,-87.13225243064871,-87.13223674200022,-87.13223699945073,-87.13222161502645,-87.13222202431947,-87.1322061262357,-87.13219081378577,-87.13217542463038,-87.13215913094082,-87.13211321069348,-87.13208273160613,-87.13208243164571,-87.13203629854576,-87.13203599770941,-87.13200523937937,-87.13197387343443,-87.1319740835484,-87.1319589795134,-87.1319270074566,-87.13194300893365,-87.13181906808109,-87.13174143931413,-87.13171044961136,-87.13164850882886,-87.13163319437494,-87.13164046194493,-87.13163308410506,-87.13160253362008,-87.13155587383007,-87.13153165449597,-87.13152497187667,-87.13150986726356,-87.13150929581532,-87.13149417710463,-87.13146333461869,-87.13126098969232,-87.13116811407671,-87.13115372853926,-87.13104524252314,-87.13094409713304,-87.13093677050848,-87.1309216625957,-87.13090537872348,-87.13090526225768,-87.13087406478876,-87.13087477733598,-87.13085966759603,-87.1308436759404,-87.13084357879144,-87.13082767996382,-87.1308283923134,-87.13081249224201,-87.13081258086848,-87.13079668448854,-87.1307973785314,-87.13078148197616,-87.13076568628946,-87.13075109070853,-87.1307504554852,-87.13073534966799,-87.13073522964541,-87.13070416540988,-87.13065751279835,-87.13064240710031,-87.13064175726792,-87.13062666222731,-87.13062614746094,-87.13061103730909,-87.13059541384706,-87.13058002712005,-87.13057960601343,-87.13056502399085,-87.13051850486445,-87.13047152376204,-87.13045534294204,-87.1304555265325,-87.13042494949764,-87.13040932610679,-87.13039394861167,-87.13039351211187,-87.13037892980482,-87.13036281855331,-87.1303466366639,-87.13034700452353,-87.13033181611985,-87.13033200212122,-87.13031630938022,-87.13031630837042,-87.13028432964936,-87.13028456684914,-87.13023086087163,-87.13020761157527,-87.13015340118005,-87.13006031500676,-87.12995166538479,-87.12992090213422,-87.12988264197979,-87.12984421842921,-87.12978171159315,-87.12975021085101,-87.1294800502305,-87.12911652993515,-87.12899337786347,-87.12889991858054,-87.1287450026462,-87.1285283087373,-87.12830334322818,-87.1282343968727,-87.12811035135834,-87.1279635748041,-87.12772413150131,-87.12722888417231,-87.12705032221206,-87.12690378634231,-87.12675623819267,-87.12661739703204,-87.12643105278428,-87.12622319344683,-87.1260284374498,-87.12599785067023,-87.12596708065306,-87.12596677378818,-87.12593679550147,-87.12592083034329,-87.12588955035994,-87.12575070142806,-87.12564993857764,-87.12552591979282,-87.12540204450578,-87.12534844054512,-87.1253324770135,-87.1252084743968,-87.12511521568246,-87.12503637236563,-87.124967697174,-87.12492092146688,-87.12486026378322,-87.1248288804138,-87.1247989019313,-87.12473691241034,-87.12469134248623,-87.12469154916347,-87.12472272374534,-87.12472312441847,-87.12470792489437,-87.12472335938642,-87.12472363596569,-87.12478546057115,-87.12478643065349,-87.12483281934551,-87.12483330654413,-87.12486364914174,-87.12486413635149,-87.12489447900538,-87.12489417171665,-87.12492608611387,-87.12498838959576,-87.12493560050279,-87.12493618249201,-87.12489734247626,-87.12488182536998,-87.12488981827032,-87.12488312828283,-87.12485209019633,-87.12484438534663,-87.12478293129205,-87.12477552939971,-87.12474450439034,-87.12476928820197,-87.12480761301323,-87.1248395408129,-87.12483923586542,-87.12487033060538,-87.12487859582679,-87.12486356064838,-87.12480127062206,-87.12473236154646,-87.12472478000628,-87.12474116006611,-87.12473396156747,-87.12471959409389,-87.12467365646218,-87.12461198294632,-87.12458125936672,-87.12458184121994,-87.1245978879078,-87.12459776314059,-87.12462908219338,-87.12462846768662,-87.12466007770448,-87.12466026051385,-87.12467503011278,-87.12472233047745,-87.12475267669399,-87.12483105723106,-87.12489246405097,-87.12493946298746,-87.12496388889997,-87.12494046829516,-87.12494086758495,-87.12495644536864,-87.12495583361061,-87.1249713947534,-87.12498738250044,-87.1250021517138,-87.12503466552869,-87.12504987272142,-87.12506543240143,-87.12506482155634,-87.12508038544958,-87.12508135984257,-87.12509692048546,-87.12509728323489,-87.12511257343721,-87.12517823710297,-87.12522301584185,-87.12523645999374,-87.12517788417742,-87.12511170849763,-87.12502034468005,-87.12497404155675,-87.12496664154048,-87.1249748037695,-87.12499007465507,-87.12499100241085,-87.12500702780092,-87.12500655575768,-87.12486872936815,-87.12482244281756,-87.12479166102463,-87.12462209585877,-87.12446811917421,-87.12436025147645,-87.12429054597648,-87.12424418439981,-87.12416688042242,-87.12410548310541,-87.12405119724878,-87.12403527377863,-87.124035671508,-87.12406679614696,-87.12416658532945,-87.12419094909023,-87.12422145992575,-87.12425189736206,-87.12434474013916,-87.12446106672151,-87.12450783402336,-87.1245387325114,-87.12456243956936,-87.12456188215005,-87.12454649714773,-87.12454745703607,-87.12451606087527,-87.12448527957184,-87.12448576649423,-87.1244392832003,-87.12436105441586,-87.12430038784126,-87.124160876243,-87.12394495279722,-87.12363462478132,-87.12323293499412,-87.12314035689717,-87.12273795387664,-87.12264458431916,-87.12242762888978,-87.1223662561608,-87.12224242339732,-87.12221121807474,-87.12211833520585,-87.12208792653338,-87.12199505672773,-87.12193368434005,-87.12162304965737,-87.12153071603005,-87.12128273179135,-87.12106725529068,-87.12103574389334,-87.12100471782647,-87.12100572662901,-87.12102049890447,-87.12109049771747,-87.12131449995483,-87.12140762796454,-87.12146922742082,-87.12157824159895,-87.12160863886454,-87.12167056086912,-87.12172478326762,-87.12205689058483,-87.12225797858558,-87.1229076176172,-87.1229700906416,-87.12321697412435,-87.12341806171618,-87.12344926820812,-87.12357255007853,-87.12366616357299,-87.12369712518515,-87.12385233771317,-87.12392951743176,-87.12397601769995,-87.12404495098015,-87.12416929699339,-87.12430164715578,-87.12432520652112,-87.12431724252389,-87.12427160239244,-87.1242105223775,-87.12419450904351,-87.12413263726279,-87.12411741981455,-87.12407123787551,-87.1240717237603,-87.12397876042338,-87.12394815832114,-87.12391737528391,-87.12391706968396,-87.12378586448132,-87.1236005340954,-87.12339329792222,-87.12336141300968,-87.12331545939143,-87.12330006136297,-87.12325472045222,-87.12305352636567,-87.12303882587759,-87.12289937851723,-87.12289986557879,-87.12286906541179,-87.12286876021393,-87.12282307254716,-87.12277614621327,-87.12276074423515,-87.12273825867103,-87.12273860301302,-87.12282362031679,-87.12282482109904,-87.12277789039369,-87.12277845866659,-87.12279407403879,-87.1229111308235,-87.12297361570056,-87.12297397430686,-87.12290468382858,-87.12290471981861,-87.12292931127202,-87.12295216554242,-87.12304507215903,-87.12330838267852,-87.12341688185072,-87.12347837799132,-87.12352530664113,-87.1235408062266,-87.12354099832612,-87.12352559455863,-87.12351007973264,-87.12342582659377,-87.12330249805494,-87.12306281063135,-87.12300105903306,-87.12293899697184,-87.12292359725699,-87.12291649469319,-87.12265383021693,-87.12253794175551,-87.12235189568514,-87.12217512372675,-87.12195864763103,-87.12159514738678,-87.12143276424797,-87.12097651097206,-87.12056778920025,-87.11994879130029,-87.11936107690212,-87.11910551691351,-87.11890452375539,-87.11850327704894,-87.11847231208208,-87.11837934026451,-87.11834837255866,-87.11813227447546,-87.11810130676751,-87.11767551438321,-87.11603612847131,-87.11590479713166,-87.11554069155261,-87.11541015244966,-87.11529336412967,-87.11509955969335,-87.11488407215144,-87.11475989193589,-87.11455067894069,-87.11429625445957,-87.11407966321153,-87.11352290597868,-87.11339872551841,-87.1132131699477,-87.11293411879427,-87.11268713856401,-87.11265563247544,-87.11250103569004,-87.11247110202915,-87.11240916582264,-87.11228499482075,-87.11164336068448,-87.11141864041031,-87.11110945513735,-87.11052094253989,-87.1104590104174,-87.11042908696189,-87.11012648591691,-87.10994172510094,-87.10965508208379,-87.10931492722999,-87.10925958998489,-87.1083241279409,-87.10736442829229,-87.10690079874001,-87.10674548121975,-87.10631310443158,-87.1059415046453,-87.10550803923485,-87.10522989487073,-87.10495965086893,-87.10451767138672,-87.10414642921229,-87.10368252362083,-87.10294009900913,-87.10290810361566,-87.10278479842783,-87.10269220856443,-87.10225852415681,-87.10207304766313,-87.10182492037529,-87.1014843644606,-87.10120658294103,-87.10095899710227,-87.10092804374814,-87.10086642201755,-87.10061853364775,-87.10027781979021,-87.10018548548668,-87.09987574383462,-87.09968923467603,-87.09941125270153,-87.09907022505865,-87.09879240438437,-87.09863718531818,-87.09848259718318,-87.09841240093995,-87.09837342307314,-87.09835881760732,-87.09827306283509,-87.09824989231356,-87.09822543814249,-87.09822638944252,-87.09817586413143,-87.09807887474805,-87.09799458682643,-87.09793992808258,-87.09786279072274,-87.09779366055625,-87.0976613860888,-87.09744404332412,-87.097227528584,-87.09698044424411,-87.0967013301516,-87.09645318402001,-87.09630681623185,-87.0962369116511,-87.09619004053182,-87.09615891775704,-87.09616688331425,-87.09615848167951,-87.09618057022328,-87.09617389967063,-87.096126761508,-87.09603388093809,-87.09600230178069,-87.09581716147976,-87.0958158941561,-87.09578556364451,-87.09575429906027,-87.09567633935772,-87.09567729398404,-87.09575387921002,-87.09573845068202,-87.09566826537743,-87.09559872401675,-87.09557586428322,-87.09557571839332,-87.09558317448061,-87.09564470804142,-87.09572204734681,-87.0959705471615,-87.09600095665066,-87.09618696817815,-87.0962404010241,-87.09648096802721,-87.09657360956321,-87.0966038305698,-87.09663542853633,-87.09662713780918,-87.09657378492996,-87.09660411627388,-87.09660395882672,-87.09655720195168,-87.09650324591595,-87.09632489242576,-87.09624041857899,-87.09618685929583,-87.09608574987989,-87.09599250469233,-87.09592394905233,-87.09561431525719,-87.09552067445438,-87.09547522059063,-87.09545998370824,-87.09547411174211,-87.09547429114629,-87.0954904814064,-87.09552067047136,-87.09555068689566,-87.09559706203569,-87.09568331760589,-87.09573660583091,-87.09581475523756,-87.09609180442457,-87.09611487131694,-87.09613110592903,-87.09612305477012,-87.09609272488774,-87.09596872540256,-87.09595869222665,-87.0962921305244,-87.0964609875101,-87.09629948560676,-87.09607618975603,-87.09603022909107,-87.09601415291245,-87.09602967455704,-87.09606870947721,-87.09612249030346,-87.09624666062408,-87.09637018668201,-87.09664074433768,-87.09675705201938,-87.0968499003295,-87.0969116216213,-87.09693497259795,-87.09702762801717,-87.09703576257996,-87.09701147220569,-87.09688119575792,-87.09666363743213,-87.09647718684361,-87.09632349304952,-87.09620006880365,-87.09604429559953,-87.09577476354198,-87.09570500415569,-87.09566606509787,-87.09558108361628,-87.0955503903261,-87.09546505795093,-87.09542588443489,-87.09541033826811,-87.09537985277338,-87.09539530965023,-87.09541812653764,-87.09547139966537,-87.09558025482214,-87.09582723762198,-87.09632311535695,-87.09644695440832,-87.09658664962646,-87.09664031569497,-87.09671692464168,-87.09677194088502,-87.0971422191224,-87.09726705721867,-87.09739010600549,-87.09748331299849,-87.09756786674221,-87.09759922345549,-87.09761399847021,-87.09760637198184,-87.09761399764926,-87.09769134480345,-87.09769880656845,-87.09775312013957,-87.09779955597644,-87.09782964710487,-87.09782187460299,-87.09771343362111,-87.0977064526892,-87.09772089705947,-87.09771312470882,-87.09767379125758,-87.09760481073133,-87.09754288523536,-87.09745789003073,-87.09726450604329,-87.09723401694021,-87.09692440589953,-87.09681626333261,-87.09677799228473,-87.09677783494999,-87.09675448137061,-87.09675416533629,-87.09667048665888,-87.09665412599493,-87.0966702324811,-87.09669333217326,-87.09668618492807,-87.09667047204279,-87.09663172401441,-87.09654720394632,-87.09643042213575,-87.09609051646545,-87.09541061578568,-87.09532432133392,-87.09525524349692,-87.09519387186465,-87.09510852771284,-87.09503888090984,-87.09496112141123,-87.09490729653176,-87.09482888318091,-87.09471281804259,-87.0947209245989,-87.09480599697712,-87.09479840549324,-87.09474367863635,-87.0946510260907,-87.09458938290892,-87.09454262959444,-87.09443395541062,-87.09438760202138,-87.09437950494053,-87.09444192722752,-87.09448799128218,-87.09448767685586,-87.09444831861501,-87.09437084312873,-87.09437116433482,-87.09432528276217,-87.09426290817839,-87.0942075040453,-87.09411529825579,-87.09398301986346,-87.09383633430798,-87.09371201613729,-87.09334146837143,-87.09330988977443,-87.09331052691046,-87.09334058807309,-87.09334070357178,-87.09330912615593,-87.09326291688167,-87.09313900996403,-87.09305399366231,-87.09302368171646,-87.09289891739941,-87.09288319468824,-87.09289116895869,-87.09287514258457,-87.09273639109423,-87.09268941341706,-87.0926735516161,-87.09268212915357,-87.09267360964151,-87.09265806788295,-87.09262711553426,-87.09241711707953,-87.09224758752053,-87.09221615275624,-87.09210805174638,-87.09187476465551,-87.09186698701919,-87.09187462799555,-87.09193626176898,-87.09204424450243,-87.0920748963122,-87.09209093043671,-87.09209079846767,-87.092105257526,-87.09217512787578,-87.0922137168828,-87.09237554700171,-87.09246115505168,-87.09249172036895,-87.09249205654304,-87.09238316333354,-87.09236745732125,-87.09238333299247,-87.0924595649257,-87.09238180133441,-87.09235115828008,-87.09232830700877,-87.09233581624845,-87.09232816758048,-87.09226595254661,-87.0922111937292,-87.09210310915871,-87.09205692004566,-87.09196358215252,-87.09194835158137,-87.09179359176254,-87.09176185073083,-87.09176220248597,-87.09168475906397,-87.09151348290573,-87.091475873281,-87.09146762539478,-87.09149114793038,-87.09153721456886,-87.09152788420084,-87.09148233544296,-87.09135059015888,-87.09109582074767,-87.09097117901239,-87.09087843604132,-87.0908173628727,-87.09078612079844,-87.09075541776292,-87.09070900195442,-87.09058464297524,-87.09056986383005,-87.09078705734778,-87.09081769852247,-87.09086356301175,-87.09088697272415,-87.09088711524724,-87.09077926150566,-87.09075654087313,-87.09075651539305,-87.0907879376345,-87.09086571099728,-87.09090424193079,-87.0910051508716,-87.09120552375283,-87.09142196760109,-87.09152289151668,-87.09163086666928,-87.0917555893585,-87.09177923541856,-87.09182510412211,-87.0918564556177,-87.0918561353493,-87.09190279812422,-87.09190327345999,-87.09194914682325,-87.09194882487314,-87.09198071840349,-87.09198039903301,-87.09202697912521,-87.09202634130011,-87.09205832220962,-87.09205831408629,-87.09204290626185,-87.09204289488613,-87.09202748711022,-87.09201207034927,-87.09198142064557,-87.09198078443536,-87.09196537239464,-87.0919658384081,-87.09199650447414,-87.09199740391679,-87.09198201011039,-87.09197390395101,-87.09194309808872,-87.09183544065969,-87.09179639164765,-87.09172716001511,-87.09169615097859,-87.09130130757312,-87.09118536041468,-87.0911155161552,-87.09108452378032,-87.09105427287673,-87.09105446260831,-87.09110001147435,-87.09107003580637,-87.09094605819129,-87.09092340618531,-87.09092964086244,-87.09092294430526,-87.09082225473377,-87.0906989381111,-87.09045087722616,-87.09020327136481,-87.09005626527201,-87.0899559157339,-87.08977096756477,-87.08964716083601,-87.08952254569263,-87.08930579736082,-87.08927586742031,-87.0892139626601,-87.08902811999688,-87.08896588177119,-87.08871916598009,-87.08850212639149,-87.0883551863042,-87.08819246110583,-87.08806895881588,-87.08794497011341,-87.087852424103,-87.0877910617024,-87.0876981828302,-87.08757459620169,-87.08738848458843,-87.08720279363533,-87.08712566235478,-87.08710283110273,-87.08713362265364,-87.08722581008421,-87.08723473000194,-87.08722643415888,-87.08718768260788,-87.08716490133433,-87.08712572996573,-87.08701804456975,-87.08697060785579,-87.08694055750348,-87.08693241501847,-87.08691016981561,-87.08685568612785,-87.08677899249723,-87.08676325987463,-87.08677054243823,-87.08675480818864,-87.08661615773728,-87.08657027352362,-87.08654707153404,-87.08654769379106,-87.08657839827093,-87.08659423298451,-87.08659386286764,-87.08660969573302,-87.08661007922707,-87.08657923372081,-87.08653270817321,-87.08633095296042,-87.08589108293899,-87.08577453876669,-87.08568165399171,-87.08556560425579,-87.08547369986088,-87.08541080037577,-87.08525660093368,-87.08519439358362,-87.0851014255161,-87.08502402199174,-87.08498587598814,-87.08482299177162,-87.08473007509215,-87.08462248642803,-87.08455983231732,-87.08454569892014,-87.08447486794844,-87.08431021143211,-87.08401900676328,-87.08389539623441,-87.08380321803708,-87.08355545592656,-87.08343966686402,-87.08327739924437,-87.08317621555736,-87.08309123906548,-87.08275123663527,-87.08250341350826,-87.0824418116986,-87.08231830498971,-87.08219445997629,-87.08200861872726,-87.08191564883727,-87.08185344085339,-87.08172988014017,-87.08157573432551,-87.08148243262166,-87.08142802084714,-87.08133573755384,-87.08127418987931,-87.08098811245979,-87.08092578617521,-87.08084050071153,-87.08068541025489,-87.080476380749,-87.08042225535331,-87.08029042787045,-87.08024415650961,-87.08013618232813,-87.08007371708042,-87.07985757157297,-87.07969531237846,-87.0795957169629,-87.07954898678047,-87.07950296456741,-87.07944082970585,-87.07941001605388,-87.07941048241196,-87.07934885203773,-87.07922539278218,-87.07914005998032,-87.07910948402491,-87.07911752560184,-87.07910193041417,-87.07910966012217,-87.07907908354611,-87.07908730292128,-87.07907996647357,-87.07917286886594,-87.07924186309262,-87.07927446478899,-87.07939809202914,-87.07943694883951,-87.07942850402638,-87.07932868531076,-87.07932849336451,-87.07935204024261,-87.07943695143472,-87.07948369610297,-87.0796924177282,-87.07976182652688,-87.07978598686933,-87.07988631419296,-87.08001835402536,-87.08004899706062,-87.08011914348036,-87.08019579213787,-87.08034403123027,-87.08037467396935,-87.08054440564963,-87.08061464427219,-87.08069945277202,-87.08076185249728,-87.08088486564151,-87.08109405258145,-87.08148167155561,-87.08155911200387,-87.08161218093362,-87.08166649774178,-87.08172119414047,-87.0817755638209,-87.08179881950127,-87.08186074791315,-87.08192192148258,-87.08198422754134,-87.0820455365605,-87.08214592045024,-87.08217758185518,-87.08219241649472,-87.08222402695019,-87.08227017217526,-87.08243286292625,-87.0824482772028,-87.0824549565683,-87.08242425455431,-87.08243223508767,-87.08246245593487,-87.08255533448325,-87.08263357089673,-87.08279596960442,-87.08284207340046,-87.0828580538506,-87.08293507357027,-87.08298952899425,-87.08316045714101,-87.0831832072471,-87.08321356210577,-87.08328377691993,-87.08332991701576,-87.08360903922568,-87.08370138850886,-87.08374062809121,-87.08374025651753,-87.08375608983592,-87.08377175134146,-87.08377215739212,-87.08380299816866,-87.08382653902748,-87.08382650125856,-87.08376360675861,-87.08375692568821,-87.08379621948045,-87.08378762937029,-87.08376427305286,-87.08367951960498,-87.08362501017069,-87.08360254607194,-87.08358647547989,-87.08356296963747,-87.08351649142405,-87.0834080476216,-87.0833624746784,-87.08331601771842,-87.08326961262657,-87.08320048294304,-87.08313062364216,-87.08309942221278,-87.08304501485226,-87.08299913239148,-87.08294404488285,-87.08278945205255,-87.08277359365306,-87.08279759904715,-87.08277395916438,-87.08271926723108,-87.08264967767599,-87.08258827098912,-87.0825029458248,-87.08243289582877,-87.08238732455415,-87.0823182059808,-87.08224838676144,-87.08217794463197,-87.08215490663403,-87.08213192359536,-87.08210043824018,-87.08203847134723,-87.08201539932105,-87.08199219879434,-87.08199202435523,-87.08200804482985,-87.08202323884416,-87.08204664437655,-87.08211628982204,-87.08227845772849,-87.08237215585295,-87.08239480069054,-87.08239536893184,-87.08237249296288,-87.08220191363223,-87.08212468579698,-87.08209386661136,-87.08202460873973,-87.08186975416965,-87.08173046090847,-87.08163817940091,-87.08156892308315,-87.0815291903013,-87.08152233280722,-87.08119734951346,-87.08111281640996,-87.08095020461028,-87.08090391006481,-87.08084128567421,-87.08080358448917,-87.08077172400911,-87.08073346147555,-87.08062431092877,-87.08040746603891,-87.08037018262357,-87.08028416177608,-87.08016833607375,-87.07995250118358,-87.07993690806008,-87.07980561445153,-87.07969741021482,-87.07965878994885,-87.07965081352346,-87.07966650785639,-87.07976029537211,-87.07977519882964,-87.07972182235682,-87.07958205113199,-87.07954328497577,-87.07952755714406,-87.07952783228038,-87.0795673079804,-87.07956741865362,-87.07959040778421,-87.07958989051313,-87.07954440974092,-87.07953655888514,-87.07962153421867,-87.07969107634432,-87.07973040316637,-87.07974587544055,-87.07973788334247,-87.07971500271286,-87.07966778828381,-87.07950576496029,-87.07944375248735,-87.07940522246652,-87.07940560304804,-87.07942109990066,-87.07945963238545,-87.07956828152956,-87.07958332315461,-87.07958417334378,-87.07951425805864,-87.079491041758,-87.07951417462921,-87.07956032815376,-87.07955299833961,-87.07956027993767,-87.07966154819222,-87.07970069788264,-87.07970014161766,-87.07966195570911,-87.07962300983768,-87.07960820625507,-87.07962310589581,-87.07965501333047,-87.07987156155319,-87.0799329806694,-87.07997185941905,-87.07999565130089,-87.07995005371839,-87.07995697825712,-87.07999649153913,-87.07999616881287,-87.08006586931884,-87.08020454557793,-87.08026654026064,-87.08030642736185,-87.08039904978057,-87.08049152390008,-87.0805684492133,-87.08060721620886,-87.08063888138253,-87.08064545755269,-87.08062286801589,-87.08074638196337,-87.08074641263352,-87.08072198117142,-87.08069166007367,-87.08064551257428,-87.08064536677978,-87.08067609450829,-87.08066799916948,-87.08069092930236,-87.08073663445163,-87.08079954195901,-87.08087660460951,-87.08090789683752,-87.08101498753392,-87.08107789517841,-87.08133988193376,-87.08141725038598,-87.08150184514355,-87.081557171341,-87.08161840348585,-87.08172718389156,-87.0818194206776,-87.0818184798258,-87.0820077439482,-87.08203528067332,-87.08208996194837,-87.08212790298747,-87.08214401831361,-87.08218363763095,-87.08222964687378,-87.08229900535864,-87.08236129944224,-87.08245349425002,-87.08254666862332,-87.082763590913,-87.08284078903252,-87.08291847378716,-87.08301142212541,-87.0830654703918,-87.08312680673849,-87.08314293859925,-87.08315793264488,-87.08314267693946,-87.08313572405974,-87.08311265829762,-87.08311306164427,-87.08317464726704,-87.08325980219124,-87.08330628479193,-87.08336125295897,-87.08341497532764,-87.08344621526456,-87.0834772360037,-87.08353084488417,-87.08358496495127,-87.08363861122857,-87.08369270522039,-87.08373160249718,-87.08377046322444,-87.08378630147251,-87.0837938337569,-87.08382461002552,-87.08384111655158,-87.08387086832234,-87.08394128033342,-87.08405717237359,-87.08421197294948,-87.08430503022211,-87.08442161500075,-87.08453732211484,-87.08459935664372,-87.08463098264356,-87.08469295739981,-87.08472313113317,-87.08470039075149,-87.08462302644834,-87.0845917192012,-87.08454628663063,-87.08449957864586,-87.08439965925977,-87.08436847392957,-87.08436082977283,-87.08436874885695,-87.08444696595284,-87.08439261105927,-87.08429188006347,-87.08427615506039,-87.08427644860342,-87.0843381776882,-87.08435401340085,-87.08435458490929,-87.08436972748444,-87.08436923125055,-87.08435428250708,-87.08435455284335,-87.0844010133715,-87.08443212892097,-87.08440192413217,-87.08440935677821,-87.08439425044836,-87.08436309267991,-87.08430176989185,-87.08429444452136,-87.08430968871755,-87.08437906423782,-87.08442606980007,-87.08448811100934,-87.08453398891284,-87.0845646362912,-87.08466589254809,-87.08469654981396,-87.08469749271524,-87.08472827747181,-87.08482911161943,-87.08486727979158,-87.08486743118252,-87.08488321961737,-87.0848836259935,-87.08493053333488,-87.08513976362741,-87.08517032639949,-87.08525586554697,-87.08540251108305,-87.08546543310366,-87.08560380947307,-87.08575941522642,-87.08591426251164,-87.08597569785347,-87.08603795146169,-87.08609124182453,-87.0861064752135,-87.08608436373791,-87.08597545915549,-87.08595213411309,-87.08596753670481,-87.08596659285996,-87.08602189583836,-87.08621426288246,-87.0863073162357,-87.08642334479636,-87.08663998426194,-87.08673266290502,-87.08701139436769,-87.08715031415089,-87.08727514579277,-87.08749135561429,-87.08758417202711,-87.08773866177977,-87.0878625497146,-87.08804850256794,-87.0882958080922,-87.08841954610497,-87.08860546118765,-87.08875988058458,-87.08891472557418,-87.08920818619497,-87.08939428880028,-87.08951820997781,-87.08982769330352,-87.08998231388165,-87.09019906957396,-87.09047775038053,-87.09060121520102,-87.0906635126736,-87.09100305657212,-87.09105777681683,-87.09125835938168,-87.09134350840127,-87.09137343514278,-87.09145909369377,-87.09159868271426,-87.09181472924452,-87.09183779260358,-87.09190555048517,-87.09156724366271,-87.09138203067118,-87.09119697001408,-87.09105765536125,-87.09099587898848,-87.09094932279378,-87.09094947883254,-87.09098877046681,-87.09106544245809,-87.09138263744292,-87.0915611363496,-87.09159179159553,-87.09173936614827,-87.09203338583295,-87.09230339384413,-87.09243489141446,-87.09250571442925,-87.09253671130273,-87.09261393951498,-87.09279975782052,-87.09289183255643,-87.09301572114877,-87.09335676603634,-87.09357284589757,-87.09378878140369,-87.09394434470497,-87.09403758003573,-87.09416070856919,-87.09428380371483,-87.09433117215923,-87.09436180992054,-87.0943622536642,-87.09433067672708,-87.09413746367083,-87.09354998828566,-87.09340243463937,-87.09313973337034,-87.09292294115214,-87.09248982850437,-87.09236651031247,-87.09233450754698,-87.09211827271702,-87.09202532340437,-87.09198711713192,-87.09197932692526,-87.09204156640827,-87.09221200709558,-87.09248988917629,-87.09270675286673,-87.09273820093088,-87.09304734723149,-87.09331907772766,-87.09365933906768,-87.0936823661977,-87.09380562096059,-87.09413194465957,-87.09431686001824,-87.09465804696981,-87.09475036493184,-87.09495199471388,-87.09501441495655,-87.0950453879374,-87.09516176144979,-87.09518443880924,-87.09517641473403,-87.0950679166902,-87.09503789452496,-87.09508439183524,-87.09515371347732,-87.09521597525163,-87.09526902907886,-87.09532331189179,-87.09547094497655,-87.09557166913133,-87.09560237159602,-87.0956724035839,-87.09571138266554,-87.09570257895389,-87.09572695340481,-87.09609068128714,-87.09614479195604,-87.09617612710774,-87.09623052455306,-87.09630771188162,-87.09631532411153,-87.09631529230353,-87.09624619015095,-87.09626142878918,-87.09625316637913,-87.09621521274339,-87.09617597484763,-87.09612958431698,-87.09609129440169,-87.0960914542503,-87.09612306013675,-87.09625432814239,-87.09625400884701,-87.09623887964203,-87.09607630094474,-87.096061171682,-87.09606092971265,-87.09601485332573,-87.096021847202,-87.09606170002994,-87.09615446304666,-87.09623907586955,-87.09627842245666,-87.09628541199906,-87.0962714510848,-87.09632439139676,-87.09640248473863,-87.09642535582846,-87.0965490428858,-87.09654188613537,-87.09649581151932,-87.09648786372222,-87.09650349767091,-87.09653454964355,-87.09666699643554,-87.09670570893989,-87.09669787336814,-87.09672094534629,-87.096722007208,-87.09668276798443,-87.09669077539367,-87.09674490403998,-87.09679167631155,-87.09687708445379,-87.09710101588043,-87.09720988554064,-87.09729518035324,-87.09737216690453,-87.09740345794863,-87.09740361598955,-87.09746562893245,-87.09747435369727,-87.09743542791337,-87.09738840374465,-87.09738935191312,-87.0974976654244,-87.09751331934611,-87.09752808484406,-87.09756023442642,-87.09748924244562,-87.09743646790054,-87.09739007184592,-87.09734463097878,-87.097313491474,-87.09722165328799,-87.09718973762912,-87.09708265632838,-87.09701988892,-87.09699748916469,-87.09694346316002,-87.09694314825431,-87.09661873605727,-87.09657233880105,-87.09634119229526,-87.09623315159423,-87.09609445029626,-87.09609413160376,-87.09603249015318,-87.09595462896486,-87.09595494531513,-87.09593920922828,-87.09584753626055,-87.09584721745867,-87.09580018633638,-87.0958006593321,-87.09564655265072,-87.0955231052604,-87.09526763208353,-87.09520550993777,-87.09506650536331,-87.09485757130817,-87.09479592421235,-87.09476462489924,-87.09465754535957,-87.09434025901058,-87.09416963059883,-87.09393034788897,-87.09365914123886,-87.09335045154785,-87.09310323159131,-87.0929872486787,-87.09244586222147,-87.09210537378708,-87.09195896362226,-87.09138576885933,-87.09121603622722,-87.09093689384764,-87.09065913222148,-87.09063605050282,-87.09010257785863,-87.08983140945601,-87.08941399579119,-87.08908866022659,-87.08902637435378,-87.08899539362733,-87.08893311375749,-87.08890213274246,-87.08880989763442,-87.08877891660302,-87.08856189532939,-87.08853091454327,-87.0884386789496,-87.08822968857048,-87.08785045661803,-87.0876340251795,-87.0872082677712,-87.08686050227166,-87.08667453013679,-87.08661224453314,-87.08658126344429,-87.08645750208976,-87.08612504243293,-87.08580699234462,-87.08565335021642,-87.08552910262186,-87.08525082141195,-87.08515755400322,-87.08503364332211,-87.08478564604732,-87.08453832280817,-87.08422814233745,-87.08404347651631,-87.08382613050935,-87.08363954403413,-87.08354748381866,-87.08333122450311,-87.08326960179102,-87.08320693547761,-87.08299025345515,-87.08280376765812,-87.08261872692449,-87.08254622470187,-87.08172910451603,-87.08125924711693,-87.08123239703112,-87.08113259007554,-87.08103933777045,-87.08094596397906,-87.08086938327546,-87.08082320477452,-87.08078335226458,-87.08072890730303,-87.0804358405952,-87.08033523358436,-87.08026527065317,-87.08023336540721,-87.08023369114065,-87.08020256381651,-87.08012481199493,-87.07996932289066,-87.07988422260195,-87.07971385683072,-87.07965207656542,-87.07932668676602,-87.07923394244337,-87.07918712116138,-87.07913239050706,-87.07873036338904,-87.07859808363983,-87.07848977661384,-87.07838849168695,-87.07835801986616,-87.07835805783914,-87.07837380764735,-87.07845888904367,-87.07871346227358,-87.07875957485479,-87.07872812786324,-87.07869779953002,-87.07862809479221,-87.07850390783771,-87.07844213510484,-87.0783031749021,-87.07810198865515,-87.07800896325413,-87.07781484032596,-87.07775297866321,-87.07765957584348,-87.07762191524701,-87.07756697200691,-87.07733476986571,-87.07714913990934,-87.07705611928958,-87.07700146080961,-87.07694745567211,-87.07691637705294,-87.07688605086383,-87.07679967574136,-87.07674585017196,-87.07668361272601,-87.07661441849598,-87.07654378296732,-87.07646692475275,-87.07636675286639,-87.07617263729118,-87.07614166030355,-87.07604963011384,-87.07599519426913,-87.07597117516592,-87.0759407200779,-87.07594011135733,-87.0759628760967,-87.07595623175254,-87.07590147430713,-87.07583915217515,-87.07580884464109,-87.07573796954301,-87.07564559948936,-87.07552142075065,-87.07549067915015,-87.0753667729736,-87.07521279254492,-87.07515116445325,-87.07505749379858,-87.07499554081315,-87.07493331530895,-87.07481772953273,-87.07471676278023,-87.07463201442349,-87.07453115340385,-87.07450073400439,-87.07437711754943,-87.07431433211134,-87.07417616484403,-87.07412927413317,-87.07403708090395,-87.07381946824366,-87.07363451098274,-87.0733551296199,-87.07316947086025,-87.07301085036217,-87.07290645595462,-87.07285170176128,-87.07277476386975,-87.07269639338958,-87.07264257262766,-87.0725657256184,-87.0725035082442,-87.0724335359463,-87.07243386358151,-87.07237196155707,-87.07216160613349,-87.07202347677607,-87.07192252070072,-87.07176732434472,-87.07166656125248,-87.07157378536829,-87.07148184130564,-87.07126452730004,-87.07119450839294,-87.07098535326864,-87.07073821911017,-87.07061390838209,-87.07042868510935,-87.07028102937504,-87.07008777886031,-87.06985478953021,-87.06978589426365,-87.06969259915753,-87.06959236129086,-87.0695073247318,-87.06944472035568,-87.06942186885739,-87.0693334695917,-87.06898826231564,-87.06889618417132,-87.06886525317763,-87.06884175740242,-87.06881046932182,-87.06887221793171,-87.06886459849048,-87.06880326624518,-87.0686247068611,-87.06858578772308,-87.06856298918689,-87.06840830825895,-87.06825250365971,-87.06818363549441,-87.06793608170933,-87.06787409392375,-87.06778924935283,-87.06771200766298,-87.06764238174284,-87.06758800783389,-87.06744859950105,-87.06728670902177,-87.0671232850286,-87.06702304482907,-87.06686865369126,-87.06668315020927,-87.06662129713354,-87.06651970654755,-87.06641183738469,-87.06638863459251,-87.06633409292917,-87.06633349507666,-87.06636512772258,-87.06642769559184,-87.06652696274244,-87.06665183034114,-87.06674475408289,-87.06680647300411,-87.06705305472768,-87.06713903589802,-87.06718580571204,-87.06720850961885,-87.06720814463223,-87.06713104976258,-87.06710013524281,-87.06713051067611,-87.06719237759511,-87.067215561246,-87.06720780966654,-87.0672161430134,-87.06723129494399,-87.06726180903634,-87.06748595452558,-87.06761023782759,-87.06765650110482,-87.06770228782625,-87.06770261720493,-87.06777972012802,-87.06778752669817,-87.06777946231693,-87.06772551690945,-87.06774112358943,-87.06767916989023,-87.06767905027019,-87.06765542242836,-87.06765548078864,-87.06767076998274,-87.06765474578484,-87.06758571843837,-87.0675927361339,-87.06765567019265,-87.06767063099493,-87.0676549327145,-87.0675627462425,-87.06754626838298,-87.06756188944944,-87.06762342679617,-87.06762408723687,-87.06760886926665,-87.06754585977205,-87.06753864416699,-87.06751501697804,-87.06733130211614,-87.06733882365256,-87.06736026411991,-87.06732140184181,-87.0671899126837,-87.06706590379883,-87.06694197724875,-87.06689528045294,-87.06678747899099,-87.06670959884522,-87.06666314366635,-87.06660086666804,-87.06652284097072,-87.06649254150189,-87.06641569772074,-87.06629963290194,-87.06629145816946,-87.06631458213971,-87.06630669222403,-87.06626839403761,-87.06610564906775,-87.06601269159353,-87.06588839195577,-87.06576501369037,-87.06564118037882,-87.06557958263797,-87.06539385058558,-87.06505292681373,-87.06492989021577,-87.06484486580486,-87.06472101553385,-87.06455826252001,-87.06424882482233,-87.06407801460809,-87.06390833981948,-87.06360659967068,-87.06357638012096,-87.06353680471742,-87.06353778509363,-87.0635836396727,-87.06357536695603,-87.06349795486688,-87.06328895222417,-87.06314257692235,-87.06301152922003,-87.06277906883567,-87.06272497043587,-87.06264020562257,-87.06264066773161,-87.06257898918329,-87.0625470097112,-87.06236931498721,-87.06225330332333,-87.06216045151878,-87.06210603650267,-87.06206843596769,-87.06200550051581,-87.06191317540879,-87.06187438914198,-87.06187531017625,-87.06192934188002,-87.06193662530615,-87.06191371639176,-87.06182152089481,-87.06179749896936,-87.06178200428189,-87.06172806324253,-87.06172864173357,-87.06175193024082,-87.06181344792795,-87.06182156705589,-87.06180543101878,-87.06181421793195,-87.06182886945159,-87.06184470398301,-87.06185215854535,-87.06190691773637,-87.06199127577629,-87.06205416500059,-87.06211558140335,-87.06223206602817,-87.06226294062459,-87.0623642621112,-87.0625028248466,-87.06254167636406,-87.06265767651637,-87.0626586023763,-87.06261981469507,-87.06249544433857,-87.06202404426145,-87.06174461346723,-87.06168393682965,-87.06165296263832,-87.06140473576167,-87.06115691467097,-87.06081671562185,-87.06060021183713,-87.06057712603553,-87.06035292194298,-87.06019807825957,-87.05984184443614,-87.05972614915345,-87.05961727528063,-87.05954809921933,-87.05950128864207,-87.05944051971773,-87.05936538167289,-87.05933205771439,-87.05926243265937,-87.05923191838613,-87.05913890596834,-87.05908423606471,-87.05899910938933,-87.05872059074414,-87.05869722622715,-87.0586738081176,-87.05869060637593,-87.05869850723776,-87.05878299603394,-87.05878312288351,-87.05870553822975,-87.05855104579641,-87.05848889159981,-87.05797855592367,-87.05788555185168,-87.05778598054046,-87.05778565070963,-87.05772395332184,-87.05772362171957,-87.05765443948063,-87.05755353685925,-87.05744535322417,-87.05740681089642,-87.05740614569656,-87.05739071529597,-87.0573913035463,-87.05740713412332,-87.05739914627971,-87.05740679180592,-87.05748359138222,-87.05756918973069,-87.05760121503695,-87.05764706978985,-87.05776327017199,-87.05787959239373,-87.05800339546131,-87.05815799207943,-87.05825096880432,-87.05833559541288,-87.05835906066854,-87.05834417940312,-87.0583821821894,-87.0584370845358,-87.05855945055598,-87.0587151271569,-87.05893184987146,-87.05900935051086,-87.0591336143782,-87.05917957752023,-87.05921861284638,-87.05925681245662,-87.05926514454799,-87.05922593120434,-87.05915700393268,-87.059148854745,-87.05915659894629,-87.05918781758021,-87.05926473863975,-87.05927308664381,-87.05925778435024,-87.05921865742009,-87.05923467740779,-87.0592578828844,-87.0593117910996,-87.05933524020867,-87.05932742130381,-87.05917338026858,-87.05899505151214,-87.05876236638326,-87.05871642998443,-87.05864724739176,-87.05863173738237,-87.05858526698366,-87.0584844232053,-87.05835375519233,-87.05829113388369,-87.05795054829262,-87.05789712470846,-87.0578730974006,-87.0578579193416,-87.05774244702785,-87.05761098021438,-87.05737000722428,-87.05727823619927,-87.05720017657937,-87.05716183737898,-87.05710754220904,-87.05696042218175,-87.05700742765229,-87.05705380637531,-87.05704605458591,-87.05696916875513,-87.05686867967782,-87.05678323602974,-87.05665940118044,-87.05651201559402,-87.05638878714973,-87.05614908078518,-87.05587023367968,-87.05556124720698,-87.05537434529808,-87.05515806684399,-87.05488016411809,-87.05481741317627,-87.05460096346337,-87.0544459992699,-87.05427620697218,-87.05414410634533,-87.05407392657615,-87.05400518270933,-87.05391984420918,-87.05383510040954,-87.05380407662936,-87.05373412465096,-87.05348612192631,-87.05308411548937,-87.05292927381099,-87.05288285615195,-87.05282807435802,-87.05282054895463,-87.05284389544202,-87.05289041315092,-87.05294401273787,-87.05299065652851,-87.0532386440307,-87.05348595543757,-87.05357161473965,-87.05366401072783,-87.05366421971954,-87.05363232223378,-87.05364842609406,-87.05366357035238,-87.05364750763535,-87.05360234296988,-87.05357136437414,-87.05347775965343,-87.05343883531036,-87.05340791339169,-87.05336178651513,-87.05334633449164,-87.05328493705635,-87.0532457622664,-87.05326153143834,-87.0532608258322,-87.05324607297183,-87.05324549221938,-87.05338423879225,-87.05353986486652,-87.05357013767487,-87.05360098891435,-87.05360881072305,-87.05360188321232,-87.05354649693516,-87.0534931568062,-87.05322177562263,-87.05312825948647,-87.0530738950664,-87.05302831901054,-87.05301265188261,-87.05297441052453,-87.05283431434368,-87.05272635643142,-87.05266411171124,-87.05252546787436,-87.05237803743752,-87.05220099033504,-87.05207674247487,-87.05195283103141,-87.05192241724485,-87.05179749730897,-87.05173587820568,-87.05161230344723,-87.05145730344701,-87.05137196678018,-87.05121643297765,-87.0512012254049,-87.05094609545102,-87.05084474220499,-87.05076858795363,-87.05076767136087,-87.05079932226586,-87.05082212178586,-87.05076774837518,-87.05076829459885,-87.05086050786471,-87.05087623102402,-87.05092248811492,-87.05092211914823,-87.05086809585904,-87.05083699716491,-87.05075222544133,-87.05044228031696,-87.05034123652966,-87.05022519952519,-87.04990872672934,-87.04928907814426,-87.04919666578741,-87.04916512469893,-87.04901103823056,-87.04895646654347,-87.04876267723579,-87.04832937211714,-87.04829863817095,-87.04805082715045,-87.04789691907139,-87.04777234021294,-87.04766383578053,-87.04756784595345,-87.04750988662326,-87.04750217865273,-87.04750955613048,-87.04754826189934,-87.04754792801056,-87.04772619783715,-87.04792771679097,-87.04798230155176,-87.04798196359624,-87.04801283276201,-87.0480438224849,-87.0481367508502,-87.04839188640656,-87.0484228633749,-87.04850035806072,-87.04868666317687,-87.04870913066365,-87.04876315271815,-87.04907296851165,-87.04919658686651,-87.04932093807309,-87.0494135964219,-87.04990915432947,-87.0503421513795,-87.05042015191518,-87.05052008226122,-87.05065939719543,-87.05070608653719,-87.0507215829676,-87.05075324728627,-87.05116473388821,-87.05107820769108,-87.050675677703,-87.05045896689549,-87.05031952858151,-87.05021165688392,-87.0501650752807,-87.05013467630324,-87.05013479626354,-87.05010405939005,-87.04997235156331,-87.04985627542528,-87.04960842330068,-87.0493459798532,-87.04913691844273,-87.04870380410307,-87.04830059914015,-87.04828545324128,-87.04828511380576,-87.04831700742187,-87.04839360667748,-87.04844813453956,-87.04841780518767,-87.04837832636636,-87.04831660743469,-87.04813881266425,-87.04805265299686,-87.04827024556761,-87.04844913693452,-87.04861908277752,-87.04869689891693,-87.04871168464103,-87.04875061206315,-87.04878970448732,-87.04887488128566,-87.04938540745002,-87.04944736828736,-87.0494777840867,-87.04966467576683,-87.04978791244159,-87.04994200554852,-87.05003595468298,-87.05029079670504,-87.0502212738436,-87.05023693874159,-87.05025992470624,-87.05045296252453,-87.05051559528495,-87.05061620806649,-87.0507328073469,-87.05080226077236,-87.05087122399104,-87.05092615171566,-87.05100303216555,-87.05122728194139,-87.05131302371376,-87.0515836011427,-87.05173879223801,-87.05186276191976,-87.05195541498743,-87.05214044652621,-87.05224887333323,-87.05235792281071,-87.05243542780784,-87.05255098955426,-87.05257429503628,-87.05262111122518,-87.05262872269873,-87.05260462390461,-87.05262142104527,-87.05265206884562,-87.0527213990221,-87.05283737202514,-87.05293042314497,-87.0529916947049,-87.05301535488084,-87.05306947295637,-87.05319310890361,-87.05325603148093,-87.05334826128481,-87.0533947418719,-87.05344921720943,-87.05355038141582,-87.05361238753525,-87.05364307839112,-87.05367395492374,-87.05365037825503,-87.05370491666373,-87.05364307683402,-87.05356546356398,-87.05354209737855,-87.05354215858445,-87.05360381139469,-87.05361964720792,-87.05361131759832,-87.05354998450424,-87.05344178698113,-87.05342603084281,-87.05349578268246,-87.05348837143939,-87.05337195825885,-87.05333362640896,-87.05329460804425,-87.05324868684212,-87.05324881085114,-87.05319402324081,-87.05308555253218,-87.05303178467292,-87.05304791359079,-87.05309372647392,-87.05309378689509,-87.05299372523045,-87.05292351278854,-87.05289304565389,-87.05279289451647,-87.05280810340338,-87.05284726193199,-87.05291665711509,-87.05298700761081,-87.05304831505556,-87.05307084322051,-87.05312615986394,-87.05317203146109,-87.05317216125152,-87.05314891270248,-87.05307924924088,-87.05296351110255,-87.05273905607237,-87.05268482796453,-87.05263084324262,-87.05263862622752,-87.05263042139917,-87.05261498560441,-87.05258482940859,-87.05258518387804,-87.05263162701584,-87.05271597355586,-87.0529098884635,-87.05295660103205,-87.05295626725238,-87.05297210153637,-87.05295593397571,-87.05283985962168,-87.05280945744516,-87.05284807591902,-87.05284037354993,-87.05284844709594,-87.05289420044457,-87.05289443113159,-87.05286448764622,-87.05287170773163,-87.05291796033661,-87.0529719354311,-87.05322768117621,-87.05331983775287,-87.05361249496787,-87.05362309705751,-87.05359872185569,-87.05350693499628,-87.05333615472252,-87.05325072637243,-87.05320213947442,-87.05305719722344,-87.05284122235535,-87.05277925195573,-87.05271694761012,-87.05257926529505,-87.0524935998672,-87.05249259354476,-87.05247013773595,-87.05241509532173,-87.05229912092038,-87.05209127746184,-87.05194390635189,-87.0516032241421,-87.05144762882867,-87.05136324867088,-87.05106940318814,-87.05079795397936,-87.05072106319901,-87.05030205363146,-87.05015560963895,-87.0501009149861,-87.04999367665816,-87.04995443322359,-87.04995490238119,-87.04996994451183,-87.04997079793033,-87.04998583935277,-87.0500016895693,-87.05001673134096,-87.05001725024239,-87.04996244363713,-87.04982322336012,-87.04967627135791,-87.04956765754063,-87.04945248235197,-87.04943670593576,-87.04945239779371,-87.0494445696194,-87.0493442639598,-87.04923558670977,-87.04921313846991,-87.04917422494245,-87.0491735524497,-87.04909698278955,-87.04906576190052,-87.04899555364615,-87.04899657229601,-87.04895019136821,-87.04895034360359,-87.04896523872804,-87.04899713842595,-87.04913564794083,-87.04915210743913,-87.04918242296739,-87.04918208495128,-87.04922919819504,-87.04936077422305,-87.04946986076145,-87.04952394996495,-87.04953972537074,-87.04953934212593,-87.0495551759047,-87.04955422708912,-87.04953957990099,-87.04952370634105,-87.04950794297909,-87.04950840039371,-87.04952344322179,-87.04952395873683,-87.04957050439226,-87.04958634270163,-87.04963250719528,-87.04969410119776,-87.04978669274112,-87.04980253134913,-87.04980292663129,-87.04981796951098,-87.04982593110135,-87.04981871499719,-87.04983383423216,-87.04982554756269,-87.04983466144529,-87.04984953756792,-87.04984977818592,-87.04986498916411,-87.04986523335013,-87.04988135578544,-87.04989560605995,-87.04991179443743,-87.04994256357583,-87.04995840426676,-87.04995881290981,-87.04997385569035,-87.05000502701672,-87.05002007025989,-87.05006679041929,-87.05019014667674,-87.05019850888269,-87.05031413112629,-87.05039225237262,-87.05050086937594,-87.05051670871747,-87.05056310748959,-87.05057815167035,-87.05057775501108,-87.05059359201751,-87.05062522036923,-87.05067125504661,-87.05073355581818,-87.0507328804389,-87.05078024080251,-87.05079639598351,-87.05076431786038,-87.05071870586383,-87.05071896012845,-87.05073383770711,-87.0507338649815,-87.0507498706237,-87.05076544658121,-87.05078128415343,-87.05078088753821,-87.05079672690655,-87.0508577780956,-87.05093646510235,-87.05103638507561,-87.05107492955197,-87.05121531287357,-87.05132380638209,-87.05147043692557,-87.05158686623561,-87.05174883128458,-87.05200537990764,-87.05200533234381,-87.05213681425067,-87.05223713121354,-87.0524771148954,-87.05252333706377,-87.05263249251419,-87.05290326754235,-87.05308973455264,-87.05318249963831,-87.05325930772317,-87.05341518026607,-87.05362432952076,-87.0539803942829,-87.05412029058904,-87.05424422597977,-87.0543132490829,-87.05441435020076,-87.05453747234142,-87.05456154078786,-87.05473955436756,-87.0548635727563,-87.05511094220684,-87.05535836203785,-87.05557599292105,-87.05565325543168,-87.05580823073267,-87.05590883146337,-87.0559628669985,-87.05608717773974,-87.05624127425014,-87.05631879177943,-87.05638842340487,-87.05647288137483,-87.05659728153384,-87.05678255590115,-87.05696856107666,-87.05709253797259,-87.0571865282844,-87.05730136650209,-87.05744842958549,-87.05747210532805,-87.0574725189137,-87.05748834509502,-87.05751103257433,-87.05750412971101,-87.05740290651208,-87.05736488298994,-87.05730222672733,-87.05725593293107,-87.05722438315108,-87.05721714280202,-87.05716369070265,-87.05707055690559,-87.05698519197705,-87.05690809376017,-87.05687687240243,-87.0567836128221,-87.05672260228057,-87.05668349314698,-87.05665206034573,-87.0566527735197,-87.05663653652009,-87.05663706661097,-87.05662222536104,-87.05663744417947,-87.05663702605067,-87.05666905058231,-87.05666804846044,-87.05668418776743,-87.05669975313018,-87.05669873935787,-87.05671458024882,-87.05671499327015,-87.0567297556688,-87.05673034062342,-87.05674618054753,-87.05674578796901,-87.05676134223822,-87.05679271208282,-87.05679329709663,-87.05680753760525,-87.0568084117338,-87.05682425539014,-87.05682423783715,-87.05683979250898,-87.05683878879671,-87.05685463449875,-87.05687050545475,-87.05705632597504,-87.05707248055683,-87.05708803535568,-87.05708736465301,-87.05710291975545,-87.05710350510188,-87.05711855259089,-87.05711841085559,-87.05713386229144,-87.05711871436552,-87.05713405903816,-87.05713477280359,-87.05714982236782,-87.05714991788393,-87.05718154317904,-87.05719671940365,-87.05724317872887,-87.05728995917157,-87.05746287004658,-87.05790115307614,-87.05793248111331,-87.05805634150538,-87.05817972642622,-87.05833501703299,-87.05845860204953,-87.05895392884203,-87.05944934483645,-87.05982098236072,-87.06010001031098,-87.06028550012981,-87.06034782642179,-87.06050253655182,-87.06062588774773,-87.06087427699605,-87.06093626458161,-87.06096623932316,-87.06102900896411,-87.06115253121349,-87.06146224746867,-87.06156285251892,-87.06161735583346,-87.06192708262573,-87.0620893195625,-87.06221463318937,-87.06230694347956,-87.06250069890535,-87.06276343026295,-87.06291854138527,-87.06301216720084,-87.06309698865468,-87.06337591649181,-87.0634537859128,-87.06353833363711,-87.06354622894702,-87.06366201769583,-87.06372358097765,-87.06387784680058,-87.06401672682388,-87.06414930346703,-87.06418030047206,-87.06427239605209,-87.06430337766693,-87.06444315346315,-87.06462959917452,-87.06472224305395,-87.06493867597484,-87.06501641551921,-87.06517178307836,-87.06543478127094,-87.06549770296587,-87.06564424951051,-87.06577630697109,-87.06594656532204,-87.06610098921654,-87.06634871942158,-87.0663802806352,-87.06659703111596,-87.06665879117863,-87.06699974886534,-87.06706151319834,-87.06749493992088,-87.06768222421036,-87.06774365693569,-87.06783631786948,-87.06820837345714,-87.06830070372439,-87.06850296725538,-87.06882832794216,-87.06896828645766,-87.06921551355541,-87.06927772541654,-87.06940171636796,-87.06961866324475,-87.06974149204842,-87.06992756001155,-87.07014454389181,-87.07023808368554,-87.07036160891036,-87.07042393120211,-87.07045492895899,-87.07057799199873,-87.07070230905897,-87.07104303732865,-87.07123003210162,-87.07159330101179,-87.07177192015931,-87.07180292070247,-87.0720503656572,-87.07243818687154,-87.07284043648191,-87.07296408642976,-87.07311943297663,-87.07332167862177,-87.07359943113613,-87.07373927227272,-87.07393384015465,-87.07432808998492,-87.07452992010559,-87.07473930448707,-87.0748633285687,-87.0748868948279,-87.07497891131379,-87.0750109192891,-87.07519652308626,-87.07535108516484,-87.07541367404521,-87.07550707581333,-87.07562291323038,-87.07573871125734,-87.07582440065802,-87.07594087163972,-87.07599509948049,-87.07613432072166,-87.07616620052606,-87.07619630642398,-87.0762661960165,-87.07626587057409,-87.07629701002773,-87.07635202089348,-87.07639091195369,-87.0764141472245,-87.0764912772555,-87.07649893701411,-87.07656101825256,-87.07663977621428,-87.07663952525988,-87.07665614906929,-87.07664005978062,-87.07663181655367,-87.07665564444196,-87.07665586414578,-87.07663257078852,-87.07662574868542,-87.07660999867879,-87.07659486171738,-87.0765799046556,-87.07657937555227,-87.0765417166611,-87.07654156555445,-87.07657263390834,-87.07662798003821,-87.07670464889806,-87.07673629123342,-87.07679076630527,-87.07685214790162,-87.07696852185809,-87.07701476230443,-87.07723226763848,-87.07733293755129,-87.07754237364232,-87.077760129681,-87.07807752963092,-87.07830195887837,-87.07842667057099,-87.07848843929918,-87.0785191151645,-87.07864368185493,-87.07873672704983,-87.07886811259955,-87.07889945338526,-87.07899282356323,-87.07899278168209,-87.0791473124593,-87.07914806816294,-87.07920217460651,-87.0792727660765,-87.07943508057814,-87.0796282477976,-87.07969030742504,-87.07973714848026,-87.07975229915299,-87.07979215324288,-87.0798302094713,-87.07990006626183,-87.07997067885499,-87.08008650555833,-87.08014889333809,-87.08034226028047,-87.08035782590606,-87.08042764775649,-87.08077226679151,-87.08103182157225,-87.08112469131513,-87.0812259314016,-87.08131043657241,-87.08134270369533,-87.08137304493808,-87.08140451849347,-87.08154374197977,-87.08165195011175,-87.08176129013003,-87.08179196932304,-87.08190017680519,-87.081947221842,-87.08199393630994,-87.08219559555253,-87.08236624883591,-87.08248171080639,-87.08249850353306,-87.08249784121629,-87.08251365834282,-87.08251403958603,-87.08252910442241,-87.08257618932222,-87.08269258888492,-87.08289364074236,-87.08301089160608,-87.08307285291181,-87.08313440808394,-87.08314961751313,-87.08316547446064,-87.08318129480097,-87.08319713478566,-87.08319677245015,-87.08321262946355,-87.08322749716767,-87.08327439953874,-87.0833061162685,-87.0833207191766,-87.08333657552484,-87.08333700751838,-87.0833841063221,-87.0834688919025,-87.0834995761852,-87.08353863158894,-87.08355414880172,-87.08355508590219,-87.08357014730983,-87.0835702419664,-87.08359311806196,-87.08363927818145,-87.08373338623689,-87.08379488390806,-87.08402677518112,-87.08404261843202,-87.08404229273171,-87.0840276629456,-87.08393505592204,-87.08376385221146,-87.08370178673015,-87.08358664649094,-87.08352454105437,-87.0834780569064,-87.08342400344203,-87.08333107574579,-87.08332373649037,-87.08336237778877,-87.083424162914,-87.083517480596,-87.08357131127021,-87.08357140260077,-87.08354894836407,-87.08349391420822,-87.08337812397379,-87.08321486065309,-87.0828664471392,-87.08262624330443,-87.08237902353366,-87.08225480940577,-87.08213831545834,-87.08212348583466,-87.08210010901841,-87.08204650047759,-87.08196910890973,-87.081945480313,-87.08190667410821,-87.08189881366798,-87.08192248140912,-87.08192262462566,-87.0818992430488,-87.08183690112894,-87.08167469528094,-87.08149665023747,-87.08139557621725,-87.08123998543019,-87.08099219935731,-87.08052760031975,-87.08021704027111,-87.08006233627603,-87.07984552326481,-87.07972195218787,-87.07944230924522,-87.07920284930124,-87.07900973479579,-87.07892195002549,-87.07887760356371,-87.07885471608031,-87.07888550051487,-87.07899473733708,-87.07907208900858,-87.07922768833338,-87.0793749237843,-87.07948389816568,-87.07970862057152,-87.07987849631114,-87.07997185011386,-87.08004130051316,-87.08013535722384,-87.08021270502053,-87.08020503421434,-87.08017416601598,-87.08012767375854,-87.07988703360803,-87.07977945773541,-87.07976322238,-87.07970854389522,-87.07959344354911,-87.07947656204961,-87.07932215859033,-87.07925256953659,-87.07924400361618,-87.07925289183713,-87.07932122662308,-87.07932248868504,-87.07935282841518,-87.0793994238134,-87.07943874820305,-87.07943856093793,-87.07938504652752,-87.0793533835138,-87.07935305943138,-87.07926057863712,-87.07921407986683,-87.07921483355149,-87.07922998257121,-87.07926070593712,-87.07933928263691,-87.07934592054278,-87.07929213257076,-87.07921560508201,-87.07916021467049,-87.07916811810236,-87.07920675732163,-87.07934689568248,-87.0793931914846,-87.07940134190281,-87.07938557347885,-87.07934005345692,-87.07933112014821,-87.07933902283996,-87.0795097016891,-87.07954875930109,-87.07954889959024,-87.07951736256858,-87.07951764823473,-87.07962597412066,-87.07962700135558,-87.07959593023551,-87.07962740441458,-87.07959667739046,-87.07959568409599,-87.07955779462203,-87.079518174681,-87.07946451793957,-87.07940297601051,-87.07926277970185,-87.07920843521961,-87.07908470575526,-87.07904640185528,-87.0790231460431,-87.07911631968777,-87.07910093566153,-87.07913947436801,-87.07915541839222,-87.07902335230445,-87.0789849929962,-87.07894677518628,-87.07894626369604,-87.07899302373669,-87.07896931238997,-87.07892283182552,-87.07877528517099,-87.07870611349173,-87.0786285005494,-87.07861294602954,-87.0786059171202,-87.07862107190607,-87.07860563301483,-87.07855937607874,-87.07849666306058,-87.07844264636871,-87.07833396565059,-87.07824826861051,-87.07818677589245,-87.07814780749041,-87.07799283625181,-87.07780729012319,-87.07762181737912,-87.07756686118931,-87.07745813446361,-87.07737365885197,-87.07728023789196,-87.07719511151986,-87.07711002601692,-87.07695556005058,-87.07680050684444,-87.07673843869227,-87.07668348091104,-87.07661343755069,-87.07660621213687,-87.07658296725293,-87.07650563554739,-87.07642790281425,-87.07628811733701,-87.07613460302734,-87.07608703546711,-87.07604908006765,-87.07599502107915,-87.07594847813421,-87.0759091919879,-87.07584647887872,-87.07568482281513,-87.07559101330111,-87.07549766071962,-87.0754517231392,-87.07542829730883,-87.07541292228869,-87.0753745579709,-87.07532807369108,-87.07527394773415,-87.07521960095866,-87.07506466807678,-87.07500241957807,-87.07481629894947,-87.07478555665558,-87.07472284589979,-87.07465390053682,-87.07461525737456,-87.07453738890962,-87.07450689536881,-87.07447554113074,-87.07446799557619,-87.07451424994328,-87.07448288343026,-87.07425880271467,-87.07410374767355,-87.07408044307839,-87.07407203660036,-87.07408756019935,-87.07416508850039,-87.07416541383157,-87.07413427835168,-87.07403433650303,-87.07390191301374,-87.07380835279614,-87.07374657221729,-87.0737157936246,-87.07366927946696,-87.07365391503583,-87.07354539036264,-87.07350726791101,-87.07352976897941,-87.07351474798189,-87.07348334771928,-87.07334399890551,-87.07328291599421,-87.07318895865711,-87.07297206610649,-87.07263106670494,-87.07241397247904,-87.07235168574152,-87.07232884753438,-87.0723133985136,-87.07230577107555,-87.07227501798137,-87.07224382361971,-87.07216582911218,-87.0720892845039,-87.07202664155587,-87.07191073279968,-87.07179461752516,-87.07163909716041,-87.0714226706681,-87.07136018074598,-87.07132918123951,-87.07120578340799,-87.07111279873013,-87.07104968754903,-87.07101941172064,-87.07091103068338,-87.07081798797651,-87.07074874021208,-87.07067877030279,-87.07021381465161,-87.06990347591784,-87.06946932001763,-87.06937687039026,-87.06931422637325,-87.06929827269984,-87.06929933599569,-87.06933766613353,-87.06933062238184,-87.06919037767371,-87.06912856574742,-87.06905892418384,-87.06904257961288,-87.06903491972092,-87.06898906357993,-87.06888835426176,-87.06877153804275,-87.06857060612975,-87.06853882552505,-87.06852406834282,-87.06850096091711,-87.06853920311157,-87.06853922366257,-87.06849144798123,-87.06843759019074,-87.06835270136413,-87.06827430059425,-87.0682204630922,-87.06820504600044,-87.06821283064936,-87.06827458866307,-87.06832179498092,-87.06838348742548,-87.06838388204598,-87.06832238819942,-87.06822940065439,-87.06821375582538,-87.06826073427862,-87.06834496402124,-87.06844644538441,-87.06850794535914,-87.06853102426832,-87.06850105359835,-87.06851630410586,-87.06858574893677,-87.06859395586231,-87.06864049449246,-87.06868736407496,-87.06878756582059,-87.06884981459102,-87.06895776195969,-87.06902025419802,-87.06905125391802,-87.06916800739872,-87.06924517432888,-87.06931512630587,-87.06931479564864,-87.06935310491193,-87.06942349608983,-87.06950035481492,-87.06956271504347,-87.06971809986401,-87.06977955398922,-87.06980336437934,-87.06977188253008,-87.06971082372381,-87.06950072999156,-87.06941588624682,-87.06931488715922,-87.06925293038751,-87.06922991454601,-87.06919886449975,-87.06917534091535,-87.06911313569491,-87.06897424836508,-87.06884979743842,-87.06872541254158,-87.06863301502028,-87.06851339140186,-87.06859409347881,-87.06876499906267,-87.06892808921864,-87.06895908942333,-87.06902078927187,-87.06914451497789,-87.06936165414191,-87.0694709463645,-87.06949367418869,-87.06948540512839,-87.06951686658681,-87.0694470736009,-87.06931489656174,-87.06919150129228,-87.06916046953164,-87.06909800723467,-87.0689429595833,-87.06881943777782,-87.06869469893654,-87.0686332578202,-87.06850946767078,-87.06843201551668,-87.06834648333584,-87.06829944031604,-87.06823702054646,-87.06807527070804,-87.06798124397811,-87.06791979215669,-87.06783441701019,-87.0677879294273,-87.06778059586031,-87.06776438177846,-87.06771815097869,-87.06767968908331,-87.06757825621943,-87.06745443783268,-87.06736178270121,-87.06729962170905,-87.06720725543354,-87.06705156291935,-87.06699008252811,-87.06689705424317,-87.06677288325508,-87.06667956724162,-87.06658715750423,-87.06649375296192,-87.06643205452379,-87.06624630051012,-87.06609073836042,-87.06596672586873,-87.06584278222144,-87.06559443752577,-87.06553249454159,-87.06525398850449,-87.06519119295876,-87.06514494576464,-87.06502076018198,-87.06498926979265,-87.06484212320345,-87.06453216017462,-87.06447748134032,-87.06447020475746,-87.06450875447506,-87.06458677786696,-87.06462564491586,-87.06462555649063,-87.06460951848968,-87.06461802146444,-87.06458616658865,-87.06440820255071,-87.06422173165794,-87.0640897087937,-87.06399741943613,-87.06393500621756,-87.06388089263301,-87.06386438864078,-87.06384898510257,-87.0638806168933,-87.06396502220358,-87.06395715344709,-87.06393429767424,-87.0639031571685,-87.06385691328549,-87.06370871006281,-87.06346910332064,-87.06328284264184,-87.06315934448195,-87.06305736076038,-87.06281752972065,-87.06281786361278,-87.06277115822064,-87.06266230218533,-87.06257715084914,-87.0622284207718,-87.06170142269528,-87.06152265257447,-87.06144579117579,-87.06142999840922,-87.06141508564173,-87.06142961316498,-87.06141484633845,-87.06135213243186,-87.06129812116275,-87.06123597154168,-87.06115909685265,-87.06108127147616,-87.06106558092941,-87.06108917614438,-87.06104266152846,-87.06087896216015,-87.06078660977469,-87.06071639446705,-87.06068619741178,-87.06060041921752,-87.06052987067471,-87.06042960709672,-87.06022788923869,-87.06002735778138,-87.05987194157228,-87.05959211491557,-87.05952223797577,-87.05947575978355,-87.059406214753,-87.05925100471518,-87.05918125487507,-87.05915108452442,-87.05889509994924,-87.05846049133129,-87.05824364482663,-87.05818139704219,-87.05768580811156,-87.05746907125619,-87.05743760229289,-87.05737591568435,-87.05734524223011,-87.05712817047952,-87.05709670182125,-87.05703422224113,-87.05622883906213,-87.05612023652688,-87.05600310720195,-87.05594185963415,-87.05591116484578,-87.05589559008193,-87.05589523072724,-87.05587921570188,-87.05587986235585,-87.05586384225417,-87.0558640333347,-87.05584799917321,-87.05584855895833,-87.05590276967598,-87.05602659572013,-87.05607967421379,-87.05614204316616,-87.05615799661584,-87.05615781265294,-87.05618875929251,-87.05620357877,-87.05622032654469,-87.05621934561267,-87.05623450667329,-87.05625079097351,-87.05626595164433,-87.05626565513533,-87.05628081615258,-87.05628125326251,-87.05625055865103,-87.05621930083356,-87.05615659293349,-87.05610250953076,-87.05611042573146,-87.05618830921287,-87.0562186240485,-87.05621904252926,-87.05619586535389,-87.0561408890029,-87.05600203205427,-87.05590894219438,-87.0558627983783,-87.05580009254167,-87.05580043060689,-87.05571499008029,-87.05569136885445,-87.05567646763971,-87.05569154537403,-87.05566825621962,-87.05563791994214,-87.05558294504749,-87.05537343755361,-87.05528064416764,-87.05519557583369,-87.05505545415097,-87.0549703291741,-87.05462941218512,-87.05438204705166,-87.05416469809946,-87.05405612047311,-87.05397166696012,-87.05379283623731,-87.05371498047225,-87.05355961498077,-87.05328157153858,-87.05315725929844,-87.05282340353961,-87.05241322296828,-87.05231962816154,-87.05224250754806,-87.05220348854388,-87.05217259122078,-87.05217292545821,-87.05218808580068,-87.0521884694773,-87.05213339002718,-87.05207971888771,-87.05199476432682,-87.0519169220983,-87.05182406243694,-87.05169969622214,-87.05161513982232,-87.0513667677625,-87.05120350400725,-87.05111173146985,-87.0509254312129,-87.05073923643893,-87.05048784966851,-87.0503672451791,-87.05027383377679,-87.05018900702005,-87.05014283327918,-87.04998823894056,-87.04992564792188,-87.04991713320909,-87.04994869121586,-87.05002580191804,-87.05033593799979,-87.05052222579572,-87.0506064269477,-87.05062992483377,-87.05061504448162,-87.05055997022703,-87.05056097810389,-87.05060719026208,-87.05060718125441,-87.05057560057034,-87.05042852702137,-87.05038264420122,-87.05035822427639,-87.05035095935287,-87.0503666077274,-87.0504597048498,-87.05045936118705,-87.05045151928452,-87.05042027398986,-87.05038188785204,-87.0503034137822,-87.05018009103918,-87.05004109222641,-87.04982338565613,-87.04963738586054,-87.04960740238005,-87.04942031782612,-87.04929664534411,-87.04926597776378,-87.04923520961181,-87.04925785246841,-87.04924239834277,-87.04921923031274,-87.04917301170266,-87.04905632955206,-87.04897213012356,-87.04887912250729,-87.0488165544928,-87.04872343570852,-87.0486924330651,-87.04856854430398,-87.04844499097479,-87.04828919591078,-87.04822724151884,-87.04821168530526,-87.04821265102146,-87.04825103136869,-87.04825125354853,-87.04822728883072,-87.04817311957427,-87.04806439477967,-87.04799511185331,-87.04794072635335,-87.04788659803579,-87.04785628446217,-87.04780154910895,-87.04774647385156,-87.04764653822082,-87.04757659610134,-87.04754615959644,-87.0474920465642,-87.04740592253955,-87.04735203552605,-87.04717409541198,-87.04711993350725,-87.04700359250738,-87.04692598126842,-87.04684109927919,-87.04670903383288,-87.04665487042183,-87.04643065039573,-87.04591140465493,-87.04581878807089,-87.04574083145921,-87.04564067785435,-87.04554721289138,-87.04549327208773,-87.04547749150269,-87.04545421098011,-87.04547050208495,-87.04557810080965,-87.04581106347327,-87.04590345318633,-87.04605857098922,-87.04622146714568,-87.04636057629257,-87.04657701107216,-87.04666313001619,-87.04677896394998,-87.04680143994298,-87.04675534890121,-87.04665495016748,-87.04659307161516,-87.04652340496608,-87.04646827179349,-87.04640722513655,-87.04635278784879,-87.04630531629891,-87.0460585639608,-87.04590344318588,-87.04568609823004,-87.04525185401054,-87.0450663626203,-87.04488001752101,-87.04473312784741,-87.04467969288187,-87.04461741721843,-87.04457040125283,-87.04453973342953,-87.04453235055554,-87.04454064800704,-87.04448579252224,-87.04443139540342,-87.04443956628035,-87.04446261754113,-87.04446283527331,-87.04441696738712,-87.0444166268405,-87.04433838279505,-87.04430862406427,-87.04427660165285,-87.04420765438549,-87.04409103022336,-87.04388128522434,-87.04357228025192,-87.04324663450871,-87.04310019173217,-87.04281276118054,-87.04265886552335,-87.04231771527414,-87.04213924046729,-87.04196071659031,-87.04187616180023,-87.04172063868606,-87.04162837114933,-87.04156562175392,-87.04151197025209,-87.04146501047542,-87.04145780415126,-87.04148030222656,-87.04153447057969,-87.04161170084373,-87.04165838365448,-87.04181312659604,-87.04199982740734,-87.04240253041888,-87.04261961616983,-87.04275123822829,-87.04278189814603,-87.04278928356014,-87.04272763107363,-87.04267300871548,-87.04261906626972,-87.042417902154,-87.04229327259907,-87.04223155752589,-87.04213922755258,-87.0419293062492,-87.04191385288989,-87.04179858815563,-87.04176672820775,-87.04168877988374,-87.04162836077741,-87.04156561050289,-87.04150373515674,-87.04142685653568,-87.04140312741767,-87.04117960997121,-87.04117787480617,-87.04120899089322,-87.04135649299342,-87.04136433257587,-87.04134888166158,-87.04120918823068,-87.04106218998413,-87.04099223011403,-87.04091438132718,-87.04089218700538,-87.04084472809842,-87.04081406670936,-87.04075972194047,-87.04069789308591,-87.04065109652758,-87.04056666714595,-87.04049607937472,-87.04027195840928,-87.04020240227706,-87.04018644503124,-87.04017860485696,-87.04022601622439,-87.04022561244237,-87.04016358584882,-87.04011734883341,-87.04003181838686,-87.03997787751291,-87.0398687810641,-87.03977571818238,-87.03965965497228,-87.03962922285599,-87.03953622615957,-87.03950544730766,-87.03941146318881,-87.03926455569081,-87.03913294090594,-87.03902458426273,-87.03897114337582,-87.0389006734907,-87.03883127599352,-87.0387144020938,-87.03856023587669,-87.03840491937561,-87.03825791272462,-87.03814973524277,-87.03804876954196,-87.03783902450985,-87.03761528489126,-87.03740574299471,-87.03732088991784,-87.0372199112379,-87.03717390156822,-87.03708786812273,-87.03700298224376,-87.03673184603986,-87.03651485825155,-87.03636744448839,-87.03632872607803,-87.03621241290928,-87.03611900710851,-87.03574008882715,-87.03564693817655,-87.03555421551516,-87.03546131855865,-87.03530615712589,-87.03521931261258,-87.03528318938193,-87.03534517556668,-87.03542972724398,-87.03549221465234,-87.03549187401012,-87.03552298655504,-87.03553864616693,-87.03552284612803,-87.03548401122333,-87.0354072868595,-87.03537599035315,-87.03504254854006,-87.0348259111428,-87.03473227814692,-87.03468605734751,-87.03467900729984,-87.03469396232971,-87.03468726707779,-87.03465557734157,-87.03460081916884,-87.03456976192832,-87.03448435762472,-87.03431501457342,-87.03403586388012,-87.03378753392022,-87.03366377866953,-87.03354740663787,-87.03342405282275,-87.03327644820435,-87.0331830913133,-87.03304448477046,-87.03288907462738,-87.03276523984334,-87.03245513429617,-87.03236275529409,-87.03226973950959,-87.03211454090817,-87.03201355852177,-87.03199082361368,-87.0320063196984,-87.03202086180904,-87.03206032381468,-87.03212977240942,-87.03231512724423,-87.03237684615299,-87.03253276005324,-87.03268775927333,-87.03305175478863,-87.03309834758461,-87.03309901358411,-87.03304446577619,-87.03295864693892,-87.03259462646197,-87.03229332783258,-87.0322304041124,-87.03174247577071,-87.03158743210376,-87.03147133130997,-87.03142476092356,-87.03137055401021,-87.03132395779775,-87.03127006703342,-87.03121517039618,-87.03117710798263,-87.0310990151211,-87.03094408639149,-87.03082794822669,-87.03070460860606,-87.03064225360382,-87.03059601322478,-87.03054942587546,-87.03052534219778,-87.03052608874725,-87.03045654003684,-87.03039473376204,-87.03023135505325,-87.03016125247566,-87.03014705201446,-87.03002183751738,-87.0299369760273,-87.02954187586653,-87.02937885083796,-87.02924762746426,-87.0290851387626,-87.02892241831927,-87.02889160322806,-87.02887590167947,-87.02889836827866,-87.02891420985382,-87.02898354176597,-87.02918510179219,-87.02958817166258,-87.02965018662761,-87.02980588428784,-87.02996092490406,-87.03020843448374,-87.03036380564149,-87.03039424401494,-87.03042483716177,-87.03041263768355,-87.03027786072525,-87.03020887891662,-87.03016218799419,-87.03010738907881,-87.03011553588895,-87.03027041027897,-87.03027845306964,-87.03026980993438,-87.02986732592301,-87.02980551493889,-87.02977390616475,-87.02976715945992,-87.02979054389181,-87.02990605867966,-87.02996043552344,-87.03000644332369,-87.03005345262368,-87.03013142980384,-87.03018507536267,-87.03024721652628,-87.03031717396048,-87.03045613708333,-87.03058022501155,-87.03068113994131,-87.03073535857365,-87.03080486871576,-87.03095980044112,-87.03103833421947,-87.03112277167455,-87.03120068279092,-87.03134743243854,-87.03144078868903,-87.03153349572099,-87.03156517772801,-87.03158725271769,-87.03159486460221,-87.03158815345144,-87.03135480357032,-87.03132469519127,-87.03130105496304,-87.03130090714532,-87.03131612712008,-87.03135563003417,-87.03139395614865,-87.03145590950255,-87.03154098531229,-87.03172716331582,-87.03182046885703,-87.03196012335437,-87.03214525396594,-87.032261946833,-87.03229363064597,-87.03230117542459,-87.03228536999987,-87.03223902258731,-87.03205257542446,-87.03202246613461,-87.0319208986763,-87.03166562815416,-87.03161893621741,-87.03161902586706,-87.03168108575514,-87.03185163451094,-87.03219221354094,-87.03248680307571,-87.03254881090307,-87.0327342617492,-87.03298275169307,-87.03304484003034,-87.03326194737734,-87.03341711521954,-87.03363369726242,-87.03388115271196,-87.03403643755892,-87.03416002724742,-87.03431552491166,-87.034408846581,-87.03448567637204,-87.03464083289008,-87.03492016442881,-87.035214203359,-87.03538433099159,-87.03553999582286,-87.03560201578411,-87.03569459375731,-87.0357575245317,-87.03581098179828,-87.0359272488049,-87.03605105150069,-87.03617474843065,-87.03634596135026,-87.03641575626524,-87.03649366213428,-87.03651648311332,-87.03653214431873,-87.03653191198387,-87.03651611208448,-87.03648520964768,-87.03636183589484,-87.03632978569121,-87.0363537113915,-87.03640782896049,-87.03654732820192,-87.03654698412443,-87.03657889933618,-87.03673714179482,-87.03675709525862,-87.03684221549882,-87.03688809587726,-87.03691148605203,-87.03694213576637,-87.0369430359646,-87.03695888158002,-87.03697402094014,-87.03703657513609,-87.0370507580147,-87.03714407812757,-87.03723663111791,-87.03733846019836,-87.03746976324314,-87.03755536069416,-87.038113113832,-87.03845429293482,-87.0385777578108,-87.03868629652868,-87.03876405200509,-87.03885706796525,-87.03898086824601,-87.03901954389492,-87.03907413247227,-87.03922867385842,-87.03966362298307,-87.03991104013886,-87.04004348246642,-87.0401437243577,-87.04036049444218,-87.04059364656088,-87.04066292464518,-87.04064746398807,-87.04066314264705,-87.04067818278376,-87.04069423816705,-87.04070930313885,-87.0407402334783,-87.0409267238019,-87.04115928248815,-87.04115923460985,-87.04128302323797,-87.04137662654347,-87.04142256357339,-87.04153086701841,-87.04164728916925,-87.04177177754244,-87.04192603553408,-87.04214415057544,-87.04222892927049,-87.04245331877308,-87.04263974319691,-87.04294975527438,-87.04312012486656,-87.04324374237341,-87.04342957298167,-87.04360015115164,-87.04370181571473,-87.04397331100952,-87.04399581831524,-87.04449947227937,-87.04493335685675,-87.04505764407843,-87.04511176722437,-87.04514288517491,-87.04519753158736,-87.04525976724834,-87.04525965908022,-87.0452129630869,-87.04516682306256,-87.04510468363297,-87.04505774868119,-87.04491846513046,-87.04491892121655,-87.04473272506952,-87.04460103497939,-87.04442301590917,-87.04430667181555,-87.04399693575967,-87.04381839439168,-87.04372557640183,-87.04366320367264,-87.04329158161522,-87.04307414863307,-87.04301206715135,-87.04297405111808,-87.04297337112408,-87.04299738666043,-87.04315185207943,-87.04321433497449,-87.04324533610156,-87.04343075158511,-87.04357076276571,-87.04378025924561,-87.04390458734719,-87.04395832703054,-87.04401994441355,-87.04407439973426,-87.04409735320806,-87.04416049634769,-87.04421442748706,-87.04426842871752,-87.04429154733909,-87.04433040943394,-87.04437731237518,-87.04437697370479,-87.04450160005032,-87.04457146558215,-87.0446948911593,-87.04492849861828,-87.04524500388899,-87.04538514027881,-87.04550887996967,-87.04556429716325,-87.04557976337635,-87.04555623008879,-87.04556430263354,-87.04553282055184,-87.045525534261,-87.04557960051096,-87.04564096685358,-87.0456882090274,-87.04570400931932,-87.04574979232636,-87.04578148872129,-87.04578101721687,-87.04582825894852,-87.04581303766169,-87.04570429755357,-87.04567372323069,-87.04567427111169,-87.04569677075854,-87.0458137486782,-87.04585993255532,-87.04587480499721,-87.04590615877537,-87.04591428397481,-87.04590626883743,-87.04593695667351,-87.04595279091276,-87.04599887900292,-87.04611579219383,-87.04616980222278,-87.04623143490198,-87.04626309149538,-87.0462937302176,-87.04630956569238,-87.04638746300319,-87.0464027749676,-87.0464186430864,-87.04643347137883,-87.04644992855773,-87.04644971309695,-87.04643425390039,-87.04641902475559,-87.04635664796321,-87.04634141700596,-87.04632516205919,-87.04632573255974,-87.04629470634637,-87.04627924263988,-87.04619366616295,-87.04600833611894,-87.04583742215796,-87.04574457303204,-87.04574457855027,-87.04571354974382,-87.04562784853469,-87.04558195477027,-87.04548919036435,-87.04548862398545,-87.04547361806817,-87.04547430622516,-87.04543462194469,-87.04528849133247,-87.04521833905969,-87.04517175808284,-87.04514003978473,-87.0451412878737,-87.045110053804,-87.04504820308115,-87.04500116709391,-87.04499331061982,-87.04497047469974,-87.04479964904075,-87.04479930759483,-87.04475374580836,-87.04475340520075,-87.04467668801357,-87.04465268761695,-87.0446525763316,-87.04466768637415,-87.04466039610217,-87.04464504711942,-87.04452117277511,-87.04449081841604,-87.04441296728734,-87.04437429391466,-87.04433531154999,-87.04429712454629,-87.04421175132082,-87.04419628909493,-87.04418105276051,-87.04411854541641,-87.04404852041787,-87.04401021448095,-87.04394836001869,-87.04379324066645,-87.0436850203329,-87.04366093297547,-87.04366889015319,-87.04370807276553,-87.04373081672622,-87.04373932806911,-87.04373078594961,-87.04370771737091,-87.04364540543125,-87.04359969168307,-87.04346000143723,-87.0433981382722,-87.04325092761562,-87.0428786929545,-87.04264657042302,-87.04233703627014,-87.04225905413767,-87.04218130459836,-87.04203433496401,-87.04198804879742,-87.04197280632783,-87.04192620968803,-87.04177092411891,-87.04158424610328,-87.04158469630258,-87.04153798735075,-87.04150682483366,-87.04144509701609,-87.04138345282297,-87.0411732449941,-87.04115073724857,-87.04093371701987,-87.04088663344611,-87.04080182547493,-87.04070881891774,-87.04063967941937,-87.04049151025671,-87.04039929418988,-87.04022030793311,-87.04015047852575,-87.04012066841054,-87.04005030469071,-87.04000366644877,-87.03993394796517,-87.03978656977478,-87.03977108972111,-87.0397092332957,-87.03970953144243,-87.03969454524118,-87.03969381966381,-87.03967096514143,-87.03967844811967,-87.03966296392915,-87.03967828334153,-87.03968620266851,-87.03970915318169,-87.03984119811616,-87.03987982707787,-87.03989594024928,-87.03988061083439,-87.03988022511982,-87.03990338995239,-87.03997384356133,-87.03997314429181,-87.03992739883641,-87.0399192879959,-87.03984955851625,-87.03983442092495,-87.03977162512287,-87.03972518946618,-87.03964807312509,-87.03961757213418,-87.03953952550795,-87.03954042679084,-87.03944648513267,-87.03936185684005,-87.03895821153681,-87.03892764277428,-87.03878766906163,-87.03870269239145,-87.03865517160287,-87.03854734133685,-87.03841507651492,-87.03833044283964,-87.03829200419406,-87.03818365317805,-87.03801273014948,-87.03797405775616,-87.03801263705618,-87.03813702990112,-87.0382839934819,-87.03837765030028,-87.03850850581456,-87.03864905820517,-87.03887368109741,-87.0388815754432,-87.03894296487358,-87.0390285979648,-87.0390901460358,-87.0391291214903,-87.03920699517859,-87.0392689454721,-87.03926857647966,-87.03938555818013,-87.03944816566393,-87.03952542682589,-87.0396178420076,-87.03984343840976,-87.03995871915913,-87.04003629578948,-87.04009927311243,-87.04016082594653,-87.04019206844501,-87.0402384301337,-87.04023852620732,-87.04020765166204,-87.04020718741673,-87.04019216480562,-87.04017724408268,-87.0401614297479,-87.04016165045182,-87.04013080252858,-87.04011533216115,-87.0400834683025,-87.04003685071243,-87.04003741244624,-87.03999121496416,-87.0399208057535,-87.03989068317598,-87.03978920501559,-87.03964983163597,-87.03963434187165,-87.0396346265124,-87.03961891962375,-87.03961923419338,-87.03958782275082,-87.03958765419002,-87.03963500404673,-87.03972728784277,-87.03975939857877,-87.0398052772285,-87.03984471134638,-87.0399527538048,-87.04007706586042,-87.04020916505488,-87.04029407414046,-87.04032510872332,-87.04031769362197,-87.04028598201286,-87.0401851646961,-87.04006169010395,-87.03990602150017,-87.03982147240899,-87.03972793936097,-87.03961167110423,-87.03955772288089,-87.03955048850014,-87.03956602006345,-87.03961928145975,-87.0396893139114,-87.03972092449835,-87.03981403457118,-87.03987181758454,-87.04038746517205,-87.04044925898482,-87.04010039034591,-87.03997057930749,-87.0399540989273,-87.0399536408986,-87.0399692207267,-87.04002298696309,-87.04010894453029,-87.04023186530971,-87.04035603053092,-87.04038730156572,-87.04042646649036,-87.04047297381484,-87.04055051203706,-87.04052695758234,-87.04050379753389,-87.04043421826452,-87.04045690424643,-87.04049662511747,-87.04065139637308,-87.04075251738556,-87.04081452865097,-87.0408766528035,-87.04100067537058,-87.04101670217118,-87.04107828125791,-87.041124047491,-87.04116455043122,-87.04115526264913,-87.04110920262937,-87.04106300051637,-87.0409924992791,-87.0409468723186,-87.04081508199185,-87.04059774853351,-87.04031820441494,-87.04017877709397,-87.03990722893306,-87.0395579275549,-87.03914778752591,-87.03871302560583,-87.03850355115102,-87.03834121754765,-87.03782109261407,-87.03741745508604,-87.03697586652653,-87.03681993766027,-87.03668081457027,-87.03659506311956,-87.0363395503141,-87.03612180088393,-87.03590498080574,-87.03587392156267,-87.03562509213462,-87.03547017515683,-87.03540877535393,-87.03526859398116,-87.03512094155465,-87.03503571997169,-87.03486477184354,-87.03477245042902,-87.03468685473375,-87.03463205381999,-87.03453951129796,-87.03449292353798,-87.03443054217716,-87.03435290273397,-87.0343294748248,-87.03436880443634,-87.03464838366385,-87.03481114451564,-87.03504283276129,-87.03507455168395,-87.0350666564606,-87.03504416066501,-87.03491950417369,-87.03475594933296,-87.0347447694673,-87.03462378341078,-87.03438672085922,-87.03431109013273,-87.03428404336827,-87.03402800238915,-87.03393429968183,-87.03387266245993,-87.03371737141744,-87.03334457731195,-87.03300341932939,-87.0328483197636,-87.03269363640233,-87.0326080135745,-87.03257729872533,-87.03257660544307,-87.03265376177978,-87.03277027432534,-87.03304976968013,-87.03315114795102,-87.0331665970903,-87.03317385310044,-87.0331504645757,-87.03309653258286,-87.0330659520902,-87.03301951883292,-87.03290266417898,-87.03288729040626,-87.03288646215535,-87.03290270047705,-87.03299602929818,-87.0330502454815,-87.03308151443773,-87.03315084470037,-87.03317408342471,-87.03315161771187,-87.03317385345622,-87.03319757567449,-87.03322070958818,-87.03325206217083,-87.03331356742613,-87.03334534089804,-87.03339950279526,-87.03353091067248,-87.03357768039781,-87.0335857851713,-87.03355413899426,-87.03353852230701,-87.03352383890909,-87.03350732519409,-87.03352346240423,-87.03352374684894,-87.03347664813211,-87.03342305825242,-87.03337596486614,-87.03318973908831,-87.03305071397999,-87.03292587036886,-87.03286472828654,-87.03282476536701,-87.03279460141287,-87.03279419064322,-87.03277871314282,-87.03277881522955,-87.0327325115978,-87.03262384325737,-87.03256126610155,-87.0325613678454,-87.03254668379512,-87.03254630407115,-87.03253003015124,-87.03253887811226,-87.03253031037204,-87.03258514485394,-87.03256862803624,-87.03249974910737,-87.03232875322151,-87.03214291993336,-87.03207287629952,-87.0320412587679,-87.03191707005584,-87.03188624867653,-87.03163890742674,-87.03160768322657,-87.03160804757221,-87.0316543162058,-87.03184060146087,-87.03189416073562,-87.03192487515572,-87.03196458122535,-87.03205670369405,-87.03230483957147,-87.0324601168019,-87.03259452123719,-87.03263950348803,-87.03269297665597,-87.03277936932828,-87.03287948872016,-87.03305805232883,-87.03319755432162,-87.0333608625502,-87.03360965865248,-87.03364040090661,-87.03376438016451,-87.03385774645632,-87.03398121868995,-87.0340906193136,-87.03420595233756,-87.03423688132369,-87.03426057097597,-87.03437688564098,-87.03443958985609,-87.03461696765291,-87.03481928108006,-87.03492796553138,-87.03500580286554,-87.03519990324939,-87.03540137487711,-87.03552583211425,-87.03596748127991,-87.03602978765119,-87.03609172655688,-87.03616924863611,-87.03626206087711,-87.0363865193852,-87.03665020058908,-87.03674298592168,-87.03696110691457,-87.0370849589375,-87.03742714091359,-87.03748889269903,-87.0375969731156,-87.03772933300561,-87.03777555504259,-87.03780638298501,-87.03779146112373,-87.03766697939733,-87.03766708492094,-87.03761999286522,-87.03762086686518,-87.03758925144317,-87.0375815915139,-87.0375900993576,-87.03762034325371,-87.03781523338421,-87.03782975617521,-87.03779130046009,-87.03771383002397,-87.03755801681652,-87.03738794094889,-87.03713976182415,-87.0369761783695,-87.03689181692167,-87.03684529984399,-87.03675208628158,-87.03657376546981,-87.03644980548965,-87.0363254719788,-87.03629443661005,-87.03611555865103,-87.03596729360778,-87.03587476887934,-87.03578944920412,-87.03564232226749,-87.03551796381095,-87.03542461119575,-87.03517676580333,-87.03511495859591,-87.03499065314773,-87.03489770649757,-87.03473425857283,-87.03433861585941,-87.03428415025641,-87.03421503025892,-87.03417525464297,-87.03416076729474,-87.03413712828923,-87.03408200413735,-87.0339507910389,-87.03348561201058,-87.03327696851618,-87.03319071757657,-87.03310465792397,-87.03297261379963,-87.03291072411996,-87.03281759401017,-87.03258224906382,-87.03228240827411,-87.03213516459928,-87.03208097848113,-87.03208128372481,-87.03212009157464,-87.0321978101689,-87.0322593248934,-87.03227532500898,-87.03234481567641,-87.032569924664,-87.03269345244473,-87.03298835500847,-87.03324424385254,-87.03360154536202,-87.03376512833695,-87.0339041937318,-87.03395895013252,-87.03398903359214,-87.03402801879379,-87.03412208857611,-87.03418397663434,-87.03433921508922,-87.03452459088409,-87.03468017243725,-87.03486657959125,-87.03492838872006,-87.03505288292644,-87.03508371176882,-87.03533208713334,-87.03541032725373,-87.03547208571075,-87.03556466790639,-87.03572025088225,-87.03578176788041,-87.03589064770054,-87.03596133673513,-87.03598413137092,-87.0361929646254,-87.03645729716622,-87.03658926969894,-87.03676022685532,-87.03686126700188,-87.03695416503717,-87.03696895649799,-87.03728013216052,-87.03740455326437,-87.03756690198368,-87.03795449609869,-87.03846656872433,-87.03877003607087,-87.03893241364148,-87.03905731098793,-87.03911901197574,-87.03914983945596,-87.03918061384415,-87.03923508425895,-87.03924330585923,-87.03929017083836,-87.03950664664666,-87.03959218679927,-87.03966998820442,-87.03966993366535,-87.03970826662921,-87.03975484043283,-87.03991109832953,-87.0399954167181,-87.04001212086833,-87.03998013503077,-87.03999521981387,-87.04001162786487,-87.04005096769576,-87.04015076722884,-87.04025973856785,-87.04034463875418,-87.04056308049066,-87.04064002677984,-87.0406944971859,-87.04070965519729,-87.04070977915244,-87.04072480315314,-87.04080317618346,-87.04093440293607,-87.04096573227751,-87.04099671754463,-87.04101201536831,-87.04098983069652,-87.04087984084569,-87.04083385438905,-87.04083407509458,-87.0408572710562,-87.04088799374635,-87.04095031314098,-87.04130655852859,-87.04132211478334,-87.04129139945668,-87.04102763995009,-87.04083859791709,-87.04073244683906,-87.04066338256044,-87.04059364838442,-87.04051526793826,-87.04045395628015,-87.0403609177294,-87.04029785435299,-87.04020573998982,-87.04011278134681,-87.0399878783083,-87.03986366854025,-87.0398097530192,-87.0397714786512,-87.03972490968069,-87.03971624477563,-87.03971669805057,-87.0397554809025,-87.03982559199983,-87.04000390620121,-87.0401667418117,-87.04015921447812,-87.03996481875161,-87.03994933975191,-87.03994955892388,-87.03997270177371,-87.04004207283876,-87.04011236860212,-87.04026809577381,-87.04040786741409,-87.04054703285078,-87.04060900462655,-87.04072513529844,-87.04072503360707,-87.04070282235023,-87.04061723490959,-87.0404382596205,-87.04041509424292,-87.04039911021809,-87.04040001542987,-87.04041509895531,-87.04041467694847,-87.04039999260894,-87.04033727911214,-87.04017534625478,-87.04014372403023,-87.04007393523126,-87.04001148390607,-87.03983364932729,-87.03980282046547,-87.03978660242932,-87.03959260029163,-87.03956153239889,-87.03949977033007,-87.03942154363392,-87.03939084981118,-87.03930546476276,-87.03927413413113,-87.03911910088441,-87.03904151215498,-87.0390029462979,-87.03899544587981,-87.03900063347021,-87.03859171420456,-87.03824417054086,-87.03818763601326,-87.0381265610729,-87.03801687432573,-87.03787811155235,-87.0377843003525,-87.0376013573248,-87.03744337007235,-87.03738881828147,-87.03732692071486,-87.03725691650637,-87.03721012886672,-87.03718664395815,-87.03714868603291,-87.03710958746318,-87.0370862609235,-87.03704013870737,-87.03685273312873,-87.03680645326946,-87.03678402601682,-87.036721654505,-87.03670548381911,-87.03670649076398,-87.03673774312686,-87.03675993160454,-87.03690747013867,-87.0369540166629,-87.03695467899527,-87.03688494034597,-87.03680695229153,-87.03676803736539,-87.03671351321758,-87.0366050952186,-87.03645034386058,-87.03632652599863,-87.03627992440438,-87.03625670144177,-87.03623281646679,-87.03617047133864,-87.03608564496844,-87.03589966308512,-87.03586854384957,-87.03584452336264,-87.03580616434984,-87.03565798510078,-87.03559712088021,-87.03534799533939,-87.03520874510008,-87.0350537799608,-87.03496094879701,-87.03480598463287,-87.03464971474507,-87.03461867499828,-87.03452589300889,-87.03437004885802,-87.03421539982079,-87.0340916310922,-87.03399755096838,-87.03369595958614,-87.03362631650835,-87.03347787159471,-87.03337743051776,-87.03328488417398,-87.03316752667651,-87.03300460078941,-87.03272626058062,-87.03247742769128,-87.03235315371356,-87.0321979153086,-87.03195688752974,-87.03179398963997,-87.03158446424021,-87.03151516763836,-87.03139139724223,-87.0313285202855,-87.03111167366278,-87.03098710652218,-87.03077002747648,-87.03067679675712,-87.02980800134519,-87.02952853474979,-87.02912512019353,-87.02884559905225,-87.02810116085053,-87.02791424302308,-87.02788341006215,-87.02779025891033,-87.02775942919898,-87.02738700285106,-87.02733229000886,-87.02701457985621,-87.0269598626456,-87.02682824917964,-87.02617554543276,-87.02598956484785,-87.02549292093197,-87.02481043178059,-87.02446818504853,-87.0241579276216,-87.02381724479049,-87.02338226532754,-87.02291739124273,-87.02254471928146,-87.02235808814923,-87.02223382925516,-87.02201725372319,-87.02192408653487,-87.02181516602542,-87.02164458223693,-87.02164493406988,-87.02158256927146,-87.02153522016086,-87.02153592131606,-87.02150469346333,-87.02139567844115,-87.02139603029048,-87.02134886894484,-87.02131834395909,-87.02131894983707,-87.02138033231681,-87.02136468556785,-87.02130238727131,-87.02100085649715,-87.02069786031348,-87.02045769106817,-87.02003034205531,-87.01984427787269,-87.01953379562411,-87.0195027569944,-87.01944020499518,-87.01928530535292,-87.01897503294092,-87.01826083608161,-87.018136972164,-87.01807524839288,-87.01804418037476,-87.01733043465723,-87.01708206552492,-87.01702007375947,-87.0167095372597,-87.01646137461658,-87.01633718901572,-87.0162207751836,-87.01617401120615,-87.01613525402583,-87.01602635079864,-87.01593373397695,-87.01590331123285,-87.01585581053023,-87.01567790903759,-87.01543711386105,-87.01529782477475,-87.0149482187425,-87.01483246079135,-87.01458310333679,-87.01452193827689,-87.01433530451739,-87.01396258961455,-87.01386962674468,-87.01377595571603,-87.0135130242726,-87.01337373960358,-87.01290801291812,-87.0127841616689,-87.01272161746593,-87.01269058054878,-87.01259785213438,-87.01234976587838,-87.01228666122346,-87.01203887031529,-87.01185241870445,-87.01169764940121,-87.01135619474216,-87.01116938961006,-87.01092204449542,-87.01061136517619,-87.01039370569359,-87.01033231225036,-87.00995951005241,-87.0097427967915,-87.00930027907654,-87.00908316071153,-87.00837693817401,-87.00836171882992,-87.00823800734204,-87.00816087463492,-87.00794321496551,-87.00790422072362,-87.00779627085181,-87.00778061307409,-87.00778044657915,-87.00770325932902,-87.00764139827099,-87.0075790508852,-87.00750888534498,-87.00747085163856,-87.00745516092397,-87.00743961555612,-87.00744748274442,-87.00738551973451,-87.00729215853211,-87.0072849205844,-87.00729174006243,-87.00722247467398,-87.007223048852,-87.00714534747094,-87.00711441929967,-87.00708367919808,-87.00706755072436,-87.0070523337578,-87.00705238174407,-87.00703752181782,-87.00702967764745,-87.00694375635007,-87.00688195439471,-87.0065722957799,-87.00648719425912,-87.00630011699479,-87.00624646780868,-87.0061774350786,-87.00610700928324,-87.00609113716229,-87.00594507345613,-87.00586639696763,-87.00578922839402,-87.00572795883035,-87.00561932199486,-87.00561967860277,-87.00529371802637,-87.00524624045642,-87.0051459954901,-87.00506817223466,-87.00503750072103,-87.00478939532142,-87.00455738783927,-87.00439475667496,-87.00422341054905,-87.00395238932805,-87.00376591551338,-87.00364982257956,-87.00357188084072,-87.00332403639257,-87.00330846558202,-87.00304493047597,-87.0029678329817,-87.00270366602828,-87.00248658577576,-87.00229931750799,-87.00214439917929,-87.00208219070927,-87.00195839308942,-87.00164824728969,-87.00152474460737,-87.00149371616963,-87.00143127349044,-87.00130674259978,-87.00118344561024,-87.00108994212295,-87.00065522056275,-87.00041529111415,-87.0002754291522,-87.00021270471204,-87.00009448668789,-87.00000581934324,-86.99986595589887,-86.99968033361317,-86.99942375609899,-86.99924553457271,-86.99912859064733,-86.99897425940554,-86.9986322135962,-86.99816764396481,-86.99798137877185,-86.99785756309642,-86.99770175216611,-86.99758540223598,-86.99753068587222,-86.99749278764311,-86.99744572631765,-86.99711952812623,-86.99697999491566,-86.99676257012901,-86.9965769524426,-86.996475720292,-86.99641412922027,-86.99623474142122,-86.995893782042,-86.99569175613627,-86.99559955509058,-86.99553761711238,-86.99551381636903,-86.99551389403956,-86.99556056546982,-86.99570801509302,-86.99584811169731,-86.99618235128419,-86.99627535194344,-86.99632116719073,-86.99632158225269,-86.99629857949799,-86.99616629092134,-86.99608098731788,-86.99600355693813,-86.99597213647992,-86.99591853905611,-86.99585570062304,-86.99565498015453,-86.99555389123302,-86.99550777742924,-86.99546848131455,-86.99536002000387,-86.99502647647658,-86.99498819904015,-86.9946233251207,-86.99449972698237,-86.99433683470585,-86.99425852882341,-86.99391758997288,-86.99377062062443,-86.99373920168554,-86.99363080613507,-86.99351455145388,-86.99342208070334,-86.99329715446802,-86.99325944547054,-86.99317362159753,-86.99311160517671,-86.99303471862336,-86.99291785754775,-86.99275466389003,-86.99219608156835,-86.99207189781106,-86.99194755514678,-86.99186324914767,-86.99181636286207,-86.99179255733509,-86.99179302943219,-86.99175416546264,-86.99170088889262,-86.99158386380722,-86.99151346110143,-86.99140570191101,-86.99137407720876,-86.99109543989256,-86.99103314692678,-86.99093999317989,-86.99090952531623,-86.99084663913943,-86.99066052099087,-86.99047396941975,-86.99010179816196,-86.98982245838359,-86.98945307766078,-86.98934914306794,-86.98933316805716,-86.98935733832397,-86.98939598083605,-86.9894574393995,-86.98955830725208,-86.98965116303991,-86.98971345824984,-86.98993149729374,-86.99024116281457,-86.99036554571698,-86.99067535386787,-86.9907991744153,-86.99086153245554,-86.99101727402564,-86.99111003834861,-86.99114166260283,-86.99120375381729,-86.99126541202354,-86.991350311433,-86.99137362035785,-86.99136668921233,-86.9912961447428,-86.99118013576994,-86.99090811601555,-86.99065988298833,-86.99025652269214,-86.99022549199424,-86.98997721633559,-86.98972878045089,-86.98963658323655,-86.98957349845216,-86.9889220667397,-86.98870521997783,-86.98854913715006,-86.98845680317598,-86.98841043345597,-86.98837905649468,-86.98828522464842,-86.98819269332577,-86.98807628312066,-86.98797554523946,-86.98789769028068,-86.9877738080923,-86.98752595366368,-86.98743200664308,-86.987369717403,-86.98727659793741,-86.98721470886053,-86.9871216568371,-86.9869663099274,-86.98690508428722,-86.98687346055021,-86.98683531429228,-86.98676454950034,-86.98656357965419,-86.98647043049512,-86.98637724656376,-86.9862919125255,-86.98619889803963,-86.98614383083078,-86.98608167308878,-86.9860044492718,-86.98587983882476,-86.98581877514623,-86.98570231683254,-86.98562489392458,-86.98546190703708,-86.98540028598364,-86.98516732719663,-86.98515182838773,-86.98499635787826,-86.98492681642745,-86.98487237835597,-86.98474770572088,-86.98474893159118,-86.98461713433467,-86.98458534517547,-86.98453126834396,-86.98446924627248,-86.98436046187817,-86.98410421393949,-86.98381743679167,-86.98369368355017,-86.98362334580564,-86.98351495577536,-86.98340729858714,-86.98321253874036,-86.98307312532241,-86.98294950375144,-86.98256896398448,-86.98242189430523,-86.98235155379383,-86.982313038105,-86.98232843442912,-86.98247553167671,-86.98249947446251,-86.9824677483915,-86.98242204647241,-86.98242211142963,-86.98247572566416,-86.98267017966089,-86.98277075442917,-86.9828566260794,-86.98290358039374,-86.98288774965468,-86.98287225251985,-86.98287274738991,-86.98290054466808,-86.9831981145518,-86.98349308686504,-86.98358584683614,-86.98373311861175,-86.98376401346441,-86.9837876612342,-86.98375752606071,-86.98375643242521,-86.98377242770653,-86.98377186431372,-86.98375722567567,-86.98368694901245,-86.98360998687787,-86.98336107656681,-86.98322936391767,-86.98315226680025,-86.98312097028342,-86.98308245361935,-86.98293491517856,-86.98281065392891,-86.982693813984,-86.98263973150314,-86.98256206900624,-86.98234524385326,-86.98225264829235,-86.98218982171842,-86.98209682083555,-86.98194987190189,-86.98173271737912,-86.9815231147319,-86.98149208153625,-86.98139828672858,-86.98130598739026,-86.98119732283202,-86.98115012657873,-86.98105745629842,-86.98098041653587,-86.98097974823872,-86.98101882358556,-86.98108863843062,-86.98113523251645,-86.98120521368168,-86.98130655249874,-86.98146158077888,-86.98155378179995,-86.98167907305367,-86.98174030961682,-86.98175581042868,-86.98180307086129,-86.98189540770898,-86.98195743520881,-86.98201939709323,-86.98210586564247,-86.98223681129618,-86.9822602567361,-86.98229966817424,-86.98232980198244,-86.98231462573843,-86.98223692113156,-86.98204309931404,-86.98195804240896,-86.9819040278866,-86.98173313229468,-86.98163175239119,-86.98160091661177,-86.98150775410687,-86.98147691899709,-86.9813537465694,-86.98126021937129,-86.98108130573776,-86.98088782069046,-86.98045362235685,-86.98037595473077,-86.98035936062814,-86.9803600181106,-86.98053027819029,-86.98054574375068,-86.98053073638826,-86.9804846285103,-86.98036777948343,-86.98029047599897,-86.98022042707892,-86.98018879704532,-86.98006482989015,-86.97998716126109,-86.9799568856932,-86.97994074817862,-86.97987913989675,-86.97983280333359,-86.97977007064425,-86.97939750021635,-86.97928183731051,-86.97920429779481,-86.97911912833227,-86.97907298890122,-86.9789248345226,-86.97887154119331,-86.97883937629769,-86.97885562705332,-86.97888675402562,-86.97888635608479,-86.97895579844906,-86.97904914833288,-86.97915767505029,-86.97935986587291,-86.97939907392249,-86.97939870605713,-86.97935972570498,-86.97931341721811,-86.97915784244711,-86.97908785322609,-86.97904171512268,-86.97899566885602,-86.97898029016017,-86.9789953882068,-86.97899501255927,-86.97897195952419,-86.97886361114205,-86.9787936613923,-86.97870846392857,-86.97866951215524,-86.97865370471564,-86.97870099171409,-86.97870062441147,-86.97866885530897,-86.97865485175269,-86.97857611823081,-86.97859207986754,-86.97863868149368,-86.97871621776748,-86.97877789143894,-86.97890240056184,-86.97902647469675,-86.97913497767149,-86.97969419520426,-86.97994259893963,-86.98021448289937,-86.98047825313921,-86.98059477058902,-86.98071867856234,-86.98084225789998,-86.9809038652181,-86.98095132793829,-86.98106735013185,-86.98119168432767,-86.98140104133104,-86.9816802512762,-86.98189739802113,-86.98202180292607,-86.98211444510186,-86.98228614888286,-86.98240969197893,-86.98250349405588,-86.98263535054478,-86.98294616344188,-86.98295404717099,-86.9830854720573,-86.98319430742903,-86.98331781986546,-86.98343434146881,-86.98358180044373,-86.98360481880563,-86.98386956785782,-86.9839158719024,-86.98393895436207,-86.98393153441056,-86.98391646552658,-86.9839006002059,-86.9838386228072,-86.98378416912976,-86.9836136124618,-86.9835357076355,-86.98334961957498,-86.98324073632119,-86.9832022113512,-86.98319515714974,-86.98322539462329,-86.98314043042525,-86.98312578853354,-86.98314062600262,-86.98319474756316,-86.98325691888212,-86.98338878524567,-86.98354433493735,-86.98356735332504,-86.98359123682364,-86.98368424797148,-86.98380809637368,-86.9839328109954,-86.98402525879368,-86.98414940561958,-86.98427362518272,-86.98439827037534,-86.9844601796574,-86.98455332151916,-86.9846693532392,-86.98478595113816,-86.98487916194806,-86.98523630454986,-86.98557765213444,-86.9857323123033,-86.98589531776969,-86.98598094375589,-86.98601943406433,-86.98608976159554,-86.9861360142458,-86.98626068155693,-86.9862837428379,-86.98629225961928,-86.98629965338091,-86.98627641064483,-86.98622974343884,-86.98619920089337,-86.98616796609623,-86.98615325958215,-86.98607568693937,-86.98607535783128,-86.98604408621094,-86.98604458477237,-86.98602908325036,-86.98601335007933,-86.98598241388002,-86.98598291251486,-86.98595118000111,-86.98593624168805,-86.98588946685372,-86.98588950644415,-86.98582802411448,-86.98582729536415,-86.98578122060277,-86.98573408175314,-86.98568800249946,-86.98561072108434,-86.98550236571629,-86.98522241077968,-86.98517633344089,-86.98517596748057,-86.98514575799346,-86.98514539201962,-86.98509891308655,-86.98502149579562,-86.98482719747314,-86.9847186710292,-86.98460974483459,-86.98436257162697,-86.98408270105138,-86.98393477581396,-86.98378003300219,-86.98350830501504,-86.98326762465918,-86.98314322338702,-86.98286487210987,-86.9827406388129,-86.98270979745445,-86.98249237350244,-86.98246030538721,-86.98227478271239,-86.98224350846013,-86.98202608476312,-86.98199560695647,-86.9818713739469,-86.98184010236686,-86.98165405070931,-86.98131212590077,-86.98118832354113,-86.98100144040087,-86.98072198765787,-86.98069879974683,-86.98053610213978,-86.98035786505565,-86.98022567891516,-86.98017171270175,-86.980101644047,-86.97982212774454,-86.97969792517351,-86.97935691167815,-86.97901530701419,-86.97882901578568,-86.97858060706146,-86.97836367383192,-86.97811526431458,-86.97746304615902,-86.97733901320845,-86.97718379388907,-86.97709811816806,-86.97700491844665,-86.9768669135746,-86.97659396011139,-86.97637639463834,-86.976314703998,-86.97622094568958,-86.97606622447684,-86.9758871445853,-86.9758026896979,-86.97572485496549,-86.97557723620423,-86.97549251193352,-86.97541451582494,-86.97529829309919,-86.97524355991914,-86.97510417240218,-86.9750187209922,-86.97487076955063,-86.97474741416674,-86.97456140237082,-86.97451445068521,-86.974420667633,-86.97442188852834,-86.97433602369331,-86.97409584575246,-86.97397856869482,-86.97385450121311,-86.97376874826881,-86.97366020066762,-86.97341227687676,-86.97325689295175,-86.9732031817115,-86.97312481263083,-86.97307046117277,-86.97304035165043,-86.97294669976291,-86.972947548405,-86.97296990411252,-86.97304754467898,-86.97313364052251,-86.97328825986277,-86.97341190331414,-86.97366149290076,-86.97375389437804,-86.97394062498861,-86.97397067636862,-86.97409601312827,-86.97420402259698,-86.97426577308219,-86.97432824999626,-86.97439880634002,-86.97443691563426,-86.97439129645031,-86.97435948277757,-86.97425887441194,-86.97417334835673,-86.97407255463527,-86.97394085838698,-86.97390958167067,-86.97372321685081,-86.97356745876893,-86.97342848856506,-86.97325782866287,-86.97318012711241,-86.97304775923959,-86.97296290148736,-86.97293168180919,-86.97293889530572,-86.97297858087607,-86.97308721383909,-86.97313405397864,-86.97314136635251,-86.97308688562079,-86.9730706381219,-86.97297755170642,-86.97297877118878,-86.97305578049226,-86.97304069402141,-86.97297087356012,-86.97286222243297,-86.97282324794476,-86.97280779557816,-86.9728852270193,-86.97288491507828,-86.97291644197843,-86.9729550324969,-86.97299365994105,-86.9730244378829,-86.97310276597474,-86.97319561142879,-86.97331977611312,-86.97334274214163,-86.97345911695128,-86.97358380569034,-86.97386351455313,-86.97435940226156,-86.97488852597128,-86.97513559534009,-86.97538519358459,-86.97550821800655,-86.97575758499882,-86.97588060921103,-86.97606751272161,-86.97619153103275,-86.97622317418478,-86.97637849678394,-86.97647109901466,-86.9765951722229,-86.97692117349327,-86.97725489334833,-86.9774335674209,-86.9775732139563,-86.9778137046689,-86.9778605186933,-86.97876907847778,-86.97879955924587,-86.9789866817799,-86.97918026309087,-86.97935857639948,-86.97954461455377,-86.97973184327063,-86.98084950691496,-86.98122217993003,-86.9814699812559,-86.98167970531054,-86.98178098611226,-86.98186676161512,-86.98188979002812,-86.98208360230699,-86.98228517036266,-86.98244135329747,-86.98248687607668,-86.9825106955972,-86.98263553676935,-86.98275947355486,-86.98279058426138,-86.98279064806644,-86.98282142581068,-86.98282228622395,-86.98283703153447,-86.9828819075972,-86.98290825555863,-86.98293207733559,-86.98296232668102,-86.98296315460287,-86.98298703516417,-86.98307264207936,-86.9831349633515,-86.98326017282596,-86.98331440964462,-86.98340154252203,-86.98343258720952,-86.98343228369416,-86.98354261088045,-86.98355844762054,-86.98358879363975,-86.98365188259278,-86.98371470070882,-86.98373062976759,-86.98374640186287,-86.98374567154679,-86.98380895486771,-86.9838094492189,-86.98382452297501,-86.98382531488788,-86.98384115641531,-86.98384078741655,-86.98385662358022,-86.98384870377998,-86.98385747374449,-86.98387384148083,-86.98388924304912,-86.98390508478067,-86.98396697475467,-86.9840305277236,-86.9840612100168,-86.9841081308093,-86.98410776401413,-86.9841394084132,-86.98415537825461,-86.98417045249207,-86.98417042092787,-86.9841862900912,-86.98418628853996,-86.98420212613784,-86.98420265300089,-86.98421852491765,-86.98423448802627,-86.98425033027306,-86.98425008947109,-86.98426593164307,-86.98426599384847,-86.98428176708346,-86.98428275624588,-86.98429862837438,-86.98429823016359,-86.98431330390372,-86.98431413225909,-86.98432993532805,-86.98433009894244,-86.98434596864041,-86.98436246457702,-86.98437826780192,-86.98437803245952,-86.98439321064443,-86.98440215508384,-86.98439383333924,-86.98441003756363,-86.98442544108404,-86.98451944753778,-86.98466087510096,-86.98473913856012,-86.98478586360042,-86.98483248505811,-86.98488092639951,-86.9849435910955,-86.98495949306057,-86.98500618067986,-86.98503046721149,-86.98502384006042,-86.98503231635179,-86.98508810632195,-86.98508919858008,-86.9851044080967,-86.98510453783656,-86.98512031093315,-86.98512852674037,-86.98512175994489,-86.98513716853107,-86.98512967923213,-86.98513822698291,-86.98512314601484,-86.98512374379725,-86.9851082607596,-86.98510888911169,-86.98509301472215,-86.98510089973259,-86.9850700098565,-86.98505529537648,-86.98505456468379,-86.98502404087051,-86.98502410413509,-86.98500859558639,-86.98500945381494,-86.98494757255524,-86.98493255871563,-86.98491625320564,-86.98490173525734,-86.98479364717453,-86.98465540110776,-86.98465583271323,-86.98445487500489,-86.98431593142068,-86.98428494203651,-86.98428457504389,-86.98414635920435,-86.98405375279719,-86.98405338656211,-86.98399173713199,-86.98391421028619,-86.98377460548514,-86.9837125889853,-86.9835737480598,-86.98334994515868,-86.98307118919006,-86.98300243830403,-86.98300207420492,-86.98287800790217,-86.98268463432227,-86.98248287412191,-86.98211170118056,-86.98203410583103,-86.98139812518225,-86.98102644591107,-86.98101172650486,-86.9806706415272,-86.98039147890299,-86.98006659774852,-86.98005028693002,-86.97967896248764,-86.97966344993284,-86.97936855882948,-86.97930689908173,-86.97900484414204,-86.97882690444524,-86.97873292921011,-86.97855542625449,-86.9784072906229,-86.97830659265061,-86.97827493898251,-86.9782127878629,-86.97815879518005,-86.97781022914567,-86.97749895090958,-86.97734441644403,-86.97731332968182,-86.97715743549658,-86.97697137236611,-86.97666901810561,-86.97657696911351,-86.97619605519127,-86.97616499372288,-86.97594771467199,-86.97586251845317,-86.97580838552419,-86.97575490282772,-86.97562998310991,-86.97554518451244,-86.97539020594117,-86.97531289536818,-86.97526640415282,-86.97526688748418,-86.97525100179759,-86.97521280970494,-86.97513507237994,-86.97504974961915,-86.97495621065053,-86.97489398829487,-86.97488593025257,-86.97486325312444,-86.97494116253527,-86.97495636654122,-86.9749413342914,-86.97489478125328,-86.97480964204912,-86.97447689010257,-86.97436824361681,-86.97419798820714,-86.97384288658341,-86.97378825070693,-86.97362509612579,-86.9735701611631,-86.97346981449344,-86.97343161641639,-86.97342384216851,-86.97344833486514,-86.97344062723212,-86.97328689621588,-86.97319344873274,-86.97319387405871,-86.97314731932721,-86.9731314319254,-86.97306939211319,-86.97300819910127,-86.97271426592944,-86.97268280563398,-86.97248232044809,-86.97232750679315,-86.97211062020143,-86.97184728774845,-86.97172353718713,-86.97159939111312,-86.97152182330389,-86.97145274500934,-86.97136761547601,-86.97135255352985,-86.97110469828661,-86.97093399066213,-86.97087273645201,-86.97082575227741,-86.9705170626607,-86.97036123046389,-86.97030761510561,-86.97027747593967,-86.97026195690695,-86.97018549857738,-86.97017729848899,-86.97019440974401,-86.97021799329909,-86.9702180984677,-86.97024914844158,-86.97025015486672,-86.97020388715488,-86.97018916174352,-86.97018886660139,-86.97021310198529,-86.9703683818832,-86.97053199432284,-86.97068801842516,-86.97084409529748,-86.97107819063994,-86.9712721342175,-86.97138171469673,-86.97148317755936,-86.97185634753295,-86.97205777203523,-86.97220706714295,-86.97233206225515,-86.9723484721046,-86.97236401807362,-86.97241135559085,-86.97248894113771,-86.97253569321796,-86.97258321512777,-86.97258284658059,-86.97266109170022,-86.97269226488251,-86.97272341645537,-86.97272384147479,-86.97284892344018,-86.9729581174977,-86.97309928924078,-86.97322467235294,-86.97338064539792,-86.97348160632646,-86.97376910649174,-86.97388593192339,-86.97410381794165,-86.97425195462453,-86.97440708360588,-86.97468894112461,-86.97493035211663,-86.97499353969935,-86.97507182327344,-86.97508766779198,-86.97510300270194,-86.97518111692385,-86.97532944411232,-86.97552416684704,-86.97582014104908,-86.97592171060835,-86.97599897412083,-86.97609335223609,-86.97621828862778,-86.97637401183223,-86.97650611394987,-86.97662303592053,-86.97673319519367,-86.97704425330977,-86.97711442764309,-86.97715360089772,-86.97723123004428,-86.9772630150467,-86.97731283846335,-86.97701581431946,-86.97689918786511,-86.97677470491445,-86.97653464522968,-86.97651962053642,-86.97657409079173,-86.9766127799285,-86.97669577553155,-86.97740378270575,-86.9774652988325,-86.97752806788476,-86.97762103811765,-86.97790199588069,-86.9782126005011,-86.97840635939964,-86.97856247811272,-86.97883483339763,-86.9790225294216,-86.97909284029578,-86.97916252560873,-86.9792956036368,-86.97975520194456,-86.97986381137081,-86.97989451396815,-86.97994202175609,-86.9799727575013,-86.98012924212912,-86.98023056605165,-86.9803696235228,-86.98044843201296,-86.98062693164952,-86.9808300445936,-86.98092387124639,-86.9811415707763,-86.98137552144162,-86.98180370012942,-86.98192837548946,-86.98201378633594,-86.98215384363323,-86.98270778706814,-86.9827306027516,-86.98280053082746,-86.9830647788982,-86.98338463552007,-86.98369507809041,-86.98447235879397,-86.98453496627982,-86.98470571229571,-86.98482979789379,-86.98498552445747,-86.98501639534825,-86.98517192503297,-86.98542016242045,-86.98563800109034,-86.985668506306,-86.98591724476815,-86.98619748880276,-86.98635291746913,-86.98641452909922,-86.98667882104682,-86.98680320580046,-86.98694341444792,-86.98765843168957,-86.98840359391738,-86.98880812631971,-86.98936702501351,-86.9895847287471,-86.9896161300496,-86.9899578202335,-86.990236473758,-86.99029938221098,-86.99036112877072,-86.99048541613402,-86.9905480263283,-86.9906489727622,-86.99069622541364,-86.99078231547594,-86.99084392825617,-86.99084383053035,-86.99068916858408,-86.99056451641466,-86.99047836059067,-86.99047110118941,-86.99047912805567,-86.99066559750999,-86.99093744992417,-86.99105427889192,-86.9911715408716,-86.99134929097389,-86.99141226748367,-86.99152161211859,-86.99155318744317,-86.99163768640567,-86.99179442194313,-86.99182513148455,-86.99191941728041,-86.99235545532271,-86.99270576775514,-86.99314110351101,-86.99340591510237,-86.99360028345744,-86.99369357027443,-86.99387997619512,-86.99412869578481,-86.994470861389,-86.99540275306889,-86.99571328528957,-86.99602320777612,-86.99614836577946,-86.99626410546405,-86.99647529588697,-86.99666140664448,-86.99677005127924,-86.997266954685,-86.99760882189521,-86.99763969520824,-86.9979513185948,-86.9981370182051,-86.99832275224864,-86.99835421942636,-86.99838559115912,-86.99869629786321,-86.99906815185813,-86.99953328905667,-86.99975143863415,-86.99999872825499,-87.00009299896456,-87.00014731314214,-87.0001975844643,-87.00028286486361,-87.00043068702011,-87.00048562589907,-87.00057832285628,-87.00073352665278,-87.00133179496052,-87.00162702645092,-87.00168981940151,-87.00172048537334,-87.00184497153064,-87.00198468590686,-87.00200019788379,-87.00217104756931,-87.00238901667853,-87.00255118594524,-87.00260582604955,-87.0028398189226,-87.00302544605829,-87.00333648391282,-87.00336732293165,-87.00349147430424,-87.00374010447689,-87.00393435999644,-87.00395727072939,-87.00408218687916,-87.00420574238451,-87.00429958506642,-87.00446253379549,-87.00448624058707,-87.00452530253952,-87.00454818437872,-87.00464842349128,-87.00473407067909,-87.00489781708015,-87.00492072757855,-87.00520027302453,-87.00526224716938,-87.00539455578732,-87.00541826239034,-87.0060078060171,-87.00616302654313,-87.00638166069517,-87.00650471725022,-87.00656789499527,-87.00690905397902,-87.00712721888597,-87.00756136631892,-87.00762374631229,-87.00771702620521,-87.00805883149097,-87.00815201905009,-87.00824600447363,-87.00840015573914,-87.00852502762727,-87.00864943675336,-87.00880432044481,-87.00902237687544,-87.00936422946836,-87.0094561759738,-87.00968960011498,-87.009783107917,-87.00990745705673,-87.00999121226074,-87.01043540625253,-87.01059032740416,-87.01074584112598,-87.01077694497256,-87.01090135786933,-87.01093245925721,-87.01105660560746,-87.01111886665689,-87.01127452503273,-87.01133611253799,-87.0114293964653,-87.0114599096825,-87.01179391201308,-87.01194223491356,-87.01194203089939,-87.01197389987207,-87.01216007791777],"lat":[45.29592561069897,45.29596960591645,45.29602448705671,45.29610163194737,45.29613975870561,45.29618928886176,45.29625531391089,45.2964088888746,45.29654092076527,45.29660694608787,45.29673828766244,45.2967821933944,45.29700226694628,45.29713360778882,45.29724352057822,45.29730940178612,45.29744161757924,45.29769150662029,45.29793567992711,45.29819381244258,45.29845194865097,45.29856175872882,45.29879767200617,45.29900097675424,45.29903943169306,45.29907755348773,45.29911068391564,45.29930870173258,45.29934703313808,45.29935789484912,45.2993577700114,45.29934688916943,45.29934690917492,45.29927551881719,45.29927520562267,45.29908859108588,45.29907749970992,45.29907758134164,45.29906112143881,45.29901153316878,45.2989345816814,45.29883602989609,45.2987039360779,45.2985061040775,45.29842910924235,45.29827535113046,45.29814375337426,45.29798953922587,45.29770437298382,45.29757240021665,45.29713318635765,45.2970229015898,45.29689134766963,45.29671542711613,45.2966279303006,45.29654009535135,45.29634217586169,45.29624853537788,45.29618812600536,45.29610064377962,45.29592489172946,45.29585865696959,45.2957049171772,45.29544105418034,45.29530922845749,45.29526544224677,45.29513339023191,45.29508960584452,45.29495774070868,45.29482597577035,45.29476015848818,45.29462879364711,45.29454060573985,45.29451835884659,45.29414491087302,45.29366182620042,45.29352983677803,45.29350831987504,45.29339788706323,45.29320034869043,45.2930685474595,45.29304646666399,45.29284897348994,45.29280525768142,45.29262915484016,45.29256350442174,45.29214606472386,45.29205787965364,45.29186038586955,45.2917941715744,45.29161888268743,45.29159678104144,45.29146483423596,45.29120117043603,45.29115755180245,45.29110785533179,45.29106948380198,45.29086625009296,45.29081704104556,45.29072924771746,45.29071252024217,45.29069591954477,45.29071795797531,45.29080589478093,45.29086648920582,45.29089366457047,45.29091040041468,45.29090471789743,45.29083886217894,45.29082810656752,45.29081710089902,45.29079492280398,45.29071834959844,45.29063011751567,45.2905918108852,45.29057556205893,45.2905533839422,45.29053124291131,45.29049297631872,45.29047624451103,45.29041606776686,45.29039933890265,45.29033913709205,45.29032243025756,45.2902565926809,45.29023480839753,45.29016896778556,45.29014718421958,45.29008644412069,45.29007027858107,45.29000951593299,45.28999334920015,45.28981743515482,45.28978439095451,45.28954271850597,45.28941106586625,45.2892681297682,45.28909244520595,45.2889386503059,45.28877411733825,45.28868599378002,45.28842247102281,45.28833467468296,45.28827409553086,45.28814166560019,45.28803815037799,45.28802138023333,45.28805495152214,45.28806527690364,45.28806013879452,45.28802730344403,45.28798871903195,45.28795026679957,45.28773074841402,45.28764814005219,45.2876097512134,45.2876045093996,45.28737568512796,45.28732410025187,45.28719803598717,45.28713179772681,45.28711537945356,45.28710985999621,45.28711880866689,45.2871264017842,45.28725832195246,45.287384647434,45.28739015882202,45.28732406829538,45.28730211591473,45.2872307865422,45.28703632383102,45.2870025299738,45.28687386174672,45.28675868026543,45.28663758009505,45.28644553681441,45.28627507219917,45.2862034179223,45.28618173422787,45.28612635275063,45.28607740391822,45.28601705213742,45.28595614237109,45.28591241955901,45.28587932006793,45.28585741368356,45.28585727712021,45.28589572584512,45.28590659843039,45.28593995058766,45.28593946147711,45.28592860136448,45.28591761148638,45.28591233194057,45.28591749782365,45.28597254869139,45.28599973691397,45.28604353146061,45.28610415904554,45.28610440625415,45.28617004033184,45.28620307201519,45.2862248202362,45.2862575573545,45.28642248414084,45.28642272983526,45.28646645729113,45.28648827052181,45.28651013506818,45.28651038253656,45.28655410536228,45.28655435517228,45.28665939094509,45.28672976567715,45.28677386474694,45.28681783596779,45.28682837308898,45.28685607112169,45.28697095119402,45.28702581547424,45.28716893492279,45.28730577780038,45.28733860061806,45.28742072742548,45.2874812728087,45.28750345140459,45.28752533123442,45.28756367993223,45.28757453000303,45.28759641263513,45.28762970365655,45.2876734419992,45.28771733925027,45.28773921861659,45.28773946703873,45.28782131124076,45.2878708614198,45.28787110849435,45.28799127445728,45.28804669027587,45.28807936673084,45.2881123919565,45.28811207359704,45.28813393146157,45.28817777112415,45.28818896335629,45.28819990243536,45.2881998275062,45.2882219510394,45.28823304519926,45.28823797880889,45.28819953706936,45.28812257935198,45.28812264162172,45.28810046571702,45.28806214658031,45.28800715504347,45.28794673318359,45.28790250907348,45.28785854916194,45.28772659525461,45.28755113212907,45.2874412779864,45.28728736650976,45.28702362854908,45.2867270477239,45.28666647487652,45.28650707625872,45.2864685487795,45.28638611259404,45.28628757170424,45.28608949160009,45.28591381943044,45.28576009649511,45.28547411954951,45.28520510954741,45.28516152363791,45.28512267853293,45.28510055039306,45.28510047224575,45.28508948028043,45.28508380323888,45.28497986127329,45.2847871474345,45.28476000520466,45.28474883600086,45.28475969744261,45.28477061396166,45.28480348352049,45.28480934815271,45.28479271096941,45.28477059075834,45.28477609523603,45.28479280072489,45.28483106632475,45.28495723982112,45.28496815630191,45.28495721874481,45.28491332836895,45.28480913149355,45.28478159436528,45.28477601383441,45.28480367268987,45.28482552848764,45.28488558251021,45.28490768767986,45.284940643903,45.28494056849835,45.28496266550199,45.28497344453355,45.28498990378956,45.28508837917374,45.28511049520157,45.28515422495629,45.28516538487763,45.28516530656027,45.28511578668291,45.28511557110575,45.28513783049812,45.28514874925715,45.28514834742439,45.28517068690106,45.28518116711343,45.28519264543781,45.28521425958772,45.28522519817979,45.28524183539744,45.28527446819359,45.28527431015159,45.28530180364712,45.28530156733641,45.28533457877401,45.28535107647628,45.28535099480197,45.28538368091905,45.28540539584945,45.28545479805253,45.28546583915295,45.28553149532508,45.28553197566643,45.28554289352437,45.28558635678571,45.28560456732236,45.28565770676371,45.28565738432741,45.28567981853402,45.28579483319376,45.28581668251926,45.2858331548639,45.28588779372868,45.28602498263872,45.28650264596081,45.28674393088536,45.28680968880768,45.28702937759355,45.28742480112657,45.28753442283802,45.28771027033829,45.28777618194354,45.28817161385408,45.28836931775199,45.28869862208772,45.28883037974904,45.28889662904999,45.28902818431998,45.28913782681189,45.28933592861611,45.28957719309376,45.28964325259592,45.28977514972694,45.28984096817791,45.28986274786445,45.29006029175079,45.29017008401969,45.2902145511764,45.29034571520906,45.29054353136043,45.29067534657869,45.29076325232225,45.29093919156922,45.29109253093853,45.29133954668575,45.2915977806422,45.29166311009696,45.29179499277365,45.29181740041674,45.29195939904507,45.29199274614646,45.29208061704127,45.29222876277498,45.29224495776698,45.29239909500466,45.29250842611117,45.29266199608637,45.29303532335609,45.29323348131039,45.29336496606012,45.2936285867897,45.29376044892916,45.29393583334578,45.29411212462665,45.2943976406502,45.29457338737102,45.2946829093945,45.29501265233153,45.29527614834328,45.29532020820669,45.29562738841489,45.29573726120205,45.29573765114802,45.29575943576647,45.29580329865472,45.29593540148495,45.29624246009936,45.29655020600348,45.29665982596803,45.29681368736082,45.29692351001333,45.29701150049567,45.29709920822592,45.29731876993681,45.29742877898858,45.29769190122961,45.29773604808462,45.2980653989827,45.29817518901205,45.2983071521267,45.29842227103486,45.29853241866211,45.29858710904488,45.29864761770786,45.29866408371411,45.29869110770357,45.29866912421363,45.29866936015735,45.29863606463629,45.29860864368383,45.2985920372405,45.29854244047048,45.29847666606139,45.29830054977161,45.29823457699516,45.29804759312301,45.29795399454011,45.2978773376685,45.29776188613179,45.29760246797412,45.29749791440194,45.2973823487937,45.29738260734641,45.29734954618426,45.2973164145663,45.29726153977209,45.2971899382872,45.29713487389169,45.2971074322904,45.29706321563286,45.29698632792294,45.29666744683217,45.29663950944369,45.29647490836085,45.29640350837619,45.29629894920903,45.29619987564003,45.29609543317321,45.29606269460846,45.29593619850079,45.29589756818397,45.29585344180116,45.29582581333435,45.2957710193373,45.29568848223799,45.29561146178941,45.2954685624906,45.29522680081092,45.29513876174487,45.29443568418864,45.29423822050045,45.29408431509329,45.29401849502061,45.29362262499022,45.2934691463723,45.29329344198513,45.29320516997463,45.29307359628077,45.29289786926967,45.29280963867825,45.29256836898315,45.29232641578585,45.29228252974701,45.29226044481101,45.29217249723781,45.29201890683759,45.29190870179944,45.29177730026161,45.2917551907401,45.29171128723888,45.29168919930927,45.29146968065636,45.29140385931291,45.29138175636268,45.29127205141835,45.2912280108728,45.29114023627746,45.29109618013755,45.29100825340012,45.29098616849878,45.29094226202222,45.29092015662809,45.29085435821599,45.29081027916724,45.29063475281002,45.29059069420166,45.29050294253396,45.29041484564072,45.29017348308091,45.29004166963803,45.2899095321913,45.28955829196121,45.28953618653043,45.28944841318492,45.28933858355784,45.28918463899852,45.28905265059444,45.28881113815638,45.28865778071602,45.28859138050162,45.28856983590088,45.28850345619421,45.28848191159032,45.28793224122531,45.28762523399071,45.28736171069589,45.28716365283635,45.28698780407066,45.28681216673111,45.28654869732897,45.28650465902689,45.28615302726962,45.28599961115102,45.28582352630026,45.28575751131012,45.28560392072305,45.28558183562946,45.28545017736734,45.28542805145277,45.28501060252763,45.28496712568679,45.28474713421754,45.28468116060101,45.2845275489365,45.28446157778573,45.28404389337271,45.28386834888388,45.28373653589315,45.28371499123467,45.28349500156394,45.28340709629984,45.2831216734087,45.28307763506222,45.28301179565043,45.28298968829393,45.28281399098944,45.28255004299877,45.28252847791085,45.28248461097322,45.28246250118965,45.28235262336843,45.28233053826675,45.28222066048085,45.28219855493445,45.28182540985533,45.28149591679509,45.2812983175085,45.28127619152268,45.28110033684442,45.28050710031707,45.28018840161953,45.27997985338485,45.27978185287681,45.27940839914079,45.27903433363142,45.27846340444043,45.27819962749872,45.27802398976807,45.27767238875084,45.27740846679546,45.27729866958754,45.27716709069155,45.27688097958325,45.27677135391527,45.27661733922389,45.27652980206517,45.27635409435023,45.27626581772991,45.27606804112283,45.27595862237984,45.27587075639126,45.27580459232308,45.27578233062597,45.27545297199242,45.27540895343375,45.27532091228987,45.27507923980079,45.27461777424737,45.27442035500046,45.27439825008361,45.27435438309151,45.27409064421776,45.27380489213004,45.27378280644795,45.27373892022823,45.27362944654813,45.27356304609184,45.27354150078656,45.27349763553825,45.2734755288696,45.27328296408827,45.27324451251712,45.27322240644621,45.27304711413249,45.27302502837461,45.27276103095507,45.27254164224134,45.27251951566968,45.27247562993413,45.27208033352264,45.27179459840642,45.27135530221017,45.27124526498837,45.27111371859928,45.27095935554167,45.270849545088,45.27081151950366,45.27075041637678,45.27070681375248,45.27066259806472,45.27053104826823,45.27026729241378,45.27006939090236,45.27004745791092,45.26995956983509,45.26982753697004,45.26980583539921,45.26967395973332,45.26958585751564,45.26947605660121,45.26945412355853,45.26936623394692,45.26930044509994,45.26903681162614,45.26901488172392,45.26890490279607,45.26886086336112,45.26850885211719,45.26848689570284,45.26835534367368,45.26820137787858,45.26800345648013,45.26787211042851,45.26785017496237,45.26767426528314,45.26765233233061,45.26760811718034,45.26745444954783,45.2674324733023,45.26727863494588,45.26703642030491,45.26686074190717,45.26664080882522,45.26642158379011,45.26628968257529,45.26615736367624,45.26606949248585,45.26604755951478,45.26587184534975,45.26569635412497,45.2655640589979,45.26552017253555,45.2654545663529,45.26516883185527,45.26488303926401,45.26482264406393,45.26468571172906,45.2645973984115,45.2642792119135,45.26420251227005,45.26411466181366,45.26404843494164,45.26398264237368,45.263894872641,45.26379575299615,45.26369743202868,45.26353235033338,45.26337857352647,45.26316996436957,45.26307126167199,45.26302737519815,45.26300505515368,45.26296117117371,45.26278571911003,45.26271984470777,45.26270315253117,45.26268699066428,45.26261514667488,45.26259898723227,45.26252772329472,45.26246726747976,45.26238457316256,45.26236843415998,45.26230204965536,45.26218139890984,45.26212121767173,45.26210449310148,45.26201689895628,45.26190663222297,45.26159423197635,45.26153379968577,45.26130307334954,45.26121506732506,45.26085788962918,45.26084175351495,45.26072111767132,45.26065471700534,45.26061100736693,45.260545187906,45.26032533815933,45.26019388021162,45.26011149681382,45.25991928748505,45.25980388278797,45.25971077299508,45.25957899835552,45.25955682897067,45.25944737744166,45.2594034326335,45.25933696930494,45.2593153477875,45.25923295208471,45.25919480894299,45.25902999830561,45.25898572345672,45.25889813465412,45.25881007393675,45.2586197642022,45.25871715454053,45.25871724918823,45.25867848772829,45.25859626597049,45.25848086278381,45.25841530098405,45.25819582462502,45.2579100372998,45.25788810433177,45.25775669611082,45.25773981932373,45.2576739094064,45.25758631050209,45.25746030533613,45.2573392541489,45.25720753645051,45.25711968546905,45.25687282959167,45.25680128473946,45.2566914688575,45.25666953890894,45.25660361518551,45.25649370027848,45.25623030281823,45.25579059007872,45.25569743030361,45.2556755596169,45.25573067191723,45.25569166254931,45.2556920703859,45.25564826229508,45.25561495724202,45.25551625788859,45.25546105135334,45.25545007694071,45.2554555975715,45.25554881423015,45.25556500242998,45.2556141886767,45.25560338514898,45.25565857293395,45.25569665841261,45.25569145697618,45.25565267751315,45.25564141972065,45.25562509588759,45.25552134202186,45.2554716030562,45.25548275433737,45.25543849556608,45.25539503356899,45.25532367553279,45.25527406206712,45.25520822530478,45.25509874833383,45.25503244931814,45.25498838886505,45.25492282989266,45.25481273063405,45.25470290202718,45.25469215437317,45.25469192315943,45.25474690752869,45.25475271452856,45.25470348149428,45.2546265548993,45.254549759465,45.25450568953249,45.25419952658715,45.25414873169308,45.25413221377909,45.2541102807403,45.25406606483793,45.25401129802595,45.25398952878007,45.25395623392887,45.25396152395771,45.25395619717975,45.25397277468089,45.25398891591464,45.25404423286316,45.25408251158204,45.2541262054627,45.2541262358336,45.25411563867038,45.25409879054247,45.25384035256987,45.25382391390983,45.25379638375063,45.2537855121448,45.25372515781149,45.25370299258196,45.25370323898425,45.25369248758912,45.25368119953009,45.25363745813887,45.25352781290309,45.25345063703596,45.25341209291837,45.25336811880839,45.25329100634036,45.25327478225622,45.25319210719225,45.25313140452842,45.25302706119113,45.25289513154734,45.25285636333171,45.25286732972074,45.252921933767,45.25294400201752,45.25294959548674,45.25297707707505,45.2529990615085,45.25302099460989,45.25308680459815,45.25321327733685,45.25331220283121,45.25334513193508,45.25335593199681,45.253405612449,45.25341651185712,45.25342747043435,45.25340008334624,45.25337218893943,45.25328432049253,45.25326238619976,45.25315799991898,45.25307025549724,45.25298781133207,45.25297645896376,45.25293237650826,45.25288866408221,45.25278947614284,45.25272326733987,45.25269034399835,45.25267912580041,45.25267906493075,45.25268997143608,45.25268987417508,45.25270080110771,45.25271184378748,45.25272274300305,45.25273357264516,45.25273348963197,45.25274432147203,45.25274427788698,45.25277695296473,45.25278726732908,45.25281487497064,45.2528256037524,45.25282036164921,45.25283116942582,45.25291854513514,45.25294086175708,45.25296262570628,45.25299503733419,45.25301702208782,45.25306091708168,45.25309406111025,45.25313741804499,45.25313764510164,45.25322500034622,45.25323615489429,45.25333466378009,45.25335698085482,45.25337881466189,45.2533784824438,45.25348789507572,45.25348812666383,45.25353204205371,45.25353170966353,45.25360894624851,45.25361954344916,45.25367413350826,45.25367436248489,45.25371794560813,45.25382770644831,45.25391538508329,45.25414041863866,45.25424442907484,45.25432120144714,45.25440910768764,45.25448002827029,45.25450770975812,45.25450737667509,45.25454071583586,45.25455151906295,45.25457335103108,45.2545841731822,45.25461131063305,45.25467738551234,45.2547213983621,45.25485298362361,45.25489643458352,45.25495687080549,45.25501178164014,45.25509934761437,45.25550007079075,45.25557155975815,45.25561552151768,45.25571424121159,45.25577454966576,45.25580730401273,45.25582407663146,45.25584030991136,45.2558345273686,45.25586655134335,45.25588875443258,45.25599816700045,45.25610737128089,45.25626120822267,45.25638734340743,45.25656844917274,45.25667784173361,45.25696325003707,45.25719349233781,45.25766538209898,45.25786802892429,45.25800534862743,45.25813139814482,45.25818610190672,45.25827378373886,45.25840522166293,45.25852619398967,45.2585478328802,45.25877796989482,45.25883830216874,45.25883853273677,45.25886035954056,45.25886002374347,45.25893689861508,45.25895884233874,45.2590027399285,45.25906813867177,45.25917752113962,45.2592047644992,45.25922659279764,45.25926487845452,45.25925363834756,45.25913259757598,45.25910490320011,45.25909913675267,45.25906599887422,45.25902157043832,45.25891129797846,45.25882321231743,45.25882309772432,45.25882285749167,45.25881184468032,45.2587896747993,45.25877866189979,45.25874488084385,45.25871191653478,45.25871192104646,45.25870088765154,45.25868987995499,45.25867884721587,45.25867839629918,45.25854596074981,45.25850750990755,45.25828736497073,45.25822698205813,45.25806720833265,45.25795174998098,45.25783644567974,45.2577645826219,45.25763242463589,45.2574346902698,45.25725871564828,45.25719260225311,45.25710511931354,45.25690662255964,45.25679704862118,45.25668688999985,45.25642293458974,45.25611538357838,45.25582967588709,45.25558823847157,45.25543414767611,45.25530201129208,45.25528007793207,45.25521428417064,45.25514830270185,45.25503883925474,45.25490668426765,45.25486277705594,45.25453318146885,45.25433552180634,45.25431342802275,45.25407172328669,45.25398394681687,45.25372013046038,45.2534125770193,45.25310503347365,45.25235823216338,45.25222640996299,45.2517103010625,45.2516936243191,45.25161106764463,45.25109475977523,45.25091943144742,45.25058975019254,45.25034822343586,45.25023853670715,45.25000004139041,45.24988726891307,45.24975560775528,45.24960167683211,45.24916178641637,45.24898644266052,45.2488542381865,45.24876668872649,45.2486789347081,45.24854693477062,45.24845859977948,45.2483543733923,45.24817287022772,45.24808497957791,45.24806304607387,45.2479532236559,45.24782162893904,45.24762342926474,45.24742578446232,45.2472283518906,45.24705212530545,45.24681032638179,45.24678839282502,45.24672263557761,45.24670070210696,45.24663434478888,45.24623887640269,45.2461290777709,45.24580429970475,45.24560041804822,45.24543591091389,45.24514977737437,45.24495684898302,45.24462180287742,45.24452795483242,45.24448397221631,45.2442419989367,45.24415988768806,45.24402802556308,45.24398375614891,45.24376436059356,45.24372013617897,45.24369820266504,45.24356612514769,45.24323052582755,45.24290620596893,45.24261478808669,45.24256484507686,45.2425150851077,45.24244916787113,45.24229546488985,45.2421633526336,45.24199254917011,45.24189910057484,45.24183844067419,45.24176706236074,45.24172849783464,45.24142053509666,45.24118409096047,45.24091445318889,45.24088706178946,45.24078251507113,45.24072777180763,45.24057397474815,45.24055752080469,45.24048606128121,45.2403759918751,45.24035951843032,45.2400904388026,45.24002461670823,45.23998058628912,45.23973865723019,45.23971710543917,45.23956331135236,45.23954683428313,45.23949732956595,45.2394532631609,45.23914511054657,45.23888170753207,45.23864037850738,45.2385739767085,45.23837637360848,45.23820050360698,45.23804693289379,45.23787094359454,45.23758502696771,45.23738726420065,45.23737076941565,45.23734319526752,45.23732674300886,45.23692545763086,45.2368378853583,45.23677194392578,45.23674999019735,45.23657438387318,45.23580457016453,45.23543071566124,45.23534275920633,45.23512352524234,45.23503524705463,45.23483774584868,45.23455178715805,45.2341344111674,45.23402474260818,45.23391469189598,45.23360728219543,45.23329920892007,45.23323880712049,45.23312367795157,45.23301377186047,45.23248652123729,45.23237623197546,45.23222267830585,45.23182735270781,45.23160741231545,45.23105774952247,45.23096999485973,45.230816320663,45.2306180756725,45.23053054417571,45.23044226750022,45.23026653852118,45.2300248460166,45.22980498783349,45.2297830164885,45.22969532180133,45.22938724849257,45.22904062538272,45.22881554987674,45.22877150230823,45.22863975812882,45.22839762658867,45.22831535034535,45.22825466253398,45.22820499720326,45.22780918558729,45.2276989946804,45.22758372516103,45.22750145004057,45.22734221539508,45.2271661640919,45.22688016341049,45.22685820965329,45.22668243304565,45.22659431858123,45.22655065245251,45.22644060119009,45.22639637534083,45.22624281519444,45.22613260597301,45.22605018837933,45.22592376109186,45.22586881741423,45.2257810213349,45.22567113285051,45.22561624738037,45.22561423583371,45.22546748438626,45.22541850108203,45.22533052320877,45.22526418182204,45.22506627295324,45.22500031103165,45.22489629981447,45.22482465999788,45.22480254568182,45.22440691459079,45.22425881329992,45.2240555720409,45.22394517861879,45.22385762461182,45.22381341412688,45.22366491544932,45.2233956492903,45.22313234690213,45.22302265560297,45.22282440395649,45.22273628888113,45.22264851393167,45.22245081192417,45.22203377580461,45.22187967986603,45.22166058870592,45.22152901217021,45.22128752284772,45.2211338680894,45.22106786639971,45.22095777729868,45.22065555939788,45.22051805781569,45.22032071557696,45.22018869268761,45.21999108703586,45.21994685777705,45.21982087245218,45.21961706672012,45.21944153741603,45.2192001076662,45.21913370550939,45.2190243585794,45.21871676342096,45.21862858988723,45.21847531314977,45.21836504603505,45.2183429298475,45.21823320413188,45.21810159711234,45.21805738964368,45.21790385129301,45.21774977163996,45.21770588660151,45.21768355193076,45.21762326765504,45.21753033783718,45.21735659931596,45.2172446397053,45.21715668465912,45.21713459098778,45.21706875274158,45.21703031845483,45.21698081466261,45.21695923934143,45.21691481348387,45.21684893323717,45.216783433731,45.21656359587906,45.21641016156909,45.21625616434083,45.21614623646016,45.21599225988641,45.21588287283211,45.21577260197699,45.21548720306602,45.21504758681243,45.21498194472314,45.21489384558585,45.21478432026108,45.21443259894356,45.21430089909165,45.21419078814839,45.21355388815417,45.2134876866286,45.21315854201638,45.21285088995167,45.21247727400105,45.21232365776905,45.21194994102257,45.21177443183827,45.21172998344885,45.21170845058076,45.21164240636237,45.21146651888109,45.21142820842758,45.21139018475158,45.21136805050309,45.21122500917827,45.2111811416496,45.21111527740835,45.21100531453175,45.21093981491551,45.21069800141046,45.21058829255302,45.21041803884395,45.21030233328855,45.21008285459133,45.20990688723799,45.20973115424414,45.20962166641873,45.20957741891336,45.20955548205661,45.20946776808722,45.20942929882844,45.20939637030904,45.2093685579265,45.20933574975273,45.20929218136824,45.20909427719074,45.20900662574834,45.20898469257851,45.20894058394955,45.20861133923938,45.20847941796806,45.20841372012658,45.20815003589237,45.20810611007309,45.20801829612861,45.20799633930131,45.20786498047899,45.20771134452263,45.20762300912586,45.2075355967864,45.20738147886449,45.20733755170281,45.20718403759415,45.20714033173815,45.20678915300186,45.20665707253151,45.20645934707431,45.20626178485301,45.2061957629797,45.20610814864357,45.2060917933181,45.20604796789051,45.20602599378334,45.2058452293852,45.20566955705095,45.20560329744495,45.20553771498669,45.20547169524205,45.20516414174482,45.20494430029006,45.20481282226137,45.20470288941169,45.20439547755623,45.20417547657922,45.2039555399671,45.20386776481574,45.20358264786732,45.20338442309506,45.20329666589426,45.20318663445766,45.20309874165211,45.20307678783097,45.20298889012922,45.20296695874076,45.20290119696678,45.20285712661722,45.20278012829074,45.2027691100743,45.20276895246322,45.20279088393413,45.20281257428618,45.20288880806874,45.20292165589471,45.20280395965479,45.20274058895856,45.20268540370992,45.20265837479267,45.20264781892079,45.20260359451978,45.2026039327783,45.20256008769169,45.20250012582055,45.2024562013428,45.20241754883396,45.20225253474156,45.20223098221641,45.20209898012274,45.20207688249413,45.20179130557096,45.20163740824866,45.20159334013741,45.20150568478443,45.20135154647831,45.20128592655661,45.20120310881799,45.20112616461123,45.20107099988789,45.20105470319169,45.20098884280037,45.20097754756404,45.20097800885869,45.20095075809162,45.20092842312257,45.20079132461053,45.20061539155269,45.2005769617011,45.20048356905201,45.20041758808339,45.20028612530259,45.2001542820809,45.19969228444927,45.19949484423044,45.19923131761036,45.19890124707626,45.19872605874277,45.19852817657975,45.19848390668619,45.19841806586411,45.19822056203752,45.19806656497889,45.19793472238042,45.19745163680044,45.19718800950923,45.19703423372327,45.19701209814869,45.19699574288276,45.19696809212514,45.19694611757766,45.19681477834285,45.19650696270901,45.19637531991049,45.19613374923637,45.19608948133725,45.19582597278401,45.1956502258605,45.19545272220232,45.19525435462194,45.19516657702212,45.19503485669279,45.19492526891048,45.19466174255237,45.19461747564658,45.19435416762769,45.19402433915857,45.19376055203286,45.19373843426309,45.19360681523261,45.1933868156355,45.19329920015642,45.1931675549317,45.19310133236625,45.19268425506563,45.19239827015737,45.19231053565149,45.1922003462725,45.19210124894725,45.19202992582867,45.19201905121195,45.19198602046171,45.19198054273058,45.19199190022099,45.19201373585246,45.19207992171843,45.19209073883933,45.19208580406951,45.19206926509181,45.19201968128406,45.1919262866198,45.191816580703,45.19170668939317,45.19155277100965,45.19146505320693,45.19131079407037,45.19122295963147,45.19112366492016,45.1910742761035,45.19097502128177,45.19090364015457,45.19081578273135,45.19061786999351,45.19049651985495,45.19038636586592,45.19025437694476,45.19018289099533,45.1901661149255,45.19015482969581,45.19010009944959,45.19005034882226,45.18992921547549,45.18986304545613,45.18982971217478,45.18980787443311,45.18970857019917,45.18964795151683,45.18963642187314,45.18964735629289,45.18964723355055,45.18966891892806,45.18973988607112,45.18989362423716,45.19018183041308,45.19032716852081,45.19037123663863,45.19057420697914,45.19063941844839,45.19065584580336,45.19065560120801,45.19063398112614,45.19063842995791,45.1906465271341,45.19069566152674,45.19077266987374,45.190822415507,45.1909048628355,45.19095976051182,45.19102015186797,45.19110247201495,45.19119019897363,45.19122854312789,45.19127295928138,45.19138273819646,45.19140456480805,45.19143738372172,45.19143779716615,45.19145948103496,45.19147050819774,45.19147078231799,45.19145983701546,45.19145942440767,45.19149242079605,45.19153097865473,45.19157497508244,45.19167378965481,45.19176185658426,45.19183862668027,45.19197045262727,45.19204722377235,45.19213512603826,45.19214602046657,45.19224499634271,45.1923329336094,45.19238816884253,45.1926680581734,45.19275588321542,45.19275610258011,45.19277790892093,45.19277812522557,45.19279993140964,45.19283837808245,45.19284408698838,45.19289351525242,45.19289858579559,45.19287700521672,45.19279466008969,45.19271764217366,45.19266818610816,45.19260219387083,45.1925805452408,45.19242634503614,45.19227285621198,45.19225623073081,45.19198724848192,45.19197644240896,45.19184457933135,45.19182268757301,45.19156965353622,45.19153136034155,45.19145992149296,45.19142702791565,45.19142724245096,45.19136145857691,45.19124567431513,45.19120769401913,45.191202190147,45.19119101398613,45.19117998697965,45.19116924087992,45.19117437872771,45.19121305805716,45.19128434341981,45.191301071175,45.19133933624525,45.19147091162252,45.191498604956,45.19154807613182,45.191613965756,45.19163027990739,45.19164665854758,45.19163038780562,45.19161409179997,45.19157006088161,45.19148210451931,45.19136120195167,45.19133926119693,45.1913338570842,45.19133913080394,45.1913829659341,45.19142685808836,45.19145980632624,45.19151489511997,45.19169599985416,45.19176213828712,45.19186109669333,45.19206979234649,45.19212992056419,45.19216284422089,45.19221782143816,45.19223956605369,45.19222856628875,45.19220120357191,45.192168481382,45.19198174094962,45.19186080839768,45.19174528458615,45.19159187314461,45.19150399394433,45.19126221153527,45.19110817784311,45.19097658952402,45.19062525239897,45.19049292843818,45.19040517992114,45.19011992513187,45.18998814262773,45.18996564761498,45.18970246336431,45.18952679430806,45.18936745556228,45.18929605437528,45.18928501103238,45.18930672885222,45.1892959007645,45.18924658975165,45.1891972541279,45.18919159812074,45.18919712934301,45.18914067136111,45.1887908890895,45.18865868663504,45.18855988245661,45.1885490655805,45.18858219194777,45.1885875456116,45.18854875934036,45.1884776978495,45.18845030872257,45.18843901727089,45.18848848337293,45.18849970431873,45.18849949520109,45.18847780012077,45.18843932473298,45.18832945042303,45.18808777515979,45.18786800360773,45.18767017489353,45.18748356838314,45.18739560833147,45.18710982154147,45.18705486207411,45.18698901989971,45.18685721141078,45.18665980327816,45.18654451651106,45.18651700556889,45.18651160999948,45.18649476324725,45.18648408202676,45.18646196115731,45.18637382502474,45.18636329476005,45.18635219392006,45.18635760428565,45.18639622132753,45.18639614712802,45.18631899063493,45.18629703415679,45.18619808205298,45.18616520576229,45.18604462244959,45.18602794231028,45.18598390510797,45.18595093918933,45.18584707966949,45.18561072474999,45.18549540590313,45.18539661117092,45.18539626567297,45.18534163646043,45.18534128666163,45.18529768426574,45.18529733321007,45.18523186932322,45.18520963985978,45.18518756782624,45.18518778059634,45.18512196582878,45.18506689985765,45.18494608388649,45.18493491546422,45.18491284530592,45.18490200959234,45.18490194311118,45.18491269179574,45.18494560496541,45.18494581303614,45.18500094715674,45.18506089610339,45.18511045098411,45.18512678560521,45.18517077718391,45.1852206518016,45.1852315441095,45.18530806813426,45.18535215782428,45.18541802735452,45.18554979105635,45.1857969767312,45.18587925744077,45.18599476307637,45.18614269007686,45.18631860561321,45.18644470645521,45.18653256844572,45.18668075834751,45.18677996299212,45.18682390282741,45.18692265323333,45.18696068797834,45.18698263828553,45.18697727342572,45.18696060288514,45.18687835631614,45.18677916632667,45.18670266014082,45.18670230686592,45.18638376733681,45.18629583742511,45.18625166054741,45.18625187084476,45.18619686476725,45.18607623730163,45.1860431523091,45.18596585173734,45.18584509890599,45.18574627781913,45.18572438814872,45.18553721053254,45.18549340820335,45.18533970927427,45.18518596612011,45.18504265452052,45.18502098917143,45.18493263216867,45.1848011463566,45.18460895124394,45.18437802091113,45.18431735572156,45.18426262225023,45.18415842108836,45.18409774616192,45.18398762508111,45.18393310475081,45.18367999300791,45.18354809398812,45.18330638444538,45.18310903376848,45.18293305923043,45.18275706435226,45.1827353153232,45.18260316474465,45.18225183527279,45.18198817876878,45.18190044077644,45.18187848661388,45.18183424217374,45.18181230771373,45.1816368322106,45.18137307782867,45.18130690003733,45.18128517358667,45.1811533967803,45.18108762577373,45.18102129970431,45.18088934451804,45.1808290225087,45.18068085036228,45.18052719230576,45.18046102170891,45.18043909028427,45.18037328545135,45.18032923002283,45.18017550041874,45.17993373634935,45.17980220374255,45.17973584867821,45.17951633403283,45.17942841699601,45.17916465927693,45.17912060191932,45.17903267537152,45.17901074095709,45.1788570298569,45.17883509301229,45.17876929299989,45.17874735847626,45.17861537504815,45.17859344056561,45.17841777390312,45.17839581971519,45.17835159284761,45.17832963870189,45.17815416463058,45.17813223010109,45.17791253557827,45.17756085858865,45.17742908224706,45.17731902956483,45.17729709513208,45.17703330047966,45.17692381240747,45.17681395121564,45.17674796100087,45.17670369380326,45.17668176172943,45.17657192018011,45.1764843497868,45.17644010408674,45.17641816964608,45.1760008529645,45.17580328654965,45.17562730443442,45.17553902865502,45.17548977447662,45.17541843764977,45.175319700123,45.17525334471339,45.17518755645082,45.17499011615905,45.17491850161404,45.17487434082292,45.17486899934897,45.1748523533075,45.17482501344827,45.17475922670718,45.17467128188701,45.17449540655596,45.17418758373734,45.17399002505981,45.17372631155288,45.17342435171486,45.17330347597529,45.17329264763713,45.17328670127126,45.17326438885425,45.17321547095072,45.17318772033796,45.17317663110451,45.1731600765992,45.17315527310874,45.17313876375708,45.17312225210912,45.17306711278199,45.17301798219332,45.17300146301693,45.17297945433885,45.17298502107944,45.17297918040058,45.17296282575925,45.17285867346841,45.17264442589222,45.17257875385202,45.17250198405299,45.17243027646698,45.17233175979721,45.17202408599942,45.17189221417797,45.17169474635122,45.1715846582903,45.17145859439992,45.17135411094771,45.17115623349639,45.17104670928698,45.170870612061,45.17065101894056,45.17054132547749,45.17032171560646,45.16987102297895,45.16939878401982,45.16925625967128,45.16908028503759,45.1689266645379,45.16888259337946,45.16868510462468,45.16837720829046,45.16821254023636,45.16805907342818,45.16794891464378,45.16785042306866,45.16766382741945,45.1674221054048,45.16737782313405,45.16712564894621,45.16699339767133,45.16692776445699,45.16680717572625,45.1667848574351,45.16641145165114,45.16624113457831,45.16614772171624,45.16612576756435,45.16601622254387,45.16589518211848,45.16583496074343,45.16571959364562,45.1654230613494,45.16509356073703,45.16480797749913,45.16465402683867,45.16431398284981,45.16405024284397,45.16390711436519,45.16378632442554,45.16361094913664,45.16350067623834,45.163413142896,45.1632882411002,45.16324817059856,45.16323719374962,45.16322066662265,45.16316024822447,45.16300680556304,45.16272102635877,45.16252338623475,45.16239160984326,45.16213326624685,45.16211660416306,45.16211665801472,45.16216061251034,45.16217142843961,45.16214949039757,45.16210546046956,45.16208352589793,45.1620398434513,45.16199031725422,45.16195165394483,45.16187490123636,45.16186962225277,45.16190821957255,45.16195226899875,45.16200677857248,45.16199628461536,45.16195779284168,45.161853259448,45.16156694932958,45.16120550744731,45.16116145140207,45.16100748530707,45.16085409185373,45.16064531824972,45.16060126224904,45.16051334086726,45.16028793370545,45.16024386590033,45.16022234458534,45.16018334856145,45.16018376135849,45.16021642862474,45.16021647945365,45.16020563215147,45.16019422674842,45.16017266655798,45.16009558506376,45.16006274998312,45.16005692470807,45.16007396095485,45.1600847570727,45.1600846854228,45.16007380132176,45.16001919933116,45.15996932813059,45.1599528230773,45.15994197568944,45.15987603650423,45.15986514553993,45.15986544101283,45.15984871963597,45.15983765142489,45.15979920216479,45.15978270253536,45.15977201506242,45.15976082872456,45.1597333811381,45.15975535230015,45.15977711692761,45.1599091564706,45.15993112814773,45.15993062060418,45.1599143243325,45.15989781915425,45.15967838775919,45.15964539001021,45.1595906006268,45.15957915570892,45.15957930872469,45.15958472188576,45.15962895077694,45.1596343608721,45.1596564431102,45.15961270384187,45.15956842202142,45.15923969178441,45.15920637358023,45.15919517708229,45.15921695091505,45.15923927903631,45.15933810614546,45.15935449751869,45.15933799173991,45.15911491233581,45.15914037866524,45.15913506242305,45.15910730234226,45.15893142248782,45.15880500864041,45.15864593158606,45.15860206008601,45.15856903770764,45.15841545652377,45.15832752155159,45.15828911944295,45.15825615788006,45.15822882011724,45.15818477194794,45.15815700198196,45.15812435364072,45.15810237254045,45.15804719926898,45.15799822297781,45.15793220282455,45.15758080485141,45.15725080480769,45.15700929823207,45.15688298890306,45.15673489030671,45.15661943576291,45.15652065727436,45.15646016382566,45.15635025492837,45.15626259971682,45.15613055819672,45.15603716241461,45.15593855180522,45.15580109068365,45.15572993045935,45.15565862894246,45.15561453527342,45.15548262246069,45.15520259249919,45.15517512017792,45.15515317643211,45.15514762744449,45.15518076289235,45.1555323129003,45.15558739034024,45.15555963536371,45.15549945025843,45.15541691813079,45.15541170251875,45.15538963874393,45.15527970954373,45.15516457466669,45.15504372633376,45.1548900545797,45.15480216179188,45.15473612432503,45.15469235019778,45.15462654662966,45.15457138827863,45.15450563119344,45.1544395835098,45.15424207350322,45.15394555838117,45.15376974379135,45.15359385232761,45.15346207693833,45.15330825489578,45.15308869886693,45.1529568474261,45.1528907716038,45.15270942809726,45.15249523398556,45.1524073634406,45.15231943850579,45.15227537816175,45.15219300874467,45.15213799679407,45.15213249223596,45.15215995237707,45.15214910568168,45.15213271257826,45.1520005933976,45.15195674626563,45.15186891806299,45.15184678918358,45.15175884485698,45.15167102576289,45.15159975885476,45.15153915626643,45.15144983116256,45.15133580183783,45.15113261725316,45.15106656755088,45.15100612467187,45.15087983834084,45.15070388235126,45.15048961450407,45.15040195723112,45.15035790210519,45.15030830418516,45.15023149047174,45.14996760274018,45.14993456217152,45.14972576585288,45.14972568959814,45.14957185518608,45.14954989842541,45.14952780734822,45.14949492491724,45.14945064792868,45.14945083346161,45.14934093569574,45.14934085663668,45.14930792058578,45.14925302401119,45.14924189459099,45.14913189614956,45.14910993647567,45.1490660365448,45.14901091431393,45.14896673519073,45.14895568484076,45.14895035639932,45.14886975305237,45.14879638658805,45.14878537636251,45.14877407969332,45.14879030296319,45.14881248822576,45.14885624877777,45.14892213830502,45.14902613458901,45.14907564527785,45.14914146709544,45.14920706975781,45.14923999768924,45.14928394106902,45.14933342704087,45.14939925828087,45.14941577934751,45.14941590360318,45.14931691984754,45.14929500465772,45.14930571961628,45.14933489901234,45.14941563201346,45.14940457970821,45.14942655648397,45.14956928376183,45.14959201700518,45.14965541987191,45.14972372674754,45.14976264444955,45.14987015585503,45.1499907198518,45.15003612230219,45.14997540777782,45.14997544142145,45.14984895746947,45.14982142564303,45.14980484497616,45.14982132779918,45.14991467466578,45.14999681959868,45.15004072084928,45.15006269474944,45.15012876590112,45.15028236777088,45.15028237174262,45.15012873867376,45.15010652990173,45.15009575368798,45.15009005852479,45.15009552036784,45.15010660059141,45.1501395775437,45.15028775867203,45.1504687895801,45.15055661634972,45.15090792541393,45.15101769753691,45.15110549695218,45.15132527235161,45.15145701183226,45.15150079894993,45.15174781393391,45.15198397677035,45.15209382982397,45.15222545500133,45.15251076129026,45.15259883930585,45.15273035672855,45.15275249651588,45.15314770090325,45.15332342649483,45.15358692963454,45.15367463407382,45.153828368292,45.15428960570902,45.15437748579691,45.15442120199418,45.15464106732055,45.15475080434025,45.15508002753484,45.1552119954174,45.15523393026643,45.15532173676836,45.15549739719917,45.15595876418589,45.15624423251811,45.15646404159816,45.15663970976886,45.15670567417314,45.15699096656935,45.15738626407539,45.15753992582062,45.1576713859543,45.15789109342769,45.15806706910726,45.15813309151137,45.158220688609,45.15826438489199,45.15844016008495,45.15857220714013,45.15874758289745,45.15887981614631,45.15918717600425,45.15934061151395,45.15973614334347,45.15991207457913,45.16024121366376,45.16063691817116,45.16107614796501,45.16142745297063,45.16169134524959,45.16175719774608,45.16186691676202,45.16191100898372,45.1619329437382,45.16202055759671,45.16204249237261,45.1623501471899,45.16246009505394,45.1625036036427,45.16279499266253,45.16286589094272,45.16307473218499,45.16324475663777,45.16332171303715,45.16338179015751,45.16343662946549,45.16345879612535,45.16349140498785,45.16352450493142,45.16354629647588,45.16356790367934,45.16365556423819,45.16365576652318,45.16368843241332,45.16373238875727,45.16385325627251,45.16393010035478,45.16392996908905,45.16395180581074,45.16395106223536,45.16392905934833,45.16389593237733,45.1638959598388,45.16387389638369,45.16387390846629,45.16386286698005,45.16382977340152,45.16381878693112,45.16380772929456,45.16380756193072,45.16379652267128,45.16379691740701,45.16369767532374,45.16369731008845,45.1636647125904,45.16365350404416,45.16363140377297,45.16358738852556,45.16358724186067,45.16357615842435,45.16356515054013,45.16353238233704,45.16351034074459,45.16351037262124,45.16349931279991,45.1634879184105,45.16347687675794,45.16347700680879,45.16348789926774,45.16348740745102,45.16349869423554,45.16349840463963,45.16348716068062,45.16349826741053,45.1634982792462,45.16350917147137,45.16350939747561,45.16352027266369,45.16354209635782,45.16362945143602,45.16364037502429,45.16367360319632,45.16369537190806,45.16369500678135,45.16377182317112,45.16380502792442,45.16381575202564,45.16395826017614,45.16409543684617,45.16417779766007,45.16430913090617,45.16441885591129,45.16450702392735,45.16474320978536,45.16486364784587,45.16491335669707,45.1649129921421,45.16497906673038,45.16514335491163,45.16527464079284,45.16539495975452,45.16543908542048,45.16548300753784,45.16551564240969,45.16563636651051,45.16565813107206,45.16565832421671,45.16569099869096,45.16569117231925,45.165822592606,45.16586633291384,45.16587725306305,45.16586619068217,45.1658437622915,45.16579976239328,45.16576678782602,45.16570062056446,45.16567890226147,45.16565679565927,45.16560190425141,45.16555773688151,45.16556826131178,45.16559023593906,45.16558990961884,45.16554046427585,45.165468715387,45.16544660763837,45.16544679963446,45.16541382176668,45.16540260322135,45.16534749360545,45.16532577234435,45.16527068454829,45.16527031357477,45.16524872945264,45.16522644738614,45.16520433793129,45.16513856722478,45.16512698375222,45.16512736856604,45.16516007496983,45.16522578070072,45.16535713236485,45.16545585303906,45.1654554814266,45.16548830652296,45.16555419952367,45.16556492938991,45.16555950338213,45.16548793447402,45.16541632621933,45.16538896419556,45.16531154331137,45.16514655598514,45.16505861653808,45.16495945556709,45.16481679039599,45.16478921133562,45.16477254301382,45.16477239504022,45.16480544176477,45.16481618261098,45.16482667817228,45.16482688750281,45.1648758654194,45.16500795959507,45.16534258828028,45.16562752673423,45.16580328611903,45.16600078407173,45.16606679838113,45.16624236447993,45.16635191617539,45.16643968907886,45.16668162280232,45.16670357724438,45.16676941748677,45.16683524151002,45.1670546668871,45.16723582511953,45.16734011406833,45.16758219776226,45.16785655241089,45.16799419666872,45.16816990179117,45.16827473949387,45.16835704174321,45.16846692221153,45.16853310265881,45.16858240664667,45.16859348062081,45.16862082868692,45.16865943431245,45.16874755610588,45.16874773414487,45.16875877891197,45.16875295590104,45.16875877171239,45.16880261538399,45.16886317291785,45.16897306375343,45.16902800433412,45.16904451604483,45.16904450147749,45.16906699848553,45.16908893367111,45.16921533711788,45.16927533250585,45.16929201789714,45.16939657466082,45.16936819331335,45.16953898592503,45.16962730740777,45.16975915448715,45.16980302772637,45.17004456765472,45.17052822515986,45.17081382857234,45.17092916180744,45.17125305487946,45.17151690023729,45.17160466163493,45.17206597008976,45.17215427295832,45.17232998535198,45.17243970167984,45.17270319554961,45.17287892578493,45.17307659237539,45.17327464420663,45.1736478504002,45.1738233854762,45.1739333106506,45.17402145250488,45.17406515103123,45.17439432023281,45.17461939909979,45.17472931845829,45.17476233462268,45.17493192684223,45.17493211707664,45.17495389522887,45.17497603435867,45.17500326446607,45.17500313597745,45.17498610592882,45.17494226088781,45.17491450372812,45.17482678655237,45.17474430406621,45.17466723067346,45.17460143772243,45.17444747688991,45.17438652935279,45.17429315504572,45.17408412984623,45.17395758514375,45.17392459672926,45.17391335334284,45.17383630531383,45.17375398870131,45.17369288948574,45.17368239856218,45.17367115661722,45.17367082325321,45.17360411817777,45.17351023470619,45.17344951753258,45.17335612561294,45.17328979377068,45.17324028363063,45.1731139093961,45.1728716539391,45.17284430536503,45.17272842529734,45.17265679829328,45.1725191416526,45.17221142932007,45.17210155472065,45.17183751597823,45.1712548423579,45.17110088418619,45.17105702243757,45.17094655050565,45.17068270513288,45.1705071875794,45.17034215339883,45.16985833688129,45.16922031887908,45.16903316806239,45.16886814373412,45.1686706687251,45.16829689911692,45.1680106975228,45.16770313086275,45.16750510582781,45.16748315132515,45.16741733556923,45.16721930575937,45.16680219911563,45.16669231120363,45.16657696660249,45.16650549379018,45.16642859437086,45.16634085566362,45.16622549147378,45.16611055004767,45.16591361127136,45.16573807489733,45.16569399729696,45.1656720641643,45.16560640017942,45.16552970519244,45.16553007557326,45.165299944001,45.16521214425067,45.16515703039381,45.16499272850437,45.16471290994144,45.16446849148615,45.16442202315187,45.16434492889805,45.16382901050581,45.16362026114254,45.16346667584045,45.16333502078295,45.16289542073844,45.16285117907023,45.16276360860225,45.16269719312732,45.16267525790487,45.16245566712649,45.16238963951543,45.16225801383955,45.16214791453985,45.16197181995401,45.16188948714619,45.16155381664992,45.1614549872894,45.16119092325887,45.16113054382078,45.16104839521937,45.16100976658575,45.16049272742529,45.16036051886361,45.16027218500491,45.16020054575333,45.16009045854204,45.15995861238951,45.1596508588182,45.15940910542466,45.15923356777498,45.15892563845608,45.15879418014642,45.15853019730557,45.15833808398343,45.15777787650609,45.15749796560856,45.15738272695966,45.15732205033824,45.15730011497967,45.15720128386653,45.15711361901629,45.15681729276879,45.15679507329107,45.15666341958191,45.15654265167335,45.15620205107603,45.1560482040757,45.15587247552411,45.15582847012256,45.155806535431,45.15571858781498,45.15567478622683,45.15552091206917,45.15516907634326,45.15477298719488,45.15468521023074,45.15464114879705,45.15460261110653,45.15456424346628,45.15454221636546,45.15441036813607,45.15427823175509,45.15410259811564,45.15405853135066,45.15397056164359,45.15394862866309,45.15383880671759,45.15375077292863,45.1537288376005,45.15368483464489,45.15357504732948,45.15339922351546,45.15326728483226,45.15322359949081,45.15311359429796,45.15282779195378,45.15276193657982,45.15267408503524,45.15263009879365,45.15260814418811,45.15254204981308,45.15252011445394,45.15245427766568,45.15241020646715,45.15181679728991,45.15164106782737,45.1514871944087,45.15137701773788,45.15120129213305,45.15117935439174,45.1510473163957,45.15089351430986,45.15084944714604,45.15073964230245,45.15069585622874,45.1505417673506,45.1504101074979,45.15032205599157,45.15023409882995,45.15001431828176,45.14977264031304,45.14955858793239,45.14933342125877,45.14902575858545,45.14891595788252,45.14875140955731,45.14860305833552,45.14853158106916,45.14850955221982,45.14837782161798,45.14790568785624,45.1478068485572,45.14772460746362,45.14770792678809,45.14764216891314,45.1474005419193,45.14711502138915,45.14707093493271,45.14674141275407,45.14652170565835,45.14646677285898,45.14620860083315,45.14591764692204,45.14550029124845,45.14506096018138,45.14479728244534,45.14422602340367,45.1440064810599,45.14382513838176,45.14341875357783,45.14340233850934,45.14326506058813,45.14321562340301,45.14311136447085,45.1430949432746,45.14287534713539,45.14258982583148,45.14252922162925,45.14244709148237,45.14217242855405,45.14196942718716,45.14195272726323,45.14179359671368,45.14177717851904,45.14171671233699,45.14170031019892,45.14144214544989,45.14142574338987,45.14135991799771,45.14132692110753,45.14124448348884,45.14122808444043,45.1409425463791,45.14092041458335,45.14074469409148,45.14072284155428,45.1404590449247,45.14037681801248,45.14036039985668,45.14032186597411,45.14030547000792,45.14000868351322,45.13970681532392,45.13963557135106,45.13940488476317,45.13936663320258,45.13934993383231,45.13926770622471,45.13925128982049,45.13907557048553,45.13892167207315,45.1388339099784,45.13876781270612,45.13866371291847,45.13860859982866,45.13849915160394,45.13845527636089,45.13827964935984,45.1382412330168,45.13820830558962,45.13815917629424,45.13811520616379,45.13803313907077,45.13792342939583,45.13782470967938,45.13759937737743,45.13748974955178,45.13744567745846,45.13740733631873,45.13734722919107,45.13729235414145,45.13723187265734,45.13707811662488,45.13696820117562,45.13693538442281,45.13692433145575,45.136968011907,45.13696801239319,45.13694035086334,45.13687995710877,45.1367812074992,45.13674276994015,45.13671530956389,45.13669336788373,45.13670441978292,45.13672654258966,45.13675402936973,45.13675393193244,45.13673219024275,45.13664452057454,45.13656210276673,45.1363535328388,45.13629858496603,45.13621092310265,45.13614509765728,45.13605713394178,45.1359251833859,45.1356615170959,45.13555142715542,45.13548532324341,45.13546344940379,45.13539734533451,45.13530956227672,45.13511171817234,45.13504570449637,45.13479863405829,45.13468804454401,45.13459444886182,45.13451737511798,45.13447358049357,45.13435259057568,45.13430861690414,45.13426464631133,45.13423698043574,45.13412135002714,45.13404979231338,45.1340057186906,45.13397822112715,45.13380592871256,45.13379144080931,45.13390687706167,45.1339399959278,45.13397843752587,45.13404481588356,45.13407784966739,45.13409988065971,45.13409978663562,45.13403414941249,45.13401212467537,45.13404532153373,45.13404513147929,45.133924655417,45.13391388462166,45.13381522740656,45.13381531823926,45.13370562198801,45.13368405048513,45.1336840498708,45.13369514300501,45.13373377061237,45.13372843204525,45.13371182529605,45.13373403980363,45.13386025402712,45.1338822085775,45.13390444041164,45.1339755971576,45.13404049659651,45.13383860819393,45.13382771455592,45.13383870254301,45.13386073370797,45.13396519086515,45.13402005631482,45.13404762472212,45.13410267744412,45.13414674412118,45.13423450494942,45.13434432530684,45.13438839196625,45.13456402416998,45.13474003560634,45.13480584175166,45.1349650985602,45.13503100217738,45.135064104881,45.13509167414664,45.1351302981471,45.13513593967281,45.13517437639584,45.13527357724191,45.13530641450215,45.13533395694048,45.13532309302416,45.13529573296544,45.1352405892978,45.1351800926397,45.13506456238247,45.1350260348817,45.13499302804459,45.1349929350246,45.13496002536026,45.13493244234756,45.1348720661772,45.13485001964256,45.13481700244149,45.1347733084216,45.13475118924428,45.13471477745587,45.13415773345321,45.13404781174463,45.13398208654394,45.13385567565397,45.13380615649218,45.13374549071929,45.13369598242882,45.13369596232666,45.13373977605072,45.13375607558504,45.13374520294072,45.13366276172322,45.13361860531273,45.13355287911689,45.13347599116637,45.13338814237872,45.13324005650644,45.13311386205247,45.13300404409647,45.13293258531876,45.13285016776275,45.13281735101877,45.13279558545117,45.13277918179699,45.13278462306138,45.1328178069005,45.13286714384481,45.13291672836535,45.13293305124295,45.13296064470167,45.13296073322559,45.13286225421942,45.13285682595744,45.13286234965695,45.13292828467556,45.13292847068261,45.13290410909175,45.13265944217364,45.13250317203838,45.132356607723,45.13251850741418,45.13239466619422,45.13254419241581,45.13257692039301,45.13261546134575,45.13263168695088,45.13265372686165,45.13271963994701,45.13273614762793,45.13275797878706,45.13271945062923,45.13259313751027,45.1325268466077,45.13243345197853,45.13243335530934,45.13247706180211,45.13250985992255,45.13252055837903,45.13254260606536,45.13259724348152,45.13261356744076,45.1326795890433,45.13282888635933,45.13265184188382,45.13252007325924,45.1324762054648,45.13239902557755,45.13237163331956,45.13231677445953,45.13229464923788,45.132256001366,45.13222308606085,45.13222280511116,45.13224466132088,45.13229932376074,45.13246930907688,45.13251881607216,45.13254056058061,45.13258072429738,45.13266087778852,45.13272696075197,45.13288028668896,45.13299019823103,45.13307814178369,45.13329765590778,45.13345135709548,45.13345143760947,45.13307784763687,45.13299006741199,45.13294609443843,45.13275960151005,45.13270988548819,45.13263319334146,45.13252902153833,45.13247436314636,45.13246329356477,45.13246348735352,45.13243059844192,45.13237591828754,45.13224437743614,45.132112607324,45.13209077173885,45.1320691032941,45.1320691991855,45.13209127118218,45.13212416546398,45.13212425737191,45.13219028921154,45.13221260210926,45.13225639916207,45.13230075812175,45.13229513370963,45.13227318922731,45.13222403974503,45.13216365618202,45.13213601109306,45.13209756242308,45.13205902079769,45.13203697717383,45.13186115212282,45.1317952241488,45.13170746635669,45.13111426938811,45.13082881697341,45.13078457326934,45.13058708199105,45.13038914125757,45.13035087049496,45.13022446112745,45.13004892336963,45.12997205353766,45.12979612621431,45.12957650372328,45.12940058981129,45.12931273709525,45.12922485516589,45.12913690699995,45.12911487785264,45.12893904998987,45.12891709533852,45.12887311341951,45.12871933954428,45.12869738489183,45.12854351480467,45.1285215601305,45.12841147836453,45.1283509926503,45.12829604558971,45.1282768594739,45.12827756089279,45.12827818455735,45.12828992042591,45.12828991882508,45.12824575832615,45.12817953128365,45.12817943708732,45.12813537368585,45.12813528247374,45.12811344015973,45.1280801453821,45.12803604992411,45.12797021591567,45.12794808985169,45.12793720409076,45.12787099602822,45.12782681618602,45.12779380593011,45.12770554312526,45.12768350558622,45.12767233684155,45.12763913389229,45.12761726880161,45.12760630657012,45.12760047592213,45.12761126351901,45.12763881947285,45.12766085731845,45.12768279279524,45.12776505130148,45.12782006842987,45.12783639812274,45.12788016666561,45.12789125363261,45.12789124782208,45.1279458846006,45.12807190585752,45.12815424712392,45.12836294246447,45.12840130690279,45.12842857987575,45.12846130089718,45.12852711985088,45.12859848643133,45.12863711980217,45.12865888226023,45.12872496713801,45.12879079811444,45.12894468623641,45.12907673258064,45.12910402547359,45.12913139442034,45.1291479985288,45.12921934825104,45.12930159301814,45.12962061633574,45.1296425570137,45.12967014430346,45.12977450519659,45.1298679225945,45.12988452802781,45.1299339147955,45.12995576215062,45.13000527949472,45.12998868058737,45.12987876929849,45.12985674099284,45.1295929297015,45.12957089659297,45.12932895831599,45.12920799117271,45.12919719715936,45.12919709674613,45.12920786168876,45.129279138247,45.12933942817724,45.12941085935933,45.12944965281574,45.12952460562947,45.12967445888428,45.12972655588451,45.12975918292437,45.129622079017,45.12957006204356,45.12961882813869,45.12977196594404,45.1298338365042,45.12988588181742,45.12975688938737,45.12982250553222,45.12997086221957,45.13000386215244,45.12999300906257,45.13000960212057,45.13006436627837,45.13008649334969,45.13010844263909,45.1301577480079,45.13015230709091,45.12999814881518,45.12999811892348,45.13002540046509,45.13016229344836,45.13029400607664,45.1303435321623,45.13039858384199,45.13045323146684,45.13046973110365,45.13048052541576,45.13049147495344,45.13053544468107,45.13060138779022,45.13086516090009,45.13091477495684,45.1310043444054,45.13094187300576,45.13087603298253,45.13062330935971,45.13060119890007,45.13059011824665,45.13059029858957,45.13060679302371,45.13063959975855,45.13069979518627,45.13083163531917,45.13091920334577,45.13098523631808,45.13103473005541,45.13108383377664,45.13108372515646,45.13103965204635,45.13101760867702,45.13101728311526,45.13102818214838,45.13107766663875,45.13112728909046,45.13114904468054,45.13118226169352,45.13118245954242,45.13121016023258,45.13125433107764,45.13129268188149,45.1313199927291,45.13134201208012,45.13135849538463,45.13140229733624,45.13146791263283,45.13151749736194,45.13165282917957,45.13146756751713,45.13137991978905,45.13129203474583,45.13126429273755,45.13125892995014,45.13127532451252,45.13131357856175,45.13137961725167,45.13148951140874,45.13157717994334,45.13162125079312,45.13179709804277,45.13195097681371,45.13203884450458,45.13221337626282,45.13207718069947,45.13198912083651,45.13171943511534,45.13167527682701,45.13158918704733,45.13124044932307,45.13108665981223,45.13091091164438,45.13080110281676,45.13077907350785,45.13071323196373,45.1306693450757,45.13055953910457,45.13049359493358,45.13014201706743,45.12987833438326,45.12976862198856,45.12946112144018,45.12935132142272,45.12921937254733,45.12902178283624,45.12893374563303,45.12886798217582,45.1287361553034,45.12860430509078,45.12845058573504,45.12838447913842,45.12823077118603,45.12816494915766,45.12805501872651,45.12779152444712,45.12772560804905,45.12761577979691,45.12752782107778,45.12735208414836,45.12722011852355,45.12715429119066,45.12706630745395,45.12695669539328,45.12689065466666,45.1267808437499,45.1265829664836,45.12647860140006,45.12636341184486,45.12625349310905,45.12617638816435,45.12604470789199,45.12600063851102,45.12551746186431,45.12529755824539,45.12506151441984,45.12499885049828,45.12484234026184,45.1247106915092,45.12468863742973,45.12433732960839,45.12400772236241,45.12391996488503,45.12381015423459,45.12361238108509,45.12352469949186,45.12343671191601,45.12326090718295,45.1230851554283,45.12244832168522,45.12229460204785,45.12218460509629,45.12194312221025,45.12170164979448,45.12159163774115,45.121130550756,45.12110861511695,45.1209765647638,45.12082287323406,45.12073518841345,45.12055937911148,45.12042759999537,45.12031787694994,45.1201859290112,45.12005418945729,45.11996622472915,45.11979048336779,45.11965893620862,45.1193733077473,45.1190658210753,45.1186923069024,45.11847262712134,45.11836281316001,45.11823106800168,45.11812680406112,45.11811038517253,45.11804429693227,45.11801128244858,45.11768751398509,45.11767083479298,45.1174512115813,45.11734133428791,45.11697483417446,45.11672629044175,45.11663861150731,45.11655087170741,45.11650676038084,45.11633106513476,45.11619910206998,45.11569396329266,45.11562813789909,45.11540841334282,45.11532053481492,45.11499112291398,45.11477151764296,45.1145299492101,45.1144638527197,45.11435411108632,45.1138490774784,45.11376099564374,45.11373905995571,45.1136950717236,45.11367313603498,45.11362944254523,45.11360721088925,45.11356351676137,45.11354158107156,45.11349757439453,45.11343156833225,45.11319001683138,45.11305809515545,45.11294838496131,45.11281663600705,45.11253100526383,45.1123553983661,45.11200395011336,45.11198191507953,45.11192142590905,45.11190503229957,45.11181716914397,45.11157535665567,45.11146566788535,45.11135577372934,45.11122410197891,45.11093856932252,45.11067498668464,45.11056518934795,45.11052129882163,45.11043317212636,45.11036732679415,45.11023557713381,45.11001586997982,45.109862203603,45.10977433951304,45.10957646034438,45.10933491066793,45.10929102017069,45.10904946437206,45.10893956328864,45.1085442669421,45.10814876277703,45.10811603323259,45.10788527805101,45.10785226437523,45.10774256656045,45.10763265828481,45.10750096871175,45.10747894238813,45.10736897483341,45.10730307078735,45.10712731655774,45.10688567342106,45.10660012750124,45.10651245066001,45.10645397027251,45.1057656266597,45.10563387649659,45.10556785834328,45.10547995989474,45.10541405024692,45.10533162586595,45.10531521273457,45.10527694220718,45.10526028244211,45.10518899712785,45.10509563597257,45.10495816613277,45.10494176410526,45.10449715865042,45.10444746440246,45.10427183168625,45.10418950217228,45.10417310018804,45.10404670994774,45.10403029435011,45.10398642035219,45.10395342765884,45.103568775692,45.10341501765738,45.10319550228108,45.10306383118596,45.10282203543979,45.10272309441745,45.10268484722366,45.10266814992374,45.10244321554535,45.10242681895258,45.10225081457222,45.1020314193594,45.10172364998751,45.10148219147222,45.10126257680718,45.10118015299161,45.10116373436826,45.10108122926264,45.10106483567728,45.10083428254865,45.10071333230398,45.10062555168659,45.10059265079271,45.10043875850578,45.10037277233438,45.10030694596651,45.10021900136829,45.10008733564771,45.10006521435797,45.09993356161613,45.09988949096677,45.09984579945755,45.09962600295257,45.09960398943766,45.09953816360856,45.099494190394,45.09927449379902,45.09923052240392,45.09887926413032,45.09865964452226,45.09863762370232,45.09848367630491,45.09835190096324,45.09795647515003,45.09780291727941,45.09746243684273,45.09725372564485,45.0970559554803,45.09696809392864,45.09668265214233,45.09621024685796,45.09610037181916,45.09597405662335,45.09573803311761,45.09560612247742,45.09556225095698,45.09554021107279,45.09545235270474,45.09523265283391,45.09521080210299,45.09512285794943,45.09507886499836,45.09490340509294,45.09472747996509,45.09461777945543,45.09457371114848,45.09428818484061,45.09422217833158,45.09413441669658,45.09409060918571,45.09393673819734,45.09329988981518,45.09297021218741,45.09268458906848,45.09239900545164,45.09200366817426,45.09165215019035,45.09158622999966,45.09144347943746,45.09139961207322,45.09137785513057,45.09124601991324,45.09120185240496,45.09112513747775,45.09108123809849,45.09097136006978,45.09093299512506,45.09089434071972,45.09091638021357,45.09093849460037,45.09096042130911,45.09096040193884,45.09093846445724,45.090894575202,45.09085050253257,45.09076273899421,45.09069137658025,45.09056501270823,45.09049911435748,45.09041124867886,45.09036746199157,45.09030133197814,45.08997191128017,45.08984025622542,45.08981802205824,45.08975228576431,45.08962587917887,45.08947772182869,45.08901653265056,45.08881868133052,45.08875295321957,45.08848914582965,45.08835738176173,45.08802795895572,45.08789612367293,45.08785223298854,45.08783037464466,45.08769862490804,45.08761055980896,45.08758862453101,45.08732511559519,45.08723715622232,45.0869955036998,45.08666598664883,45.08657812196715,45.08640245845616,45.08631460403024,45.08625965421357,45.08621567268766,45.08612780970557,45.08601825292811,45.08599603723378,45.08588641709982,45.08579853573005,45.0857546450198,45.08562273170227,45.08557884161777,45.08542502752481,45.08516144191123,45.08496387695337,45.08483190704074,45.08474414214918,45.08470027100541,45.0845683176655,45.08452442696165,45.08426081842225,45.08399720787438,45.08397527198291,45.08393155731956,45.08386555017186,45.08382158014874,45.08373371689023,45.08351405555509,45.08333831648648,45.08320647113677,45.0831625809176,45.08296507962596,45.08274533079697,45.08217410252791,45.08206429103763,45.08193270285528,45.08171296183126,45.08155914833993,45.08140532530166,45.08098812813176,45.0808342097527,45.0807025141535,45.08054878894922,45.08041712804748,45.08032923989117,45.08021920774127,45.08008744286197,45.07993388953205,45.07982386111081,45.07974149144982,45.07956053655495,45.07938467756971,45.07927493237021,45.07923095145504,45.07912099267393,45.07907709859013,45.07859389347065,45.07822059723241,45.07817652344885,45.07811057914766,45.07808880370047,45.07795686473587,45.07780310062503,45.07773163509309,45.07763835817681,45.07754500752886,45.07742416321203,45.07735282035811,45.07735271474986,45.07733085839119,45.07723224746582,45.07723204377661,45.07719905320013,45.07718816970043,45.07715519542428,45.07715527424767,45.07714421155799,45.07714418490595,45.07716073375445,45.07717713206318,45.07730902666829,45.07734201447852,45.0773530411151,45.07733641038928,45.07725397967092,45.07722117048252,45.07721024819575,45.07721024170344,45.07717717268578,45.07717733608933,45.07716079706854,45.0771441399676,45.07707273418234,45.07704553333696,45.07703434956601,45.07702343028541,45.07698501634496,45.07697952263702,45.07695762703231,45.07695770383998,45.07700754205666,45.07720482374944,45.07731458157381,45.07739676902469,45.07740230287748,45.07746816936663,45.07752324715613,45.0775945288844,45.0776218787569,45.07762760972804,45.07766044078376,45.07766582211822,45.07764936424165,45.07764961476653,45.07763853173796,45.07763851310635,45.07761653132087,45.07760561303902,45.07759452747945,45.07759459791757,45.07758341463207,45.07753966799669,45.07750105012529,45.07745712860412,45.07728684532385,45.07702881596662,45.07679281013345,45.07672112452131,45.07655109465153,45.07629294742042,45.07617223410641,45.07608974837208,45.07595796708762,45.07573828003056,45.07552951250324,45.07546355408808,45.07530991393318,45.07504635005713,45.07478252838055,45.0746067714728,45.07440929586733,45.07434326082166,45.07412369549927,45.0740798208782,45.07405768523854,45.07394796452737,45.07370631956763,45.07368444432974,45.07361833539311,45.07353046879153,45.0734865965719,45.07342066116974,45.07306925467363,45.07298130407514,45.07284967341013,45.07276168615267,45.07273982488283,45.07269567588647,45.07262974343048,45.07245399746232,45.07219050414035,45.07203678511999,45.07201492691098,45.0717292943058,45.07168522010193,45.07157552057574,45.07155366419508,45.07142172977959,45.07139987155347,45.07118015130216,45.07115803143845,45.07074085505952,45.07071871384068,45.0705432065864,45.07049909451538,45.07043328615747,45.06981808355224,45.06968639336858,45.06966978127581,45.06965887226736,45.06966434449775,45.06978495201881,45.06966441524311,45.06964229028871,45.06957201419181,45.06936244501669,45.06925812983066,45.06920316350589,45.06918109081353,45.0691812516073,45.06920312267773,45.06927443188567,45.06929657913309,45.06931850037352,45.06930755491877,45.06929113673718,45.06926901160554,45.0692250153545,45.06915933423071,45.06912630050673,45.06908221009149,45.06895065580398,45.06889007020126,45.06878575507854,45.06871989587496,45.06862093816363,45.06848911797403,45.06840144517201,45.06831344340377,45.06813781403221,45.06785210060507,45.06777519843811,45.06768737347644,45.06746792751437,45.06740187924301,45.06738540027354,45.06736906629685,45.06736904271341,45.06740200722228,45.06744577924364,45.06786306780624,45.06792907835032,45.06806620813034,45.06828587330212,45.06830265171302,45.06836840365768,45.06841227593083,45.06845090459326,45.06850572430876,45.06854405230493,45.06855505859422,45.06857693984377,45.06858261950396,45.06853313333868,45.0685001911862,45.06845621329954,45.0683902027151,45.06828056994675,45.06814860874418,45.06808287494272,45.06773142044937,45.0675996558391,45.06757749981133,45.06718216564243,45.0669624560639,45.06672082253139,45.0666328568255,45.06652313833575,45.0663913938039,45.06610576515541,45.06586429847765,45.06566636724125,45.06562255372479,45.06553479024135,45.06540284097697,45.065271055972,45.065117358185,45.06505144325135,45.06489760773466,45.06470003484509,45.06456801723292,45.06450226145903,45.06441444383458,45.06426048419161,45.06399692578074,45.06390893689454,45.06382125289948,45.06349163502222,45.06331580977574,45.06329395039581,45.06296455360776,45.06292058250624,45.06285475513801,45.06281078709065,45.06275029696017,45.06273390656115,45.06260189322874,45.06258014241961,45.06249764053029,45.06248122819054,45.06243735584201,45.06237133217289,45.06233307935662,45.06231640363637,45.06227251305742,45.0622504835658,45.06220661117628,45.06218455798832,45.06214632350412,45.06212991418911,45.06186604120363,45.06166852910335,45.06164641171424,45.06160251809491,45.06158067761414,45.06147067968283,45.06142690541841,45.06133910415498,45.06127308827623,45.06120718708626,45.06111942227916,45.06109738854713,45.06100960611656,45.06098759304108,45.06085565712997,45.06081169028147,45.06075150193438,45.06073480545766,45.06069653563677,45.06067986109203,45.06064160587857,45.0605591218811,45.06047126873905,45.06044942283185,45.0602625222797,45.06012002703396,45.06007588204785,45.05998803598212,45.05996620461962,45.0598672257746,45.05980144223757,45.05975735887964,45.0594608173343,45.05927428528958,45.05919181204712,45.0590874631379,45.05900525031755,45.05875803687299,45.05867020133205,45.05853829925601,45.05840670059456,45.05837370805138,45.05830770461633,45.05818151649702,45.05802234014671,45.05753892736254,45.05748420439099,45.05744031318446,45.05726451149731,45.05717646986884,45.05702268635131,45.05664920887529,45.05649561860557,45.05631985947721,45.05625403272848,45.05623189674884,45.05592434323066,45.05588056069072,45.05581453107904,45.05572674864229,45.05535320772331,45.05522154315465,45.05497982971893,45.05476016845463,45.05449653758909,45.05416704106655,45.05399134335936,45.05385968607881,45.05383765641908,45.05368378125169,45.05363981604084,45.05333244443754,45.05324458539904,45.05309087678388,45.05284915412637,45.05271720984408,45.05254155779892,45.05240963831789,45.05226708606772,45.05215710698632,45.05193745895272,45.05176180134193,45.05158607929906,45.05149811322112,45.05138839514093,45.05125666567431,45.05077316417854,45.0505316316349,45.05025720153844,45.05011421215256,45.05003186559686,45.04996590452491,45.0499176346645,45.04976153422461,45.04968754493705,45.04958695431461,45.04958718260787,45.04950459956289,45.04946073614914,45.04943882926577,45.04944437778624,45.04948822190426,45.04956521508696,45.04958701603416,45.04959279785286,45.04956504542903,45.04947740159482,45.04925755703038,45.0491806744421,45.04904887826438,45.0490269420366,45.04896110121143,45.04893917042761,45.04876331853104,45.04866448437922,45.04855485123424,45.04853291498555,45.04837889370454,45.04826923957046,45.0481592890953,45.04796167800429,45.04782998350612,45.04774189798619,45.04756630507796,45.04747821993296,45.04734660201882,45.04708279986271,45.04675338585336,45.04664351906994,45.04652819358988,45.04631962852608,45.04627007717311,45.04624809621837,45.04614925860403,45.04602835402513,45.04599552524088,45.04581964137979,45.04581953595484,45.04576470910897,45.04576459932185,45.04566575365207,45.04565482284806,45.04556691367404,45.0455668037286,45.04544606324953,45.04542402355144,45.04541313005618,45.04541855684116,45.04546765743399,45.0455007823829,45.04563252023304,45.04566540657112,45.04592897205826,45.04601678730729,45.04607152583991,45.04613204311382,45.04614847297909,45.04616495869379,45.04625910098835,45.04623089136138,45.04625832642292,45.04628588929376,45.04632968277969,45.04641772541862,45.04652214485457,45.04657156217091,45.04658244812273,45.04660438536943,45.04662082451055,45.04662099367356,45.04659904890506,45.04622532379913,45.04619247352831,45.04616515812246,45.04615955466289,45.04618152702702,45.0461813686509,45.04621425011682,45.04620322986141,45.04618123124195,45.04607690593348,45.04602732618992,45.04594504614818,45.04590674495067,45.04591773674269,45.04598346576815,45.04597797123383,45.04590103793196,45.0458843461066,45.04588435868525,45.04591742577092,45.04593920534856,45.04596120133431,45.04596109060964,45.04600510433375,45.04600527406354,45.04602146484223,45.04605450267498,45.04610385215582,45.04620270391149,45.04635645957717,45.04642223766599,45.04655404688306,45.04670799881028,45.04675740014733,45.04695495289181,45.04716368263564,45.04723504480501,45.04727883795158,45.0473171202639,45.04749839674346,45.04760831473194,45.04766307489407,45.04769071987808,45.04772348466975,45.04773455482456,45.04773449156941,45.04768518123877,45.04769620843413,45.04770718456717,45.04775130106667,45.04781703249414,45.04792692088642,45.04804445584647,45.04811189362831,45.0481926155255,45.04822256928421,45.04823052103775,45.04820582991707,45.04815186048192,45.0481516475167,45.04828993465092,45.04832629551282,45.04834599623923,45.04832232343287,45.0483167275984,45.04831688604967,45.04830569034024,45.0483003116858,45.0483057105582,45.04835503938259,45.04849219986804,45.0485252508353,45.04869558755986,45.04873953537177,45.04882730201744,45.04889312983843,45.04898095585284,45.04904672906294,45.04909067925778,45.04912389186491,45.04914011529134,45.04917325350874,45.04917869934312,45.04916768312342,45.0491401574111,45.04914571888914,45.04917319676097,45.04920611431429,45.04928305243855,45.04932145810231,45.04933232667003,45.04931607342468,45.0492666984122,45.04918972960675,45.04918407539306,45.0493158822494,45.04938718571266,45.04943112028342,45.0497385626803,45.04978251243568,45.04993627841343,45.05011210173303,45.05022180687482,45.05059527436565,45.05081485457384,45.05099050046293,45.05103448323889,45.05108941025315,45.05113341498554,45.05115532666193,45.05120484064656,45.05122115248177,45.05123220621641,45.05123760435277,45.05121550713646,45.05123223744702,45.05139679556778,45.05142974945878,45.0514628007447,45.05146809665193,45.05150634468709,45.05151751099982,45.05151728691519,45.05153931786158,45.05156132098083,45.05158874413077,45.05162714820125,45.0516881652788,45.05186322304348,45.05208292064538,45.0521489710214,45.05231912007472,45.05237954643245,45.05236630110192,45.05247311439875,45.05250048457911,45.05256087872002,45.05284106667976,45.05301675952591,45.05310455649263,45.05316264467444,45.053137680569,45.05312672097056,45.05312679318583,45.05315408658592,45.05318156599286,45.05323117314535,45.05327502922217,45.05332437793331,45.05336280630272,45.05336286486941,45.05337370966453,45.05337356430842,45.05333511008757,45.05330761295811,45.05324164068372,45.05315955305985,45.05310993251208,45.0530661914394,45.05304401155555,45.05304396213783,45.05309877810975,45.05312641881955,45.05316465278451,45.05318671743656,45.05323070398871,45.05328000626547,45.05330211298983,45.05334032958104,45.05335147880919,45.05331845528026,45.05334030096083,45.05334035500661,45.05339534243657,45.053417182219,45.05344456956478,45.05350518814349,45.05358750128626,45.05362584803806,45.0537578733771,45.05384001685211,45.05399382906323,45.05401598620519,45.05404346309243,45.0540543069442,45.05405999617876,45.05405442447269,45.05399970012776,45.05392843245533,45.05392277538705,45.05392839491817,45.05396677719043,45.05401636374665,45.05404905206176,45.0540545631693,45.05414801275469,45.05421395565114,45.05429604871406,45.05428520991548,45.05425764017443,45.0541695307909,45.05413657905626,45.05408167761258,45.0539827169103,45.0539664407635,45.05392221742573,45.05392227053958,45.05390044869511,45.05387828973681,45.05385088705746,45.05375196430452,45.05368042072937,45.05357062750932,45.05341688822617,45.05328510034231,45.05315325815483,45.05313111685069,45.05295538369621,45.05291695885124,45.0527798919409,45.05270293159071,45.05263701237411,45.05248325428631,45.052439230879,45.05230206570629,45.05226359269066,45.05226342080297,45.05224697546304,45.05220829160552,45.05218098107485,45.05206545463504,45.05206005997161,45.05208749934165,45.05213135736943,45.05226338476372,45.05230173266821,45.05231830990046,45.0523181995157,45.0523070903072,45.05224131549084,45.05207105227652,45.05201041302998,45.0519555225226,45.05191714083675,45.0518566299143,45.05183457736691,45.0517905758561,45.0516919440214,45.0516588758164,45.05166438472228,45.0516918445669,45.05187860181866,45.05197726607582,45.05207636427556,45.05209813223105,45.05216963975272,45.05214757095805,45.05211452269737,45.05207630609393,45.05198833169132,45.051971790237,45.05197167452616,45.05198832574801,45.05201551161451,45.05204862671292,45.05204860547241,45.05202120378713,45.05195512647756,45.05188909104212,45.05170240026644,45.05163673681925,45.05159265897048,45.05150467031129,45.05137312437853,45.05135107524811,45.05128515294623,45.05113127739131,45.05103236666903,45.05094995178835,45.05088955344305,45.05084581240165,45.05081282113036,45.05080178493711,45.0507398416033,45.05055979260985,45.05051588504909,45.05046106760848,45.05030728023863,45.0501094381972,45.04992273787414,45.04993936262188,45.04992287671692,45.04992279021506,45.04989536506825,45.04986782737829,45.04982386202145,45.0496923004559,45.04943730412648,45.04921998452855,45.0491814489028,45.04916506149193,45.04910456886246,45.04908818023563,45.04895624039756,45.0487805824419,45.04869277760782,45.04856080006805,45.04845115473027,45.04842893838475,45.04836308754348,45.0483411135861,45.0481433991113,45.04812146320139,45.04807774235964,45.04801161148324,45.04794578631526,45.04792392099876,45.0476163606992,45.04757239780933,45.04750658584234,45.0474186558072,45.0471550452294,45.04693528289167,45.04689140988723,45.04686926352834,45.04647412846625,45.0464301607532,45.04634215066964,45.04616647056709,45.04614451537275,45.04607864736903,45.04605671090175,45.04581480244312,45.04579284720661,45.04574914245354,45.04572692669849,45.04563912263819,45.04539747932166,45.04537554274717,45.04522186923826,45.04487033734742,45.04480439057435,45.04465047106836,45.04456257437938,45.04451858972848,45.04441995673692,45.04426614206461,45.04413406840769,45.04404631465081,45.04373883231726,45.04365074716212,45.04347486837178,45.04327722005991,45.04316743691319,45.04290373177284,45.04279916906557,45.04275530902689,45.0427167647521,45.04271132658299,45.04267825587823,45.04266191429853,45.0425958791728,45.04248599408497,45.04244219173138,45.04235415657747,45.04231579186423,45.04216751761897,45.04200811503243,45.04180494641873,45.04168374720734,45.04163981914299,45.04157415231204,45.04153005136839,45.04137614342527,45.04111802602795,45.04105211250925,45.04088724992877,45.04082138891921,45.04065638208949,45.0405462982952,45.0404089243131,45.04033203441843,45.04030991545064,45.0402880314543,45.04023284669653,45.04022173309861,45.04014501385809,45.04014477998298,45.04007866497533,45.04005677291926,45.0400237287989,45.04002377383888,45.03997963320179,45.03997967871698,45.03995772490554,45.03995770385202,45.03994660890844,45.03993545092065,45.03991347365356,45.03983643757394,45.03981455301768,45.0397595421666,45.03968798142466,45.03947367107789,45.03939103481723,45.03920958527527,45.03915471184807,45.03906659709472,45.03900631399762,45.03892379623728,45.03879212016098,45.03870413947438,45.03863814855939,45.03847328751295,45.03836335122433,45.03827551604732,45.03820955400604,45.03805584039026,45.03796804754185,45.03766046124935,45.03755054145021,45.03733094306097,45.03719896626799,45.03706729995908,45.03680365860832,45.03634220069483,45.03625429703177,45.03603477803187,45.03601291055921,45.03583705732552,45.03577122862257,45.03570539390724,45.03566136350279,45.03548543128828,45.03533181801473,45.03517811021974,45.03498034179336,45.03491432160605,45.03460685419884,45.03451900104034,45.03449697220884,45.03445309760485,45.03443106891224,45.03438719548229,45.03436517093751,45.03432125796854,45.03429925200717,45.0342553600117,45.03423333129353,45.03418945968464,45.03410181168402,45.03370631995816,45.03355254477258,45.03353051481788,45.0333769453265,45.03317927263732,45.03256393981412,45.03236651495467,45.03221262542643,45.03205886447988,45.03199305436811,45.03197103042578,45.03188324525613,45.03186121639455,45.03159764089137,45.03157575907558,45.03153160452093,45.03139992000437,45.03120205939821,45.03104824416366,45.03085057293335,45.03080665425573,45.03063091038172,45.03060884057404,45.03049917642742,45.03003740234027,45.02975167966584,45.02951000746791,45.0293344319624,45.0292243305278,45.0291145282272,45.02889463470289,45.02866391022948,45.02835622550526,45.02811459641112,45.02798253368945,45.02787292841338,45.02774086687722,45.02765319407549,45.02752123546205,45.02748826662795,45.02735659094463,45.02731262524794,45.02707098648433,45.02682936667143,45.02674139297341,45.02669738309304,45.02663164331573,45.02647788141376,45.02636789358482,45.02615903149759,45.0260931350714,45.02602716505996,45.02589537840981,45.02569748584942,45.02545604567523,45.02501653225787,45.02470888939915,45.02444518537379,45.02442323003181,45.02437924008699,45.02435730327225,45.02426948900384,45.02420347022478,45.02415945676385,45.02404980299815,45.02400564776465,45.0239837842816,45.02387404041585,45.02372563782639,45.02368153121486,45.02366537581055,45.02365960997439,45.02368702039021,45.02373114368388,45.02381338151422,45.02384626516088,45.02384643088433,45.02380782301425,45.02380232262393,45.02381879979242,45.02382969832163,45.02381869448294,45.02376379812947,45.02374167637764,45.0236290422058,45.02329155253978,45.02307186527284,45.02283018023081,45.02269852172309,45.02261054751252,45.02243486841544,45.02236893939663,45.02221504243035,45.02177561444053,45.02148992541491,45.02146795144056,45.02135829198643,45.02113841790332,45.02102876136881,45.02100654037651,45.02091881999749,45.02078692387126,45.02063296474905,45.02045745806622,45.02034751891499,45.02014969363152,45.01995208398262,45.01977611825298,45.01975414435629,45.01971043284711,45.01968849605128,45.01940259931589,45.01927094355717,45.01916095602229,45.01898502834179,45.01889719292397,45.0188752560998,45.0188093276762,45.01865574441132,45.01854582892563,45.01845767962352,45.01839189030618,45.01828206040404,45.01812802865285,45.01784230785283,45.01749091874795,45.01722702307401,45.01720506767232,45.0171613537439,45.01702936412041,45.0169854706571,45.01696362322237,45.01687564831295,45.01667787864987,45.0165899931752,45.01632628563468,45.0162604294006,45.01623847397448,45.01612860049048,45.01608479522302,45.01595289435149,45.01593092821523,45.01589250652625,45.01582097488517,45.01575508542602,45.01562316331046,45.01538141410078,45.01520577930726,45.01487598927297,45.01476618014114,45.01455185074655,45.01444179624301,45.01422744706024,45.01399654059083,45.01384815185006,45.01368879903335,45.01356620092952,45.01355652946707,45.01354568471406,45.01352863217608,45.01353398961839,45.0135285573695,45.01355569092025,45.01358313066262,45.01362135094519,45.01364337341898,45.01369835045179,45.01373133638211,45.01374218816098,45.01374210215613,45.01366497585373,45.01365386905714,45.01359873948584,45.01359867943047,45.01357663136497,45.01357115545007,45.013576408616,45.01356558984263,45.01356534471789,45.01344429779301,45.01343326760542,45.01338909956403,45.01332300719201,45.01321830404795,45.01317447655516,45.01308640868888,45.01295432734861,45.01287190424726,45.01279485718526,45.0125640740806,45.01243206854935,45.0122123675003,45.01172881022514,45.01155300498689,45.01153106677699,45.01139924629635,45.01117943519688,45.01093779901146,45.01071811577956,45.01058633080909,45.01036673003055,45.01003705555109,45.00977331238182,45.00975142859377,45.00966346983365,45.0096415989829,45.00911443823244,45.0090922886777,45.00904841467366,45.00898245907266,45.00885069424256,45.00874091959921,45.00860915716432,45.00854320151194,45.00832343975634,45.00819172491259,45.00814757518465,45.00805968430794,45.00784004251145,45.00781818008627,45.00777430481207,45.00735667444083,45.00731267715852,45.00729070327078,45.00698307721535,45.00676325459141,45.00665361762188,45.00632409051505,45.00623622403545,45.00603865144678,45.00597273927985,45.00581882749547,45.00573092718012,45.00561008289333,45.00545631106303,45.00521479487688,45.00519264940557,45.00492917009925,45.00481921792341,45.00479728151217,45.00473141238557,45.00455540119971,45.00453346721486,45.00448972938322,45.00446779228233,45.00442379173979,45.00440185469807,45.00424806345134,45.00411626960336,45.00387454571793,45.00369863703024,45.00367668158879,45.00341311157678,45.00339089462366,45.00317131660103,45.00314937954836,45.00308323377087,45.00297347660869,45.00284163532606,45.00246798902567,45.00213842950846,45.00198472152076,45.00191869927099,45.0016990340306,45.00145723517817,45.00130351762557,45.00112762237199,45.00088570502475,45.0007540253805,45.00060010232612,45.00046824683515,45.00024854445859,45.00000543770054,44.99996691878633,44.99987908154639,44.99957129056806,44.99948314713966,44.99942801862126,44.99940614701705,44.99921923592333,44.99897706890128,44.99873520583576,44.99835027958694,44.99810820440015,44.99781679772379,44.99767357999148,44.99745376727132,44.99721131702306,44.99698031734994,44.9967491150621,44.99646863654083,44.99633663485246,44.99616062372296,44.99578636450805,44.99554455123197,44.99532445750557,44.99475263564986,44.99440093475838,44.99409301444884,44.99385095490017,44.99376299242962,44.99360914385873,44.99347705804326,44.99332324678483,44.99319124234254,44.99308156813826,44.99305934683692,44.99299347835835,44.99286154066792,44.99275165391482,44.99272969833501,44.99266354206667,44.99264160477865,44.99255386709992,44.99253193049729,44.992421736877,44.99228998535069,44.99204805304077,44.99174037005602,44.99154245864883,44.99143248011188,44.99099269611285,44.99097062817703,44.9908388650381,44.99079493317532,44.99072876034933,44.99070667582806,44.99017886641214,44.99004717234424,44.98995901719859,44.98991501482784,44.98984901376988,44.98980525647946,44.9897831912471,44.98960909650327,44.98921160527959,44.98907954085155,44.98857384713532,44.98846380601031,44.98837578159683,44.98828793013919,44.98815595020383,44.98813386700716,44.98789201148644,44.98769428449719,44.98765007160584,44.98749615385074,44.98747407044871,44.98738632544887,44.98723227782487,44.98703435969468,44.98646267266584,44.98624299238026,44.98615486234666,44.98593524507126,44.98542940996982,44.98516552959594,44.98496774016136,44.98474769234438,44.98463781513435,44.98446196878046,44.98428615799963,44.98424226507016,44.98417632660999,44.98413213119289,44.98406647200164,44.98402229976932,44.98395633806036,44.98391244516685,44.98384648891093,44.98380261426501,44.98364873948743,44.98347287540913,44.98336281165125,44.98331891873128,44.98325297526909,44.98316497905909,44.98314310523756,44.98309923363772,44.98307708000444,44.98252770233456,44.98250556750926,44.98191230174041,44.98171434151355,44.98145056189479,44.98138460418968,44.9813407301375,44.9812309441114,44.98107686563533,44.98105500020875,44.98068139171504,44.98054961769997,44.9804176161872,44.98015377823315,44.98002177057629,44.97956026791883,44.97934064412674,44.97925266287645,44.97923053031751,44.97903289405358,44.97894484219796,44.97872526637777,44.97867042502133,44.97830780853983,44.97807171529303,44.97801115748932,44.97790121822663,44.97763761752262,44.97741784680764,44.97724204947971,44.97719789302843,44.97693416669784,44.97667032777591,44.97651645577651,44.97570301222144,44.97493323352356,44.9745816275958,44.97398791678168,44.97352614483892,44.97339435654503,44.97335026367832,44.97313038053462,44.97255882302255,44.97211916944964,44.97209693385583,44.97200911926998,44.97194324393264,44.97192130656086,44.97159130438168,44.97148137033847,44.9713054954827,44.97104128289389,44.97090936289824,44.97077740970067,44.97066757129216,44.97062367691662,44.97060154667474,44.97051376052826,44.97038188322716,44.97025013866608,44.97022798234689,44.97014012072027,44.96998642462292,44.96996420297327,44.96981047347371,44.96976638448972,44.96963462939529,44.96961267248278,44.96952462542484,44.96950268793061,44.96930477237333,44.96908468682363,44.96882100950979,44.96868882476508,44.96855695149984,44.96824916379006,44.96776556102634,44.9677215204419,44.96763361890709,44.96723776945989,44.96708392296372,44.96697383995701,44.96644626217709,44.96609431705829,44.96580841629235,44.96556645674548,44.96543453294748,44.96536865320078,44.96534669745878,44.9652367098921,44.96521477305873,44.96517076347107,44.96514880837466,44.96497286149538,44.96490683149587,44.96486310662968,44.96473109976173,44.96455513003102,44.96444542320894,44.96431341617192,44.96422543346199,44.96415948694432,44.96411559368978,44.9635881398414,44.96343407925556,44.9632582606038,44.96277501489497,44.96273094345896,44.96259898146842,44.96248905875144,44.96240137825521,44.96237922424614,44.96233532985796,44.96224749268494,44.96209354729098,44.96191761837746,44.96165376224976,44.96163182468626,44.96152185761457,44.96143395807037,44.96138991404078,44.96136797657351,44.96123613397418,44.96106004994666,44.96095012772281,44.96088416261301,44.96051025953119,44.96013651535841,44.95974058708412,44.95960862577731,44.95921291744095,44.95903704796945,44.95901509229495,44.95892704033057,44.95890509856756,44.95883922029134,44.95881700286632,44.95875110458396,44.95872916466057,44.95837740873571,44.95835547117839,44.95831146114714,44.9582895236483,44.95820139261207,44.9581356418841,44.95802567086773,44.95767375149897,44.9575419053085,44.95751994952813,44.95745405458851,44.95732214101822,44.95730020351129,44.95725616177102,44.95723422487072,44.95719021408636,44.95716825893108,44.95699230721622,44.95652580911267,44.95624574614352,44.95604813766518,44.95591622845878,44.9558503294433,44.95580650210361,44.95569661260257,44.9556084906221,44.95536698663407,44.95532304502242,44.95486177272183,44.95418613341988,44.95398307641992,44.95376866852352,44.95330179935694,44.95327986180498,44.95321397996999,44.95303845945988,44.95268696768161,44.95251108215793,44.95237938627396,44.95233536168372,44.95231342416481,44.95218145900511,44.95155541811774,44.95124238341609,44.95097334244859,44.95077561362184,44.95068771286991,44.95051191954025,44.95046807143254,44.95019319111527,44.9499406480348,44.94950140307489,44.94906206185993,44.94888620304683,44.94873244280251,44.94854016333638,44.94836438019494,44.9482983410105,44.94815563951092,44.94805116019251,44.94794703316696,44.9478316816332,44.94763376367697,44.94743615040138,44.94741421278275,44.94737018454083,44.94728249476271,44.9472603440177,44.94721646325426,44.94719459363456,44.94701870284013,44.94690892724724,44.94686491479703,44.94684295899383,44.94679923059947,44.94677701300342,44.94673326222716,44.94671132458365,44.94646956655532,44.94644760524614,44.9463595855794,44.94633762975395,44.94627174864604,44.94618384252649,44.94614011405476,44.94607404861069,44.94603003897557,44.94596428912497,44.94570065917871,44.94559073651367,44.9454151871069,44.94537103486141,44.94519550538296,44.94510740527576,44.94508544946416,44.94490978362409,44.94482187980029,44.9443824654435,44.94436610757134,44.94420674581787,44.94397067413444,44.94375646856852,44.94344336235804,44.94328958329438,44.94297651994465,44.94220740124441,44.941855934115,44.94183399643951,44.94172408338696,44.94165811390864,44.94115300500428,44.94088947654971,44.94044997145214,44.94018630645379,44.93963711857341,44.93942275159421,44.9392030053055,44.93905486634767,44.93889544190534,44.93869761639987,44.93852748815301,44.93842862067171,44.93832413345865,44.93820334264376,44.93806034548918,44.93790100510905,44.93773619371069,44.93760439402391,44.93689031645846,44.93684637094702,44.93673623592598,44.93619257768918,44.93595086798565,44.93564880061054,44.93507748334767,44.93486340295479,44.93473154993269,44.93459977402424,44.93447330182187,44.93437982658033,44.93433597498395,44.93426458217036,44.93411626074305,44.93380314513397,44.93362731162877,44.93336374535147,44.93323188562226,44.93303431140366,44.93281467679208,44.9327708855812,44.93250715754877,44.93230930452062,44.93226542884373,44.93217752368874,44.93206787557492,44.93194151520736,44.93176019751948,44.93147459829397,44.93116689958184,44.9309033403856,44.93072778877988,44.93048612562012,44.93011232463441,44.92973891754144,44.92938744987111,44.9289701497514,44.92833277292537,44.92803087711874,44.92771755949484,44.92765189116724,44.92734425935254,44.92706409544531,44.92700350886214,44.92688818590752,44.92673998724455,44.92654223639911,44.9263333287077,44.9257895464223,44.92552062447898,44.92530061091245,44.92512497310686,44.92483944995098,44.92448808799921,44.92414468384813,44.92396094020319,44.92385670486773,44.92380161397271,44.92373047437594,44.92371951231983,44.92368645482338,44.92368659096902,44.92359868846582,44.9235767446863,44.92321479139603,44.92321464602207,44.92319270642442,44.92314880227292,44.92307763763951,44.92300617924128,44.92288540905479,44.92266566609654,44.92251209763042,44.92229231931278,44.9222265086627,44.92220448531326,44.92211670070751,44.92205080768236,44.92191886441334,44.92180923695207,44.92172132644495,44.92136977934626,44.92110625549616,44.92090832887312,44.92068881727906,44.92040842157846,44.92025490794347,44.92006245806871,44.91955155583761,44.91909568707916,44.91898578499882,44.9188541082374,44.9187604265973,44.91865606282565,44.91852412783468,44.91845815893995,44.91826596321445,44.91802991837802,44.91783192345829,44.91769460634617,44.91762877700808,44.91755184340911,44.91750247414667,44.91739248903509,44.91731005897028,44.91726602569146,44.91715618268744,44.91709035200864,44.91700764003554,44.91698030708125,44.91683196046759,44.91634851978656,44.91584297296755,44.91567277310136,44.91555748230513,44.91549688980921,44.9153926635284,44.91510145389876,44.91496958900173,44.91484338138787,44.91471157435046,44.91470047735491,44.91468393642302,44.9145138759603,44.91429412197179,44.91418426875471,44.91365679778897,44.91348659300765,44.91319523530515,44.91285454135986,44.91275016859832,44.91262941665354,44.91251930308093,44.91238212284761,44.91225033298739,44.91218450092725,44.91216234364235,44.91198688396164,44.91196472173505,44.91172307327246,44.9117011916662,44.91143745959238,44.91128387480883,44.91119586747577,44.91102006841913,44.91097624992558,44.91091013853584,44.91084444689237,44.91075647242997,44.91069049652047,44.91064660309601,44.91042696948617,44.91018524961388,44.9098776746758,44.9095920212277,44.90944365036638,44.90928436195724,44.90880108542663,44.90851552777541,44.90827368713271,44.90809808394467,44.90807592631239,44.90798823570849,44.90781241605351,44.90772458316242,44.90770256553294,44.90754886756559,44.90750493410816,44.90732921159919,44.90730717401738,44.9072851557758,44.90707810382811,44.90706545758363,44.90702178792316,44.90693373358118,44.90684587009952,44.90682385435964,44.90677997822547,44.90675795756792,44.90645071794105,44.90625287939033,44.90616519180883,44.90609928310025,44.90605526762322,44.90603333203354,44.90585763790352,44.9057258311467,44.90557196691789,44.90550621315429,44.90541807929751,44.90539614368683,44.90533024755251,44.90530829158798,44.90524237989731,44.90522044179797,44.90515454505037,44.9049787192852,44.90484707598275,44.90482505711685,44.90478118101026,44.90478063491808,44.90425845481492,44.90376075473315,44.90347629465857,44.90308541421641,44.90292553963238,44.90236625345457,44.90228628845523,44.90200243668539,44.90165571316295,44.90099813886575,44.90050975714018,44.9002877087974,44.90007460503952,44.89992343856644,44.89988818149943,44.90003058784157,44.89997245028152,44.89983694680412,44.89979291047135,44.89968319393299,44.89950754423587,44.8992386440603,44.8990847706571,44.89888701790076,44.8986236309233,44.89859082895391,44.89855252666631,44.89847544470964,44.89840974396635,44.89833823032634,44.89807461155076,44.89796479437786,44.8978771798505,44.89759157541697,44.89743782980269,44.89734991639576,44.89728416122769,44.8970643790114,44.89688861803822,44.8967568885241,44.89669099199305,44.89650980677731,44.89639466231466,44.89631799758016,44.89625749605471,44.89616961631527,44.89603233831991,44.89592270982511,44.89587875114393,44.89579070022329,44.89570841222098,44.89554905556123,44.89539537704443,44.89502580684038,44.89499897177294,44.89506039790964,44.89519631400833,44.89539131615741,44.89546681056232,44.89554929269097,44.89557118205748,44.89572506959487,44.89574152547848,44.89573048278911,44.89571962073997,44.89563715219406,44.89551652210628,44.89540240178957,44.89532802751412,44.89530768904076,44.89528578660124,44.89524162454052,44.89519234436951,44.89517574216389,44.89517598013207,44.89518145381372,44.89521992285014,44.8952364539423,44.89519803906681,44.89518705431963,44.89514315744926,44.89502777637311,44.89491256938364,44.89483040849836,44.8945776070374,44.89425362919749,44.89396839575927,44.89355088447922,44.89337533161498,44.89328740136115,44.8931336707051,44.89302377714179,44.89291407321345,44.89289743136052,44.89278766869026,44.892716425568,44.89249685607409,44.89247491570305,44.89243087678523,44.89225533391188,44.89201353834716,44.89172806952432,44.89149178634108,44.8913161077858,44.89122269980074,44.89117874598226,44.89093733183425,44.89087142941478,44.8907998848884,44.89065723423132,44.89062432766273,44.89051464566095,44.8903992624989,44.89013563173501,44.89004791795211,44.89002597999582,44.8899599428843,44.88969633644209,44.88965231525424,44.88963035921626,44.88954260347363,44.88936690944502,44.88910329387821,44.88897142419762,44.88892768285783,44.88890572681859,44.88886171047036,44.88883977255455,44.88866408023793,44.88857616565488,44.88851040701367,44.8884884509738,44.88844443026878,44.88842249484112,44.8883344989416,44.88815873976176,44.88813680182763,44.88802705284322,44.88800511492887,44.88789540097181,44.88787346311638,44.88780742311724,44.88752189527281,44.88738999651863,44.88712648877263,44.88688484905924,44.88684097333203,44.88681895713013,44.88664327267074,44.88662126918742,44.8865773752905,44.8864894598172,44.88642364676365,44.88640163062946,44.88626998454939,44.88618211361364,44.88594047149309,44.88591845286085,44.88574276958477,44.88552298273389,44.88521567187293,44.88512753974276,44.88495199976752,44.88475422706448,44.88471041146238,44.88455641083679,44.88446867721807,44.88433672385445,44.88427101373638,44.88413933282959,44.88411717520793,44.88398537382884,44.88380968609863,44.88372191638964,44.88367788709933,44.88359561678921,44.88354603766288,44.88350228211301,44.88343638461938,44.88326050143245,44.88271136617159,44.8824915151465,44.88240389126855,44.88235971864498,44.8823378632462,44.88205234430181,44.88192060539094,44.8818326208128,44.88181076364485,44.88163480644876,44.88161293292489,44.88148115198144,44.88141516112326,44.88110757036966,44.88088801047159,44.88082196001226,44.88077822983928,44.88071219937819,44.88042669333986,44.88025648351061,44.88020698996615,44.88016317415695,44.87981153643393,44.87978964047325,44.87974576772367,44.87961376843086,44.87952594065093,44.87950400270735,44.87945997434558,44.87943803700861,44.87939428673293,44.87921847406427,44.87917458010785,44.87915242531213,44.879042715243,44.87899862253592,44.87888891781073,44.87886705805138,44.87873519738056,44.87860324228052,44.87831773378186,44.87829579579027,44.87801013015932,44.87792222573,44.87770809578077,44.87759266615899,44.87735129524688,44.87721923379019,44.87702718149236,44.8768897447458,44.87675802552091,44.87662610679516,44.87645027529628,44.87636244749665,44.87570357303831,44.87565967906188,44.87553323211409,44.87533011666881,44.87499380917814,44.87494050427259,44.8745006753982,44.87397314662036,44.87379704986772,44.87370919163376,44.8735771338341,44.87348923604096,44.87342338068261,44.8733739844575,44.87334632038303,44.87335207734231,44.87340706028048,44.87342899537608,44.8734346090388,44.87341799958256,44.87337968137714,44.87324760815599,44.87322565206376,44.87315959155518,44.87313765363566,44.87307189844843,44.87298398097037,44.87290696472549,44.87283010927352,44.87272017830448,44.87263230679538,44.87256627901653,44.87232430399595,44.87223103661919,44.87217058149963,44.87214840263732,44.8721211793418,44.87207717363042,44.87201684955492,44.87197712066943,44.87184097057903,44.8717969464581,44.87177499036245,44.87169797709959,44.87153323819788,44.87135739909314,44.87130246896666,44.87121446133287,44.87117050887478,44.87112659892811,44.87108242371858,44.87101666531368,44.87093968926236,44.87082966626454,44.87054405384899,44.87043414703442,44.87038990770387,44.87021405548953,44.87015937569883,44.87002745706236,44.8694560054815,44.86918120603295,44.86909315496914,44.86904933900614,44.86898345660941,44.86889538478563,44.86884576827092,44.86881300217937,44.86877442185696,44.86861889048676,44.86856589597311,44.86855467319221,44.86853295690928,44.86840099254528,44.86837885576549,44.86834031658088,44.86825810440326,44.86817003519717,44.86814801795501,44.86792832282973,44.86790616371491,44.86777430102394,44.86746648930572,44.86742259529139,44.86718081178012,44.86713664088024,44.86689494017288,44.86687298408344,44.86674084596154,44.86671890861628,44.866521018239,44.86634518963378,44.86619678716283,44.86607041735527,44.86592756953664,44.86581755480398,44.86559797442797,44.86537809793705,44.86533427786804,44.86524622200976,44.86522426591625,44.86518586238477,44.86500463071943,44.86496059369232,44.86476271285451,44.86460889373226,44.86458695572271,44.8644769616841,44.86445502373343,44.86441098717466,44.86420223836068,44.86404834139027,44.86389439967986,44.86378460096722,44.86369650282604,44.86365263733745,44.86356464808213,44.86347654062195,44.86339966747325,44.86324583211634,44.86322389416016,44.86317987699248,44.86310292327985,44.86290530041732,44.8627513173631,44.86264127446248,44.86224553347991,44.86215770830485,44.86213577034357,44.86209174181193,44.86206980381095,44.86202578906176,44.86193760096416,44.86182788386594,44.86180564610007,44.86176191549841,44.86167401152517,44.86143210051918,44.86125622667932,44.86105836926097,44.86083849883162,44.86045921894645,44.85998128814757,44.85975035123575,44.85970633909805,44.85939869254284,44.85931619796018,44.85911271577206,44.85905257541965,44.85896459998434,44.85870623272059,44.85858538192925,44.85831056962081,44.85814049618626,44.85812915900426,44.85808515819733,44.85788751002929,44.85780506696464,44.85768436011473,44.85755238385482,44.85753042652698,44.85735473184484,44.85717890286267,44.85714037031425,44.85700314190339,44.85671732072012,44.85665120628523,44.85660739776115,44.85654127064445,44.8564754331171,44.85645339221734,44.85640949813131,44.85629942292496,44.85625554694764,44.85618957948683,44.85614005909949,44.85611260502458,44.85609068322608,44.85606860263603,44.85601925267825,44.85592579176279,44.85577216257797,44.85542011855596,44.85524444421742,44.85493669647105,44.85476054465418,44.8547167336649,44.85462867081473,44.85460673285869,44.85456270265281,44.85447479893242,44.85423290822411,44.85400226910106,44.85380413816376,44.85371631194033,44.85369437395968,44.85354034811131,44.85351841014865,44.85345252303207,44.85340842961944,44.85303466058819,44.85283674690844,44.85274854714424,44.85261673603214,44.8525286925136,44.85230878119673,44.85213278655751,44.85191278839574,44.85182500943078,44.85173696112449,44.85160501614421,44.85153912706688,44.8513631637979,44.85118698683772,44.8509836241639,44.85086258554008,44.85062597228259,44.8505985185691,44.85054884703225,44.85052690960957,44.8505043681439,44.85049954738545,44.85049967766513,44.85056040117017,44.85059315812713,44.85059903886474,44.85054949729621,44.85051674795087,44.8505173069634,44.85052874518565,44.85052862195765,44.85049587883322,44.85047386326928,44.85038035115427,44.85035847815358,44.85033638652391,44.85034074015517,44.85031299627985,44.85020871770194,44.84996666260329,44.84981275270739,44.84968079358929,44.84965885556125,44.84957073347111,44.84939503530793,44.84926305329715,44.84918616615754,44.84915855089049,44.84915307768418,44.84915321804137,44.84919683103163,44.84919117251437,44.84916946662777,44.84913095445606,44.84897707070735,44.84881197187708,44.84870209416924,44.84865789741603,44.84859206573699,44.84843815823606,44.84837234467044,44.8482183322926,44.84817445618045,44.84809180068255,44.84802597954179,44.84786662093175,44.84781184334331,44.84777870396364,44.84770170682619,44.84761387453504,44.84743792190122,44.84737742579404,44.84730061016232,44.8471634706438,44.84709742952206,44.84705347637061,44.84698746196688,44.84694344637597,44.84689965526469,44.84683364502682,44.84678955157673,44.84671825688359,44.84667979721272,44.84667965083403,44.84650255132347,44.84616319963563,44.8461247159331,44.8461081389114,44.84608647345672,44.84606996411568,44.84604779958159,44.8459984991642,44.84592152026551,44.84585574554546,44.84572367209628,44.84561376470252,44.84554791609145,44.84549300434099,44.84543248178532,44.84537197984884,44.8453389376179,44.84530013386409,44.84523425673828,44.84519564248433,44.84515163203644,44.84506385925775,44.84496478734861,44.84491535010218,44.84487684193985,44.84487709842614,44.84492110779866,44.84494303975727,44.8449431781774,44.84500928367268,44.84500934312567,44.84499293464864,44.84492145421056,44.84487739425172,44.84481153917377,44.84467944763488,44.84461369619065,44.84456424369883,44.84452556095192,44.8445146899594,44.84451455609285,44.84452570430759,44.84453638939305,44.84462432623828,44.8446243746863,44.84459674572607,44.84453616063209,44.84431636798166,44.84425040135334,44.84420652285151,44.84418436980567,44.84409105676398,44.84405243972935,44.84404342131098,44.84403615782875,44.84398667052072,44.84395372622218,44.84395386466952,44.84381112551063,44.84381126567458,44.84374526851904,44.84374540800983,44.84371234313776,44.84371247773796,44.84365768667378,44.84365754488544,44.84354771559468,44.84354785185178,44.84351476650409,44.84351490151362,44.84348185346097,44.84348199270767,44.84341599331223,44.84341613308061,44.84331720328561,44.84331734234782,44.84328427137041,44.84328440797086,44.8432295988826,44.84322973542943,44.84318576394736,44.84318561567195,44.84314172506019,44.84314186394943,44.84307586215908,44.84307599855355,44.84304291605496,44.84304306816694,44.84300999818744,44.84301013757154,44.84297705003819,44.84297722257843,44.84293329430504,44.84293315306899,44.84287827531817,44.84282539964418,44.84275756205282,44.84271353358354,44.84269159609822,44.84251012504141,44.84244910468691,44.84278981500399,44.84278996020523,44.84282276525117,44.84282290616887,44.84288860379981,44.8428887489022,44.84292153861526,44.84292168186307,44.84295461048217,44.84302047334212,44.84305324149994,44.84305338400897,44.84308633260495,44.84315204535124,44.84315218776118,44.84318495796097,44.84318510276695,44.84321788858619,44.84321774918912,44.84328374635045,44.84328360810182,44.843316535247,44.84334959938136,44.84334946531718,44.84338251424992,44.84338237711695,44.84348117935701,44.84351422790298,44.84351408578048,44.8435471710312,44.84361272879681,44.84362915908101,44.84362318953446,44.84361820481721,44.84357987160351,44.84351372282851,44.84348629942345,44.84346856044323,44.84346435932114,44.84336023625549,44.84336009181425,44.84323949005079,44.84323962419959,44.84316281063808,44.84316266600744,44.84308582888183,44.84308568419655,44.8430529197576,44.843041933911,44.84289925538683,44.84274572819923,44.84271264664992,44.84271278332393,44.84264137983362,44.84262498402876,44.84260304358763,44.84239412260523,44.84237748400202,44.84206478720009,44.8420474251985,44.84198138902227,44.8419539675889,44.84194282776533,44.84224572369865,44.84228166657292,44.84186650571386,44.84184473069921,44.84180620228692,44.84177298229291,44.84171256533767,44.84166867113531,44.84163005926599,44.84155873405223,44.8414209783496,44.84134954774667,44.84131633352833,44.84130001205452,44.84129462982216,44.84130559976385,44.84148751944902,44.84143793465204,44.84142694915139,44.84155595543199,44.84152614230148,44.84152082196291,44.84148213595853,44.84146019795329,44.84126257281213,44.84124033247641,44.84119659512575,44.84115803763582,44.84113614620471,44.841124856158,44.84114140224955,44.84122946145767,44.84125139891637,44.84135571284413,44.84139398239233,44.84135018977509,44.84132799326449,44.84130592491868,44.8412839951615,44.84126192666439,44.84123999341713,44.84120666950133,44.84118475384896,44.84116268476293,44.84114077110166,44.84111869933705,44.84108011389041,44.84106934151384,44.84106689270979,44.84081068673104,44.84072292170237,44.8406347320309,44.84059617874404,44.84050838247329,44.84047530650315,44.8404533226246,44.84044862843734,44.84044257314851,44.84046997565673,44.84048122067183,44.84051424542064,44.84051423728145,44.84055826658837,44.84055825586984,44.84064651440281,44.84069049281577,44.84072354528872,44.84074574511424,44.84077877845463,44.8407897263247,44.84087800919905,44.84087254507543,44.84085590058563,44.8407899749342,44.84075717501324,44.84066926158141,44.84061976467601,44.84059221644254,44.84057028938916,44.84057016260534,44.84055906524101,44.84054811137132,44.84053700011247,44.84053715054274,44.84052605551206,44.84051510108912,44.84050400119887,44.84050387683902,44.84049303990798,44.84048168510753,44.84046547412363,44.84043772542205,44.84039379540636,44.84033887705201,44.84029494992567,44.84028958508038,44.84030611910458,44.8403172377495,44.84031735804408,44.84035042432368,44.84032857734304,44.84025163219924,44.84020761658846,44.84017471428795,44.84014158026534,44.84012522696406,44.8401142326952,44.84008681377873,44.84008654397102,44.84007572598063,44.84006463177321,44.84005353259726,44.84005342513399,44.84003144461764,44.84002036800847,44.84000953351376,44.84000944265697,44.83996528690609,44.83996519276721,44.83994309472676,44.83987152445888,44.83978910048358,44.8397231197101,44.83962085528685,44.83961320378106,44.83954702022385,44.83950302289185,44.83943713076623,44.83942100154068,44.83941514534136,44.83944887958835,44.8394599428681,44.83945994792516,44.83946323269299,44.83939410687726,44.8392398258421,44.83921829034015,44.83919587685057,44.83918478563434,44.83918467061295,44.83917356345566,44.83917363134714,44.83916262465108,44.83915129044367,44.83915057215477,44.83914876868437,44.83875570890051,44.83875292219573,44.83875012587917,44.83874461775262,44.8387557312778,44.8387669495722,44.83877778560615,44.83878902342457,44.83879983701426,44.83886615983946,44.83887725732415,44.83891026109778,44.8389213766045,44.83893244664739,44.83891036732854,44.83886660930143,44.83878945352588,44.83867979888667,44.83862551698275,44.83861363367159,44.83860253445273,44.8385917163769,44.8385585682859,44.83853634793227,44.83852539319472,44.83851429560781,44.83849210634006,44.83848127476646,44.83847005315004,44.8384481112143,44.8384040144354,44.83839291653661,44.83839292180421,44.83836000002077,44.83835428869504,44.83834340552919,44.83830489642351,44.83819490061379,44.83817296252109,44.83810690312978,44.83808496509595,44.83793119545384,44.83778234683292,44.83778960760269,44.83782143627455,44.83783255462806,44.83783240410786,44.83784351702159,44.83784350846696,44.83785460327985,44.83786556841552,44.83787666859112,44.83790983823163,44.83793176102367,44.83795394976733,44.83796478126852,44.83798696638934,44.83799808202341,44.83803121318418,44.83808631090323,44.83808077912536,44.83803673193832,44.83792700164541,44.83784452696391,44.83774581594577,44.83767982058887,44.83764674619137,44.8376135872341,44.83758056476474,44.8375694675259,44.83756976125995,44.83750337874117,44.83750352675267,44.83748159563384,44.83745938972042,44.83741539349697,44.83741554140715,44.83739358896179,44.83739345569354,44.83736027547933,44.83728875074122,44.83726676517608,44.83721824233795,44.83721715644711,44.83712928547453,44.8370302742609,44.83666216823907,44.83660194908467,44.83631063314715,44.83617320284355,44.8360360039898,44.83593158061681,44.83589873942363,44.83581059992877,44.83577773756737,44.83565675484748,44.83543170879264,44.83520640411268,44.83520092234614,44.83520639694844,44.83530006060614,44.83530553751797,44.83530566609841,44.83529456156128,44.83529455171056,44.83528371077779,44.83527828160403,44.83523965085977,44.83519569390582,44.83499796239398,44.83488775665717,44.8348327727711,44.83478877989184,44.83475593646541,44.83462967390565,44.83455271146283,44.83452530883409,44.83450883509684,44.83448123388944,44.83443737688771,44.83437156270876,44.83433294494002,44.8341296163506,44.83409677698356,44.83392641096461,44.83382764619746,44.8336352327548,44.83360230738341,44.83360244605013,44.83364646723171,44.83366287424427,44.83366294762983,44.83360254606851,44.83358042673397,44.83349261072568,44.83348984203374,44.83349810914532,44.83349800044522,44.83344859373673,44.83321251439217,44.83318482851235,44.83320143526846,44.83319596977426,44.83317950808367,44.83295442245259,44.83281153273816,44.83272345328769,44.83267968001049,44.83256958078201,44.83252994372628,44.83202016089697,44.83200908812258,44.83205856353524,44.83208063920489,44.83210258639467,44.83210835599706,44.8320808548011,44.83203674794184,44.83145985824135,44.83143808356674,44.83139937565828,44.83134993578283,44.83130589083125,44.83125644594288,44.83098726624808,44.83096526331341,44.83092131485602,44.83087732044557,44.83074023001978,44.83033898830341,44.83019613071895,44.83019078479452,44.83022368972414,44.83023463855903,44.83022392797007,44.83016896309642,44.82990526176813,44.8298722166385,44.82986687039094,44.82987224082664,44.82991075004119,44.83004256755836,44.83009777340104,44.83013619742511,44.83014174153342,44.83011985712778,44.83007561666988,44.82989988160224,44.8298557853884,44.8297460396339,44.82969098954929,44.8296634499595,44.82964702165339,44.82964704555715,44.82968019557868,44.82983392865992,44.82985608560309,44.83010934045932,44.83008136973805,44.83000272151436,44.82997907057305,44.82992994683148,44.82993008109039,44.83011204555251,44.83018394095343,44.83020404197384,44.83030322095163,44.83025165911567,44.83013204133311,44.83007604568974,44.83004363701547,44.83004361987486,44.82998940931012,44.829853025337,44.82979276924836,44.82970525539034,44.82955197978895,44.82947554381578,44.82935038044354,44.8292845921715,44.8291370994522,44.8290438500271,44.82897257878974,44.8289235610949,44.82890695084075,44.82890748492116,44.82887465463406,44.82879307814974,44.82873832633522,44.82870566369918,44.82867292735311,44.82850398703138,44.82844366100774,44.82831291201749,44.82823631815035,44.82821464654052,44.82818173615788,44.82813797452813,44.82809408112134,44.82809421046831,44.82800700626904,44.82800686107801,44.82798496795682,44.8279525002071,44.82791950619286,44.82791963658969,44.8278977475837,44.82789788221024,44.82783788498127,44.82777252990554,44.82773975317492,44.82772903555439,44.82755961428688,44.82750527292053,44.8273687093686,44.82706863424603,44.82698697499808,44.82688332566904,44.82686686239824,44.82674692421612,44.82673036029987,44.82669755556166,44.82657211719846,44.82656139759249,44.82652858140555,44.8265287093064,44.82645240793327,44.82645225711837,44.826353978997,44.8263541080069,44.82629959106326,44.82628902476534,44.82624520515078,44.82623435689992,44.82615276171592,44.82608698845075,44.82599382023331,44.82580739044906,44.82565939246168,44.82554419120294,44.82544519129075,44.82530234989297,44.82517058959685,44.82510467174104,44.82493981386985,44.82478630363769,44.82451718349309,44.82446779913963,44.82415527205147,44.82407860251098,44.82402933248409,44.82399665626039,44.82397507171272,44.82396454366097,44.82396476853254,44.82397626555694,44.82401494212267,44.82407551573464,44.82416918308289,44.82425162459573,44.82436146998532,44.82443296738413,44.82473528393477,44.82468628561553,44.8246700321765,44.8246480129382,44.82458193346235,44.82449398627398,44.8244335615385,44.82438405941723,44.82437323070047,44.82437321045159,44.82445064837979,44.82445651126966,44.82443472416063,44.82438562223231,44.82430881957323,44.82413313567058,44.82396320428622,44.82377707886253,44.82344853615685,44.82333894375137,44.82326241572274,44.82316961595079,44.82312028571726,44.8230331221803,44.82292365528961,44.82278131185701,44.82271592674519,44.82260623516087,44.8223655958555,44.82224506858942,44.82221758254799,44.8221464321764,44.82205340212865,44.82185091291073,44.82171924636895,44.82162077543082,44.82152225605322,44.82142941313619,44.82136402933229,44.82136444120164,44.82135332456227,44.82136527977655,44.82142057701536,44.82150362267294,44.8216582575773,44.82171882894585,44.82176306410943,44.82186349606805,44.8219190649957,44.82198578504162,44.8220191693267,44.82215189435441,44.82215202156202,44.82219639669395,44.82224072812441,44.82235718778274,44.82245651641374,44.82250615067957,44.82258334994827,44.82266044301129,44.82269200316146,44.82277035729823,44.82285841673707,44.82292453235309,44.82301229073241,44.82307806310352,44.8233851829638,44.82362653308065,44.82371427972846,44.82402204440538,44.82421972308117,44.82496699912576,44.82498901979668,44.82501629645321,44.8252748398818,44.82539020359209,44.82549476675403,44.82551663131412,44.82556054469259,44.82558268059397,44.82567038093894,44.82569251446532,44.82578051362527,44.82584647021937,44.82593445169245,44.82606645628563,44.82611047689242,44.82617652066916,44.82626433132071,44.82628628732012,44.82633031042445,44.82637448406921,44.8264184887788,44.8265942984692,44.82670427736087,44.82672621509175,44.82679240388955,44.82681434398886,44.82690236428524,44.827056401444,44.82713891144045,44.8272214090868,44.82728762239027,44.82746965078942,44.82748619474795,44.82747532608974,44.8274533188095,44.82740951305183,44.82703517713315,44.82685915316436,44.82677119019303,44.82663918300505,44.82646309391946,44.8263089966152,44.82608916337055,44.82584717217317,44.8256276057722,44.82545158378791,44.82512210048969,44.82493540237281,44.8248033637036,44.82462746554879,44.82456148646659,44.82436371267752,44.82434168768889,44.82429779269118,44.82416593940708,44.82409460655521,44.82395234198216,44.8237824938377,44.82363465684625,44.82350351715346,44.82333372559059,44.82318026195814,44.82315271410192,44.82298845996357,44.82281850871954,44.82270868933317,44.82257709519165,44.82255515745119,44.82255029007292,44.82251109410551,44.82230239574155,44.82221457390828,44.82216518564181,44.82209936584109,44.82199519391921,44.82195142448749,44.82184146092853,44.82170437326059,44.82166574802079,44.82153942345505,44.82150108480388,44.82139671447706,44.82133615339511,44.82087473482999,44.82083066589053,44.82056702705839,44.82052306102977,44.82041867841635,44.82038005618678,44.82033618078088,44.82031415726918,44.82017144527013,44.82014942175493,44.81995194935107,44.81992994182301,44.81988576868865,44.81982006335809,44.81963330429976,44.81951237914756,44.81936984705865,44.81919398138754,44.81906229062427,44.81904033453566,44.8188755752813,44.81880965494393,44.81869992079493,44.81867798373907,44.81863419875197,44.81852433365979,44.81826084692753,44.81817292500189,44.8181291584042,44.81799727273894,44.81793146289948,44.81790952578525,44.81766801142846,44.81762402989725,44.81736051840711,44.81725087592326,44.81686155658501,44.81670263545244,44.81665340119673,44.81655487716051,44.81646760048828,44.81635841869717,44.81633663156202,44.81628176241946,44.81615556205656,44.81585942634628,44.81568354080748,44.81550782532878,44.81548608494204,44.81544192604317,44.81541990458895,44.81523328243096,44.81510137504171,44.81499173890017,44.81473390953686,44.81453090993521,44.8145146882075,44.81448183089155,44.81442701560858,44.81434449905615,44.8142844602915,44.81402113021109,44.81381846533687,44.81347857972671,44.81289782576927,44.81283198014171,44.81267305414293,44.81237143259581,44.81214155666532,44.81197708027656,44.81185633020631,44.81148372384862,44.81134106277865,44.81123113277206,44.81087464578497,44.81082526470639,44.81063896182047,44.81048008131775,44.81032699409102,44.81017358197586,44.8100201810713,44.80987218771648,44.80956496070407,44.80952671142519,44.80947735208365,44.8094388210591,44.80934550464715,44.80924127761997,44.80902741238219,44.80891775963767,44.8082812257561,44.80825928807392,44.8080837354815,44.80806151610862,44.80801776098447,44.80797930347585,44.80786413772149,44.80781466797107,44.80773813468207,44.80768338671412,44.80763410001796,44.80755737437348,44.80739261267584,44.80731028844722,44.80728324909151,44.8072778769409,44.80725053391153,44.80722851126827,44.80716256256181,44.80714071726396,44.80709674976261,44.80703075033004,44.80694318933441,44.80689941608205,44.80666863866117,44.80659712796952,44.80560309104619,44.80543558349149,44.80529305491586,44.80281074464464,44.8018572243805,44.80161078770581,44.80138602307093,44.80095302966613,44.80092561752046,44.80050919643022,44.80047099717702,44.79896922843196,44.79879964126027,44.79746221013777,44.7970074757642,44.79533600914556,44.79416245403742,44.79468678999216,44.79474723649846,44.79481318334117,44.79496153375518,44.79502212557315,44.79508266786532,44.79518736032919,44.79545160280112,44.79556173233337,44.79585926047083,44.79593624246328,44.79608529426408,44.79628911461538,44.79641616312412,44.79648225327115,44.79658177486257,44.7966260222715,44.79670875471017,44.79697317429036,44.79708317946661,44.79717140960724,44.79741336281496,44.797627777104,44.79778195674464,44.79802415619081,44.79835424034669,44.79863522662417,44.79883896205124,44.79890525785072,44.79905971100793,44.79912038570554,44.79921400104656,44.79929666506547,44.7993846843995,44.79951639130563,44.79960453098025,44.79967028793181,44.7997856605345,44.79984048991982,44.79989529058439,44.79991727929957,44.79994432175024,44.79994406594386,44.79995493073596,44.79997124880003,44.80002048551442,44.80008615346451,44.80023996271881,44.80054724594547,44.80067918203986,44.80078888761395,44.80096481429309,44.8012065726822,44.80122842165746,44.80129454786429,44.80199826144275,44.80221815399709,44.80235025136373,44.80237218867991,44.80245455149308,44.80259199063651,44.80291684917717,44.80340093875828,44.80350025963257,44.80352784240636,44.80365991996145,44.80381411851533,44.80397898943566,44.80428727080306,44.8045240580603,44.80499216263843,44.80527872817738,44.80537805184115,44.80542201161943,44.80546613599693,44.80582990254076,44.80590688833875,44.8060834467725,44.80616043989613,44.80629847217632,44.80655742048373,44.80677261890717,44.80687190425174,44.80703750606222,44.80707038813343,44.80720297847639,44.80722506424998,44.80728018912372,44.80730225921391,44.80733549937232,44.80736838099363,44.80752290574483,44.80754499254188,44.80756716145721,44.80764987719356,44.8078481353005,44.80802443500907,44.80823916041172,44.80826132493764,44.80831653824063,44.80833844392963,44.80843759109538,44.80845975606273,44.80866902902169,44.80886203663636,44.8093686196512,44.80955036647723,44.80969374374019,44.80996970469671,44.81007993888458,44.81027265947449,44.81051489027463,44.8105259790504,44.81074610732868,44.8108951170183,44.81108230530707,44.81131385609335,44.81135797284023,44.81142397481908,44.81149008691073,44.81151213611408,44.81160042729761,44.8116224764298,44.81175482798677,44.81178796630178,44.81193150064172,44.81201426105669,44.81203625153571,44.81206407184284,44.81211931350991,44.81236750197206,44.81257172447722,44.81265459119571,44.81275423950485,44.81276525680888,44.81280410211637,44.81288138899759,44.81310773831592,44.81312983727248,44.81315199757442,44.81320717522426,44.81330670627753,44.8133068144415,44.81337308206502,44.81337319069111,44.81339536684131,44.81340637972144,44.81343945639482,44.81350606735056,44.81379309248549,44.81381518732299,44.81388135555484,44.81388146792509,44.81394777216205,44.81395868928385,44.81404160292423,44.81410761392433,44.81417375187716,44.81434463519694,44.81448813545228,44.81454877027472,44.81465330813114,44.81476317430612,44.81487307902012,44.81502688506846,44.81535664073893,44.81555445280336,44.81566434167753,44.815884096735,44.81601607521647,44.81628003604367,44.81659348492256,44.81694586819896,44.81733660708814,44.81744654695026,44.81757852175252,44.81762239577854,44.81764455754093,44.817987321515,44.81834771681784,44.81865552079189,44.81898537311653,44.81905133558482,44.81909520656029,44.81933708662683,44.81940321940854,44.8194250806805,44.81955694132818,44.81957906368958,44.81962295588928,44.8196447982897,44.8197547244108,44.81984290251696,44.81990873349554,44.81993059414013,44.81999672266338,44.82023839785261,44.82030452878015,44.82032636809951,44.82039248206475,44.82081004379939,44.82107382988909,44.82111792315568,44.82133774105441,44.82140345854024,44.8216233160755,44.8216454564865,44.82168933049055,44.82173335339035,44.82188726158514,44.82193124255861,44.82206321673545,44.82232726778477,44.82237127172763,44.82239321178994,44.82250314938553,44.82252508632959,44.82259122823739,44.82261316518061,44.82276205089861,44.82291016655643,44.82295396702968,44.82357556773461,44.82387800739178,44.82396620297194,44.8241201092795,44.82425209957754,44.82445539414001,44.82460399335595,44.82475804003276,44.82508815867119,44.82530808099168,44.82546188047053,44.82574767192372,44.82627552471962,44.82631941739875,44.82634129215862,44.82656131051392,44.8266930017064,44.82708891220949,44.82728694723929,44.82752872849577,44.82757301147526,44.82759496724005,44.82770490616705,44.82779278009955,44.82799059767946,44.82803489332449,44.82805683149357,44.82825454840037,44.82838652273492,44.82854055703997,44.82862852662535,44.82865038476979,44.82880438990655,44.8289361461299,44.82902415980836,44.82904609671633,44.82908988454535,44.82917784201512,44.82928766121309,44.82930967442653,44.82935356709221,44.82944152452652,44.82973269651816,44.82977115421366,44.82988679981852,44.82992523746616,44.82996913012774,44.82999098896357,44.83012285050508,44.8302109132718,44.83023286904667,44.83027686771739,44.83029880468192,44.83045302477929,44.8304749640893,44.83054082578808,44.83060683647908,44.83065083689078,44.83087070473061,44.83131619970194,44.83146460474388,44.83161872831568,44.8317726491487,44.83181665180491,44.83194870024842,44.83197055881612,44.83214650169105,44.83216835731638,44.83221253107571,44.83227847051231,44.83238839682612,44.83252036561017,44.83256423939726,44.83258610228901,44.83271824527858,44.83274010391449,44.83281211007932,44.83292701846465,44.83294888128095,44.83308636597504,44.83341059266407,44.83343271226531,44.83347660435599,44.83374054525185,44.83382862429391,44.83389437489964,44.83393835602143,44.83402653222409,44.8342024047376,44.83426824561196,44.83429050127805,44.83442229663516,44.83453229531207,44.83470816762331,44.83477430824136,44.83479626702897,44.83486210595098,44.83488434099015,44.83495018466514,44.83497214039568,44.83510421405942,44.83512615098373,44.8352582294203,44.83528016877179,44.83536797963757,44.8359181292344,44.83620960459123,44.83673201587532,44.83675395209313,44.83692993111195,44.83695188685094,44.83712816446349,44.8371501012843,44.8373039400421,44.83734801925755,44.83744697753639,44.8378538962592,44.83846990735705,44.83882165838734,44.83895364510217,44.83939373458823,44.83959146320027,44.8397014743826,44.83981156792152,44.83985547875999,44.83987733671376,44.8399214896711,44.84005345710828,44.84009734960295,44.8403172133012,44.84053715698353,44.84062505324303,44.84071300280742,44.84073514181936,44.84077903430556,44.84104295175153,44.84124065907535,44.84128473918124,44.84137250656785,44.84139466444439,44.84148261396333,44.84157042751328,44.84179602452136,44.84181261713007,44.84192247421685,44.84218643459231,44.84262643664436,44.84300020851699,44.84319806147172,44.84326426133238,44.84358331362523,44.84375388346974,44.84418837586105,44.8443479565351,44.84446352535767,44.84507958706599,44.84516768852349,44.84529404368456,44.84567375227468,44.8460207817147,44.84633443811708,44.84646634321003,44.84664245437231,44.84690830234945,44.84725887473148,44.84726993962801,44.84768841005754,44.84769950836329,44.84805191751212,44.84813983880112,44.8484262239939,44.84852549006705,44.84884469731624,44.84900427349932,44.84915305724827,44.84935115048042,44.8494721923124,44.84959895729166,44.85025459165442,44.85033153405469,44.85062344435895,44.85074479730744,44.85088791505218,44.85097083146238,44.85116402158356,44.85129101044407,44.85131297592576,44.85139558122521,44.85161044377389,44.85178663604148,44.85184727084179,44.85216702708104,44.85218906398648,44.85231038478071,44.85247554067033,44.85266324321636,44.85269608079032,44.85278439770543,44.85299362882497,44.85308182368373,44.85310388326447,44.85314790236955,44.85316994111466,44.85321421908102,44.8532360140558,44.85331341400856,44.85342330026783,44.85346758185715,44.85355569236165,44.85367131107819,44.85371561185905,44.85371581228467,44.85373243552272,44.8537986078931,44.85398012692365,44.85406824053921,44.85425574081314,44.85433863510042,44.85438262970463,44.85451524017378,44.85465856416069,44.85477980448482,44.8549664453824,44.85507922473455,44.85512352211467,44.85515110557519,44.85519520601002,44.85522825081605,44.85523397530604,44.85522853524601,44.85525592931391,44.85537182709708,44.85537192942923,44.85543243685166,44.85551530446039,44.8556753748914,44.85570848971489,44.85577465578834,44.85579098116391,44.85585721893019,44.85588489957694,44.85596733712007,44.85603347542268,44.85612167392039,44.85628738511119,44.85634267343072,44.85644718652071,44.85649157426459,44.85656872639038,44.85659086578846,44.85659116457263,44.85661877696832,44.85696042552774,44.85716461393139,44.857214237364,44.8574510289753,44.85777115633619,44.85795306298124,44.85805775928927,44.85812952697849,44.85815156377946,44.858278498884,44.85844370466771,44.85853208136967,44.85864250864943,44.85872537775997,44.85877522631623,44.85888575007091,44.8590567728139,44.85919162377968,44.85919004799688,44.85919476468933,44.85921692505669,44.85921703585316,44.85924479691648,44.85931094108498,44.85936066540515,44.85944875248369,44.85948750008203,44.85951528153322,44.85952624511715,44.85952615288534,44.85964203193673,44.85979631099764,44.85988429112656,44.85996699882125,44.85998903699961,44.86002770973821,44.86008278280774,44.86028649302676,44.86035834629227,44.86041351128179,44.86047399455845,44.86054003456256,44.86082085092687,44.86115109545179,44.86145955179691,44.86154779985856,44.86166347845801,44.86187301493568,44.86202175040322,44.86239605501883,44.86242915872501,44.86245656215559,44.86247889048801,44.86251172221392,44.86260007825096,44.86275977245552,44.86294689306376,44.86304611762012,44.86329401345944,44.86344276449369,44.86376208225136,44.8641143406027,44.8642136751366,44.8643405619309,44.86441783441628,44.86457230117775,44.86465519692791,44.86467220867859,44.86467809485846,44.86468365824365,44.86471121289166,44.86481033391273,44.86507461682869,44.86520655838979,44.86540450857022,44.86553645411794,44.86555839038434,44.86573443567313,44.865822230645,44.86584416680484,44.86588813249215,44.8659103454974,44.8659543520487,44.86610823236893,44.86626223052504,44.86632795392843,44.86654804474212,44.86663592358845,44.86670203067104,44.86678981381475,44.86705370776797,44.86717439933241,44.86729536839142,44.86733916375047,44.867361099984,44.86744895927007,44.86747121377331,44.86753683901007,44.86762500649721,44.86775666262384,44.86784480335866,44.86802064675048,44.86817454568263,44.86881278590958,44.86898900734178,44.86909355803314,44.86928084086261,44.86946263781364,44.86969389935282,44.86977662330096,44.86998048509592,44.87019558657963,44.87026714501854,44.87033897383616,44.87038284053588,44.87038827336028,44.87048214076623,44.8704930053449,44.87048766655676,44.87051534904113,44.87076868584904,44.87092865952401,44.87098377146391,44.870984248399,44.87099501776994,44.8710006715245,44.87108352983375,44.87117720363933,44.87133682033491,44.87141377838729,44.8714745710116,44.87155715173668,44.87171131614149,44.87171140476188,44.87176654377706,44.87177756445514,44.87181076266732,44.8718439503351,44.87184404364363,44.87191015380927,44.87196545187253,44.87196570918022,44.87197696075339,44.87197694357425,44.87196607700363,44.87197177648295,44.87198827474989,44.87206525386384,44.87210952956809,44.87213155301966,44.87220309110327,44.87225287634224,44.87225268501642,44.87230791085648,44.87230799934211,44.87236013941841,44.87240724383806,44.87246792444203,44.87252885772295,44.87251785637707,44.87250696999659,44.87250687380989,44.87249600122631,44.87248510246817,44.87248537717028,44.87247422887299,44.87247458616545,44.87245279368607,44.87245340676897,44.87246445604338,44.87246471544752,44.87247578495042,44.87246489013688,44.87243221700621,44.87238842506189,44.87237734643649,44.87227865194551,44.87220222846977,44.8721691967803,44.87207061308113,44.87199948609351,44.8719998308767,44.87202184406772,44.87206046558962,44.87211542300543,44.87246727505845,44.87255504076824,44.87270882269941,44.87275308531293,44.87281889678731,44.87291802009722,44.87296198456384,44.87307196640896,44.87326973149619,44.87333603467181,44.87344582890246,44.87365507928914,44.87373786533424,44.87377087065094,44.87380955485072,44.8738206200153,44.87382097729529,44.8738320062033,44.87383242894766,44.87386550453044,44.87390972853932,44.87390981990403,44.87394282733688,44.87399241174511,44.87408070690899,44.8742457210932,44.87448227198389,44.87457583132806,44.874658609337,44.8749445657272,44.87501472438498,44.87524625958861,44.87542214175792,44.87548816292286,44.87566373893133,44.87575176518246,44.87586158976978,44.87599324515582,44.87604820327,44.87618015635283,44.87623502382736,44.87637765440132,44.8765645601844,44.87665214862264,44.87667410391405,44.87689377040476,44.87695423977588,44.87705842170856,44.87712455187014,44.87721229721974,44.87725625656958,44.87734405832074,44.87747600899997,44.87768446470276,44.87792615167506,44.87799201376912,44.87812366706065,44.87846411577581,44.87849720087278,44.87871106543237,44.87905706399815,44.87927663366996,44.87937528464361,44.87944120244468,44.87946333162699,44.87950722414926,44.87959308411458,44.87960589032335,44.87959496072909,44.87964420635726,44.88000124299915,44.8801219397135,44.88027582732435,44.88033601512949,44.88039089963163,44.88045674366395,44.88050618291242,44.88057218413559,44.88061616604817,44.88063812134003,44.88068207846974,44.88076995276624,44.88101169414814,44.88114343487146,44.88131907344356,44.88149497170793,44.88178037987021,44.88206606521856,44.8821539380743,44.88222002688315,44.88234075816156,44.88242842852534,44.88264825027644,44.8826866079725,44.88292247589654,44.88305444947477,44.88327396891524,44.8834938644038,44.88382319564668,44.88397706429834,44.88415270254553,44.88441655976975,44.88459217758975,44.88465807543842,44.88472418088008,44.88481193169674,44.88505346185562,44.88509761756149,44.88513269174965,44.88555888581523,44.88573451679725,44.88584451211916,44.88590493293779,44.88609689910777,44.88653629335421,44.886558229225,44.88681078682799,44.8868327226993,44.88706313149611,44.88708508674461,44.8872829011403,44.88745843968282,44.88755740421609,44.88763411960348,44.88771655949306,44.88779882028305,44.88795245831555,44.88812814265115,44.88829291265363,44.88862213075061,44.88868796902756,44.88888567054187,44.88912165850886,44.8893850971603,44.88954426410356,44.88976393801241,44.88992862113761,44.88999444483139,44.89001629362996,44.8902140832888,44.89035676513642,44.89052697428679,44.89064769233508,44.89074086646404,44.89075192622631,44.89080663301223,44.89080682240792,44.89085072288098,44.89088330734023,44.89089970567822,44.89092173912785,44.89102588326134,44.89104236942421,44.89106995733149,44.89114141735908,44.8912126852786,44.89123462115884,44.89141038951443,44.89154748665182,44.89173973001419,44.89191547828527,44.89210198149241,44.89236560564167,44.89238772122039,44.89245354842826,44.89247539429493,44.89251956667167,44.89254141979996,44.89258529296065,44.89260742181793,44.89269539949709,44.89287084191571,44.89306878330392,44.89338713643631,44.89350810651143,44.89352453053687,44.8935957113255,44.89374970263122,44.89385923253292,44.8939253562679,44.89394722182899,44.89407897588683,44.89433135617526,44.89450710429578,44.89483638079351,44.89499027704719,44.8950121231041,44.8950562085375,44.89507804921934,44.89512183421553,44.89514369714347,44.89531953146852,44.89550054271101,44.8955170503753,44.89563240980471,44.89592878074425,44.8961647240786,44.89623056827397,44.89638445603695,44.89665342503052,44.89685629868995,44.89692222685603,44.89707051241351,44.8971252648012,44.89715829372939,44.89718015453521,44.89721853513954,44.89727329856812,44.89729514393767,44.89736109498186,44.89744343754555,44.89759705190647,44.89785502838973,44.89798689008474,44.8982393924211,44.89843729884737,44.89851401110736,44.8988107014488,44.89892040065743,44.89910160248765,44.89942576912143,44.8998757844394,44.90067764093027,44.90085346964695,44.90087531610193,44.9009411626244,44.90096327707832,44.90109512617573,44.90111698001123,44.90131465693641,44.90133676706495,44.90149057382266,44.90162231724995,44.90168814682006,44.90184184665519,44.90190793149426,44.90192980455029,44.90219348579026,44.90236903812005,44.90241318692664,44.90247884789392,44.90278642087416,44.90333582904632,44.90357738062515,44.90375310695134,44.90390697946052,44.90403883428559,44.90421456155424,44.90430252355886,44.90432436989702,44.9045002029921,44.90469776399876,44.90489561525169,44.90498348627376,44.90507125458165,44.90513727620614,44.90518126279646,44.90520319871821,44.90540084569067,44.9054228009268,44.90551056902731,44.90573036472457,44.90592812744043,44.90610385421093,44.90614783816407,44.90623568916094,44.90645540235931,44.90649918991076,44.90700459008501,44.9071145968478,44.9071583789613,44.9072463229455,44.90726827817117,44.90746622848766,44.90748816438766,44.90794950918021,44.90801540522796,44.90834500285954,44.90876245574284,44.90933384386911,44.91001514894049,44.91008094196052,44.91012494009357,44.91023471757045,44.91067419122798,44.9108921079192,44.91111384668892,44.91120179175138,44.91147648232013,44.91158629488371,44.91187188765231,44.91202574818871,44.91219074326175,44.9123664430562,44.91238293673216,44.91255337852657,44.91257522626886,44.9127511126075,44.91288303764696,44.91310263818987,44.91321249936987,44.91333346467635,44.91348166713377,44.91360812950475,44.91387204242839,44.91388855708171,44.91439941434277,44.91452033791109,44.91473443763009,44.91483899286469,44.91510279240882,44.91545427246998,44.91576206555197,44.91588290198825,44.91621802096063,44.91636086117179,44.91651486899858,44.91693802430796,44.91714123904941,44.91739951470618,44.91757542911596,44.9176027235796,44.91793800011629,44.91799836145499,44.91822916255046,44.91825126830083,44.91847632097235,44.91865785283566,44.91882805845654,44.91899853688782,44.91922378196971,44.919295203377,44.91947666135662,44.9195808838969,44.92011943876646,44.92074028834409,44.9210204236731,44.92139946161813,44.92156439667101,44.92183357501784,44.92200403964246,44.92205343218602,44.92222370438466,44.92244911896545,44.92265240715754,44.92267967365053,44.92275110769905,44.9228885777246,44.92299840355694,44.9231081656484,44.92320177371834,44.92327843568691,44.92339398029276,44.92343799010555,44.92346540291348,44.92351478702504,44.92375125788919,44.92393789040867,44.92406430589116,44.92413565469862,44.92424561450807,44.92432797520051,44.92436085657166,44.9243884597305,44.92438834618321,44.92443253725661,44.92452039954347,44.92459723354863,44.92460840069253,44.92476208633876,44.92487737533966,44.92505317461922,44.92517976320034,44.92524554546856,44.9252894808944,44.92530062410944,44.92533348379299,44.92533356841017,44.92537752548957,44.92541029128573,44.92554236536147,44.92559182196251,44.9257510740424,44.92587190155712,44.92595425234548,44.92626751953655,44.92637732644501,44.92659715753047,44.92667408264409,44.92669608872705,44.92670139139062,44.92667398402954,44.92665193346389,44.92665201279382,44.92660833213196,44.92656422217804,44.9265367922821,44.92626225450719,44.92608115553831,44.92605918080726,44.92598786972448,44.92594412384899,44.92594398838786,44.92600450730759,44.92607065601486,44.92607611812823,44.92610910857414,44.92618049704982,44.92621344990044,44.92627405301183,44.92634520558614,44.92637828650719,44.92642217688604,44.92648808262474,44.92655387497719,44.9266747145525,44.92672425395457,44.92678474820794,44.92681207793863,44.92683408213321,44.92690004745077,44.92692197640931,44.92693829387,44.92698254497445,44.92703176151753,44.92704826383652,44.92704832816865,44.92708121642674,44.92712531861519,44.9271800826217,44.92718016502858,44.92720761603213,44.927246184736,44.92724598229634,44.9272901926807,44.92728999019872,44.92731210713272,44.92733407817146,44.9273505874088,44.92735062697735,44.92731754717775,44.92731750497964,44.92732300046572,44.92737247972383,44.9274164249522,44.92754268763644,44.92763620333038,44.92772951364785,44.92775698886423,44.92779554332449,44.9278776918629,44.92796008538514,44.92820185408664,44.9282898705699,44.92833356260149,44.92839971208549,44.92853140082134,44.92883885670467,44.92908046424265,44.9291023996296,44.92925633657714,44.92927827192022,44.92936618725227,44.92938814224083,44.9295198418076,44.92954181633665,44.92958576357363,44.92960769897702,44.92965167001586,44.92967360533397,44.92976165104658,44.92993720631424,44.93004698064255,44.93053031956426,44.93072807584466,44.93081581063016,44.93090392432413,44.93107954133038,44.93127721965823,44.93132131793817,44.93145283966817,44.93147501030099,44.93171646481806,44.9321449286912,44.93229856788967,44.93249644081234,44.93274892261985,44.9328588232307,44.93301255500444,44.93305634516184,44.93319930572837,44.93327612639729,44.93329806169287,44.93344073362617,44.93346266892227,44.93352878893955,44.93355076347979,44.93372633274453,44.93386363589197,44.93394053036555,44.93404481617165,44.93424252421206,44.93450628401966,44.9346820239532,44.93479172591476,44.93496730724986,44.9351156102053,44.93523086318517,44.93528601834524,44.93554413384349,44.93594496636517,44.93601089015689,44.93603284508032,44.93612046373301,44.93627441411223,44.93644992185346,44.93690028633084,44.93710901636106,44.93755921369993,44.93778434283418,44.93780094134111,44.93819618584291,44.93836654317307,44.93855863071968,44.93888824260267,44.93909694700559,44.93920670866318,44.93922856534209,44.93929441997378,44.93931656072794,44.93944825513567,44.93955810466268,44.93964600939388,44.93975557951499,44.93984348173414,44.94014004727274,44.94027177795776,44.94043645984751,44.9405078532554,44.94056830593883,44.94062866990166,44.94094710185324,44.94111746846305,44.94123830168344,44.94133711401966,44.94136986587114,44.94174330582857,44.94177082732004,44.94185301104675,44.94190248086261,44.94203441323476,44.94216617000085,44.94218813539759,44.94239661213419,44.94251205640862,44.94260527320895,44.94264376154654,44.94266557231964,44.94268753556706,44.94268749254706,44.94269867532066,44.94269851285748,44.94272050699369,44.94273162432106,44.94275351858865,44.94279728747116,44.94293999378484,44.94298404670051,44.94298396639185,44.94303896968471,44.9430938352061,44.94329146354475,44.94340671747805,44.943516508195,44.94363163543587,44.94369216323706,44.94387330148967,44.94399399784032,44.94415334587777,44.94450996313014,44.94463089777456,44.94486144015809,44.94488892121525,44.94500432515007,44.94520176702797,44.94532256904535,44.94549820792912,44.94549812326208,44.94553105400374,44.94555322189458,44.94567394040509,44.9457780032125,44.94582756619759,44.94603618351823,44.94625595784697,44.94627791213979,44.94634374562482,44.94636568107558,44.94658523299346,44.94685989062124,44.94707375288682,44.94715640037053,44.9472441065183,44.94737587422993,44.94739782921451,44.94749687771207,44.94757377111461,44.94761757388839,44.94763950942888,44.94772728343338,44.94781519810926,44.94816651232502,44.94821058274753,44.94835321741333,44.94846307045529,44.94885836358088,44.9489571923779,44.94915508593507,44.94937469413901,44.94959412179836,44.94994585697978,44.95015448400561,44.95023675687329,44.95029733197646,44.95041791835067,44.95062658871271,44.95064861480304,44.95069250519176,44.95071452939604,44.95075841980567,44.9507967797342,44.95097802997198,44.9511484315572,44.95127476532347,44.95153826578991,44.95156031436449,44.95186787436531,44.95206534254832,44.95226308914771,44.95261460665321,44.95263654213972,44.95272427502596,44.95287813732482,44.95301014384388,44.95314194662772,44.95316388204538,44.95325161717489,44.95349328421461,44.95370184873561,44.95382271647362,44.95402049983849,44.95410826355904,44.95439376817315,44.95478941524372,44.95498701441226,44.95507485710208,44.95533853815859,44.95560212612985,44.95578884168842,44.95587671774665,44.95603025413438,44.95608532739045,44.95621712932267,44.95627757072191,44.95632121672846,44.9563597265867,44.95636511855965,44.95640357174044,44.95644201350824,44.95685405162138,44.95694187810329,44.95707360542521,44.95716144829475,44.95731532582229,44.95742493609421,44.95762271058064,44.95766669157124,44.95790831757541,44.9580674587425,44.95819375334728,44.95834744153959,44.95861120442341,44.95920435780703,44.9592922207168,44.95942411629424,44.95946790076194,44.95966545781506,44.96008576001389,44.96013799463925,44.96020364767019,44.96036864326931,44.96045621557663,44.9605881629358,44.96089571420399,44.96122512202614,44.96202678129841,44.96206542355318,44.96224669475994,44.96233447980496,44.96235643472415,44.96240022340342,44.96242215887784,44.96275165753818,44.96283961766441,44.96310867253669,44.96355337674907,44.96380592703193,44.96382796833299,44.96402564721087,44.9644594643781,44.96479451744418,44.96556314547791,44.96587062114494,44.96612333749052,44.96618918212822,44.96650241135915,44.96658455269623,44.96670542739943,44.96692502991861,44.96705687756802,44.96745216317206,44.96761141234289,44.96771577145268,44.96773781747642,44.96788064223068,44.96810009894138,44.96823201199322,44.9683857012305,44.96851762236621,44.96882495012012,44.96895698436762,44.96904471940032,44.96917664585587,44.96926440091158,44.96937445157122,44.96965977555829,44.96974768195278,44.9698795163098,44.96994533522755,44.9699672901229,44.97020905053664,44.97053860884807,44.97060442696474,44.97069227238715,44.97080214975929,44.97088999211196,44.9711097450345,44.97141741451939,44.97159297453372,44.9718787787445,44.97209830852312,44.97218633828592,44.97240598190212,44.97255971680636,44.97284526533235,44.97321873620187,44.97324075535759,44.97337256117989,44.97343865288246,44.97365815109325,44.97381208179021,44.97398787495382,44.97429516566133,44.9745148480785,44.97469053509793,44.97477858597563,44.97510810710264,44.9753498539248,44.97554738048612,44.97583305217947,44.97596492287796,44.97616257233553,44.97618450762405,44.97627242928216,44.97629436456955,44.97647007793521,44.97651413648915,44.97664603126327,44.97666796654678,44.97679968626878,44.97697554988506,44.97704117726821,44.9771291187707,44.97715105404904,44.97721713324002,44.9772390874797,44.97728305582519,44.97737090199858,44.97754640350831,44.97761241866184,44.97765639172322,44.97776616531991,44.97781013833919,44.9778979801764,44.97855704432301,44.97857888939912,44.978666862258,44.97873274619818,44.97877663632499,44.97899641847408,44.97917209070322,44.97919404556153,44.9793479843871,44.97961142543591,44.97974322212777,44.97976515738475,44.97980914673461,44.97996300081017,44.98013850554066,44.98020449792035,44.98046802389916,44.98049024022911,44.98051216769613,44.98070988305621,44.98099532603932,44.9812151067789,44.98163243712285,44.98187418920548,44.98209377707438,44.98233545871253,44.98253321267138,44.98268685299965,44.98292880821515,44.9830823377081,44.98336800777206,44.98371946441527,44.98399402350211,44.98412062813358,44.98417551228686,44.98427431490355,44.98437313135238,44.98455976344671,44.98481264598393,44.98492781156743,44.98504877087931,44.98515311778108,44.98534528053721,44.98540571325332,44.98552663370408,44.98559237994323,44.98567494196611,44.98602644247256,44.98613631323443,44.98629265638109,44.9864602178238,44.9864759873979,44.98656462391585,44.98665241980821,44.98676209081368,44.98693785779376,44.98704784161782,44.987091789292,44.98711372572375,44.98715769053205,44.98717964532224,44.98726756138502,44.98728949651615,44.98744305347808,44.98746498871341,44.9875311044653,44.98761894077484,44.98777276143425,44.98779469658163,44.98801436413525,44.98803629925894,44.98829980249038,44.98832177691518,44.98858535519607,44.98860757024089,44.98867338376159,44.98869533854282,44.98882705307932,44.98891487131436,44.98898098127328,44.98900291640867,44.98924439083956,44.98928846904379,44.98935425853137,44.98972764786119,44.98996924779052,44.99005727599386,44.99007921116117,44.99012319812336,44.99051841664272,44.99071631764311,44.99073825219734,44.9911117424603,44.99137518454145,44.99148487783251,44.99170460828269,44.99183643408828,44.99201222006204,44.99220983518133,44.99223180951419,44.99227575928568,44.99229769447339,44.99242951880598,44.99273722089903,44.99280304589798,44.99308861760592,44.99330820419618,44.9936158151999,44.99385729984202,44.99392313184782,44.99396716854611,44.99423067196906,44.99425262669805,44.99434054107633,44.99436275782443,44.99442856399148,44.99445049905522,44.99458221305812,44.99471411036724,44.99506559080728,44.99508752595029,44.9952411925328,44.99526312769547,44.99557081122519,44.99627360024322,44.99631756908981,44.99640542346397,44.99655914662227,44.99662512529457,44.99699836124446,44.99702041337441,44.9973938367747,44.99807490760558,44.99822870376752,44.99851421435894,44.99853624522223,44.9986238929154,44.99864590415397,44.99871197532421,44.99886568331076,44.99899746875844,44.99918404782336,44.99920616415955,44.99933803191438,44.99935976117638,44.99946981678028,44.99951359751009,44.99966731908782,44.99975531947984,44.99982124219594,44.99998168292267,45.00004496415747,45.00008893221724,45.00017678989669,45.00022045229236,45.00024267140372,45.00030847946078,45.00048433555931,45.00050631241167,45.00065984490063,45.00068205680787,45.0007698004036,45.00096746589396,45.00101156261669,45.00153869679248,45.00167040538406,45.00210982323588,45.00228567490084,45.00239543019127,45.00241743881133,45.00259329849717,45.00287897227251,45.00320833851691,45.00325221120703,45.00331828270226,45.00334031077347,45.0035158706654,45.00353788383983,45.00386745804337,45.00421899905044,45.00448275281973,45.0045045936732,45.00463652431918,45.00494429620097,45.00552651610742,45.00581765672099,45.00585625320083,45.00598266064909,45.00615296072473,45.00636181503268,45.00660359770746,45.00686200841396,45.00710910483126,45.00735672853403,45.00738948717137,45.00752138350123,45.00765343383834,45.00770279577345,45.0079006191123,45.00794477240112,45.00799422943763,45.00800513363669,45.00814798070041,45.00816452940316,45.00831824885704,45.00840632650215,45.00845013777299,45.00854924721688,45.00859309455874,45.00870330113508,45.00887329351808,45.0088898767218,45.00902718476841,45.0091976078979,45.00941741852646,45.00953271104902,45.00958778454663,45.00974182568434,45.009944954446,45.01000011771701,45.00999990501884,45.01002198319218,45.01003289532223,45.01005497652954,45.01006588428248,45.01014304934044,45.01016498793977,45.01019783559887,45.01019790374241,45.01022000309866,45.01026404182192,45.01026383124679,45.01032987426255,45.01038494018639,45.01038472705554,45.01048369300739,45.01052764812803,45.0105496775348,45.01062675749164,45.01065974870971,45.01065433792935,45.01068741126737,45.0107257356451,45.01079172046182,45.01079179329779,45.01081358421071,45.01084685538029,45.01086316955158,45.0109017222686,45.01090178950532,45.01093463730232,45.01096768899797,45.01100067332111,45.01100081292812,45.01101155881641,45.01101170325033,45.01103364463648,45.01104477572866,45.01112164724329,45.01113267106113,45.01117676085768,45.01117665233637,45.01124280836763,45.01125377778581,45.01127585245578,45.01131962255417,45.01131969152565,45.0113636276209,45.01136369964082,45.01139655952947,45.01141849347619,45.01146265816398,45.01148459367793,45.0115066864033,45.01150675274268,45.01159464923843,45.01159443441523,45.01162757521158,45.01162736338992,45.01173734779984,45.0117374169366,45.01198466050915,45.012067000172,45.0121000510761,45.01216602609502,45.0121768406602,45.01223174101994,45.01225398268723,45.01224285352536,45.01223203151508,45.0121783945005,45.01213340411635,45.01212766809861,45.01210531662294,45.0120947204482,45.01203454723903,45.01201246549473,45.01200158256949,45.01202352557003,45.01204560259468,45.0121444651602,45.0122211854743,45.01222125376966,45.01224332747825,45.01225429969816,45.01228736036968,45.01232035765222,45.01234768584842,45.01238619163308,45.01256724795103,45.01269369527034,45.01300123293824,45.0130944844872,45.01315502089912,45.01331413045769,45.01339671825841,45.01348442904008,45.01370409622285,45.01392910889551,45.01425310765389,45.01441234611107,45.01445096874582,45.01447289788108,45.01456064812242,45.01458820170604,45.01471455399155,45.01474182522718,45.01475832559625,45.01480781258066,45.01482431470365,45.01500546968909,45.01502197005138,45.01515923646437,45.01517573257362,45.01541709538348,45.01543916316598,45.01554895746282,45.01561501202721,45.01565890113333,45.01572463426238,45.01590590617258,45.01592238781037,45.01597191878975,45.01598841490244,45.01605974182463,45.01607624036038,45.01610353575919,45.01631761500659,45.01643299220008,45.0165153850386,45.01658670956854,45.01664728597406,45.01671860797951,45.01673511193383,45.01676238072728,45.0167788810367,45.01680645322607,45.01688884848366,45.01702608465335,45.01704258615946,45.0170701372308,45.01715224837242,45.01726201126503,45.01743775043492,45.01756964684697,45.01772351435625,45.01787713413515,45.01792098792854,45.01810219785383,45.01825047673082,45.01847020542776,45.01849779876685,45.01851397381035,45.01862949310968,45.01864599325339,45.01873927140778,45.01879954604786,45.01893153943652,45.01898076643383,45.01899724550523,45.0190467733034,45.01906327227854,45.01910714694357,45.01917851040746,45.01919497201312,45.01924449748829,45.01926099877601,45.01935427996792,45.01937075726546,45.01952994871487,45.01961234104368,45.01972773762872,45.01974395974992,45.01997902042903,45.02014486002673,45.02030427785989,45.02063909930004,45.0207544307783,45.02088630136571,45.0209960677373,45.02102362120769,45.0210401168793,45.0210893238709,45.02110582810286,45.02123775152232,45.02125958994464,45.02130912078317,45.02144088147728,45.02158370966065,45.0217922669794,45.02184725930564,45.02192951944707,45.02206697243233,45.0222864671809,45.02245665722625,45.02255017386852,45.02265461185856,45.02272599098468,45.02281387233056,45.02304996592114,45.02326954611222,45.02334647841404,45.02345623979679,45.02376933861882,45.0237858195085,45.02380775403864,45.02384600730002,45.02396142182732,45.02414278406818,45.02424697156922,45.02438419571305,45.02442279130066,45.02451063309485,45.02479618043915,45.02508703473816,45.02516959021504,45.02543840652844,45.02556489695362,45.02574599048619,45.02578460827809,45.02581187756726,45.02582837581525,45.02591618223741,45.0261578408341,45.02617989492612,45.02631151891444,45.02635554440363,45.02677270443336,45.02681675603361,45.02697035678286,45.0269924714678,45.02706365690604,45.02708013335059,45.02721196229307,45.02723408414592,45.02732200173905,45.02741536838279,45.02745370675922,45.02747564134549,45.02754143150644,45.02756336607031,45.02760732334348,45.0276951465464,45.02772272049585,45.02773921868523,45.0278709090643,45.02809045288519,45.02833207564606,45.02855179638558,45.02872739623265,45.02890306354184,45.02903489293514,45.029254496211,45.02938624610967,45.02945777411125,45.02951821177481,45.02960593306153,45.02978720998705,45.02980370566663,45.02983097975995,45.0298477571091,45.02994094268306,45.03024304072459,45.03041849348086,45.03046820968435,45.03063848576583,45.03086830246012,45.03095138401751,45.03096788439613,45.03105552302652,45.03112134644199,45.03125334283095,45.03130258645115,45.03131908677484,45.03138507265205,45.0314345834094,45.03145105841779,45.03150030507112,45.03151678733975,45.03161018395451,45.03162666023535,45.03167618663005,45.03169266594331,45.03180226075634,45.03182439992597,45.03202748646518,45.03204398930068,45.0321098101867,45.03217570150198,45.0323787590315,45.03239525699443,45.0325986257842,45.03261484077089,45.03275210641939,45.032768605481,45.03292237326151,45.03294448704172,45.03303224610463,45.03305410599307,45.03360345276801,45.03384476020434,45.03386685703524,45.03391074586493,45.03399859144627,45.03415235492343,45.03417418992021,45.03426223182272,45.03428408924535,45.03441589651348,45.03443799330039,45.03452577036256,45.03459149917666,45.03520644437459,45.03525049555859,45.03553602245559,45.0356677169334,45.03582159476979,45.03597524897226,45.03610687849856,45.03623885260554,45.03637069989139,45.03648049011539,45.03652444543494,45.03662306439222,45.03666148189922,45.03670548057582,45.03671650536621,45.03691421671366,45.0372491115456,45.03733153261397,45.03737559629784,45.03747437770921,45.03765008776856,45.03786412710662,45.03795747299009,45.03808937829793,45.03821565008948,45.03852863160488,45.03898988721047,45.03913279457486,45.03927004208899,45.03937997367636,45.03950616149428,45.03970935793033,45.03996180009803,45.04026942833226,45.04035727240671,45.04040122342681,45.0404231571779,45.0404671323849,45.04051651997299,45.04055483645472,45.04095023052174,45.04107653442898,45.04119183874982,45.04136763072671,45.04145545822428,45.04150484819574,45.04174645935225,45.0418496020437,45.04191850621407,45.04200623219275,45.04211617177913,45.04242379889616,45.04251161769859,45.04255559015794,45.04273153418801,45.04303898277553,45.04347810916743,45.04363192457475,45.04382969600714,45.04389542371107,45.04398329890222,45.04424688735065,45.04442257891603,45.04446648751097,45.04455429958005,45.04457625393132,45.04462005895146,45.0446420133027,45.04468581831568,45.04470775021741,45.04475187745609,45.04509214226852,45.04557522454292,45.04581687977397,45.04592673660416,45.04601467676164,45.04612430830342,45.04643189278589,45.04660777298462,45.04676145050275,45.04706906279554,45.04720080525734,45.04737640735987,45.04795849660299,45.04811221124871,45.04815605376492,45.04817798814673,45.04823841269591,45.04834269987825,45.04845259603582,45.04865019243162,45.04897983600618,45.04906769768123,45.04948500715926,45.05005588401441,45.05023161705257,45.05045128600671,45.05100053657781,45.05115419800886,45.05139585488422,45.0514398643593,45.05150568434356,45.05159339810188,45.05163726672821,45.05170333020972,45.05174721892612,45.05176924868339,45.05193388330667,45.05197768658142,45.0522190523472,45.05233987436306,45.05252644334177,45.05273578967108,45.05282296718595,45.05302073348069,45.05304250639742,45.05308637508637,45.05310842899902,45.05318534878489,45.0532073784858,45.05349288026014,45.0535695001659,45.05359155220399,45.05363542091337,45.05365747487883,45.05370138352639,45.05372343436842,45.05381121109607,45.05393368406179,45.05396965790664,45.05404223807699,45.05415397430081,45.05427739930753,45.05434662255519,45.05445909768905,45.05459098863955,45.05472273406959,45.0548765364707,45.05492023882847,45.05524995389386,45.05531028131224,45.05541463088851,45.05607364027328,45.05620524952669,45.05624920105706,45.05662300565506,45.05701830545358,45.05723809711196,45.05729851304561,45.05732069441514,45.05734265514717,45.05734813897278,45.05737012237478,45.05738688143033,45.05745806085155,45.05750216895981,45.05749089565977,45.05747997825025,45.05744136577339,45.05743594287448,45.057452347377,45.05750703769672,45.05754000723105,45.05757285221225,45.05762239979254,45.05777597514818,45.05779781396149,45.05784200181802,45.05792982246544,45.05797377391548,45.05799572822246,45.05808373271242,45.05817149637879,45.05820991907209,45.05823762651448,45.05823781111805,45.05820523421185,45.05820579845069,45.05818405096537,45.05815139918211,45.05812963863114,45.05811881906386,45.05810799131142,45.05810796161234,45.05809705030914,45.05809723634351,45.05808634327457,45.05808625237532,45.05807542014368,45.05806477145129,45.05805400348927,45.05807615937724,45.05811489180952,45.05812590781302,45.05815888295163,45.05818619676,45.0582082270399,45.05826850596885,45.0583287313824,45.05833951895067,45.05836161266757,45.05837223739228,45.05838340990294,45.05838328454696,45.0583942161666,45.05838824819135,45.05839894607897,45.05839282365824,45.058381736824,45.05838149398042,45.0583921867709,45.05840309959595,45.05841408633014,45.05844682754093,45.05844676189208,45.05850159480963,45.05854545422962,45.05858375627338,45.05864963548084,45.05879764205433,45.05903924485759,45.05917092429112,45.05945625447984,45.05965398482387,45.05976384358086,45.05982983198655,45.05993967074537,45.06000567251094,45.06007174482282,45.06009369909938,45.06026942086762,45.06035726377501,45.06040121319057,45.06042314751812,45.06066486187922,45.06097272027345,45.06125836917447,45.06132423754755,45.0615439009765,45.06156601948388,45.06174182035349,45.0620492772821,45.06224723217101,45.06251067359899,45.06253262911882,45.06257686165512,45.06259879598373,45.06268653779696,45.06286229847581,45.06288441559132,45.06301606360094,45.06310412178972,45.06346633643457,45.06366384429074,45.06383960483755,45.06408126097661,45.06421302722548,45.06469616785511,45.06508032087369,45.06516809919606,45.06540968550254,45.06551967304131,45.06566235697441,45.06574479453412,45.0658709123659,45.06614507236855,45.06627692928397,45.06636455479045,45.06645772949417,45.06651269502999,45.06668288661576,45.06670500620975,45.06679266336526,45.06696860348449,45.0671005241711,45.06732037359354,45.06736438863103,45.06743033660128,45.06745245195925,45.06756226252384,45.06789180645153,45.06800196885073,45.06813370858676,45.06825471333254,45.06837584512444,45.06856302958538,45.06863460357189,45.06888217423239,45.06905274564785,45.06928411363364,45.06949319848387,45.06957029174732,45.06962007587806,45.06975228179068,45.06975234351243,45.06978544090511,45.06978550556308,45.06985149892831,45.06985156291123,45.06995079886524,45.07034230763072,45.07036458940506,45.07045271878003,45.07047501514721,45.07050807383594,45.07054115161623,45.07056327085532,45.070585447658,45.07064063730839,45.07067921505007,45.07072324807223,45.07078989802638,45.07081207637762,45.07082313619733,45.0708619272735,45.07087874837149,45.07088948501146,45.07090076357513,45.07091181954662,45.07091194015158,45.07093383185634,45.07096738706444,45.07096788688293,45.07099015802056,45.07105655584088,45.07105667731241,45.07106745341223,45.0711008614341,45.07111193179746,45.07111226933011,45.07113459844363,45.07114557408592,45.07119585216956,45.07119150349433,45.07115893104241,45.07113727356155,45.07109902218357,45.07109944242227,45.07106706770004,45.07105635725521,45.07106215901658,45.07105685586887,45.07101874042156,45.07099177741661,45.07088291040817,45.07087197195393,45.0708609622847,45.07083920095928,45.07079556014774,45.07077369082867,45.07071900004512,45.07068643815757,45.07063719062955,45.07057182638419,45.07057159856844,45.07054977888559,45.07050607105278,45.07042961814805,45.07041855086214,45.07034204018675,45.07030916791488,45.0702326171267,45.07017809706481,45.07014543287133,45.07009057362932,45.06999183952602,45.0699042552847,45.06982731199358,45.06973945156967,45.0695201028222,45.06936620160167,45.06930031838456,45.06923451534411,45.069025065285,45.06905888515823,45.06910850042623,45.06916872058328,45.06921823558253,45.06923504177976,45.06921311311064,45.06913078967666,45.06903216714386,45.06887875937476,45.06873072122963,45.06858262917707,45.06847847961729,45.06838527370934,45.06829181269296,45.0681382727056,45.06780878122468,45.0675672071355,45.06730361964394,45.06721596387396,45.06701812984554,45.06679859799473,45.06662282349787,45.06635959099507,45.06633761672681,45.06629380136214,45.06620579980946,45.06605219020308,45.06598639149501,45.06583812057958,45.0657665604026,45.06567897287589,45.06554724050058,45.06548139422501,45.06543722688534,45.06541547464803,45.06536049790215,45.06533827298959,45.06533812486091,45.06534902916678,45.06535994856579,45.06537087221322,45.06537052718176,45.0653596632793,45.06534298862488,45.06529906674346,45.06522768525427,45.06518384897361,45.06511794859978,45.06507406116673,45.06504108594407,45.0650248009934,45.06501942207964,45.06504146584908,45.06508004892763,45.06519533917065,45.06523375827908,45.06523932919267,45.06523960242505,45.06522315481954,45.06519583762055,45.06515184594947,45.06510804132699,45.06493223015872,45.06491041578784,45.06469063835625,45.0646466746928,45.06451480013376,45.06441065758946,45.0643774172004,45.06433917875527,45.06424551933306,45.0642289447697,45.06419053816173,45.06413013373207,45.06408632270715,45.06404237616487,45.06402102244794,45.06403654203905,45.06400989321833,45.06384431469812,45.06381725195633,45.06378429616642,45.06375688316175,45.06368554174249,45.06363589951305,45.06360857515643,45.06358641779136,45.06360841057316,45.06378379438595,45.06383851550966,45.0638549431552,45.06382754146023,45.06380535047877,45.0636844919958,45.06360227473941,45.06358028124566,45.06350354317395,45.06341023986851,45.06336104768344,45.06333913404333,45.06337790983119,45.06344398997363,45.06360872792796,45.06366940089816,45.06368585220915,45.06370225909423,45.06369697336017,45.06364191621373,45.06353768035525,45.06329620320227,45.06320850458387,45.0631697938225,45.06314252769439,45.06310956420209,45.06307632752843,45.06304323232057,45.06295485700504,45.06295491868563,45.0629711284478,45.062993032504,45.06304786378634,45.06305882808207,45.06303646454881,45.06306382875997,45.06306386870455,45.06304176175949,45.06298680909914,45.06293190978883,45.06284395344867,45.06282209703797,45.06273424330787,45.06238260485567,45.06214115276676,45.06200919717084,45.06195439382233,45.06187752204995,45.0618114982902,45.06167989859495,45.06161389495854,45.06154815666347,45.06148213289726,45.06144371554389,45.0614107389268,45.06141085050487,45.06142753864705,45.06151544702362,45.06153746014373,45.06164745008272,45.06171362225625,45.06177959787326,45.06195513008357,45.06197731914848,45.06199925313405,45.06213102759222,45.06221894104264,45.06233975117762,45.06241657559412,45.06252638103255,45.06257014975074,45.06261417115081,45.06265280968567,45.06268584437236,45.06273542626814,45.06286777737158,45.06287880736798,45.06287901583979,45.06286816801254,45.06281339049457,45.06273088237002,45.06260484888276,45.0625390601963,45.06247292203052,45.06231947085191,45.06225356671617,45.06220397683774,45.06216580197454,45.06214922061224,45.06216036416741,45.06215485663251,45.06212187944506,45.06197930150507,45.06189147815437,45.06184766812298,45.06164981307686,45.06143015984597,45.06134238372742,45.0612105730337,45.06107891557549,45.06105698172549,45.06099111238222,45.06074957186133,45.06068373775062,45.06062344085353,45.06050811071298,45.06033249776828,45.06020105574559,45.0599159362683,45.05984986922013,45.05980600199237,45.0597454412701,45.05969621686617,45.05963014559129,45.05958649394975,45.05950963543145,45.05943291962849,45.05938882983785,45.05912543949017,45.05905977748344,45.05883999806228,45.05879598285599,45.05862057301957,45.05846690692393,45.05835707463229,45.05831312768328,45.05791766887926,45.05778590573235,45.05767624751736,45.05732488968236,45.05708343046271,45.05706152799578,45.05690799254216,45.05624913423273,45.05618338948044,45.05598582379879,45.05578795109386,45.05556818572421,45.05548035502635,45.05541465790486,45.05526078062903,45.0551947564776,45.05508486048925,45.05499695241672,45.05482666239597,45.05476639400996,45.05471147588147,45.05468925794338,45.05453570251763,45.05446975940825,45.05436016984815,45.05414044532711,45.05403043846844,45.0540085622816,45.05394271729332,45.0537946563601,45.05367940974922,45.05359145842199,45.05348176291408,45.05332794273799,45.05328400723585,45.05315250963954,45.05310851758978,45.05288909156002,45.05277942023258,45.05253778276321,45.05240584333488,45.0522304465392,45.05214256333985,45.05205486691504,45.05185714494602,45.05163748783019,45.0513520087477,45.05126420034593,45.0511545083363,45.05104477565869,45.05095157860823,45.05090223513178,45.05088577208851,45.0508914451384,45.05090219379143,45.05094095770563,45.0511549568602,45.05124290988716,45.0515612621696,45.05158313873641,45.0516490091389,45.05170390068902,45.05185749871305,45.05223113610324,45.05242859937431,45.05253858858761,45.05267020141823,45.0527799215306,45.05281832142755,45.05287884285754,45.05295005899615,45.05304868591146,45.05310893070767,45.05320225848611,45.05337225767659,45.05343812182539,45.05350399193198,45.05355880364763,45.053580737536,45.0536466278475,45.05366858201191,45.05373445096967,45.05375638481495,45.05380051523039,45.05382244914128,45.05392125158279,45.05396511881965,45.05408577023295,45.05419548027086,45.05421759554137,45.05432730123981,45.05434941468566,45.05448123570996,45.05456906888728,45.05461293676913,45.05463504766582,45.05476671425756,45.05488198280555,45.05494248858418,45.05496432278415,45.05503021950437,45.0550741615539,45.05516228346504,45.0552279562206,45.05529398902475,45.0553106411068,45.05544263505721,45.0554593701513,45.0554592775888,45.05547564668792,45.05550863344273,45.05553620927965,45.05562401233571,45.05565165796502,45.05560771010931,45.05556915465305,45.05550883378579,45.05543748939167,45.0553882253345,45.05539380528288,45.0554488063898,45.05552603776712,45.05559177477001,45.05561396945451,45.05561403314363,45.05559793882617,45.05559785360359,45.05561454601653,45.05562560087215,45.0556254270336,45.05565865936021,45.05568070642014,45.05572476583098,45.05574707763074,45.05578017943257,45.05578024841862,45.05575824674346,45.05571457493293,45.05569252120145,45.05568166961046,45.05568183497526,45.05569274489397,45.05573131521854,45.05580843556711,45.05585794657551,45.0558854951584,45.05595126123828,45.05601156396389,45.05603907698243,45.0560774060252,45.05612142841522,45.05613238074026,45.05613784794133,45.05613257048542,45.0561600513105,45.05622032437667,45.05639621994128,45.05650592083688,45.05659398597147,45.05668176851303,45.05672581255734,45.05687931257243,45.05692335353386,45.05712123367849,45.0571650713125,45.05723114685779,45.05729699129724,45.0573956695674,45.05741210491867,45.05745063626662,45.05746707460749,45.05772504498028,45.05787897494665,45.0579666826945,45.05810977734944,45.05834609899759,45.05839009986568,45.0583902610046,45.05834650613848,45.05828058279518,45.05825309616461,45.05822581016435,45.05823153192036,45.05826460229903,45.05831944819561,45.05833591612626,45.05829209094716,45.05830856418704,45.05836376369199,45.05844065098069,45.05848445111219,45.05855043983438,45.05866634860492,45.05872642627376,45.0587376117879,45.05877070068271,45.05880374991973,45.05886408746503,45.05897977437996,45.0590182590986,45.05903465194066,45.05902399078247,45.05898024512494,45.05895841291056,45.05893640793616,45.05893661762997,45.05896956258059,45.05900262544717,45.05900835326354,45.05900294198583,45.05895905119099,45.05892065988338,45.05888241287059,45.05876162445092,45.05872319727285,45.05863570655549,45.05859698210831,45.058525881678,45.05834468554926,45.05814720559136,45.05810334619303,45.05802655244342,45.05801551948406,45.05801585465671,45.05802663374386,45.05810914789114,45.0582245539838,45.05835647023731,45.05851027134095,45.05888379535957,45.05905942802255,45.05910337253929,45.05912532347175,45.05921320206806,45.05945506342008,45.05969648801346,45.05993819338207,45.06009199588552,45.06017992339595,45.06035537852645,45.06059708385028,45.06068506237097,45.06123398693991,45.06160741017001,45.06182690431897,45.06190369589765,45.06207930082869,45.06218916185035,45.06227699401445,45.06258444045395,45.06265054364128,45.06274932322068,45.06285895227059,45.06289193968888,45.06311135488153,45.06327600604763,45.0634406291208,45.06371521933758,45.06391270004931,45.06393458438743,45.0640224601588,45.06415410185062,45.06432977445677,45.06435165444379,45.06460411093463,45.06465907633106,45.06470850771524,45.06473035640557,45.06474672451417,45.06480130547071,45.06492205650466,45.06496032353263,45.06500950590149,45.06508093934024,45.06520723872017,45.06526207714734,45.06527307823922,45.06527297529421,45.06525653568795,45.06521790461365,45.06515195846025,45.06502034236787,45.06495982372749,45.06485555968638,45.06481163786334,45.06477849828927,45.06470164163754,45.06467953211626,45.06465748189044,45.06455879719481,45.06454240554042,45.06452573888618,45.06452586223712,45.06456414888725,45.06469573464778,45.064772583471,45.06483291255918,45.06492630314393,45.06494823502063,45.06495907152489,45.06496443836443,45.06499193492063,45.06515660936459,45.06521714280494,45.06544201166123,45.06554620533331,45.06561753264663,45.06565606512257,45.06567250385392,45.06575476424034,45.0659964133441,45.06604559126541,45.0661446456681,45.06616096141725,45.06622686739306,45.06624892311781,45.06630365548325,45.06634760139671,45.06636979257892,45.06639716194464,45.06639183201506,45.06638085031333,45.0663534314517,45.06623805632037,45.06619973534117,45.06617783514251,45.0661997373748,45.06634820539763,45.06638640303601,45.06640320039574,45.0664031074167,45.06639217882457,45.06635365557274,45.06628806675342,45.06610689993065,45.06593107013909,45.06582151807837,45.06575545965949,45.06568959147844,45.06565669217116,45.06565125096886,45.06565671521246,45.06569532455239,45.06576132644126,45.06578322893508,45.06579975009808,45.06578333602508,45.06570107993276,45.06551426632858,45.06549792414282,45.06549261878673,45.06550903698605,45.06552560491851,45.06559140477106,45.06565722088924,45.06570123682918,45.06585493563394,45.06590982636111,45.06599206459153,45.06611267111667,45.06620592690819,45.06624448443606,45.0663269207086,45.06637078144568,45.06652451353165,45.06670032681525,45.06674426640262,45.06681029071847,45.0669202589671,45.06705200780257,45.0671180065027,45.06718403118592,45.06729384523393,45.06738172356252,45.06757398369737,45.06761261042355,45.06765654991088,45.06764580170478,45.06761269310771,45.06755800290641,45.0674041529364,45.06736041813961,45.0673055823726,45.06715178659574,45.06713564221582,45.06714103400468,45.06720164924825,45.06744874076937,45.06753666957834,45.06793192427826,45.06810778679495,45.06819568664046,45.06830547700319,45.06837142023327,45.06852516257653,45.06859109345138,45.06865695630098,45.06876674824083,45.06881076333028,45.06885452926682,45.06894258149941,45.06911828423747,45.06927188172191,45.06938162093374,45.06946965470328,45.06964543381933,45.0697839160824,45.06979903302209,45.06982106507905,45.0698594829604,45.06991417353456,45.06993084489463,45.06997470921319,45.070013162424,45.07002983265919,45.07006256497745,45.07011756009727,45.07017242363155,45.07021107837205,45.07024948209218,45.07029867413766,45.07031509621596,45.0703919162012,45.07050180613999,45.07056788098375,45.07062810666827,45.0706883623426,45.07075428520833,45.07079835678945,45.07093006416596,45.07103430656111,45.07113865601811,45.07135822441853,45.07146806335198,45.07155601410016,45.07162194426328,45.07166579696585,45.07184124828868,45.07192918520021,45.07203876504229,45.07233530699287,45.07284049336232,45.07301620713432,45.07308219757751,45.07310413131418,45.07316977401324,45.07326868328458,45.07334538109762,45.07337284088538,45.073378305749,45.07333988518559,45.07327940190468,45.07323538408197,45.07317487089237,45.0730926132124,45.07274124719812,45.07238967555466,45.07227996696074,45.07221407998227,45.07217026695039,45.07201633294063,45.07197244521413,45.07186802645484,45.07173081861078,45.07167036090473,45.07159923769149,45.07153333437275,45.07142334630264,45.07140135691758,45.0712474110962,45.07118150762431,45.07080788178565,45.07067623936059,45.07062101344739,45.0706103324223,45.07057729758184,45.07048359074562,45.07043419080369,45.07039028273716,45.07027528417316,45.07028021080785,45.07031339582225,45.07037906392814,45.070483562551,45.07051636176389,45.0705327286633,45.07052719138521,45.07048883941782,45.07045575094759,45.07045025353183,45.07049377734106,45.07052134768944,45.07057059708934,45.07064751703541,45.07072429041622,45.07084513224982,45.07094934365254,45.07098235973073,45.07104808022314,45.07146535968461,45.07157532310469,45.07181698046784,45.07194851699714,45.07206940596443,45.07210772713069,45.07213529052464,45.07214060167437,45.07213521506193,45.07211856434468,45.07206367184169,45.07192074661534,45.07184954256852,45.07181632114427,45.0718164746409,45.07183293477526,45.07184937604622,45.0719041433391,45.07226669141171,45.07233237762635,45.07238742525316,45.07248599494132,45.07259585414745,45.07270558179063,45.07274931207121,45.0727987058873,45.07288099379983,45.07294137175285,45.07299084358981,45.07317724663772,45.07347366918361,45.07356170225448,45.07369334514208,45.07371561535844,45.0737814068315,45.07382549965246,45.07397907152988,45.07415493692068,45.0742427909862,45.07435242126226,45.07459409136003,45.07472604238215,45.07487988090444,45.07492364206376,45.07501141691494,45.0751871206045,45.07520356476347,45.07528599797401,45.07536290164599,45.07545065631207,45.07549471994558,45.07569220474321,45.07593391251326,45.07627424549697,45.07638402670159,45.07647198576997,45.07658158687593,45.07664774177123,45.0767136881145,45.0767796089153,45.07682332321518,45.0769111740841,45.07704852786666,45.07710890723321,45.07717477726703,45.07719666046258,45.07734468026953,45.07745995751197,45.07750386556632,45.07756991456852,45.07767938699776,45.07775631719969,45.07780020503028,45.07783323810667,45.07807488987248,45.07844826003641,45.07900243214938,45.07905722294315,45.07913958064628,45.07923840991074,45.07926589704378,45.07929306422502,45.07930941581731,45.0793094311412,45.07930368685932,45.07928192513115,45.07924896653307,45.0791992864945,45.07915005260267,45.0789962092304,45.07890840667002,45.07888658087039,45.07884267281051,45.07875462988444,45.07857894264545,45.07852927733965,45.07849622778432,45.07845225043984,45.07844111287197,45.07844091550424,45.0784574057168,45.07850109673531,45.07862167408015,45.07865470106368,45.07869296344887,45.0786927506423,45.07864320643401,45.07851139572919,45.07846728967026,45.0784340602758,45.07839552316173,45.07839553495649,45.07843368157747,45.07842801808738,45.07841148824791,45.07829054259818,45.07827929541991,45.0782955124868,45.07831190405827,45.07827313496906,45.0782347779786,45.07785017098224,45.07777336254471,45.07759196766958,45.0775257794585,45.07751500967983,45.07745446026944,45.07729458018571,45.07698727347653,45.07697098234836,45.07698142884443,45.07749828786928,45.07767416409397,45.07789393150565,45.07802597303737,45.07806968740395,45.07815767614498,45.07820156408313,45.07825657402631,45.07829481918667,45.07836591781899,45.07843179022677,45.07845366868918,45.07850300484068,45.07853018683392,45.0785297560321,45.07855166988266,45.0785956711372,45.07868901353127,45.07871629779101,45.07871624739281,45.07873266338399,45.07873243891166,45.07869358913008,45.07866055047474,45.07858334600579,45.07850657597871,45.07848447261658,45.07846791814905,45.07846768060165,45.07847310500099,45.07849526490466,45.07853353243932,45.07856113989433,45.07866002419181,45.07890752241792,45.07895158721258,45.07899580929262,45.07899591297154,45.07890864157903,45.07889762153028,45.0788866799301,45.0788758289384,45.07889230482504,45.07892537101686,45.07896933603675,45.07905728481005,45.07917246129744,45.0792985344362,45.07937523457535,45.07939712867122,45.07951752744481,45.07967101579462,45.07983552477611,45.07983554965042,45.07987919577258,45.08000537537922,45.08005452672689,45.08016954765555,45.08019693749744,45.08022963627696,45.08025148189022,45.08025142553269,45.08028983254802,45.08032810383328,45.08036109333887,45.08044919601105,45.08049315748781,45.08053147357072,45.08054252563358,45.08052047646921,45.08047653779119,45.08047088842122,45.08050361946768,45.08055316458488,45.08055844627942,45.0806024254193,45.08067936955661,45.08071205540696,45.08081085425128,45.08112363847328,45.08118408983841,45.08125521399949,45.08131004672359,45.08135392795798,45.08137606363255,45.08139237828901,45.08150229781286,45.08154628932878,45.08156830124717,45.08161206545068,45.08163413397524,45.08176600808429,45.08183198464229,45.08187587264876,45.08194166226659,45.0820623053228,45.08208423916639,45.08210073186326,45.08211206946319,45.08212856213495,45.08222729605045,45.08233723916832,45.0824029579955,45.08244701492605,45.08251266812364,45.08255111185559,45.08258952324511,45.08265524923735,45.08274266306142,45.0828419011616,45.08294628740439,45.08301213061264,45.08320403281145,45.08331384438647,45.08342378529704,45.08353357734534,45.08363243317854,45.08370917530004,45.0838849829552,45.08396726866957,45.08413753891168,45.08423067603368,45.08433506959898,45.08446684745849,45.08454384988098,45.0846040193668,45.08463699724911,45.08467545951505,45.08480126951866,45.08487830863741,45.08496599245758,45.08509228694923,45.08518000709569,45.08522389746623,45.08552028422678,45.08573992634341,45.08584977227627,45.08591580422748,45.08595971226096,45.08615741710189,45.08625599063841,45.08627802371137,45.08655255307298,45.08693473216422,45.08703578759062,45.08716766137162,45.08734345123752,45.08740932862919,45.0877169903065,45.08778256589311,45.08793652986455,45.08815632006635,45.08833185168969,45.08844187487843,45.08846380881729,45.08892533400882,45.08905721043311,45.08938665109087,45.0896064107981,45.08980429791402,45.08982623175029,45.08991411752403,45.09013380924179,45.09022158446658,45.09026562828158,45.09039747961695,45.09041941344807,45.09048544999825,45.09050740398091,45.09072711876865,45.09085900291917,45.09116671896214,45.09123265009461,45.09134248083711,45.09156248665392,45.09165037281098,45.0916723639499,45.09182604419409,45.09217775666195,45.09233150308312,45.09250769896009,45.09274946381301,45.09294723725838,45.09312322738064,45.09323307250514,45.09361789237921,45.09381597906397,45.09391492406201,45.09420637643425,45.09431091592565,45.09444276228648,45.09454736223056,45.09456393099248,45.09474555492107,45.09486101113373,45.09500958378388,45.09508117553851,45.09510321644495,45.09510326671467,45.09512530650758,45.09512536221486,45.09515845234299,45.09515850801634,45.0952244257855,45.09522447592738,45.09525756817339,45.09529049286877,45.09531288635339,45.09535152371109,45.09544530555313,45.09548931036225,45.09552254085614,45.09554458227182,45.09554463491481,45.09558844897036,45.09564381694596,45.09566579784727,45.09568803225466,45.09571017723064,45.09580912481522,45.09583121282677,45.09583114252251,45.09578767720317,45.09569977822606,45.09564515538214,45.09559036582208,45.09547537845052,45.09534908746982,45.09531635383593,45.09528916891763,45.09526705409319,45.09523423091109,45.09507509849372,45.09500928517406,45.09499302067695,45.09499735938951,45.0949306118426,45.09489214816993,45.09487345744952,45.09486809152995,45.09488989939747,45.09485178619347,45.09478034232652,45.09462669311466,45.09458263579314,45.09454439021039,45.09443477779355,45.09433599951164,45.0941659846377,45.09412185087639,45.09409991727607,45.09405607814085,45.09383635715346,45.09328749074908,45.09313396835145,45.09289246595952,45.0928267505787,45.09254133414799,45.09247538578724,45.09236560329249,45.09214618577843,45.09161941627007,45.09148775507915,45.09140002734171,45.09126803622049,45.0911803318923,45.09107062314629,45.09102658089834,45.0909001983248,45.09065860659859,45.09054866969618,45.09043337083446,45.09038955415262,45.0903236334965,45.09023577879901,45.09017006353926,45.09006045004728,45.08986288779015,45.08980255710183,45.08973119613452,45.0896983856706,45.08958319076792,45.08951190080665,45.08946801685739,45.08938020679431,45.08929809549824,45.08923775867926,45.08918825950521,45.08909488584816,45.08894134397004,45.08889752685194,45.08883145821948,45.08876565568924,45.08867798621482,45.08852430411515,45.0884144719866,45.08834864813495,45.08828841562756,45.08821704960373,45.08821709951198,45.08818408278584,45.08814583574877,45.0881184936284,45.08803051188411,45.08796467042733,45.08787664293138,45.08778898141076,45.08767927919514,45.08743772772681,45.08739362633592,45.08736621454065,45.08735540789068,45.08736094625962,45.08737196996169,45.08737217067095,45.08733925090684,45.08731741719892,45.08730095084191,45.0873010506765,45.08730648553708,45.08736147179697,45.08739461298881,45.08740565901317,45.08740560657964,45.08739470057516,45.08738927991948,45.08740567106306,45.08748286754129,45.0874991014775,45.08751586711995,45.08751591219272,45.08748304017571,45.08741736228493,45.08735155919619,45.08726956621461,45.08712117249832,45.08701146524278,45.08679204375816,45.08661618309915,45.08655038359589,45.08648455920596,45.08639660044096,45.08624289822368,45.08622096527935,45.08611135702705,45.08589188108571,45.08578200402545,45.08572174685867,45.08565053077151,45.0856175665902,45.08556820677897,45.08550255035072,45.08531046929571,45.08526647551115,45.08517896257967,45.0851352091712,45.08509685184146,45.08497620054015,45.08486635333011,45.08468529355592,45.08433415110233,45.08426824029686,45.08421352417123,45.08418591064489,45.08420257925605,45.08424654205451,45.08427408465038,45.08454271063684,45.08453778269208,45.08452135277507,45.08450508764113,45.08448310435669,45.08441169431845,45.08421383411729,45.08419197359213,45.08416452239904,45.08420859919847,45.08420872565389,45.08421967134546,45.08424720335375,45.08429664885332,45.08430782335777,45.0843189000903,45.08433531000993,45.08437926506708,45.08444535983031,45.08453330775914,45.08457157129975,45.0846265031582,45.08467072482736,45.08469831240595,45.08467070203067,45.08459949995527,45.08457756932319,45.08454475483445,45.08443496369632,45.08438577813402,45.08435817841143,45.08418264329877,45.08411680203561,45.08407289076175,45.08404524296175,45.08404525916508,45.08407266368625,45.08407252392482,45.08406144793229,45.08392966725606,45.08386351553781,45.08380311419434,45.08373196269855,45.08367710144319,45.08352321345608,45.08341354964119,45.08334766143929,45.08328708650539,45.08323760666867,45.08317186599355,45.08304014391774,45.08302337606759,45.0829082629761,45.08257870353732,45.08244687110387,45.08238082942686,45.08229311006869,45.08227117656345,45.082161197322,45.08211723682471,45.08207314565561,45.08196345178282,45.08187580778836,45.08161231551721,45.08156815133864,45.08150227864038,45.0813925708887,45.08132657625539,45.08128284213981,45.0811730456764,45.08112906005137,45.08106316657593,45.08101910121923,45.0809534353275,45.08079972562508,45.08073375644237,45.08064582837266,45.08051407066264,45.08047020368565,45.08042621007652,45.08033850837712,45.08018472972471,45.08011885700214,45.07987615078908,45.0798378064511,45.07972921225873,45.07971273860156,45.07969079658679,45.07964681843107,45.07957020888372,45.07952062438108,45.07936173099378,45.07920782244825,45.07907610204395,45.07883454458133,45.07863703265157,45.07859293136848,45.07852738182739,45.07848332625439,45.07847242346993,45.0784395421802,45.07842302811359,45.07839559699881,45.07837931906547,45.07839577351825,45.07845052611737,45.07845635585382,45.07843995339689,45.07841783263184,45.07838520625148,45.07829739269196,45.07828100569879,45.07829766750672,45.07837465439682,45.07845148402007,45.0785394461838,45.07864954545085,45.07873744724048,45.07881463594691,45.07883101861713,45.07887500920213,45.07890232271671,45.0789682030068,45.07899021229862,45.07902872651693,45.07907820391349,45.07916079749072,45.07925419476509,45.07935848279647,45.07939140968976,45.07949584262,45.07951779649322,45.07960566880278,45.07967179473175,45.07986947784645,45.07997929842547,45.08013303020674,45.08026496835021,45.08044066172232,45.08050655451226,45.08057253721513,45.08061654753192,45.08066045519625,45.08073723625812,45.08078102450161,45.0808251646572,45.08093503335206,45.08100079991096,45.08113261377981,45.08128622934919,45.08135234732458,45.08144015266538,45.08149490618732,45.0815224035248,45.0816046892098,45.0817585092668,45.08181346368983,45.08182990546374,45.08190126354963,45.08208777440954,45.08228545731994,45.08240635030545,45.08249401096413,45.08257633841075,45.0826092013871,45.08280141220708,45.08293325475864,45.08304283908728,45.08319660541859,45.08324051318603,45.08328452492078,45.08335587005886,45.08350435862928,45.08354864037501,45.08357042942374,45.08357047364012,45.08362568905737,45.08364209047664,45.08364795692724,45.08371945709939,45.08373602394391,45.08381829626713,45.08389532336933,45.08412075749417,45.08420863737355,45.0843183546757,45.08442824817698,45.08458204637289,45.08471381882297,45.0850480406445,45.08510935115428,45.08519701438455,45.08521901114928,45.08532913675892,45.08537302118899,45.08542230690144,45.08551049047402,45.08553239179647,45.08557088799946,45.08561492290039,45.08563116485453,45.08570254188457,45.08574642846665,45.08583444536961,45.08596633538217,45.08603224875355,45.08642783236363,45.08653767451647,45.08671345697834,45.08673538982329,45.08682325407539,45.08684518748201,45.08695508267788,45.08721859234449,45.0874383195607,45.08757010303679,45.08761396979241,45.08763607544509,45.08770191647888,45.08771835693164,45.0877347484195,45.08791048364682,45.08806971195315,45.08845955881324,45.08854731062034,45.08861319382999,45.08870114495087,45.08875590535806,45.08878863211575,45.08879402621982,45.08877757322276,45.08872265173768,45.08866783712866,45.0886019096639,45.0885578822195,45.08852497815126,45.08850844191892,45.08850823174415,45.08854110612451,45.08856307871731,45.08861776111493,45.08865072931803,45.08869477742909,45.08875511579352,45.08888670263995,45.08906263473066,45.08926030092444,45.0893261981649,45.08939194461723,45.08947995537775,45.08960599428009,45.08964446681984,45.08971045809528,45.08977640366492,45.08982013394859,45.08984773821726,45.08988063395744,45.08991893283116,45.08996289664245,45.09011673857918,45.09024857641743,45.09040264212578,45.09044646761824,45.09055636518045,45.09068817988717,45.09081975873535,45.09097384534168,45.09110550308268,45.09114945927739,45.09134744387581,45.0914132944871,45.09147906363832,45.09158894787873,45.09176487755916,45.09189651383808,45.09207258753277,45.09212732585372,45.09219339233191,45.09225935566626,45.09243489312779,45.09265474120473,45.09277550491137,45.09284675056501,45.09295119545708,45.09314893942433,45.09328053197163,45.09333571024622,45.09339609298222,45.0934510852209,45.09348419263911,45.09351176952931,45.09352820202251,45.09352838857173,45.09351765524379,45.09350673177664,45.09347395908487,45.09347402674268,45.09343553118595,45.0933752685322,45.09323276485576,45.09314495892713,45.09315045966969,45.0932052306545,45.09322749841175,45.09331532889941,45.09333169122208,45.09334816739038,45.09332094981747,45.09318397615527,45.09309052209809,45.09303559832099,45.09286539945996,45.09273383000465,45.09255805869482,45.09250299577769,45.0924647150368,45.09245354225618,45.09248104497347,45.09247533840366,45.0924314120419,45.09227205105765,45.09220622941275,45.09216236372453,45.0920963951375,45.09207990303516,45.09205248206713,45.09201953226393,45.09201957295394,45.09206357130984,45.09206369427962,45.09204714439029,45.09198659391065,45.09193190529255,45.09184395483155,45.09175630167181,45.09171226339718,45.09160253424211,45.09158049577049,45.09151465554913,45.09134973593127,45.09111914535881,45.09100937368778,45.09096544338759,45.09092147883377,45.09085547411959,45.09078962034111,45.09074576739557,45.090586575895,45.09052086348706,45.09046601413292,45.09039479182047,45.09032884155372,45.09028481061476,45.09021367977588,45.09019711171923,45.09020281715654,45.09025774863787,45.09032904558467,45.09038945598395,45.09041156326443,45.09041173654598,45.09040082466081,45.09038972236726,45.09036787501536,45.09034611528611,45.09030216427966,45.09024735255857,45.09004416851038,45.0900001760702,45.08964897793157,45.08947335924582,45.08936364809892,45.08931974050798,45.08927583344855,45.08918781127762,45.08905615706619,45.08896840641827,45.08870467519884,45.08835316668699,45.08813353498063,45.08800187372155,45.08784800947053,45.08780416301132,45.08773839747053,45.08755738381812,45.0874529399404,45.08740830653453,45.08750814807445,45.08763474522142,45.08764023269932,45.08765123470031,45.08765146808361,45.08766243420936,45.08766248713102,45.08771766687366,45.08772840323476,45.08772874478758,45.08775626953381,45.08780030369402,45.08787148451221,45.08800796578542,45.08814627283027,45.08823412505014,45.08832208132367,45.08838778483929,45.08840971936883,45.08861827593316,45.0887610516937,45.0888268795855,45.08884881279422,45.08888168432902,45.08895843619135,45.08903538875909,45.08913959750798,45.08913955818473,45.08916153351789,45.08918351144229,45.08919450008465,45.08919421063867,45.0892545459649,45.08925999473686,45.08928205919251,45.08928726814236,45.08938053586466,45.08942407728816,45.0894516951445,45.08957777189318,45.08980275984442,45.08985235317628,45.08989072968938,45.08992361373504,45.0905545302429,45.09061530825062,45.0908898704845,45.09101085575035,45.09114283675944,45.09134033805478,45.09173577735118,45.09180166339098,45.09184555037866,45.09193336414683,45.09213109505332,45.09224118137194,45.09241143185953,45.09251041925912,45.09255986422846,45.09262602248563,45.09277453061597,45.09279102074598,45.0928129496514,45.09285681734161,45.09291168552285,45.09299411218964,45.09312019462961,45.09320806928577,45.09329592538332,45.09341678780408,45.09353186620403,45.09385621361719,45.09428420981532,45.09453136971538,45.09477840270794,45.09503083656937,45.09510779469532,45.09513524610383,45.09516248594475,45.09522829557331,45.09522821108523,45.09523912367619,45.09525014296538,45.09521704304078,45.09514001079175,45.09507407807313,45.09496870936662,45.09516185438763,45.09522780554748,45.0952441541808,45.095320875442,45.09535400327271,45.09543621239761,45.09548563848961,45.09554060479191,45.09566672074886,45.09571061896395,45.09576014877326,45.09584780146704,45.09586408250837,45.09586967084233,45.09586383176745,45.09584734417703,45.09585283294044,45.09586914397135,45.09590767269223,45.09591864592942,45.09586354612488,45.0957481037258,45.09574279658902,45.09575919684397,45.09578105031624,45.09586341636545,45.09590744964284,45.09592934199024,45.09594041217112,45.09594031868885,45.09590727633245,45.09587425496222,45.0958467390186,45.09581381731221,45.09581925672415,45.09584676221181,45.09598389293154,45.09602222552488,45.0960441640454,45.09603862194827,45.09602221910379,45.09602779442819,45.09606065729368,45.09614837786655,45.096230802253,45.09627478151292,45.09628571406387,45.09630761972647,45.09636810080345,45.09654381687727,45.09656026283506,45.09659858532014,45.09664819863593,45.09669773168185,45.09674148887385,45.09686790986376,45.09695013990969,45.09708215992863,45.09714784192342,45.0972576653694,45.09745536756547,45.09749925158288,45.09765311930512,45.09778505967752,45.09787284949784,45.09796074929442,45.09804294860731,45.09810343390543,45.09825725733135,45.09843294866133,45.09876241082699,45.09902594015112,45.09906993722326,45.09908079269377,45.09907527366195,45.09902026345252,45.09889413387013,45.09888853061315,45.09889417740013,45.09895978255729,45.09908074729154,45.09914653184685,45.09923446974265,45.09932234573498,45.09945438514705,45.09952022036824,45.09967382284749,45.09980033336647,45.09988253978848,45.09990464522834,45.10005830519518,45.10019024606845,45.10032197154462,45.10044258303792,45.10057980462965,45.1006291131133,45.10065104641084,45.10066748937125,45.10075005724165,45.10085986389443,45.1009257504879,45.101101436584,45.10118928551464,45.10123309584655,45.10133189233127,45.10141994736883,45.10150778773464,45.1015681734685,45.10159552816647,45.10161182870375,45.101628281834,45.1016281289541,45.10165284817425,45.10177098587574,45.10185869122476,45.10199050232424,45.10214446854664,45.102276160395,45.10240205692133,45.10242447384332,45.10239161070673,45.10239169679517,45.10241371674523,45.1025111516156,45.10277083409073,45.1028366338322,45.1029024411258,45.10296853292412,45.10304542688692,45.10311685545345,45.10315552363026,45.10319932903914,45.10324341055943,45.10329298873074,45.10350706616476,45.10367193178746,45.10369948093996,45.10379863694391,45.10388093464308,45.10392480672637,45.10407872511204,45.10425437147724,45.10443019602911,45.10444662438931,45.10450712284717,45.10452354875554,45.10461679042273,45.10463321025772,45.10471564987382,45.10486951358604,45.10508898742408,45.10524272234788,45.10533077173444,45.10548448132361,45.1055285188061,45.10574806704906,45.10579202559899,45.10601166385437,45.10651689187151,45.10673657645111,45.10689028911863,45.10693415552886,45.10726355279822,45.10732969615094,45.10765897643218,45.10774705482357,45.10807638904684,45.10842774292283,45.10864726325185,45.10876820521973,45.10908656891848,45.10915254126473,45.10919636233826,45.10921829549113,45.10930615513465,45.10948171875908,45.10956949657621,45.10962996688095,45.109663008639,45.10970125177526,45.10971769821708,45.10984397875274,45.1098661090012,45.11001985037903,45.11006360798357,45.1100855647415,45.11010198769615,45.11018442230625,45.11036031549195,45.11037676082952,45.11051382643425,45.11062906157287,45.11089813823111,45.11091458172173,45.11095312700425,45.11096955478192,45.11104627399566,45.11106296809487,45.11113959216362,45.11116160000586,45.11144707957428,45.11151300539207,45.11160077855416,45.11164477964841,45.11173255046995,45.11182045282104,45.11183685827124,45.11198524352,45.11212809600338,45.11214453952349,45.11218281041533,45.11219923026562,45.11230355624676,45.11231998461199,45.11244636937385,45.11270442092081,45.1127426160018,45.11293492506095,45.11309953564667,45.11348941934802,45.11350586579165,45.11365390674356,45.11367032654702,45.1137088568134,45.1137253001465,45.11385158327744,45.11394503905093,45.11417000428155,45.11421387605512,45.11438950829548,45.11470808247268,45.11503750538801,45.11521326614994,45.11545491295446,45.11552084595353,45.11567443492589,45.11571845520194,45.11589410893417,45.11591055346661,45.11594908372366,45.11596552708463,45.11616851801752,45.11632217792344,45.11646485031314,45.11650325885,45.11673952285663,45.11685457285531,45.11704683281342,45.11716208153821,45.11736515092974,45.11764492568971,45.11766123985177,45.11786999368517,45.11797413475023,45.11837500380251,45.11841867867209,45.11849013670672,45.11863271533894,45.11871517493442,45.11878086469144,45.11886329828451,45.1191539747803,45.1194285838468,45.11973596106337,45.11988951169386,45.1199827293764,45.12001573309221,45.12004309775627,45.12005950003656,45.12007052637253,45.1200703414406,45.12005385188406,45.11998765911079,45.11998222600273,45.12001513248114,45.12004244010008,45.12011929980087,45.12014102557347,45.12014100900165,45.12011890221788,45.12005845735805,45.12000363438545,45.11993228950536,45.11986610927409,45.11981136982074,45.11977817538443,45.11976159021842,45.11976141558966,45.11977256043168,45.1198109663246,45.11996440897676,45.12001396748896,45.12005223601003,45.12006896072176,45.12018403912819,45.12027190998845,45.12044764328946,45.12049167212535,45.12053562732104,45.12060138470185,45.12068946477071,45.12079926876487,45.12086512108928,45.12091448005516,45.12093646915503,45.120936731978,45.12092580306407,45.12093126996827,45.12095867474722,45.12100830061171,45.1210631893305,45.12117291520072,45.12119500167443,45.12152442099912,45.12161208702438,45.12165608127981,45.1217877216415,45.12187575593923,45.12194155566225,45.12202945736684,45.12205123910191,45.12211731568353,45.12213376067827,45.12217202917716,45.12219406674876,45.12225990740608,45.12227635541021,45.12231488028932,45.122336946183,45.12246855794812,45.12253439860428,45.12255108129013,45.12261130414304,45.12262774858497,45.12279793973558,45.12282000076505,45.12288580044049,45.1229022400679,45.12307255899346,45.12344586046729,45.123533482902,45.12355554693772,45.12359941334503,45.12362147191608,45.12368731196153,45.12370373582673,45.12383003822387,45.12388501236425,45.12414848370324,45.12423636664833,45.12434609370109,45.12436251396741,45.12457687067876,45.12462635525586,45.12468666551981,45.12474131304619,45.12477430475338,45.12485808993429,45.1246806359612,45.12465866003537,45.12461459339821,45.1245488557567,45.12444990145682,45.12441117355674,45.12434517363663,45.12416918319352,45.12409746655354,45.12398763095429,45.12388860597055,45.12386658311137,45.12377886201986,45.12372915785544,45.12367422816712,45.12367413993669,45.12366309377329,45.12366330765808,45.12364116957676,45.12363001752336,45.12365173657876,45.12367367729977,45.12390978947113,45.12404674400442,45.124129013873,45.12417302278915,45.12422245853728,45.12424413244906,45.12428778991283,45.12433717656824,45.12440321414039,45.1246666656636,45.12475981156955,45.12483118500007,45.1248477065905,45.1249297309616,45.12499995361477,45.12510660062643,45.12517233997828,45.12522160708009,45.12522155851366,45.12525430918323,45.1252545440334,45.12528739496239,45.12530906888841,45.12533114500539,45.1254188561532,45.12546811151635,45.12559982008391,45.1258797356281,45.1259235477657,45.1259948285557,45.12603873291805,45.12606617895749,45.12607690103057,45.12606582859639,45.12605482422976,45.12604351884241,45.12603245011831,45.12603220914247,45.12602113909415,45.12601540100068,45.12602077306686,45.12603163901098,45.12605342857714,45.12619070082246,45.1262344233587,45.12636620655113,45.12653069092746,45.1265911111293,45.12666750245573,45.12667866474285,45.12667847464388,45.12660134484629,45.12654626931771,45.12651335106627,45.12651301158918,45.12650219527792,45.12648005033348,45.12645801882702,45.12645796857229,45.12641386907622,45.12639174712918,45.12638052088628,45.12639150859092,45.12646778236365,45.12653369147149,45.12653363788242,45.12662128766854,45.12680789915847,45.1269611212212,45.12698313749873,45.12703804125111,45.12709273876884,45.12714740063679,45.12716364868703,45.12721308336824,45.12738297140811,45.12749251011638,45.12764078013772,45.12771766218768,45.12772305095034,45.1277886988198,45.12779993284845,45.12793155363482,45.12807954481517,45.12814557043815,45.12827736517175,45.12852984843117,45.12870553716678,45.12875499554423,45.12879314423675,45.12882069078697,45.1289578803042,45.1290183358019,45.1291445658734,45.12925438094489,45.12927631200994,45.12932015293539,45.12944111439926,45.1295509745439,45.12967168953961,45.12993527733189,45.13003421121474,45.13037449608378,45.13062180705683,45.13107751481515,45.1313741602517,45.13144013516442,45.13172572875423,45.13191256392136,45.13211032862223,45.13228610647591,45.13290142907426,45.13294519063857,45.13331893524985,45.13336272016129,45.13345075105762,45.13373644005988,45.1340658406712,45.13440645403839,45.13469198995431,45.13493362440269,45.13507649704685,45.13520813519087,45.13532898357636,45.13549371474748,45.13553765659524,45.13582312766387,45.135921912182,45.13606989618215,45.13617955671116,45.136376999849,45.13655828029496,45.13668440586906,45.1367667234684,45.1367886070212,45.13696423569189,45.13713455402802,45.13733230125263,45.13740342735602,45.1375518180593,45.13756813233427,45.13782638681752,45.13784272272312,45.13791949448909,45.1380625190729,45.1382928406691,45.13847950943872,45.1385562024856,45.13866626967253,45.13874317048908,45.13880326613715,45.13883630788973,45.13886931734721,45.13891866691667,45.13909435293659,45.13914911231794,45.13926967934931,45.13929173496625,45.13934106462532,45.13953525981607,45.1396206639593,45.13967001931893,45.13975784584996,45.13986211877402,45.13988403982651,45.1399281372607,45.13995004346853,45.14010354034999,45.14025736707926,45.1403890018636,45.14041088157009,45.14056471107953,45.14060867146964,45.1406745676198,45.14086651093877,45.14105850232957,45.1412727156977,45.14133305952846,45.14137721064743,45.14140996248695,45.14165161647845,45.14176142618231,45.14188246564064,45.14204719451022,45.14226668867882,45.14241483736394,45.14252472194532,45.14278284606564,45.14293654721192,45.14295298463665,45.14307913496012,45.14309585518411,45.14313410365975,45.14315054107919,45.14323306182936,45.14332652744846,45.1434528020441,45.14372744831893,45.14374388570281,45.1437821544786,45.14390291615837,45.14400185076037,45.14402373073396,45.14408408724463,45.14412274095899,45.14416664849257,45.14418306552587,45.14424354888241,45.14430939791268,45.14438624947495,45.14447388840639,45.1445618219645,45.14475368786812,45.14477040805421,45.14479234456012,45.14481418966319,45.14485289381578,45.14485836752356,45.14487506658228,45.14491909758481,45.14495211085673,45.14499058941605,45.14517739791328,45.14533142938495,45.14539734857227,45.14551254780172,45.14559485818273,45.1456824813317,45.14576487338937,45.14582535300158,45.14589145054362,45.14595727396487,45.14604517657299,45.14614424053932,45.14639723040626,45.14652386351576,45.14660109419748,45.14666711564723,45.14681547869608,45.14690343249867,45.1469253357038,45.14694759454168,45.14695293289218,45.14696413954133,45.14700787438053,45.14706843691481,45.14713430589304,45.14717819251389,45.14720010102556,45.14722213521387,45.14722248780254,45.14729951210392,45.14733265137025,45.14734357938037,45.14733836925699,45.14734420665945,45.14732275830085,45.1473007965422,45.14731184391552,45.14733400035127,45.14743880129078,45.14758176457122,45.14773575528721,45.14785109422004,45.14797204769327,45.14827976812438,45.1484552479986,45.14871346909307,45.14881784489132,45.1489934233548,45.14913052982358,45.14920729919007,45.14930616623918,45.14940474707298,45.14947605868547,45.14956391326502,45.14976154408907,45.15014609844857,45.15023394886224,45.15027788863689,45.15031635951838,45.15040444015978,45.15048692099114,45.15050900950352,45.15053658853782,45.15056402280192,45.15056412454936,45.15061390206986,45.15066866139618,45.1506962936099,45.15074012141954,45.15084989085708,45.15087186493243,45.15091596644862,45.15103108546326,45.15117949445606,45.1512453161941,45.15142116736153,45.15146508656434,45.15148702004053,45.15166299520097,45.15179486332546,45.15190459389783,45.15198149703938,45.15208045856189,45.1522231183172,45.15231105528875,45.15239885576222,45.15246497056592,45.15255300772634,45.15256952594919,45.15259132864998,45.1526185494549,45.15264617633732,45.15267339094302,45.15271743250601,45.15278349615831,45.15284937726508,45.15286589484864,45.1529644973475,45.15302485521181,45.15306874233527,45.15315682792186,45.15324460229732,45.15345863071724,45.15356302261765,45.15367306130081,45.15388174830768,45.15396957504641,45.15403565450702,45.15412357994871,45.15416756966044,45.15420614194997,45.15422791628055,45.15421729383255,45.15422265494747,45.15429431599159,45.15434368851763,45.15440976153893,45.15454689447971,45.15473891292994,45.15479390895375,45.15487082999433,45.15498109929924,45.15504706832128,45.15515692204193,45.15524467599028,45.15538764955227,45.15543149015078,45.15546968122499,45.15552498036033,45.15552489682119,45.15550321941788,45.15548087944377,45.15543175174399,45.15541525976586,45.15534397743087,45.15530003531643,45.15526692355665,45.15525035032989,45.15524531583268,45.15527294115757,45.15527811814977,45.15527824358001,45.15524558516071,45.15525095981258,45.15531709830688,45.15535000996775,45.1554546810411,45.15552059405873,45.1555592743372,45.15557565936859,45.15557573128991,45.1555487065991,45.155548672646,45.15556508640878,45.15559799760182,45.15570816147742,45.15581824860094,45.15588403937076,45.15595013476156,45.15597739932328,45.15600532100791,45.15611503740805,45.15615882531272,45.15617023009781,45.15616997115198,45.15613164345636,45.15606031311657,45.15602720050634,45.15601630636737,45.15600039988757,45.15602220049581,45.15604971338635,45.15608793471979,45.15617080751355,45.15623677579025,45.15627496226025,45.15629157999847,45.15629693975866,45.1562479587813,45.15623679876629,45.1562534079364,45.15624811967816,45.15621500347132,45.15613278208371,45.15611097774777,45.15609435523857,45.15609976153213,45.15612202449444,45.15616065032994,45.15620459403561,45.15624261159648,45.15627062155494,45.15627058510022,45.15625986151799,45.15623770420876,45.15618296340266,45.15605105002807,45.15602911661117,45.15598499941696,45.15590254631439,45.15586426999387,45.15585905729612,45.15586985035223,45.15588087253577,45.15591962647009,45.15609533056529,45.15622701088989,45.15638131338322,45.15648540934733,45.15654578759175,45.15658436319091,45.15655715786954,45.15650777156885,45.15646372950143,45.15639796438141,45.15617824058245,45.15608546748854,45.15609062217514,45.15610184891948,45.15612395896083,45.15619521316856,45.15628331743831,45.15634890396854,45.15645886109675,45.15652497064228,45.15655261816451,45.15658002633653,45.15658042431905,45.15655843020396,45.15651461828318,45.15649276000926,45.15649252601632,45.15644885297486,45.15643240115106,45.15643809436067,45.15645475881682,45.15653693034935,45.15663018497425,45.15664697156926,45.15664686509644,45.15656516202925,45.15646099029615,45.15627487131043,45.15626349421732,45.15629114265291,45.15630761044267,45.15639540478368,45.15651622342255,45.15656048764666,45.15665928258343,45.15667063576432,45.15664859193367,45.15662623036259,45.15652757772868,45.15635198844111,45.15617612066749,45.15606622472636,45.15598398672195,45.15596797699113,45.15594565855434,45.15586911118555,45.15558878688874,45.15549539453171,45.15534170293849,45.15527561907562,45.15520986483217,45.15518815709277,45.15519915122637,45.15522069688295,45.15527040686473,45.15535301154834,45.15544030171067,45.15563261101944,45.15567143983903,45.15584708193289,45.15600110056349,45.15608902725683,45.15624269846913,45.15635232239462,45.15645113291333,45.15653879566656,45.15661590329854,45.15670402603866,45.15674773668719,45.15683560106601,45.15692357892244,45.15696190647026,45.1569783007442,45.15697806180159,45.15698922521878,45.15705500974862,45.15707686696723,45.1570771028095,45.15712623640783,45.15720304338492,45.1572965431415,45.15731847640463,45.15736221997005,45.15740059878352,45.15740594717079,45.15738392022937,45.15736202957783,45.15737317147245,45.1573895353707,45.15746074149826,45.15748842963878,45.1575381713779,45.15754892897069,45.1575491510272,45.15753236648408,45.15751602287793,45.15743927471017,45.15741729038687,45.1573898141769,45.15738455712108,45.15734591932073,45.15736803925385,45.15732459572111,45.15734684138139,45.15740123624829,45.15751083392259,45.15757128406629,45.15757151569138,45.15759335680936,45.15761510009344,45.15769156646449,45.15774669618509,45.15776865697116,45.15779038636452,45.15781257447633,45.15784003634716,45.1578124517124,45.1577687710923,45.15776910215509,45.15774667931058,45.15773088415214,45.15773615187116,45.15770312870223,45.15767622921684,45.15759372329613,45.15752253373063,45.15740725301477,45.15736328411741,45.1573245484096,45.15725344407121,45.15722627345454,45.15721513004079,45.15722081343388,45.15725899977775,45.1573088841201,45.15733041044719,45.15736354156165,45.1573693016608,45.15734700462453,45.15726505843923,45.15722667148426,45.15718287707445,45.15713886853614,45.15708929613674,45.15707871552978,45.15707857566726,45.15711195125924,45.15711743027275,45.15708973663592,45.15703501257889,45.15701317438102,45.15699151887112,45.15698582959098,45.15696970206357,45.15693669864495,45.15684873362864,45.15681619797376,45.15671170166637,45.15661838346404,45.15657443372655,45.1565307325081,45.15650910462558,45.15635510687977,45.15613559310239,45.15607004907913,45.15602597715165,45.15598758673771,45.15595471011885,45.15591014158906,45.15584993987763,45.15580620297439,45.15571809548482,45.15556424776022,45.15534474974625,45.15521336793233,45.1550591924172,45.15490547442853,45.15477390523426,45.15462004861422,45.15455435784489,45.15431260391744,45.15411481932884,45.15374116573123,45.15363125626113,45.15356540753246,45.15352156637854,45.15347761800817,45.15340628830452,45.15331882669255,45.15321445349959,45.15312659993339,45.15302242608147,45.15267643830649,45.15265450513162,45.15258860266646,45.152478905302,45.15241848075532,45.15222665834113,45.1520071747761,45.15188104432334,45.1517986152948,45.15176557492297,45.15169992718214,45.15163391436936,45.15161187434011,45.15157903329749,45.1515624514626,45.15151865886413,45.15143650523938,45.15132648169011,45.15126053427733,45.1511728090171,45.15113420120426,45.15110156940931,45.15105755719951,45.15096966997234,45.15087662424329,45.15076667691653,45.15070072276205,45.15064047073714,45.15048140209726,45.15028382332876,45.15015210814121,45.14988862698844,45.14977880473684,45.14964680000091,45.14951504991938,45.14931751263097,45.14925157395695,45.14923532410793,45.14914208507788,45.14896659930957,45.14890081455088,45.14888992554701,45.14872524264542,45.14862654048716,45.14860463388611,45.14858279045323,45.1485608988707,45.14848413224583,45.1484622237346,45.14844035601846,45.14794642693126,45.1478477043219,45.14768292836485,45.14752916275176,45.14735340300756,45.14733161856385,45.14719967716658,45.14715566484738,45.14695792039794,45.14691390794421,45.14669421541778,45.14665047732572,45.14656244442178,45.1464361321822,45.14625478918594,45.14615039065036,45.14588110066236,45.1458646346869,45.14583734493092,45.14577681934464,45.14570518700442,45.14568873908076,45.1456614305875,45.14564493929642,45.14552946298129,45.14551297836158,45.14544152070628,45.14542502879971,45.14504612722629,45.14487036205123,45.14478263031035,45.14467271066607,45.14451885092026,45.14436517814376,45.1442113484194,45.14410129403395,45.14396965345556,45.14392573780736,45.14388184116297,45.14379949561447,45.14366206308965,45.143508408056,45.14339848642663,45.14337655335294,45.14324495178072,45.14317879406327,45.14311315065645,45.14295938246914,45.142871294554,45.14282747486708,45.14278357798438,45.1426684615473,45.14260249589693,45.14252546992337,45.14234435307787,45.14228392283218,45.14215810149622,45.1420372274688,45.14188927569676,45.14179026905152,45.14168597482641,45.14159274441496,45.14157638998388,45.14152146181872,45.14137897222394,45.14130768522467,45.14106051969996,45.14081362444228,45.1407479176826,45.14067109722175,45.14061073514073,45.14050078711694,45.1404788539466,45.14046237106601,45.14034704609757,45.1402589816319,45.1402207425783,45.14018788215389,45.14017124542575,45.14012215218038,45.13999038059722,45.13991899586613,45.13978711711538,45.13971594465708,45.13966125306622,45.13958976689945,45.13956244818325,45.13956607963033,45.13954636660119,45.13950794306037,45.13944189471776,45.13938162655461,45.13901924791367,45.13879961872587,45.13873357620169,45.13864577633823,45.13856872646213,45.13845859291674,45.13837620747048,45.13831565338879,45.138260842778,45.13819491049674,45.13810684598676,45.13804104538679,45.13793112858426,45.13777725181835,45.13771145495192,45.13755771784546,45.13749183446685,45.13742593696861,45.13738186554639,45.1372942256327,45.13703051496492,45.13689857377708,45.13678866078227,45.13670093254122,45.13661301362724,45.13654713198743,45.13650315292118,45.13647030462884,45.13643767015495,45.13643764578713,45.13644868629582,45.13645425452101,45.13643248990086,45.13641059990471,45.136344543467,45.13622922939859,45.13609745906159,45.13605354279135,45.13600958475293,45.13596015519587,45.13594362859358,45.13594375656397,45.13595479595654,45.13598783182825,45.13598787604391,45.13603193170722,45.13605405287854,45.1360539621297,45.13603773020246,45.1360156655636,45.13596618044341,45.13590022276709,45.1358344030594,45.13579046597702,45.13574658631565,45.1356970771328,45.13565336801371,45.1355982333617,45.13546124593971,45.13541713966209,45.13538421730146,45.13537322550889,45.1353844249446,45.13538430256217,45.13537339141968,45.13538999207888,45.13554923109799,45.13557681391859,45.13562087285472,45.13565379046423,45.13573629691935,45.13580770839737,45.13591212579463,45.13602207590491,45.13605499325273,45.13614849078228,45.13642901329413,45.13646768747203,45.13648423586864,45.13648417132258,45.13646234291461,45.13642944002142,45.13639639950769,45.13630859106301,45.13627019531269,45.13618774306187,45.13609419578494,45.13604454543705,45.1359346338424,45.1357202761037,45.13556634564811,45.13526954268638,45.13518738072705,45.13509923441653,45.13503342903764,45.13495628463765,45.13486873180734,45.13483562398297,45.13483016607058,45.13483576771379,45.13486344801003,45.13490170135842,45.13491284993965,45.13493487196529,45.13496798894651,45.13506701109942,45.13521020142284,45.13529260376899,45.13539157682478,45.13549607953382,45.1355456073241,45.13562782370794,45.13573772459022,45.13586970442045,45.13593561824643,45.13599040689461,45.13614426548453,45.13632007895045,45.13640805785722,45.13648489087744,45.13657294337523,45.13666065007899,45.13668258307467,45.13685833738162,45.13703422734825,45.13710006939344,45.13718830019373,45.13727613833581,45.13739701185961,45.13756200743384,45.13771054250961,45.13783699039872,45.13812266253567,45.13825482275939,45.13851856723242,45.13863405754319,45.13868906591768,45.13869475112855,45.13876610912785,45.13878256145786,45.13876630530196,45.13872778339342,45.13866749193292,45.13860710490549,45.1385410221941,45.13843130928044,45.1383213506152,45.13823339145767,45.13808493616283,45.13796403313245,45.13775505106195,45.13758458387478,45.13745268765139,45.13739778285016,45.13733186435292,45.13715614214755,45.13709030388825,45.13705740384848,45.13699705102611,45.13694768997058,45.13694214926505,45.13697520323683,45.13714557565822,45.13716768152009,45.13724458286541,45.13726119608862,45.13727745747228,45.13727758379742,45.13726132639955,45.13722821468811,45.13716236830153,45.13712940133592,45.13713232836931,45.13721188901155,45.13725573827524,45.13735464387272,45.13738747844861,45.13740958125758,45.13749766557476,45.13755799080382,45.13755814350968,45.13754178049965,45.13752516918752,45.13745923866089,45.13743734776764,45.13744297134711,45.13747034140546,45.13751441906989,45.13756370877576,45.13759141438647,45.13765198537163,45.13769041130596,45.13770687496619,45.13775083482009,45.13783308034563,45.13787161027238,45.13802556033003,45.13828907041127,45.13842103355206,45.13846492317902,45.13851469753087,45.13853113319851,45.13853121409714,45.13852029852628,45.13852013409094,45.13853115130274,45.13858075690312,45.13868524598065,45.138740063024,45.13880616746252,45.13885570091115,45.1390038053079,45.13906980218137,45.13914694065192,45.13920735742637,45.13928996796859,45.13935029056395,45.1393668887339,45.13936708514245,45.13941086854948,45.13950998458743,45.13964182111896,45.13972991860432,45.139883701736,45.13992779899843,45.13997732101392,45.14000465379543,45.14002124447184,45.14008199876066,45.14010404997043,45.14011485585866,45.14018103966762,45.14021940038283,45.14035218051933,45.14040095980429,45.14039545297363,45.14036265893877,45.14025820351868,45.14030798932516,45.14037913217437,45.14045612948971,45.1405272441534,45.14060988391078,45.14063181686693,45.14067566696532,45.14074161415209,45.14078565193645,45.14082937268872,45.14086788660941,45.14087354481321,45.14089582095281,45.14093435972709,45.14096174553452,45.14099457912075,45.14103856154281,45.14114866163446,45.14117042762621,45.14121433255979,45.14125848101666,45.14127483288117,45.14129680222216,45.14129718390178,45.14133015722465,45.14141259505353,45.14148420439322,45.14156669624292,45.14167657290172,45.14174812642964,45.14177016944542,45.14177556777857,45.14173720761837,45.14168785257999,45.14149018914555,45.14146275292964,45.14146286408842,45.14151227801835,45.14158925948682,45.14164436749801,45.14168274446789,45.14169353321957,45.14169905679397,45.14169355001174,45.14166039510999,45.1416659412838,45.14170993866685,45.14178682597045,45.14203371217747,45.14211622136405,45.14222594829773,45.14235786746101,45.14241836647145,45.1425394287522,45.1427538208635,45.14278678490276,45.14295160026988,45.14302858272498,45.14310573201685,45.14316050244641,45.14327048786304,45.14340233407223,45.1436439790589,45.14379782822195,45.14384184961038,45.14389129408564,45.1439353647359,45.14395203326208,45.14398483264982,45.14400683970776,45.14403995556631,45.14409500417327,45.14416076443595,45.14431466028293,45.14449035401699,45.14457819756549,45.1447542645799,45.1448641183258,45.14490791191313,45.14508384199632,45.14517165168296,45.14544661219581,45.14560045849919,45.1457542913152,45.14597426098349,45.14625976773052,45.14634786062565,45.14643577752474,45.14652356623195,45.1465400168826,45.14656741862819,45.14652878289809,45.14639130954141,45.14639123661303,45.14642426421425,45.1464240797936,45.14635794433431,45.14633610819965,45.14634703065187,45.14638551807887,45.14643668296279,45.14664358741887,45.14673181300063,45.14681949122024,45.14701722712395,45.14710520753097,45.14729180071885,45.14733589361335,45.14737983669761,45.14764362973049,45.14773147584111,45.14781954525962,45.14799518899054,45.14805008871672,45.14819852881611,45.14833018902947,45.14850044950126,45.14854443157216,45.14852789568363,45.14842886295682,45.14839588091844,45.14839601494414,45.14844520468836,45.14842874038669,45.14844515209291,45.14847272291982,45.14852741744529,45.14869769704087,45.14874700036494,45.14877451363129,45.14877457385644,45.148796395641,45.14885114854792,45.14893372745639,45.14896662190371,45.14901614700921,45.14903800357101,45.14906004853596,45.14923598649926,45.14927993038755,45.14936764226591,45.14947762874177,45.14952134666423,45.14958735305699,45.14961479273156,45.14963131517077,45.14963127710137,45.14959814459825,45.149592694551,45.1495980150506,45.14963096137726,45.14968041270054,45.14971330455762,45.14975175667113,45.14979579503203,45.14986153879082,45.15003756750432,45.15008151398001,45.1501694521725,45.15032343249529,45.15041111124526,45.15045528158766,45.15051568536816,45.1505538817305,45.15054839366638,45.15058643576883,45.15058663762706,45.15053689208893,45.15042154752749,45.15040487852847,45.1503885816296,45.1503554831418,45.15027278067411,45.1502232368486,45.15015722424251,45.15013512089234,45.15008037060269,45.15007463683276,45.15008029012418,45.1501239901564,45.15027218198044,45.15045873093641,45.15053572734893,45.1505850633838,45.1505849818734,45.15056291787754,45.15052994910022,45.15048042434196,45.15043083838663,45.1504199920372,45.15044176737359,45.15051316590687,45.15056251995455,45.15063936960524,45.1507052260086,45.15077117301393,45.15083699231131,45.15088103018024,45.15092495723136,45.15103483642488,45.15110095255851,45.15129876792891,45.15143576331405,45.1516281408546,45.15165007612467,45.15169394246172,45.15215348477923,45.15218269439929,45.15224313501786,45.15230902548606,45.15236392690579,45.15246289612015,45.15250680304033,45.15252325083993,45.15266064084998,45.15288027520585,45.15299006788403,45.1532757647386,45.15340756961143,45.1534678796418,45.15351179524423,45.15351711551829,45.15341794636054,45.15340120102434,45.1534122825019,45.15345054653181,45.15349982004267,45.15357678240178,45.15364272292132,45.15364822609985,45.15365358178499,45.15364802735919,45.15357098348629,45.15353774151009,45.15355974253782,45.15362001071021,45.15385602065857,45.15417487830283,45.15437246364753,45.15454815781774,45.15461382629876,45.15463053227678,45.15473502921385,45.15475117361183,45.15484480705011,45.15517426775261,45.15552011478881,45.15553643007461,45.1557562439561,45.15589876029681,45.15594833506348,45.15612948948655,45.15626134370543,45.15636021772511,45.15651387106807,45.15667817864318,45.15676083012586,45.15694217970078,45.15707359592788,45.15725997953123,45.15734822044578,45.15740262271662,45.1574687628496,45.15750693991025,45.15753995498367,45.15759480997309,45.15760551906045,45.15767651269609,45.15783571686296,45.15792332551345,45.15798380144402,45.15802792611129,45.1581705585538,45.15841240375535,45.15852210972702,45.15891753879544,45.1590716241599,45.15918141168768,45.15933547520224,45.15959910784999,45.15962106141258,45.15988459970869,45.16001678054186,45.16013763278747,45.16020381660398,45.16031900683218,45.16035770161857,45.16036879935431,45.16039081060662,45.16045713873768,45.16047907092776,45.16049546596156,45.16052317345181,45.16056703932807,45.1605946664286,45.16062173592096,45.16064360704642,45.16064385116309,45.16068747471591,45.16074792477556,45.16087937765566,45.16102775142518,45.16112647438417,45.16131879603766,45.16158800660907,45.16185133871372,45.16213709139713,45.16255481687773,45.16280207563153,45.16309298194411,45.16320257100872,45.16327973956425,45.16330167253301,45.16344442566627,45.16355425664568,45.16365872082075,45.163800923828,45.1639548324989,45.16405916701975,45.164234532134,45.1643777446368,45.16450923328284,45.16479498977802,45.16514626656382,45.16527822811997,45.16538830671317,45.16577284389159,45.16597022166721,45.16625612327186,45.16659634777498,45.16684901875909,45.16711257365471,45.16739837040512,45.16791494144405,45.16817840910986,45.16872750912256,45.16890338004007,45.16912337247356,45.16921116028026,45.16942516484929,45.16956251284221,45.16978231570386,45.16991421430263,45.17001850681804,45.17018876826159,45.17028745682588,45.170304182022,45.17047415741478,45.17062796245847,45.17072162580885,45.17091394763408,45.17096315069186,45.17107815437264,45.17109487833374,45.17141870794247,45.1715839473553,45.17160010992653,45.17183622435947,45.17190247547917,45.17212188949315,45.1721439951115,45.17225387111271,45.17242947814054,45.17253935104146,45.1725614378697,45.17262727777986,45.17278119111005,45.172803295981,45.17308913659938,45.17339658420001,45.17374828873454,45.17399005606452,45.17414364939448,45.17429756246975,45.17453951353116,45.17478081278578,45.17506702709507,45.17515477925955,45.17519883575133,45.17546215465687,45.17566028915202,45.17605539404097,45.17647328098798,45.17660485066951,45.17664903899564,45.1766710130178,45.17673659092769,45.17682500434792,45.17693462229231,45.17713245394334,45.17722019099276,45.17746219244809,45.17748412530599,45.17754989366254,45.1775718265418,45.17774762396473,45.1778578371338,45.17796754274876,45.17804444679691,45.17815453052125,45.17822051970071,45.17846204701132,45.17857209252709,45.17892339517089,45.17920932156953,45.17936302815991,45.17967034841425,45.18004395811937,45.1800660609026,45.18017593630777,45.18030765638346,45.18061527561297,45.18072511741992,45.18081353010236,45.18096704257971,45.18112120524906,45.18118696787975,45.18126369096722,45.18135190942333,45.18145039384839,45.18151643699096,45.18160454648613,45.18175810227151,45.18197815670209,45.18230778491416,45.18274693492727,45.18298894129232,45.18329681130764,45.18380195026687,45.18419763335176,45.18465938888303,45.18481320883946,45.18490121155251,45.18514269891559,45.185252895333,45.1853627702119,45.18549433679799,45.18575811212355,45.18619773241279,45.18621968576098,45.18630736469493,45.18641739017777,45.18654912707145,45.18672531348838,45.18714294290725,45.18720874591651,45.18760425837448,45.1877144324168,45.18799972372942,45.188197599707,45.18839553358157,45.18896667377879,45.18916456694267,45.18967020930723,45.18991200706996,45.19008789159224,45.19026328881727,45.19039541688999,45.19068109766404,45.191098666269,45.19127436081119,45.19151580347985,45.19164802279158,45.19169151672535,45.19188953567321,45.19197727101482,45.19210911449642,45.1922848076783,45.19237297417525,45.19268035798257,45.19279010249061,45.19302081985667,45.19311971576426,45.19320790159757,45.19327332830041,45.19344941315362,45.19357041298004,45.19374608352538,45.19394354027989,45.19427316569622,45.19453681735233,45.19482250067755,45.19497626116087,45.19517435890306,45.19554784897382,45.19589916423848,45.19611891386837,45.19642688564457,45.19647078989126,45.19677834617017,45.19699838227898,45.19756964257886,45.1975913525979,45.19778913425095,45.19803109940629,45.19811875899983,45.19844845911478,45.19871226527916,45.19893229860597,45.1989982509047,45.1991079597236,45.19934994052615,45.19948171521133,45.19959692438373,45.19974530597373,45.19988808339755,45.19995408783255,45.20000868277208,45.20009109422968,45.20025557902376,45.20027209484292,45.20031588570274,45.20039856246983,45.20046992238227,45.20054688458728,45.20065636207145,45.20076599038873,45.20078848405868,45.2009417367785,45.20100805977665,45.20106801267263,45.20111203919038,45.20115052513415,45.20118333495045,45.20122191747969,45.20126574464491,45.20133710530924,45.20142511757324,45.20166655241609,45.20186402899169,45.2021062764161,45.20223791112289,45.20228196937439,45.20252350129441,45.20256753900429,45.2026553094256,45.20289699284776,45.20291909358755,45.20307298473013,45.2032045509209,45.20327039037672,45.20342446824794,45.2036004255251,45.20364409202708,45.20397395786215,45.20458920604295,45.20476490122571,45.20505071375599,45.20513863437105,45.20542388362457,45.20559972246821,45.20586358402068,45.20626988816838,45.20657721301779,45.20693980011112,45.20715984424093,45.20725875964806,45.20746185040441,45.20764285620233,45.20779650006857,45.20793935119739,45.20801610999123,45.20808230411773,45.20812592887721,45.20819757806401,45.20823038081231,45.20828541616773,45.20833498381629,45.20837362712028,45.20839030112766,45.20841759459159,45.20843428371337,45.20847238064936,45.20848895502139,45.20848908278249,45.20847808900981,45.2084782531613,45.20846906211771,45.20845543333537,45.20846097275375,45.20851212365761,45.20859033485824,45.20866248303886,45.20868665981034,45.20870844638902,45.20873065643345,45.20873063784943,45.20870850825814,45.20870835363917,45.20871929066432,45.2087467482249,45.20880140201148,45.20885629956768,45.20891138451616,45.2089282228773,45.20895004959071,45.20898833135126,45.20900511512706,45.20898268791892,45.20904325869716,45.20913657121772,45.20927377106855,45.20975182245465,45.20994915152861,45.21023486357598,45.21056461037732,45.21073500544476,45.21088328923592,45.21108069804878,45.21123477790385,45.21136628664071,45.21143261493837,45.21156422452446,45.21171836693525,45.21198229005466,45.21209232082018,45.21227881290722,45.21246047426728,45.21274069902419,45.21300453035919,45.21311443032151,45.2131749169428,45.21341177418297,45.21358189248259,45.21374707989028,45.2137914166732,45.21381874822725,45.2138300217909,45.21383013980973,45.21380816844303,45.21375302759814,45.21375334584735,45.21367093002083,45.21358870219473,45.21354491352751,45.21342424803512,45.21324825709278,45.21318809446979,45.21313864429935,45.21313849659892,45.21317733956941,45.21322092432644,45.21334735610041,45.21338608760469,45.21339178494157,45.21336951221774,45.21331489418156,45.21323208847811,45.21296817786279,45.21279237440029,45.21256153718597,45.21251791653002,45.21250139315692,45.21249012107872,45.21254539377907,45.21272117433801,45.21273720205065,45.21284432767375,45.21296418827092,45.21296447397003,45.21297952461332,45.21305107310928,45.2130621398234,45.21308416591827,45.2131009458106,45.21310644217442,45.21316171155037,45.21320550103206,45.21327180372617,45.21332640165881,45.21338129873143,45.21342516390369,45.21357907487656,45.21371093890347,45.21410640427941,45.21431495201575,45.21436992748861,45.21449051412518,45.21471044521465,45.21479849904905,45.21482020714588,45.21488650945541,45.21512820858947,45.21519419462529,45.21534776425521,45.21540276027697,45.21556721562501,45.21561138344861,45.21562232241477,45.21560555974956,45.21555665556944,45.21546830569649,45.21540812079811,45.21538060795434,45.21536433262693,45.21535839510343,45.21536955972282,45.21538613692631,45.21544661835964,45.21564413199248,45.21577024594924,45.2158745394166,45.21596260814866,45.21609441333655,45.21611653725092,45.21620443592752,45.21629206020265,45.21642427814902,45.2165338879465,45.21660000739445,45.21663310191346,45.21669352041533,45.21668821606215,45.21665515614886,45.21668281854048,45.21673185303187,45.21685258923678,45.217028675318,45.21705077909261,45.2170946618884,45.21720428900515,45.21738037467269,45.21751208476594,45.21755597058946,45.21757809192579,45.21775361415087,45.21777569717874,45.2178198074093,45.21790791560112,45.21829191290062,45.2183798113366,45.21841852696635,45.21844614875017,45.21846832018603,45.21846818810697,45.21847917834942,45.21847932451713,45.2184903342094,45.21850134483839,45.21855060499738,45.21858943345631,45.21863339457585,45.21863317606382,45.21864413354234,45.2186657489942,45.21862177234021,45.2186106673653,45.21859968074978,45.21858346403748,45.21858583301116,45.21865451840986,45.21875886541362,45.21885787795976,45.21890717739754,45.21905528483943,45.21914330190181,45.21918693071821,45.21928566452072,45.21929152848401,45.21928012218102,45.21929098845077,45.21933526814136,45.21938987194352,45.21948344880261,45.21951632019223,45.21956588324655,45.21968648878461,45.2197359425307,45.21984575811084,45.22010362321434,45.2202026529732,45.22032844545291,45.22057597476566,45.22077361860443,45.22084492796948,45.22097060630886,45.22098178904449,45.2209541462726,45.22087176738594,45.2208167895153,45.22081158568079,45.22083868543931,45.22086078523899,45.22093733817921,45.22095912360111,45.22099219776219,45.22101405589464,45.22106355785088,45.22115138088221,45.22121165710911,45.22127715828416,45.22136509884425,45.22158521922982,45.22162910512234,45.22173871369198,45.22178318539546,45.22187069376385,45.22200270535863,45.22206874852439,45.222145489818,45.22240878320563,45.22249692588824,45.22256287859592,45.22262894048388,45.22271660095434,45.22284889909995,45.22301348485288,45.22318927066719,45.22325009190914,45.22327194877971,45.22328865933886,45.22328852868529,45.22329937329015,45.22333271427669,45.22333247287077,45.22340433914673,45.22353045022854,45.22357980708418,45.22361303221191,45.22364071738171,45.22368980796833,45.22373970759588,45.22380584146293,45.22380030006885,45.22375656098598,45.22370688760367,45.22355861433012,45.22326759223585,45.22321272678366,45.22310291216586,45.22294941543834,45.2227076809822,45.22264180407301,45.22255373127696,45.2224439867858,45.22215846969939,45.22199157914051,45.22196626765207,45.22198316122624,45.22202698563396,45.22203831706912,45.22203814493888,45.22213948471616,45.22237866711505,45.22257681374108,45.22273068329881,45.22286234068206,45.22312608487866,45.22334583469699,45.22343351116997,45.22347781286896,45.22356513512093,45.22382866233632,45.22393314132479,45.22412534421106,45.22431765401765,45.2245041645491,45.22461925099985,45.22468531117158,45.22473455855945,45.22478372439781,45.2247841761033,45.2247511760785,45.22473984576933,45.22473994187652,45.22477288909476,45.22482756616225,45.22487123142844,45.22487677422159,45.2248710081252,45.22485999352338,45.22486025933742,45.22487128990284,45.22489315050531,45.22490399499409,45.22495867067651,45.2249698330347,45.22501935734821,45.22506845176943,45.22507410804636,45.22522243083068,45.22543633690794,45.22556241092056,45.2256889379643,45.22578213785401,45.22584812655947,45.22586988573432,45.22611707614719,45.22620469641443,45.22629780255225,45.22654528225751,45.22680274395505,45.22690738539423,45.22692341466468,45.2268793961064,45.22684105251768,45.22683003678273,45.22683533786252,45.22689019863829,45.22696186243411,45.22699458428872,45.22708796697348,45.22714250799902,45.22726942431498,45.22728573866858,45.22732949059084,45.22736782805925,45.22745571229435,45.22754904025512,45.22762598759991,45.22773599133852,45.2277521349708,45.22783470042425,45.22788972992798,45.2279609561701,45.22799359885373,45.2279991802699,45.22799359167705,45.22799896476781,45.22797730957889,45.22790006542247,45.22779035962924,45.22774630027268,45.22764762764292,45.22754301249871,45.22753763750995,45.22755419271845,45.22758159271584,45.22762546217403,45.22773513310497,45.2278233964973,45.22791116663072,45.22795508662318,45.2279767016669,45.22798788142756,45.22796561347958,45.22798795838105,45.22804286011817,45.22810859527275,45.22819202341511,45.2282736605348,45.2284384004059,45.22849341446827,45.22851557453826,45.22851566921941,45.22848287835832,45.22845536260573,45.22838940062612,45.22833972879133,45.22830723188181,45.22830738739081,45.22831836599305,45.22833481329613,45.22837298878849,45.2284172087238,45.22843916203964,45.22850486473575,45.22856519514612,45.22864239921293,45.22868037833231,45.22870268807323,45.22881241577377,45.22883451923479,45.22892229114264,45.22898252630453,45.22902651918536,45.22903734773549,45.22898231070432,45.22900450113852,45.22905368324169,45.22908679633444,45.22911962666998,45.22915225616946,45.22919668648031,45.22923497244184,45.22926240064804,45.22927924185078,45.22929570162064,45.22933961063811,45.22935575539424,45.22939456458934,45.22941668689681,45.22944375028711,45.22944968037108,45.2294606715114,45.22953200141934,45.22955401271712,45.22955952557727,45.22957054145809,45.22965282337837,45.22972430454115,45.22972462175068,45.22970276754263,45.22961465904119,45.22959248274913,45.22956551539038,45.22957089049593,45.22965857205092,45.22968074860825,45.22970281570051,45.22972456263029,45.22973201028057,45.22974108902933,45.22974894886637,45.2297030367854,45.22963731412866,45.22958777043289,45.22957685605093,45.2296048010805,45.22958598804173,45.2298682492841,45.22990677817101,45.22991811179236,45.22990166573585,45.22985206769566,45.22981376161137,45.22967100140522,45.22962666471799,45.22961593310702,45.22959954540722,45.22960536670342,45.2296379245383,45.2296710968944,45.22981406477057,45.22988003414884,45.22996782651035,45.23005583782555,45.23008848697695,45.23023690631021,45.23035232225956,45.23046204721668,45.23059357289917,45.23079183461637,45.23083583039657,45.23087380049841,45.2309069904182,45.2309125358452,45.23095095195,45.230989683743,45.23102284018589,45.23109929666858,45.23116518867616,45.23120405563832,45.23125885962812,45.23127549025757,45.23130862589898,45.23141846347497,45.23151194170199,45.2315339918048,45.23165466701899,45.23169887018413,45.2316931571902,45.23167161525198,45.23166590194622,45.23171585017142,45.23171560515822,45.23175426664666,45.23184191639058,45.2318913469682,45.23191344798136,45.23194644768641,45.23211132591099,45.23213370836012,45.23215572883962,45.23218856266708,45.23223791437723,45.23232037931288,45.23237577862123,45.23243042726878,45.23239245062017,45.23240890899265,45.23246957307794,45.23261801759115,45.2326728567197,45.23270566191846,45.23270611054269,45.2327282055383,45.23272769602066,45.23279406825812,45.23281614390837,45.23281049559245,45.23282719828875,45.23305831949511,45.23311912083326,45.23319019803677,45.23326730838914,45.23338857283373,45.23340002277971,45.23341103228514,45.23341085732752,45.23342186992303,45.23343298523202,45.2334439371536,45.23344409941074,45.23345505103966,45.23344430764977,45.23345542901303,45.23343370467457,45.23344495018993,45.23340128072293,45.23336816401272,45.23336288502687,45.23333037179008,45.23331958516765,45.23328664430588,45.23322628634136,45.23317134597513,45.23311127970009,45.23291321749697,45.23277632385802,45.23266658389738,45.23238083312068,45.23235889953958,45.23222674628556,45.23205110608617,45.23200723885719,45.231919224024,45.23176559808167,45.23174366571561,45.23165579653173,45.23152390959494,45.23143616224496,45.23128248581148,45.23121625029631,45.23112854757009,45.23086525697559,45.23064524151959,45.23050282364285,45.23031613183649,45.23025051276559,45.23017376606403,45.23017351696051,45.23015162577147,45.23012957909124,45.23006408853495,45.22986652155301,45.22984471720579,45.22982228590996,45.22982260210991,45.22964698263198,45.22957016308992,45.22953760131713,45.2294164007671,45.22929007332095,45.22921369037353,45.22912569367302,45.22907608759842,45.22901037510762,45.22890063243415,45.22876881300131,45.22868081156799,45.22861486850169,45.22843918605673,45.2282635455988,45.22818676403919,45.22794526216066,45.22789047615279,45.22780237430811,45.22776926571897,45.22771487612801,45.22754984526942,45.227500716538,45.22743469182007,45.22722583702813,45.22714905139562,45.22701196285652,45.22699015544,45.2269682631853,45.22696801530851,45.2269295792206,45.22684769254517,45.22683647900335,45.22674897602056,45.2266608287153,45.22660614174547,45.22645261095067,45.22638639361556,45.22626007849396,45.22611185115168,45.22599644397953,45.22595263959811,45.22574427116827,45.22559568951993,45.22524428187449,45.22505799624893,45.22437673651211,45.22433301778558,45.22415705463436,45.22400369014681,45.22338812095446,45.22319075115133,45.22292687226054,45.22286119855028,45.22277342544279,45.22257561867774,45.22226794000952,45.22213634400278,45.22185038783014,45.22174080631287,45.22143321511475,45.22141086584882,45.22136718900641,45.22121309855344,45.22088377818383,45.22083970518888,45.22066435076685,45.22022482809313,45.22009262960296,45.21982897989285,45.21967514406634,45.21941160279445,45.21908205655678,45.21903833464808,45.21884030060972,45.21877464768902,45.21862085142621,45.21842281251988,45.21815957961178,45.21728054750587,45.21688505294638,45.21644581570393,45.21627000044472,45.21596269478619,45.21574255609131,45.21551428496637,45.21512788222223,45.21497391509759,45.21477610306677,45.2145787112185,45.21435869331717,45.2143367610734,45.21367783529512,45.21361189070626,45.21341403599584,45.21330453731886,45.21328235230018,45.21297484745168,45.21275496702258,45.21262354820673,45.21249134117851,45.21233232150836,45.21220027576584,45.21210721205794,45.21203033718936,45.21185448560247,45.21183269729128,45.21166768220215,45.2116352793865,45.21155801334777,45.21156919089436,45.21161884519837,45.21167384743405,45.21170653193474,45.21174491251539,45.21180033389673,45.21183309716698,45.21183284585055,45.21185483384008,45.21187688046133,45.21192089672859,45.21194319448646,45.21209717548989,45.21223995731943,45.21237186944794,45.21245967357704,45.21267935869035,45.21279123516656,45.21292314674486,45.21307748324102,45.21326427247596,45.21336872981473,45.21341291274423,45.21345667509933,45.21352813216804,45.2135834231398,45.21358358771057,45.21356176312517,45.21351265420994,45.2134246423752,45.21337538029096,45.21330912048216,45.21326568680164,45.21287003114725,45.2127386479806,45.21259002384646,45.21250243672907,45.21247501460485,45.21248070645474,45.21254687341406,45.21273368470877,45.21288195948075,45.21297011123526,45.21305793470882,45.21310175285158,45.21314563810984,45.21321156553816,45.21334372047281,45.21346443245313,45.21372246454411,45.21381549201647,45.2138977117826,45.21398042857675,45.21402426666826,45.21417831468682,45.21433190915962,45.21444183006214,45.21446406952458,45.214529609554,45.2145740866648,45.21466725907514,45.21472760935942,45.21477196320352,45.21483788079208,45.21494754578828,45.2151896851213,45.21520611610917,45.21545361840062,45.21556344550139,45.21573918727879,45.21580520193316,45.21603645259007,45.21621204837889,45.21623428847663,45.21638783673702,45.2166300698559,45.21678347406217,45.21706936043984,45.21713531785301,45.21722307099205,45.21726701088327,45.21730605204306,45.21733335457531,45.2173335545677,45.21722375199784,45.2172238536364,45.2172571459711,45.21730105494505,45.21734482834894,45.21738864556576,45.21769640437708,45.21778426939411,45.21782843770988,45.21788892531178,45.21791069859432,45.21791629552315,45.21792727854632,45.21792780796872,45.21791660099803,45.21791695743261,45.21790602559247,45.21790605630048,45.21787301715623,45.21781802650558,45.21767543545557,45.21759886441721,45.21747884988358,45.21735177420055,45.21724726992244,45.21718152124547,45.21714315775769,45.21710989698738,45.217099057113,45.21710431731807,45.21711552510538,45.21719216600995,45.21719189503477,45.21720305346221,45.21729054962812,45.21731238213707,45.21730727515821,45.21731250838524,45.2173346448222,45.21732366489884,45.21732361245871,45.21730160697193,45.21724646430846,45.21719700646516,45.21714731168246,45.21708131653399,45.21703212557691,45.21698275660845,45.21695033072049,45.21684067363137,45.21684041432442,45.21676354223684,45.21671985797229,45.21668704476675,45.21667581610568,45.21644033755597,45.21634122296823,45.21623696018131,45.21611637662022,45.215984628252,45.21576494634269,45.21556724730308,45.21543540609594,45.21530349673203,45.21522150994815,45.21518851048042,45.21518298898145,45.21524902447481,45.21524935709601,45.21523814821487,45.21523793851784,45.21524924332691,45.21523272373903,45.21514479521252,45.21512854935925,45.2151395275151,45.21518352967156,45.21522723085064,45.21524949408388,45.21524984576696,45.21526595003947,45.21529914018436,45.21538726282483,45.21542012722524,45.21543648912473,45.2154367006713,45.21541484207733,45.21542560389165,45.2154754159144,45.21552456691046,45.21565640848203,45.21572285905412,45.21589842204157,45.21592052000716,45.21603062093772,45.21609629489497,45.21616236911323,45.21638242987977,45.21640440083317,45.21662370853686,45.21666787914027,45.21671202113916,45.21675595253379,45.21681102713261,45.21691508587637,45.21706953635815,45.21715178265247,45.2172174329329,45.21741541650442,45.21756954162037,45.21774498659283,45.21782231559212,45.21787193296345,45.21799295616725,45.21806445610516,45.21813010855942,45.21819603979551,45.21825102015003,45.21840456037297,45.21844851511086,45.21853656814584,45.21860287402328,45.21864675588836,45.2187016218552,45.21877258631994,45.21882756948502,45.21890466577524,45.21902518204041,45.21917385140873,45.21919594788423,45.21926178574333,45.21930809177831,45.21937109360679,45.2193929557065,45.21941510118943,45.21947525464666,45.21950813885057,45.21955771131211,45.21964580674587,45.21971160017604,45.2197553439502,45.21993142155807,45.21999742523865,45.22010696336723,45.22016231559329,45.22027782001656,45.22035985292187,45.22044782980772,45.22055783594681,45.22062376861281,45.22073407517322,45.22081067820363,45.22094261575534,45.22098675668488,45.22102521106672,45.22109092527331,45.22114080137614,45.22118470962307,45.22127226456711,45.22137133748553,45.22144323225682,45.22149282197604,45.22149256265595,45.22151989767544,45.22156415200573,45.2216467977545,45.22169618069866,45.22182256616091,45.22195442564023,45.22204217672543,45.22208596869716,45.22213563690521,45.22215768617506,45.22217416492492,45.22218472054243,45.22217363277966,45.22214625554984,45.22208036748861,45.22203641747024,45.2220143242925,45.22200882171007,45.22200901274638,45.22202528248465,45.22205786320057,45.22212372360767,45.22226671336384,45.22230502857134,45.22238764796533,45.22252515857203,45.22276667622882,45.22298628528339,45.22329396829548,45.22338173321001,45.22340956161541,45.22346467807733,45.2234698741076,45.22348087102538,45.22348121951725,45.22349221945819,45.22350302372414,45.22352530698442,45.22359652126787,45.22365722925377,45.22372338050602,45.22376183142678,45.2237895237079,45.22382217327972,45.22395945086702,45.22399811747241,45.22408604827258,45.22412983757751,45.22420157229914,45.22421809182588,45.22421792772329,45.22422890323848,45.22423968933261,45.22427814056737,45.22433866385649,45.22449295100279,45.22455883177999,45.22459192417338,45.22461895677337,45.22472386627582,45.22477312687849,45.22483915019081,45.22506418645733,45.22510853474223,45.2251850655804,45.22522922559303,45.22529532374377,45.22539421029077,45.22543779131444,45.22546028699913,45.22559208530901,45.2257233939159,45.22583878480808,45.22595947408652,45.22603083625678,45.22605276809165,45.22609730599994,45.22612983852799,45.22619604424074,45.22623976112897,45.22628411368471,45.22637178411212,45.22648164824668,45.22654224446067,45.22662437743765,45.22666877345786,45.22674523303873,45.22677319905022,45.22683339102431,45.22687736905774,45.22696527839536,45.22706442390052,45.22708635574526,45.22712995931218,45.2273039960447,45.22743749925425,45.2274818050375,45.22750385551199,45.22749802839361,45.22747603435322,45.22741013171555,45.22738247294613,45.2273932225868,45.22749241526444,45.22755243504946,45.22769522042057,45.22787098298024,45.22792582583644,45.22793135398311,45.22789805556703,45.22789237074824,45.22789812789195,45.22794732772049,45.22803501135879,45.2281558835237,45.22826566238452,45.22831472454653,45.22832589385859,45.22832046517195,45.22832557087627,45.22835303092234,45.22838589114732,45.22845182873665,45.2286715851715,45.22868811000075,45.22879228995171,45.22890206174593,45.22905048000712,45.22916551652499,45.22935788602786,45.22937424624639,45.2297424378712,45.22983030239009,45.22995074868044,45.23006082197006,45.23010486839937,45.23014889681395,45.23023671149009,45.23030278466261,45.23045636664973,45.23054432476702,45.23072056298037,45.23085214663895,45.2309180790422,45.23100622038228,45.23112685353452,45.23130295318392,45.23136895234865,45.23143460466034,45.23149511182955,45.23153895016301,45.23160488468019,45.23165963132439,45.23167599154603,45.23167606129751,45.23170889780219,45.23173074102727,45.23173628881659,45.23171960368013,45.23167562489026,45.23161533455269,45.23157699688442,45.23156569233259,45.23156590248193,45.23161510312032,45.23171382628869,45.23175792232121,45.23183993421129,45.23194965727903,45.23202125723516,45.23213076766093,45.23221291671875,45.23226794790367,45.23244364518916,45.23289382688555,45.23342709072568,45.23360829578532,45.23383862619838,45.23401491608772,45.23445425884404,45.23467412659697,45.23473970616446,45.23489360070486,45.23491571421115,45.23522309886325,45.23528947641518,45.23539891977067,45.23546475757611,45.23548685371293,45.23561864902398,45.23570672431819,45.23577255908431,45.2358606102957,45.23599243205554,45.23612396900355,45.23616841656625,45.23632207057366,45.23636593440983,45.23645417135963,45.23660764198652,45.23669587573838,45.23693744307516,45.23717931326622,45.23797024693957,45.23805848781407,45.23808041968348,45.23812462780892,45.23814655967769,45.23821228250977,45.23836607601535,45.23865181026657,45.23876146310185,45.23889360841088,45.23924545400378,45.2395531127754,45.23968479130487,45.23979490950347,45.23994863277849,45.2400424103398,45.24007569143885,45.24011390157548,45.2401139941814,45.24012499184001,45.24012543284007,45.24011445888843,45.2401140521905,45.24010309917249,45.24010353685797,45.2400926048366,45.24009269285515,45.24008173979698,45.24007625209406,45.24008183861958,45.24010387821141,45.24015913090504,45.24026313369362,45.2402799621406,45.24032966845181,45.24035701934481,45.24035689328044,45.24036840877277,45.24036824165219,45.24042835566053,45.24047289043242,45.24062645650606,45.24073105683966,45.24077507189146,45.24081912911407,45.24088539678372,45.24092945297016,45.2409296199418,45.24094096292459,45.24098467028893,45.24102347079545,45.24108401343923,45.24114843313745,45.24120477395166,45.24123782919887,45.24125982267292,45.2412708434574,45.24132018888913,45.24140827329472,45.24146904610301,45.24154012084032,45.24171061488928,45.24177644511132,45.24182050904152,45.24186468892207,45.24187561527956,45.24193605825892,45.24198554763556,45.2421172154928,45.2422056473382,45.24230423340033,45.24234856368281,45.24247997445963,45.24250194835973,45.2426341348777,45.24289781522302,45.24305167038684,45.24318340624942,45.24323851307572,45.24328795779113,45.24333764541726,45.24335433735218,45.24337598040293,45.24344197438989,45.24353561418274,45.24366758782334,45.24393121706771,45.24397512262857,45.24401903529987,45.24410154798038,45.24414490138113,45.24417263155568,45.24418378821458,45.24428267368983,45.24428231263495,45.24426025907219,45.24424924223487,45.24424356327819,45.24424924031691,45.24427113262544,45.24430935929524,45.24437536503344,45.24451252417513,45.24466659429712,45.24471076003303,45.24482061278414,45.24488641891758,45.24492481320316,45.24493032591579,45.24491936812007,45.24491948981112,45.24495811619742,45.24504050848002,45.24519463478561,45.24523308224008,45.24526613793634,45.24530439358458,45.24533732493671,45.24538139690686,45.24541395795175,45.24545284506253,45.24548559462547,45.24551278882182,45.24557886030008,45.24564481546717,45.24573292509093,45.24575489896013,45.2458643981327,45.24590844500463,45.2459634146832,45.24602972896557,45.24607370612058,45.24613968234043,45.24627113677068,45.24633695243985,45.24640304992425,45.24644120284116,45.24646360988715,45.24646892648895,45.24646369127552,45.24642508398041,45.24633667228559,45.24630915072618,45.24623234906858,45.2461940232292,45.24616093353555,45.24616620879094,45.24616054437627,45.24612715089138,45.2460611906056,45.24603913488853,45.2459624795241,45.24594042096793,45.24588517724662,45.24587439990753,45.24586342283591,45.24586303610673,45.24587393094341,45.24590703704763,45.2460220025649,45.24618668772301,45.24624148869766,45.2462963885929,45.24641696605298,45.24645027336491,45.24699361624691,45.24700454919915,45.2471253959597,45.24722954335045,45.24730627568992,45.24737252227354,45.24741629937751,45.24759159092581,45.24766783690286,45.24775597037934,45.24787122562836,45.24795885836732,45.24806858037433,45.24808494420237,45.24836518340068,45.24869457030578,45.24890348966273,45.24899133388224,45.24900771728727,45.24922199372791,45.24957352153864,45.24961766496099,45.2496615508766,45.24972706295568,45.24977096871847,45.24979330010961,45.24998352156409,45.25001234468025,45.25002872805447,45.25008916559559,45.25019383083882,45.25031429507015,45.25057760585096,45.25070921289888,45.25090156109491,45.25100538641857,45.25122485608942,45.25134551021117,45.25141132608414,45.25183956799459,45.2518563047929,45.25196006306411,45.25209225170332,45.25228969846904,45.25240995536398,45.25244300432525,45.25248686740968,45.25275071250822,45.25281654763658,45.25283270079946,45.25289291984019,45.25290965429213,45.25299178535903,45.25306871595053,45.25311295303394,45.25339842186319,45.25342023438845,45.25359560941052,45.25361234385736,45.25378219925037,45.25387558291686,45.25395797003346,45.25403459894621,45.25405653074574,45.2541057526559,45.2542102539958,45.25422640651477,45.25428716659874,45.25430333951711,45.25436353331855,45.25438027004425,45.25455075417248,45.25456692533516,45.25479182327551,45.25480855586179,45.25497845808709,45.2549951931,45.25509927581774,45.25513232168423,45.25526399920159,45.25528017035711,45.25536286162551,45.25537901350209,45.25548367685193,45.25551616189365,45.25564838223033,45.25566455270639,45.25599973676529,45.2560322218022,45.25614192302358,45.25618620712188,45.25631809242692,45.25633981399196,45.25639481514379,45.25657019068519,45.25685566483931,45.25716320604498,45.25741506913118,45.25764584394138,45.25778828723521,45.2581068763153,45.25833750878721,45.25845832934353,45.25864465847674,45.25890803147453,45.25901812780865,45.25936941604626,45.26006063961057,45.26028064484053,45.26032436561208,45.26041213251315,45.26044518249121,45.26062092954287,45.26088405088866,45.26093902845152,45.26100521903609,45.26111458881856,45.26115863674064,45.26131280384701,45.26133433624176,45.26148794133239,45.26153196889315,45.26154849292852,45.26174064989985,45.26176276419715,45.26180662783536,45.26191665191119,45.26196053895738,45.26198262983608,45.26202653788648,45.26220212246429,45.26229005507061,45.26231212730919,45.26246589499296,45.26292718489412,45.26319076795805,45.26321272083154,45.26365242948216,45.26400432114718,45.26404794668935,45.26406987845625,45.26437790376855,45.26453186175273,45.26455379353762,45.26461967513274,45.2647295858168,45.26488342209257,45.26497123529501,45.26512565797879,45.26545505154103,45.26582912231538,45.26593870096315,45.26596063279739,45.26613682328263,45.26631286763686,45.26646674842318,45.26684062233651,45.26690664576896,45.26739110256919,45.2676991393997,45.26772125302897,45.26796314932758,45.26813410685781,45.26837080375712,45.26839287271206,45.26867897608865,45.26870106611647,45.26894305736589,45.26900893612022,45.26925073434753,45.26936079473884,45.26940500237809,45.26947681737535,45.26952071141813,45.26952648537129,45.26953746393169,45.26953750472263,45.26954901549131,45.26957129115832,45.26962661652495,45.26967090859094,45.26967121136931,45.26972615344017,45.26980899133594,45.26999620198866,45.27006409000755,45.27020027201511,45.27020001233098,45.2702555761167,45.2702994524371,45.27034358549269,45.2704203719907,45.27055208433669,45.27061847157898,45.27070100696173,45.27076140696652,45.27087156849077,45.27093740686371,45.27098143027406,45.27102542581488,45.27106387293644,45.2710801762565,45.2710861358127,45.27110249102124,45.27111915468529,45.27114105654617,45.27123426225148,45.27127798660463,45.27136591548946,45.27143219596793,45.27151995286182,45.271783992886,45.27189419264015,45.27211415492636,45.27266340020815,45.27270189744681,45.27271332265826,45.27275743822947,45.27280147252641,45.27284546547894,45.27291671240881,45.27307038689142,45.27329015970276,45.27366358675286,45.27381750796706,45.27383946068984,45.27390574221372,45.27394976526753,45.27403757196795,45.27416928519228,45.2745868129566,45.27460904600119,45.27487264995442,45.27502663011168,45.27526898423989,45.27562037297344,45.27577461502348,45.27590634340097,45.27601624563972,45.27623607606169,45.27636827506355,45.27641175816196,45.27674161692195,45.2769396195555,45.27702744892246,45.27707176934756,45.27751140564561,45.27781894605612,45.27797280464555,45.27810477620343,45.27812686718657,45.27850009022678,45.27865402652902,45.27896109985511,45.27902698567909,45.27911475417829,45.27927985849892,45.27945541723565,45.27974054744958,45.27976266374511,45.27987292585046,45.27997146030968,45.28021299786597,45.28038781381004,45.28058549026086,45.28082705073681,45.28114494484449,45.2813638763235,45.28144611366907,45.28150112867465,45.28166180864705,45.28188994360866,45.28210937775772,45.28257571840607,45.28270161130218,45.28272396519736,45.28298739253578,45.28320661452216,45.28331643696792,45.28338183417018,45.28340376519873,45.28353580293412,45.28362382914921,45.28366741460638,45.28368936729537,45.28397455010002,45.28430375510843,45.28455616787149,45.28483572760292,45.28504971697603,45.28515928836473,45.28537282466296,45.28543893481955,45.28559773803134,45.28573444083684,45.28590452115059,45.2862990618812,45.286869749343,45.28704526600156,45.28734158214676,45.28735831781877,45.28742961086109,45.28759427340825,45.28780242977909,45.28797749409544,45.2881968773068,45.28829520928907,45.28841596591134,45.28867951309359,45.28883303428635,45.28905207696736,45.28920578770998,45.28931522059404,45.2894469753589,45.28974270199071,45.28984695498978,45.2899346332741,45.29025849519447,45.290335287218,45.29058246427953,45.29074225067793,45.2907920445864,45.29082475176388,45.29096241929698,45.29099015055177,45.29104503779812,45.29106688107564,45.29104995152829,45.29062594441515,45.29059325533833,45.29058197616671,45.29058725153899,45.29072971805707,45.29083921022465,45.29094279591151,45.29107970375868,45.29135414770225,45.29161678790011,45.29174860797367,45.29184722037924,45.29196776563778,45.29231861376633,45.29244976282306,45.29247195216546,45.2925379086572,45.29255954029222,45.29273471084655,45.29282290899355,45.29292110275889,45.29299801439591,45.29323902936091,45.29343681249867,45.29354618839746,45.2937544845753,45.29395702045224,45.2943897328615,45.29448867053961,45.29457644619666,45.29468591873173,45.29504712750534,45.29505279371912,45.29510190298244,45.29524447401392,45.29537557881478,45.2954737989587,45.29563723961044,45.29565915004275,45.29568616499,45.29569113346277,45.29568568389568,45.29567468464143,45.29565797569675,45.29565159517627,45.29566241397337,45.2956733456523,45.29567260302959,45.29569407174256,45.29569423879083,45.29570486553717,45.29572647338347,45.29572581943011,45.2957424628314,45.29575740184377,45.29574500079772,45.29572248416288,45.29570516392325,45.29568840145153,45.2956824760478,45.2956875530357,45.29570896985561,45.29572525566496,45.29576345460237,45.29577967007725,45.29580157605858,45.29586724891973,45.29587805931302,45.29587807956521,45.29588870394517,45.29590558103251,45.2959662015324,45.29597191378048,45.29598821090725,45.29600489668363,45.29604899113187,45.29606515790406,45.29606445227312,45.29608609923464,45.29612969765304,45.29625028038363,45.29631044768882,45.29645848337628,45.29652457653344,45.29664495276768,45.29683136345879,45.29685355279123,45.29698487426266,45.29734630410775,45.29756538624548,45.29778952118986,45.29787694817781,45.29790963692285,45.29790927872331,45.29794175964865,45.29794155958598,45.29790781269796,45.2978620311345,45.29782351151773,45.29775122115425,45.29775113955903,45.29777837884595,45.29785482297653,45.29789291671545,45.29790365069332,45.29791335280257,45.2978852162033,45.29787421298751,45.29783008841343,45.29778546759027,45.29772508848318,45.29770285164079,45.29769749011499,45.2975650110956,45.29742176461524,45.29727815566601,45.29716237216774,45.29700797049705,45.29695868847211,45.29694155004393,45.2969254327686,45.29686522253834,45.2967830355397,45.29673890907382,45.29662882591335,45.29649731798006,45.29603595717912,45.29572809713349,45.29564085652222,45.29561859465444,45.29546490135197,45.29535492610542,45.29533283066707,45.29520679473826,45.29506399772914,45.29498161838319,45.29494310878273,45.29484404809257,45.29480054119816,45.29476707274733,45.2947566335399,45.29474526777927,45.29470115981261,45.29469050804153,45.29467929465669,45.29466850993362,45.29466837923971,45.29465733767042,45.29463573726623,45.29462454710333,45.29462444746992,45.29461379602532,45.29460236047326,45.29458041596445,45.29455883587518,45.29454762229036,45.29453695686247,45.29452564155174,45.29452573928318,45.29451454831355,45.29452045116968,45.29450933606087,45.29452013362721,45.29451436160569,45.2945255807448,45.29452553002471,45.29451493590107,45.29452013491053,45.29453133193616,45.29453096511183,45.2945641201527,45.2945806271768,45.29459715929728,45.29465183176365,45.29471755441391,45.29476188380684,45.29483289602548,45.29497588565993,45.29512943173836,45.29518472802882,45.29527804598647,45.29534913330625,45.29540977477007,45.29543897793253,45.29554119432675,45.29559644559178,45.29564046675914,45.29564015529785,45.29568448414619,45.29568417075464,45.29573355659273,45.29577738592093,45.2958489736222,45.29586015089465,45.29585978113484,45.29587070611311,45.29588564332308,45.29591484190637,45.2959035856854,45.29590385857296,45.29592561069897]}],[{"lng":[-87.56399289912036,-87.56396216955685,-87.56390670964994,-87.5639070985829,-87.56393742608054,-87.56401476186001,-87.5640760993861,-87.56410683650559,-87.56414693983463,-87.5641394090035,-87.56410818879323,-87.56406192021386,-87.56399289912036],"lat":[44.82904512283187,44.82906134647933,44.82917662772522,44.82924246427471,44.82929206152463,44.82931424953743,44.82930346032683,44.82928695842329,44.82919835534486,44.82913320822499,44.82906727593029,44.82903956572351,44.82904512283187]}],[{"lng":[-87.56248308753436,-87.56259490162192,-87.56268955480053,-87.56274376917392,-87.56274609221026,-87.56271676671852,-87.5627518212742,-87.56286026649786,-87.56285556024707,-87.56286737308049,-87.56290485235652,-87.56293592051938,-87.5629901772695,-87.56301456936076,-87.56294034031443,-87.56282234277586,-87.56278430021065,-87.56270649913724,-87.56266084332921,-87.56264521280846,-87.56262892475856,-87.56260609294016,-87.56258260938219,-87.56248308753436],"lat":[44.82911275915708,44.82927352624607,44.82931633794527,44.82930568363113,44.82925059372187,44.82915854283202,44.82909599353841,44.82909296026508,44.82926080629546,44.82926190463412,44.82927311586313,44.82926758967929,44.82921838985393,44.82910863284514,44.82899395949496,44.82890479526161,44.82888823156117,44.82887700111269,44.8289097851789,44.82894293141362,44.82908549167272,44.82910188300065,44.8290963182642,44.82911275915708]}],[{"lng":[-87.53155577273665,-87.53147078323363,-87.53140818545329,-87.53131525522028,-87.53130754228216,-87.53135983277238,-87.53137550475671,-87.53137521152146,-87.53138930213505,-87.53140422386288,-87.53136543873399,-87.53123561117978,-87.53133395744695,-87.53142649205395,-87.53145701415278,-87.53167340816223,-87.53170393287104,-87.5318586258274,-87.53195028824247,-87.53202818218449,-87.53211357566036,-87.53214392499987,-87.53220798291514,-87.53224703459496,-87.53232964038786,-87.53234846422122,-87.532340854377,-87.53236496973066,-87.53234983030956,-87.53228085662759,-87.53218879042686,-87.53191016376705,-87.53184204629919,-87.53174195586965,-87.53169585670162,-87.53164204172108,-87.53161022439394,-87.53155577273665],"lat":[44.85476071823093,44.8548429940556,44.85491956154858,44.85509506224081,44.85518294871179,44.85540294411462,44.85542494128327,44.85546882026754,44.85549078870114,44.8556227668097,44.85571588811443,44.85584782617624,44.8558972164163,44.8558975329344,44.85588665828833,44.85587614863291,44.85586527154582,44.85585483368919,44.85583852682973,44.85581124017446,44.85575653898614,44.85571275068146,44.85536136579138,44.85531747871952,44.85525400020142,44.85505411077353,44.85501006091585,44.85483447934343,44.8547629793779,44.85472969921325,44.85471842583106,44.854723086121,44.85470670790172,44.85462408798819,44.85462927632933,44.85466693582912,44.85468959569256,44.85476071823093]}],[{"lng":[-87.53068825534862,-87.53070118194987,-87.53089196496629,-87.53144532420308,-87.53278582922233,-87.53334102193934,-87.53387550374465,-87.53480793361585,-87.53475624479107,-87.53418913014792,-87.5340676046484,-87.53396039189614,-87.53374494927041,-87.53371377211775,-87.53356001836151,-87.53340562001523,-87.53322102199783,-87.53318985712581,-87.53309732415789,-87.53285149482018,-87.53266642709988,-87.53257342686608,-87.53254266613756,-87.53249197037593,-87.53242464854677,-87.53253090076194,-87.53241261342895,-87.53255745842564,-87.53243279579547,-87.53230975119499,-87.53206273253323,-87.53223453085499,-87.53222730684254,-87.53144101469336,-87.53120670837637,-87.5308864096737,-87.5310147752494,-87.53068825534862],"lat":[44.85699416768942,44.85724678427538,44.85763181675628,44.85802890426473,44.85805451522121,44.8579461084118,44.85756325751804,44.85630791530731,44.85590676713729,44.85520191786213,44.85488028123491,44.85487177224441,44.85486008392647,44.85484928379225,44.85483780362263,44.85480436482631,44.8547927828975,44.85478169842087,44.85478138519353,44.85475891378369,44.85475829092085,44.85476893424504,44.85478543253954,44.8548611346644,44.85527039908209,44.85550506351583,44.85592222924077,44.85614225628832,44.85644957208593,44.85651527264266,44.85646491879973,44.85614681181444,44.85592722839758,44.85600192940836,44.85598730216027,44.85596742794812,44.85631369501316,44.85699416768942]}],[{"lng":[-87.51512000449635,-87.5152421809657,-87.51544972431039,-87.51548010575465,-87.51557220463953,-87.51569538895346,-87.51606439382665,-87.51631109549957,-87.51643397149988,-87.51661775762912,-87.51698817763258,-87.51723501863488,-87.51726555494396,-87.51739758772065,-87.51754425608463,-87.51765239746736,-87.51773782787083,-87.51787641092969,-87.5179623139481,-87.51818562616717,-87.51836408911664,-87.5184571957049,-87.5185423084318,-87.51862679074893,-87.51874345750917,-87.51879763913736,-87.51882897818399,-87.51892097599054,-87.51916704009102,-87.51935193058901,-87.51953791376268,-87.51971558395913,-87.5198313032418,-87.51991641397342,-87.5199858528954,-87.52007298979926,-87.52008908175199,-87.52012862104841,-87.5202524647473,-87.5205398844665,-87.52067885412274,-87.52084140777573,-87.52089607263723,-87.5209134880068,-87.52096511545943,-87.52098915447792,-87.52098882049177,-87.52095896454782,-87.52092889679786,-87.52089050655239,-87.52078220126414,-87.52056616216771,-87.52022724879218,-87.51997995905204,-87.51948632775424,-87.5192087358383,-87.518977799071,-87.51885501403765,-87.51870073793046,-87.51848553223921,-87.51836139691939,-87.51829969094898,-87.51820777374816,-87.51786802217489,-87.51765126821316,-87.51746670243195,-87.51735089090216,-87.51732762527651,-87.51726592057288,-87.51723553986139,-87.51711213053746,-87.51686491666287,-87.51667996926435,-87.51644841152641,-87.51640221026516,-87.51634762164669,-87.51632515652651,-87.51627135613077,-87.51624888055998,-87.5161246820671,-87.51605539052495,-87.51599329194241,-87.51590864957979,-87.51571347648967,-87.51564323030748,-87.51558051740842,-87.51543385241438,-87.51526267935407,-87.51516990329833,-87.51511549056757,-87.51504478164453,-87.5150444848292,-87.51505999979513,-87.51505874964043,-87.51512000449635],"lat":[44.87190188931971,44.87207811831131,44.87223792143447,44.87224899368102,44.87231513898542,44.87237605031651,44.8724980130452,44.87263053710454,44.87268019366778,44.87273032507144,44.87276426495661,44.87276485479752,44.872753982466,44.87273800995949,44.8726945018897,44.87264536965891,44.87259068322313,44.87245923087776,44.87239358385371,44.87227888248901,44.87221355561408,44.87216438139124,44.87209871917565,44.87201081611639,44.87192895427799,44.87190171982456,44.87189058917733,44.87188555589952,44.87194097815451,44.87194696373019,44.8719090917868,44.87184375042577,44.871783811924,44.87171814620369,44.87163047931035,44.87138875010641,44.87123522490405,44.87112524463549,44.87094986349361,44.87068716790733,44.87058328676068,44.87050130113504,44.87046282161882,44.87042578196162,44.87040271175526,44.87035878398352,44.87029294949029,44.87017752593587,44.87012229712641,44.87009502028036,44.8700560958977,44.87009388527797,44.87008201706391,44.87009211687696,44.8702006669906,44.87021629729621,44.87017723604378,44.87014390620718,44.87008850760012,44.86997805687114,44.86993935068269,44.86993912921312,44.86996076597779,44.87009712802292,44.87015149005495,44.87015647462101,44.87014495664374,44.87013404271676,44.87013382679339,44.8701227550356,44.87012232184191,44.87020414945033,44.87023641290875,44.87023025363087,44.87021911760522,44.87021905481716,44.87020787607284,44.87020783040079,44.87019693466218,44.87019648322578,44.87020706858934,44.87023441269054,44.8703442547753,44.8707059949565,44.87079392371847,44.87085388610834,44.87095252969475,44.87110577628603,44.87122078658706,44.87130849444747,44.87146223998517,44.87161611687349,44.8716600554261,44.8717258554322,44.87190188931971]}],[{"lng":[-87.42421241621012,-87.42526169727792,-87.42621884646914,-87.42671276701977,-87.42859497530715,-87.43029230393471,-87.43174267078665,-87.4329461750585,-87.43344000284824,-87.4336808665546,-87.43418062093804,-87.43535325733284,-87.43701917577982,-87.43825254312797,-87.43923207031668,-87.43982554715706,-87.44196284341328,-87.4423669477717,-87.44287531407882,-87.44309069787232,-87.44309063034345,-87.44322049143285,-87.44366746091674,-87.44409969348429,-87.44658954940596,-87.44754454918099,-87.44815329813113,-87.44900974632553,-87.45014178949616,-87.45109007944018,-87.45230084140867,-87.45377294047182,-87.45486707468308,-87.45607665486631,-87.45631549073782,-87.45708763329124,-87.45751917912143,-87.45749484642185,-87.45771856036031,-87.4584126096068,-87.45977608287315,-87.46259544517665,-87.46362639224901,-87.46367711889998,-87.46403145864404,-87.46438568348883,-87.46547167282731,-87.46573357781492,-87.46611916830912,-87.46621147861663,-87.46639648262931,-87.46655050921621,-87.46685894629626,-87.46707504865228,-87.46716790062537,-87.46729039256698,-87.4675675577477,-87.46781437105881,-87.46799953949944,-87.46818425998094,-87.46836092268879,-87.46853797175919,-87.46866884303323,-87.46881585753422,-87.46891490260319,-87.46949367638868,-87.46955487900742,-87.46995552744633,-87.46997810116837,-87.47015534265667,-87.47017870520378,-87.47040218107996,-87.47057078919711,-87.47062517545461,-87.47083344590841,-87.47111072992574,-87.47148046569461,-87.47153486273417,-87.47171209653499,-87.47204261990959,-87.47241944458119,-87.47261138611459,-87.47277344924659,-87.47281877849198,-87.47291113865549,-87.4730495182496,-87.47304908025264,-87.4730642765072,-87.47306461536843,-87.47312505246128,-87.47323305718106,-87.47326332755839,-87.47335602483649,-87.4733392991092,-87.47327732041636,-87.47325471208548,-87.47323183843916,-87.47327676572606,-87.47338572262251,-87.47349255372673,-87.47357016378632,-87.47364631033794,-87.47375388571828,-87.47393897764603,-87.47412444545189,-87.47423996232415,-87.47428616288406,-87.47434801479329,-87.47441774434705,-87.47458065123362,-87.47460432335096,-87.47460442633151,-87.47463459869635,-87.47472029084155,-87.47477478786872,-87.47484393528087,-87.47502198140029,-87.47506803985894,-87.47511403468488,-87.47523644409712,-87.47525182280154,-87.47529821968001,-87.47529838695064,-87.47536718386586,-87.47548327167334,-87.47566802997231,-87.47577518792619,-87.47592989635362,-87.47611533858623,-87.4763379614357,-87.47682388397938,-87.47762504091463,-87.4779712785199,-87.47824036035054,-87.47861106685453,-87.47925796930021,-87.47940314030183,-87.47945777974655,-87.4794878925895,-87.47964165438185,-87.47969595744809,-87.47983462344548,-87.47998754161677,-87.48008823327177,-87.4801189680948,-87.48015745190938,-87.48028029754943,-87.48030278100862,-87.48031119626739,-87.48030305770823,-87.48031858623897,-87.48037164098652,-87.48045634359359,-87.48045639899213,-87.48039447426827,-87.48037887634574,-87.48037755836364,-87.48033084251784,-87.48025370818819,-87.4801136198368,-87.47993665147084,-87.47986629443896,-87.47983532605521,-87.47981986239147,-87.47981945846732,-87.47985020668379,-87.47988076092935,-87.4799960296202,-87.48011158750369,-87.48034313717899,-87.48055116408716,-87.48072801479043,-87.48079732201185,-87.48086677265546,-87.48089728642498,-87.48089687365275,-87.48086683470254,-87.48086649948748,-87.4808520960346,-87.48085237653379,-87.48086675914274,-87.48096809429403,-87.48101407940077,-87.48105967191115,-87.48117448067192,-87.48122086143148,-87.48139042518309,-87.48149014945324,-87.48164462984188,-87.48168309578763,-87.4816367647261,-87.48151334682619,-87.48129798886377,-87.4811737909466,-87.48110410882364,-87.48098143435699,-87.48084916116845,-87.48081825850262,-87.48080264009587,-87.48080284729906,-87.4808323409123,-87.48086353316427,-87.48086369815644,-87.48099477701574,-87.48117078332562,-87.48147960803091,-87.48188005219416,-87.482172281671,-87.48277385097779,-87.48292733500091,-87.4831123024836,-87.48317416977285,-87.48320501063199,-87.4834217919807,-87.4838214007779,-87.48416912938401,-87.48419199203752,-87.48446897097669,-87.48486959845373,-87.48508526862896,-87.48542480488879,-87.4857645008958,-87.48625719890664,-87.48638100872977,-87.48658875040287,-87.48670450776328,-87.48687320300573,-87.48700470819242,-87.48709643406866,-87.48720468223235,-87.48759770626073,-87.48775230199504,-87.4881521905733,-87.48821388942753,-87.48824522087386,-87.48839915967932,-87.48852272211958,-87.4885844209612,-87.48870720325093,-87.48883060100179,-87.48889198768636,-87.48929382524639,-87.48935601294468,-87.48972541391441,-87.48978742525667,-87.49000337740954,-87.4901263109606,-87.49049728591669,-87.49062004371625,-87.49065088635086,-87.4907132259664,-87.4907440695204,-87.49117609291152,-87.49120694871019,-87.49142319153071,-87.49160875832017,-87.4921640217416,-87.49237965422928,-87.49247338257942,-87.49312098414863,-87.49318268393432,-87.49321305199105,-87.49338732996779,-87.49393890180041,-87.49418514607613,-87.49471021562734,-87.49489562221272,-87.49492646614773,-87.49520427027619,-87.49554376235788,-87.49576034479854,-87.49585272992462,-87.49693245712695,-87.49696392880992,-87.49711817281046,-87.49714965687301,-87.49733538530654,-87.49736607206185,-87.49758170770163,-87.49761239112202,-87.49819963799906,-87.49829296869314,-87.49863151872559,-87.49909490889112,-87.4992806309797,-87.49931132746792,-87.49951287926163,-87.49956580401236,-87.49963635133919,-87.49965169318972,-87.49965176255424,-87.49962121957995,-87.49939850960375,-87.49935996454599,-87.49930624353495,-87.4993665925571,-87.49958343866193,-87.49962957509331,-87.49969887625203,-87.49982157976609,-87.49994547177991,-87.50005344520571,-87.50010095861182,-87.50027625076197,-87.50044423495946,-87.50052204604793,-87.50062044131886,-87.50069802100496,-87.50083610951862,-87.50085880931989,-87.50105747385962,-87.50122671197711,-87.50127195397113,-87.50128680947773,-87.50133283959558,-87.50133267979103,-87.50140085338323,-87.50145408191753,-87.5015144092485,-87.50157531004599,-87.501621010208,-87.50164283403805,-87.50161797881816,-87.50155563756785,-87.50152509595941,-87.50137654832834,-87.50125314790345,-87.50109810927546,-87.50095113304634,-87.50064914053169,-87.50034072435579,-87.50017769611901,-87.50011703083366,-87.49993070526878,-87.49973222687849,-87.49957291256837,-87.49934972992065,-87.49906007024204,-87.49884385401725,-87.4986813766932,-87.49870590514993,-87.49877017184384,-87.49888373383257,-87.49887185458546,-87.49876002337825,-87.49879374282753,-87.49895874732034,-87.49908536791961,-87.49921842215878,-87.49929882151494,-87.49932454630536,-87.49932771011592,-87.49943961308568,-87.49946803048286,-87.49939402982019,-87.49928796850156,-87.49918816877297,-87.49925132359621,-87.49942964425334,-87.49969984244743,-87.49985433330436,-87.5000705685199,-87.50037123823776,-87.50086483249007,-87.50120369780237,-87.50129576952601,-87.50157342443046,-87.50212863524096,-87.50231374205867,-87.50262238786169,-87.50274515502485,-87.50283722841202,-87.50311440872947,-87.50342234038978,-87.50351457245355,-87.50373036147299,-87.50379158790462,-87.50416052987518,-87.50432212425218,-87.50442891607617,-87.50451363527186,-87.50462034348426,-87.50474342491952,-87.50502036985428,-87.50523567800418,-87.5053665966111,-87.5055120712029,-87.50563484454611,-87.50580427757383,-87.50590371327594,-87.5059879604249,-87.50605670438489,-87.50614862472104,-87.50617979642976,-87.50619529087339,-87.50622345494045,-87.50637581430378,-87.50637628978093,-87.50639037451123,-87.50642074788084,-87.50646600419728,-87.50646584702893,-87.50654954119453,-87.5066497641871,-87.50670300686083,-87.50688740255778,-87.5070105780901,-87.50722567762605,-87.50759620572717,-87.50796596235364,-87.50842787613161,-87.50848910517063,-87.50879659535447,-87.50919689626903,-87.5093501259596,-87.50962733268477,-87.50987305094183,-87.51005808668675,-87.51027239930738,-87.51045720599149,-87.51073409507103,-87.51104167513959,-87.51115711133383,-87.51126493578893,-87.51134910991082,-87.51143297510862,-87.51150895259266,-87.51155515083109,-87.51155499469664,-87.51163173275462,-87.5116852249233,-87.51178498293504,-87.51181575849778,-87.51191685104445,-87.51202592676053,-87.51208723751829,-87.51214862079782,-87.51245802032595,-87.51270397892084,-87.5127956803469,-87.51291926242101,-87.51307257472229,-87.5131647473645,-87.51325762353096,-87.5133889487155,-87.51368987407011,-87.51375174244735,-87.51378259482176,-87.5139439724511,-87.51402972157724,-87.51415343713406,-87.51424567652558,-87.51443103047131,-87.51449250237442,-87.5146157601578,-87.51480744673427,-87.51487777032085,-87.5149010245034,-87.51490165258777,-87.51488700380277,-87.51487109614203,-87.51484125352349,-87.51474155924562,-87.51470389083521,-87.51465776705213,-87.51458869475303,-87.51448132736361,-87.51439652287027,-87.51417156671526,-87.51405745035876,-87.51392706166837,-87.51362644221987,-87.51349574373539,-87.51283462323708,-87.51272593262163,-87.51250995902967,-87.51243290817607,-87.51233307442769,-87.51227222906272,-87.51211139192682,-87.51207269364505,-87.51208913156036,-87.51215115790767,-87.51226664781325,-87.51231362745909,-87.5123283447268,-87.51233037082444,-87.51234572208774,-87.51240788720744,-87.51250043956504,-87.51267856946673,-87.51277997295776,-87.51281856635789,-87.51282670447097,-87.51280422421604,-87.51272850559587,-87.51265999726904,-87.51247456851918,-87.51244371777982,-87.51234387758385,-87.51205876818575,-87.51182049982508,-87.51168189629722,-87.51164400083094,-87.51161338158199,-87.51159027542695,-87.51157617513357,-87.51157774556093,-87.51154695407244,-87.51148612470242,-87.51134737516979,-87.51126312624008,-87.51121652329601,-87.51114769468386,-87.51105638848999,-87.51105725642542,-87.51104135080304,-87.51104339261941,-87.51105920251389,-87.51109130445596,-87.51109159445875,-87.51110852731625,-87.51110835552007,-87.51115596174522,-87.51120355855507,-87.51121170971885,-87.51120474479413,-87.51117341478523,-87.51113504527365,-87.510951205601,-87.51075826801511,-87.51070423699564,-87.51062132526096,-87.51062100209261,-87.51060549240829,-87.51060643351933,-87.51059188060991,-87.51056861215737,-87.51050057568855,-87.51048602294998,-87.51050439765888,-87.51044308967558,-87.51038992476475,-87.51026606497544,-87.51003516499384,-87.50995882682587,-87.50986604508238,-87.50965966159374,-87.50955983456541,-87.50950620131829,-87.50941403580374,-87.50932242675081,-87.50919301863533,-87.50916106183608,-87.50900072988406,-87.50895476359494,-87.50891639611372,-87.50885462765433,-87.50881665294834,-87.50877797759313,-87.50873147240245,-87.50873092000487,-87.50869169023406,-87.50845305476233,-87.50842196454008,-87.50835204752251,-87.50830624333912,-87.50830040190796,-87.50840733373244,-87.5084994724631,-87.50858434963438,-87.50860760479326,-87.50861629858056,-87.50859351824916,-87.50848648311238,-87.50840162059382,-87.50833279564804,-87.50830304744927,-87.50828707548311,-87.50825748438666,-87.50809643610965,-87.50797367272963,-87.50795800954231,-87.50764319582859,-87.50744348151483,-87.50729010681518,-87.50709680158876,-87.50692049801869,-87.50679757212029,-87.50672804857926,-87.50664239484286,-87.5066185802703,-87.50663313378423,-87.5066171612452,-87.50653158629599,-87.50645462703056,-87.50623828741465,-87.50614559136253,-87.50577445949655,-87.50562006785245,-87.50521967598038,-87.50484895289839,-87.50478692857691,-87.50475639981492,-87.50450985286719,-87.50439476947082,-87.50434058649414,-87.50429518281787,-87.50428728979342,-87.50431892474759,-87.50435728409967,-87.50444975237944,-87.50475822030997,-87.50482040028641,-87.50503554140775,-87.5055911997612,-87.50574543514587,-87.50594571705524,-87.50609236212699,-87.5061623556968,-87.50627831139727,-87.50637939298329,-87.5064251169366,-87.50642613425651,-87.50641095908891,-87.50636436392827,-87.50624184640697,-87.50599553424752,-87.50581029768323,-87.50563287782529,-87.505301077002,-87.5049929121473,-87.50484722466382,-87.50475420565006,-87.50467615920488,-87.50428444866962,-87.50414444370095,-87.50408211741112,-87.5040204993081,-87.50391340432139,-87.50387504006734,-87.50384419253795,-87.50385219118591,-87.50387552379175,-87.50394441572148,-87.5040065829662,-87.50415291132748,-87.50423082368215,-87.50431514138444,-87.50437825412432,-87.50437842647081,-87.50439336781648,-87.50438562278731,-87.50431735951227,-87.50417831498318,-87.50388526511786,-87.50363935553258,-87.50353929945695,-87.50343173080135,-87.50334686359875,-87.50320972272858,-87.5029654287974,-87.50285145289745,-87.50268211993739,-87.50261370501464,-87.50259156350396,-87.50259157666628,-87.50260035303556,-87.50257038139516,-87.50260188263816,-87.50261945043903,-87.5026993613787,-87.50282512971339,-87.50290312299026,-87.50290407102308,-87.50293444182003,-87.50298206014411,-87.5030904348006,-87.50309059047069,-87.5031842395998,-87.50332470833628,-87.50355124707855,-87.50366766444792,-87.50378313611235,-87.50386879695208,-87.50396141229913,-87.50414774850805,-87.5042715933962,-87.50436397712303,-87.50442534979247,-87.50451765060693,-87.50461089887327,-87.50467290022381,-87.50473442590064,-87.5048435708445,-87.50496734184392,-87.50508923014343,-87.50532222024877,-87.50550625440917,-87.50578353383416,-87.50609198449575,-87.50621504010643,-87.50641545541808,-87.50665596231748,-87.50708872297518,-87.507335955334,-87.50828908571043,-87.50847531219719,-87.50855266790531,-87.50867572043119,-87.50886821302626,-87.50934777825299,-87.50963327359835,-87.50978859018863,-87.50995087029352,-87.50997349419475,-87.51001225161839,-87.51010414401922,-87.51019754358639,-87.51050752780725,-87.51056890148176,-87.51058502603789,-87.51058462478331,-87.51050150003924,-87.51047856423307,-87.51049405611441,-87.51052497734916,-87.51060247020362,-87.51068796294234,-87.51085038921941,-87.51115255525207,-87.51139998965569,-87.51161572045906,-87.51173877553721,-87.51211788525445,-87.51248132707914,-87.51280611259364,-87.51325409001082,-87.51353181861462,-87.51374818377998,-87.5140025909246,-87.51402520883825,-87.51406395276106,-87.51430348610685,-87.51442732584238,-87.51455046146143,-87.51464228468659,-87.51482766287954,-87.51495040675199,-87.51512730970407,-87.5152357290125,-87.51530593721991,-87.51527491656368,-87.51528407783839,-87.51531514987811,-87.51534637524747,-87.51543122522935,-87.51553932170245,-87.51572514719371,-87.51600303483323,-87.51674328127868,-87.51699078681287,-87.51766977289627,-87.51813185173033,-87.51834751038706,-87.51859408743086,-87.51887159532892,-87.51911755261899,-87.51921024147228,-87.51927145336171,-87.51948641650851,-87.51954762836856,-87.51967149615825,-87.51988740182874,-87.5200096735272,-87.52007167442324,-87.52030221772044,-87.52041769723762,-87.52057058771089,-87.52066329886972,-87.5207164661511,-87.52076130098509,-87.52082161586858,-87.5208449514617,-87.520990493257,-87.52111300056345,-87.52139122717986,-87.52172971241187,-87.5220999657808,-87.52250060434496,-87.52296402469328,-87.52302570863444,-87.52314811772024,-87.52317895963678,-87.52324080620656,-87.52327164811265,-87.52333347987712,-87.52351916568006,-87.52364221020122,-87.52367352221276,-87.52373520520695,-87.52391930952058,-87.52404393573882,-87.52407366661143,-87.52425918773099,-87.52428972276813,-87.52435930817315,-87.52466045457756,-87.52499963796174,-87.52518468813824,-87.52567801898073,-87.52604774358474,-87.52638625040528,-87.52647862609605,-87.52650954925574,-87.52657752232722,-87.52663170168152,-87.52670153168553,-87.52675592988811,-87.52684749437283,-87.52697142237891,-87.52704775451934,-87.52712479915778,-87.52713984917692,-87.52710949940889,-87.52701634191249,-87.52692358681504,-87.52683967583417,-87.52673209985952,-87.5266935840108,-87.52665411538035,-87.52661633665271,-87.52661524770554,-87.52664642328301,-87.5266610033175,-87.52670712378837,-87.5267374966194,-87.52679918100139,-87.52689241532208,-87.52715487770291,-87.52721694060253,-87.52727828993729,-87.52730940645164,-87.52735558252169,-87.52744848359441,-87.52760246456549,-87.52834258985368,-87.52858762105352,-87.52861831660397,-87.5288032463087,-87.52892662719891,-87.52905005054278,-87.52914249799856,-87.52926587876415,-87.52929704096287,-87.52941994083686,-87.5295739372705,-87.52967361463527,-87.52991205221633,-87.53000357507649,-87.53009659732254,-87.53015748981825,-87.53022723732093,-87.53056000390986,-87.53063663485834,-87.53068384118856,-87.53069889537429,-87.53066696955592,-87.53035777256375,-87.53023404294713,-87.53017221020973,-87.53007976458119,-87.53002636700671,-87.52993363891818,-87.52966507161217,-87.52946518019384,-87.52923475505207,-87.52914222815332,-87.52902646593589,-87.52891845877895,-87.52886329371464,-87.52884773225438,-87.5288629324274,-87.52887884000309,-87.52890921344064,-87.52909488610173,-87.52919300213463,-87.52921763799174,-87.52927873333236,-87.52929346297229,-87.52949277799711,-87.5296006250629,-87.52966121607635,-87.52981530575858,-87.52987652247741,-87.53043060924607,-87.53052284329145,-87.53073739081248,-87.53095302687457,-87.53110726827148,-87.53135271681668,-87.53147547261833,-87.53156856271214,-87.53162993049847,-87.53169990293236,-87.53183054889634,-87.53184589554554,-87.53185398597259,-87.53178417295099,-87.53172211020593,-87.53162942475804,-87.53139857760164,-87.53133650259478,-87.53130536706564,-87.53131980262147,-87.53138124198706,-87.53141787440671,-87.53162344714653,-87.53168198350068,-87.53167394092053,-87.53170575031575,-87.5317428519074,-87.53180416378135,-87.531895986805,-87.53210478277263,-87.53215871778703,-87.53217388993886,-87.53217474580741,-87.53214425851758,-87.53213691473566,-87.53214556026458,-87.53218421143764,-87.53223869365371,-87.53237694892205,-87.53243802063096,-87.53248438853959,-87.53250673378932,-87.53250569338657,-87.53251112142866,-87.53258969119602,-87.53292877780915,-87.53322584361801,-87.53331498410353,-87.5334005401244,-87.53350797965179,-87.53349954571961,-87.53347590679167,-87.53345220657852,-87.53345341139524,-87.53346773166261,-87.53352982414216,-87.53389928898031,-87.53397601409351,-87.53403049654496,-87.53404436232071,-87.5340843340738,-87.53410800644414,-87.53408656439859,-87.53407966433399,-87.53404923085503,-87.53404271091109,-87.53398202626234,-87.53395918488221,-87.53392148947391,-87.53391430509274,-87.53389163819895,-87.53381577901233,-87.53367870614444,-87.53346413320513,-87.53300463336642,-87.53256844019039,-87.5325149327206,-87.53250860399937,-87.53245536859784,-87.53241604827359,-87.53237024646768,-87.53233240740565,-87.53232523733445,-87.53238869219156,-87.53253732125566,-87.53266245701863,-87.53277984926146,-87.53292713030264,-87.53305246821274,-87.5331072722679,-87.53313830902965,-87.53319296733785,-87.53338004846439,-87.53345720730617,-87.53358031040841,-87.5337118158881,-87.53376550443046,-87.53379681331774,-87.53382771653598,-87.53382777974943,-87.53379740762858,-87.5337357137447,-87.53361299430114,-87.53355834097788,-87.53353532088497,-87.53351283196558,-87.53354341537269,-87.53356601971899,-87.53359766387156,-87.53362879590443,-87.5336366131241,-87.53356690798289,-87.5335452888547,-87.53354495150204,-87.53370759077518,-87.53373858709298,-87.53386391776139,-87.53389490565911,-87.53394122134164,-87.5341577815984,-87.5343278940031,-87.53441388697793,-87.53442130188529,-87.53436840666336,-87.53438466984261,-87.53446937197911,-87.53493427248287,-87.53507368497195,-87.53512157640257,-87.5351517716352,-87.53519807328682,-87.53522906825337,-87.53527615846026,-87.53539155227698,-87.53549322181563,-87.53561654921715,-87.53569321766876,-87.53570933680726,-87.53570156757418,-87.53567925457565,-87.53565576710392,-87.53560205137194,-87.53558638041876,-87.53557999475534,-87.53559516583485,-87.53564220073298,-87.53570508430384,-87.53577464468145,-87.53586712910317,-87.53599868779764,-87.53616829052913,-87.53621454173549,-87.53622195404905,-87.53620763535807,-87.53617591169785,-87.53602279832944,-87.53593127830212,-87.53590714479532,-87.53589255536744,-87.53594676543216,-87.53610895457051,-87.53622507967395,-87.53635678334166,-87.53657348368398,-87.5367666844427,-87.53707548374422,-87.53744546744288,-87.53753859163092,-87.53756957586515,-87.5378160820388,-87.53797136249156,-87.53800220007547,-87.53812538683233,-87.53831033379355,-87.53838717730291,-87.5384726323511,-87.53849571277622,-87.53853410253845,-87.53851957460215,-87.53850445583984,-87.53850451546442,-87.53849018529796,-87.53849055719921,-87.5385058811019,-87.53856063922498,-87.53879282277886,-87.5388456172761,-87.53889335978849,-87.53890852612955,-87.53890881315327,-87.53886289321217,-87.53886317941118,-87.53891042162918,-87.5389486575032,-87.53915778116213,-87.53922030683367,-87.53935074266099,-87.53940535660978,-87.53946761682367,-87.5394676998703,-87.53945357400042,-87.5394226153451,-87.53931521285786,-87.53924020236681,-87.53922429434854,-87.53922537061355,-87.53919494225751,-87.53919458199091,-87.53917937771018,-87.53918053992618,-87.53919751499556,-87.53924467969723,-87.53924418981619,-87.53931478028596,-87.53937702666427,-87.53952548665397,-87.53952656517761,-87.53942667029315,-87.53940507341562,-87.53938908076022,-87.53937609260724,-87.53939177215589,-87.53933122323187,-87.53931724307152,-87.53931718442287,-87.53934134030571,-87.53939539774323,-87.53955730673421,-87.53959633038967,-87.53962774956904,-87.53962753354355,-87.53959803921124,-87.53959769027074,-87.53962989040168,-87.53962938805908,-87.53962162950472,-87.53951491580791,-87.53950706282615,-87.53951431564738,-87.53956205313951,-87.53967759968917,-87.53974682404387,-87.53980224477583,-87.53978755293515,-87.53988854249138,-87.539911296838,-87.53978142189692,-87.53975064588329,-87.53973610069296,-87.53974379603748,-87.53975976451316,-87.53980706799223,-87.53982223242552,-87.53982331054321,-87.53983847471939,-87.53987032419779,-87.53990081351554,-87.53991719599067,-87.53996471516047,-87.54016612492363,-87.54025992575866,-87.5404173599877,-87.54051116262055,-87.54054272353405,-87.54068251868819,-87.54069798207659,-87.54079178097808,-87.54086128435883,-87.54097103638061,-87.54102581459058,-87.5410421947299,-87.54105736098698,-87.54110537931358,-87.5411834441349,-87.54136428495204,-87.54155101369214,-87.54176748408302,-87.54196074786857,-87.54205447146585,-87.54230189947809,-87.54264119281976,-87.5430584689521,-87.54317483266738,-87.54323687812548,-87.54351479597322,-87.54360632010669,-87.54363715151604,-87.54397818888808,-87.5442556992049,-87.54428652972476,-87.54444065461071,-87.54456379758376,-87.54478023810755,-87.54494197860338,-87.54527285739498,-87.54539743834724,-87.54561276318327,-87.54582873293391,-87.54607567622209,-87.54632195728901,-87.546414928282,-87.54647673187098,-87.54663102738157,-87.54690894248463,-87.54700823077191,-87.54712379900425,-87.54724758884542,-87.54734022143454,-87.54749429131486,-87.54774071375731,-87.54801838702068,-87.54814171337637,-87.54824960471863,-87.54832680508858,-87.54838113051045,-87.54838154791375,-87.54836672080481,-87.5483366376109,-87.54821388132756,-87.54821398717971,-87.54823752463409,-87.54828420609503,-87.54837596364484,-87.54849942725883,-87.54868488614642,-87.54871539317516,-87.54877705481348,-87.54889318206625,-87.54901631827205,-87.54916355498152,-87.54924889266709,-87.54931809232258,-87.54938836254772,-87.54937305778907,-87.54934925220556,-87.54931843361906,-87.5492257889331,-87.54910358243211,-87.54907297821009,-87.54901847964658,-87.54902588157519,-87.54904261999054,-87.5491035446762,-87.54922738276817,-87.54944390661349,-87.54959118051141,-87.54969136232837,-87.54976874957994,-87.54979208813124,-87.54980809812471,-87.54977118840497,-87.54978634651532,-87.55000956796914,-87.55001831011067,-87.55001105328743,-87.54994958562331,-87.549942094957,-87.55017425689387,-87.55019113571844,-87.55036156807574,-87.55046974140085,-87.5505622702302,-87.55059309973315,-87.55098632514452,-87.55171955728295,-87.55181256106827,-87.55186659587872,-87.55195969146787,-87.5520367942774,-87.55215271600233,-87.55230687298078,-87.55239922244425,-87.55255341947564,-87.5529214599359,-87.5531068127394,-87.55333639462339,-87.55344450649918,-87.55357456892195,-87.55375160722178,-87.55382815108462,-87.55385898086223,-87.55394384611149,-87.55399786967945,-87.55400610492971,-87.55394537204658,-87.55394564714523,-87.5539299774636,-87.55391500547063,-87.55393095422576,-87.55393165547764,-87.55391667208904,-87.5537087271109,-87.5536104226765,-87.55360953304449,-87.55357176976301,-87.55351062480906,-87.55344855544078,-87.55318773245835,-87.55309481849743,-87.55306403993043,-87.55307152380536,-87.5530957103128,-87.55318819713986,-87.55324939092638,-87.55339586000952,-87.55347267737963,-87.55353438362438,-87.55355824299214,-87.55359701921296,-87.55359878472007,-87.55357000765729,-87.55367363390457,-87.55375671811552,-87.55383797835999,-87.55402286337549,-87.55408465694534,-87.55430083307193,-87.55485543129666,-87.5549246219735,-87.55497889856086,-87.55505473925552,-87.55513077800137,-87.55534685810952,-87.55541604962971,-87.55544689045499,-87.55547739424853,-87.55549254960663,-87.55550151363643,-87.55549314863079,-87.55547802928729,-87.55547913942843,-87.55546324278407,-87.55546408010945,-87.55544817164521,-87.55544844634629,-87.55543278488295,-87.55543360968186,-87.55548815283298,-87.55551934736452,-87.55557337787653,-87.55572073270778,-87.55602878613489,-87.55612151046309,-87.55630555305969,-87.55652186642075,-87.55658340137603,-87.55673716781516,-87.55682886123883,-87.55710766588709,-87.55731501302327,-87.55738503389152,-87.55755461422459,-87.55767802062381,-87.55773205106722,-87.55776296359967,-87.55780221153766,-87.55789450576464,-87.55795616139086,-87.55807975353073,-87.55838629555895,-87.55844781471272,-87.55875601526874,-87.5588480494104,-87.55903354065801,-87.55924790219464,-87.55937091105436,-87.55941727716879,-87.55953144695073,-87.55979988626675,-87.55989839661035,-87.55992998273882,-87.55992865081782,-87.55991348180216,-87.55989675719759,-87.55983405104368,-87.55973431804856,-87.55959460139717,-87.55924637878604,-87.5590991680466,-87.55903826457619,-87.55885194104061,-87.55879813464105,-87.55868176341633,-87.55862718830657,-87.55857931319272,-87.55857981922023,-87.55848541080209,-87.55849211108911,-87.55856912895992,-87.55857712848537,-87.5585693169558,-87.55853778907949,-87.55841455729241,-87.55831541970173,-87.55824598542708,-87.55818408768653,-87.55815335830393,-87.55809876121874,-87.55798274621269,-87.55789031245565,-87.5578203313206,-87.55775054028547,-87.55768850508861,-87.55762660697184,-87.55755691298248,-87.55750389291457,-87.55733273929035,-87.55723210955736,-87.557223800996,-87.55723780999442,-87.55722838639008,-87.55720547211497,-87.55715837376277,-87.55703473544665,-87.5569561964294,-87.55711614933699,-87.5573072478612,-87.55733822317549,-87.5573838029373,-87.5574448656342,-87.55750639088645,-87.55766120300225,-87.55781453442341,-87.55793712570919,-87.55802967416949,-87.55815231937336,-87.5582903573487,-87.55838979910756,-87.55841960825056,-87.55836530076682,-87.55824165434156,-87.5580027661338,-87.55787065655765,-87.55761517398172,-87.5575140713142,-87.55745265087651,-87.55739828923606,-87.55732101014323,-87.55720395716553,-87.55714225682213,-87.55708068268787,-87.55702626198854,-87.55697273475332,-87.55692628194655,-87.55690329722175,-87.55691791240801,-87.5569023408585,-87.55690202583131,-87.55691663741287,-87.55691515297885,-87.55697554249377,-87.55699074315467,-87.55712194072899,-87.55716073155462,-87.55716895169593,-87.5572381034805,-87.55726136232913,-87.55726898907706,-87.55726816746075,-87.55725202425583,-87.55719789428682,-87.55711353531707,-87.55709748336695,-87.55705122096974,-87.55708094657469,-87.55708053554025,-87.55712634951182,-87.55714082278334,-87.55714091826857,-87.55709354857933,-87.55709303464786,-87.55707732631249,-87.55706141761598,-87.55701477751101,-87.5569448772989,-87.55682145737687,-87.55669831137776,-87.5564052088441,-87.55631280653155,-87.55622025719808,-87.55604990678006,-87.55595656497819,-87.55583419542843,-87.55577215351566,-87.55568682709205,-87.55563208230551,-87.55557767880754,-87.55551601126598,-87.55532998481144,-87.55525226884841,-87.55509628405645,-87.55509592272368,-87.55508098655775,-87.55508033875154,-87.55511879545686,-87.5551952608506,-87.55522655913373,-87.55531962532423,-87.55542040225136,-87.55547420869182,-87.55556755155185,-87.55569047294524,-87.55578298979997,-87.55584474602836,-87.55590641494636,-87.55598325297292,-87.55610030406794,-87.55617726868823,-87.55621550044852,-87.55617750447233,-87.55618488842512,-87.5563245993623,-87.5563862761847,-87.55641640929696,-87.55654783610397,-87.55658663302688,-87.5566180138312,-87.55672623587431,-87.55674949097094,-87.55678873633231,-87.55697378631676,-87.5570355943787,-87.55708238900093,-87.55712827853459,-87.55736043585785,-87.557407899023,-87.55743286552645,-87.55744816082306,-87.55744861181694,-87.55746496877222,-87.55759767696073,-87.55759230989391,-87.5576003882075,-87.55766319984657,-87.55770961069194,-87.55778041898704,-87.55778018704403,-87.557720223993,-87.55772936237163,-87.55775969057731,-87.5577598284376,-87.55790705750736,-87.55807762049592,-87.55836407980497,-87.55861049563917,-87.55867286036217,-87.5587651733987,-87.55884987065684,-87.55895017847129,-87.55902691041359,-87.55908963542066,-87.55913575964847,-87.55924424053237,-87.55932165486493,-87.55938399723833,-87.5594850948209,-87.55961701181215,-87.55984826259758,-87.56000338991296,-87.5600955606003,-87.56038072992817,-87.56048094338554,-87.56059700293697,-87.56077532165418,-87.56096130099705,-87.56104722478237,-87.56117040297792,-87.5613328768342,-87.56148674747075,-87.56159477994106,-87.56180361159669,-87.56189664303697,-87.56206033790387,-87.56207577617286,-87.56210608737854,-87.56213746773547,-87.56220771397892,-87.56234743182168,-87.56243253065199,-87.5625553299548,-87.56261722979764,-87.56269423932001,-87.56283278743537,-87.56289409218417,-87.56297007227302,-87.56307116239056,-87.56311659521401,-87.56316430808911,-87.56317968919237,-87.56379977516046,-87.56445778236446,-87.56445778971494,-87.56447356915615,-87.564526039431,-87.56458802756529,-87.56459671841768,-87.56477157921424,-87.56496119760313,-87.56489941681973,-87.56493004125436,-87.56495361860091,-87.56501468417098,-87.5650758851575,-87.56523005338862,-87.56529217792915,-87.56542368114853,-87.56544651063003,-87.56561605667802,-87.56562382088013,-87.5656007690485,-87.56544615797038,-87.56527588327631,-87.56523022564573,-87.56519832391287,-87.56519094765245,-87.56524485237431,-87.56530569373722,-87.56537380030352,-87.56537418660479,-87.56535896250641,-87.56536719924915,-87.56544523501536,-87.56555213221499,-87.56563316340404,-87.56592535824318,-87.56612562423723,-87.56635907571314,-87.56667387626399,-87.56704874662627,-87.56738380212444,-87.56759781729646,-87.567733792594,-87.56778193987931,-87.5677816160657,-87.56775292828165,-87.56726629436488,-87.56681402249487,-87.56644549984574,-87.56610450989524,-87.56588961490159,-87.56580342845098,-87.56580464928967,-87.56577261717722,-87.56569535394908,-87.56566454480229,-87.56563287949641,-87.56560140879552,-87.56540768462369,-87.56526795517203,-87.56521444622146,-87.56521325518929,-87.56525237801603,-87.56532852780643,-87.56536593447321,-87.56539528857461,-87.56536535579943,-87.56532555338352,-87.56529511135552,-87.56532475029705,-87.5654939249485,-87.56548593067463,-87.56546287428357,-87.56540153885244,-87.56521601690579,-87.56515434374498,-87.56506170941385,-87.5650388778469,-87.56493802437369,-87.56485314513404,-87.5648524652411,-87.56495840084111,-87.56494311155281,-87.56488898725469,-87.56483554623743,-87.56475057271203,-87.56472020227025,-87.56462724105087,-87.56453492378859,-87.56430246365012,-87.56414891158762,-87.56410956956282,-87.56404759294132,-87.56398497611499,-87.56398527130443,-87.56395347204931,-87.5638915076117,-87.56385134903934,-87.56380568804478,-87.56370593191734,-87.56365143429404,-87.563650930256,-87.56367405693715,-87.56381256254768,-87.56382666180721,-87.56383509407323,-87.56382002874497,-87.56374147820688,-87.56370280350838,-87.56364853058031,-87.56355622210307,-87.56349409214316,-87.56339493397974,-87.5633636377782,-87.56334043545407,-87.56334819937466,-87.56337067152238,-87.56344001381495,-87.56347117430786,-87.56352411090089,-87.56351671919681,-87.56347849492469,-87.56351642454273,-87.56349229441808,-87.56341493475198,-87.56336800569619,-87.56326744313603,-87.56317316721264,-87.56317252449782,-87.56307832314484,-87.56304786017719,-87.56298582120122,-87.56297103516626,-87.56286297349665,-87.56282460030124,-87.56278609008577,-87.56270911830406,-87.56267090372627,-87.56257683498589,-87.56254553795208,-87.56248465960266,-87.56234601576948,-87.56225349982051,-87.56210662802833,-87.56207612222975,-87.56206041210913,-87.56205200623323,-87.56202884595675,-87.56200592391811,-87.5619448486479,-87.56186744689535,-87.56185325648913,-87.56186780513644,-87.5617198984805,-87.56165317087735,-87.56161360053918,-87.56161278948301,-87.56162739462938,-87.56166637905326,-87.5616889446169,-87.56181913331488,-87.56183564564836,-87.56173063634361,-87.56187444831083,-87.56192739311732,-87.56205124034433,-87.56222831807874,-87.56233612766785,-87.56240529412983,-87.56242782323567,-87.56241171314959,-87.56234908704054,-87.56230202264553,-87.56224808417325,-87.56213945319715,-87.56198532066689,-87.56183100828352,-87.56177724012277,-87.56160039738162,-87.56151580429847,-87.56148449445681,-87.56146901956375,-87.56146879524223,-87.56144517179263,-87.56141409929234,-87.56124517106304,-87.56117582743953,-87.56112218998254,-87.56107637822426,-87.56103753898192,-87.56100646620584,-87.56096792425365,-87.56095115171509,-87.56093548500385,-87.56090526020178,-87.56092755142261,-87.5609503383762,-87.56098071115939,-87.56107457311063,-87.5612282449822,-87.5612899043589,-87.56141339074857,-87.56150589748552,-87.56181353279065,-87.56193687528194,-87.56202984351637,-87.56221403487176,-87.56221412626347,-87.56218260303338,-87.56209018513394,-87.56181265339464,-87.56178228040466,-87.56172060743634,-87.56162869949232,-87.56156669980126,-87.56138247837215,-87.56130452129514,-87.56125876208728,-87.56119634644826,-87.56118826499983,-87.56121948620689,-87.56131116848131,-87.5613257881858,-87.56139481874588,-87.56140933550502,-87.56140217864194,-87.56136348674121,-87.56130177055886,-87.56120076311785,-87.56116988249448,-87.56121597925468,-87.56121570932636,-87.56123059626236,-87.56122306631012,-87.56123672515528,-87.56115863394044,-87.56108032222075,-87.56090308217176,-87.56084095714915,-87.56087022491509,-87.56091590382103,-87.56097833214812,-87.56110899189801,-87.56107247547449,-87.56093057212723,-87.56091499942974,-87.56089262639436,-87.56076926849109,-87.56076256732243,-87.56077785813079,-87.56077748768813,-87.56076240815815,-87.56071755185273,-87.56066406485648,-87.56061731268501,-87.56046335385986,-87.56028596446959,-87.56018504723747,-87.5601320177054,-87.56009222128444,-87.56006175358881,-87.56005289161304,-87.56008355553382,-87.56012873852137,-87.56012846675195,-87.5602342130349,-87.56041825140125,-87.5604632977889,-87.56052356959687,-87.56052339844054,-87.56046732931473,-87.56044317170628,-87.56047291517986,-87.56046415310607,-87.56043221729458,-87.56041705885728,-87.56034582685083,-87.56036108702642,-87.56039165465336,-87.56042195155554,-87.56042204904833,-87.56031944053166,-87.56021804781263,-87.5601633213744,-87.56010896663761,-87.56005399208615,-87.56003823297881,-87.56004646321632,-87.56015386892699,-87.56016951040782,-87.56011560043741,-87.55989888946942,-87.55980600092857,-87.5596823617186,-87.55955892217777,-87.55943598372497,-87.55909651498692,-87.55898128766785,-87.55846510893107,-87.55828030023832,-87.55821079700699,-87.558187736272,-87.55816382222417,-87.55811617207891,-87.55811562132141,-87.55813004530438,-87.55818401384329,-87.55833831059087,-87.55892347954278,-87.55901711569474,-87.55914047329316,-87.55920168909867,-87.55941733883854,-87.55961707358919,-87.55968676807242,-87.5596940696916,-87.55960863734201,-87.55952328515041,-87.5590610052719,-87.55872194922763,-87.55854481641079,-87.55846066206514,-87.55818310669135,-87.55811360229973,-87.55808229923754,-87.55805142384658,-87.55804370164918,-87.55807356700485,-87.55813600100679,-87.55833559775662,-87.55845886852535,-87.55858990290888,-87.55866666111905,-87.55868220316967,-87.55868150936901,-87.55869691368069,-87.55868859425189,-87.55869512039693,-87.5586633589802,-87.55861750110361,-87.55851625072543,-87.55815300552896,-87.55792880302376,-87.55783581868903,-87.55777398803775,-87.55743558797171,-87.55731175196549,-87.55721909233708,-87.55709605875133,-87.55691077956918,-87.55677229381527,-87.55660231167025,-87.55651830712372,-87.55641060744227,-87.55633413493651,-87.55630407202625,-87.55624355405595,-87.55615075053321,-87.55611283770996,-87.55598314034373,-87.5559676001678,-87.55596709410717,-87.55600717559369,-87.55606941874461,-87.55611533206795,-87.55623873911517,-87.55641623750338,-87.55648587783681,-87.55650907837727,-87.55650977642718,-87.55646363422193,-87.55642501914171,-87.55620936897579,-87.55577793144508,-87.55552371375457,-87.55546167219708,-87.55543859543495,-87.55541524690844,-87.55542901888565,-87.55544469921729,-87.55545903582441,-87.55553593064744,-87.55553471725266,-87.55555039535079,-87.55556538275395,-87.55565622897555,-87.55577806745332,-87.55582376118372,-87.55581487112123,-87.55579268337748,-87.55572212592874,-87.55566006813633,-87.55553758517955,-87.55538259382271,-87.55516786418946,-87.55491289880759,-87.5547446018263,-87.5546514165909,-87.55461318718156,-87.55461365110529,-87.55463648819421,-87.55487558525328,-87.5549372659719,-87.55496857039284,-87.55502947345887,-87.55506077796035,-87.55514562450904,-87.55523828144248,-87.55531503585003,-87.55533811474467,-87.55534657748652,-87.55533169064273,-87.55533196534149,-87.55530107503995,-87.55530200287077,-87.55521674181504,-87.55517147808537,-87.5550945830271,-87.55492517045334,-87.55463224887326,-87.5542619653511,-87.55386071907184,-87.5536755275068,-87.55364422553225,-87.55358254519106,-87.55339846919608,-87.5531507681229,-87.55302713162583,-87.55274881383147,-87.55262567499319,-87.55252468456092,-87.5523158574012,-87.55215238693134,-87.55202077885959,-87.55194309207342,-87.55184974098201,-87.55178837163379,-87.55172696301055,-87.55167305674794,-87.55165746907254,-87.55163430415082,-87.55161095057973,-87.55158095768164,-87.55155086004088,-87.55155034801753,-87.55153467044862,-87.55153551392928,-87.55152039872735,-87.55149058609165,-87.55144494997086,-87.55139927555742,-87.55128400879566,-87.55119139729635,-87.55097447518996,-87.55066663678667,-87.55062015297086,-87.55058177140374,-87.55058107462473,-87.55064190560881,-87.55068814597985,-87.55071102664267,-87.55082437280035,-87.55086966831445,-87.55091469844737,-87.55093059656724,-87.55094548123961,-87.55097519473676,-87.55097542726627,-87.55095868276173,-87.55095895514918,-87.55094401799937,-87.55091182239875,-87.55089688523364,-87.55089651790252,-87.55088078928981,-87.55083360863365,-87.5507709908368,-87.55056968481674,-87.55036754406059,-87.55032874663625,-87.55017489881463,-87.55016601145691,-87.55018167723513,-87.55018074027139,-87.55014166550482,-87.55008033931297,-87.55001692731196,-87.54999431620426,-87.54999190477756,-87.55006762378508,-87.55003650248301,-87.54997397269949,-87.54993595611487,-87.54993502609891,-87.55007272119597,-87.55015031592679,-87.55024972359452,-87.55050240625985,-87.55065630152185,-87.55084172974345,-87.55087257291892,-87.55099534267278,-87.55136495128677,-87.55164203482853,-87.55188831506696,-87.55232040371276,-87.55309076174127,-87.5531211405082,-87.55321366995794,-87.55336774933738,-87.55346027893631,-87.5536752604995,-87.55389116385324,-87.55416866614097,-87.55472441884329,-87.55521708027601,-87.55571040860001,-87.55607992622562,-87.55626476024972,-87.55654253978213,-87.55718888282864,-87.55732017122556,-87.55737440664333,-87.55743609341947,-87.55762166467348,-87.55780738214064,-87.5580223056898,-87.55854609914606,-87.55903930312894,-87.55938624292978,-87.55968704548046,-87.55996478093365,-87.55999608733849,-87.5602426416762,-87.56040523573623,-87.56058220118784,-87.56073689136932,-87.56101364484304,-87.5614763369849,-87.56184646796457,-87.5624941550854,-87.56255537899801,-87.56295700636804,-87.56311053397101,-87.56351127130982,-87.56406586411978,-87.56425111889349,-87.56443571583095,-87.56462065191724,-87.56465103316992,-87.56471271987188,-87.56508183948408,-87.56520508203565,-87.56529738642671,-87.5654834728001,-87.5655519546055,-87.56600769939662,-87.56610070332206,-87.56622383910491,-87.56665483739306,-87.56711676096415,-87.56742507270627,-87.56745545436945,-87.56788747102117,-87.56804155327913,-87.56810324040683,-87.56813362405238,-87.56853525954556,-87.56871939691568,-87.56890386281971,-87.56896541600446,-87.56899625943566,-87.56921176974448,-87.56924262504903,-87.56933534970689,-87.5693654034621,-87.56945892129472,-87.56948976508457,-87.56961208316692,-87.56964292693132,-87.5698896100252,-87.57001285041112,-87.57025897932439,-87.57044367559571,-87.5706903681383,-87.57093652545582,-87.57121339709516,-87.57139832650248,-87.5714908700337,-87.57173749200842,-87.57185994581531,-87.57192163368849,-87.57195359450274,-87.5721073652001,-87.57223015108677,-87.57241508218122,-87.57275397189822,-87.57290774312567,-87.57293891525794,-87.57321684342938,-87.57324722677009,-87.57346314689751,-87.57389405127159,-87.57414871819952,-87.57426463982532,-87.57438724000728,-87.57463399262089,-87.5746652971942,-87.57485037346775,-87.57488088561252,-87.57498133274169,-87.57503556620229,-87.57515815356693,-87.57518946717289,-87.57531284263828,-87.57534335797155,-87.5755980246758,-87.5757448021088,-87.57577531479306,-87.57583700295895,-87.57586830704959,-87.57592999515551,-87.57596052238829,-87.57626955061522,-87.57630007776299,-87.57636175402224,-87.57660798790693,-87.57719443361988,-87.57722573755419,-87.57734878431494,-87.57759580598321,-87.57778021997558,-87.57781152358045,-87.57787241930782,-87.57790372299242,-87.57796540993306,-87.57799671369722,-87.57821197190115,-87.57845978561939,-87.57870613137636,-87.57892256422717,-87.57911515109348,-87.57923134035916,-87.57966384032578,-87.57991100492173,-87.58009567564606,-87.58015782202934,-87.58025038604703,-87.58073644092434,-87.58094528501336,-87.58116138102746,-87.58129314652051,-87.58162555748788,-87.58171769091129,-87.58195848583946,-87.58212098298462,-87.58215195509955,-87.582275109077,-87.58235277134294,-87.58245370281634,-87.58266241408177,-87.58286335064086,-87.58296256505587,-87.58341833148145,-87.58360414180822,-87.58378170727198,-87.58426076049012,-87.58443810155133,-87.5845236615136,-87.58456230901146,-87.58464652355815,-87.58489534040976,-87.58492564639167,-87.58515785248782,-87.5853357639435,-87.58576886399791,-87.58598517686812,-87.58617020534624,-87.58647242378281,-87.58696653340759,-87.58705232311959,-87.58709066444712,-87.58705951960106,-87.58695212405598,-87.58687591891555,-87.58686085621677,-87.58693878716709,-87.58701609253994,-87.58704693398276,-87.58706973468072,-87.58702270065126,-87.58700807725687,-87.58703061079187,-87.58705295549825,-87.58713007861168,-87.5872457458285,-87.58729896227973,-87.58739265358336,-87.58750888045202,-87.58769415157376,-87.58805762169577,-87.58833587074479,-87.58837464074514,-87.5884124983655,-87.58849806243133,-87.58891552540048,-87.58905441314397,-87.58910133308449,-87.58915482250707,-87.5892022250712,-87.58931116966575,-87.58936544782516,-87.58948969508099,-87.58967618549907,-87.59009344490487,-87.59013129729007,-87.59030896235237,-87.59034760335598,-87.59064178815022,-87.59075063252135,-87.59114499086769,-87.59136238181604,-87.59146976724242,-87.59156302812634,-87.59159400462939,-87.59174920275908,-87.59188833981986,-87.59215133771316,-87.59255455467974,-87.59257706211758,-87.59275471157196,-87.59290906770622,-87.59316467485992,-87.59362110256984,-87.59386009391923,-87.59410766272316,-87.59435408380466,-87.59447710319424,-87.59456974297136,-87.5948165839357,-87.5949405183466,-87.59524874740218,-87.59549548796801,-87.59552632914622,-87.5956194326301,-87.59565027115576,-87.59574257310996,-87.59577341327649,-87.59589735757572,-87.59595903426164,-87.59605166886023,-87.59612047043879,-87.59626688151631,-87.59648300526781,-87.59660681474952,-87.59663732030161,-87.59669899621434,-87.59673029044581,-87.59679196727889,-87.59682247022587,-87.59688414692359,-87.59725426103532,-87.59737809307356,-87.59750857557621,-87.59768675905674,-87.59814951516614,-87.5987667333218,-87.59879835837482,-87.59889066258931,-87.59892150058892,-87.59904465116668,-87.59923025287311,-87.59950759214129,-87.59975375974111,-87.60006308679478,-87.60061832863893,-87.60114309968735,-87.60117394914846,-87.60145106159111,-87.60160595644408,-87.60172888774156,-87.60206193955064,-87.60243879930989,-87.60271749777012,-87.60274833541976,-87.60296308838633,-87.60321873305563,-87.60324133162777,-87.60327216932981,-87.60336503494659,-87.60361185310153,-87.60383428058047,-87.6039192344314,-87.60429071121919,-87.60453823405864,-87.60475310196564,-87.60503167815041,-87.60556330246244,-87.60564826547098,-87.60574123329839,-87.60623490476185,-87.60641926966757,-87.60670553952117,-87.60707575982275,-87.60719257144247,-87.6073465544446,-87.60740835555788,-87.60743919252047,-87.60768558033278,-87.60788609284562,-87.60807937953828,-87.60829593840006,-87.60848088177804,-87.60885887852272,-87.60901318845242,-87.60919844109381,-87.60947573909183,-87.60972232484728,-87.6098687234047,-87.60996124786776,-87.61007749481041,-87.61022447878486,-87.61054127099746,-87.61069559408826,-87.61080437996692,-87.61094380691372,-87.61095907449779,-87.61100607302158,-87.6110053978235,-87.61111454462305,-87.61112981462902,-87.61127702274449,-87.61150184215388,-87.61164091619834,-87.61182606966679,-87.61194862313833,-87.61217273471414,-87.61224954345563,-87.61237334957166,-87.6124502869437,-87.61258212012513,-87.61267532225732,-87.6127523646672,-87.61293087338042,-87.61319365391429,-87.61351819121288,-87.61368018394491,-87.61399785000792,-87.61434532098048,-87.61452267717787,-87.61466240292192,-87.61473153811318,-87.61476261612179,-87.61482510145298,-87.61486406421406,-87.6151340541864,-87.61528834869843,-87.61541973025815,-87.61559775299382,-87.61576890398159,-87.61596744039906,-87.61604093495454,-87.61614092272971,-87.61626518446465,-87.61629636998347,-87.61641260400144,-87.61647428191486,-87.61666742984987,-87.61685334860439,-87.61715414378979,-87.61740106785668,-87.61758800610252,-87.61771981875995,-87.61786598017699,-87.61833663806172,-87.61860727621404,-87.61875433251326,-87.61900972488091,-87.61914164652993,-87.61926510094916,-87.61928113784474,-87.61934326878932,-87.61934259207199,-87.61947474557628,-87.61976863416616,-87.61991568383422,-87.62006996907778,-87.62031777428662,-87.62052637173781,-87.62061142919664,-87.62065762101642,-87.62075136836744,-87.62092880342198,-87.62112193661349,-87.6212620935774,-87.62136227138167,-87.62145522437818,-87.62188800191116,-87.62192617931625,-87.62195023502444,-87.62195103100622,-87.6219663890178,-87.62206690869651,-87.62211411334226,-87.62243124531848,-87.62270353167898,-87.62273368299532,-87.6228730404062,-87.62303589426035,-87.62332963361287,-87.62338372996192,-87.62341500435053,-87.62346120230549,-87.62350727417986,-87.62357763536581,-87.62376216078179,-87.62380913995126,-87.62383940224314,-87.62384019841738,-87.62381004016426,-87.62374815448068,-87.62373256733744,-87.62373301465215,-87.62375730213357,-87.62388140078984,-87.62388152052918,-87.62395886861546,-87.62395897694,-87.62403655859708,-87.62412984746592,-87.62425327239063,-87.62447889611379,-87.62455568839324,-87.62480288572641,-87.62486375301793,-87.62487244608093,-87.62478007275467,-87.62476448511443,-87.62486611629164,-87.62510256452082,-87.62515214439748,-87.62529184491972,-87.62546190411274,-87.62549217263182,-87.62567805137286,-87.62578600854994,-87.62588673538082,-87.62637332990042,-87.62665913676331,-87.62703798605391,-87.62735383335398,-87.62772534684467,-87.62783251010184,-87.62788738335577,-87.62803350274893,-87.62821913268796,-87.62862034724199,-87.62880597826562,-87.62902187484642,-87.62933116176605,-87.62982551334014,-87.6300412932125,-87.63019531194345,-87.63041176355303,-87.63059739478872,-87.63084445291389,-87.63129910802041,-87.63150738881198,-87.63172383175946,-87.63184689923972,-87.63210263967544,-87.63239583589383,-87.63275928153335,-87.63292920594469,-87.6333080078908,-87.63344619198612,-87.6335703753337,-87.63361744013882,-87.63364759395559,-87.63370888358477,-87.6338256243823,-87.63390318556787,-87.63418907553582,-87.63430366792045,-87.63454357110966,-87.63466762887417,-87.63479870108264,-87.63516991403245,-87.63528507190867,-87.63539332155896,-87.63554831867486,-87.63557925010956,-87.63567238393698,-87.63588054274248,-87.63611220447952,-87.63642064745464,-87.63649052372699,-87.63662992039004,-87.63692297495673,-87.63710900085162,-87.63714071920251,-87.63724027147741,-87.63733403642476,-87.63741210129231,-87.6374890436916,-87.63807036617752,-87.63834813521919,-87.63838007457301,-87.63844135074979,-87.63861230589474,-87.63873577236249,-87.63882119621601,-87.6389916086313,-87.63908492613248,-87.63934835303463,-87.63948805627186,-87.6395573393186,-87.63974319062156,-87.63982117229735,-87.63999115523521,-87.64012541570176,-87.64015397058729,-87.6402310118884,-87.64033944187632,-87.64044809091133,-87.64057233396275,-87.64068029984489,-87.64082055761956,-87.64084300276497,-87.64093631097211,-87.64109858092552,-87.64122203166494,-87.64131455742832,-87.64143910810836,-87.64143921372583,-87.64147024007254,-87.64147113392556,-87.64163272776507,-87.64174162278982,-87.64182634259319,-87.64185789988261,-87.64188835862785,-87.64192027769703,-87.642051617177,-87.64217564229537,-87.64229866030404,-87.64237608999618,-87.64248334202595,-87.64254486332587,-87.64256055331825,-87.64255342774757,-87.6424994469976,-87.6424768586878,-87.64248418495049,-87.64253000779918,-87.64269209791375,-87.64286188026385,-87.64296178508198,-87.64297723582723,-87.64296210824972,-87.64288533246804,-87.64283169686827,-87.64279216881935,-87.64280117971684,-87.64291739535615,-87.64299368116126,-87.64349621900267,-87.64402133855684,-87.64426771987932,-87.64449176322695,-87.64483435566393,-87.64500842069043,-87.64520906881133,-87.64530273278757,-87.6454407603308,-87.64551140091083,-87.64553451630073,-87.64553423665431,-87.64547300159229,-87.64542722499317,-87.64541208677639,-87.64541286574853,-87.64539694654074,-87.64538234486447,-87.64538211987154,-87.64539813132478,-87.64539843913307,-87.64547544432887,-87.6456848245475,-87.64585417569674,-87.64608685130594,-87.64613298646259,-87.64631082853147,-87.64651157540027,-87.64682008846944,-87.6469820098764,-87.64711332984224,-87.64723721256438,-87.64757666364198,-87.64798544109399,-87.6482936491707,-87.64840976502875,-87.64863422185265,-87.64934273189263,-87.64980620898778,-87.64994534053395,-87.65009134486937,-87.65036892537042,-87.65058535283548,-87.65085594733524,-87.65097828057657,-87.65119475078087,-87.65128740917982,-87.65142593553333,-87.65148800872389,-87.65152569524881,-87.65152636820142,-87.65151856105507,-87.65141837856677,-87.65142591334019,-87.65144972135307,-87.65153481606751,-87.65159644422546,-87.65167232300784,-87.65172641589781,-87.65179562079955,-87.65183434117425,-87.65185769384519,-87.65187268965204,-87.65186534189868,-87.65181925174709,-87.65181967144584,-87.65183501060645,-87.65195090062983,-87.65204288068541,-87.65222083949818,-87.65244384718022,-87.65246742845028,-87.65343842252818,-87.65348470391085,-87.6535082847786,-87.65367034160401,-87.65403302478491,-87.65424076874417,-87.65455729755141,-87.65477361030671,-87.65492749005253,-87.6550045358869,-87.65506656774033,-87.65523705107134,-87.65542234806155,-87.65550680484057,-87.65563866393721,-87.65636551080412,-87.65652738808737,-87.65700570967341,-87.65722210199709,-87.657345061396,-87.65749961764998,-87.65759270618126,-87.65795473933693,-87.65799411601682,-87.6580399179196,-87.65827899356862,-87.65847216780391,-87.65917341364057,-87.65945842408091,-87.65966749365893,-87.65985232527225,-87.65988323473844,-87.66022187146179,-87.66049180580345,-87.66063092055934,-87.66071497309355,-87.66081579436052,-87.66090101934921,-87.66097814289742,-87.66098670715181,-87.66091659711807,-87.66105492460792,-87.66113283971679,-87.66121766321693,-87.66134120662193,-87.66138011461533,-87.66137942434563,-87.66131073580328,-87.66127981252514,-87.66122667388085,-87.66119606707319,-87.6611969529187,-87.66084289642052,-87.66084299436733,-87.66080501991833,-87.6607736553309,-87.66082125168676,-87.66089866659227,-87.66101488964902,-87.66108431164518,-87.66114671066701,-87.6611931772445,-87.66124686700572,-87.66137065608528,-87.66140854818921,-87.66130154348249,-87.66130104529061,-87.66133303784213,-87.66147937690675,-87.66158809308921,-87.66167954278654,-87.66173393701735,-87.66173471776,-87.66175071122044,-87.66175022054877,-87.66181261907286,-87.66211445469398,-87.66222276393871,-87.66235438145202,-87.66247166903828,-87.66250996286115,-87.66252585708062,-87.66260305681016,-87.66263503658477,-87.66268903205355,-87.66274361254064,-87.66275950785628,-87.66282076818658,-87.66309232424626,-87.66317703097441,-87.66343264620083,-87.66363296446877,-87.66389647950307,-87.66409660283338,-87.66446704913633,-87.66459104336789,-87.66462194174422,-87.66476806798532,-87.66489977545412,-87.6649307689282,-87.66496167221351,-87.66505457250186,-87.66542500284569,-87.66564040274298,-87.66577914893554,-87.666048826997,-87.6663267525699,-87.66642657488582,-87.66653517487127,-87.66695177944206,-87.66698268644797,-87.6671685716282,-87.66719946715428,-87.66749255243221,-87.66760124458865,-87.66763901275053,-87.66790920972714,-87.66824845724176,-87.66828782195921,-87.66848020841051,-87.66909709579942,-87.66943563096882,-87.66954435445248,-87.6696521552991,-87.66971350521398,-87.66980623483268,-87.67002161420486,-87.6701213360392,-87.67039999436342,-87.67079235381331,-87.67123188416038,-87.67137861311109,-87.67200298428881,-87.6722189613335,-87.6724277244852,-87.67274264539138,-87.67292082758959,-87.6731289616404,-87.67321264602926,-87.67329744817692,-87.673390414211,-87.67342158140862,-87.67343705846105,-87.67359214215982,-87.67372376608509,-87.67381594132893,-87.67393972047083,-87.67405628070888,-87.67424842525151,-87.67471140599632,-87.67529694514046,-87.67548191113352,-87.6755977229174,-87.6757589906772,-87.67581344423184,-87.67602896412785,-87.67621410920216,-87.67667632703179,-87.67712394304026,-87.67713903750162,-87.67730939918155,-87.67748634250064,-87.67759517898044,-87.67771094889373,-87.67781850021274,-87.67825797191971,-87.67833485952326,-87.67839690782931,-87.67840419790492,-87.67850549844464,-87.67858256356624,-87.6788988697455,-87.67909888306839,-87.67975475466849,-87.68021759581896,-87.68047143278861,-87.68054843879302,-87.68111179590861,-87.68139700851505,-87.6815824309642,-87.68181315356344,-87.68187492593812,-87.68201375502071,-87.68226824855053,-87.68257689536736,-87.68273941389469,-87.68280040983309,-87.68286227039428,-87.6829700321257,-87.68355621246126,-87.68370284541555,-87.68378068248865,-87.68378077134271,-87.68387299976698,-87.68403403345843,-87.68417354964366,-87.68434264026017,-87.6844741767466,-87.68462896375868,-87.68477471542595,-87.68483658233993,-87.68537614200937,-87.68567018244444,-87.68587037310849,-87.68606257141064,-87.68634862697623,-87.68663422940858,-87.68684937845742,-87.68689632413718,-87.6870498696173,-87.6870499546216,-87.68708171344797,-87.68722086794499,-87.68728298801082,-87.68739108825365,-87.6874062629544,-87.68746820805316,-87.68748338350979,-87.68756121087735,-87.68773089943883,-87.68788488367365,-87.68793085308536,-87.68805474041876,-87.68810071025506,-87.68816265685234,-87.688162740552,-87.68839409602664,-87.68848657104287,-87.68853421344561,-87.6885947391312,-87.68879565324521,-87.68884240903445,-87.68891943996147,-87.68907403258864,-87.68912009749322,-87.68915097524687,-87.68950593085425,-87.68975342421849,-87.6899148415885,-87.68999308445568,-87.69002290409502,-87.69012422775718,-87.69017115365078,-87.69032520077477,-87.69071041574311,-87.69077235469591,-87.69080244287842,-87.69094131542404,-87.69105780728475,-87.69119659399884,-87.69147389242062,-87.69167404962684,-87.69183612199564,-87.69229819159095,-87.69238349433805,-87.69266855945085,-87.69283014908075,-87.6929540083528,-87.69301556855511,-87.69303178938009,-87.69311704317307,-87.69324010231534,-87.69346369635495,-87.69367133085763,-87.69385781071463,-87.6941343910417,-87.69451972311695,-87.69465918825146,-87.69477513766707,-87.6949060869788,-87.69495205507691,-87.6950909887175,-87.69513694807092,-87.6952381636432,-87.69531931094615,-87.69538869056159,-87.69546491103429,-87.69549604252646,-87.69555006417414,-87.69584969251233,-87.69602035118795,-87.69603552811694,-87.69608156775116,-87.69619020633445,-87.69626649347695,-87.69641323634667,-87.69662873540042,-87.69684494365518,-87.6969749184323,-87.69735317625837,-87.69774600248316,-87.69792978059907,-87.69805337261258,-87.69814623489081,-87.69823567987211,-87.6983011736822,-87.69835327015996,-87.69853834498043,-87.69857698443339,-87.69857706728433,-87.69853042933109,-87.69849964026392,-87.69839906687189,-87.69836871311171,-87.69802352667435,-87.69797667691577,-87.69796943499566,-87.69797663042395,-87.69802337063186,-87.69830030740351,-87.69835429258107,-87.69839298188674,-87.6985314677209,-87.69866161808694,-87.6987458509435,-87.69873857975321,-87.69870761632592,-87.69862516515849,-87.69864132531634,-87.69870037641144,-87.69876160273232,-87.69878457593349,-87.69890011186631,-87.69892594204076,-87.69890003949483,-87.6985257559991,-87.69849475608606,-87.69850931653799,-87.69860825842937,-87.69870101012229,-87.69894720335007,-87.69918644825744,-87.69933948231966,-87.6994172653453,-87.69955599717487,-87.69970122646666,-87.69992529999169,-87.70012515146952,-87.70044928922205,-87.70077207342383,-87.70105017184829,-87.70132729515463,-87.70138841415482,-87.7015888820777,-87.7018045084836,-87.70195893867695,-87.70198989560842,-87.70205881911924,-87.70215064475457,-87.70222874115478,-87.70256746512715,-87.70265188598404,-87.70270608389593,-87.70277501027982,-87.70292115559852,-87.70293735213517,-87.70296758998425,-87.70296775909672,-87.70302919530077,-87.70308335687082,-87.70312939392386,-87.70314455220287,-87.70343801165258,-87.70346809913234,-87.7035600678696,-87.70362994805471,-87.70367701043497,-87.70367694896227,-87.70375369376522,-87.70383067274267,-87.70382996289463,-87.70395376359552,-87.70400847330023,-87.70426898982133,-87.70510102192172,-87.7052094931804,-87.70529348673477,-87.70541720028143,-87.70560208579032,-87.70561724058643,-87.70571008072041,-87.70571015743906,-87.70574032254703,-87.7058176886744,-87.7058949044546,-87.70590942985262,-87.70591007100981,-87.70592522606756,-87.70592586390721,-87.70595642149195,-87.7059643301972,-87.70598746001689,-87.70598761660638,-87.70606498062983,-87.70612616408553,-87.70612624066558,-87.70618813526995,-87.70623424098083,-87.70623431746866,-87.70633441886211,-87.70652710336077,-87.70665056668462,-87.7066819851502,-87.7067200349596,-87.70685068071441,-87.7068812314596,-87.70693616768531,-87.70701226735552,-87.70719934513774,-87.70759080141001,-87.7077360289456,-87.70788963054763,-87.70799816221603,-87.70823725576687,-87.70863645700273,-87.7086758566938,-87.70885206298065,-87.70939193263786,-87.70951494505444,-87.70970684301444,-87.70982942612079,-87.7099765534176,-87.71006124363245,-87.71016029437834,-87.71016076769789,-87.71017662718496,-87.71022257446701,-87.71037636577381,-87.71042229742244,-87.71045402947516,-87.71046933340918,-87.71050716743439,-87.71075409313929,-87.71096185952031,-87.71158558056091,-87.71184617681378,-87.71194678099688,-87.71203204330178,-87.71230848064178,-87.71250081088482,-87.71255520710631,-87.71293210294989,-87.71323235447716,-87.7134706696704,-87.71377843988409,-87.71387064785272,-87.71403281958811,-87.71418631847482,-87.71420906337968,-87.71433234638222,-87.71455593418973,-87.71474760456917,-87.71484075975039,-87.71501816886861,-87.715117429305,-87.71521726264702,-87.71554773084823,-87.71582471600598,-87.71634865737015,-87.71669549034605,-87.71678742454363,-87.71706456198731,-87.71715728243473,-87.71729507265964,-87.71750324304412,-87.71762588926848,-87.71788717524622,-87.71791889219169,-87.71815017382698,-87.71821124842678,-87.71829677976716,-87.7186505412123,-87.7187804294911,-87.71885017645201,-87.71895781193507,-87.71908138910352,-87.71955777251078,-87.71982699741186,-87.72015822973657,-87.72038261276953,-87.72050561327315,-87.72056660033016,-87.72078230349025,-87.72096673297986,-87.72111341847076,-87.72111277597959,-87.72115189760999,-87.72116022813275,-87.72120546048815,-87.72122155563237,-87.72128358709054,-87.72133001987537,-87.72132952337491,-87.72136850368832,-87.72139089702046,-87.72139874161009,-87.72146004338384,-87.72146881996235,-87.72149129325857,-87.72150694844137,-87.72152208845012,-87.72152984844789,-87.72156049732762,-87.72157616483328,-87.72156878465921,-87.72161528936553,-87.7216463624226,-87.72178418516479,-87.72182110994517,-87.72165407046815,-87.72150802856316,-87.72146156072868,-87.7214624955176,-87.72140024908606,-87.7212922408132,-87.72127761006247,-87.72120101846733,-87.72115475415173,-87.72110843170246,-87.72109272208378,-87.72104697925333,-87.72101642083391,-87.72101656895983,-87.72100087018174,-87.72098581058933,-87.72089394158334,-87.72089329909923,-87.72078572572778,-87.72078587033427,-87.72075503036613,-87.72075533089777,-87.7207249395133,-87.72071001751277,-87.72070951968003,-87.72069396772318,-87.72067812297075,-87.72067912803669,-87.72064794050539,-87.720633028991,-87.72061732075797,-87.72061732908934,-87.72058714043615,-87.72058650478074,-87.72057145149439,-87.7205709532105,-87.72055610619877,-87.72055250136185,-87.72058695016621,-87.72063300456678,-87.72063330521789,-87.72059507779925,-87.7205486716167,-87.72045657464446,-87.72014110569384,-87.71978783483698,-87.71971101511784,-87.71960314133591,-87.71948702221141,-87.7193263043882,-87.71917284194025,-87.71914158652027,-87.71912681503379,-87.71911097143774,-87.71908042023013,-87.71906501529818,-87.71897316287819,-87.7189733122167,-87.7189425595725,-87.71894198974371,-87.71892714643447,-87.71892651370554,-87.71888120358139,-87.71888064488348,-87.71886588472411,-87.71885003110086,-87.71885011325209,-87.7188194356597,-87.71878868640673,-87.71876627171379,-87.71865034760444,-87.71863631135741,-87.71860440627435,-87.71861259642591,-87.71858945544297,-87.7185438732737,-87.71854431259193,-87.71848275164888,-87.71849051865711,-87.71848215162404,-87.71845118418021,-87.71843641421131,-87.71842092965298,-87.71839118972808,-87.71839048269547,-87.71837550302098,-87.71835923186265,-87.71836039958596,-87.71832951179975,-87.71833727908589,-87.71832110082805,-87.71832960573487,-87.71831477266909,-87.7183220152334,-87.71829859469841,-87.71828376188039,-87.71826054101045,-87.71829202081692,-87.71828371712543,-87.7182688129371,-87.71826840026024,-87.71826910204439,-87.71828423752279,-87.71828127949343,-87.71828459310308,-87.7183079034354,-87.71830054503978,-87.71829310501506,-87.71827798368101,-87.71828530769011,-87.71826998010732,-87.71827861873484,-87.71827103957695,-87.71825526340049,-87.71825507116806,-87.71827122619834,-87.71826292468259,-87.71827110942023,-87.71828590699093,-87.71828672581502,-87.71831673271964,-87.71831736888261,-87.71830103471163,-87.71830921989891,-87.71829368707721,-87.71831716478984,-87.71831793819663,-87.71834829204471,-87.71835154669992,-87.71836359048787,-87.71836331615306,-87.71839453180066,-87.71841020056738,-87.71850180298902,-87.71850213345932,-87.71851734209426,-87.71856454367664,-87.71860995551896,-87.71862602411788,-87.71864074515538,-87.71867195824356,-87.71878027576243,-87.71881118615855,-87.7188725277458,-87.71887225180016,-87.71888825711413,-87.71891852323135,-87.71899626862755,-87.71902654467229,-87.71907318099895,-87.71910345745543,-87.7191036018761,-87.71911866464886,-87.71913417215185,-87.71919628878744,-87.71919572904905,-87.71924271371815,-87.71930373897898,-87.71933480563689,-87.7193959131729,-87.71950422407626,-87.71955019133735,-87.71959638487633,-87.71967262314345,-87.71974972431691,-87.71984261165923,-87.71985781381733,-87.71993548210476,-87.7200427093649,-87.72008876002467,-87.72024259284825,-87.72042007896155,-87.72046596919816,-87.72058961225824,-87.7207267225983,-87.72088111951835,-87.72098173703009,-87.72144298166982,-87.72150472921541,-87.72162353601992,-87.72166600163204,-87.72200397127042,-87.72228082163818,-87.72236630398866,-87.72238143283575,-87.722535247987,-87.72255037662428,-87.72273580869819,-87.72303567471114,-87.72314259729664,-87.72319716201288,-87.72335878269564,-87.72372812255929,-87.72396631791368,-87.72416636927245,-87.72426617141301,-87.72441258628152,-87.72445776687611,-87.724589123952,-87.72470405648107,-87.72475769119418,-87.72481143521958,-87.72484131051107,-87.7248529636837,-87.72480412306386,-87.72476215198047,-87.72475837527507,-87.72479547644083,-87.72483625966622,-87.72488062885058,-87.72493515082139,-87.72500420008301,-87.72504276864588,-87.7250272091424,-87.72503459498088,-87.72505043798863,-87.72510522330096,-87.72535846194252,-87.72554989410706,-87.72568847831955,-87.72577394948893,-87.72600495687593,-87.7261884319751,-87.72620427600023,-87.72638831680682,-87.72652009506396,-87.72661960871309,-87.72675790903315,-87.72700397304931,-87.72717295913978,-87.72721224353639,-87.72737276982332,-87.72767265951865,-87.72784299483975,-87.72788830789247,-87.72796594898037,-87.72799612386137,-87.72808802974278,-87.72818854567252,-87.72841896781776,-87.72843401961619,-87.72869569054561,-87.72892675465043,-87.72909593852056,-87.7293111498918,-87.72945739755038,-87.72967269068005,-87.72979519848626,-87.72990287894042,-87.7299488245668,-87.72994889033824,-87.73012617848524,-87.73040325002651,-87.73052583079695,-87.73072584315345,-87.73097244794252,-87.73116377635149,-87.73137123606881,-87.7314645707806,-87.73167167877924,-87.73210974972827,-87.73227970515254,-87.73264823344412,-87.73270987537022,-87.73277081036163,-87.73290994365438,-87.73341745677291,-87.73370147100876,-87.73410096963802,-87.73453965492119,-87.73458631093969,-87.73480106515802,-87.7349624294738,-87.73555520891954,-87.7356774894596,-87.7358083786867,-87.73602370513315,-87.7363232486401,-87.73656895066253,-87.72225531068776,-87.70193077123805,-87.68162927345362,-87.66126892633446,-87.64106732515542,-87.620771015351,-87.60043476851359,-87.58010640570316,-87.53955695971598,-87.51923648898392,-87.49897448107289,-87.47876942063999,-87.46878080478442,-87.45841669061083,-87.43815145283412,-87.41787261097971,-87.39759340907634,-87.37506753546199,-87.37505548369727,-87.37501668296038,-87.37499316654176,-87.37491747218148,-87.37474166489824,-87.37465722945758,-87.37459623394209,-87.37445003548851,-87.37410600296678,-87.37401353315133,-87.37396084531059,-87.37396120201618,-87.37386995587283,-87.37376298627088,-87.37369473477037,-87.37333469138855,-87.37331185719083,-87.37318143198402,-87.37315859758104,-87.37307476284231,-87.37302097833249,-87.37279101120643,-87.3725365416792,-87.37235402898867,-87.37190118283966,-87.37181730428405,-87.37157969095583,-87.3711347604158,-87.371005316013,-87.37079820099893,-87.37046914579182,-87.37023111022445,-87.37002512235493,-87.36974112203482,-87.36955708934107,-87.36907451692682,-87.3689903253253,-87.36886007991359,-87.36860705071406,-87.36849197501581,-87.36827696604115,-87.36796319063485,-87.36780217301718,-87.3677483812299,-87.36743468534807,-87.36703488674787,-87.36689810767604,-87.36683621562052,-87.36663712238507,-87.36658403022426,-87.36646037792553,-87.36623835336268,-87.36610879719331,-87.36600950843436,-87.36575606243088,-87.36547174200612,-87.36534238678003,-87.36459844202487,-87.36440607556877,-87.36432137315852,-87.36403852958523,-87.36384610803454,-87.36362421336997,-87.36350890704072,-87.36304213629516,-87.36288638671486,-87.36281943776308,-87.36262030930222,-87.36260569747756,-87.36249774946475,-87.36245194279958,-87.36245252371219,-87.36242135477202,-87.36242113278053,-87.36239073665813,-87.3623453183662,-87.36228432153598,-87.36228411244772,-87.36223773726374,-87.3622383180918,-87.36209997158412,-87.36199355269605,-87.36197871867097,-87.36188690898494,-87.36188670313426,-87.36185552015894,-87.36185531089005,-87.36171010404145,-87.36155000133263,-87.36129717692579,-87.36122019550351,-87.36112875176042,-87.36111345834793,-87.36109111711077,-87.36106797229526,-87.36106867293658,-87.36108460885393,-87.36108492116558,-87.36110064820616,-87.36108502866415,-87.36108535517873,-87.36107031179974,-87.36102503415545,-87.360910620178,-87.36087166962101,-87.36079543699445,-87.36060322356343,-87.36055073335829,-87.36032729480921,-87.36014339863389,-87.3600140151746,-87.35969943112994,-87.35953749313353,-87.35942259253207,-87.35904675410544,-87.3586473715371,-87.35843385120477,-87.35837932043952,-87.35819518912541,-87.35772815424058,-87.35749783112182,-87.35726774188107,-87.35704564251208,-87.35684654702494,-87.3566156171902,-87.35620956590262,-87.35604108238731,-87.35584916629249,-87.35569600200776,-87.35527351685666,-87.35517437764166,-87.35493640841482,-87.35482941530836,-87.35466062555183,-87.35460683951234,-87.35437648097498,-87.3541854718936,-87.35411648916373,-87.35403969123297,-87.35400949655944,-87.35357987721756,-87.35343506444241,-87.35336561360398,-87.35323523930036,-87.35320474273149,-87.3531897895123,-87.35317485214918,-87.35315988633791,-87.35314379915192,-87.35312884277087,-87.3530981352812,-87.35308317780057,-87.35306866747283,-87.35303750266472,-87.35300779015559,-87.35283894591606,-87.35280890000242,-87.35280822034109,-87.35278563052998,-87.35277856728801,-87.35271611571822,-87.35268578758387,-87.35267059028338,-87.352671532462,-87.35265633109618,-87.35264048522491,-87.35264138307002,-87.35262563940967,-87.35261058031985,-87.35258050727973,-87.35253435157976,-87.35238031294068,-87.35230418987868,-87.35215118007321,-87.35215151326682,-87.35208993794222,-87.35198318700282,-87.35169187566513,-87.35160745864918,-87.3513398218754,-87.35087947776196,-87.3507336577229,-87.35071874551176,-87.35054168841215,-87.35035793136737,-87.35023538135422,-87.35017160836607,-87.35005908234531,-87.35003622941618,-87.34986739467985,-87.34976822566568,-87.34970604865934,-87.34937683588947,-87.34922226341067,-87.34893982375787,-87.34864018196987,-87.34843295006958,-87.34838789604623,-87.34833352851459,-87.34828798133177,-87.34828862425469,-87.34825768560981,-87.34824272896448,-87.3482438343195,-87.34817393414859,-87.34809008473783,-87.34807559249053,-87.34794593286044,-87.34783087800785,-87.34781591749567,-87.34771606172218,-87.34760128183632,-87.34755576433325,-87.34737976164415,-87.3472495214165,-87.34720335389277,-87.34711168310925,-87.34706616380321,-87.34703521394518,-87.34700432477889,-87.34689740243476,-87.34672873966026,-87.34658231313047,-87.34647586098633,-87.34637656338941,-87.34624592376221,-87.34616155530085,-87.34613046157811,-87.34603855619899,-87.34588570531504,-87.34584753359071,-87.34561781814411,-87.34552612108669,-87.34541807616615,-87.34537266256382,-87.34523519761603,-87.34497376845178,-87.34486672550473,-87.34478909661003,-87.34477445168665,-87.34471281986848,-87.34468219242301,-87.34457478871559,-87.34439825229126,-87.34431377063201,-87.34429892481758,-87.34429919699399,-87.34428320610124,-87.34428823284102,-87.34419942981742,-87.34413065696843,-87.34406877620225,-87.34404592945708,-87.34393155598106,-87.34393134191477,-87.34380864116356,-87.34380842528724,-87.34370115732749,-87.34364063963396,-87.34359381602975,-87.3434720429312,-87.34337302903904,-87.34332659587507,-87.34331960014129,-87.34328110447116,-87.34322729008542,-87.34319686360898,-87.34312782841225,-87.34309000514078,-87.34302850668922,-87.34301342873583,-87.34299821925333,-87.34299778776811,-87.34298256939319,-87.3429821396244,-87.34296772125046,-87.34292156734185,-87.34290713614926,-87.34290670543173,-87.34289149977295,-87.34289081167159,-87.34286134134781,-87.34286069704557,-87.34284548808398,-87.34284584509192,-87.34279222776449,-87.34279258728129,-87.34277659199573,-87.3427696247674,-87.34277728980128,-87.34276165399388,-87.34277771521251,-87.34279327951892,-87.34279412045014,-87.34277891196736,-87.34277825450111,-87.34276304533086,-87.34274851136878,-87.34273275895706,-87.34271743521293,-87.34270168699183,-87.34270278964385,-87.34268625093938,-87.34268761106821,-87.34261743731982,-87.34246544004715,-87.34246522277776,-87.3424188010202,-87.34241858375911,-87.34235808554257,-87.34218951647397,-87.34211336292464,-87.34208214675878,-87.34208271970004,-87.34203607954728,-87.34203586195753,-87.34197478918223,-87.34197536208093,-87.34187532683777,-87.34177699623775,-87.34162381944876,-87.34160782212078,-87.3415626676792,-87.34151401018715,-87.34140255100452,-87.3413411669444,-87.34126482482218,-87.34124986215491,-87.3412191226811,-87.34120374817481,-87.34115838621487,-87.34109740878736,-87.34099804186813,-87.34094442659159,-87.34091401411723,-87.34089905110157,-87.34087608388612,-87.34084512713302,-87.34082299543101,-87.34080873256536,-87.34075559422847,-87.34066378703888,-87.34066331122125,-87.34063292108463,-87.34054168164438,-87.34051125160171,-87.34048016681162,-87.34041908457171,-87.34037358123378,-87.34032713508762,-87.34032691686292,-87.34021207573061,-87.3401433257025,-87.339974943383,-87.33997472515202,-87.33972968855088,-87.33962182867484,-87.33949930423661,-87.3394998769936,-87.33945343997081,-87.33937692741179,-87.33928489079724,-87.33920920495024,-87.33918635808099,-87.33920180321871,-87.3392173695821,-87.33923311450694,-87.33924982223868,-87.3392493064888,-87.33926465420994,-87.33926527024956,-87.33928061811687,-87.33929681017695,-87.33931158641914,-87.33931251136588,-87.33932807827618,-87.33934334550482,-87.33935969936725,-87.33935940010998,-87.33932155664992,-87.33931357811186,-87.33927538051987,-87.33919881980943,-87.33912153975351,-87.33903024368348,-87.33903002461675,-87.33898358947467,-87.33898493618912,-87.33892305730481,-87.33878453034625,-87.33870822793638,-87.33852470637792,-87.33844742256034,-87.33822617147439,-87.33817963560075,-87.33811832144424,-87.33811921920562,-87.33810346229808,-87.33808859072526,-87.33805736340278,-87.33801184523293,-87.33801218798038,-87.33798075500253,-87.33798185431174,-87.33796531113411,-87.33795076453995,-87.33793579477609,-87.33793510143795,-87.33790470489437,-87.33790501722015,-87.33789004643829,-87.33788958605894,-87.33787461517724,-87.33781365718826,-87.3378131797935,-87.33778220995788,-87.33776787897716,-87.33775212162142,-87.33775247686114,-87.33770558588111,-87.33770647026826,-87.33769150009381,-87.33767610797311,-87.33766089577382,-87.33766102740563,-87.33764501261282,-87.33764619497347,-87.33766098365119,-87.33766110653353,-87.33767668245147,-87.33767776837949,-87.33766185916897,-87.33764689214898,-87.33757759263128,-87.33748641785188,-87.33745598004715,-87.33745576053811,-87.33742531827447,-87.33739444200526,-87.33737133215368,-87.33711835037788,-87.33692732405409,-87.3366523510258,-87.33662984254281,-87.33663725530103,-87.33665282317867,-87.33665352578919,-87.33668422146607,-87.33668378430843,-87.33670013935749,-87.33676730067994,-87.33680920280871,-87.33682477961837,-87.33682411137615,-87.33685482154344,-87.33685595031228,-87.33687153051915,-87.33690135129692,-87.33691770652885,-87.33693340948852,-87.33701095257537,-87.33704235432062,-87.33704203753216,-87.3370576051551,-87.33707382770186,-87.33704438792793,-87.33699854633122,-87.33699902008382,-87.33698358619823,-87.3369982789702,-87.33699880124105,-87.33701493753811,-87.33701485228951,-87.33698466381533,-87.33692390821741,-87.33692343012845,-87.33690846109374,-87.33683249791176,-87.33681752873422,-87.33681708980342,-87.33678642774484,-87.33675564024057,-87.33674066816278,-87.33673976646696,-87.33672479730754,-87.33672524055527,-87.33671027108294,-87.33669508874191,-87.33667964114007,-87.33667933787305,-87.33666502992804,-87.33664981427081,-87.33664911952964,-87.33663414552696,-87.33663502866314,-87.33660383440679,-87.33658770452165,-87.33654285936764,-87.33654238107574,-87.33652742452358,-87.33648109327831,-87.33648140560871,-87.3364664360726,-87.33643587876864,-87.33642011744976,-87.33642042642374,-87.33612891700541,-87.33612924116842,-87.33611427120742,-87.33611379265299,-87.33609882267571,-87.33603759648734,-87.33589146606566,-87.33580736917555,-87.33570794968624,-87.33544701963172,-87.33540077224865,-87.33535431697563,-87.33514050645617,-87.33497112171972,-87.33483332146307,-87.33477931693317,-87.33477909703018,-87.3347628468003,-87.33477024486332,-87.3346863450215,-87.33463324697315,-87.33451136166971,-87.33435784876812,-87.33422783805355,-87.33409002372964,-87.33408244451164,-87.33405957227558,-87.3339759024402,-87.33386042479871,-87.33379197454127,-87.33379175169595,-87.33369309643142,-87.33346253692203,-87.33326359024136,-87.33309501737827,-87.3329419709636,-87.33265782023832,-87.33263495703702,-87.33256643728681,-87.33254277368282,-87.33229783626965,-87.33209850585533,-87.33176220231226,-87.33121770186844,-87.33048972451439,-87.33021291380551,-87.32990677980307,-87.32953202186667,-87.32925588844684,-87.32877309552708,-87.32848092052303,-87.32826633370655,-87.32801362999602,-87.32789088599127,-87.32769134678412,-87.32742180540032,-87.32732237832003,-87.32726847357549,-87.32716098690982,-87.32710796799201,-87.32707706566627,-87.32705416789345,-87.32704787129862,-87.32700206079518,-87.32691779379613,-87.3267727658322,-87.32668025412873,-87.32627299270017,-87.32612001359986,-87.32596661112895,-87.32587477071706,-87.32579100103773,-87.32535304862252,-87.32515436228024,-87.32505400050725,-87.32483162277084,-87.32468607951714,-87.32457880180436,-87.32448648092013,-87.32427204754747,-87.3242410300048,-87.32412526295973,-87.3240563542761,-87.32397142714561,-87.32387969175839,-87.32378039842115,-87.32375751908221,-87.32363464868125,-87.32353467825067,-87.32338190932472,-87.32312328118638,-87.3230765723805,-87.32306167510987,-87.32303121183136,-87.3230309863003,-87.32296981792555,-87.32293969085418,-87.32287774758632,-87.32281670545646,-87.32278703025374,-87.32278680442177,-87.32275634078816,-87.32267949426792,-87.32263378753841,-87.32259497046759,-87.32248864845967,-87.32225829019492,-87.3220903750923,-87.32200605055384,-87.32188252440827,-87.32180602131794,-87.32168294214178,-87.32131439493908,-87.3211994782048,-87.32099965430602,-87.32086142273144,-87.32069251941549,-87.3206242416725,-87.32060877632361,-87.32044018657687,-87.32034831574511,-87.32034808912233,-87.32031840938764,-87.32028748897602,-87.3202110814161,-87.32018095060414,-87.3201496888037,-87.32014946550596,-87.32011899527272,-87.32011877110959,-87.32007283233294,-87.31999631092977,-87.319966744526,-87.31990556541432,-87.31990533860133,-87.31984473629205,-87.31973785507378,-87.31970659464423,-87.31969169033148,-87.31966121914449,-87.3196609930212,-87.31961584247034,-87.31944698285639,-87.31942409954505,-87.31942387252714,-87.31926359073553,-87.31908697248876,-87.3189566497738,-87.3188802389077,-87.31884931283354,-87.31884965032462,-87.31883440875758,-87.31883506587626,-87.31885074439128,-87.31888165424564,-87.31894335579481,-87.31906803328138,-87.31906836991783,-87.31908314775787,-87.31908438397215,-87.31909916247719,-87.31910057943168,-87.31908514334445,-87.31908636748354,-87.31907034860191,-87.31907022373629,-87.31905499243427,-87.31902551759457,-87.3190102757335,-87.31900933720759,-87.31897979954252,-87.31896453935566,-87.31894931029238,-87.31893496502313,-87.31893404979193,-87.31890470342249,-87.31888934503388,-87.31887411330239,-87.31887421263404,-87.31882883131267,-87.31882815360578,-87.31881292419409,-87.31881381147144,-87.31879779098402,-87.31878363389158,-87.31876841491982,-87.31876803971458,-87.31873827315273,-87.31873893380302,-87.3187237033143,-87.31872523132874,-87.31874034592001,-87.31875623580787,-87.31877259301659,-87.31877270197644,-87.31878748026863,-87.31880394988991,-87.31880383576797,-87.31881940501863,-87.31881961271985,-87.31885108727499,-87.31885119712234,-87.31889802801429,-87.31891346550803,-87.31894439054679,-87.31896063398891,-87.31900666115872,-87.31902290405378,-87.3190538165138,-87.31906949532173,-87.31914700931036,-87.31914813694327,-87.31919360144565,-87.31919393887475,-87.31964525483399,-87.31969241317361,-87.31986369915225,-87.32001819360758,-87.32022696368743,-87.3202583284543,-87.3203042601185,-87.32044330138281,-87.32049848065738,-87.32066053066319,-87.32082348253191,-87.32082303337494,-87.32085373606748,-87.32085440096976,-87.32086997010212,-87.32087042224295,-87.32088576708155,-87.32090357154243,-87.32091835128975,-87.32091123726129,-87.32091898347652,-87.32090354671173,-87.32090422475352,-87.32088875271633,-87.32088920401414,-87.32087396034451,-87.3208743984801,-87.3208589419024,-87.3208671698445,-87.32085945840318,-87.32084424800225,-87.32084515012831,-87.32082990631829,-87.32082922948655,-87.32081399865731,-87.32079938196114,-87.32078417141298,-87.32077027786488,-87.32075503374722,-87.32075435681975,-87.32073888598777,-87.32074067922913,-87.32072577188326,-87.3207262878549,-87.32071107796492,-87.32069583075909,-87.32068059949728,-87.32068148833774,-87.32065055968748,-87.32062029482064,-87.32060427205147,-87.32058970249321,-87.32057445795822,-87.32055966143294,-87.32049857975089,-87.32046798696649,-87.32039144578872,-87.32033082227106,-87.32030044372995,-87.32025450457496,-87.32023937316151,-87.32017794894784,-87.32016226278949,-87.32011710148818,-87.32010140299109,-87.31987245712837,-87.3195658488426,-87.31950466186453,-87.31944379835825,-87.31944413824739,-87.31939773185609,-87.31926756023236,-87.31896903660744,-87.31894614610961,-87.31875431212779,-87.3186554694385,-87.31845553539816,-87.31831779412704,-87.31809426945777,-87.31784175056028,-87.31775762365662,-87.31758850996431,-87.31692743449629,-87.31661256582973,-87.31653576485766,-87.31620552115443,-87.3159756549378,-87.31572155692015,-87.31516121930888,-87.31474580324164,-87.31443925545814,-87.31419317598522,-87.31400869733716,-87.31373162654184,-87.3136170021741,-87.31376323580005,-87.31391793026458,-87.31413329968129,-87.31433439878317,-87.31439583309971,-87.31442697287258,-87.31441175508691,-87.31436571685877,-87.31389372039686,-87.31374319124885,-87.31367936939021,-87.31409141586904,-87.31418369193824,-87.31449273648309,-87.31456207857912,-87.31480125269397,-87.31498663066667,-87.31501772184504,-87.31597521857849,-87.31742685850085,-87.31881715806429,-87.31888649088293,-87.32088605290204,-87.32135061609637,-87.32150394881333,-87.32524271148786,-87.33040200091146,-87.33049453289384,-87.33050012117289,-87.33107997556314,-87.33114133601255,-87.33117269274651,-87.3325319729646,-87.33327431037951,-87.3334280883126,-87.33355119408218,-87.33364395023614,-87.33386051268823,-87.33389083628354,-87.33398332422661,-87.33401442548144,-87.33407608315468,-87.33410640666418,-87.33435385042743,-87.33456922317343,-87.33493938343317,-87.33537187611286,-87.335819207654,-87.33602790210283,-87.33622958709228,-87.33643855963669,-87.33659260360554,-87.33671625657209,-87.33677715227992,-87.33681508831114,-87.33734991202491,-87.33824334904705,-87.33837595621533,-87.33843005882933,-87.33895548614782,-87.33975880954492,-87.33978912285124,-87.34009779005679,-87.34053880518914,-87.34086277634127,-87.34101028847631,-87.34136616782541,-87.34172109720973,-87.34178311241476,-87.3418300349001,-87.3419374473884,-87.34215404231453,-87.34240197595922,-87.34249373485099,-87.34252435044401,-87.34277139904424,-87.34280223048297,-87.34289423483361,-87.34304945691945,-87.34320312386582,-87.34332729461096,-87.34345017377636,-87.34360448435611,-87.34369789350183,-87.34379047084185,-87.34385191977087,-87.34403670554904,-87.34431472579921,-87.34443757632909,-87.3444990120629,-87.34468498538402,-87.34487087833215,-87.34502455276996,-87.34511703564201,-87.34514736357529,-87.34523984638533,-87.34536344617547,-87.34539377502207,-87.34545543883287,-87.34570242425133,-87.34591800851271,-87.346041892279,-87.34641182057067,-87.34662858886904,-87.34712187595611,-87.34755498059806,-87.34780089211344,-87.34783201403866,-87.34795482760239,-87.34826375468626,-87.34866474915313,-87.34899390699523,-87.34945131566199,-87.34962938297207,-87.34982279379675,-87.35030249733886,-87.35051783404234,-87.35071176587559,-87.35102884619434,-87.35197846410946,-87.3521640833554,-87.35241159079975,-87.35272916258097,-87.35294584774424,-87.35350245325293,-87.35374895757894,-87.35405864416647,-87.35427478976607,-87.35445999335349,-87.35455255953087,-87.35470714421264,-87.35489256387608,-87.35492397473803,-87.35517084976077,-87.35526399575028,-87.3553254377784,-87.35591194452556,-87.3561283082358,-87.35619054386103,-87.35639817853728,-87.35670058410899,-87.35682385134061,-87.35692496824636,-87.35702487300421,-87.35715045789681,-87.35721999929272,-87.35735178643309,-87.35747530069021,-87.35766052075455,-87.35778397208051,-87.35800023797945,-87.35858668315305,-87.35880294931421,-87.35895725812682,-87.35920418615974,-87.35938958549075,-87.35979031668467,-87.36003727951939,-87.36022155758106,-87.36056177338557,-87.3608712001846,-87.36108744333114,-87.36127219166025,-87.36139498880733,-87.36142631248764,-87.36148798508135,-87.3616721224579,-87.36173378199699,-87.36176432606443,-87.36207266406306,-87.36225736789166,-87.36228928053036,-87.36244344909809,-87.36256632959768,-87.36265890487667,-87.36278238214301,-87.36293666411349,-87.36312174895109,-87.36321424451764,-87.36324616170491,-87.36336899487605,-87.36373848997758,-87.36392357745639,-87.36414750859193,-87.36429507651432,-87.36442583816005,-87.36463466222382,-87.36497451941973,-87.36531425513301,-87.3654228616243,-87.36549160676775,-87.36552239820769,-87.36558470026468,-87.36562137988898,-87.36561315987424,-87.36562090658906,-87.36565811894918,-87.36569754212199,-87.36580523102577,-87.36595885246697,-87.36614439103438,-87.36634478613909,-87.36639068885864,-87.36645330164737,-87.36645334826896,-87.36642199972309,-87.36632971296328,-87.3662751575407,-87.36615994375789,-87.36597544920778,-87.36594411406648,-87.36589747054613,-87.36582110491929,-87.36575926933212,-87.36572880410725,-87.36571410044907,-87.3657143513678,-87.36576963519943,-87.3658161522539,-87.36593231834559,-87.36608639595882,-87.36639471835969,-87.36673541920489,-87.36692087049057,-87.36702036282705,-87.36728378597822,-87.36767770592917,-87.36784829522917,-87.3681265331071,-87.36834190862329,-87.3685899488417,-87.36868174115077,-87.36874429361423,-87.36899091151442,-87.36926912710609,-87.36988557200007,-87.37006062424753,-87.37040051572235,-87.37045416460359,-87.37044539141959,-87.37045192890183,-87.37043712037064,-87.37044444688759,-87.37043695157315,-87.37041311335129,-87.3703750865395,-87.37029752064562,-87.37020439234968,-87.36984977972286,-87.369726234065,-87.36957255844814,-87.36938747610674,-87.36924902909112,-87.36919469342546,-87.36887750213921,-87.36881603375019,-87.3684527892771,-87.36829093588842,-87.36813548284272,-87.36717834583528,-87.36714739314908,-87.36715522108588,-87.36717760217461,-87.3672395647139,-87.3673018080852,-87.36754822183616,-87.36767271909312,-87.36804286553756,-87.36838276859335,-87.36872280722625,-87.36890808950967,-87.36918646520637,-87.36936383374285,-87.36968454598529,-87.36997274663806,-87.37004287978534,-87.37033708347251,-87.3705036731784,-87.37059104736279,-87.37066765034841,-87.37068383110197,-87.37066872530472,-87.37063880436543,-87.37063950049617,-87.37065510188258,-87.37065580370333,-87.37064020010202,-87.37064043446685,-87.37065658145548,-87.37075702732272,-87.37077966645289,-87.37084961834405,-87.37090264481444,-87.37091807694794,-87.37093299093132,-87.37093186389595,-87.37094023765488,-87.37098492654492,-87.37103865873362,-87.37113194738326,-87.3712100127435,-87.37130168764278,-87.37132456772052,-87.37140067961052,-87.37151600019317,-87.37173204159838,-87.37176317350105,-87.37191685041931,-87.37207117988667,-87.37225780849961,-87.37244252932854,-87.37302996109017,-87.37306059380475,-87.3732149260034,-87.37339997771741,-87.37358594055563,-87.37367883222558,-87.37391056628385,-87.37425745845792,-87.37430415137572,-87.37457332260301,-87.37451467187073,-87.37441422520547,-87.37436090822473,-87.37437631756465,-87.37443852796092,-87.37446091067243,-87.37465270390705,-87.37477621254831,-87.3748690100831,-87.37497692204306,-87.37503921897479,-87.37510355569724,-87.37524434307659,-87.37527467131599,-87.37532114882937,-87.37535980367369,-87.37545263323477,-87.3755371101234,-87.37569852706588,-87.37576093361815,-87.37574499509432,-87.37572186363762,-87.37535216001756,-87.37527902651823,-87.37539893603422,-87.37544545239241,-87.37558306624345,-87.37561862676628,-87.37564941758833,-87.37629351918048,-87.37635435783133,-87.37641659206092,-87.37647826998887,-87.37652383710243,-87.37718653757553,-87.37727188376671,-87.3773259329854,-87.37748735340115,-87.37753395834002,-87.37753349808746,-87.3775103654894,-87.37744878863444,-87.37735716207384,-87.37717162530956,-87.37710975720016,-87.37690261730687,-87.37684054169708,-87.37680167481881,-87.37673984133731,-87.37615451225564,-87.37609267960715,-87.37608000333964,-87.37606904865443,-87.37607783457696,-87.37618507331703,-87.37621593415356,-87.37625468452492,-87.37627737499099,-87.37689472644419,-87.37695580616497,-87.3769868876897,-87.37701747182055,-87.37720319330786,-87.37732799085225,-87.37742643051016,-87.37737975319787,-87.37737954697916,-87.37756546800351,-87.37777391135245,-87.37779811213848,-87.37726477769952,-87.3772279234249,-87.37718859824639,-87.37718784591604,-87.3772727334145,-87.37729850426393,-87.37732670827918,-87.37791194266553,-87.3779738244328,-87.37802758070258,-87.37805871136111,-87.37807435266636,-87.37807415099498,-87.37789710223218,-87.37746837463689,-87.37744951621605,-87.3774962035929,-87.37751909385698,-87.37809676160866,-87.37812784353032,-87.37819771604373,-87.37834410440101,-87.37836761921932,-87.37835926250271,-87.37801309545664,-87.37787449722589,-87.37778932482135,-87.3777899092468,-87.3777968256538,-87.37786015858497,-87.37796998722339,-87.37852730251603,-87.37863797426631,-87.37869943686491,-87.37877665829912,-87.3788386703832,-87.37889256660553,-87.37929336379563,-87.37941645592622,-87.37955496577425,-87.37968626108798,-87.37994128360701,-87.38006417286103,-87.38017221478837,-87.38027226500483,-87.38058172101093,-87.38111308827017,-87.38112828573296,-87.3811523363333,-87.3814373426258,-87.38183895393571,-87.38199251467269,-87.3820162375895,-87.38210808773229,-87.38230897835055,-87.382493308756,-87.3825712659732,-87.38266286244361,-87.38273268670586,-87.3828179491021,-87.38291086855519,-87.3829411630923,-87.38299493634625,-87.38304188289008,-87.38314137700382,-87.38335007273722,-87.38343464221188,-87.38343522662929,-87.38335751156941,-87.38341965970589,-87.38354267373708,-87.38360460033762,-87.38385893930429,-87.38397482797131,-87.38400516145397,-87.38401999078975,-87.38395922893945,-87.38389770413852,-87.38388186114224,-87.38382054396239,-87.38380569069123,-87.38367515177323,-87.38340474780165,-87.38317436087327,-87.3829580225978,-87.38272633138162,-87.38274973961636,-87.38280412697563,-87.38288136892245,-87.38295012505641,-87.38318980935148,-87.38335075765033,-87.38354436459957,-87.38371346093801,-87.38385268145208,-87.38395948055044,-87.38400576863472,-87.3840524533814,-87.3842208242575,-87.38432099004437,-87.38437520578402,-87.38449876618256,-87.38468377925984,-87.38480758013198,-87.38493791246205,-87.38523846428969,-87.3853920186848,-87.38547794859755,-87.38553097289032,-87.38559352499651,-87.38564688293327,-87.38572463892149,-87.38583298684854,-87.38613274562442,-87.38622612910649,-87.38634893601757,-87.38653352816678,-87.38665708474413,-87.38675749848635,-87.3868117672401,-87.38712012728902,-87.38725811573237,-87.387397592318,-87.38749030653999,-87.38761335772605,-87.38776754340766,-87.38801415083228,-87.38813686621877,-87.38826080995229,-87.38841486258724,-87.3885389946571,-87.38856934182766,-87.38872327377291,-87.38881628330059,-87.38896954667516,-87.38909288706078,-87.38930892191634,-87.38946340154732,-87.38956361655799,-87.38978715928,-87.38987985061149,-87.38996444497627,-87.3900800416863,-87.39012668611524,-87.39012648461413,-87.39020453337999,-87.39031185850094,-87.3903890852736,-87.39045153649489,-87.39054402989483,-87.39059007227378,-87.39063630368146,-87.39071357441819,-87.39071337567881,-87.39077482640052,-87.3908218494482,-87.3908214054803,-87.39086764971088,-87.39089965842803,-87.3908994605989,-87.39097672121281,-87.39113029508734,-87.39119194777345,-87.39120737134039,-87.39120754711865,-87.39116977171592,-87.39116167627287,-87.39116937367939,-87.39127678680993,-87.39133168956758,-87.39137700420919,-87.39143186469717,-87.39149284825307,-87.3916094442767,-87.39171715645881,-87.39171695550408,-87.39177842162269,-87.39179362211166,-87.39186458206655,-87.39204879233399,-87.39211835841066,-87.39214126993268,-87.39214896070969,-87.39220291857669,-87.3922964212756,-87.39233476738561,-87.39236598900858,-87.39236578822481,-87.3924734908333,-87.39247329088528,-87.39250452627824,-87.3925043161864,-87.39255017554659,-87.39255094477035,-87.39250477594949,-87.39245085347814,-87.39239671740823,-87.39238129727863,-87.39241212210787,-87.39244255553137,-87.39244314763221,-87.39251330772449,-87.39279063592438,-87.392891038206,-87.39292148579362,-87.39298313769383,-87.39299952023539,-87.39307638857768,-87.39309100675658,-87.39309195705994,-87.39304588203791,-87.39296817556419,-87.39296795558796,-87.3930540860602,-87.39315415674164,-87.39328502332178,-87.39331644466546,-87.39341645314941,-87.39350153668427,-87.39355492019297,-87.39361747381241,-87.39374014156218,-87.39377098519272,-87.39386438706475,-87.39400247926261,-87.3940951878981,-87.39427250397597,-87.39442746752506,-87.39471958059053,-87.39487515203739,-87.39491237458623,-87.39506003628323,-87.39515234651337,-87.39524505452448,-87.39530692970392,-87.39559218672457,-87.3958315757382,-87.39595513039764,-87.39615557576445,-87.39618621441883,-87.39623227886474,-87.39647978260859,-87.39657960288446,-87.39665766143584,-87.3967651996288,-87.3968270645132,-87.3968429208863,-87.39680417108363,-87.39676526796728,-87.39670471323666,-87.3965500027882,-87.39638042868278,-87.39623422623285,-87.39614842165447,-87.39596386399131,-87.39562458620635,-87.39544774583,-87.39536978369443,-87.39534670702358,-87.39536250206008,-87.39540836946907,-87.39540817402286,-87.395455805653,-87.39556286496902,-87.39565577838781,-87.39571720894534,-87.39605673023125,-87.39618030806591,-87.39627327958078,-87.39639620954159,-87.39651919672025,-87.39676553542606,-87.39688866271689,-87.39695939063962,-87.39701276398486,-87.39702819383821,-87.3970129621279,-87.39700499099126,-87.39702062030575,-87.39704359761816,-87.3972061531355,-87.39726769509663,-87.39734519190509,-87.39738333399508,-87.39739835648604,-87.39747643389596,-87.39781568167115,-87.39792342630729,-87.39798530752151,-87.39809364631638,-87.39810905192546,-87.39817073828011,-87.39821700608172,-87.3982324248998,-87.39829409893059,-87.39834153756581,-87.39837218079893,-87.39852639212152,-87.39855683550698,-87.39855761494856,-87.39857323242646,-87.39857282538637,-87.39860327786192,-87.39864953803786,-87.39864952398867,-87.39863430478214,-87.39863449266613,-87.39861926897028,-87.39861945617064,-87.3986042367941,-87.39858067063844,-87.39860362167097,-87.39860401574636,-87.39863564718438,-87.39863525262521,-87.39871234819279,-87.39885151819742,-87.39884380260533,-87.39876644303429,-87.39875146373805,-87.39875126520874,-87.3987666430923,-87.39883609110898,-87.39888234868826,-87.39889752804785,-87.39889046185344,-87.39882094688369,-87.39879731791467,-87.39888313041138,-87.39888312174742,-87.39886769085324,-87.39890565153813,-87.39896734221414,-87.39899877475384,-87.39904499277065,-87.39904449913332,-87.39899183959268,-87.39883762100962,-87.39879046396806,-87.39872945536871,-87.39872134397002,-87.39872886310948,-87.39874477664058,-87.39879103501808,-87.39885203237353,-87.39894546493579,-87.39906834723693,-87.39909948327805,-87.39925346206195,-87.39940794461137,-87.39943909085297,-87.39945406345007,-87.39940828762788,-87.39922300753629,-87.39885247412688,-87.39879132269667,-87.39866007398572,-87.39861370432966,-87.3985449897483,-87.39852921809154,-87.39852936322092,-87.39860652730999,-87.39888363377509,-87.39891448498832,-87.39897597665932,-87.39940830221161,-87.39947766618072,-87.39955472207193,-87.39964725373125,-87.39967038949449,-87.39965514116949,-87.39963992115251,-87.39964743060827,-87.3996401093528,-87.39965627498806,-87.39964109970479,-87.39964069064345,-87.39965612426388,-87.3996563122259,-87.39968655942654,-87.39968695593596,-87.39970178645351,-87.3997021821191,-87.39971780127901,-87.39973360526419,-87.39974923384419,-87.39976484305288,-87.39981031787052,-87.39984156571808,-87.39994200084911,-87.40002721904911,-87.40003512291086,-87.40002725480055,-87.40004292922002,-87.4001198483535,-87.40018213408928,-87.40028944811318,-87.40031979472629,-87.40036632200892,-87.40038174370831,-87.40059805736055,-87.40069058911642,-87.40099252935056,-87.40128542444107,-87.40153219707811,-87.40183330132392,-87.40198022559042,-87.40207988439317,-87.40218864212532,-87.40230432458308,-87.4023741243611,-87.4024967263441,-87.40252084780447,-87.40255941504708,-87.4026060783075,-87.40260588110368,-87.40272155673134,-87.40296854626747,-87.40305378086518,-87.40319339685672,-87.4033474363445,-87.40340914205002,-87.40340894854094,-87.40343939669093,-87.40343999196779,-87.40348665846368,-87.40351018924828,-87.40347123003302,-87.40339450897956,-87.40339490729203,-87.40336391033637,-87.40334843436831,-87.4033640566041,-87.40336445573371,-87.40341053292967,-87.40344968309034,-87.40348805765549,-87.40352642221109,-87.40354955479184,-87.40362737719191,-87.40388891767161,-87.40403644181552,-87.40410585751199,-87.40413670957319,-87.40415174574929,-87.40414502750208,-87.40415234273955,-87.40419881819527,-87.40427535780098,-87.4043679083707,-87.40441537734999,-87.40441493824278,-87.40439911917156,-87.40438507258858,-87.40430760430688,-87.40430740652211,-87.40432263748347,-87.40437643223044,-87.40454750062953,-87.40461711684125,-87.40464006320875,-87.40460190114317,-87.40461674037643,-87.40467963619703,-87.40477931527492,-87.40488710810978,-87.40506564714755,-87.40517299480642,-87.40575989940017,-87.40600657566952,-87.4061303846095,-87.40616124269442,-87.40628449840554,-87.40631535656706,-87.4064396607416,-87.40662423245395,-87.40693327045496,-87.4070259239971,-87.40721079902353,-87.40736552332822,-87.40761191032121,-87.40807520939664,-87.40844565975571,-87.40869268988854,-87.40872354853569,-87.4090012305123,-87.40903208846466,-87.40915481186246,-87.4092482586221,-87.40927911760208,-87.40940184110022,-87.40968007779321,-87.40983411241307,-87.40992668139285,-87.41005009731923,-87.41032810443079,-87.41039783180359,-87.41047556875608,-87.41071413433978,-87.41079208670934,-87.41077689801159,-87.41082379968341,-87.41091560514573,-87.41100938101377,-87.41105548976437,-87.41116410146275,-87.41116390721879,-87.41119515979041,-87.41121831775608,-87.41121842632846,-87.41139467943628,-87.4115723184141,-87.4118136157991,-87.41200564148721,-87.41219743194002,-87.41240429085926,-87.41249264178917,-87.4126166818549,-87.41270115277261,-87.41284003021811,-87.41293320910771,-87.41317197536915,-87.41344260732964,-87.41359692472075,-87.41362758344174,-87.41384441184478,-87.41387587389191,-87.41408380661915,-87.41417581814557,-87.41421539639509,-87.41426149304831,-87.41443938322439,-87.41456343991828,-87.41459431398728,-87.41462478066393,-87.4146245919919,-87.41465586052234,-87.41465565593292,-87.41468692788193,-87.4147644973521,-87.41479517816894,-87.41482643620054,-87.41487255791071,-87.41493409146355,-87.41493390201316,-87.41511197787385,-87.41532842802472,-87.41555238932914,-87.4157377900812,-87.41589212261282,-87.41592379215885,-87.41593944467118,-87.41597513898054,-87.4159849591442,-87.41601623142181,-87.41601603893523,-87.41610903042154,-87.41614820623238,-87.41628729524197,-87.41634843675037,-87.41645685226776,-87.4167651192618,-87.41697466336142,-87.41700495427588,-87.41714406315519,-87.41736094160959,-87.41764709372583,-87.41776997227515,-87.41787820404437,-87.41801750531982,-87.41818767455091,-87.41844987730219,-87.41869799908036,-87.41889093184389,-87.41909168564433,-87.41910503336744,-87.41913570821447,-87.41931282041793,-87.41952157991624,-87.41961358467418,-87.41966760937244,-87.41972973902693,-87.41976814534777,-87.42006138615415,-87.42040194069928,-87.42055630180155,-87.42074092840916,-87.42119574856403,-87.42138913794955,-87.42172097438842,-87.42193709114285,-87.42233805059514,-87.42255380549005,-87.42258467290225,-87.42270774229252,-87.42289332183246,-87.42292418934906,-87.42329426329222,-87.423355985006,-87.42344837311377,-87.42369508714195,-87.42378766518176,-87.42431237935037,-87.42446674185325,-87.42465074440395,-87.42480576191667,-87.42505287870883,-87.42517613909956,-87.42548487823595,-87.42585497861231,-87.4261709609433,-87.42622446307786,-87.42640988323832,-87.42653309126773,-87.4265951146641,-87.42684107166863,-87.42702647300608,-87.42705732837193,-87.42718088970308,-87.42730463682148,-87.42733580522952,-87.42739752845694,-87.42748912911414,-87.42770547216665,-87.4281984351026,-87.42832267269003,-87.42835305229221,-87.42841477563182,-87.42853833777026,-87.42870055740894,-87.42873879180867,-87.42880806480814,-87.42884643401425,-87.42884661834833,-87.42872308224946,-87.42871554958009,-87.42872244506815,-87.42876098771211,-87.42880719534861,-87.4289229424256,-87.42912334894228,-87.42930938879185,-87.42977122481493,-87.42989515983218,-87.43020299517826,-87.43048007770916,-87.43075830504675,-87.43087400396352,-87.43096682703697,-87.43108240360877,-87.43121343178396,-87.43129857390012,-87.43132947791142,-87.43133785046297,-87.43127568770502,-87.43117547749955,-87.43108281996301,-87.43083601155625,-87.43059737024095,-87.43053532618526,-87.43049678394384,-87.43050517296452,-87.43054381408871,-87.43060558897278,-87.43076009280159,-87.43087546795286,-87.43092994626134,-87.43107570398692,-87.43116032937637,-87.43124530847221,-87.43133699431091,-87.43140668914174,-87.43143005974326,-87.43142232275885,-87.43139114863936,-87.43126864254153,-87.43112155695569,-87.43099138372531,-87.43079906404094,-87.43077592698832,-87.43076788815733,-87.43077488015678,-87.43082118815153,-87.43091474239127,-87.43100666058801,-87.43125398096527,-87.43134588726706,-87.43150079341466,-87.43162392497641,-87.43187087453556,-87.43196353538038,-87.43212718740818,-87.43210948637102,-87.43191768808951,-87.43179408562661,-87.43164047535657,-87.43157854651679,-87.43147833278395,-87.43143985720218,-87.4314705273453,-87.43153200314453,-87.4317794765859,-87.43190262476161,-87.43214867147461,-87.43231114819895,-87.43239601229266,-87.4325034686151,-87.43265019081724,-87.43270119078137,-87.43275060192589,-87.43279622943591,-87.43284286934899,-87.43298126428667,-87.43307338674157,-87.43308934184421,-87.43313505795905,-87.43324324023605,-87.43333601659918,-87.43352796325522,-87.43363704043153,-87.43368971462019,-87.43374389031,-87.43382869608496,-87.4338753464521,-87.43387553231069,-87.43392198582102,-87.4339221717141,-87.4339985990341,-87.4340672004285,-87.43415200627096,-87.43424478026733,-87.43428355442791,-87.43438440954004,-87.43440663485839,-87.4344606806674,-87.43447613516273,-87.43447679483246,-87.43446156404711,-87.43446174803924,-87.4344465839736,-87.43444631048021,-87.43450023896833,-87.4345848366081,-87.43475491198603,-87.4348157143877,-87.43486361911197,-87.43490938109149,-87.43490961807424,-87.4349712128828,-87.43499396759211,-87.43506414327929,-87.43512495897205,-87.43524937484639,-87.43534122988825,-87.43544167793712,-87.43551095046676,-87.43571885138742,-87.43583476415239,-87.43598957023941,-87.43611204878873,-87.43629746233685,-87.43656779559177,-87.43665983036938,-87.43694586064485,-87.43719311724803,-87.4374090822089,-87.43753211328688,-87.43762469679942,-87.43765507930702,-87.43768643572952,-87.43774814971411,-87.43784859799943,-87.43795610549911,-87.43813277745106,-87.43845718905486,-87.4387654058973,-87.43888089243852,-87.43898152880355,-87.43901276132911,-87.43901215353641,-87.43905799589876,-87.4390718615671,-87.43907316214531,-87.43906519785209,-87.43907305509666,-87.4391192613508,-87.43920425328247,-87.43945791064226,-87.43970469898468,-87.44004444052038,-87.44013697062753,-87.44011298531952,-87.43998887894612,-87.43998181137027,-87.44002120081961,-87.44010520856405,-87.44022786842601,-87.44025902684253,-87.44042892684557,-87.44049083308778,-87.44055268399025,-87.44065250917004,-87.44070705306997,-87.44070608806764,-87.44068301344164,-87.44063699200223,-87.44055244604138,-87.44036236365838,-87.44047484043787,-87.44059049553921,-87.44064496712971,-87.44078278626012,-87.44084427869075,-87.44090611770109,-87.44101349934124,-87.4410903294518,-87.44119075547903,-87.4413063561985,-87.44155275967955,-87.44167668959372,-87.44180817957013,-87.44190008907049,-87.4426630901156,-87.44275562010301,-87.44295498762176,-87.44274046161391,-87.44247871896954,-87.44226312123195,-87.44189890668044,-87.44166914700379,-87.44156857564184,-87.44144610332094,-87.44144574085338,-87.44141512035579,-87.44139996741031,-87.44138395068946,-87.44138493323528,-87.4413541866718,-87.44132326366879,-87.44129245980731,-87.44126124147479,-87.44126183948471,-87.44121539094614,-87.44121521206287,-87.44096934775213,-87.44087663834544,-87.4406299683816,-87.44056854111463,-87.440538160222,-87.44053822369162,-87.44055386555779,-87.44055350318314,-87.44058442232502,-87.440623438725,-87.44064500617984,-87.4409472221493,-87.44107809599514,-87.44123356750562,-87.44126448883029,-87.44132609820949,-87.44137247942172,-87.44137211337052,-87.44138775683629,-87.44138879136911,-87.44137204888588,-87.44137313635203,-87.44132693453719,-87.44123385455418,-87.44118765499734,-87.44115721049782,-87.44112725756791,-87.44109645094628,-87.4410959081704,-87.44108067823014,-87.44105060738441,-87.44103538017212,-87.44101206199764,-87.44098089550369,-87.44091179865131,-87.44084916381169,-87.44063377138477,-87.44053362587522,-87.44047281041622,-87.44043311975983,-87.44043457954608,-87.4406191513168,-87.44065007277464,-87.44063417416099,-87.44060343253365,-87.44054284769776,-87.44039576252902,-87.44036556985368,-87.4403422501866,-87.44032727363948,-87.44031132296627,-87.44027358085403,-87.44019607532969,-87.44017336855943,-87.44026552163285,-87.44026601659361,-87.44024251539862,-87.44020463840896,-87.44017329286706,-87.44008915242055,-87.439849723105,-87.43967244235529,-87.43944743248399,-87.43914762296129,-87.43908547824884,-87.43900804211745,-87.4389072293619,-87.43883082460907,-87.43876957560784,-87.4387537979928,-87.43875367353886,-87.43880017907698,-87.4388698747937,-87.43904684376866,-87.43926302166463,-87.43966451425455,-87.43994169980787,-87.44006594648975,-87.44022014599373,-87.44075931511406,-87.44088408672003,-87.44076098638484,-87.4408072435334,-87.44073023653876,-87.4404832405299,-87.43991237248031,-87.43970058871565,-87.43974299626876,-87.43989792459617,-87.43996678636753,-87.44028378050264,-87.44025290130918,-87.44013009862003,-87.43987536944907,-87.43923379799455,-87.43907988865618,-87.43894113998793,-87.43892561316025,-87.43929597661239,-87.43922680504056,-87.43904142269109,-87.43889436975863,-87.43877090272908,-87.43860178015719,-87.43836263535562,-87.43830173862463,-87.4387255770864,-87.43874918587844,-87.43866437484826,-87.43817092471673,-87.4380855809578,-87.43790794256375,-87.43735316575156,-87.43716812415181,-87.43646615632299,-87.43639728836092,-87.43652869127742,-87.43615053283602,-87.43598132162782,-87.43611301693468,-87.43605925552659,-87.43585078121205,-87.43557291366319,-87.43547237845587,-87.43538039141505,-87.43525692264303,-87.43507206247398,-87.43412271105041,-87.43395319351099,-87.43374414201183,-87.43325856554456,-87.43303439480287,-87.43280288055094,-87.43193958265768,-87.43084291658079,-87.43025742579285,-87.42985618253816,-87.4294396468898,-87.42865260288063,-87.42828280262037,-87.42714173217755,-87.4265867342729,-87.42630821688033,-87.4255982596836,-87.42519767192742,-87.4241795694976,-87.42309951360394,-87.42266798563709,-87.42236003100015,-87.42128006356745,-87.42115683607513,-87.42103358888107,-87.42076935163632,-87.42054000632177,-87.42024602635799,-87.41998366311473,-87.41991339274411,-87.41981260358473,-87.41956579408065,-87.41904966562653,-87.41899630928782,-87.42050155850778,-87.4210336385288,-87.42421241621012],"lat":[44.88956073557767,44.88995546788689,44.89041084359788,44.89056966911136,44.89079916657901,44.8911991695114,44.89211542376618,44.89274620000126,44.89294353286463,44.89299143201674,44.89309128163823,44.89304674398967,44.89274912299798,44.89235287236743,44.89187974089921,44.89147305448063,44.88914752868933,44.88792359015468,44.88713238657862,44.88645136922631,44.88593515714489,44.88573720627996,44.88540204506429,44.88514926153456,44.88416413152932,44.88359670275387,44.88323503795928,44.88285528402454,44.88225606294142,44.8818926850415,44.88153488448604,44.88088554394731,44.88019287972646,44.87914269134049,44.87903830172507,44.87886308999593,44.87894668851276,44.87922943066766,44.87923469618377,44.8787125620569,44.87804694458116,44.87597954387208,44.87499169800387,44.87495372007589,44.87465102296033,44.87438686334732,44.87362161572768,44.87342347602415,44.8730933329283,44.8730273061504,44.87292254386185,44.87285647849382,44.8727516422822,44.87264138384879,44.87258098890173,44.87247624558447,44.87227253400431,44.87212947701401,44.87200277315127,44.87183217383559,44.87162876785752,44.8714526531575,44.87133711924535,44.8712323540895,44.87113890214938,44.87071485632372,44.87065432418149,44.87034082201898,44.87031318908138,44.87018658738422,44.87015897310707,44.86998838734617,44.86987818858396,44.86982875752327,44.86968005796377,44.8695092566665,44.86925075764918,44.86920104861092,44.86907444430116,44.86877175666034,44.86831508922415,44.86805124602115,44.86776507969437,44.86763330321359,44.86745727327863,44.86706143126916,44.86701725915844,44.86699536852679,44.8669514907857,44.86670949249109,44.86642916360135,44.86622559594481,44.86600569390539,44.86591782908503,44.86585175540866,44.8658079361343,44.86578829771145,44.86579210538242,44.86554414787295,44.86523622340868,44.86512597445036,44.86504917712757,44.86497729071208,44.86490571336585,44.86486170908408,44.86486145373729,44.86487232237839,44.86490519855806,44.86499310498857,44.86541052402933,44.86552047892551,44.86560853617353,44.86569641205616,44.86581730218121,44.8658556420636,44.86586645655186,44.86581131955388,44.86578927079459,44.86575062140756,44.86557469266665,44.86553058597816,44.86546466118138,44.86544272225479,44.86537110280567,44.86532162346327,44.86529392544239,44.8652495971894,44.86516721515405,44.86505147412572,44.86493571551802,44.86466035943669,44.86415932256538,44.8639664007879,44.86380102134469,44.86353689921582,44.8631072758012,44.86295322683794,44.86284331019245,44.86273342140822,44.86249122906567,44.86242519257502,44.86229322407058,44.86216100358359,44.86202904239246,44.86194110736792,44.86187500280855,44.86174296163377,44.86169901109154,44.86163308935644,44.86145708896509,44.86139131940407,44.86128136974147,44.86117127807623,44.86106128588614,44.8608306455912,44.86069864539625,44.86045696520066,44.86020415572132,44.86005026569241,44.85985250144238,44.85966602154836,44.85955615767161,44.85946826977398,44.85936946783633,44.85921557532061,44.85912736285076,44.85906164368399,44.85888555745565,44.85877529692585,44.85859924174561,44.85847274469789,44.85838999875064,44.85837887476987,44.8584006593769,44.85844465714612,44.85847221614762,44.85859870865266,44.85864258776655,44.85866448845485,44.85873060827092,44.85876355827276,44.85877986068753,44.85874121048787,44.85867526066376,44.85845527535272,44.85838934772013,44.8581472183474,44.85803717167239,44.85790498639059,44.85783916534717,44.8577950983739,44.85779547316175,44.85787258146308,44.85787265359746,44.85785620628219,44.8577851422692,44.85762580875725,44.85755451873494,44.8574773704601,44.85734571972756,44.85721359397062,44.85716955408707,44.85714761507568,44.85697158681523,44.85681737478496,44.85664667751121,44.85644283728706,44.8562172034531,44.85593593310166,44.85588080357515,44.85584746711982,44.85582548346235,44.85582559948888,44.85577018260843,44.85562145336323,44.8554834002014,44.85546702047188,44.85537326153043,44.85527378588262,44.85520736150696,44.8551301671287,44.8550856108611,44.85499687662818,44.85496922106392,44.85490318389884,44.85484244091585,44.85471027582468,44.85457842401621,44.85445187967775,44.85436367928305,44.85422042455124,44.85417600410591,44.85409309378718,44.85409304695214,44.8540819220857,44.85407068050962,44.85404864324536,44.85404859560164,44.85402626015311,44.85402616220268,44.85401513497683,44.85401469318411,44.85400340068816,44.85400308690323,44.85401401316647,44.8540137005599,44.85402428212038,44.85407885345958,44.85411165471206,44.85411176815496,44.85413339590104,44.85413350812329,44.85427579023094,44.85427562238748,44.85434142289484,44.85438516412871,44.85454927755365,44.85459283570702,44.85462021717559,44.85473459178733,44.85473453924422,44.8547456122934,44.85473959797323,44.85478855945885,44.85483757179137,44.85496865631588,44.8550343355954,44.85503445034137,44.85512184409147,44.85520946937092,44.8552859577853,44.85530796052883,44.85569088185281,44.85571295429743,44.85576781704526,44.85578960646116,44.85586626136881,44.85588831041206,44.85598672029635,44.85600877102329,44.85623882259294,44.85629375199119,44.85645815096822,44.85669898327677,44.85677591082202,44.85679768420537,44.85687439596029,44.85691268777089,44.85700060165936,44.85706648125979,44.8571379368171,44.85720394176392,44.85739654580459,44.85744633655351,44.85757259467636,44.85765859733221,44.8575283145405,44.85741286084676,44.85734686313148,44.85730819498283,44.85729684368417,44.8573242464799,44.85734132173999,44.85747653497645,44.85765266016577,44.85771907134768,44.85783993770089,44.85791168530113,44.85801092063168,44.85801648090539,44.85821493941366,44.85843525579083,44.85852317018173,44.85860029894522,44.85868823360341,44.85871017275517,44.85879830769439,44.8589027164667,44.85911727589068,44.85922719416093,44.85935929123312,44.85951308545717,44.85977669438292,44.85997421944445,44.8600402249048,44.86023726678565,44.8603468094494,44.86045622577434,44.86054387334427,44.86068551199187,44.86081097643267,44.86090389447106,44.86097120668877,44.86110890770978,44.86125309882927,44.86136972976304,44.86148158282463,44.86164881023188,44.86167276660883,44.86162503616263,44.86173444568765,44.86187622804851,44.86212177368118,44.8623412248205,44.86256691552448,44.86271985007782,44.86285540020634,44.86296394805145,44.86308839408824,44.86324122497048,44.86337794539638,44.86354229819212,44.86377149455252,44.86402867394923,44.86416630145514,44.86427706852341,44.86437109145211,44.8644473032636,44.86443995874292,44.86444841168416,44.86442507277783,44.8643642591913,44.86438153686346,44.86443791918489,44.86445011865513,44.86446142203332,44.86446215145332,44.86450243908638,44.86450283339756,44.86453687159158,44.86457022340674,44.86458151949785,44.86464806693131,44.86475354433607,44.86479776155272,44.86487534064395,44.86488652474858,44.86500824697238,44.865113334212,44.8652234106571,44.86534988988501,44.86544365018688,44.86548797316949,44.86556013688096,44.86564895412695,44.86573171422805,44.86588033330182,44.86596853262622,44.86611205311553,44.86617273629808,44.86620045802228,44.86623909366219,44.86632718535795,44.86639313027882,44.86643735894707,44.86681099410232,44.86707510653216,44.86711900216941,44.86714096744816,44.86731689182915,44.8674048055794,44.8674267447691,44.86755882368452,44.86767466442505,44.86772421133211,44.86785117337953,44.86791181980794,44.8679508384105,44.86796314877907,44.86803001440473,44.86817963223651,44.86819081812544,44.86830724324638,44.86841809760277,44.86847910987983,44.86865563289938,44.86875523860986,44.86884929311602,44.86899828574917,44.8690976835009,44.8692083696397,44.8692862512682,44.86932477877346,44.86937467191195,44.86944092684404,44.86955106446698,44.86977073887777,44.86983700749298,44.86985894670507,44.86996920899233,44.87001313536598,44.87002993943771,44.87001344771534,44.86992591475475,44.86980001330794,44.86977265601704,44.86976189764474,44.86977933250254,44.86981844622189,44.86985701888172,44.86994522793864,44.87002283619434,44.87005044630028,44.87006175024396,44.87006208290196,44.87001912739782,44.86999712721301,44.86999723278743,44.86994279701472,44.869899092803,44.86985565077063,44.86984500167883,44.8698400382764,44.86984559287114,44.86986797064872,44.86991800107447,44.86990180679965,44.86985786626008,44.86976982925985,44.86968736529086,44.86967098257714,44.86955556013449,44.86939022379752,44.86934636199599,44.86929668939023,44.86924708170855,44.86918651360504,44.86915315996707,44.86910409339879,44.86905322290578,44.86897611528943,44.86886519468462,44.86883196627942,44.86871459997494,44.86870322882632,44.86870274458865,44.8686915004863,44.86865809917028,44.86861963948957,44.86845972230639,44.86836632526775,44.86827862924466,44.86823469074492,44.86818010439369,44.86813639703949,44.86807032831952,44.86789483089501,44.86785071861175,44.86778512058045,44.86773031000846,44.86759916172466,44.86746746624765,44.86737969371752,44.86731938661241,44.86719849371754,44.8670829097525,44.8670386596413,44.86697216277353,44.86697205688105,44.86693893259644,44.8668722390362,44.8667834903115,44.86669523152632,44.86665670960342,44.86659612103952,44.86650813001103,44.86637644885896,44.86615649093449,44.86606326668376,44.86602452974867,44.86601306048544,44.86598534632918,44.86594691520707,44.86583682627098,44.86560584469172,44.8655673205695,44.86555094100364,44.86537516002637,44.86515523725534,44.86497955501866,44.86482596292053,44.86478188101946,44.86469410552845,44.86445237243351,44.86432090904519,44.8642603251438,44.86418337283325,44.86413936783906,44.86411180671337,44.86404534199462,44.86395139431746,44.86390183208384,44.86376977625378,44.86370393886779,44.86365999977754,44.86352808002542,44.86346193530817,44.86339616030054,44.86328608942812,44.86321994469886,44.86261045321277,44.86252781816187,44.86249487144181,44.86245025127099,44.86241117388472,44.86238363133387,44.86233378307828,44.86218496194739,44.86209670293608,44.86201957826885,44.86182711713881,44.86169514649094,44.86159583375466,44.86158472543689,44.8614687000205,44.86139736848943,44.86136980604332,44.86135298496309,44.86135300219947,44.86136931584073,44.86140205959995,44.8614515595043,44.86151737723059,44.86162103455985,44.86162654416581,44.86161517585958,44.86157675731569,44.86154709414227,44.86148894284872,44.86146198144403,44.86140166180968,44.86135772373792,44.86124791887263,44.86117090317366,44.8610664464619,44.86101649210221,44.86096154011436,44.86091756702114,44.8608294453225,44.86076353786456,44.86060923630509,44.86052103431351,44.86049902988263,44.86027835955156,44.8601952259091,44.86015642947567,44.86008975724717,44.86005074457458,44.86003961784076,44.8600558203781,44.86011583903628,44.86015442349549,44.86033028077658,44.86040701434706,44.86053848803742,44.86059869345796,44.86068061345767,44.86070222047015,44.86083307797303,44.86085445954227,44.86087524700318,44.86092340610862,44.86091248411668,44.86092335389743,44.86091711740507,44.86088928195354,44.86086165357371,44.86079567892921,44.86068551351364,44.86063078518897,44.86060349178798,44.86058722528619,44.86058834410983,44.86057732566041,44.86057809437416,44.86060711793658,44.86060767563541,44.86058616856919,44.86054267464474,44.86051550962066,44.86044996448227,44.86036243728738,44.86027454059097,44.86021436034179,44.86018111178809,44.86014268003802,44.86010371574065,44.86009214112318,44.86011341543476,44.86011853640797,44.86008990833944,44.86004519313543,44.86001162589578,44.85996739677896,44.85990632982848,44.86009243833181,44.86020190307584,44.86023457857039,44.86025095051107,44.86023961009947,44.86021204602329,44.86015707761273,44.86011842682773,44.8600910918403,44.8600529285055,44.86004219468485,44.86004258161878,44.86001530648055,44.85994963495756,44.85986211930565,44.85983990325693,44.8598236277038,44.85980151631414,44.85975192003593,44.85972946791288,44.85970111660696,44.8596619794157,44.85963419399884,44.85957895261548,44.85947441493158,44.85918841127732,44.85881933003429,44.85869277289001,44.85856585049227,44.85848333467546,44.85837342200491,44.85826342457081,44.85811536755568,44.8579670200527,44.85776909794669,44.85752755395935,44.8570881955528,44.85664928545601,44.85647375902948,44.85645183711384,44.85640805463424,44.85627631539995,44.85605673060979,44.85603479135671,44.85588127028293,44.85559627490678,44.85522314237545,44.85509178195454,44.85498234521422,44.85492204921299,44.85488384486158,44.85476358146809,44.8546982077948,44.85466534816985,44.85465459248218,44.85466026916546,44.85464402139434,44.85460036410795,44.85451281531567,44.85440323917211,44.85432126450121,44.85424628721183,44.85432761893868,44.85438874512604,44.85443362708181,44.85443446352528,44.85442392532731,44.8543804807011,44.85428783791559,44.85404748267191,44.85387228155227,44.8530840257005,44.852892576498,44.85285966744136,44.85284913198675,44.85280578726897,44.85259851833415,44.85248940868188,44.85244609915554,44.85242459954598,44.85241355833308,44.85241356325633,44.85239193736157,44.85235374442776,44.85213517383746,44.85206927675414,44.85202546289965,44.85194302993402,44.85181631258555,44.8517612346181,44.85169546490931,44.85165703399421,44.85160246102868,44.85156409705426,44.85146580606911,44.85126337431454,44.85113796034756,44.85105067250323,44.85098499871918,44.85083234856364,44.85065769502434,44.85055421915022,44.85036339771092,44.85028730873041,44.85022197455157,44.85017321989082,44.85016217956284,44.85016246302386,44.85009172004235,44.85008119551725,44.85008697212442,44.8501036009426,44.85017009029152,44.85020342547763,44.85020953028183,44.85017137756608,44.85008372999673,44.84994071051214,44.84987479745238,44.84981443069308,44.84978726270757,44.84972693727629,44.849677810156,44.84962362243882,44.84952529888143,44.84932423104157,44.8492702605697,44.84920626244029,44.84920196228323,44.84920805812317,44.84923086215058,44.84927008997104,44.84932579341553,44.84935903418356,44.8493702066397,44.84944774358527,44.84945892014717,44.84950296155485,44.8495585731136,44.84960286332752,44.84961405736034,44.84969727472915,44.84975238766918,44.84985726543812,44.8499453603827,44.85003344236778,44.85029716436125,44.85049511737481,44.85052262894665,44.85063297016516,44.85067192269346,44.85069456439063,44.85069544486689,44.8506747868967,44.85066491800253,44.85061111533992,44.85061132893937,44.85057882303802,44.8505789307027,44.85055692057242,44.85055702821177,44.85053530217449,44.85050275937069,44.85049220940386,44.8504813521482,44.8504815647353,44.85044898939868,44.85043847331198,44.85042758225404,44.85041726181471,44.85040610793397,44.85040649220294,44.85037420229778,44.85035876856592,44.85035940957061,44.85038276298191,44.85041131255798,44.85046703454757,44.850489292491,44.85050599721717,44.85059945934032,44.85062708136724,44.85062184038956,44.8505889831107,44.85055636222628,44.85056214501743,44.85058967852047,44.85065605196946,44.85071094906009,44.85075474395607,44.85078760648892,44.85079263113047,44.85077589918973,44.85072068442699,44.85071506495343,44.85073165378554,44.85076430953659,44.85080817250901,44.85087439592367,44.85094025787645,44.85098992264378,44.85100098930339,44.85100120269405,44.85098493516617,44.85091410706566,44.85088703745435,44.85082113083007,44.85072250310054,44.85067849181252,44.85065153034282,44.85065739456395,44.85079129465336,44.85086890392575,44.85089094658768,44.85096837240206,44.85096851453569,44.85093067656484,44.85091438894548,44.85091453131703,44.8509256125592,44.85093699711818,44.85099799591379,44.85105304129181,44.8512295230031,44.85129030276298,44.85133450897037,44.85133470583857,44.85131286410835,44.85107757226002,44.85106122143036,44.85106702576706,44.85112192673044,44.85116568847398,44.85142315188045,44.85150515202167,44.85152687691568,44.85154316540807,44.85151556680394,44.85142747669226,44.85123430834342,44.85111829715143,44.85101344267188,44.85101312940592,44.85105676002216,44.85112249927494,44.85121020071053,44.85125965725234,44.85129261407829,44.85130899852736,44.85132006462111,44.85128779509481,44.85128682165842,44.8513211108343,44.85140908326689,44.85145300544166,44.8517119084041,44.85181636310991,44.85186071623755,44.85193803696181,44.85194920807959,44.85214292500478,44.85218711866751,44.85233045035915,44.85242991802344,44.85248529638959,44.85259047687131,44.85262379572937,44.85262946575731,44.85261869470413,44.85259151411366,44.85256986268502,44.85258088507323,44.8526136956492,44.85267407521515,44.85270114548607,44.8527230506521,44.8527388755295,44.85276622675033,44.8528100002852,44.85289780603431,44.85305188508327,44.85324959979602,44.85384368245847,44.85419518741308,44.85442035069111,44.85445339036417,44.85449216690429,44.85451965684801,44.85453655074999,44.85453712690406,44.85451522473641,44.8544933311285,44.85445480773551,44.85437228901827,44.85422949863902,44.85411969567497,44.85404822817418,44.85403196630559,44.85405436776206,44.85408747460284,44.85413152114874,44.85421949043867,44.85437335047215,44.85454253758629,44.8545549242424,44.85461627025029,44.85464294271985,44.85446342406907,44.85429366804108,44.85451907569113,44.85456840483955,44.85458476917918,44.85463967955783,44.85466698987158,44.85468361593271,44.85471140020329,44.85478380949219,44.8547837774838,44.85476751476565,44.85475768789499,44.85472929299062,44.85461952946912,44.85445477703136,44.85424589119199,44.85412511002141,44.85403691827344,44.85382799727453,44.85369612674031,44.85359713372344,44.85348754717848,44.85338859561523,44.85320157376854,44.85300337681198,44.85265666099964,44.85215555146396,44.85157195378284,44.85147289986325,44.85132479099534,44.85127497475546,44.85126962307222,44.85123093884332,44.85115388362254,44.85104401521599,44.85078066483268,44.85031943061189,44.85005628718603,44.84977076184258,44.84950753578131,44.84933217550628,44.84917863251864,44.84891486786096,44.84878326739631,44.84856957111673,44.84850372563569,44.84845462366314,44.84844958484412,44.84843330508118,44.84842244983594,44.84838401401137,44.84834547222901,44.8483344092932,44.84833448455743,44.84835602196843,44.8483393698214,44.84832283596399,44.84825680699078,44.84820739420377,44.84819662565618,44.84819646580429,44.84815269153776,44.84813626425304,44.84806471156126,44.84801529212591,44.84794917778047,44.84775211241595,44.84772999887752,44.84755463446829,44.84753279422855,44.84746684118652,44.84724787727132,44.84711651849045,44.84702891624628,44.84698491387385,44.84685295873376,44.84678692035305,44.84665540175575,44.84619536356231,44.84604196804718,44.84597604854141,44.84595419144409,44.84588852203754,44.84586640258782,44.8458007507855,44.84569127957107,44.84562539545893,44.84557094902002,44.84551634114111,44.84547223910426,44.84545041312882,44.84541729631847,44.84541173021721,44.84537315172944,44.8453511527014,44.84524130316715,44.84521940358017,44.84504375308754,44.84492301825323,44.84486825684389,44.84481371435814,44.84477013209218,44.84474313502879,44.8447157167342,44.84467171417358,44.84465508786123,44.84463864807395,44.84459427038562,44.84453349728591,44.84450596911996,44.84444011051522,44.84437432523829,44.84424308019175,44.84417187956231,44.84410636581824,44.84401342244044,44.84391519211676,44.84379526434046,44.84363136756095,44.84359877170346,44.84357693341158,44.84348970305874,44.84344606982002,44.84344617034056,44.84341338184208,44.84339740004864,44.84337570756029,44.84333760330708,44.84331559430336,44.84324975349136,44.84314535214291,44.84312898846306,44.84309045386482,44.8430741102293,44.84289829398256,44.84285417863726,44.84279403182919,44.84269016595099,44.84265755031317,44.84261356625083,44.84259167097456,44.84254779175444,44.84243765273146,44.8423937734927,44.84230589504629,44.84226227003534,44.84208701664539,44.84204870312977,44.84199412566801,44.84195591804466,44.84186808413127,44.84173614703769,44.84165932203076,44.84158776629986,44.84141722319941,44.84119167914154,44.84117529853634,44.84113143632255,44.84101037619769,44.84094454030133,44.84091157924424,44.84073578545014,44.84056004811769,44.84036245488859,44.84031827443845,44.84016479448172,44.84007724050673,44.83974792503691,44.83970406285988,44.83950582778876,44.83936301779982,44.83933003915929,44.83902228214257,44.83880263137497,44.83857177297509,44.83847300955617,44.83836301510072,44.83829714122812,44.83825330097229,44.83822077797356,44.83817717213257,44.83808923731208,44.83800146177968,44.83785847912311,44.83779236323193,44.83770472058848,44.83766082431961,44.83763871435174,44.83754498814606,44.83750656011095,44.83748477374345,44.83744079108231,44.83736422972611,44.83729849148081,44.83716690405515,44.83693618757423,44.83684862410768,44.83681563762186,44.83672731873435,44.8366886780251,44.83658455657169,44.83649667438314,44.83647451119125,44.83625498091813,44.83623308059599,44.83618921838521,44.83616732352566,44.83601356363347,44.83594754956945,44.83585985460434,44.83572809493802,44.83539907599823,44.83520164361344,44.83458670181495,44.83438927349334,44.8342793956561,44.83406016819589,44.8339941066943,44.83379667865187,44.83368705173149,44.83346774370087,44.83331391577954,44.83322621388239,44.83320432011151,44.83287480402246,44.83254537963086,44.83197454579405,44.83171131457961,44.83149233375276,44.83131701599127,44.83125123375261,44.83110380942847,44.83093416710158,44.83069699774266,44.83060075719722,44.83057339758306,44.83050820892072,44.83047557360103,44.83047567671738,44.83033926529281,44.83024649113452,44.83024659223257,44.83019195993063,44.83015944245621,44.83012696732636,44.83011637879348,44.83005147951721,44.83004093724405,44.82999746151937,44.82997594443098,44.82993258362239,44.82986755037016,44.82985660643081,44.829834868985,44.82981342928314,44.82974822863061,44.82973742119796,44.82971571500386,44.82970515127506,44.82968351240096,44.82966741317439,44.82967355158419,44.82970708599501,44.8297074839269,44.82968026092951,44.82963100537807,44.82954327498714,44.82947745328121,44.82941693447661,44.82936199245134,44.82918044133154,44.82910336256131,44.82907039241237,44.82903229148756,44.82899403367892,44.82897249142322,44.82896184537729,44.82895096877893,44.82895116491991,44.82893481421246,44.82890229299112,44.82884215805568,44.82878744260612,44.82872169671553,44.82861208219071,44.82856280848635,44.82854625969546,44.82854587818888,44.82856780288056,44.82857839850497,44.82857296133039,44.8285343783413,44.82849036914906,44.82846850137414,44.82843014676148,44.82838104351707,44.82827176107533,44.82817336636704,44.82808549350574,44.82797575435418,44.82791014751491,44.82775632604839,44.82756395887417,44.82754206131653,44.82749846353705,44.82746011339431,44.82738878043705,44.82732810857712,44.82726239547667,44.82693317670396,44.82688937326861,44.82669217178903,44.82662078761356,44.82658282661734,44.82658292598742,44.82650134222326,44.82625066699691,44.8262014581113,44.82615761137397,44.82603160711497,44.82596574580526,44.82591675039414,44.82591696196294,44.82593919780134,44.82599454517907,44.82617151063974,44.82623793558894,44.82634272105598,44.82640355334831,44.82652477920832,44.82665685316096,44.82667903111776,44.82667912535568,44.8266353712723,44.82659180228136,44.82650927159266,44.82639375647764,44.82634987442734,44.82632787545631,44.82619589743618,44.82617402052182,44.82606403668644,44.8260257406239,44.82587668540669,44.8257336359926,44.82571730087208,44.82565685334265,44.82560715682138,44.8255793850352,44.8255403181485,44.82551272131032,44.82547408407751,44.82544667809331,44.82543566055842,44.82543595533598,44.8254471164856,44.82544209488229,44.82542039524716,44.82538205317707,44.8253600547203,44.82522838926647,44.82507454209918,44.82495127254637,44.8248564422076,44.82478001675315,44.82478400975225,44.82476799378396,44.82474625441171,44.82471937917519,44.82470987808556,44.82473752570824,44.82478144885234,44.82491360191049,44.82498500019802,44.82512859916078,44.82515624407048,44.82515605790444,44.82514517942026,44.82512327982081,44.82507958628316,44.82499697832256,44.82498062170139,44.82489822092665,44.82488156379762,44.82484304027216,44.82482666309865,44.82478278224163,44.82476050404513,44.82462886574187,44.82453551106729,44.82450833009363,44.82446447967174,44.82438239234234,44.82429530980345,44.82428998422494,44.82431249283986,44.82435707071981,44.82437892065438,44.82440696816114,44.82440724360841,44.8243200985622,44.82431496897138,44.82430436918695,44.82423879522423,44.82416210405429,44.824118248958,44.8240415509193,44.82399203237507,44.82395940931949,44.82395960218883,44.82400950729175,44.8241640360597,44.8241861709398,44.82426393390529,44.82427490497156,44.82431938110709,44.82439148579987,44.82447400731535,44.82451804305431,44.8247162799832,44.82502443262249,44.82520039343904,44.82533244506257,44.8254201888483,44.82544236895595,44.82555763030507,44.82569469868661,44.82580987752584,44.82593573378718,44.82618766152609,44.82634120294437,44.8263792861953,44.8264667314665,44.82650524780589,44.82665860460793,44.826790219514,44.82698780779764,44.82703198434409,44.82733913101139,44.82740510199369,44.82750971142752,44.82752619919627,44.82754263079573,44.82755911368753,44.82757532832515,44.82756392291743,44.82754190432743,44.82754733192408,44.82756355218931,44.82760204702132,44.82772813179053,44.82778269466595,44.82784843512935,44.82794709070679,44.82797445845316,44.82797988269943,44.82800146038873,44.82803998989577,44.82819865000742,44.828390886047,44.82845653647964,44.82874237166256,44.82898410247043,44.82907728814273,44.82918149347265,44.82935692020933,44.82951277956791,44.82986250409116,44.83014875282781,44.83022030843515,44.83026432327413,44.83029742149763,44.83031955578294,44.83034199830565,44.83038072619311,44.83043595587804,44.83049110308697,44.83060119055452,44.83077743359254,44.83093147275067,44.83103057255592,44.83111830506056,44.8312003376429,44.83131506456535,44.83139157221772,44.83159962417935,44.83170942152606,44.83179700562685,44.83192327549045,44.83204933993772,44.83218102649493,44.83221908982028,44.83223549328486,44.8322135138799,44.83220786353197,44.83224062822481,44.83227923868677,44.83234509770605,44.83243281981816,44.83260863154413,44.83267449656161,44.8327844556466,44.83311404503459,44.8331472881452,44.83318610421983,44.83314754754816,44.83306529902632,44.83303808632547,44.83304899262579,44.83309304132496,44.83322468076602,44.83330732014575,44.83333457718636,44.83332883048828,44.83333439505223,44.83340007918469,44.83357597526543,44.83364179467222,44.83377386757768,44.83386166807449,44.8339716639977,44.83421314590976,44.83426264646787,44.8342789095385,44.83435592598204,44.83444917386903,44.8345315086646,44.83460791781188,44.83464044297074,44.83463445267751,44.83465047591586,44.8346887200888,44.83480913655136,44.83484736414839,44.83488019007189,44.83490755599406,44.83496199205382,44.83502242948285,44.83518695628116,44.83528015887649,44.83547197178748,44.83557074044598,44.83585602937314,44.83588330598623,44.83589986978345,44.83597130896371,44.83601545230009,44.83602102956976,44.83601016818933,44.83592241827801,44.83580192360166,44.83576369094607,44.83572546134089,44.83569827604872,44.83569829037363,44.83571508278209,44.83571527826363,44.83569329416517,44.83556189457143,44.83551824627933,44.83547433877781,44.83541922883771,44.83537550147985,44.83528790882236,44.83528782582646,44.83530450373834,44.83533798374445,44.8352994286268,44.83521176786055,44.83510212012057,44.83501962699843,44.83497039633316,44.83493244188286,44.83491069578535,44.83488862831638,44.8348505056359,44.83452127370136,44.83438978695458,44.83419199541562,44.83414815280766,44.83395039521639,44.83386269715041,44.83337942036367,44.83322570940287,44.8330719980427,44.83276445646317,44.83267655351982,44.83247918051988,44.83239112013727,44.83218222533301,44.83198465661421,44.83194057398256,44.83191863419228,44.83176509502426,44.83163933682539,44.83150283674305,44.83132215921463,44.83130577183146,44.83136654131963,44.83138298215282,44.8313668384196,44.83132853272982,44.8312848635895,44.83124112265116,44.831087589465,44.83084591021022,44.83073640145137,44.83062659806579,44.83051717394507,44.83035839424515,44.83029841158221,44.83028772505796,44.83029382075805,44.83026107740497,44.83019013485326,44.82999280380007,44.82970758618045,44.82961996334468,44.8295488908911,44.82948344093892,44.82943440381177,44.82938494641322,44.82927012967713,44.82918265802846,44.82891946876634,44.82885340437992,44.82880960467307,44.8287216620818,44.82861203913551,44.8284861791379,44.82843679824463,44.82839328382295,44.82838785876116,44.82839906750561,44.82852580561101,44.82855327574084,44.82857008659151,44.8285539632214,44.82852651646763,44.82848252880366,44.82845528834103,44.82846852543696,44.82848256835631,44.82855739511984,44.8285957092031,44.82864521411771,44.8286563861271,44.82865657156836,44.82895371417969,44.82927593019114,44.82940992777099,44.82950876004274,44.82953092255135,44.82956401739375,44.82957516504982,44.82957536303252,44.82956458752523,44.82952097851558,44.82950458718214,44.82947753711971,44.82949964546732,44.82952137797959,44.82962554559502,44.82970743369194,44.82974021874462,44.82978426677374,44.82982799491693,44.82989975608969,44.82993818640674,44.83004822782369,44.83011406430426,44.83013765168646,44.83029873761425,44.830323190996,44.83028186760983,44.83023520515829,44.83005576837127,44.82999393119028,44.82997021757855,44.82996736326471,44.82996494669637,44.82996927458375,44.82999408745439,44.82999445354316,44.83001517088648,44.83006045722031,44.83008460168809,44.83009364474194,44.8300752829123,44.83003957525982,44.83006352754207,44.83024742576238,44.83037893638694,44.83040624983889,44.83047223555828,44.83059830544523,44.83069160766884,44.83073003719191,44.83080138254221,44.83106450461158,44.83119064462929,44.83127840047086,44.83134420268461,44.83141030140905,44.83149829388421,44.83158629931071,44.83182801053695,44.83193793186037,44.83198181442224,44.83204755187615,44.83211345312728,44.83224562304391,44.83232281557873,44.83234454613318,44.83235533612903,44.83231086548809,44.83231095759509,44.83233261393933,44.83234900453636,44.83245319011259,44.83262861151803,44.83273858787644,44.83296421290596,44.83300805665899,44.83303531261221,44.8330462707287,44.83298003484833,44.83296898016339,44.8329796547696,44.83301256720452,44.83314376292908,44.83320378685832,44.83323670318932,44.83331893307383,44.83347260173771,44.83352183392176,44.83358220162297,44.83375782871212,44.83392266657327,44.8339554509625,44.83397723682995,44.8340320542652,44.83408155506695,44.83411439753908,44.8341862772204,44.83420823885901,44.83425202470343,44.83429052658776,44.83433442336963,44.83438901206639,44.83443849023473,44.8344711248855,44.83448189506701,44.83447077507136,44.83448164360463,44.83452559537375,44.83454770385418,44.83455858967998,44.83456429321173,44.83457536449306,44.8346139126708,44.83465791812419,44.83470183371157,44.83483373754665,44.83489961227013,44.83500908222747,44.83505309215715,44.8352065082948,44.83549200487389,44.83578849881177,44.8359035152567,44.83596953365891,44.83599690295828,44.83599124380206,44.83585362518303,44.83582607883246,44.83582047652633,44.83586440325897,44.83590803430926,44.8360947913007,44.8361056547261,44.83610548032724,44.83605554125852,44.83605553227918,44.83608812668065,44.83609900383828,44.83611526937686,44.8362582785844,44.83626369322317,44.83626348138467,44.8362303920478,44.83615334563897,44.83611478314695,44.83603238686453,44.83595833463227,44.836059309335,44.83619124482698,44.83632288082202,44.83638902345172,44.83647706555937,44.83650455481016,44.83654868553585,44.83653215999697,44.83635971901565,44.83636222949169,44.83640049411133,44.83644505500414,44.83648372007305,44.83653356724836,44.83659974873535,44.83666549459831,44.83684125641279,44.83699492146821,44.8370608719954,44.83712104230133,44.83720311892066,44.8372577773641,44.83727923685297,44.83727921456978,44.83723493077348,44.83723452578141,44.83724567310509,44.83725631263222,44.83735533091385,44.83737170872256,44.8373772301449,44.83733283346866,44.83732712857478,44.83730516544414,44.8372664936722,44.83724990630537,44.83725543490481,44.83728808823307,44.83744189051355,44.83751329201561,44.83757368943662,44.83764505841611,44.83766720362109,44.83767826360824,44.83768392847286,44.83764023217522,44.83764070292801,44.83761886760063,44.83761915423688,44.83767467866091,44.8376750595863,44.83766439037247,44.83770320375766,44.83771980802315,44.83773600996289,44.83775232200836,44.83775174022161,44.83774068045176,44.83774048866964,44.83770730274,44.83769612888651,44.83769556708968,44.83770656380452,44.83772274395827,44.83777767364755,44.8378379869019,44.83790391871895,44.83803612869077,44.83810198718866,44.83819010726756,44.83823964388335,44.83827803296696,44.83833291040584,44.83837125399614,44.83840369842174,44.83844214403472,44.83853033338096,44.83857421305253,44.83859619486792,44.83866214112766,44.83888186016565,44.83923324442761,44.8393649165293,44.83947984402473,44.83958401163376,44.83967746754908,44.83973808656168,44.83977655426464,44.83980972570628,44.8398879975414,44.83997132650249,44.83994680385018,44.83995223143098,44.83985844905707,44.83979247830695,44.83974864066189,44.83968252195593,44.83962762311039,44.83952876713364,44.8394845804356,44.83946811010375,44.83946228669456,44.83950575519143,44.83955479686993,44.8395933328009,44.83963692914754,44.83970294782935,44.83985663881909,44.84001061130067,44.84012044707612,44.8401643291268,44.84045043469666,44.84073653113409,44.84086830412696,44.84122011105731,44.84137399205571,44.84161556513441,44.84181310028578,44.84198899565489,44.84225268311937,44.84242838281739,44.84245028538372,44.84271376326458,44.84280185966371,44.84284583498486,44.842933691746,44.8430436899987,44.84339482599668,44.84354850597398,44.84370206136801,44.84392173664302,44.84398751282448,44.84404231411656,44.84405345958572,44.84407572892214,44.84413598326861,44.84415789926257,44.84419574717092,44.84422301985114,44.84426678919957,44.84434320199493,44.84437039409441,44.84437494921503,44.84436939168076,44.84430743128497,44.84430150664108,44.84431802369868,44.84433975508048,44.84440028915518,44.84468565235167,44.84486708845925,44.84490003028127,44.84493297444568,44.84494977951099,44.8449513230114,44.84496260595913,44.84496299753104,44.84497415106848,44.84498016780461,44.84496980927065,44.84498621071076,44.84501927904846,44.84515079656773,44.84520551932959,44.84521532520812,44.84524745864257,44.845247042049,44.84523595911129,44.84523508593995,44.84525160291093,44.84526246982874,44.8453006308123,44.84533365985308,44.84539421575544,44.84543268571397,44.84544427160291,44.84542806340738,44.84543395654767,44.84548904861864,44.84553298684716,44.84564296509485,44.84570884367886,44.84577477220844,44.84599462140104,44.8461098462785,44.84620310288336,44.8463345656771,44.84656450729292,44.84662975690269,44.84664042544877,44.84666245166676,44.8467162541387,44.84672710750961,44.84674875992653,44.84675934516395,44.84676438261562,44.84674763508059,44.84670883206055,44.84667552373941,44.84660401525541,44.84650476219355,44.84641156352973,44.84629042544248,44.84614721923572,44.84610871039113,44.8459216705242,44.84587773440208,44.84583355614023,44.84574608259399,44.84565823807442,44.84561983920182,44.84558169119754,44.8455548269842,44.845516372478,44.84547269930898,44.84536271812473,44.84531306186506,44.84529114159585,44.84528511493521,44.84529500562017,44.84532191249232,44.8453489961753,44.84537101111895,44.84543689894567,44.84563467757825,44.84565667590397,44.84576641319424,44.84598636133197,44.84605244728794,44.84607444129522,44.84620613823758,44.84647027350041,44.84671227750843,44.84686601424568,44.84692658689308,44.84696493512031,44.84702502960505,44.84705239446689,44.84706862197406,44.84706811546233,44.84704016567891,44.84702851382858,44.8470060637899,44.84698409160523,44.84693432271199,44.84692336434455,44.84690697295146,44.84686370956378,44.84686390764884,44.84685304345013,44.84685294157726,44.84684207492362,44.84683686344836,44.84681521569875,44.84677691308021,44.84675490307449,44.84666702909775,44.84664505201201,44.84660117250878,44.84654621455778,44.84652429173729,44.84640853367871,44.84637549558125,44.84634234092744,44.84630888861551,44.84629726972805,44.84635685064398,44.84643799454296,44.84645962239689,44.84647048872489,44.84647029177189,44.84650291564932,44.84656258831056,44.84660607452637,44.84675370557358,44.84684136944176,44.84692894100915,44.8471537396676,44.84742788916162,44.84760342048509,44.84766364417977,44.84770158792771,44.8477126494447,44.84776196999184,44.84778360124177,44.84777820485692,44.84778361605806,44.84775610613433,44.84762409167406,44.84756915154315,44.84752525517887,44.84750325577505,44.84746473253676,44.84744809167414,44.8472558784522,44.84715700220907,44.8470963813871,44.84703567403318,44.84701878063853,44.84702397381149,44.84702833519469,44.8470613761804,44.84712722424459,44.8472369251789,44.84736904066845,44.84743501980805,44.84756688249055,44.84789677020208,44.84798494641642,44.84811672512323,44.84822678212867,44.84824875973721,44.84842465677141,44.84851243494097,44.8485342985498,44.84858381524109,44.84860037358105,44.84878141377804,44.84879797089533,44.84882525339336,44.84884179534929,44.84898453367344,44.84909965458952,44.84935189749267,44.84964237410871,44.84968064619799,44.84974626540696,44.84980656047441,44.84982883940815,44.84994415879,44.85002630900992,44.85009222601884,44.85020733066984,44.85031149366644,44.85068530871317,44.8510259235233,44.85106970006314,44.85110802301978,44.85114659072254,44.8511685134373,44.85127865212986,44.85138862271613,44.85148781291982,44.8517028129441,44.85178544780912,44.85185188269956,44.85185197803597,44.85188527800266,44.85193568808364,44.85198579774683,44.85199754779333,44.8520481722306,44.85210491572435,44.85211597548117,44.85211627359377,44.85213870739993,44.85213900288424,44.85216133032768,44.85216201951757,44.85214630824029,44.85215314862797,44.85219296092504,44.85225444358587,44.85228851922417,44.85229444372257,44.85232824463966,44.85236261720438,44.85236289359253,44.85235224110819,44.85235243493304,44.85230351510351,44.85223237825344,44.8522001276793,44.85219585716987,44.85222300527134,44.8521924448202,44.85214936573063,44.85212801621149,44.85211715129116,44.85208500622685,44.85207441830406,44.8520419089491,44.85203114980185,44.85197686150921,44.85193976799831,44.8519406462563,44.85198064110106,44.85199179300153,44.85201471887907,44.8520314998349,44.85203808390317,44.85207242578407,44.85210591993117,44.85211745219999,44.85213968739772,44.85215074109636,44.85215093219769,44.85225080062764,44.85227312100029,44.8522787449015,44.8522737128682,44.85226279568924,44.85216533547742,44.85215437866066,44.85216037966441,44.85219967132613,44.85225593228397,44.8522785382261,44.85228959665649,44.85232355888547,44.852345971705,44.8523461579416,44.85235721380212,44.85238012080773,44.85240261072725,44.85243607625387,44.85245820367091,44.85245830140325,44.85252477819547,44.85252459468858,44.85255779180888,44.85255787323229,44.85259108896663,44.85259117988698,44.85263542395494,44.85263551604897,44.85271306381126,44.85273538137071,44.85280729531932,44.85283541799693,44.8529126852317,44.85294633661688,44.85300202453045,44.85302452758354,44.85302452791191,44.85304721186162,44.85306951251265,44.85306969973823,44.85308078813128,44.85309193667109,44.85312520681592,44.85314770886312,44.85321455345672,44.85322570153598,44.85323677531289,44.85324859000674,44.85325964692813,44.85326002041359,44.85328296367815,44.85328359113799,44.8532731177862,44.85327318987068,44.85327393373422,44.85326306170858,44.85326333757462,44.85325245108389,44.85325261833229,44.85324195497336,44.85324231042099,44.85323115944911,44.85323152904198,44.85322064553425,44.85322127218298,44.85321060237597,44.8531997186963,44.85319990259377,44.85318903569782,44.85318922075937,44.85317805044315,44.8531460766742,44.85313490626516,44.85313537226693,44.85309193528295,44.85302730449649,44.85301643296929,44.85300582629844,44.85296240086177,44.85294071280813,44.85292984536772,44.8529300095234,44.85291913962804,44.85291932538688,44.8529084530363,44.85288686262859,44.85284345212455,44.85277834504271,44.85269094714271,44.85262526776582,44.85257062218112,44.8524233831454,44.85231975680224,44.85225418508774,44.85224340927756,44.85220514061196,44.85206325606651,44.85198693954349,44.8518885589028,44.85183959264314,44.85166462511442,44.85159877980234,44.85140161481571,44.85120419843214,44.85118234717883,44.85101785178811,44.85095760996483,44.8509082645804,44.85085389084507,44.85077741182848,44.85075025252246,44.85057564231484,44.8504825196544,44.85037853831424,44.85017656689045,44.8500779201731,44.85001784157296,44.85000149674714,44.84993576410933,44.84971654215927,44.84967273154203,44.84945343774861,44.84932217090883,44.84906492281197,44.84896091027107,44.84882951243294,44.84863813962116,44.84835911166098,44.84829340749086,44.84822754629734,44.84817793805525,44.84811715781903,44.84802918124545,44.84789748684338,44.84775481778487,44.84772185438191,44.84772193989395,44.84774408743404,44.8478097648549,44.84787584359418,44.84798012653439,44.84801323274404,44.84807928105071,44.84811239185244,44.84810704519969,44.8480415126601,44.84790977915166,44.84773449430596,44.84751543588643,44.84732945726267,44.84729117832506,44.84727481306619,44.84721445498031,44.84699005871725,44.84690269377246,44.84685867314889,44.84677090587449,44.84663940543376,44.84639780822863,44.8463100605472,44.84615654985465,44.84600858153377,44.84571300507425,44.84569664642388,44.84557070816246,44.84555436608917,44.84534621326378,44.84525848920993,44.84488591229646,44.84462268418927,44.84451298533964,44.84438161214081,44.84435947939693,44.84418411675923,44.84405258370847,44.843833358625,44.84353241480107,44.84350475971075,44.84337881908889,44.84328051799128,44.84314356389159,44.84283699198131,44.84270024216748,44.84258534122936,44.84249797949604,44.84248735252249,44.84246567546311,44.84244414970954,44.84241159941453,44.84230219008748,44.84222608965019,44.84222617286197,44.84219325193542,44.8421933368813,44.84216068343471,44.84216076959753,44.84212793339606,44.84212811041537,44.84210642778644,44.84210646970689,44.84208479741942,44.84204124251174,44.84203062805307,44.8420197386193,44.84201991096717,44.84200903872269,44.84200920921613,44.84199831967793,44.84199849315782,44.84192216787122,44.84187301593231,44.84183496790556,44.84175291744624,44.84161665393285,44.84139811629937,44.8413982193717,44.84136556098795,44.84136564807692,44.84133278992843,44.84130040339622,44.84126797779837,44.84122448933507,44.84112634223433,44.84102886854241,44.84086520076816,44.84086500545487,44.84079993649457,44.84074524133901,44.8406794591727,44.84056211686584,44.84049436104885,44.84042904028716,44.84042912390221,44.84038018385122,44.84033688935725,44.84032582968502,44.84032591072811,44.84029860455874,44.84027734616905,44.84027216657584,44.84024497285488,44.84005894882755,44.83998256013469,44.83994993575073,44.83986829073616,44.83974863364658,44.83972115983207,44.83971044767079,44.8395905553857,44.83953056360541,44.8394158803272,44.83924078674313,44.83916981017141,44.83909877145189,44.83907672073589,44.83907680367532,44.83898941176663,44.83894044842021,44.83887501179996,44.83878221408664,44.83868903861254,44.83853604183837,44.83851423964636,44.83850911451398,44.83851548842659,44.83853781352443,44.8385161210601,44.83847783221813,44.83840121659023,44.83826982533841,44.83802861730724,44.83793000688217,44.83784254864015,44.83764517008146,44.8376010395144,44.83753534893704,44.83751339207679,44.83735983086802,44.83731569850344,44.83714042388944,44.83694314435045,44.83684984447982,44.83675132267231,44.83671337360942,44.83668627328427,44.8366645320727,44.83661535900477,44.83657139619106,44.83646191152965,44.83640703293389,44.83634140837471,44.83607817468656,44.83584229755425,44.83562346849403,44.8355303632722,44.83526722410513,44.83504830861703,44.83492767243796,44.83481834482303,44.8347525591325,44.83470847883465,44.8345547776993,44.83451114478108,44.83429173284681,44.83419339697547,44.83409459071532,44.83391939073934,44.83369988367876,44.83337235731135,44.83323914264994,44.83301954970713,44.83284407497084,44.83277805192012,44.83262462745788,44.83258625440541,44.83250420096705,44.83240568690614,44.83218662943955,44.83198923490323,44.83177005763274,44.83166055922564,44.83156739960712,44.8313321962483,44.83113473286151,44.8309813886145,44.83067417083049,44.83054273818481,44.83036723962463,44.83032340719028,44.8302355213018,44.83021356504293,44.83003796625938,44.82977487894686,44.82962153303133,44.8295229132511,44.82930358854014,44.82917234265927,44.82908437662582,44.82901866516656,44.828930881997,44.82871149375698,44.82851409799606,44.82831672114124,44.82820712324373,44.82811932232251,44.82782367242021,44.82777974168485,44.82771384991577,44.82755998757107,44.82749419783494,44.82731850036236,44.82720892691074,44.82672603763712,44.82635305538309,44.826331182001,44.82613378644717,44.82598019845437,44.82573904145544,44.82567321202149,44.82558553049996,44.82551954082548,44.82547577087759,44.82543728904908,44.8253719228859,44.82534449140951,44.82530067423421,44.8252621462997,44.82520722743749,44.82513560977004,44.82509168115464,44.82500391999802,44.82489386811061,44.82458671632597,44.82456449887601,44.82443304284909,44.82441110233278,44.82423548778898,44.82408158370479,44.82390607774002,44.82368684495511,44.82362655358339,44.82351719913982,44.82347880340917,44.82344044099744,44.82337972369857,44.82333579824174,44.8232481726322,44.82309245749838,44.82305945285972,44.82294954802851,44.82277416788013,44.82273007138311,44.82255445715086,44.82246668026724,44.82240098013411,44.82200600367774,44.82176466569567,44.82141358232546,44.82117202951456,44.82094175260102,44.82085396151132,44.82078814603694,44.82065643085306,44.82052497728476,44.82028350378672,44.82015204441487,44.82001502811624,44.81985603835352,44.81955994701156,44.81940632823741,44.81927449466736,44.81914311091618,44.81901137143568,44.81888540645732,44.81870888985448,44.8185838066583,44.81841388114281,44.81834272866361,44.81810103755086,44.8177940172456,44.81750870372169,44.81735497207248,44.8170806652096,44.8169490605089,44.81677327977545,44.81668564128142,44.8166634787416,44.81657585064714,44.8164660257608,44.81640574639462,44.81625750874434,44.81618083141884,44.81593936814271,44.81578581085034,44.81565405467364,44.81539083712114,44.81528098035552,44.81512737496483,44.8149516632663,44.81492980199981,44.81479782358523,44.81457848636318,44.81440296069205,44.81420539071532,44.81413960696385,44.8139199677609,44.81363459345155,44.81341507532952,44.81339323053221,44.81323943782659,44.81297581848387,44.81269020783687,44.81247068557556,44.81141651872201,44.81102110964893,44.81095509897293,44.81086746737112,44.81049403760271,44.81029629402691,44.81012055106216,44.80985710741332,44.80968152569469,44.80897861609365,44.80869287452924,44.80858318363236,44.80823172574211,44.80812193373013,44.80794624667569,44.80777432911739,44.80761681868277,44.80737507097693,44.80717757330517,44.80693592026089,44.80673818942704,44.80647457433063,44.80623300957776,44.8061670833567,44.80599149679313,44.80577204741984,44.80557430068428,44.80539841802184,44.80513486951961,44.80511292886693,44.80506911780039,44.80504719343489,44.80480550685887,44.80467385136537,44.80447614375299,44.80432235461692,44.80423436642493,44.80416863326638,44.80397104795106,44.80381720192788,44.80370749295303,44.80366914782612,44.8036747408251,44.80365828397983,44.80364173028355,44.80360332294679,44.80357042009329,44.80354294926813,44.8034989304393,44.8034604909871,44.80340026216125,44.8033840794617,44.80335660359106,44.80330712759543,44.80329049788241,44.80327400649687,44.80325208113165,44.8032135662927,44.80314763939,44.80297196863256,44.8028840858311,44.80240102825229,44.80198426671121,44.80181408817137,44.80168790031153,44.80146429025287,44.80130386956381,44.80115047107815,44.80106266561838,44.80095270545878,44.80088692633866,44.80084323724271,44.80069469114728,44.80056824678172,44.80043085990305,44.80041451293204,44.80037598677882,44.80035934226727,44.80027155411584,44.79998573137174,44.79994189028106,44.79987606807382,44.79963431883464,44.79930499451764,44.79908539974014,44.79884376732971,44.79877804407404,44.79860223224205,44.79842660489579,44.79818540708921,44.79803177289896,44.79783389851944,44.79770226211724,44.79747745260618,44.79729655225686,44.79712088764465,44.79704422729731,44.79690707071886,44.79658379681631,44.79632046634732,44.79622177381185,44.79609002504969,44.79587040744536,44.79571676254287,44.79555241449832,44.79549754212876,44.79542069393695,44.79541557037981,44.79544851895191,44.79543770264172,44.79540471885227,44.79538813635317,44.79536631245838,44.79524525152475,44.79519589469562,44.79517388248479,44.79514103106414,44.79514117271722,44.79517958753006,44.79522908473265,44.79525666972258,44.79525662261688,44.79524585016858,44.79520733801984,44.79517427377584,44.79510271272279,44.79505349092047,44.79502595545008,44.7949546388173,44.79492726910019,44.79484512998353,44.79476278714412,44.79474639253626,44.79437926499306,44.79436812233451,44.79435172628635,44.79429148107608,44.79411607939855,44.79400078583029,44.79385284601342,44.79372113484085,44.7935895477212,44.793501666289,44.79341376629723,44.7931064091342,44.79284296213433,44.79268912738323,44.79253542552709,44.79150328319965,44.79134963195075,44.79093241008021,44.79077874869567,44.79066902934913,44.79055939242371,44.79050447741248,44.79024661932784,44.79023026927322,44.79019182368395,44.79004369199834,44.7899559452199,44.78959392523281,44.78946248636398,44.78935283491857,44.7892758892215,44.78925401535093,44.78914449419306,44.78907322339875,44.78901305904482,44.78894698665538,44.78883736599529,44.78868354836499,44.78857372639224,44.78855730127312,44.78851310388595,44.78845292287602,44.78834312005401,44.7882773414736,44.78821151126812,44.78816757654767,44.78814561951301,44.78804659608239,44.78789292570437,44.78776102141053,44.78771679356718,44.78769486882471,44.78718911666061,44.78716717577271,44.78709015784094,44.78694745153221,44.78672759327883,44.78655194313659,44.78635431072998,44.78620044624798,44.78602477573763,44.78596974124404,44.78593146143386,44.78589855055498,44.78586022113042,44.78567320449067,44.78560736619045,44.78551940640728,44.78529987991437,44.7851901442997,44.78505810648986,44.78490449718927,44.78472869035508,44.78468485014281,44.78461872752132,44.78444305659429,44.78371809186529,44.7835205726165,44.78323491955812,44.78279536643238,44.7825317148702,44.78250981298149,44.78220222373792,44.78193844281296,44.78169676869956,44.78132316944163,44.7813012717936,44.78109490972186,44.78070831457108,44.78048865021804,44.78002717178782,44.77974179527039,44.77945630771048,44.77921481220599,44.77886342589412,44.77868789093328,44.77866601855377,44.7784900876731,44.77835831154955,44.77831449810641,44.77829262269476,44.77818284214426,44.77783145233578,44.77766143939491,44.7775900094334,44.77742560671704,44.77727206262239,44.77720602749232,44.77711822331947,44.77667916189631,44.77665700457836,44.77641549702397,44.77639361901691,44.77602039152796,44.7759106452742,44.77585543761843,44.77565812605081,44.7754329698234,44.77541661106658,44.77526835058724,44.77485700171271,44.77474744841691,44.77467595883286,44.77458813716273,44.77455535318469,44.77452798981425,44.77449525246332,44.77445115069974,44.77425907222053,44.77402880211845,44.7738039934784,44.77371049393626,44.7733870494163,44.77326064440357,44.77315659099045,44.77302488661908,44.77291514549848,44.77286593775843,44.77282769656797,44.77276162940519,44.77262989549838,44.77254219736009,44.77243223828529,44.77199288354586,44.77168526734783,44.77155352181853,44.7714215735306,44.77131198441828,44.77116905085635,44.77085102409396,44.77054928037256,44.77046696711481,44.77039561666677,44.77031338262097,44.77027510411336,44.77015965277042,44.77003344998219,44.76975366123053,44.76942434645892,44.76940243046715,44.76927058335751,44.76907303557073,44.76891940033735,44.76880951297418,44.76872730335619,44.76850218724037,44.76843623125794,44.7683266552096,44.76828263309834,44.7680410742973,44.76793123461874,44.76764566218783,44.7675028803753,44.76698170382974,44.76668531987295,44.76655909957889,44.76650974698578,44.76620780143273,44.76598825802645,44.76583476863354,44.76561496229737,44.76557120578313,44.76541760884573,44.76517606233101,44.76482448723134,44.76467081356417,44.76462675813438,44.7645610617209,44.76447322591217,44.76403416543902,44.76390239057682,44.76379256844769,44.763770627277,44.76361692547732,44.76344099479404,44.76330935452249,44.76318872086324,44.76307886131021,44.76298016328954,44.76287031151908,44.76280432967621,44.76236516084596,44.76210161945057,44.76195348571444,44.76182741279715,44.76158564648664,44.76125638462887,44.76097070357536,44.7608827597001,44.7605972351876,44.76057529392559,44.76053148984544,44.76009207440473,44.75996026737524,44.75978438566674,44.75974052266579,44.75965260342925,44.75960874043247,44.75949891423587,44.75932315355266,44.75912540930072,44.75908160835299,44.7589057594734,44.75886196150343,44.75877403886863,44.75875209757328,44.75835675020301,44.75813693912782,44.75807094860242,44.75793939056787,44.75765369886967,44.75760991893728,44.75750007626113,44.75734623047895,44.75728020897905,44.75725832641901,44.75675322739522,44.75646763553951,44.75618198486665,44.75596245340076,44.75580861279505,44.75554481619912,44.75545714646032,44.75523745888685,44.75486406339621,44.75477614095746,44.7547542419679,44.75457841034201,44.75446880277728,44.75431491635661,44.75407352566654,44.75392509822703,44.7538209120494,44.75357931607903,44.75351915162047,44.75336005784073,44.75322829130981,44.75305244063242,44.75285478694943,44.75274483808903,44.75254710642366,44.75237151642118,44.75212988100067,44.75193208951786,44.75169054526236,44.75142691086991,44.75100961800531,44.75087796543402,44.75070222709764,44.75052651498477,44.75048243516028,44.75028465900677,44.75024085488877,44.75009802119877,44.75000316445725,44.749866720542,44.74975685208378,44.74966886544805,44.74958106071207,44.74927343968697,44.74903213163805,44.74898799028545,44.74892224923727,44.74859248410807,44.7484609597053,44.74828499743514,44.74808735855228,44.74791167659247,44.74778011288698,44.74749994816597,44.74733007805981,44.74727499308885,44.74726426264279,44.74729173634064,44.74736555633353,44.7473862865544,44.74734682571324,44.74725913097073,44.74722052381149,44.74719858549169,44.74716022652348,44.74716016737896,44.74718768052765,44.74717665739471,44.74696208267441,44.74692907123986,44.74691260771974,44.74689052776454,44.74684673820699,44.74663261292442,44.74660528618294,44.74660522262708,44.74667665710898,44.74675917813706,44.74682501808226,44.74686903898172,44.74691314569278,44.74700122367695,44.74705162093328,44.74707560062185,44.74704476534287,44.74702300099195,44.74687707612694,44.74682302251802,44.74677945553395,44.7465420706734,44.74648771316515,44.74645903343207,44.74641291959339,44.74636359000047,44.74618794505993,44.74596855914525,44.74579272227948,44.74568288746464,44.74552926976067,44.74533133328333,44.74515580208223,44.7449142347192,44.74458459051883,44.74418936556415,44.7439254632264,44.74370598768153,44.74361803672957,44.74342036949456,44.74317883715187,44.74304719049496,44.74300308699808,44.74293723948912,44.74287129011635,44.742832911907,44.7427122900817,44.74267376169876,44.74264081159562,44.74257496735457,44.74233343680907,44.74222348830279,44.74215770054579,44.74211354189617,44.74193782302164,44.74180613315291,44.74174010283888,44.74169624154459,44.74132292712485,44.74130074330053,44.74119119341651,44.74108119179235,44.74094935941198,44.74075158867964,44.74048812796229,44.7403782744776,44.7403563147145,44.74018045055188,44.74011459553111,44.739895057663,44.73935702499147,44.73926918207107,44.73918141104605,44.73902748352688,44.73876394993071,44.73872008578599,44.73858832228651,44.73856638077,44.73852225909265,44.7383026961093,44.73812673230287,44.73803896934496,44.7378631581393,44.73781929638418,44.73764348085112,44.73748965472785,44.73726981897058,44.73720389298053,44.73716001000134,44.73694044676262,44.7368305514085,44.73680860866748,44.73672067792774,44.73663270644581,44.73661076491788,44.73643498347454,44.73619354197323,44.73588600593861,44.73571024712175,44.73566628479237,44.73555638104272,44.73540254597552,44.73527086605868,44.7351829351338,44.7350232493556,44.73472531154786,44.73454593705522,44.73441426736711,44.73430447986451,44.73410673010484,44.73383229560288,44.73379398345342,44.73368949177583,44.73331070036699,44.73323383577969,44.73315160193343,44.73308569810582,44.7329977854797,44.73293196730064,44.73282226651217,44.73269034097075,44.73266843156985,44.73262434139775,44.73254753164408,44.73250372311551,44.73245962975532,44.73237188479458,44.73233325795309,44.7322566283144,44.73215220586017,44.7317680478531,44.73156481452053,44.73151562596785,44.73145516556678,44.73129050563013,44.73119702274495,44.73115873137504,44.73098848498501,44.73084034027116,44.73074158428165,44.73064281600919,44.73062637646868,44.73057702108352,44.73052748571421,44.73051106506423,44.73046711407491,44.73040154326424,44.73032464048116,44.73026405272971,44.73008840030923,44.72991287495879,44.72980290699591,44.72958868254737,44.72942965543508,44.72901224539127,44.72868272373016,44.72857288265612,44.72830948301399,44.72819964945811,44.72806765317786,44.72789205337633,44.72780392027472,44.72756214413801,44.72751832614644,44.72727679504175,44.72718883577707,44.72710108574122,44.72681558272165,44.72668370690349,44.72659592060348,44.72650805258031,44.72637605029596,44.72600268568554,44.72573912114151,44.72534373168869,44.72503622583309,44.7248383799256,44.72477264823186,44.72446496944754,44.7240694568839,44.72363014368102,44.72358624463503,44.72345424675408,44.72332247175619,44.7230147640544,44.72268537886622,44.72231161548252,44.72211392865275,44.72202614628311,44.72169665500505,44.72160876244011,44.72138892926114,44.72099348824013,44.72072978497074,44.72061967185039,44.72042193644303,44.72037807097881,44.72018045331976,44.71998273331302,44.71978471486857,44.71963096509416,44.71941133881209,44.71932334466814,44.71916968112467,44.71907336200042,44.71890601568724,44.71868620046214,44.7185432072824,44.71849933968971,44.71823562089008,44.71797183767945,44.71786211200715,44.71764227986264,44.71755442742257,44.71736754889515,44.71734556930798,44.71710384571103,44.71703797212044,44.71699408456102,44.71697183225496,44.71687306649387,44.71662029217666,44.71657639369194,44.71630164523228,44.71625776428443,44.71615896543093,44.71607091624943,44.71584019157442,44.71581822765673,44.71573045125479,44.71560410749051,44.71556552859462,44.7154997192568,44.71538966285525,44.71524701796351,44.71522504319468,44.71516455749956,44.71504917443407,44.71494479081827,44.71490623014003,44.71481844763827,44.71477454935071,44.71430382195667,44.71417003792975,44.71408234619267,44.71399429516336,44.71392292231033,44.7138789499878,44.71381297000714,44.71364828756435,44.71358215369428,44.71354910974359,44.71348309229509,44.71334573885984,44.71303813814546,44.71268651687417,44.7125984018052,44.71253255742687,44.71243377994428,44.7123679010727,44.71225787751875,44.71200510303524,44.71196121972555,44.71184019991881,44.71177435969697,44.71173045942889,44.71162607216527,44.71143386864431,44.71136774660133,44.71124141833151,44.71120312345126,44.71112069604657,44.71091753311362,44.71079651209914,44.71054372155476,44.71006034278821,44.70989548800193,44.70976375245829,44.70967586635506,44.70946159789719,44.70923619379509,44.70910454424732,44.70876375471722,44.70856614193184,44.70841771918302,44.70830231744284,44.70823647721926,44.70814867711935,44.70796184482045,44.70787940464171,44.70781890376923,44.70773108307004,44.7076211140378,44.70742329022288,44.70722567437522,44.70699494900046,44.70675852611252,44.70665414060881,44.70661039661903,44.70636321192536,44.7062588233773,44.7061269852958,44.70568734041294,44.70557746284754,44.70549501906606,44.70532480963578,44.70488539802439,44.70484152975867,44.70453539500913,44.70439086000137,44.70379773942941,44.70364370747981,44.70351190032437,44.70285274115193,44.70226492467089,44.70207275527626,44.7018529351208,44.70170452370368,44.70164428887923,44.70146845998251,44.70135850049252,44.70124861925191,44.70116073173818,44.70098491920623,44.7007432779134,44.70050166144049,44.70002370417696,44.69989734416119,44.69980945845955,44.69962262663362,44.69944671038699,44.6989853566353,44.69887540130086,44.698732274583,44.69866668574907,44.69851307854081,44.6983812020839,44.6981831804292,44.69791972361372,44.69759002310511,44.69752421302849,44.6968648911715,44.69673301631533,44.6966452844613,44.69649141525594,44.69635953376891,44.69605196571064,44.69600813235554,44.69583212524423,44.69567851733208,44.69561244593041,44.69552471387525,44.69539292149793,44.69530490756947,44.69504139957825,44.69495338867209,44.69490950515311,44.69488757724442,44.69473372608079,44.69455801385641,44.69449189345239,44.69436004486028,44.69427236561987,44.69418437164587,44.69407447179147,44.69376689672702,44.69370113993503,44.69356928267009,44.69341551525972,44.69323982364785,44.69306387958709,44.69299807341186,44.69288822079551,44.69266839757377,44.69258041879223,44.69233874114764,44.69209725604283,44.69205343993026,44.69187755019435,44.69167998662401,44.69150415081239,44.69137224593854,44.69071331583186,44.69064730913352,44.69047385641661,44.6904167526419,44.69006508966952,44.68982361324518,44.68973557905731,44.68969171001374,44.6894500318512,44.68940616277906,44.68914260418893,44.68885713695935,44.68872508053767,44.68868115732492,44.68846157145417,44.68815413636769,44.68791244598057,44.68775861605983,44.68762697520761,44.68747319576897,44.68740714589583,44.68727528949433,44.6872204751902,44.68722041792357,44.68721754787723,44.68719985691104,44.68716408222165,44.68712231744288,44.68708631457185,44.68704179118648,44.68702086889216,44.68702674147889,44.68704169622769,44.68703912609999,44.68702812410701,44.68698978945331,44.68692392866884,44.68683602333978,44.68657245320409,44.6864624265887,44.68619881018508,44.68602313816054,44.6858475392149,44.68575950280034,44.68553988830298,44.6853860053775,44.68536409631667,44.68521584690782,44.68513351174762,44.68508963476161,44.68500180299574,44.68475998626958,44.68463365864751,44.6846172825589,44.68448544444693,44.68417802142842,44.6839363748083,44.68382643726328,44.68371658151251,44.68365078587713,44.68351898928906,44.68340902396787,44.68324425399158,44.68322232580867,44.68302470181482,44.68278285896647,44.68265119063619,44.68243153651098,44.68232163423577,44.68220072929586,44.68211314378443,44.68198108987236,44.68191533258813,44.6818933906494,44.68169548811435,44.6814869084733,44.68137710136718,44.68122325230839,44.6810475481921,44.68089380778007,44.68075108026467,44.68066319396798,44.68050920463619,44.68013559062572,44.68000393466524,44.67967422640245,44.67963043914538,44.679564416773,44.67945465075191,44.67911982739438,44.67895498015301,44.6787406671309,44.67841122442653,44.67836741772999,44.67821920366697,44.6781256286114,44.67768642986393,44.67760417582041,44.67754375605298,44.67740089885088,44.67718121586672,44.67697261717788,44.67690953327746,44.67663414622867,44.67639893170143,44.67598419321645,44.67572607913523,44.67559013222908,44.67552625311357,44.6754257173247,44.67534070860845,44.67520726645773,44.67514742728769,44.67531323996248,44.67557695395281,44.67558977649062,44.67566574774301,44.67556760290603,44.67553195524631,44.67559013851595,44.67560954334348,44.67564803927242,44.67569729060378,44.67580188838347,44.67611517533984,44.67629103131525,44.6763844343543,44.67656590213372,44.67688488113942,44.67701160203119,44.67716539801977,44.67729706233786,44.6777805279106,44.678088362016,44.6782201373555,44.67875340094319,44.67877003243443,44.67895129989338,44.67896793317221,44.67907797338505,44.67911640029876,44.67933644748349,44.67960994194927,44.67980941653172,44.68024938826309,44.68034282446682,44.68055734405599,44.68101380892143,44.68117315324,44.6813931556163,44.68183316198787,44.68209155716211,44.6823388762779,44.68261956213277,44.68281730730475,44.68337276517403,44.68345550735179,44.68361482280587,44.68387315088946,44.68401087797076,44.6842306985161,44.68448930930977,44.684648762406,44.68468719270749,44.68497871921905,44.68532536784996,44.68550676338887,44.68556722610369,44.68585323776701,44.68596313083816,44.68613329488516,44.68640302379919,44.68652943902294,44.68666668601169,44.68688138948606,44.68715080714057,44.68725528599663,44.68793747693294,44.68807482034529,44.68816851453956,44.68840504428947,44.68863043527006,44.6888447418461,44.68900440283066,44.68950478012832,44.68968657549462,44.68982343448275,44.69010944238228,44.69015327123347,44.6903071917524,44.69039531351333,44.69041727008757,44.69046099466259,44.69048321836755,44.69052724283344,44.69065898082096,44.69076897359189,44.69079091190739,44.69085678977879,44.69087874635073,44.6910766975211,44.69131842243078,44.69138447610592,44.6915823702596,44.69160430864667,44.69164831781328,44.69167025612106,44.69196706953941,44.69219236541256,44.69246193526629,44.69259378183011,44.69283557494427,44.69303327246153,44.69314303444759,44.69325305684683,44.693428620598,44.69349453645555,44.69362647968882,44.69371433810631,44.69378036800879,44.69391203560445,44.69400001892404,44.69419786798316,44.69451114819252,44.69460449113709,44.69471975570902,44.69493980469458,44.69498388661717,44.69523134577674,44.69540713842582,44.69551160679919,44.69580309402325,44.69592959917318,44.69604509511466,44.6963478258359,44.69669980003264,44.69691963116566,44.69699123477392,44.69718924334667,44.69762347950492,44.69786570907736,44.69808543881943,44.69835486555874,44.69856940637944,44.69877279595126,44.69909731973668,44.69924589277519,44.69949323139527,44.69966916710784,44.70005969592046,44.70017527070969,44.70041169405566,44.7005436885173,44.70078536717597,44.70084038480278,44.70118669590061,44.70137919670977,44.70145608451548,44.70156598658246,44.70158807576656,44.70220377395027,44.70247301376234,44.70257746440769,44.70284141259227,44.70295660871302,44.70297314474406,44.70311036337655,44.70312717446384,44.70322048506885,44.70323701372379,44.70337415228051,44.70339068515848,44.70348402624255,44.70354462986476,44.70365984653735,44.70400617879585,44.7040940979896,44.7041435946237,44.70415460506291,44.70417103532215,44.7043468189282,44.70454472970717,44.70456660476103,44.70463245288892,44.70465432298356,44.7047422943383,44.70479182755967,44.70480833788251,44.70489632383486,44.70496764519707,44.70502818539227,44.70529186801823,44.70547324000024,44.70573160141183,44.70575890003759,44.70586352710284,44.70611086365508,44.70661638859974,44.7067373669458,44.70701782214061,44.70768287424799,44.70786994387882,44.70790279074775,44.70811727018042,44.7082711037872,44.7083976656293,44.70844654100146,44.70859556112768,44.70861219048106,44.70885386739002,44.70896943663034,44.70903523039031,44.70931593768023,44.70946988802746,44.7098492991855,44.71017345227236,44.71042632614733,44.7105144594769,44.71066820260936,44.71088798598291,44.71106382215953,44.71122289575208,44.71123942677875,44.71126702172704,44.71141534479591,44.71167896002265,44.7117889057954,44.7122779229826,44.71258554510845,44.71260207537808,44.71288782607493,44.71308574198562,44.71320115079177,44.71354730627912,44.71377271255169,44.7138332453701,44.71400891297899,44.71412432213993,44.71416270390976,44.71423428737784,44.71441550422689,44.71463551376992,44.71480062315292,44.71495428066476,44.71514129681833,44.71530620814166,44.71546009924562,44.71555333630632,44.71575121779652,44.71598763406745,44.71609758497299,44.71642729421466,44.71660324008437,44.71675713851938,44.71680109647321,44.71697709776046,44.71724080525874,44.71737278644146,44.71748266511206,44.71752676912157,44.71761479542602,44.71768047853359,44.71776856430699,44.71788429674109,44.71798866966031,44.71805443481681,44.71818638398822,44.7182082345494,44.71827080597119,44.71840067442673,44.7184722222064,44.71856558588694,44.71858193515816,44.71873596507385,44.71875790315129,44.71895591397998,44.71897785323005,44.71913176563407,44.71924710871918,44.71937345453529,44.7196373157458,44.71983502950106,44.71990118129327,44.71995052951457,44.7200329051565,44.72020860461011,44.72025262852398,44.72045047403481,44.72060432363482,44.720758180037,44.72084616286293,44.72086803142728,44.72091190748725,44.72093406274315,44.72097793823476,44.72099982582064,44.72119764650487,44.72121981217498,44.72126368825032,44.72128556296655,44.72133505800731,44.72146152850719,44.7215273396197,44.72154920999718,44.72159310441054,44.72174714537203,44.72179103984279,44.72181289494136,44.72187883904633,44.72190096056299,44.72196670952012,44.72209845791203,44.72212048374048,44.72227438426788,44.72229625768446,44.72236235295177,44.72238422209505,44.72247756227461,44.72249407341418,44.72258739945419,44.72260391129463,44.72263150679699,44.72264800266097,44.72266997737758,44.72282363151631,44.72310956779935,44.72313150578591,44.72319738026665,44.72321931764518,44.72335125448233,44.72363708893738,44.72383505668657,44.72387905884906,44.72390101523598,44.72398882447102,44.72401076548577,44.72412074324877,44.72414269963445,44.72436233121365,44.72464811599565,44.72513179543518,44.72515364544868,44.7253295457073,44.72542687269535,44.72575791986593,44.72597789209645,44.72633479534145,44.72635132466483,44.72650533611142,44.72670302749988,44.7269005825056,44.72706007724988,44.72723049333941,44.72738425314012,44.72756556108765,44.7275820885303,44.72766988717004,44.72784583645561,44.72808753962577,44.72857079763207,44.72883456074481,44.72909827132008,44.72912583003582,44.72918616605109,44.72947183216288,44.72951585035422,44.72962568721974,44.72973566687813,44.7298673897246,44.72993354414986,44.72995548208899,44.73015338559532,44.73024124336949,44.73050513741492,44.73052707231225,44.7308789171533,44.73101059631738,44.73118666020149,44.7312086165745,44.73127448819754,44.73142827502143,44.73171391962583,44.73202160633743,44.73217551604681,44.73252696381525,44.73254899075685,44.73279073041327,44.73285666452117,44.73298831119832,44.73303227787348,44.73320811353089,44.73325207838249,44.73344966218936,44.73347166826331,44.73353751886879,44.73355954033454,44.73369127474152,44.73371331880393,44.73382302263769,44.73397686718403,44.73406473769334,44.73417468550809,44.73431215600217,44.73448251993172,44.73461429775633,44.73463624112951,44.73470210770954,44.73472436415803,44.73483432557392,44.73503195725161,44.73516380361173,44.73549908012393,44.73566944469471,44.73608710751127,44.73624103336159,44.73637294927686,44.73642219670375,44.73643870888783,44.7365047569302,44.73654875825618,44.73668048029261,44.73672465146989,44.73679030894274,44.7368179086127,44.73683439878965,44.73692774273376,44.7369442689992,44.73699376803365,44.73705410188744,44.73708167894505,44.73709820761172,44.73712548886229,44.73714201934801,44.7373178281788,44.73734538620608,44.73738376486492,44.73745516776727,44.73747168110547,44.73751557539529,44.73762560430345,44.73767513466607,44.73769166392721,44.73788935411652,44.73791122671333,44.7379770557452,44.73799918983051,44.73819698401595,44.73821871158162,44.73828482365973,44.73830656837235,44.73859241189874,44.73866377795862,44.73868030667727,44.73890009242818,44.73909769892693,44.73914171788296,44.73916365575823,44.73920767764076,44.73929557538141,44.73931753963731,44.73980676285614,44.74021894093575,44.74103200498961,44.74122981212217,44.7415152445875,44.74153726641755,44.74162505477014,44.74171298385557,44.74175685963066,44.74177890225496,44.742001022722,44.74224028072073,44.74226202069637,44.74232811853158,44.74241576343234,44.74245995595897,44.74248169783036,44.74265737533558,44.74267942096952,44.74276727486644,44.74298682676734,44.74316254232955,44.74327253128732,44.74329455305109,44.74364602113504,44.74406337475598,44.74430508564235,44.74441509120562,44.74445889724404,44.74456867477366,44.74483228475206,44.74487626276557,44.74496403512328,44.74513999781816,44.74529387015021,44.74532142873484,44.74533795729344,44.74565098008805,44.74566750923841,44.74571138494871,44.74577734446626,44.74591475065947,44.74593128520194,44.74600243781205,44.74601896391059,44.74611237474178,44.74612890690926,44.74630465500724,44.74634874210193,44.74645845232763,44.74654645196333,44.74656832006229,44.74661781473502,44.7466343492169,44.74668388192807,44.74674419977407,44.74683750464082,44.74692000850359,44.74694756646777,44.74696381140307,44.74709579812619,44.74712337514931,44.7471399012024,44.74725509494062,44.74727160676276,44.74729918188349,44.74788708532117,44.74791438240479,44.74793091083114,44.7479584693913,44.74797499781511,44.74815614935944,44.74839804966457,44.74859582220751,44.74876622949503,44.74911798005437,44.74916218849078,44.74922805845332,44.74944784229762,44.74964587166009,44.74984379772329,44.74995366093334,44.74997559876107,44.75000278837403,44.75009945426176,44.75027556960475,44.75045155814524,44.75071540415528,44.75096303573435,44.75111163211509,44.75130983894518,44.75133723100684,44.75135385659699,44.75150774993877,44.75168369285413,44.75181572147468,44.75183765861811,44.75200836395744,44.75230005255762,44.75260822967584,44.75282259314826,44.75304266514925,44.75340061283105,44.75341695934349,44.75351606931841,44.75353267914111,44.75387916624319,44.75412684693849,44.75460538932569,44.75524953582983,44.75603652371871,44.75638872926,44.75682886471834,44.75731859417143,44.75762158439785,44.75805645730572,44.7583646950743,44.75863423916783,44.75894255486225,44.75905277038483,44.75920141973688,44.75936108339748,44.75941080043391,44.75944948510482,44.75955415383299,44.75964208671486,44.75972997835909,44.75988388687579,44.76019150147577,44.76034571639137,44.76047765168464,44.7606427660327,44.76073089933677,44.76103390923003,44.76116591658961,44.76135840579177,44.7615346103368,44.76165558435543,44.76202453812373,44.76222270947395,44.76234386055498,44.76269592199438,44.76287199301397,44.76295471332671,44.76300431302305,44.76308171263867,44.76310349239809,44.76314775900712,44.7631863723731,44.76324683018583,44.76333498181597,44.7634671240143,44.76348375037823,44.76368172995628,44.76387968420545,44.76414363534874,44.76486956070118,44.76495736247387,44.76502340342721,44.76506742080402,44.76508935842944,44.76519960514259,44.76528751621041,44.76539746265758,44.76557326320621,44.76561729474648,44.76563923661754,44.76568324965372,44.76585924161278,44.76592540582323,44.76601338705587,44.76619487514321,44.76651383462247,44.76671216085229,44.76682777669811,44.76695428221259,44.76702028684937,44.76710291863802,44.7673016019161,44.76737851659188,44.76754936865164,44.76770337892194,44.7679399443962,44.76805002532685,44.76809410725522,44.76835796427825,44.76853416347373,44.76855610105734,44.76860013608372,44.76868802291611,44.76882013763256,44.76890804783687,44.76895204141258,44.76897397907257,44.76901799548185,44.76903993312122,44.76912802825678,44.7693479123649,44.76945777866219,44.76956802279997,44.76958996037503,44.76972188132012,44.77005161042013,44.77009560815402,44.7701616466291,44.77020566167031,44.77022760047478,44.77031571817841,44.77058519405136,44.77060181639479,44.77062375396087,44.7708273178684,44.77102543936519,44.77119594918954,44.77132806592702,44.77141595524085,44.77145984592211,44.77148199542036,44.77172366352713,44.77181152202088,44.77187751037466,44.77209726558065,44.77233875327164,44.77238264696582,44.77240465193618,44.77251439665598,44.77253640650217,44.77276177444796,44.77282218027216,44.77293220369885,44.77295404988867,44.77304210055593,44.77306396524469,44.77323994166724,44.77326208813735,44.77333352150069,44.77345970430449,44.77363573016789,44.77365759732455,44.77374559594471,44.77383362621085,44.77392155444393,44.77403146667142,44.7740533331463,44.77411944982639,44.7742295003803,44.77429531312034,44.7743171826799,44.77438330935967,44.7744051603316,44.77460850147686,44.77464724480714,44.77474063366751,44.77488875693064,44.77497682116647,44.77499869068667,44.77546037083432,44.77552627255813,44.77574607531924,44.77576811803392,44.77583394863384,44.77585595911354,44.77594383311131,44.77603160135058,44.77605363405524,44.77618557279032,44.7762735221245,44.77633935334851,44.77647098512927,44.7765810622037,44.77664677368174,44.7767565876451,44.77688848556756,44.77699829646642,44.77706428661235,44.77715215048962,44.77737170977456,44.77741562201933,44.77752555768138,44.77756945136258,44.77884345658492,44.77901926346807,44.77941459870299,44.77967788211706,44.77996326120447,44.77998537709406,44.78005115911655,44.78020464859234,44.78029258749343,44.78051216652873,44.78079759024084,44.78084146543195,44.78092911157143,44.78101718250916,44.78103920640692,44.78114893257175,44.78119289832303,44.7816105127823,44.7816325205719,44.78178623505143,44.78185787222476,44.78191827151743,44.78200605889215,44.78205014304685,44.78215986796092,44.78218201461004,44.78229202307237,44.78233582615629,44.78237990504001,44.78249534891522,44.78253381307729,44.78259966223528,44.78262180887384,44.78268762157121,44.78270948708426,44.78295698764983,44.7829954511901,44.78319317301369,44.78321532206449,44.78328113414594,44.78332521830065,44.78361080022104,44.78367683863653,44.78383636135405,44.78387482246391,44.78405057143988,44.78407243692066,44.78413856778966,44.78422645919895,44.78440241296071,44.7844242641021,44.78453419795955,44.78455634636432,44.78468821713537,44.78486429342481,44.78499607594033,44.785215959362,44.78534787977811,44.78545800402072,44.78554582427512,44.78563380324004,44.78576598436978,44.78583172662285,44.78591984225555,44.78598586685248,44.78642582027059,44.78688785774379,44.78699782282132,44.78715195711626,44.78719585079649,44.78732782804826,44.78761368173881,44.78803736886702,44.7880539890795,44.78832348697977,44.78844466461774,44.78875250781822,44.78892875336174,44.78914883974095,44.78936373654241,44.78945712863619,44.78961125168691,44.79013443556365,44.79039878570001,44.79047040629436,44.79084467202201,44.79106488222205,44.79127945751966,44.79174226458221,44.79206163513359,44.79226541156277,44.79239211874403,44.79250227604285,44.79270083555932,44.7927870289897,44.79287092900461,44.79292577045997,44.79303521124847,44.79311168055603,44.79314997564612,44.79319403489227,44.79323249796273,44.79327107698568,44.79361752607392,44.79372819812771,44.79377536151809,44.79407369558597,44.79412847232882,44.79434785685958,44.79438606076499,44.79456160564613,44.79468749707889,44.79469863408773,44.79536706216857,44.79635373579031,44.79731813259455,44.7973566181037,44.79874855331555,44.79905765443203,44.79915943491337,44.80170218006061,44.80522017474861,44.80525300504952,44.80525172559262,44.8051198500814,44.80510890712767,44.80511442042545,44.80602390896713,44.80653328364001,44.80662633597818,44.80666465816607,44.80667554531166,44.80667526255839,44.80668609747543,44.8066857270798,44.80669686277322,44.80669661211495,44.80670745001174,44.80674023416397,44.80680012150273,44.80693113951648,44.80715025473687,44.80740769641118,44.80756110681627,44.80776385944188,44.80792852414531,44.80801595169305,44.80805963276873,44.80807596036802,44.80807600379582,44.80833885519029,44.80877801184977,44.80891923657835,44.80896297436171,44.80925851566145,44.8097844566153,44.80979557418525,44.80999265829298,44.81023361381367,44.81044174364853,44.81055123478062,44.81090779731564,44.81118191258965,44.81122555468788,44.81123648964596,44.81132423457074,44.81146121716136,44.81158711406167,44.81161990929948,44.8116417243563,44.81171808514381,44.81171796115839,44.81174542379753,44.81175606603249,44.81178327359986,44.81181598450203,44.81185963841584,44.81194171554273,44.81200746664138,44.81205688406141,44.81207857211227,44.81211662688356,44.81213828774327,44.8121653406095,44.81218730517611,44.81228559604663,44.81235124592756,44.81237845485868,44.81237835491555,44.81238918693138,44.81238908871067,44.81239984133521,44.81241067330669,44.81241042089135,44.8124538602941,44.81247547283598,44.8124971990695,44.81261748438116,44.81269932533111,44.8128356979191,44.81292284594734,44.81295528263029,44.81296613542219,44.8129768645332,44.8130313056758,44.81312923701914,44.81322521624375,44.81338578317447,44.81348444155278,44.81361046076217,44.81404357644165,44.81419148526681,44.814306262848,44.8144762251018,44.81517736059545,44.81535299355181,44.81562711099424,44.81589019319885,44.81604347457164,44.8163171630539,44.81649251550535,44.81675541174827,44.81690333035575,44.81700186758697,44.81703467424078,44.81711140039641,44.81718799734494,44.81720982323363,44.81730810008906,44.8173628629706,44.81738482426525,44.81769661202977,44.81782259061362,44.81784456435501,44.81795402901787,44.8181346038298,44.81822213476068,44.81830999624189,44.81844171568624,44.81885900658816,44.81896329448598,44.81908928519279,44.81917147645647,44.81927000276272,44.81931900092724,44.81939546205749,44.81955362979766,44.8196300900166,44.81969583505291,44.81981069880574,44.81987068803637,44.81994128725128,44.8199515031213,44.81998417581099,44.82009894600322,44.82023016473543,44.82029001895999,44.82029513683512,44.82028925664193,44.82027844722635,44.82027818512623,44.82024474192147,44.82024476506783,44.82023365185546,44.82023290177435,44.82022169793632,44.82023256626243,44.82023219121386,44.82025922216867,44.82029202426019,44.8203578922508,44.82040703015261,44.82043943962185,44.82043932528985,44.8204501940607,44.82046090396895,44.82047113259441,44.82050353595967,44.82058550896198,44.82069525679283,44.82082683502271,44.82098019153506,44.82115514241902,44.82128085930867,44.82129152424816,44.82127482638576,44.82125837503093,44.82119229820646,44.82099453381453,44.82086268816502,44.8207967615547,44.82070872320244,44.82065899649225,44.8206204084947,44.82061466956761,44.820619795352,44.82066324348234,44.82067949127917,44.82074536152078,44.82076167925195,44.8207730492887,44.82075122828986,44.82075137461393,44.8207295860163,44.82071885825564,44.82072995129871,44.82073000105579,44.82075777303707,44.82079629312764,44.8208403215352,44.82097220272374,44.82119219767026,44.82138420669387,44.82143901033933,44.82152665194544,44.8215977211793,44.82170160894557,44.82178880181805,44.82186537867032,44.82192000177156,44.82208980581564,44.82237992602709,44.82252254966662,44.82271435292742,44.82284563499319,44.8229714759966,44.8230042551327,44.82303692472826,44.82312447327539,44.82319530486845,44.82330375370903,44.82331369591166,44.82286298167153,44.82270893182955,44.8224673588556,44.82244528652549,44.82242328278721,44.82240123167665,44.82235745065297,44.82230795569508,44.82227500601832,44.82224227766324,44.82218668140425,44.82214446910091,44.82216665658758,44.82215608572873,44.82212340294075,44.82209095423509,44.82206888527785,44.82189925440746,44.82187758003286,44.82162558801197,44.82149947971477,44.82140643655838,44.82098545163822,44.82093607450372,44.82090305528212,44.82089766772773,44.82090838058041,44.82093034903342,44.82103956159575,44.82108322363212,44.82125295281764,44.82144449267274,44.82168526419889,44.82180037536018,44.82193703971397,44.82200020469751,44.82209255410307,44.82213492503683,44.82213991774007,44.82215457216927,44.82217669416697,44.8222197803189,44.82229103137225,44.82233501065949,44.82251076322423,44.82266452042865,44.82284035987134,44.82286238002518,44.8229338480995,44.82301619756628,44.82321959337979,44.82324697016403,44.82326335195935,44.82325234172508,44.82319177929757,44.82310354254371,44.82305973295433,44.82290563119316,44.82277394935583,44.8227462956353,44.82270231329304,44.82268554828136,44.8226854451856,44.82270721370997,44.8226904806967,44.82267412697842,44.82254760006811,44.82249764762548,44.82247533878299,44.82248618221891,44.82249675258502,44.82256248092917,44.82268295865757,44.82277582878216,44.82298345949069,44.82300526123894,44.82307098748545,44.82319142764927,44.82325703769215,44.8233005250104,44.82343751644867,44.8236674540883,44.82368372355892,44.82386686149474,44.82407903094577,44.82416702514105,44.82424428485415,44.82428796443242,44.82429332953847,44.82428793937811,44.82415563061526,44.82411684069203,44.82412769643617,44.82417124554567,44.82420953493901,44.82423773986576,44.82428852008635,44.82429962428824,44.82433811012503,44.82440961036444,44.82443706018893,44.8244918939902,44.8246455434584,44.82473362554919,44.82478867754605,44.82481065185357,44.82503057828583,44.82507419261506,44.82518440953373,44.8252394936731,44.82536024706251,44.82539538543096,44.82537893376624,44.82503562974084,44.82501902134756,44.82504126967542,44.82504100080319,44.82502994938661,44.8246946639135,44.82467805479062,44.82468914619163,44.82484279806607,44.82493079446471,44.82495835211688,44.82498032736871,44.82501323302336,44.82504628873288,44.82514527128462,44.82516719565217,44.82527187143391,44.82531573362585,44.82537082343848,44.82540934647233,44.82571181096692,44.82575033549023,44.82576833249814,44.82578326914268,44.82581610625667,44.8259094384179,44.8259261800977,44.82592594769589,44.82591380698609,44.82558507615761,44.82556312710197,44.82555765373519,44.82556314090579,44.82563436375172,44.82560206194778,44.82564539773852,44.82573322115805,44.82575515915808,44.82590909188687,44.82610686806666,44.82613105176232,44.82652473770248,44.82657030541083,44.82661807259399,44.8266346515499,44.82664560679804,44.82663522766486,44.82662349791779,44.82618373970898,44.82616153197332,44.82616164190132,44.82617248783914,44.82621110656343,44.82623304405999,44.82645852845426,44.82684674177406,44.82693126631624,44.82694781030114,44.82693117537238,44.82651881423093,44.82651334117079,44.82652423099418,44.82657373073423,44.82659564774776,44.82662302765157,44.82688176513476,44.82699166919595,44.82707410792265,44.82707862173871,44.82711788126877,44.82718572624989,44.82727433319047,44.82772908335996,44.82779914582972,44.82782109071463,44.82782680248469,44.82785411065937,44.82790345230976,44.82818356241955,44.82829357462641,44.82844725602018,44.82856814379188,44.82873293949797,44.82886488906976,44.82895823223458,44.82901848018711,44.82923825809356,44.8296558321784,44.82972172584937,44.82974928674335,44.82998537770768,44.83026550172634,44.83033147610992,44.83033145866312,44.83038082573722,44.83050161403717,44.83063890895242,44.83071580482397,44.83077079658364,44.83076536223439,44.83071583722115,44.83067183117995,44.83066633753922,44.83066616530439,44.83067708686291,44.83073225933347,44.83090780135943,44.83099582264197,44.83101777876438,44.83112767875154,44.83120449603884,44.8312815842255,44.83127596949691,44.83117686822536,44.83114942548226,44.83116052929548,44.83118225272842,44.83142419744667,44.83157807293009,44.83166604471786,44.8317979834081,44.83186403271818,44.83212772997959,44.83252915411116,44.83281503705371,44.83303513087639,44.83322757873471,44.83330435464265,44.83334301513148,44.83334844559396,44.83333173322835,44.83317237922775,44.83304047384127,44.83279848009631,44.83255648697694,44.83238048240486,44.83220457572956,44.83207285472254,44.83198474862522,44.83147914218446,44.83118774340747,44.83116029206026,44.83113808359237,44.83113810756357,44.83111056264669,44.83106094067409,44.8309015674307,44.83086288974107,44.83086851505154,44.83088492069891,44.83091786121827,44.83096184326882,44.83106067995799,44.8311649961029,44.83139016345478,44.83142325055243,44.83141762331299,44.83135714627462,44.83133493781103,44.83133498569119,44.83132385042431,44.83132387920153,44.83127977817025,44.83120279330617,44.83118072642144,44.83116975692344,44.83116962762084,44.83113645335045,44.83109790739572,44.83103210263855,44.83098245726912,44.8309824871222,44.83099330556908,44.8309988001202,44.83098770358857,44.83093804488134,44.83093805054821,44.83100404080361,44.83101488546936,44.83103686905537,44.83114663111403,44.83121261225914,44.83130035027008,44.8314543396885,44.83154205155664,44.83156398967132,44.8316740827807,44.83178371715164,44.83206961270887,44.83215740626881,44.83224532019734,44.83231135923796,44.83244322709458,44.83255302245139,44.8325749606272,44.83268495345152,44.83281684114854,44.83303681982015,44.83316840765275,44.83321246139585,44.83323439959084,44.83334447108948,44.83349820369817,44.83358625879201,44.83362993454405,44.83369604874488,44.83376213666425,44.83378389432621,44.83380601299741,44.83394884576332,44.83397626725666,44.83397082780207,44.8339816459727,44.83401454860573,44.83414662262135,44.834300429511,44.83432236763274,44.83443208063964,44.83449825616719,44.83460790405847,44.83478371660723,44.8348716675507,44.83495968173222,44.83506957346264,44.83513550944931,44.83520121963043,44.83524513755203,44.83528917167138,44.83531111101088,44.83546520080047,44.83548714137438,44.83553089434308,44.83555311671885,44.83564080717898,44.83572888005951,44.83580574920957,44.8358441794225,44.83590483129615,44.83594865007211,44.83603656052707,44.83608057965104,44.83610253528045,44.83621244650279,44.83641007474002,44.83649817225369,44.836541909537,44.83671773139829,44.83682782159131,44.83706954010673,44.83720124518079,44.83735543171677,44.83746521422922,44.83757512451719,44.83768511261638,44.83775656733741,44.8378170833776,44.83794863364917,44.83797073482107,44.83810270522621,44.83826753137337,44.8383112251914,44.83834444577587,44.83837734450208,44.83837720701094,44.83841028702654,44.83848686328341,44.83855283950902,44.83870654825363,44.8388825297349,44.83917360985907,44.83928349750522,44.83929982010566,44.83940981141307,44.83951966003608,44.83967340792088,44.83973923863151,44.83993704699703,44.84013492704869,44.840288534532,44.84050831167477,44.84053039419101,44.8405961481339,44.84085975738467,44.84101366701228,44.84129957694027,44.84147531946083,44.84162920129213,44.84173365277614,44.84182138092242,44.84185987916467,44.84188747380227,44.84189857395452,44.84187107307589,44.84181625739358,44.84177238314642,44.84176142350818,44.84176184124097,44.84177271388607,44.84180047036275,44.84183876463835,44.84192689588369,44.84201458773341,44.84203652596415,44.84210260043793,44.84220125230155,44.84224528677713,44.84225091118471,44.84224515529256,44.84222293459757,44.84219551999657,44.84213502924122,44.84209085505171,44.8420469622104,44.8420522998505,44.84207979448455,44.84212377150222,44.84216744959895,44.84218960348641,44.84226116090888,44.84228289357059,44.84229945645767,44.84235998748875,44.84239824438752,44.84248609513744,44.84255223138882,44.84264006026184,44.84283791903089,44.8431894248254,44.84334322883619,44.84340905759066,44.8435848176691,44.84362905973286,44.84371682845154,44.84376064351423,44.84380459531837,44.84389264572068,44.84398065725858,44.84409050698358,44.84426618723277,44.84439797624839,44.84457381204975,44.84459583354939,44.84463998680915,44.84468372446214,44.84481558950426,44.84490364438004,44.84492551733515,44.84499163412995,44.84501351123525,44.84507962375885,44.84510149913685,44.8452559660496,44.84534341625006,44.84538731059508,44.84547524311117,44.84551911947953,44.84573889337026,44.84600284408404,44.8460687801275,44.84611821693604,44.84613475618854,44.84615669434247,44.84618404649333,44.84622248576274,44.84626658173319,44.84631587505895,44.84633231021353,44.84636560802988,44.8463985481704,44.84653018885799,44.8466182432277,44.84666233852598,44.84675012891634,44.84683789787316,44.84685999770812,44.84697526417343,44.84698622608516,44.84701400002405,44.84701386293194,44.84702488152413,44.84708003866481,44.84710207241493,44.8471458531934,44.84717884666926,44.8472229396501,44.84725583738849,44.84728863369345,44.84729958825645,44.84731070875183,44.84731618893225,44.84731042458154,44.84732126318327,44.84739277460144,44.84742577185143,44.84744799282361,44.84740410396282,44.84740974037251,44.84751421508262,44.84752525154789,44.84755829026313,44.84757480716682,44.84762432068554,44.84768459721963,44.84778346385697,44.8477833263639,44.84780526213913,44.84788206857704,44.84788730280214,44.84791494242649,44.84800285148005,44.84806864317859,44.84844244688759,44.84846432420237,44.84850837639164,44.84853043671552,44.84855781215674,44.84859628729512,44.8486404429195,44.84868411523706,44.84875023321322,44.84881618571677,44.84886008009241,44.84888207863168,44.84892597298768,44.84894799131668,44.84903612329064,44.84905785736512,44.84916792878111,44.84929977294652,44.84934352836219,44.84943161540016,44.84962935349518,44.84971730422804,44.8498217744892,44.84986011062187,44.84992600356984,44.84994795556199,44.84995349640588,44.84996459432701,44.85000278770798,44.85004674411216,44.8503543693162,44.85053033080052,44.85090375732936,44.85116192215167,44.85133774126947,44.85151900961583,44.85162869356846,44.85180453045618,44.85211223701893,44.85226593535408,44.85233194674684,44.85250774503518,44.85263966795274,44.85274941534279,44.8528374043144,44.85285934248504,44.85301332469021,44.85325496566291,44.85336465153664,44.85376026519421,44.85395815886432,44.85404592324289,44.85406786149537,44.85411188034328,44.85413383654153,44.85422182520983,44.85433178936317,44.85452979462442,44.85470555788258,44.854749452251,44.85487590377247,44.85516727405525,44.85518929011267,44.85523318449679,44.85538698772852,44.8556070229256,44.85573871065449,44.85578261963981,44.85584869791234,44.85594751870996,44.85611212893281,44.8562440478876,44.85635393170573,44.85644184483672,44.85652967600325,44.8567495119105,44.856815503198,44.85692542984369,44.85703519962484,44.85721115292237,44.85738693243637,44.85750225931238,44.85759023418475,44.85765630732939,44.85784865091419,44.85795864227346,44.85802453214697,44.85811240231691,44.85826623279627,44.85835418122997,44.85852995911414,44.85890380350023,44.85910162532911,44.85932135632282,44.85949719720583,44.85965099478386,44.85983228343014,44.85992558734034,44.86033192970841,44.86045822357356,44.8605021037012,44.86050196440465,44.86054049140346,44.86054035085126,44.86057327361874,44.86065567361223,44.8608202327767,44.86085328065658,44.86094666216056,44.86100672226245,44.86112203293084,44.86128671275213,44.86144028224005,44.86150609262231,44.86150595264492,44.86159383930293,44.86159369679491,44.8616265831412,44.86165964721832,44.86165950162761,44.86169239196474,44.86178563420015,44.86187886762471,44.86196677205682,44.86205480994161,44.86232949391724,44.86236230025622,44.86242820648722,44.86273574915802,44.86295553805962,44.86324128887465,44.86348315836562,44.8637468652662,44.86396673396254,44.86412053463823,44.86436239242921,44.86438433186289,44.86442836378613,44.86449415836061,44.86450934621314,44.86488355561139,44.86524457708776,44.86557974798156,44.86577877554274,44.86598313600157,44.86616899447657,44.86626298822864,44.86637270045183,44.86648264059883,44.86661434770149,44.86672420607942,44.86692203793429,44.86718557140686,44.86736123555973,44.86738330829402,44.86764703408151,44.86766884778173,44.86795459009667,44.86810830682294,44.86819612729393,44.86826215889992,44.86863583338649,44.86883359387804,44.86892150148953,44.86896551828924,44.86898745601773,44.86903120468607,44.86905342165494,44.86909717160749,44.86927306249387,44.86938290827727,44.8694269368676,44.8695807392176,44.8696907203454,44.86971265866239,44.86997634481001,44.87019589247751,44.87045977037687,44.87070139857903,44.87087706110004,44.8709649851226,44.87107477355102,44.87117882198081,44.87120689319444,44.87125064460048,44.87127258284582,44.87140465651988,44.87144857953211,44.87155835182846,44.87162415422756,44.87171212690524,44.8720195494487,44.87230532765746,44.87237099492028,44.87256881296001,44.87292058482557,44.87331583590386,44.87346968092928,44.87357959188817,44.87375547119452,44.87393120739113,44.87426064907344,44.87448034133435,44.87467796923727,44.87498379505067,44.87502151479017,44.8750433049608,44.8752408545813,44.87543856088633,44.87550449586607,44.87557042000589,44.87561430213007,44.87565792991466,44.87587751777205,44.87620703870638,44.87638269299698,44.87653624055899,44.87687650391227,44.87704656494556,44.87728811943305,44.87739230296334,44.87755692581062,44.87763381581998,44.87763367228988,44.87767752065302,44.87772137634132,44.87772123150599,44.87779794365237,44.87779793487975,44.87781999327012,44.87784159727657,44.87784171587982,44.87785778155177,44.87787420214693,44.87791801938514,44.8779729972702,44.87803877705545,44.87806068751648,44.87809324930675,44.87809850722255,44.87809297140988,44.87808208220174,44.87807641673988,44.87808172842261,44.87809269173536,44.87820232179528,44.87826810931662,44.87826824329666,44.87830112784149,44.87831207689674,44.8783229059016,44.87832289497456,44.87834493233827,44.87835571667462,44.8782675217763,44.87826750827151,44.8782783161849,44.87827830167036,44.87831118597752,44.87831118599344,44.87830557342507,44.87827816258121,44.87823401612437,44.87821207769404,44.87803656447574,44.87799250960033,44.87792656003168,44.87786075452546,44.87780046814264,44.8777068687405,44.87761348410071,44.87755831665535,44.87747588354238,44.87746489143202,44.87746450986018,44.87749719384678,44.87755746913987,44.87760705389049,44.8776727179012,44.87776056062421,44.87789235049991,44.87802394931769,44.878111854179,44.87824369811782,44.8783424471649,44.87842486694564,44.87847988800317,44.87858460629803,44.87875477525155,44.8788152668427,44.87888107416514,44.87894146411724,44.87898003094183,44.87899661313752,44.87897449211149,44.87892476449227,44.87889195064616,44.87878185955805,44.87869402709511,44.8786337663024,44.87860066886569,44.87861714563127,44.87866099331567,44.87871032919013,44.87877067354923,44.87889169924659,44.87899613281469,44.87911163371081,44.87925443101891,44.87927641316758,44.87931477394739,44.87935319288621,44.87939727683647,44.87944664019885,44.87947937539312,44.87952320129431,44.87955621068512,44.87964943666032,44.87970988020549,44.87979757975567,44.87981373233025,44.87988830368397,44.8799126616271,44.88013255237608,44.88031374954495,44.88044026093935,44.88053367197238,44.88061609191389,44.8806982163467,44.88072028267668,44.88072588695562,44.8806597226758,44.88064871068279,44.88070347361793,44.88069784883638,44.88067584614671,44.88062621590841,44.88049448641805,44.88043318666376,44.88031867656363,44.88016469531723,44.8800768526653,44.87990104541017,44.87976921540762,44.87973074865897,44.87968142441823,44.87961549692307,44.87959338944354,44.87956563699836,44.8795329275848,44.87950513323504,44.87946134055969,44.87935156759929,44.87926343846254,44.87924150006112,44.87917559169817,44.87915365208151,44.87898320810253,44.8789175192476,44.87887891294324,44.87885680466815,44.87885683268293,44.87888442204292,44.8789006716959,44.87896658866342,44.87901054406036,44.87912026875486,44.87914243363257,44.87919166451989,44.87923014985363,44.87944984910768,44.87955402130452,44.87960908901231,44.87966383323347,44.87970233082785,44.87974616881392,44.87985606474192,44.87992189780359,44.88003158974102,44.88012493587638,44.88020190552968,44.88024012122301,44.88028961538263,44.88030602913418,44.88028943635729,44.8802620190051,44.88012462401283,44.88008053012067,44.88006938373606,44.88009126419328,44.88015703446279,44.88028857201493,44.88035449690872,44.88059582000398,44.88076593997803,44.88089231897462,44.88091955736909,44.88091966485682,44.88093047764663,44.88091936303201,44.88091962285421,44.88090303343337,44.88087000019075,44.8807763514043,44.88054563689785,44.88035873250793,44.88027073836743,44.88016075033248,44.88011672478261,44.88009476856602,44.88000690182445,44.87990847013434,44.87989696639553,44.87966639242889,44.87957851577747,44.87944676957845,44.87931477461148,44.87907318688383,44.87889727952911,44.8786773127814,44.87858937135264,44.87852356482615,44.87841360100095,44.87835886925887,44.87830939790147,44.87827076926144,44.87827070860721,44.87828181710223,44.8782870358885,44.878265073313,44.87822651211651,44.87811678945275,44.87802883451327,44.87797930104184,44.87794643500689,44.87791361115676,44.877875147649,44.87780758859385,44.87771586861132,44.877677390142,44.87764457574916,44.87753457623214,44.87746843758583,44.8773587090061,44.8770072217054,44.87688066104388,44.87679289577087,44.8767378167849,44.8766772284463,44.87666622340836,44.87662753701598,44.87658908841349,44.87620981398376,44.87619303975845,44.87606894378457,44.87637443155991,44.87656688982932,44.876682182755,44.87681214267003,44.87697916048438,44.87710574367196,44.87736940487608,44.87741328192377,44.8774792662884,44.87758892519619,44.87761107034591,44.87766031792068,44.8777648418048,44.87796247851757,44.87805039888664,44.87809415126247,44.87811638624707,44.87818229590141,44.87820423690638,44.87855571440677,44.87866559446656,44.87901733274678,44.87917124000999,44.87930305966938,44.87939083263086,44.87941284578454,44.87945672281867,44.87954462002498,44.87961048209424,44.87964162639796,44.88007149986605,44.88022521991332,44.88046669692194,44.88055459823531,44.8806642870581,44.88079613623074,44.88084001256886,44.88086202442393,44.88099932912341,44.88103777694491,44.88119167895156,44.88132342491662,44.88147718996544,44.88160892984094,44.88165297850825,44.88182868876507,44.88191661200996,44.88198242998956,44.88200459576219,44.88229001802836,44.88231217777687,44.88242755609313,44.88248790564767,44.88256484083953,44.88260310563521,44.88264187632849,44.88266945356852,44.88270241007669,44.88274089926401,44.88285064485209,44.88311415556134,44.88320206065865,44.88347120020334,44.88357544370064,44.88367451575531,44.88377895758492,44.88381738623265,44.88386130695719,44.88402047711429,44.88405894252178,44.88412476497038,44.88421276868755,44.88427864872614,44.88452039648556,44.88458060679966,44.884646469031,44.88467965782755,44.88469049134094,44.88469619709344,44.88465229084045,44.88458107549161,44.88444409495499,44.88412032304631,44.88407616979249,44.88403785984286,44.88402687834536,44.88405442215667,44.88411493724314,44.88420291506483,44.88431262449052,44.88440593692732,44.88449386592005,44.88462555372699,44.88472971115179,44.8848667119919,44.88498714855479,44.88505857619442,44.88516836808605,44.88548456230504,44.88572253938814,44.88589278612114,44.8860631737489,44.88613993688777,44.88612370685696,44.88591538681126,44.88592611189728,44.88612960764429,44.88622310465657,44.88636558436104,44.88655217418454,44.88698048840348,44.88701908575972,44.88690957036505,44.88604757609295,44.88594903358579,44.88595464430537,44.88603700413894,44.8866079417805,44.88681118555831,44.88683318678575,44.88636627961426,44.88629515266992,44.88628967047593,44.88639964196651,44.88648773207807,44.88681681877453,44.88692677691895,44.88703655573648,44.88708089973164,44.88689978930581,44.88687216932761,44.88710333392887,44.88729581518493,44.88731268545548,44.88745545127074,44.88782889523519,44.88802125657697,44.8882135322982,44.88866940703144,44.88875709275282,44.88881767516652,44.88873013147513,44.88842799071619,44.88837866333093,44.88837870240912,44.88847779351966,44.88807751946531,44.88781405912132,44.88770977231061,44.88759476550861,44.88724342402571,44.88712822668489,44.88710683219401,44.88688776554721,44.88686614440248,44.88672376173133,44.88665811784049,44.88632897357912,44.88635130801247,44.88656048363355,44.88658285513264,44.88652819166181,44.88621004738171,44.88617737648669,44.88639745790199,44.8867109366066,44.88689248525605,44.88710692531065,44.88745330074287,44.88744798780708,44.8873546196131,44.886927521466,44.88672907106562,44.88622394007106,44.88522440404781,44.88463683906326,44.8845546670746,44.88458762567904,44.88519203638275,44.88541165821655,44.88762419197022,44.88800839455214,44.88956073557767]}],[{"lng":[-87.29832777242888,-87.29832753115785,-87.29837363150656,-87.29843587619931,-87.29864445658384,-87.29879954732564,-87.29890037351733,-87.29896201615944,-87.2989852759257,-87.299008231553,-87.29898437254613,-87.29895340108557,-87.29885284070065,-87.29877577927961,-87.29876835689406,-87.29879185541397,-87.29885347409218,-87.29902359593726,-87.29947267401674,-87.29957300351114,-87.29972023091374,-87.29979672486634,-87.29985835754175,-87.29995197103939,-87.299912795219,-87.29991345933716,-87.29985917848406,-87.29982026214857,-87.29967311178443,-87.29954980022696,-87.29923991777611,-87.29911657841849,-87.298807176661,-87.29874526831036,-87.29860591893922,-87.29846653167148,-87.2984128533035,-87.29835865787736,-87.29832777242888],"lat":[45.0536155085905,45.05363744492378,45.05370351875833,45.05376378539297,45.05385171054704,45.05389560659538,45.05391205843246,45.05390085969604,45.05387890653937,45.05382966024469,45.05378014474318,45.05376365781496,45.05374158700767,45.05369250557759,45.05366476314803,45.05362086816603,45.05359335279168,45.05358781470412,45.05367580107247,45.0537195277125,45.05382934642402,45.05385675802343,45.05384583876798,45.05379628985001,45.05370112706046,45.05367019841189,45.05362615632771,45.05360976003714,45.05356577366486,45.05355497555221,45.05349447890313,45.05345048882498,45.05336299116917,45.05336293230873,45.05343980437764,45.05348376656487,45.05351119192868,45.0535495717946,45.0536155085905]}],[{"lng":[-87.09680789613078,-87.09671496963638,-87.09666040788781,-87.09663011318307,-87.0966144028645,-87.09662233077351,-87.0966062911593,-87.0965759664991,-87.09649895595584,-87.09648324541075,-87.0964829118375,-87.09653037501332,-87.09652989894072,-87.09648792801337,-87.0964070911743,-87.09631419633733,-87.09629848638795,-87.0962994386601,-87.09636050104274,-87.09638450243278,-87.09637624248738,-87.0963224060179,-87.09633128494023,-87.09634635867975,-87.09641652597671,-87.09651722196023,-87.09659445829494,-87.09668734086806,-87.09681124840883,-87.09687353654179,-87.09690409932554,-87.09688838768773,-87.09694991100216,-87.09712018879584,-87.09718936892527,-87.09720544262707,-87.09719687903174,-87.09728181749742,-87.09727373286219,-87.09721180982241,-87.09721198396174,-87.09732012904725,-87.0973820165233,-87.09738233230716,-87.09730422577832,-87.09716530654848,-87.09713339795343,-87.09713372616062,-87.09719602950298,-87.09738202437013,-87.09747426909321,-87.09754433450505,-87.09756643431597,-87.0975515160531,-87.09752039511359,-87.09750468561671,-87.09750436445246,-87.09755136737054,-87.09757375055182,-87.09756645619532,-87.09750421581853,-87.09750453397281,-87.09754359178639,-87.09752677044982,-87.09745786200872,-87.09745787317952,-87.0974116786938,-87.09720239480039,-87.09708575501011,-87.09700891640138,-87.09693807357071,-87.09680789613078],"lat":[45.05477888931716,45.05479565350743,45.05482295952078,45.05487254419209,45.05491630875687,45.05513593336765,45.05520191119103,45.05526781182056,45.0553778108489,45.05542157477913,45.05555350301768,45.05572911896542,45.05581687745985,45.05592467609316,45.05604751984863,45.05615767921111,45.05620144069532,45.0562453490132,45.05648151614295,45.05672855363797,45.05686027225826,45.05712389714022,45.05749713532138,45.05760695010135,45.05769481522361,45.05774407509129,45.05775504385148,45.05775487132703,45.05772201643492,45.0576833736852,45.05762845554512,45.05756250747282,45.0575075339603,45.05745250625888,45.05740306946706,45.05732077206803,45.05714502276403,45.05703521948976,45.05699112975128,45.05688153100751,45.05681543215157,45.05673322856274,45.05663972145,45.0566177850097,45.0565300017543,45.05642041425892,45.05637656026657,45.05635434637179,45.05629966972381,45.05620059634757,45.05613458812132,45.05605197731817,45.0559917763911,45.05592585100732,45.05588202140975,45.05581607528531,45.0557282989396,45.05566226067141,45.05559644224726,45.05555237505361,45.0554647110293,45.05544277707683,45.0553768211734,45.05533278638134,45.05526717922302,45.05515718968448,45.05511325136533,45.05499822166755,45.05487203921303,45.05480622942959,45.05477882909464,45.05477888931716]}],[{"lng":[-87.09627039047875,-87.09619350398307,-87.09614705574063,-87.09613134402227,-87.09605432867843,-87.09603861779053,-87.09597038414584,-87.09598485799422,-87.09594674426305,-87.09593864445215,-87.09597816539276,-87.09602428273072,-87.0960239648057,-87.09611732473896,-87.09630361557944,-87.09634951096474,-87.09634917885458,-87.09638109302325,-87.09640395165988,-87.09639601013382,-87.09635060301042,-87.0962418336541,-87.09623404799061,-87.0962498528521,-87.09630295043912,-87.09641172033771,-87.0965671494337,-87.09672069267252,-87.09684492017311,-87.09691443663576,-87.09696876732798,-87.09709250515243,-87.09714632566956,-87.09717657452627,-87.09720820440208,-87.09721539669519,-87.09718392766776,-87.09708343249301,-87.09696800322668,-87.09689772109191,-87.09664210441333,-87.09651870054851,-87.09640276630869,-87.09636348011381,-87.09634859413137,-87.09636403537533,-87.09640225989411,-87.09650300687434,-87.09657993890973,-87.09663407723069,-87.09666472284047,-87.09659554081885,-87.09645619101907,-87.09636386359651,-87.09627039047875],"lat":[45.05826046454676,45.05832095771063,45.05837603727728,45.0584198005042,45.05852980453515,45.05857356594613,45.05865116055033,45.05869456811401,45.0588044358071,45.05887033293759,45.05904603136688,45.05912288011751,45.05914481345334,45.05927630696335,45.05948499787427,45.05955058354443,45.05957279915182,45.05961664862472,45.05968249536924,45.05979228791146,45.05985807938698,45.05996811610637,45.06001208771936,45.06004483951338,45.06007797744942,45.06007765206248,45.06003378182827,45.06001152826954,45.05995674067433,45.05988508431034,45.05984680676886,45.05978609729132,45.05974217469502,45.05970918871993,45.05964894890798,45.0595225403181,45.05940724978063,45.05927557137407,45.05918796470876,45.05914932133246,45.05903985921574,45.05896864612038,45.05887539403815,45.05882038413706,45.05873814392733,45.05869971889395,45.05865033792165,45.05857328711936,45.05849620040657,45.05843034166343,45.05834251203738,45.05828224070372,45.05824380959052,45.05823302381879,45.05826046454676]}],[{"lng":[-87.31649015592041,-87.31673756201069,-87.31683055690689,-87.31689973573486,-87.31694638911132,-87.31700872225089,-87.31718705400273,-87.31738774680818,-87.31748880223071,-87.31748961199531,-87.31756632108646,-87.31761232139472,-87.3176903990186,-87.31783688137568,-87.31808566445687,-87.31824020724892,-87.31827940837759,-87.31841049102681,-87.31847298234457,-87.31862755056591,-87.31868971536187,-87.31875954872305,-87.31889021748107,-87.31890600808607,-87.31888994750872,-87.31887452972229,-87.31883715410622,-87.3188439595842,-87.31882802854098,-87.31856508837386,-87.31834102575201,-87.31823233353617,-87.31816178138196,-87.31812323306492,-87.31803860578427,-87.31789145820153,-87.31779076352494,-87.3176821622702,-87.31762018821929,-87.31758972797428,-87.31734237222226,-87.31721789344935,-87.31715593248803,-87.31706321649854,-87.31684631872965,-87.31597879963626,-87.31579321299317,-87.31573895213384,-87.31573131445384,-87.31574697989157,-87.31581665579724,-87.31599463092796,-87.31611855455026,-87.31614902784791,-87.31624197507705,-87.31649015592041],"lat":[45.10163918241982,45.10169957112102,45.10173241907065,45.10178186729308,45.10182038082684,45.10189723642691,45.10217710954371,45.10235285911872,45.10246803710145,45.10248465600076,45.10261079421243,45.10274802518325,45.10291273601781,45.10314347489452,45.10342894027264,45.10353862478573,45.10354967446849,45.10354965719274,45.10353846913026,45.10347796363232,45.10343975736827,45.10337360549452,45.10307708580914,45.10301134663182,45.10287931977498,45.10283535397568,45.10278524765403,45.10275868704761,45.10272568013146,45.10235239815186,45.10213277629942,45.10204498495997,45.10195696776559,45.1018471960509,45.10173746955825,45.10160573218837,45.10155076528001,45.10152880246245,45.10152903251745,45.10151790602876,45.10150731327772,45.10148525699415,45.10148520872789,45.10146333368706,45.10144698272065,45.10143080711492,45.10145822582372,45.10148030100859,45.1015076891462,45.10154631552505,45.10156820892675,45.10158448767802,45.10158458912647,45.10159543186072,45.10159536632041,45.10163918241982]}],[{"lng":[-87.051205580122,-87.05115815576883,-87.05115112491718,-87.05116624383787,-87.05120535676744,-87.05122828161768,-87.05127526836418,-87.05135277322378,-87.05142166410903,-87.05147601347376,-87.05153835638959,-87.05173170276476,-87.05179308505264,-87.05181223300048,-87.05184709886159,-87.05194046893227,-87.05196292254477,-87.05196298163642,-87.05191683822189,-87.05186292761265,-87.05183144390234,-87.0517699838619,-87.0517076883585,-87.05163807957192,-87.05154528770876,-87.05149142648598,-87.05141369097196,-87.05135172689336,-87.05132097780886,-87.05127423899609,-87.05125126416307,-87.051205580122],"lat":[45.0967316663754,45.09681961925413,45.09686359857675,45.09701730502211,45.09712155165758,45.0971544990089,45.09719847203539,45.09722044688173,45.09720928315626,45.09718734219202,45.09714900907693,45.09697311949493,45.09690719299633,45.09685930425039,45.09683010816205,45.09669833313826,45.09663252583977,45.09661593173089,45.09655566533769,45.09652276363339,45.09651716856049,45.09652289803389,45.09654491524489,45.09653917746498,45.09641300606638,45.09636379124147,45.09633083834588,45.0963309292903,45.09634194565677,45.09638574738039,45.09644620025219,45.0967316663754]}],[{"lng":[-87.05150736847563,-87.05158506060822,-87.05169360001403,-87.05187891428682,-87.0519724122091,-87.0520960677197,-87.0521888315282,-87.05227427407618,-87.05242915235505,-87.0525066421331,-87.05250675083309,-87.05255325671038,-87.05256811109291,-87.05263757629488,-87.05266144753961,-87.05264531944151,-87.05259946244992,-87.05252961042889,-87.05247553532605,-87.05242850652692,-87.05238954704211,-87.05228948336045,-87.05215830965822,-87.05209562807592,-87.05198788800004,-87.05189477247104,-87.05167792745628,-87.05161558107692,-87.05157723160941,-87.05159335826421,-87.05156170283288,-87.05153117975917,-87.05148454515647,-87.05150736847563],"lat":[45.09916939336038,45.09921865684135,45.09922427427602,45.09915817770972,45.09914736677604,45.09915253071954,45.09912511230637,45.09907021525802,45.09891640019589,45.09878449837675,45.0987515895151,45.09861973703418,45.09853178594665,45.09833976435986,45.09824642392125,45.09815851862399,45.09809263646379,45.09807620157716,45.09809280748006,45.09814222866986,45.09823546132782,45.0983892822573,45.09849925798217,45.09855952582041,45.09863100635305,45.09868064675813,45.09875746367179,45.09879579737387,45.09886175790069,45.09894966208849,45.09899357405984,45.09901556910422,45.09910353702949,45.09916939336038]}],[{"lng":[-87.27112954920861,-87.27106901682058,-87.27105550138921,-87.27110108756723,-87.27113129569166,-87.27116176997961,-87.27122375109164,-87.2713172555307,-87.27137284717246,-87.27138975288021,-87.27135315715142,-87.27126915346182,-87.2712238286929,-87.27112954920861],"lat":[45.14638590992129,45.14645479040652,45.14662127997166,45.14668228746682,45.14671563920879,45.14672677838015,45.14672741434745,45.14671727272594,45.14666853030486,45.1465808835931,45.14649814940299,45.1464092229057,45.14635947037731,45.14638590992129]}],[{"lng":[-87.26243114585303,-87.26245502861535,-87.26249428416747,-87.26250862302709,-87.26260249928438,-87.2628191177527,-87.26294396031003,-87.26301369860307,-87.26340890527659,-87.2635631918936,-87.26396605699519,-87.26415293293917,-87.26430849613543,-87.26433794238751,-87.26458654706101,-87.26461757914572,-87.26480363301775,-87.26492793708864,-87.26499022815844,-87.26508274580631,-87.26523755606894,-87.26526909938281,-87.26533110963021,-87.26541619293681,-87.26553148558308,-87.26567935891742,-87.26588075121037,-87.26605138539028,-87.26632278685476,-87.26667143894613,-87.26729094688356,-87.26731399547977,-87.26751570048982,-87.26760872427786,-87.26778705395552,-87.26783288775742,-87.26793436078209,-87.26802655409691,-87.26814992011792,-87.26817367553102,-87.26818094208463,-87.26820442538653,-87.26816560092959,-87.26811807624567,-87.26806448810854,-87.26790251226427,-87.26756735861147,-87.2673664225602,-87.26734309285672,-87.26728105957125,-87.26709527200143,-87.26700144222248,-87.2667229224508,-87.2663198217281,-87.26619603726093,-87.2660881495981,-87.26601790504009,-87.26596330030553,-87.265683845658,-87.2655759469187,-87.26543704468249,-87.26522685885917,-87.26514997929922,-87.26506435841367,-87.26494823300007,-87.26488591294229,-87.26481617859024,-87.26474672697256,-87.26473162445801,-87.26473111240682,-87.264738814385,-87.26481650503698,-87.26482395476901,-87.26471561646606,-87.26463080520162,-87.26451418250961,-87.26435115711863,-87.26428118243923,-87.26422761355555,-87.26421991182785,-87.26422707597276,-87.26425833155848,-87.26436647274549,-87.26452201073694,-87.26456893725741,-87.26444405065067,-87.26432027984801,-87.26421160197305,-87.26407243018504,-87.26391710328095,-87.26384714448504,-87.26377796302373,-87.26372284830792,-87.26363780991055,-87.26360682100233,-87.26359201382419,-87.26359184378032,-87.26363141265675,-87.26364611669214,-87.26363905284845,-87.26360808984934,-87.26356119957431,-87.26356173978456,-87.26348384656933,-87.26343006629956,-87.26340701782225,-87.26324486246276,-87.26299632011039,-87.26283391822821,-87.26283366440438,-87.26280291472985,-87.26280346641957,-87.26278810520061,-87.26278817096346,-87.26276383186904,-87.2627333632943,-87.26264830537802,-87.26243948408506,-87.26240079184831,-87.2623854301691,-87.262384660934,-87.26243114585303],"lat":[45.16074181943868,45.16080765407656,45.16085135290824,45.16090064453297,45.1610159794744,45.16114213726564,45.16117551255631,45.16118055718702,45.16114784086987,45.16111441090786,45.16100479762266,45.16093838768947,45.1608948564429,45.16089443847554,45.16081769545431,45.16081731420974,45.1607514475463,45.16072967020675,45.16070753345333,45.16070187288603,45.16070727364955,45.16069621259708,45.16069657348098,45.16068004687175,45.16063048538404,45.16053163592709,45.16031141664784,45.16018554260998,45.16003113819048,45.15989095884726,45.15967400196732,45.15965767697022,45.15958036309899,45.15953083217881,45.15941020278697,45.15936629035544,45.15925647824572,45.15912450642385,45.15877301674341,45.15857554575739,45.15822409096813,45.15798244856563,45.15769684009479,45.1575432359681,45.15744996563017,45.15727871334794,45.15713707266777,45.15709878305391,45.15708781821441,45.15708802069947,45.15711535815636,45.15714855529475,45.1572859152156,45.15743435007458,45.15744544950157,45.15744005210457,45.15742908936559,45.15740696574682,45.15724808060215,45.15720977349625,45.15718787807289,45.15719324773725,45.15718803028519,45.15716600841591,45.15710021314924,45.15700672900314,45.15695189488292,45.15695754585413,45.15697406139489,45.15701793198948,45.15703977387261,45.15712771862717,45.15718809654801,45.15735821608205,45.15740231748381,45.15741330775877,45.15739702509892,45.15738043462785,45.15735327078232,45.15731483338189,45.15729812214046,45.15727636804973,45.15724323603007,45.15711700114601,45.15708352485498,45.15701808007891,45.15706209404926,45.15705667714829,45.1570238002991,45.15702936190018,45.15704568840331,45.15707891222797,45.15711725123283,45.15723251851716,45.1573150422479,45.15742495750127,45.15764437139207,45.15786417224967,45.15817142950601,45.15843512072726,45.15856687477839,45.15863269887775,45.15865465356359,45.15877009142809,45.15883040705231,45.15887992588797,45.1590777305452,45.15933591689421,45.15955537475172,45.15957731039396,45.1596215826016,45.15969304442692,45.15973149766016,45.15991265890678,45.16002234782505,45.16007731316537,45.16015966356691,45.1602857427557,45.1603298243263,45.16036827749099,45.16050047101431,45.16074181943868]}],[{"lng":[-87.2672574146291,-87.26754431594136,-87.26763739611039,-87.26768381021108,-87.26789259867463,-87.26795521952562,-87.26796294106995,-87.26798683217856,-87.26805634101895,-87.26818788551864,-87.26825021479203,-87.26856046477269,-87.26864560533745,-87.26875435781545,-87.26889386110203,-87.26895676415738,-87.26896393319858,-87.26895629220198,-87.2689178851778,-87.26884024768445,-87.26879389591235,-87.26878652454862,-87.26885677212128,-87.26890289774545,-87.26907349682591,-87.26915005326762,-87.26925841541242,-87.26932042455242,-87.26942908775352,-87.26961490644949,-87.26962810204857,-87.27015731317849,-87.27018885903492,-87.27053029778506,-87.27062201538551,-87.27076222587999,-87.27080886097374,-87.2708549535878,-87.27088617955208,-87.27088616946803,-87.27085484157935,-87.2707858498469,-87.27067682837163,-87.27058374039687,-87.27036574453929,-87.2702190636499,-87.27014137087305,-87.26987782615512,-87.26970708326901,-87.2695519770901,-87.26897801101967,-87.26806280987532,-87.26797055021379,-87.26793954236534,-87.26767572067078,-87.26736605755427,-87.26730347814022,-87.26727247038563,-87.26702404079738,-87.26657434526602,-87.26651999085635,-87.26648923845325,-87.26646565194658,-87.26646592438384,-87.26654415058144,-87.26679153025583,-87.2672574146291],"lat":[45.16546130398756,45.16558182133518,45.16564762312919,45.16569149214073,45.1659986104283,45.16615257343223,45.16624052755061,45.16630636300096,45.16641604823681,45.16654240620419,45.16658609494109,45.16676736728459,45.16683297578583,45.16698692161226,45.1670965935611,45.16722806064269,45.16727774326689,45.16733775484173,45.16742573003592,45.16753583312811,45.16762361389343,45.16771120126447,45.16772244680238,45.16768923405879,45.16744801920461,45.16729401092604,45.16714019777447,45.16707416972768,45.1670137580951,45.16696981970836,45.16696000757851,45.16691978314255,45.16690872201341,45.16687019228112,45.16684819281414,45.16677671990089,45.1667328242625,45.16666698060975,45.16657939646381,45.16651300948682,45.16643630614835,45.16633226385648,45.16621713515378,45.16615133262301,45.16593683011455,45.16582755109251,45.16578912358617,45.16569561585161,45.16565721211486,45.16564112394713,45.16561951306264,45.1654828355473,45.16544968246543,45.16544950480871,45.16537848866773,45.16531818997894,45.16529643525767,45.16529625742166,45.16521942028832,45.16502749139973,45.16501662512228,45.16502770242005,45.16505526844799,45.16508284008654,45.16514322580838,45.16524198177244,45.16546130398756]}],[{"lng":[-87.26577515261863,-87.26569673144382,-87.26550298005331,-87.2654099465321,-87.26530922559613,-87.26520163693046,-87.26515476563638,-87.26516248679002,-87.2652474050207,-87.26553516834576,-87.26567493344091,-87.26586083683169,-87.26594675033691,-87.26618593435813,-87.26630287636853,-87.26655077317906,-87.26664384870212,-87.26676763898716,-87.26686148155463,-87.26691530383452,-87.26699294098474,-87.26704074142891,-87.26706208061638,-87.26718580694896,-87.26726396771207,-87.26730209325137,-87.26730203276105,-87.26727893294208,-87.26722428436183,-87.26706141892524,-87.26696883691261,-87.2669139010105,-87.2669061806404,-87.26698299127493,-87.26713824535507,-87.26713850123775,-87.26721532907673,-87.26721558489776,-87.26729269172036,-87.26741691864579,-87.26747121420046,-87.26748708867561,-87.26757180410603,-87.26757202687318,-87.26755585353256,-87.26751712674813,-87.26749406103454,-87.26743998691528,-87.2673936281047,-87.26732395589342,-87.26718441614364,-87.26706044141133,-87.26701433907326,-87.26696772902524,-87.26690624802846,-87.2668596057873,-87.26681245554019,-87.26662722418556,-87.26651908383911,-87.26640219153752,-87.26619351474956,-87.2661614518293,-87.26609940194264,-87.26606890161433,-87.26594454697126,-87.26585202648381,-87.26577515261863],"lat":[45.17250114518855,45.17261066264156,45.17278661507538,45.17285246225628,45.17296257014139,45.17311639613308,45.17324804628275,45.17333599928194,45.17348937715802,45.17374213060029,45.17382986914891,45.17391758967798,45.17395058935374,45.17400526678911,45.17402156917424,45.17401063252615,45.17399373180209,45.17395000031889,45.17390048545431,45.17385620621881,45.17376298564113,45.1736617349892,45.17359810820038,45.17342272460085,45.17326875491265,45.17313689265708,45.1730052404649,45.17293942691808,45.17285147540331,45.17269792209866,45.17258824662498,45.17245640773292,45.17236845486131,45.17217619727542,45.17190704985411,45.17188511428872,45.17177555768009,45.17175362272047,45.17162156761112,45.17133592318856,45.17118194653396,45.17116601075477,45.17087492053385,45.17078716090697,45.17074288724221,45.17072114214112,45.17072115573876,45.17075418001364,45.17080876726236,45.17095169112535,45.17139111921436,45.17165482468837,45.17172067200109,45.17183039052227,45.17191837158916,45.17196226117552,45.17205002621579,45.17231395260431,45.17239631634744,45.17242895871387,45.17245153066894,45.17244007195805,45.17244027219031,45.17242941553518,45.17241855750063,45.17244053395359,45.17250114518855]}],[{"lng":[-87.25787295206995,-87.2578334880329,-87.25782316487552,-87.25781444457826,-87.25781314608081,-87.25778876194671,-87.2577871934654,-87.25779356371177,-87.25780762169965,-87.25786169850375,-87.25793113178031,-87.25800136454824,-87.25806392205054,-87.25815212749609,-87.25813859168417,-87.25812531194039,-87.25811072026833,-87.25806697676731,-87.25802109723107,-87.25797445388837,-87.25792909818176,-87.25787295206995],"lat":[45.17679101840469,45.17685083099293,45.17693328605822,45.17699890156151,45.1770590689666,45.17713612377656,45.17720191112267,45.17730108254474,45.17733967786806,45.17737304489744,45.17738484162854,45.17736346116633,45.1773362716488,45.17720561451503,45.17708995631618,45.1769855540868,45.17692500186877,45.17682549961612,45.17677038491443,45.1767478859874,45.17673160723493,45.17679101840469]}],[{"lng":[-87.20919649947858,-87.20961520234917,-87.20992573164085,-87.2105154552543,-87.21101085017038,-87.21129040503547,-87.2114755107681,-87.21160017632148,-87.21163119116018,-87.21178687220869,-87.21181712031057,-87.21191019351399,-87.21216319549188,-87.21246850156506,-87.21256160767926,-87.21267676846938,-87.21278582401916,-87.212871314753,-87.21289469080799,-87.21289423680517,-87.21287865353487,-87.21277007057607,-87.21272298562425,-87.21260621590534,-87.21245179808358,-87.21228091762246,-87.2121078781732,-87.21203243204847,-87.21196243456151,-87.2116127221572,-87.21152047814945,-87.21133438246021,-87.21124186467215,-87.21116361717195,-87.21114027127666,-87.21112456285226,-87.21113250495706,-87.21119449626788,-87.21137313569416,-87.21154436104538,-87.21160637883069,-87.21159892361734,-87.21154401268885,-87.21124931350013,-87.21109440108766,-87.21091669842475,-87.21079206728943,-87.21069979504551,-87.21051237891331,-87.21029658156854,-87.20998584748068,-87.20992379395517,-87.20989330221991,-87.20976815626601,-87.20942769113323,-87.20924128488795,-87.2089621153678,-87.20886853301958,-87.20877656812834,-87.20869783943897,-87.2086755995942,-87.20866689570761,-87.20870592102808,-87.20891547354816,-87.20900094058284,-87.20902352110825,-87.20902435358222,-87.20897638657559,-87.20894589537559,-87.20886899214091,-87.208806692159,-87.20855874853687,-87.20806255071091,-87.2080315376723,-87.20778328257812,-87.20767480887217,-87.20752006357358,-87.20751978465518,-87.20748980661452,-87.20745845009709,-87.20742688229942,-87.20738064011236,-87.20734907200386,-87.20730285712523,-87.20724221351679,-87.20723311799397,-87.20724951939073,-87.20725683280324,-87.20724937785882,-87.20726470814823,-87.20726518500301,-87.20731145266446,-87.20739722412205,-87.20752937717089,-87.20767669150207,-87.20776229669939,-87.20801086901062,-87.20819614222741,-87.20828972930583,-87.20839019154243,-87.20845249207801,-87.20860733768764,-87.20863835235949,-87.20870013522217,-87.20880884750656,-87.20919649947858],"lat":[45.18036674736864,45.18036123350021,45.18037163940505,45.18036636534116,45.18028901999675,45.18020076947021,45.18015690852697,45.18011269616799,45.18011289054012,45.1800688717486,45.1800684881587,45.18003587906483,45.17997004682522,45.17982672648029,45.17976092190857,45.17965065422515,45.17950253835367,45.17933190640218,45.17924414898832,45.17909054616197,45.1790023994784,45.17871731804434,45.17854119866741,45.17821203374648,45.17790445603021,45.17764092031148,45.17727493625565,45.17722358394351,45.17719093246397,45.17713625357139,45.17710305460647,45.17700455374221,45.17699329197564,45.1770318868415,45.1770538196141,45.1771473917226,45.1771802175308,45.17727906356807,45.17741620221682,45.17750983949482,45.17757549323053,45.17763044364946,45.17769605447238,45.17788295211465,45.17796018411654,45.17803179227663,45.17804281019912,45.17802649099855,45.17793864352706,45.17786191765087,45.17780706277038,45.17780723110888,45.17779635963287,45.17778542520666,45.17778553667416,45.17777479031661,45.17770888945532,45.17767059504785,45.17761546265516,45.17754995782209,45.17751678456256,45.17743443258687,45.17736843459934,45.1772149069375,45.17709378523043,45.17703864145538,45.17697283554794,45.17692890289729,45.1769180336106,45.17691277519475,45.17691800414942,45.17696201222203,45.17707252122771,45.17707232410427,45.17715514323771,45.17722619008772,45.17744632124626,45.17746825610379,45.17751196752386,45.17760009017849,45.17764376267969,45.17777597027974,45.17781964578978,45.17795128815905,45.1782153549653,45.17836872231643,45.17842369891009,45.17859940949577,45.17862173277901,45.17869862240421,45.17878640200447,45.17899513473984,45.17922564834482,45.17946742950017,45.17967582045803,45.17976343286507,45.17998330545796,45.18011498794508,45.18016959886043,45.18021368845383,45.18022477802623,45.18027919744107,45.18027939687835,45.18030116307749,45.18032294776771,45.18036674736864]}],[{"lng":[-87.33685689680233,-87.33688772961845,-87.33704356056371,-87.33716723051639,-87.33741637590126,-87.33750843822844,-87.33769511788925,-87.33783453109072,-87.33801332434999,-87.33812908529525,-87.33840725975675,-87.33853156442434,-87.33865561227199,-87.33877912065546,-87.33911976650975,-87.33924411265271,-87.33961721299646,-87.33998892525918,-87.34020574454063,-87.34039184860544,-87.34119695293903,-87.34154232938975,-87.34187900240278,-87.34197234429445,-87.3420650888374,-87.34229738304795,-87.34248364898987,-87.34283977545634,-87.34286252487684,-87.34304114561414,-87.34308696804399,-87.3433659846401,-87.34344411810135,-87.34383050085643,-87.34409440541948,-87.34418737220516,-87.34427208308594,-87.34430299546747,-87.34430305534644,-87.34428735657175,-87.34427178825797,-87.34425608620698,-87.34422526984747,-87.34420959745263,-87.34420845749899,-87.34419355257172,-87.34416273736971,-87.34416193128844,-87.34426125903697,-87.34427697482526,-87.34432265306461,-87.34430675553141,-87.34431310562188,-87.34435197959402,-87.3443677882868,-87.34441326015428,-87.34441348705266,-87.3444603483595,-87.34450570417255,-87.34456812334406,-87.34459846408427,-87.34470669599021,-87.34487700255576,-87.34492368396495,-87.34492280482536,-87.34496122860398,-87.34503899995705,-87.34527086351375,-87.34542604568311,-87.34562712613025,-87.34580573590361,-87.34614564606258,-87.34616920999494,-87.34644050680495,-87.34659530982461,-87.34668834783359,-87.3467196025732,-87.34696773952861,-87.34715326004977,-87.34760197458425,-87.34787290684659,-87.34801995246376,-87.34814399325951,-87.3484542698052,-87.34867104730021,-87.34876410895923,-87.34895039236385,-87.34924394528565,-87.34936905060758,-87.34952336234528,-87.34955461249686,-87.3496778657761,-87.34980296159875,-87.34991024498514,-87.35025980500194,-87.35052921419285,-87.35074737497789,-87.35077782965958,-87.35084013494672,-87.35102591183026,-87.35118067495316,-87.35124320065356,-87.35155245268984,-87.35186310921091,-87.35198608571588,-87.35235839141946,-87.35251365818884,-87.35263686885241,-87.35269916967607,-87.35303969091729,-87.3532565237187,-87.35359836496642,-87.35387721687066,-87.35390826944743,-87.35400132213822,-87.35406389843111,-87.35421905700385,-87.35427976534275,-87.35437444919803,-87.35454447814804,-87.3547463904015,-87.35533577716579,-87.35536653126994,-87.3561726626158,-87.35620420998248,-87.35629731514362,-87.35648347401158,-87.35676221512151,-87.35688657126384,-87.35697967632265,-87.35704227638224,-87.35725871859349,-87.35735234515219,-87.3575385559493,-87.35756930972454,-87.35775442555452,-87.35806558917628,-87.35812794142778,-87.35874786243731,-87.3588096382618,-87.35908895674748,-87.35927546768272,-87.35940017699667,-87.35958545549617,-87.3596164812672,-87.35980282859146,-87.35998124369893,-87.36023038535549,-87.3604638785488,-87.36086806343125,-87.36124843677682,-87.36132615523994,-87.36134279495788,-87.3613270085137,-87.36129554468685,-87.36129532439521,-87.36118865287949,-87.3611967699334,-87.36121949439985,-87.36128176879352,-87.36128155280444,-87.36135931234574,-87.36135988986844,-87.36146873631445,-87.36146931301906,-87.36187482643943,-87.36201413103296,-87.36210751972628,-87.36246527326453,-87.36268223179525,-87.36276017852053,-87.3628849576134,-87.36321195480001,-87.36327472889631,-87.36330486991739,-87.36338430818923,-87.36342213987894,-87.36350807987655,-87.36359396144093,-87.36367924409652,-87.3637796384443,-87.36385740320635,-87.36405272023303,-87.36408325658017,-87.36414531608725,-87.36419972983396,-87.36431512938441,-87.36434646193257,-87.36444037070893,-87.36465743708185,-87.36499886945599,-87.36515398639482,-87.36537029359414,-87.36552556788774,-87.36558725111071,-87.36567188674312,-87.36571917386924,-87.36571827678401,-87.36573336680178,-87.36576461149726,-87.36578046915277,-87.36578015027266,-87.36581080172589,-87.36587271536695,-87.36587914286201,-87.36587051504097,-87.36588607593765,-87.36587831949467,-87.36589316070791,-87.36588543018593,-87.36590099443873,-87.36593072793961,-87.36597706038143,-87.36603145691407,-87.36607826523955,-87.36613926616278,-87.36613948204277,-87.36625562963567,-87.366719935162,-87.36695937745321,-87.36705184737467,-87.36724615844473,-87.36736241893702,-87.36746309942059,-87.36776523733513,-87.36798229372131,-87.36829180219615,-87.36850834514422,-87.36863321679408,-87.36906655304726,-87.36912835749922,-87.36937620144604,-87.36950055286935,-87.36971751800696,-87.36974906356699,-87.36980267802143,-87.37013692596554,-87.37019870520389,-87.37032283933566,-87.37057134963409,-87.37060210057875,-87.37094399731812,-87.37097474569019,-87.37112993302394,-87.37115988863269,-87.37134690111121,-87.37137844621833,-87.37171905291586,-87.37175057207561,-87.37190576021895,-87.37219920385679,-87.37232333879855,-87.37235546117557,-87.37254167683633,-87.37260326564601,-87.37294464450214,-87.37310756854319,-87.37322377728101,-87.37328534029577,-87.37350338038976,-87.37353333384009,-87.37368931747132,-87.37409299093112,-87.37468241165811,-87.37471233988266,-87.37480626722599,-87.3748377858583,-87.37496085120716,-87.37505417050473,-87.37511458211485,-87.37539698838344,-87.37558597573711,-87.37579479892578,-87.37593980813617,-87.3760199075153,-87.37596233060043,-87.37582509591844,-87.37562590714785,-87.37538188447935,-87.37525282256348,-87.37511136189178,-87.3750407181698,-87.37483780728795,-87.37482933687178,-87.37480631987565,-87.37480506400512,-87.37475034445042,-87.37474961004078,-87.37471907020173,-87.374686268121,-87.37463967790755,-87.37463958271967,-87.37470806988935,-87.37471555540991,-87.37482258396339,-87.37483830692638,-87.3748298835711,-87.37479891767119,-87.37472938217633,-87.37457340503298,-87.37454161899647,-87.37444127479765,-87.37441725006788,-87.37439352667992,-87.3743937071028,-87.37440809842577,-87.37443102018095,-87.37444641901904,-87.37450840124663,-87.37452321815574,-87.37453853530158,-87.3745533536908,-87.37456869573394,-87.37456912233333,-87.37458441820273,-87.37458452165664,-87.37463036559363,-87.37463839888031,-87.37462968823768,-87.37459893977272,-87.37448215105877,-87.37444981381138,-87.37442744096512,-87.37445584521284,-87.37447137347475,-87.37447201424186,-87.37450286469183,-87.37451778833614,-87.37453329879727,-87.37454837233432,-87.37457761723054,-87.37462464617371,-87.37470178066602,-87.37473930527329,-87.37477835768539,-87.37487114149351,-87.37493253201546,-87.37496327109352,-87.37504810576931,-87.37510167797218,-87.375114756569,-87.37516270416373,-87.37544000440973,-87.37573092102807,-87.37610826446299,-87.3762382866005,-87.37645514717029,-87.37670204711188,-87.37699626862255,-87.37718872129571,-87.37726538601167,-87.37752325598019,-87.37762779162055,-87.37763465981183,-87.37759423001675,-87.37732686607657,-87.37727869100809,-87.37716765680928,-87.37715121023348,-87.37715601301169,-87.37713162099334,-87.37713017061374,-87.37708194157426,-87.37708046209471,-87.37723230068144,-87.37728330209406,-87.37741127084408,-87.37740939493106,-87.3773777135772,-87.37729870058989,-87.37724914871373,-87.37701139835333,-87.37691777038076,-87.37675364723918,-87.37625540420646,-87.37607706537808,-87.3751141141435,-87.37504271853041,-87.37501170283959,-87.37491856385374,-87.37476360101691,-87.37473258514555,-87.37460787098985,-87.37454654541703,-87.37358448259354,-87.37336628395374,-87.37287003192135,-87.37280769957344,-87.37209357962588,-87.37178306479015,-87.37165888943809,-87.3716278744368,-87.37150342447838,-87.3714723834521,-87.37125636182192,-87.37122455370832,-87.37110037803431,-87.3707277971525,-87.37066567791092,-87.37029309734702,-87.37001389071123,-87.3695791692854,-87.36933098024402,-87.36926864911405,-87.36911288629257,-87.36905134931074,-87.36871009217728,-87.36864797576622,-87.36852380465129,-87.3683993336616,-87.36833721666694,-87.36790283622503,-87.36774726391246,-87.36762307833132,-87.36731288344527,-87.36715733857707,-87.36669241759162,-87.36635031734085,-87.36597855110641,-87.3656680200946,-87.3655124802583,-87.36526436581366,-87.36520203798605,-87.36507759837244,-87.3643024911849,-87.36386762704134,-87.3638055180425,-87.36346344633324,-87.36337113386156,-87.36321512336376,-87.36287409421733,-87.36284327425204,-87.36274935653402,-87.36243878265684,-87.36234589245497,-87.36228436057277,-87.36197356965661,-87.36157001894645,-87.36116612726393,-87.36088722011134,-87.3607011857943,-87.36054653320788,-87.36032838072518,-87.36023526118366,-87.36020364536911,-87.35992475599717,-87.35989396025748,-87.35970769808399,-87.35964559080367,-87.35914940103086,-87.35908650039372,-87.35843487244944,-87.35803129826829,-87.3574108177486,-87.35719265679913,-87.35706902526979,-87.35688361488181,-87.35678970457859,-87.35672815024078,-87.3560449170638,-87.35545514152402,-87.3552377986038,-87.35486595679573,-87.35446103419548,-87.35399617603919,-87.35368564758525,-87.35337492605004,-87.35334410760774,-87.35297156131472,-87.35272260505414,-87.3525066384867,-87.35247562775649,-87.35238169467215,-87.35213340417747,-87.35176170785614,-87.35169881662806,-87.35104698045936,-87.35098567420978,-87.3507994350777,-87.35048816621352,-87.35017844901058,-87.34943314471829,-87.3493097480029,-87.34924713054072,-87.34915424745049,-87.3489056144833,-87.34887482903085,-87.34844022361702,-87.34809826721617,-87.3477567728641,-87.34757071316785,-87.34741547913343,-87.34719873023685,-87.34704297499512,-87.34679404437594,-87.34670196923044,-87.34636019867115,-87.34629837958668,-87.34604998078738,-87.34567807290448,-87.34555365231921,-87.3453358826864,-87.34521167200697,-87.34505640805799,-87.34496410025972,-87.34480861126345,-87.34403240781597,-87.34369092360946,-87.34328765786532,-87.34313266962637,-87.34288408799894,-87.34266674926866,-87.34241835979263,-87.34189101128248,-87.341766881224,-87.34173527679799,-87.34154985338391,-87.3413948969673,-87.34111476488023,-87.34092850507722,-87.34083617566195,-87.34068069717974,-87.340463179956,-87.34043160417531,-87.34027719270223,-87.33990411501792,-87.33956352068074,-87.33934603919556,-87.33931443613058,-87.33922213930046,-87.33903558559919,-87.33894268802639,-87.33884873901104,-87.33872543559434,-87.33838352711855,-87.3383222097851,-87.33798056415132,-87.33773140034735,-87.33745282736923,-87.33726632468066,-87.33701833256708,-87.33676968047584,-87.33664608260224,-87.33611759827357,-87.3357464884384,-87.33552864373144,-87.3352808744327,-87.33515616583833,-87.33481501655217,-87.33472134954285,-87.33447304917118,-87.3341009390322,-87.33332523312551,-87.33313928588167,-87.33295330101262,-87.3326731614958,-87.33236326042342,-87.33208341720929,-87.33199108506432,-87.33180436169414,-87.3314315392996,-87.33118378301226,-87.33105913817167,-87.33078088026646,-87.33056339251492,-87.33053260562271,-87.33025277056456,-87.33000449676189,-87.32978748333592,-87.32950843815146,-87.32904262290155,-87.32854592463013,-87.32842204456247,-87.32820447679454,-87.32798748832539,-87.327870973543,-87.32773938381102,-87.32758395998364,-87.32755269297411,-87.32752968437143,-87.32756076975241,-87.3276303548863,-87.32780158162305,-87.32798019060499,-87.32825931990415,-87.32827500494972,-87.32839122730012,-87.32840689393053,-87.32866323129022,-87.32901253085956,-87.32906696497463,-87.3291678136589,-87.32934621978265,-87.32946309443092,-87.32954805279586,-87.3297887977436,-87.33006865963891,-87.33045676246265,-87.33077488639127,-87.33103137867549,-87.33109407239293,-87.33112518526185,-87.33128028799496,-87.33137433984763,-87.33148188758825,-87.33173112179236,-87.33173168379952,-87.33179357357955,-87.3323220739359,-87.33239968315827,-87.33272594093522,-87.33275671773509,-87.33295892840579,-87.3329586980031,-87.33330118161186,-87.33339414820837,-87.33348787402714,-87.33358113833565,-87.3336362223104,-87.3337444212048,-87.3340005678932,-87.33403137071664,-87.33407919659849,-87.33436623980688,-87.33462227698259,-87.33471521005066,-87.33476224432236,-87.33479381900176,-87.33487083952345,-87.33508907562921,-87.33511965589989,-87.33533766421878,-87.3354460362241,-87.33550100429589,-87.33552305354644,-87.33574907233147,-87.33603594958339,-87.33609091965168,-87.33625460172848,-87.33630885685271,-87.33635506414169,-87.3363707597062,-87.3364013069508,-87.33644835128315,-87.33647942969203,-87.33647999362096,-87.33660355757829,-87.33663468020632,-87.33672845657497,-87.33675960314045,-87.33679065581525,-87.33679043095793,-87.336852366627,-87.33691494193853,-87.33694602183211,-87.33694658933919,-87.33702421651249,-87.33710218188091,-87.3371797783352,-87.33719523727223,-87.33722629220759,-87.33725771125354,-87.33728799522494,-87.33728856285883,-87.33750660055368,-87.33750720065277,-87.33755355825163,-87.33763118823394,-87.33767882927287,-87.33769380939967,-87.3377097325187,-87.3377095404951,-87.33772469610447,-87.33772447782231,-87.33775617063327,-87.33777211925978,-87.33788035109033,-87.3378962998238,-87.33789687558513,-87.33791203376947,-87.33791260876693,-87.33794380114689,-87.33794391504058,-87.33795904368041,-87.3379745833835,-87.33798974261663,-87.33800577934777,-87.33803742919211,-87.33805263605957,-87.33811490998289,-87.33811502410357,-87.33817795612865,-87.33823215285621,-87.33821079343757,-87.33821930174715,-87.33819623464616,-87.3382118954711,-87.33822758655937,-87.33822812468075,-87.33819767916438,-87.33819821820327,-87.33821345463373,-87.33819821603085,-87.33819878106696,-87.33815273169436,-87.33815261710525,-87.33813763488519,-87.33815276460965,-87.33815325123662,-87.33816868771703,-87.33816936576025,-87.33804650041432,-87.33804738107204,-87.33803180352996,-87.33803168853839,-87.33800907246165,-87.33785496248292,-87.33780811309643,-87.33779256204441,-87.33768436465698,-87.33763777233622,-87.33756104457238,-87.33736704100906,-87.33709644288341,-87.33705132103667,-87.33689604133717,-87.33689581556438,-87.33684955982854,-87.33675648149844,-87.33655697618261,-87.33649457389193,-87.33643284779137,-87.33640137721581,-87.3362939591477,-87.33625655110926,-87.33625586601896,-87.33620957443071,-87.33620968591487,-87.33617194042564,-87.33612488680465,-87.33609431911711,-87.33601656051583,-87.33597064129762,-87.33592480338402,-87.33583115184506,-87.33574748035741,-87.33574713544098,-87.33573155522048,-87.33573199103941,-87.33574845017931,-87.3357402664122,-87.3356937442456,-87.33566396778471,-87.33564906407838,-87.33558619811637,-87.3355791558629,-87.33558799682072,-87.33556432329794,-87.33557206607843,-87.33553363380395,-87.33558118859388,-87.33561213107824,-87.3356128060359,-87.33563685944766,-87.33563688444377,-87.33565322326204,-87.3356455944006,-87.33562282420927,-87.33563119167663,-87.335616054149,-87.3355856848931,-87.33555442748897,-87.33552461335586,-87.33542409950738,-87.33539315074245,-87.33531608456646,-87.335240230775,-87.33521722844561,-87.33517822391754,-87.33517776794946,-87.33509408286028,-87.33507865860165,-87.33504092925364,-87.33499384018259,-87.33494778818749,-87.33492560499182,-87.33491806743405,-87.3348489014099,-87.3348495748408,-87.33478815361832,-87.33480403664163,-87.3348046861646,-87.33478123716402,-87.33471994855705,-87.33469708683376,-87.33469730273072,-87.33458927115507,-87.33459025635216,-87.3345360242669,-87.33455954476584,-87.3345513405832,-87.33456056858098,-87.33449960027104,-87.33448502392406,-87.33449267538619,-87.33447707660454,-87.33444657727399,-87.33447123008594,-87.33448653024293,-87.3345172067353,-87.33467425317525,-87.33471317123052,-87.33475199796921,-87.33478319625274,-87.33482949052468,-87.33487718809663,-87.33489232295652,-87.33489292254066,-87.33490805641858,-87.33492434988055,-87.33493910191456,-87.33500181652036,-87.33501777204121,-87.33504871122722,-87.33507262346966,-87.33525149018304,-87.33527542994794,-87.33536035877034,-87.33540905670542,-87.33550177320934,-87.33554867515339,-87.33565724215377,-87.33567271875827,-87.33573501352167,-87.33578180983086,-87.33584490984884,-87.33596085359889,-87.33599963560765,-87.33621798772202,-87.33625615132357,-87.33629549634725,-87.3363889683671,-87.33643576384385,-87.33654517628207,-87.33663853557832,-87.33671710870544,-87.33677858648558,-87.33682538726949,-87.33688724075395,-87.33704396897532,-87.33707468612467,-87.3370906199316,-87.33712156065801,-87.33718386602634,-87.3371996464891,-87.3372153409107,-87.33721488591097,-87.3372308199245,-87.33723141924776,-87.33724655521989,-87.33724636270095,-87.33726149888976,-87.33726141788991,-87.33727734837353,-87.33727749281411,-87.33729342687731,-87.33729380090422,-87.33730893881446,-87.3373095380685,-87.33732470063596,-87.33732527531744,-87.33734097345781,-87.33737232753472,-87.33733388153777,-87.33719547542078,-87.337125324151,-87.33705619585255,-87.33687757018561,-87.3367145406206,-87.33660557117069,-87.33651332942654,-87.33626493058843,-87.33604007714358,-87.33586160420136,-87.3357995455906,-87.3354582814854,-87.33533459914457,-87.33529581556459,-87.33529494491994,-87.33533381653878,-87.33534963242903,-87.33533369856838,-87.33530237476441,-87.33523287231617,-87.33516294809604,-87.33506222826891,-87.33503177489895,-87.33506290297566,-87.33513327270838,-87.33515589539603,-87.33515626709384,-87.33507165286626,-87.33493188166672,-87.33481588690455,-87.33471557647989,-87.33455366466217,-87.33439804156632,-87.33437496591527,-87.33409575967812,-87.33376217062879,-87.33356907373108,-87.3334610417523,-87.33333741300277,-87.33325135384558,-87.33312841503525,-87.33303461075525,-87.33274108709494,-87.3326785641368,-87.33253374671423,-87.33245450941916,-87.33243894438334,-87.33237752893523,-87.33234554809123,-87.33227706065992,-87.33227670304727,-87.33230045221534,-87.33237067552227,-87.33264271079203,-87.33290713026994,-87.33307822071775,-87.33324177020046,-87.3333891989127,-87.33350674429904,-87.33359167397705,-87.33359223987861,-87.33377888441269,-87.33382538418635,-87.33393441365186,-87.33427671938006,-87.33434667860179,-87.33451022874868,-87.33454886164273,-87.33460364803551,-87.33462683991726,-87.33472762827887,-87.33475081951963,-87.33474460089234,-87.33475333050193,-87.33480724341311,-87.3348308898328,-87.33484635840473,-87.33493225116442,-87.33498590594546,-87.33530515404252,-87.33546101577326,-87.33567049536362,-87.33577879807426,-87.33587169573916,-87.33605054191568,-87.3363299532201,-87.336547469004,-87.33673293228459,-87.33685689680233],"lat":[45.21165426786006,45.21167580384648,45.2117306372945,45.21175827723798,45.21175790069623,45.21174654614882,45.21168620130839,45.21159831254135,45.2113999421717,45.21129012141032,45.21104287936701,45.21095463435881,45.21088888943899,45.21080062984553,45.21063022566729,45.21057517764764,45.21044266211908,45.21028873183745,45.21016213558359,45.21007983193885,45.20952417433703,45.20925204292963,45.20916649254156,45.20912759378063,45.2090673053205,45.20884767397713,45.20869335611867,45.2084293487586,45.20840231042651,45.20827538163373,45.20823144200909,45.20803371206677,45.20796239177784,45.20769796051786,45.20749987646593,45.20741764803753,45.20730766187317,45.20724199058185,45.20712103492243,45.20709929269423,45.20698922132296,45.20696747658265,45.20679179151261,45.20676948524037,45.20672557433907,45.20670384813827,45.20652816307176,45.20637455264286,45.20598472780804,45.20571560771918,45.20543536857199,45.20499054177912,45.20483709783539,45.20461746027396,45.20455144175317,45.20446360598941,45.2044416696824,45.2043752504621,45.20422159145239,45.20411164613616,45.20402402167176,45.20387013820656,45.20356241794963,45.20341441053236,45.20336488353296,45.20318912146662,45.20305702738883,45.20276030524483,45.20260638446476,45.20245803475573,45.20234797867852,45.2020892088406,45.20206162837381,45.20187496101975,45.20179754641517,45.20176482835447,45.20174304933077,45.20164360989052,45.20153877774402,45.20118182669098,45.2009343874461,45.200835409428,45.20076909475841,45.20056532644726,45.20045559036887,45.20042230833469,45.20031805014541,45.20011445828889,45.20005941556904,45.20000955174632,45.19998777122612,45.19993830974277,45.19986639195834,45.19978392718424,45.19947079890274,45.19927282693507,45.19918449899667,45.1991627039286,45.19914051765458,45.19904693794343,45.19897007898178,45.19892595478434,45.19876097808927,45.19863428568122,45.19857356609745,45.19837010244213,45.19826512007815,45.19819934041823,45.19817715606093,45.19798982849876,45.19791271898283,45.19786832463695,45.1977752068953,45.19777480484712,45.1977415171028,45.19773059059947,45.1977308082302,45.19770858912966,45.19769165530364,45.19769728625424,45.19771884304557,45.19770718406173,45.1976960840932,45.19769506513812,45.19768398453505,45.19768388995195,45.19765050676101,45.19762827144555,45.19760639814383,45.19760630300095,45.19759481076584,45.19759476101321,45.19758342542674,45.19758323735864,45.19757213374905,45.19756122937001,45.19756055622089,45.19757156329806,45.19757072124827,45.19755977361463,45.19755948575257,45.19756999118277,45.19759200530591,45.19764636249418,45.19764651866284,45.19771215426191,45.19779448348132,45.19794764762266,45.1981122649554,45.19845748500181,45.19883591274406,45.19896204615019,45.19904963382763,45.19911565465362,45.19915937384786,45.19918131035539,45.19942301274357,45.19964318045119,45.19971965661151,45.19981842716194,45.1998403631591,45.19998281144766,45.20000476639775,45.20018056673045,45.20020252166045,45.20079475270866,45.20094875029065,45.20108030951373,45.20141488622888,45.20164494159874,45.20174913765784,45.20192474131831,45.20225354322633,45.2023416335965,45.20241265546082,45.20272561023155,45.20280243613452,45.20292313150111,45.2030106304409,45.20307673549964,45.20312575054265,45.20314779864095,45.2031748172501,45.20318564845734,45.20318595669593,45.20319677770887,45.20319662984037,45.20320747936401,45.20320739911527,45.20322872726815,45.2032281724884,45.20319518351221,45.20311240942423,45.20302428940761,45.20296382699365,45.20285438595607,45.20276095899665,45.20271142870538,45.20269490020925,45.20253527879095,45.20251932839769,45.20249175486403,45.20243113465753,45.20222777869115,45.2016405682526,45.20156891854634,45.20152483289446,45.20150327389261,45.20137140525615,45.20134928524504,45.20130519966725,45.20095425696168,45.20077810565049,45.20066852985639,45.20060265906697,45.20047072817642,45.20044879156222,45.20029450621083,45.19983825822273,45.19966768868598,45.19961243342977,45.19943688539997,45.19934898791104,45.19928829833889,45.19915574031288,45.19907354315213,45.1989192121008,45.19883081407912,45.1987976864227,45.19863270278839,45.19862119104688,45.1985442022852,45.19852231389929,45.19851099789379,45.1984999092471,45.19851070856493,45.19850997040173,45.19849901667525,45.19849906641828,45.19847666117957,45.19846555581336,45.19845430332486,45.19844319597544,45.198442832677,45.19843170884076,45.19843151363767,45.19842042696079,45.19841983182487,45.19840930666299,45.19840894232684,45.19843032211429,45.19843036969711,45.19844123824992,45.19844102274126,45.19845144028235,45.19845142390616,45.19847317455879,45.1984724771207,45.19848345834621,45.1984834120861,45.19847228818437,45.19847193972588,45.19844972086565,45.19843740100691,45.19842683843061,45.19842618299215,45.19841565696455,45.19840442242923,45.19838237827786,45.19838376768374,45.19836832071582,45.19835972526832,45.19831783016787,45.19824465004255,45.1981294699433,45.19794530092162,45.19765915548128,45.19738789927131,45.19694964623989,45.19669350732519,45.19648208952999,45.19621885275219,45.19564820649973,45.19553830118853,45.1954505717956,45.19525306841184,45.19498963607826,45.19490185030612,45.19477006158339,45.19446268851474,45.19426470754388,45.19411111283829,45.19378131087874,45.19358401338243,45.19329841888111,45.19321607582737,45.19312248980373,45.19303457754446,45.19290301503965,45.19266144626138,45.19257407241395,45.19242042159952,45.19235461052684,45.19217853180862,45.19191523590066,45.19182723887959,45.1917613785028,45.19165146303065,45.19149760967247,45.19136573674506,45.19134414747617,45.19121227700732,45.19119012669836,45.19114625326454,45.19110778668319,45.19103633534439,45.19090461694152,45.19081647119367,45.19072906593204,45.19061921392616,45.19035604438255,45.19024615335048,45.19009261193043,45.18963080331849,45.18958727728182,45.18952146713683,45.18943891047607,45.18923559170078,45.18917518538407,45.18884753332915,45.1887306232391,45.18864225067122,45.1884009809886,45.18822518239407,45.1881371909271,45.18800542702433,45.18782961568424,45.18769754967074,45.18756559974576,45.18745600047082,45.1873792229137,45.18721885830187,45.18693267926496,45.18647128135374,45.18599893078456,45.18580107066299,45.18565246437694,45.18552536412318,45.18533802857366,45.18518379572672,45.18507360103737,45.18424011711976,45.18371367131724,45.18349497487944,45.18333595362662,45.18290447760693,45.18261982124515,45.18233540331709,45.18222588054011,45.18180966114838,45.18169995576648,45.1814371878598,45.18124029186838,45.18106472402877,45.18058212310708,45.18007807237817,45.1795954860579,45.17937659040298,45.17921776818574,45.17901566770716,45.17870903240786,45.17801437735777,45.17790532952172,45.1778070392267,45.17762286525375,45.17757432036558,45.17713416336244,45.177095389456,45.1770952377151,45.17706214863266,45.17702426533245,45.17702411837386,45.17698580256397,45.17695288580894,45.17659768699935,45.17649927304064,45.17632413646719,45.17631313605202,45.17606715331141,45.1759525461079,45.17591986772308,45.17591971507702,45.17587577612733,45.17587618931152,45.17579976250325,45.17579959147984,45.17576691551722,45.17563568375478,45.17560274540477,45.17547151404848,45.17535087252517,45.17518726302306,45.17506677004571,45.17505576893622,45.17500098143019,45.17498999850808,45.17486961002185,45.17483667184897,45.17480399257111,45.17476061377982,45.17472767603132,45.17457419275726,45.17449803135545,45.1744484702581,45.17434454582658,45.17426781960112,45.17410406096027,45.17395045504889,45.17381922834389,45.17368828881649,45.17361155802309,45.17352425059629,45.17351324976722,45.17346930584584,45.17318473425925,45.17305935654758,45.17302641589718,45.17288967455827,45.17287347926325,45.17282430499362,45.17266508267711,45.17264355389855,45.17261044232347,45.17244629661486,45.17240814120016,45.17239715473717,45.17225494685295,45.17212353570191,45.17196510629952,45.17183882223499,45.17176813178368,45.17172404825251,45.17162561032294,45.1715925120924,45.17157096479664,45.17146155625134,45.17143946683731,45.171373833095,45.17134089020858,45.17116625436414,45.17113329159884,45.17091454873029,45.17076680618278,45.17047676414574,45.1703614413088,45.17031750854839,45.17028508081101,45.17025196630727,45.17024153793028,45.16998435343005,45.16978728017791,45.16968885123253,45.16949176014625,45.16932203076266,45.16914134903958,45.16897718287242,45.16883438963769,45.16881285588158,45.16864837277139,45.16851151470077,45.16843505232387,45.16843489638713,45.16840233749959,45.16833693902376,45.1682056674461,45.16817269959082,45.16794265789082,45.16790972946717,45.16784408287871,45.16769620482634,45.16753204789905,45.1672255605171,45.16715968003252,45.16713797369438,45.16708293321738,45.1669736387725,45.16695154417332,45.1667709778138,45.1666505112032,45.16650304838293,45.16638226500645,45.16629989313648,45.16622340127546,45.16615227086879,45.16601539552769,45.16597724931021,45.16580164611813,45.16577995428719,45.16564871733078,45.16550560584434,45.16547908312658,45.16540762879819,45.16534229078978,45.16524359790531,45.16521050786992,45.16513374990063,45.16486026805146,45.16469591332315,45.16452618571356,45.16443875009648,45.16432887962278,45.16421410840626,45.16406598683755,45.16387985942903,45.16384715189578,45.16382559910828,45.16375995636127,45.1636719562856,45.16357372428428,45.16347486705839,45.1634423347771,45.16336557139964,45.16328905304429,45.16326693895036,45.16320145336985,45.16299865559603,45.16286694582047,45.16280673839544,45.16278518800389,45.16275209173705,45.16264253693252,45.16257116822734,45.16252228129287,45.16248902506495,45.16236853034024,45.16233615885929,45.16221004322118,45.16206189089883,45.16193049346879,45.16185412485402,45.16176619944316,45.16162424742968,45.16158029263042,45.1613170351085,45.16117503539363,45.16105461529512,45.16094502673351,45.16087375884894,45.16072036157315,45.16066556995398,45.16055034564887,45.16042997324874,45.16006303473863,45.15999201856938,45.1598878126897,45.15975636692336,45.15958118318002,45.15946043233242,45.15941129853598,45.15933998427109,45.15909890638432,45.15898931222509,45.15895095209185,45.1588305207752,45.15875398294327,45.15873216291762,45.15861140774953,45.15851305301236,45.1583923568854,45.15827190099259,45.15804721131683,45.15773486868622,45.15768021313823,45.15753756170605,45.15743346245751,45.15734043241476,45.15726365144801,45.15720347236504,45.15720892704815,45.15724186673027,45.15729125787355,45.15738459216569,45.15754894563938,45.15769152874446,45.15787809817625,45.15789984244384,45.15798217090684,45.15800420039282,45.15818517228251,45.15848674443065,45.15854709206337,45.15861809028647,45.15879920672803,45.15895272138108,45.15904050331191,45.1592489616311,45.15955621834875,45.15991271053061,45.16026924955421,45.16053235708436,45.16062018485195,45.16068617294248,45.16087264920322,45.16100424805914,45.16111928428969,45.16148686608951,45.1615088233782,45.1615969121504,45.16220000345827,45.16232615409838,45.16278161416759,45.16280371354947,45.16308861479181,45.1631105511205,45.16359339703271,45.16371427572298,45.16380198660401,45.16393356396725,45.16406537612102,45.16425187633681,45.16462524215021,45.16464677835587,45.16471259500524,45.16500341381492,45.16529407485052,45.16538176314886,45.16544756040991,45.16546967604246,45.16555755300324,45.16575506079984,45.16579853200012,45.16601797569884,45.16614990726627,45.16619901196035,45.16623778248722,45.16647316605602,45.16681911480914,45.16686821926046,45.1670931439801,45.16719174147376,45.16724120288634,45.16727982495414,45.16730698219682,45.16738966010776,45.16742245312175,45.16744440737443,45.16760876067183,45.16767474985117,45.16779564768643,45.16786107334706,45.16789442728367,45.16791636616583,45.16802076601196,45.16817975844117,45.16821255257443,45.16823450751367,45.16836065531389,45.16853069251893,45.16864052422962,45.16868420365594,45.16871756056161,45.16879424712663,45.16882702137835,45.16884897631693,45.16923888518468,45.16927715613836,45.16940876272065,45.16953491075962,45.16963897909982,45.16972709470927,45.16974378262609,45.16978203570584,45.16979813863628,45.16983695514453,45.16992489959705,45.16994102345059,45.17029798905561,45.1703141135012,45.17035294852844,45.17036905574736,45.170407888933,45.17050650683114,45.17057233698886,45.17058900572972,45.17068219916532,45.17069830457419,45.17078081894971,45.1708355665404,45.17090174751105,45.17103316163485,45.1710989905773,45.17131874837317,45.17170877106977,45.1722523179175,45.17258164101051,45.1727352558088,45.17306474691294,45.17308648990422,45.17326259873581,45.17343798615634,45.17361409074632,45.173679709534,45.17376768488975,45.17394323089952,45.17416326154987,45.1742510255927,45.17431650058594,45.17433316749407,45.17445920369931,45.17450344708284,45.1747448207426,45.17531581318369,45.1755358145169,45.17557989371087,45.17566766015831,45.17577740263325,45.17621658002359,45.17628299705984,45.17632651765626,45.17648040079887,45.17652432351708,45.17663449022651,45.17685444519035,45.177249830283,45.17738155374479,45.17762378904573,45.1776457254461,45.17773353902611,45.17788720940759,45.17848060208131,45.17859054196603,45.17878826547285,45.17883197593861,45.17913946450972,45.17929330628424,45.17935911650061,45.17960108039046,45.17966690919598,45.17977686155466,45.17986465558455,45.17997421201864,45.18010629827701,45.18023800204028,45.18043609487855,45.18056780697753,45.18080946391807,45.18091916112193,45.18096324233827,45.1812265548423,45.18124888072804,45.1814242235515,45.1816881234377,45.18179769941587,45.18192956242454,45.18208337363939,45.1821490335906,45.182368654713,45.18250088064979,45.18252243841743,45.18269819762578,45.18324728997352,45.18336840819198,45.18345619055412,45.18357152454991,45.18374143009134,45.18385152220529,45.18420240806733,45.18440047454622,45.18497115271932,45.18512495489264,45.18521313874642,45.18538850318229,45.18565223009536,45.18598182160817,45.18620163990525,45.18642094487821,45.18675054730784,45.18697055228833,45.18712435626861,45.18716823133326,45.1874098848286,45.18804695722105,45.18815634541717,45.1882447002696,45.18846416448822,45.18868362687751,45.18894731148472,45.18932095601581,45.18940873827501,45.18980393997948,45.18995790352663,45.19035286561983,45.1904631506083,45.19061699861075,45.19074867609788,45.19088033030559,45.19131945342131,45.19145169023284,45.19169290477444,45.1918026000037,45.1918249116321,45.19246199587991,45.19281332520362,45.19298908057502,45.19328518732952,45.19348286164586,45.19365880550113,45.19381241040443,45.19409800940502,45.19420787234395,45.19455922960669,45.19467997192104,45.19507526674396,45.19517388773839,45.1952559838312,45.19539324690793,45.1954099155347,45.19544818513672,45.19546485677733,45.19552486982153,45.19563492480471,45.19587662135863,45.19589274752254,45.19599698879593,45.19603017876709,45.19657895754419,45.19661158407344,45.19682060523107,45.19712385811359,45.19731955867547,45.19745680589512,45.19767087942324,45.19773143974257,45.19786285637593,45.1979342743782,45.19808258715645,45.19825801294898,45.19829660914127,45.19864771022539,45.19878475013552,45.19884530643942,45.19905902631231,45.19913044401433,45.19937773201547,45.19952562423005,45.19971761674061,45.1998495747013,45.19992099418245,45.20011316167079,45.20040374673505,45.20052992198688,45.20054660773512,45.20065085084417,45.20078226566251,45.20087040145259,45.20089214457556,45.20093601958722,45.20095270410409,45.20099097365795,45.20100764502354,45.20104589731818,45.20106256443206,45.2011666471595,45.20118333523375,45.20126547858318,45.20128216430727,45.20134237141518,45.20135904038563,45.20139731236651,45.20141341665557,45.20145225210162,45.20147399346884,45.20182523070846,45.20200099095334,45.20237470747593,45.20246252374669,45.20252842285654,45.20263846302964,45.20272130129789,45.20275420346874,45.20280380867094,45.20290828098916,45.20298573739233,45.20302432652575,45.20302400594559,45.20296990460851,45.20292594668938,45.20288734782837,45.20283781790793,45.20277233483912,45.2027063177175,45.20268963172957,45.20267877443126,45.20268446593537,45.20275034470409,45.20281100480635,45.20284967674368,45.20289878632282,45.20294262598094,45.20298647396035,45.20304668100742,45.2032224893187,45.20342063600485,45.20370597846485,45.20386003997147,45.20396990702042,45.20403041052456,45.20404731057344,45.20412968105251,45.20438800035406,45.20458602702708,45.2047179666404,45.20489398529271,45.20498142745841,45.20509163724169,45.20515752132111,45.20544377900499,45.20548732478928,45.20562290454918,45.20575157703216,45.20579509639774,45.2058831120677,45.20597125835712,45.20627852753709,45.20638822769711,45.20647598450186,45.20660814731525,45.20700270429759,45.20728793573862,45.20744158511543,45.20768845196194,45.20797376269701,45.20814922938055,45.20834137172181,45.20836332651894,45.2086270473002,45.20867088866093,45.20882421619447,45.20919734160086,45.20931824720981,45.2095482347998,45.2096582784519,45.20974620345552,45.20981200636256,45.20995444702092,45.21002024988579,45.21061309108872,45.21076688593094,45.21097574499007,45.21099767228419,45.21104135746631,45.21116207193943,45.21120608414272,45.21140876117952,45.21147990963916,45.21156187818006,45.21159478728732,45.21161664610614,45.21163882560953,45.21163803224218,45.21161610468975,45.21161593133387,45.21165426786006]}],[{"lng":[-86.97335873219248,-86.97323494159309,-86.97323433159092,-86.97321955870378,-86.97320443533809,-86.97325837602693,-86.97337467065961,-86.97352918822573,-86.9737779097437,-86.97390250681708,-86.97415822559815,-86.97428166846619,-86.97436720293045,-86.97444405890717,-86.9745764559411,-86.97480927849377,-86.9750034111715,-86.97530608077803,-86.97549171348147,-86.97570913873416,-86.97604239326235,-86.97635243049012,-86.97647623896174,-86.97691172010056,-86.97728336166658,-86.97753048848527,-86.97769455721458,-86.977779072693,-86.97777980529445,-86.97787336886593,-86.97798933857572,-86.97803543499116,-86.97810148441708,-86.97814375972585,-86.97819021931295,-86.97833846577116,-86.97841592028102,-86.97844645479483,-86.97844642407233,-86.97846198684587,-86.97844610538253,-86.97835318473818,-86.97832209876289,-86.97829151578934,-86.97829065780127,-86.97827509779255,-86.97826018094113,-86.9782446211496,-86.97824403749685,-86.97825989796736,-86.97826050316681,-86.97823683426849,-86.97816777123964,-86.9781359187381,-86.97776306842064,-86.97754639357359,-86.97736064238958,-86.97724405433574,-86.97706557583898,-86.97674755387268,-86.97666214965781,-86.97666257887832,-86.97657763106058,-86.97650779450127,-86.97644564534065,-86.97630606140294,-86.9762360336801,-86.97615888367909,-86.97607347767419,-86.97599500774596,-86.97592588369588,-86.97580948084246,-86.97568576526886,-86.97559311426838,-86.97549897250646,-86.9750804014086,-86.97494781448148,-86.97487869757892,-86.97486288897323,-86.97488682061015,-86.97497167509761,-86.97508046084124,-86.97512753302682,-86.97514202636613,-86.97511906794958,-86.97508859456563,-86.97503372575923,-86.97500260072339,-86.97490941972056,-86.97478611771517,-86.97466109853573,-86.9745454150964,-86.97448327303829,-86.97425850178115,-86.97410317902197,-86.97388587455096,-86.97376183692693,-86.97361514719051,-86.97354418204927,-86.97348321980931,-86.97335873219248],"lat":[45.20975160838248,45.2100594435686,45.21013087804909,45.21016930765218,45.21049915396774,45.21065248886009,45.21080072620813,45.21088865012105,45.21097119759217,45.21099307152076,45.21100379085933,45.21098737208612,45.21096544906318,45.21092697883798,45.21081684207406,45.21050908327945,45.21030043779545,45.21008623403594,45.20999269629252,45.20985499868834,45.209679295764,45.20953617108691,45.2094978198255,45.20942046663625,45.20937630176016,45.20932377579479,45.20915652716043,45.20895847697044,45.20891461374029,45.2086509794735,45.20847514341332,45.20843135533973,45.20834139708958,45.20818949178101,45.20812377224593,45.20796960595036,45.20785969516476,45.20779411724956,45.20774967157972,45.20771126463585,45.20759044596267,45.20737644561362,45.20733230381741,45.20723359903434,45.20718969306233,45.20716790402917,45.20701391701497,45.2069921249439,45.20683795649435,45.20679392921733,45.20672249394699,45.20667348434101,45.2066401493997,45.20664043089599,45.20672282338474,45.20681666644419,45.20688263213288,45.20696506193281,45.20711898691059,45.20744306021471,45.20755275680719,45.20757470980458,45.20775080429835,45.20782209299637,45.20783844805488,45.2077841152077,45.20778394920827,45.20782803624118,45.20793773355568,45.20820176577137,45.20834958665188,45.20850346751404,45.20863014861384,45.20869633068202,45.20874559877669,45.20889428209219,45.20899316221006,45.20908078296818,45.20916869194793,45.20921264743806,45.20927847180395,45.20938825032869,45.20947613963058,45.20954797328869,45.20963569580159,45.20968495618823,45.20972907454563,45.20974569087144,45.20976178524052,45.20974557498247,45.20970175467577,45.20964692832676,45.20960308284091,45.2095042921327,45.20947654689316,45.20947697458733,45.20950462634261,45.20955418343868,45.20958662011639,45.20962551251908,45.20975160838248]}],[{"lng":[-86.99214841579573,-86.99208646426165,-86.99191590611409,-86.99169223327179,-86.99183874730218,-86.99187737141585,-86.99196277639113,-86.99198562546729,-86.99202082414969,-86.99213356572677,-86.99218733890585,-86.9922334270176,-86.99228067458247,-86.99231953569758,-86.99231890072269,-86.99229551739522,-86.99227279432473,-86.99224153417669,-86.99221080067534,-86.99214841579573],"lat":[45.21488375024698,45.21491137185647,45.21502108452326,45.21514177267381,45.21524634051722,45.21532893834323,45.21533963030251,45.21532897616871,45.21528039747222,45.21524061183711,45.21520208523702,45.21515829063011,45.21509258496447,45.2150047196634,45.21497151032766,45.21491688238618,45.21489490344238,45.21488395350141,45.21487808162858,45.21488375024698]}],[{"lng":[-87.14092932520857,-87.14092953273094,-87.14131847451405,-87.14147858094417,-87.14235651201517,-87.14280628694722,-87.14287507073725,-87.14274528722746,-87.14209699345237,-87.14118883546031,-87.14092932520857],"lat":[45.22170156627612,45.22199917987985,45.22222804688553,45.22227368687909,45.22270494551287,45.22270494801764,45.22257136610131,45.22236530678935,45.22202193785452,45.2217015958173,45.22170156627612]}],[{"lng":[-87.14649109099943,-87.14672031088335,-87.14758987641106,-87.14826904804826,-87.14998606852539,-87.15018389784152,-87.15018383802217,-87.1500158041387,-87.14933709646216,-87.14849833424068,-87.14720872993904,-87.14701024511011,-87.14672046825741,-87.14646129667253,-87.14649109099943],"lat":[45.22448992012784,45.22465007930704,45.224947752947,45.2249934095925,45.22483712603719,45.22465388030257,45.22444797284347,45.2242420923095,45.22421924162191,45.22435638225606,45.22419617981406,45.22416956131585,45.22416963434902,45.22424219954346,45.22448992012784]}],[{"lng":[-86.97453323113851,-86.97458740110763,-86.97459466217035,-86.97458716800674,-86.97452487753222,-86.97452536080927,-86.9745565146594,-86.97462552870022,-86.97468884818544,-86.97477376317509,-86.97489809949288,-86.97499097380603,-86.97516119221811,-86.97544116743654,-86.97547180266272,-86.97551102697754,-86.97551835150836,-86.97550295985691,-86.97550287019237,-86.97552669010386,-86.97551862360572,-86.97547912079965,-86.97542491401133,-86.97528977986141,-86.97525466094726,-86.97522359982136,-86.97506811212345,-86.97500695055795,-86.97489012004677,-86.9745864912686,-86.97456377269333,-86.97455608128588,-86.97454061002882,-86.97453323113851],"lat":[45.22292406540041,45.22319330080789,45.22334145920721,45.22340764685802,45.22356127298519,45.2236271105404,45.223715141886,45.22376479038297,45.22378672352028,45.22379178774223,45.22375907743681,45.22370415417248,45.22357195597079,45.22345672524308,45.22343447490597,45.22338544219659,45.22335244255633,45.22329746083091,45.223209130522,45.22316531286317,45.22307733576721,45.22301158900043,45.22296795869617,45.22290417832858,45.22289087015821,45.22289117182078,45.22283585134397,45.22280328867291,45.22270961217541,45.22262560601072,45.22269364129703,45.22274857698884,45.22277010532318,45.22292406540041]}],[{"lng":[-87.03844402606667,-87.03847272835341,-87.03854533576447,-87.03876192157855,-87.0389259316634,-87.03903373326284,-87.03926662335778,-87.03937508890897,-87.0394525670358,-87.03946077912394,-87.03950705702184,-87.03956945668939,-87.03963071619964,-87.0397559345824,-87.03987477122183,-87.03977057978145,-87.03973959336237,-87.03967836407202,-87.03964700467081,-87.03950652209848,-87.03944571481144,-87.0393680002629,-87.03933671853402,-87.03932113369038,-87.03931386757689,-87.03932889459817,-87.03932080736681,-87.03928192164605,-87.03907344479916,-87.03901088617634,-87.0389718688714,-87.03891710967257,-87.03889455287486,-87.03887111927887,-87.03880896479355,-87.03860780165878,-87.03851457600567,-87.03840561063252,-87.03834310630583,-87.03831962369695,-87.03831928272963,-87.03835882952768,-87.03844402606667],"lat":[45.22912064558491,45.2291658352156,45.22920879100259,45.22939219482672,45.229422892545,45.2293401749104,45.2293017705737,45.22925226358506,45.22918619778152,45.22912002456752,45.22908746681759,45.22908177325868,45.22909799103399,45.22910911656339,45.22907450422414,45.22887320173609,45.22885664555928,45.22883986701932,45.22884580430358,45.2289445502034,45.22895029111932,45.22894433568376,45.22893339813399,45.22891161382869,45.22886754219377,45.22882348492867,45.22877995359596,45.22874687718475,45.22871390295981,45.22869202477554,45.22869213858927,45.22871940760295,45.22878577319276,45.22880767130663,45.22882406021248,45.22881883984207,45.22883555030548,45.2288794171068,45.22891774005794,45.22895594890431,45.22897788161037,45.2290441692512,45.22912064558491]}],[{"lng":[-86.96200638683867,-86.96206814706021,-86.96211434028861,-86.96230036651809,-86.96242440440973,-86.96253317819024,-86.96259530936155,-86.96265751607611,-86.96272012474414,-86.96278947008584,-86.96282084467975,-86.96282022671663,-86.96285923854012,-86.96292833760684,-86.96299832595913,-86.96301391570033,-86.96302888752027,-86.96302125878481,-86.96297486802574,-86.96292722989659,-86.9628879991555,-86.96273295824429,-86.96267075603713,-86.96260924346105,-86.96253164476686,-86.96243887898468,-86.96242378219547,-86.96236175001668,-86.96232355640267,-86.96223718103376,-86.96218315607494,-86.96211376026864,-86.96194251170346,-86.96186555695228,-86.96185795075556,-86.96188109334857,-86.96196649116827,-86.96197436859607,-86.96200638683867],"lat":[45.25402778473083,45.25404968266634,45.25404978441128,45.25396697390673,45.25395621086592,45.25397767402879,45.2539776400551,45.25396128808168,45.25392245096386,45.25386184433134,45.25379629333101,45.25376308626377,45.25365891727377,45.25354317431233,45.25345558142542,45.25341717813127,45.25334556412133,45.25327953415131,45.25323835436604,45.25317576511354,45.25316459320692,45.25315934022997,45.25317568932687,45.2532089328602,45.25327494242541,45.25340130729823,45.25344535002046,45.25353315435606,45.25357714380746,45.25364348173547,45.25367073881486,45.25368745587654,45.25368739974762,45.2537264178997,45.25376447199564,45.25380841078119,45.25387988346934,45.25389640588447,45.25402778473083]}],[{"lng":[-86.97540729680516,-86.97545223781236,-86.97559637521933,-86.97553398436516,-86.97540729680516],"lat":[45.27007978819734,45.27016368104778,45.27015006072027,45.27003476067858,45.27007978819734]}],[{"lng":[-86.9745956490095,-86.97466827722161,-86.9747589911214,-86.97477757537018,-86.97470324331452,-86.9745956490095],"lat":[45.27113902594069,45.27119664999059,45.27118386315562,45.2711190949415,45.27109349616197,45.27113902594069]}],[{"lng":[-86.91956429993692,-86.91941698405591,-86.91931528529373,-86.91916075279575,-86.91901454060405,-86.91896755685077,-86.91892175098367,-86.91890668052396,-86.91889074716462,-86.91889118926953,-86.91890636849834,-86.91892189108853,-86.91892270122892,-86.91893856218239,-86.91895321440575,-86.9189690753613,-86.91900010680725,-86.91901593721596,-86.91905484394498,-86.91910994593044,-86.91919481463704,-86.91924123676429,-86.91934270931618,-86.91936570251177,-86.91944258652036,-86.91962067479336,-86.91983114499267,-86.91993978932304,-86.91996968637086,-86.92003182370182,-86.92010948324874,-86.92021024323573,-86.92024050209835,-86.92024084987132,-86.92020972395895,-86.92015513041015,-86.92010011761904,-86.92001813701157,-86.91978127478933,-86.91965703817952,-86.91956429993692],"lat":[45.28360227274992,45.28367368238,45.28380033518743,45.28410784357843,45.28430586868883,45.28439349199529,45.28454753173958,45.28481098407222,45.28485499828113,45.28500859712419,45.28509621350604,45.28511857406831,45.28516247878377,45.28517865869,45.28526119364199,45.28527737415163,45.28546949503018,45.28548624056565,45.28560656184364,45.28563392774013,45.28561202649993,45.2855789613026,45.28539773338093,45.28532633950034,45.28521645986358,45.28506261112767,45.2849141442538,45.28477698675319,45.28475472913536,45.284666951024,45.28451320780412,45.28422731507361,45.28409535699763,45.28394177703211,45.28385429747842,45.28378812470603,45.28374444665664,45.28369834855435,45.2836131918023,45.28359689927745,45.28360227274992]}],[{"lng":[-86.89611089837774,-86.89604143602054,-86.89597907774639,-86.89591779070814,-86.89582411746056,-86.89574629973238,-86.89567683676644,-86.89559809600071,-86.89558336343796,-86.89559888186,-86.89559887672344,-86.8955370825466,-86.89554552617884,-86.89565373441241,-86.89567687595317,-86.8957314576509,-86.89603419729161,-86.89622035631321,-86.89637519235173,-86.89662547555801,-86.89670911007737,-86.896833542259,-86.89691129919667,-86.89698951388891,-86.89698055046091,-86.8969353123821,-86.8969109141498,-86.89672458681993,-86.89665503783057,-86.89659216842608,-86.89656986108852,-86.89654587082519,-86.89651428848774,-86.89646029358924,-86.89640559392949,-86.89638306517982,-86.89628921256099,-86.89624307749116,-86.89619645181558,-86.89615804295529,-86.89611089837774],"lat":[45.29185296044778,45.29191351577344,45.29194613798186,45.29197372757962,45.29199593111262,45.29203432483913,45.29209487992481,45.2921940078971,45.29225943128758,45.29228179611479,45.29232567878543,45.29247927401818,45.29252901230707,45.29256177229491,45.29256127868123,45.29253969414699,45.29230882819436,45.29219855872029,45.29212175611722,45.29203404711716,45.29200594111163,45.29198963508944,45.29196699544914,45.29190667335499,45.29185185931603,45.29181912097373,45.29181339574322,45.29182464342805,45.29181374983982,45.29175353113889,45.29170960078024,45.29159417710237,45.29154493700236,45.29151196333449,45.29150653702352,45.29149579837915,45.29150674773501,45.29153418622538,45.29159986598224,45.29179235534569,45.29185296044778]}],[{"lng":[-86.89371162844137,-86.89375107600644,-86.89376622214886,-86.89376696766891,-86.89377443047339,-86.89379814820393,-86.89385232438045,-86.89394510299206,-86.89400855972704,-86.89407743668225,-86.89414769024749,-86.89422591299405,-86.89422472309172,-86.89425659438787,-86.89425568071407,-86.89438037339535,-86.89447383327037,-86.89459701852439,-86.89480990820306,-86.89478434810313,-86.89466000485486,-86.89450415896455,-86.89444238178619,-86.89441128077742,-86.89433355668336,-86.89425537930484,-86.89417048543555,-86.89408450782476,-86.89399145303429,-86.89388235576405,-86.89378908423252,-86.89369623684679,-86.89363393496726,-86.89362715872927,-86.89366538144846,-86.89371162844137],"lat":[45.29283241610069,45.29289818856152,45.29294191722563,45.29307415301547,45.29311261262114,45.29314532554967,45.29318955812631,45.29322752728277,45.29323319253957,45.29322718854763,45.29321053573121,45.29315021576114,45.29312824197027,45.29308466505409,45.29304300865157,45.29296370167362,45.2929308005829,45.29290827085108,45.29277566960302,45.29277666064834,45.2927766518069,45.29279885127308,45.29282080219889,45.29282107771253,45.29284315493586,45.29281514778265,45.2926620607203,45.29260177264492,45.29256885901433,45.292552387075,45.29255266089518,45.29257432598786,45.29263507781292,45.29270071451153,45.29278896152732,45.29283241610069]}],[{"lng":[-86.89243685680927,-86.8923901051643,-86.89235222312925,-86.89233705462517,-86.89232177583007,-86.89236119388737,-86.89243015078812,-86.89260976214271,-86.89274945830584,-86.89305374942418,-86.89300622502047,-86.89292891518802,-86.89287394323344,-86.89278199383033,-86.89274939988817,-86.89259419860477,-86.89255515198482,-86.89253882599333,-86.89254605077889,-86.89258554027005,-86.89262434908079,-86.89263103798177,-86.89259318105195,-86.89253043488716,-86.89247652859733,-86.89243685680927],"lat":[45.2922682988988,45.29230697053925,45.29241677087721,45.2925046849831,45.2932069547932,45.29327328913995,45.29333874253688,45.2934212707317,45.29351959015921,45.29363983683858,45.29354683805571,45.29345921919496,45.29341496572637,45.29337645363679,45.29331649323137,45.29315192490836,45.29306422095586,45.29295463396408,45.29277873849141,45.29258121260359,45.29245456199649,45.29236135277987,45.29229562263593,45.29226240878256,45.29225700219146,45.2922682988988]}],[{"lng":[-86.89553076241705,-86.89537491768054,-86.89529700257226,-86.89529776359772,-86.89541493181825,-86.8959276495103,-86.89602039429788,-86.89631639526586,-86.89632308799304,-86.89631586751312,-86.89626922616634,-86.89623776456209,-86.89617639922028,-86.89612938586482,-86.89598928438394,-86.89565510701165,-86.89553076241705],"lat":[45.29336857131067,45.29339077321453,45.29344547659097,45.29348994170476,45.29357752145189,45.29385139038705,45.29393380133226,45.2940746246671,45.29390828120719,45.29385069862374,45.29374141018513,45.29367529179863,45.29358754664261,45.2935435100185,45.29346712390094,45.29336857923732,45.29336857131067]}],[{"lng":[-86.89239277577286,-86.89235389049905,-86.8923459240786,-86.89235426290632,-86.89238490863822,-86.89244716070652,-86.89249411405027,-86.89253314480661,-86.89256455391426,-86.89258776330232,-86.89264220457508,-86.89265900049301,-86.89263407809626,-86.892587063872,-86.89252508330446,-86.89247099180997,-86.89239277577286],"lat":[45.29383281019962,45.29388801110026,45.29393167693597,45.29404161105214,45.29419547146272,45.29426693202008,45.29428283612664,45.29428333869471,45.29427744207882,45.29426119689319,45.29418391654417,45.29405159929104,45.29390970852652,45.29386567041685,45.29383303902015,45.29381637527455,45.29383281019962]}],[{"lng":[-86.95591439474052,-86.95603886898377,-86.95610182654228,-86.95621822450369,-86.95624134285798,-86.95628754601712,-86.95654394712912,-86.95669103055275,-86.95690099829406,-86.95704003689093,-86.95707150074227,-86.95714160447797,-86.95716449209935,-86.95715668229101,-86.95711002114321,-86.95695455362788,-86.95673696796651,-86.95661269242176,-86.95652032870275,-86.95642626009146,-86.95633310759369,-86.95627075779269,-86.95617737321118,-86.95612351653114,-86.95603027085016,-86.95596761513828,-86.95595999900192,-86.956014529944,-86.9559053731783,-86.95585151847391,-86.95579655419247,-86.95580455128675,-86.95585127809353,-86.9558810984545,-86.95603737136649,-86.95625431881388,-86.95637844021533,-86.9565661303119,-86.95659622250923,-86.95682206945051,-86.95718701004897,-86.95749695781366,-86.95753603553374,-86.95775426529653,-86.95810365662129,-86.95825021148022,-86.95833608619246,-86.95844444110314,-86.95872407902216,-86.95892601620825,-86.95906464140032,-86.95920484325188,-86.95993341911988,-86.96020433015056,-86.96032104358325,-86.96039788990207,-86.96045990794875,-86.96045950302667,-86.96043564836143,-86.96039743421102,-86.96038832962479,-86.96032632017157,-86.96027957294025,-86.96015828696548,-86.96008534100623,-86.95988225642999,-86.95978889669715,-86.95960982361778,-86.95955466643363,-86.95951557063147,-86.9593906225203,-86.95932716257622,-86.95928133219067,-86.95926544144969,-86.9591017921138,-86.95901575100757,-86.95891427378635,-86.95878917986737,-86.95869479393184,-86.95864839481811,-86.95860881934989,-86.9585080657254,-86.95830557648185,-86.95830439275788,-86.95827403686353,-86.95824287272677,-86.95811768119789,-86.95805494455088,-86.95803886330621,-86.95800732154699,-86.95796091704274,-86.95782005618348,-86.957726318704,-86.95766407983066,-86.95752312410042,-86.95752350251983,-86.9574758146656,-86.95741467353747,-86.95732075714767,-86.9572575745857,-86.95724218025197,-86.95719625152081,-86.95719503807837,-86.95711722304108,-86.9571175990166,-86.95707010793039,-86.95707048650191,-86.95696060957277,-86.95696098824448,-86.95684379744914,-86.95673517704822,-86.95666423876376,-86.95658718692867,-86.95643094814622,-86.95639984029842,-86.9563075276794,-86.95627645018047,-86.95612013283827,-86.9560274415645,-86.95590322354944,-86.95571602648803,-86.95557630569969,-86.95534344596058,-86.95525018419698,-86.95521888296071,-86.95504802549736,-86.95476817713104,-86.95470579577687,-86.9544727838487,-86.95419309264284,-86.95413090729024,-86.95386674591553,-86.95377326101536,-86.95349325779759,-86.95338449967051,-86.9532835853439,-86.95315069368274,-86.95300218993781,-86.95279292579501,-86.9525440768595,-86.95204573190715,-86.95202258525384,-86.95182799908689,-86.95167229235763,-86.95164118526988,-86.95157938216465,-86.95134675337295,-86.95131465996938,-86.95125244613247,-86.95114441047593,-86.95108222698049,-86.95060060635515,-86.95050670379713,-86.95038271783437,-86.95019590644604,-86.9501648024977,-86.95010299749806,-86.94993176048793,-86.94976044557097,-86.94963607888644,-86.94938803380941,-86.94870383517565,-86.94820717052662,-86.9478036078314,-86.94761667538103,-86.94739822345659,-86.94723516814034,-86.94710379593957,-86.94701028182257,-86.94694848089208,-86.94654363354256,-86.94645050233157,-86.94641942585494,-86.94626372902376,-86.94601473916903,-86.94582853690785,-86.94540892219165,-86.94534632508449,-86.94532321231324,-86.94520685239844,-86.94505862273444,-86.94497291057182,-86.94494210674839,-86.9448173580887,-86.94472459645172,-86.94463941033865,-86.94457756088266,-86.94453132978208,-86.94433758906379,-86.94430609975433,-86.94414358808328,-86.94410420206725,-86.94399626726475,-86.94394930157488,-86.94393459431467,-86.94394268178824,-86.94393524487573,-86.94386591442181,-86.94387396993378,-86.9439051390289,-86.94401537084411,-86.9440382005356,-86.94400020103063,-86.94393809174498,-86.94392261664999,-86.94392392487973,-86.94397082534822,-86.94400237888469,-86.94404909019447,-86.94411140431058,-86.94415817784743,-86.94428357527708,-86.94437021351482,-86.94447834944535,-86.94462676715692,-86.94472054509326,-86.94473570348299,-86.94492325519764,-86.94492287531857,-86.94501668412204,-86.94501709826113,-86.94511011223543,-86.94511132529838,-86.94532922765303,-86.9455232024135,-86.94560868574285,-86.94570278429869,-86.9460762118035,-86.946207816799,-86.94642647282838,-86.94652689099739,-86.94670557247967,-86.94679893673388,-86.94686199189962,-86.94690912681607,-86.94692476637161,-86.94692490531791,-86.94694134206027,-86.94701162973583,-86.94711980632464,-86.9471597491153,-86.9471447272303,-86.94709820843651,-86.94709031953577,-86.94716074460672,-86.94720884542905,-86.94725643158792,-86.94730360247249,-86.94731837748779,-86.94735039426672,-86.94737319527847,-86.94743584082151,-86.9474905918991,-86.94749069181968,-86.94747477176499,-86.94747570976362,-86.94754648175063,-86.94764791960088,-86.94774190817496,-86.94781136620539,-86.94793643126052,-86.94813067617133,-86.94840173838557,-86.94880639775204,-86.94902387057024,-86.94908628967167,-86.94917956609098,-86.94942799573236,-86.94945929977455,-86.94961499609492,-86.94983269006617,-86.95008109189109,-86.95036082463571,-86.95070317263377,-86.95085807407524,-86.9510761086343,-86.95120031321859,-86.95169797807074,-86.95222698943857,-86.95225807221401,-86.9523198871548,-86.95256893183277,-86.95288020671556,-86.95309737174929,-86.95340884761679,-86.9534399305349,-86.95390637507741,-86.95417136662374,-86.95423323152984,-86.95451313255606,-86.95488688581472,-86.95514329945584,-86.95538477899674,-86.95591439474052],"lat":[45.3146526118886,45.31474032264417,45.31480050883519,45.31486043932468,45.31486049012926,45.31481671667821,45.31473410052755,45.31466770106834,45.31451408627295,45.31435970224135,45.3143380407804,45.31424989116824,45.31419480636551,45.31416196873619,45.31413990572654,45.31418414506891,45.31421209736168,45.3142397268788,45.31426707933693,45.31431126587723,45.31438304687885,45.31441570101158,45.31443233913479,45.31441064842396,45.31435021467112,45.31428440589345,45.31426282056033,45.31415288377494,45.31413646669975,45.31411477834316,45.31405423939632,45.31399425630046,45.31395555686952,45.31394960285167,45.31394983376308,45.31399331369052,45.31399831408189,45.31399262966419,45.31398161675349,45.31394825870724,45.31384884743107,45.31379353680443,45.31379345552249,45.3137385115862,45.31361674269933,45.31354525995804,45.31349016423734,45.31340247424615,45.31313875635992,45.3128965950123,45.31276470222523,45.31258840700994,45.31190682502757,45.31168675242758,45.31157678035927,45.31146686941926,45.31129130285442,45.31116470877457,45.31104423838997,45.31098358560693,45.31094508674611,45.31085229511768,45.31074246817228,45.31053557599757,45.31046837273065,45.31031499927742,45.31022699662891,45.30995274080584,45.30982131155167,45.30967286594928,45.30941524615105,45.30924533919287,45.30916310089549,45.30910248218816,45.30877856528029,45.30865812640036,45.30843881959589,45.30821382278347,45.30801102523802,45.30793946199561,45.30782982607668,45.30762685560719,45.30725408346611,45.30723154652953,45.30718797968518,45.30709994819951,45.3068918209668,45.30673825178388,45.30660673596572,45.30654063569484,45.30636499037913,45.30600286288385,45.30583270509346,45.30568477407596,45.30544359947933,45.30542166821303,45.30534444679781,45.30519091430177,45.30505394908714,45.30493861843414,45.3048836335245,45.30481827440636,45.30479630069126,45.30468620854912,45.30466427721683,45.30459831235075,45.30457638108759,45.30433547110106,45.30431353862458,45.30410506714237,45.30398965064533,45.30392981225323,45.30387993539286,45.30382006999844,45.30382036651473,45.30378752367165,45.303787253892,45.30374370706524,45.30373279525508,45.303700224783,45.30366766305301,45.3036566230294,45.30361327815505,45.30361303672335,45.30360207566754,45.30359189322883,45.30359229983134,45.30358107383493,45.30357034949765,45.30353813007073,45.30353816229618,45.30348385120338,45.30347291454867,45.30340186952641,45.30336352110476,45.30329781308194,45.30314461618356,45.30292573489342,45.30279919094512,45.30266764850639,45.30247599454342,45.30247650129898,45.3023886027993,45.30233380678257,45.30233410384245,45.3023121992652,45.30227954225955,45.30226855714031,45.30226914620291,45.3022471299541,45.30224715387813,45.30216002396262,45.30212713391879,45.30210525653865,45.30205075527291,45.30205104471992,45.30202914354418,45.30199643484184,45.3019800400321,45.3019800930286,45.30199709059526,45.30207500106327,45.30211966550645,45.30219720175814,45.30221920396829,45.30221954815817,45.30219774719789,45.30216497572054,45.30215459919355,45.30213269094442,45.3020560347554,45.30202372664701,45.3020234566357,45.30196865591502,45.30191417343625,45.30184842738956,45.3017944389084,45.30177250847534,45.30177245317454,45.30171251488006,45.30165228423811,45.30163029939447,45.30162497760892,45.30164695283896,45.30169679051467,45.30172432555499,45.30176261551357,45.30180694817818,45.3020594309116,45.30208165466967,45.30225733128924,45.30236711080764,45.30252118544865,45.30260881811608,45.30267480992649,45.3028505568487,45.30289986675412,45.3030921077329,45.30322397167267,45.30335588818534,45.30366320845676,45.30381684598627,45.30406393224409,45.30429968775575,45.30440954171018,45.30460761303346,45.30498074358069,45.3050907320121,45.30515612288515,45.30533162987897,45.30552923212582,45.30588083786321,45.30603393272825,45.30618760743173,45.3063631739135,45.30647257939395,45.30651686797356,45.30678012104819,45.30680205223247,45.30699978470023,45.30702173471095,45.30717500393849,45.30719697776816,45.30750379975746,45.30770702725703,45.3077779523805,45.30782210376615,45.30792042674872,45.30796389244666,45.30807888969974,45.30813896170432,45.30827088792045,45.30835833984776,45.30844610394264,45.30857788816501,45.30868744689872,45.3089074281384,45.30901701244916,45.30919273717908,45.30934584393032,45.30947799964662,45.30965368709046,45.30980715940419,45.3099391592345,45.31029041707158,45.31064163981279,45.31083925934787,45.31101492397451,45.31103669898322,45.31121252524842,45.31127783300511,45.31138808994789,45.31154145675293,45.31167310747227,45.31171712587947,45.31193712536967,45.31217812021293,45.31239743600975,45.3125625402925,45.31264991469385,45.31272639684633,45.31273215615946,45.31264376309232,45.31257694215203,45.31256588283912,45.31257655133815,45.31257679394587,45.31259806405223,45.31260902675996,45.31261994276281,45.31261957282355,45.31264140114691,45.31267363475995,45.31272778957791,45.31273868020857,45.31277657575646,45.31280971025719,45.31289670447232,45.313038547734,45.31303881328623,45.31306071595165,45.31311519086593,45.31321352002043,45.31326770225338,45.31337728618698,45.31337755263596,45.31354134558338,45.31365531227667,45.31366146366674,45.31376513826065,45.31396245713717,45.31413245241649,45.31431329829425,45.3146526118886]}],[{"lng":[-86.88508581260196,-86.88507832278701,-86.88510903928939,-86.88517104647288,-86.8851796271903,-86.88515161701606,-86.88510876182548,-86.88508581260196],"lat":[45.33396677004951,45.33401607268446,45.33403772746637,45.33402704305999,45.3340160264546,45.33395956255816,45.3339555810478,45.33396677004951]}],[{"lng":[-86.93773114621683,-86.93766892509282,-86.93759076799256,-86.93756774619168,-86.93756030034693,-86.93759128245503,-86.93759891242463,-86.9375681142908,-86.93749044866085,-86.93749806063408,-86.93753734056041,-86.93763865597376,-86.93779362150786,-86.93798009814032,-86.93810451308202,-86.93813569788324,-86.93813495789011,-86.93806466773819,-86.93798065487564,-86.93794893487261,-86.93776125417546,-86.93773114621683],"lat":[45.33687530319746,45.33687532002587,45.33691935754214,45.33694686767777,45.33699617611357,45.33711684219895,45.33722675333042,45.33726530681268,45.33731498195051,45.33733656287638,45.33734774591703,45.33734765210132,45.33731411314217,45.33730280651073,45.33725888555537,45.3371983961688,45.33713818003658,45.33696245403167,45.33689325082243,45.33687495542043,45.33686429570853,45.33687530319746]}],[{"lng":[-86.90699050395361,-86.90677290011998,-86.9065242053958,-86.90639998187851,-86.90622943693327,-86.90617490592369,-86.90616663430218,-86.90618296350924,-86.90622067802387,-86.90629116981788,-86.90632208221474,-86.90638451575516,-86.9065396786757,-86.90669533747443,-86.9068814130372,-86.90713069474906,-86.90702815361911,-86.90699050395361],"lat":[45.33694690989305,45.33695845188173,45.33701359534803,45.33706817381259,45.33716763128567,45.33721678669689,45.33726607070599,45.33728845472348,45.33729904148702,45.33729363974786,45.3372826623768,45.33724947510498,45.33713947276156,45.33707899375228,45.33704578162803,45.33702384358147,45.33692936542393,45.33694690989305]}],[{"lng":[-86.93008903016499,-86.93021381760302,-86.93052394755149,-86.93071146790595,-86.9308748317861,-86.93098378604634,-86.93112414734601,-86.93117154741731,-86.93123417259731,-86.93124922030091,-86.93129706972593,-86.93133598136154,-86.93133629350265,-86.93131324695489,-86.9312746116139,-86.93121240076734,-86.93117415890887,-86.93111113137346,-86.93102682208371,-86.93080865895008,-86.93079234233645,-86.93080034619825,-86.93077764458369,-86.93065325576944,-86.93059986058135,-86.93059620966118,-86.93047597839107,-86.93046124029452,-86.93049916676171,-86.93053937797934,-86.93056142846426,-86.93060055823837,-86.93060886833001,-86.9306020520124,-86.93054748647356,-86.93047822820196,-86.93047869439691,-86.93050947246306,-86.93051029016495,-86.93052613541633,-86.93054081668477,-86.93055669494581,-86.9305721713514,-86.93058804700048,-86.93060432307963,-86.93062020131308,-86.93063527074275,-86.93062776442636,-86.93059711469698,-86.93057442291038,-86.93057409492117,-86.93060607684112,-86.93062112640293,-86.93066854867378,-86.93080046425639,-86.93084784503712,-86.93092533987594,-86.93100272953629,-86.93106503454828,-86.93118886646231,-86.93129025576451,-86.93138340770004,-86.93142184345123,-86.93142923123447,-86.93139729677053,-86.93124923147408,-86.93121048734169,-86.93121840093062,-86.93129527661851,-86.93131755034133,-86.93132597461589,-86.93131786453225,-86.93128667594878,-86.93114573300485,-86.93113009626357,-86.93119143964867,-86.93133138010505,-86.93154837128716,-86.93163381751668,-86.93167298904889,-86.93183538716758,-86.93195207201339,-86.93200689269881,-86.93202946659153,-86.93201342809104,-86.93188710108576,-86.93188696294206,-86.93182416848451,-86.9318160752722,-86.93178444705401,-86.93172210487027,-86.93167419283645,-86.93161193132791,-86.93149501379385,-86.93115309356129,-86.93091911077111,-86.93033532993167,-86.93024227279479,-86.93008649135156,-86.92982926225349,-86.92973629124967,-86.92947914744056,-86.92926087846065,-86.92918308480702,-86.92898836943618,-86.92845132044056,-86.928148425709,-86.92807712727603,-86.92770422655808,-86.92724483888009,-86.92722847280876,-86.92713553858577,-86.92670785550472,-86.92656701154678,-86.92653628118609,-86.92650437517219,-86.92647364477205,-86.92632522924515,-86.92627934661901,-86.9262007214289,-86.92610731422209,-86.9260601978051,-86.92605938674025,-86.92598192782084,-86.92596593613005,-86.92590368737226,-86.92582506357779,-86.92576278576978,-86.925684902283,-86.92552004775824,-86.92539554666109,-86.9251301984645,-86.92505319943834,-86.92499013170567,-86.9249505761673,-86.92491185111348,-86.92486438274763,-86.92480212530666,-86.92473988688538,-86.92453719319803,-86.92442824982821,-86.92441310319842,-86.92436560655725,-86.92431854649647,-86.92421043273782,-86.92411665279107,-86.92402289258435,-86.92395305018169,-86.92392151098046,-86.92390591362124,-86.92391264364757,-86.92390419507392,-86.9238722185458,-86.92381796363583,-86.92367792465677,-86.92346772057874,-86.923140647653,-86.92304740025669,-86.92296944222238,-86.92279087885085,-86.92238634591307,-86.92226111589203,-86.92218363675906,-86.92207514081203,-86.92196622668722,-86.92184099918778,-86.92179430145721,-86.92176360751073,-86.92157611986698,-86.92152903355606,-86.92145126889193,-86.92125620718984,-86.92109347983423,-86.92106158301497,-86.9210463980931,-86.9210459657403,-86.92102240934946,-86.92094421086423,-86.920726453992,-86.92038384812024,-86.91994832920092,-86.9197297623935,-86.91938797625512,-86.9191622385889,-86.91908485479519,-86.91899073762637,-86.91895921859133,-86.9187725465107,-86.91869440153782,-86.91855439053597,-86.91850813536125,-86.91838289598321,-86.91832861255953,-86.91822690192987,-86.91815632613302,-86.91806342341182,-86.9174647472277,-86.91690404566586,-86.91674912705874,-86.9165000010936,-86.91621906460912,-86.91600116132916,-86.91569073799438,-86.91541142676573,-86.91534861200729,-86.91519290778933,-86.91510038373802,-86.9148513535395,-86.91432172894255,-86.9141898194047,-86.91407319599044,-86.91394799824252,-86.91385489645911,-86.91360656775339,-86.91304649149627,-86.91282906611175,-86.91251878684518,-86.91211326138546,-86.91205146166021,-86.91195876370654,-86.91186486865219,-86.91180245486316,-86.91118126664419,-86.91105665272821,-86.91086966007299,-86.9108072504547,-86.91065235213219,-86.910589939953,-86.91027953624149,-86.91012375289912,-86.9096561546318,-86.90943875266969,-86.90922122728185,-86.90897283913226,-86.90866123794352,-86.90847464611343,-86.9080396669886,-86.90782156729398,-86.90750978801459,-86.90734640596368,-86.90721462687729,-86.90718311252371,-86.90715202707591,-86.90715122689217,-86.90713567148984,-86.90710457767848,-86.90710456669215,-86.90713526819361,-86.90716606958367,-86.90719747255676,-86.9071811092842,-86.90713446585684,-86.90706507223865,-86.90701007278025,-86.90694757405429,-86.90686167920913,-86.90672978953206,-86.90665216196361,-86.90655836136489,-86.90655875614929,-86.90649576329172,-86.90648060362209,-86.90641044814814,-86.90624658668813,-86.90606028713569,-86.90596661524002,-86.9058343575644,-86.90567844897974,-86.90556844328577,-86.90553016588225,-86.90546717578306,-86.90536630725001,-86.9051255034658,-86.90505455128893,-86.90503859773301,-86.90502386628982,-86.90499994606485,-86.90500750617667,-86.90503821059984,-86.90503780664909,-86.90502225261881,-86.90500712467434,-86.90492181495198,-86.90485126477377,-86.9048037989126,-86.90478827342871,-86.90477234047076,-86.9047332671759,-86.90467107561089,-86.9045542626297,-86.90410239299906,-86.90396307688401,-86.9037685574671,-86.90361228156262,-86.90355009262893,-86.90351941457605,-86.90340977100854,-86.90330174905988,-86.90323876660811,-86.90319893406954,-86.90320741297332,-86.90319895954346,-86.90322167951632,-86.90328266762951,-86.90329145437529,-86.90322090786991,-86.90317388022935,-86.90311925909207,-86.90310293840501,-86.90304874956222,-86.90300172157889,-86.9029231921442,-86.90265891395927,-86.90237908315117,-86.9022232515067,-86.90212957017944,-86.90209889049176,-86.90191195791704,-86.90188124884352,-86.90170946959216,-86.90167839820543,-86.90167080497531,-86.90167760335837,-86.90181791517219,-86.90182468325938,-86.90180196983208,-86.90173979093464,-86.90150623323541,-86.90138187725016,-86.90125672899923,-86.90122602427887,-86.90119415411405,-86.90108575127886,-86.90102397569171,-86.90101558961852,-86.9010152285035,-86.90103874341838,-86.90107661506541,-86.90111607981846,-86.9011156826666,-86.90117786163754,-86.90130993327237,-86.90162832557854,-86.90175179165919,-86.90187614714092,-86.90193814221873,-86.90215645029735,-86.90218755401098,-86.9025591458057,-86.90277677819964,-86.902901042596,-86.90314977967107,-86.90347621461973,-86.90353781005263,-86.90375544513194,-86.90378792325608,-86.90387958153855,-86.90409801013611,-86.90425356010087,-86.90434692992174,-86.90447021385965,-86.90457163485408,-86.90460243083045,-86.90462566454254,-86.90461797978355,-86.90457891118601,-86.90450837644885,-86.90444641083799,-86.90441490830824,-86.90435352675739,-86.90427558365859,-86.90414327257572,-86.90411219986359,-86.9039575373837,-86.90392643421947,-86.9038630635448,-86.90383196016195,-86.90361484865198,-86.90349845622407,-86.90330347441224,-86.90323291132914,-86.9030082081967,-86.90292999293247,-86.90289971468303,-86.90286741963685,-86.90274306729401,-86.90271239460678,-86.90266577018943,-86.90254102249666,-86.9024481427064,-86.90230055829578,-86.90205875114052,-86.90199715927352,-86.90193467866291,-86.90190378714534,-86.90186503133465,-86.9018263685968,-86.9017721491761,-86.90174860941107,-86.90156257274602,-86.90150786884978,-86.90148555104221,-86.90148475141957,-86.90150017962088,-86.90154034429891,-86.90172548916009,-86.90195955812788,-86.90199840286715,-86.90202969039095,-86.90202916928084,-86.90200685357378,-86.90194507509756,-86.90190481643879,-86.90190561328595,-86.90201440930151,-86.90205347295475,-86.90204587836767,-86.90196058764226,-86.90196098688682,-86.90201517079818,-86.90199205537893,-86.90195378834592,-86.90189908091591,-86.90141020362022,-86.90124736446731,-86.90109977131115,-86.9009750161193,-86.90089021433658,-86.90083550706012,-86.90075009511078,-86.9006647160988,-86.90060174764314,-86.90050130924234,-86.90048536155102,-86.90050091922318,-86.90046985315686,-86.90025107864712,-86.90017296170478,-86.90015665021909,-86.9001726060208,-86.90021923376541,-86.90028122633576,-86.90042912482635,-86.90047584084434,-86.90051340299138,-86.90052895621515,-86.90037275635359,-86.90031098106472,-86.90003838716606,-86.89976615761903,-86.89969651924582,-86.89947942041134,-86.89919931916496,-86.89895050038493,-86.89888854145737,-86.8987649559607,-86.89836866665888,-86.89802704654689,-86.89781709469328,-86.89769310314327,-86.89744477654671,-86.89738256588439,-86.89733633007282,-86.89721193335511,-86.8971198335188,-86.89711943204486,-86.89705522034859,-86.89703410993556,-86.89701974941654,-86.89693361783354,-86.89677894561807,-86.89673231496896,-86.89670916257946,-86.89674861715156,-86.89682615451306,-86.89702743492391,-86.89705850779315,-86.8971833743929,-86.89722163847487,-86.8972370624405,-86.89723745389531,-86.89715291661028,-86.89710588279837,-86.89694363943553,-86.89676460974665,-86.89670281592537,-86.89671114999649,-86.89674203282829,-86.89678127405755,-86.89685183380294,-86.89720875026502,-86.8972870526411,-86.89731793633185,-86.89738050647144,-86.89742682110133,-86.89760578941241,-86.89767546641148,-86.89772218145301,-86.89776901550945,-86.89780077840308,-86.89781633020493,-86.89781549215901,-86.89780076263341,-86.89780075889314,-86.89763006676438,-86.89761449965215,-86.89759974078494,-86.89759932768807,-86.89755347738527,-86.89755342696948,-86.89756977351804,-86.89756976642788,-86.89758479741447,-86.89758549598778,-86.89760025009086,-86.89763210877365,-86.89766290252813,-86.89769506911661,-86.89780346037165,-86.89795998034832,-86.89799055345259,-86.898006414374,-86.89801448069497,-86.89794465344683,-86.897921532726,-86.89782027041709,-86.89773515091272,-86.89768811956678,-86.89767375583055,-86.89773504537925,-86.89781326884537,-86.8978837173328,-86.89796065010256,-86.89800757745284,-86.89800754139581,-86.89802340089793,-86.89803882315466,-86.89810160585159,-86.89810080669234,-86.89811663562601,-86.89817967631282,-86.8982111758524,-86.89832735744663,-86.89868527980285,-86.89914409310384,-86.8992224976263,-86.89922240673428,-86.89928528833681,-86.8993790129929,-86.89938598172824,-86.89937877795262,-86.89934089442161,-86.89930937378071,-86.89924797042831,-86.89916221858475,-86.89912432904568,-86.89906289379526,-86.89899313113386,-86.89899272557234,-86.89903215244992,-86.89902418385996,-86.89900063449048,-86.89890815385718,-86.89890772300636,-86.89887743654411,-86.89886944146316,-86.89890792394401,-86.89895446283131,-86.89918097970202,-86.89929668445889,-86.89936725867686,-86.89941327460008,-86.89940601399152,-86.89936013927256,-86.89924371824044,-86.89918112544106,-86.89915760140894,-86.89918150939678,-86.89930636871551,-86.89960135135365,-86.89969473557925,-86.89969513289171,-86.89974953977404,-86.89978860054872,-86.8998661233575,-86.89994483587829,-86.90002247661785,-86.9000383047338,-86.9000845370458,-86.90013235746899,-86.90014750899267,-86.90017880181627,-86.90017879946812,-86.90020929337155,-86.90025631444188,-86.90027217408729,-86.90028879348581,-86.90030382692198,-86.9003196863369,-86.90033551461943,-86.90036631651348,-86.90046775707134,-86.90059234926694,-86.90071602357162,-86.9008097225654,-86.90094218790712,-86.90118375599867,-86.9014327393771,-86.90163410726136,-86.90216306729393,-86.90233439280931,-86.90244242598438,-86.90256684420679,-86.90283854745623,-86.90308073622693,-86.90320453882867,-86.90354640279966,-86.90371764135408,-86.90391977569605,-86.90416796777863,-86.90454195749308,-86.90462687116772,-86.90477450320769,-86.9049775306427,-86.90527316052045,-86.90536567264401,-86.90578609176454,-86.90612867574069,-86.9064314800591,-86.90658769510112,-86.9067421915336,-86.90699885791014,-86.90719412482959,-86.90737355993066,-86.90737396113326,-86.90743616389508,-86.90743576589237,-86.90746767959834,-86.90753723967929,-86.9075680504713,-86.90766165297106,-86.90796626920194,-86.90800485762048,-86.90809818364947,-86.90811403314342,-86.90809847495095,-86.90809927575718,-86.90806816798514,-86.90800597977439,-86.90799002621401,-86.90799870302536,-86.90806112089344,-86.90813777422751,-86.90818530488318,-86.90824753525457,-86.90852642563669,-86.90868273061454,-86.90875279885768,-86.90886844120587,-86.90894730371359,-86.90901698158035,-86.9092043105661,-86.90929731140983,-86.90934485110607,-86.9093762551495,-86.90939132432005,-86.90945363519734,-86.90948473513629,-86.90948513972907,-86.90950091493544,-86.90950131441278,-86.90951705902842,-86.90951667993025,-86.90947122525111,-86.9093468358874,-86.90931696309266,-86.90931694634379,-86.90933251044564,-86.90933292283972,-86.90931698030934,-86.90922448554608,-86.90920973323173,-86.90920895200045,-86.90934176049691,-86.909381845694,-86.90939084198372,-86.90936015332562,-86.9092824040562,-86.90918990417926,-86.90918990896425,-86.90920547549953,-86.90927605054162,-86.90934585941635,-86.90940806693636,-86.90961034356292,-86.9096961966507,-86.91006953916059,-86.91067960545806,-86.9108242435741,-86.91104899025086,-86.91124408899253,-86.91144629378553,-86.9115563881344,-86.91171947574605,-86.91192927655165,-86.9122869917497,-86.91238033273036,-86.91241225229807,-86.91255981415277,-86.91272262430778,-86.91290236621822,-86.91326788622727,-86.91345504749545,-86.91358615560733,-86.91370330014649,-86.9137894517016,-86.91380532857393,-86.91385128701998,-86.91391482871812,-86.91391404130188,-86.91396172830682,-86.91397676972355,-86.91403193166799,-86.91408637908638,-86.91421900773815,-86.91424973218973,-86.91434345183286,-86.91462406360067,-86.91476407269155,-86.91479556486694,-86.91513782078189,-86.91524670420225,-86.91537953859121,-86.91558215730178,-86.91579193513627,-86.91582345857321,-86.91594709496999,-86.91607162442072,-86.91637507016971,-86.91659305089793,-86.91670983309486,-86.91724701952654,-86.91822763662843,-86.91842239250688,-86.91865594163245,-86.91868645398445,-86.91881979123312,-86.91885062236238,-86.91885055727589,-86.91889785992808,-86.91896827763567,-86.91906160776826,-86.91916294507188,-86.91920962684854,-86.9192096374838,-86.91922550735083,-86.91921071324693,-86.91919556957492,-86.91918001518388,-86.91918003722509,-86.91907204083124,-86.91904631700314,-86.9189712222538,-86.91886280689768,-86.91880181366732,-86.91873882220058,-86.91872449055097,-86.918724131057,-86.91864767818028,-86.91865577416947,-86.91868770716505,-86.9186877509546,-86.91865828266168,-86.91856461177511,-86.91857220550868,-86.91860472777873,-86.91868253779427,-86.91878325828573,-86.91889206695433,-86.91896946246105,-86.91907957374512,-86.91921946416953,-86.91936703573559,-86.91952280626943,-86.91986379584995,-86.92011268551381,-86.92014378023636,-86.92023653167752,-86.92045416351851,-86.92051680651154,-86.92057154117779,-86.92060982112422,-86.92061758798189,-86.92057047801232,-86.92042217566225,-86.92037580461169,-86.92033708237909,-86.92034421894587,-86.92039085302291,-86.9204063774129,-86.9204513938505,-86.92044382015078,-86.92045095178224,-86.92043619967944,-86.92040464392522,-86.92034199794162,-86.92034239157231,-86.92031128302163,-86.92023385519849,-86.92020192124268,-86.92020234554241,-86.92017041151409,-86.920076647264,-86.92007704078456,-86.92004510712363,-86.91992017532974,-86.91990458795307,-86.91991971639047,-86.91996634969509,-86.92004328817538,-86.92004368177692,-86.92007475999405,-86.92007435852379,-86.92043161945077,-86.92072677633183,-86.92081919515886,-86.92091220112077,-86.920928062969,-86.92113740926676,-86.92156468137418,-86.92181299225511,-86.92209235031595,-86.92227928452191,-86.92262098361334,-86.92268341864677,-86.92293067407221,-86.92319611991319,-86.9232739029538,-86.92336742585294,-86.92344521003461,-86.92347630177386,-86.9235461193167,-86.92367815295093,-86.92382651878049,-86.92391207769614,-86.92505564251582,-86.9251406811301,-86.92538904877772,-86.92554510818796,-86.92563915786062,-86.92582429189574,-86.92598004892716,-86.92604256801761,-86.92613560043263,-86.92623669842318,-86.92629884594683,-86.92631521207039,-86.92632438595119,-86.92661896957144,-86.92674278664174,-86.92686662079551,-86.92691336867681,-86.926975990551,-86.92700711312902,-86.92728674359358,-86.92773878971154,-86.92784013042373,-86.92790188975528,-86.92791708838416,-86.92789438532668,-86.92786407811313,-86.92773956696445,-86.92766957371479,-86.92759898567566,-86.92753773790885,-86.92749007792018,-86.92748282108442,-86.92750637605123,-86.92754495837967,-86.92756781334161,-86.92771581604853,-86.92781796938989,-86.92793502322085,-86.92795090367082,-86.92796677638552,-86.92802896926428,-86.92809103942025,-86.92828639333531,-86.9283720783108,-86.92848101106233,-86.92861354563706,-86.92873798017131,-86.92886231222116,-86.92896349607452,-86.92896229268949,-86.92892436794095,-86.92887740023491,-86.92886191554437,-86.92890018666273,-86.92896958586411,-86.92954455134711,-86.92976239391739,-86.92991732193931,-86.93008903016499],"lat":[45.33333939268439,45.33337706816882,45.33349792717335,45.333585113068,45.33370596546547,45.33381522724159,45.33400747117176,45.33408975972965,45.33430354138327,45.33432026162544,45.33451226862029,45.33478111051522,45.33486382234256,45.33503929440641,45.335149084996,45.33523742832944,45.33528084645827,45.33532528278165,45.33537983653799,45.33549042717426,45.33551192958464,45.33559990694102,45.33566568723787,45.33584180652416,45.33597370577497,45.33623296683828,45.33639119618109,45.33645718758709,45.33652290660911,45.33656111825791,45.33661065685435,45.3366983507003,45.33678070875224,45.33695099634638,45.33714868728968,45.33750013409377,45.33765373493917,45.33776314420195,45.33780704874307,45.33782378991886,45.33790632359933,45.33792250284367,45.33800505912311,45.33802123950819,45.33810381425353,45.3381199953112,45.33818059814577,45.33837842745461,45.338487870972,45.3386419781506,45.33879555761069,45.33892694048313,45.33894366024012,45.33906983208968,45.33925622278548,45.33929462897368,45.33932202901814,45.33932185919579,45.33930553453554,45.33922841275702,45.33912368191706,45.33896472112505,45.33879979181667,45.33861883460884,45.33853077418134,45.33833325940245,45.33822363672199,45.33804775534236,45.33780622054594,45.33767460909289,45.337548249692,45.33743269950767,45.33730133693037,45.33692792355056,45.33677447629689,45.33659891105439,45.33640069803374,45.33620850318285,45.33614778926015,45.33613140076874,45.3360046819797,45.33586773552281,45.33576850568977,45.33563127459301,45.33541143119935,45.3347970551036,45.3344454274696,45.33407242753963,45.33380891392549,45.33352339083979,45.33326010635621,45.33312829839224,45.33304054628972,45.33293106792486,45.33269008473238,45.33254764456035,45.33233953360301,45.33229033478344,45.33219162795084,45.3319776721336,45.33191216147176,45.33168189097442,45.33144084995668,45.3313307396643,45.33115559302653,45.3308654680107,45.33064071187545,45.33060222830985,45.33034464181251,45.32996096228553,45.32993914187829,45.32987306664003,45.32947842078745,45.3293249767591,45.32930333095747,45.32925915362339,45.32923750962695,45.32906192005526,45.32899598526249,45.32884252706715,45.32857896715688,45.32840329314602,45.32835938869775,45.32814014089452,45.32805250830795,45.3278764235212,45.32772296812001,45.32754744953609,45.32717403691795,45.326757209995,45.32653781927836,45.3261210998494,45.32596712302225,45.32579158025683,45.3255941705975,45.32548454123828,45.32541856614824,45.3252869301508,45.32519917481585,45.32480383252179,45.32465067907142,45.32460639063181,45.32454097677181,45.32449694829148,45.32434326085744,45.32418995605205,45.32399220565047,45.32379453832845,45.32364066234507,45.32353109751838,45.32333324855973,45.32309166574027,45.32291639883314,45.32278441456193,45.32258710588646,45.32238959191632,45.32212648046507,45.32206658009343,45.32203353396157,45.32192913974579,45.32172694644452,45.32163917979688,45.32156789156452,45.32143613001229,45.32132685999452,45.32115076181121,45.32108536779064,45.32106316309586,45.32079987283437,45.32075640710901,45.32064628911341,45.3204491837895,45.32031764528104,45.32027346296828,45.32018584954418,45.32007613429986,45.3199663554831,45.31983484630749,45.319615185109,45.3193302667387,45.31893538038789,45.31876013964833,45.31851912242288,45.31829980189896,45.3182122015402,45.31808026118254,45.31805859382903,45.31779532086101,45.31770713321344,45.31750981945814,45.31746581269908,45.31729027675944,45.3171149673281,45.31696144151182,45.31689540106683,45.31682931914973,45.3164733398028,45.31607899895024,45.31598029694727,45.31585429724561,45.3157561257602,45.31570129105046,45.31560288290756,45.31550419418611,45.31547155398477,45.31541671068521,45.31537313890365,45.31523082013688,45.31480804998685,45.31472628472731,45.31467137355011,45.31462747878953,45.31459458145074,45.31455691966217,45.31451870584967,45.31451394618106,45.31448642264152,45.31442144075344,45.31439951667345,45.31438856458238,45.31435564597018,45.31434495660726,45.31412560616911,45.31407103780537,45.31400521330747,45.31399452108008,45.31393969641474,45.31392900582215,45.31383058464412,45.31379204786225,45.31362242098656,45.31352932971539,45.3134092304204,45.31329954675125,45.31313526467673,45.31304750878776,45.31280618299383,45.31269675410642,45.31247733230131,45.31232944002597,45.3121430221132,45.31207747194873,45.311989425588,45.31194551876995,45.31192372164632,45.3117479102542,45.3115723797659,45.31141849928485,45.31133606885926,45.31111075453978,45.31095728559042,45.31084744080411,45.31076004024584,45.31071579478938,45.3106775333649,45.31064426161137,45.31056248515648,45.31047992830685,45.31034292318383,45.31032099253298,45.3102332096237,45.31018947752565,45.31010149977436,45.30994796774306,45.30985514860325,45.30978903832077,45.30959697759821,45.30918036897675,45.30878469262505,45.30869701538492,45.30860922588384,45.30841183337208,45.30810487468279,45.30797298931015,45.30788535579182,45.30786301364461,45.30759963375215,45.30749013078893,45.30733624965652,45.30718264794825,45.30716084691226,45.30707267113356,45.30694095782835,45.30678714731944,45.30663395686627,45.30656771224099,45.30612844970923,45.30599686967305,45.30590910439994,45.30579960503401,45.30550379593763,45.30542687886432,45.3052511345899,45.30507586312725,45.30498809851739,45.30496588685199,45.30481269811452,45.30457122498019,45.30435178922065,45.30408797576058,45.3040055021006,45.30351693917416,45.3033195193963,45.3031658971147,45.30303392634032,45.3027484635529,45.30261666461332,45.30233163153073,45.30195818517321,45.30178230844513,45.30169439034126,45.3015848063195,45.301299707352,45.30103669096579,45.30088280933479,45.30077337257296,45.30075116229067,45.30050979291867,45.30048814155776,45.30024662714613,45.30015857953484,45.30009311384737,45.29998302445953,45.29980736715051,45.29974172980605,45.29967584932562,45.29958808393578,45.29936851791157,45.29923686654672,45.29906131379608,45.2990396641956,45.29899547994831,45.29881981530166,45.29866623508851,45.29860074781184,45.29844658547708,45.29833695557864,45.29822715276476,45.29816127415558,45.29813932198159,45.29805155723466,45.29792461939505,45.29769922793905,45.29762775117873,45.29758387286365,45.29757261433468,45.29750146391603,45.29750118514387,45.29739650171185,45.29730845573287,45.29728088764396,45.29728032330819,45.29730212356293,45.29731279531537,45.29731251431436,45.29730157885934,45.29730181589011,45.29725766933937,45.2972410762949,45.29722448092499,45.29718562938154,45.29710905199985,45.2970705071877,45.29700981340128,45.29696066043789,45.29687296067259,45.29680690965613,45.29678835197283,45.29675205074654,45.29670819238195,45.29667569715414,45.29663159971716,45.29663131826199,45.29658774466903,45.29658802272368,45.29656605151339,45.29656633379089,45.29648392833042,45.29639637629102,45.29612722835305,45.29606174101907,45.29591386821389,45.29584254360154,45.29579840362971,45.29577670643446,45.29560117927419,45.29557896446908,45.2955130027594,45.29540328578758,45.29533775375777,45.29526679804219,45.29518428198013,45.29517360769692,45.2951792242886,45.29519020047265,45.2952285314811,45.29538219469202,45.29547017837297,45.29549260259244,45.29558600713245,45.29562446352094,45.29566830613019,45.29571216842144,45.2957508438051,45.29578906343627,45.29593136491555,45.2960682460845,45.29610136799953,45.29615622611488,45.29619503303785,45.29623887154848,45.29630470503139,45.29637056238632,45.29641446376814,45.29652431418651,45.29661201227223,45.29672207464105,45.29689754379736,45.29700726159292,45.29722702098687,45.29731472055717,45.29735868756615,45.29739714950907,45.29756221574664,45.29763937244825,45.29774394729266,45.29785364050186,45.29790309466775,45.29789767210891,45.29787059796931,45.29775519324687,45.29762352724193,45.29749196294538,45.29740432578949,45.29720671184501,45.29703090331105,45.29652593163772,45.29630664866649,45.29619649917994,45.29602083989129,45.29591127398744,45.29585613410969,45.29578982746105,45.29575171621225,45.29569141246718,45.29562544733555,45.29518631430097,45.29512050165409,45.29490099282124,45.29470400352211,45.29466554404432,45.2945831310177,45.29454514017558,45.29456200626543,45.29457269951175,45.29461716136307,45.29480948830543,45.29500779837058,45.29514499348256,45.29525526731958,45.29554050258145,45.29562882788343,45.2957164618943,45.29589254958471,45.29609032751122,45.29611225798831,45.2962663522657,45.29646324891058,45.29650730277825,45.29663942170159,45.29677136619681,45.29683704782035,45.29692530996292,45.29699108093129,45.29704551106126,45.29711118330751,45.29711146609206,45.29716042982357,45.29720422929282,45.29724290391741,45.29730874116694,45.29744090359587,45.29757239614433,45.29776995852589,45.29805595473103,45.29820955049819,45.29840725026395,45.29848403716109,45.29853911301756,45.29860461031832,45.2988129089789,45.29891180882206,45.29898859861998,45.29905443690225,45.29908213773091,45.29914776446302,45.29918566707467,45.29923531944721,45.29931198117414,45.29946024464287,45.29948204723604,45.29961423375599,45.29963577468586,45.29967965735346,45.30016335337166,45.30036096356149,45.30038306830689,45.30053664492922,45.30073399515228,45.30095396737475,45.30097579403726,45.30106355936834,45.30108028368437,45.30114049864327,45.3011622795724,45.30129423306246,45.3013434501333,45.30146978318973,45.30168933345234,45.30194732098127,45.30207361123174,45.30208979584222,45.30224866587655,45.30253481652719,45.30257863657529,45.30271034594119,45.30276541666332,45.30280914393008,45.30285320018971,45.30291337525016,45.30294081962195,45.30297930040758,45.30304497024152,45.30314920148766,45.3031936448594,45.30320982942647,45.30329238600756,45.30345668501721,45.30350054604067,45.30351729258063,45.3038520599303,45.30391761651375,45.30408224131344,45.3044334683194,45.30476211709844,45.30484470024873,45.30486101279811,45.30496511118708,45.30536598202102,45.30557433115258,45.30570634521161,45.30586003099068,45.30605777239315,45.30627720227549,45.30656292503922,45.30676049329724,45.30693660410638,45.30708998438607,45.30719967957609,45.30735377718224,45.30744132607752,45.30750763581066,45.30763902190547,45.30766151316023,45.30770513680495,45.30779324413621,45.30784773939977,45.30788613311615,45.30800143354895,45.30807265312615,45.30813814492117,45.30821534646728,45.30827534569295,45.3083416128757,45.30842958916587,45.30849539710641,45.30860503170931,45.30869288221095,45.30883017462465,45.30900584394639,45.30912090094613,45.30914285309966,45.30924166102688,45.30937324481604,45.3095159969857,45.30976849489155,45.30993825868423,45.31004276912811,45.31013066553126,45.31026248716095,45.31035010259505,45.31040496126209,45.3104488439077,45.31050368025416,45.3107671282337,45.31078331125912,45.31093172707462,45.31094845046804,45.31105240010806,45.31106914387344,45.31116224854572,45.3113050908152,45.3114474356112,45.31156275410292,45.31162830721809,45.31169941871263,45.31178755496725,45.31184213825217,45.31186335966859,45.31185746681256,45.31187392922232,45.31189599289378,45.31193931513319,45.31210365540089,45.31222443387139,45.31227899200179,45.31239966414871,45.31243244137323,45.31245424175201,45.3124649148824,45.31246437057787,45.31248636415817,45.31255731614871,45.31269447378153,45.31285889438795,45.31290247324243,45.31304495856523,45.31322584016058,45.31343433496346,45.31358203301797,45.31370268000214,45.31393861342781,45.31417457113315,45.31443766830809,45.31445961809279,45.314547382092,45.31456931264691,45.3146129352408,45.31484379749257,45.31489301468589,45.31515097352061,45.31559017814881,45.3156283551132,45.31580359999096,45.31599587515704,45.316017956522,45.31606186332748,45.31614990895893,45.31623767884787,45.31628169082092,45.31642988956396,45.31648446379113,45.3165118566423,45.31651764706918,45.31651708197217,45.31646219053912,45.31646192569001,45.31647844985932,45.31652209146664,45.31658217421444,45.3166645110453,45.31694413589478,45.31721332544437,45.31730687610468,45.31743318797535,45.31744934952007,45.31765244527657,45.31782825605761,45.31789409222818,45.31792658665545,45.31821239578013,45.31824545401511,45.31844291511824,45.31866278211386,45.31910218053627,45.31929940496722,45.31943161651461,45.3194972986408,45.31965089606514,45.31978267624385,45.32004627968976,45.32015615076017,45.3202877757309,45.32074876333498,45.32102327321103,45.3215613606969,45.32189077190289,45.32235224416753,45.32261584979598,45.32270361520236,45.3227692943456,45.3228792283776,45.3229446888659,45.32298857100377,45.32308181598375,45.32313083663411,45.32329003620087,45.32346633002685,45.32356363684431,45.3237716936489,45.32399695211215,45.32419426906872,45.32432552176682,45.32447958711441,45.32465460586986,45.32489607693616,45.32498355445757,45.32502717576209,45.32515887664844,45.32527411453841,45.32535661507451,45.3254987140669,45.32559154329161,45.32567385223894,45.32577828809157,45.32591001421043,45.32597007840009,45.32606358916347,45.3263325388509,45.32637640138643,45.32654084386019,45.32655756623501,45.32671658571505,45.32681538764836,45.32700181838619,45.32702346432236,45.32713345396141,45.3275174202955,45.32767085657692,45.32769308350592,45.32813160168244,45.32824143829952,45.32835079481397,45.32848229644881,45.32857010619006,45.32859177390006,45.32863561883364,45.3287070620886,45.32892060900972,45.32910709338369,45.32918901157737,45.32962209866574,45.33029107063806,45.33040603803671,45.33057043352962,45.33058138328968,45.33069637930954,45.33074559510685,45.33098188346462,45.33112437330947,45.33122304186141,45.3313110757401,45.33144264732291,45.33155248791186,45.33159637078381,45.33161255078934,45.33195871133591,45.33204663227695,45.33206871521412,45.33215648097297,45.33257382166003,45.33272446730862,45.33290303413964,45.33325454245431,45.33336428856718,45.3335842523699,45.33371607165364,45.3338696533824,45.33452864031342,45.33505544670521,45.33523127584788,45.33540680668055,45.3356704319431,45.33595595013794,45.33606586403544,45.33614269192497,45.33625225065843,45.33635117167852,45.33643343688198,45.33647715917012,45.33652063849591,45.33655929842862,45.33655934347643,45.33652585110117,45.33637190766038,45.33628354518244,45.33628382285218,45.33625032065223,45.33613523461955,45.3361127344866,45.33607426815392,45.33603029240471,45.33597536739747,45.33588801938234,45.3357838736648,45.33571229886221,45.33560267241602,45.33538288817939,45.33518498861018,45.33516346691374,45.33487775487875,45.33485560919707,45.33472415578882,45.33465793380866,45.33454850260301,45.3344387951161,45.33441686323985,45.33437270328942,45.33419733453516,45.334153715699,45.33413121940379,45.33408760298761,45.33388984947497,45.33386792124186,45.3338243023677,45.33345130522319,45.33325341349988,45.33312160949122,45.33292370941138,45.33276994766512,45.33274801760788,45.33270440984298,45.33268245832544,45.33219870428945,45.33191861938876,45.3318029688902,45.3317205256802,45.33169282325608,45.33149481306639,45.33121997846076,45.33103877156956,45.33091747290203,45.33086794198764,45.33086196903122,45.33087265239649,45.33085794354912,45.33090504418366,45.33092683455912,45.33093779234957,45.33095957959971,45.33095985871227,45.33098143110129,45.33100299355673,45.33104693683387,45.33105768251973,45.33138555739698,45.33139122279952,45.33138553755433,45.33143475122798,45.33145078729083,45.33143439601353,45.33140089868688,45.33139526812074,45.3314005877398,45.33143369277631,45.33149387532598,45.33151569586393,45.331714537183,45.33168027890176,45.33160316149017,45.33156992698492,45.33157568849492,45.33159762658992,45.3315973427535,45.33170670182877,45.33193153514566,45.33201921649825,45.33210132839716,45.33218894113716,45.33225471537971,45.33229890520323,45.33240357518886,45.3324146281311,45.33239247167566,45.33235988351182,45.33237097729674,45.33238709685638,45.33245299154116,45.33249172504889,45.33249683869946,45.33260659463016,45.33273817923258,45.33296299294933,45.33306750058797,45.33308368127076,45.33331995657644,45.33348478017654,45.33378090273919,45.33386309681886,45.33392847784342,45.3339556743767,45.33395564916055,45.33392805161458,45.33385651240675,45.33383453873593,45.33376881922403,45.3337523664304,45.33371425625083,45.33367027746948,45.33362601201876,45.33342207184504,45.33336154790964,45.33332858510675,45.33333939268439]}],[{"lng":[-86.93317930202551,-86.93310075433736,-86.93304672992197,-86.93299332083286,-86.93291543043684,-86.93283688646828,-86.93273655806402,-86.93272869533534,-86.93280648595109,-86.93292370139589,-86.93306329614573,-86.93315655266088,-86.93321998522995,-86.93345964627575,-86.93352307622554,-86.93367826299507,-86.93370917179088,-86.93371722238304,-86.93370892839741,-86.93365517365024,-86.93352999068232,-86.93350675304258,-86.93350620598859,-86.93353810948676,-86.93354528614866,-86.9335368599271,-86.93343583931518,-86.93336521929706,-86.93335742065722,-86.93330317176314,-86.93327213016734,-86.93321021036557,-86.93317930202551],"lat":[45.33890161077114,45.33896757475461,45.3390668258688,45.33911039914071,45.33914937527556,45.33917089321638,45.33918226011937,45.339209616362,45.33927584271088,45.33933581513324,45.3394835923983,45.3395440480827,45.33956600450424,45.33960394775017,45.33962590818676,45.33964752021334,45.33963653531788,45.33962043366706,45.33958195580219,45.33954338134985,45.33948319617935,45.33945556328796,45.33940660740473,45.33936245597758,45.3393182022697,45.33925271362838,45.33905534273735,45.33898930891515,45.33895647065835,45.33891225521595,45.33889622922295,45.33889062842918,45.33890161077114]}],[{"lng":[-86.93606541571314,-86.93601898658142,-86.93594174440194,-86.93591145951461,-86.93589593015759,-86.935904377082,-86.93595849785052,-86.93606745117111,-86.93619984157296,-86.93637144258885,-86.93649521092422,-86.93655057643859,-86.93667451843098,-86.93672812288393,-86.93674439943125,-86.93671325162677,-86.93665814359748,-86.93654916504384,-86.93650125151838,-86.93644779082176,-86.93630751328313,-86.93622201960792,-86.93612825282817,-86.93606541571314],"lat":[45.34377864491493,45.34381115313964,45.34392666110496,45.34401473915201,45.34408070751725,45.34423452250393,45.34431080028362,45.34442061860597,45.3445248800024,45.34461218756211,45.3446397029355,45.34463387515852,45.34458431920866,45.34450755741309,45.34435384155368,45.34426580502054,45.34417824480764,45.34402454568551,45.34398106651885,45.34393687194393,45.34386053249854,45.34378903461041,45.34376739163925,45.34377864491493]}],[{"lng":[-86.9344648780247,-86.93438670889948,-86.93436337886214,-86.93434765694072,-86.93433294714697,-86.93433305966147,-86.93434865065953,-86.93438817779351,-86.93447339795198,-86.93462232339412,-86.93475391711685,-86.9348082843152,-86.93484711087538,-86.93491761021734,-86.9349800363362,-86.93508051882912,-86.93517350508105,-86.93521973056696,-86.93520413020693,-86.93510232649204,-86.93489977315596,-86.93485318089616,-86.93458884294355,-86.93452718928727,-86.9344648780247],"lat":[45.34384086432377,45.34388489503265,45.34391802618629,45.34397273713443,45.34408260981512,45.34430202598646,45.34441214808053,45.34447790995444,45.34455446233316,45.34464791287417,45.3447521557638,45.34477949408689,45.34478447490545,45.34477905565209,45.34474585254184,45.34465797361126,45.34453163706861,45.34439954325268,45.34433386270203,45.34418035003726,45.34401626081006,45.34397787933852,45.34383519194122,45.34382453065083,45.34384086432377]}],[{"lng":[-86.9395365033524,-86.93955599584822,-86.93976223284601,-86.93980899352535,-86.93984042684517,-86.93986334121892,-86.93987889152658,-86.93987927445939,-86.93983267778792,-86.93978600133472,-86.93973918438328,-86.93971531021521,-86.93966893354002,-86.93961497246909,-86.9395365033524],"lat":[45.34505267979943,45.34516459606905,45.34526070501818,45.34526646156075,45.34526055379576,45.34524991322911,45.34522782861259,45.3452058964163,45.3451675168719,45.34514544888319,45.3450963729592,45.34503609807278,45.34500841053958,45.34500302728959,45.34505267979943]}],[{"lng":[-86.9399961488068,-86.93995738200208,-86.93994982829193,-86.93996502276983,-86.94001200094122,-86.94009791705251,-86.94015995601883,-86.94018325299766,-86.94015968134298,-86.94016682561771,-86.94007873523553,-86.9399961488068],"lat":[45.3453761226336,45.34541446546589,45.34543620111199,45.34547993068986,45.34554082629535,45.34558982554388,45.34557854742754,45.34554598006201,45.34548008341783,45.34539195082478,45.34533895423044,45.3453761226336]}],[{"lng":[-86.93870618669821,-86.93869044658845,-86.93865231440867,-86.93864666412414,-86.93869723293275,-86.93873384255397,-86.93878220907582,-86.93881172702692,-86.93880159675149,-86.9387434032204,-86.93870618669821],"lat":[45.34572915062695,45.34573998039005,45.34576652313345,45.34579731660964,45.34582117610535,45.34580809335855,45.345784074577,45.34575448480567,45.34572045938155,45.34570483334262,45.34572915062695]}],[{"lng":[-86.93869381607652,-86.9386768406232,-86.93872002898813,-86.93886633125692,-86.93892608765576,-86.93887380482488,-86.93876290838702,-86.93869381607652],"lat":[45.34620983959275,45.34625832531878,45.3462859277174,45.3463247324217,45.34628189134163,45.34621579009367,45.34620100271867,45.34620983959275]}],[{"lng":[-86.93263777788859,-86.93266879819321,-86.93270840851045,-86.93268430105798,-86.93272402728554,-86.93275535136203,-86.93279444886599,-86.93288688229534,-86.93294931434869,-86.93300435377375,-86.93306615754744,-86.93317391134846,-86.93319681309785,-86.9332283032431,-86.93323627591326,-86.93322068056216,-86.93317359088711,-86.93311103464995,-86.93308051041923,-86.93279234488035,-86.93269887580337,-86.93254287988147,-86.93241938135145,-86.93235714954761,-86.93226370288417,-86.93201478330801,-86.93189081235677,-86.93176522501403,-86.93167195406131,-86.93161041505168,-86.93157879216383,-86.93148592069869,-86.93140008100292,-86.93135331035451,-86.93129212468858,-86.93129216438075,-86.93133089463832,-86.93143284167708,-86.93149411219404,-86.9315801052138,-86.93174347174357,-86.93185163488266,-86.93193763096532,-86.93214108148955,-86.93223285228795,-86.93229648816626,-86.93251328218138,-86.93257581908861,-86.93263777788859],"lat":[45.34787283090755,45.34788941564758,45.34793886356238,45.34801585169331,45.34804842497795,45.3480593927565,45.34805931987352,45.34803198921382,45.34799878252436,45.34795469457621,45.34788884230014,45.34774040271346,45.34764143839651,45.34761978187206,45.3475755502297,45.34750987078292,45.34746584773951,45.34742759812227,45.34741665193783,45.34738977698789,45.34736251045815,45.34729643007376,45.34726385355762,45.34726387267433,45.34728048584259,45.3473688739662,45.34737454156406,45.34733628489628,45.34727583078967,45.34724829569942,45.34724294528061,45.34724888710092,45.34728708376595,45.34732577002721,45.34746871376959,45.34755647678072,45.34762221826048,45.34769922270501,45.34773180931158,45.347764503332,45.34779758994225,45.34786294691582,45.34789563953227,45.34793992483591,45.34793958164028,45.34792835377868,45.34787342218089,45.34786778790046,45.34787283090755]}],[{"lng":[-86.93244840210441,-86.93253450789021,-86.93262787679693,-86.93272800690406,-86.9328138800802,-86.93287619868414,-86.93290733189511,-86.93300099360775,-86.93309397683913,-86.93315590892085,-86.93328106905514,-86.93340502901901,-86.93345946065654,-86.93366845156379,-86.93376134332638,-86.93383149103018,-86.93386977384492,-86.93385356928401,-86.93383900784964,-86.93380798818592,-86.93377655474767,-86.93372211639357,-86.93368304151267,-86.93354295358301,-86.93353627703898,-86.93351248029957,-86.93349639979688,-86.93342688203124,-86.93341967921729,-86.93340424069714,-86.93340053061512,-86.93338817058262,-86.93339226615478,-86.9334086191453,-86.93342114535432,-86.933659535663,-86.93372970067348,-86.93373723645503,-86.93370627999515,-86.93371307193473,-86.93382416718384,-86.93389185307831,-86.93385262638641,-86.93382160719274,-86.93369700173389,-86.93363526230863,-86.93347910804597,-86.93341706465121,-86.93329261676922,-86.9332614853885,-86.93319966119621,-86.93305205798943,-86.93288038805788,-86.93281832238169,-86.9327395887986,-86.93270844547507,-86.93271667157698,-86.93270109698899,-86.93265392598623,-86.93260762559026,-86.93256047593208,-86.93248407974455,-86.93242968890976,-86.93238962279325,-86.93231978236032,-86.93220323776744,-86.93205609051913,-86.9318921977351,-86.93161192511752,-86.9314880337645,-86.93117656329063,-86.93097478065779,-86.93084990556665,-86.93072612026401,-86.93065612999789,-86.93062421805395,-86.93059395270906,-86.93059442195062,-86.9306091691535,-86.93060959679119,-86.93062558180982,-86.93062525239652,-86.93059512506599,-86.93054068883865,-86.93040772937255,-86.93035437286144,-86.92998026509197,-86.9298863032685,-86.92985547576383,-86.92979293790454,-86.92976971898995,-86.92977031475793,-86.92987190432804,-86.93002712502383,-86.93012100036368,-86.93046317343476,-86.93055642709052,-86.93064926860691,-86.93071999516411,-86.93077436416446,-86.93081309675405,-86.93081311465509,-86.93084428754068,-86.93088378520082,-86.93109373515306,-86.93114122941229,-86.93115641713364,-86.93115684538,-86.93117159478301,-86.93117202102535,-86.93121921120348,-86.93126592825803,-86.93128999575133,-86.93132101243927,-86.93138267101538,-86.93146095655975,-86.93149137589712,-86.9315312221492,-86.93151502824851,-86.93153058754706,-86.93155353134827,-86.93174025730657,-86.93189577988608,-86.93208278957147,-86.93223837019937,-86.93230857269675,-86.93237042327851,-86.93240077991518,-86.93244840210441],"lat":[45.35028352188851,45.35034378393747,45.35034348094969,45.3503214183884,45.35028265699727,45.35026632929567,45.35026603804916,45.35030456342152,45.35032619092319,45.35033179452549,45.35030421323164,45.35025466013271,45.35022180462921,45.35004570597003,45.34989179813257,45.34971590369528,45.3494356353355,45.34938119164907,45.34937011116913,45.3493535255533,45.34935942921789,45.34939228469536,45.34943624341611,45.34951855425506,45.34952400358621,45.34955093043973,45.34956793946508,45.34958463563694,45.34958500609958,45.34959021691583,45.34958505310014,45.3495627796965,45.34954601263275,45.34952394683384,45.34951359546442,45.34931015407528,45.34917814081085,45.34911251715261,45.3490357382332,45.34901341547083,45.3488622504002,45.3486727852543,45.3486014092538,45.34858482243687,45.3485578463192,45.34856349717496,45.34861837632467,45.34862964946595,45.34867356193953,45.34867385151666,45.34869581782119,45.34869578925795,45.34866867169483,45.34863606021129,45.34854280447109,45.34845476396809,45.34836159440446,45.34833979915263,45.3483120874224,45.34831253188202,45.34832870074187,45.34838403467486,45.34850465517923,45.34853733600166,45.34851576301131,45.34842824416932,45.34834608731128,45.34830792410698,45.34825313105774,45.34824248421737,45.3482481748049,45.34823205572163,45.34821013517013,45.34822705730761,45.34828199585842,45.34832614620621,45.34841365990101,45.34856726244054,45.34858959975459,45.34865543255456,45.34869918341346,45.34885276385698,45.34890821300935,45.34894106702616,45.34893580262127,45.34891917679187,45.34871107718394,45.34867816756049,45.34867284110322,45.34867847143337,45.34869472627229,45.34872793435756,45.34882630717557,45.34893625100933,45.348985471897,45.34910550620351,45.34912208137602,45.34911670414496,45.34912197855992,45.34914932309516,45.34921506054573,45.34925894594045,45.3493464243276,45.34941274575193,45.34958773257599,45.3496537098037,45.34969744035535,45.34976327255226,45.34978561045676,45.34985144806913,45.35011488640976,45.3502247239402,45.35025181188979,45.35026839993301,45.3502790557851,45.3502625990675,45.3502459753057,45.35020260271977,45.35010371066144,45.3500816262215,45.35007042773933,45.35011426948389,45.35013026660556,45.35012460419205,45.35008040500862,45.35008060266711,45.35010251699605,45.35014609478124,45.35028352188851]}],[{"lng":[-86.93368350660916,-86.93379582208591,-86.93381686617711,-86.93387459894193,-86.93395326468634,-86.93393985585779,-86.9339271858841,-86.933866741429,-86.93369559787597,-86.93354178691857,-86.93347738066824,-86.93345612338524,-86.93350405988512,-86.93358097417308,-86.93368350660916],"lat":[45.350741476343,45.35075968427238,45.35068036236354,45.35049794215286,45.35032677904376,45.35029435051659,45.35026306807609,45.35022993852684,45.35028159930951,45.35038154595991,45.35045126519678,45.3505935927798,45.35068095627962,45.35067514864365,45.350741476343]}],[{"lng":[-86.92355259347946,-86.92353703536571,-86.92354513398925,-86.92358341801253,-86.92374701931533,-86.92389487349506,-86.92403565495279,-86.92409044455609,-86.92417588851347,-86.92426191624513,-86.92429262686598,-86.92448020725975,-86.92450405081733,-86.92452669708156,-86.92458834046687,-86.92459688409016,-86.92455775649799,-86.92444039272294,-86.92439328384857,-86.92437765241175,-86.92432213605136,-86.92426834596166,-86.92414336927537,-86.92407355601391,-86.92394867877736,-86.92390238037629,-86.92366927053925,-86.92360673045999,-86.92355259347946],"lat":[45.35031689389314,45.35033897727652,45.35036620097078,45.35041055096348,45.3504982270517,45.35059672982121,45.35072260504487,45.35081578599616,45.35103524968451,45.35115571631748,45.35117792069408,45.35139732543858,45.3514137213964,45.35140814262772,45.35137492109723,45.35127613742535,45.35118844295201,45.35101312490859,45.35088133339027,45.35059567658146,45.35044227999222,45.35040426059489,45.35035476118676,45.3503326247092,45.35031069228575,45.35031113204565,45.3502840315554,45.35028965842932,45.35031689389314]}],[{"lng":[-86.95238465499413,-86.95230697842339,-86.95228395856188,-86.95227652268665,-86.95229134678527,-86.95234615002704,-86.95240110684516,-86.95247821372959,-86.95257166728702,-86.95262612537474,-86.95262669891778,-86.95255915863314,-86.95252463865727,-86.95247802741849,-86.95245436338784,-86.95238465499413],"lat":[45.3525493758907,45.35259906135664,45.3526265744638,45.35267588402376,45.35274154142058,45.35279082420636,45.35280748488969,45.35281292044137,45.35279628784286,45.35276285987272,45.35275218294421,45.35264292741432,45.35258743265299,45.35254905672229,45.3525439222276,45.3525493758907]}],[{"lng":[-86.95043121044205,-86.95040826453237,-86.95040098490408,-86.95041649119352,-86.95059547364045,-86.95063924268182,-86.95046231613604,-86.95043121044205],"lat":[45.35535741846779,45.35536862068789,45.35538530447108,45.35542341035947,45.35547826378536,45.35540629986721,45.35535768936165,45.35535741846779]}],[{"lng":[-86.95503636064356,-86.95519201816433,-86.95536292495098,-86.95541709194984,-86.95547997440001,-86.95553470486384,-86.95560423225754,-86.95561228095464,-86.95555102872451,-86.95545764563991,-86.95537279884061,-86.9551399564503,-86.95510058752797,-86.95509387780271,-86.95511705383242,-86.95516389696283,-86.95522575824216,-86.95558347644288,-86.95565300161839,-86.9557087521938,-86.95589373414518,-86.95597182846909,-86.95597220886384,-86.95601843653577,-86.95606371254999,-86.95609557608145,-86.95609515670067,-86.95614218345952,-86.9562186038569,-86.95624920580809,-86.95624214913934,-86.9561784286547,-86.95612513845265,-86.95603114845957,-86.95587654625466,-86.95578279112708,-86.95568941296153,-86.95550230877333,-86.95528494121426,-86.95516075852794,-86.95488786413067,-86.95480984246474,-86.95477119522366,-86.95475526123883,-86.95473129041203,-86.95467769803611,-86.95461537788637,-86.95455295183089,-86.95451434094419,-86.95445168133347,-86.95442892414194,-86.95437358459108,-86.95435807215587,-86.95432689957724,-86.95427201240871,-86.95421007274621,-86.95411681169035,-86.95402350491213,-86.95387585120362,-86.95376012783795,-86.95371317866798,-86.95368392000695,-86.95379153834281,-86.95394730826452,-86.95401042320033,-86.95407197943125,-86.95411950564402,-86.95416634661761,-86.95422782958225,-86.95429048742896,-86.95441508916898,-86.95453968400216,-86.95464049681807,-86.95468673636488,-86.95471063305881,-86.95477973180573,-86.95484944015972,-86.95497392194824,-86.95503636064356],"lat":[45.35559235372471,45.35563588406328,45.35566295184661,45.35567958695414,45.35571220361795,45.35577780206562,45.35590961768805,45.3559975966761,45.35611297970362,45.35621738391705,45.356370958091,45.35659090826143,45.35664049213975,45.35675058016351,45.35679451940752,45.35684359022991,45.35686549240395,45.35687615977007,45.35685945271754,45.35683168347392,45.35665602445943,45.35652421220686,45.35650228113951,45.35641406159466,45.3561502875292,45.35610669345256,45.35608474104991,45.35599654398145,45.35577691838606,45.35562301989226,45.35554632063736,45.35546979535069,45.35543686847907,45.35540398093317,45.35541504727557,45.35543730024112,45.35543762196843,45.3554596355325,45.35546564899508,45.35546008669097,45.35540048376981,45.35536745791185,45.35532929546201,45.35522478742298,45.35518083174787,45.35515352183737,45.35516986202343,45.35520307463808,45.35520879672335,45.35518686981133,45.35516488585847,45.35506607920485,45.35487944500706,45.35483585437373,45.35480288643925,45.35479729473192,45.35482518765065,45.35486882832753,45.35497346497318,45.35507783609066,45.35514971874428,45.35523388968737,45.35547361349165,45.3556487988788,45.35573656430422,45.35586816201292,45.35593413347808,45.35598319979717,45.35602703788965,45.35604896487488,45.35607647991944,45.35605955365178,45.35600992131864,45.35596614969464,45.35592234156905,45.35563107461715,45.35558117545413,45.35558112219833,45.35559235372471]}],[{"lng":[-86.95391146323068,-86.95392700869448,-86.95395879190012,-86.95403647504537,-86.95420803301747,-86.95429314436093,-86.95435546442452,-86.95441019994965,-86.9544955061107,-86.95470487500177,-86.95472849950592,-86.95472774199769,-86.95462745447679,-86.95447922638427,-86.95435429396805,-86.95419870290964,-86.95414469181655,-86.95393372673085,-86.95382513037636,-86.95375425046434,-86.95352856622051,-86.95339017741898,-86.95331100218252,-86.95327220639662,-86.95326507321872,-86.95331123025861,-86.95347500883312,-86.95364584375031,-86.95369276063316,-86.95377134781231,-86.95386461594822,-86.95391146323068],"lat":[45.35685123507759,45.35693322456094,45.35701002177981,45.35710886099417,45.35721302293017,45.35721810747334,45.35720176503281,45.35716328013386,45.35707554562933,45.35692135255658,45.35688260613585,45.35682238737353,45.35677301571251,45.35678424966022,45.35676291194891,45.35665861784625,45.35660935286867,45.35636237009886,45.35627451981399,45.35624224730408,45.35616533585706,45.35614195000452,45.35616009072473,45.3561989964287,45.35624269084022,45.35631931103036,45.35643451292459,45.35652233847127,45.35655509635835,45.35663708278422,45.35675771595513,45.35685123507759]}],[{"lng":[-86.95378003146777,-86.95374911648715,-86.95364022295129,-86.95357846805292,-86.95356257476323,-86.95357190745885,-86.95358730751272,-86.95358779639363,-86.9535643164046,-86.95354079834219,-86.95347976652165,-86.95334727856753,-86.95326910315055,-86.95326158824129,-86.95332390519539,-86.95339355449178,-86.95345643811568,-86.95357329901651,-86.95360410486765,-86.95378317387555,-86.95384500068583,-86.95393785149373,-86.95403207195947,-86.9540775149558,-86.95420955252492,-86.95425635896912,-86.95427930607967,-86.95427073061758,-86.95424793242702,-86.95416923077025,-86.95405893628613,-86.95398246458352,-86.95384227558273,-86.95378003146777],"lat":[45.35726291938503,45.35727390954131,45.35734020064017,45.35744994286117,45.35753784926392,45.35773556750332,45.35779054843353,45.35790026997407,45.35796602836684,45.35798790635447,45.35800990479679,45.35801030548212,45.35805435194564,45.35811997615018,45.3582077151517,45.35826301825501,45.35829564334905,45.35833364305434,45.35833952713946,45.35833362013625,45.35831163971488,45.35826179972829,45.35820130155697,45.35815750892887,45.35798719017274,45.35788830064515,45.35777301672243,45.35763551486498,45.35756964736485,45.35746008948477,45.35735925244208,45.35731220557381,45.35726289131605,45.35726291938503]}],[{"lng":[-86.85084302277805,-86.85078849193317,-86.85078114916232,-86.85068031619366,-86.85068027186398,-86.85071918448685,-86.85076690062293,-86.85092945622516,-86.85125641855674,-86.85130386790448,-86.85140430920553,-86.85146589326206,-86.85155222039371,-86.85155932540992,-86.85162975595837,-86.85171489141868,-86.85182342635964,-86.8518318143601,-86.85182275445271,-86.85183631187984,-86.8518077012255,-86.85176876483557,-86.85169039554908,-86.8515897797763,-86.85154306383637,-86.85153510808972,-86.85148887586465,-86.85141825893916,-86.85123177473592,-86.85116984595966,-86.85107591994847,-86.85098285534791,-86.85088905782253,-86.85084302277805],"lat":[45.35694335498222,45.35702005074995,45.35719537740533,45.35745926193601,45.35750314319024,45.35760717203743,45.35766756379728,45.35781551300821,45.35803494584449,45.35805706838583,45.35807334510019,45.35805648068128,45.35799641283591,45.35796904132744,45.35786465353542,45.35763915161068,45.35752400383962,45.35750229402749,45.35739233786978,45.35734939043427,45.35730415819911,45.35712867902984,45.35707419326526,45.35704666239024,45.35699699142861,45.35695345406541,45.35690942092202,45.35688777994133,45.35692651646612,45.35692086901617,45.35688789719453,45.35688251541045,45.35690468088067,45.35694335498222]}],[{"lng":[-86.92936784594045,-86.92932198951776,-86.92932160076064,-86.92935359366868,-86.929352782809,-86.92936837000279,-86.92936882835923,-86.92930629837593,-86.92924435402433,-86.92912865205982,-86.92898858654722,-86.92884088421258,-86.92873991974783,-86.92870123415628,-86.92862309247469,-86.92860782438213,-86.92860792343082,-86.92859265545307,-86.92859196094938,-86.92857669053441,-86.92857679284754,-86.92856072602284,-86.92856085834559,-86.92854555966724,-86.92851415101173,-86.92835916520555,-86.92831206746945,-86.92831217069859,-86.92829692938558,-86.92825033817553,-86.9282342737381,-86.92821881400607,-86.92820354550409,-86.92817322412992,-86.92817295032394,-86.92815771230384,-86.9281569579524,-86.92811117942611,-86.92809591073373,-86.92806408077594,-86.92802527437703,-86.92782255625612,-86.92762846598384,-86.92759743054184,-86.9275821614747,-86.92758149425241,-86.92755105453914,-86.92753547785389,-86.92751993428828,-86.92752044305513,-86.9275043740037,-86.92750448983963,-86.92748922057376,-86.92748961077658,-86.92747403311108,-86.92747413422966,-86.92745776386653,-86.92745828520307,-86.92747465653169,-86.92750581966621,-86.92753620439805,-86.92753740642524,-86.92764608834712,-86.92764649425828,-86.92770881220774,-86.92780269944242,-86.92789660469857,-86.92807559503341,-86.92831008972908,-86.9284347434417,-86.92854339701512,-86.92879306463645,-86.9289097298094,-86.92894128868879,-86.92898765576103,-86.92898847029781,-86.92900405993265,-86.92900327951996,-86.92901963812727,-86.92903565134333,-86.92905124173856,-86.92905042997108,-86.92909798959528,-86.92909761223409,-86.9291287837128,-86.92916081317043,-86.92916045088842,-86.92917601357765,-86.92917604697874,-86.92919243648872,-86.92917649893505,-86.92919287638129,-86.92919251751795,-86.92920810673023,-86.92920853269203,-86.92922412271842,-86.92922374886551,-86.92923934220244,-86.92923974834869,-86.92925454286205,-86.92925537275431,-86.92927133964979,-86.92927016948079,-86.92928655930606,-86.92928615060183,-86.92931732317039,-86.92933415045921,-86.92939570571031,-86.92939611396565,-86.92945803207577,-86.92950560956167,-86.92946651314305,-86.92946657745209,-86.92949818734948,-86.92961530012941,-86.92999047038757,-86.93020067666443,-86.93029415793285,-86.93043479435281,-86.93046634267472,-86.93101135483064,-86.93121430753558,-86.93133977627456,-86.93146480922363,-86.93160428003138,-86.93177645747159,-86.93188514694961,-86.93196386802552,-86.93205696528328,-86.932135684779,-86.93218243915642,-86.93227512956166,-86.93232267957899,-86.93236982466043,-86.93244773668798,-86.93247851669607,-86.93257202591748,-86.93260360492962,-86.93279021133874,-86.93299349873807,-86.93313394698232,-86.93332090887667,-86.93378884982759,-86.93416258500051,-86.93441267715345,-86.93466195052166,-86.93537949503747,-86.93590926195695,-86.93594021213015,-86.93600252596617,-86.93609640161255,-86.93620408737557,-86.93643879401279,-86.93684345768695,-86.93720950147522,-86.93745087975027,-86.93765294729556,-86.93774677487696,-86.93784018320694,-86.93799548757282,-86.93811279821946,-86.93824452149413,-86.93828324456628,-86.9384153253569,-86.93847801213396,-86.93858617136927,-86.93896027576625,-86.93949691050427,-86.93976162747703,-86.93998026537163,-86.94020587946446,-86.94060333239993,-86.94103959428821,-86.94134292222482,-86.94156845173384,-86.94193403786234,-86.94234727207676,-86.9424953566988,-86.94254127467811,-86.94261148374387,-86.94262692464096,-86.94266522435669,-86.94274382533398,-86.9429302305665,-86.9429298213641,-86.94297653529389,-86.94302357467866,-86.94303026507492,-86.94302303454339,-86.94305373979768,-86.94308488165306,-86.94313115543174,-86.94324009243667,-86.94347394602758,-86.94355136068438,-86.9435824712159,-86.94371410536486,-86.94379181831904,-86.94399329901731,-86.94414882930465,-86.94421028195701,-86.94425693285588,-86.94434747478824,-86.94441166020266,-86.94441196552721,-86.94445817398706,-86.94447423744778,-86.94447333188437,-86.94453634532125,-86.94453596483173,-86.94455202648781,-86.94455108975826,-86.94456718338482,-86.94461372307791,-86.94462978717229,-86.94464521728764,-86.94466048196819,-86.9446603750483,-86.94467563954824,-86.94467632877364,-86.94472220802399,-86.94486234786328,-86.94511072640454,-86.94517376791084,-86.94535942209599,-86.9454691389173,-86.94574908145569,-86.94587282618457,-86.94612993577606,-86.94633962136294,-86.94646434586662,-86.94647988230371,-86.94647944124574,-86.94646384309198,-86.94646337223081,-86.94647893814751,-86.94647970898491,-86.94651081210402,-86.94652607505273,-86.94652516768842,-86.94654123027421,-86.94655627502749,-86.94657153789292,-86.94657219522796,-86.94674383646876,-86.94678998322436,-86.9468362088661,-86.94685150600939,-86.94691436707319,-86.94692963373065,-86.94693708285932,-86.9470379546063,-86.94705321711508,-86.94705390530446,-86.94706916750168,-86.94706905601444,-86.94708432094313,-86.94717045253833,-86.94720862043089,-86.94728627185347,-86.94733332318994,-86.94736356828847,-86.94737963076851,-86.94739467193314,-86.94739460937498,-86.94741055908541,-86.94742520578308,-86.94745586225896,-86.94745656949694,-86.94748719518799,-86.94750222698933,-86.94751748870223,-86.94753288274562,-86.94754814685972,-86.94756398440755,-86.94759576038065,-86.94762603313811,-86.94764129456883,-86.94764236462211,-86.94765762838499,-86.94768858517348,-86.94770384658294,-86.94770373799446,-86.94773445238216,-86.94773474317476,-86.9477498958788,-86.94774983347898,-86.94776509721208,-86.94778090499005,-86.94779646715919,-86.94779602417795,-86.94781238672607,-86.94781194203132,-86.94782720310729,-86.94782706031387,-86.94784232560262,-86.94784256493965,-86.9478577175929,-86.94785809895311,-86.94787443100196,-86.94787360254192,-86.94788966321978,-86.94788830691108,-86.94790436709401,-86.94791972927666,-86.94793529470319,-86.94793523192425,-86.94795079542584,-86.94796588743968,-86.94798145088409,-86.94798174252581,-86.94799783214468,-86.94799765967053,-86.94799762611274,-86.9480437803833,-86.94805904361884,-86.94807446618331,-86.94809052539154,-86.94810556496141,-86.9481913785292,-86.94841650861662,-86.94867279172504,-86.94878888855807,-86.94892923564652,-86.94906955494068,-86.94908500378027,-86.94917882136909,-86.94922456767763,-86.94924062591005,-86.94923971803263,-86.94927172440153,-86.94936403586773,-86.94937981989868,-86.94939496731914,-86.94939438958143,-86.94937879277471,-86.94937949549981,-86.94939461052296,-86.94944085265125,-86.9495809698148,-86.94975195571405,-86.94993856836939,-86.9501407457429,-86.95049072187872,-86.95122176089255,-86.95133775696036,-86.95147824785226,-86.95169579257542,-86.95177300176312,-86.95177289517687,-86.95178812251167,-86.95178842254161,-86.95180444836232,-86.95180381100805,-86.95178859733625,-86.9517881777392,-86.95177258114637,-86.95177130208475,-86.95178818426204,-86.95178717553044,-86.95180326161504,-86.95180269768282,-86.9518178141951,-86.95181690604026,-86.95183284836774,-86.95183280813661,-86.95192593614823,-86.9519414250539,-86.95201905929686,-86.95204931069306,-86.95211183171497,-86.95221926343281,-86.95222002632008,-86.95224275805617,-86.9522658003176,-86.95229723703741,-86.95233736932683,-86.95251483491866,-86.95259199975425,-86.95297272930461,-86.95308123736267,-86.95321478922848,-86.95348618396878,-86.95363419357932,-86.9538751460241,-86.9540226606124,-86.95413230744593,-86.95426337986713,-86.95447317640479,-86.95448903926939,-86.95454991315643,-86.95455063731654,-86.95460474859561,-86.95476690729079,-86.95478216155787,-86.95492268492768,-86.95493794263982,-86.95498400853553,-86.95499986941672,-86.95503132775229,-86.95504559746097,-86.95504540663812,-86.95496730784295,-86.95493599612578,-86.95493467140216,-86.9549194877153,-86.95491888123009,-86.95493397751892,-86.95493295653429,-86.95491857217731,-86.95491766424097,-86.95490202673412,-86.95482400644046,-86.95477680227906,-86.95465172712755,-86.95458882016563,-86.9545572468066,-86.95454282383264,-86.95437009748676,-86.95436288608532,-86.95393316017375,-86.95384684138195,-86.95383165945161,-86.95369138607475,-86.95338700052336,-86.95311411648375,-86.95308292395572,-86.95294223541234,-86.95294261926757,-86.95281710493043,-86.95266089074451,-86.95261452831213,-86.95261411227077,-86.95248902184341,-86.95241067346566,-86.95241105577695,-86.95233232564662,-86.95219330833916,-86.95193572204039,-86.95189657000712,-86.95169393183377,-86.95160789790413,-86.95155235154083,-86.95149026198503,-86.95148979153358,-86.95142739221311,-86.951333044642,-86.9512863034585,-86.95122431874977,-86.95119237318646,-86.95119275246616,-86.95109882551836,-86.95108364839658,-86.95102131444055,-86.95087981567363,-86.95073956675748,-86.95072356261122,-86.9506612308832,-86.95047417383552,-86.95047379132501,-86.95042781771302,-86.95042660510188,-86.95039625212928,-86.95039583603533,-86.95030229368568,-86.95028670331349,-86.9502395178103,-86.95017712174571,-86.95011306302726,-86.95001942067903,-86.94992667418234,-86.94987907504414,-86.94984712868678,-86.94984751181855,-86.94973876728587,-86.94959695964531,-86.94959734289462,-86.94942589317141,-86.94919167065677,-86.94917527965296,-86.94911372066561,-86.94901183347115,-86.94882368514099,-86.94868351687161,-86.94852040065338,-86.94844232812869,-86.94831688752697,-86.94822418834741,-86.94817700666698,-86.94813744782243,-86.9480052203418,-86.94791095801551,-86.94787260960008,-86.94767733028604,-86.94751375126827,-86.9474832939391,-86.94744373611638,-86.94743601982728,-86.9474817977778,-86.94748173222536,-86.94750522375416,-86.94751230104758,-86.94747267649089,-86.94747222952608,-86.94759654997681,-86.94758092857641,-86.94753378290656,-86.94746371897419,-86.94733220009121,-86.9470823566884,-86.94702089896504,-86.94695853299024,-86.94675639006932,-86.94663953109328,-86.94663915111528,-86.94665503738987,-86.94671000939408,-86.94694350307297,-86.94709888263569,-86.94705318574684,-86.94695948635864,-86.94688159668944,-86.9468586774736,-86.94683465755854,-86.94678056598663,-86.94669445109466,-86.94657070772737,-86.94644578284422,-86.94635238575415,-86.94629115081219,-86.94614311745885,-86.94605736796998,-86.94601873125846,-86.94601923461866,-86.946050060066,-86.94604332946126,-86.94583760064414,-86.94585750694296,-86.94582639359845,-86.94579596829327,-86.94571777240634,-86.94562373924538,-86.9455616735063,-86.9455002951553,-86.94534406608086,-86.94531314360998,-86.94515749117178,-86.94503264424391,-86.94484647595682,-86.94462754032085,-86.94449485894624,-86.94443971663689,-86.94444010179417,-86.94439295948058,-86.94438572899671,-86.9444247515852,-86.9444163408331,-86.94431491310648,-86.9442997414648,-86.94432282696391,-86.94436866591947,-86.94442284064245,-86.94448567034543,-86.94462587586287,-86.94465729089386,-86.94468054513774,-86.94464873772887,-86.94446897318213,-86.94442982949593,-86.94437573993713,-86.94426596124613,-86.94414224882007,-86.94411091665404,-86.94398701444435,-86.94367494188575,-86.9435824231021,-86.94353479160849,-86.94351151047799,-86.94351945040253,-86.94354973833555,-86.94362067596734,-86.94364390188557,-86.9436439803342,-86.94361223584889,-86.94351144809889,-86.94342552952232,-86.94339419361978,-86.9433706395367,-86.94332405036883,-86.94332319788182,-86.94335419406821,-86.94342356300486,-86.94350922815414,-86.94364162269866,-86.94367281632849,-86.94368018097238,-86.94364961799553,-86.94353255876909,-86.94347027771359,-86.94339161773277,-86.94328205445773,-86.94327308676371,-86.94332049393817,-86.9435533582329,-86.94359884341402,-86.94365328715642,-86.94373219521161,-86.94379315332925,-86.9439185614867,-86.94403512391962,-86.9440966070609,-86.94443981557912,-86.94459650532242,-86.94474440029211,-86.94486821941982,-86.94496161195195,-86.94505577070119,-86.94508608330857,-86.94508582994246,-86.94503907408725,-86.94496117747964,-86.94485975738128,-86.94473489169503,-86.94455635318437,-86.94429148608083,-86.94416609983436,-86.94413473725125,-86.94413511982719,-86.94419684705539,-86.94444592857303,-86.94460176110431,-86.9447571819407,-86.94481951118549,-86.9448895109055,-86.94493526941898,-86.94499795314002,-86.94520750981724,-86.94530067945149,-86.9455185670522,-86.945573072434,-86.94565846260708,-86.94578257825832,-86.94587687502276,-86.9459936312719,-86.94609414320466,-86.94619586551401,-86.94621194890172,-86.94621201028346,-86.94618931300587,-86.94609522033321,-86.94608007802982,-86.94611886670644,-86.94625957325682,-86.94629802963669,-86.94632202733568,-86.94633791708829,-86.94629287784028,-86.94657161632455,-86.94664175787341,-86.94670401127955,-86.9467668681055,-86.94686022840803,-86.94703015130952,-86.94711624737762,-86.94717735084238,-86.94718442653462,-86.94716153898032,-86.94708265103343,-86.94701192354906,-86.94699630631069,-86.94694916329347,-86.94688678931887,-86.94684758446806,-86.94667483077258,-86.94664359736109,-86.94658967032058,-86.94651097407187,-86.94646466246952,-86.94638676612328,-86.94635521210178,-86.94619865564401,-86.94616790074734,-86.9461135875049,-86.94601922011356,-86.94600360023678,-86.94600226598708,-86.94598747878314,-86.94598744843756,-86.9459095547917,-86.94585403258991,-86.94585441696618,-86.94579249076958,-86.94576090871429,-86.94576783357303,-86.94580604779252,-86.94582195436776,-86.94594555751139,-86.94594514382598,-86.94597704608316,-86.94606989434476,-86.94606180156151,-86.94602983448571,-86.9459758783335,-86.94592835849301,-86.94581136222043,-86.94568680740845,-86.94544521279198,-86.94532813609338,-86.94522729739442,-86.94516534492121,-86.94511782840964,-86.9448910385524,-86.94475090636902,-86.94458040476925,-86.94434648071136,-86.94420673561294,-86.94405863748639,-86.94398729759968,-86.94385588122732,-86.94382474441727,-86.94376288623711,-86.94360635733044,-86.94354449502207,-86.94349818948722,-86.94347367154569,-86.94349719448402,-86.94355152354338,-86.94365276009876,-86.94396419403564,-86.94441523581966,-86.94457113170608,-86.94469501003516,-86.94478814075373,-86.94485793795516,-86.9449197033682,-86.94495855817669,-86.94498963402437,-86.94505942810073,-86.9452147693985,-86.94530064342352,-86.94539308111683,-86.94548654086667,-86.94570440500419,-86.9460467842061,-86.94626464677505,-86.9464825891821,-86.9467307929179,-86.94684829577338,-86.94696451119434,-86.94707377693624,-86.94722909587963,-86.94735308499865,-86.94738479572008,-86.94744703824311,-86.94757110695268,-86.94775791391854,-86.94785053968167,-86.94790565890226,-86.94792045980653,-86.94789725794701,-86.94783495219794,-86.94769481930098,-86.94758524913324,-86.94733648886057,-86.94721155913071,-86.94708754022723,-86.9469001462928,-86.94671297632885,-86.94655738794847,-86.94643431039979,-86.9463713850317,-86.94631664902576,-86.9461690896748,-86.94616236681354,-86.94617745449374,-86.94617775641343,-86.94615423859774,-86.94610777316807,-86.94603047163163,-86.94595188056455,-86.94584328526345,-86.94559477962946,-86.94522138005556,-86.94506573158927,-86.94487916713354,-86.9448172280977,-86.94469964491192,-86.94466941571,-86.94468491817112,-86.944809845084,-86.94485538568244,-86.94483307524895,-86.94480982458754,-86.94474750140597,-86.94467707040317,-86.94449066628204,-86.94421045569851,-86.94386796962013,-86.9437439509361,-86.9436813770939,-86.94360253401872,-86.94352503591024,-86.9433759445721,-86.9433455485793,-86.94334504723321,-86.94337527014913,-86.94345380097293,-86.94372430010093,-86.94406662595806,-86.94415955805796,-86.94421467897807,-86.94422948464383,-86.94420590422895,-86.94415839225719,-86.94408930460384,-86.94402642817194,-86.94392527787146,-86.94364515656484,-86.94352084269387,-86.9433961421071,-86.94337339029785,-86.94333411852017,-86.94331842436718,-86.94332595150074,-86.94335702568088,-86.94348853096133,-86.94348811727949,-86.94351919279693,-86.94351877996313,-86.94382135439652,-86.94400797945877,-86.94406271395266,-86.94419457327263,-86.94429478150451,-86.94448101903326,-86.94466740014269,-86.94479264065163,-86.94500999379234,-86.94510306156488,-86.94519684455106,-86.94539120417667,-86.94578042757868,-86.94591304427189,-86.94600674944087,-86.9460378557286,-86.94616216851709,-86.94627090163422,-86.94645784058613,-86.9469718193595,-86.94701869859644,-86.94724119488902,-86.94753121877477,-86.94759345751731,-86.9476487486082,-86.9485432527586,-86.94871343055081,-86.94874555488792,-86.948838928219,-86.94897898662438,-86.94921165868291,-86.94927439331416,-86.94936727252389,-86.9494922110422,-86.94964718217403,-86.94992749659637,-86.9499887452333,-86.95001995686081,-86.95017573940871,-86.95027659232207,-86.95047100765044,-86.95071939577487,-86.95075052997989,-86.95087417500979,-86.95096762680605,-86.95121760096066,-86.9514660907308,-86.95165227016611,-86.9517771604351,-86.95183981642353,-86.95187095068616,-86.95199466639608,-86.95208875796496,-86.95215099633359,-86.95227455908295,-86.95239903593472,-86.95250776988783,-86.95263308126617,-86.95273328024106,-86.95282779600873,-86.95289840829413,-86.95295241943644,-86.95301552479857,-86.95303076612637,-86.9531016877977,-86.95310130638842,-86.95303091913543,-86.95309429501417,-86.95316365791561,-86.95322601224463,-86.95327292618903,-86.95331225663192,-86.95334320176885,-86.95334426216729,-86.95331372864501,-86.9532826999464,-86.95322106658961,-86.95322948768622,-86.95333143305696,-86.95346368012129,-86.95355660605253,-86.95363492887527,-86.95374371152261,-86.95390672416018,-86.95394465302216,-86.95410847004078,-86.95419350010168,-86.95437873494569,-86.95442569458699,-86.9544634317875,-86.95456453910863,-86.95457883480896,-86.95461069874028,-86.95468753155265,-86.95479589169466,-86.95479626814098,-86.95491982997179,-86.95500565408915,-86.95509106709606,-86.95516066377155,-86.9555877158779,-86.95571275814785,-86.9558137468179,-86.95594451161971,-86.9559448893213,-86.9560688235844,-86.95619407263165,-86.95626935952953,-86.95626973622232,-86.9564865382689,-86.95656356387768,-86.95667263486422,-86.9566722151892,-86.95670330966281,-86.95683412682733,-86.95688807666687,-86.95686355900644,-86.95680108593575,-86.9566911240121,-86.95659760109018,-86.95656637877377,-86.95655159038999,-86.9565506248379,-86.95656568111001,-86.95659589787216,-86.95661114488081,-86.95661182261921,-86.95668159303447,-86.95672762865622,-86.95678206357738,-86.95678039212898,-86.95676518483234,-86.95676472344455,-86.95672592702101,-86.95660125935673,-86.95656966235806,-86.95654595226021,-86.95654625096388,-86.95658393286588,-86.95657580722688,-86.95652766945221,-86.95643401857765,-86.95637908974938,-86.95638606312222,-86.95647048826078,-86.95646217625297,-86.95635340367129,-86.95618881471687,-86.9561108826843,-86.95603973147874,-86.95599289097059,-86.95599281115064,-86.955977216108,-86.95597694237669,-86.95601504212232,-86.95609147126306,-86.95611566307673,-86.95609924005582,-86.95602097432867,-86.95595892997983,-86.95573307654311,-86.95554718949749,-86.95542182916141,-86.95534378739048,-86.95507108830833,-86.95484375531808,-86.95454741535708,-86.95425152520085,-86.95409575754213,-86.95398548929946,-86.9539231876709,-86.95384495630303,-86.95376790676872,-86.95357362016219,-86.95328510034064,-86.95297387170964,-86.95266223142529,-86.95222731353287,-86.95194699023237,-86.95179032415176,-86.95141677042791,-86.95124542898435,-86.95105065271244,-86.95092613675691,-86.95072416123308,-86.95062179406263,-86.95040423383746,-86.9500928662104,-86.94978132810745,-86.94947749236059,-86.9490248423327,-86.94876062773449,-86.94837072420339,-86.94818396415916,-86.94769341342908,-86.9475530885951,-86.94742900249145,-86.94733568827097,-86.94724256582958,-86.94686909580702,-86.94683800098089,-86.94671416754784,-86.94646509866701,-86.94637255341395,-86.94612303895431,-86.94596826955035,-86.94593714285352,-86.94581206890692,-86.94571853051825,-86.94547019661944,-86.94459881191158,-86.94422546554007,-86.94397799102389,-86.94382165932882,-86.94379056737532,-86.94354251652878,-86.94314638031888,-86.94304537083633,-86.94264145888974,-86.94254742964517,-86.94248600570495,-86.94214202448663,-86.94215888835623,-86.94222084538283,-86.94223598201852,-86.94225100065573,-86.94226693131432,-86.94210290132985,-86.94200914649781,-86.94152627495555,-86.9408175514388,-86.94075593915348,-86.94067737714036,-86.94062394868439,-86.94060035609299,-86.94063947367792,-86.9408888683583,-86.94092757508278,-86.94106698112704,-86.94114518882633,-86.94168214797585,-86.94174518990252,-86.94175307547873,-86.94207939421636,-86.94211084985272,-86.94211922720339,-86.94199640321982,-86.94167025513796,-86.94151485690166,-86.94127366553994,-86.94108722501599,-86.94090037131227,-86.94077612000022,-86.94040306996509,-86.94027855041659,-86.9401237254104,-86.93978250724493,-86.93943266815171,-86.93931633105808,-86.93919177814101,-86.93909843162214,-86.93900541839216,-86.9389114375971,-86.93881760293624,-86.9386623687911,-86.93863912862643,-86.93853787573768,-86.93844480738872,-86.93825770867598,-86.93816496886613,-86.93801698014386,-86.93776010294776,-86.93763525381701,-86.93754259550222,-86.93745700133005,-86.9373475403048,-86.93730046089935,-86.93720000178054,-86.93715303077228,-86.93698197333272,-86.93679561734162,-86.93670188417762,-86.93662452644251,-86.93661699672684,-86.93667167996615,-86.93681965412017,-86.93706085329329,-86.9371858380576,-86.9372561590877,-86.93791729957485,-86.93830980410682,-86.93834481755617,-86.9383766486242,-86.93837711099664,-86.93839230161818,-86.93839276324418,-86.93840825105947,-86.93796580610068,-86.93772982852852,-86.93769342388336,-86.93763970462369,-86.93770146023633,-86.93782560156082,-86.93795045784147,-86.93801268004493,-86.93804399545692,-86.93813734395994,-86.93826140176539,-86.93832362401339,-86.9386526791788,-86.93865080634104,-86.93861970532056,-86.93857306051501,-86.93813744749956,-86.93809846458927,-86.93808305118257,-86.93807631597241,-86.9380447222981,-86.93788925540883,-86.93773311101729,-86.93767209588907,-86.93764030787001,-86.93773524951466,-86.93775002931618,-86.93773527520374,-86.9377198053962,-86.9374085248201,-86.93725278644438,-86.93712853105839,-86.93691186044386,-86.93686441490401,-86.93685674701121,-86.93688056030069,-86.93691126950452,-86.93695058099971,-86.93711371299679,-86.93722186497145,-86.93726128841477,-86.93728535684851,-86.93731641813065,-86.93726996053664,-86.93707532082392,-86.93706779084295,-86.9370984165019,-86.93722256137806,-86.93753448254714,-86.93759591149559,-86.93763541572891,-86.93769026836212,-86.93768221665431,-86.93765900199767,-86.93755806546507,-86.93741040372093,-86.93733281923794,-86.93731729716946,-86.93732468063142,-86.93734844550256,-86.93737976173163,-86.93747311370628,-86.93762885454778,-86.9382536507261,-86.93828981100569,-86.93840570398642,-86.93837570311166,-86.93823540061177,-86.93819622365208,-86.9381812499976,-86.93817361256004,-86.93828241880968,-86.93828362568418,-86.93833810379977,-86.93842370487408,-86.93859466752879,-86.93868741499419,-86.93881189622067,-86.938967638753,-86.9390744031343,-86.93918535580897,-86.93920903868566,-86.9391938987705,-86.93921727868593,-86.93929450219109,-86.93930208216115,-86.93929483167108,-86.93925535160797,-86.93913237979447,-86.93909240657737,-86.93906916487518,-86.93905383584641,-86.93904688247849,-86.93914050726362,-86.93922603000779,-86.9393032255695,-86.93945113926814,-86.93948226757153,-86.93956715996033,-86.93957531749236,-86.93958323104519,-86.93957564737511,-86.93954537051721,-86.93955256702827,-86.9395684487977,-86.93956877330933,-86.93954528400782,-86.93949107839477,-86.93949113105651,-86.93952230875173,-86.93958527714574,-86.93968591053184,-86.93971703914299,-86.93977888343019,-86.93983374735275,-86.93985778374824,-86.93992758949216,-86.93994305806878,-86.9399980300347,-86.94004506370548,-86.94010761965633,-86.94013979121706,-86.9402246850544,-86.9402560865762,-86.94039691408263,-86.9404132068848,-86.94036745740372,-86.94033676659083,-86.9402666282424,-86.94007243343549,-86.94003336334234,-86.94001022991486,-86.94001025537722,-86.94004110778386,-86.94012740730632,-86.9401891138219,-86.94022760909264,-86.94025200785536,-86.94027472885523,-86.94029843808624,-86.94035693383732,-86.94050787417497,-86.94062513761305,-86.94064852038234,-86.94064057728863,-86.94057840444752,-86.9404396241509,-86.94036192568653,-86.94031488602506,-86.94029263345679,-86.94029271197826,-86.94037818498197,-86.94035540752874,-86.94014571271609,-86.94013861876114,-86.94012347794069,-86.94008520421536,-86.94002250679684,-86.9399526868085,-86.93978961974921,-86.93972681191792,-86.93957992477225,-86.9395104366634,-86.93944751832115,-86.93929202809834,-86.93922979576102,-86.93913712183588,-86.93901233383367,-86.93894979846695,-86.93882554828996,-86.93873188162635,-86.93863923841883,-86.93854562962149,-86.93848315611338,-86.93841986392665,-86.93834961598812,-86.93820990717687,-86.93818674817224,-86.93818592471487,-86.93827225877349,-86.9382325024901,-86.93818620938815,-86.93815488971342,-86.93810839888954,-86.93801504028073,-86.93789096267842,-86.93773454910713,-86.93757912688613,-86.93748535994199,-86.93722051463963,-86.93711911132091,-86.93701771544094,-86.9369234865607,-86.93680773966041,-86.93673770827198,-86.9366440751209,-86.93655851609763,-86.93650460597399,-86.93648135841832,-86.93617789654492,-86.93592929375106,-86.93577384167877,-86.93558715157114,-86.93543194704452,-86.93521448888487,-86.93512061425395,-86.93502633390536,-86.93496426993033,-86.93492547611905,-86.93484049434595,-86.93477757525089,-86.93468473714502,-86.93459149209917,-86.93443596159567,-86.93437323998975,-86.93431119921215,-86.93426473343747,-86.934226068953,-86.93427342219817,-86.93437420742745,-86.93441283480375,-86.93482588282488,-86.93493513969902,-86.93503725171965,-86.93511440966321,-86.9350997497552,-86.93510699212881,-86.93522459062694,-86.93521741242074,-86.93514726148015,-86.93513132065897,-86.93513175338057,-86.9352007571156,-86.93495282719726,-86.93486790819411,-86.93480472637434,-86.93478913432129,-86.9347655373015,-86.93472685835985,-86.93466432327413,-86.93464159939461,-86.93460224242816,-86.93458793787826,-86.93460357794092,-86.93466590136761,-86.93474367147347,-86.93478349938579,-86.93483731532963,-86.93484561088815,-86.93475231263237,-86.93473716909212,-86.93474556873549,-86.93477611463408,-86.93477652586549,-86.9348306178485,-86.93489309544064,-86.93498595695796,-86.93507203896701,-86.93525090181865,-86.9353056827981,-86.93535241521158,-86.93540648669011,-86.93547709848265,-86.93550037006598,-86.93550827470597,-86.93548518039628,-86.93552374262801,-86.93552378848281,-86.9355019078322,-86.93540023487417,-86.93533882170456,-86.93523748122037,-86.93517546363854,-86.93504997833199,-86.93492606403773,-86.93480179462367,-86.93470785229661,-86.93464652084354,-86.93463047128488,-86.9346154094943,-86.93462312487362,-86.93473281490419,-86.93473357255597,-86.93471683527932,-86.93467855393516,-86.93464813424313,-86.9345002473285,-86.93447694002838,-86.93446106303932,-86.93441522704332,-86.93430634804616,-86.93415139366054,-86.93410352264094,-86.93408921846205,-86.93405816116089,-86.93405859274546,-86.93404264970448,-86.93383472402014,-86.9342217789895,-86.93430794672435,-86.93435542399453,-86.93435503900373,-86.9343244493077,-86.93427699654849,-86.9341531210093,-86.93405947867628,-86.93402853335782,-86.93384231988095,-86.93365511411822,-86.93362420260141,-86.93367870565527,-86.93377189964066,-86.93386578280695,-86.93392773973402,-86.93395886519095,-86.93395996736437,-86.93393633031923,-86.9338975329011,-86.93379666558006,-86.93364914129415,-86.9336801432802,-86.93358817938322,-86.93347278100343,-86.9333857850477,-86.93332785734364,-86.93312724072018,-86.93292439467484,-86.93275338659635,-86.93251965085292,-86.9322086196222,-86.93211461880881,-86.93206832703591,-86.93206113548142,-86.93200626934012,-86.93191289958659,-86.93185105291248,-86.9317884924431,-86.93169523651261,-86.93160926017217,-86.9315090127368,-86.93146226699795,-86.93138429679149,-86.93131531702134,-86.93122883408076,-86.93100355786203,-86.93092619183,-86.93088751883734,-86.93086444352085,-86.93084888434755,-86.93084892555173,-86.9308333663401,-86.93083379398257,-86.93081784829423,-86.93081870425767,-86.93083348622551,-86.93083434227447,-86.93084988554315,-86.93086678766255,-86.93083448607639,-86.93068054924431,-86.93066460314797,-86.93066425380415,-86.93061002083857,-86.93053224389506,-86.93043941480882,-86.93033070237527,-86.93016984960258,-86.93018301197358,-86.9301834394788,-86.93019821892503,-86.93019861606378,-86.93021449842065,-86.93022343237624,-86.93020709799035,-86.93017598066263,-86.93013049409234,-86.93005162601432,-86.92992753807758,-86.92986526851338,-86.92974119866533,-86.92964794156289,-86.92961653317911,-86.9295617869156,-86.92952265187559,-86.92949212529778,-86.92939854568806,-86.92933669466296,-86.92930498471264,-86.92930561126317,-86.92935209012445,-86.92942982064308,-86.92947672071098,-86.92950048273821,-86.92946966123849,-86.92944613273427,-86.92939150562169,-86.92936855474218,-86.92933662447248,-86.92924405848076,-86.92918160161327,-86.92915068507669,-86.92905700511461,-86.92903408957552,-86.92901773375962,-86.92902624362765,-86.92904181799176,-86.92910367018992,-86.92929038879599,-86.92958851472837,-86.92967862846969,-86.92964025047904,-86.92947363268912,-86.92908346951447,-86.92897613214289,-86.92889855310405,-86.92882535906791,-86.92865034219808,-86.92853049090591,-86.92827951653715,-86.92824859889176,-86.9281241206109,-86.92806169418553,-86.92803116762556,-86.92799174026536,-86.92797565448784,-86.92796008116103,-86.92789065337259,-86.92785951852316,-86.92782811077248,-86.92781285307817,-86.92781266863001,-86.92774297283316,-86.92728994953869,-86.92726130120575,-86.92729214777061,-86.92730004685275,-86.92727643616301,-86.92723801143129,-86.92719063636008,-86.92711361922065,-86.92708241078608,-86.92702004112272,-86.92692676507953,-86.92670899865206,-86.92645981991588,-86.92633491871776,-86.9262732880844,-86.92611694776598,-86.92606259178555,-86.92600913371356,-86.92600170569487,-86.92598534848335,-86.9259231089559,-86.92575979956999,-86.92571351049871,-86.92570619439876,-86.92572054968586,-86.92572051934597,-86.92569016605736,-86.92562004449704,-86.92556568763344,-86.92552658552464,-86.92540159841741,-86.9253401400867,-86.92532376772593,-86.92530850010957,-86.92532365096103,-86.92541697836381,-86.92546290396713,-86.92546995677328,-86.92539261830404,-86.92535332951883,-86.92526026202468,-86.92517465225657,-86.92510416901058,-86.92503433841364,-86.9248870894796,-86.92480765340181,-86.92475333781007,-86.9247070639906,-86.92464465318885,-86.92462958658106,-86.92463707606854,-86.92471491771484,-86.92482386434065,-86.92493362347641,-86.92495707895827,-86.92494144695635,-86.92495761674749,-86.92499615304354,-86.92509691624107,-86.92507460699356,-86.92491868050394,-86.92487269480223,-86.92480276262394,-86.92460761383114,-86.92451523851899,-86.92442088355891,-86.92429640612501,-86.92426650257909,-86.9243130925237,-86.92429744581541,-86.92423593130876,-86.92411863862574,-86.92405589108415,-86.9240491261325,-86.92405670336778,-86.92411139660351,-86.92411100224565,-86.92404918345423,-86.92401765933405,-86.92390168523492,-86.92380800699762,-86.92376163132165,-86.92368309225584,-86.9235980949797,-86.92353533442393,-86.92347300789055,-86.92341856209313,-86.9234037982807,-86.92341169468257,-86.92345031939645,-86.92359765767129,-86.92362190716364,-86.9235831249908,-86.92350532364546,-86.92341247369293,-86.92334981063179,-86.92329566984243,-86.92321738954281,-86.92311655422681,-86.92308560761198,-86.92297651527537,-86.9226958963105,-86.92247933119003,-86.92229251476157,-86.922206354388,-86.92213731760305,-86.92201253389345,-86.92176426514753,-86.92154591975628,-86.92145245608043,-86.92117205643983,-86.92104818643942,-86.92098603555678,-86.92094710751802,-86.9209468972702,-86.92096244557592,-86.92105586117256,-86.92105496568,-86.92110170460855,-86.92110160795556,-86.92114837712258,-86.92114748164866,-86.9211870526165,-86.92124875242617,-86.92124076954492,-86.92122541436309,-86.92120145173233,-86.92111688586763,-86.92107001253522,-86.9210155932662,-86.92092226708917,-86.9208608452939,-86.92075236182635,-86.92068214711442,-86.92063548207338,-86.92051946300077,-86.9204878350435,-86.92044124480553,-86.92043296178679,-86.92044962612573,-86.92053430943851,-86.92055762119401,-86.92054247119395,-86.92048757834901,-86.92042533901113,-86.9203630139997,-86.92030037970385,-86.92012953218553,-86.91998967768892,-86.91974111486165,-86.91964791455899,-86.91956981979357,-86.91953060471056,-86.91949228875799,-86.91943013889352,-86.91936781297375,-86.9192744386463,-86.91921148912751,-86.91908750176327,-86.91887006267304,-86.91880782606086,-86.91875297513722,-86.91858997384813,-86.91849702072604,-86.918185372849,-86.91806128956812,-86.9179673269317,-86.91787345076213,-86.91771870584431,-86.91759321636543,-86.91750822670249,-86.91741402945743,-86.91734449029985,-86.91722010409245,-86.91715776671731,-86.91706387583476,-86.91698608727431,-86.91690865536705,-86.9167757591381,-86.91664329253781,-86.9164876411116,-86.9164636913262,-86.91647924417175,-86.91640941679496,-86.91638546540091,-86.91640060913934,-86.91636229631013,-86.91625297557805,-86.91616715943347,-86.91610450492156,-86.91603425186536,-86.91584751118683,-86.91580879956479,-86.91580879321697,-86.91576970485801,-86.91562165021047,-86.91555142922766,-86.91552828721099,-86.91552786872744,-86.91548835014038,-86.91541011860288,-86.91527844236231,-86.9151842698579,-86.9151922154314,-86.91517586903164,-86.91504337251801,-86.91487987878456,-86.91469346139556,-86.91463081841687,-86.91452189378852,-86.91444406670482,-86.91437345159328,-86.91435867325124,-86.91429561923401,-86.91413161136806,-86.91406895896571,-86.91404621028039,-86.91404580376039,-86.91406896105639,-86.91411541026936,-86.91414595183591,-86.91420857979539,-86.91433101792605,-86.9141031640093,-86.91397338846868,-86.91396923810082,-86.91383199771757,-86.91380419782746,-86.91379521141617,-86.91385066287268,-86.91381045521318,-86.91369425774063,-86.91367102759129,-86.91364037471342,-86.9136316031549,-86.9136319734105,-86.91364672766565,-86.91363874165899,-86.91362278775776,-86.91356052590339,-86.91348229632536,-86.9133961111018,-86.91324088691222,-86.91304580318551,-86.91295206650118,-86.91282057926693,-86.91269562623957,-86.91257155371747,-86.91241466759963,-86.91232231652624,-86.91229118655943,-86.91204186281891,-86.91185614964931,-86.91163694724213,-86.91154468415017,-86.91148125931623,-86.91120128958778,-86.91104599691782,-86.91074301410642,-86.91064118769256,-86.91061045228361,-86.91036071107534,-86.91034477543806,-86.91026697299431,-86.91021269886869,-86.9102122937722,-86.91028980077981,-86.91028967601639,-86.91027410811407,-86.91021267524863,-86.91020351000411,-86.91022716189958,-86.91028160196669,-86.91028928833016,-86.91023541803867,-86.91020348734912,-86.91015663789207,-86.91001701707287,-86.90998570480414,-86.90996983136976,-86.90994749454524,-86.90989253578293,-86.909844664887,-86.90970462390621,-86.90949439306483,-86.90942459062306,-86.90939345720807,-86.90934557529158,-86.90930650125699,-86.90930608684614,-86.9092518221765,-86.90913496309754,-86.90911103052548,-86.90921963249767,-86.90925103304112,-86.90921950392281,-86.90907970886785,-86.90901757658106,-86.90899373761459,-86.90885472220177,-86.90869794165894,-86.9086516754849,-86.90868996444173,-86.90873665012303,-86.90873704832518,-86.90877552665467,-86.90881471119616,-86.90920324436252,-86.909389331367,-86.90945183018412,-86.90954588436158,-86.90957649145163,-86.90960023370529,-86.90961558010433,-86.90959204609129,-86.90956851348412,-86.90951465387886,-86.90943646925045,-86.9091562677517,-86.90890814037215,-86.90869846613613,-86.90850277650425,-86.90839456241353,-86.90830084080233,-86.90815233729138,-86.90809121466746,-86.90804314252469,-86.90794261703643,-86.90790355094836,-86.90781776502047,-86.90761614324188,-86.90742867080959,-86.90730450035652,-86.90721127490654,-86.90705521052469,-86.90690012681836,-86.90682932482395,-86.90671207594589,-86.90655649968113,-86.90637742570649,-86.90634669873945,-86.90629204233568,-86.90612853534689,-86.90601245329852,-86.90595023199459,-86.90592590713374,-86.90594146357974,-86.90586367808733,-86.90586407904158,-86.90590258665596,-86.90599580986269,-86.90601905824865,-86.90604997118358,-86.90612024589041,-86.90618188359917,-86.90624441022743,-86.90639918092025,-86.90655434428425,-86.90664805837814,-86.90683413241862,-86.90698990872535,-86.90708343693045,-86.90711496099982,-86.90720769308169,-86.90723838701223,-86.90733191499896,-86.90739385798686,-86.90739376413777,-86.90737011478494,-86.9072535479674,-86.90684990382498,-86.90670270280106,-86.9064847389126,-86.90632157771107,-86.90629048278778,-86.90619775171379,-86.90594862597017,-86.9057692585136,-86.90545843492696,-86.90529667908199,-86.90520253787835,-86.90507809628679,-86.9049850579113,-86.90478264865503,-86.90456455688812,-86.90436196995903,-86.90433044595918,-86.90426902357063,-86.90423673260584,-86.90400338984121,-86.90384746274307,-86.90381713534646,-86.90373099546218,-86.90369910998372,-86.9036369241076,-86.90354279259182,-86.90352643509556,-86.90347261232235,-86.90342635867674,-86.90328596784383,-86.90323091820669,-86.90307527008844,-86.9029117502859,-86.90281840771742,-86.90275680351512,-86.90257033852973,-86.90253863218065,-86.90244529205702,-86.90236034422148,-86.90223578357462,-86.90210338299975,-86.90176971134166,-86.90169272524085,-86.9016225404783,-86.90149010147293,-86.90129642602054,-86.90074468148715,-86.90054272962904,-86.90052716715566,-86.90005310329423,-86.89967355160667,-86.89945535795958,-86.89884183241962,-86.89850029797869,-86.89806498137104,-86.89766158913793,-86.89722581052122,-86.89694636967775,-86.89655725075821,-86.89606032024611,-86.89599828385249,-86.89565585037185,-86.89556289824297,-86.89543841956082,-86.89540732711541,-86.89515839643914,-86.89500361788183,-86.89497252279099,-86.8946306395562,-86.89459954454512,-86.89453692312053,-86.89450579728368,-86.89438116570737,-86.89428879406231,-86.89403928778383,-86.89326206647662,-86.89298302368793,-86.89264075212388,-86.89248578969625,-86.89239185603849,-86.89208151392498,-86.89186314955067,-86.89180133184723,-86.89177020686013,-86.89161467954722,-86.89158355342639,-86.89142732600266,-86.89120974883393,-86.89099210611779,-86.89046326869537,-86.89021310513351,-86.89008948320384,-86.88996496910659,-86.889809996381,-86.88974680148816,-86.88956023460509,-86.88909402676673,-86.88896919422999,-86.88881487190881,-86.88859650615633,-86.88832446532182,-86.88816058051152,-86.88792681709533,-86.88779446575749,-86.88773188195321,-86.88763069221693,-86.88756810923859,-86.8875366233234,-86.88748199110384,-86.88735806954969,-86.88719517524844,-86.88713194770384,-86.88691496438837,-86.88672871460503,-86.88657268223645,-86.88647886405046,-86.88641745504017,-86.88633872244914,-86.88624511354311,-86.88612877532505,-86.88604267586453,-86.88598087709029,-86.88583292100977,-86.88566128282162,-86.88538929947359,-86.88529618736817,-86.88526577469165,-86.88528056420294,-86.88526500834355,-86.88524935795049,-86.88517108219649,-86.88508621201916,-86.88498471185916,-86.88489124149086,-86.88473730849785,-86.88470520768225,-86.88464299422202,-86.88451893463157,-86.88414487046531,-86.88377196176211,-86.88361653506641,-86.88343087563628,-86.88314991226628,-86.88311922747543,-86.88286956851769,-86.88283888396424,-86.88268316411684,-86.88255892753524,-86.88249691075227,-86.88221708519431,-86.88215408886481,-86.88210812800324,-86.88208462847292,-86.88208466388312,-86.88204601770103,-86.88195991362764,-86.88186623406965,-86.88167183755279,-86.88164071447109,-86.88151648018338,-86.88027194021298,-86.88021740055697,-86.88016223294836,-86.87996316439657,-86.87944630799298,-86.88043276812721,-86.88035030973167,-86.88022584087629,-86.87991786361845,-86.87983807664304,-86.87938343353254,-86.87931587909748,-86.87940132982526,-86.87938577691909,-86.87927711780989,-86.87871808733343,-86.87879551639344,-86.87891124381166,-86.87917577041455,-86.87932359451641,-86.87969593027951,-86.88003738133806,-86.88006891012914,-86.88022405883916,-86.88027884511189,-86.88028623047317,-86.88026274442205,-86.8802397173574,-86.88013082869925,-86.87985085649495,-86.8796952073665,-86.87945447828936,-86.87932993434484,-86.87924524086695,-86.87916712783135,-86.87835138521872,-86.87827349790895,-86.87815680337789,-86.87800252571978,-86.87797148174737,-86.87792387129633,-86.87769920000346,-86.87759861952844,-86.87742028686681,-86.87694547297127,-86.8767287444316,-86.8765727379263,-86.87647986548802,-86.87624680945289,-86.87615288262731,-86.8760910545591,-86.87596621207751,-86.87575658465529,-86.87552314030516,-86.87538436122554,-86.87528189108681,-86.87523590974605,-86.8752355475378,-86.87525032148345,-86.87523520502944,-86.87523527111961,-86.87521975307646,-86.87521977735263,-86.87518790355961,-86.8751491539408,-86.87512503536711,-86.87503053603018,-86.8749600405327,-86.87495977590387,-86.87494502227273,-86.87492931002075,-86.8748195938375,-86.87481884280513,-86.8748500327354,-86.87480343050173,-86.87480309771004,-86.87491090600795,-86.87492652441031,-86.8749263968847,-86.87483252931393,-86.87477031664987,-86.87473968056007,-86.87462327642274,-86.87445250499673,-86.87423524338689,-86.87404968494577,-86.87390172708838,-86.87380865488808,-86.87356077794134,-86.87331174262249,-86.87315696525627,-86.87306383915684,-86.87300118237933,-86.87281430670406,-86.87272228577159,-86.87265189726369,-86.87258171362771,-86.87250305045943,-86.87239522135097,-86.87230083385134,-86.87220808567803,-86.87211447194142,-86.87195899782759,-86.87174208300361,-86.87143111310219,-86.87112029613345,-86.8708724360483,-86.87025128180869,-86.87018924270882,-86.86994081808949,-86.86975321687751,-86.8696920061705,-86.8695366056839,-86.86942018838535,-86.86934237099716,-86.86924139808644,-86.86921017495645,-86.86914914002571,-86.86896205033639,-86.86885324426618,-86.86877573554983,-86.8687677129836,-86.86885376988035,-86.86888570994375,-86.86886923283492,-86.8688387018228,-86.86875240248553,-86.86869881790366,-86.86866023864405,-86.86857511668126,-86.86841961072329,-86.86817127804348,-86.86782842424661,-86.86745610283849,-86.86737031308523,-86.86730868722691,-86.86717673216809,-86.86705183058311,-86.86704529744222,-86.8671462326373,-86.86723964855791,-86.86745693349911,-86.86761241646595,-86.8676746333672,-86.86771389910712,-86.8677991122979,-86.867908713148,-86.86794774673611,-86.86794699280408,-86.8678930962046,-86.86779934346134,-86.86768333319466,-86.86763725217234,-86.86762958592858,-86.86758298943214,-86.86737267639502,-86.867279588359,-86.86718695509659,-86.86716335573999,-86.86717208974825,-86.86719439067845,-86.86728847172272,-86.86732788932292,-86.86731197144583,-86.86726593415635,-86.86723478518608,-86.86721956065598,-86.86722021377877,-86.8671651787068,-86.86707208488096,-86.86701777364051,-86.86701851217187,-86.86700311315799,-86.8669481064952,-86.86689364567928,-86.86684802115381,-86.86684729674907,-86.86681652796983,-86.86670883147316,-86.86665423576366,-86.86644501934099,-86.8663981095936,-86.86636736855468,-86.86636731029739,-86.8664768801647,-86.86646865065075,-86.86625909005504,-86.86614989959661,-86.86612688614767,-86.86609604299088,-86.86606481252895,-86.86597139180518,-86.86566105313165,-86.86551324376785,-86.86543648867105,-86.86537323508304,-86.86536600377681,-86.86538969385037,-86.86544440492142,-86.86547508884995,-86.86559201999012,-86.86564624663957,-86.86567734527493,-86.86570162345984,-86.8657082463569,-86.86578695650486,-86.86587947881169,-86.86594938662816,-86.86600471812571,-86.86608231246541,-86.86612847166805,-86.86622913421209,-86.86629209275985,-86.86629244711396,-86.86624619805039,-86.8660675968643,-86.86591231896382,-86.86553991757145,-86.86545443829401,-86.86546247998611,-86.86556331845114,-86.86568022546683,-86.86577423941816,-86.8659914619499,-86.86602258937666,-86.86614780409531,-86.86617893171517,-86.8662407408284,-86.86636456823726,-86.86655183080184,-86.86669909887006,-86.86677707907427,-86.86683079256794,-86.86686265755331,-86.86688617043689,-86.8668865982514,-86.86687071095368,-86.86676989536943,-86.86649010413429,-86.86644416323961,-86.86640539359551,-86.86640563928547,-86.86639037198765,-86.86637525230792,-86.86635188044725,-86.86622006891436,-86.8661268313616,-86.86612731551237,-86.86611121897015,-86.86611116058468,-86.86614264204026,-86.86625183920241,-86.86626776876228,-86.86626812258422,-86.86618991885999,-86.866089199448,-86.86603526017542,-86.8660348178,-86.86605033744829,-86.86605155900446,-86.86601952947822,-86.86602039906808,-86.86597355968411,-86.86594278298212,-86.86594345836505,-86.86595856213717,-86.86600633160752,-86.86606011669261,-86.86616969948561,-86.86639529714789,-86.86669976749636,-86.86680056211604,-86.8668316321438,-86.86686302635346,-86.86690974807016,-86.86702615251789,-86.8671199677123,-86.8671825804585,-86.86743059988302,-86.8677419535303,-86.86787438323113,-86.86795961257027,-86.86806843461385,-86.86817047093079,-86.86826410190581,-86.86835017622161,-86.86842761951158,-86.86871542101113,-86.86878517829165,-86.8689342573509,-86.86898120815083,-86.86899596153923,-86.86899700250959,-86.8690587338226,-86.86910574543795,-86.86910607186982,-86.86913750038077,-86.86913747505432,-86.86921591423642,-86.86930158159811,-86.86955108440027,-86.86959012818281,-86.86961279657999,-86.86960553761111,-86.86948925824933,-86.86941215800408,-86.8693111253252,-86.86922605295787,-86.86919533565687,-86.86911754160221,-86.86899354056118,-86.86895550873258,-86.86895527788982,-86.86894041007436,-86.86888676906291,-86.86883293324864,-86.86853821361868,-86.86831313357125,-86.86812658818025,-86.86798675509424,-86.8678312965156,-86.86733475643382,-86.86685296852977,-86.86665921285416,-86.86646463284116,-86.86642557382741,-86.86631008034995,-86.86618551056836,-86.86565764403571,-86.86537788573465,-86.86521483293004,-86.86508306027659,-86.86497518879571,-86.86492799233966,-86.8648508479789,-86.86480479110878,-86.86475762466083,-86.8645568872672,-86.86453365170279,-86.86449486962303,-86.86444891301365,-86.86443294564349,-86.86437071403256,-86.86413038448804,-86.86404522264007,-86.86398291835664,-86.86398250237708,-86.8639369593686,-86.86392921440674,-86.86394396886864,-86.86396022002083,-86.86399091076939,-86.8640067495343,-86.86387633077545,-86.86386090058733,-86.8638763886018,-86.86391571416698,-86.86407181174135,-86.86408771519818,-86.86408755228256,-86.8641038999573,-86.86410387195347,-86.86413529410251,-86.86424480062526,-86.86424445615951,-86.86422838492589,-86.86413598875278,-86.86413668719793,-86.86415217801817,-86.86419160049884,-86.86434700476043,-86.8645032374254,-86.86458138785923,-86.8646431557616,-86.86469806871546,-86.8646980030524,-86.86467518609818,-86.86459764000759,-86.86456681811454,-86.86444296191785,-86.86438096558861,-86.86438125278845,-86.86439715598347,-86.8644429904429,-86.86457618471522,-86.86466188975879,-86.86473159295484,-86.86473998388288,-86.86472516542182,-86.86468568123517,-86.86460788595882,-86.86436016614053,-86.86399480241684,-86.8639715242093,-86.86364672522372,-86.86334356071015,-86.86320410156694,-86.86298677266215,-86.86283906098815,-86.86243484274456,-86.86202272807725,-86.86168988877679,-86.86137125953137,-86.86116150225556,-86.86099864941147,-86.86065749323211,-86.86053291560221,-86.86037779072497,-86.86015912794031,-86.86012801428753,-86.86003517569371,-86.86000406484325,-86.85991074089868,-86.85963041003814,-86.85944437832268,-86.8591957470498,-86.85916481339055,-86.8584185084645,-86.85838674814904,-86.85832529063792,-86.85819208580524,-86.85809965803907,-86.85801446733052,-86.85797490279303,-86.85793351871895,-86.85770313738108,-86.8576411939413,-86.8573548168465,-86.85723844028331,-86.85716044960789,-86.85698989145536,-86.85675585871735,-86.85642952982148,-86.85615038616349,-86.85596358100493,-86.85559165852712,-86.85540457727987,-86.85484547621338,-86.85481422527364,-86.85456454029348,-86.8545333967232,-86.85441026200384,-86.85416037217905,-86.85403603493954,-86.8538188774816,-86.85353926392928,-86.85350752892285,-86.85341416043678,-86.85335207483449,-86.85313416382112,-86.85310364398589,-86.8530413567477,-86.85291726527875,-86.85264456040116,-86.85258223733668,-86.85245798266581,-86.8523648717907,-86.85221647288115,-86.85199864870938,-86.85168752295091,-86.85150072640316,-86.85112829162642,-86.8510023610831,-86.85094127948959,-86.85075426639,-86.85069158944111,-86.8504750575958,-86.85019486175234,-86.85016274888579,-86.85007017923994,-86.85003883336614,-86.84982095453122,-86.84969661558378,-86.84963453379591,-86.84947931777876,-86.84938559618519,-86.84925368250242,-86.84912986778677,-86.84904353731972,-86.8489123508873,-86.84883480651574,-86.84881952569508,-86.84874257855316,-86.84872677593054,-86.84874303057339,-86.84873503447142,-86.84868074517672,-86.84848788349389,-86.84832473352,-86.84817664799428,-86.848115095802,-86.84802993032883,-86.84799869618135,-86.84796778827726,-86.84796769919083,-86.84791393376096,-86.84787529640732,-86.84785248162476,-86.84776540141682,-86.84776289496192,-86.84775899723049,-86.84772259444502,-86.84766690156347,-86.84758449689309,-86.84753435392076,-86.84749716030267,-86.84744948220786,-86.84739810692284,-86.84737139248401,-86.84734591133022,-86.84730912414557,-86.84730748062252,-86.84729453456937,-86.84722301776259,-86.84723021111357,-86.84722610224179,-86.84721952750745,-86.84722548747436,-86.84720041751692,-86.84719384290281,-86.84716753910355,-86.84715417919936,-86.84708512559175,-86.84705799976238,-86.84704258751258,-86.84701381759852,-86.84697661799397,-86.8469499025033,-86.84691270246033,-86.84688680877656,-86.84683995035604,-86.84678302011689,-86.84672732333351,-86.84660668527479,-86.8464667223261,-86.84632758333001,-86.84608403786426,-86.84591427877344,-86.84582877798121,-86.84577472433355,-86.84568799408093,-86.84554186577606,-86.84552850551714,-86.84543478023049,-86.84536695644832,-86.84528495019708,-86.84523685623525,-86.84517704477186,-86.84512853672165,-86.84508290762993,-86.84500213105963,-86.8449238240959,-86.8448559982829,-86.84474500750163,-86.84467635770019,-86.84459846031301,-86.84453186747405,-86.84445396848218,-86.84436435403971,-86.84426384454341,-86.84420608533384,-86.84414832648137,-86.84411030178187,-86.8440843987365,-86.84405644119303,-86.84405191569128,-86.84405787200413,-86.84405293531219,-86.84405765848346,-86.84405313299503,-86.8440284661886,-86.84401941560314,-86.84401653580605,-86.84398138697142,-86.84393534334865,-86.84379680132848,-86.84377090050965,-86.84372115154561,-86.84365167489968,-86.84360316161826,-86.84352319966527,-86.84347550886208,-86.84341692687808,-86.84340397335583,-86.8433223646102,-86.84327426498426,-86.84326726908432,-86.84327116595489,-86.84325574635095,-86.84325121947668,-86.84327813897433,-86.84332561528166,-86.84342591431195,-86.84346208250579,-86.84351798391117,-86.84358519164871,-86.84362218309398,-86.84365753137052,-86.84369493822787,-86.84375166194907,-86.8437757020565,-86.84382071012466,-86.84387661313527,-86.84388421435871,-86.84390106337885,-86.84390332087843,-86.84387782630643,-86.84382931314667,-86.84378367696524,-86.84368233292932,-86.84358346085928,-86.84339948761534,-86.84322393831492,-86.84307223877539,-86.84288785189493,-86.84270675580849,-86.84247118846666,-86.84234210023749,-86.84219162916071,-86.84188780777582,-86.84181195412914,-86.84168162758436,-86.8415940562077,-86.84149311808405,-86.8414357631907,-86.8414001927197,-86.84134036295281,-86.84133377357324,-86.84132800798061,-86.84130086575482,-86.84125316554754,-86.84123650510496,-86.84124964625725,-86.84127533138422,-86.84133924155076,-86.84137458852761,-86.84141075347955,-86.84143396909353,-86.84143580254171,-86.84140577685881,-86.84133381551295,-86.84124253014831,-86.8410862870623,-86.84086508172724,-86.84058156489843,-86.84052667707905,-86.84040558826919,-86.84026352750944,-86.84020905134514,-86.84015374765744,-86.8400443761828,-86.83985914566212,-86.83971791052042,-86.83956742951948,-86.83941570770077,-86.83928577975016,-86.83917682269637,-86.83904771844679,-86.8389718549776,-86.83888592295317,-86.83865751355607,-86.83862441645196,-86.8384903620304,-86.83830553768192,-86.83816058885301,-86.83803024576142,-86.83794265946226,-86.83778969965492,-86.8376577051083,-86.83756805943106,-86.83747882332568,-86.83742104078642,-86.83733857912658,-86.83729929233206,-86.83727131368654,-86.83726059004002,-86.8372640614545,-86.83730022287834,-86.83730122313069,-86.83733491010344,-86.83736612535927,-86.83739015306583,-86.83743308949316,-86.83754752831589,-86.8375769205784,-86.83761349922369,-86.83766055759102,-86.83772859123597,-86.83779538440059,-86.83783278485166,-86.83788909353578,-86.83791683775173,-86.83795712777886,-86.83801838715084,-86.8380788199084,-86.83814891246521,-86.83814520102328,-86.83810078790503,-86.83805761511361,-86.83802450896791,-86.83804424000908,-86.83807528355528,-86.83811681104979,-86.83818937899539,-86.83826194592174,-86.83841797806213,-86.8385312499552,-86.83863444935841,-86.83869529538865,-86.83875243278096,-86.83886034398763,-86.83894257310564,-86.83902439263639,-86.83907475257777,-86.83914361464832,-86.83917300623311,-86.83920835111925,-86.83921677418739,-86.83919013738561,-86.8392273725098,-86.839251056009,-86.83935101045947,-86.83940873606053,-86.83952540725427,-86.83959863429324,-86.83977486067873,-86.83990642258313,-86.83998147487269,-86.84006958916561,-86.84050319648523,-86.84054847161701,-86.84072957569326,-86.84097084838224,-86.84114952154192,-86.84123824583274,-86.84144791533465,-86.84155153040014,-86.84174814004325,-86.8419459643282,-86.84206690789448,-86.8421735677961,-86.84230696576087,-86.84236652561361,-86.84253335656834,-86.84271751147338,-86.84280867751283,-86.84293023066289,-86.84311255999056,-86.84326572032612,-86.84346476610166,-86.84368052993995,-86.84377169559134,-86.84389507554678,-86.84405006049717,-86.84409655693662,-86.84437553047083,-86.84460801194791,-86.84487149001642,-86.84508542601054,-86.84536014531079,-86.84551269815285,-86.84561997454614,-86.84581659124052,-86.84599588590606,-86.84614540084698,-86.8462204641275,-86.84629674112956,-86.84649214792405,-86.84661066651574,-86.84665412214102,-86.84679877659255,-86.84685225875785,-86.84694616250727,-86.84695071927661,-86.84688142793439,-86.84682945551609,-86.84671610102065,-86.84666899313716,-86.84660091844681,-86.84660972821854,-86.84666868313556,-86.84674435794217,-86.84679085470624,-86.84688324377591,-86.84702091364532,-86.84709719339152,-86.84718897298679,-86.84731175327657,-86.84737131671196,-86.84747981472665,-86.84760502488112,-86.84769862643597,-86.84780469258642,-86.84791136484513,-86.84800314338352,-86.84806635831721,-86.84811954018052,-86.84815357678553,-86.84820615490207,-86.84822712228819,-86.84820037603268,-86.84820402222732,-86.84823806087256,-86.84825538274933,-86.84832223964757,-86.84835688247989,-86.84841128266359,-86.84846446286564,-86.84842100501025,-86.8483632603114,-86.84827330658698,-86.84815235141821,-86.84806361152678,-86.84802562214158,-86.8480335223193,-86.84805752963956,-86.84806786045525,-86.84807332954671,-86.84806573052451,-86.84805570206471,-86.84806299447122,-86.84808456862864,-86.84811343658242,-86.84807666486381,-86.84808031081384,-86.84804232037862,-86.8479535855485,-86.84783749743015,-86.8478739627604,-86.84792288762608,-86.84797424672857,-86.84816751780528,-86.84832918478347,-86.84847353043153,-86.84861726798945,-86.84878014830647,-86.84895609551201,-86.8489883070191,-86.84913022092471,-86.84917671443246,-86.84936269452437,-86.84945871763587,-86.84949457644795,-86.8495310391793,-86.84953346869408,-86.84970819793904,-86.84980179083959,-86.84997348839956,-86.85012786220298,-86.8501904594718,-86.85043721778467,-86.85064765472913,-86.85075735659478,-86.85105364124387,-86.85114420138206,-86.85123536855089,-86.85146602231194,-86.85165078541745,-86.85180516085353,-86.85194282215087,-86.85220568609309,-86.85237373941601,-86.85261746007241,-86.85275330419775,-86.85288854151582,-86.85296118085525,-86.85315659108262,-86.85335564160678,-86.85367746706316,-86.85395037326546,-86.85407072125408,-86.85425366928527,-86.85429834854375,-86.85440319752844,-86.85456761873142,-86.85464268403217,-86.85471714632587,-86.85477671381481,-86.85484874656908,-86.85493325141948,-86.85495697173367,-86.85495030201967,-86.85475279685394,-86.8546412726127,-86.85449632528832,-86.85430488258184,-86.8542468634509,-86.85425629708853,-86.85434807885127,-86.85444349610886,-86.85454073570567,-86.85463615607935,-86.85473278565884,-86.85476499542609,-86.85490340528544,-86.85495111509003,-86.85504592668045,-86.85514074062252,-86.85516991859433,-86.85521277603374,-86.85520913823716,-86.85512679512773,-86.85507848044483,-86.85494660714951,-86.85484997313269,-86.85473481003737,-86.8546375716396,-86.8545546177854,-86.85448837900462,-86.85442092070826,-86.85436836057401,-86.8543170124893,-86.85428177009973,-86.85427934412587,-86.8542744920603,-86.85428817052093,-86.85441094798793,-86.85445744874141,-86.85449026490738,-86.85454100637709,-86.85459114498143,-86.85459599677614,-86.85462941996813,-86.85466284403719,-86.85470873393247,-86.85472241239106,-86.85473548896177,-86.85474734825303,-86.85477652743405,-86.85485523397782,-86.85485887262136,-86.85486190449458,-86.85485246881066,-86.85484121595029,-86.85484364149671,-86.85490745632868,-86.85501655593384,-86.85506305625262,-86.85524661844396,-86.85532047325455,-86.85536515379162,-86.85526730749396,-86.85523449179951,-86.85518617503186,-86.85516824748157,-86.85524635197216,-86.8553429856191,-86.85542229920298,-86.85553200553807,-86.85557971435178,-86.85562560418023,-86.85583956257474,-86.85588242070489,-86.85596874950046,-86.85601039653618,-86.85597455015689,-86.85592562868528,-86.85600190972312,-86.85607819520231,-86.85613776627467,-86.85618244454037,-86.85622652003401,-86.85627119841473,-86.85639579942755,-86.8565705328723,-86.85671245162303,-86.85678873410065,-86.85692519763712,-86.85701455862903,-86.85707534248633,-86.85717136963908,-86.85720479142758,-86.85728592514323,-86.85742723399473,-86.85744273635306,-86.85753330530679,-86.85756187891944,-86.85757314174937,-86.85759929157963,-86.85759505040762,-86.85753062737817,-86.85748231249319,-86.85747867694391,-86.85759782655116,-86.85762579440747,-86.8576388698872,-86.85763523445279,-86.85758570842889,-86.85750699681009,-86.85741157819261,-86.85742404772461,-86.85743894082746,-86.85749911974688,-86.85755627268856,-86.85755324308145,-86.85751860993189,-86.85742500443314,-86.85736300493426,-86.85731650552908,-86.85717701077816,-86.85712990526574,-86.85715787451018,-86.85721926898833,-86.85726515990468,-86.85734205120738,-86.8574040516735,-86.85743323216302,-86.85740041592597,-86.85733417360628,-86.85725607018315,-86.85717857113153,-86.85710107467298,-86.8570384680923,-86.85697525971243,-86.85694244217616,-86.85695491135364,-86.85699777307046,-86.85707103104113,-86.85709839275604,-86.85710722697372,-86.8571005606378,-86.85709389452933,-86.85710333363379,-86.85704774461601,-86.85698028846809,-86.85694807711587,-86.85686936634961,-86.85665054750528,-86.85651165415041,-86.85634600532381,-86.8563025358838,-86.85610831389585,-86.85606241819301,-86.85594205635947,-86.85577701531567,-86.855702549311,-86.85564357975979,-86.85558400743858,-86.85555422111149,-86.85554054077069,-86.85556089083367,-86.85561102648811,-86.85562834412983,-86.85566116236295,-86.85564808825671,-86.85561769594598,-86.85556937899553,-86.85555266708006,-86.8555037404285,-86.85546971001088,-86.85540650009106,-86.85536060840063,-86.85529982098073,-86.85525271483817,-86.85515668533482,-86.85504575893721,-86.85501476106462,-86.85493787068999,-86.85489197900125,-86.85480140533387,-86.85475611676605,-86.85464883422966,-86.85463151470863,-86.85464458890358,-86.85470173430748,-86.85469930846943,-86.85461635224664,-86.85461574579352,-86.85459539504008,-86.85450940412908,-86.85449329724048,-86.85442705334867,-86.85434651957637,-86.85414488662185,-86.85411146114689,-86.85399992744092,-86.85378353324677,-86.85367564295871,-86.85339785685488,-86.85327628507589,-86.85309210765516,-86.85298421523107,-86.85278150365856,-86.85273257323711,-86.85263532863083,-86.8525529722618,-86.852500404206,-86.85248247612618,-86.85243233662062,-86.85234755161261,-86.85234087505889,-86.85237948350641,-86.85239316578759,-86.85253299346654,-86.8525679612426,-86.85257739193568,-86.85261660845735,-86.85265825729481,-86.85271479394169,-86.85277133105015,-86.85300281457171,-86.85305935699556,-86.85314204494115,-86.85319555015641,-86.85327884267323,-86.85334906578311,-86.85349497101838,-86.85364269723576,-86.85386671669664,-86.85395425939777,-86.85411870176553,-86.85423785537095,-86.8544165862821,-86.85462874997029,-86.85481112196902,-86.85497799274383,-86.85506918172477,-86.85523666044008,-86.85535824466608,-86.85564548809221,-86.85592086746463,-86.85614732420515,-86.85631480470344,-86.85645067829179,-86.85658776465638,-86.85677074783611,-86.85681422327301,-86.85703570037154,-86.85707978222793,-86.8572585249272,-86.85741994973029,-86.85756587264753,-86.85789539157599,-86.85810575098377,-86.85845077437149,-86.85870582301176,-86.8589794009757,-86.85905266834449,-86.85922839126228,-86.85940411524368,-86.85946248960434,-86.85960963574705,-86.85962089728237,-86.85949324559796,-86.85948900545233,-86.85957777980772,-86.85962246679105,-86.85962004397966,-86.8595252149765,-86.8594018059559,-86.85935650877569,-86.8593112151803,-86.85928081749489,-86.85920330640234,-86.85917109061214,-86.85916927330082,-86.85919785445152,-86.85922704317544,-86.8593194478494,-86.85944285947915,-86.8595036549324,-86.85961035271218,-86.85967115347188,-86.85982253971494,-86.8599584256183,-86.86007759583542,-86.86016515809052,-86.86050003053428,-86.860544117556,-86.8606961131016,-86.86103231981662,-86.86127672554821,-86.86157066753698,-86.86184547007461,-86.86211725185287,-86.86260970185437,-86.86311644238644,-86.86344078595766,-86.86415269457522,-86.86469891380814,-86.86516096706863,-86.86559382743562,-86.86610722901747,-86.86658720488907,-86.86695866186379,-86.86731401516462,-86.86778030360854,-86.86808914814192,-86.86833598401168,-86.86928698238025,-86.86942771461867,-86.86997030994148,-86.87024633746795,-86.87057129509758,-86.87084913457522,-86.87105006918118,-86.87140421763145,-86.87163615761,-86.87208332539262,-86.8725280810757,-86.87291444423245,-86.87334611246118,-86.87351362827988,-86.87383617381184,-86.8740669094479,-86.87432865265318,-86.87448247632969,-86.87492844560106,-86.87512608518476,-86.87512639578257,-86.87528273257729,-86.87546953964582,-86.87562539141243,-86.87581307295933,-86.87606146394864,-86.8763422030424,-86.8765602826594,-86.87662276284438,-86.87705971594978,-86.87715256731029,-86.87771330197558,-86.87780656586386,-86.87805578046485,-86.87808753400151,-86.87828224438945,-86.87830522620808,-86.87849254886218,-86.87906135863049,-86.87951345748515,-86.87953674862436,-86.87984053660912,-86.88038632861844,-86.88040959197762,-86.88064320516906,-86.88095489435757,-86.88120373967423,-86.88146156679399,-86.8815163023973,-86.8817963141974,-86.88183545466632,-86.8819824435683,-86.88205334056011,-86.88210724860475,-86.88220913491156,-86.8824503782059,-86.88248951852383,-86.88251250257618,-86.88266868056242,-86.8828324492013,-86.88303527875878,-86.88332289235208,-86.88341616975141,-86.88354084577335,-86.88366630334174,-86.8838988615433,-86.88405507748416,-86.88443680679678,-86.88455319178405,-86.88477947281788,-86.88491240867833,-86.88512211738473,-86.88548898468692,-86.88580016232822,-86.8859877830815,-86.8862131249969,-86.88623610331462,-86.88629840382497,-86.88639224809428,-86.8864313887242,-86.88645436778226,-86.88649351125734,-86.88651725703842,-86.88658707457034,-86.88701582094268,-86.88723333671729,-86.8876072690917,-86.88785700343921,-86.88823103091036,-86.88835503107467,-86.88838619658225,-86.88854977175127,-86.88863604394898,-86.88882336353826,-86.8890722194524,-86.88910335409294,-86.8892281803132,-86.8893533655507,-86.88953969521474,-86.88969547151896,-86.88972660593853,-86.89003795293191,-86.89026422061028,-86.89050524666875,-86.89053641110543,-86.89103564330256,-86.89106680823339,-86.89125903573895,-86.89134698624703,-86.89153343903915,-86.89162737773034,-86.89187664441596,-86.89206316171251,-86.89221942707093,-86.892779683298,-86.89299780879558,-86.89312240677539,-86.89327826747005,-86.89349663408746,-86.89383989146775,-86.89408908725987,-86.89430653150963,-86.89453287621808,-86.89464959412494,-86.89486876346048,-86.89521108481516,-86.89570968654351,-86.89580333040814,-86.8959593704178,-86.89673723029109,-86.89761081907146,-86.89823349890895,-86.89860821073569,-86.89913724627573,-86.89929319221781,-86.89954268777446,-86.89979148468568,-86.90029027226615,-86.90057060277123,-86.90063391427579,-86.90128807088031,-86.9016303340097,-86.9019111936035,-86.90234769803617,-86.90247150415533,-86.90250266907768,-86.90281429665261,-86.90303264097713,-86.90340678422469,-86.90359378007985,-86.90362494472839,-86.90374874719296,-86.90381165940012,-86.90403012374448,-86.9042785228428,-86.90434122303103,-86.90446621838078,-86.90462118784004,-86.90465232160174,-86.90474676642073,-86.90493366522884,-86.90497203943536,-86.90549438362171,-86.90580587622088,-86.90646060478596,-86.90686515681314,-86.90695858922142,-86.90708358583154,-86.90730183007365,-86.90733317702421,-86.90752028747994,-86.90755163717206,-86.90780021440648,-86.90783156403647,-86.90795558008874,-86.90823691690315,-86.90826826684082,-86.90845458166676,-86.90867322352732,-86.90876665543286,-86.90879800372137,-86.90904759804212,-86.90948310676919,-86.90957675325892,-86.91016940232389,-86.91032473883554,-86.91060448232125,-86.91072978605725,-86.91088542948812,-86.91119793301979,-86.91169553170705,-86.91194552304535,-86.91203877280222,-86.91238192141812,-86.91253777393216,-86.91278678561672,-86.91322286922366,-86.91350291798109,-86.91363591515258,-86.91384658137504,-86.9140325513967,-86.91412671879533,-86.91420398386404,-86.9143287945211,-86.91457797867542,-86.91480430819904,-86.91513167186179,-86.9154588508398,-86.91553602151937,-86.91591809417309,-86.91615870539627,-86.91619783567428,-86.91621390174345,-86.91618226950051,-86.91611975710505,-86.91596412576217,-86.91594086991603,-86.91594086403153,-86.91597199322611,-86.91600234753693,-86.91600233399936,-86.91602671154351,-86.91613493589863,-86.91628346759404,-86.91703044053459,-86.91749744275262,-86.91751301948783,-86.91776257251091,-86.91797184220631,-86.91819823199823,-86.91836963508088,-86.91865046746318,-86.9188529065259,-86.91899185770897,-86.91921785667505,-86.91954487871389,-86.91960714680013,-86.91967700789996,-86.91973888400543,-86.91975445930252,-86.9197704146428,-86.91977033931533,-86.91975317141964,-86.91973899462143,-86.91973856719102,-86.91976970048815,-86.91975372440929,-86.91978486909547,-86.91987788973967,-86.91987866915709,-86.91981515786277,-86.91979999769916,-86.91979958559234,-86.91985388629453,-86.91993213559165,-86.91991635518707,-86.91984585565299,-86.91984627342642,-86.91990854405711,-86.92005668720331,-86.92018134167421,-86.92036051553977,-86.92064021442127,-86.9208267507514,-86.92129421315131,-86.9216061292461,-86.92173758783818,-86.92198751080015,-86.92223607339803,-86.92227489044708,-86.92247778958672,-86.92267982322058,-86.92284348720257,-86.92293650487581,-86.92294410748612,-86.92297562714157,-86.92311497502098,-86.92327147326642,-86.92338043898911,-86.92349693041862,-86.92377730274485,-86.92380846185942,-86.92405688909007,-86.92430682334833,-86.92446264172865,-86.92471121304591,-86.92486811753936,-86.92511638412377,-86.92527301529694,-86.92549061691088,-86.92561482929041,-86.92567828949606,-86.92570944787762,-86.9258959342506,-86.92592706283207,-86.92605244690871,-86.92608360595212,-86.92623871465646,-86.92626987386366,-86.92645636160059,-86.92648749028342,-86.92661268958153,-86.92670593290634,-86.92683091641186,-86.92692415750885,-86.92760995231717,-86.9276726477581,-86.92785933708157,-86.92804640768667,-86.92823386586336,-86.92860704713969,-86.92904440618292,-86.92941708791709,-86.9296358289578,-86.92990130511735,-86.93001073309438,-86.93005667173398,-86.93010379551971,-86.93029073723388,-86.93039220007525,-86.9304857243763,-86.93053331306444,-86.9305481048535,-86.93056412617018,-86.93058012092526,-86.93058092240369,-86.93059571412643,-86.93059577127516,-86.93058060814812,-86.9305802332802,-86.9305339955999,-86.93050375682914,-86.93045709425299,-86.93042612226346,-86.93041005653497,-86.93040290063851,-86.93042649846795,-86.93042653483303,-86.93036478854222,-86.93034872335532,-86.93025240202455,-86.93003756395015,-86.92980133132747,-86.92972364671689,-86.92967049333291,-86.92959928645551,-86.92954283858903,-86.92954281538668,-86.92962182242691,-86.92956331714302,-86.92945407727601,-86.92936784594045],"lat":[45.40349004565761,45.40364352254925,45.40375377913989,45.40384128181463,45.40388570255646,45.40390750269823,45.40414942801409,45.40441891235614,45.40454495659132,45.40494071804573,45.40531444724458,45.40562270966812,45.4059086033273,45.40597394698566,45.40617775209395,45.40619422059178,45.40622179001219,45.40623825607987,45.4062658047492,45.40628226771013,45.40630984025707,45.40632628725011,45.40635329050111,45.40637032158493,45.40646343083292,45.40674392918873,45.40687599575266,45.40690356467584,45.40691947043373,45.40710105722253,45.40711750180125,45.40721103724022,45.40722750567102,45.40735946217282,45.4075411707168,45.40755707532801,45.4077770298552,45.40800252060504,45.40801898779925,45.40813458702218,45.40821680661876,45.40850839373605,45.40892061216245,45.4090362338499,45.40905269974775,45.40907968693402,45.40914018811794,45.40925059972716,45.40927212229896,45.40932164138692,45.40933809120457,45.4094095420044,45.40942600909935,45.40949240382026,45.40951448949249,45.40990999316616,45.40993205506049,45.41039339385657,45.41045965483841,45.41054769903368,45.41059127426681,45.41061324770374,45.41078888900083,45.41081084100176,45.41094303961915,45.41109690357066,45.41129465067632,45.41155825895923,45.41184418254315,45.4119758062094,45.41206368340265,45.41230556212044,45.41248142006474,45.41254753038685,45.41267929960604,45.41272320366005,45.41274499781363,45.4127888589445,45.41281124024637,45.41289887628666,45.41292067349264,45.41296509719645,45.41307495678298,45.41314076982452,45.4132288095132,45.413492402014,45.41360209697875,45.41362445683733,45.41371222320766,45.41373404068054,45.41395414805489,45.4140204119614,45.41413010761871,45.41415190172878,45.41430606769239,45.414327863645,45.41439367677096,45.41441547584923,45.41452575307338,45.4145475318688,45.41463531540745,45.41467962718797,45.41474542131401,45.41476723877877,45.41483361559622,45.41492165524298,45.4150531922045,45.41518480527382,45.41520675731893,45.41531700308135,45.41547074263058,45.41569079331144,45.41586631864429,45.41615240536113,45.41643797738477,45.41694371049216,45.41725091758916,45.41733894223194,45.41751487990354,45.41753710493694,45.41815204661755,45.41832797382737,45.41845961489343,45.41856987193759,45.41872327110782,45.41887754949718,45.41900930465152,45.41907499304435,45.41918494815495,45.41925064185482,45.41931659570712,45.41940459986613,45.41947057626395,45.41951460070892,45.41962471191582,45.41964635535328,45.41977826640822,45.41979993128868,45.4200417955178,45.42025597763875,45.42037677282853,45.42050894354131,45.42077805846478,45.42094281344154,45.42103054508091,45.42107437209177,45.42114540091372,45.42112868632012,45.4211177038356,45.42111768733828,45.42109545399241,45.42108371947819,45.42101294443533,45.42084265340523,45.42063306980383,45.42046851727456,45.42029222688174,45.4201822242804,45.42009471784986,45.41985246900964,45.4195889503416,45.41936913813195,45.41925877977712,45.41897315685334,45.41886288096611,45.41870938309443,45.41829128749377,45.41780722714602,45.4176095434612,45.41746631917318,45.41735647632193,45.41714153180654,45.4169326939295,45.41683337047486,45.41673983318094,45.41655272774083,45.41622286910743,45.41606930920474,45.41600303153896,45.41582713597892,45.41558563404823,45.41545332601642,45.41529959503607,45.4150576121861,45.41503566016768,45.41496939877953,45.41483788937639,45.41464003506402,45.4145520801786,45.41444207120732,45.41439789770375,45.41426580128212,45.41406787847295,45.41371633110757,45.41354006632629,45.4134964558684,45.41314442380561,45.41281457636649,45.41167172401523,45.4112320060599,45.41109975402598,45.41094572855872,45.41077768613131,45.41055043243689,45.41035240940239,45.41013254878455,45.41011609946945,45.41008851091812,45.40995686207616,45.40993434922449,45.40991789984976,45.40989087205806,45.40987386194298,45.40973671093592,45.40972026283073,45.40962672563603,45.40961025186803,45.40958268469953,45.40956621396352,45.40953866811093,45.40942850329922,45.40921453176956,45.40893369966903,45.40884593517756,45.40839520647,45.40819729680091,45.40783460366909,45.4077023343301,45.40737784722886,45.40705884482988,45.40678988747655,45.40672391837737,45.40665808212515,45.40663628586807,45.40648212412393,45.4064600379691,45.4064161764375,45.40632811937078,45.40631165016293,45.40628405974381,45.40626761010708,45.40619600156067,45.40617953295203,45.40615254295574,45.40582802174253,45.40566835355495,45.40553682066333,45.40551979133868,45.40531668569076,45.40530022017293,45.4052509085972,45.40496500184219,45.40494853072611,45.40492097934619,45.40490451368964,45.40487694334679,45.40486047472227,45.40464055469178,45.40452511966105,45.40415138507947,45.40401930820197,45.40384346540534,45.40382701564317,45.40375540686924,45.4036676414587,45.4036236243497,45.40338154100638,45.40322764783237,45.40309602022448,45.40289824403637,45.40263422987357,45.40261775866973,45.40248033664552,45.40246386793264,45.40239227799577,45.40212870925881,45.40199674927366,45.40198027926005,45.40193079698961,45.40191433129062,45.40175481977993,45.40173834854137,45.40171078130482,45.40164465333365,45.40149107407499,45.40144703558921,45.40135926955016,45.40134280079597,45.40122732844489,45.40120524138877,45.40113940686881,45.40111734000232,45.40105150482808,45.40103503538613,45.40096358200621,45.40094711389034,45.4008537296363,45.40080968687697,45.40074331463069,45.40072181096444,45.40063346283362,45.40061700990651,45.40052358357919,45.40050713914558,45.40032583399071,45.4003037445693,45.40021597850777,45.40019389207139,45.40006208511159,45.40003999866911,45.39988641879414,45.39986940806851,45.39979851608729,45.39971018920693,45.39944644564236,45.39942997440079,45.39933643520889,45.39931998525071,45.39924837751666,45.39903407373566,45.39875373434042,45.39847310431186,45.39831924644869,45.39815984471288,45.39795656410969,45.39790690827909,45.3977367005261,45.39759896159583,45.39758251387752,45.39755492282905,45.39749445523395,45.39715936798158,45.39685148885642,45.3968074499866,45.39652163857986,45.39649984455226,45.39636821670338,45.39628029475259,45.39614819524926,45.3959336523525,45.39562036248765,45.39537274629042,45.39514748748659,45.39486148097842,45.39405287784263,45.39391532944258,45.39372329989192,45.39336061304451,45.39311288471421,45.39293678892398,45.39292088206199,45.3928708187503,45.39285493321511,45.3926293177637,45.39258559135033,45.39251919519911,45.39249739906271,45.39238765931538,45.39237066921145,45.39225587260093,45.39223886366049,45.39214545845125,45.39210198000509,45.39133232939272,45.39128831140371,45.39119998425566,45.39080471941508,45.39065041662654,45.39036500929498,45.39018860110841,45.38999111429217,45.38946345760989,45.3894195957364,45.38935325446893,45.38917721647282,45.3890677870277,45.3888263826713,45.38849581856579,45.38839717436089,45.38802815401959,45.38794047395041,45.38780282887509,45.38756647037153,45.38741233434165,45.3871926038964,45.38703282785259,45.38687935377753,45.38660943228542,45.38594442369294,45.38581263621801,45.38552677665517,45.38543903205026,45.38517492884709,45.38475731306571,45.38474084612761,45.38433952675785,45.38432305685112,45.38411950354403,45.38398771713138,45.38387772341535,45.3837458987888,45.38348203599261,45.38315252395394,45.38288839533387,45.38273477138241,45.38269048392878,45.38189946338817,45.38176709373359,45.38150377031454,45.38145950722228,45.381327834903,45.38121771492871,45.38097596512412,45.38084418662154,45.38064619193699,45.38036096419815,45.38029486276773,45.38020671082157,45.3798111005765,45.37976702641472,45.37890997908423,45.37877827985496,45.37873399227973,45.37853671579317,45.37822929045829,45.37785575388241,45.37776771981656,45.37750404622672,45.37748211531913,45.37721828089411,45.37697613351156,45.37688825883672,45.37686630656729,45.37666887058569,45.37649293795138,45.37647100700141,45.37631700345048,45.37614113755447,45.37594353896073,45.37589973403846,45.37548194155428,45.37519665941922,45.37508659535711,45.37499435916158,45.37494371355739,45.37476820141707,45.37459296680224,45.37452702078145,45.37437346501788,45.37432929139094,45.37430736035776,45.37415407308043,45.37410978767037,45.37402204778215,45.37375891024011,45.37356163063256,45.37351788284498,45.37343013916513,45.37307914401195,45.37305663102294,45.372991268568,45.37296929499152,45.37292516490872,45.3729032126182,45.37272799679975,45.37266175662813,45.37257441810254,45.37239891077753,45.37209114548052,45.37178428151884,45.37156464269079,45.37141090721774,45.37136673256614,45.37134480223964,45.37112585760658,45.37092797325758,45.37090604232599,45.37062128728279,45.37013850755815,45.37007224580648,45.36994064014625,45.36978714248597,45.36954582117139,45.36943630822639,45.36933799444532,45.36926108057144,45.36908557343813,45.36890981616393,45.36877803287831,45.36871227516414,45.3685590889437,45.36842717074653,45.36838338649552,45.36823020309741,45.3681256857535,45.36809842733569,45.368032673656,45.36783499414366,45.36768150722337,45.36759374072574,45.36748353999835,45.3673520797641,45.36715411315146,45.36708827763272,45.36682493446072,45.36671481065925,45.36667135438409,45.3666385382381,45.36660576467277,45.36656194663653,45.36656199205726,45.36657888962678,45.3667163803073,45.36682633390109,45.36684826492229,45.36686444328534,45.36688110465242,45.36690254184283,45.36695170446177,45.3670888827822,45.36709481203571,45.36713323541726,45.36718832121397,45.36720455259428,45.36721604879616,45.3671996804108,45.36715586201825,45.36713395427777,45.3671342678561,45.36714500620923,45.36721136829153,45.36727714643368,45.3673869433618,45.36754054574912,45.36769439682473,45.36780448422311,45.36803808057311,45.36832047188224,45.36836464653611,45.36838127332467,45.36838086700835,45.36834853320309,45.3683153653412,45.3682990971858,45.3683101050833,45.36832108970012,45.36832142541512,45.36828319908007,45.36816851202031,45.36796574051558,45.36780635135971,45.36771879853057,45.36769686765722,45.36760896438202,45.36752100906041,45.36738928061549,45.36736767337944,45.36728001036204,45.36723571868151,45.36714801112198,45.36708228695952,45.36705448653844,45.36704379189145,45.36704867102352,45.36704332000645,45.36702650698681,45.36690581816801,45.36664277709391,45.36659897280787,45.36656601786785,45.36654451209228,45.3665445766952,45.36653361186522,45.36652241617682,45.36641898112429,45.36635855405178,45.36630945679992,45.36623794554556,45.36614983185461,45.36610619913045,45.36607828343895,45.36606202599746,45.36604571017326,45.36601279297018,45.36595777491889,45.36595266071035,45.36594169375862,45.36591968506508,45.36577722335282,45.3656449917658,45.36546972847414,45.3653376930464,45.36528822767659,45.36526026842316,45.36524422741898,45.36521123268887,45.36515640290465,45.36510713695521,45.36506327054797,45.36495314726772,45.36464641259599,45.36433899502892,45.36418498992927,45.36387729927132,45.36383294734055,45.36380008734112,45.36377238079719,45.36376670354358,45.36379425467328,45.36383788123263,45.36388172293145,45.36422171866958,45.36432043032915,45.36437502451548,45.36440252901233,45.36440221653184,45.36435804209623,45.36431384619495,45.36425926965209,45.36414943453912,45.36403989436542,45.36395222774279,45.36387012241192,45.36377701564674,45.363612395832,45.3634807647989,45.36342591675865,45.36340398580531,45.36335444410365,45.36333804716134,45.36330452708407,45.3632934955281,45.36327715977296,45.36322221287232,45.36312836327259,45.36304621209646,45.3629634957545,45.36295248783726,45.36295213242673,45.36296259091981,45.36296262830703,45.3629845146619,45.36301179314052,45.36306667610892,45.36312675174464,45.3632087996656,45.36328067998158,45.36336844580953,45.36343422359004,45.36356616674127,45.3636102054895,45.36371982574764,45.3639227468308,45.36399410204421,45.36408194559753,45.36409812410409,45.36429720244793,45.3644711876904,45.3644876927996,45.36448767191391,45.36447641209672,45.36443221480706,45.36430005283699,45.36416845780345,45.36393774253767,45.36376183519211,45.36356431857026,45.3631914589436,45.36303766492708,45.36297198570617,45.36288408767238,45.36270857647629,45.36253255709406,45.36200584848835,45.36187449360874,45.36176447025537,45.36165490667273,45.36161090882165,45.36150137263334,45.36147971206474,45.3612600489332,45.36123840969764,45.3611503151546,45.36088731046078,45.3607771863982,45.36057968044637,45.36055790386871,45.36051402368341,45.36036003774355,45.36029441472954,45.36027248441819,45.36016280877493,45.36005282086013,45.3597019468792,45.35952575340087,45.3594822955047,45.35930613367562,45.35928418139438,45.35924003202936,45.35904223319,45.35891093094129,45.35882287216683,45.35871341172766,45.35864744191584,45.3585379789742,45.35845025724208,45.3583132682117,45.35822011873297,45.35807733288352,45.35792377434411,45.35785780366787,45.3576385072114,45.35752899020408,45.35737590123676,45.35720029204898,45.35706884351396,45.35695910989376,45.35692062986244,45.3568715406746,45.35687183238836,45.35684992227898,45.35682266485124,45.35680075390466,45.35675675619448,45.3566638327038,45.35659751531785,45.35653708656383,45.35650941530418,45.35652000754231,45.35659059678937,45.35658520695319,45.35655195432344,45.35649706030754,45.35643085898592,45.35632111688803,45.35622201826341,45.35617840316141,45.35611219980702,45.35601340366464,45.35597463169388,45.35594728919837,45.35593066136528,45.35593030377288,45.35597378559203,45.35597342810151,45.35595675863959,45.35595608166467,45.3559671043937,45.35597246502894,45.35598832760193,45.35599360607213,45.355987923476,45.35597695816396,45.35597693354818,45.35595493672181,45.35589410990407,45.35583357660278,45.35577316568838,45.35569086079138,45.35560303755163,45.35551529584467,45.35540577998002,45.3553510890933,45.35525835698495,45.35519256746395,45.35510992384355,45.35503346083222,45.3550121349252,45.35501191264586,45.35504518630207,45.35507275901671,45.35511123822866,45.35524343616375,45.35530908112487,45.35532523820838,45.3553640646224,45.35538593806083,45.35541901280297,45.35544675975429,45.35546885129831,45.35548507076991,45.35549136039422,45.35543129227104,45.35538774611116,45.35535518503189,45.35534958762579,45.35535487555691,45.35538276115852,45.35542086651161,45.35548666298276,45.35557452151926,45.35561836579915,45.35563518747596,45.35565152096724,45.35564063262001,45.35557544538317,45.35554825017943,45.35547719304783,45.35543899165577,45.3554007462056,45.35532381004739,45.35519233578091,45.35477539813676,45.35464350001985,45.35448989863576,45.35431405521586,45.35420419893699,45.35401172487909,45.35381892126808,45.35375277345019,45.35369236435038,45.35361005760473,45.35354416710548,45.35347819611104,45.35341277110345,45.35338014647348,45.3533470571646,45.35330354985695,45.35327096479271,45.35321586640884,45.35319387612804,45.35312306261812,45.35307369565925,45.35296362955167,45.35287557381798,45.35261186309307,45.35258991078382,45.35254629909371,45.35252434680712,45.35210656738143,45.35193040996024,45.35189192876387,45.3517548105604,45.35167198338298,45.35156219887811,45.35147942507606,45.35143552080508,45.3514295245552,45.35143482959283,45.35145646800936,45.35156631115161,45.35189515812809,45.351966220919,45.35200417028306,45.35200444361804,45.35203702469659,45.35204780908216,45.35210288622071,45.35233773586502,45.3523710595454,45.35247715403405,45.35252935656384,45.35252933176933,45.35253981334522,45.35253898271414,45.3525497236552,45.35256070842492,45.35256038922504,45.35258213864735,45.35264743235877,45.35265304804078,45.35264709253019,45.35260880133957,45.3525758129057,45.35258611858528,45.35257481703601,45.35255821011751,45.35242116222191,45.3523113386487,45.35216800929069,45.35207450501101,45.35207421195216,45.35203025897351,45.35201362764296,45.35202424326641,45.3520623874435,45.35211687112533,45.3521387692535,45.35216069876694,45.35216040540337,45.35220421618482,45.35222023145804,45.35222020720229,45.35219256542046,45.35219251363603,45.35220329391214,45.35224714600596,45.35231283261376,45.35239524509856,45.35247701800178,45.3525707276516,45.35276256593245,45.35285017863707,45.35297077618955,45.35299270723072,45.3530701565734,45.35310841831116,45.35312433522343,45.35315187919067,45.35318463718815,45.35323969551609,45.35337666914335,45.35372832106067,45.35396998249334,45.35405748296922,45.35434331965619,45.35440936816222,45.35465063244077,45.35484769572152,45.35493006269554,45.35495747235779,45.35490805479224,45.35466599064512,45.35458373830307,45.35438614058607,45.3543034587619,45.35403385671381,45.35390233647719,45.35370474702133,45.35339689142302,45.35330894888545,45.35326535278837,45.35302323875781,45.35284778847438,45.3528258572951,45.35264968571959,45.35256702446282,45.35250685742614,45.352473831586,45.35239633524317,45.35234116288062,45.35225834093547,45.35202216302611,45.35200023187453,45.35169805095882,45.35129688681513,45.35118749978606,45.35116556860423,45.35085742507793,45.3507750895621,45.35061596828528,45.35059401586181,45.35054983947804,45.35004474444459,45.34969343622711,45.34945142821434,45.3491881570099,45.34890280122839,45.34872759055388,45.34859567384369,45.34857389735816,45.34835389946243,45.34826653668228,45.34813457013254,45.34811809843203,45.34809055077613,45.34792025548784,45.34776114383144,45.34747510758191,45.34738730108673,45.34734357646821,45.34727774044347,45.34716812338264,45.34694876300004,45.34683877447003,45.34664123617517,45.34653153671589,45.34629006545961,45.34611431636829,45.34580698071119,45.34545567364353,45.34512621856003,45.3449069926989,45.34458237641754,45.34433573749028,45.34402847106541,45.34376528785035,45.34361186913925,45.34343613144178,45.3432385363146,45.34315076917888,45.34308452941318,45.34277734397052,45.34255782336425,45.34233763855773,45.34218413105954,45.34211843385417,45.34203082687265,45.34199766937672,45.34191006596055,45.34180609269118,45.34171892151364,45.34164201290425,45.34120829092372,45.34079152555758,45.34039711785636,45.34002409616719,45.33980502593033,45.33958548339655,45.33949774494744,45.3394095757555,45.33934394942911,45.33921836596538,45.33906495110831,45.33893343261239,45.33882440695683,45.33864907393335,45.33850656442426,45.33840842718047,45.33814527794014,45.33800849166379,45.33783281911195,45.33774510328713,45.33756980001059,45.33751530741986,45.33742229170443,45.33721931205903,45.3369454408933,45.3365727558197,45.33613420583482,45.33591504447448,45.33563006828342,45.33549849255397,45.33518663212733,45.33512605731337,45.33510473333934,45.33510448830911,45.335115499163,45.33523715306224,45.33523688572478,45.335270141946,45.33530342071496,45.33530375707245,45.33527119751884,45.33522711376618,45.33522740692921,45.33519480392481,45.33518385990808,45.33512939410809,45.33503180354391,45.33503249548316,45.3350658121181,45.33511000788208,45.33510973675053,45.33519817342634,45.33538502879317,45.33542395960497,45.33562185998812,45.33564972107951,45.33564976189834,45.3356827405288,45.33556223401146,45.33512281809107,45.33507877711773,45.3349036511683,45.3348596338979,45.33470614951472,45.3346400650849,45.33424568343844,45.33367590455664,45.33366468916682,45.33368677242316,45.33373091219981,45.33376909810315,45.3338129038107,45.33401031015286,45.33403216407264,45.33406515239451,45.33410888564474,45.33458010599659,45.33462398849412,45.33464051539394,45.33492043348073,45.33495840641531,45.33498057218669,45.33566139697043,45.33588163068288,45.3359528561222,45.33600265084407,45.33605785063921,45.33609109656192,45.33610239384922,45.33609745609686,45.3361138073373,45.33617435458735,45.33642231101719,45.33654907678216,45.33657633687865,45.33659324945852,45.33659355841414,45.33658768709262,45.33655535020037,45.33650557292601,45.33639620212846,45.33636857567666,45.33630847334526,45.33625928095952,45.33619350186737,45.33618257550696,45.33620504284912,45.33620546498349,45.33618354948119,45.33615630863648,45.33610168849025,45.33594235190769,45.33589832834701,45.33583824977282,45.33582179848664,45.33578401120906,45.33577844836492,45.33580068503746,45.33584474335527,45.3359103644347,45.33602041258864,45.33619035214245,45.33652481713568,45.33661818827186,45.33664539450524,45.3366333189572,45.33663259891037,45.33688557794617,45.33709403168808,45.33720375045647,45.33724747836469,45.33735719528745,45.3374841967732,45.33743463162141,45.3374024199804,45.33754490428706,45.33778650263613,45.33782473015464,45.33783031285353,45.33785222772443,45.33785221077051,45.3378631756634,45.33786286883957,45.3378847637676,45.337884746645,45.33792170300929,45.33801560759333,45.33805978137853,45.3380815944347,45.33803840117307,45.33806604777168,45.3381151424413,45.33822522966307,45.33826376435385,45.33829166265781,45.33830266116199,45.33832465284243,45.33835192894746,45.33892832611469,45.33895010059105,45.33897220630055,45.33897797907402,45.33890717752923,45.33894013179459,45.33895142256235,45.33899005317515,45.33901184160437,45.33905045965723,45.33917092799626,45.33919313443681,45.33920375388573,45.33918168893241,45.33935055777884,45.33918170907044,45.33920879885607,45.33931315216477,45.33934622357364,45.33939050627799,45.33945612917417,45.33949464340067,45.33950022684882,45.3394557164706,45.33945567541505,45.3394775506246,45.33965848887413,45.33971903490553,45.33973529148165,45.33975789591984,45.33977418879195,45.33980755104521,45.33982907570326,45.33988440844394,45.33991711335104,45.33992808148398,45.33992777347235,45.33989482201333,45.33980300544427,45.33987205072847,45.34022284295497,45.34026142107128,45.34028916207235,45.34030555205938,45.3403169627077,45.34035501276699,45.34058578343609,45.34060775951228,45.3406626679439,45.3407172833225,45.34077194482825,45.34078286920978,45.34078227202408,45.34074931878234,45.34073699340329,45.3408097318522,45.34085874910604,45.34090279016728,45.34095742561541,45.34103431848511,45.34105646549039,45.34107258656164,45.3410945920655,45.34111154941755,45.3411279159215,45.34114473426359,45.34117751333164,45.34123246562572,45.34137506073611,45.34144599138135,45.34147900522441,45.34151729083168,45.341517000698,45.34155528308828,45.34156675512569,45.34158271948898,45.34160501895499,45.34164865104754,45.34169272657847,45.34170890708178,45.3417916191389,45.34185737453153,45.34194537237235,45.34203313882043,45.34216506158207,45.34222525819307,45.34225270880039,45.34225242043393,45.34227433302725,45.34230730981879,45.34233495978834,45.3425050470715,45.34264723644579,45.34285574671458,45.34295996290622,45.34304265162412,45.3431414075589,45.34332765256152,45.34347026788996,45.34387686408833,45.34406295372439,45.3443047711025,45.34437089696613,45.3444584661173,45.344612473328,45.34465643559261,45.34470082398735,45.34474470474144,45.34479391709363,45.34482098535575,45.34481588865849,45.3447826025775,45.34469999188563,45.34467809827225,45.34466748014612,45.34467748960726,45.34483737425282,45.34494122491411,45.34499586011528,45.34508397314904,45.34517176090585,45.34530418695098,45.34541349773535,45.34550168928578,45.34563330110164,45.345809397832,45.34613293016491,45.3462150184881,45.34647888045324,45.34665478179739,45.34669881988739,45.3467428035137,45.34678106685833,45.3468033870536,45.34680913984082,45.34681983249718,45.34688059121831,45.3469411768229,45.3469687434941,45.34699664003197,45.34699665863481,45.34696941810927,45.34688674435367,45.34689238220914,45.34694755988942,45.34695348628525,45.34692568214854,45.34687141374136,45.34677240602138,45.3464815332246,45.34639357312324,45.34626211556813,45.34621817570238,45.3461742717199,45.34609726117414,45.3460208040842,45.34597680751901,45.34596583952587,45.34595502664844,45.34595533743989,45.34593343870644,45.34588986131662,45.34581311582095,45.34574702561939,45.34549518975192,45.34536363091402,45.34518763355314,45.34505626893696,45.34496876888759,45.34493594994505,45.34494131331649,45.34497445790485,45.34505683651495,45.34507365416501,45.34512345106736,45.34520623298459,45.34523356111036,45.34523361244721,45.34521200256986,45.34514652946096,45.34509731215776,45.34498169670222,45.34494908763246,45.34494354613486,45.34496601754326,45.34499358162136,45.34499896473869,45.34498239620444,45.34492252002811,45.3449168959034,45.34492816778128,45.34496123772515,45.34502714893223,45.34516963225281,45.34531242358913,45.34535059552651,45.34567955567528,45.34578375993463,45.34593165346202,45.34611319191786,45.34626638690505,45.34639822952438,45.34662867688456,45.3466729287925,45.34676049625766,45.34680451219887,45.34687034999221,45.34709948972231,45.34690379906034,45.3468216294436,45.34670628817855,45.34659616189672,45.34653082809751,45.34650841430835,45.34651404677973,45.3465359391933,45.34662939644084,45.34676122672123,45.34695911504971,45.34713463199833,45.34726048917936,45.34736508038768,45.34744697619193,45.34748545519325,45.34761740936227,45.34766144666062,45.34772749845811,45.34778232726586,45.34780427955637,45.34788112048533,45.34793567892875,45.34797418118766,45.34799056003424,45.34806174936167,45.34811104222128,45.34817643260419,45.3482093902193,45.34823153816118,45.34825860689126,45.34831901536854,45.34845116823833,45.34859397709101,45.34868174571972,45.34879142590944,45.34890121443951,45.34894513539916,45.34898966937278,45.34900038378181,45.34898969800734,45.34893517424256,45.34890201801458,45.34891299476959,45.34894060384367,45.34895704983166,45.34898477559517,45.34903392944852,45.349248412074,45.34935251352393,45.34939650799883,45.34944048716137,45.34945711115788,45.34950658200086,45.34958359624504,45.34975925818678,45.34982497797519,45.34993513656333,45.3500119846312,45.35005626997716,45.35018809589484,45.35027558799313,45.35034142026192,45.35038544022701,45.35073372666545,45.35079138073461,45.35079144449502,45.35081354048043,45.35083546833425,45.35088471690563,45.35090651133081,45.35093975090078,45.35094511129533,45.35095665689116,45.35096234085578,45.35095675129685,45.35096773366163,45.35106652799558,45.35114329388325,45.35119251187661,45.35124199819512,45.3512861523436,45.35147240165075,45.35151114649977,45.35150560699364,45.35146745216971,45.35139203861257,45.35161565787258,45.35148660393983,45.35137773516892,45.35137821011789,45.35147567030968,45.35136394874283,45.35120490875967,45.3511063569624,45.35100218325361,45.35092574681251,45.35089340384441,45.35084940060023,45.35080532660088,45.3507723430042,45.35077264849905,45.35075073159775,45.35071247994223,45.35069590815371,45.3507070983729,45.35074603513721,45.35078415928398,45.35088333078751,45.35094898611182,45.35099898199773,45.35109250197815,45.35118043435055,45.35124634536465,45.3513779349534,45.3514000211259,45.35148778535054,45.35150987151958,45.35157570611788,45.35161972130086,45.35175139294467,45.35177316712569,45.35190483755354,45.35192719927679,45.35223426711611,45.3523003482549,45.35247623712137,45.35252025226717,45.35262994902986,45.35271794241211,45.35278392525554,45.35283318518953,45.35286626870911,45.35293395250903,45.35297087370404,45.35303671132845,45.35305848552054,45.35312488453328,45.35314106086302,45.35325607389459,45.35332201975663,45.35336619011411,45.35341053670676,45.35343766908118,45.35341576567794,45.35341634158856,45.35343831971283,45.35342174622465,45.35342708903129,45.35346556175291,45.35346619533234,45.35345524630961,45.35340040718641,45.35337848881115,45.35338945033953,45.35342209885347,45.35347735783142,45.35351545742173,45.35354822303111,45.35358093126566,45.35366392834695,45.35368579805619,45.3537073955651,45.35371859341736,45.35371885921014,45.3536747346224,45.35366405127409,45.35367503471859,45.35368094976378,45.35369158933275,45.35371365198668,45.35376282514311,45.3537846239155,45.35380654248114,45.35380650312836,45.35376783000408,45.35381300909459,45.35385867481583,45.35385587813465,45.35394383109136,45.35389256168146,45.35377795478947,45.35374448005151,45.35380840603419,45.35381137044003,45.35381923758826,45.35383022075798,45.35383024732805,45.35381900258707,45.35380805499702,45.35376986183122,45.35369853855008,45.35367674452165,45.3536326807602,45.35363296755342,45.35363830927621,45.3536547786541,45.35373184818278,45.35378116652495,45.35377740776764,45.35386440125058,45.35391361684641,45.35397402266695,45.35401220766789,45.35402917754264,45.35403465375686,45.35401288737308,45.3539850416152,45.35395804633927,45.35389758522465,45.35388159461076,45.35378261585583,45.35380513373032,45.35379390944425,45.35373400320915,45.35375054110156,45.35379466826991,45.35393174125131,45.35395380647128,45.35395381639893,45.35386052867963,45.35381652415575,45.35374544046672,45.35370138316066,45.35361361620717,45.35357003978751,45.35355352470978,45.35357006355712,45.35357013505255,45.35352063373021,45.35347678496531,45.35345496175189,45.35342754745839,45.35338351163691,45.35325156605226,45.35312565615541,45.3529660702546,45.35290604032711,45.35289485288643,45.35288953232731,45.35283490386919,45.35264847578642,45.35258245454153,45.35247272121397,45.35236312314219,45.35223170160889,45.35223157954535,45.35226421642506,45.35229193890699,45.35233039690802,45.35243995091359,45.35254977970312,45.35270351335618,45.35274183816755,45.3528241201665,45.35287912576356,45.35293361332156,45.35303253210783,45.35312025503617,45.35336190861929,45.35340061395669,45.35339535428565,45.35328601512732,45.35325314567619,45.35324216402453,45.35324218278643,45.35326388263459,45.35339059606871,45.35342899268363,45.35348921982459,45.35353331816166,45.35357213172754,45.35359389060208,45.35361603608485,45.35368164684741,45.3537035774477,45.35376942259884,45.35379163907889,45.35384083137422,45.35384674701125,45.35381905548919,45.35373705081012,45.3536711814082,45.35366611734501,45.35368243971901,45.35371529066748,45.35373739543949,45.35379780571598,45.35383597578979,45.35392940209597,45.35396774919101,45.35400608843622,45.35402818092859,45.35403355211104,45.35405605508019,45.35408329030875,45.35414362705026,45.35419322855947,45.35420477114497,45.3542153297101,45.35421057823751,45.35421655316325,45.35418900873701,45.3542328185471,45.35425514589642,45.35426078386394,45.35432159711753,45.3543162714379,45.3543328752717,45.35433881334646,45.35432759657428,45.35431129128132,45.35427873424872,45.35417971285037,45.35411374710547,45.35392160888684,45.35389401900215,45.35381201466684,45.35378444512078,45.35370188059073,45.35367428949095,45.35359209171583,45.35341091425375,45.35336681640626,45.35335571229459,45.35335618895658,45.35340004339945,45.35345503816963,45.35357564996669,45.35375147565723,45.35383926980747,45.35405913162212,45.35414724999413,45.35416905816561,45.35417492980405,45.35416957374432,45.35413118769522,45.35409270800964,45.35406502616756,45.35400430070201,45.35397173777469,45.35392744524832,45.35389502306884,45.35389503060498,45.35391135131844,45.35393328874996,45.35403782035626,45.3540711796983,45.35404927736236,45.35401694572536,45.3539563267956,45.35388494499827,45.35384115318275,45.35382484706658,45.35384116478004,45.35384145979359,45.35382513318461,45.35383078640849,45.35389692825262,45.35389693315506,45.35390782909597,45.35389724265463,45.35387504010539,45.3537659201243,45.35374400209346,45.35371108385221,45.35366185295202,45.35355809580928,45.35341518170503,45.35334931099535,45.35321793363831,45.3531907375552,45.35317443856093,45.35314687228956,45.35300987842318,45.35294363723722,45.35281215203754,45.35270279053773,45.35257094312647,45.3523518224407,45.35226397494876,45.35219800991971,45.35208810098969,45.35200025525818,45.3518684554704,45.35182465841822,45.35173675385649,45.35149533292758,45.35138562068752,45.3512982083185,45.35112269481476,45.35105694859234,45.35101306594116,45.35092480789888,45.350815602984,45.35072762653947,45.35068368314798,45.35057396319985,45.35046431682229,45.35028892098966,45.35006932590938,45.34984961952972,45.34971818565371,45.34965192062281,45.34947674716371,45.34937274653365,45.3492354972167,45.34916966693385,45.34901594339524,45.34886250330108,45.3487525760256,45.34868691608481,45.34855525075678,45.34827007944294,45.34811648359469,45.34805060927501,45.34798477331999,45.34794039510361,45.34790789333775,45.3478744009789,45.34785246674677,45.34783102361412,45.34779560769401,45.3477172716939,45.34763220669907,45.34742708587277,45.34738076426966,45.3473259495031,45.34725993765262,45.34722171904123,45.34717244254071,45.34714481129748,45.3470629685534,45.34701884880134,45.34682138815899,45.34671151815083,45.34657965524261,45.34644757621086,45.3462281668488,45.34600889017525,45.34583327953788,45.3455922269428,45.34539454175783,45.34532843337055,45.34525230158638,45.34520278717194,45.34513698333208,45.34504384831451,45.34501096897502,45.34501125164175,45.34494543360027,45.34491283774131,45.34483601974596,45.34478682721982,45.34476485651716,45.34461719163378,45.34452409542432,45.34431561201683,45.34417839359148,45.34415674643646,45.34380567822943,45.3437613611878,45.34365180010123,45.34352037015496,45.34345453783142,45.34334974367104,45.34332273491428,45.34330093554094,45.34325707740851,45.34323488675631,45.34319614597101,45.34316330173964,45.34312469023895,45.34301521370797,45.34297159159543,45.34293825594134,45.34293841184041,45.34292743811623,45.34291125371087,45.34286732790317,45.34258735634105,45.34245553861199,45.34217044873224,45.34188514124921,45.34177523706276,45.34168775377549,45.3413365198063,45.34120437727978,45.34100689524531,45.34091935002046,45.34080929181593,45.34076532139181,45.34066080860394,45.34061158441015,45.34058991719337,45.34062270014918,45.34060638878898,45.34058999211665,45.34040337956529,45.34025004655629,45.34016215308517,45.34007429784285,45.34000805398723,45.33998612350302,45.33995340916337,45.33993703192726,45.33989241779277,45.33985920310332,45.33985414755624,45.33987019275352,45.33986483681353,45.33985366436419,45.33982088789163,45.33975499012401,45.3397329706793,45.33971126035321,45.33971139404338,45.33974430778846,45.33978878684091,45.33981573602638,45.33962984194648,45.33953689372483,45.33947077942872,45.33939980867903,45.33935032902623,45.33929558271909,45.33912014324485,45.33907576125681,45.33901042745356,45.33888963269224,45.33875796779018,45.33870903325666,45.33869243977349,45.3386432008902,45.33856136090791,45.33848461705242,45.33830872070979,45.33808959048038,45.33789176486317,45.33787011615838,45.33780450074993,45.33767235537779,45.33756287840776,45.33747511400186,45.33740919401014,45.33725546283952,45.33714589849683,45.33712396808875,45.33709069390282,45.33706340340958,45.33704659502318,45.3369917351791,45.33697563781899,45.33698631103282,45.33698069214581,45.33693650502197,45.33687038765992,45.3368487356605,45.33677163979408,45.33669428822833,45.33666137878352,45.33663916694358,45.33660623581766,45.33658456486616,45.33655165338773,45.33651282897581,45.33648525943022,45.33648011534116,45.33649664906021,45.33662860476457,45.33665105824726,45.33677173351605,45.33683819676238,45.33683791835255,45.33687084571961,45.33690459899329,45.3369756849154,45.33714616004685,45.33720141031925,45.33720166751053,45.33715778608792,45.3371085671613,45.33694386221012,45.33673034942512,45.33646662171881,45.3364449514502,45.33635720717752,45.33633495386749,45.33600625507667,45.33585237320014,45.33580879154015,45.33554541064214,45.33523793146626,45.33501795376329,45.33475491926114,45.33464533236199,45.33449140900897,45.33440351186064,45.33422811011281,45.33418442321054,45.33411324702037,45.33406942883823,45.33406970573215,45.33405847182484,45.33406972596536,45.33408068076984,45.33408095985551,45.3341028439471,45.33411971651815,45.33416338091092,45.33437260942886,45.3344385893449,45.33452613843819,45.33465812843377,45.33480139402059,45.33514759890208,45.33529626108797,45.33531834125415,45.33565877700404,45.33588981740381,45.33604366511516,45.33639605836704,45.33654430384167,45.33675919600634,45.33692994687937,45.3370947539916,45.33721598997849,45.33735899709166,45.33751875903455,45.33753000774009,45.33765065564585,45.33767288093134,45.33771731469026,45.33771703033775,45.33780533529013,45.33784950874949,45.33784922420632,45.33795975515143,45.33795946807747,45.33798139476827,45.33798167086047,45.33801428687006,45.33802583646587,45.33808093362253,45.33820211026682,45.33825752351776,45.33830221407306,45.33833512523164,45.3383460679349,45.33834661514993,45.33831366438643,45.33829172890443,45.33829200184105,45.33824782357656,45.33824810190143,45.33818758631674,45.33806745161171,45.33796306684111,45.33774387213187,45.33760709413624,45.33751933671174,45.33744786796674,45.33739357349623,45.3373822867682,45.33736595043709,45.33737236644902,45.33735039682779,45.33728430630084,45.33716414629843,45.33696094374236,45.33680738558216,45.33656078176659,45.33638501556869,45.33627529182736,45.33588040149639,45.33577067768014,45.33574843672584,45.3356828123098,45.33560066944332,45.33554558945423,45.33553486623457,45.33553513454972,45.33551317346192,45.33546391038686,45.33541465504224,45.33537078466517,45.33529381162022,45.33516804807621,45.33486050874522,45.33472876141628,45.33466293947867,45.33455369642049,45.33445449604392,45.33432330098801,45.33429037767984,45.33426310369609,45.33419712192318,45.3341753206432,45.33416983174281,45.3341862588135,45.33423570159181,45.33426837414249,45.33428551245535,45.33428524662371,45.33427424440247,45.33427423550775,45.33425284491336,45.33416499231028,45.33409967231859,45.33408305043154,45.33405041508124,45.33395216274398,45.3339299448759,45.33384267579897,45.33382045664583,45.33376556921679,45.33373292080967,45.33370028254145,45.33359587165902,45.33355195499067,45.33350287805217,45.33343697546923,45.33334921185958,45.33323957439338,45.33315170641178,45.33308557264802,45.33300881185654,45.3330090863298,45.3329764368437,45.33231287067823,45.33227480986629,45.33213208705254,45.33189373375281,45.33237243313873,45.33286973686278,45.33293330332985,45.33302104418351,45.33322584653269,45.33319722403842,45.33303738996462,45.3329894103938,45.33281340411808,45.33279159664028,45.33273686776786,45.33250272823653,45.33238557551924,45.33225371877423,45.33201228611826,45.33189143262075,45.33167657692852,45.33154470164952,45.33152249619064,45.33145697645516,45.33141796865405,45.33134165742513,45.33131907399658,45.33130268983014,45.33128114884644,45.33128136987883,45.33129792686912,45.33135323212829,45.33141339564377,45.33147409280158,45.33154565486309,45.33244093653437,45.33247931200958,45.3325126890281,45.33260579983774,45.33263364128118,45.33271616409134,45.3330014438021,45.33308983119505,45.3331997217352,45.33339207393163,45.33351835247466,45.33362828693529,45.33367806768273,45.33373863788824,45.33374956981892,45.33377150506055,45.33379340045045,45.33380510520537,45.33378577145049,45.33368408025102,45.33357494460452,45.33345385311089,45.3333880168672,45.33336591855242,45.33327830403628,45.33314665684028,45.33312429057936,45.33308040925461,45.33299289742617,45.33292882460326,45.33288878219874,45.33276523321941,45.33261140311616,45.33241336256548,45.332391579408,45.33227131554804,45.33201851832838,45.33193073255124,45.3317988157841,45.33164563752863,45.33157924290526,45.33131608709161,45.33120624429498,45.33086080808966,45.33082729391417,45.33082727660657,45.33083318886553,45.33090482771418,45.33108018001508,45.33140447075598,45.33155860534551,45.33173964409559,45.33182204653333,45.33199247269922,45.33209704206816,45.33214118711627,45.33215213722697,45.33217461029295,45.33220774637059,45.33221310076503,45.33220216898194,45.33215861404897,45.33199386687193,45.33189527035151,45.33185667571685,45.3318462588235,45.33185156724204,45.33187937477134,45.33195106750362,45.33209388009391,45.33229182825863,45.33241836703647,45.33266068836694,45.33267192780816,45.33276525327972,45.33282593328089,45.33283663114533,45.33289200258884,45.33296363453091,45.33302957162775,45.33313932058025,45.3331559057019,45.33317786015515,45.33320029236511,45.33324962846264,45.33330995034713,45.33335417439326,45.33348593062449,45.33360101610745,45.33363938486649,45.33367230080506,45.33373294183029,45.333793359796,45.33395770261174,45.33404032136352,45.3341120033482,45.33418901433008,45.3342443017692,45.3342554582028,45.33427785712055,45.33431048360308,45.33447563977934,45.33458529139349,45.33464587421069,45.33473922357826,45.33476654252443,45.33476069547123,45.33473289676614,45.33473291505876,45.33474412058978,45.33480440725498,45.33495762977299,45.33504533832951,45.33511676967501,45.3351828013728,45.33520498203222,45.3352546802377,45.33530911088248,45.33541917093402,45.33546852571273,45.33562252835639,45.33570492438588,45.3358368447813,45.33594646490923,45.33599058668618,45.33603451813482,45.33612205345091,45.33623171647365,45.33630329308724,45.33638585582175,45.33647332739145,45.33656123859456,45.33678066761232,45.336896178431,45.33697857168927,45.33706653468803,45.33715432134074,45.33723097323348,45.33730259910395,45.33733542208723,45.33739605529566,45.33742360241578,45.33748970765004,45.33764877676599,45.33769847370332,45.33784688202854,45.33790185342891,45.33796739466153,45.33805515517278,45.33820894279359,45.33828578966858,45.3384836934467,45.33862641150042,45.3387253582344,45.33876389239138,45.33878047340131,45.33879647252493,45.33879695330789,45.33883002182906,45.33889092370806,45.33896738698371,45.33901163553751,45.33908823600498,45.33913756064708,45.33915978020318,45.33920912614143,45.33925280861886,45.33929642162743,45.33936235137845,45.33944466967581,45.33952165634164,45.33956526983102,45.33957056443044,45.33956533221662,45.33957590258066,45.33959236331697,45.3396474484942,45.33973525547046,45.3398010860116,45.33991627421658,45.34017466378378,45.3403284885801,45.34065806837433,45.34079018076831,45.34086128660118,45.34097094837409,45.3410641785358,45.34112414559508,45.34120662632868,45.34120635624902,45.3412503003571,45.34125002720105,45.34127198060614,45.34128325890305,45.3413159684933,45.34136502012207,45.34139754188276,45.34143614800284,45.34148034088589,45.34154568532053,45.34163909032878,45.34166678208004,45.34178778510288,45.34202933294422,45.34209558298935,45.34220534969275,45.34256204317729,45.34257849801695,45.34269341488516,45.34272652977217,45.34283092891992,45.34293019699128,45.34297915695579,45.34299615665955,45.34308392015185,45.34314948297563,45.34328131676972,45.34332507033828,45.34339090630587,45.34355022441258,45.34369823423204,45.34380814635905,45.34387395802437,45.34389632555168,45.34398974990614,45.34404962989146,45.34407722076421,45.34415975844098,45.34426918654292,45.34440141127659,45.34448903203465,45.34462086363249,45.34473035999182,45.34488414569761,45.34514744624912,45.34558619472045,45.34578362101226,45.34587111115988,45.34602500106611,45.34611798689787,45.34620613526283,45.3462554064843,45.34627737960214,45.34633707213962,45.34634786944869,45.34639144929403,45.34645173618443,45.34656161600785,45.34669325135053,45.34689047726474,45.34702223837656,45.34709356447499,45.3472854319723,45.34735148035753,45.34757048068755,45.34774617650804,45.34776795795786,45.34786475355748,45.34811961734501,45.34825086518322,45.34836058043479,45.34847058808611,45.34851446930028,45.34875572409116,45.34890941150272,45.34926056617329,45.3493482773226,45.34945804328479,45.34954617076242,45.34983159144686,45.34998531559258,45.35013894647996,45.35024913146449,45.35027079150699,45.35040818147681,45.35073220753949,45.35092976085568,45.35123749303283,45.35139123663134,45.35165474572534,45.35179166788053,45.35230285472468,45.35254984730571,45.35272025426629,45.35282499981196,45.35292368752052,45.35318797921876,45.35351737010158,45.35368814069067,45.35394609290442,45.35401759534308,45.35414382041417,45.35423210213164,45.35452871940088,45.35471062926767,45.35483104539959,45.35496301111532,45.35513895120373,45.35527098976559,45.35558392452219,45.35570980642133,45.35579796021003,45.35636910578824,45.35650067755223,45.35661044307723,45.35667668873673,45.35672013243749,45.3567921254356,45.35696780032748,45.35705040891901,45.35713815363486,45.35716008343862,45.35724771989258,45.35744553975152,45.35746732429003,45.35757747832389,45.35764301928231,45.35777510260012,45.35821428075374,45.35856547798993,45.3586750433701,45.35887303612095,45.35931164830887,45.3593992880916,45.35957537626771,45.35959720213364,45.35964108382319,45.3597510913137,45.36007984348944,45.36012934097068,45.3601457794732,45.36043128665811,45.36056295321602,45.3606292020072,45.36073886651851,45.36104581364057,45.36126558060755,45.36135324292137,45.36146295785207,45.36168219172937,45.36176995603564,45.36183627595671,45.36201192317586,45.36212191102934,45.36234129368,45.36253874766093,45.36269234227959,45.36273666173818,45.36280262110575,45.36293399056645,45.36304380100411,45.36324093839995,45.36333455832195,45.3634005376301,45.36349396832322,45.36363079094486,45.36398292092527,45.36442745535894,45.36444425673645,45.36490565697335,45.3652354445185,45.36536156848219,45.36551030799713,45.36559794973006,45.36592214241701,45.3663456949628,45.36662008671544,45.36691174667582,45.36708207056549,45.36724130736214,45.36752165518804,45.3676093669655,45.36768667878809,45.36775829628285,45.36775800658892,45.36779145736268,45.36779116345748,45.36781897446445,45.36792321637384,45.36796760507789,45.36798945362606,45.36800041881083,45.36800125046354,45.36801275305956,45.36801274819384,45.36804002499147,45.36809486450186,45.36817747012403,45.36824333053912,45.36835639648461,45.36868254311582,45.3687489145798,45.36899081708714,45.36916089267275,45.36924313253273,45.36939708723456,45.36957292221698,45.36985872986536,45.37005638702287,45.37017219682057,45.37035885518878,45.3704364027923,45.37060158408431,45.37061816443218,45.37067316703721,45.37067343476543,45.37070604518618,45.37075035145572,45.37076155175328,45.37080563591604,45.37083899670406,45.37084993399849,45.37084961055691,45.37086083465785,45.37086101736937,45.37085004686173,45.37085058029247,45.37082859415256,45.37075187203166,45.37072427329167,45.37064770933299,45.37057087872516,45.37048352026825,45.3703959359562,45.37033559207941,45.37033606429308,45.37040229813399,45.37041345115065,45.37043539631116,45.37046849233131,45.37049039028806,45.37052323211986,45.37052393397188,45.37051292173951,45.37051261760745,45.37050218811083,45.37050180073329,45.37051299503075,45.37052422146552,45.37057394414776,45.37062311576135,45.37072749215638,45.37088722402341,45.3710187355225,45.37128234875603,45.37148555202873,45.37150200955944,45.37180930773909,45.37200747078579,45.37211706105588,45.37223217192513,45.37253391091276,45.37297359320888,45.3732807668848,45.37363279920145,45.37372055160591,45.37387403567099,45.37396206085332,45.37411592409291,45.37420368580271,45.3744671827451,45.37477441774315,45.37484017266743,45.37497705534276,45.37498062979714,45.37498675256766,45.37502702370432,45.37508467589484,45.37524516102514,45.37539174807518,45.37549429507764,45.37559655726093,45.37576530240577,45.37586814071268,45.3759488202721,45.37604398468061,45.37607353191856,45.37611756410703,45.37627095542189,45.37633034372458,45.37640421029259,45.37652240590167,45.37660395172137,45.37667724398559,45.37679543533808,45.37689088996065,45.37694230931092,45.3770513787071,45.37716160417453,45.37724995927613,45.37738973437559,45.37749228284243,45.37759512403964,45.37769767551002,45.37778574095091,45.37787322705469,45.37795303437319,45.37801068476279,45.37810352684029,45.37816624875563,45.37821418874594,45.37825185025147,45.3782841504072,45.37831137658277,45.37833947928527,45.37838887025551,45.37856239193404,45.37861381350572,45.37878878554363,45.37887568838399,45.37902878904615,45.37913843677342,45.37926995210217,45.37938698390798,45.37945231228138,45.37958324784638,45.37966986359648,45.37975676849943,45.37986467926141,45.37996635849969,45.38004558369522,45.38011032726234,45.38018955839141,45.38029065645267,45.38039885477981,45.38049343387603,45.38058801842198,45.38070533910979,45.38079340301834,45.38091840316518,45.38099966457197,45.3810812116301,45.38116985602148,45.38127356116494,45.38135482135301,45.3814207260256,45.38158323668184,45.38163494549934,45.38170056267426,45.3817732740724,45.38199879235286,45.38208685684629,45.3822260507448,45.38234250126167,45.38245953223307,45.38257569809364,45.38267795514315,45.38278731253339,45.38283134525552,45.38297705499923,45.38308669926187,45.38321227908131,45.38333075920365,45.38341911595901,45.38350037423309,45.38358249821484,45.38367259253358,45.38375675375048,45.38386133058593,45.38398865033303,45.3841014843711,45.38419129095686,45.38431064408847,45.38439305927391,45.384505603207,45.38463943951004,45.38477385821375,45.38490117781371,45.38495317589918,45.38502762742546,45.38517565416301,45.38525633552864,45.38537336838274,45.38543868809478,45.38556165815971,45.38564030850301,45.38573879614869,45.38587450959387,45.38595909052366,45.38606496632892,45.38611174401795,45.38619400654721,45.38624962383971,45.38631204358604,45.38648859730952,45.38653088649677,45.38660866155294,45.38667282694962,45.38678840342514,45.3868755966723,45.38694859691113,45.38708011446683,45.38719830797002,45.38730172462771,45.38741195057406,45.38751420698558,45.38762472064481,45.38776565615136,45.38786994464772,45.38804187388617,45.38816123006698,45.38826580862398,45.38841441610712,45.38856983396007,45.38873176913022,45.38889254283355,45.38902318469314,45.38918902610163,45.38939005511685,45.38976692313082,45.38980979621205,45.38991002077562,45.39000966325724,45.39004514715454,45.39009540410569,45.39017375572786,45.39029439922122,45.39037926849657,45.39044168994928,45.39052626839566,45.39059665433175,45.39066761616824,45.39072322865416,45.3907655199158,45.39080013176655,45.3909417710863,45.39097044367448,45.39111470163982,45.39122795099127,45.39137930165607,45.39145707629516,45.39152123297081,45.3916279689273,45.39173529118195,45.39183638290844,45.39193008609499,45.39202466524093,45.39218514533758,45.39232462382322,45.39244962155783,45.392641686808,45.39276755381871,45.39287213474333,45.3930423242679,45.39319122760448,45.39338444978434,45.3935182845232,45.39368964181426,45.39408492853765,45.39412273554404,45.39421992870393,45.39431741350182,45.39441547532257,45.39453569913773,45.39461812083157,45.39473805403706,45.3948054072572,45.39483612059441,45.39486741013508,45.39491347758673,45.39497460380161,45.39504109019514,45.39508424747292,45.39510524694587,45.3951339221355,45.39515666591604,45.39516492353323,45.39517347529904,45.39519027907988,45.39520708643287,45.39523360557724,45.3952737363806,45.39530618819209,45.39534486816219,45.39545002850883,45.39558619106492,45.39561806164448,45.39565731941886,45.39569570687464,45.39577899540111,45.39581680196748,45.39593615378649,45.39597338011083,45.3960173116221,45.39615037582251,45.39628226356506,45.39643812669637,45.39651627527845,45.39665073307887,45.39672931091358,45.39690915919957,45.3970549685753,45.39710078893711,45.39719071162846,45.39748704409575,45.39751016833944,45.3976026700938,45.39772963841712,45.39786581102818,45.39794481923906,45.39808184942981,45.39817220307049,45.39826512630611,45.3983362164442,45.39839424021917,45.39842999794811,45.39854304756363,45.39858843761711,45.39865866723709,45.39869656697945,45.39873189844175,45.39877900224113,45.3988496640669,45.39888670724321,45.39893595425411,45.39896379516246,45.39899912097884,45.39901346894528,45.3990177555945,45.3990190415745,45.39902675691481,45.39903318594062,45.39904047157015,45.39910106581974,45.39918521074096,45.39923317184037,45.39925800563447,45.39935092627526,45.39947617493421,45.39957872534087,45.39962454369752,45.39964852249505,45.39976327671547,45.39986497230749,45.39992085158786,45.40011075355171,45.40026533126697,45.40053037596892,45.40072734232771,45.40085665620844,45.40095364208984,45.4010379909289,45.40104762382476,45.40115510053349,45.40127563726005,45.40133194059624,45.40136684018584,45.40136812507291,45.40138161278846,45.40141822588737,45.40144220421723,45.40146661136866,45.40149187314884,45.40153726248533,45.40154026008173,45.40152184683369,45.40151349919743,45.40156016871406,45.40159592138922,45.40162032724661,45.40160020280094,45.40148138340817,45.40142764458779,45.40131974378478,45.40122190271583,45.4011446113175,45.40107909895879,45.40102536381385,45.40099303633174,45.40090739622559,45.40084273877559,45.4007020798357,45.40058326022402,45.40052738036358,45.40044923648097,45.4003920729498,45.40033405303679,45.40025505650069,45.40010090548945,45.39995896285137,45.3998065273904,45.39962090942466,45.39952264329991,45.39938026644454,45.399281572235,45.39915054445773,45.39904178726901,45.39880200293499,45.39862601492192,45.39856050375575,45.39840635572713,45.39832735375389,45.39818198603523,45.39808457554802,45.3980421851883,45.39795611714839,45.39783023201812,45.39771440470914,45.3976309059307,45.39755832791987,45.39742066224165,45.39732710389567,45.39730612216756,45.39726629726798,45.39726758109413,45.39727271637623,45.39722068925251,45.3971341968057,45.39703678327508,45.39699310666366,45.39692138293901,45.39691303212089,45.39689590086589,45.39691109586875,45.39690189032464,45.3969305727909,45.3969145055334,45.39689566504357,45.39687103585712,45.39691727620764,45.39695260035331,45.39699176785516,45.39701873705772,45.39703393226227,45.39707053798418,45.39708872563205,45.39713710211241,45.39722037688323,45.39728973258058,45.39737001459405,45.39745950352732,45.39757424521781,45.39762347933143,45.39769796666614,45.39781484499719,45.39788377734254,45.39794349942844,45.39797753708533,45.39804604058684,45.39815993103856,45.39820574086487,45.39826247297886,45.39830785309987,45.39840826123133,45.39856368781101,45.39869556958796,45.39881567418321,45.39901800856499,45.3990696110319,45.39916403876546,45.3992571760412,45.39946335719883,45.39957297037297,45.39959737121225,45.39955625790168,45.39948239367577,45.39944128028935,45.39937832953208,45.39935734673585,45.39924087089119,45.39922031526073,45.39919012006175,45.39915992727979,45.39919353736561,45.39926033281126,45.39932584441865,45.39941105994481,45.39944253732693,45.39958106112512,45.39964401194,45.39976112849017,45.3998349977748,45.39993113318135,45.40000585260002,45.40010241566678,45.40021032227234,45.40029638921551,45.40037196968952,45.40041564344015,45.40050299276062,45.4005361751674,45.4005614310412,45.40056271290854,45.40053081159957,45.40045566559945,45.40039143340505,45.40030407980827,45.40026126048942,45.40021843996918,45.40023063777451,45.40026382377674,45.40030792484951,45.40037386602523,45.40040747623986,45.40038777746007,45.40032226042543,45.40026766866095,45.40015805488314,45.40008119269087,45.40003751830725,45.40000646885748,45.39999854115517,45.39999982276368,45.40004862485019,45.40011627208334,45.40015031238498,45.40023510015255,45.40026700413028,45.40029847541995,45.40034172318055,45.40033293980816,45.40026999412161,45.40023937150733,45.40022052350641,45.40019996576395,45.40021216806017,45.40027273784147,45.40033953304403,45.40046220435934,45.40055083493701,45.40063733216704,45.40067972788631,45.4007037021107,45.40072767519064,45.40077305528976,45.40080709216571,45.40085205015671,45.40088608700059,45.40087858443874,45.40080684911715,45.4007670167404,45.40079098865345,45.40084942655758,45.40091750222652,45.40094104705294,45.40088901234593,45.40084618980572,45.40078281253233,45.4007538983838,45.40075432532247,45.40080056323556,45.40084508893352,45.40092194869024,45.4010101555475,45.40108658651456,45.40112855359343,45.40116003137546,45.40122554553123,45.40131630929253,45.40137175663613,45.4014158597687,45.40148137453821,45.40153468901696,45.40155438954179,45.40159550537241,45.40165052532432,45.40166187322254,45.40169633646696,45.40178539288187,45.40183998780731,45.4019046483061,45.40191300390394,45.40191129640182,45.40191001575912,45.40190617381253,45.401915814138,45.4019712640619,45.40198388971112,45.40199608894144,45.40200913950898,45.40201084704903,45.4020444608649,45.40207636119005,45.40215108640035,45.40215987305707,45.40215773856838,45.40215560409838,45.4021648143977,45.40218494460866,45.40221684658915,45.40227186657869,45.40233866144173,45.40241722881471,45.40248359671461,45.40260412840338,45.40272423801903,45.40284434277652,45.40295396067749,45.40311646158171,45.40321302375506,45.40323400894862,45.40325370905403,45.40328049282851,45.40326572646931,45.40317368299345,45.40311780706222,45.40298122995534,45.40296902952108,45.40290009834435,45.40279712879006,45.40274040338161,45.40268409886645,45.40263871362404,45.40261602463315,45.40258283929715,45.4024959127661,45.40243168552714,45.40239935134521,45.40236745219387,45.40232334887624,45.40231157547022,45.40234305238076,45.40236446246917,45.40240685542565,45.40246059720982,45.40248072346866,45.40246852286096,45.40244497945737,45.4024546171656,45.40250664410544,45.40254733055271,45.40254647621027,45.40253342105905,45.40252122147817,45.40247498134475,45.40245186241872,45.40242703707885,45.4024593637669,45.4025034672035,45.40259252969943,45.40263620345062,45.40273233576782,45.40274325374934,45.40283018009099,45.40298090399063,45.40299139590238,45.40306612180478,45.40311858008499,45.40325518039971,45.40329800010704,45.40334960652687,45.40333270495005,45.40331879542212,45.40328926197926,45.40324216584006,45.40320428076546,45.40319037052304,45.40320664909919,45.40324904319004,45.40332291117639,45.40340812261785,45.40351603053502,45.40355927662786,45.40362350541678,45.40375239275927,45.4038724993741,45.40401573002754,45.40404891457652,45.404326158429,45.4045348985897,45.40464451175514,45.40477682135128,45.40486545315908,45.40496543513939,45.40506541224067,45.40550922085485,45.40560919795227,45.40579738577271,45.40595195798045,45.40612922159347,45.40626238718016,45.40643044252659,45.40656574442044,45.40672501844102,45.40682584918829,45.40693973829888,45.4070305098714,45.40716666305725,45.40725999693894,45.40733063563545,45.40740084923104,45.4074361684175,45.40749546369621,45.40754255744506,45.40768169663429,45.40775489883701,45.40787049369109,45.40792978438939,45.40799914184387,45.40804666194697,45.40810638085597,45.40816225248159,45.40850735694932,45.40855231473766,45.40868846193018,45.40885694265655,45.4090249950297,45.40924184223384,45.40936792763455,45.40958520194458,45.40974532063274,45.4098512717074,45.40992983798215,45.41012057723199,45.41031131805794,45.41037853947825,45.41052474801505,45.41060160986954,45.41066370848057,45.41074014127749,45.41081913337931,45.41085317213482,45.41089684724265,45.41092704026997,45.41091271030444,45.41088959421697,45.41086647638669,45.41085470504236,45.41085257161156,45.41087355486353,45.41090631011814,45.41095083859178,45.41098444787882,45.41099792651241,45.41101225906986,45.41103580470442,45.41107154706275,45.41109509275365,45.41116487306297,45.41123422237989,45.4113249888452,45.41142581832406,45.41168654638997,45.41173150295782,45.41179036113764,45.41188709737002,45.41195943452148,45.41197845469556,45.41206255707661,45.41220126251959,45.4122804120168,45.4123818307176,45.41241261709355,45.41245405450773,45.41240344908798,45.41247082253311,45.4125045839187,45.41248587920536,45.41250999548867,45.41253113086879,45.41256275944603,45.41255368723785,45.41258403675823,45.41261267941775,45.41268251671585,45.41266450838778,45.41267939304998,45.41274164120007,45.41276148942223,45.41279097810812,45.41280742390655,45.41286087786752,45.4128781721052,45.41293417346311,45.41303384932887,45.41306630606842,45.41312187832006,45.41318114766822,45.41324466042317,45.41328378972297,45.41332376243845,45.41334984700932,45.41342767554556,45.41348611370943,45.41348655252765,45.41351952602147,45.41353589016849,45.41356322667311,45.4136071858107,45.41365111397993,45.41367342808101,45.41367321031955,45.41368448220648,45.41368406448674,45.4136950459025,45.41369520150405,45.41368425016381,45.41368431739738,45.41367337077405,45.41366238282174,45.4136511979932,45.41362931722659,45.41349747719417,45.41333825107446,45.41332144817973,45.41320092089382,45.41300824789524,45.41299200444097,45.41289825254713,45.41279368966129,45.41272791728151,45.41267307591895,45.41265094530647,45.41258489835096,45.41258484167363,45.41254103937187,45.4125300337671,45.41250844489176,45.41248591017684,45.41239855031066,45.41239849401231,45.41238730657175,45.41236512966028,45.41232122427775,45.41224968960786,45.41211802208273,45.41206318435482,45.41197488725175,45.41184329260849,45.4116234813533,45.41151354167592,45.41128261212847,45.41119971381846,45.41107930846761,45.4110294912396,45.41091988474818,45.41063960216057,45.41052938758502,45.41050187634972,45.4104855240973,45.41047433453172,45.41047434791244,45.41045271624133,45.41045266102898,45.41044147265513,45.41044141263675,45.41043081162702,45.41042484025365,45.41032627038005,45.41024893978147,45.41014493336547,45.41010617524387,45.41007305427554,45.41004043099719,45.4100401558194,45.40998497951774,45.40994119844474,45.4098754239028,45.40980906997908,45.40980935414261,45.40977618779981,45.40976553804238,45.40973236130684,45.40968822272432,45.40968850975043,45.40958954137334,45.40955632568019,45.40950157304442,45.40950129603368,45.4093697478062,45.40936947613393,45.40930157458914,45.40927077877832,45.40922072390842,45.40918277568647,45.40905060538427,45.4089847981889,45.40894629514362,45.40885241317147,45.40883641137573,45.40883642758652,45.40881985498211,45.4088139845166,45.40875919503138,45.40875922425426,45.40877020961265,45.40876455429463,45.40874803957419,45.40874218832276,45.40874812963734,45.4087588788241,45.40876986660381,45.40876454776534,45.40878063963222,45.40881339726925,45.408819069577,45.40884613376459,45.40884081990093,45.40885180570795,45.40889009250728,45.40891203950085,45.40893402988414,45.40893433210196,45.40894505363196,45.40894481470049,45.40892260618109,45.40888409833146,45.40877442943108,45.40873053053227,45.40873025147629,45.40862563012775,45.40853253985034,45.40839473205612,45.40833454524818,45.4083342670934,45.40829036731389,45.4082791351579,45.40821305016937,45.40816915331204,45.40814722840476,45.40812530311572,45.40808112223444,45.40808140637874,45.4080485239277,45.40800464952656,45.40800399826796,45.407916338364,45.40791634409364,45.4079492882603,45.40801482610803,45.4080151074153,45.40803706146051,45.40804803943806,45.4080590165497,45.40806971312752,45.40808068842988,45.40809192466361,45.4081029023183,45.40811357567175,45.40812457603613,45.40813554993214,45.40814622402583,45.40817915244783,45.40817943225802,45.40819040717894,45.40821236102556,45.40822303055121,45.40823400282233,45.40823373796793,45.40825594715539,45.40826689852994,45.40828322817764,45.40829981863153,45.40831052915529,45.40835437727983,45.40835438896506,45.40834341164589,45.40834875910497,45.40833215992724,45.40832089252908,45.40823311287476,45.40815067416825,45.4081283894008,45.40807332966362,45.40804628797222,45.40801845735877,45.40800760820528,45.40797441393815,45.40788663611499,45.40779317759043,45.4076338126626,45.40750707263008,45.40746865265893,45.40724325315688,45.4070781655765,45.40703421525355,45.40697388963384,45.40692408855129,45.40691339968902,45.40694069888298,45.40691306520134,45.40686918286935,45.40682558040771,45.40673751140385,45.40664974547443,45.40658345359094,45.40642941633196,45.40629784770999,45.40586852132579,45.40554977032923,45.40552768841444,45.40533020751475,45.40510969576901,45.40491215293164,45.40478569869049,45.40461494372536,45.40446119662126,45.40432936332958,45.40406542120131,45.40360335783611,45.40347170738269,45.40327386968286,45.40303194149753,45.40300985619265,45.40287807870177,45.40221872055992,45.40210855226399,45.40207553934598,45.40192193950881,45.40179000828183,45.40165792983525,45.40156988232296,45.40141599323722,45.40132824987322,45.40121851727544,45.40117422586195,45.40110839143464,45.4010204049109,45.40093250439117,45.40085556478729,45.40075689553213,45.40069052190695,45.40060275047868,45.40049254405487,45.40025624353913,45.40011874279674,45.39995357489251,45.39982752587171,45.39955771661108,45.39934334665449,45.39926081509535,45.39912915932824,45.3989637116607,45.39892537644009,45.39877726089001,45.39860099325811,45.39842537720629,45.39831536710011,45.39829306514751,45.39827141236928,45.39811708438786,45.39798515489282,45.3978755744124,45.39780389106101,45.39769949586295,45.39769920960914,45.39763895796806,45.39759506183757,45.39757844542429,45.39758908243375,45.39761131408964,45.39762756828652,45.39765485549258,45.39767703147965,45.39769838311074,45.39772090830123,45.39772061968426,45.39778640529797,45.39778668227611,45.39783056283493,45.39783027899569,45.39788565467122,45.39788536835429,45.39795115065375,45.39795142748137,45.39798405352479,45.39801694441683,45.39803887708303,45.3980717653049,45.39819262684966,45.3982145638786,45.39824715988488,45.39830226733527,45.39833544198081,45.39843381473523,45.39857104310174,45.39870821849174,45.398812555349,45.39898284806109,45.39907074606477,45.3991366802409,45.39918070396174,45.39944452552542,45.39962053064001,45.3998840901763,45.40017004357379,45.40019181791509,45.40036777583991,45.40041152910419,45.40049987665714,45.40052165402843,45.4007416275476,45.40078566348441,45.40085147791373,45.40111521338721,45.40151102698262,45.40170893193971,45.40195619973967,45.40197264459959,45.40210466270965,45.40221443953567,45.40230220428629,45.40252782876676,45.40254427606271,45.40281848069347,45.40309849697793,45.4032575444563,45.40334997000505,45.40343180176317,45.40346364170807,45.40342949021316,45.40337097919939,45.40328365586398,45.40324326357754,45.40335790416742,45.40349004565761]}],[{"lng":[-86.82825560988928,-86.82845977063505,-86.82859542541431,-86.82887078770591,-86.82911190056971,-86.82918040573192,-86.82942422189268,-86.82956393096616,-86.82963513626918,-86.82974194570637,-86.82981450490585,-86.8299979213804,-86.83007453387397,-86.83014843978083,-86.83019215167228,-86.83026875883668,-86.83030841521217,-86.83031922476972,-86.83033003391178,-86.83033678965495,-86.83037779696944,-86.8303859037682,-86.83044042114312,-86.83041968087237,-86.83043048905741,-86.83044264868286,-86.83042055701048,-86.83035881437749,-86.83029571743803,-86.83030112188447,-86.83024343292919,-86.83021864018211,-86.83019384769243,-86.83016770736715,-86.83017851624021,-86.83018256921642,-86.83018797365935,-86.83016047822746,-86.83013433584381,-86.83010548963814,-86.83007529842159,-86.82998065906246,-86.82995586736533,-86.82986393121358,-86.82983643838696,-86.82981434901535,-86.82978956252603,-86.82976206925449,-86.82973592737454,-86.82967689072724,-86.8296521014743,-86.82963001289319,-86.8296394711379,-86.8296885833272,-86.8296953389933,-86.82970209475262,-86.82974444859727,-86.82974985294555,-86.82972371261626,-86.82976471514461,-86.82977957686467,-86.8297863322348,-86.82976019205482,-86.82977100057182,-86.82972412713752,-86.82960605657199,-86.82922325566025,-86.8292215087793,-86.82920610167562,-86.82917835621926,-86.82916656520567,-86.82908518990024,-86.82899243724448,-86.82893273144988,-86.82888712344787,-86.82889338594437,-86.82893805617627,-86.82893541298813,-86.82895328008927,-86.82889852573264,-86.82894473703685,-86.82895651709728,-86.82902304110064,-86.82915363821088,-86.82923482198505,-86.82923500604103,-86.82926655377788,-86.82926673785464,-86.82929926524953,-86.82959235618105,-86.82962487363928,-86.82965777294439,-86.8297453871826,-86.82979442169915,-86.82984670023158,-86.82987842902055,-86.82987977328037,-86.82992843912436,-86.82992880731173,-86.82997747285742,-86.82997784334852,-86.83001073078987,-86.83005539297622,-86.83000597923403,-86.82997517738539,-86.82993049816122,-86.8298852770684,-86.82973492040865,-86.82946575556986,-86.82946120705131,-86.82948533199857,-86.82951784705472,-86.82948704566735,-86.82944086449878,-86.82936302667899,-86.82927567672346,-86.82917446066662,-86.82912905158733,-86.8290833156404,-86.82908350126687,-86.82903828187996,-86.82889229004343,-86.82879403803359,-86.8287885185113,-86.82880600359519,-86.82882245786375,-86.82884840334103,-86.82894733714778,-86.82902212456121,-86.82903315905901,-86.82898125156218,-86.82899770545086,-86.82899837226132,-86.8290387626415,-86.82915042210271,-86.82930874202442,-86.8294368635385,-86.82953967966593,-86.829789441963,-86.83008403347156,-86.83023455725217,-86.83036911906325,-86.83051100087816,-86.83075484582218,-86.83110104560899,-86.83119493303988,-86.83150854065998,-86.83153971255,-86.83207167439872,-86.83229118520367,-86.83263614496867,-86.83279342278028,-86.833029358679,-86.8333462711075,-86.83351370759685,-86.83356148848189,-86.83358715438183,-86.83360291724941,-86.83361224189885,-86.83370210918613,-86.8337345201633,-86.83375112913859,-86.83378400324141,-86.83381553984488,-86.83381669784636,-86.8338482345244,-86.83384841821348,-86.8338968847392,-86.83400823483051,-86.83414296913423,-86.83423789446836,-86.83443193826322,-86.83397345661753,-86.83381455691661,-86.83375166099322,-86.83361558964702,-86.83353350798809,-86.83349989469029,-86.83341836866987,-86.83333057557691,-86.83325093893335,-86.83304682870238,-86.83282732420783,-86.83223139665772,-86.83191836971156,-86.83120744858456,-86.8309893560082,-86.83064582315146,-86.83020963761568,-86.82952237066968,-86.82925350466348,-86.82889984767728,-86.82852721911408,-86.82837270911934,-86.82790696942929,-86.82765759843916,-86.82747096643165,-86.82737727344728,-86.82728212580945,-86.82723441787343,-86.82721845304643,-86.82715439672855,-86.82698847552589,-86.82684706948261,-86.82669065463217,-86.82650237938635,-86.82641733988829,-86.82629188534179,-86.82594805247223,-86.82579183147772,-86.82561116033791,-86.82539173301528,-86.82482636184602,-86.82448947165922,-86.82434796562735,-86.82416037316798,-86.82378468944636,-86.82353493589557,-86.82334732653577,-86.82316050133728,-86.82303504775648,-86.82284745142729,-86.82265841454523,-86.82254066535963,-86.82218635125983,-86.82196604771944,-86.8217698921098,-86.8214638564954,-86.82104084501285,-86.82027261991949,-86.82017891967068,-86.82002209557972,-86.8199909259357,-86.81992838571888,-86.81989721589423,-86.81974097479819,-86.81970980512361,-86.81936596101292,-86.81933479035645,-86.81911504351267,-86.81908386265586,-86.81895938427432,-86.8189282013721,-86.81867786517172,-86.81827263883487,-86.81805404310751,-86.81767891808934,-86.8173750870022,-86.81708770968599,-86.8169314559856,-86.81612251680666,-86.8160295783828,-86.81584321635539,-86.81566677575644,-86.81559836903898,-86.81547457581799,-86.81513502556949,-86.81494818249703,-86.81469880854105,-86.8145739239967,-86.81445722513349,-86.8143247385096,-86.81423181168043,-86.81398329440995,-86.81370477390337,-86.81320852634894,-86.81292971937958,-86.81283640177681,-86.81277405093816,-86.81274346196017,-86.81240134177149,-86.81190432491793,-86.81153200907242,-86.81103499486939,-86.81084893192806,-86.81081775931045,-86.81075657433318,-86.81072540444958,-86.81047661025694,-86.81038386644812,-86.8103526939348,-86.81025995104316,-86.81007408285451,-86.80991899787453,-86.80976373110997,-86.80945297666072,-86.80939082115864,-86.80926730620723,-86.80914339047386,-86.80895694059765,-86.80846274469441,-86.80824580733641,-86.80821462971147,-86.80784270654634,-86.80753176535613,-86.80709575564212,-86.80668993648236,-86.80656515608634,-86.80628958621499,-86.80595138447997,-86.80584023885855,-86.80583254144472,-86.80559641856328,-86.8055257957586,-86.80539166776832,-86.80517736785009,-86.80498604475264,-86.80485727625339,-86.80479922627211,-86.80479844797887,-86.80481315620226,-86.80481305542031,-86.80487209834216,-86.80487171075467,-86.80488641991921,-86.80488631831432,-86.80490102835734,-86.80489976810014,-86.80491544901072,-86.80492957733563,-86.80492589013522,-86.80489667216808,-86.80489239468048,-86.80491363692649,-86.8049802790604,-86.80514725418972,-86.8052544261013,-86.80529962322618,-86.80547871155893,-86.80547908352071,-86.80549428688086,-86.80549234000473,-86.80550637706999,-86.80550229384015,-86.80548650878627,-86.80548281572248,-86.80546703001133,-86.8054493074207,-86.80541658068569,-86.80541599580543,-86.80536611981626,-86.80536729943435,-86.8053567859404,-86.80537149954262,-86.80536808989395,-86.8053969413903,-86.80541232823998,-86.80541096836858,-86.80545636939344,-86.80549963526832,-86.80551532206569,-86.80551424439182,-86.80552994048782,-86.80552886485195,-86.80554455041251,-86.80560349917614,-86.80561820977725,-86.80561811890982,-86.80563283038943,-86.80563272907916,-86.80564812572254,-86.80564656979651,-86.8056617644551,-86.80565631951244,-86.80567016394741,-86.80568584658137,-86.80568438281396,-86.80569910395211,-86.80571323516413,-86.80574372317398,-86.80578806411064,-86.80584788578423,-86.80586270082134,-86.80592193935924,-86.80596782520654,-86.80601235401666,-86.80605727856727,-86.80610277545991,-86.80626861678,-86.80635689473786,-86.80647664529738,-86.80650617377263,-86.80662650705241,-86.80664083213935,-86.80668643367098,-86.80670047216248,-86.80673067850037,-86.80675971759864,-86.80682773453829,-86.8068493689895,-86.80687957352005,-86.8069086149625,-86.80692332579594,-86.80692323750154,-86.8069831555044,-86.80698209007868,-86.80702672392519,-86.80705634565523,-86.8070867441252,-86.80708655093699,-86.80711695031229,-86.80711675813259,-86.80719276025286,-86.80726828076867,-86.80740256000468,-86.80740245791792,-86.80744709330506,-86.80744553896858,-86.80749017616415,-86.80748804062976,-86.80750246656969,-86.80751727512934,-86.80758510178337,-86.80773105779721,-86.80776848229011,-86.80778213524734,-86.80774900683488,-86.80774745275278,-86.80775486993643,-86.80780807179286,-86.80784393665643,-86.8078279643554,-86.80782447173647,-86.80783966649084,-86.80802247205847,-86.80808259879866,-86.80812732878412,-86.80818478620506,-86.80846137842322,-86.80855153202201,-86.80856527973359,-86.80861010313762,-86.80868611254206,-86.80868494455565,-86.80871534637754,-86.80873055644093,-86.80879087918862,-86.80879097215158,-86.80888238540514,-86.80888121747789,-86.8089424111285,-86.80901823102799,-86.80906432846908,-86.8090634502578,-86.80906531386242,-86.80915055118638,-86.80918071944647,-86.80924513555938,-86.809371245112,-86.8095014346714,-86.80956448934667,-86.80969467920706,-86.80985911900757,-86.80998930728897,-86.81015510794009,-86.81025377579516,-86.81035379724526,-86.81055248230535,-86.81081967266336,-86.81098547195894,-86.81121977002125,-86.81141846048071,-86.81168429281411,-86.8118500989254,-86.81222139442269,-86.81238719826419,-86.81258725362966,-86.81278867066533,-86.81295719317349,-86.8131558956357,-86.81342309098838,-86.81362315189739,-86.81369029322013,-86.81378760636929,-86.81385202841405,-86.81388084672453,-86.81394255207802,-86.81400561632397,-86.81410157751297,-86.81433317281882,-86.81449762799049,-86.81475804496363,-86.81485672061169,-86.81498828939991,-86.81515410673019,-86.81538977921669,-86.81548845864198,-86.81565156458123,-86.81574481235894,-86.81580788132462,-86.81583941443658,-86.81593673736239,-86.81613545187344,-86.81630398984178,-86.81660952635936,-86.81674517143443,-86.81711785374759,-86.81745764779406,-86.81769739610415,-86.81810975869989,-86.81821386541996,-86.81848922498455,-86.81865912292652,-86.81879476836872,-86.81916881238548,-86.81954285423922,-86.81974835896979,-86.81998675695752,-86.82018954914361,-86.82052798896829,-86.82069788735784,-86.82096782497526,-86.82110211905983,-86.82130355688565,-86.82164471304162,-86.82174746598547,-86.82188175974015,-86.82215305767797,-86.82232160287553,-86.82245725198287,-86.82255729541197,-86.82292999434935,-86.82306428984838,-86.82330404953247,-86.82350955457586,-86.82371370907063,-86.82429327136778,-86.82436177581421,-86.82460288549743,-86.82470564131047,-86.82497964970554,-86.82508240298969,-86.82525230752529,-86.825422211975,-86.82555921426456,-86.82576472550672,-86.82600448396052,-86.82614013691804,-86.8264799443148,-86.82658269804328,-86.82678685292174,-86.82706086543647,-86.82723077170421,-86.82743222214202,-86.8275349762325,-86.82770623538244,-86.82777473698602,-86.82801720144836,-86.82825560988928],"lat":[45.42835983724237,45.42838966530528,45.42841759207403,45.42840108845723,45.42838363547921,45.42838553911299,45.42831984651233,45.42827541669719,45.42822908829233,45.42815958834903,45.42808913919053,45.42787683903391,45.42773403544081,45.42763947069077,45.427471596009,45.42732879091536,45.42723327769611,45.42704033316408,45.42684739408507,45.42672680563921,45.42660716740027,45.42646245943153,45.42610165150533,45.42585951952291,45.42566658341932,45.42544952050724,45.42523151409473,45.42510902231308,45.42501064870997,45.42491417549829,45.42471933360986,45.42454955891459,45.42437978178628,45.42423412790582,45.42404118390528,45.42396883566786,45.42387236244908,45.42375082432084,45.42360516610955,45.42350774384744,45.42343444005112,45.42328687831667,45.42311710599363,45.42292130757327,45.422799772463,45.42258175984563,45.42241198396909,45.4222904476051,45.42214479172011,45.421974065444,45.42180428762424,45.42158627678903,45.42141745534968,45.42115311043442,45.42103252376339,45.42091193466164,45.42076818177917,45.42067171279497,45.42052605448968,45.42040641625042,45.42014112454444,45.42002053541398,45.41987487650167,45.41968193425001,45.41929415111648,45.41895270029301,45.41825238998629,45.41824184072242,45.41822100860311,45.41805368413749,45.41784460380248,45.41757272366544,45.41715454978903,45.41696628072737,45.4165061783582,45.41612966161868,45.4158159554226,45.41556492818484,45.41541841151697,45.41500025471396,45.41462363677823,45.41439358876306,45.41414257699929,45.41380772376854,45.41366123549955,45.41364031087696,45.41359846801803,45.413577542788,45.41353555635386,45.41278233622168,45.41274051412509,45.41265668269365,45.41211292218765,45.41196640941347,45.41167348888196,45.41161072538713,45.41156890871914,45.41146423478838,45.41142238857105,45.41131771582492,45.41127587392526,45.41119221222863,45.41087850397382,45.41062756365547,45.41058572184725,45.41046030429023,45.41039748159825,45.41010483166463,45.40947769250873,45.40933124995027,45.40924751630889,45.40920569962965,45.40916385343954,45.40915349782774,45.40916936925705,45.4092163721545,45.40923229157192,45.4091903882312,45.40910165006484,45.40908072729778,45.40901790916697,45.40889262286605,45.40876727679048,45.40862080781307,45.40851630646296,45.40850063612487,45.40834885614922,45.40804024120194,45.40776303656881,45.40761667692152,45.40742844932628,45.40741277895053,45.40736562530856,45.40728714223292,45.40713548554616,45.40696795715695,45.40680045372903,45.40668526370087,45.40625625506362,45.40587941772004,45.40571184405464,45.40558620293365,45.40548666461015,45.40534000774678,45.40515670562127,45.40511468012009,45.40500973438343,45.40500973264295,45.40483135522084,45.40473703066959,45.40461115268504,45.40453244350246,45.40437012686754,45.40408223692737,45.40387275515552,45.40378383865277,45.40368968561936,45.40366884804717,45.40360598201792,45.40335491905878,45.40329731463489,45.40320840221028,45.40312473715586,45.40308288964219,45.40306199444229,45.40302014449022,45.40299922225525,45.40291547137073,45.40276894862296,45.40262237863908,45.40254384592961,45.40231107938323,45.40257021696635,45.40269588480479,45.40275882637795,45.40294721163624,45.40319831494106,45.40336566934218,45.40355400415633,45.4036795635076,45.40376331519489,45.40387864688951,45.40397297307887,45.4041984881279,45.40429299196533,45.40441396462295,45.404429938946,45.40447728414394,45.40450922291753,45.40462500678524,45.40467834627337,45.40466228739349,45.40458429416265,45.404542657156,45.40447514061291,45.40447549228655,45.40448614664231,45.40450707089605,45.40455420070193,45.40460658068482,45.404648513524,45.40473217572144,45.4048787362869,45.40495204346644,45.40501498542082,45.40507276467888,45.40507814275428,45.40510968632832,45.40516233079696,45.40520417939988,45.40528292100107,45.40539301558869,45.40562876939021,45.40580184543402,45.4058593594524,45.40592230058042,45.40602209152475,45.40606428182757,45.40607490100471,45.40610646599283,45.40613801086729,45.4062009472933,45.40628991493413,45.40635803648513,45.40659906645763,45.40672474286861,45.40681900758955,45.40694489396859,45.40710735503406,45.40736443064828,45.4073853505988,45.40743781075026,45.40743781000938,45.40745889797596,45.40745890024335,45.40750091198553,45.40750091116689,45.40760585072095,45.40760585098791,45.40766875724479,45.40766892308459,45.40770031561031,45.40770048682057,45.40775294006239,45.40780558793284,45.40784776284193,45.40788459949664,45.40790058100093,45.40790089121138,45.40789058104494,45.40788097200569,45.40787068960112,45.40782369720655,45.40770355948779,45.40762001977796,45.40751660098924,45.40742180964004,45.40740104538186,45.40740120267888,45.40742228316124,45.40745388551368,45.4074540060701,45.40744355112467,45.40737579779844,45.40728714610344,45.40717258894801,45.40714156320113,45.40712063618437,45.40712080001006,45.40711034984094,45.4070792895118,45.40699609434418,45.40696506112236,45.40688185919265,45.40682971840662,45.40682971507148,45.40680898851894,45.4068089828038,45.40674636020811,45.40671515312639,45.40671514905905,45.40668394311741,45.40666319446229,45.40663198001181,45.40662151255419,45.40656952991733,45.40654876819888,45.4065278611826,45.4064966444778,45.40643403097244,45.40623064773528,45.40617319254863,45.40617336097215,45.4061004640993,45.40606939588888,45.40608015354784,45.40614337989925,45.40618006492493,45.40630058078117,45.40653086384079,45.40661990345007,45.40663564117409,45.40678229313451,45.40680847356847,45.40690785264453,45.40711720382337,45.4073685274946,45.40759859593104,45.40776595530309,45.40784964525186,45.40786531743609,45.40790202252768,45.40804826111754,45.40809010978121,45.40810578198179,45.4081424870493,45.40815815927247,45.4082155932968,45.40823129391925,45.40830973122193,45.40891635753816,45.40923014700536,45.40948115997915,45.4096066234245,45.4097738288177,45.40999338661224,45.41009772909295,45.41016056395788,45.41049469639067,45.4105578327741,45.41059959461054,45.41070417427668,45.410766833818,45.41099692002244,45.41101792811738,45.41120617303044,45.41122717624153,45.41135259406946,45.41141533013487,45.41147809510774,45.4116036514278,45.41200113817044,45.41213704642327,45.41215272110796,45.41233582536429,45.41248208562872,45.41250309546763,45.41254491263477,45.41263897087975,45.41280621736353,45.41282191441159,45.41285859456346,45.41287412715949,45.41291080189824,45.41292650620085,45.41310945200193,45.41312512413751,45.41316165930321,45.41317733146138,45.4132140365148,45.41323487762924,45.41329761844394,45.41333954774897,45.41361145282309,45.41369503181036,45.41371073114758,45.4137892557214,45.4138047597831,45.41388319762218,45.41393035776812,45.4140609208542,45.41417596287389,45.41425956778622,45.41438505648797,45.41445305159812,45.4145628669712,45.41463066677852,45.41474050556464,45.41503310158665,45.41528409937917,45.41552979006313,45.41562906818921,45.41586431622178,45.41592183386709,45.41599496502185,45.41605762502135,45.41610991827266,45.41623542685265,45.41636081366686,45.41644443482923,45.41649673528119,45.41662224145134,45.41663791584823,45.41667444863962,45.41680527571761,45.41684178238076,45.41696720761045,45.41702995292435,45.41706132414693,45.41708224847599,45.41711361971564,45.41713454164168,45.41723905114004,45.41736961871798,45.41765190673631,45.41768861235654,45.41781403684262,45.41787677769,45.41800220463787,45.41812770869514,45.41814851934699,45.41823229521546,45.4183262870926,45.41845176793863,45.4185143830862,45.41861888370629,45.41872363392957,45.41878637478102,45.41882809166152,45.41892219269268,45.41904771625558,45.4190894741044,45.4192567953894,45.41929872984369,45.41949727053616,45.41960699927058,45.41974820909829,45.41987090498379,45.42018714113015,45.42036991506321,45.42049019634442,45.4205948739427,45.42069937955929,45.42072027418703,45.42075165052234,45.42079340780386,45.42088221433319,45.42089799749328,45.42102334627213,45.42104424090267,45.42111745889378,45.42124288748947,45.4212897927715,45.42130555059532,45.42130747469171,45.42161931381417,45.42169262012381,45.42176688653601,45.42196365421031,45.42208807434842,45.42218645653504,45.422310872202,45.42243624223222,45.42256066116013,45.42266191477805,45.42273713811318,45.42278824578306,45.42291457571229,45.42304281937429,45.42314407112924,45.42324724480868,45.42337357154458,45.42352592741703,45.42362718660421,45.42373417795949,45.42383542839617,45.42393763779695,45.42401573207435,45.42406874775138,45.42419507177295,45.42432331369078,45.42442551837863,45.42445154666179,45.42455088735588,45.42462514886321,45.4247225769036,45.42484507418226,45.42494345838972,45.42506691021403,45.42521831123755,45.42534367372365,45.42559249940389,45.42566771893241,45.42576801174038,45.42586925909881,45.42594829938072,45.42602352332506,45.42617300534856,45.42634469110543,45.42644307442467,45.42649226117014,45.42659160026991,45.42671791937727,45.42677093354524,45.42682776531787,45.42685571019992,45.4269385708097,45.4269963552651,45.42700304179689,45.42699038488503,45.42696913750378,45.42695265709106,45.42698155228685,45.42700948440375,45.42706822650562,45.42712695941638,45.42713268716887,45.42716348950804,45.42721745253164,45.4272993428736,45.42732823625281,45.4274082208842,45.42746027268522,45.42753834817351,45.42757201074845,45.42757487278977,45.42762691940572,45.4276827869275,45.42773579237756,45.42776372326735,45.42781482078308,45.42789766342056,45.42794971172592,45.42795638676596,45.42796210773636,45.42799194656977,45.42805638695236,45.42805829346545,45.42804084994508,45.42804370939606,45.42805133394766,45.42805419298829,45.42808307365934,45.42811195893655,45.42811577037938,45.42812148745178,45.42812815677107,45.42815608337742,45.42821384612318,45.42821670382207,45.42824653472267,45.42825415437989,45.42828303275305,45.42836110077289,45.4283639576223,45.42836871889678,45.42837062327729,45.42832905193531,45.42835983724237]}]],[[{"lng":[-90.9163248936774,-90.92534177619611,-90.92524319795653,-90.92522928039062,-90.92540421052368,-90.92532827021303,-90.92540244264406,-90.9252255148244,-90.92534465512712,-90.92522151830033,-90.92514756141942,-90.92555618944597,-90.92556860183613,-90.92589626258881,-90.92577598283268,-90.92573627379998,-90.92589073618855,-90.92594665947773,-90.92591522552316,-90.92593465076411,-90.92591550337947,-90.92594451534451,-90.92269972598052,-90.92307057766793,-90.92313449774795,-90.92357938518559,-90.92374961731763,-90.92365583345605,-90.92310612329678,-90.90219667817145,-90.88189973424987,-90.86112955620271,-90.85109238612725,-90.84102306627805,-90.82061213744666,-90.80766420408047,-90.80007654950786,-90.78087428255266,-90.77057156849855,-90.76020215646375,-90.73987073788345,-90.71958969027941,-90.69937977024628,-90.67859978527773,-90.65912855383004,-90.63870156975123,-90.6183569784794,-90.5979924831293,-90.57753118850583,-90.55702011798581,-90.52839747131253,-90.52257048667059,-90.51777232209021,-90.51580607522156,-90.49532204865551,-90.4849541227926,-90.47721218064899,-90.45432636083207,-90.44409575757011,-90.43862880399971,-90.43386456563393,-90.42539913586234,-90.41661029347469,-90.39639390495996,-90.37612976673886,-90.33535715565833,-90.31499563035528,-90.29923571530669,-90.27880652850945,-90.23822292956568,-90.21777968173011,-90.19747741611118,-90.19737542767656,-90.19750598747723,-90.1975307688506,-90.1976099902254,-90.19772610922529,-90.19780597982991,-90.18766449640258,-90.18107268749453,-90.16729315283401,-90.16082409542395,-90.14056884400102,-90.1200237147264,-90.1050892633555,-90.0848437810819,-90.07928477799975,-90.06601510884207,-90.06442820915409,-90.0457898949138,-90.04380326328118,-90.04410976460991,-90.0442169859007,-90.04465767570058,-90.04502874951925,-90.04492709519347,-90.04505040588131,-90.04577116560921,-90.04629030773427,-90.04639599939675,-90.04592028247448,-90.04633784358734,-90.0469234330477,-90.04618901424894,-90.04469443113675,-90.04249691053289,-90.04206560246213,-90.0832395304715,-90.10429485174909,-90.12539500875619,-90.13330713276528,-90.1350432827228,-90.13860048417187,-90.14191668298119,-90.14594174855496,-90.15122941000699,-90.15794344130998,-90.16705535660785,-90.18766631218736,-90.20818391053878,-90.2287546196239,-90.24923761118126,-90.26962721997501,-90.29058769344535,-90.31126965906751,-90.32152012973144,-90.33161236756317,-90.35185112231281,-90.37222527438534,-90.39259552946538,-90.41246143103325,-90.43166379587097,-90.4519375100335,-90.47233625480798,-90.49327751526765,-90.51363299326856,-90.53418219182936,-90.55536666914539,-90.57594942825251,-90.59656631382967,-90.61712390306978,-90.63781422662568,-90.6583121528684,-90.67877815689613,-90.69922534961998,-90.71904437164297,-90.7403416902123,-90.76050492126804,-90.77102790268108,-90.77361570704721,-90.78122309003474,-90.7914976864152,-90.79398881350903,-90.80245492544907,-90.81272470917361,-90.82304802733221,-90.83346295421684,-90.83547369872353,-90.84390142722384,-90.85397801552675,-90.86423276483467,-90.87471468458111,-90.87581654848758,-90.8842472626112,-90.89456009101043,-90.89593632130659,-90.9047089357957,-90.91498227690926,-90.9163248936774],"lat":[45.37932658101312,45.37940856204126,45.37162042391943,45.36459107390907,45.34999821681075,45.33545545696472,45.32094294791855,45.31364171889867,45.3064280975753,45.29210389844575,45.27802764352131,45.26327430261633,45.25002260222847,45.2341969944619,45.21978995912912,45.20541176787567,45.19144858473739,45.17709964478937,45.16258428605608,45.14821025611236,45.13378248858771,45.1192327678612,45.11923881293394,45.10329350658855,45.09969076582504,45.07446929686818,45.05996329392921,45.04554913525807,45.03107223628498,45.03131776878113,45.03139269424145,45.0316062789707,45.03160989469099,45.03163958683047,45.03163581724349,45.03166243402408,45.03165375286198,45.03161160601164,45.03157563943799,45.03156479026857,45.03139126038609,45.03127589957592,45.03129350010094,45.03127800306577,45.03123147556237,45.03127869402213,45.03117130529841,45.03123959704359,45.03119419007974,45.03112622568786,45.03105923351456,45.03106806105411,45.03105364173994,45.03102906995763,45.03099904236529,45.03096292091609,45.03095659457883,45.03094183468071,45.03096053943992,45.0309469817547,45.03105934252193,45.03122524549589,45.03143811269953,45.03185633380659,45.03229757696303,45.03341246871904,45.0337880054732,45.03377837896498,45.03369782341585,45.03365247447427,45.03357224947872,45.0336321490985,45.0480145672135,45.06239485969758,45.07681693125893,45.0912425311064,45.1056393346996,45.12055939249363,45.12055143618198,45.12052014066544,45.12047556000832,45.12042800828357,45.1203491716574,45.12032359121783,45.12029071415126,45.12028328678322,45.12029429341619,45.12021407751396,45.12023973114574,45.12017298966749,45.12018135612165,45.13479534062477,45.14955760884003,45.16406766417604,45.1787698341326,45.19360830511719,45.20817293825806,45.22264446949977,45.23743419280525,45.25133710220557,45.28035327145157,45.29485062319151,45.30932509019234,45.33827945862035,45.35316644854709,45.36726686789513,45.38169400350206,45.38202373527939,45.38259723978511,45.38250464717112,45.382336502892,45.38226020765916,45.38206299192527,45.38191153684395,45.38175513991126,45.38163463868774,45.38159294655674,45.38148155926036,45.38147100225478,45.38147377542092,45.3813844301595,45.38114980023061,45.38074380382825,45.38073049004502,45.38066176188143,45.38050697617099,45.38019476903959,45.37949606862003,45.37888729404369,45.37835535299079,45.37767363104427,45.37697351332347,45.37685216356346,45.37680208144175,45.37718371550034,45.37723257477508,45.37722842216581,45.37729737635102,45.3774121270337,45.37761412399497,45.37741554208793,45.37771039837801,45.37771007233432,45.37787615959665,45.37786710530166,45.37792247624429,45.37806723354563,45.37783125121208,45.37781748951036,45.37784048822736,45.37782412813701,45.37785799893381,45.37787389130684,45.37784507996879,45.37798733611474,45.37815697859754,45.37803866520884,45.37806390958959,45.37797660956593,45.3780293888251,45.37822169833131,45.37836239933264,45.37835507841424,45.37879191213858,45.37898217663317,45.3790349554577,45.37919643443099,45.37933003216626,45.37932658101312]}]],[[{"lng":[-88.34782057855422,-88.35295853739795,-88.3664301497729,-88.38710408700638,-88.40739316345392,-88.42809147896322,-88.4484651482167,-88.46884976214331,-88.48919502165346,-88.50963736786993,-88.53016847467839,-88.55406437688565,-88.57458629700534,-88.59533757193115,-88.61558500132179,-88.6565490637217,-88.67787222298377,-88.67818133264107,-88.67839055363528,-88.67886822222466,-88.67918729144886,-88.67908278457013,-88.67937597445348,-88.67941016664949,-88.6794182271115,-88.6796688931089,-88.67986491998663,-88.68009267922298,-88.67404162818094,-88.66892005116731,-88.66379927735325,-88.65867771504024,-88.65357848895543,-88.64847847205475,-88.64337846549766,-88.63827846688243,-88.63838275979415,-88.6384762976774,-88.63857061565018,-88.63866412558444,-88.63875464683319,-88.63884516456265,-88.63893566626405,-88.63902614844689,-88.63916840672896,-88.63931143533445,-88.63945443854207,-88.63959663292816,-88.63969650686491,-88.63976307972578,-88.63980454740555,-88.63989700245176,-88.63999681480826,-88.64006432732057,-88.64007787322053,-88.64009680658918,-88.64013101921269,-88.6401976939531,-88.64026516830558,-88.6405611304981,-88.64085626043349,-88.64115214189451,-88.64144799420789,-88.63125601484896,-88.62078423295965,-88.61072087092116,-88.60033190638866,-88.58553186681806,-88.56520339042629,-88.55942919643691,-88.5449297766948,-88.53875267189564,-88.52447112937612,-88.51833290562109,-88.50403530476402,-88.50008473145353,-88.49767558533703,-88.48362285171676,-88.48403789615827,-88.48439186426211,-88.48491361756886,-88.48535912493409,-88.48556542490965,-88.48632053986464,-88.48666312464519,-88.48747509245679,-88.48783853150647,-88.48814709636429,-88.48831003456795,-88.48854523866301,-88.48873953602255,-88.48885528356227,-88.48888800739138,-88.48905903592609,-88.48911278551212,-88.47191072232364,-88.45140035981591,-88.43093620808632,-88.41053408894534,-88.39032613006314,-88.36990571564988,-88.3502366264126,-88.32983867264387,-88.30932602110443,-88.2889073428731,-88.26870509975592,-88.2482551767299,-88.24882130784084,-88.25089696168197,-88.25166781023017,-88.25233057291413,-88.25045648832156,-88.24984985070004,-88.24924466926103,-88.24864011278268,-88.24823774419031,-88.24783620415376,-88.24743391533872,-88.2470324777814,-88.24660580573141,-88.24618235008617,-88.24575736470662,-88.24533321795629,-88.24488555548866,-88.2444379164177,-88.24418203892559,-88.24392693430083,-88.24362959656122,-88.2433322838806,-88.24303421187565,-88.24273695521708,-88.24272663562162,-88.24271559104652,-88.2424507019302,-88.23895691753269,-88.23839632283921,-88.23764120422362,-88.23143892379528,-88.231449138546,-88.23148784730199,-88.23162613543323,-88.22714442803382,-88.22196782878802,-88.21679123424018,-88.2116145898009,-88.20666461564929,-88.20165700717946,-88.19664936810054,-88.19164091787751,-88.18658531239718,-88.18152888261166,-88.17647320889999,-88.17141749955283,-88.16637269681807,-88.1613286379902,-88.15622921624991,-88.15123957678196,-88.14625734740018,-88.14127427762811,-88.13629116051993,-88.13130720323858,-88.09072630223106,-88.0703551475543,-88.05000715008738,-88.02965836952301,-87.99407375283498,-87.99408735180127,-87.99411824294968,-87.99402879697425,-87.99400169005303,-87.99380608158719,-87.99379297051898,-87.99382464853333,-87.99381151116428,-87.9936745682009,-87.99309315168891,-87.99290272895492,-87.992781493481,-87.9927744611558,-87.99247070652673,-87.99221945033725,-87.99215102617922,-87.9920446402928,-87.99175276260988,-87.99166051020846,-87.99156828894621,-87.99147650926064,-87.99143092779077,-87.99144764871011,-87.99153299826369,-87.99162616923837,-87.99165014866473,-87.99144428016797,-87.99145396849057,-87.99137777486837,-87.99128514066241,-87.9911315171926,-87.99108599080809,-87.99096373373571,-87.9909184014236,-87.99087182962461,-87.99084018293011,-87.9908226087889,-87.99084358589226,-87.99081190117701,-87.9907583951816,-87.99049535260373,-87.9904100722851,-87.99037136475255,-87.99033177239959,-87.99032109996284,-87.9903560618027,-87.99045250558211,-87.99051144649562,-87.99061486189241,-87.99061113295899,-87.99068470700456,-87.99066778931063,-87.99067642964984,-87.9907493998016,-87.9881017155586,-87.9880737937399,-87.9881509863836,-87.98830514385696,-87.98836646726076,-87.98839041294204,-87.98832150864654,-87.98826043226454,-87.98809936880299,-87.98805387040652,-87.98807772772155,-87.98803383539691,-87.98803581501191,-87.98809123295061,-87.98825553993491,-87.98821820550725,-87.98813507279394,-87.9880882919786,-87.98807046753564,-87.98801696452476,-87.98793196473432,-87.98785530407822,-87.98777892043877,-87.98772726244565,-87.98767371988549,-87.98748202723114,-87.98730795642277,-87.98729393972985,-87.98746637748957,-87.98755171506274,-87.98772230000426,-87.98790268668309,-87.98827553267544,-87.9883695719454,-87.98846378060794,-87.98855789031211,-87.98871359406125,-87.98881728832387,-87.98907508391102,-87.98913847047214,-87.98913944427514,-87.98904986634078,-87.98905872058981,-87.98908248177646,-87.98934630817224,-87.98938505654723,-87.98936492391523,-87.98941331682801,-87.98947948039219,-87.98950279508935,-87.98964213250018,-87.98968106518964,-87.98963477730466,-87.9894358402306,-87.9893895488305,-87.98940598728758,-87.98953787737547,-87.98949906345885,-87.98937622932405,-87.98909825811057,-87.98905250202048,-87.98899930364995,-87.98900665114823,-87.98908442858099,-87.98951607141129,-87.98966301015395,-87.989716304829,-87.98973232224779,-87.98965687956861,-87.98948005943214,-87.98942667599077,-87.98938104952961,-87.98934425879618,-87.98938469901945,-87.98955537265101,-87.98974364406638,-87.98979034417502,-87.98985552969771,-87.98986799180231,-87.98983115934006,-87.98964937266166,-87.98951236578964,-87.98946755532845,-87.98947639006228,-87.9896233080423,-87.9896393357661,-87.98960942005831,-87.98954832695833,-87.9893632267581,-87.98922718976149,-87.9891203467855,-87.9890727300718,-87.9891094985752,-87.98909362571069,-87.98902418302278,-87.98893191864909,-87.98863318130051,-87.98832823352511,-87.98816921771535,-87.98813939762694,-87.98814112741358,-87.98819677942228,-87.98837424220436,-87.98849733933359,-87.98879648010758,-87.98888931792521,-87.98932402837086,-87.98947725960576,-87.98958558177938,-87.98967894803629,-87.98969504527319,-87.98963442776289,-87.98949615111606,-87.98925911145912,-87.98918387422684,-87.9891689457376,-87.98918443795432,-87.98923875257226,-87.98939263717912,-87.98953218173374,-87.98962623783461,-87.98962715307322,-87.98953671853644,-87.98930748549724,-87.98920120782617,-87.98915638926945,-87.98909671474792,-87.98911319031781,-87.98910033554189,-87.9891539841297,-87.98912796300833,-87.98900590130218,-87.9888609318261,-87.98860058733862,-87.98828631116736,-87.98829407674791,-87.98844194149535,-87.98844970894795,-87.98840400611667,-87.98828943033311,-87.98815717247004,-87.98800352157834,-87.98794180121392,-87.98782712558065,-87.98780511688177,-87.98783556805299,-87.98797555431352,-87.98818417015532,-87.98823080399143,-87.98819390943336,-87.98805691324488,-87.98804286825323,-87.98807548481487,-87.98804559749472,-87.98781627016874,-87.98768093120682,-87.98764403214297,-87.98746840460905,-87.98733125080221,-87.98708556467352,-87.98700083157047,-87.98688639975514,-87.98648907031635,-87.98638920907851,-87.98635312245125,-87.98637065801941,-87.98635775697663,-87.98642772212555,-87.98662946262793,-87.98675348240441,-87.98675460598618,-87.98668605573027,-87.98659359265305,-87.98647051210895,-87.98613097071723,-87.98600849216308,-87.98586341328941,-87.98586346873884,-87.98592589197597,-87.98592591844549,-87.98587249589202,-87.98565562493556,-87.9855329244332,-87.98548738161675,-87.98541115819681,-87.98542001740948,-87.98538983532272,-87.98530610833555,-87.98504531883943,-87.98494719461803,-87.98478648228857,-87.98460457096387,-87.98451407817136,-87.98447105298574,-87.98455817098522,-87.98472966879022,-87.98509381108492,-87.98527896752475,-87.98543426696247,-87.98586575283426,-87.9860890458561,-87.98608144648101,-87.98606961409854,-87.9859332701424,-87.98575940066554,-87.98566097768419,-87.98558631767526,-87.98547195643427,-87.98517572390195,-87.98502302150968,-87.98490174025801,-87.98494922894737,-87.98494221781786,-87.98471944506537,-87.98468169088531,-87.98470626131544,-87.98481541552076,-87.98501066432513,-87.98534489123946,-87.98554811962934,-87.98557901956364,-87.98561060147725,-87.98584833076715,-87.9860086068407,-87.986043079349,-87.98602908353284,-87.98607747997019,-87.98607941753323,-87.98593008711035,-87.98595406730354,-87.98598410594612,-87.98594360431338,-87.98584436778741,-87.98578508938832,-87.98569389204076,-87.98561752304691,-87.98557819440329,-87.98553511079963,-87.98538504491616,-87.98535775650865,-87.9852553406035,-87.98526062246711,-87.98517116506069,-87.98503583457608,-87.98483811147941,-87.98476258074905,-87.98442940540487,-87.98429422277155,-87.98423630646521,-87.98423814886449,-87.98427149749843,-87.98444491077701,-87.9844178882409,-87.98446632077508,-87.98456049608419,-87.98456230953184,-87.98453252209943,-87.98448777013796,-87.98441378105665,-87.98436996455972,-87.98440170696941,-87.98453452863509,-87.98455828590372,-87.98454530500378,-87.98457543218666,-87.98451688510721,-87.98448787964455,-87.98430712361136,-87.9842144059795,-87.98413020483588,-87.98409177981286,-87.98412430660944,-87.98407862625108,-87.98407949685502,-87.98417551263492,-87.98417656391067,-87.98403067985332,-87.98395706286946,-87.98395185836323,-87.98390002072836,-87.98387113430051,-87.98376655765237,-87.98377014456416,-87.98371047948595,-87.98369734872313,-87.98330270841771,-87.98280003257166,-87.98235774202868,-87.98216569945724,-87.98191484767513,-87.98142617993003,-87.98124260180086,-87.98091261355414,-87.98079057322754,-87.98069911786799,-87.98062271854513,-87.98040222527464,-87.98009664809342,-87.97994337739732,-87.97960494990586,-87.97926637746512,-87.97895965074908,-87.97865318681187,-87.97826978172816,-87.97761271468519,-87.97692429436802,-87.97612858376188,-87.9756402420424,-87.97542751970379,-87.97515608633367,-87.97468358939834,-87.97442506721747,-87.97441071784985,-87.97421141604119,-87.97404510849705,-87.97401522855773,-87.97401701248302,-87.97408132539381,-87.97407002969665,-87.97398031080418,-87.97387391366834,-87.97369274703992,-87.97355735913347,-87.97354595882403,-87.97362608139613,-87.97358920075825,-87.97353019355755,-87.97346122505863,-87.97311772959723,-87.97282750472139,-87.97265249091807,-87.97257687225883,-87.97254697605221,-87.97256544984988,-87.97272121273068,-87.97279268786524,-87.97272149801414,-87.97277593759699,-87.97245659013625,-87.97194076781689,-87.97128099874737,-87.97097213678902,-87.9709563698547,-87.9709369632596,-87.9704380750379,-87.9701279855059,-87.97006650819513,-87.96931977125126,-87.9686761268739,-87.96811815556066,-87.96691966094829,-87.9669099121483,-87.96688930933394,-87.96662934029995,-87.96649384787128,-87.96588900910777,-87.96432774478717,-87.96338129699923,-87.96319196546375,-87.96303668375057,-87.96293491111493,-87.96303135986467,-87.96310949474376,-87.96314991730021,-87.9630970798792,-87.96290616791529,-87.9627335173531,-87.96264843874478,-87.96257797848106,-87.96255465621552,-87.96212265754187,-87.96178302211196,-87.96139648286545,-87.96148133197877,-87.96118086811555,-87.96039680558393,-87.96008657273981,-87.95983135536964,-87.95923893260587,-87.95874599346497,-87.95799904734052,-87.95759661311483,-87.95737384681092,-87.95685236644485,-87.95667363664001,-87.95688065039813,-87.95734388298024,-87.95771132659512,-87.9581311002437,-87.95831918133365,-87.9576871231116,-87.95722484793693,-87.95679404421931,-87.95667436076052,-87.95660789057825,-87.95646231234278,-87.95631259817065,-87.95630109105598,-87.95630946992011,-87.9562857383093,-87.95635700175507,-87.95639056649361,-87.95628693103443,-87.95579499069342,-87.95520868347167,-87.95417560301964,-87.9532743964418,-87.95272677147304,-87.95128890684309,-87.94946687725697,-87.94823042947802,-87.94715423848019,-87.94651522621812,-87.94586961852029,-87.94586101953583,-87.9453186134829,-87.94448299754931,-87.9440388723221,-87.94316047394652,-87.94174457065495,-87.94124781404244,-87.93973360752715,-87.93895718249121,-87.93793401262647,-87.93776536860283,-87.93681826545932,-87.93665128949006,-87.93591513294913,-87.93605001582793,-87.93617996378582,-87.93597347861892,-87.93522619419417,-87.93511598198168,-87.93563949469996,-87.93592038506988,-87.93635760426588,-87.93675240492664,-87.93705058682657,-87.93753303429162,-87.93816103119289,-87.93864102356576,-87.93893178767698,-87.93923736352926,-87.93963506849671,-87.94026677767941,-87.94070478391917,-87.94094416460818,-87.94093307581522,-87.94102354248864,-87.94095613137385,-87.94059424655158,-87.94017927299546,-87.93947474918417,-87.93907331161935,-87.93803026443845,-87.93724263375033,-87.93620449147427,-87.93585567405084,-87.93474830217394,-87.93446243452665,-87.9355171747228,-87.93532549030589,-87.93547767502464,-87.93592110642801,-87.93617239971607,-87.93623041828931,-87.93594580475738,-87.93576647497895,-87.9353272110352,-87.93506682101223,-87.93442766679532,-87.93425816807185,-87.93388956656256,-87.93366864379632,-87.93348799878157,-87.93297503646031,-87.9324616014998,-87.9319029290295,-87.93118752053795,-87.93072839103324,-87.93053173189533,-87.93013515079653,-87.9301733957118,-87.92982451332259,-87.92912887316152,-87.92881821180725,-87.92845815970784,-87.92853913382545,-87.92895074263811,-87.92907644855306,-87.92924033832143,-87.9295742566444,-87.93439990458249,-87.93473594462489,-87.93264018836732,-87.93269216868651,-87.93285028731589,-87.93291591872175,-87.9331509505673,-87.93331990478985,-87.93335060795644,-87.93345814518653,-87.93384196454582,-87.93407139019688,-87.93398067820884,-87.9338558348703,-87.93336455155971,-87.93266550520372,-87.93254128813621,-87.93224717350088,-87.9320595135636,-87.93176257437813,-87.93109605026858,-87.9305023069944,-87.92974753342976,-87.92936201775767,-87.92937448450228,-87.92929758068979,-87.92918708057142,-87.92909935803564,-87.92884310736235,-87.92872605889885,-87.92846984431638,-87.92833204551566,-87.9281055155096,-87.92797674820306,-87.92746354945494,-87.92749512090435,-87.92747899402528,-87.92724555044293,-87.92667308196893,-87.92625657355799,-87.92608942486363,-87.92566668743095,-87.92514853779853,-87.92462742312298,-87.92405904152562,-87.92349515319603,-87.92288230917583,-87.92212462182221,-87.92116397900462,-87.92074609295906,-87.920439011177,-87.92011573271076,-87.91974348838809,-87.91928782725674,-87.91921224520921,-87.9190325229538,-87.91881878738606,-87.91870274746314,-87.91863904423211,-87.91846932420115,-87.91836965720624,-87.91839831038295,-87.91852740789784,-87.91856570313948,-87.91860302095454,-87.91864551224498,-87.91865490862723,-87.91866274141115,-87.91859787484032,-87.91851476068034,-87.91844800061591,-87.91843209916283,-87.91836016294937,-87.91819548879707,-87.91822239001893,-87.91831858140198,-87.91834353973461,-87.91836794603029,-87.91838249599182,-87.91797397799306,-87.91754973379476,-87.91721387344911,-87.91653683520109,-87.91583407635103,-87.91488975943793,-87.91428160633413,-87.91386475964956,-87.91332054967401,-87.91265588807293,-87.91238511759283,-87.91211309092959,-87.91184981496131,-87.91139501812073,-87.91134873158026,-87.91080698650619,-87.91050097578662,-87.91068775762751,-87.91028585518789,-87.90964443956838,-87.90921360164351,-87.90914708664091,-87.90946825048515,-87.90924685206227,-87.90913717226627,-87.90838524188158,-87.90807795533767,-87.90801870830764,-87.90767225049943,-87.9068775923179,-87.90633076065826,-87.90588359012231,-87.90592378162678,-87.90581202262965,-87.90564455573991,-87.90557628658229,-87.90585348953974,-87.90623663881456,-87.90651887183475,-87.90650129805209,-87.90628108864141,-87.90583012460591,-87.90526440281913,-87.90475644296727,-87.9045399725894,-87.90445207385518,-87.90464193623583,-87.90529236894547,-87.91081338458834,-87.9108693032571,-87.91065132488251,-87.90555942753657,-87.90539889560819,-87.90592704493825,-87.9059412038888,-87.90564640060863,-87.90556079265154,-87.90574506698067,-87.90613106506784,-87.90612038617228,-87.90620846806613,-87.90622414663646,-87.90614310920577,-87.90597044448708,-87.90567912306152,-87.90553637476455,-87.90544017152438,-87.90520548898125,-87.90502824474432,-87.90483430060029,-87.90467630016596,-87.90464443866669,-87.90472954023167,-87.90469359733002,-87.90446705534552,-87.90402859672561,-87.90381824255125,-87.90365922688287,-87.9036890563381,-87.90364141212144,-87.90359122307859,-87.90362308728604,-87.90395143234767,-87.90416409858844,-87.90429879384803,-87.90426988153358,-87.90419943538051,-87.90415230197651,-87.9040504930917,-87.90383149272543,-87.90343648515805,-87.90294249582992,-87.90266497174431,-87.90259156866566,-87.90252813315466,-87.90228614922474,-87.90200161757103,-87.90163378097375,-87.90147374167287,-87.90154407972379,-87.90175062578335,-87.90187687884141,-87.9018540759689,-87.90164117382443,-87.90146903559388,-87.90109610558518,-87.90090369459382,-87.90059482956744,-87.90045839184351,-87.90056998714574,-87.90091580081663,-87.90093300228504,-87.9007319372835,-87.90013219394287,-87.89985722670062,-87.90022023444837,-87.90081794106186,-87.90152956621097,-87.90193742713576,-87.90232530880266,-87.90256536262839,-87.90230809739496,-87.90205484297491,-87.90170999668035,-87.90146875590368,-87.90127074819782,-87.90133506093652,-87.90165872539782,-87.90176789281598,-87.90169146267678,-87.90195596919864,-87.90215835235291,-87.90217456203438,-87.90221427412538,-87.90216539167572,-87.90200764289027,-87.90195741355524,-87.90186342444036,-87.90169944207136,-87.90159921924874,-87.90158193926045,-87.90148686263313,-87.90135339581401,-87.9012234656295,-87.90123859334568,-87.90122915277728,-87.90116055604597,-87.90103870647522,-87.90086606479183,-87.90019577424735,-87.8998791176589,-87.89938359977855,-87.89804024651973,-87.89780627560852,-87.897592821515,-87.89775629586508,-87.89793569612299,-87.89800809174562,-87.89790758711952,-87.89743180078247,-87.89707271221066,-87.89689221582385,-87.89634685274504,-87.89633393110566,-87.89625946392199,-87.89586758363522,-87.89570548523673,-87.89565114147345,-87.89562012549061,-87.89565100273842,-87.89578865157279,-87.89602564147727,-87.89598844035768,-87.89609786298496,-87.89620783998345,-87.89669012838554,-87.89677875616904,-87.89690170397968,-87.8967620203131,-87.89663962194703,-87.89646670986113,-87.89624541820208,-87.89595496817761,-87.89563344075009,-87.89538668510295,-87.89541780087973,-87.89518567714468,-87.89447853406338,-87.89433339629508,-87.8940476981229,-87.89389445343245,-87.8936634900907,-87.89343249932841,-87.8933407256765,-87.89316353965057,-87.89290246251618,-87.89261049774008,-87.89249573050169,-87.89223540564433,-87.89175914379739,-87.89166580470463,-87.89083512444654,-87.88964254339805,-87.88874924151493,-87.8879808240046,-87.88717920116976,-87.88674816224544,-87.8862251465294,-87.88610906626043,-87.8854854242612,-87.88514692500205,-87.8849001747565,-87.88462259618269,-87.88437664878225,-87.88372935530788,-87.88314380195848,-87.88295911326136,-87.88285092600363,-87.88270549626549,-87.88253694425839,-87.88230591044719,-87.88215184703628,-87.88196676703265,-87.88169709497483,-87.88148138284727,-87.88126664327228,-87.8811509671466,-87.88055134256969,-87.88040480405238,-87.88002749594298,-87.87981170774046,-87.8794200323986,-87.87919634096394,-87.87898949343776,-87.87874254333755,-87.87861959329732,-87.87841053175708,-87.87822525341686,-87.87811696840862,-87.87800907239549,-87.8778782057683,-87.87775441935339,-87.87765511136256,-87.87767796283094,-87.87795678112323,-87.8780965389933,-87.87807401142807,-87.87804390163613,-87.87799799628073,-87.87778912628943,-87.87760522329819,-87.87680441502086,-87.87609492786515,-87.87510427529045,-87.8747643309616,-87.87439497621932,-87.87376211321666,-87.8734234633192,-87.8731466962801,-87.87280708750035,-87.87252992615173,-87.87170550442382,-87.8712195975411,-87.87044901666725,-87.86992479416558,-87.86937017222593,-87.86899228599701,-87.8687688122665,-87.8686460731607,-87.86855376028431,-87.86844560248103,-87.8684072179325,-87.8684000584649,-87.86859003704728,-87.86859968567944,-87.8685458339102,-87.86836841010324,-87.8679375482189,-87.86713561470846,-87.86673472943087,-87.86621061350819,-87.8660726211326,-87.86601704182114,-87.86604160987326,-87.86594188077252,-87.86578744972488,-87.86555708686294,-87.8654414852677,-87.86533367585552,-87.865318421635,-87.86533336671221,-87.86538781019155,-87.86561110306245,-87.86561123958772,-87.86566100152088,-87.86563242024383,-87.86502527902826,-87.86477881467977,-87.86440895701614,-87.86432506332888,-87.86433229149752,-87.86437891028669,-87.86450165634949,-87.86477960830793,-87.86489444181652,-87.86494917260305,-87.86496398800895,-87.86484111809796,-87.8645408452298,-87.86419471278008,-87.86404022184564,-87.86390141769976,-87.86339323331779,-87.86315483094185,-87.86296148809915,-87.86283805504077,-87.8627146985832,-87.86253041224688,-87.86246076434082,-87.86245358002019,-87.86262269193104,-87.86257650944745,-87.86221413354652,-87.86196036915598,-87.86169087177161,-87.86158967841564,-87.86140550743299,-87.86112786754096,-87.86105112719355,-87.86098804171247,-87.8610053217911,-87.86097384332894,-87.86088959406638,-87.86080459741322,-87.86071913169852,-87.86066602754113,-87.86068155200762,-87.86061886238389,-87.86050417765932,-87.86010347811502,-87.85991032370985,-87.85935578896304,-87.85910127647901,-87.85872421434534,-87.85849263985891,-87.85797629369837,-87.85770707756872,-87.8575222484456,-87.85736852464649,-87.85723751038141,-87.85716780824154,-87.8571526772314,-87.85730656016565,-87.85730638874067,-87.85726029307712,-87.857128719682,-87.85689033685813,-87.85673617916528,-87.85655121487022,-87.85636649492525,-87.85624325216457,-87.85608074633107,-87.85594286481549,-87.85558769850441,-87.85533399435251,-87.85504910389163,-87.85492934341841,-87.85488040322031,-87.85477880094651,-87.85467092262741,-87.85453188092325,-87.85437796495668,-87.85433188103147,-87.85434737486526,-87.85422440043345,-87.85424793313841,-87.85446288107643,-87.85449444079708,-87.85444032296961,-87.85427098098903,-87.85424002339872,-87.85426983170144,-87.85436382431463,-87.85434818645277,-87.85424011736947,-87.85414766213587,-87.85403968853851,-87.85386283350985,-87.85380044858985,-87.85365395678956,-87.85348417103529,-87.85343052839991,-87.85339247771614,-87.85342325491429,-87.85357012393786,-87.85360523379366,-87.85361534023191,-87.85358747825481,-87.85354666803732,-87.8532889999359,-87.85325551557396,-87.85320514317586,-87.85318314739219,-87.85325379232424,-87.85319185221636,-87.85308402936109,-87.85269891995317,-87.85248310274363,-87.85212837922123,-87.85163444440478,-87.85138888696018,-87.85099549050955,-87.85071744224362,-87.85025451169169,-87.84990752988398,-87.84967694975829,-87.84952310078394,-87.84938420554936,-87.84867470182053,-87.84841271306924,-87.84822819019384,-87.84804214504258,-87.84776492465772,-87.84748762248731,-87.84734071891454,-87.84727176184226,-87.8472710511671,-87.84734701088395,-87.84724096588897,-87.84719449711554,-87.84682394484516,-87.84657708225423,-87.84645447505608,-87.84627653194887,-87.84591468709557,-87.84579093552658,-87.84566773868899,-87.84532828075089,-87.84514307643208,-87.84503615261059,-87.8449929560647,-87.84496447620265,-87.84498971497511,-87.84487800447157,-87.84448049393569,-87.84415964442304,-87.84383306383434,-87.84334754400933,-87.84328299787896,-87.84325277988182,-87.84332222946743,-87.84350793242932,-87.84366116085361,-87.84387693521926,-87.84399271866413,-87.84408584668736,-87.84439461292183,-87.84445602563233,-87.84440944069701,-87.84415441122582,-87.84401550412204,-87.84392061086881,-87.84137303776991,-87.83833348314172,-87.83841315415492,-87.83866047373753,-87.83868275332243,-87.83866204716259,-87.83859121517359,-87.83851376239528,-87.83832870539716,-87.83817464579418,-87.83792791844542,-87.83761916918554,-87.83744930074405,-87.83744905596821,-87.83738848145751,-87.83723692450847,-87.837171210287,-87.83717174704664,-87.83714156517262,-87.83714192796704,-87.83728163794314,-87.8372962779797,-87.83723508968377,-87.83691102242513,-87.83668041764624,-87.83632596613278,-87.83629468641334,-87.8363568821669,-87.83647209245126,-87.83653474429445,-87.83671971421515,-87.83681212799854,-87.83693546408767,-87.83719034366283,-87.83761380755951,-87.83770643288152,-87.83783005149147,-87.83793059515041,-87.83793024869141,-87.83796176694112,-87.83818533943337,-87.83839399052759,-87.83843976503714,-87.83844755828197,-87.83842445172094,-87.83833240442682,-87.83800890609133,-87.83786983383712,-87.83775428056785,-87.83760081153225,-87.83747650109635,-87.83735302521573,-87.83695172005461,-87.83655156713664,-87.83642791253895,-87.83633515623497,-87.83623551020449,-87.83594936055759,-87.83579470822701,-87.83557825665464,-87.83536290953734,-87.83493099386251,-87.83431351482892,-87.83388227132838,-87.83357364375743,-87.8332032166993,-87.83302647574884,-87.83290250820136,-87.83280989423785,-87.8327804400024,-87.83277997139371,-87.83281066959293,-87.83298040381082,-87.83313445351693,-87.83330416361446,-87.8335209749068,-87.83353646098692,-87.83341214879857,-87.83326576111732,-87.83312806744397,-87.83279596524638,-87.83267309802828,-87.83258047841744,-87.8325801677781,-87.83260345933552,-87.83271095273415,-87.83298900064831,-87.83291383096599,-87.83278949932951,-87.83257303124944,-87.83238079119656,-87.83219518826391,-87.83214908656666,-87.83215762201661,-87.83228746494666,-87.83182480972391,-87.83174106127528,-87.83146302568707,-87.83118605883573,-87.83093032901834,-87.83079158645533,-87.83057603004721,-87.83049624596011,-87.83046870778912,-87.8303607922284,-87.83026784699626,-87.82997503496699,-87.8299288505941,-87.8298983208355,-87.82986714386034,-87.82976669982321,-87.82952065161066,-87.82924979396566,-87.8291730536119,-87.82912772334942,-87.82907246061428,-87.82895016533766,-87.8288872628797,-87.82874076840459,-87.82861747603017,-87.82857129892361,-87.82831255252404,-87.82828586922854,-87.82810867296314,-87.82801571655799,-87.82804722421281,-87.82816958910431,-87.82813987534698,-87.82841725903903,-87.82847964512038,-87.82847947299449,-87.82843335159127,-87.82832521221471,-87.82787805874588,-87.82781596868932,-87.82781629375579,-87.82792498521569,-87.82800230643326,-87.82835688332278,-87.82843481578986,-87.82860432805091,-87.82860469622469,-87.8284654670116,-87.82836504184512,-87.82820348803779,-87.82808068254324,-87.82807971469613,-87.8281656007413,-87.82825773833164,-87.82833916638283,-87.82884381164985,-87.82928135949535,-87.82921497346184,-87.82887582926342,-87.82853579485551,-87.8275484306192,-87.82739430569664,-87.8273837531418,-87.82734794966879,-87.8270389072854,-87.82679213293568,-87.82665374029571,-87.82649975631639,-87.82645301868214,-87.82641435884626,-87.82638331146748,-87.82620656295298,-87.82578195085803,-87.82568956302138,-87.82529639553958,-87.82464843137005,-87.82427739917046,-87.82347528630166,-87.82270431691495,-87.82245692484538,-87.82216316468701,-87.82194685276725,-87.82176233316108,-87.82166971989352,-87.82163967685008,-87.8214235270414,-87.82131442022667,-87.82118710304313,-87.82118420795686,-87.82125292354408,-87.8213771351285,-87.82150062068519,-87.8217466847704,-87.82208726078342,-87.82406193595097,-87.82458616253498,-87.82487170284833,-87.82521888823972,-87.82564337881118,-87.8257049543443,-87.82578205697415,-87.82586699542814,-87.82620729647205,-87.82832001664235,-87.82844353321414,-87.8285671207546,-87.82862866041495,-87.82869043455341,-87.82915279962018,-87.8293303971527,-87.82941533734235,-87.82967769773686,-87.83016361403371,-87.83043295212518,-87.8310973101691,-87.831267743872,-87.83141397031174,-87.83161461873074,-87.8316992084258,-87.83193847303379,-87.83195496044451,-87.83189232869255,-87.83189246444938,-87.83193176706287,-87.83202376499224,-87.8322397568424,-87.83260943345067,-87.83274131822041,-87.83294210698246,-87.83306611837681,-87.83321708080466,-87.83366010412054,-87.83372963808431,-87.83356784380715,-87.83351353468895,-87.83352923531852,-87.83359139248074,-87.83367543844054,-87.83401600509173,-87.83406126039141,-87.83411493037606,-87.83427097933475,-87.83431652274673,-87.83433244096575,-87.83430126790356,-87.83437108416813,-87.83454067222486,-87.83475661608416,-87.83484907172945,-87.83540512934879,-87.83548219730605,-87.83580684720171,-87.83603041436913,-87.83637779752844,-87.83658649298697,-87.83669475616539,-87.83674028017987,-87.83681739659043,-87.83701862724352,-87.83722647319946,-87.83739645380395,-87.83794474111414,-87.83842376078167,-87.83879515775971,-87.83890266992589,-87.83938145359356,-87.83981388438102,-87.84001517470884,-87.84004637324645,-87.84008499102904,-87.84027984931417,-87.84033315186545,-87.84038724795192,-87.84035510068281,-87.84035478695445,-87.84040125589033,-87.84049398326759,-87.84071071531586,-87.84095799730572,-87.84119013069694,-87.84143688100174,-87.8415147119476,-87.84166912200709,-87.84180763909184,-87.84199324273942,-87.84216396036463,-87.84230291301149,-87.84241117552088,-87.84264208868764,-87.84270453494082,-87.84276642845018,-87.84304416091659,-87.84319928011861,-87.84322441591947,-87.84329237987768,-87.84337009847256,-87.84357064496764,-87.84369454516096,-87.84406568092278,-87.84409660016719,-87.8441127116142,-87.84417429623923,-87.84419001468687,-87.84432873728721,-87.8443064436124,-87.84423584847592,-87.84423657140732,-87.8443137559471,-87.84428334739017,-87.84436079291643,-87.84435991456222,-87.84429876754368,-87.84431354118604,-87.84436004710808,-87.84431452379312,-87.844345637381,-87.8442533665738,-87.84428462316963,-87.8442075096106,-87.84420814814528,-87.84423812311402,-87.84423873052687,-87.84440808086502,-87.84442370584473,-87.84425443790448,-87.8442231957245,-87.84402309307121,-87.84403934676428,-87.843946333262,-87.84377729519805,-87.84376164152044,-87.84368532355165,-87.84365491516951,-87.84343817003382,-87.843238755695,-87.84314567265996,-87.84309142361504,-87.84296032079338,-87.84288464920002,-87.84274489607402,-87.84249813033276,-87.84242106144146,-87.84212892526745,-87.84200497700472,-87.84200491769884,-87.84209768866715,-87.84211288780709,-87.84200492723923,-87.84200486706879,-87.84188175808183,-87.84177410064453,-87.84145725846395,-87.84130292915385,-87.84107131440926,-87.84090924563905,-87.84084813958421,-87.84066980212425,-87.84057064327945,-87.8404388956361,-87.84040023133461,-87.8401533468811,-87.8400791620865,-87.83998358720579,-87.83992140172792,-87.83986101122609,-87.83982987500467,-87.8397368175554,-87.83918212526007,-87.83874267677467,-87.83835573606342,-87.83806294571335,-87.83779259083343,-87.8376390256575,-87.83747599826458,-87.83713661078491,-87.83704411789833,-87.83692839805332,-87.83671968219427,-87.83624833760373,-87.83614107153176,-87.83602266727449,-87.83585587599872,-87.83566977782343,-87.83553119707774,-87.83546804699066,-87.83530114609033,-87.83510573641044,-87.83508443927887,-87.83435045188733,-87.83391817303583,-87.83353992453884,-87.83323110236091,-87.83310811959063,-87.83282936570987,-87.83264528718739,-87.83227488617042,-87.83212770030454,-87.83208168099802,-87.83201986306254,-87.83192707778379,-87.83194243393869,-87.83186592986104,-87.83188225652717,-87.83195867388963,-87.83195922701285,-87.83180516195789,-87.83177316476723,-87.83165862762723,-87.83146436235742,-87.83138390731847,-87.83127997779842,-87.83122841726801,-87.83119381586158,-87.83117263550805,-87.83110278577992,-87.8308862210145,-87.83078609463975,-87.83073962282255,-87.83067810300342,-87.83060029223064,-87.83053126846949,-87.83028386876845,-87.83006822581967,-87.82992931527505,-87.82981358853279,-87.82962067907245,-87.8295051436593,-87.82931908855758,-87.82926534903608,-87.82925774108467,-87.82939625546895,-87.82936617762728,-87.82910336245909,-87.82876362010398,-87.82864857661274,-87.82833967413603,-87.82798509373039,-87.82727447538207,-87.82702694805216,-87.82673425563134,-87.82663341594045,-87.82657760840559,-87.82650234076269,-87.82630207136428,-87.82616232649369,-87.82593874802602,-87.82585462766438,-87.82579913135299,-87.82579192263161,-87.82571493497916,-87.82535988516668,-87.82498931313816,-87.82381519964713,-87.82332888928954,-87.82312763574805,-87.82308194255988,-87.82303623762549,-87.82305110317004,-87.8231756617281,-87.82324440472009,-87.82360820804473,-87.8239628001901,-87.82404011294985,-87.82399371318387,-87.82392420484213,-87.82318310563947,-87.82302920195539,-87.82294393893558,-87.82289749011989,-87.82283523474226,-87.82289717222535,-87.82288165718396,-87.82275915234023,-87.82251206426922,-87.82248077943143,-87.82243466667218,-87.82221878639899,-87.8221877278109,-87.8222111494252,-87.8221568152083,-87.82208709229403,-87.82187117187105,-87.82171629189624,-87.82166951031274,-87.82160142105172,-87.82150829613983,-87.8214842976743,-87.82149258733567,-87.82135369827112,-87.82128457627284,-87.82120083670688,-87.82111431404829,-87.82091005967243,-87.82079786616353,-87.82085195555737,-87.82079780676129,-87.82058983127395,-87.81997908308333,-87.81967096478708,-87.81962410364093,-87.81959379227172,-87.81951603236696,-87.81941556861818,-87.81923025092706,-87.81913745693697,-87.8189137949625,-87.81878230227321,-87.8187438903385,-87.81869673023502,-87.81865069984013,-87.81864362122494,-87.8184754174188,-87.81823817605137,-87.8180869315341,-87.81774700102066,-87.8177364455447,-87.8175968268437,-87.81757752100485,-87.81740793279069,-87.81736926696369,-87.8173533022478,-87.81727691526186,-87.81726082995284,-87.81722267468342,-87.81713047432702,-87.81694460828085,-87.81638830504826,-87.81570905884088,-87.81555446614968,-87.81540776438611,-87.81524570735833,-87.8150907895574,-87.81502927496771,-87.81457351016772,-87.81441153244421,-87.81417212525292,-87.8139797463147,-87.81370067515343,-87.81364674864844,-87.8135231352025,-87.81339294279526,-87.81331462289369,-87.81327646043195,-87.81329135086912,-87.81334543446178,-87.81352572819624,-87.81352897166352,-87.81351411288065,-87.81348131080181,-87.81344100247935,-87.81339960459245,-87.81325453968469,-87.81313795656828,-87.81310726928329,-87.81291318349983,-87.81278915231043,-87.8126355203034,-87.81246542112071,-87.81232646058321,-87.81223359465667,-87.81192473885461,-87.8112144842831,-87.81047343706419,-87.81010248499176,-87.8092989612996,-87.80858827618155,-87.80815667179354,-87.80756939792798,-87.80719763791934,-87.80692805973119,-87.80651859013949,-87.80556066666135,-87.80525188200214,-87.80472677420013,-87.80420110108462,-87.8039066748763,-87.80327439175126,-87.80244052889849,-87.80200802728355,-87.80151371882961,-87.80037045767467,-87.79986988769394,-87.79976774642587,-87.79971398435842,-87.79965231969392,-87.79956721537293,-87.79941272358825,-87.79934278607314,-87.79929705211886,-87.79928181094449,-87.79918886013992,-87.79882604813751,-87.79874079508019,-87.79854856861978,-87.79833998440621,-87.79820085773167,-87.79806963009517,-87.79798432896575,-87.7978379485329,-87.79755958628616,-87.79740521438018,-87.79709690117387,-87.79678786740217,-87.79638539532516,-87.79623907487711,-87.79586821391506,-87.79568307628739,-87.7955972543981,-87.79552797515095,-87.79551056350533,-87.79522715139964,-87.79507289141347,-87.7949878452734,-87.79486365975053,-87.79476396717921,-87.79470121565552,-87.79454767285212,-87.79436187397081,-87.79365840724385,-87.79303258606737,-87.79241531823017,-87.7921911293368,-87.79205916610515,-87.79190510728046,-87.79162723171936,-87.79141106632486,-87.79133388913127,-87.79132617899964,-87.79142576844905,-87.79144981850993,-87.79134896776091,-87.7911408894484,-87.79094711778077,-87.79076216376654,-87.79051529690675,-87.79030583635647,-87.79014391631451,-87.79001997926426,-87.7898045842322,-87.78961921007628,-87.78947208865844,-87.78889299607087,-87.78839873515321,-87.78813565568886,-87.78776463572243,-87.7876100139554,-87.78727802907835,-87.78625071017278,-87.78610395539764,-87.78596558537525,-87.78574846362318,-87.78530853858912,-87.78519966856769,-87.78509241714029,-87.78495299235847,-87.78481426292487,-87.78462825087747,-87.78422690138289,-87.78397885669125,-87.78368595654419,-87.78354680576739,-87.78311437746459,-87.78280521417635,-87.78240381347781,-87.78228721320417,-87.78222581753897,-87.7818600499769,-87.78145443163353,-87.78148423474764,-87.78126857197176,-87.78122308987844,-87.78115292998127,-87.78114516337654,-87.78131472440322,-87.78129854614335,-87.781237140572,-87.78110583795711,-87.7809667193099,-87.78078090210656,-87.78068697485294,-87.7805420389198,-87.78025547448161,-87.77988511323191,-87.77935953925881,-87.77824756391063,-87.77691858889898,-87.77632178238022,-87.77618334016121,-87.77514492700351,-87.77492498117319,-87.77467932686046,-87.77376083017272,-87.77376451755113,-87.77354883403065,-87.77345765391932,-87.7732720578833,-87.77302505540626,-87.77212879189838,-87.77160345105793,-87.77132595117297,-87.77092371361127,-87.76891516885701,-87.768328117444,-87.76792681354003,-87.76687627287752,-87.76680933298671,-87.76615818340984,-87.76610340344493,-87.76576341041694,-87.76443545805634,-87.76384716849894,-87.7631054756677,-87.76298178080904,-87.76294783162132,-87.76269691059854,-87.76211139774273,-87.76152541346457,-87.76093855664993,-87.76074375574824,-87.76054892864578,-87.76035406146737,-87.76015917207205,-87.76524886975074,-87.7703385777931,-87.77542830167484,-87.78051803737085,-87.78561000897272,-87.79070198864882,-87.79579396363275,-87.80088516395874,-87.80578053705241,-87.81067510871117,-87.81556968861138,-87.82046504872838,-87.82555984567323,-87.83065545266552,-87.83575106416951,-87.84084670364257,-87.84601170171359,-87.85117748818401,-87.85634250026649,-87.8615075073415,-87.86660907774281,-87.87170986193436,-87.87681066013513,-87.88342411027512,-87.88331601368431,-87.88839981698882,-87.89348444230993,-87.89856827913196,-87.90365214181777,-87.90874763449101,-87.91384312857578,-87.91893863410478,-87.92403412941978,-87.92914276665992,-87.93425220583599,-87.93936085793337,-87.94447030827318,-87.94418173811562,-87.9438939282563,-87.94360532987238,-87.94331670800514,-87.94321963199909,-87.94312175186805,-87.94302385120153,-87.94296779446991,-87.94807597976481,-87.95318420479114,-87.95829245579259,-87.96340153093595,-87.96848181974805,-87.97363984526059,-87.97875902603725,-87.98387900550176,-87.98897991291891,-87.99408163774625,-87.9991833892861,-88.00400296336355,-88.02465108991184,-88.06585102465399,-88.08634376981601,-88.10688405754291,-88.12109685766238,-88.12088263451449,-88.12075643600019,-88.12073095089121,-88.1207003499769,-88.12012874577259,-88.11984865011901,-88.1192287698795,-88.11887208543837,-88.12747145693356,-88.14788649742013,-88.16822511095963,-88.18927903129715,-88.18890412871919,-88.18831403886202,-88.18802361777355,-88.18712396442224,-88.1867008429724,-88.18632351739033,-88.1863393608272,-88.18633069817314,-88.20715859972913,-88.22738255963779,-88.24812075834765,-88.2676520061717,-88.28812968104926,-88.30884847234343,-88.30919301413158,-88.30935030507268,-88.30902152140118,-88.3079630774143,-88.30792636826413,-88.30798133558983,-88.30754856626466,-88.30707343938099,-88.30644799972832,-88.30585361968463,-88.34663189910439,-88.34782057855422],"lat":[45.375177286944,45.37534151301712,45.37579322528775,45.37621927809747,45.37654676764865,45.37692016866082,45.37703225038632,45.37709639395221,45.37711137626918,45.3774194345413,45.37767725796034,45.37765170972202,45.37758694705235,45.37792918586024,45.37805844974437,45.37857164748506,45.37859282084559,45.36356920454644,45.34919305287204,45.32027002242842,45.30601346071587,45.29148669875546,45.27705845419678,45.26245221512577,45.2478713060191,45.23337713785535,45.21961787688536,45.20502998131075,45.20501195737853,45.20499628941675,45.20498040106455,45.2049642694779,45.20494620585288,45.20492790568517,45.20490937777806,45.20489061724088,45.2008879932708,45.19726835038472,45.19364871941217,45.19002879271373,45.18640010865277,45.18277085886417,45.17914160419691,45.17551234704061,45.17187920937899,45.16824607123693,45.16461293224763,45.16097950044995,45.1573191245791,45.15488984221323,45.1533814864471,45.14999780591013,45.14633769892522,45.14273121315604,45.14199467108449,45.14096480689201,45.13912528128134,45.13551934457468,45.13191285418958,45.12825563289658,45.12459811486765,45.12094060280096,45.1172825263975,45.11726817483903,45.11725826388033,45.11728133071895,45.11719910034773,45.11722544687668,45.11720427295857,45.11722985340815,45.11702603125736,45.11692954629917,45.11675629433076,45.11666426541596,45.11647193377903,45.11643706313174,45.11643689420603,45.11688208380239,45.1024206461735,45.08791476765075,45.07362879598846,45.05921097969227,45.04464368185995,45.03016661201077,45.01588487303309,44.98711336884868,44.97255062419814,44.95807517104879,44.94349450689696,44.92838673412104,44.91365224878512,44.89909842366782,44.88432459115737,44.86994443686082,44.85547520342808,44.85518604798157,44.85504133694698,44.85497543883238,44.85466929840137,44.85461262490723,44.85451839330485,44.85420800012139,44.85402843552533,44.85374562698051,44.85342143993741,44.85306171451946,44.85273768869999,44.83842061850546,44.79535315929687,44.78105455531217,44.76678829799779,44.7556423984112,44.75204795590296,44.748453285501,44.74485893065366,44.74123756771154,44.7376164911673,44.73399540450414,44.73037376394701,44.7267528544491,44.72313143025815,44.7195099801343,44.71588853681214,44.71226335176706,44.70863900937168,44.70501479192352,44.7013919945188,44.69775785093048,44.69412398751068,44.6904901083249,44.6868562442898,44.6832279052208,44.67962574692005,44.67962216744163,44.67960110944381,44.6795977228335,44.67959315211423,44.6795554362546,44.6769121359884,44.67589955040119,44.67228165854075,44.67232900977451,44.67238338512233,44.67243724181228,44.67249255267517,44.67266343227395,44.67283572039628,44.67300807027811,44.6731801875092,44.67342222811905,44.67366403337732,44.67390562719917,44.6741469945722,44.6744912771853,44.67483506662538,44.67518224494083,44.67552196837864,44.67585005447039,44.67617791534452,44.67650555471788,44.67683296507668,44.67714147461611,44.67731089897832,44.67735077086873,44.67743622686352,44.6776419475027,44.67766074160915,44.67774821270067,44.67805497004537,44.67838336370605,44.67890994230088,44.67910691775293,44.6791944057716,44.67936943745396,44.67956705347027,44.67989301873952,44.68006352460329,44.68021725007934,44.6802610130318,44.68074433034243,44.68098635321356,44.68111793288725,44.68118414007321,44.68116381709547,44.68118610452332,44.68123033997357,44.68130749562759,44.68141697423034,44.68152641836978,44.68163538739138,44.68170060492728,44.68178261266797,44.68192049711097,44.68207370409353,44.68215619785038,44.68218945536901,44.68218478340707,44.68220142021542,44.6823388062412,44.6823498250249,44.68232818847472,44.68226264716854,44.68210957853287,44.68189051236559,44.68180330973497,44.68175425814143,44.68162978573498,44.68156442352497,44.6815206992596,44.68141141095799,44.68112708599592,44.68075466603854,44.68036026352693,44.68020656916605,44.67972451174577,44.67933059731008,44.67893606854904,44.67869552019623,44.67812627028481,44.67764702718573,44.67768862474447,44.677816268811,44.67788711833833,44.67785326191757,44.67785856157296,44.67791862857663,44.67799561707768,44.67802858516072,44.6780569701467,44.67809555745614,44.67822650956345,44.67842378740953,44.67870824397241,44.67886141353581,44.67903563637639,44.67927129080131,44.67932637021767,44.67928813155875,44.67909679765747,44.67904774724357,44.67904287684782,44.6790705036298,44.67915833282874,44.67930652489466,44.67937253432171,44.67948815476517,44.67966429165108,44.67979570675831,44.68014505210118,44.68025402147823,44.68040641546069,44.68079950963608,44.68119177117715,44.68132284202787,44.68156306026322,44.68173773369659,44.68195568898174,44.68221802156302,44.68267634033002,44.68287297458355,44.68300437246315,44.68324557853492,44.68337711218081,44.68344251689349,44.68370401084613,44.68376939801635,44.68403207777953,44.68422901671499,44.68471012105526,44.68474287884376,44.68481876297844,44.68487880362038,44.6849173751842,44.68494566158284,44.68498422994553,44.68503347060082,44.68514213558129,44.68516986706857,44.68518683333848,44.68510597654593,44.68510629630267,44.68513939864881,44.68517779083665,44.68523205026127,44.68533924047978,44.6853550475462,44.68538749377868,44.68542603676329,44.68548659987654,44.68553665744432,44.68557510335105,44.6856629147743,44.68586004018432,44.68601322720329,44.68620922439383,44.6865805084652,44.68668963878427,44.68703962811805,44.68747730524693,44.68765276696946,44.68796014892562,44.68813581101725,44.6882455843352,44.68835489523276,44.68848547926129,44.6885237452442,44.68856766662284,44.6886009097896,44.68866207136006,44.68883240902112,44.68886569226402,44.68880577811046,44.68858671347314,44.68852116329368,44.68849940640349,44.68852169442221,44.68869844697029,44.68894063766583,44.6891823072111,44.68929177764311,44.68940124424102,44.68957073770584,44.68968470693667,44.68970600608931,44.6896772321932,44.68963836078402,44.68924766498512,44.68924135719605,44.68927927365895,44.68933915500261,44.68942102304164,44.68950885196455,44.68962991915704,44.68977878076069,44.68985594803674,44.68989985305232,44.68997636266447,44.69002514531485,44.69006836433734,44.69013862110626,44.69026968557328,44.69035719270269,44.69055449970126,44.69079662095848,44.69095031586313,44.69106009008309,44.69125736835107,44.69132827148213,44.69158573976122,44.69190429790233,44.6919496973259,44.69217176235102,44.69230368123692,44.69244172512976,44.69252002048538,44.692569109022,44.69267242738061,44.69272151533068,44.69276571984111,44.6927715761542,44.69269582068446,44.69269114584586,44.69269680698486,44.6927738368472,44.69283984338153,44.69289439333279,44.69299757342809,44.69310055745267,44.69316608813826,44.69329765914315,44.69349526216752,44.69360473151168,44.69380167047221,44.69386753515463,44.69404354469288,44.69430700923932,44.69443857692372,44.69465829064458,44.69474645881625,44.69480261024471,44.69485766533706,44.69497296001056,44.6951938192009,44.695298399947,44.69545192719889,44.69571977936076,44.69595529883626,44.69605330867689,44.69617276843078,44.69628158090683,44.69638568706328,44.69645171747919,44.69647934364374,44.69647998598759,44.69642167160799,44.69642766521589,44.69649403301533,44.69653792047696,44.69660316412634,44.69662510783469,44.69664160564437,44.69657166808125,44.69656134753751,44.6965779842104,44.69666047325966,44.69679172739166,44.69693410666054,44.69700549342281,44.69713282861683,44.69720986622451,44.69738566863864,44.69764943482667,44.69782478665761,44.69810985564178,44.69834995677017,44.69856819517143,44.69887282518616,44.69897033277589,44.69901893109946,44.69908787375231,44.69915483085659,44.69932855223761,44.69957872185571,44.69971135067181,44.7000844131579,44.70023824737376,44.70045748680299,44.70063860905732,44.70096843975961,44.70109486805724,44.70127080422726,44.70137995324095,44.7014456615945,44.70154525262402,44.70163292069434,44.70172056507774,44.70191688821847,44.70217858930427,44.70252742229319,44.70285480783625,44.70294200205457,44.70296394211051,44.7037068894111,44.70436294957648,44.7047565661633,44.70490991567467,44.70510685545596,44.70536936023881,44.7058078414853,44.7058898470936,44.70591091794483,44.70612316074445,44.70664129379374,44.70668976116368,44.706794213752,44.70692592839062,44.70760463192664,44.70784580675797,44.70832788093627,44.70872772055427,44.70929165015433,44.70970782226011,44.7100801190599,44.71038746876661,44.71065095144618,44.71082656904593,44.71130963011811,44.71172612850265,44.71209870235495,44.71229566132568,44.71244872674894,44.71288558772591,44.71334563791358,44.71356423747292,44.71376085344546,44.71393586623592,44.71408922771044,44.71426454168765,44.71441824542459,44.714703015194,44.71483410898413,44.71500862465131,44.7150743070985,44.71540266577585,44.7154667769442,44.71592570573991,44.71614743911802,44.71612623730888,44.71613754302332,44.71617628578086,44.71621471352422,44.71634610142826,44.71641168778221,44.71647753206994,44.71687111011286,44.71706805071532,44.71776934348153,44.71820746787143,44.71844818733387,44.7186456071143,44.71888647119172,44.7191935159664,44.71952188126639,44.71976276332343,44.7199816809936,44.72059671493477,44.72114091270571,44.72153707444646,44.72165831002168,44.72192759817897,44.72234066356047,44.72244544459179,44.72256197985291,44.72264450185124,44.72273262379725,44.72286434151312,44.72312263310959,44.72335381650073,44.72340399174925,44.72339997467054,44.7234454616579,44.72355087402517,44.72371677428909,44.72389368989169,44.72426886862022,44.72484125765732,44.72532143379127,44.72572322692,44.72607448368308,44.72668322898668,44.72715056247129,44.72750213107385,44.72755138771881,44.727743932316,44.72796350691765,44.72807325700052,44.72824826964457,44.72857630711441,44.72905800941574,44.72929919877782,44.72945287936432,44.72980385208333,44.73015478795897,44.73054899777316,44.73089897588788,44.73109608895842,44.73127142959025,44.73137035711647,44.73164558012153,44.73190965500157,44.73212935304133,44.732283019717,44.73237054085487,44.7326550037525,44.73287326227806,44.73292854441564,44.73361032991005,44.73361101217547,44.73409821599881,44.73492176606202,44.73570787104288,44.73618794271375,44.73663862245474,44.73719332314813,44.73753160569621,44.73804625695804,44.7384269153749,44.73889919788299,44.73920000990998,44.73984921911023,44.74142972262108,44.7417077751854,44.74170994174873,44.74173934827684,44.74182105285407,44.74234197593763,44.7438405947064,44.74448847182728,44.74455176931693,44.74452226948959,44.74456518880741,44.74467381026675,44.74476438143884,44.74484978288282,44.74493801472727,44.74502378825846,44.74494925432943,44.74487656202802,44.74510683132301,44.74523132162577,44.7456396818237,44.74559901706434,44.74552262666328,44.7458712915589,44.74610870981829,44.74626799551871,44.74678289761142,44.7471252038592,44.747357398908,44.74752216035613,44.74799435819525,44.74836891178519,44.74861868027845,44.748786295729,44.74897383244244,44.74905912443231,44.74893124973664,44.74878816122139,44.74879567013362,44.74888061905764,44.74893739083817,44.74903799443036,44.74934339338554,44.74949091384394,44.7492039050979,44.74901084075955,44.74891279222852,44.74923920411417,44.7495389613572,44.74967469287986,44.74982563123455,44.74994860688489,44.75017828125421,44.75060495482539,44.75097564670143,44.75149924415332,44.75211127597124,44.75254847704639,44.75328590365802,44.75387772251445,44.75441054942362,44.75456477751301,44.75472658004636,44.75509671553797,44.75533934198473,44.75553775880075,44.75576549218768,44.75593107178695,44.75598445494721,44.75609762248204,44.75636633125126,44.75651230590074,44.75642908812812,44.75644520798339,44.75710129865738,44.75770871820444,44.75829534593056,44.75845561451267,44.75877031525817,44.7592236247555,44.75956675607583,44.7600388025354,44.76038367776219,44.76074001208949,44.76105735735182,44.76106526184375,44.76093370841638,44.76076552069323,44.76087832630715,44.76102864149323,44.76121060793086,44.76125073758163,44.76087450709112,44.76063890231705,44.76068490742183,44.76069280944981,44.76080121387863,44.76111328003483,44.76132308958447,44.76184231647137,44.76242543512887,44.76314656749034,44.76379270509224,44.76413260724028,44.76470341828529,44.7649319680126,44.7653641626247,44.76560063253547,44.76797436033243,44.76779589333203,44.7655253077241,44.76545235710604,44.76528181442858,44.76511626075326,44.76491262455832,44.76463629137956,44.76442296798943,44.76400337300078,44.76403003477721,44.7645111608097,44.76467289093513,44.76532895950231,44.76612011207353,44.76684473039116,44.76781285801763,44.76853191067008,44.76928583503816,44.76993484688349,44.77085868004091,44.77144000418481,44.77150592741021,44.77170690944153,44.77198498402846,44.77222143831015,44.77259057062891,44.77310537646321,44.77365388940766,44.7741063117817,44.77461227868364,44.77469755041237,44.77475312819075,44.77433917813023,44.76817622900268,44.76832100078122,44.77089906148213,44.7709917141561,44.77085476175277,44.77074201564281,44.77068522167805,44.77077577284019,44.77093358449964,44.77101880152659,44.77110873905301,44.77120910544399,44.77133855698919,44.77140634485762,44.77140617330365,44.77138479479508,44.77143487041628,44.77142082217659,44.77152235594567,44.77191926251243,44.77271204420352,44.77352329939457,44.77437523146223,44.77484057799842,44.77484530273816,44.77491958612685,44.77502757615986,44.77498463237116,44.7749273762921,44.77477671391047,44.77438722040425,44.77446348836346,44.77496659896716,44.77512151998032,44.7755783473526,44.77606476090256,44.77651542096622,44.77758639074514,44.77861687593119,44.77937252906099,44.7799591392254,44.78088825107627,44.78174586191,44.78270778150291,44.78359935649813,44.78438720437102,44.78517387838972,44.78592330970563,44.78691181832397,44.78770202759634,44.78811278244147,44.78897419938443,44.78983472726298,44.7903119746956,44.79107381966557,44.79200705498651,44.79252359578341,44.79401471871291,44.79409429985212,44.79417756673304,44.79422442005626,44.79426263996223,44.79425430391372,44.79424402706547,44.79426102485697,44.79433185093758,44.79451009407975,44.79470969483185,44.79482160136188,44.79482570962368,44.79477048239622,44.79459746229698,44.79448840301128,44.79443138769819,44.79451824456932,44.79459004578657,44.79473088199093,44.79490911985538,44.79511980786531,44.79705261390284,44.79801626980352,44.79922431304811,44.80042612997021,44.80100294771443,44.80150614157215,44.80215415934568,44.80290975822378,44.80314259359194,44.80399774663815,44.80475601201438,44.80554885593946,44.80609908177478,44.80643734524284,44.80647165983169,44.8066350373745,44.80701118947904,44.80722278511835,44.8075622905657,44.80779332631052,44.80757726234388,44.80806187778344,44.80862280270403,44.80934707812025,44.80969193592623,44.81026808344608,44.81067852260927,44.81074326785456,44.81112204073199,44.81152382226423,44.81182605870659,44.81206063491037,44.8123041469455,44.81268384811145,44.81327041757867,44.81382420882469,44.81424564113125,44.81442624435682,44.81470880044708,44.81519431071536,44.81588400592166,44.81622259838818,44.81704491877445,44.81762523682244,44.81821090660686,44.81869512780557,44.81890932236839,44.81893532469714,44.81910654882248,44.81917789922723,44.81921610997231,44.81917906479208,44.81924616618166,44.81939651655887,44.81955121907968,44.82005161647485,44.82023262525475,44.82060143230552,44.82138129695272,44.82167620027407,44.82197263666529,44.82208545133536,44.82214022851266,44.82199640610968,44.82133080753538,44.82090677472087,44.82083468135885,44.82078817620083,44.82077085888995,44.82066911723872,44.82066621724756,44.82045464345631,44.8202876992619,44.82018885729659,44.8199177308389,44.8194739182124,44.81930154951829,44.81932675943943,44.81959427533005,44.81981817568107,44.82011235447347,44.8203236490149,44.82051224925362,44.82064275177768,44.82074340444233,44.82099577338745,44.82130365125347,44.82151349099437,44.8215960207555,44.82166204577902,44.82165479179794,44.82167384934367,44.82169688321164,44.82154108941098,44.82113229573844,44.82072050317922,44.8203920377915,44.82020270359214,44.82025602525155,44.82049615515549,44.8207950528512,44.82110654215073,44.82119023998919,44.82108814447058,44.82093025476679,44.82088119964839,44.82073728669839,44.82053496519627,44.82050432231092,44.8206748888369,44.82094821866011,44.82101886136786,44.82111334626967,44.82077936122221,44.82073210706069,44.82107608172026,44.82146629056839,44.82198518403602,44.8221611912906,44.82236495929492,44.82245967425717,44.82257788091363,44.8226944776059,44.82261190070557,44.82263700388906,44.82290849428621,44.82316229851352,44.82345828547399,44.82360882723346,44.82399395305698,44.82417745584672,44.82435192974408,44.82449344930664,44.82455381974003,44.82474618826836,44.82506286388557,44.82529233951086,44.82557305476095,44.8257782188764,44.82594741433486,44.82614036530718,44.82645087810531,44.82668641811166,44.82680274475179,44.8269740648171,44.82723411209223,44.82738138353935,44.82758000297044,44.82774027674478,44.82806243326105,44.82816069597457,44.82828548452053,44.82874405931604,44.82885115705555,44.8289811299129,44.82907332183819,44.82903189137447,44.82906304475936,44.82923954940163,44.82966936255575,44.8300641861286,44.83015735568303,44.83015208700149,44.83011612044042,44.83012009705436,44.83032948984751,44.83035153671927,44.83032408934134,44.83026388184738,44.83017583139013,44.83000001770232,44.82974501186693,44.82970268719873,44.82958542455146,44.82943132394146,44.82882300013581,44.82866878215839,44.82815792649233,44.82797699763037,44.82790778776518,44.82805341629583,44.82839873619735,44.82862378361079,44.82885556840971,44.8290096809015,44.82904542137008,44.82921021171651,44.82984813865087,44.82994730282405,44.83008493902339,44.83018957431742,44.83036563758382,44.83058586989591,44.8306958553228,44.83084984392494,44.8311578471458,44.83157556296624,44.83181734575681,44.83219119204453,44.83269720817726,44.83276327898066,44.83318735169379,44.83384272304131,44.83411877523114,44.83448236863355,44.83482396417399,44.83495636144195,44.83516048202036,44.83522106572871,44.83543063049212,44.83551888271877,44.8355632592516,44.83558568650135,44.83562979170474,44.83568587325586,44.83567557798972,44.83573095230864,44.83581333980005,44.83600587837094,44.83618195018913,44.83637993051583,44.83646259319087,44.83652864250984,44.83655092790659,44.83658968221397,44.83664505528864,44.8366943910619,44.837283028752,44.83735457474588,44.83748710235937,44.83763556829337,44.83796558900009,44.8380922486564,44.83816942476896,44.83819718555492,44.83816451827137,44.83802194505979,44.83779147540027,44.83770394366298,44.83764905418897,44.83763817987391,44.83767132254606,44.83774852609314,44.83785838693318,44.83831930366306,44.83862656787142,44.83915390022309,44.8392416731625,44.83928582861058,44.83941782059024,44.83947291877606,44.83959502816764,44.83974977337095,44.83993782344152,44.83997819363697,44.84004418054116,44.84005039912466,44.84005562207971,44.84003386714588,44.83997915516043,44.83996808011292,44.83997944006211,44.83992480748577,44.83986992336863,44.83978221617924,44.83963964821505,44.83950797427394,44.83937073500081,44.83933243481372,44.83932677306032,44.83934332400496,44.83937636140021,44.8394203976712,44.83984394680402,44.83992543060531,44.84001332240165,44.84010678180336,44.84018931875335,44.84025535786569,44.84040399898341,44.84067748953391,44.84083806923665,44.84099400838385,44.8413137600726,44.84153019741247,44.84177177791847,44.84201361850243,44.84216730749666,44.8424311353731,44.84267278428926,44.84276055024242,44.8428923834982,44.84322738711928,44.84328787138491,44.84339654852771,44.84369927304421,44.84405700534356,44.84417786479171,44.84432060641516,44.8443865518161,44.84446911147887,44.8445130254403,44.84455133214539,44.8445843823955,44.84462281784524,44.84466125538303,44.84488095916489,44.84518839023991,44.84573781137474,44.84626527459437,44.84655073627459,44.84675406261681,44.84738595116681,44.84773735709971,44.84811069843681,44.84815480891093,44.84813280259643,44.84813300877205,44.84817699779501,44.84824297588477,44.84839636190343,44.84851168295656,44.84883600486686,44.84911060184898,44.84929741290099,44.84944573797461,44.84952808743446,44.84955017485989,44.84957208436925,44.84963110494216,44.84969838500997,44.84973689877855,44.84974797511281,44.84971515803253,44.8497591273369,44.84986897443026,44.85015452001323,44.85035223241181,44.85054447231889,44.85100592100861,44.85115983222592,44.85141809305592,44.85162684141698,44.8521542672752,44.85272549547123,44.85348914805027,44.85375275063334,44.853873624583,44.85394500713904,44.85404382169998,44.85413169182554,44.85421974021582,44.85454923516746,44.85470311346178,44.85490085817763,44.85514257104219,44.85540618879071,44.85551047637007,44.85557086457655,44.85558202034352,44.85562050111672,44.85575782163119,44.85597747192952,44.85668056508408,44.85701562665754,44.85729580839832,44.8574533445326,44.85759955635798,44.8577793762336,44.85804291188357,44.85857029839865,44.85896574843109,44.85914154876502,44.85942709544278,44.85973478958835,44.8599104955884,44.86010808117113,44.86017422094911,44.86028938448771,44.86050366131128,44.86059169133693,44.86081139940847,44.86104947052389,44.8614703032981,44.86188771858002,44.86248095887763,44.86281060259583,44.86318424184018,44.86326633924191,44.86337639272779,44.86345337300276,44.86349174986352,44.86355770357127,44.8636235486865,44.86369495142025,44.86372936743454,44.86375543947604,44.8637813640992,44.86379381521638,44.86376618538207,44.86377315173425,44.86380877391025,44.86388965873197,44.86409606915419,44.86429379113927,44.86449150111865,44.86501875404106,44.86537590314903,44.86578782714148,44.86649644982574,44.86673826421116,44.86706224525901,44.86734789040955,44.86807284806982,44.86842470950427,44.86871012103096,44.86899585009376,44.86934740960961,44.87044607966869,44.87068223136033,44.87081406336767,44.8709019865648,44.87097355758274,44.87096242390251,44.8709129554011,44.8708525758074,44.87078673752064,44.8705532670059,44.87049022409249,44.87048456351758,44.87053412222277,44.87053424551939,44.87051224128711,44.87044643089003,44.87019908036544,44.87014413864361,44.87011677840054,44.87013878143078,44.87018282745272,44.87027054893247,44.87041039491589,44.87057976746348,44.87083624283616,44.8709885754075,44.87118783648323,44.87138938826505,44.87149011964528,44.87156703105718,44.87160041712666,44.87164682168293,44.87177866880901,44.87195433811392,44.87215218605203,44.87262437059482,44.87301983695159,44.8731957267419,44.87365700903797,44.87387703400351,44.87410739318137,44.87472822339634,44.87490930046506,44.87499246626368,44.87500508258995,44.87499144892621,44.87480784936735,44.87450027053745,44.87441236022723,44.87435261306575,44.87423677333357,44.87417088722687,44.87410493158475,44.87407753862571,44.87411590738262,44.87422568282218,44.87432458014978,44.87435214724627,44.87438503566882,44.87460749808259,44.87484087258429,44.87491092653727,44.87499840904098,44.87513653958142,44.87537802206692,44.87551530408193,44.87569109170394,44.87612492645846,44.87689388978825,44.87739916556658,44.87768467037581,44.87790415277227,44.87812379018614,44.87816239615951,44.87816758838946,44.87815105680129,44.87809065814631,44.87789856810376,44.87768435140697,44.87766219217436,44.877678598277,44.87778290234397,44.87802454660194,44.87811263442852,44.87837595931367,44.87855179480174,44.87863958656035,44.87872722438092,44.87883705971844,44.87901282877158,44.87945230447699,44.87972142084273,44.87986973227872,44.87997400906101,44.88001806793987,44.88003992271415,44.88006354752935,44.88018311965915,44.88018865410322,44.8801719817199,44.88012817953027,44.87990867307842,44.87987564145118,44.87988672777054,44.87995269175586,44.88024381844811,44.88052411155611,44.88062845766926,44.88062850888011,44.88067267672255,44.88072192806465,44.88079890115586,44.88094708687899,44.88105708194623,44.88136455338528,44.88147428576985,44.88173800630938,44.88191365844462,44.88207272700816,44.88222087550753,44.88231428628373,44.88248464983459,44.88286361968408,44.8829898479681,44.88319312011924,44.88332497396542,44.88347315690638,44.88354460486031,44.88357768018077,44.88366552457094,44.88378473216136,44.88479575898816,44.88484009739212,44.88497748739486,44.88518622925343,44.88544995755851,44.885581577616,44.88569145388343,44.88577437845063,44.88612370213674,44.88611986000377,44.8861474935875,44.88625194707597,44.88644400485871,44.88659777957103,44.88690003815064,44.88712751248316,44.88720744362968,44.88738318463844,44.88760281261918,44.88808617174423,44.88826195525976,44.88854747209682,44.88861889968661,44.88870110372851,44.88876168686014,44.88887159517605,44.88897591303614,44.8891078297186,44.88914616354715,44.88915705670524,44.88914601657162,44.8890638983608,44.88895408922438,44.88887725668491,44.88868638472052,44.88870135297797,44.88888814667495,44.88910777316354,44.88919586094841,44.88939342336485,44.88965701445201,44.88992053878098,44.8900083677592,44.89011807979674,44.89024997869869,44.8904313388847,44.89101894033409,44.89123858742898,44.8915241321181,44.89185364855127,44.89200731249115,44.89251226615922,44.89277593385678,44.89367655165672,44.89394014720219,44.89437944681475,44.8945660156588,44.89473622938235,44.89492856531443,44.89503825909079,44.89515382734458,44.89520846370483,44.89521113916071,44.89555718917643,44.89585639101468,44.89591673489844,44.89613646410061,44.89629568866204,44.89682856338873,44.89692746479767,44.89697649064315,44.89696033817692,44.89715812940702,44.89727889678686,44.897317334064,44.89732846794798,44.89735036545854,44.89738900982913,44.89749869728661,44.89763064174679,44.89782819500029,44.89792714488307,44.89813036210625,44.89839398379183,44.89849296855468,44.89862480311005,44.89870743531161,44.89871847362517,44.89876238061046,44.8987678182395,44.8988118391445,44.8988117585694,44.89878980434149,44.89881184017383,44.89885027067935,44.89893054457711,44.89907001959819,44.89915798051479,44.89920170289057,44.89920180821584,44.89916318351764,44.89905349648957,44.89881152768147,44.89870168012644,44.89860275268671,44.89844339514121,44.89820730242798,44.89819074864499,44.89811936067716,44.89809199970372,44.89790522145164,44.89670765047136,44.89668580631366,44.89674610754215,44.89675149647945,44.89672960327474,44.89643289357628,44.89625707434201,44.89610340368437,44.89588361772274,44.89557075311406,44.8954388706971,44.89566389045019,44.89576249059751,44.89589439358435,44.89615785678242,44.89622388900442,44.89634461303001,44.89643241618573,44.89649818058924,44.89653671879223,44.89658613580287,44.8966025128649,44.89654219426107,44.89679451647283,44.89699225573243,44.89716794961419,44.89734359221123,44.89766575235027,44.8980519616922,44.89813964860674,44.89821112684253,44.89826607454089,44.8983538625117,44.89846925587324,44.89850770465541,44.89852401166465,44.89856256717169,44.89867217316124,44.89913311436572,44.8993747823697,44.89983615559025,44.90003389255582,44.90019837966341,44.90034112957573,44.90045099983482,44.90056077889487,44.90086810677611,44.9009449605316,44.90115366329157,44.90133484971675,44.90157070670994,44.90176848645934,44.90190022166212,44.90216383259192,44.90234505501945,44.90250978173257,44.9026248354179,44.90277856156181,44.9035473708629,44.90405239424884,44.90453541094879,44.90464519150977,44.90532603464697,44.9057651917956,44.90618253107085,44.90651197539719,44.90664351757876,44.90691557847078,44.9070988794349,44.90728219416615,44.90737948365035,44.9075991843306,44.90777475509418,44.90798355917783,44.90841160005353,44.90878508059886,44.90924603990153,44.90959165751248,44.90983899781862,44.91011338641822,44.91043163954771,44.9107611886379,44.9109807507732,44.91126637854902,44.9114200506349,44.91191418438946,44.9122765703779,44.91246340888505,44.91289146846751,44.91323197537204,44.91338548311945,44.91362166865144,44.91425327812061,44.91481884879254,44.91527438569783,44.9161695026425,44.91629555023098,44.91666916190901,44.91694910278511,44.91718514097149,44.91737173966587,44.91745965449623,44.91754749777798,44.91759167782571,44.91789920453731,44.91814055681626,44.91825060544021,44.91831641752014,44.91844804522157,44.91864580595092,44.91879971505903,44.91908523638016,44.91950244963959,44.91980986513506,44.92011737111029,44.92033702691833,44.92044703096017,44.92053480774879,44.92066675124396,44.92105085122115,44.92120474298699,44.9213475490535,44.92161111238219,44.92200651360486,44.9228631409738,44.92312666135637,44.9233901539744,44.92382955127061,44.92404894020679,44.92426891369379,44.92466428381143,44.92512552629151,44.92543293135977,44.92571856359561,44.9260260937518,44.92633382696621,44.92659730664619,44.92692684662699,44.92710261693463,44.92758601592831,44.92787145383872,44.92791533762099,44.92797588985802,44.92801415403053,44.92818989925606,44.92823378301991,44.92847563558881,44.9285799402405,44.92860207705039,44.92866245807772,44.92890422165718,44.9292556150349,44.92934334986123,44.92943140540123,44.92954120878895,44.92959076317174,44.92962913180244,44.93002448678084,44.93010185467025,44.93020047088208,44.93048595608822,44.93061787264837,44.9307933852164,44.93105718486795,44.93178203880173,44.93222156889273,44.9325070892507,44.93285852900705,44.93303429489355,44.93309495891477,44.9331335040788,44.93312257378457,44.93313882560219,44.93318305054145,44.93332031468486,44.93349057498651,44.93358390922555,44.93399463280792,44.93413324870185,44.93423746381657,44.93434201921785,44.93448372596546,44.93460405623507,44.93474522882107,44.93474285739222,44.93507241641592,44.93531964686534,44.93545706390039,44.93551759130718,44.93552313483878,44.93547929972139,44.93542432704871,44.93535315623478,44.93539142989908,44.93543556707704,44.9355837711177,44.93615475905632,44.93646224707282,44.93674800999412,44.93694551985789,44.93720915461607,44.93736276145454,44.93760458196086,44.93780230023584,44.93791996001054,44.93794609134425,44.93793696815852,44.93794117889524,44.93796411289217,44.93810467287983,44.93835154752351,44.93843939473158,44.93851067231494,44.9385821892271,44.93865923208182,44.93898860631638,44.93909852757642,44.93916444831552,44.93931812298111,44.93942795676022,44.93960366839482,44.9396476039082,44.93965856594028,44.93982346946525,44.93988378464949,44.93992243169722,44.93997713879512,44.94016938192559,44.94027373725569,44.94064710739254,44.94106458038023,44.94117435552673,44.94138311793245,44.94166865973723,44.94215221130184,44.9423717084732,44.94259146605851,44.9427234495349,44.94290073858928,44.94294291432927,44.94295963256238,44.9430309580304,44.94337130640085,44.94345916117207,44.94348117164342,44.94352520360052,44.94361291026819,44.94380531583082,44.94392625639512,44.94417900022545,44.94434357998109,44.9444699925363,44.94454704340207,44.94531583985908,44.94542555633234,44.94577704062598,44.94588665332283,44.94613383136386,44.94633132064533,44.94640284291261,44.94643571688292,44.94643016809921,44.94616679678003,44.94617230018843,44.94622722104474,44.94628231440712,44.9465458403995,44.94691919925186,44.94718277301547,44.94746821850107,44.9478635351808,44.94808320590351,44.94817122208714,44.9483907452213,44.94847876404391,44.94867641212301,44.94870941112637,44.94870948860363,44.94861591438971,44.94860508223065,44.9486269725122,44.94870950399145,44.94895106234502,44.9490828202614,44.94932434708002,44.9494561630447,44.94956596339646,44.94962231302783,44.9496265695671,44.94951774350403,44.94969788758115,44.94979681842604,44.94995051008095,44.9501701809777,44.95054363294769,44.95070850665721,44.95077427993088,44.95088425648562,44.95095000356737,44.95096665284078,44.95092260189942,44.95086231772016,44.95055478984897,44.95042850288309,44.95041763710713,44.95042855321231,44.95047240445007,44.95049196018507,44.95060267533726,44.95075792605542,44.95081833319761,44.95104897812345,44.95107662673463,44.95112290905604,44.95110959820774,44.95113139134138,44.95114809591699,44.95121389737973,44.95224625739942,44.95237788546518,44.95244382906728,44.95249326221263,44.95252628104957,44.95257021161984,44.95268015177049,44.95272417023582,44.95279000288463,44.95290533665243,44.95312489085136,44.95317997582667,44.9534764693818,44.95354791630769,44.9536136590378,44.9536302307403,44.95361363470597,44.95363566929446,44.95374020288668,44.95376752454379,44.95380596969909,44.95387191182841,44.95395968450445,44.954058616303,44.95425589689606,44.95429562060374,44.9543321918697,44.95436138086134,44.95435863759472,44.95434293535033,44.95421947652096,44.95409712356587,44.95409147129314,44.95417383497853,44.95418496005668,44.95414094330202,44.95400912334429,44.95395442040212,44.95393773134593,44.95395431428459,44.95410807900271,44.95440471524578,44.95447046200712,44.95470119243924,44.95486590309188,44.95494285254833,44.95500865424631,44.95507465623995,44.95516230571889,44.95526133942005,44.95542605995907,44.95550282909217,44.95557965931108,44.95573355104919,44.95576614517667,44.95593120592834,44.956249635176,44.95637043121383,44.95649116093371,44.95669418595288,44.95672983146278,44.95664487566081,44.95649671012117,44.95643082071872,44.95639767318468,44.95629342159317,44.9562988249931,44.95637586904848,44.95646362301659,44.95657351511794,44.95679860337707,44.95683155841323,44.95686442276568,44.9569521086017,44.95706757466093,44.95728727808171,44.95734217519079,44.95733653772701,44.95725971420558,44.95719372153998,44.95713348140556,44.95713342212392,44.95719373473705,44.95724857764831,44.95743523933141,44.95757260413117,44.95768234527448,44.95783601153806,44.9581043274512,44.95832474448034,44.95829729399478,44.9583246223968,44.95840155446776,44.9584181932539,44.9584015125066,44.95831387168162,44.95830296420083,44.95856646540388,44.95883005151374,44.95899449436864,44.95913728767393,44.95914823921002,44.95911543950673,44.95908784263602,44.95910419201724,44.95915361897297,44.95923054942326,44.95934049528087,44.95939525605434,44.95948332672805,44.95959857627064,44.95960945311788,44.9595763378282,44.95958730958299,44.95969719052829,44.95972471387078,44.95969165657176,44.95954345205811,44.95952129673644,44.95957611847381,44.95992216544052,44.96016380347103,44.96024591323403,44.96031186372726,44.96035556470229,44.9604985073432,44.96079478025457,44.96086057409283,44.96097604165247,44.96105819423529,44.96110226243024,44.96115135356315,44.96126123014203,44.96132182379919,44.9613436013489,44.961338024525,44.96140928106244,44.96149167610078,44.96168937373805,44.96172212002642,44.96169487352856,44.9617386627667,44.9617494312694,44.96179330203565,44.96184414841075,44.96189668323516,44.96195518675302,44.96179879743809,44.96056865019055,44.960535692635,44.96054670654454,44.96064529915058,44.96161180534959,44.96174370776425,44.96189751403325,44.96211719813295,44.96229284606874,44.96244648909618,44.96249839373765,44.96257827891512,44.96269338774596,44.96280321248503,44.96286894252773,44.96307741853139,44.96338461774247,44.9635707537719,44.96360547420748,44.96377596867204,44.9638074037617,44.96386844321578,44.96401172693623,44.96401883194527,44.96404247136543,44.96398218343847,44.96396562200234,44.96402044215311,44.96430564350283,44.96442619632926,44.96447028991465,44.96456342883759,44.96491970961667,44.96499628583953,44.96510603019576,44.9652812716762,44.96531118948021,44.96536483959085,44.96534688715702,44.96534698703874,44.96546163924761,44.96554941951353,44.96558749547729,44.96560954289728,44.96562660101354,44.9656593802664,44.9689303301373,44.97252294152124,44.97611553084881,44.97971439920195,44.98331297545391,44.98691183554502,44.99051041090725,44.99053921001455,44.99056778579774,44.99059612803079,44.99062425061475,44.99061505413052,44.99060562800087,44.99059625887008,44.99058636298888,44.99053478858439,44.99048326825843,44.99043125537776,44.99037932812999,44.99042044074336,44.99046134539528,44.99050230083236,44.99054275134537,44.99053082654045,44.9905189725859,44.99050658138574,44.99049424245622,44.99048217320136,44.99046985865323,44.99045703663722,44.99044052470178,44.99299388703844,44.99303958625552,44.99308479078771,44.99313003918932,44.99317477517313,44.99313989529847,44.99310478293881,44.99306915928981,44.99303359652224,44.99302926387921,44.9930247151064,44.99301992566915,44.99301492422015,44.99662562526691,45.00023605281876,45.00384639718858,45.00745617799878,45.01107559490138,45.01469471198219,45.01831382720899,45.02038796093154,45.02050851529903,45.02062855714834,45.02074837311866,45.0208679774472,45.0209049800556,45.02094229201159,45.02097896377288,45.02101570131003,45.02112163813636,45.02122735878497,45.02133285232861,45.02143206481957,45.02169925504285,45.02249618259179,45.02289950687114,45.02321695443365,45.02349911253027,45.03767525986449,45.04705108512593,45.05109881417979,45.05244431411316,45.06680467628809,45.08127134136709,45.0957247916386,45.11018253420994,45.11043068526437,45.11092883216937,45.1113683720661,45.11183503730751,45.12571235469262,45.1362371556796,45.14053520905733,45.16939868903574,45.18382503367587,45.19292049022751,45.19547598412717,45.19797623631612,45.19824724251642,45.19947187258651,45.20043357727656,45.20057248356643,45.2008111345995,45.20151155534934,45.22987947387913,45.24451349729962,45.25903637248194,45.28780762295894,45.30224591250807,45.31627822605436,45.33123405758064,45.3460736134065,45.36045550587949,45.37455793699174,45.37512857896839,45.375177286944]}],[{"lng":[-87.83106083086439,-87.83085217242245,-87.83073631318018,-87.83063718191848,-87.83063659948463,-87.83076029871788,-87.83077516800969,-87.83076067471616,-87.83064481547747,-87.83027474395402,-87.83009736843371,-87.82996564318046,-87.82989664975615,-87.82986567311944,-87.82986626068841,-87.8299127503392,-87.83000441765046,-87.83019009428786,-87.83033608661721,-87.83058284548507,-87.8309230679904,-87.83132370386511,-87.83154013320009,-87.83171032847241,-87.83188718873589,-87.83204149513206,-87.83236431520011,-87.83238020985623,-87.83236541277613,-87.83234173365894,-87.83227928229724,-87.83197176635031,-87.83184782320591,-87.83174728020408,-87.83160059976866,-87.83135371560405,-87.83122992293649,-87.8311845303688,-87.83106083086439],"lat":[44.88396219650792,44.88403925031759,44.88411075146463,44.8842424900951,44.88461578760333,44.88496725048903,44.88507696155354,44.8852308483475,44.88530234938835,44.88535720795636,44.88542303758,44.88551646156133,44.88560432805745,44.8856704075619,44.8858020748832,44.88593377238949,44.88602159864321,44.88609292530555,44.88610413691675,44.88608744582144,44.88602668052682,44.88591670161055,44.88580153606308,44.885653137825,44.88541147436006,44.88503293946108,44.88457152802513,44.88452766080491,44.88437378165742,44.88433001331431,44.88428606303128,44.8841927370044,44.88412146191133,44.88401715077021,44.88394009767109,44.88391824985877,44.88394824659274,44.88393472675266,44.88396219650792]}],[{"lng":[-87.82693418852253,-87.82698146132294,-87.82705041581397,-87.82712773867203,-87.82725103026755,-87.8276216469126,-87.82777625144172,-87.82805363223919,-87.82816139667757,-87.82837700469722,-87.82845490594254,-87.82854709759202,-87.82885558232874,-87.82919518533457,-87.82965775335133,-87.82978187227411,-87.82984267900463,-87.82989742445177,-87.82986676493579,-87.82966527581603,-87.82945692194421,-87.82934172214657,-87.82929533501822,-87.8293179194951,-87.82928020890367,-87.82917993737401,-87.82908506217605,-87.82899409870851,-87.82887030126088,-87.82877769833767,-87.82866958803712,-87.82858502950999,-87.82852359841759,-87.82848553634,-87.82836201049746,-87.82823796438861,-87.82811477561127,-87.82794525007611,-87.82780586554222,-87.82770604661862,-87.82755849987853,-87.82740555055956,-87.82725056804399,-87.82711176071223,-87.8270578345539,-87.82694977343056,-87.82690335948139,-87.82693418852253],"lat":[44.88642876465474,44.88656047885885,44.8866208674895,44.88664822067321,44.88663171751065,44.88637349323328,44.8863241117137,44.88633501520695,44.88637363737479,44.88653274031171,44.88656572965453,44.88657648899643,44.88656013275362,44.88651595393065,44.88652700101176,44.88648857007793,44.8864500598638,44.88636220518755,44.88623053024672,44.88603259030042,44.8859118831993,44.88581854885323,44.88574733498616,44.88548360908779,44.88530791774522,44.88515438031334,44.88510981593081,44.88506645520966,44.88503343392782,44.88503364378932,44.88508841082937,44.88525333934625,44.88556077478114,44.88560478200518,44.88564856380095,44.88564311122195,44.88559378720706,44.88545102862184,44.88526439652542,44.88520398809731,44.8851710768975,44.88517660566542,44.88521500759308,44.88528635271145,44.88535228028391,44.88561578509741,44.88592350065305,44.88642876465474]}],[{"lng":[-87.8985528578006,-87.89881167391201,-87.89893917670754,-87.89917507096798,-87.8993851588226,-87.8996695975089,-87.89984731934118,-87.89999092319859,-87.90023676576118,-87.900461715039,-87.90074230983382,-87.90090457825893,-87.90101971871675,-87.90114953652339,-87.90124697554013,-87.90126840481598,-87.90128432328804,-87.90114480098093,-87.90102432634832,-87.9009752405852,-87.90090995914444,-87.90087757431331,-87.90081186655189,-87.90072420436826,-87.90050380223033,-87.90015295989917,-87.89998661018656,-87.89982666666347,-87.89961160101308,-87.89941750294764,-87.89908623490581,-87.89881665866923,-87.89871903614318,-87.89860940394566,-87.89845844306168,-87.89834231936466,-87.89824033004571,-87.89809060943772,-87.89785491400086,-87.89765024870835,-87.89772252677732,-87.89786968113658,-87.89804687085943,-87.89816139202604,-87.89831270803604,-87.89843612496065,-87.8985528578006],"lat":[44.81860018710527,44.81867837706065,44.81875893025757,44.81888058192277,44.81897277790268,44.81908547550909,44.81913291232254,44.81914033721117,44.81918396207724,44.81923704966982,44.81928159281394,44.81936278555614,44.81941385038901,44.81943086664013,44.8194034018268,44.81937932014097,44.81931097128962,44.81919109835793,44.81909098606605,44.81891875568789,44.8186483381895,44.81840805962503,44.8183235798656,44.81827780075194,44.81827374741784,44.81829177060246,44.81832303129278,44.81837381896555,44.81841880977098,44.81847403777872,44.81849719726966,44.81854118577905,44.8185737096176,44.81856690727403,44.81854443381436,44.8183465009777,44.81812941827684,44.81807292661522,44.81814172849681,44.8182701780033,44.81836940933205,44.81847480129481,44.81853685622095,44.81858313496371,44.81859576600692,44.8185929736697,44.81860018710527]}],[{"lng":[-87.98762237331681,-87.98758453601349,-87.98754675488865,-87.9875248178639,-87.98762565978201,-87.98765029964075,-87.98774408019602,-87.987873650618,-87.98798933386064,-87.98808071609436,-87.98811827235555,-87.98809449045045,-87.98796252870839,-87.98793792224259,-87.98790712008737,-87.98775976421244,-87.98762237331681],"lat":[44.68991817360531,44.6899402960133,44.69000630106429,44.69011591514651,44.69030139374382,44.69043264700133,44.69050321890927,44.69049706395042,44.69043637123638,44.6903485206943,44.69026618960944,44.69017855848676,44.69002600838231,44.68991670389944,44.6898950590146,44.68986827192364,44.68991817360531]}]],[[{"lng":[-89.322595449289,-89.34388596197205,-89.36457690256304,-89.38421045065485,-89.40422355684217,-89.42521012851276,-89.42505113443673,-89.4248148509964,-89.42461717970141,-89.42464763371058,-89.424339890491,-89.42430468199518,-89.42434571379435,-89.42445092407377,-89.42479990833729,-89.42475715308304,-89.42479948421393,-89.42475693129143,-89.42500895055889,-89.425199002155,-89.4252743329053,-89.4254602397653,-89.42542350288058,-89.42560669459762,-89.42553868288718,-89.42572893119426,-89.42557080543281,-89.42587096523197,-89.42585541910728,-89.42596520986999,-89.40653368109599,-89.4046987761635,-89.38645236474282,-89.38368866120065,-89.36614081942228,-89.3628804443253,-89.34565101013618,-89.34345963663704,-89.32657754924253,-89.30615003027771,-89.30245636776095,-89.28569096107837,-89.28020021760199,-89.25978740254608,-89.24423480452579,-89.23987829822558,-89.22423249554947,-89.22428282852927,-89.22420227562634,-89.22404342354631,-89.22393275905777,-89.22395235689144,-89.22384090418444,-89.20378348816099,-89.18338710622407,-89.16292056879026,-89.14265433898477,-89.12232818344943,-89.10198748348071,-89.08323365832182,-89.06299268193833,-89.04221401220597,-89.02236464920045,-89.01220369215976,-89.00204031907418,-88.98167872919642,-88.98195921155974,-88.98209931110588,-88.9820618884207,-88.98211697453954,-88.98199359105405,-88.98220041124316,-88.97156011227966,-88.9627112457506,-88.95102481139071,-88.94226039138952,-88.93059644877597,-88.92194114383743,-88.90929417701575,-88.90143576423277,-88.88071323810455,-88.86859364681706,-88.86029982387173,-88.84804142200174,-88.8395637113987,-88.81898095846799,-88.80683140913035,-88.79869215703675,-88.78563718728581,-88.77818791022028,-88.76510003373549,-88.75763479290879,-88.75016371028026,-88.74487073305637,-88.73729366229674,-88.72415352411488,-88.71290138557673,-88.70376881694926,-88.69264835821677,-88.68300578471548,-88.66169368777402,-88.65135408812428,-88.64144799420789,-88.64115214189451,-88.64085626043349,-88.6405611304981,-88.64026516830558,-88.6401976939531,-88.64013101921269,-88.64009680658918,-88.64007787322053,-88.64006432732057,-88.63999681480826,-88.63989700245176,-88.63980454740555,-88.63976307972578,-88.63969650686491,-88.63959663292816,-88.63945443854207,-88.63931143533445,-88.63916840672896,-88.63902614844689,-88.63893566626405,-88.63884516456265,-88.63875464683319,-88.63866412558444,-88.63857061565018,-88.6384762976774,-88.63838275979415,-88.63827846688243,-88.64337846549766,-88.64847847205475,-88.65357848895543,-88.65867771504024,-88.66379927735325,-88.66892005116731,-88.67404162818094,-88.68009267922298,-88.67986491998663,-88.6796688931089,-88.6794182271115,-88.67941016664949,-88.67937597445348,-88.67908278457013,-88.67918729144886,-88.67886822222466,-88.67839055363528,-88.67818133264107,-88.67787222298377,-88.69854019617793,-88.71927132924891,-88.73983095729862,-88.76016761410953,-88.78093826110377,-88.80229076352478,-88.823135215656,-88.84335151888979,-88.86466876355749,-88.88439120348148,-88.9051941910238,-88.92605400821736,-88.92640600926113,-88.92518899691241,-88.92488451958953,-88.92433037354208,-88.92330445675194,-88.9231446472442,-88.94387022961574,-88.96404833848851,-88.98443373993007,-89.0053485805923,-89.02631044047962,-89.04660715830569,-89.06760720491766,-89.11162517311517,-89.13229182480677,-89.15289421004782,-89.1741099232389,-89.19512647922262,-89.21618487500614,-89.23701104270479,-89.25772089030981,-89.27958156925226,-89.30190996115398,-89.322595449289],"lat":[45.46950518429628,45.46999219504957,45.47007473619375,45.46909246601125,45.46814198893049,45.46731779331526,45.45279263853415,45.43824961821608,45.42376751113965,45.40900635365464,45.39467720291483,45.38024980517859,45.36569983635383,45.3511886892184,45.32223730565273,45.30774190120335,45.2931861215499,45.27858628265172,45.26416200972983,45.2495486397099,45.23519453334921,45.22068229231012,45.2060583490479,45.19171620692473,45.1771080615435,45.16980735525681,45.16250629534871,45.14812609036485,45.13358392322227,45.11913968084905,45.1190142518203,45.11902355370439,45.11895066558273,45.11894760761513,45.1187995730636,45.1187997226699,45.11868125757702,45.11866277959507,45.11874596599204,45.11867606477709,45.1186290992319,45.11859133808555,45.11870681597482,45.11867287505489,45.11856121547652,45.11858829980633,45.11861649085142,45.10175615911004,45.08728428050249,45.07273025520691,45.05831323147292,45.04382954232179,45.02935167977672,45.02927189568006,45.02937660617361,45.02944508773579,45.02943236149058,45.02944736329969,45.02952952480312,45.02945370581854,45.0295958257182,45.02957541526514,45.02940192965132,45.02907822127847,45.02908271685605,45.02881692602856,45.04334042444124,45.05772733362699,45.07222993008951,45.08661685426557,45.10103141279338,45.11805119337771,45.11797932864449,45.1180209155292,45.11801669073386,45.11804537351598,45.11785782565939,45.11787386774593,45.11786278296034,45.11775997552964,45.11762086009642,45.11762561753121,45.11764590931044,45.11763809847438,45.11755685766485,45.11750922975391,45.11750345980697,45.11750401504162,45.11744005849627,45.11746645179968,45.11749290493779,45.11748515070593,45.11745377871564,45.11745995962573,45.11748458505232,45.11747576931293,45.11743071949311,45.11740522476799,45.11733632621063,45.11737535273891,45.11738028980065,45.11732381596264,45.1172825263975,45.12094060280096,45.12459811486765,45.12825563289658,45.13191285418958,45.13551934457468,45.13912528128134,45.14096480689201,45.14199467108449,45.14273121315604,45.14633769892522,45.14999780591013,45.1533814864471,45.15488984221323,45.1573191245791,45.16097950044995,45.16461293224763,45.16824607123693,45.17187920937899,45.17551234704061,45.17914160419691,45.18277085886417,45.18640010865277,45.19002879271373,45.19364871941217,45.19726835038472,45.2008879932708,45.20489061724088,45.20490937777806,45.20492790568517,45.20494620585288,45.2049642694779,45.20498040106455,45.20499628941675,45.20501195737853,45.20502998131075,45.21961787688536,45.23337713785535,45.2478713060191,45.26245221512577,45.27705845419678,45.29148669875546,45.30601346071587,45.32027002242842,45.34919305287204,45.36356920454644,45.37859282084559,45.3785372821694,45.37858166552741,45.37851406038936,45.37832147930595,45.37825803568068,45.37808270306736,45.37826439550908,45.37864407701413,45.37867219442646,45.37849118483546,45.37840207325304,45.37863881817898,45.39294520884522,45.40727957368395,45.42219799706784,45.43674385515718,45.45102869953734,45.46514332667462,45.46495298900702,45.46487657082035,45.46500714405871,45.46499578018562,45.4643390437698,45.46474406289322,45.46556863060167,45.4667808162157,45.46771578961221,45.46796865029664,45.46828298082755,45.46839394115107,45.46826054549904,45.46868091065988,45.46897469010967,45.46914435429035,45.46926149275627,45.46950518429628]}]],[[{"lng":[-89.51019025077264,-89.53070829582238,-89.5371867752488,-89.54618360127473,-89.54865416121329,-89.56913648308262,-89.59005002537833,-89.61036830872229,-89.63108707686504,-89.65152415275804,-89.67230989867615,-89.69301754029999,-89.71352644563662,-89.73448442636321,-89.75482868227682,-89.76522346594345,-89.77550869818857,-89.7961912334361,-89.81679795239459,-89.83747504900872,-89.85802786170888,-89.87887363001113,-89.8919150391169,-89.89977239948493,-89.90979646816402,-89.91985811173764,-89.93022239036888,-89.94038694415826,-89.95069676597885,-89.97121754801968,-89.9815281614806,-89.99223595369432,-90.0001602944139,-90.00196318282866,-90.01235370507166,-90.03498486421495,-90.04348490009465,-90.04346991668993,-90.0435233614691,-90.04343268442085,-90.04314542066903,-90.04304919333664,-90.04287342770415,-90.04276983079038,-90.04270239369106,-90.04255365587109,-90.04246875913707,-90.04246900630197,-90.04206560246213,-90.04249691053289,-90.04469443113675,-90.04618901424894,-90.0469234330477,-90.04633784358734,-90.04592028247448,-90.04639599939675,-90.04629030773427,-90.04577116560921,-90.04505040588131,-90.04492709519347,-90.04502874951925,-90.04465767570058,-90.0442169859007,-90.04410976460991,-90.04380326328118,-90.02250526851259,-90.00536419071605,-90.0019889002387,-89.98513422724614,-89.96467178437187,-89.96137198827824,-89.94710472647165,-89.92656298776809,-89.9203904703048,-89.89912293755457,-89.88557609412113,-89.87861367207529,-89.86507234712739,-89.85818551982912,-89.84456025729295,-89.83758906279327,-89.81718514855575,-89.80842416755507,-89.79682815748355,-89.78828348739509,-89.77544023246855,-89.76785661680444,-89.75504492718424,-89.74730393332665,-89.73448223664532,-89.72686162348732,-89.7139308452585,-89.69358121265672,-89.69275944639813,-89.67308510862763,-89.6517584140272,-89.63147773874853,-89.61048948786421,-89.57405750058348,-89.55338487371512,-89.54953262421581,-89.53297070253147,-89.51245485329042,-89.50782207097892,-89.49203153821411,-89.48734003633474,-89.46689471164899,-89.44739350083935,-89.44647998731814,-89.42692476665246,-89.42596520986999,-89.42585541910728,-89.42587096523197,-89.42557080543281,-89.42572893119426,-89.42553868288718,-89.42560669459762,-89.42542350288058,-89.4254602397653,-89.4252743329053,-89.425199002155,-89.42500895055889,-89.42475693129143,-89.42479948421393,-89.42475715308304,-89.42479990833729,-89.42445092407377,-89.42434571379435,-89.42430468199518,-89.424339890491,-89.42464763371058,-89.42461717970141,-89.4248148509964,-89.42505113443673,-89.42521012851276,-89.42547086797754,-89.42536214897126,-89.42740475594179,-89.4278030022367,-89.42842132824497,-89.42821556512902,-89.44865214533507,-89.47809423556349,-89.48111769768612,-89.48955535887906,-89.51019025077264],"lat":[45.55554417678113,45.55586571074404,45.5558468255423,45.55584052502646,45.55582171686714,45.55582848163996,45.55566943617981,45.5556513360082,45.55573838221719,45.55567565928789,45.55568680240476,45.5557035141201,45.55559276772672,45.55558460095249,45.55564078111264,45.55554833208516,45.55550873286119,45.55554114807794,45.5555016280944,45.5553426090468,45.55504243122277,45.55507301117602,45.55518162298637,45.55525847816993,45.55520093214857,45.55517122457329,45.55517569410467,45.5551194835398,45.5551209414855,45.55506534366316,45.55506232725698,45.55507078675652,45.55505973158712,45.55507940378394,45.55510518774931,45.55509148679085,45.55520220127659,45.5488645290587,45.5399492182638,45.5253791814005,45.51105051654617,45.49645271159367,45.48165873622173,45.46751446916959,45.43941817738671,45.42511348484446,45.41063883581855,45.39623612389087,45.38169400350206,45.36726686789513,45.35316644854709,45.33827945862035,45.30932509019234,45.29485062319151,45.28035327145157,45.25133710220557,45.23743419280525,45.22264446949977,45.20817293825806,45.19360830511719,45.1787698341326,45.16406766417604,45.14955760884003,45.13479534062477,45.12018135612165,45.12007409802554,45.12008540921414,45.12010182467657,45.12010087633464,45.12013521126551,45.12010685971154,45.12009271159781,45.11997784187272,45.11999902668003,45.12009250702674,45.12005583376575,45.12007368821565,45.12006300306314,45.12003834637942,45.12006984905787,45.12009391079572,45.12006280594849,45.12003044540759,45.12002785607586,45.1199549511697,45.11996503148452,45.11992090123289,45.1199836035294,45.11995659461104,45.11988158003335,45.11987031186987,45.11984786191481,45.11983321391013,45.11985237903426,45.11972647286817,45.11972856984797,45.1198130540695,45.11970417586284,45.11969232253745,45.11978792069479,45.11976320247091,45.1196557903696,45.11962422090799,45.11962542230767,45.1194659577049,45.11945963765397,45.11937649694652,45.1193730274783,45.11933963378374,45.11909639328545,45.11913968084905,45.13358392322227,45.14812609036485,45.16250629534871,45.16980735525681,45.1771080615435,45.19171620692473,45.2060583490479,45.22068229231012,45.23519453334921,45.2495486397099,45.26416200972983,45.27858628265172,45.2931861215499,45.30774190120335,45.32223730565273,45.3511886892184,45.36569983635383,45.38024980517859,45.39467720291483,45.40900635365464,45.42376751113965,45.43824961821608,45.45279263853415,45.46731779331526,45.4817506029293,45.49744390550273,45.51213714636291,45.52689356799009,45.54191208312536,45.55538219709733,45.55546283613251,45.5555525675041,45.55558207355145,45.55559640240475,45.55554417678113]}]],[[{"lng":[-91.53159658196142,-91.54040181266562,-91.54010083920647,-91.54005202108611,-91.53998445386665,-91.53999957560313,-91.53995226346946,-91.53986740683749,-91.53977913884596,-91.5397175564585,-91.53962782635455,-91.5397409518385,-91.53985935960898,-91.5400383340522,-91.54016134880578,-91.54015556289811,-91.54011720242971,-91.54005352769245,-91.54015408266373,-91.54031085382083,-91.54043466297007,-91.54070602143254,-91.54070613477921,-91.54067863011097,-91.54088249199552,-91.54104972054417,-91.54119875471365,-91.54118943309152,-91.54107120385565,-91.54111010935752,-91.54110766844711,-91.54105553283719,-91.54106453535121,-91.54099679550519,-91.54100377529184,-91.54104738139863,-91.54098036926827,-91.54099965783946,-91.52003558137491,-91.49972857853672,-91.47948962198319,-91.45899965886797,-91.45069417283008,-91.43918314247486,-91.43326425056874,-91.41847051850235,-91.39797104515419,-91.37776269098208,-91.35744345910763,-91.33689366414532,-91.31645807046775,-91.30626896866892,-91.29597362137527,-91.27509688410639,-91.25502204218485,-91.2343612652805,-91.21384433557864,-91.19345583424295,-91.17323223577641,-91.1465404423505,-91.1314398481904,-91.110613382764,-91.0695333538003,-91.04911086602802,-91.02797916829708,-91.00754963036015,-90.98709865166214,-90.96636847207918,-90.96147785375406,-90.95609924441622,-90.95107226466044,-90.94583088353397,-90.92522151830033,-90.92534465512712,-90.9252255148244,-90.92540244264406,-90.92532827021303,-90.92540421052368,-90.92522928039062,-90.92524319795653,-90.92534177619611,-90.9163248936774,-90.91498227690926,-90.9047089357957,-90.89593632130659,-90.89456009101043,-90.8842472626112,-90.87581654848758,-90.87471468458111,-90.86423276483467,-90.85397801552675,-90.84390142722384,-90.83547369872353,-90.83346295421684,-90.82304802733221,-90.81272470917361,-90.80245492544907,-90.79398881350903,-90.7914976864152,-90.78122309003474,-90.77361570704721,-90.77102790268108,-90.76050492126804,-90.7403416902123,-90.71904437164297,-90.69922534961998,-90.67877815689613,-90.6784672040795,-90.678373310708,-90.67865912257793,-90.67864105473573,-90.67918804890439,-90.67845326078519,-90.67807916545273,-90.67803372126858,-90.67910339547758,-90.67935020754588,-90.67976141127744,-90.67972890996774,-90.67929131176885,-90.67885489336358,-90.67878874219022,-90.69931925567612,-90.71381332196468,-90.71766229526503,-90.72052347400381,-90.74088930574547,-90.74331911234223,-90.76190238030225,-90.78254806750228,-90.79469057406817,-90.8031532119854,-90.82408094491538,-90.8372971945184,-90.84482133760076,-90.86555435082055,-90.88543549382813,-90.92574530596612,-90.96726543071588,-90.98811521598846,-91.00856890646459,-91.02917267900932,-91.05021613201953,-91.07080533425783,-91.09133151071116,-91.13312206166144,-91.17464953688568,-91.18938605641154,-91.19119746109337,-91.21612905986733,-91.23655556322193,-91.25711368298087,-91.27722960722056,-91.29754327680368,-91.31821510738526,-91.33861413463787,-91.3794299176474,-91.39993779952844,-91.41935823908432,-91.4296311770559,-91.45123570048887,-91.46016929109146,-91.47406277876355,-91.48057644114299,-91.50093393838151,-91.51100278384598,-91.51399521914345,-91.52107200593967,-91.53159658196142],"lat":[45.63753507273037,45.63762017036478,45.62496906684954,45.62337714037893,45.61649015497982,45.60913793908974,45.60326663840113,45.58801184812499,45.58071274888903,45.57374350315557,45.56062867663834,45.55174097185596,45.54474675553549,45.52998893917143,45.52266553881514,45.51550476555967,45.50823415600082,45.49997545553376,45.49396805844213,45.4870012648808,45.47948583604627,45.46519498341518,45.45098314411643,45.43663381155113,45.42947560223444,45.42223461688348,45.40797003425186,45.40091874978673,45.39339973273665,45.38810528957456,45.3789689514826,45.37161553715526,45.36445482118665,45.35013198561259,45.33561823635299,45.32118722024698,45.30667243234621,45.29213140574317,45.29201953678306,45.29161360575502,45.29164542189029,45.29150977069568,45.29158329995565,45.29169838135288,45.2917970637505,45.29199568194986,45.29161824627583,45.29153348000695,45.29164280215721,45.29172954714701,45.29175951831158,45.29180093194859,45.2918674008032,45.29197289356163,45.29202975082578,45.29203732598842,45.2921586854924,45.29206094370151,45.29201328252722,45.29210522552921,45.29212620926052,45.29191985089914,45.29183270575956,45.29185972221711,45.29183182371706,45.2919341763791,45.29189419476847,45.29191104250098,45.29193379449591,45.29192076463498,45.29193971360342,45.29198272163929,45.29210389844575,45.3064280975753,45.31364171889867,45.32094294791855,45.33545545696472,45.34999821681075,45.36459107390907,45.37162042391943,45.37940856204126,45.37932658101312,45.37933003216626,45.37919643443099,45.3790349554577,45.37898217663317,45.37879191213858,45.37835507841424,45.37836239933264,45.37822169833131,45.3780293888251,45.37797660956593,45.37806390958959,45.37803866520884,45.37815697859754,45.37798733611474,45.37784507996879,45.37787389130684,45.37785799893381,45.37782412813701,45.37784048822736,45.37781748951036,45.37783125121208,45.37806723354563,45.37792247624429,45.37786710530166,45.37787615959665,45.39234348473212,45.40680666670265,45.42135869797554,45.43584105049106,45.45025418892025,45.46411908695552,45.47884647355544,45.4933462821346,45.50845989677708,45.52307483932705,45.53766682599514,45.55245887175995,45.58136718115821,45.62450051233117,45.63833732596157,45.63838015177753,45.63845374715713,45.63846509976125,45.63845892298011,45.63856507585557,45.63862356344663,45.63869028745962,45.63864933289766,45.63853578141178,45.63843953707882,45.63844534371038,45.63847141082567,45.63852464247933,45.63858954739258,45.63868822638917,45.63898215666069,45.63909861101879,45.63907952466958,45.63898677428391,45.63884481788926,45.63884755201136,45.63887429414224,45.63887543241442,45.6389763149061,45.63879965010185,45.6386350796371,45.6386060430705,45.63873441300668,45.63863513055998,45.63906744381034,45.63903978252291,45.63891182271713,45.63889367937688,45.63880298987299,45.63858346166895,45.63828304541452,45.6379587279949,45.63785353647332,45.63768204857991,45.63763782529983,45.63771458189293,45.63777369663452,45.63787787953002,45.63778941599872,45.63777393158516,45.63770118253901,45.63753507273037]}]],[[{"lng":[-92.11366337749101,-92.15501853331179,-92.15515278647474,-92.15507136617538,-92.15501111133447,-92.15491728678587,-92.15484523986227,-92.15480754368062,-92.15484194484833,-92.15483331450891,-92.15491327829045,-92.15503815984803,-92.15511821163915,-92.15537530323779,-92.1556141022846,-92.15588704844473,-92.15581105485316,-92.15602165032234,-92.15615725979703,-92.15619843538013,-92.15622421195818,-92.15623248131557,-92.1562184917335,-92.1561947295031,-92.1561223870885,-92.15616154209718,-92.15620522572063,-92.15620375292058,-92.15629831597381,-92.15635415004952,-92.15646102759806,-92.15654582029711,-92.15683499774336,-92.15680479402693,-92.15684581220233,-92.15685119694554,-92.156811419175,-92.15672953281421,-92.15676158615754,-92.15675737541032,-92.15671583561019,-92.15663376244986,-92.15656997741489,-92.15646687873128,-92.15633922356604,-92.15628029198059,-92.1561265340722,-92.15621425467192,-92.15639790416559,-92.13550952606205,-92.10495970522386,-92.0946930022622,-92.07439950374116,-92.05409964442735,-92.03382207261545,-92.0133088565962,-92.00300184962579,-92.00017697919176,-91.99309702050559,-91.97269380421724,-91.968781977522,-91.96256402811559,-91.9422908830785,-91.93213173304765,-91.92192492044029,-91.91161368859429,-91.90636946358035,-91.8962505581797,-91.89109547704027,-91.87090208987217,-91.85047175371923,-91.82952173675811,-91.8095818076583,-91.78883695765528,-91.77872058255549,-91.76847831976696,-91.76115750983631,-91.75804933483312,-91.75012015188739,-91.74793116292818,-91.72725237909266,-91.71698644904697,-91.69624586915748,-91.68621350736582,-91.67591082548083,-91.66560699114719,-91.64516726456617,-91.63843538161865,-91.63467749982843,-91.62441735757322,-91.61537304878119,-91.61395352328111,-91.60345068847676,-91.59323906221019,-91.57806160340928,-91.57496455050547,-91.57298489699269,-91.56262773564382,-91.5422862834123,-91.54202071782879,-91.54218224460166,-91.54194919533776,-91.541595047477,-91.54152999551998,-91.54148512183912,-91.54118416753448,-91.54127598085907,-91.54099965783946,-91.54098036926827,-91.54104738139863,-91.54100377529184,-91.54099679550519,-91.54106453535121,-91.54105553283719,-91.54110766844711,-91.54111010935752,-91.54107120385565,-91.54118943309152,-91.54119875471365,-91.54104972054417,-91.54088249199552,-91.54067863011097,-91.54070613477921,-91.54070602143254,-91.54043466297007,-91.54031085382083,-91.54015408266373,-91.54005352769245,-91.54011720242971,-91.54015556289811,-91.54016134880578,-91.5400383340522,-91.53985935960898,-91.5397409518385,-91.53962782635455,-91.5397175564585,-91.53977913884596,-91.53986740683749,-91.53995226346946,-91.53999957560313,-91.53998445386665,-91.54005202108611,-91.54010083920647,-91.54040181266562,-91.55356149358811,-91.5559357181597,-91.5610142032376,-91.56868932212984,-91.57113289349174,-91.57647604966706,-91.58121758273789,-91.59161090458251,-91.59321096253591,-91.6021373839577,-91.61876127779743,-91.62278847487264,-91.62483579524924,-91.63614125313285,-91.6385419170113,-91.6430023138726,-91.65265958692039,-91.66223220896238,-91.67260304445821,-91.68279818083089,-91.69314857330552,-91.70338224031752,-91.71380473387606,-91.73404648666778,-91.74465086900011,-91.75071319722262,-91.75434648402377,-91.76470349623588,-91.77502367105737,-91.77925175092835,-91.7858302894133,-91.79608827586068,-91.79732484621633,-91.80624979405484,-91.81653097817987,-91.81828450403391,-91.82692318892919,-91.83681366039934,-91.84776716135367,-91.85402076188618,-91.85789955516987,-91.86816512505942,-91.87522221168483,-91.87813980337833,-91.88852244524227,-91.90063511211315,-91.90879646506153,-91.91914656957287,-91.92246660124817,-91.92938226729686,-91.93969868516847,-91.95006577073036,-91.96017365398552,-91.97058365776735,-91.98088903973915,-91.99122395075109,-92.02125796523521,-92.03124265709774,-92.04378825883789,-92.06192242196769,-92.07180839232944,-92.0823677891283,-92.09298538271814,-92.10326983616298,-92.11366337749101],"lat":[45.64001869865154,45.63971233127985,45.62550474775153,45.61103286353522,45.60384452918684,45.59657356616836,45.5893989461425,45.5822517913123,45.57500932780682,45.57454312786079,45.56790454268047,45.5614034980193,45.55344794467187,45.53880524525484,45.51073051884436,45.50174795182225,45.49595552552182,45.48188119893825,45.46742290044529,45.45311711914626,45.44844730091906,45.43959622416008,45.43853717277731,45.41663669782002,45.40986974784268,45.40631410763773,45.39784148207654,45.39541062366553,45.38821125748593,45.38100079959963,45.3670086327683,45.35973965607744,45.34577606940935,45.3380937758505,45.33087847891645,45.32369028790659,45.31666636995761,45.30934057383661,45.30168603397389,45.29488195386064,45.28876351845253,45.28171167466545,45.2744681910128,45.26727917336686,45.26014490223116,45.25284645337584,45.23830366441813,45.22398237211971,45.20946964562387,45.20936790672199,45.20929707462571,45.20929849788401,45.20913555220884,45.20891425671452,45.20874436993879,45.20895282154941,45.20883586654475,45.20878382024267,45.20880380216846,45.20873160176244,45.20869643114742,45.20869486758836,45.20861865428264,45.20860644185574,45.2085378681285,45.20844002783444,45.20847198908199,45.20848431976413,45.2085169087495,45.20842865828212,45.20855389647251,45.20828604321038,45.20835419245635,45.20830066252983,45.20833009907145,45.20832964566718,45.20836006005348,45.20832636293519,45.20829482601992,45.20829826248801,45.20823409095576,45.20822917063664,45.20815889628204,45.20809879266024,45.20797960287133,45.20794220941232,45.20781128382841,45.20770386907206,45.2077411450927,45.20781023221323,45.20767357795186,45.20762895222263,45.20747342373849,45.2071561749465,45.20705050895698,45.20703926302877,45.20704208487366,45.20696687008787,45.2064895802148,45.22083600409437,45.22758763204046,45.23532182730639,45.24324668328673,45.24958389634961,45.2567992447409,45.27205021509599,45.27847155915706,45.29213140574317,45.30667243234621,45.32118722024698,45.33561823635299,45.35013198561259,45.36445482118665,45.37161553715526,45.3789689514826,45.38810528957456,45.39339973273665,45.40091874978673,45.40797003425186,45.42223461688348,45.42947560223444,45.43663381155113,45.45098314411643,45.46519498341518,45.47948583604627,45.4870012648808,45.49396805844213,45.49997545553376,45.50823415600082,45.51550476555967,45.52266553881514,45.52998893917143,45.54474675553549,45.55174097185596,45.56062867663834,45.57374350315557,45.58071274888903,45.58801184812499,45.60326663840113,45.60913793908974,45.61649015497982,45.62337714037893,45.62496906684954,45.63762017036478,45.63778771304891,45.63779023909183,45.63785419119117,45.63778605449095,45.63781656141612,45.63793806373886,45.63802434044425,45.63809809750373,45.63808983051793,45.63817185625908,45.63823705227278,45.63828560139403,45.63820021384934,45.63808871912988,45.63811727346231,45.63836253669366,45.6384767750434,45.63853404722884,45.63857263549406,45.6386083657641,45.63869939130687,45.63876140766546,45.63876903561226,45.63883055393067,45.63875497363039,45.63873918978381,45.63875148040032,45.63872686732081,45.63872945476923,45.63874576831141,45.63873362400915,45.63876002763331,45.63874562903612,45.63872909766935,45.63872854375935,45.63871694324042,45.63875117139853,45.63877023319466,45.63882636760599,45.63883411054454,45.63887287660226,45.63892024401142,45.63885292189536,45.63885390179163,45.6389003296046,45.63888045136417,45.63893105463045,45.63905680536737,45.63908814051579,45.63923586910406,45.63927707261691,45.63934516201589,45.63946514618056,45.63953176229269,45.63954186276924,45.63966077885307,45.63983977045125,45.63987024738412,45.63994857165959,45.64004403554728,45.6401250616222,45.64015526337032,45.64024024236042,45.64010197178091,45.64001869865154]}]],[[{"lng":[-92.50912687898524,-92.52831073700317,-92.52840925064898,-92.52865327581685,-92.52901430836431,-92.52910252214664,-92.52908821353071,-92.5532800417247,-92.57001475290026,-92.59069950379042,-92.61139219206645,-92.63197974055431,-92.65181989355125,-92.66265009796685,-92.682606001572,-92.68397486692997,-92.703160131638,-92.70662562993689,-92.71340799668801,-92.72370996193828,-92.73401256581566,-92.7442982881692,-92.7455854709915,-92.75021644795214,-92.75458530156479,-92.76509463049079,-92.77559646919522,-92.78659058446763,-92.79643982071855,-92.80679977317085,-92.80766820960426,-92.8169880840569,-92.8264098855547,-92.82741510666163,-92.8376465911159,-92.84797198756266,-92.85829802271307,-92.88460828209027,-92.88690823688749,-92.88768431017988,-92.88858272343465,-92.88897573699536,-92.88914823405456,-92.8892413256408,-92.88915911767357,-92.88884051148241,-92.88788955412093,-92.8876539449369,-92.88755848302358,-92.88734542341011,-92.88691897783764,-92.88676892869684,-92.88673070122344,-92.88674115047104,-92.88669354138794,-92.88672186760566,-92.88685128268482,-92.88708457166291,-92.88747258174946,-92.88786057998898,-92.88797138773482,-92.88790465634092,-92.88788139519075,-92.88783254953358,-92.88739636203283,-92.88699791547951,-92.88677298443999,-92.88667575112623,-92.88664819353367,-92.88635092121083,-92.8858536476873,-92.88519671078826,-92.88434686343813,-92.88404792876075,-92.88325846174637,-92.88276258465825,-92.88258516608684,-92.88250797799446,-92.88237894236883,-92.88253546019547,-92.8832103127634,-92.88393529143849,-92.88466107824381,-92.88504235230832,-92.88511682835399,-92.88538674897194,-92.88574043616194,-92.88607552489547,-92.88627498715529,-92.88639246927801,-92.88638079920666,-92.88632931125522,-92.88628044909704,-92.8861612029135,-92.88575860415011,-92.88538128904611,-92.88479472307451,-92.8840002612604,-92.88337473879437,-92.88309455006026,-92.88313046127119,-92.88384097186338,-92.88407983786261,-92.88438827377119,-92.88456910711862,-92.88460145234886,-92.88465856924633,-92.8847635979006,-92.88468909244992,-92.88450027978173,-92.88409160139477,-92.88368119709681,-92.88331650031739,-92.88265302840074,-92.88185621280446,-92.88113341795861,-92.88044607704065,-92.8797144591458,-92.87905242720211,-92.8780739126793,-92.8768916663583,-92.87641394660065,-92.87582769957662,-92.87539433546857,-92.87503058086897,-92.87453345387696,-92.87379041447419,-92.8726583764857,-92.87169028997766,-92.87113243452298,-92.87040575137836,-92.86975971257711,-92.86885131586486,-92.86840686660977,-92.86754720077629,-92.86614466448781,-92.86515700032747,-92.8644657417444,-92.86342220024392,-92.86173354491564,-92.8609421855062,-92.85973029167627,-92.85844743149183,-92.85746279768514,-92.8566239859167,-92.8554077059681,-92.85391892196323,-92.85297776199369,-92.85191036848649,-92.85102412887596,-92.85001992731503,-92.84883634391049,-92.84743341677682,-92.84614794237059,-92.84540093556338,-92.84465526405755,-92.84380550377719,-92.84260532880917,-92.84202766152694,-92.84039698684806,-92.83841849564133,-92.83666124412495,-92.83497751745648,-92.8342267034387,-92.83270365644356,-92.83135908929023,-92.82936602543595,-92.82797143945004,-92.82570331817367,-92.82279019977301,-92.82189534493621,-92.82122676113843,-92.82016950088546,-92.81905876001011,-92.81775122414716,-92.81632399262783,-92.81452718494955,-92.81324490873841,-92.81199435727851,-92.81103714883083,-92.8099846230436,-92.80922460156829,-92.80836923971196,-92.80734107025984,-92.80650662263497,-92.80548488626346,-92.80411884724431,-92.80333531262109,-92.80230406836037,-92.80155133446867,-92.80089827852311,-92.79997831100711,-92.79811226743327,-92.79632061671845,-92.79459689605879,-92.79341768009711,-92.79235049073493,-92.79123667551458,-92.7902614035341,-92.78950512850687,-92.78861964430537,-92.78778164187511,-92.78726491312668,-92.78672975893669,-92.78605261158727,-92.78480609878608,-92.783626718866,-92.78266893323061,-92.78146646255959,-92.78028451177093,-92.77905335961107,-92.77690634464949,-92.77611793259767,-92.77512934139874,-92.77388965728076,-92.77304483880592,-92.77229453990725,-92.77133769346699,-92.77060880464923,-92.76984538464544,-92.76885735384859,-92.76793357585869,-92.76739812633637,-92.76615909359329,-92.76504160775676,-92.76440355348701,-92.76358208824948,-92.76303481276661,-92.76238405976063,-92.76154206255103,-92.76049699119832,-92.75957259224958,-92.75887186745213,-92.75784998339559,-92.75665617736485,-92.75590058050153,-92.75432728832791,-92.75321347492931,-92.75192731624976,-92.75021487238068,-92.74906039084014,-92.74803499174882,-92.74718069572005,-92.74591649780932,-92.74469392486816,-92.74186253325826,-92.74006543360855,-92.73945466585948,-92.73702166110259,-92.73395708729765,-92.73317322478606,-92.73272055180189,-92.73199847493389,-92.73134364489886,-92.72963514984377,-92.72836927533814,-92.72680806467739,-92.7259701898478,-92.72520842338321,-92.72461105271356,-92.72455945104156,-92.72456680427992,-92.72465398450395,-92.72484824928716,-92.72534466061128,-92.7260235223919,-92.72630608694226,-92.72640829531063,-92.72638318820921,-92.72625137230868,-92.7261489679893,-92.72614109809528,-92.72623702769749,-92.72643808971976,-92.72658193302668,-92.72688756081882,-92.72720071373925,-92.72735805674465,-92.72757454694317,-92.72774062318581,-92.72770545531473,-92.72773523886241,-92.72770184716668,-92.72763814550711,-92.72740152617091,-92.72713376943565,-92.72704394229724,-92.72685661499591,-92.72683151842537,-92.72690139691537,-92.72679774788409,-92.72663607758457,-92.72622749205634,-92.72547906034521,-92.72501497221052,-92.72353196219547,-92.72238495289056,-92.72058990071774,-92.7189923134368,-92.71647722520902,-92.71505283273505,-92.71375571888122,-92.71284927354547,-92.71244098915628,-92.71154900609557,-92.71045632275847,-92.70973382979726,-92.70853230108983,-92.70784295411224,-92.70717550870945,-92.70644481929824,-92.70577643027801,-92.70496939926514,-92.70389885978582,-92.70285440276582,-92.70181827087823,-92.70088418654068,-92.70034980262173,-92.69944750345906,-92.69823434108415,-92.69737840265424,-92.69659970742384,-92.69549571695198,-92.69445125615604,-92.69356162585539,-92.69233815567415,-92.6921829769765,-92.69144868547635,-92.69061328412263,-92.68964293353407,-92.68779391551163,-92.68606752246778,-92.68538118433969,-92.68440676081849,-92.68390326169636,-92.68329947675831,-92.682715919396,-92.68224101482873,-92.68204919035715,-92.68193164663545,-92.68171013466979,-92.68136440975151,-92.68122622560441,-92.68113222047593,-92.68100485244257,-92.68095420924334,-92.68086228876884,-92.68046705162449,-92.67976895895941,-92.67936539401181,-92.67838167616489,-92.67737691821576,-92.67555712119639,-92.67416239754299,-92.6715080114288,-92.66888337386445,-92.66589149710093,-92.66382147271467,-92.66214965773582,-92.66165082727908,-92.66097179551403,-92.65943876849592,-92.65691960753989,-92.65572192815071,-92.65473895783079,-92.65395971942944,-92.6532734549217,-92.65274828519131,-92.65224299818541,-92.6517081063695,-92.65068914291112,-92.64941095984763,-92.64840877107093,-92.64751215943112,-92.64673773406174,-92.64645743075612,-92.64645873175294,-92.64647954003371,-92.64673446332097,-92.64712039986632,-92.64748560445194,-92.64783543528367,-92.64812755032438,-92.64833693595574,-92.64860557433921,-92.64879749067494,-92.6489792555916,-92.64906489123385,-92.64884302965167,-92.64861552103096,-92.64852998365269,-92.64843229731031,-92.64854835659814,-92.64901610389695,-92.64946475341428,-92.64974709535446,-92.64990819089138,-92.64996865258688,-92.65008469120365,-92.65001947579452,-92.64986496951245,-92.64955153701315,-92.6491289856711,-92.64837917346063,-92.64758719198228,-92.64694769941768,-92.64658238589888,-92.64653416594545,-92.64662386553846,-92.64689725694713,-92.64756680451441,-92.64818080584523,-92.64839700704138,-92.64832002283134,-92.64813558158392,-92.64803915482246,-92.64800515269378,-92.64812119092382,-92.64828143104629,-92.64879037335305,-92.64935523089636,-92.64980250274053,-92.65020270965927,-92.65047560669531,-92.65055468870604,-92.65042012161253,-92.65020322941945,-92.65008081556131,-92.6501436911649,-92.65013477835352,-92.65022033505446,-92.65028116067997,-92.6502361893312,-92.6501620215188,-92.65022937759429,-92.65070698068028,-92.65172785253823,-92.65323521965895,-92.65534620786372,-92.65711380714085,-92.6587848341419,-92.65957411911587,-92.66090297352386,-92.66236999195269,-92.66327840909075,-92.66417864510902,-92.66526814372919,-92.66662145617489,-92.66783370303337,-92.66892388148773,-92.66987222858386,-92.6703378021363,-92.67142001521712,-92.67233887062963,-92.67338786214579,-92.67453691336405,-92.67562870099272,-92.6766329947669,-92.67692457723464,-92.67726028078005,-92.67755982009064,-92.67813454387941,-92.67830900598146,-92.67848185011016,-92.67841074881514,-92.67818555782584,-92.67801925832886,-92.67789339415198,-92.67806785345573,-92.67843844808972,-92.67927586221238,-92.67986933764934,-92.68076723628425,-92.68250206404669,-92.68476715363231,-92.68730246160663,-92.68831277239259,-92.68906808187,-92.69001085444094,-92.6914740027775,-92.69257160403986,-92.69398844697028,-92.69529317593427,-92.69633092344925,-92.6974799044782,-92.70038292198363,-92.70192723389381,-92.70289604042323,-92.70352496600989,-92.70402366835116,-92.70401494311844,-92.70388181971332,-92.70360045568779,-92.70331044927191,-92.70269588720348,-92.70229137802308,-92.70176624289775,-92.70130043952891,-92.70023544771689,-92.70011026405955,-92.69945344618377,-92.69938302991582,-92.69927473643236,-92.69922040940249,-92.69906066144023,-92.69895818059079,-92.69892694023248,-92.69910486933077,-92.69971017558831,-92.70027509082797,-92.70100842326489,-92.70202083827392,-92.70279523071349,-92.7035099482338,-92.70404305975725,-92.70546535120452,-92.70669492441225,-92.70818292728862,-92.70864720659289,-92.70933089473876,-92.71058793802267,-92.71253723160517,-92.71323200958585,-92.71378642303391,-92.71442929485286,-92.71609281768507,-92.71757108489361,-92.7186524971353,-92.71973844135776,-92.72077742089346,-92.72208929596503,-92.72366614168243,-92.72455415525242,-92.72546062617467,-92.72684687394033,-92.72772817535854,-92.72826748638673,-92.72893710234661,-92.72984613577887,-92.73028661717775,-92.73082380768663,-92.73142924216553,-92.73199400370468,-92.73246373701002,-92.73305941372926,-92.7339108712724,-92.73489880379677,-92.73536849404175,-92.73600395641192,-92.73699931686086,-92.73742999209136,-92.73796696528655,-92.73876969795212,-92.73942549111923,-92.74012318787497,-92.7404333351968,-92.74121851573763,-92.74236235287918,-92.74286414231439,-92.74390498365294,-92.74473738510501,-92.74560196859186,-92.74804588336596,-92.75020219805565,-92.75082776473994,-92.75145126363167,-92.75242036604814,-92.75380291715955,-92.75489587166737,-92.75618716781646,-92.75742695872536,-92.75858974659631,-92.75984161659783,-92.76079552474799,-92.76155066730857,-92.76199366040505,-92.76249601891246,-92.76265608133787,-92.76271571168122,-92.76258912118956,-92.76240169164714,-92.76206529337701,-92.76187023698058,-92.76154578054918,-92.76117069757947,-92.76070108301776,-92.76030809208106,-92.75973527159489,-92.75956619393475,-92.75742616511175,-92.75605813353424,-92.75577157256858,-92.75529218408059,-92.75444549923489,-92.75375732660152,-92.75334153717196,-92.75278012523188,-92.75243291635819,-92.75230368366853,-92.75225930604847,-92.75229731180369,-92.75260087445488,-92.75290028534938,-92.75343931716593,-92.75398755355019,-92.75430657724912,-92.75519101548846,-92.75608124772863,-92.75711363381252,-92.7576756062396,-92.7582748078116,-92.75899317767964,-92.75964583206543,-92.76017426164128,-92.76042501163172,-92.76056018973649,-92.76030904356038,-92.76015877335587,-92.75985084916496,-92.7596889130308,-92.75921865199517,-92.75881253960236,-92.75860375877534,-92.7585175424605,-92.75830007501341,-92.75805288259816,-92.75784506250039,-92.75772485840464,-92.75773685260052,-92.75782199953036,-92.75785868456332,-92.7578075780019,-92.75767787834212,-92.75755406325217,-92.75736547224605,-92.75703647484507,-92.75649050700964,-92.75579158191428,-92.75530711935004,-92.75491464423297,-92.7542045523371,-92.75342298616013,-92.75291980597224,-92.75282656852239,-92.75250979964126,-92.7523422231444,-92.75238820309838,-92.75261093986192,-92.75305722740373,-92.75356619601625,-92.75428656503641,-92.75482978188886,-92.7556027743061,-92.7562374366173,-92.75743950224465,-92.75802883195257,-92.75352132689103,-92.75021395364367,-92.73290966180095,-92.72278655852475,-92.71261273267812,-92.69221081671806,-92.68202520402694,-92.67196757808334,-92.66172424818288,-92.65153866233487,-92.64074802086215,-92.63069481522588,-92.62524446501618,-92.62062901899071,-92.61026956627276,-92.60002565232116,-92.58981711979054,-92.57984165811582,-92.5498332223933,-92.53452292688951,-92.52951673737407,-92.50834361369449,-92.50019774384339,-92.47798498398218,-92.4677192253547,-92.44733281675076,-92.42683930518298,-92.41669871212848,-92.40655848259058,-92.38566055741732,-92.37516172981019,-92.36526776433608,-92.35514932022024,-92.34490222299401,-92.33465263573814,-92.32441844216308,-92.30413014324748,-92.28395776429369,-92.27191008510593,-92.26024343509074,-92.25020106994458,-92.2396033515594,-92.22913154220603,-92.2186916530765,-92.20826608572854,-92.19785148233714,-92.18758863711524,-92.17711184105589,-92.15639790416559,-92.15621425467192,-92.1561265340722,-92.15628029198059,-92.15633922356604,-92.15646687873128,-92.15656997741489,-92.15663376244986,-92.15671583561019,-92.15675737541032,-92.15676158615754,-92.15672953281421,-92.156811419175,-92.15685119694554,-92.15684581220233,-92.15680479402693,-92.15683499774336,-92.15654582029711,-92.15646102759806,-92.15635415004952,-92.15629831597381,-92.15620375292058,-92.15620522572063,-92.15616154209718,-92.1561223870885,-92.1561947295031,-92.1562184917335,-92.15623248131557,-92.15622421195818,-92.15619843538013,-92.15615725979703,-92.15602165032234,-92.15581105485316,-92.15588704844473,-92.1556141022846,-92.15537530323779,-92.15511821163915,-92.15503815984803,-92.15491327829045,-92.15483331450891,-92.15484194484833,-92.15480754368062,-92.15484523986227,-92.15491728678587,-92.15501111133447,-92.15507136617538,-92.15515278647474,-92.15501853331179,-92.15514114630312,-92.15488765689244,-92.15495622585586,-92.15490774641728,-92.15511726930946,-92.15435603242534,-92.17509886817336,-92.23707660848459,-92.25766531375474,-92.28377612856691,-92.2945815663065,-92.30445544819023,-92.32505645859774,-92.34548081353492,-92.3660922311381,-92.40668855792777,-92.4271817273182,-92.44433274578034,-92.44738781216243,-92.46772789452082,-92.48843723386254,-92.50912687898524],"lat":[45.72854227446285,45.72871447020413,45.69977453689647,45.6853874088379,45.67102297345267,45.65654191243848,45.64215928870291,45.64235295148369,45.64243217524992,45.64267650327479,45.64302715879396,45.64302825712089,45.64326070919062,45.6432658181864,45.64321343493071,45.64321727635729,45.64315970989523,45.64314063704755,45.64313046479359,45.6431833901999,45.6432078065708,45.64331326808035,45.64334421126961,45.64332729602884,45.64336376985664,45.64338602548049,45.64343506246673,45.64345592858903,45.6433642624764,45.64357478714314,45.6436035085575,45.64378354577753,45.64390797778628,45.64393710259387,45.64411650139588,45.64418519127268,45.6442816235291,45.64422481609061,45.64421447284126,45.64341183755801,45.64262682281016,45.6420970561203,45.64160719207811,45.64101582231672,45.64037657183862,45.63995145390847,45.63923010866918,45.63897616170233,45.63855439647896,45.63777949731445,45.63716695281781,45.63665036649449,45.63590648868625,45.63419037778874,45.63325602465324,45.63237150662213,45.6315193092047,45.63077699959281,45.62967523254638,45.62857346004849,45.62784325228495,45.62654483170671,45.62512491965117,45.62465809430687,45.62337802715213,45.62234846743186,45.62181689940116,45.62088379732836,45.6203472366789,45.61936687193611,45.61833981216962,45.61709118919588,45.61592563622342,45.6153959293759,45.6144454346291,45.61343576362815,45.61238316682928,45.61136235372778,45.61029165858621,45.60949053677954,45.60819982383611,45.60693371897211,45.6051995228787,45.60444503894357,45.60397509410741,45.60249544970794,45.60072733733066,45.5995577096388,45.59863454038551,45.59804255281448,45.5968468132867,45.59584335652883,45.59489102506158,45.59449573657736,45.59386458069943,45.59324178346586,45.59239024091531,45.59133579862254,45.59020788611051,45.5895561870412,45.58929536764353,45.58582038975472,45.58422001181656,45.58253124091743,45.58172949882155,45.58091463128013,45.58009857723007,45.5792638727819,45.57828687181578,45.57749447208494,45.57625700363396,45.57547020129117,45.57509855036363,45.5746646824821,45.5740434637006,45.57342037516113,45.57300453747903,45.57269388813444,45.57229484592297,45.57197241609527,45.57153471534251,45.57135604132049,45.57098938770481,45.57071451751288,45.57035969400066,45.56980063412598,45.56926464284489,45.56835701034198,45.56775803333287,45.56745983717805,45.56723564535261,45.56714781037611,45.5672398450176,45.56723357689626,45.56730749624524,45.56737704059571,45.56736751990427,45.56735898836335,45.56721133725795,45.5669937751356,45.56696185783689,45.56690559016764,45.56690284529638,45.56694493866284,45.56694849531747,45.56680565298941,45.56663529732621,45.56656318901971,45.56643402847014,45.56647360832967,45.56661964121552,45.56663174683868,45.56670163527363,45.56664705750789,45.5665098484987,45.56640691427879,45.56618562260523,45.5658689685449,45.56566676113079,45.56513521173514,45.56454308851153,45.563945996322,45.56332904930747,45.56312266679963,45.56276160382971,45.56250917722796,45.56212541285245,45.56186518017801,45.56140153193464,45.56086715465671,45.56073344598962,45.56068021357689,45.56074965698681,45.56074277770074,45.56074018669652,45.56081028682002,45.56088892342726,45.56090309605709,45.56105542877728,45.5611482021015,45.56131307335987,45.56140941890541,45.56156942261935,45.56173310860028,45.56182282512678,45.56210785463467,45.56241877193174,45.56254209507284,45.56263661325055,45.56288012115308,45.56313918161218,45.56349085795569,45.56416895729799,45.56485419976946,45.5654162367485,45.56601667708115,45.56638933804435,45.56681544547171,45.56704744415745,45.56722175861343,45.56727771186113,45.56728974555091,45.56731980500275,45.5674712650541,45.56774770430668,45.56798627690632,45.56808423983241,45.56817678872907,45.56831017398813,45.56835640841066,45.5684038302797,45.5683953243292,45.56841450167816,45.56838621810279,45.5682605186016,45.56814265053897,45.56793528317466,45.56754277432268,45.56726567830142,45.56679926409807,45.56626853279511,45.56554552547055,45.56519451663556,45.56457477634134,45.5639261976147,45.56349102290397,45.56283526164967,45.56224205250483,45.56154726713744,45.56097806171075,45.56029280143344,45.55955286193689,45.55884182623932,45.55812166939501,45.55742253198784,45.55710266657756,45.55670745482057,45.55612786830753,45.5555524247951,45.55483140500856,45.55442602911582,45.55413848847436,45.55381250237096,45.55318414239094,45.55239049406978,45.55046589450966,45.54952116018556,45.54913751275709,45.54728930339265,45.54511862084643,45.54472164768733,45.54454177037842,45.54440322013786,45.54412410004407,45.54347187087713,45.54279160099494,45.54161598655482,45.54061323265737,45.53964409530323,45.53851463193149,45.5379521616593,45.53708561630999,45.53633868174284,45.53576190228677,45.53531686464617,45.53457267834618,45.53378619586534,45.53335056797568,45.53283134652204,45.53214139751515,45.5315548215808,45.53087878994921,45.53031335665985,45.52937298618527,45.52878053086121,45.52795861342805,45.52729235150203,45.52647453938518,45.52584546782207,45.52520015682031,45.52447302021787,45.52254040942867,45.52134516377541,45.52053263260171,45.51870089972392,45.51723446273893,45.51690749830492,45.51659974093899,45.51608051815102,45.51548982703319,45.51487684251447,45.51458647043061,45.51378161705731,45.5130889501859,45.51266684493856,45.51155851163524,45.51077125834978,45.50984360447057,45.50891121933045,45.50735086883942,45.50643174710342,45.50559621812535,45.50468163148252,45.50387727677495,45.50275474047067,45.50155033063486,45.50087382271503,45.49997520409082,45.49947173177711,45.49891598432529,45.49806693625481,45.49697337097442,45.49607436710446,45.49481704408964,45.49359397473098,45.49253553482077,45.49155286972739,45.49068169660532,45.48933371345372,45.48766396309388,45.48624623214092,45.48490430714997,45.4834569800927,45.48221695363949,45.48060871117804,45.47768289272425,45.47701088896535,45.47607519128783,45.4750895486015,45.47436755922016,45.47278187273687,45.47169621643398,45.47124429613056,45.47095554785955,45.47072491359402,45.47046175791952,45.47010248124946,45.46943797979758,45.469026737828,45.4686306276345,45.4681160036013,45.4675699800722,45.46726099273759,45.46683001354644,45.46622654026482,45.46567302194607,45.4652943110489,45.46474888527415,45.46405473240463,45.46385605177026,45.46335931067517,45.46294969221809,45.46248097622502,45.46215022981566,45.46122448749882,45.46040206621709,45.45962247968082,45.45906434042151,45.45860095608588,45.45846519410537,45.45816935137817,45.45751141396011,45.45682521965231,45.456489099222,45.45600957725107,45.45567214582309,45.45522059017275,45.45452225275948,45.45319954422548,45.45229327183675,45.45051498052724,45.44793651229147,45.44598396761366,45.44418537100163,45.44236648806771,45.44164500279414,45.44061375434192,45.4394869723001,45.43809485354388,45.43687297089436,45.43573764027107,45.43426567659863,45.43366931178937,45.43288470682486,45.43178705760183,45.43115869687143,45.43030497088705,45.42950580063791,45.42897367992198,45.42832073278177,45.42754297239139,45.42651401930042,45.42583566051618,45.42478514402179,45.42385602763211,45.42305228581449,45.42176641319231,45.42095037995825,45.41975162684568,45.41835849007699,45.41768584647278,45.41677497986935,45.41616087901085,45.41538109026353,45.41475811737335,45.41423567587393,45.41379407417667,45.4132922424376,45.4125796136867,45.41210576598036,45.41169136195348,45.4111398450843,45.41050248191253,45.40991523902245,45.40912232833345,45.40811922430866,45.40739202275355,45.40671366307549,45.40593019843823,45.40524272122701,45.40469233791545,45.40426620299389,45.40387547391973,45.40340106629358,45.40299191774854,45.40221529216782,45.4017871372639,45.40127014703403,45.40104365166894,45.40085314096367,45.40057379848151,45.40029502955681,45.39986288259608,45.39932733173191,45.39866753978634,45.39836165173268,45.3980954628037,45.39771387830976,45.39709263689883,45.39649735263405,45.39593804498397,45.39546058333589,45.39494465987141,45.39423421755888,45.39367631590911,45.39294475700015,45.39205293505075,45.39101597678663,45.39012126222178,45.38924626295051,45.38849665840016,45.3879394924763,45.38637211053242,45.38499869501793,45.38377862882376,45.38259052432065,45.38123047015562,45.38010649706768,45.37951062528338,45.37880963996696,45.37786702463308,45.3770214723018,45.37654930326165,45.37604285325993,45.37557700858611,45.37497525804731,45.37458084688561,45.37399476715682,45.37352259591947,45.37304582676172,45.37254965336971,45.37210252880755,45.37185640735117,45.37110509409568,45.3701331266824,45.36915531321707,45.36868088416207,45.36802173565478,45.36715900934622,45.36587669081636,45.36517512855051,45.36446602093073,45.363984585468,45.36357863598148,45.36292757212508,45.36038971196363,45.35926173275981,45.35844160420841,45.35719631736344,45.35579771430427,45.35458497105501,45.35334029495766,45.35259308671385,45.35166436348784,45.3501194106688,45.34884627645427,45.34762831876338,45.34661711146511,45.34490052404387,45.34433189319879,45.34292632006404,45.34247734655397,45.3417519128266,45.3406094446143,45.33983346926194,45.33818973901536,45.33702084815176,45.33559552936325,45.33436825987925,45.33333210109879,45.3322233161546,45.33077823799727,45.32949462898875,45.32851622701169,45.32784479958248,45.32623414155562,45.32471467399505,45.32294658480849,45.32238084840944,45.32178402274264,45.32083602086563,45.31947267613292,45.31910960099208,45.31888825866045,45.31845721277164,45.31729132284811,45.31635485492759,45.31534118459973,45.31442303242023,45.31354875112898,45.31273771053069,45.31181625467703,45.31137930137527,45.31082037789899,45.31002494669758,45.30944917008516,45.30891643983826,45.3080340333514,45.3070159366313,45.30646811865267,45.30590054621752,45.30521038126483,45.30469446514363,45.30425001970977,45.30387175782724,45.30319256429489,45.30228505468441,45.30184060057429,45.30127121018599,45.30051934507042,45.3002834125566,45.30021877466546,45.30006111567978,45.29990641648495,45.2996123045755,45.29942314001917,45.29890188487632,45.29818128634327,45.29789186781088,45.2970696456192,45.29651235314612,45.29611011662697,45.29485577801452,45.29374671626366,45.29348016011392,45.29317088725554,45.29290448014863,45.29255945011139,45.29230803382681,45.29210357452252,45.29184802614756,45.29152512705061,45.2910099028079,45.2904321086217,45.28980736006263,45.28932011838599,45.28854564007545,45.28779632368661,45.28699767790638,45.2859093007883,45.28407695733905,45.28220433456816,45.28172409369343,45.28060562212481,45.27945349726632,45.27837285209372,45.27736011366958,45.276680845009,45.2762342956329,45.27411101185249,45.27272293329532,45.27238329392109,45.27211750430499,45.27135818248743,45.27031766120111,45.26934033466024,45.26788043112705,45.26678836035011,45.26615067347178,45.26523302255291,45.26348185837833,45.26214004882213,45.26123154423653,45.26019629553208,45.25935998277821,45.25884932060975,45.25785804888968,45.25698702493992,45.25600904478975,45.25545818722415,45.25516634510461,45.25480241833269,45.25409351480656,45.25335273173307,45.2524459404497,45.25068342093762,45.24904332354481,45.24797239066565,45.24668023134817,45.24586949981435,45.24375761404351,45.24246782202543,45.2411907030667,45.24042989840859,45.23998451037599,45.23893335605714,45.23819349296187,45.23621210062768,45.23494652131752,45.2336622949207,45.23289851902815,45.23184262454826,45.23068454780764,45.22964785299148,45.22879443831252,45.22807494183004,45.22692692168296,45.22566106480011,45.22477147496014,45.22426110428726,45.22327343442515,45.22232180382885,45.22155417353768,45.22114009720216,45.22016880836944,45.2187342741588,45.21816156278538,45.21718569735744,45.21577067718258,45.21463206269438,45.21329762857752,45.21236634808482,45.21161967574535,45.21104962338866,45.21005009133355,45.20956665076617,45.20963445993852,45.20970970588434,45.20980738188499,45.20983828319186,45.20984051578804,45.2099515568045,45.21003347963109,45.21008730351812,45.21008493238148,45.21010899084352,45.2101301028618,45.21012561024563,45.21019002078346,45.21020209517374,45.21016710465116,45.21018705343349,45.21023256159989,45.21019622313494,45.21016396410787,45.20985559795702,45.20972525923256,45.20963593762423,45.20949081645141,45.20933652039161,45.20928909208632,45.20935657464295,45.20925559396045,45.20925858120351,45.2092890673532,45.20928822631687,45.20920357997237,45.20920389480781,45.20917450286203,45.20917104752719,45.20919429257795,45.209243873189,45.20923142958327,45.20927128951943,45.20922245267278,45.20914763983026,45.20921911050639,45.20931351672787,45.20938225655142,45.20947416881316,45.2094846796933,45.20952159127597,45.20953129942742,45.20956582403343,45.20946964562387,45.22398237211971,45.23830366441813,45.25284645337584,45.26014490223116,45.26727917336686,45.2744681910128,45.28171167466545,45.28876351845253,45.29488195386064,45.30168603397389,45.30934057383661,45.31666636995761,45.32369028790659,45.33087847891645,45.3380937758505,45.34577606940935,45.35973965607744,45.3670086327683,45.38100079959963,45.38821125748593,45.39541062366553,45.39784148207654,45.40631410763773,45.40986974784268,45.41663669782002,45.43853717277731,45.43959622416008,45.44844730091906,45.45311711914626,45.46742290044529,45.48188119893825,45.49595552552182,45.50174795182225,45.51073051884436,45.53880524525484,45.55344794467187,45.5614034980193,45.56790454268047,45.57454312786079,45.57500932780682,45.5822517913123,45.5893989461425,45.59657356616836,45.60384452918684,45.61103286353522,45.62550474775153,45.63971233127985,45.65417324898395,45.66867667119322,45.68294502803163,45.697213308141,45.71153688965845,45.72565428819871,45.72575796568431,45.72588138053552,45.72594273640569,45.72596618626356,45.72594942742294,45.7261518300685,45.72638257002486,45.72619805321705,45.72610951807235,45.72648802048527,45.72684885081575,45.72721566902283,45.72729709492794,45.72776193265808,45.72831298772608,45.72854227446285]}]],[[{"lng":[-87.98788224659043,-87.98800514033266,-87.9881627029912,-87.9882716122485,-87.98845716459091,-87.98854441813558,-87.98868034283214,-87.98891539410556,-87.98905406425401,-87.98925476545028,-87.98950820120717,-87.98971151356783,-87.99003209635009,-87.99057905355311,-87.99094086007042,-87.99137100489948,-87.99174851927195,-87.99224640247962,-87.99252873445097,-87.99279823065896,-87.99314809978486,-87.99352696850934,-87.99389253809696,-87.99432946824828,-87.99465471267784,-87.99510213898512,-87.99548272071048,-87.99586443002983,-87.99613685419371,-87.99649145811361,-87.99681818699466,-87.99722677629042,-87.99764991635269,-87.99801683052964,-87.998425738897,-87.99880834700133,-87.99914859602703,-87.99951868637002,-88.00014013012512,-88.00053145253547,-88.00114162014623,-88.0017633163163,-88.002174945356,-88.0025635068271,-88.0028636197451,-88.00330765337763,-88.00361984040387,-88.00396473396015,-88.00443100109821,-88.00518885291226,-88.00560044387652,-88.00583864624119,-88.00596700714679,-88.00631161189931,-88.006657596057,-88.00699010564362,-88.00734403138121,-88.0075980254023,-88.00788553092708,-88.00819360972751,-88.00857886029698,-88.00888774350545,-88.0093254602512,-88.00968820773352,-88.01008360970566,-88.01050015015207,-88.01065338820037,-88.0109054587963,-88.01115780605016,-88.0113876381091,-88.01161801035872,-88.0118569294322,-88.01219715771954,-88.01254615934489,-88.01278752414667,-88.01298440422764,-88.01332163932425,-88.01350809060534,-88.01373736135851,-88.01408748862258,-88.01440518021452,-88.01469985345197,-88.01502881885233,-88.01536902949171,-88.01572051149684,-88.01617110832893,-88.01651105965344,-88.01697453986272,-88.01725984450776,-88.01775521350918,-88.01803116448237,-88.0184386522193,-88.01866022665936,-88.01890459538974,-88.01932414689061,-88.01948225675496,-88.01988255198387,-88.0200173591475,-88.02020707791316,-88.02045414956636,-88.02061225143406,-88.02081187762863,-88.02112618670664,-88.02126043230174,-88.02149381940825,-88.02177193016892,-88.02202835671589,-88.02226252621595,-88.02249590999577,-88.02266282359612,-88.02303016085946,-88.02337552851174,-88.02368578128508,-88.02401879178257,-88.02434082754999,-88.02452917879168,-88.0249736661695,-88.02577041360465,-88.02650287299629,-88.02732213980759,-88.02827101443135,-88.02855574611063,-88.02900443052214,-88.02933366038914,-88.02962910886153,-88.03001270910036,-88.03037378647512,-88.03082275185044,-88.03114071074071,-88.03156851472532,-88.03185965617793,-88.03205653933368,-88.03228556111276,-88.0325357269889,-88.03286280970296,-88.03318931389326,-88.03359315179127,-88.03376689955101,-88.03398066864702,-88.03436948605682,-88.03485599712201,-88.03522697022508,-88.03560629016623,-88.03607400885096,-88.03647967805566,-88.03686409963287,-88.03720833897816,-88.03755204770965,-88.03780600995034,-88.03799381551148,-88.03825713474562,-88.03868494030095,-88.03887002341723,-88.03905565990036,-88.03924129404813,-88.03946043391849,-88.03970314241091,-88.03987057070238,-88.0400064071048,-88.04009751363564,-88.04023817814125,-88.04023124135306,-88.04017983241748,-88.04012948297863,-88.0400271914915,-88.03998702560956,-88.0399915988481,-88.03998573223571,-88.04003745916506,-88.04007472494882,-88.04012188341817,-88.04018056778463,-88.04021781059106,-88.04027677373062,-88.04033571496086,-88.04047209746854,-88.04058515240662,-88.04075660999904,-88.04091843081136,-88.04084721134383,-88.04079767043086,-88.04075029991189,-88.04071120276234,-88.04068418570205,-88.04063679809424,-88.0406004000817,-88.04059454885666,-88.04066958496237,-88.04072104983096,-88.04082660929279,-88.0409565585534,-88.04108166594722,-88.0412172116779,-88.04147384400454,-88.04164125191814,-88.04184082003476,-88.04224848195722,-88.04244616180949,-88.0426221426064,-88.0428956218154,-88.04309276551572,-88.04341123108804,-88.04362979546909,-88.04393730310743,-88.04421131855266,-88.0444202452576,-88.04461898408574,-88.04497336226271,-88.04517398680753,-88.04533257543191,-88.04547161345862,-88.04549920505214,-88.04555760059225,-88.04561626645697,-88.04574163178876,-88.04598967047836,-88.04623556618995,-88.0464447443489,-88.04676213940613,-88.04712453700469,-88.04740953966964,-88.04755041102597,-88.0477598830697,-88.04814423180612,-88.04841959113772,-88.04866198726444,-88.04892796491058,-88.04912938247526,-88.04926518401453,-88.0493787383313,-88.04952873021622,-88.04969024779027,-88.04999531793287,-88.05021975791317,-88.05048439315256,-88.05101912979958,-88.05160707286986,-88.05221228022714,-88.05264292651134,-88.05312118076441,-88.05385220924875,-88.05413853424231,-88.05455636548186,-88.05495089339513,-88.05532613630979,-88.05577743670479,-88.05615320627507,-88.05707644695019,-88.05752428737006,-88.05791854367349,-88.05823386859385,-88.05827921457808,-88.05822859394337,-88.05892115384472,-88.05941366534206,-88.07990905036466,-88.10043992824031,-88.14143605249197,-88.15180345399833,-88.16210020916375,-88.17817391146066,-88.1885252835899,-88.19886820697984,-88.20911772456577,-88.21939034300009,-88.22969319929685,-88.24002194505742,-88.26059928839381,-88.28114929053342,-88.30349295060681,-88.32408275197749,-88.34456226196781,-88.36525465221315,-88.38570671325961,-88.4066842000752,-88.42537490267779,-88.42535926850451,-88.42544169598447,-88.42549744526384,-88.42583531713427,-88.42594402939137,-88.42598041454575,-88.42585898511366,-88.42576562996051,-88.42590321574123,-88.42617581661629,-88.42602678546817,-88.42588258296946,-88.42608912490162,-88.42646426529846,-88.42564425885551,-88.42623823956689,-88.4266211815219,-88.42672792651457,-88.42714094048381,-88.42809147896322,-88.40739316345392,-88.38710408700638,-88.3664301497729,-88.35295853739795,-88.34782057855422,-88.34663189910439,-88.30585361968463,-88.30644799972832,-88.30707343938099,-88.30754856626466,-88.30798133558983,-88.30792636826413,-88.3079630774143,-88.30902152140118,-88.30935030507268,-88.30919301413158,-88.30884847234343,-88.28812968104926,-88.2676520061717,-88.24812075834765,-88.22738255963779,-88.20715859972913,-88.18633069817314,-88.1863393608272,-88.18632351739033,-88.1867008429724,-88.18712396442224,-88.18802361777355,-88.18831403886202,-88.18890412871919,-88.18927903129715,-88.16822511095963,-88.14788649742013,-88.12747145693356,-88.11887208543837,-88.1192287698795,-88.11984865011901,-88.12012874577259,-88.1207003499769,-88.12073095089121,-88.12075643600019,-88.12088263451449,-88.12109685766238,-88.10688405754291,-88.08634376981601,-88.06585102465399,-88.02465108991184,-88.00400296336355,-87.9991833892861,-87.99408163774625,-87.98897991291891,-87.98387900550176,-87.97875902603725,-87.97363984526059,-87.96848181974805,-87.96340153093595,-87.95829245579259,-87.95318420479114,-87.94807597976481,-87.94296779446991,-87.94302385120153,-87.94312175186805,-87.94321963199909,-87.94331670800514,-87.94360532987238,-87.9438939282563,-87.94418173811562,-87.94447030827318,-87.93936085793337,-87.93425220583599,-87.92914276665992,-87.92403412941978,-87.91893863410478,-87.91384312857578,-87.90874763449101,-87.90365214181777,-87.89856827913196,-87.89348444230993,-87.88839981698882,-87.88331601368431,-87.88342411027512,-87.87681066013513,-87.87170986193436,-87.86660907774281,-87.8615075073415,-87.85634250026649,-87.85117748818401,-87.84601170171359,-87.84084670364257,-87.83575106416951,-87.83065545266552,-87.82555984567323,-87.82046504872838,-87.81556968861138,-87.81067510871117,-87.80578053705241,-87.80088516395874,-87.79579396363275,-87.79070198864882,-87.78561000897272,-87.78051803737085,-87.77542830167484,-87.7703385777931,-87.76524886975074,-87.76015917207205,-87.76035406146737,-87.76054892864578,-87.76074375574824,-87.76093855664993,-87.76152541346457,-87.76211139774273,-87.76269691059854,-87.76266607712415,-87.76228692854163,-87.76205490648826,-87.76205434872186,-87.761803620884,-87.76180394905606,-87.76142161828631,-87.76111198047137,-87.76067933434993,-87.76008707281139,-87.76008855373492,-87.75993026794923,-87.75986897390112,-87.7597841831532,-87.75944406261887,-87.75882594469496,-87.75882641748525,-87.75862628105101,-87.75858578096695,-87.75844697072812,-87.75825331618692,-87.75788333895767,-87.75769739573536,-87.75752754188304,-87.75752719110538,-87.75733284584695,-87.75731921452676,-87.75711809936625,-87.75661595388509,-87.75607490413671,-87.75587399246795,-87.75488482257583,-87.75476861898034,-87.75451430472066,-87.75405104486381,-87.75309327941179,-87.75222769679975,-87.75185679564561,-87.75120816045701,-87.75086760811445,-87.75055861118734,-87.75011122353767,-87.74997303039395,-87.74975721543571,-87.74935507757192,-87.74920043996629,-87.74916945641451,-87.7490159731118,-87.7487685781244,-87.74849748233669,-87.74791741096148,-87.74773192088799,-87.74686791321392,-87.74627994865541,-87.74555468433786,-87.74543096606892,-87.7451527194885,-87.74474885895977,-87.74444784351816,-87.74406790282906,-87.74380574174178,-87.74362011544726,-87.74343578324628,-87.74313449114445,-87.742196596648,-87.74190279301885,-87.74180982754571,-87.74162535158816,-87.74123858252169,-87.74068225764664,-87.74028239841208,-87.739865388762,-87.73979665416493,-87.73974326099936,-87.73974567858997,-87.73961019542328,-87.73951225761202,-87.73949953441992,-87.73941448574277,-87.73933758971484,-87.73928319439024,-87.73926107692633,-87.73916856319489,-87.73868183591595,-87.73843473605103,-87.73823505766511,-87.73804490205447,-87.73795951445717,-87.73786684839777,-87.73775125055339,-87.73758917662761,-87.73746543276492,-87.73735595291349,-87.737221370394,-87.73716739689627,-87.7371140573009,-87.73708257828518,-87.73709974201435,-87.73727951642505,-87.73721899131601,-87.73710318373092,-87.73638411474521,-87.73620013228772,-87.73573610027721,-87.73527432487151,-87.73499534859749,-87.73484949238185,-87.73474183339094,-87.73447158616142,-87.73422570465706,-87.73408181098151,-87.73398685050199,-87.73389923313333,-87.733796869532,-87.73382357669709,-87.73389209817026,-87.7339066536738,-87.73386650531837,-87.73377381985834,-87.73368951282745,-87.73364281098996,-87.73357435800685,-87.73352954517694,-87.73344436234588,-87.73302781734016,-87.7327412084672,-87.73249474237514,-87.73221671071671,-87.73212324229428,-87.73181415189964,-87.73162900361639,-87.73141222754974,-87.73107272990627,-87.73071130964492,-87.73057985809334,-87.73050981492889,-87.7305246590473,-87.73067074085102,-87.7306537272629,-87.73054490169486,-87.73035991284587,-87.73023509206361,-87.73018695282779,-87.7300936254464,-87.72994055966254,-87.72966173807545,-87.72959341710119,-87.72958585026709,-87.72960955527023,-87.72991093560499,-87.73000498613591,-87.73002076090937,-87.72996649601221,-87.72985992078706,-87.72970656089667,-87.72960703527019,-87.72948459041353,-87.72936071396479,-87.72926745696417,-87.72922068358795,-87.72886517295629,-87.72837209219628,-87.72821692292119,-87.72814147090754,-87.72807955522657,-87.72773925944094,-87.72739946579235,-87.7269027749458,-87.72650014593643,-87.72631385790805,-87.72566581553346,-87.72523499232936,-87.72477223877689,-87.72449497994671,-87.72393911588156,-87.72356902820769,-87.72335254204758,-87.72310563876796,-87.72309471182272,-87.72302495837988,-87.72290036094782,-87.72282410293499,-87.7227637696308,-87.72273879976558,-87.72268550775026,-87.72258502837995,-87.72251577759302,-87.72251328236011,-87.72259533407595,-87.72258748017084,-87.7225166371026,-87.72186053139016,-87.72145068172362,-87.72123269385528,-87.72107753607335,-87.72086126133544,-87.72076979529908,-87.72056099899666,-87.72051501490527,-87.72046975097527,-87.72033780103452,-87.72019049292868,-87.72020499102288,-87.72029039832606,-87.72032032541557,-87.72031111803219,-87.72024185935528,-87.72010277469209,-87.71967013959713,-87.71954646999772,-87.7193918161595,-87.71926821204642,-87.71922208088127,-87.71922365349359,-87.71925506502424,-87.7195329591998,-87.71965661804772,-87.7198426385601,-87.71987290122966,-87.71988088962233,-87.71975922283741,-87.71948231487742,-87.71925046800635,-87.71880997766952,-87.71809887300424,-87.7176348458223,-87.71745019140502,-87.71731200865179,-87.71715063489221,-87.71672370740905,-87.71647617764421,-87.71625903214674,-87.71598078034346,-87.71536355023412,-87.71530172025474,-87.71518612605,-87.71506847184574,-87.7149441672719,-87.71479002366343,-87.7146969845457,-87.71456484660033,-87.71444811596116,-87.71438512637961,-87.71429331405655,-87.71420061767068,-87.71405408707967,-87.71390119617189,-87.71391759744883,-87.713986936749,-87.71424821631577,-87.71437245402713,-87.71443492740299,-87.71446654856676,-87.71445125139977,-87.71435184656812,-87.71420574147606,-87.71384285708143,-87.71303128696103,-87.71238328453414,-87.71207411104659,-87.71170409549904,-87.71117909418173,-87.71059409054169,-87.71040864992651,-87.70951222331051,-87.70938963029548,-87.70911128091166,-87.70892583866487,-87.70855622021809,-87.70794042937607,-87.70775511830865,-87.70744642574297,-87.70673460489688,-87.70636399655299,-87.70612570606143,-87.70602458435378,-87.70512746954299,-87.70463403793278,-87.70367586838488,-87.70336802416601,-87.70275137742128,-87.70231871939595,-87.70176210311134,-87.70139130493351,-87.70102826749059,-87.7005241178625,-87.70012187427643,-87.69993696542399,-87.69956393784584,-87.69937745505378,-87.69916154153377,-87.69879052965486,-87.69829700055952,-87.69823516894557,-87.69818018656868,-87.69810997357359,-87.69803993261,-87.69786235851274,-87.69773762488013,-87.69758294637532,-87.69750723959167,-87.69747039865784,-87.69739308131788,-87.69727016366619,-87.6969695891965,-87.69662913023791,-87.69620484483627,-87.69619955136793,-87.69588750578004,-87.69516916499322,-87.69516140395868,-87.69503754920784,-87.69482027662295,-87.6945419285712,-87.69414114414511,-87.69404839140921,-87.69383143040658,-87.69327556520834,-87.69290432706313,-87.69222341400621,-87.6921306601345,-87.69203917633331,-87.69178537579273,-87.69164716996971,-87.69136829175515,-87.69086680107476,-87.69043403670975,-87.69013269616026,-87.68938293265322,-87.68891875106497,-87.68882573720538,-87.68874016313833,-87.68871642305957,-87.68878424212917,-87.68884612845845,-87.68893033831591,-87.68902295221841,-87.68945661294589,-87.689641418875,-87.69059819754372,-87.69087548946322,-87.69124624722124,-87.69133895118567,-87.69142324545405,-87.69143042407364,-87.69140729398883,-87.69113639109413,-87.69076519361226,-87.69064152034477,-87.69027068607087,-87.68940475290027,-87.68906509822041,-87.68878775944916,-87.68869491852526,-87.68832465126326,-87.68820067200147,-87.68804744474504,-87.68779881720653,-87.68739643752646,-87.68724206842535,-87.68672469994388,-87.68554262589439,-87.68443029940475,-87.68384355888959,-87.68366545225896,-87.68344109274746,-87.68310199440073,-87.68291653062641,-87.68276193442223,-87.68251590417762,-87.68223850995948,-87.68220749525474,-87.68199053316948,-87.68183629655086,-87.68143479001486,-87.68063108264219,-87.67992051765205,-87.67923960519779,-87.67890790599893,-87.67849803646888,-87.67778586613541,-87.67726081516777,-87.67676580391191,-87.67645747897876,-87.67605602274408,-87.67583911278227,-87.67555998040727,-87.67450753630163,-87.67416727220667,-87.67333160926867,-87.67289875157788,-87.67215781657394,-87.6718481926769,-87.67126119060288,-87.67076553962042,-87.67027014369179,-87.66983678199327,-87.66949581970302,-87.66937214444609,-87.66932641490358,-87.66931312207383,-87.66900040222303,-87.66843008049439,-87.66822690576245,-87.66791663817965,-87.66748265308063,-87.66720334200873,-87.6668314728749,-87.66658423171627,-87.66612004857464,-87.66565438950397,-87.6654075827276,-87.66472578609515,-87.66392081344277,-87.66329992828047,-87.6627431022312,-87.66243289028621,-87.66209194278873,-87.66184469656771,-87.66137940162302,-87.6608829264665,-87.66063541854908,-87.66029426061372,-87.6597983373219,-87.65936509794874,-87.65902511740877,-87.65849761986071,-87.65778422337387,-87.65694633031858,-87.65658225400756,-87.65646475089783,-87.65641024046904,-87.6563524789854,-87.65636695564415,-87.65634189314726,-87.65628796135091,-87.65622636277467,-87.65617291635678,-87.65613469272998,-87.65615350119438,-87.6561229786067,-87.6560702569963,-87.65576142890674,-87.65568581210805,-87.65560841490209,-87.65557868502916,-87.65559350785861,-87.65563195320853,-87.65582021612902,-87.65589947891782,-87.65595018187186,-87.65606830134179,-87.65624733381259,-87.65633845941178,-87.65544274313949,-87.6553374096038,-87.65494300957566,-87.6548164627831,-87.65466095996248,-87.6545998187228,-87.65452996844364,-87.6544634496702,-87.65443312728098,-87.65434153554649,-87.65424776279004,-87.65420096591052,-87.65417022328441,-87.65410757692885,-87.65393723197398,-87.65378241795236,-87.65273346398888,-87.65242373548904,-87.65220823631734,-87.65187704320844,-87.6517456914266,-87.65159178451806,-87.65125088739417,-87.6511582391859,-87.65103456425189,-87.650509928006,-87.65020178024963,-87.6497381812196,-87.64912029621243,-87.64892203475173,-87.64882793513586,-87.64872029871867,-87.64850513796596,-87.64785563844694,-87.64745383210078,-87.64723774683235,-87.64658918221578,-87.64597094137085,-87.64516848603898,-87.64371742565095,-87.64341561803859,-87.64279026190655,-87.64242005356054,-87.64214201135918,-87.64158652588607,-87.64093794242528,-87.6403200309141,-87.63991810394552,-87.63933097662395,-87.63908417529538,-87.63886774027893,-87.63793962786036,-87.63756894641621,-87.63729019920956,-87.63704260839599,-87.63617618899949,-87.63599122665723,-87.63561951946822,-87.63493929346983,-87.63472297015097,-87.63459827022803,-87.63407241385026,-87.63360878479304,-87.63320678827263,-87.63258656437991,-87.63240105340014,-87.63206277679149,-87.63173004214524,-87.63086442558767,-87.63054730481815,-87.63045601984146,-87.6302779942595,-87.63012477004209,-87.63003294236276,-87.62995743139643,-87.62994282938449,-87.629958243438,-87.63009835510354,-87.63024615393338,-87.63030799982226,-87.63033868108495,-87.63034604491087,-87.63027478558098,-87.63031190829341,-87.63042730017592,-87.63058042144607,-87.63073637373256,-87.63095349956747,-87.63107604652897,-87.63129235156261,-87.63138568016677,-87.6315249887827,-87.63171074917588,-87.63189696525463,-87.63228397348205,-87.63240844706232,-87.63256246459429,-87.63282395334988,-87.63291704067007,-87.63298636304835,-87.63300269849327,-87.63306476432599,-87.63344362272881,-87.63381535166263,-87.63418707406241,-87.63448915084506,-87.63463661395903,-87.63479018378005,-87.63500580452822,-87.63543889662995,-87.63582476079235,-87.63644475954466,-87.63681579582406,-87.63712417079547,-87.63733944965144,-87.63752519175777,-87.63763413971593,-87.63778807497118,-87.63800440149461,-87.63862277048648,-87.63896207804309,-87.63920998415837,-87.64013698379202,-87.64063201186298,-87.64214494735846,-87.64338065961955,-87.64399877726332,-87.64483170625236,-87.64575901014939,-87.64662225782459,-87.64717969749174,-87.64761174628158,-87.64798290479231,-87.64829170361577,-87.64869272074949,-87.64937206806323,-87.64961907772344,-87.64978976742796,-87.64997527576037,-87.65006779069664,-87.65023716211236,-87.65033002353474,-87.65045314669182,-87.65060869704297,-87.65082559475005,-87.65093327403848,-87.65115547909825,-87.65120927774076,-87.65128721094023,-87.65128780801024,-87.65112861799555,-87.65102107571255,-87.65084367891312,-87.65032859072724,-87.65025151207391,-87.65025209894554,-87.65033039012734,-87.6504307546639,-87.65055408967662,-87.65077083247338,-87.65089449932469,-87.6510492362364,-87.65121958665115,-87.65128109714803,-87.65135963359225,-87.65139170062545,-87.65138357555442,-87.65126854025009,-87.65105221713134,-87.65092856200356,-87.65082871100125,-87.65079850098324,-87.65074437908051,-87.65069873875034,-87.65049758129378,-87.65032844579856,-87.64990640699055,-87.64983760013646,-87.64984591871507,-87.64993179885182,-87.6501491790132,-87.65027228451555,-87.65045721801374,-87.65051906350314,-87.65060470278753,-87.65072196755263,-87.65100255767885,-87.65097936713178,-87.65084169369791,-87.65081115885269,-87.65089724897062,-87.65105058960312,-87.65110541345085,-87.65116913935761,-87.65126975273198,-87.65137769800195,-87.65142423152176,-87.65143087790938,-87.65139233493953,-87.65135984888104,-87.65142076878354,-87.6514667495689,-87.65152928657196,-87.65163827437172,-87.65190294085164,-87.65229081623964,-87.6523690231287,-87.6523148083218,-87.65224493803748,-87.65216869440304,-87.65204395457656,-87.65182907400867,-87.65180578238621,-87.65189144900083,-87.65251305300291,-87.65273709617671,-87.65277631090655,-87.65278473516189,-87.65270831009371,-87.65262270177716,-87.65249958997602,-87.65225104939628,-87.65175479337783,-87.65126015972668,-87.65095153984022,-87.6506820366008,-87.65048218330945,-87.65035234403608,-87.65028461144726,-87.65013135902269,-87.65009486155373,-87.65001882137814,-87.65001979089827,-87.65010687967393,-87.65009150550846,-87.65003876896606,-87.64990743022736,-87.64982273331073,-87.64973065818776,-87.64963719798826,-87.64950496198635,-87.64932735601782,-87.64926538926184,-87.64921018160878,-87.64910957870698,-87.64914714147517,-87.6494020744512,-87.64950193442905,-87.6495081167463,-87.6494458923174,-87.64929000933436,-87.64910503482564,-87.64888858545235,-87.64845547807431,-87.64827027759266,-87.64818429274111,-87.64816874183988,-87.6481988538473,-87.64829930889877,-87.64838342904005,-87.64838177433595,-87.64849022629704,-87.6484968762674,-87.64843478881515,-87.64829490472547,-87.64826386737505,-87.64814485265791,-87.64739902775007,-87.64725226403866,-87.64717595497183,-87.64720735729395,-87.64775285902442,-87.64804916202446,-87.64820531416595,-87.64831561702935,-87.64859941429557,-87.64872431188611,-87.64886480435199,-87.64896539568215,-87.64908850391663,-87.6494568437892,-87.64979668261159,-87.65007382770554,-87.65050774847607,-87.65072327188891,-87.65080807100009,-87.65086805324123,-87.65089086482189,-87.65097344767558,-87.65108097718917,-87.65120358645056,-87.6512728977827,-87.65131163719686,-87.65132005254173,-87.65119920990678,-87.65120076705762,-87.65130178543815,-87.65136411429008,-87.65160552439187,-87.65172190264825,-87.65187892695077,-87.65207423795134,-87.65217033386452,-87.65222556275617,-87.65211650690846,-87.65179332281052,-87.65177973137632,-87.65169396599855,-87.65121454458892,-87.65069054364047,-87.65055986993904,-87.65049185995383,-87.65041464517324,-87.65031476125397,-87.64995209301286,-87.64941402062287,-87.64919036322935,-87.64894484164792,-87.64870519266468,-87.64845874102791,-87.64802678127208,-87.64744019320668,-87.64620520943092,-87.64595884474528,-87.64586652387631,-87.64564807617543,-87.64558610797286,-87.64549346417978,-87.64540897621039,-87.6453082741978,-87.64515342783628,-87.64499880419676,-87.64484442962276,-87.64456600161613,-87.64407132260098,-87.64326777899096,-87.64292625001195,-87.64249409353967,-87.64206022726704,-87.6419983847079,-87.64131573975877,-87.6409438411864,-87.64010877459101,-87.63874559042721,-87.6381892965145,-87.63778786839148,-87.63735356571468,-87.63722963757047,-87.63710594251755,-87.63673578683694,-87.63614744687862,-87.63590016442743,-87.63549816779852,-87.63531286255353,-87.63494177833934,-87.6347915921779,-87.63416790364117,-87.63351803176661,-87.63295935922547,-87.63271139995588,-87.63234087753838,-87.63190738322415,-87.63172162117979,-87.63159689633108,-87.63152676060977,-87.63152551010343,-87.63158009223041,-87.63168769114165,-87.63205865346488,-87.6321208372308,-87.6321428981165,-87.63208014531362,-87.63045090161386,-87.63035847593186,-87.63029639326477,-87.63030363607632,-87.63200967445454,-87.6321022101174,-87.63211761224441,-87.63209391900779,-87.63198517784512,-87.63046457157961,-87.63037179320591,-87.63032478532031,-87.63033226209477,-87.63052422688718,-87.63095519713255,-87.63117139730109,-87.6312704958615,-87.6314081858265,-87.63156901126604,-87.63172305232105,-87.63186327703431,-87.63198743884558,-87.63207252152442,-87.63212816340848,-87.63215276867413,-87.63220759622318,-87.63225392374358,-87.632300476011,-87.63230703099441,-87.63226793758152,-87.63229092189587,-87.63239116615829,-87.63247692141233,-87.63253072236526,-87.63255325400681,-87.63253761103236,-87.63236586277897,-87.63214732338483,-87.63213169234224,-87.63216225685177,-87.63214582096839,-87.63209111268559,-87.6319985681034,-87.63193592902438,-87.63204430757786,-87.63226041956936,-87.63232216045833,-87.6324010034601,-87.63249353656316,-87.63250893004181,-87.63242226555502,-87.63229776466044,-87.63211925643179,-87.6320264808237,-87.63190269531695,-87.63172611801473,-87.63091965299819,-87.63080412698567,-87.63049916308181,-87.63005417903825,-87.62982646016434,-87.6296738008879,-87.62937032759365,-87.62932686838171,-87.62932973965263,-87.62922455562672,-87.62911027945647,-87.62880932967043,-87.62876458847755,-87.62864319162793,-87.62838371775143,-87.62834487321477,-87.62829081064503,-87.62810203476104,-87.62798073869106,-87.62781653529264,-87.62775122754968,-87.62774581242471,-87.62738614605203,-87.62736239544545,-87.62736184691583,-87.62728835664738,-87.62723729500428,-87.62723428031782,-87.62715976909176,-87.62714112332618,-87.62711814549672,-87.62713751424533,-87.62713028381454,-87.62691509725241,-87.62689278973421,-87.62692046549085,-87.62686214175402,-87.62680165603666,-87.62672563866056,-87.62647922166566,-87.6264183952494,-87.62643381040793,-87.62660625728914,-87.62663719428473,-87.62664478058217,-87.62656277239738,-87.62653241794985,-87.62642455480508,-87.626378560445,-87.62635589886298,-87.62640326731623,-87.62659770055167,-87.62662184679053,-87.62647808339318,-87.62631589240098,-87.62624394735307,-87.6260526059317,-87.62603006701647,-87.62605671625981,-87.62597922103295,-87.62566256247608,-87.62557939668334,-87.62552744142795,-87.6253800029932,-87.62511568674823,-87.62362914392872,-87.6235361146779,-87.62345928903436,-87.62342926369077,-87.62346870452023,-87.62376251232838,-87.62434323572845,-87.62509663385677,-87.62516383245755,-87.62527339262455,-87.62535882456459,-87.62545931937808,-87.62547608988758,-87.62540652956481,-87.62540709436139,-87.62569466200465,-87.62577284239319,-87.62581295594758,-87.62579280879766,-87.62580902244194,-87.62574070147903,-87.62552011658715,-87.62551251589775,-87.62546641001418,-87.62541281768651,-87.62544113031679,-87.62540974592611,-87.62537087871083,-87.6252860133505,-87.62520874404726,-87.62513169887485,-87.62510372727421,-87.62483619957999,-87.62479087783551,-87.62479846976029,-87.62484572959507,-87.62493899542024,-87.6251012083473,-87.62516921815414,-87.6253236531272,-87.62535470084283,-87.62537964361486,-87.62535742555477,-87.62537511568034,-87.62536129520085,-87.62522420435583,-87.6251937211312,-87.62519575996613,-87.62522669665599,-87.62513582766852,-87.62515202831662,-87.62510795453284,-87.62512472919755,-87.62510730618756,-87.62512688867291,-87.62514309697096,-87.62510163395558,-87.62502050926253,-87.62509560676367,-87.62515386888046,-87.62519227829263,-87.62516294006768,-87.62509809953214,-87.62494190020686,-87.62484998657402,-87.62486630985251,-87.62508482410777,-87.62512339109676,-87.62518255076111,-87.62518380158666,-87.62521485187695,-87.62521609910237,-87.62515502655062,-87.6252185974801,-87.6251583083301,-87.62509662359844,-87.62507064063054,-87.62491040057105,-87.62492775141386,-87.62488266360982,-87.62468444836048,-87.62469998170143,-87.62489504076558,-87.62492655260665,-87.62488259067048,-87.62491376868263,-87.62501633798369,-87.62505658881325,-87.62503484243655,-87.62492322046303,-87.62492492624578,-87.62500449997957,-87.62499713826995,-87.62493627627362,-87.62479811428766,-87.62481364848549,-87.62495453712376,-87.62494231305156,-87.62497428424895,-87.6248836166897,-87.62494676476436,-87.62482549499775,-87.62480396352348,-87.62471182473159,-87.62461922333031,-87.6245962197379,-87.62476057413257,-87.62480829231765,-87.62483278773162,-87.62479052877742,-87.62481831589035,-87.6247657335152,-87.62465058041829,-87.62465193801347,-87.62477085740484,-87.62490688953959,-87.6249485181263,-87.62493880564935,-87.62484361079981,-87.62494654182002,-87.62497057724467,-87.62495595586162,-87.62489440772433,-87.62478683940971,-87.62477959230654,-87.62488093269795,-87.62489011322047,-87.62483571009886,-87.62474412048047,-87.62473675825089,-87.62475953846689,-87.62483821441836,-87.62491676656155,-87.62495678283662,-87.6249570170669,-87.62498621824813,-87.62503682480481,-87.62504488143801,-87.62501666342612,-87.62509357778191,-87.6251744817196,-87.62518184894289,-87.62512653998168,-87.62514081780523,-87.62518842655928,-87.62522005945459,-87.62517505299385,-87.62517585066085,-87.62526992348673,-87.6252780930712,-87.62521063977209,-87.62533499289381,-87.62535302005764,-87.6252608646513,-87.6252259495098,-87.62526482546394,-87.62522833337603,-87.62525360543559,-87.62516586151911,-87.62520224807433,-87.62512765792647,-87.62514420564908,-87.62523931042742,-87.62527048300717,-87.62525733955977,-87.62529043688365,-87.62529191215313,-87.62524610708294,-87.62525540900245,-87.6252340886448,-87.62518896770828,-87.62522241171831,-87.62525380904798,-87.62525460778127,-87.62517943178848,-87.62511169279912,-87.62504611491809,-87.62500835646142,-87.62485462186433,-87.62466776705354,-87.62440471528377,-87.62432693299088,-87.62428906888384,-87.6243125425396,-87.62446843430428,-87.62471595577374,-87.62486300482554,-87.62510084472777,-87.62518497921955,-87.62529473098853,-87.62526513473213,-87.62530016106743,-87.62519253077517,-87.6251926830053,-87.62527136180654,-87.62529540469728,-87.62519629834387,-87.62519652940652,-87.62525140108571,-87.62536070417342,-87.62539912967733,-87.62537644492929,-87.62533960274548,-87.6253415372483,-87.62543609362588,-87.6254368790173,-87.62539187062909,-87.62533201494203,-87.6252768093392,-87.6252421048024,-87.62518740506832,-87.62510936408813,-87.62510931434741,-87.62526807452487,-87.62553788204772,-87.62577161203167,-87.62595923124424,-87.62598175064927,-87.62597963371942,-87.62597807502091,-87.62595991621232,-87.62589732296331,-87.62582079340513,-87.62573086766055,-87.62551646016355,-87.62547031106729,-87.625301804516,-87.62522470521392,-87.62520996084781,-87.6252275408503,-87.62518218065206,-87.62509631300838,-87.62500195765638,-87.62498133074645,-87.62494414300949,-87.62489118351108,-87.62473776233733,-87.62440980080913,-87.62421203445382,-87.62418061369792,-87.62421498578338,-87.6241993341316,-87.62395551985382,-87.62374276674234,-87.62352117257893,-87.62348261153227,-87.62344043641399,-87.62333348709549,-87.62312855374998,-87.62281338549279,-87.62277493938176,-87.62271438579522,-87.62250944465069,-87.62247257411651,-87.62233557554089,-87.62230495102358,-87.62230630051475,-87.62199917438043,-87.62188552708191,-87.62183959119544,-87.6218300453705,-87.62179215287561,-87.62170823267589,-87.62144668651162,-87.62144826163851,-87.62148807219049,-87.62147388943039,-87.62125872332403,-87.6211441720022,-87.62097516811848,-87.62087570340088,-87.62078172436669,-87.62058521155856,-87.62031774307873,-87.62034415928844,-87.6201900038871,-87.62005989951143,-87.61994826689654,-87.61975578091334,-87.619681351371,-87.61956008112419,-87.61917736777043,-87.61910349216829,-87.61905029096299,-87.61885870560708,-87.6186435253973,-87.61832058096168,-87.6181659746381,-87.61809666631527,-87.61808996843298,-87.61814542458836,-87.61813803791928,-87.61805792547906,-87.61804726830754,-87.61797102696264,-87.61795796362468,-87.61784382685417,-87.61769906654594,-87.6175297074831,-87.6173751090783,-87.61695711122925,-87.61693408280145,-87.61700462157896,-87.61722263063139,-87.61732299796712,-87.61735542402064,-87.61741122236886,-87.61735867279194,-87.61708377715757,-87.61686175927682,-87.61672346976448,-87.6165690860789,-87.61633700751423,-87.61631408353992,-87.61631374289358,-87.61638485674831,-87.61641626140657,-87.61633163557933,-87.61612236277995,-87.61605328490816,-87.61605304526442,-87.61630379652813,-87.6162896011503,-87.61615947226007,-87.61592134706672,-87.61582888072896,-87.61571417574896,-87.61571630323026,-87.61569371578055,-87.61522660163992,-87.61513581868878,-87.61506113093702,-87.61496240886731,-87.61487844322727,-87.61472516124982,-87.61461748082765,-87.61448757574357,-87.61446430797722,-87.61447313643951,-87.61445190354881,-87.61437576316875,-87.61432240729243,-87.61414574590214,-87.61399490347497,-87.61375116894739,-87.61373707504501,-87.6136221465989,-87.61354476563221,-87.61336987770467,-87.613347849768,-87.61317117892634,-87.61315685485221,-87.61304359030458,-87.61279926254581,-87.61245519630688,-87.61187919712145,-87.61174948840095,-87.61158814642114,-87.61155795857914,-87.61154990762651,-87.61162792332067,-87.611613282571,-87.61140684789821,-87.61129277869254,-87.61123457183865,-87.61105228836098,-87.6110460130607,-87.61099289370961,-87.61101033196147,-87.6109341307684,-87.61078180909979,-87.61078324769242,-87.61072505924773,-87.61059244528026,-87.61055532704489,-87.61054154596978,-87.61031215818082,-87.60989805694584,-87.60974517412663,-87.60945329126574,-87.60899925643844,-87.60847082376219,-87.60776368691252,-87.60768662645614,-87.60758587201526,-87.60757076555166,-87.60759480623361,-87.60754826667828,-87.60745680269895,-87.60693174117188,-87.60634629728817,-87.60582057680482,-87.60573670780443,-87.60566027632909,-87.60554512365944,-87.60532939974718,-87.60512103811556,-87.60497608306518,-87.60489890602595,-87.60480597388114,-87.604589127647,-87.60440416489041,-87.6042889691612,-87.60415798032709,-87.60394235052821,-87.60347979838544,-87.60307960918507,-87.60252455652835,-87.60237030854441,-87.60226270344742,-87.60222421231627,-87.60218682248838,-87.60218890331078,-87.60214369222521,-87.60204367371773,-87.60196791382798,-87.60185749475475,-87.6016684791917,-87.60146857684863,-87.60119143089888,-87.60094437163391,-87.60057261298101,-87.60032589944063,-87.60001723790785,-87.5997764685458,-87.59969886697276,-87.59962129025817,-87.59959008688405,-87.59955138371618,-87.59955320473689,-87.5994850504062,-87.59937006170914,-87.599168714716,-87.59867491868566,-87.59824220389832,-87.59802636720357,-87.59790220654237,-87.597794148256,-87.5976404788799,-87.59680483542628,-87.59652622469551,-87.59637221134028,-87.59614883501506,-87.59607990736814,-87.59607237225545,-87.59595759859333,-87.59549487420641,-87.5954014838444,-87.59529341930887,-87.59490581112226,-87.59479040588532,-87.59474455546064,-87.59473689441127,-87.59470589544304,-87.594396885546,-87.59424254771393,-87.59403774919805,-87.59385784981576,-87.59376844931853,-87.5936915118842,-87.59302307598178,-87.59277376145747,-87.59267371134202,-87.59251301802932,-87.59251237174668,-87.59248954048788,-87.59243734824231,-87.59242807760923,-87.59250231157647,-87.59248358481453,-87.59247469523301,-87.59239517447328,-87.59244244160148,-87.59236553011591,-87.59227911050655,-87.59226285829079,-87.59215918901133,-87.59213861890969,-87.59159260712939,-87.59028313713932,-87.59020704287917,-87.59019929212651,-87.59024622766175,-87.59030829551244,-87.59036322130693,-87.59043173572218,-87.5904924609592,-87.59061637196163,-87.59071018389147,-87.59088777581782,-87.59091988411687,-87.59095035206424,-87.59089784014334,-87.59090686106261,-87.59106294348783,-87.59125134354886,-87.59132946212927,-87.59144514501428,-87.59149131233085,-87.59151499087497,-87.59139957216337,-87.59121357023459,-87.59106561278168,-87.59100423847119,-87.59090957785303,-87.5908556927086,-87.5907625248644,-87.59060884304459,-87.59052282910505,-87.59049171797541,-87.5904777161446,-87.59028580375177,-87.59025492948996,-87.59010003464365,-87.58971224269982,-87.58948583116482,-87.58947044265443,-87.58956255071264,-87.58955406969307,-87.58952243554985,-87.58939882030511,-87.58910696275274,-87.58879875732931,-87.58864427945346,-87.5885596293799,-87.5884966588971,-87.58844972206337,-87.58844917545309,-87.58861834527617,-87.58865764887314,-87.5886169772802,-87.58831988490229,-87.58805284169925,-87.58781355497919,-87.58777842047827,-87.58770093585073,-87.58766290760812,-87.58761655947208,-87.58761267363106,-87.58765298072699,-87.58763822648616,-87.58761878236599,-87.58756474715783,-87.58706909528496,-87.58652720898117,-87.58629553418081,-87.58617160077048,-87.58592379221361,-87.58576145178526,-87.58559824812448,-87.58544594514495,-87.58522005980085,-87.58521129983748,-87.58517981397539,-87.58503975511854,-87.58501538157579,-87.5850225140974,-87.5849911318265,-87.58509780264819,-87.58509631384456,-87.58521928653889,-87.585218872075,-87.58501677486753,-87.58492922681219,-87.58487370248848,-87.58482710426655,-87.58463368683856,-87.58438537964815,-87.58422256105028,-87.5841530219072,-87.58400536780098,-87.58398192125543,-87.58399594439506,-87.58390947886163,-87.58397008356492,-87.58395284607515,-87.58383617086749,-87.58356318737744,-87.58302415199151,-87.58285884660182,-87.58268678498564,-87.58246554064729,-87.58226600369085,-87.58206824417738,-87.58171853758824,-87.58157837601661,-87.58149225395961,-87.58149736984687,-87.58147314720529,-87.58140265327455,-87.58109118983806,-87.58102873318919,-87.58106621683704,-87.5811202244869,-87.58125336032029,-87.58170498432253,-87.58182037756845,-87.58184331393467,-87.58184356843827,-87.58174082368727,-87.58168480668826,-87.58169908110702,-87.58165896912067,-87.58162007239036,-87.58149554498645,-87.58124698988479,-87.58093913848676,-87.58073047166252,-87.5807139589828,-87.58092890625869,-87.58095176826494,-87.58090447475082,-87.58078124167093,-87.58059653053053,-87.58055046846307,-87.58048004233926,-87.58027508921751,-87.58010246851674,-87.58011742194441,-87.58021708188754,-87.58027893034621,-87.58052705480081,-87.5810207986126,-87.58126858326609,-87.58167137830063,-87.58176453158897,-87.58179540348976,-87.58180281869602,-87.5816471334429,-87.58159957733341,-87.58156873043714,-87.5814211645849,-87.58110286266403,-87.58102528508428,-87.58095410581463,-87.58082153110692,-87.58061912447776,-87.58055450723798,-87.58052973525628,-87.58049008868068,-87.58052879705296,-87.58055977221738,-87.58074680300498,-87.58096291661268,-87.58108651118862,-87.5811787926886,-87.58121740936811,-87.58079002311952,-87.58068866282268,-87.58061863488383,-87.58040770762705,-87.58040745929458,-87.58025797769477,-87.58014176070539,-87.58011659620701,-87.5799986775891,-87.57988883381213,-87.57971751993742,-87.57963204224642,-87.5793443529583,-87.57932817084203,-87.57938253514388,-87.57975379137633,-87.5799688651587,-87.58006277020435,-87.58012511209446,-87.58013407375059,-87.58017248752158,-87.58023519254135,-87.58039114530663,-87.58043797004312,-87.58039271843006,-87.58060205409819,-87.58068745712407,-87.58074877061884,-87.58076359223959,-87.58074743792025,-87.58066905979986,-87.58055150796388,-87.58030186678648,-87.57980344574381,-87.57969340943588,-87.57955317664693,-87.57932749419057,-87.57917313957695,-87.57883986005449,-87.57874572313827,-87.57872974075508,-87.57875279754555,-87.57881510451199,-87.57900073537695,-87.57921669373987,-87.57940264443785,-87.57980503762106,-87.57993706200435,-87.58003015146646,-87.58008448492625,-87.58027047243561,-87.5804087768043,-87.58044010917715,-87.58044739182516,-87.58029143903632,-87.58027671437407,-87.58034560185375,-87.58053152175539,-87.58090261186142,-87.58127464937303,-87.58139853001163,-87.5817084139501,-87.58186413915948,-87.58204263456476,-87.58212072582745,-87.58212907817257,-87.58206078977946,-87.58204582722529,-87.58216261088675,-87.58222567124167,-87.5822556496646,-87.58218516174131,-87.58216900630143,-87.58238419418929,-87.58243077739499,-87.58239929954311,-87.58226612048274,-87.58210212996086,-87.58203217230017,-87.58181520056957,-87.58148950792433,-87.58090117211241,-87.58065385979387,-87.58034488981941,-87.5797866266373,-87.57923054195901,-87.57887387934305,-87.57841111604073,-87.57834186969328,-87.57824875382907,-87.57825307979832,-87.57820094332752,-87.57829625790343,-87.57828196683754,-87.57831400799584,-87.57854949419676,-87.57861517024133,-87.57867967709238,-87.57875767049021,-87.57888176801598,-87.5790516196227,-87.5791439017427,-87.57914359789268,-87.57911185781913,-87.57889391823872,-87.57889418339434,-87.57898563460691,-87.57890659938784,-87.57893571388742,-87.57901294726611,-87.57906671141484,-87.57912147963781,-87.57958926162176,-87.57977696730757,-87.57980887741662,-87.57987198763141,-87.58001907389432,-87.58005852434155,-87.580105387527,-87.58010832758659,-87.58015573250289,-87.58015679034412,-87.58009658046826,-87.57989630035539,-87.57977337302161,-87.57968078864045,-87.57950996986794,-87.57947161609106,-87.5793959114243,-87.57935696386757,-87.57930273211768,-87.57925617143491,-87.57919883333827,-87.57901792828599,-87.57883023320632,-87.57837760160902,-87.57828455152362,-87.57796697870209,-87.57787667428433,-87.5777963241805,-87.57775646876783,-87.57767675094742,-87.5776384313488,-87.57756855217086,-87.57752233073616,-87.57750235704745,-87.5774728519967,-87.57747524138765,-87.57750226713536,-87.57753985217093,-87.57769035937308,-87.57779560085386,-87.5778587562038,-87.57793737918333,-87.57814052393847,-87.57840419719697,-87.57856816307937,-87.57877108596755,-87.57894396957812,-87.57904631016517,-87.57912774388124,-87.57919823410633,-87.57946290609478,-87.57954087513541,-87.57958060170918,-87.57955061511525,-87.57951193162936,-87.57948092940387,-87.57970081515721,-87.57983412839403,-87.57987331594829,-87.58004461313925,-87.58021076725392,-87.58042151655914,-87.58056238578969,-87.58070386267514,-87.5807578449396,-87.58088228175589,-87.58098340967926,-87.58102326935665,-87.58103265480941,-87.58094750831461,-87.58079409206007,-87.58072360776336,-87.58068589773576,-87.5807250852923,-87.58079492034393,-87.58099811794285,-87.58143351043613,-87.58154260019585,-87.58162081900575,-87.58171413574576,-87.5820489983706,-87.58220424588521,-87.58231373647544,-87.58239265736485,-87.58245135668827,-87.58252246631591,-87.58262370643963,-87.58271694598712,-87.58294962564496,-87.58304319875715,-87.5830508810816,-87.58296749647644,-87.58296884603129,-87.58313356303525,-87.58325881904766,-87.58347766643912,-87.58368831554505,-87.58425650046905,-87.58451170227671,-87.5847924216433,-87.58549753447807,-87.58553674326895,-87.58576276151348,-87.58596668111608,-87.58610743313218,-87.58627162412262,-87.58645252546593,-87.58668664960429,-87.58681312246767,-87.58688330771642,-87.58764127164626,-87.58845326269909,-87.58864104999945,-87.5887591814769,-87.58881338156064,-87.58891464896583,-87.58941969189142,-87.58961367420979,-87.59049143975631,-87.59063097680405,-87.59077081383921,-87.59097409987558,-87.59112175579385,-87.59179338032256,-87.59180901841451,-87.59179358077895,-87.59164005013007,-87.5916484037039,-87.59173438694613,-87.591819254942,-87.591942834791,-87.5920984486843,-87.5921674849116,-87.59219760438802,-87.59219540682352,-87.59221870287004,-87.59231155202187,-87.59231792763453,-87.59234041593328,-87.59241815555045,-87.59244152727807,-87.59248811884432,-87.59258981772572,-87.59260705147872,-87.5926539106781,-87.59280835907371,-87.59293315338932,-87.59305010197264,-87.59305074791364,-87.59296572227693,-87.59287277286245,-87.59262580188302,-87.59225484623654,-87.59191512564891,-87.5915360069108,-87.59152101142195,-87.59154469401999,-87.59166849069416,-87.59207095670662,-87.59222588609683,-87.59244309678959,-87.59250177241861,-87.59254275262155,-87.59265854457153,-87.59303675409046,-87.59315265383179,-87.59330736161992,-87.59361729577681,-87.59389584831507,-87.59457065114245,-87.59450401017688,-87.59332128158657,-87.59299162117287,-87.59296061685824,-87.59300137932719,-87.59304833638322,-87.5931728067147,-87.59348287029194,-87.59346525703191,-87.59342951954856,-87.59419572733151,-87.59731019958542,-87.59831125492727,-87.59893766481066,-87.60063065904322,-87.60195279328096,-87.60800319658163,-87.60884609146541,-87.61202438665561,-87.61237604471147,-87.61407792227425,-87.61434386513217,-87.61476214851297,-87.61511544757404,-87.61557902529687,-87.61585314018025,-87.61752140415807,-87.61776661383882,-87.61853346380624,-87.61922611389483,-87.62085663765852,-87.62118756778115,-87.62154816071491,-87.62187127411299,-87.62231900461005,-87.62260458291999,-87.62461720465301,-87.62508058197253,-87.62811858409502,-87.62852017367159,-87.62866732243675,-87.62893194480398,-87.62909988031724,-87.62932247919034,-87.62958167148517,-87.62975519308605,-87.6300103809058,-87.63018801314261,-87.63061354461502,-87.63112529671777,-87.63154432964245,-87.63207614394999,-87.63252705401131,-87.63279216925261,-87.6334528833338,-87.63445935653168,-87.63472665330505,-87.6350394044903,-87.63540874795089,-87.63575682222185,-87.63624588163212,-87.63661301050625,-87.63703312939285,-87.63718419617376,-87.63750314616202,-87.63791790439292,-87.63829512005354,-87.63975541642189,-87.64019311679719,-87.6406025008351,-87.64099201506311,-87.64145046047545,-87.64192758377477,-87.64215470698829,-87.64258070125939,-87.64310272588766,-87.64355528358843,-87.64399069275738,-87.64421454193868,-87.64475864651224,-87.64520421229204,-87.64669957007291,-87.64732287090868,-87.64772839419994,-87.64802886461545,-87.64845068469023,-87.64862756249281,-87.64876744606343,-87.64906484491823,-87.64995162211898,-87.65014388829907,-87.65026603439566,-87.65052215085326,-87.65082197404338,-87.65107891423776,-87.65139509566329,-87.65177088929022,-87.65227411665043,-87.6528394569998,-87.6534913485134,-87.6541196857097,-87.65464701213766,-87.65500090984789,-87.65544300228775,-87.65708293568127,-87.65747684982809,-87.65780216435191,-87.65824206071734,-87.65856599588419,-87.65904126960586,-87.66014196674597,-87.66042681510257,-87.66070013864308,-87.66101266873144,-87.66119859123438,-87.66135592754026,-87.66138682809209,-87.66133497874489,-87.66119487217915,-87.66106753672905,-87.6609947361793,-87.66099493562855,-87.66099265302205,-87.6610094372776,-87.66108092824631,-87.66127489013414,-87.66155433121885,-87.66196556141534,-87.66211956042677,-87.66242302165725,-87.6627237550052,-87.66290554389016,-87.66313496781568,-87.6642530047303,-87.66451728804981,-87.6648365443731,-87.66508367465576,-87.6653212646912,-87.66556732783945,-87.66592800115745,-87.66649483074494,-87.66677967033436,-87.66698397665959,-87.66726962504178,-87.66751563400859,-87.66783109762963,-87.66888081405813,-87.66968041910435,-87.67003130801768,-87.67033700277686,-87.67065987660504,-87.67094489960147,-87.6717177473141,-87.67212337377285,-87.67240595387626,-87.6725221701779,-87.67258479200754,-87.67268546774811,-87.67276169373567,-87.6728539287781,-87.67318304374206,-87.67367443505907,-87.67392873220747,-87.67405283980932,-87.67419277100615,-87.67429812607537,-87.67429645772852,-87.67434174531505,-87.67431144702036,-87.6743547304706,-87.67443495659602,-87.67454255188647,-87.67464947385915,-87.67485909740581,-87.67506984944085,-87.67562985328355,-87.67621558169068,-87.67653070202734,-87.6768125532287,-87.67708295854253,-87.67733020072318,-87.67758736220145,-87.67785564110218,-87.67808877257997,-87.6782404523905,-87.6783810156471,-87.6784632637567,-87.67847595730136,-87.67841623807469,-87.67815343334054,-87.67767989214211,-87.67717326488885,-87.67688462853079,-87.6766193621109,-87.67642584704677,-87.67624025069634,-87.67610137333335,-87.67596629720256,-87.67588706343366,-87.67579704243754,-87.67579548217486,-87.67594495339605,-87.67606347802747,-87.67635348490452,-87.67654411396224,-87.67680162918774,-87.67699371684708,-87.67717996469112,-87.67752755440507,-87.67784002391973,-87.67822538764538,-87.67845236567945,-87.67871587695639,-87.67889505523078,-87.67915821817456,-87.67933623601726,-87.67948055974983,-87.6799821682264,-87.68027778681611,-87.68043195802636,-87.68058266938758,-87.68063265855443,-87.68076066466304,-87.68084360912806,-87.68119302794116,-87.68163525697364,-87.68182159714354,-87.68202017735864,-87.68222143729521,-87.68265410155156,-87.68320353973922,-87.68381051153644,-87.68403626378296,-87.68430563955759,-87.68458693529944,-87.68485809931607,-87.68510643874379,-87.68638056790007,-87.68664083276691,-87.68692247562547,-87.68719398775343,-87.6874535944951,-87.68772431737553,-87.68827815377429,-87.68867313079403,-87.68909180412876,-87.68948270397375,-87.68973900399801,-87.69000624522023,-87.69033288641232,-87.69059942677993,-87.69138944604256,-87.69198688630409,-87.69417396241732,-87.69486240250075,-87.69538268748124,-87.69575038143216,-87.69613296726538,-87.6964684835566,-87.69687378131947,-87.69720817547379,-87.69769363711225,-87.69831800150517,-87.69894018691512,-87.69928551471861,-87.69952841245951,-87.69975774471486,-87.70004540801614,-87.7008049796447,-87.70179309287042,-87.70246998861425,-87.70277937806753,-87.70305427979171,-87.70320258415386,-87.7034743749023,-87.70376868302705,-87.70403067638701,-87.70486859620793,-87.70542424828275,-87.70577590788855,-87.70607042993812,-87.70635462336072,-87.70664815293121,-87.70688415488118,-87.70734359206403,-87.70759934847504,-87.70778354490818,-87.70797003996458,-87.70808775420839,-87.7081942052169,-87.70827695298172,-87.70834725574916,-87.70840078632912,-87.70845466664208,-87.70851074145752,-87.70855331714631,-87.70863252983885,-87.70870053018233,-87.70892840713898,-87.70914429174128,-87.70945773169117,-87.7097141182017,-87.71004183385644,-87.71039748512486,-87.71165256016282,-87.71453310742133,-87.71584031995097,-87.71625367600195,-87.71651672616939,-87.71691717375268,-87.71717891220288,-87.71799861276008,-87.71857551155688,-87.71883528334115,-87.7191365611345,-87.71933832924364,-87.71958292213549,-87.71977291673156,-87.72036828943263,-87.72085486571915,-87.72135321784279,-87.72165646436166,-87.72193413916686,-87.72229762598649,-87.72251532841497,-87.7229976295051,-87.72323646526736,-87.72343795355295,-87.72353098992733,-87.72363394345562,-87.72380957904825,-87.7239256027238,-87.72405682057099,-87.72425633661918,-87.72442219420027,-87.72474278125384,-87.72510311037182,-87.72548826419093,-87.7258363558815,-87.72659476424238,-87.72724158720266,-87.72780866451259,-87.72805899517023,-87.72850204588254,-87.72950599017936,-87.73024923258593,-87.73093628505738,-87.73149013358972,-87.73182498943167,-87.7322879714704,-87.73266990699514,-87.7330408635583,-87.73347035719684,-87.73385213051634,-87.73414499457975,-87.7346494594721,-87.73502854483644,-87.7353094350003,-87.73560110168147,-87.73585551727832,-87.73610610064185,-87.73627110772937,-87.73637978278937,-87.73641548776818,-87.73637959301564,-87.73627617543229,-87.73619616176397,-87.73605647921649,-87.73596629576609,-87.73583853133592,-87.73548417133082,-87.73527650714416,-87.73524225280774,-87.73518411191873,-87.7352080029504,-87.73519759065815,-87.73524517890074,-87.73533824457917,-87.73543371072574,-87.73558510971505,-87.73573374123328,-87.73581553522705,-87.73592227920062,-87.73600340690764,-87.73607422111363,-87.73616760614435,-87.73630267366183,-87.73649186569655,-87.73664069628533,-87.73677296106152,-87.73692225371742,-87.73701758101667,-87.73736323633189,-87.73768084463511,-87.73767010718704,-87.73771641922094,-87.7377021718812,-87.73763185613619,-87.73762887125625,-87.73769376012548,-87.7377704224884,-87.7379079398431,-87.73801134327763,-87.73816780423033,-87.73827507193566,-87.73840541932186,-87.73856044338764,-87.73870302891069,-87.73879018547828,-87.73886608539243,-87.7389434045448,-87.73907667377419,-87.73919282607055,-87.73928832505736,-87.73932305745367,-87.73938197521035,-87.73939525565891,-87.73941192550157,-87.73933177778122,-87.73929817569442,-87.73911485627991,-87.73913812427202,-87.73926652145279,-87.73939654898196,-87.73959622964436,-87.73978721587947,-87.7399790197731,-87.74016742159338,-87.74040532029105,-87.74063950689506,-87.74088739718898,-87.74104018092338,-87.74118018724167,-87.74147970206674,-87.74162241044405,-87.74172681488761,-87.74174976355788,-87.74177402511718,-87.74175431700232,-87.7417365855277,-87.74164829582318,-87.74148110117623,-87.7413555427558,-87.7412277914825,-87.74110228587944,-87.74103544993558,-87.74084733352457,-87.74069732696697,-87.74055968519735,-87.74034770714718,-87.74018767106881,-87.74003732447397,-87.73982086349136,-87.73956438334965,-87.73939388411731,-87.73910419094608,-87.73892320562688,-87.73755854297966,-87.73729545747223,-87.73660075963055,-87.73649284776315,-87.73626575141988,-87.73581137872908,-87.73544134943504,-87.73496848501806,-87.73464896447733,-87.73429348913604,-87.73398607733937,-87.73358368459589,-87.73327675246458,-87.73280418370234,-87.73223857085935,-87.73171938918449,-87.7313200571087,-87.73088460021063,-87.73053205700766,-87.73016689452014,-87.72986191626713,-87.72941532247179,-87.72916726575623,-87.72866033228969,-87.7281880473528,-87.72789256607319,-87.7274770299768,-87.72709331805093,-87.7269544264949,-87.72673484484534,-87.72654174143098,-87.72641035130668,-87.72620884202445,-87.72606729879942,-87.72601976910931,-87.72599583772728,-87.72600535390445,-87.72600339955487,-87.72604966714499,-87.72607024864233,-87.72617033866634,-87.72618062451529,-87.72625470029314,-87.72629231381532,-87.72637422372401,-87.72644456693672,-87.72652419836132,-87.72673613260466,-87.72680222282133,-87.72700237870669,-87.72729005807437,-87.72738359986336,-87.72740209706102,-87.72737722693076,-87.72732618823787,-87.72722607973184,-87.72706364731005,-87.72676908692074,-87.72636507880671,-87.72592606222506,-87.72532573787866,-87.72512225759044,-87.7248468080037,-87.72461958250994,-87.7242708524017,-87.72398262138299,-87.72368146561548,-87.7234738826694,-87.72320871383971,-87.72301471806406,-87.72276014828864,-87.72254308588433,-87.72223634582764,-87.72198378634549,-87.72189847705259,-87.72183748932665,-87.7217600076948,-87.72176397541448,-87.72167585237861,-87.72167981948603,-87.72160653655108,-87.72133739649684,-87.7213720309889,-87.72144137804494,-87.72155894156859,-87.72174638882079,-87.72193680693508,-87.7224252369945,-87.72297307531777,-87.72339789264547,-87.72374142620278,-87.72410670470013,-87.72437938839414,-87.72465029379013,-87.72485265530986,-87.72501999373056,-87.72520746669859,-87.72525930759835,-87.7253574558606,-87.72537494241294,-87.72535188064435,-87.72495819386759,-87.72447290867116,-87.72338087378384,-87.72308463735733,-87.72274162032544,-87.72236180480635,-87.72147708956112,-87.72074302035324,-87.72051240870172,-87.72037135615298,-87.72024091781931,-87.72000857387823,-87.71979178704065,-87.71959575373727,-87.71947039137878,-87.71932129688672,-87.71913390910215,-87.71890853882563,-87.71877236835148,-87.71855291250884,-87.71832318602456,-87.71806086366665,-87.71779987065214,-87.71746950779111,-87.71710643319638,-87.71674500209323,-87.71624710574396,-87.71577313303929,-87.71518297326912,-87.71490567619364,-87.71443185026,-87.71411722242556,-87.71376806724547,-87.71353408414019,-87.71311272611021,-87.71284242427515,-87.71259418165795,-87.71229816533132,-87.71213209538632,-87.71198579670893,-87.71175304574047,-87.71149316632068,-87.71135844960534,-87.71123532686845,-87.71113202422747,-87.71110802256693,-87.71111192514731,-87.71109926737618,-87.71117184846783,-87.71126224445136,-87.7113678476003,-87.71150882808057,-87.71163685839744,-87.71167391498265,-87.71174749439677,-87.71179370682219,-87.71177557617372,-87.71176469295385,-87.71175250005636,-87.71170660341674,-87.71166005076505,-87.71156700543987,-87.71146005772921,-87.71126861894375,-87.7110920985762,-87.71093001151894,-87.71077855067469,-87.7106514758194,-87.71053784733539,-87.71026762627572,-87.71013591369677,-87.71009949796441,-87.71007780070627,-87.71010092987954,-87.71012570792749,-87.71019666758816,-87.71032221059596,-87.71045692901517,-87.71058791619294,-87.71069169829963,-87.71086845901335,-87.71104998324724,-87.71123659177877,-87.71125287355146,-87.71128154449883,-87.71132957089736,-87.71123295936461,-87.71102269439329,-87.71073505211307,-87.71047144698311,-87.71018714415848,-87.70989494614498,-87.70965070379695,-87.70939586896348,-87.70920941299953,-87.7090753753058,-87.70896884261376,-87.70881244869366,-87.70871322140395,-87.70873910183681,-87.7087688557303,-87.70884464852014,-87.70891177245461,-87.70883920959086,-87.70864375644929,-87.70815639063838,-87.70776182137837,-87.70765163270951,-87.70770688781136,-87.7077921844329,-87.70788924715093,-87.70821206754263,-87.7089028825521,-87.70923774590622,-87.70950085221224,-87.70983071147839,-87.71006917199186,-87.7102652893261,-87.71025548158219,-87.71011953251016,-87.70996364146343,-87.7098006862266,-87.70970955443255,-87.70948441431212,-87.70935314510506,-87.70919835829473,-87.70902310632709,-87.70887672190038,-87.70875278428242,-87.7086454179544,-87.7084496780771,-87.70827776824478,-87.70811704274267,-87.70783656576229,-87.70754462900362,-87.70727259129588,-87.70717271214485,-87.70703953043321,-87.70694309415086,-87.7068594931131,-87.70677174319998,-87.70669658572871,-87.70659090433396,-87.70646666188256,-87.70621116253157,-87.70601735226087,-87.70596575716301,-87.7058084346498,-87.70577284302382,-87.70569738179039,-87.70577457386082,-87.70580944853332,-87.70586891814348,-87.70591719931753,-87.70588669688473,-87.70575796059822,-87.70563427571892,-87.70547326402604,-87.70517425845587,-87.70476921196841,-87.7043835205568,-87.70412574134332,-87.70389823516211,-87.7036898117878,-87.7034586944838,-87.70325843957552,-87.70313558589881,-87.70300513199746,-87.70276335124483,-87.70252070195674,-87.70222677171085,-87.7019653095588,-87.70183516727623,-87.70157790587756,-87.70118044632063,-87.70095206931045,-87.70068250016166,-87.70039135000799,-87.70001884432325,-87.69971645545664,-87.69942552924445,-87.69913212099441,-87.69888834371613,-87.69862159501592,-87.69851301375158,-87.69842467656152,-87.69837641841822,-87.69836546975064,-87.69838062647042,-87.69844962271553,-87.69846730413049,-87.698563846383,-87.69866007390935,-87.69886909033345,-87.69889350036705,-87.69893755365598,-87.69895271398988,-87.69895331276027,-87.69897882227643,-87.69897939832676,-87.69906161995185,-87.69910284685136,-87.69926671174724,-87.69945862852278,-87.6994794064956,-87.69943424302279,-87.69935708916486,-87.69916910464333,-87.69899574225508,-87.69879009747659,-87.69857744617667,-87.69827471064431,-87.69797085510584,-87.69772703406997,-87.69770203418112,-87.69757129527169,-87.69756510806999,-87.69761449845943,-87.69783282334427,-87.69807183356913,-87.69826070287034,-87.69843883536021,-87.69854856254686,-87.69846972220382,-87.69838862124151,-87.69833814391926,-87.6982286954885,-87.69811255977297,-87.69802247183559,-87.6978732073495,-87.6977084926601,-87.69756286545316,-87.69728564433765,-87.69704011675341,-87.69687509987718,-87.69657937981495,-87.69627548649649,-87.69598000824219,-87.69556360305766,-87.694943169835,-87.69472426098167,-87.6945797552916,-87.69440884499814,-87.69430273960916,-87.69412370893957,-87.69363536826779,-87.69345464169652,-87.69325142319515,-87.69302749877396,-87.69281506281708,-87.69266324565446,-87.69238145731997,-87.69196782735543,-87.69146038417178,-87.69117525847309,-87.69098945062792,-87.69071412742721,-87.69055581878168,-87.69037002900923,-87.69012549911984,-87.68994755000243,-87.68979429383202,-87.68969041268116,-87.68957582769595,-87.68955055257155,-87.68946152096994,-87.68942106813307,-87.68933180668387,-87.68922398129038,-87.68905720247476,-87.68884387767355,-87.68869284295364,-87.68854909125666,-87.68839805251319,-87.68825322866441,-87.68805444976172,-87.68778525912761,-87.68749498035599,-87.68730829198741,-87.68730570730007,-87.6874420575453,-87.6874529620537,-87.68760918288818,-87.68712769322207,-87.68643093639082,-87.68564689449066,-87.68427692520193,-87.68398775813137,-87.68368880508066,-87.68332978670874,-87.68316024801996,-87.68293149185598,-87.68265102829059,-87.68228160133636,-87.68198122144578,-87.68163904438684,-87.68132882584834,-87.68103632712722,-87.68064216001737,-87.68042764529699,-87.68027122216955,-87.68019198468542,-87.68012283390021,-87.68010084016325,-87.67998084652436,-87.67986843923872,-87.67976868357759,-87.67962438083615,-87.67946794981147,-87.67925116942249,-87.67906526142724,-87.67872214845127,-87.67842146349706,-87.67771032877837,-87.67706508619577,-87.67683290160495,-87.67622755816197,-87.67598608217554,-87.67561402257974,-87.67510076875445,-87.67486269069961,-87.67462634067006,-87.67446045371328,-87.67422805953336,-87.67394627323999,-87.67363525840089,-87.67343091350828,-87.67327318530579,-87.67290822691992,-87.67275044060311,-87.67262020615385,-87.67223277625114,-87.6720404048851,-87.67185759242697,-87.67176991123655,-87.67174092357747,-87.67181997614895,-87.67203712587322,-87.67216225019995,-87.67243843376775,-87.67262838813295,-87.67273349458065,-87.67265978617704,-87.67256512093154,-87.67238002289797,-87.67174189023629,-87.67135541677558,-87.67086589158853,-87.67068163477232,-87.67031597477403,-87.6700598672459,-87.66956889258041,-87.66937366350957,-87.66910540501856,-87.66896626536423,-87.66887073138322,-87.66883528085047,-87.66871809710206,-87.66857868018693,-87.66841848770936,-87.66814481816036,-87.66790717791523,-87.66764840239094,-87.66745401050844,-87.66710971095122,-87.66682856116027,-87.66646940873193,-87.6661402866052,-87.66562417343977,-87.66534536321096,-87.66512602802135,-87.6647657136981,-87.66449355727553,-87.66365857195767,-87.66302165297988,-87.66247642028458,-87.66175370890804,-87.66154934011254,-87.66147867069201,-87.66148317931153,-87.66147846690937,-87.6615257442635,-87.66155531355925,-87.66156215236697,-87.66161199979493,-87.66163005093298,-87.66172187761849,-87.66175415852439,-87.66180114304328,-87.66183832118254,-87.66187802835059,-87.66192758207053,-87.66194792633884,-87.66203591001941,-87.66203718670307,-87.66206623896547,-87.66207390127242,-87.66201250774745,-87.66189264432204,-87.66176586557212,-87.66159924238079,-87.66144439000101,-87.66124935669392,-87.66103381654145,-87.66067900081279,-87.66039111277925,-87.65981051170253,-87.65955283013133,-87.65924238375744,-87.65880379914802,-87.65853781354869,-87.65815957445108,-87.65733180566224,-87.65667566315726,-87.65637616822173,-87.65607628252857,-87.65584660586163,-87.65557551615746,-87.65532503290832,-87.6549590013983,-87.65450698847864,-87.65402680321948,-87.65391015174778,-87.65384907424655,-87.65376818471464,-87.65371834769418,-87.65355605541289,-87.65317345837123,-87.65302797913267,-87.65285614286763,-87.65269560829904,-87.6525982916057,-87.65253203465525,-87.65238995962636,-87.65225765958532,-87.6521190046184,-87.65185276751734,-87.65148637845759,-87.65096717941162,-87.65070913644142,-87.65045169952865,-87.65014316391306,-87.64988453792941,-87.64959327301656,-87.64926906380391,-87.64883972807627,-87.64860411263977,-87.64844346081249,-87.64822770015766,-87.64817820549695,-87.64805712263278,-87.64796572341663,-87.64781474391725,-87.64783580342664,-87.64793423061298,-87.6479447483829,-87.64807374791413,-87.64814512194364,-87.64821592060356,-87.64826532260597,-87.64825146756631,-87.64801876317371,-87.64792852097993,-87.64769397505513,-87.64764565779132,-87.64754477003136,-87.6475513550178,-87.64763560192772,-87.6477058174909,-87.64777423837606,-87.64786487660227,-87.64795471982534,-87.64797175994389,-87.64810195323501,-87.64818165118106,-87.64821257047487,-87.64821777930739,-87.64806781964201,-87.64798566579121,-87.64789768529906,-87.64789181510614,-87.64785258096104,-87.64785390180016,-87.64788970593767,-87.64798931250715,-87.64805143385206,-87.64816436627714,-87.64816510473219,-87.64832649015132,-87.64848992571784,-87.64869288179106,-87.64896743828879,-87.64948178769575,-87.64971620851021,-87.64999591689606,-87.65015040082319,-87.65029756694652,-87.65053492446154,-87.65076219727611,-87.65106142549426,-87.6511912885769,-87.65142240316754,-87.65174352139596,-87.65195539880651,-87.65228989972651,-87.65263536608889,-87.65289708047729,-87.65318613634436,-87.65339299290321,-87.65358881862269,-87.65375553438503,-87.65393864807768,-87.65413243039457,-87.6543047951822,-87.65448821837283,-87.65470904813444,-87.65485211136476,-87.65503493550972,-87.65522665590507,-87.65536933728247,-87.65547017320964,-87.65557845079944,-87.65564957034843,-87.6557509892868,-87.6558218312571,-87.6559942360347,-87.65617676498805,-87.65634173238149,-87.65658430458191,-87.65664762708742,-87.65672024203622,-87.65671922416594,-87.65670984519066,-87.65662079186511,-87.65655051460274,-87.65651257667554,-87.65641044976321,-87.65604358987936,-87.65589500515077,-87.65586450100878,-87.65584445125073,-87.65583476595617,-87.65582124815799,-87.65591252787029,-87.6559845404432,-87.65610269876902,-87.65622692620266,-87.65639999073093,-87.65659293063312,-87.65678468860347,-87.65688554310944,-87.65693469789335,-87.65696546515585,-87.65693438724269,-87.65668459884705,-87.65663961933758,-87.65658573680768,-87.65659609238766,-87.65666341888276,-87.6567654393302,-87.65696288507166,-87.65725935117501,-87.65763752533539,-87.65781082542088,-87.65810457242492,-87.65832957905613,-87.65854570851359,-87.658831927615,-87.659235349482,-87.6602739609215,-87.66129403675301,-87.66229397000502,-87.66281745358509,-87.66341114696051,-87.66377910358671,-87.66415714902863,-87.6644737921024,-87.66477127016068,-87.66502848049633,-87.66553438789512,-87.66587410977337,-87.6666981281424,-87.66697550896184,-87.66740263835004,-87.66768918250452,-87.66903036810803,-87.6695758048878,-87.67007267927988,-87.670463063076,-87.67072825438986,-87.67108442900091,-87.67142096316374,-87.67178633303774,-87.67209140932471,-87.67231656725193,-87.67254340130921,-87.6727203135994,-87.67290764825334,-87.67321183582887,-87.67346637604093,-87.67377956026561,-87.67400202303534,-87.67425424107894,-87.67438667596203,-87.67451996838653,-87.67462034616398,-87.67471150616677,-87.6748014378315,-87.67479735769801,-87.67483712038332,-87.6748748531608,-87.67485389365221,-87.67483303677024,-87.67479108436358,-87.67470892682118,-87.67460517609683,-87.67455515821062,-87.67454641986419,-87.67465657543568,-87.67476792719054,-87.67486172457875,-87.67499795121574,-87.67519160130554,-87.67535784353343,-87.67550562075843,-87.67581072567502,-87.67606770554805,-87.67675299299648,-87.67742077249392,-87.67770952258054,-87.67815757791524,-87.6784477055441,-87.6788360155217,-87.67923529529079,-87.67979713563091,-87.68043065065515,-87.68060187781873,-87.68096357898597,-87.68130259032223,-87.68172007525334,-87.68199634448264,-87.68231127676655,-87.68256646042147,-87.6828800261944,-87.68314236609977,-87.68340393343509,-87.68364555844718,-87.68455021057977,-87.68480047438625,-87.68505161516313,-87.68530477756092,-87.68562873998822,-87.68586320739608,-87.68622900766223,-87.68648683711294,-87.68689340071822,-87.68725232246135,-87.68758028496227,-87.68786008107671,-87.68880951434375,-87.68925076065878,-87.68970148537963,-87.69002003078872,-87.69045946756653,-87.69082849924753,-87.69139855076558,-87.6921126467937,-87.69258971422026,-87.69299513004309,-87.69331044726297,-87.69380918975705,-87.69718575646532,-87.69806704830894,-87.69901589299269,-87.69946435870756,-87.69977102366688,-87.69999916933362,-87.70023909507326,-87.7004639824432,-87.70061442019923,-87.70069383483006,-87.70080438386795,-87.70098347002425,-87.70124413151785,-87.70178121659639,-87.70205000906172,-87.70246236835679,-87.70267946416961,-87.7030935031049,-87.70336119626904,-87.70477625437294,-87.70505510352253,-87.70544579117502,-87.70572520663866,-87.70609537408548,-87.70651143128124,-87.70670136094895,-87.70704944108449,-87.70738052312488,-87.70749367113442,-87.70759753746692,-87.7077597330438,-87.70784489095701,-87.70823687926955,-87.70918293897603,-87.71164177176712,-87.71404911677278,-87.71492003547526,-87.7152058395649,-87.71550241273478,-87.71572737076218,-87.71602224706925,-87.71614147132912,-87.71631210679352,-87.71671571209691,-87.71716234647796,-87.71754779574451,-87.7181291820424,-87.71878304495623,-87.7191837198545,-87.71941518350862,-87.71945406045725,-87.71940488240097,-87.71928035755575,-87.71935298197704,-87.71974727681932,-87.72011377265055,-87.72072013555693,-87.72102141744512,-87.7213033840041,-87.721594880081,-87.72184649605096,-87.72221129106003,-87.72226188698608,-87.7224144281093,-87.72296905636787,-87.7236731461925,-87.72389500021738,-87.72407502488676,-87.72430615484754,-87.72447326086164,-87.72522624020858,-87.72543827748788,-87.72565001634439,-87.72584189882097,-87.72608394504516,-87.72629570068898,-87.72762578614555,-87.72812643577657,-87.72840602475445,-87.72867528413846,-87.72952648055242,-87.73013124202028,-87.73061442823675,-87.73140866079065,-87.73211479450825,-87.73299182128504,-87.73345422717027,-87.73488015176602,-87.73564937692028,-87.73721945223821,-87.737956417509,-87.73809767382916,-87.73824084488371,-87.73833242844337,-87.73845459810819,-87.73848472535765,-87.73851713661378,-87.73853599647511,-87.73854166451423,-87.73859868260375,-87.73867645735731,-87.73888526485128,-87.73909321577723,-87.73935926785251,-87.73972659850462,-87.74015394663617,-87.7404788363343,-87.74092414639541,-87.74121703524895,-87.74139770952013,-87.74280558945911,-87.74304548221185,-87.74342791392138,-87.74387091198881,-87.74425392535967,-87.74454880347238,-87.74491469885032,-87.74515825762482,-87.74556680279065,-87.74616668006325,-87.74665461381635,-87.74700114746254,-87.74738810711442,-87.74771468481448,-87.7482034601672,-87.74846752466593,-87.74893607494752,-87.74945683633267,-87.75007269996706,-87.7508512682991,-87.75108670105014,-87.75127495226943,-87.75145232434581,-87.75159322022434,-87.75160277485359,-87.75161431143917,-87.75156433383003,-87.75148442276205,-87.75138400018994,-87.75127681637466,-87.75121485910587,-87.75125020931229,-87.75130943779978,-87.75148173492231,-87.75165093660053,-87.75183303721697,-87.75204294204924,-87.75223206945169,-87.7524338114651,-87.75268492998642,-87.75299748188469,-87.75333982053104,-87.75358897222645,-87.75394780660079,-87.75426566575391,-87.75468093178259,-87.75500666292497,-87.75549259325682,-87.7560184027063,-87.7566148604232,-87.75699922378216,-87.75730333006756,-87.75760777530195,-87.75799298097806,-87.75832962179472,-87.75889724402037,-87.75999558846682,-87.76027896443266,-87.76077637367884,-87.76113831612183,-87.76160996978031,-87.76192980989043,-87.76227064669268,-87.76291879519002,-87.76348638406493,-87.76386210382719,-87.76422066294872,-87.76456773052347,-87.76489433921034,-87.76525122251427,-87.76545775655606,-87.76658294941041,-87.76685061373368,-87.76722496032724,-87.76758130227908,-87.76791775972902,-87.76823565842253,-87.7691307771407,-87.76954968857785,-87.76992875714009,-87.77029859243297,-87.77069954134949,-87.77102109176502,-87.77147339432935,-87.77180725109784,-87.77213892324194,-87.77277664636645,-87.77359590367384,-87.77434556936706,-87.77516953788169,-87.77658602236176,-87.77718582349617,-87.77755306708153,-87.77789924089555,-87.7783147516744,-87.7786827868493,-87.7790892995487,-87.78018650451564,-87.78080399881846,-87.78123886805538,-87.78158005956105,-87.78197202432409,-87.78232303082704,-87.78295437300527,-87.78389862317658,-87.78435272422035,-87.78479837948284,-87.78558616980665,-87.7861952252947,-87.78699884893715,-87.78746651656698,-87.78813537725688,-87.78876911094186,-87.78932313350617,-87.79010185947919,-87.79105756094735,-87.79146158633424,-87.79231822709302,-87.79408060299136,-87.79560030202173,-87.79687731929015,-87.79840629706499,-87.79966308406186,-87.80059401226504,-87.80135239000148,-87.80161582867341,-87.8023054118263,-87.80311675964866,-87.80367861107867,-87.80402642556,-87.80423142896714,-87.80449762756938,-87.80482441530138,-87.80523227677863,-87.80547714775469,-87.80588665562978,-87.80620223071378,-87.80653966609509,-87.80675559474663,-87.80700076963961,-87.80732781207678,-87.80765541421577,-87.80792239584015,-87.80825626601897,-87.80906399052219,-87.80936644789158,-87.80976990820581,-87.81035324925082,-87.81137008987641,-87.81174242775502,-87.81210275504463,-87.81259546337878,-87.81344823994594,-87.81556081540532,-87.81768319578102,-87.81880217880803,-87.82077421175073,-87.82170619353019,-87.82236872644539,-87.8227115801907,-87.82307710414851,-87.82324279979531,-87.82329764253477,-87.82339914665471,-87.82344828384203,-87.82355963016981,-87.82367970359113,-87.82392068780834,-87.82409812114615,-87.82426460877606,-87.82446087307727,-87.82469616299852,-87.82507257532863,-87.82531661064347,-87.82552817593361,-87.82596192578642,-87.82638367487787,-87.82668232295059,-87.82739456364045,-87.82835280825891,-87.82868834025409,-87.82887831840735,-87.82901568073143,-87.82933235436768,-87.82969982570063,-87.8300489750761,-87.83039814551179,-87.83071891237611,-87.83105879224506,-87.83144998253637,-87.83188104283708,-87.83226564731903,-87.83261970073542,-87.83294426581708,-87.83315798420882,-87.83332202529445,-87.83368944176085,-87.83406033177009,-87.8344206159997,-87.83477268457179,-87.83500029715253,-87.83526037317792,-87.8354768068338,-87.83556247863007,-87.83573163719184,-87.83587161197363,-87.83598208062114,-87.83607720156219,-87.83620300488828,-87.83624331051507,-87.83627513556364,-87.83632474640036,-87.83632490731492,-87.83642419268999,-87.83663717258149,-87.83722777727114,-87.83747773568726,-87.83763786183837,-87.83789682610195,-87.83814703418079,-87.83848973263366,-87.83891298195726,-87.83917110601745,-87.83953186301038,-87.83979846472171,-87.84012757240829,-87.84042501837607,-87.84079368684989,-87.84117272222881,-87.8417864667955,-87.84254074918242,-87.84282621981686,-87.84314194806328,-87.84357806857361,-87.84425842508455,-87.84461590528281,-87.84559611913645,-87.84622069893943,-87.84658882584685,-87.84694629611727,-87.84744861898909,-87.84787892047437,-87.84862443151115,-87.84896087675948,-87.84929625778963,-87.84965978952016,-87.85008120358231,-87.85030119933046,-87.85052807933681,-87.85082431214619,-87.8510883630469,-87.85127215311189,-87.85135632246963,-87.85137776322441,-87.85141035801246,-87.85139248396716,-87.85128708203882,-87.85111368757229,-87.85100305898946,-87.85078211528575,-87.85060344499846,-87.85033164730071,-87.84995282763899,-87.8498798670492,-87.84981095287053,-87.84981958462394,-87.84982001610638,-87.8499208687802,-87.85006660685883,-87.8503048316289,-87.85055155921769,-87.85081295646575,-87.85101722945707,-87.85131796488263,-87.85153288493483,-87.85179509642762,-87.85203790193219,-87.85228367832985,-87.85256055975624,-87.85284807349707,-87.85317545517063,-87.85358496787207,-87.85371383231339,-87.8539136881176,-87.85428307465683,-87.85468463025664,-87.85510640170884,-87.85558662531803,-87.855938760903,-87.85637035893886,-87.85680115295631,-87.85726090651937,-87.85758168565398,-87.85796967315032,-87.85842915538686,-87.85878712791224,-87.85905472973525,-87.85952192107474,-87.85984956950814,-87.8603157051061,-87.86063301534635,-87.86098964178386,-87.86130400639851,-87.86169014377417,-87.86195614735087,-87.86246531249222,-87.86291921088697,-87.86319265407474,-87.86344537928061,-87.86368959948335,-87.86397288367287,-87.86422479003448,-87.86442754620133,-87.86480277525381,-87.86522154914847,-87.86531186843646,-87.86544313162929,-87.86555526289369,-87.86565462711643,-87.86571652335967,-87.86575871044919,-87.86580090385435,-87.8657474146307,-87.8657375401304,-87.86570720303554,-87.86563644821091,-87.86556436137919,-87.86551327965944,-87.86542522116049,-87.86531530055852,-87.86531553702756,-87.86530405211404,-87.86534494528922,-87.86536536883031,-87.86540440136459,-87.86598370219787,-87.86606607481357,-87.86625423015846,-87.86646714111561,-87.86665105763271,-87.86683126225141,-87.8672605416662,-87.86764091779922,-87.8679843594573,-87.86826133895737,-87.86856571567871,-87.86885254363499,-87.86922870928471,-87.86958572285536,-87.87004189548664,-87.87042151453184,-87.8707617984456,-87.87115258808825,-87.87133310335548,-87.87172576573033,-87.87213809737997,-87.87249061231147,-87.87296381110905,-87.87338838505016,-87.87396712795429,-87.87445496795924,-87.87508787162731,-87.87528321756805,-87.87543266973447,-87.87554659753043,-87.87567496069533,-87.87563595368158,-87.87556516945109,-87.87545213760779,-87.87541171706538,-87.87508570724415,-87.87485154840809,-87.87449613257981,-87.87400009088147,-87.87374517704001,-87.87356096176633,-87.87322680988923,-87.87294184234591,-87.87263776436046,-87.87248306194745,-87.87226695372067,-87.87178529258192,-87.87143254885285,-87.87111864138271,-87.87082492390756,-87.87057080925389,-87.87034887409641,-87.87015616977409,-87.87004190029569,-87.86997599022074,-87.86989225560218,-87.86978860845629,-87.86969665711311,-87.86964671138742,-87.86961669926633,-87.86963800247261,-87.86967682889311,-87.86986982885581,-87.87009179450872,-87.87034006110528,-87.87056732972364,-87.87078290396249,-87.87111171727743,-87.87151971820221,-87.87189824044177,-87.87229534218494,-87.8726515240016,-87.87308929009667,-87.87346460195275,-87.87403446403123,-87.87472845803727,-87.87508757225132,-87.87564092650101,-87.87599415172248,-87.87616267044812,-87.87642366779575,-87.87662353592077,-87.87683349111926,-87.87703442836762,-87.87720504353204,-87.87755055563947,-87.87790428441305,-87.87838825087699,-87.87876830280169,-87.87907608459102,-87.87942238682552,-87.87973891332548,-87.88016908253947,-87.88114454295332,-87.88177139585484,-87.88210913068629,-87.88263902053903,-87.88316343911902,-87.88375506598426,-87.8842840008118,-87.88458168665557,-87.8847518606036,-87.88502959803908,-87.88528606401491,-87.8855316583023,-87.88583756488606,-87.88606375606356,-87.88635877569516,-87.88657909627263,-87.88707268434453,-87.88746207010179,-87.88762476399536,-87.88777864401752,-87.88784033355924,-87.88793200790845,-87.88809231010363,-87.88820155685769,-87.88815265922399,-87.88806522068808,-87.88802138321479,-87.88796317270803,-87.88786854680778,-87.88775796045074,-87.88758068473132,-87.88735527576806,-87.88630793123733,-87.88580391414693,-87.88549979871942,-87.88498512610622,-87.88446194656247,-87.88397349007492,-87.88346932842703,-87.88307995748873,-87.88282427014532,-87.88255848994341,-87.88220336234859,-87.88190937175742,-87.88159623996489,-87.88139316520436,-87.88112922416616,-87.88083495900582,-87.8805010861272,-87.88013295975442,-87.87982623921198,-87.87949798201345,-87.87925078020643,-87.87904717144383,-87.878832142432,-87.87866656190315,-87.87854323250485,-87.87797154061535,-87.87775095706147,-87.87766836241751,-87.87760886090642,-87.87757381969575,-87.87750792257501,-87.87739739736311,-87.87720974003965,-87.87703087510448,-87.87678102069611,-87.87640757277059,-87.87597219519608,-87.87570504301489,-87.87544693403116,-87.87522096542108,-87.87504335899564,-87.874703388367,-87.8742000217815,-87.87379631004283,-87.87323130473277,-87.8728552995064,-87.87250456173598,-87.87211324766216,-87.87186797389177,-87.8716369755419,-87.87138678318722,-87.87128149817326,-87.87127738166495,-87.87130609748662,-87.87140127253336,-87.87157655388791,-87.87179500308274,-87.87201263666134,-87.87247725948646,-87.87311310898757,-87.87360418230317,-87.87406501701848,-87.87420687785078,-87.8744641872352,-87.87468277051737,-87.87495275010582,-87.87520966243181,-87.87535581770624,-87.87553716849808,-87.87554558584658,-87.875643224039,-87.87564795519015,-87.87562890071628,-87.87563966046241,-87.8755328267371,-87.87548575522051,-87.87543211425991,-87.87532281969989,-87.87525036180401,-87.87451265019338,-87.87427668865817,-87.87408228048564,-87.87386023522595,-87.87361098449644,-87.87321194137455,-87.87278965099463,-87.87221529214028,-87.87190166552548,-87.87153235328205,-87.87123403603174,-87.87073186983503,-87.87039363712276,-87.86994491332463,-87.86953860621837,-87.86920206260692,-87.86870348656703,-87.86838120442961,-87.86790823143969,-87.86753179339729,-87.86734333389488,-87.86706129095336,-87.86666994895172,-87.86631771957418,-87.86589785057913,-87.86554559231632,-87.86496473920886,-87.86458723133435,-87.86408826942504,-87.86381942037291,-87.86325271711495,-87.86302341806856,-87.8624001738383,-87.86199338664234,-87.86158775477028,-87.86105998694194,-87.86074619382963,-87.86046129042535,-87.86017459949366,-87.85980522883958,-87.85957165092286,-87.85925360112479,-87.85898580089872,-87.85867776447211,-87.85852290077281,-87.85829818941821,-87.85821922170901,-87.8581009634034,-87.85803908415734,-87.85776291454945,-87.85760559356117,-87.85749845290782,-87.85739685395352,-87.85730609089183,-87.85723071078877,-87.85713320508169,-87.85696973932896,-87.85683961767695,-87.85675928279446,-87.85671292800349,-87.85675976343278,-87.85686105215778,-87.85687351446164,-87.85716743832646,-87.85757144268882,-87.85775062264388,-87.85803319901038,-87.85831718295583,-87.85865170715627,-87.85908898948399,-87.85931987981085,-87.85952159595377,-87.85964380108045,-87.85968910935854,-87.85969063576439,-87.8597451890116,-87.85973492530711,-87.85967524688368,-87.85961149192174,-87.85951784570784,-87.85944921126487,-87.85935129114947,-87.85926728342027,-87.85921690698494,-87.85902332922799,-87.8589424187322,-87.85886212207838,-87.85875091996748,-87.85853585051299,-87.85819487062139,-87.85780902637495,-87.85751799433685,-87.85709405450652,-87.85665562037227,-87.85515738158634,-87.8547135145033,-87.8543900492359,-87.85258657689491,-87.85231683943702,-87.85206253104776,-87.85187329691486,-87.8515743698545,-87.85130365566857,-87.85093628233905,-87.85073142004943,-87.84974095517479,-87.84952263597557,-87.8492699578524,-87.8491395791855,-87.84913677626741,-87.84919948895298,-87.84924908681199,-87.84922951529936,-87.84928649415558,-87.84931286978033,-87.84935816444505,-87.84942198596652,-87.84948899207129,-87.84950465609553,-87.84958557496398,-87.8496287210631,-87.84966938936842,-87.84984365907012,-87.84995305125257,-87.85015722754549,-87.85024171475122,-87.85046834127908,-87.85059416686865,-87.85079518417628,-87.85098546978938,-87.85120219425772,-87.8514819686205,-87.85173996156686,-87.85211809796388,-87.85237820425418,-87.85278270837634,-87.85305646227644,-87.85347338339783,-87.85368153977333,-87.85507119099439,-87.85535632225442,-87.85562610351127,-87.85585776090869,-87.8560930686843,-87.85632133782363,-87.85651667268162,-87.85663235912851,-87.85674000983279,-87.85681103586904,-87.85691297893354,-87.85702245775022,-87.85706744205693,-87.8570925749344,-87.85715416355215,-87.85714733453635,-87.85712351584125,-87.85694999820691,-87.85706557063745,-87.85720278688598,-87.85735615753072,-87.8575596351111,-87.85775539504029,-87.85797740250813,-87.85834455524345,-87.85881750295772,-87.85908954843342,-87.85956404412174,-87.86017576253194,-87.86034982536103,-87.86041937648348,-87.86059300581248,-87.86063621239379,-87.86065133665035,-87.86063149424629,-87.8606066763259,-87.86055504953792,-87.86054442632826,-87.8604795904801,-87.86041441310849,-87.86022506109893,-87.86018338009511,-87.86013247309759,-87.86009479698396,-87.86002746758703,-87.86003077530509,-87.8600468356299,-87.86012607634967,-87.86033723490607,-87.86062780307805,-87.86080507997261,-87.86098225724766,-87.86117441724078,-87.8614172682466,-87.8615963137144,-87.86179888337814,-87.86192115037959,-87.86201786754251,-87.86215267048486,-87.86210140538299,-87.86197135402936,-87.8617496625949,-87.86101801241759,-87.86023134346416,-87.85990377486543,-87.85989020000368,-87.85919152414672,-87.85879766836148,-87.85824554510199,-87.85778637826182,-87.85730272141508,-87.85687361682525,-87.85662347606559,-87.85623207603147,-87.85588236443483,-87.85581182102659,-87.85571519125173,-87.85541462813877,-87.85510201459418,-87.8543176865967,-87.85346626671779,-87.85318106248708,-87.85273428975155,-87.85242520184136,-87.85211463296014,-87.85043109243551,-87.85009379896672,-87.84964912533857,-87.84921811854257,-87.84875889128624,-87.84841979490822,-87.84798657345182,-87.84764854352773,-87.84738896028583,-87.84725131447621,-87.84708444150257,-87.84692973569935,-87.84670793849916,-87.84658170345764,-87.84648327631511,-87.84630175274077,-87.84616312075549,-87.84608995698903,-87.84594908875573,-87.84585252963035,-87.84563320728776,-87.84538648149959,-87.84523059981683,-87.84521952879246,-87.84512966169375,-87.84510394246492,-87.84502728638331,-87.8448796196501,-87.84469710402455,-87.8441660817204,-87.84314091867185,-87.8421052901973,-87.84074633971082,-87.83972614079254,-87.83921332177123,-87.83886024278428,-87.83853536805789,-87.83838705617698,-87.83811706504501,-87.83786208865139,-87.83766133576802,-87.8373656958636,-87.83703048353591,-87.83662790255062,-87.8362776688404,-87.83593886320151,-87.83565286026527,-87.83547271942172,-87.83527908546748,-87.83515245783174,-87.8348980551134,-87.83465692722997,-87.83452742945502,-87.83423852972389,-87.83393748887616,-87.8336525457849,-87.83329764015711,-87.83301051663398,-87.83273296180982,-87.83268333124281,-87.83256451498913,-87.83249770289808,-87.83245841652685,-87.83250430601805,-87.83258302468305,-87.83264473526505,-87.83266353085176,-87.83245198495484,-87.83213518682152,-87.83190195101847,-87.83142357279361,-87.83119248878815,-87.83093387846246,-87.83066347646749,-87.8302843103105,-87.82982562824947,-87.82952814907624,-87.82917794920427,-87.8287474329379,-87.82839785623263,-87.82807761858872,-87.82778372156567,-87.82747959070697,-87.82722924016846,-87.82696641220188,-87.82673145881546,-87.82633347979755,-87.82605309935529,-87.82581274423288,-87.82551597387103,-87.82515147191792,-87.82484003844517,-87.82469132504193,-87.82461529169528,-87.82477412305174,-87.82481899561608,-87.82482933192892,-87.82473645189087,-87.82446352266867,-87.82430301920333,-87.82399483927369,-87.82364894717357,-87.82316740113525,-87.82282295680534,-87.82236893912294,-87.82211497181021,-87.82161813084809,-87.82125612314691,-87.82076070966268,-87.82041113383507,-87.8202473795768,-87.82010855416836,-87.81995657983373,-87.81989800805175,-87.81982440147027,-87.81979080055872,-87.8198659813978,-87.82001961691081,-87.82020221420551,-87.82048886910697,-87.82058861668787,-87.82065067022548,-87.82065983489812,-87.82058304132266,-87.82053696454213,-87.82035673866869,-87.82015086876579,-87.81990832557713,-87.81965328224881,-87.81918528740692,-87.81875906203297,-87.81821161098813,-87.81784806590126,-87.81740759848607,-87.81699458404975,-87.81651489272458,-87.81623377204976,-87.8158599803392,-87.8156060837199,-87.81532168138874,-87.81497033689422,-87.81461710681715,-87.81435769321122,-87.81412835023127,-87.81384324761733,-87.81359812710551,-87.81342116006017,-87.81322921174547,-87.81303581044796,-87.81287865569989,-87.81288499481535,-87.81296162217845,-87.81291260918427,-87.81282617270298,-87.81275253880666,-87.81269691839127,-87.81270498259208,-87.81276230156325,-87.81286203350669,-87.8128943434232,-87.81279036462634,-87.8126900570128,-87.81253835721668,-87.81235488957142,-87.81186982094,-87.81157676395252,-87.8114331784079,-87.81119828796162,-87.8108956272538,-87.81066227433466,-87.81037355980858,-87.81013901393668,-87.80992024894128,-87.8096736558155,-87.80928927586606,-87.80895807348148,-87.8086806702055,-87.80844438208254,-87.80823735822156,-87.80801568011535,-87.80773898981036,-87.80743631795481,-87.8072311204197,-87.80690242851257,-87.80647261609619,-87.80626448503119,-87.80600804668772,-87.80586660460573,-87.80581792235211,-87.80571350269295,-87.80575830823919,-87.80577376103369,-87.8058548719561,-87.80596161054099,-87.80609844042294,-87.80629970233453,-87.80643837066334,-87.80658724821545,-87.8068054497154,-87.80690446042688,-87.80708125189003,-87.8071615721081,-87.80729112580246,-87.80729481612605,-87.80725570653857,-87.80727263137835,-87.80728525012647,-87.8072493332234,-87.80716845768896,-87.80699069038592,-87.80682360511862,-87.8066176347392,-87.80638457089613,-87.80601799851553,-87.80578602304449,-87.80562255392461,-87.80549759952569,-87.80528901147092,-87.80499875115061,-87.80476349333657,-87.80411476590656,-87.80357447112021,-87.80330033716457,-87.8031888809967,-87.8029983116034,-87.80268525625924,-87.80229087379729,-87.80196275918662,-87.80108707577712,-87.80059370884989,-87.80034630039785,-87.80004571732181,-87.79980962678857,-87.79960033301785,-87.79935072753291,-87.79906954472632,-87.79886835318418,-87.79865394674589,-87.79855130701826,-87.79854657499422,-87.79847329614871,-87.7983948354772,-87.79836743646122,-87.79828897333573,-87.79825965440455,-87.79820507995343,-87.79816336501183,-87.79813882407593,-87.79806041310778,-87.79805164723668,-87.79790392791429,-87.79787943751028,-87.79779364742511,-87.79773796803909,-87.79777652688811,-87.79777878242298,-87.79779310439321,-87.79788917014278,-87.79806305120641,-87.79811621961325,-87.79822734482106,-87.79822010204157,-87.79817166794187,-87.79815120659312,-87.79806395604278,-87.7979671498524,-87.79770682506661,-87.79705494781574,-87.79675611757813,-87.79661897054261,-87.79634504572694,-87.79614818664025,-87.79596266754712,-87.79565176321535,-87.79549339440936,-87.79536471408684,-87.79519532386003,-87.7949588056988,-87.7947582691215,-87.79460021067605,-87.79436703372984,-87.79409089104848,-87.79385771098005,-87.793565779174,-87.79331718294587,-87.79310635759815,-87.79300109807947,-87.79285814036153,-87.79272497398767,-87.79267511723614,-87.79257577185425,-87.79254054941951,-87.79249729098885,-87.79253766186578,-87.79257868571192,-87.7926594033908,-87.79275294271831,-87.79288202839386,-87.7928919795641,-87.79280759873963,-87.7927584903811,-87.79278270209113,-87.79282892620935,-87.79289678343062,-87.79313590393588,-87.79339627846588,-87.79364713787153,-87.79400250500758,-87.79441435740267,-87.79484089883783,-87.79533271879765,-87.79627782130436,-87.79690313417086,-87.79790619430366,-87.79826017936146,-87.79859793749999,-87.79880300188046,-87.79899445783306,-87.79910822936472,-87.79920432799669,-87.79924583817906,-87.79938892863123,-87.79949787675804,-87.79960537607924,-87.79971581560477,-87.7998112515876,-87.79988206647177,-87.80001996569263,-87.80011980579098,-87.80025626079156,-87.80037733869919,-87.80052738849989,-87.80066457020793,-87.80085393154791,-87.80104067629414,-87.80114263854125,-87.80126666089026,-87.80145704624891,-87.80167098310341,-87.80182139447253,-87.80198248812286,-87.80205259287843,-87.80208453979103,-87.80206400741332,-87.80202995490421,-87.80198816595468,-87.80197975826005,-87.80198093701783,-87.80197255111374,-87.80199974716761,-87.80202365401323,-87.80209229493323,-87.80208025270551,-87.80212469988656,-87.80217718763305,-87.80224406816754,-87.80228151886348,-87.80236303573186,-87.80239279463177,-87.80246144107767,-87.80242736616636,-87.80250741821503,-87.80253755122787,-87.80257682117941,-87.80267631993962,-87.80272148935785,-87.80285579072009,-87.80300741025336,-87.80316925693873,-87.80326504571021,-87.80337624532329,-87.80355094479907,-87.80359467625541,-87.8036886304954,-87.80377500335214,-87.80392474351463,-87.80400853792707,-87.80406698003533,-87.80412043222324,-87.80430764106298,-87.80447058887856,-87.80451600566212,-87.80458060296603,-87.80446299150667,-87.80346599406576,-87.80319176164745,-87.80310960796714,-87.80311496336897,-87.8032842682133,-87.80595077065723,-87.80672415485256,-87.8074288748456,-87.80819925901757,-87.80980524260207,-87.81112186835007,-87.81263611988692,-87.81379646284583,-87.81411807605812,-87.81501102629883,-87.81569147600679,-87.81702278022512,-87.8172350973923,-87.81760305000179,-87.81847612549923,-87.82675233665114,-87.82768310158916,-87.82911857560588,-87.82993357250086,-87.83065330269025,-87.83171700013645,-87.83273653438219,-87.8332028556009,-87.83356402282588,-87.83350542285065,-87.83317908553322,-87.83228353191215,-87.83202076495242,-87.83188036251603,-87.83164919055794,-87.83145197290413,-87.83148397585185,-87.83165515872507,-87.8317648261707,-87.83176754697665,-87.83154720427861,-87.83110216507377,-87.83045389484177,-87.82972614877632,-87.82860721809254,-87.82814265350486,-87.82678494457333,-87.82533212021463,-87.82415433487031,-87.82310579229262,-87.81959223908157,-87.81914952103872,-87.81802663413612,-87.81646010492103,-87.8146919472391,-87.81411128057434,-87.81314172230751,-87.81226789253955,-87.81171271018383,-87.81099237578378,-87.81032807756854,-87.80927094769524,-87.80720289709556,-87.80635215962728,-87.80516890125676,-87.80317153661937,-87.80229505646017,-87.80147261985739,-87.79965662716876,-87.79823111883368,-87.79702654262501,-87.79574824545267,-87.79491540963848,-87.79383884354634,-87.79291388242409,-87.79159711798626,-87.79090290726315,-87.79002806267438,-87.78880115216627,-87.78858963046136,-87.78822715814044,-87.78810252830063,-87.78808162399667,-87.78825136982742,-87.78724688888798,-87.78714419341664,-87.78717576694143,-87.78707268153751,-87.78692898802166,-87.78693519841607,-87.78712030735196,-87.78739334127505,-87.78739714612577,-87.78738402758874,-87.78729253948011,-87.78715487026813,-87.78691264211788,-87.78660109895745,-87.78582728894112,-87.78522460060709,-87.78437953521689,-87.78355823988065,-87.78196828706149,-87.78133209906656,-87.78097448338461,-87.78071745523621,-87.78033984434968,-87.77977470182975,-87.77921114579276,-87.7783572678109,-87.77744465843801,-87.776977658194,-87.77684814209012,-87.77710109927895,-87.77723264055847,-87.77715845897836,-87.77696241259046,-87.7764924856898,-87.77647911441171,-87.77651634418397,-87.77643751063759,-87.77615674146988,-87.77598799491895,-87.77579527696363,-87.77571213771292,-87.77566710072006,-87.77551549357081,-87.77459738386193,-87.77453001165898,-87.77468782485069,-87.77595311670183,-87.77733984113203,-87.7776176521742,-87.77775152239354,-87.77780414059032,-87.77807633347074,-87.77821746267662,-87.77826007227279,-87.77824859317798,-87.77799748389299,-87.77741734632656,-87.77740586263032,-87.77747960849597,-87.77794680363071,-87.77837300995597,-87.77901427969221,-87.77937970119039,-87.77943759792279,-87.77950994127002,-87.779700193886,-87.78034781763009,-87.78075297862871,-87.78096691997428,-87.78128736797174,-87.78169623553718,-87.78291495875222,-87.78478904913723,-87.7858523671633,-87.7871668120156,-87.78802064705275,-87.79035718969011,-87.79155293682685,-87.7923193215415,-87.79306606568349,-87.79456923503098,-87.79483957629026,-87.7955973179662,-87.79600174665791,-87.79614125815371,-87.79610308314579,-87.79601332122662,-87.79599786296114,-87.79597747859802,-87.79623061975917,-87.79697483894789,-87.79719299352749,-87.79790563038409,-87.7984444274869,-87.79946902361242,-87.80123164249184,-87.8027916726754,-87.80334715736997,-87.80413258515753,-87.80451502366464,-87.80500473639637,-87.80572507163033,-87.80629160062384,-87.8065645713515,-87.80690123478253,-87.80720472795747,-87.80740377575066,-87.80796280090459,-87.80873631275227,-87.80941733755448,-87.80978318875717,-87.81022991910524,-87.81118587151049,-87.8132288905239,-87.81398675562701,-87.81491255394548,-87.81556378462841,-87.81581464436987,-87.81622700029236,-87.81674746505972,-87.81786703308541,-87.81929648154771,-87.8217352264068,-87.82242991694675,-87.82298443459668,-87.82362083518177,-87.82401987521537,-87.82435125529219,-87.82446070118446,-87.82444805160442,-87.82428210411651,-87.82406421333724,-87.82384851435293,-87.82373714932703,-87.82379529900012,-87.82460600650077,-87.8247292177598,-87.82468362868627,-87.82446371859756,-87.82419261419585,-87.82421803955955,-87.82445182238787,-87.82472382393347,-87.82476982903944,-87.824712566933,-87.8243953174067,-87.82390821411505,-87.82350393033568,-87.8231308259659,-87.8227896932313,-87.82273787793228,-87.82260417026673,-87.82236517896716,-87.82220009498086,-87.822033106071,-87.82221084497898,-87.82253758601746,-87.82312294945686,-87.82368040822506,-87.82376136538123,-87.8238582232937,-87.82381623691445,-87.82368816833535,-87.82341937369722,-87.82304435136315,-87.82288116894617,-87.82286850423431,-87.82292995063027,-87.82321539443221,-87.82384979958385,-87.82429888953173,-87.82443290072419,-87.8244565884647,-87.82418169307515,-87.82381088393164,-87.82301343939348,-87.82153724042165,-87.81705222783948,-87.81618016669094,-87.81561788964092,-87.81506381609104,-87.81456939436143,-87.81385534683642,-87.81285051828227,-87.81124434100798,-87.80922365994407,-87.80756299776247,-87.80700728112404,-87.80637774751558,-87.80384377648633,-87.80328887178301,-87.80232490808916,-87.80198750225205,-87.80157453388789,-87.801152530322,-87.80081734458095,-87.80045851385886,-87.80027568678547,-87.80014465839957,-87.7998938446145,-87.79804957894622,-87.79717067640847,-87.79652673452664,-87.79504737120445,-87.79426611823156,-87.79307255686351,-87.7915518469792,-87.78961039323175,-87.78914072215129,-87.78893876015832,-87.78846846758069,-87.78798401626069,-87.7875148113411,-87.78720115813397,-87.78691594966847,-87.78684222665329,-87.78680012547346,-87.78672065762828,-87.78649359923386,-87.78614610015148,-87.78519515454204,-87.78434586829796,-87.78380818132011,-87.78301100828973,-87.78250493125653,-87.78181592337195,-87.78129788252917,-87.78097385054664,-87.78080294801191,-87.78070864654939,-87.78066021465953,-87.78065122164369,-87.78059713164315,-87.78050757265524,-87.78044484969986,-87.780557410521,-87.78067222032307,-87.78101756456518,-87.78144858144069,-87.78218710448641,-87.78258595236369,-87.7841065221731,-87.78440208896158,-87.78547957333127,-87.78671680188658,-87.78768276589246,-87.78843895678925,-87.78894008136838,-87.78961634484527,-87.79032949844759,-87.79111448995378,-87.79215444252037,-87.7929207056814,-87.79430894257186,-87.79560214721134,-87.79648117086285,-87.7980753237764,-87.80021523577366,-87.80155027146029,-87.80274705494682,-87.8041810341424,-87.80460360329256,-87.80513608977058,-87.80541358929469,-87.80580135053262,-87.80639243579427,-87.80650363041394,-87.80640596247346,-87.80635725891243,-87.8064158462721,-87.80664597231269,-87.80701122537644,-87.80738392282015,-87.8078956743194,-87.80827358876586,-87.8085983857801,-87.80869763664491,-87.80874471753127,-87.80858232482078,-87.80831799304318,-87.80746356800357,-87.8068485876463,-87.8062609920639,-87.80574048960706,-87.80528518772167,-87.80512921689626,-87.80496895067583,-87.80486288643114,-87.80473616646654,-87.80477296277579,-87.80496513529202,-87.80524330270009,-87.80549297331919,-87.80572501338175,-87.80659713009369,-87.80720158908952,-87.80765072222401,-87.80799494668,-87.80832324957176,-87.8091150721699,-87.81043724382859,-87.81132803574098,-87.81226735660563,-87.81281077835033,-87.81405908328702,-87.81593306579462,-87.81827245369264,-87.81894460627434,-87.8192639887545,-87.81968677449589,-87.82013471170499,-87.820621878194,-87.82138473641582,-87.82220291362384,-87.82314002912366,-87.82383185883648,-87.82425839357029,-87.82461404316102,-87.82481498448006,-87.82491145214372,-87.82505820057877,-87.82528612487742,-87.82584037525615,-87.82638247457771,-87.82680763302308,-87.8272841337304,-87.8278868572587,-87.82833589243852,-87.82896483772241,-87.8292772643902,-87.82950195095893,-87.82980640955216,-87.83017648140034,-87.83037790400465,-87.83078823706448,-87.83147962051061,-87.83205685717722,-87.83243677398869,-87.83293142635529,-87.83335755144496,-87.83398743379335,-87.83443074312038,-87.83477020498398,-87.83548397103411,-87.83635403460828,-87.83733027665536,-87.83823053079846,-87.8390260151676,-87.83951230364403,-87.83995100602286,-87.8403926203739,-87.84112037804493,-87.8421136314638,-87.84310864651231,-87.8437670801523,-87.84480884221671,-87.84546345962355,-87.84627345926339,-87.84758998141905,-87.8481477329678,-87.84908920721247,-87.8504860045884,-87.85125458155264,-87.85254308948507,-87.85421063176557,-87.85489024582826,-87.85538744819313,-87.8556420763265,-87.85679420586546,-87.85709513736801,-87.85724066358415,-87.85752678840893,-87.85782017081496,-87.85848551093011,-87.86032645918985,-87.86198790669192,-87.86319387863414,-87.86362324216537,-87.86416182828198,-87.86423607217721,-87.86424891299826,-87.86415680168692,-87.86381367603639,-87.8636118663109,-87.86342495106729,-87.86340972104279,-87.86357575670345,-87.86382133843458,-87.86382977874108,-87.86375056821697,-87.86349552239106,-87.86339819604484,-87.86335397511101,-87.86337419045628,-87.86360338984693,-87.86376586523473,-87.86372209527758,-87.86347397210181,-87.86326082068651,-87.86265163257299,-87.86207372615178,-87.86170480848872,-87.861676515656,-87.86165989657252,-87.8619025943581,-87.86220454110494,-87.8625072918812,-87.86279609398034,-87.86330427607926,-87.86462178655894,-87.865219939459,-87.86576623703253,-87.86615400102733,-87.86628702968611,-87.86646672007232,-87.86693873274689,-87.86731406997156,-87.86769078644724,-87.86817203363857,-87.86856961101188,-87.86946882165914,-87.87000042465748,-87.87050827036076,-87.871302357323,-87.87190243179219,-87.87240824963153,-87.87273580193808,-87.87312110286042,-87.87340340774198,-87.87358666546515,-87.87376845410623,-87.87408201379905,-87.87431827297199,-87.87452147274348,-87.87472356681113,-87.87480591331132,-87.87483901917984,-87.87497238625676,-87.87509248813032,-87.87519564876661,-87.87549616717179,-87.87599620123181,-87.87662497838566,-87.87715826930983,-87.8779615140857,-87.87857259756426,-87.87923587132782,-87.87946909704723,-87.87987322992296,-87.88058503214133,-87.88120069574556,-87.88164514360061,-87.88236201700869,-87.88293192292274,-87.88357701062741,-87.88414889016379,-87.88521739945735,-87.88581270470047,-87.88650287820525,-87.88736179884557,-87.88841342257599,-87.88941526394007,-87.89007939578438,-87.89082050763753,-87.8910185483397,-87.89180863933069,-87.89235557826068,-87.89330377731446,-87.89465647289471,-87.89535827499148,-87.89608434951832,-87.89640182434296,-87.89683738821127,-87.89721604413715,-87.89755405987317,-87.89793024480676,-87.89828802377831,-87.89844424281472,-87.89874762992592,-87.89900682741944,-87.90004402099378,-87.90030431584391,-87.900563179703,-87.90084320878223,-87.90090144277727,-87.90105217567123,-87.90105819738194,-87.901236889188,-87.90166004531618,-87.90221253367589,-87.90261982592067,-87.903268542026,-87.90367778325086,-87.90462710549959,-87.90486601938574,-87.90514831296586,-87.90553746817184,-87.90578958187267,-87.90620012931548,-87.90638965475041,-87.90656928570679,-87.9070658480009,-87.90727870137638,-87.90778436171445,-87.90807760509672,-87.90845013492326,-87.90872073675928,-87.90903024405958,-87.90924434087711,-87.90945813483292,-87.90965633430932,-87.90974393901676,-87.90990683982071,-87.91004748878282,-87.91024169545308,-87.91039331416353,-87.91062703512068,-87.91084949309123,-87.91128592758695,-87.91166711069779,-87.91205902706257,-87.91217639995131,-87.9129584248234,-87.91338782812602,-87.91374350402656,-87.91412690653658,-87.91441779688495,-87.91468338281919,-87.91531016151276,-87.91554193173435,-87.91580282339375,-87.91603492131728,-87.91626672471443,-87.91644608316521,-87.91666855738656,-87.91687069273841,-87.91736864558401,-87.9175480071158,-87.91804841543895,-87.91839171650373,-87.91872242433926,-87.91920121913049,-87.91939988171085,-87.91976736156903,-87.92011631404894,-87.92044672411548,-87.92099476367176,-87.92125103552704,-87.92156138552143,-87.92187968886154,-87.92217714505561,-87.92238778945023,-87.92263962290325,-87.92290108606565,-87.92312287328912,-87.92442166241848,-87.92532791358431,-87.92589512653228,-87.92617219997203,-87.92658719367485,-87.92717552548133,-87.92737221264262,-87.92755924390887,-87.92776688561351,-87.92804181080372,-87.92827308522085,-87.92855736533262,-87.92891771981984,-87.92911878162687,-87.92930030428607,-87.92969582826777,-87.92986804458211,-87.92996609367933,-87.93047135564721,-87.93090871979102,-87.93134441447323,-87.93174543534452,-87.9320602449103,-87.9323159368147,-87.93265842026581,-87.93307841328887,-87.93367601823766,-87.93449240467316,-87.9350991357817,-87.93571409430285,-87.93665533081402,-87.93679240031302,-87.93723568124388,-87.93750017783867,-87.93776494303279,-87.93797587439293,-87.93819834614169,-87.93841120406778,-87.93863584955209,-87.93884787795632,-87.93907090503573,-87.93978351511579,-87.94065836721772,-87.94145620538913,-87.94209042729814,-87.94304524430561,-87.94371022661761,-87.9440985553953,-87.94442473467382,-87.94480784859043,-87.94518271593201,-87.94548936913674,-87.94581471713893,-87.94615847966494,-87.94659574311149,-87.94716802874213,-87.94774856792579,-87.94815530183925,-87.9484176635363,-87.94880056028042,-87.94965745011882,-87.9500276770941,-87.95036361810514,-87.95073413466315,-87.95109147396461,-87.95146145995461,-87.95186884334711,-87.95213998427603,-87.95246466922805,-87.95282592251155,-87.95328888820552,-87.95372213045184,-87.95460042225946,-87.95562109236883,-87.95628164844129,-87.95697973948056,-87.95793479094341,-87.95857863414771,-87.95934225502381,-87.95993482212164,-87.96053920772351,-87.9617164783166,-87.96317845664703,-87.96338643879533,-87.96366831179013,-87.96394990454017,-87.9641897678943,-87.96456317026984,-87.96463301374692,-87.96473659831726,-87.96476918787364,-87.96465967341504,-87.96455066897585,-87.96419347148979,-87.96407322788269,-87.96398594082933,-87.96386229519436,-87.96373330522906,-87.96378158839919,-87.96428076376094,-87.96507192902929,-87.96610413780161,-87.96719866429115,-87.96848549301606,-87.96869404339282,-87.96894303167903,-87.96915158113244,-87.96945384183901,-87.96973470199561,-87.9701100512352,-87.9704243698169,-87.97080217021691,-87.9786826452616,-87.97911637110678,-87.97940854387571,-87.97971567195526,-87.98012367759817,-87.98023740457695,-87.98042840274519,-87.98079849916928,-87.98110288333217,-87.98146013470814,-87.98217547507696,-87.98587169319498,-87.98676585422288,-87.9871874119912,-87.98747977226151,-87.98784780433665,-87.98811510505284,-87.98849176602832,-87.98871647617287,-87.98886145629623,-87.98895308176371,-87.9892005700946,-87.98947633777854,-87.98968565215849,-87.98996007092602,-87.99008755954914,-87.99017316817874,-87.99014429051762,-87.99003072440279,-87.98989836294481,-87.98969801280485,-87.98935515533694,-87.98893170164099,-87.98849675135875,-87.98795232698915,-87.98765268586027,-87.98729616085635,-87.98721366385148,-87.98699346093078,-87.98668938651987,-87.98643984480009,-87.9862721128589,-87.98607738613588,-87.98585513728804,-87.98571506092485,-87.98554936974026,-87.98529308118451,-87.98511849414993,-87.9849852224385,-87.98451849664541,-87.98423556573896,-87.98381823529773,-87.98342822194672,-87.98312243589004,-87.98278545099804,-87.98248722004142,-87.98220134535572,-87.98196686843316,-87.98179636245131,-87.98168993364362,-87.98155668951622,-87.98143740713819,-87.98125809199691,-87.98116013981975,-87.98107158666848,-87.98101202942811,-87.98094822622141,-87.98083118970418,-87.98075674301086,-87.98087955264093,-87.98097629424831,-87.98104993145324,-87.98118797711638,-87.98132910752361,-87.9815074624088,-87.98175421277645,-87.98191856250165,-87.98204332212293,-87.98211286980111,-87.98214290967664,-87.98216191969991,-87.9822314664232,-87.9822376192808,-87.98226427568764,-87.98233718110394,-87.98245499182117,-87.98257719725785,-87.98269840969795,-87.98285708439681,-87.98300401063094,-87.98311239266445,-87.98322027337403,-87.98336690027061,-87.98347642529181,-87.98380567202926,-87.98398256538205,-87.98399010342747,-87.98411350728614,-87.9842155048118,-87.98433959937154,-87.98489333249847,-87.98508369260354,-87.98520025198339,-87.98543183297102,-87.98552086305946,-87.98571279597761,-87.98580081877428,-87.98603362373233,-87.98622841418495,-87.98648277947171,-87.98667518126123,-87.98687158496121,-87.98788224659043],"lat":[45.79293329158235,45.79311603469079,45.79340796106412,45.79359945943014,45.79382887424427,45.79392941897051,45.79408538999863,45.7943696785546,45.79447169219981,45.79463780247636,45.79476883798438,45.79486242281363,45.79500476824229,45.79520340778055,45.79529527963388,45.79538779306532,45.79542312009899,45.79548812546264,45.79553134437815,45.79557377242669,45.79561761087608,45.79561526542589,45.79560256316882,45.79550616380078,45.7954741832009,45.79544378615549,45.79539364646052,45.79533452704048,45.79527292685612,45.79518463884183,45.79513355305398,45.79506477247967,45.7949489947397,45.79489860819776,45.79482082885841,45.79471389508782,45.79464447722508,45.79452776319957,45.79435356593243,45.79425015801864,45.79407632066295,45.79387230249089,45.79371805340781,45.79360164955698,45.79350732565635,45.79336882477642,45.79325164672236,45.79311928913343,45.792965983719,45.79266419274698,45.79251049218628,45.79243814625693,45.79240156652845,45.79227707314845,45.79211378503093,45.79203520438912,45.7919648745936,45.79192317550251,45.79186630704304,45.79184130508554,45.79181708145492,45.79179208921846,45.79183009655488,45.79180547939738,45.79181236900519,45.79183537572571,45.7918453596621,45.79185762376537,45.7918620182093,45.79188908454119,45.79190097231368,45.79196645028685,45.79196449579617,45.79203244970947,45.79205183572722,45.7920783279399,45.79216069950375,45.79216394252251,45.79220674827237,45.79224321407283,45.79226448836644,45.79229999004514,45.79232089397092,45.79231949370152,45.79231772668339,45.79231036234017,45.79231626652654,45.79226299869704,45.79226795185409,45.7922225443631,45.7921963936657,45.79215733391916,45.79209985903903,45.79201184012187,45.79194992139936,45.79184521966911,45.79169126749687,45.79160866210708,45.79151968813642,45.79135520762019,45.79125050053316,45.79117689143793,45.79099838342423,45.79093151649363,45.79083542542046,45.79074797998896,45.79063710058101,45.7905415848611,45.79044549228603,45.79038706261944,45.79025503414089,45.79010743555445,45.7900205459592,45.78992673505352,45.7898248569871,45.7897741108132,45.78962034476211,45.78944229139142,45.78924005658804,45.78903875303864,45.7889015597291,45.78892222565502,45.78896822259527,45.78898121899324,45.78901725282665,45.78903906156755,45.78906104095703,45.78909916045427,45.7891125176549,45.78913508010732,45.78927060900724,45.78929706595296,45.78934713767211,45.7894133307232,45.78946453008786,45.7895551009146,45.78957330428693,45.78961736009919,45.78962103995523,45.78965473533682,45.78967717267344,45.78966948926254,45.78967601380947,45.78968405713589,45.78967303049913,45.7896487001921,45.78955504260256,45.78945350276104,45.78941173590952,45.78937614686421,45.78938854683404,45.78941108141724,45.78945307545946,45.78947932782429,45.78950557741582,45.7895166515735,45.78947468732833,45.78940105566257,45.78928806628918,45.78918949306653,45.78893875984875,45.7888385066362,45.78872230161954,45.78859880239213,45.78837427761675,45.78828132807578,45.78815089492076,45.78799721510767,45.78778321144559,45.78766064982641,45.78755401551341,45.78746276098649,45.78734076472967,45.78721857533132,45.78709695376445,45.78696821803465,45.78686271100826,45.78667382420305,45.78643863865164,45.78629115569849,45.78614460064873,45.78591314458784,45.78578983615206,45.78562004564873,45.78538915078284,45.78518882004547,45.78503458011863,45.78477484457252,45.78456814715751,45.78437812669488,45.78411145590187,45.78398308998401,45.78387796559782,45.78375916961544,45.78368553191576,45.78361188257347,45.78358849596548,45.78356881972599,45.78357183575357,45.78359170972102,45.78361027698762,45.78360842060064,45.78363523024559,45.78364780639677,45.78365249888211,45.78363301363432,45.7836060393929,45.78351984732593,45.78343889483101,45.78329534943275,45.78309014548847,45.78292185453783,45.78281540473618,45.7827241512969,45.7825879077033,45.78239244627238,45.78228133102901,45.78225453096665,45.78228301952405,45.78228921644313,45.78230140695913,45.78234262750009,45.78233046026517,45.78232971434362,45.78229560432514,45.78226149264289,45.7821968406158,45.78209283204989,45.78197983096505,45.7818591349681,45.78166199009232,45.78143410219855,45.78119347570104,45.78105160625978,45.78100211945461,45.78095386294284,45.78085532436453,45.78083808213013,45.78077735567062,45.78075794340553,45.78077546626771,45.78074940322725,45.78073345647046,45.78074017582239,45.78070043710031,45.78064680129606,45.78059187765722,45.78056145951656,45.78063039577423,45.78064497417656,45.78070379072846,45.77085465887417,45.75638967487971,45.72767067914919,45.71303939578601,45.71413885549497,45.71480657096576,45.71620354523686,45.71654663517985,45.71701534910903,45.71806984552352,45.718354781866,45.71860601488982,45.71886778623144,45.71906261658263,45.71921761383615,45.71954759766768,45.71986623089114,45.7202878476439,45.72086745129984,45.72124311469967,45.72166409536725,45.72206588643046,45.72195423485211,45.72222878740895,45.72249270822475,45.70827187220875,45.6938425279254,45.67938634120457,45.6649356986555,45.65052404812137,45.63582559153884,45.6214343263204,45.59251593483486,45.56357583754998,45.54905369530722,45.53560808013258,45.50663569333633,45.49202421882314,45.47752814950759,45.46328052988893,45.43464947752039,45.4219445972816,45.41959396204011,45.40559160774857,45.37692016866082,45.37654676764865,45.37621927809747,45.37579322528775,45.37534151301712,45.375177286944,45.37512857896839,45.37455793699174,45.36045550587949,45.3460736134065,45.33123405758064,45.31627822605436,45.30224591250807,45.28780762295894,45.25903637248194,45.24451349729962,45.22987947387913,45.20151155534934,45.2008111345995,45.20057248356643,45.20043357727656,45.19947187258651,45.19824724251642,45.19797623631612,45.19547598412717,45.19292049022751,45.18382503367587,45.16939868903574,45.14053520905733,45.1362371556796,45.12571235469262,45.11183503730751,45.1113683720661,45.11092883216937,45.11043068526437,45.11018253420994,45.0957247916386,45.08127134136709,45.06680467628809,45.05244431411316,45.05109881417979,45.04705108512593,45.03767525986449,45.02349911253027,45.02321695443365,45.02289950687114,45.02249618259179,45.02169925504285,45.02143206481957,45.02133285232861,45.02122735878497,45.02112163813636,45.02101570131003,45.02097896377288,45.02094229201159,45.0209049800556,45.0208679774472,45.02074837311866,45.02062855714834,45.02050851529903,45.02038796093154,45.01831382720899,45.01469471198219,45.01107559490138,45.00745617799878,45.00384639718858,45.00023605281876,44.99662562526691,44.99301492422015,44.99301992566915,44.9930247151064,44.99302926387921,44.99303359652224,44.99306915928981,44.99310478293881,44.99313989529847,44.99317477517313,44.99313003918932,44.99308479078771,44.99303958625552,44.99299388703844,44.99044052470178,44.99045703663722,44.99046985865323,44.99048217320136,44.99049424245622,44.99050658138574,44.9905189725859,44.99053082654045,44.99054275134537,44.99050230083236,44.99046134539528,44.99042044074336,44.99037932812999,44.99043125537776,44.99048326825843,44.99053478858439,44.99058636298888,44.99059625887008,44.99060562800087,44.99061505413052,44.99062425061475,44.99059612803079,44.99056778579774,44.99053921001455,44.99051041090725,44.98691183554502,44.98331297545391,44.97971439920195,44.97611553084881,44.97252294152124,44.9689303301373,44.9656593802664,44.96563711502225,44.96568622548116,44.96576297460298,44.96577731248854,44.96588660845015,44.96587817347253,44.96592750311646,44.96598247253083,44.9661028261586,44.96619051213447,44.96621360859259,44.96620797088466,44.96617413352261,44.96617387720024,44.9662178379507,44.96637927032379,44.96638744142078,44.96643892494888,44.96642069314564,44.96646438358841,44.96649180249074,44.96644768739954,44.96648060382233,44.96656841101377,44.96657740959152,44.96668358021388,44.9666672780925,44.96674378255485,44.96683715495681,44.96709489182247,44.96716605473596,44.96733058103872,44.96736345601551,44.96740177892716,44.96741235336118,44.96754372792851,44.96758744707744,44.96758717705758,44.96763629038832,44.967690904954,44.96778974295722,44.96786053796633,44.96788819716019,44.96789434939041,44.96790245847983,44.96792500530672,44.96794718275935,44.96798072750999,44.96800397914911,44.96800510369476,44.96794245839521,44.9679433031509,44.96806802967321,44.96812590844885,44.96810764785562,44.96812995961768,44.96813149477524,44.96806218960514,44.96805821429757,44.96800541488732,44.96800107826493,44.9680457934084,44.96811810274098,44.96814140416141,44.96792706312179,44.96790099635979,44.96790703459624,44.96796274223174,44.9679427117694,44.96802228400007,44.96813364448456,44.96827813908213,44.96833304038286,44.96842115767924,44.96864203640263,44.96874175124593,44.96881379385703,44.96879469703383,44.96874040468125,44.96874085356039,44.96877381176121,44.96887267939658,44.9689276734099,44.96893012527149,44.96898599238098,44.9690855575404,44.96930571781788,44.9693608471967,44.96939952323551,44.96941664120194,44.96940639771437,44.96936878140142,44.96927068026125,44.96902495910556,44.96898675741161,44.96899273308875,44.96904752522389,44.96913507250211,44.9694407649073,44.96952874206193,44.96955120160005,44.96957660748452,44.96959940204145,44.96968950329732,44.96982296435105,44.96980252279722,44.96986348364648,44.96994067805569,44.96998032432607,44.97014591863814,44.97017710205481,44.97019350018949,44.97020442290384,44.97020745199679,44.970092924902,44.96998317025224,44.96989540612726,44.96980796612777,44.96978671649674,44.96981429826472,44.96985303432592,44.96994085517253,44.9700724580325,44.97012225142813,44.97017361397371,44.97018592817556,44.97022547744969,44.97022136054132,44.97019981441729,44.97017932656838,44.97019139902458,44.97018146556655,44.9702487034535,44.97040945951481,44.97042654009478,44.97039391648282,44.97033907564236,44.97021229789036,44.97014134856632,44.97008714521004,44.97005505516876,44.96998449248982,44.96979843211253,44.96979348365902,44.96981604108692,44.96987210257582,44.96991631498955,44.97004781833641,44.97006966991076,44.97008466523132,44.97011156991604,44.97013354694242,44.97024330561891,44.97035314596871,44.97046346646159,44.97059538726651,44.97064527472841,44.97065125443763,44.97062436257821,44.9705643562347,44.97067571158016,44.97073820185714,44.97079390330043,44.97089817506387,44.97092057235035,44.97092758652311,44.97090169257189,44.97079475073918,44.97065423522133,44.97065502194772,44.97076785691522,44.97087939553843,44.97105668036872,44.97111304360636,44.97127974602396,44.97135844842578,44.97138113503298,44.97137143280079,44.97108680609955,44.97102690105976,44.97101091219997,44.97105524728097,44.97119779004531,44.97200859366895,44.97345459899574,44.97350998282646,44.97347737316737,44.97328012169125,44.97130808040008,44.97128626585638,44.97125390766259,44.9712897638673,44.97129171140003,44.97117229943594,44.97116751450697,44.97118485908306,44.97121285240589,44.97130151660697,44.97136192249869,44.97138408412747,44.9713735740498,44.97133068605734,44.97126486972103,44.97120974614658,44.97115464321183,44.97106697456449,44.9710346478151,44.97102427517273,44.9710811755471,44.97108180234044,44.97110431144486,44.97114319057825,44.97118727912036,44.97124751147454,44.97127486556861,44.97132261573849,44.97132227320483,44.97128828983997,44.97130465148548,44.97134307029187,44.97145316438377,44.97158040945078,44.97163063108257,44.97166571338832,44.97166922385348,44.97163828438432,44.97167763480884,44.97180427335415,44.97187615379449,44.97182907828628,44.97177517888704,44.97175451767816,44.97175570133854,44.97189019474551,44.97189036429783,44.9718472585284,44.97171634219402,44.9716730642476,44.97166266812263,44.97163042354359,44.97150512471688,44.97145074347838,44.97144019958363,44.97145692941909,44.9714958597309,44.9715731016413,44.97171069407138,44.97177656743393,44.97178695672518,44.97165434708839,44.97165936643869,44.97170281649761,44.9717847474035,44.97185054943596,44.97193858078825,44.97200513560009,44.97206172816458,44.97212001564959,44.97221083724592,44.97221223348978,44.97226867630876,44.97243537600291,44.97269567089595,44.97273470968189,44.97279380398258,44.97282707399865,44.97285045840152,44.97288950021255,44.97299545014336,44.97327199250524,44.97332762609508,44.97335658772624,44.97333778860582,44.973388855792,44.97346114678456,44.97347261730285,44.97344924109676,44.97353918626901,44.97367519515943,44.97374242628835,44.97392046142494,44.97397702134768,44.97400154018078,44.97399772859955,44.97403768136819,44.97399882986998,44.97394881303696,44.97389501257055,44.97374880783778,44.9736946951447,44.97366305445594,44.97366457831611,44.97377643456792,44.97377659300906,44.97374426176892,44.97365676640014,44.97362440918653,44.97362504799658,44.97359271015258,44.97361547362934,44.97366514136024,44.97381321499316,44.97392305349575,44.97398387037806,44.97406726031024,44.97405786202467,44.97420204694864,44.9742154434341,44.97420914493335,44.97419464229981,44.97419054691478,44.9741362882579,44.97409898592637,44.97412205640272,44.97423352134928,44.97423389409342,44.97416903336883,44.97425372381051,44.97426085296352,44.9742420208643,44.97424239992709,44.97427036435931,44.97445202323006,44.9745184322887,44.97457440077297,44.97458788573509,44.97466633583289,44.97468949376523,44.97468754008651,44.97464044878729,44.97460790402707,44.97454793730919,44.97448781976028,44.97437807381833,44.9743174411119,44.97427329038759,44.97425659964289,44.97425440640534,44.97423170760428,44.97395372098024,44.97389772714625,44.97386302964545,44.97382439472123,44.97375830034841,44.97369796807138,44.97368174557278,44.97367739186388,44.97362430849757,44.97362490386541,44.97368125812029,44.97369073612664,44.97377978679879,44.97379751910295,44.97381983286453,44.97398027776465,44.97400814871086,44.97401432969185,44.97398819308469,44.97390240034638,44.97389758717908,44.97397093433192,44.97403642601233,44.97420037704858,44.97422475952348,44.97425827825013,44.97425935105614,44.97435402487373,44.97439301968141,44.97439381938706,44.97446056055576,44.97453847609312,44.97456063043902,44.97459448262028,44.97460597688333,44.97459698130293,44.97465519785813,44.97476228706636,44.9747433774423,44.97477236355758,44.97477415203531,44.97474419272315,44.97475207962862,44.97478166870503,44.97485978548639,44.9748887455258,44.9748623898124,44.97478693969113,44.97470389161094,44.97465054503321,44.97457753213318,44.97457940081489,44.97469228724224,44.97470454001628,44.97469593775053,44.974643347575,44.97462367328094,44.97455969013474,44.97448465084281,44.97448522309929,44.97451832483686,44.97455293983312,44.97450463629993,44.97441703475963,44.97432567865869,44.97425604218765,44.97410989476651,44.97407830572359,44.97400319085322,44.97398210493385,44.97389665913506,44.97378896119269,44.97375718701535,44.97358486406054,44.97347893500246,44.97325130221865,44.9731442545247,44.97311258509867,44.97303752395388,44.97301670724776,44.97291996740136,44.97279080317551,44.97269852500046,44.97262879629189,44.97246672520193,44.97238104264942,44.97236028749327,44.97221471645813,44.97198234402148,44.97167371280261,44.97150532864904,44.97141289559902,44.97133075885023,44.97095880447252,44.97073967928361,44.97067390121975,44.97063593806011,44.970630457993,44.97065833105179,44.9707405336495,44.97113475808775,44.97122246215769,44.97131027502509,44.97149775381265,44.97156399702296,44.97167380862002,44.97176153125024,44.97250618355069,44.97259361730531,44.9728557271003,44.97303064193279,44.97355632713793,44.97373091289907,44.97388903258115,44.97392860005551,44.97391020498321,44.9739080413157,44.97389993903784,44.9738348843614,44.97381903446478,44.97384112572234,44.97390185822235,44.97423074898729,44.97427457452418,44.97432417465561,44.97433012551014,44.97429202780892,44.97421009645787,44.97417196047994,44.97415073290709,44.97415683583245,44.97435834607491,44.97439248684886,44.97444825534481,44.97458097060534,44.97461428108202,44.97463699074134,44.97463842030233,44.97461681801438,44.97461737099398,44.97475088594641,44.97478504774947,44.97491840857773,44.97498670234157,44.97504732480866,44.97511936972422,44.9752510557872,44.97531779356892,44.97536433235203,44.97542075333818,44.97543261516461,44.97553373604968,44.97559103486572,44.97579165394654,44.97601657672098,44.97608911512425,44.97618450230117,44.9762626597568,44.97629686178816,44.97640860035332,44.97650968868574,44.97657793358352,44.97665626779214,44.97666972650522,44.97663789547143,44.97663876730982,44.97675206133523,44.97676436091758,44.97669979563368,44.97666794566193,44.97664944653768,44.97661748417539,44.97659684274797,44.97659963053471,44.97657855210295,44.97654614650672,44.97655381235862,44.97659033720962,44.97657384835139,44.9763899479185,44.97639059732032,44.97653999145245,44.97661241771749,44.97667068741078,44.97667198208323,44.97669427827883,44.97678257220094,44.976903731375,44.9770354447452,44.97723276814485,44.97729857442947,44.97738609591699,44.97746777123957,44.97751669681932,44.97751629412557,44.97748345179519,44.97743943990508,44.97726438973675,44.97713294512686,44.97700650062276,44.9769455440359,44.97695046617275,44.97700982741418,44.97699830774428,44.9769428761426,44.97694791095878,44.97699130867101,44.97710008978864,44.97715937498333,44.97721269045347,44.9772121816742,44.97716783570528,44.97699687467625,44.97696927001406,44.9770182482168,44.97712210896492,44.97715490235852,44.97717513571999,44.97727229943702,44.97729266138487,44.97736812422139,44.97736752600335,44.9773341370658,44.97725674682145,44.97717260350019,44.97717665777479,44.97725082206475,44.97724922442177,44.97717149611468,44.97708311898069,44.97703829486949,44.97704898815783,44.97710309410465,44.97712416982473,44.97704497459005,44.97696675738531,44.97693306063059,44.97686615243617,44.9768178712262,44.97659257741444,44.9764780057026,44.97636586389872,44.97617629198293,44.97606292212618,44.97582951200114,44.97580527872757,44.97576523485224,44.97577991969514,44.97569119996972,44.97563475552064,44.97547855601898,44.97546648510797,44.97549869372457,44.97549801293528,44.97546474859839,44.97535459080815,44.97533230696664,44.97536466290576,44.97545703914712,44.97548344503658,44.97542827142542,44.97520836184645,44.97519146590481,44.97522401184567,44.97530644690868,44.97561373718476,44.97572376951916,44.97585571166405,44.97610447825851,44.97618672079087,44.97623061866121,44.97631268621043,44.97633950749378,44.97632797763748,44.97626126612877,44.97626099772886,44.97631510409983,44.97633632819191,44.97636347487578,44.97643964058096,44.976488967906,44.97653268529425,44.97659333150171,44.97661082224646,44.97664962924861,44.9767266199624,44.97678704516464,44.97683122352807,44.97684238037277,44.97679913403006,44.9769422153292,44.97733833688212,44.97747025875569,44.97755763449873,44.9776286072143,44.97768231358554,44.97767640954313,44.977631830965,44.97763141669166,44.97766946930352,44.97776780836866,44.97807880574275,44.97812249325454,44.97823274772004,44.97832045002365,44.97834753872739,44.97831946773109,44.97833578535315,44.97848338062035,44.97854312273541,44.9785591237727,44.97852604579718,44.97846035632211,44.97839485967378,44.97821978110408,44.97816448794874,44.97816430774684,44.97818585004199,44.97827333117835,44.97843096376199,44.97856075239363,44.97866447399319,44.97873031386083,44.97875250389621,44.9787365886715,44.97866594458679,44.97884212920502,44.97890775890215,44.97898406725145,44.97923343274996,44.97925998255305,44.97930917929052,44.97937461165348,44.97944083922953,44.97947958681134,44.97948549326029,44.97939880231847,44.9793022325353,44.97928248829709,44.97932761960364,44.97944359785901,44.97958154374756,44.97971333768447,44.97995471610422,44.98017436095202,44.98034970937863,44.98050342465957,44.98063482048263,44.98083156172449,44.98089735344414,44.98098515761905,44.9810952623394,44.98115034469446,44.98117264003893,44.98115130184356,44.98103127459096,44.98103211978826,44.98101593016077,44.98091211791388,44.98085209401296,44.98078647921603,44.98069748834589,44.98062049911167,44.9805275103466,44.98044014839168,44.98037504939198,44.98034283090435,44.98034371599834,44.98038936641749,44.98036276667906,44.98031373711083,44.98024815028319,44.98020966667083,44.98017629144175,44.98011585863563,44.97996250639784,44.97983055734274,44.97976486751749,44.97973236168802,44.97972188681788,44.97970549023441,44.97970810542982,44.97980216184236,44.9798629966955,44.97994553377835,44.98001116667606,44.98055099423082,44.98080718302671,44.98098200001393,44.9811730296713,44.98181267190183,44.98197643355949,44.98206906778442,44.98209054863091,44.98204610716031,44.98178166238839,44.98163253581782,44.98158197977409,44.98157487568936,44.98151911096653,44.98144209021023,44.98133220807797,44.98120074190477,44.98100327616289,44.98085498816624,44.98074498448483,44.98071715518704,44.98073904851724,44.9808047664663,44.98104617579401,44.98122146823018,44.98140723958871,44.98147266222097,44.98155949282545,44.98164093343131,44.9819305408242,44.98221446228638,44.98252081709788,44.98285727529908,44.98288766407166,44.98297834887234,44.98288411077891,44.98282946059443,44.98294112170939,44.98313484939603,44.98322864979796,44.98336030815005,44.98342623343476,44.98346496985952,44.98353233273345,44.98393421752713,44.98407223247168,44.98418279731266,44.984265911326,44.98432159483657,44.98445475911756,44.98458867108339,44.98493313437208,44.98496715525137,44.98495653022216,44.98483162239468,44.98481543621681,44.98483208799487,44.98488182740763,44.98488228340736,44.98484982850004,44.98485057704058,44.98488396308633,44.98490719432491,44.98488742040725,44.98491780863556,44.98491385387963,44.98487736062467,44.98478597111645,44.9847861036956,44.98461361863684,44.98453841883644,44.98448711833131,44.984284515002,44.98425950407039,44.98426638520844,44.98422448167411,44.98419209618191,44.98419263363385,44.98424882528844,44.98425127134988,44.98423039462321,44.98423191805929,44.98426549106498,44.98426708828951,44.98425637731614,44.98423163568971,44.98413039536072,44.98398997535662,44.98394713359254,44.98391581939565,44.98391216982519,44.9838799037728,44.98380924193653,44.9837219875075,44.98365613234112,44.98360128237707,44.98356807489878,44.98351162886421,44.98348394538281,44.98339100740599,44.98333625702512,44.98362764051117,44.98363894118551,44.98360642741998,44.9835460943375,44.98323802601833,44.98320477672872,44.98317725084878,44.98311739911902,44.98306282030727,44.98335364540362,44.98335425209507,44.98332148542361,44.98325553669244,44.98311801920651,44.98295199335763,44.98280344381548,44.98268791661815,44.98238611320181,44.98229239633788,44.98228631301676,44.98230778702387,44.98237281579281,44.98248203784713,44.98261316148707,44.98276641865838,44.98282100459925,44.98283181594186,44.98279874071169,44.98275499215526,44.98264559799745,44.98260724912557,44.98261777233921,44.98267215237554,44.98265554734291,44.98258962808458,44.98254597768046,44.98232749893737,44.98210944845766,44.98206551864559,44.98197782201002,44.98193415813865,44.98189589032226,44.98189087843036,44.98185272499358,44.9817812687037,44.98176943624041,44.98179097193697,44.98187840955342,44.98184516292545,44.98177937824451,44.9816701182236,44.9815941111455,44.98153977251152,44.98154038364635,44.98156257077894,44.98163457578841,44.98233321311376,44.98244333954761,44.98286066378279,44.98328970896691,44.98379443429374,44.98403600183751,44.98478192374203,44.98506683148937,44.98543934544035,44.98585603659662,44.98603172891413,44.98619707668311,44.98626309904513,44.98659224480416,44.98694355637618,44.98709718502507,44.98790792857834,44.9885439846694,44.98885118459923,44.98948719462601,44.9900130115553,44.9902978642973,44.9917889310376,44.99224893860855,44.99251195502939,44.99292845608836,44.9934545685996,44.99389250323515,44.99435286614407,44.99490046953667,44.99511126023393,44.99529507497259,44.99547017860648,44.99645676338793,44.99663211574253,44.99711401653317,44.99750860325258,44.99770595008201,44.99783771072985,44.9980250030647,44.99813457433604,44.99822210456657,44.9983474971219,44.99838555522653,44.99845153900715,44.9988242572912,44.99886807215043,44.99890690062256,44.99894532830098,44.99903318751542,44.99915344763925,44.9992840803173,44.99937150516809,44.99972268857012,44.99998233781732,45.00016903648866,45.00052007105702,45.00073930821169,45.00126506894605,45.00137485486969,45.00157277749872,45.00170467185058,45.00190641176619,45.00203922145675,45.00204497355018,45.00201684756549,45.00202278800532,45.00207801205637,45.0021328028067,45.00221464118985,45.0022626757014,45.00231470730348,45.00231407235334,45.00231912897011,45.00237373178338,45.00245568027329,45.00261445895497,45.00274589942505,45.0028555710204,45.00289946717183,45.0031946366313,45.00333691419609,45.00355604489516,45.00408195654062,45.00432281734371,45.00465193198816,45.00528788645913,45.00537577731651,45.00539760643597,45.00537033107294,45.00506907330666,45.0048498439233,45.00481162114644,45.00481182487427,45.00487772870571,45.00509160898152,45.00534617640321,45.00552515085865,45.00558552857749,45.00565123597205,45.00571663888798,45.00578187463007,45.00594418669468,45.00596810554786,45.00616514111363,45.00629659957838,45.00653735690323,45.00669105161477,45.00726078841592,45.00747992518424,45.00791844522998,45.00813779446842,45.00835697912763,45.00851037137984,45.00875153267246,45.00899267394588,45.0093872784067,45.00951871402265,45.00961399753003,45.00986927401686,45.01026372497885,45.01036497484844,45.01054304801222,45.01066416321585,45.01071291885236,45.01080064001444,45.01095391050227,45.0110833653304,45.01125481140389,45.01138680321436,45.01145240291773,45.01169212908583,45.01171852729299,45.01176477063467,45.01198393574384,45.01211538689503,45.01233455799591,45.01248800575978,45.01277288627855,45.01307994794297,45.01328654982686,45.01345451775327,45.01376174906662,45.01393680074456,45.01406807715235,45.01435370080772,45.01441928893016,45.0146317991415,45.01471375208422,45.01493282055352,45.01504205445421,45.01522788774962,45.01542451497761,45.01564348470716,45.01606003184628,45.01619143826387,45.01645386471559,45.01649759585084,45.01660744975339,45.01670669029327,45.01677227353307,45.01691389363092,45.01728609185755,45.01739534281674,45.01759290307526,45.01781138665438,45.01809664213308,45.01827201392898,45.01833254537179,45.01836578651482,45.01840412776792,45.01853470068136,45.0186659364401,45.01884085769281,45.0193446495641,45.01980432072768,45.02000155313252,45.0201772218544,45.02022113439739,45.02054880264463,45.02109568421658,45.02148926188993,45.02214591447164,45.02260612378412,45.02280265229101,45.022912019454,45.02297782182671,45.02306571432735,45.02315377786334,45.02317556858315,45.02329554858571,45.02336128278291,45.02344904250531,45.02351521433437,45.02355894661257,45.02360274027165,45.02365698023552,45.0237717024891,45.02389743634073,45.0240068728938,45.02404883322104,45.02422542266757,45.02435667661278,45.0245977355549,45.02475208414616,45.02492508991538,45.02503466878231,45.02621811150409,45.02744547475715,45.02767545353457,45.02785052297568,45.02811373324129,45.02826706264955,45.02848619459572,45.02859551049794,45.02890269959445,45.02925298909855,45.02952679329962,45.02985569504013,45.03031603503036,45.03062290776016,45.0309296176846,45.03125843209773,45.03226678411627,45.03336239264218,45.03382275114683,45.03422817884394,45.03440344364164,45.03451296087107,45.03506067340212,45.03541131230963,45.03558660078667,45.03584979416857,45.0362002145274,45.03648530019326,45.03669365677501,45.03713178370092,45.0372359622732,45.03742754914428,45.03784428881491,45.03798550117547,45.03817036668748,45.03821993174699,45.03829156445886,45.03828148367777,45.03819527686512,45.03819562486427,45.03822859477042,45.03829406595897,45.03838113779194,45.03840176149274,45.03843407618406,45.03878447313731,45.0389181600225,45.03918065165823,45.03937807567784,45.0401231467079,45.04038449624763,45.04049589467773,45.04062721539749,45.04073658418655,45.04102201818659,45.04113144892978,45.04126284019807,45.04138297904512,45.04147070615824,45.04163535959686,45.04193109195902,45.04217193098367,45.04245661599752,45.04261022503013,45.04287315761212,45.04295799092496,45.0430071985276,45.04309790138837,45.04334572135532,45.04348643480273,45.04425440681122,45.04440680721091,45.04454153809306,45.04470421520764,45.04481135660816,45.0448233564256,45.04487450974049,45.04491217391276,45.04490982691262,45.04492653027373,45.04503071077069,45.04553519564995,45.04601767612863,45.04619309865835,45.04639101082972,45.04656634791338,45.04665409080951,45.04709217027703,45.04726760725265,45.04744388989528,45.04782506778755,45.04813154231841,45.04826298794822,45.04837271704182,45.04857037999155,45.04916864909203,45.0493828283436,45.04947078375682,45.04973311652044,45.04984278362705,45.05017218496567,45.05063303863108,45.05096233389258,45.05105014225266,45.05137839542678,45.05164172688393,45.05197109047504,45.05227902639841,45.05234489789267,45.05254195632237,45.05287131859532,45.05309053262645,45.05333185370453,45.05341954554286,45.05361677544846,45.05390265311868,45.05407835441549,45.05420989077684,45.0548229426077,45.05493271056529,45.05504235885972,45.0552625192032,45.05541586180117,45.05554693832226,45.05564003681911,45.05583274734481,45.0560683495996,45.0562006976238,45.0562447598619,45.05634801086777,45.05672227288476,45.0571614423387,45.05742388727011,45.05756161100016,45.05773190114349,45.05812650165323,45.05834612384873,45.05860928611441,45.05887259226783,45.05933383078634,45.0596408839755,45.05975595084115,45.05999190940528,45.06018433924151,45.0604102400108,45.06044386614628,45.06048799177151,45.06055367804959,45.06072839968264,45.06077241402841,45.06088551661379,45.06104647867861,45.06120017326171,45.06141903997194,45.06168221042979,45.06188004124165,45.06200112542746,45.06203446619223,45.062063998744,45.06210234194384,45.06216232322733,45.06226505315727,45.06235238302646,45.06252719072907,45.0626363782392,45.06281194305246,45.06325657357819,45.06353662037759,45.06363584961795,45.06370211163757,45.06370851466941,45.06372519811125,45.06379073195216,45.0638560773968,45.06392171255023,45.06393316946537,45.06390657247821,45.06394507696205,45.06398895292886,45.06431629175806,45.0644476442917,45.06457967180899,45.06475051820549,45.06485492044166,45.06507419641118,45.06527115420987,45.06533707243548,45.06597403523182,45.06617158575627,45.06647834128339,45.06671397899824,45.0668239055853,45.06693969313267,45.06714251843515,45.06726892215922,45.06731288147782,45.06744415877196,45.06755370457333,45.06768545307737,45.06786099829528,45.06808066490626,45.06851916216482,45.06895768653652,45.06906738629101,45.06913896388454,45.06924311797604,45.06957252853631,45.06968206051347,45.0699017223201,45.07005501912276,45.07029626313194,45.07069145120765,45.07117457602949,45.07185031794332,45.07200963675616,45.07207068146968,45.07210915391823,45.07213092682144,45.07224030049629,45.07230582008016,45.07259152401745,45.07283274936036,45.07331481631862,45.07368767392748,45.07381919504151,45.07395057813224,45.07410369085929,45.07438874684409,45.07465223676877,45.07482724346573,45.0749278556422,45.07515659718509,45.07526609162237,45.07546328085149,45.07584189836933,45.07623240336,45.07645199614783,45.07671059225614,45.07706819008833,45.07770525036112,45.07830480631102,45.07834369813657,45.07836043030977,45.07839893878869,45.07846976636048,45.07851942635988,45.07857995808349,45.07881228484172,45.07912125996122,45.07929308333328,45.07934280078504,45.07942362389881,45.07951882324947,45.07960740868066,45.07972877847747,45.07990999592006,45.0799705409059,45.08000910076747,45.08004843346286,45.08010391098742,45.0801810987354,45.08031309846223,45.08045625548611,45.08065527461012,45.08092002024031,45.08118488508492,45.08128432612121,45.08138867869726,45.08145453960832,45.0816079118478,45.08180487088006,45.08193641461374,45.08206821398954,45.08226551060793,45.08238021059285,45.08251323471047,45.08271663783007,45.08284921746566,45.08292701232035,45.08300527604423,45.08309376759674,45.08314438293559,45.08312890958646,45.08308564271856,45.08300384359013,45.0830093754963,45.08304231628958,45.08328315497054,45.08343137541384,45.08354119644029,45.0836461090016,45.08381266471618,45.08392395779338,45.08395767637757,45.08400204233833,45.08407909166493,45.08414534228694,45.08422564811791,45.08429798500287,45.08435353164548,45.08449116928409,45.08460083501205,45.08466678172829,45.08477126117327,45.08495392810354,45.08496518299201,45.08504223588449,45.0850056576789,45.08501166228773,45.08504445143856,45.08513234160199,45.08517078816953,45.08521041361464,45.08525470118864,45.08527119829185,45.08520552129642,45.08512177438456,45.08508161484026,45.08501885241043,45.08490416940558,45.08488489657786,45.0848913574745,45.08471777702095,45.08463740430438,45.08459438642157,45.08453145819976,45.08444694837281,45.08430674249124,45.08425367126143,45.08416168916845,45.08405747973254,45.08401675821787,45.08386218229157,45.08371978270247,45.08371112384652,45.08370928465396,45.08407837011102,45.08502011451277,45.08512990436704,45.08520091588063,45.08525563172756,45.08527157147294,45.08524966342844,45.08511242886945,45.08508473345513,45.08508425417841,45.08513856197935,45.08512683805414,45.08513763942618,45.08522520903134,45.08537853548152,45.08546621403951,45.08553167566713,45.08588615863388,45.08591706652793,45.0859234468987,45.08593989046349,45.08600002780325,45.08604400465475,45.08606680427838,45.08603470562055,45.08600218893321,45.08585475672108,45.08583308271123,45.08583899098373,45.08590522941817,45.08591101073686,45.08593313773868,45.08602060990401,45.08624047803254,45.0862569883362,45.0862576566897,45.08614988485173,45.08601936287121,45.08593211377853,45.08580043500373,45.08575665648149,45.08573460566885,45.08578459976503,45.08598266689732,45.0861539384786,45.08622015987676,45.08623131360711,45.08619903718628,45.0861443133053,45.08610070234007,45.08596840660076,45.08590256809677,45.08579340139278,45.08545546695536,45.08500760851292,45.08408914892335,45.08367882812929,45.08365186919126,45.0836685071959,45.08375079699908,45.08414482437582,45.08445117556285,45.08446211368796,45.08460320272486,45.08464172452408,45.0846815984948,45.08465017212767,45.0847769217862,45.08481565631501,45.08481632150896,45.08476759570832,45.08466399899649,45.08447145840945,45.08425345027322,45.08412217794844,45.08404021114884,45.0839151595227,45.08387160662265,45.08374010587308,45.08367445665438,45.08349892973061,45.08334586562902,45.08323566750456,45.08317011066983,45.08302855730881,45.08278816133237,45.08267361774092,45.08262987412513,45.08256501913426,45.08261546345649,45.08261595430545,45.08258888152475,45.08247464428681,45.0824091627525,45.08232141462801,45.08216851984173,45.08199314082768,45.08181808886545,45.08170365559053,45.08152965725488,45.08084789142394,45.08053101176939,45.0802801009167,45.0798211035587,45.07954400973458,45.079450649326,45.0793262152466,45.07922281886218,45.07908090286119,45.07875272795035,45.07868695347381,45.07858868841111,45.0783109074065,45.07822912911116,45.07816887925898,45.07816861916365,45.07825020791576,45.07863138061536,45.07862538717061,45.0786087127855,45.07856511871286,45.07834661486574,45.07814992212077,45.07788691858386,45.07782137092804,45.07778341443227,45.07772367087644,45.07768633346985,45.07773691193126,45.07773277131899,45.07767250335171,45.07745257521589,45.07738133080095,45.07735416404218,45.07737659031037,45.07751979451771,45.0775199444122,45.07747653936309,45.07695205700796,45.07673376241107,45.07662408515449,45.07655812563661,45.07654143285562,45.07655119113387,45.07642325219676,45.0764223139163,45.07653015048773,45.07652424932965,45.07650774611478,45.07646373725801,45.07633328719562,45.0762183491115,45.07619659962756,45.07613721146998,45.07607814355814,45.07603486383395,45.07595290365025,45.07587695231048,45.07559304488292,45.07537450743791,45.0751337463284,45.07505722982115,45.07502429313939,45.07502410608741,45.07508911411177,45.07510466917761,45.07505468189105,45.07499418557653,45.07494465287373,45.07479888209524,45.07471711959948,45.07460789714062,45.07448836982852,45.07436262307836,45.07416056570368,45.07407343198281,45.07389848773344,45.0736636294507,45.07353836706697,45.07340224149497,45.07332053827133,45.07315746653485,45.07310817754161,45.07308063694267,45.07301339585699,45.07290290479574,45.07293555739908,45.07300101959834,45.07316492774381,45.07321412572264,45.07325230788307,45.07330090258084,45.07333902818857,45.07347056624913,45.07359005561562,45.07361718482685,45.07355659710112,45.07346886375459,45.07338131506867,45.07320664888822,45.07307588474098,45.07285792455226,45.07247687450989,45.07231869790309,45.07219870173832,45.07209039270109,45.07204154841082,45.07199931376977,45.07197228295891,45.07195590682615,45.07191757807593,45.0718899223827,45.07185616529853,45.07176229068353,45.07173979213513,45.07174353798393,45.07177587937624,45.07184649197377,45.07185720601307,45.07179616917362,45.07177377968996,45.07174631681701,45.07172424779767,45.07167565134149,45.07164833109703,45.07161519242548,45.07163094944679,45.07162390113171,45.07155668014789,45.07155620781676,45.07162607183706,45.071680006017,45.07177774348359,45.07186519272517,45.07193063459029,45.0720625271581,45.07221017815365,45.07230266887493,45.07231356857884,45.07228044880622,45.07218218547866,45.07209463877773,45.07196248074382,45.07187457383031,45.0717926129722,45.07161819600245,45.07155311203627,45.07149874501716,45.07142860450371,45.07141354460658,45.07143230130846,45.07142256226545,45.07150040556849,45.07150263430137,45.07160364177756,45.07158876364054,45.07175476629063,45.07181518507473,45.07195189065609,45.07218771772236,45.07240687799089,45.07266910605939,45.07293210719313,45.07301942864791,45.07334680277506,45.07391587204859,45.07411809526061,45.07418895024679,45.07422112226576,45.07420390809425,45.07414341464814,45.0740941779504,45.07405609520573,45.0739147564018,45.07387087807641,45.07371725231636,45.07352063388105,45.07343291949071,45.07333385070671,45.07333920623995,45.07337722310173,45.0737694379483,45.07398749409402,45.07409675248716,45.07420048976302,45.07427112096246,45.0743147162692,45.07444595641293,45.07475235785827,45.07492721137734,45.07501500412131,45.07512456374386,45.07531694540283,45.07538860974609,45.0753998670377,45.0753458912429,45.07535154803857,45.07552716500251,45.07556571969016,45.07557132232449,45.07548931549233,45.07511733968339,45.07475708485883,45.07453874872739,45.0742014269804,45.07409227077925,45.07315215596098,45.07245203498113,45.07221150144532,45.07197098114699,45.07179066340478,45.0717580610327,45.07175826587159,45.07181860816605,45.0722348004664,45.07238804952411,45.07265084237127,45.07278165711104,45.07300074892407,45.07345994482897,45.07391930375378,45.07411586798931,45.07424693692096,45.07443775792526,45.07456796815747,45.07467131311572,45.07486746911159,45.07517325965178,45.07545729900328,45.07591671016743,45.07601497842023,45.0761781245617,45.07628723347367,45.07641832245584,45.07645144376346,45.0764461238123,45.07648456318071,45.07689965381651,45.0770521357453,45.07713961066911,45.07731399361165,45.07768546594142,45.07790344720342,45.07812162986175,45.07826894356811,45.07830693566341,45.0783500818331,45.07843746143589,45.07854660891164,45.07873809551339,45.07879874471843,45.07882137372332,45.07885447878633,45.07892007002272,45.07900754219871,45.07908384871212,45.07923640272445,45.07947545883587,45.07956244137127,45.07966593124458,45.07973148231656,45.07985025868602,45.07995369262812,45.08010650756002,45.08032507087866,45.08074067551276,45.080937413346,45.08104110503428,45.08108977656857,45.0811273380109,45.08118698427808,45.08123075369528,45.08136260351575,45.08153760669137,45.0818873835663,45.08206191291964,45.0822581185154,45.08249802855535,45.08329883982623,45.08368766443056,45.08403651420938,45.08501856488544,45.08510575679369,45.08530182514775,45.08560769940689,45.08571644482671,45.08589095479357,45.08619661915684,45.08650200449964,45.08674238561429,45.08682966546635,45.08761449820139,45.08839934041666,45.08861738504699,45.08879203969327,45.08888179358317,45.08898548864897,45.08938379381286,45.08949253396537,45.08979125255912,45.08987267846223,45.09000362755095,45.09028781450669,45.090440585647,45.09126013946322,45.09130379101783,45.09150094075362,45.09167661371316,45.09174233127117,45.09181306861823,45.09183483001294,45.0918236564106,45.09176842673532,45.09171333737311,45.09162030142289,45.0913136279968,45.09126967397059,45.09121481211398,45.09100649471636,45.09096280807955,45.09094616253381,45.09095706364132,45.09103906251441,45.09122714860186,45.09144074134677,45.09147858175392,45.09148887086572,45.09154326371051,45.09165206252764,45.09171227601922,45.09175099471786,45.09175156302597,45.09180711828681,45.09194022469956,45.0920292650618,45.09216754624062,45.09218410807987,45.09224424544436,45.09226570756589,45.09221455988224,45.09217563406028,45.09218555728516,45.09216907604831,45.09215784439534,45.09208630163412,45.09196965804915,45.09191443309123,45.09188084559277,45.09185784250229,45.0918634327332,45.0918900330736,45.09347660573912,45.09381765039053,45.0939128163932,45.09395126354071,45.09411528160987,45.09416971466192,45.09421313369036,45.09428183508062,45.09447415866822,45.09485204593398,45.09504823126215,45.09569220365037,45.09587642880545,45.09607329718921,45.09648331822868,45.09679690705183,45.09828088256931,45.09848814511648,45.09926723203136,45.09934941222199,45.09977967379332,45.09986006103016,45.09996388400262,45.10002583966752,45.1002057110916,45.10029977102118,45.10085192566142,45.10097265791352,45.10123367916398,45.10144532160161,45.10198961084864,45.10211240260876,45.1022287852436,45.10231034434409,45.10239449724624,45.10246177112919,45.10281648736397,45.10286832362646,45.10347835370342,45.10364113415229,45.1037519319696,45.10399935086463,45.10429877374648,45.10465952659074,45.10499994311841,45.10522212404211,45.10550591567164,45.10562887819361,45.10586641027695,45.10603625102862,45.10610458720567,45.10613530973296,45.10612440782987,45.10613019077954,45.10600239178504,45.10577430008259,45.10574636183036,45.10575284219782,45.10577399653805,45.10584844301741,45.10595252432333,45.1060273597395,45.10620427766239,45.10622062715124,45.10630796360807,45.10638378061851,45.10644531385365,45.10648227042691,45.10646431413484,45.10643930378014,45.10643385084094,45.10635583730544,45.10628721489572,45.10621229301429,45.10611194474586,45.10603327078093,45.10596300804514,45.10596186991766,45.10596649008782,45.10600753501767,45.1060299471246,45.10614152532693,45.1062080988987,45.10627694077517,45.10635036146482,45.10648676377861,45.10657114758919,45.10662775446266,45.10679535037988,45.10739169419116,45.10754643198469,45.10764824589706,45.10791204048477,45.10813706604026,45.10838090131504,45.10853649779465,45.1086139959957,45.10868398314173,45.10857605628409,45.10843051996705,45.10829743485204,45.10816706035775,45.10810034660224,45.10797524420568,45.10756501966932,45.10745213846776,45.10738483488401,45.10731312597153,45.10727954408951,45.10725581362472,45.10750005449933,45.10760631829826,45.10778070352021,45.10804562519311,45.10829810907778,45.10856970176576,45.10886345137469,45.10921852550771,45.10984746426407,45.11041646539248,45.11079811183271,45.11102653790788,45.11131567563431,45.11160491777828,45.11193579005356,45.11230293169884,45.11267829187941,45.11305635146778,45.11325444716883,45.11348936302448,45.11379117339893,45.11398984373261,45.11418948170406,45.11518062181507,45.11544145196289,45.11575713809994,45.11599061538278,45.11622417293506,45.11646437702399,45.11689483868778,45.11745328281661,45.11769765210456,45.11787089384529,45.11809558791145,45.11825954939998,45.11843506279254,45.11886411266342,45.1192104130786,45.11945302579628,45.11965421262386,45.11988246959521,45.12010348627245,45.12071758700542,45.12102150932082,45.12130295350208,45.12149351476673,45.12157552718853,45.12191373645193,45.12213020856018,45.12244152334191,45.12298580591384,45.12350695282068,45.12378078073964,45.12401201269321,45.12430376163187,45.12450760819141,45.12478325266196,45.12495942781602,45.12580244316847,45.12616480198427,45.12647868112307,45.12668622655482,45.12691035370055,45.12716920468867,45.12741991907741,45.12791629471283,45.1283470844576,45.12859176644665,45.12879469735021,45.12900555077218,45.1291996168882,45.12944311412589,45.12968683937356,45.12995459889098,45.13021226729972,45.13046970453649,45.1307343967887,45.13098951763493,45.13132502499662,45.13178805469874,45.13231233741867,45.13277039666735,45.13302754206613,45.13327672363417,45.13346182124497,45.13374554118408,45.1340138863089,45.13420833325156,45.13443682787595,45.13465694057468,45.13496915607574,45.13530076444811,45.13553328296071,45.13581008330418,45.13597009188,45.13620543623421,45.13634915537895,45.13648009599229,45.13676818867421,45.13702068995482,45.13731826972717,45.13754258597426,45.13776764713553,45.13795554079808,45.13818931462745,45.13838618923094,45.13851233573187,45.13908007575795,45.13951338527141,45.13973002739124,45.14001242548471,45.14021063503246,45.14048441234518,45.14073251809141,45.14129012751688,45.14183330981479,45.14209983126673,45.14235872624328,45.14255156557287,45.14303688413271,45.14352456510046,45.14400524983181,45.14418255386276,45.1444015261192,45.14462074438398,45.14481527895306,45.14498460080406,45.14591426171152,45.14608381460978,45.14629487431665,45.14648125603083,45.1466671138786,45.14685347285939,45.1472343242493,45.14751349998154,45.14777684059852,45.14801935695021,45.14813003746793,45.14828481499216,45.14848468151425,45.14865688561438,45.14907682016897,45.14934376120164,45.15015535807304,45.15037461532584,45.15042619081373,45.15051575550629,45.15053163463815,45.1505713196976,45.15059581626292,45.15064363323363,45.15071109113416,45.15076475421938,45.15089234699371,45.15096485393121,45.15099450705838,45.15106495075543,45.15112813420109,45.15129956086705,45.15154140736116,45.15175222400387,45.15184875162971,45.15195274117231,45.15202154742745,45.15218313874527,45.15237809677428,45.15250658013549,45.15302443129548,45.15336444339647,45.15357686432363,45.15374706725632,45.15391705580869,45.15411199070859,45.15431392653463,45.15473385592844,45.15501832741212,45.15534243306047,45.15560919331272,45.15586613717799,45.15610653768588,45.15636306132064,45.15665224820351,45.15686401669774,45.15706707324174,45.15723529440464,45.1574029643562,45.15758908840574,45.15775726865027,45.15796409700298,45.15815268230349,45.15838739446398,45.15849802434016,45.15867422424837,45.15878825460619,45.15905984720219,45.15990632736479,45.16032687822037,45.16045020592143,45.16055392271557,45.16070174012865,45.16083834594325,45.1612409623208,45.16163028708954,45.16181635350011,45.16211802616269,45.16230293241131,45.16257055515086,45.16277154917394,45.16327655952331,45.16359852397738,45.16386474155978,45.16403788980942,45.16425412521813,45.16447235850363,45.16461707121512,45.16498704022884,45.16522022546835,45.16545265867904,45.16561260599529,45.16584308104672,45.166105660448,45.16638730841659,45.16658711894916,45.16682935835006,45.16703801695724,45.16745539303462,45.16773374985976,45.16798784743158,45.16827411417786,45.16878206359909,45.169156420188,45.16949627023396,45.16964134212424,45.16988026590378,45.17033513122323,45.17064584365697,45.17088960935117,45.17098275867136,45.17102260540739,45.17108075140855,45.17109677758589,45.17112889846504,45.17112898897371,45.17116919545287,45.17122508465643,45.17134030506453,45.17148847769744,45.17162570064486,45.17177213700148,45.17193527463232,45.17219510626886,45.17242679789555,45.17281546149925,45.17315879716447,45.17364304985601,45.1739042993896,45.17415700959105,45.17445017015277,45.17467848675288,45.17497188097277,45.175704118525,45.17626710376547,45.1765291603745,45.17683181523432,45.17711190225071,45.17737443123504,45.17763867559555,45.17791957455528,45.17816001108443,45.17843419236149,45.17879833208901,45.17906268999424,45.17931966801608,45.17960088997658,45.17988134814699,45.18015437678,45.18055987679902,45.18106491123348,45.18140429966533,45.18157964153527,45.18192747987543,45.18215159697652,45.18282401282993,45.18360220041293,45.18387316223903,45.18417000798289,45.1848105349066,45.18540043668582,45.18641925573198,45.18664895565724,45.18692277996765,45.18720680682802,45.18742826884353,45.18773630324606,45.18796065751177,45.18818490549759,45.18836857068354,45.18858518305946,45.18873487735976,45.18886746939208,45.18898433468782,45.18913493908341,45.18941629045032,45.18965672398458,45.18994490382917,45.19022512147838,45.19047236777639,45.1912367149712,45.19179379338339,45.19203954712658,45.19256982512098,45.19286621653016,45.19313993795538,45.1933726163853,45.19361455344546,45.19377473604472,45.19393437654788,45.19415977046344,45.19432088496712,45.194555624886,45.19476588347336,45.19500688740698,45.19528927197354,45.19594444277408,45.19644010670421,45.19673753610439,45.19704236099075,45.1973140150288,45.19749028333706,45.1979383288346,45.19827920549631,45.19872372923733,45.19908131271658,45.19937359017943,45.19960908693039,45.19982999222458,45.20017958081306,45.20043091039712,45.20069148541424,45.20104060509048,45.20128385349686,45.20154361595009,45.20174467712175,45.20205184698528,45.20223750594305,45.20251925527661,45.20268839250156,45.20368810404857,45.20388036285595,45.2044005019801,45.20447262498041,45.20464027713887,45.20495982479857,45.20519946995386,45.2054033138935,45.20555337716276,45.2057269163039,45.20585246360966,45.20602507160741,45.20615850359322,45.20635446672267,45.20654858254572,45.20673573928787,45.20685101173046,45.20697400823301,45.20707333243556,45.2071898448019,45.20727379756958,45.20739656272178,45.20749008329415,45.20766903349332,45.20785710846297,45.20798231331449,45.20820414696188,45.20844630299635,45.20849641833543,45.20869402452507,45.20886627270092,45.20904762678632,45.20943068359525,45.20986669470316,45.21012060512499,45.21040142910738,45.21072173703569,45.21105026119942,45.21134711082368,45.21170927514007,45.21211352932534,45.21243441834896,45.21263280349297,45.21284734149414,45.21312858448614,45.21340059736728,45.2137391831564,45.21425311984966,45.21463194487563,45.21516196218553,45.21611229880408,45.21668126277818,45.21707601530882,45.21742039686883,45.21782220121815,45.21829673194084,45.21887691317524,45.21925699440208,45.21976654152536,45.22027539281012,45.22075683174769,45.22090861923989,45.22110847709605,45.22127666652791,45.22155720611161,45.22179787714677,45.22206304773652,45.22229744980358,45.22253857878064,45.22273162173244,45.22300615592412,45.2231987354699,45.22360331613258,45.224205883449,45.2244680440306,45.22473912494021,45.22512408658469,45.22534357691475,45.22567600265454,45.22589549903539,45.2261753364532,45.22719220849905,45.22748095005024,45.22777770416603,45.22804334352433,45.22829350749402,45.22846946251353,45.22875882261879,45.22901617144176,45.22916416795921,45.22929422638936,45.22945791517918,45.22962762915591,45.22982206380859,45.22999825379916,45.23017430826881,45.23042446150625,45.23058189888545,45.23075601124474,45.23089644466489,45.23117503673856,45.23202178074657,45.23280931290977,45.23399544217622,45.23423538743305,45.23443052004615,45.23459003597498,45.23495044663619,45.23528685584851,45.23545834667595,45.23556073159068,45.23571622177713,45.23593099097172,45.23617476997054,45.23641727468037,45.23664487219765,45.23688831353658,45.23721312711948,45.23761144678186,45.23783038826846,45.23808086169302,45.23828949476268,45.23845696738258,45.23859127544763,45.23870788079268,45.23876644168402,45.23878396977081,45.2387492531691,45.23867394859107,45.23859687695963,45.23854181778082,45.23848282259244,45.23848496193508,45.23849428472922,45.23853066953194,45.23861280764213,45.23868108809366,45.23877513618271,45.23890872741686,45.23897910048323,45.23911231759132,45.23933606681722,45.23962059770306,45.2398817550496,45.24015158393304,45.24056245951819,45.24084271612175,45.24106277269846,45.24125886672191,45.24147411055517,45.24182079604524,45.24208621042268,45.24234333125708,45.24262550820813,45.2428726708641,45.24306317999052,45.24336003472288,45.24381143602244,45.24408239192756,45.24438594985421,45.24465620508226,45.24494275792958,45.24523682220883,45.24557954797967,45.24600328904929,45.24635306117781,45.24662098498433,45.24692174992263,45.24719037665455,45.24740188367426,45.24806145678505,45.24844531839616,45.24875682989413,45.24901913049464,45.24931551955977,45.24957087783404,45.24982659478002,45.24995288375099,45.25020763113665,45.25037678798414,45.25048970136852,45.25072897573619,45.25110730670374,45.25159713108122,45.2516874743776,45.25194515859385,45.25221673179941,45.25265868433911,45.25301509425089,45.25331481350957,45.25353175598838,45.25374828024562,45.2539432650051,45.25415384020175,45.25437039027793,45.2546096942154,45.25477352970231,45.25498630782985,45.25544843809265,45.25571705662197,45.25604388332452,45.25629427372426,45.25660803660057,45.25687999394125,45.25721834507097,45.25744340243609,45.25783587644506,45.25811937926785,45.25842265797493,45.2585143471323,45.25859200989279,45.25861477400365,45.25864938727273,45.25856592387873,45.25855857740302,45.25861224223171,45.25870943875611,45.25888075025379,45.25913447790293,45.25939813982266,45.25958951005814,45.25980129459041,45.25995105340551,45.26001842362134,45.26022881992992,45.26032351623628,45.26050775353558,45.26070564729551,45.26093843865274,45.26108841440304,45.26130173568767,45.26153353334677,45.26164822950503,45.26174233057819,45.26188241339936,45.26204983067003,45.26221764746289,45.26226458703491,45.26238680873154,45.26258571953892,45.26272300070072,45.26294346438792,45.26310848214302,45.26327964101986,45.26343692230378,45.26368833413358,45.26387178532259,45.26392644366165,45.26417307551126,45.26432482466045,45.26449715163301,45.26477606362221,45.26511657163213,45.26536081193405,45.26562563941831,45.26588832079298,45.26615690673481,45.26630013330298,45.26640097742522,45.26650579990837,45.26655335477126,45.26661479773482,45.26666530991695,45.26671586761847,45.26676737337616,45.2668876207071,45.26697360785303,45.26709603270832,45.26716992231289,45.26731752073984,45.26748647848287,45.2677022265073,45.26786349262385,45.26790981946937,45.26796708646354,45.26806316472703,45.26813507813965,45.26824047923656,45.26838707819064,45.26859504842228,45.26878305062143,45.26894371838141,45.26914596434914,45.26934246413163,45.26961444587339,45.26987611261028,45.27011006237388,45.27057435873983,45.27110129038401,45.27145547077462,45.27169990133559,45.2719916848862,45.27226423961416,45.27256435374914,45.27322793581185,45.27335332446119,45.27372214965507,45.27407632990401,45.27429800464417,45.27465239225603,45.27487462933534,45.27526503883652,45.27546728200907,45.27578957628064,45.27614731867916,45.27636264744022,45.27675049360568,45.27696384990696,45.27723798525568,45.27738695447798,45.27760503448776,45.27775996240219,45.27795526651327,45.27817811730645,45.27837461104563,45.27851981840841,45.27883617292086,45.27898907507456,45.27922580050485,45.27940348350915,45.27958214542186,45.27975923118723,45.27998505115011,45.28018810960005,45.28067935456075,45.28098996114553,45.28125279877865,45.28153526481059,45.28172702207753,45.28202337917727,45.28230504435069,45.28249581966895,45.2826875389001,45.28298012509177,45.28321821352511,45.28341629447355,45.283673623291,45.28389646559063,45.28414760796358,45.28447226058584,45.28499363808466,45.28530202070915,45.28546563131318,45.28580873942394,45.2860080070171,45.28629581178511,45.28743083222367,45.28776023717362,45.28793672339312,45.28811279262056,45.28826096257118,45.2883687267053,45.28853686824943,45.28879180376332,45.2891978624841,45.28942838655072,45.28964685638085,45.28989107660577,45.29015848281741,45.29037638734384,45.29084345835734,45.29110371431433,45.29148205303029,45.29186139141357,45.29226864101535,45.29240033986499,45.29266914658837,45.29293893651661,45.29319367296139,45.29343453146568,45.29390992457579,45.29431461279137,45.29463785845338,45.29480147768705,45.29512472528622,45.29529507133669,45.29559653360304,45.29592413933867,45.296299698604,45.2965389551522,45.29683764174371,45.29711101440884,45.29733289663958,45.29784296124053,45.29856851698603,45.29925538971896,45.29991236244102,45.30096026201436,45.30107253796857,45.3011705552107,45.30129491783149,45.30134717194287,45.30140497760941,45.30153824304544,45.30168320910486,45.30181606973486,45.30199646631171,45.30213587491779,45.30230996517763,45.30257256563267,45.30276961413237,45.30298866318277,45.30325034714942,45.30349929557236,45.30380377518483,45.30432173692454,45.30467332424701,45.30494922034324,45.30510550153492,45.30532454378125,45.3055766826594,45.30579512628751,45.30601712557392,45.30615672249125,45.30646856268462,45.30686500227468,45.30700599253244,45.30738185850399,45.30751590534206,45.30772380507696,45.30801152702051,45.30806237588213,45.30807105937594,45.3080333618163,45.30794536795142,45.30785636111133,45.30778026119501,45.30772771413002,45.30772449937659,45.307758691286,45.30777629082373,45.30782202061994,45.30791819838029,45.30805999009763,45.30820197279262,45.30841565821419,45.30863672797521,45.30886731600752,45.30909397078594,45.30917303462673,45.30937951160296,45.30954991287226,45.30986485778831,45.31022397923226,45.31037451081945,45.3105721467733,45.31126012643644,45.31158529753495,45.31201244811778,45.31218927921077,45.31247324272032,45.31271049217298,45.31317248614953,45.31338341358639,45.31368342292891,45.31396525334318,45.31413658326658,45.31428157137464,45.31449465117958,45.31478322431985,45.31509219580623,45.31552374007168,45.31579624163707,45.31611726161188,45.3163073835705,45.31653607590921,45.31668335604277,45.31680766017914,45.3169190793665,45.31704017049056,45.31711097961452,45.31718976073766,45.3173421666501,45.31750312702429,45.31843626137341,45.31908989755534,45.31991812299153,45.32075677720196,45.32116890619994,45.32145213403599,45.32182691359918,45.32217393555446,45.32245901367441,45.32270941083544,45.32300828878839,45.32323097224052,45.32350926247565,45.32391339738538,45.32433037918565,45.32462276401322,45.32490144289054,45.32513798512257,45.32536797647636,45.3255906176314,45.32585571114251,45.32605714377926,45.32630078181043,45.32659911484311,45.3268892767782,45.32718555948746,45.32739787425365,45.32760937268753,45.32778678898975,45.32799095358164,45.32820876431317,45.32845803632843,45.32868955062882,45.32907596245205,45.32921301937849,45.32939174681542,45.32952508699278,45.32961189686599,45.32973240991826,45.33000009647687,45.33026398489036,45.33042830653706,45.33062130453371,45.3307943688045,45.33102396397741,45.3312179776029,45.33154464080148,45.33198317675213,45.33262085466017,45.33276079332762,45.33302282930931,45.33326251995168,45.33350341219038,45.33376336640733,45.33423933031886,45.33434323469162,45.33460243128216,45.33481966494591,45.33497406704391,45.33512966693399,45.3353827253161,45.33565004692952,45.33583960496906,45.33618236860193,45.33651632780675,45.33686120322933,45.3370055424626,45.33713526535488,45.33728531777974,45.33744370733986,45.33765824755245,45.33793624234102,45.33832571450835,45.33864097638161,45.33887958348533,45.33921606844965,45.33942883490494,45.33967500489484,45.33993641578898,45.34067311321656,45.34137791104386,45.34167867617088,45.34190617910507,45.34220082209196,45.34242282931596,45.34265888396267,45.3429299481512,45.3432644032003,45.34377832102362,45.34401162415784,45.3443195918308,45.34450368732946,45.34474352449336,45.3450851512751,45.34547789116279,45.34572800365875,45.34602139790219,45.34627924398631,45.34653707482369,45.34685753801258,45.3471235159948,45.34739520238941,45.34763100172215,45.34798666657892,45.34892929281082,45.34919820674067,45.34985800105922,45.34999964930888,45.35023400862595,45.35043319221707,45.35078217446443,45.35105483264493,45.35126933125026,45.35147081671935,45.35168405609087,45.35192929493067,45.35212506672102,45.35234921904399,45.35253996478487,45.35277840591517,45.35297507835404,45.35327281960425,45.35345377771529,45.35354176087106,45.35366760049939,45.35378648567166,45.35386353045565,45.35388758017749,45.3539137116713,45.35396307607186,45.35395280613048,45.35391017930946,45.35385315001084,45.35387259484815,45.35396405066618,45.35407519494898,45.35422155698194,45.35433862498662,45.35454154826085,45.35473737090609,45.35496876200825,45.35516437542864,45.35543951819676,45.35562698834475,45.35583721370762,45.35608306756505,45.35629921911923,45.3565432028175,45.35685822529092,45.35708753496987,45.35731746681146,45.35755352438051,45.35778435205351,45.35800188232874,45.35816166951259,45.35839393619535,45.35858032681954,45.35877366125356,45.35903018175357,45.35925727668621,45.35946191823421,45.35969507589125,45.35987939022697,45.36016871397906,45.36099381378548,45.36140314332203,45.36165849603771,45.361892684567,45.36212708530801,45.36245423437189,45.36269802425686,45.36290596998269,45.36321388592534,45.3633942142799,45.3635901720693,45.36380735362306,45.36405320532909,45.36429718787043,45.36457555399501,45.36479672148169,45.36506612733002,45.36599321030918,45.3663478435649,45.36666684862212,45.36715032850476,45.36747182287969,45.36768770227523,45.36804731021743,45.36844439533613,45.36881502492522,45.36902505180711,45.36923698599242,45.36941262559109,45.36955208358538,45.36971435499468,45.36995722468194,45.3704550309641,45.37093838327132,45.37140724311958,45.37168125635961,45.37195614024075,45.37209194084838,45.37223469735812,45.37237619823421,45.37251786595581,45.37262945783409,45.37284627425404,45.37293142082044,45.37325431400964,45.37338037726568,45.3735528165392,45.37370832279861,45.37446089363218,45.37470719205884,45.37496993527363,45.37520181284992,45.37539175519981,45.37556273405983,45.37572599893355,45.37592585663122,45.3761166049631,45.37627084772456,45.37640373933552,45.37652774380099,45.37663113898883,45.37684381143345,45.37704084008507,45.37726775664328,45.37750745204526,45.3777612539095,45.37797717459905,45.37817229418167,45.37843031610063,45.37866002133101,45.3789392121223,45.3790387052446,45.37929549352092,45.37960174683091,45.37987923929209,45.38013479162849,45.38041804431865,45.38070835249675,45.38101904098574,45.38124587039778,45.38145891253491,45.38173175856173,45.38197537986965,45.3821410022414,45.38226473354381,45.38246783636515,45.38259948950905,45.3826947607381,45.38288606715802,45.38300493965733,45.38328949493935,45.38349492604979,45.38357900014625,45.38373044695107,45.38380048308937,45.38392933587892,45.38404378344141,45.38412665235869,45.38417496979257,45.38418520063779,45.38424261737838,45.3843277033596,45.38448526829967,45.3846405272231,45.38484607739188,45.38502903503736,45.38524862119568,45.38551048660339,45.38577177108846,45.38603265032486,45.38735958094004,45.38766339465137,45.38794584196141,45.38817882336151,45.3883986126467,45.38858114160673,45.38877364846859,45.38889251640335,45.38906446662845,45.389171318842,45.38931298262374,45.38938278485488,45.38961522947397,45.3896809851326,45.38976886881225,45.38986757808858,45.38999742566455,45.39011122177224,45.39022963991521,45.39030089881054,45.39023234256238,45.39019778224982,45.39014058226254,45.3900297025857,45.38916565407277,45.3890911646037,45.38910298029401,45.38899105946678,45.38889091339641,45.38873854597433,45.38855153475834,45.38824326772618,45.38801845293794,45.38779276604535,45.38756714454982,45.38736427951574,45.38717768920542,45.38686838723543,45.38671739918075,45.38649109955706,45.38637451182738,45.38612630336115,45.3859826023203,45.38518574850116,45.38504226776113,45.38485771575771,45.38470018065943,45.38452927812707,45.38421077240101,45.38401543446304,45.38340357675317,45.38269855289521,45.38238802650235,45.38207000014873,45.38180996776268,45.38169803432267,45.38124345646102,45.38080730974479,45.3798962847163,45.37901287028195,45.37869612741891,45.37861633450022,45.37876460586283,45.37894688396634,45.37913731355286,45.37918976856928,45.3792145614932,45.37922263453892,45.37915336676276,45.3790969374629,45.37895216071848,45.37875200822935,45.37857491962938,45.37833763322586,45.37812518545124,45.37783953427755,45.37768064990891,45.3773833648599,45.37710656996933,45.37678646522214,45.37625792717002,45.37605071936095,45.37580768473913,45.37558565436849,45.37536282742166,45.37506462169758,45.37495761344481,45.37477668982259,45.3742831108126,45.37358547693437,45.37334798541481,45.37313835667319,45.37290836394443,45.37276204758968,45.37185947219943,45.37160771850011,45.37136327252575,45.37109648959645,45.37085264532185,45.37060763747363,45.36940373694992,45.36897994514386,45.36881448074257,45.36862799717338,45.36804014498392,45.36754696860417,45.36708005970134,45.36639879928234,45.36564489421727,45.36490788036087,45.36444054843042,45.36284746501207,45.36203009386134,45.36036107996865,45.35933039261299,45.35906989653429,45.35878131538184,45.35850577010724,45.35822352083639,45.35796813982301,45.35765542060619,45.35744257039789,45.35730034910426,45.35713101245247,45.35696152472156,45.35678788405722,45.35663560124343,45.3565272299385,45.35642029438786,45.35632917816358,45.35628610122688,45.35624484295412,45.35624388896441,45.35627558950991,45.35638895024948,45.3564364502531,45.35645132434993,45.35648820895717,45.35648846481852,45.35643747040383,45.35636649863637,45.35632180176756,45.35620159911725,45.3560857329281,45.35599578844556,45.35590980145913,45.35581054513103,45.355724723799,45.35561340740342,45.35555448218624,45.35545007906496,45.35529663273223,45.35513943148853,45.35494380230077,45.35484211020758,45.35468266701564,45.35451569635787,45.3542624946556,45.35402133062356,45.3537301368559,45.35348104964154,45.3532021182901,45.35293740982775,45.35260168265934,45.35237317775591,45.35224616313802,45.35202004533097,45.3517393308376,45.3515367552476,45.35127029683302,45.3510471457741,45.35084496166053,45.35058620186628,45.35034979440529,45.35009321792727,45.3498299108654,45.34964297231122,45.3494868817348,45.34935811109928,45.34928807913972,45.34920222021474,45.34914089081858,45.34907977677665,45.34902792615644,45.34899272273075,45.3489491894947,45.34887696974878,45.34882039943422,45.34872068231947,45.34861086943794,45.34835563033876,45.34831168240684,45.34822186030067,45.34822895906389,45.34826633862943,45.34832943005332,45.34838618389966,45.34854065580694,45.34871493077454,45.34887869051514,45.34899204232023,45.34913385972303,45.34926852726877,45.34942460135522,45.34954903616947,45.35013195877779,45.35024408683018,45.35044325343237,45.35061337315947,45.35076172412857,45.35087483229928,45.35116180756539,45.35126282116903,45.35136249030473,45.35143328610855,45.35148387041517,45.35150421562846,45.35152711238565,45.35149818600375,45.35150465902873,45.35141808616289,45.35134123803986,45.35122814772695,45.35103098754143,45.3505972597563,45.35045985245426,45.35033198152918,45.35025320406307,45.35017634015639,45.35004848099499,45.34995681342948,45.34970866763173,45.34962841024776,45.34958679402865,45.34961480165247,45.34962973299375,45.3496719908167,45.34974783069591,45.35008571237269,45.35030775035092,45.35050092724885,45.35096403444782,45.35136628080573,45.35193545203999,45.35234226783899,45.35274622741084,45.35302798630796,45.35328738272323,45.35347292379814,45.35349873009077,45.35347110567568,45.35345898221759,45.35346492038055,45.35349427459694,45.35354705447207,45.35360468048425,45.3536649134974,45.35354783125079,45.35347692619357,45.35343249162144,45.35332481125585,45.35318402754117,45.35297486591501,45.3528324694447,45.35275146179438,45.35263562422595,45.35252095168327,45.35239377269738,45.3523135286316,45.35214361760311,45.3520506690941,45.35190806549753,45.35181263746293,45.35170370301822,45.35158227690349,45.35144623484897,45.35133040309136,45.35127998960286,45.35123192471401,45.35123041046438,45.35121677693808,45.35123527907093,45.35124746508836,45.35125460253323,45.35130426507566,45.35133508353753,45.35142230690963,45.35173954400928,45.35209293519097,45.352312912301,45.35263467734697,45.35275879685618,45.35281419027727,45.35282072950881,45.35273543819374,45.35261764164797,45.35249829173576,45.35222343186045,45.351982456143,45.35170047087234,45.35146140772276,45.35123196568684,45.35105756731718,45.35091896831261,45.35079443723183,45.35069258925306,45.35059343240408,45.35053394768426,45.35053066160334,45.35051754589223,45.35054695288922,45.3506449064451,45.35098532684827,45.35148625869576,45.35166310867183,45.35170272631252,45.35178297395854,45.351931332073,45.35206602620524,45.35215817845099,45.35224976417836,45.35229130259594,45.35235458085681,45.35239070444771,45.35244839930551,45.35240619494773,45.35237015814527,45.35231218895563,45.352252668126,45.35217758140426,45.35204222325494,45.35183659994726,45.35161614789683,45.35138091253318,45.35120801352811,45.35099972259601,45.35086880555306,45.3507354090851,45.35052595615277,45.35028669400629,45.35002605877927,45.34964473630956,45.34873066286592,45.34846869809898,45.34815706297196,45.34790202518613,45.34764661239964,45.34740713991039,45.3468429619675,45.34587411938791,45.34565831565697,45.34543406532618,45.34523306186151,45.34501051312672,45.34474752190651,45.3444641133902,45.34430584762763,45.34409213640546,45.34396272200714,45.34378385853766,45.34364040044114,45.34347015602905,45.34332092252075,45.34306248481813,45.34282132671166,45.3427198279316,45.34264084176477,45.34256356480272,45.34239919731159,45.34227092602256,45.34191980688939,45.34164804474816,45.34149127331872,45.34136299452549,45.3411384295793,45.34094063372282,45.34065594940938,45.34055595741891,45.3404840757733,45.34044816946567,45.34048479791264,45.34053169772773,45.34064961405663,45.34081102682874,45.34102190554434,45.3412245193478,45.34138250631057,45.34161694882828,45.34183078275456,45.34202904229848,45.34243212368646,45.34275572560804,45.34300174575306,45.34325356175755,45.34346342458851,45.34398376664753,45.34494935062244,45.34527484133874,45.34549351813278,45.34581322771834,45.34605458999562,45.34631978277652,45.34672702940323,45.34709382486174,45.34748890638172,45.34777062279544,45.34795956126706,45.34825608051911,45.34843790313001,45.34869825250183,45.34892335716581,45.34909113313098,45.34923811053769,45.34935716439454,45.34947696479179,45.34957692894567,45.34962942098712,45.34966130816485,45.34974645135983,45.34978269069801,45.34983280794895,45.34989865218464,45.34991257815413,45.34995612703302,45.35002103317175,45.35012192968657,45.35016339097559,45.35028431732004,45.35039251629435,45.35050555969135,45.35062421955662,45.35078206705232,45.35091648204259,45.35110243417972,45.3512360885225,45.35138510678269,45.35159690413498,45.35178866303696,45.35195004746367,45.35232864093373,45.35258580022563,45.35280414465576,45.35304291004533,45.35325338803627,45.35348597582298,45.35374666578299,45.35397774591753,45.3544601516991,45.35510033453118,45.35537206761585,45.35563725023805,45.35588069739993,45.35616666281258,45.35640917064557,45.356899974763,45.35736940012203,45.35773070729166,45.35799325399007,45.35826947923797,45.35853820002311,45.35884233637227,45.35913955555443,45.35959248148341,45.36037186193319,45.36064134577316,45.36094661740223,45.36119604661973,45.36145915964476,45.36175806048817,45.36296945357545,45.36319828019054,45.36354272728411,45.36378074144586,45.3639833351188,45.364263496852,45.3646478889604,45.36497454433479,45.36522231000976,45.36536981535624,45.36557409285208,45.36571446776176,45.36589870594049,45.36604038888366,45.36624074422338,45.36631195923745,45.36638919308574,45.36643923641742,45.36645666577878,45.36647805284638,45.36648573861173,45.36649230822555,45.36649437458682,45.36645221225813,45.3663425963645,45.36623072297157,45.36599609001103,45.36589452313105,45.36573978142253,45.36553205619405,45.36493866033981,45.36470164699585,45.36446066912516,45.36421834039525,45.36401899358206,45.36364611894805,45.36335652686305,45.36289533971826,45.36241746809623,45.36221356279241,45.3620396672221,45.36179940778133,45.36160956773693,45.36139743290764,45.36122408367702,45.36107097229281,45.3607638223363,45.36048776381554,45.3602613781104,45.36004999257549,45.3598252789923,45.35957247342822,45.3593489086723,45.35916168524022,45.35904681264826,45.35885396967254,45.3586601928899,45.35843119189929,45.35814615227061,45.35788285974849,45.3575704603301,45.3573438995191,45.35702794999882,45.35676935988207,45.3565753988496,45.35643055090134,45.35632093040222,45.35614928039093,45.35601511764152,45.35585845987909,45.35573815350351,45.35564521336865,45.35552566194126,45.35545445326501,45.35530191260201,45.35505210532079,45.35490182815809,45.35463589262999,45.35434429454975,45.35414827125838,45.3539117772965,45.35366682808774,45.35345075842056,45.35319852035219,45.35294627728815,45.35258308030812,45.35229879420776,45.3520096144518,45.35181076858616,45.35166684033953,45.35155962951287,45.35143779990305,45.35134958652687,45.35125236050733,45.3511959231431,45.35116843247476,45.35114450468574,45.3511604184513,45.35123552306421,45.35136572125031,45.35149219459893,45.35159323445337,45.35176265995007,45.35194631042083,45.35214326698051,45.35237059439899,45.35255312087599,45.35279430640213,45.35300598253342,45.35342187248971,45.35382907605925,45.35411000937717,45.3543705207027,45.35451399790686,45.35488081450575,45.3554835005567,45.35608580597671,45.35658504259348,45.35702618101856,45.35738936859799,45.35760263729817,45.35795812970114,45.35820643810362,45.3588957048056,45.35950587930669,45.36122939596461,45.36171289326814,45.36199305647985,45.36246228317196,45.36292403884534,45.36324635299881,45.3636043796259,45.36383738594453,45.36397385417038,45.36412419996829,45.36423069241022,45.36432425569853,45.36439608183375,45.36446995251168,45.36457081963217,45.36465031032541,45.36474312725756,45.36494107192632,45.36511878121779,45.36531746907657,45.36548277730831,45.36557069799823,45.36570791256567,45.36584604613271,45.36592139220793,45.3664829213504,45.36674717532694,45.367077567048,45.36732399906058,45.36747130952854,45.36763267023029,45.36789896950663,45.36809351336982,45.3683304127491,45.3685659916545,45.36890503765761,45.36929919158162,45.36948493685218,45.36968491510145,45.36983654734325,45.36995419859311,45.37014477824636,45.37043582861133,45.37055939331302,45.37072720722465,45.37081415826895,45.370929702886,45.37106305794483,45.37121826031773,45.37135460195488,45.37164079646949,45.37195782058189,45.37240781399638,45.37272733348215,45.37301996871139,45.37330509236772,45.37352463593518,45.37374472546553,45.37414719886647,45.37458155070983,45.37496031455129,45.37529407513693,45.37542779900186,45.37559067833111,45.37576464478779,45.37601552575197,45.37638092442757,45.376634556613,45.37697154878256,45.37715173248989,45.37744328175953,45.37772185096918,45.37803879301726,45.37826290461238,45.37862153661756,45.37885525992189,45.37905116627305,45.37926235464504,45.37934257790014,45.38021830015919,45.38048620025015,45.38068904894531,45.38094764140087,45.38118660041534,45.38154541298896,45.38180027048107,45.38219294536768,45.38240257082136,45.38264941412299,45.38281262540808,45.38304686504326,45.38320989431766,45.38344512003633,45.38363500970499,45.38373168255409,45.38389115253066,45.38396952508783,45.3841485977285,45.38424451818403,45.38428825422992,45.38435781307965,45.38451027501436,45.38466290498756,45.38485195932203,45.38500515221013,45.38522889159174,45.38535291228965,45.38552191829964,45.38560127576343,45.38578813872287,45.38587723940385,45.38616598894634,45.38634627863486,45.3865170220204,45.38675073762673,45.38694176143673,45.38708663293365,45.38727872890274,45.38752497019003,45.38772705969534,45.38803052004643,45.38841987211108,45.38881746951384,45.38904916372145,45.38935437024872,45.38969044109328,45.38998864354684,45.39023164370928,45.39103208873663,45.39128623802159,45.39145919379051,45.39167556943555,45.39183757625685,45.39197287102431,45.3921021242279,45.39232858890619,45.39268676800462,45.3929530502555,45.39316539887592,45.39336262369551,45.39355580360533,45.39362748345305,45.3939210474762,45.39415422573991,45.3943359274101,45.39461295853385,45.39485288295638,45.39515001751211,45.39558072039978,45.39581008565554,45.39611428838579,45.39638830621381,45.39660519016529,45.39692420414233,45.39723464995377,45.39742179813076,45.39777567205803,45.39802595287507,45.3982430414865,45.39841109459925,45.39855102963259,45.39872442000226,45.39881067494359,45.39900957643877,45.3991008824548,45.39917589073413,45.39924469188711,45.3993993040459,45.39958925019312,45.39974066139423,45.39985559743848,45.40000066266003,45.40010663463535,45.40057357720197,45.40069631831861,45.4008027594892,45.40129430294716,45.40137362069753,45.40142509513651,45.40148735745061,45.40164150604571,45.40176749576288,45.40195748441005,45.40209483792969,45.40292062784989,45.40307572758508,45.40339951701489,45.40367835624379,45.40410980565997,45.40456161735559,45.40502218376065,45.40553770445219,45.40578294260651,45.40614011954822,45.40635644302229,45.40783105437826,45.40816986844973,45.40845145563657,45.40878152620193,45.40905463339833,45.40939295183669,45.4100623309527,45.41033668130666,45.4109126779142,45.41114886631003,45.41149124910095,45.41169052161324,45.41201329051347,45.41226103450533,45.41252783979898,45.41288021956608,45.41309098335864,45.41331412944503,45.41346922915058,45.41369230742171,45.41386679817861,45.41409967149941,45.41423466527394,45.41518960911638,45.41540143303845,45.4156602258148,45.41587104470612,45.41617532302796,45.41649690587744,45.41667553898874,45.41689036490904,45.41712754774066,45.41729821804512,45.41747509607143,45.41785408166033,45.41810077446667,45.41825989598139,45.4184900247951,45.418670484183,45.4188776325631,45.41974750668387,45.42021887217578,45.42045604231597,45.42064626186276,45.42088467627625,45.42101043288879,45.42111811031985,45.42127464839432,45.42144329380233,45.42166442676202,45.42215151882218,45.42287634251488,45.42321715521413,45.42349074829104,45.42382199089012,45.42409509014779,45.4247519080109,45.42527698921175,45.42559550814104,45.42590452288079,45.42618561820947,45.42648482318776,45.42679302169629,45.42793433332992,45.42831835836709,45.42860825950449,45.42890740978496,45.42927238940297,45.42954417922876,45.42981676965608,45.43019349697182,45.43061039333552,45.43101921148082,45.43127569393121,45.43151361147875,45.43171467784227,45.43199095471814,45.43220077528386,45.43248586085321,45.43276043986403,45.43303454272119,45.43333692196144,45.43363637982198,45.43390623799589,45.43412712082725,45.43481720532252,45.43552482153886,45.43573471276815,45.43573445831426,45.43622768276758,45.43643633089295,45.43694186307901,45.43744013737756,45.4382473671475,45.4390274932911,45.43966076426518,45.44047872354844,45.44091322283366,45.44102441456985,45.44110698659204,45.44129880742073,45.44147127372075,45.44177551949106,45.44207849849814,45.44222334752605,45.442392722413,45.44247185910262,45.4425689694437,45.44304417107337,45.44315033611834,45.44326404359077,45.44339657132781,45.4435566911855,45.44371007681136,45.44387968723625,45.44400495667985,45.44416883995073,45.44427876117788,45.44446351730523,45.44468563231965,45.44490648361637,45.44507344087906,45.44520266479712,45.44541526888754,45.44557186444262,45.44573026076975,45.44592450635053,45.44602563705278,45.44618127108338,45.44636395568275,45.44659560890049,45.44688625748409,45.44714728371018,45.44746578550754,45.44773662737619,45.44810908430537,45.44836836370504,45.44864919306796,45.44897694490978,45.44920153363974,45.44954151808508,45.44973825277309,45.44989732005951,45.45005941186682,45.45019447266568,45.45024792298882,45.45032720007865,45.45036906598245,45.45039339132595,45.45045361390959,45.4505035214686,45.45058028063891,45.45066759685041,45.45081138557828,45.45097473576734,45.45114965987639,45.45134289360476,45.45151883119618,45.45187968413349,45.45226948257479,45.45252018467863,45.45275886792098,45.45295962338646,45.45309486318158,45.45330359726587,45.45349561261682,45.45377163759051,45.45402385359477,45.45435014469759,45.45469599171233,45.45503279485263,45.45521200388112,45.45559830422916,45.45574012170577,45.45593794484527,45.45624334749809,45.45650005711421,45.45668296845287,45.45698386399365,45.45711055659724,45.45724629095814,45.45733510102791,45.45748767296431,45.45762916341996,45.45773602487304,45.45784188315488,45.45793664903123,45.45800538593403,45.45801785895245,45.45803139806402,45.45797835253493,45.457898764625,45.45779024863565,45.45766369630422,45.45761898985896,45.4576136514999,45.45762764038433,45.45771593915402,45.45784007962249,45.4579562239554,45.45801921516521,45.45827092689947,45.4586306298195,45.45885651726586,45.45894110017404,45.45927744342274,45.45943145112816,45.45944752298813,45.45947877760688,45.45947218474265,45.45950069813177,45.45945643673898,45.45947590774355,45.45949019261614,45.45958366638325,45.45964258086383,45.45969894487834,45.45976709876858,45.45986748640823,45.46000547756772,45.46015278873391,45.46028275047109,45.46045011931058,45.46063737995264,45.4607608951523,45.46092303914363,45.46103904170629,45.46121385318585,45.46138452981196,45.46151679626176,45.46161091867357,45.46188174524325,45.4620400760592,45.462214975035,45.46237081536475,45.46244100692436,45.46248283080872,45.46251158739095,45.46249388006502,45.46253067614897,45.46260811673861,45.46262782759187,45.46261993138784,45.46262032249746,45.46263350731813,45.46264492595896,45.4626777579339,45.46277583314941,45.4629097555216,45.46307176916169,45.46322657534304,45.4633065724712,45.46342263045673,45.4635591447019,45.46364914393725,45.46379567564034,45.46397987583045,45.46423958959215,45.46442704979801,45.46451290541469,45.46474656284386,45.46491424288353,45.46508160653511,45.46515536598335,45.4652775975581,45.46553185885722,45.46570254305431,45.46590062807822,45.46617036264478,45.4663659064617,45.46648451679194,45.46676285349087,45.467231750502,45.467573248432,45.46783322016131,45.46803518508843,45.46827354068489,45.46845640609071,45.46868546620487,45.46887843378636,45.46901487909244,45.46918848916215,45.46947196863454,45.46976546968366,45.470032434295,45.47029062289257,45.47047454783105,45.47068576030627,45.47093417424232,45.47117196120692,45.47130866308128,45.47153694713261,45.47196018819439,45.4721722209037,45.47259879129643,45.47280253900829,45.47302663553821,45.47330648287094,45.4735323760666,45.47381396314248,45.47413450375512,45.47447466465005,45.4747400202072,45.4750347413846,45.4752528737479,45.47553758558811,45.47576680872449,45.47595604908042,45.47622217160016,45.47654269597417,45.47699581088276,45.47723047885883,45.47755827271249,45.47780219293637,45.47817767791663,45.47840258161937,45.47877626789656,45.47888536947062,45.47906949959956,45.47922531445205,45.47939917587242,45.4795513422813,45.4796970937947,45.47978790173906,45.47991658228355,45.4801190384452,45.48038574597217,45.48061582105295,45.4811754846021,45.48168154139043,45.48188273593866,45.48199310735959,45.48210195573525,45.48225513875792,45.48246358048782,45.48265416758126,45.48322857451163,45.48357574633617,45.48376788221761,45.4839494314793,45.48417947472542,45.48441960331095,45.48466795503197,45.48502877127405,45.48540969827321,45.48578080375423,45.4860134203352,45.48613484665998,45.4863117719744,45.48660111253788,45.48697582333395,45.48726516374939,45.48766852860213,45.48804271584823,45.48843571729374,45.48871653046844,45.48902500192016,45.48924986443432,45.48961269049784,45.48991263480135,45.49038973551823,45.4907920300191,45.49117757961641,45.49146847458452,45.4917781697364,45.49204274574391,45.49238364652561,45.49272278311003,45.49294995455683,45.49315628312622,45.49335224794742,45.49354875949563,45.49373497881908,45.49381749674785,45.49399081250978,45.49429721748905,45.49443209528364,45.49452340113936,45.49469644888765,45.49496494032326,45.49527077670364,45.49571483784619,45.49602176041527,45.4962443070828,45.49648519466029,45.49672422275837,45.49708658891399,45.49736482203879,45.49753865753009,45.49776791781695,45.4979417491594,45.49822696210987,45.49844718590079,45.49872440251752,45.49902278293391,45.49928274411305,45.499599150381,45.49985134846707,45.50001876277806,45.5002239852034,45.50065520842703,45.50099353575999,45.50129474629532,45.50162428666624,45.50197376968053,45.50241676352072,45.50285801583259,45.50329744697896,45.50387819828879,45.50428203706951,45.50447083114681,45.50478156244839,45.50515242045366,45.50530709900789,45.50537776560167,45.50549714781798,45.5055428010043,45.5055606032741,45.50560723176743,45.50566316896617,45.50571292999407,45.50598543974886,45.50616103977471,45.50638358369565,45.50660300201591,45.5068227240666,45.50700325435596,45.50726782926543,45.5075780487761,45.50801230247784,45.50829625253288,45.50861730632744,45.50886302934445,45.50916528485795,45.50940124362554,45.50961992938985,45.50980919063186,45.51006498125434,45.51038685742103,45.51064290960259,45.51088014629969,45.51117464618643,45.51151578734724,45.51163026583781,45.51187681283064,45.51212463757258,45.5124663024671,45.51271335508944,45.5130354364123,45.51328994923369,45.51349702879061,45.51367497046629,45.51387121560797,45.51424564871573,45.51446151830982,45.51478052270358,45.51499582808053,45.51532489536474,45.51573828459033,45.5160304605939,45.51633964227408,45.51657509483318,45.51693277829166,45.51729073753634,45.5176852644024,45.51799624930135,45.51825954597692,45.51855171749654,45.51874852558606,45.51909717725815,45.51935091718109,45.51969878203921,45.52006187100107,45.52027876850133,45.5205907717671,45.52115682410954,45.52146035652412,45.52173392373655,45.52196109359927,45.52228399557613,45.52253799790656,45.52285878474434,45.52339489402149,45.52398903936597,45.52459147998836,45.52514618306978,45.52574691373783,45.52757888696225,45.52935581882255,45.53040983211922,45.53228726208832,45.53399241538542,45.53614027842035,45.53699461267916,45.53776770039719,45.53808228288852,45.53860648355878,45.54134516872385,45.5431760182402,45.5440975468448,45.54466928906464,45.54547476979671,45.54616610391618,45.54756330315471,45.54873542773684,45.54888672921064,45.54896457729038,45.54919531471808,45.54951162309736,45.54981834721195,45.55055166318014,45.55203328750858,45.55548385243755,45.55591336751229,45.55669114194927,45.55744529364279,45.5579911621013,45.55856831451941,45.55939889899604,45.56026736040956,45.56164238935907,45.56227079667195,45.56267640701661,45.56355502279573,45.56411879518019,45.56462469067042,45.56526219632036,45.56591216127651,45.56643314835508,45.56689658482241,45.56718951420453,45.56757661527473,45.5679116631305,45.56827844483652,45.5685564154409,45.56865172546345,45.56863045228327,45.5686098041984,45.56805121357929,45.56750879725127,45.56720788791858,45.56712770711518,45.56706066634317,45.566931261101,45.56655819906718,45.56583235080051,45.5652055727987,45.56506112868976,45.56517589249699,45.56548600770228,45.56557213192616,45.56549756782621,45.56527949055991,45.56455655880532,45.56322181945222,45.56293881952596,45.56278331514492,45.56272071172926,45.56266727677069,45.56254230597796,45.56226541914521,45.56214117638631,45.56208137366456,45.56216584276574,45.56230728319689,45.56251657456204,45.56280136643979,45.56341723716604,45.56398494427786,45.56476743207749,45.56572423837537,45.56627709071018,45.56716568647325,45.56770840414949,45.56824075211734,45.56897650991693,45.57393243519587,45.57609746880435,45.57661902227407,45.57704063907659,45.57761898921434,45.57790939695938,45.57823421328855,45.57874750597874,45.57909918867922,45.58030958727372,45.58131256603194,45.58175770387604,45.5822131921087,45.58267914744373,45.58351137789645,45.58392386977258,45.5843670924269,45.58465381812022,45.58519226485443,45.58557932988627,45.58591160771164,45.58629366083775,45.58668574583179,45.5870381810763,45.5873298837536,45.58756755652778,45.58797341007385,45.5884368797447,45.58887597401517,45.59273675442051,45.59376825655939,45.59434794621268,45.59494945462804,45.59548543670965,45.59582384153599,45.59619980205487,45.59687672522983,45.59745182915398,45.59778776915491,45.59830439669464,45.59908981095246,45.59980339798376,45.6001514859719,45.60156196021431,45.60194825638548,45.60231475303029,45.60302911345415,45.60373401415832,45.60412703077399,45.60467420370014,45.60508702881459,45.60604868993858,45.60683847203119,45.60750481972006,45.60779544586829,45.60804483938691,45.60854773716351,45.60883835884126,45.60914245560239,45.60955097208652,45.61010439643825,45.61091571888065,45.61170985839814,45.61198945538091,45.61232952964254,45.61276922058579,45.61384731539359,45.61450889370992,45.61475495776497,45.61494289342313,45.61508416633097,45.61524060081944,45.61538611299599,45.61554006567392,45.61589240004366,45.61611427776499,45.61636541961477,45.61667940071605,45.61692431195862,45.61724084659779,45.61805692093847,45.6181954697536,45.61868209792974,45.61936779436965,45.62020590390304,45.62075029403995,45.62128131014295,45.62188014972982,45.62240013080907,45.62299852486557,45.62381173011104,45.62397345885421,45.62471347592465,45.62528643535953,45.6259846430526,45.62681744038288,45.62750117422276,45.62787471643543,45.62851989807828,45.62889010966739,45.6296139822664,45.63104436958998,45.63199924274932,45.632524859681,45.63318559173325,45.63424454380421,45.63446607951961,45.63561488410082,45.63702208055654,45.63814902921253,45.63849471306472,45.63898764730049,45.63970805824609,45.64087289590568,45.64134758743822,45.64195881040064,45.64251583625541,45.64272653390328,45.64321879040276,45.64359159655196,45.64410974232745,45.6446208574091,45.64539367631426,45.64572196071826,45.64610776703001,45.64661607702308,45.64699891482046,45.64736864605496,45.64764920185382,45.64797581019111,45.64826349414504,45.64852543406353,45.64875141355759,45.64895518991306,45.64923477047419,45.65147741030476,45.65187917840365,45.65214496734212,45.65247943994996,45.6527893118993,45.65304407552276,45.65324205201554,45.65334399558176,45.65350238816585,45.65363462541487,45.65381029067906,45.65389776656223,45.65408358370594,45.65435494374201,45.65471185477885,45.65515866991708,45.65548297062811,45.65585364457583,45.65655257527747,45.65730041568615,45.65805426436012,45.65854486332812,45.65902801611419,45.65934130194241,45.65948798455538,45.65965916433519,45.65985244657094,45.6600311527112,45.66028030479365,45.66060000705627,45.66081517072955,45.66114178161228,45.6613364751063,45.66154781574716,45.66165666662192,45.66164103294771,45.66176454017792,45.66204346023577,45.66245001928605,45.66266066387979,45.66274222662243,45.6629683493005,45.66375467436306,45.6639799043504,45.66422342795649,45.66470957214435,45.66500276815658,45.66514605457146,45.66523595215502,45.66525355377774,45.66526318906971,45.66534045220383,45.66541472673875,45.66563272441465,45.66639523786206,45.66646894711775,45.66682563042484,45.66706159961896,45.66746488467228,45.66809864211296,45.66829808549556,45.66862983868267,45.66889297130593,45.66914472760794,45.66938179773322,45.6706176387792,45.67101248366795,45.67114520344005,45.67144349689101,45.67153754711163,45.67158705727211,45.67163022712232,45.6718227495699,45.67191041984862,45.67176136689113,45.67143722305514,45.67145202830913,45.67152788796735,45.67160675768577,45.67181894159923,45.67193846540569,45.67213117120028,45.6723962852588,45.67247683201803,45.67251847222207,45.67256022889799,45.67262870108971,45.67269083731986,45.67276030732742,45.67289562329934,45.6732940373539,45.6737317721101,45.6740523276491,45.67466051125857,45.67530000045547,45.67609846201787,45.67675198474563,45.67724711576773,45.67798964450036,45.67870287820567,45.67934695094703,45.67995450038575,45.68082080735082,45.68171296512311,45.68268367025696,45.68309083525853,45.68482716676837,45.68520812995093,45.68593110767289,45.68651203222304,45.68699092814006,45.68753832109329,45.68795925902303,45.68833576438805,45.68865222535282,45.68889750007255,45.68923208290707,45.68952536458834,45.69023007415232,45.6907394116332,45.69122836597938,45.69198594762349,45.69291097227436,45.69368713724054,45.69444825431029,45.69532361837465,45.69556182971897,45.69606824515024,45.69648537072241,45.69718252252469,45.69795671231068,45.69821312514762,45.69851390860658,45.69887638728529,45.69914360492411,45.69943830481865,45.69980873211874,45.70000940971853,45.7001649392688,45.70023238572033,45.70032356844275,45.70043404456498,45.70054408534794,45.70073449302886,45.70086274423676,45.70105223959546,45.70131889807845,45.70176778788721,45.70226633861315,45.70286290411401,45.70331952107826,45.70388575227303,45.70437989296065,45.70497095716777,45.70579468871122,45.70619780055275,45.70657837384582,45.70682563881197,45.70707199802177,45.70776663777907,45.70820185314385,45.70864646027273,45.70912505456443,45.70957971703455,45.71009109026375,45.71075776721631,45.71095655130529,45.71122882744474,45.71148113637818,45.71182007290199,45.71207363783579,45.71233662913168,45.71239785064575,45.71260984692724,45.71284744175571,45.71289256044611,45.71281691388013,45.71273470924211,45.71259279748659,45.71248971320606,45.71247871234625,45.7126201666301,45.71280864791452,45.71296942881034,45.71315297203023,45.7133858547409,45.71374123375085,45.71415120447993,45.71443999063096,45.71461741479246,45.71479637152387,45.71486803219169,45.71486476064617,45.7146950107176,45.71465257105001,45.71465684180519,45.71482014469985,45.71509326839281,45.71524223568318,45.71534678981737,45.71534810365637,45.7151655431173,45.71518456960909,45.71535147646091,45.71550470051144,45.71574673700355,45.71591266226699,45.7160642375587,45.71638042602205,45.71666300297382,45.71689977107637,45.71731623339412,45.71774252074342,45.71812750801425,45.7184137128836,45.7186037682952,45.71901694543251,45.71968941337061,45.72033771490744,45.72073775400722,45.7215078705925,45.72202877393082,45.72254023018054,45.72335207280447,45.7236776159206,45.724385049383,45.72536769812934,45.72560043458613,45.72580581534472,45.72605543287275,45.72634666844004,45.72691293734619,45.72703867035546,45.72810159155463,45.72836095215532,45.72863033272706,45.72927701875133,45.72975507270446,45.73042124273644,45.73246520549436,45.73422731064225,45.73525460915718,45.7357711962489,45.73660485274365,45.7369330872238,45.73750207165162,45.73810566029277,45.73848684632051,45.73878572499972,45.73915745515937,45.73955658560297,45.73975321141212,45.74009702617067,45.74033908106645,45.74060425306401,45.74095051852837,45.74122716295115,45.74148061061918,45.74185621565516,45.74218734927478,45.74245647762491,45.7426981191801,45.74286280611611,45.74301633645476,45.74312588677741,45.74332096516626,45.74347157219559,45.74374951064519,45.74418461702678,45.744625142004,45.74486088114435,45.74509663452374,45.745234801138,45.74549858752501,45.74586245073528,45.74604296210898,45.74623487746561,45.74649640064175,45.74663221166954,45.74691403440882,45.74768511431381,45.74827324675533,45.74882539698422,45.7493547430381,45.74992922242691,45.75009732886681,45.75014887457845,45.75017015564801,45.7502502198797,45.75029740584221,45.75037208909504,45.75044344543456,45.75058113452928,45.75072253220912,45.75082720269429,45.75094928729991,45.75115652094157,45.75141013013631,45.75164568482779,45.75191047070703,45.75219665534193,45.75244648460879,45.75272236848021,45.75288211995971,45.75312818816958,45.75361588855414,45.75405554495043,45.75434288822096,45.75454182170552,45.75476377054729,45.75486119521799,45.75491739350738,45.75493410043787,45.75493653987014,45.7549846316738,45.75496117571303,45.75491766537119,45.75481057394866,45.75470075309033,45.7545580061899,45.75439589724527,45.75410628518502,45.75396204161694,45.75392306044039,45.75399070844675,45.75414797995956,45.75430432845156,45.75431660017485,45.75422677632685,45.75419611778435,45.75410719867762,45.75394515281367,45.75358404771334,45.75293729977169,45.75258851399872,45.75240612210329,45.752404656652,45.75238286320843,45.75246409227434,45.75251475945891,45.75264037979611,45.75272122346308,45.75279835593348,45.75291532152153,45.7530534203549,45.75355291638225,45.75383335236958,45.75413064163622,45.75454926902402,45.75494637754972,45.75553420712615,45.75601642693521,45.75650181940768,45.75702601809798,45.75738045433318,45.75766358791919,45.75808841482688,45.75831982461695,45.75908769427549,45.75921077535617,45.75931271440208,45.75939410890749,45.75946511281209,45.75955477312011,45.75958018730941,45.75959079377181,45.75963702210743,45.75961898601746,45.75950609348527,45.75941380025903,45.75921026743146,45.75886212660623,45.75833439341692,45.75777485840037,45.75738329694009,45.75717997468744,45.75711519204127,45.75701410519395,45.75692779426205,45.75684921525069,45.75677041703379,45.75675275651014,45.75675682611836,45.7567124867283,45.7567273357906,45.7567345015786,45.75675720198343,45.7568961957119,45.75708788311928,45.75742891184181,45.75779652548988,45.75834275002864,45.75875005964262,45.75929219693347,45.75934874952931,45.75946489396846,45.75949106904847,45.75952511225353,45.75954301182269,45.75954707037076,45.75953613024864,45.75954521183834,45.75956310973122,45.75952779223145,45.75942195226379,45.7591875742028,45.75872300041244,45.75844454490244,45.75792945646866,45.75749256007162,45.75726568511751,45.75710509742748,45.75704282015111,45.75697421102463,45.75697269156728,45.75694828827419,45.7569892477348,45.75706808634097,45.75716904163409,45.75733257107968,45.7580291640713,45.7584813651998,45.75881471508993,45.75915781386097,45.75951307243916,45.75988733055554,45.76000172164008,45.76011650601513,45.76023896916723,45.76025914907298,45.76030778431468,45.76035738474943,45.76037123255568,45.76036756611136,45.76034891779666,45.76025932536429,45.76018819259259,45.76012302465672,45.75986686416308,45.75964940943071,45.75947699572258,45.75937157338652,45.75923360753576,45.75903631858477,45.75877205906544,45.7585863681589,45.75843438851108,45.75822676889292,45.75807245872636,45.75798591076313,45.75803042081959,45.75804021197035,45.75809322346279,45.75811262581616,45.75812472120996,45.75815834464378,45.75816236117637,45.75814370250912,45.75808868624303,45.75809251301383,45.75808135148596,45.75793918942832,45.75778969218048,45.75769138237739,45.75765773683634,45.75767493773701,45.75768691258443,45.75763379998122,45.75751947162446,45.75731601067205,45.75704478333916,45.75687751166082,45.75678570084614,45.75677685562727,45.75685233378426,45.75705043629795,45.75731630399671,45.7576391421317,45.75780162467529,45.75788632301375,45.7578691089851,45.75789825923039,45.75798585806209,45.75800713177248,45.75810299063488,45.75813888093101,45.75829470311296,45.75841826246657,45.75852815509374,45.75861761286356,45.7586434622897,45.75862489796432,45.75848904924929,45.75824574093646,45.75804967193785,45.7578424541448,45.75755895764459,45.75736783048451,45.75731661857238,45.75744960090826,45.75758522827478,45.75784941195557,45.75833156903415,45.75844666404386,45.75856307616479,45.75870929499658,45.7588097705154,45.75903919790863,45.75915182862646,45.75922061972462,45.75949572692723,45.75958997064584,45.759670159484,45.75987868964928,45.75998061673027,45.76003813182975,45.76013694107299,45.76049938468313,45.76076367204082,45.76107939758718,45.76190116524085,45.76297326017195,45.76392486845207,45.76480770664192,45.76490817470768,45.76504592839317,45.76514639681666,45.76530028421874,45.76544591521434,45.76562360434001,45.76573326082407,45.76584348583815,45.76748524719989,45.76762793446798,45.76775067839774,45.76783768083815,45.76798047388998,45.76803648883074,45.76811187452643,45.76823599277201,45.76837694723302,45.76850083383167,45.76870305638281,45.76954518563948,45.76980509978008,45.76992954037735,45.77007026890397,45.77023033007826,45.7703526110136,45.77063039712525,45.77084193664183,45.77112464264028,45.77146040896764,45.77184336747759,45.77206592817586,45.77225863173943,45.77251886046982,45.77272924952334,45.77298671701696,45.77305202459713,45.77319235568968,45.77329634697814,45.77341320768492,45.77355850086504,45.77366467910288,45.77373296337404,45.7738274457158,45.77388854997368,45.77403359432579,45.77406983222385,45.77417958260885,45.77436380462174,45.77452929752788,45.77467766573928,45.7748165594267,45.77498309386146,45.77512238851896,45.7752139723598,45.77520945168533,45.77516868251173,45.77511907791471,45.77493082246194,45.77490726446667,45.77484308363995,45.77477937875045,45.77474303772306,45.77479165456572,45.77481339072274,45.77487134356988,45.77493077089994,45.7749997655057,45.77509745589338,45.77520310960376,45.7753005768476,45.77561356129641,45.77581041177623,45.7761255593379,45.77635009474022,45.77669212267703,45.77706133770467,45.77760907275022,45.77797071522979,45.7782750805026,45.77848452202227,45.77878061713363,45.778991254486,45.77930662519375,45.77957594663662,45.77990063265092,45.78018636201039,45.78050936962283,45.78081311865845,45.78102159969607,45.78134460474524,45.78155286103754,45.78195049290611,45.78249239374684,45.78279262696513,45.78299336728963,45.78322165235311,45.78345904170018,45.78368778055717,45.78391527944296,45.78413432901419,45.78437150244158,45.78454501456645,45.78571587009822,45.78605033769583,45.78622036131456,45.78654431801091,45.78672613502371,45.78703097611653,45.78817653950183,45.78853936983701,45.78867418830052,45.78900905360306,45.78917151069706,45.78946854781415,45.78965912118584,45.78993775162035,45.79017801845249,45.7906173581133,45.79092396039143,45.79109731583625,45.79293329158235]}],[{"lng":[-87.49861404794316,-87.49892458146049,-87.49917081037742,-87.49935661385192,-87.49975823541772,-87.49994418898038,-87.5001281769505,-87.50036328225637,-87.50082775780436,-87.50166142668415,-87.50194867527607,-87.50286745544382,-87.5030603872526,-87.50339290303729,-87.50462765157666,-87.50616655336836,-87.50629731420848,-87.50631255388119,-87.50630470252507,-87.50618853795179,-87.50530489623424,-87.50471562725484,-87.50415686164455,-87.50305648268352,-87.50273097756755,-87.50172255047863,-87.50150597369401,-87.50085417862051,-87.50014044607742,-87.50010040534576,-87.49994494784995,-87.4994790572608,-87.49916807716117,-87.49892020191305,-87.49860968900649,-87.49811276883457,-87.49758386282905,-87.49727358620741,-87.49699334434366,-87.49593900396333,-87.49556602655063,-87.49497441577583,-87.49466503578029,-87.49429166375178,-87.49385573749289,-87.4935146756991,-87.49267538836962,-87.49230299030964,-87.49214637582713,-87.49180390963427,-87.49146248079808,-87.49068599447529,-87.49049927420103,-87.49013052022531,-87.49003391130314,-87.48998770361752,-87.48997275696651,-87.4900110953339,-87.49032339029011,-87.49052578893732,-87.49070487420963,-87.49085362440458,-87.49104173462845,-87.49122795447934,-87.49140059303052,-87.4915259313571,-87.49169653158718,-87.49182255475976,-87.49223721791952,-87.49232464928868,-87.49248195429071,-87.4926885919226,-87.49293194982364,-87.49306700991029,-87.49328602035308,-87.49347532274648,-87.49359216263241,-87.49373331134029,-87.49422408277516,-87.49479424768485,-87.49514546703278,-87.49532457353668,-87.49542540122917,-87.49561944506087,-87.49588352630857,-87.49596919344442,-87.49611765255149,-87.49632733715713,-87.49697046281338,-87.49749862034308,-87.49774619420488,-87.4983345629233,-87.49861404794316],"lat":[45.0611828110691,45.06119777011556,45.06115815645134,45.06115716743599,45.06106750598126,45.06104485747997,45.0610854552757,45.06108244522172,45.06102594753262,45.0608588157227,45.0608251588404,45.06063569188795,45.06058027794879,45.06043677014259,45.05997289123421,45.0596335101437,45.05958376405763,45.05956187054501,45.05952344573276,45.05947477043649,45.05936825270143,45.05922822184625,45.05904412667818,45.05882904841092,45.05872066044633,45.0584724173898,45.058396509047,45.05823454782611,45.05800034503848,45.05799018126675,45.05791448296534,45.05778556633874,45.05772670644433,45.05764054285255,45.05757100511332,45.05742564834564,45.05723120624933,45.0571563231206,45.05704806518587,45.05677991695117,45.0566504924209,45.05640177527494,45.05634293820233,45.05624078614446,45.05606243030598,45.05596576499458,45.05566349172403,45.05548483822553,45.05538153345975,45.05526261296306,45.05508378877177,45.0548523631936,45.05482041093999,45.05468571208937,45.05468049258703,45.05470254350681,45.05473569373243,45.05478463672249,45.05495803995213,45.05512143024589,45.05521904191932,45.05533877635696,45.05555670122263,45.05570904743512,45.05589963075733,45.05599211995263,45.0560841990732,45.05632439232011,45.05677094003997,45.05702238205343,45.05727338495191,45.05777584268301,45.05814660472316,45.0584525421185,45.05870855882049,45.05900865279611,45.05915046603894,45.05928099769347,45.0596397477704,45.06010742303973,45.06033567322753,45.06048785592135,45.06054210697857,45.06060684952135,45.06064921157603,45.06068710152074,45.06079584430524,45.06086599123335,45.06102693964728,45.06111194001086,45.0611325590555,45.06112942447863,45.0611828110691]}],[{"lng":[-87.63953445181771,-87.63962744815844,-87.63996769444894,-87.64027855346747,-87.64052673926138,-87.64071250146134,-87.64095908245638,-87.6411142430384,-87.64129895619931,-87.64154559101995,-87.64160720986484,-87.6417001031667,-87.64179264674017,-87.64185458989613,-87.64194641760857,-87.64215527107827,-87.64224677076358,-87.64226204441765,-87.64223153495138,-87.64214451270293,-87.64219081569553,-87.64225174953788,-87.6424140613447,-87.64262277701613,-87.6427465739787,-87.64289348350739,-87.6429473838251,-87.64299299184795,-87.64297549557845,-87.6430058144183,-87.64309119509238,-87.6432068159462,-87.64357683231172,-87.64378499874709,-87.64393899610764,-87.64411607182569,-87.64425365538443,-87.64434686472737,-87.6444082519623,-87.6444404529926,-87.64436403756903,-87.64424854039919,-87.6442024660773,-87.64421109108014,-87.6443192908025,-87.6445058534584,-87.64478434821034,-87.64483031440921,-87.64479846210449,-87.64484476978883,-87.64524711812338,-87.64533217692328,-87.64543939624384,-87.64546084892118,-87.64542934169677,-87.64529047323063,-87.64495036301605,-87.64484977843415,-87.64481837913652,-87.64514877951895,-87.64542553625428,-87.64582723305659,-87.64619816029014,-87.64635287830377,-87.64678672800262,-87.64706592327175,-87.64718948086389,-87.64767484900031,-87.64813686701882,-87.64841464659415,-87.64851426472052,-87.64869956396757,-87.648822984086,-87.64892929357536,-87.64906072907237,-87.64906737804998,-87.64905955317448,-87.64900494904326,-87.64888126838065,-87.64866506757353,-87.64770872371112,-87.647061500955,-87.64694451082055,-87.64683678627807,-87.64678194448659,-87.64677340579452,-87.64671924170516,-87.64662649479439,-87.64659546283931,-87.64640939454674,-87.64622386473454,-87.64610099398843,-87.64577793638698,-87.64543853373134,-87.64516074120819,-87.64479039069646,-87.64435904544845,-87.64352551835351,-87.64259885372282,-87.64216574732717,-87.64191884486353,-87.64185689201157,-87.64174113937499,-87.64164055209172,-87.64151711599717,-87.64139343280389,-87.64112972941115,-87.64102961183139,-87.64099870532688,-87.64100721312349,-87.64114769914899,-87.64115519752259,-87.64111601757354,-87.64068415301355,-87.64029769728825,-87.63992725004722,-87.63968000516012,-87.63947850722249,-87.63895247026144,-87.63861213521265,-87.63834901019325,-87.63825623651212,-87.63791726992822,-87.6377075159639,-87.63756128991587,-87.63740680098456,-87.63712865561257,-87.6369433554774,-87.63675783644793,-87.63666518347733,-87.63651884939087,-87.63643345797985,-87.63635701603663,-87.6363415185787,-87.63640451271178,-87.63656003898259,-87.63689937788598,-87.63699294682208,-87.63724158621621,-87.6377974834904,-87.63807669773649,-87.63838683653719,-87.6386655078025,-87.63913002410787,-87.63932463456862,-87.63953445181771],"lat":[44.98059540573588,44.9806279921393,44.98064318706771,44.98079505304821,44.98087079038559,44.9809030421086,44.98090194920695,44.98086858890072,44.98079110419954,44.98061475438598,44.98061996623844,44.98067449109434,44.98067950056168,44.98065743033127,44.98056396060883,44.98053564738945,44.98046945686641,44.98042560822123,44.98033833520306,44.98021810219811,44.9801521116504,44.98013536065286,44.98014012405219,44.98005722800109,44.98007328742622,44.98006703686723,44.98002848790584,44.9799408175703,44.97978741832898,44.97970534026597,44.97963368361663,44.97957839868614,44.97954412538154,44.97949384724233,44.97941122449485,44.97922978147806,44.97914147253411,44.97913017676044,44.97914100951134,44.97920637459467,44.97931085049268,44.9793824499823,44.97944282862709,44.97950320688507,44.97959039609921,44.97962237613935,44.97957748676571,44.97953905400995,44.9794458423091,44.97941838833891,44.97950432931524,44.97949848691852,44.97941602707188,44.97924064754013,44.97919695791403,44.97918115514474,44.97922083581388,44.97919934851654,44.97913371745555,44.97888595049219,44.9787479088064,44.97863663582601,44.9786186890984,44.97863453495186,44.97876416583589,44.97877948557687,44.97876261939755,44.97860186979519,44.97839168809239,44.97828657181198,44.97817666197334,44.97818132715602,44.97810959884846,44.97801051862878,44.97787847712815,44.97781278783814,44.97779096885039,44.97776930413438,44.97776985162039,44.97780365908805,44.97810324002929,44.97824828002823,44.97825964940517,44.97823829869431,44.97818371884996,44.97806314351248,44.97803080434875,44.97803085660627,44.97805300758285,44.97808658170754,44.97808754010274,44.97812635742753,44.97829185649482,44.97839175347424,44.97849714487056,44.97852044589483,44.97869748876939,44.97891996126752,44.97905526838802,44.97906235494389,44.97909073247068,44.9791130815299,44.9791135036408,44.97909201163267,44.97912519182518,44.9791257280967,44.97906120591805,44.97906701477281,44.97910547460734,44.97914925600541,44.97928015639817,44.97932925783144,44.97935685821519,44.97939153670495,44.97938214026888,44.97950416859712,44.97952155880068,44.97950585606707,44.97938217453053,44.97942717315558,44.97936800289215,44.97936861245066,44.97945752369237,44.97946921704987,44.97945887735246,44.9794759352947,44.97957004420191,44.97960390566234,44.97960456198561,44.97958295269984,44.97959455170405,44.97962766807586,44.97969388069127,44.97978160846503,44.97986899473339,44.97992313283126,44.97992171493899,44.97995966476601,44.98006270487466,44.98003848617146,44.98009208688872,44.98018402431767,44.98030878373165,44.98036706007479,44.9804540713376,44.98059540573588]}],[{"lng":[-87.58920686165729,-87.58946395843441,-87.58966610358669,-87.58983803266399,-87.5899856213687,-87.59008796061568,-87.59021250801315,-87.59036725830853,-87.5903833546743,-87.5903450765492,-87.59041449743867,-87.59060135326961,-87.59060944880672,-87.59078213559135,-87.59143730470531,-87.59154724348707,-87.59160324753532,-87.59174400364385,-87.59183657624003,-87.5919422112907,-87.59196842837662,-87.59202279539483,-87.59211510622391,-87.59208326604586,-87.59198989897456,-87.59197414762768,-87.5920510262013,-87.59199530166627,-87.59187052534294,-87.59180012678867,-87.59182190872932,-87.59189115389975,-87.59185997043235,-87.59170531022149,-87.59140966712354,-87.59104374195385,-87.59094163510117,-87.59079332127297,-87.5907300764062,-87.59057423915225,-87.59039430712022,-87.59021534346998,-87.59010528537799,-87.5899260119342,-87.58984682280513,-87.58975281924299,-87.58955830000458,-87.58935357651264,-87.58904210069416,-87.58890202339714,-87.58887051180844,-87.58886968555171,-87.58881426517938,-87.58859648302915,-87.58845772315452,-87.58834995095057,-87.58828061737744,-87.58823337903092,-87.58816371762036,-87.58796380277025,-87.58794051136869,-87.58801136306754,-87.58791910699958,-87.58784896010935,-87.58781918043533,-87.58783491923722,-87.58788913022379,-87.58810682652215,-87.58824227528582,-87.58835610080649,-87.58837953898204,-87.58836463378364,-87.58828061938478,-87.58815625944797,-87.58808657252388,-87.58807232714751,-87.58815762512545,-87.58828196474138,-87.58832129537014,-87.58822954920733,-87.58822242485483,-87.58805310091257,-87.58801494858947,-87.58803035626272,-87.58799128070825,-87.58786097704065,-87.58785300619978,-87.5879778808185,-87.58794045354124,-87.58795757113914,-87.58789806205264,-87.58796096971895,-87.58796930133688,-87.58799299719976,-87.58801613781559,-87.58817078214463,-87.58820265973849,-87.58824923711225,-87.58837302503532,-87.58844339958544,-87.58848900449561,-87.58865450826345,-87.5887013455614,-87.58879404590697,-87.58889360834995,-87.58890853823657,-87.58886868417432,-87.58870460362654,-87.58845529952104,-87.58836969942446,-87.58839890357432,-87.58835905242942,-87.58839742796199,-87.5886127019279,-87.58867503203278,-87.58867461670638,-87.58862781293841,-87.58863441786461,-87.58868889115394,-87.58878122182333,-87.58886746773226,-87.5889353623248,-87.58899694515311,-87.58902010843012,-87.58907354827454,-87.58920686165729],"lat":[45.08043853337817,45.08065072640057,45.08071575752049,45.0808572291085,45.08091660681166,45.08110780633142,45.08116754089325,45.08118880885627,45.08122150119296,45.08128201629372,45.08133074030182,45.08136281608554,45.08147241774256,45.08169041564694,45.08225672822453,45.08247509480456,45.08274857790104,45.08285731892419,45.08288431142346,45.0828840085548,45.08288371680474,45.08285617209764,45.0827571257685,45.08266446808296,45.08263746145345,45.08261547165686,45.08250569652206,45.08231998003065,45.08226558889538,45.0821456730104,45.08194865564553,45.08188822873765,45.08185550458901,45.08185083438224,45.08178073775328,45.08156907017401,45.0813722499306,45.08119780271656,45.0810777551232,45.08096897649244,45.08073450923653,45.08060920298995,45.08041277875527,45.08023824016153,45.08002531079587,45.07993808587168,45.07982399120242,45.07951838572594,45.07920208860833,45.07911530048775,45.0790715915196,45.07894020737849,45.07884198451143,45.07873358366057,45.07872868030888,45.0788932205004,45.07889906871981,45.07879511235615,45.07878998138224,45.07895510264751,45.07899905841194,45.07910801411703,45.07913025783363,45.07917434723284,45.0792403898347,45.07930035716422,45.07933301048767,45.0793868379975,45.07945158733524,45.0795772077142,45.0796429623211,45.07971409915704,45.07978574751188,45.07979718391758,45.07983031098455,45.07992340367868,45.07997218497949,45.07999900555293,45.08006453860244,45.08016893344404,45.08030043402635,45.08036127792084,45.08039984991231,45.08044884409302,45.08050934399072,45.08058648154656,45.08062485252812,45.08069556378058,45.08084893239995,45.08104592624019,45.0813088132921,45.0814178855675,45.08152186164624,45.08154374211367,45.08155998251981,45.08156494306684,45.08158108420283,45.0816630876601,45.08168426997082,45.08163483756041,45.08164564700865,45.08190204126449,45.08194016065612,45.0819452139483,45.08186264250038,45.08175324752357,45.08164354196659,45.08144766188627,45.08129555279547,45.08119725858794,45.08095623152597,45.08080882762016,45.08076491332442,45.08072557760502,45.08065965903309,45.08059410763888,45.08051744707526,45.08047370574487,45.0804624736306,45.08049508940233,45.08048368779357,45.08041760946103,45.08027516436395,45.08025314581649,45.08024752609084,45.08043853337817]}],[{"lng":[-87.58977859695057,-87.58991182435297,-87.59026977652233,-87.59032566893401,-87.59031814000298,-87.59020299251405,-87.58988810158455,-87.58982563892025,-87.58978847037365,-87.58977432604999,-87.58980642349266,-87.58987727327236,-87.58997061948881,-87.59011757569668,-87.59027204512505,-87.59075724817784,-87.59196596233065,-87.59200232668174,-87.59206519053915,-87.59206533999378,-87.59199502419004,-87.59189576865747,-87.59152842783787,-87.59119407400145,-87.59112416913499,-87.59107830659433,-87.59104795401142,-87.59100164055285,-87.5908938196266,-87.59078466650742,-87.59006953754277,-87.58982230583624,-87.58971436540239,-87.58969208241412,-87.58969952563315,-87.58977859695057],"lat":[45.08306282113611,45.08323723127328,45.08348755737021,45.08357481845657,45.08364048534072,45.08377251834197,45.08397094122891,45.08405879653681,45.08416828605188,45.08427797424735,45.0844966680005,45.08460590504945,45.08467116608998,45.08467033212564,45.08460410853852,45.08424612336231,45.08341476864764,45.08338093927245,45.08332122250219,45.08326102510369,45.08319568272523,45.08315758385941,45.08301705406875,45.08277201156711,45.08277250862871,45.08280557990737,45.08290424090601,45.08294799097771,45.0829814399578,45.08297097925661,45.08267851439981,45.08264684651186,45.08270195481622,45.08277856249703,45.08286592523576,45.08306282113611]}],[{"lng":[-87.73894638060416,-87.73911732648367,-87.73933395344594,-87.73973447131225,-87.73985812194663,-87.74009068187806,-87.7403070886857,-87.74070875735836,-87.74163003151006,-87.74211595937983,-87.74217785178337,-87.74248750304267,-87.7431045779712,-87.74346028469141,-87.74377060650987,-87.74397173371264,-87.74431078472024,-87.74480512892391,-87.74489837174168,-87.74505142176855,-87.74514409164742,-87.74521304041876,-87.74523555972561,-87.74521112557764,-87.74514128501635,-87.74490909551082,-87.74463143754805,-87.7443537863596,-87.74423049631129,-87.74404478765865,-87.74387421944982,-87.74365829877182,-87.74350372993423,-87.7431638914648,-87.7427312193619,-87.74242185945698,-87.74192750358651,-87.74146385788588,-87.74140196548251,-87.74118548930403,-87.74096908688615,-87.74031941148394,-87.74003994852332,-87.73970090758921,-87.73951519945567,-87.73939175846628,-87.73917432810367,-87.73883433149206,-87.73858774065714,-87.73840225690513,-87.73826426811391,-87.73822528775342,-87.73820361737634,-87.7383045104052,-87.73838947736705,-87.73885312733623,-87.73894638060416],"lat":[44.96754315748316,44.9676300902427,44.96762341078193,44.96755566926244,44.9675553046572,44.96758691585512,44.96758585556485,44.96752910760227,44.96760134944228,44.96759886188836,44.96757673853671,44.967542354815,44.96748985409737,44.96749351433017,44.96756322415763,44.96756776108582,44.96751116506894,44.96747592315051,44.96744260349936,44.96742002688809,44.96738106912361,44.96732054344363,44.96721099161379,44.96716718655662,44.96712923803894,44.96710833480398,44.96711522670768,44.96718260349888,44.9671939470097,44.96720040378748,44.96718465435578,44.96715310383101,44.96715370197565,44.96721028185028,44.96722901037647,44.96723583647448,44.96721086260773,44.96725148240304,44.9672736077995,44.96729661293666,44.96729767680447,44.96719142164346,44.96720389322841,44.96726019411172,44.96726664109138,44.96726166491155,44.96720812760169,44.96718788907123,44.96721085738828,44.96727216279615,44.96735494785075,44.96739890619757,44.9674865250647,44.96754084781033,44.96755688073279,44.96751627048587,44.96754315748316]}],[{"lng":[-87.6504931278523,-87.65021563858029,-87.6497839176089,-87.64948418338403,-87.64939191702841,-87.64917826692906,-87.64915633574127,-87.64917246842604,-87.64918930363001,-87.64913625031009,-87.64900648958074,-87.64875960411891,-87.64870629881547,-87.64874516725523,-87.64883770466392,-87.64918508101272,-87.6497782476015,-87.65003226105844,-87.65040142713768,-87.65091009226447,-87.65115600642332,-87.65134643216525,-87.65136180191206,-87.65132234842919,-87.65129118154999,-87.65117448381326,-87.65077199796471,-87.65067945131605,-87.6504931278523],"lat":[44.98177739910591,44.98181697916333,44.98194480565185,44.98212120851571,44.98222564334977,44.98264264666112,44.98275246914286,44.98286194928561,44.98299310291426,44.98314673238403,44.98325686853189,44.98336205608873,44.98344422496641,44.98348243750129,44.98348772314942,44.98342595626876,44.98311128869841,44.98300624264463,44.98281861405246,44.98251514276635,44.98231709470467,44.98211903307954,44.98205323989578,44.98197113167043,44.98193842181866,44.98188425555361,44.9817817337617,44.9817767369906,44.98177739910591]}],[{"lng":[-87.58653383362466,-87.58658815172448,-87.58675894663814,-87.58674459570786,-87.58686029605305,-87.58692202345846,-87.58698409080907,-87.58696042226651,-87.58688263582982,-87.58702090206855,-87.58707479925971,-87.58710610986432,-87.5871296857334,-87.58709250669405,-87.58710043039346,-87.58721679074434,-87.58728645144045,-87.5874326282063,-87.58761872986851,-87.58761796074059,-87.5875482284434,-87.58753113752007,-87.58746196417526,-87.58743762575575,-87.58738318117403,-87.5873594049602,-87.58727388659473,-87.58726553958063,-87.58720272126976,-87.58717134116489,-87.58692317656225,-87.58668094894399,-87.5865415562595,-87.58624693324961,-87.58607667711627,-87.58589094228059,-87.58570436750509,-87.58536373122422,-87.58514662029465,-87.58451196849089,-87.58313333146694,-87.5828537065414,-87.58282286070275,-87.58260496179425,-87.58209323645929,-87.58172212311838,-87.58147496894428,-87.58128970926336,-87.58128241236362,-87.58130667221249,-87.58139955957458,-87.58152287948623,-87.58180156818101,-87.58257688554868,-87.58328854529269,-87.58390954525304,-87.584590127647,-87.58468393902633,-87.58483974989817,-87.58490123899368,-87.58508686815159,-87.58521075783101,-87.58543649099251,-87.58545024975875,-87.58548951531255,-87.58558231014587,-87.58573741309054,-87.58595426588485,-87.58614010710944,-87.58629585293966,-87.58645038499191,-87.58681534717903,-87.58697176574525,-87.58702696942218,-87.58704260039718,-87.5869961515307,-87.58684213634386,-87.58678051820849,-87.58671085798395,-87.58670220055646,-87.58665490762807,-87.58659442343048,-87.58648528421496,-87.58647007004329,-87.58647126646893,-87.58653383362466],"lat":[45.07644347151081,45.07649244319432,45.07658494732222,45.07666171916122,45.07670495430218,45.07670991590785,45.07668788085368,45.0766277414868,45.07655155325006,45.07643604564726,45.07641946432528,45.07643025417697,45.0764737928537,45.07658356098122,45.07662170145981,45.07668689519643,45.07669202126534,45.07661494084672,45.07657020628925,45.07653193138917,45.07647194726999,45.07640632175502,45.07635197529197,45.07626988111093,45.07624284912435,45.07616639452837,45.07612295424754,45.07605723635834,45.07600273779094,45.07589940062307,45.07579625914654,45.0756276957347,45.07556257908816,45.07552569163003,45.07547708083897,45.07549424852368,45.07541828821144,45.07547465834973,45.07542618000368,45.07541246954598,45.07534165321882,45.07528819140628,45.07526643741866,45.0752179387589,45.07513255835983,45.07513960093914,45.07520103621179,45.07533860953692,45.07539865006105,45.07542589019318,45.0754638676372,45.07545804002414,45.07540205683151,45.07543170440803,45.0754833406509,45.07555725340834,45.07559275489831,45.07560880724981,45.07571758981364,45.07572817640731,45.07569469263497,45.07569421756786,45.07576425550062,45.07572038302723,45.07569307930875,45.07571445572035,45.07570817201149,45.07580052588483,45.07579967216506,45.07585360373288,45.07584196067808,45.07599989599815,45.07611319115157,45.07617878066132,45.07622242856068,45.0762883999995,45.07638191284494,45.07639326775337,45.0763881401694,45.0762731830099,45.07624601986043,45.07626809368158,45.07625762428418,45.07627952839167,45.07634537959142,45.07644347151081]}],[{"lng":[-87.75306267268154,-87.75247609745433,-87.75204281474392,-87.75148698491917,-87.75114720726478,-87.75099966689406,-87.7509223822654,-87.7509222404517,-87.75099949823417,-87.75130038853297,-87.75179479743446,-87.75204270301826,-87.75262928520846,-87.75296892431922,-87.75318568607189,-87.75326333382456,-87.75331669500962,-87.75331009635647,-87.75325555066942,-87.75318630070144,-87.75306267268154],"lat":[44.96664320955764,44.96674727818191,44.96680204459965,44.96682907183794,44.96682350335614,44.96686729415556,44.96693862964764,44.96698279291329,44.96705408136117,44.967142155007,44.96718621374695,44.96716999746941,44.96706592574821,44.96705489358745,44.96698376817922,44.96692340885275,44.96683556356444,44.9667203781291,44.96667626293555,44.96664339350375,44.96664320955764]}],[{"lng":[-87.64782740390609,-87.64791270647096,-87.64797419698841,-87.64809704396896,-87.64815876177018,-87.64823680344992,-87.6484067218001,-87.64849947792109,-87.64876928586233,-87.64888432414274,-87.64897719715339,-87.64910098806763,-87.64925546402509,-87.64931685828969,-87.64955058658471,-87.64973665992154,-87.64976745806645,-87.64978917426745,-87.649766006744,-87.64984207293314,-87.64984183593218,-87.64975630045036,-87.64963963536223,-87.64959306990548,-87.64958343943093,-87.64951422574413,-87.64943586352599,-87.64938219057493,-87.64929072945161,-87.64929500550566,-87.64923801574669,-87.6492068751363,-87.64902179911529,-87.64880549519171,-87.64868160812246,-87.64850487165825,-87.64843579177902,-87.64831189616858,-87.64824914735757,-87.64812484491107,-87.64800163738755,-87.64778557578303,-87.64773961412814,-87.64777232333564,-87.64782740390609],"lat":[44.97655847584677,44.97658527098438,44.97657416287775,44.97649707897155,44.97648034764725,44.97649095622438,44.97656140960738,44.97656107406299,44.97637927547341,44.97631863123934,44.97629607339942,44.97631212702428,44.97629505052898,44.97630559754217,44.97646344759812,44.97646839994735,44.97645187656791,44.97638593522836,44.97625464631393,44.9761777308609,44.9761448082962,44.97608481799249,44.97606891302623,44.97602519466199,44.97579544780886,44.97576279458909,44.97577946652236,44.97581268113154,44.97591713377922,44.97598698798387,44.97604320157711,44.97604874844127,44.97603874837696,44.97605595079623,44.9761003808196,44.97621601418075,44.97623822303611,44.97624410699484,44.97622790798501,44.97610804068331,44.9761358825932,44.97622454090828,44.97626297800716,44.97647097690066,44.97655847584677]}],[{"lng":[-87.58749000642449,-87.58745170417542,-87.58752916043646,-87.58774685631339,-87.58777782188861,-87.58784651216401,-87.58796927691139,-87.5880541791898,-87.58811603626224,-87.5883016502856,-87.58850980744279,-87.58855559342452,-87.5886633242085,-87.58865449800849,-87.58857692325152,-87.58838362354936,-87.5883044714548,-87.58829678425224,-87.58834376955942,-87.58849819452438,-87.58855232104874,-87.5885422670797,-87.58851175161038,-87.58844944283236,-87.5882814136133,-87.58811119644888,-87.58801108095007,-87.58801069174034,-87.58806547089758,-87.58825244760914,-87.58828351873747,-87.58829892442988,-87.58828290404155,-87.58797488285698,-87.58788247587626,-87.58779752249583,-87.58771035373677,-87.58761825252328,-87.58755631041767,-87.58743986390523,-87.58739364520214,-87.5874022564481,-87.58748733543572,-87.5875565621273,-87.58762758643589,-87.58765793904502,-87.58765914863775,-87.58749000642449],"lat":[45.07875999399447,45.07885876322824,45.07892397491644,45.07897780857839,45.07897789956316,45.07891183746494,45.07873073689306,45.07867570986308,45.07865873160124,45.0786634954507,45.07854777794619,45.07845985237868,45.07837182655297,45.07831734984466,45.07827379695633,45.07822526258462,45.07814369957214,45.07809993768036,45.07807786341736,45.07808787465692,45.07806595300725,45.07781425289274,45.07780348206032,45.07783113630537,45.07801240668028,45.07805691209374,45.07813384592964,45.07819966358811,45.07823766906293,45.07824781234451,45.07826421844955,45.07831321256729,45.07833538007607,45.07848442891731,45.07856687001034,45.07852878594763,45.07839247901239,45.07835452759713,45.07835462185464,45.07840448276343,45.07846483209849,45.07848667405172,45.07850281910414,45.07848065304205,45.07851000648249,45.07856240669802,45.07862797611764,45.07875999399447]}],[{"lng":[-87.746765466432,-87.74675063947744,-87.74689110442421,-87.74710854052579,-87.74750195417761,-87.74777363213764,-87.74792769603727,-87.74817448366757,-87.74832906510711,-87.74848333656682,-87.7485133086044,-87.74852799153321,-87.74846628784385,-87.74829525329199,-87.74789234024648,-87.74773776124677,-87.74764574471929,-87.7473994044333,-87.74730723526736,-87.74702913688483,-87.74687318052521,-87.74681273138746,-87.746765466432],"lat":[44.96720322824319,44.96725807217132,44.96733426408355,44.96738778496837,44.96744056173672,44.96744479439378,44.96741660915614,44.96732780060859,44.96732691313689,44.9672933878927,44.96727681665891,44.96720537433881,44.96716195689469,44.96709726195777,44.96704430232607,44.9670451904696,44.96706756426676,44.96720561091967,44.96721166996112,44.96716904838802,44.96716456482426,44.96717011842263,44.96720322824319]}],[{"lng":[-87.71046408508447,-87.71054183910815,-87.7105198362184,-87.7104042089521,-87.71033491631616,-87.71033555790451,-87.7103985168752,-87.71049911756459,-87.7106540043296,-87.71093120719739,-87.71102319439386,-87.71105276187056,-87.71105228129133,-87.7109662719451,-87.7108029229758,-87.71060209078648,-87.71022993010399,-87.71007648590906,-87.70997606986099,-87.70990660339743,-87.70989174091461,-87.70993870254378,-87.71000002906318,-87.71035533952958,-87.71046408508447],"lat":[44.97203901438323,44.97207686384613,44.97213184294179,44.97220913168452,44.97229720312451,44.97234081735181,44.97241184642486,44.97243327077111,44.97240515242324,44.97231084939427,44.97224995975241,44.97218416414135,44.97209666489582,44.97198748241205,44.97188968324273,44.9718575230122,44.97184837010833,44.97186020414929,44.97189391423098,44.97192656089977,44.97198139988882,44.97203606971588,44.97206852804219,44.97202304774632,44.97203901438323]}],[{"lng":[-87.75493233440604,-87.75465388039949,-87.75428315000802,-87.75411292434056,-87.75410544898075,-87.75414436686508,-87.75421382846001,-87.75448386502164,-87.75473076622959,-87.75513319918328,-87.75531868592503,-87.75534186552336,-87.75532608926423,-87.75527289562167,-87.75517923776141,-87.75493233440604],"lat":[44.96633651761443,44.9663639528763,44.96644077061488,44.96651759728377,44.96656696083222,44.96660542175439,44.96663294898678,44.9666385459381,44.96662764740704,44.96655088642041,44.96646873356337,44.96640280079128,44.9663805506674,44.96634236921625,44.96632561633051,44.96633651761443]}],[{"lng":[-87.58710858483958,-87.58713295399639,-87.58707097746185,-87.58666785508366,-87.58657613669071,-87.58659209793778,-87.58670062482244,-87.58679387361106,-87.58697951940022,-87.58713331478485,-87.58731190137676,-87.58743526240339,-87.58749613844206,-87.58763429722671,-87.58761844088949,-87.58756433728239,-87.58737904564705,-87.5871931758487,-87.58708440162451,-87.58689842694504,-87.58679064686589,-87.58674478602686,-87.58675247198634,-87.58683832318201,-87.58693136922845,-87.58706162175118,-87.58710858483958],"lat":[45.07767255720665,45.07771611264468,45.07775474778825,45.07776732094811,45.07783345887495,45.07788808600562,45.07796970906842,45.07798040452008,45.07794663357274,45.07785845796327,45.07784141614611,45.07779704781713,45.07770915898848,45.07757733414531,45.07753902058104,45.07752268667349,45.0775291808348,45.07756828913897,45.07753026807628,45.07755306065375,45.07754796354813,45.07758103739904,45.07762479937256,45.07767922109203,45.07765699494665,45.07765637340121,45.07767255720665]}],[{"lng":[-87.72473831724504,-87.72480014612501,-87.72495387303489,-87.72504655614998,-87.72513938161184,-87.72527839784101,-87.72546274683197,-87.72555485527205,-87.72554629489153,-87.72551465681993,-87.72542968275873,-87.72515294539645,-87.72467433927349,-87.7245343141972,-87.72448184758076,-87.72448169732453,-87.72455959367936,-87.72466756170665,-87.72473831724504],"lat":[44.97077216195514,44.97077198908723,44.97067265184407,44.97069391406507,44.97067157038484,44.97058347412956,44.97051147775733,44.97040697681217,44.97036292162483,44.97034118951368,44.97032543193026,44.97040881200695,44.97046594331035,44.97049944194141,44.97054340814406,44.97058728976255,44.97064172539442,44.97065738096057,44.97077216195514]}],[{"lng":[-87.73821012915909,-87.73779368020082,-87.7373708273517,-87.7372248474519,-87.73719414729922,-87.73720993650683,-87.73739578912611,-87.7377033512516,-87.73788905250954,-87.73801292857712,-87.73819711666201,-87.738290000985,-87.73836587425164,-87.7383578619412,-87.73828781476863,-87.73821012915909],"lat":[44.96818768253014,44.96827732548072,44.96844926527145,44.96855383418195,44.96860892625111,44.96863061811423,44.96864077368072,44.96851858803619,44.96851242407782,44.96844595697021,44.96841782020995,44.96837352466783,44.96825800313214,44.96821986533357,44.96818725491863,44.96818768253014]}],[{"lng":[-87.73340007370135,-87.73361648746864,-87.73371621758132,-87.73374677594053,-87.7336906944639,-87.73360638324073,-87.73353278780053,-87.73310373024793,-87.732957648555,-87.73291181476536,-87.73302056780932,-87.73315180602138,-87.73340007370135],"lat":[44.96953652313872,44.96953547568531,44.96945841058854,44.96932651734331,44.96926126548414,44.96922864676744,44.96922578021607,44.96925298538151,44.96931956532219,44.96939658243521,44.96947272440858,44.96946098316242,44.96953652313872]}],[{"lng":[-87.64672341711993,-87.64667723841143,-87.6467114654732,-87.64660438849906,-87.64667429733414,-87.64677557011079,-87.64689006298916,-87.64690544691896,-87.64702024522117,-87.64704228380207,-87.64690954292206,-87.64679215958097,-87.64672341711993],"lat":[44.98304187823817,44.98312419006132,44.98343068458075,44.9836062645446,44.98366087001058,44.98366577155431,44.98359949218192,44.98357224048791,44.98344042251863,44.98330866466394,44.98308481523963,44.98300869356989,44.98304187823817]}],[{"lng":[-87.73580585788338,-87.7355585262095,-87.7353730337515,-87.7352665985905,-87.73521241751902,-87.73523605575181,-87.73531367340654,-87.73549953677353,-87.73565375187276,-87.73596181957507,-87.73605434847495,-87.73613058523007,-87.73610693613848,-87.73602255156503,-87.73580585788338],"lat":[44.96894428741623,44.96894557054974,44.96894638907521,44.9690126352913,44.96910045461896,44.96914424966088,44.96916576321587,44.96917563762572,44.96916406790389,44.96906947015523,44.9690141964095,44.96890965656169,44.9688661441247,44.96885546987411,44.96894428741623]}],[{"lng":[-87.70748514640331,-87.70689726866271,-87.7067433969378,-87.70667447529091,-87.70666732638819,-87.70685329027609,-87.70694645654831,-87.70727009810318,-87.70767133758453,-87.70773341112903,-87.70770098809227,-87.70757775363676,-87.70748514640331],"lat":[44.97258404343302,44.97259783380213,44.97262034388876,44.97265918713739,44.97271924442354,44.97280624457932,44.97279546141772,44.9727493569735,44.97266542570267,44.97259944010359,44.97257769033271,44.97256733747842,44.97258404343302]}],[{"lng":[-87.64758672944518,-87.64756320367843,-87.64761828731784,-87.64801580701473,-87.64805455873879,-87.64812489027422,-87.64817051367859,-87.6481630205208,-87.64798259576013,-87.64773283609382,-87.64763938764068,-87.64758672944518],"lat":[44.98089132810073,44.98096258109867,44.98105007468143,44.98144816309314,44.98146977879233,44.98147516604232,44.98142575192897,44.98137637148241,44.98113607112772,44.98088533557235,44.98086371881502,44.98089132810073]}],[{"lng":[-87.58736661660622,-87.58731291718672,-87.5873757361469,-87.58743779440843,-87.58753888264062,-87.58762355841827,-87.5876771476525,-87.58765279085782,-87.58748328541874,-87.58744450269701,-87.58747470901798,-87.58759875620107,-87.58757438258139,-87.58729570797567,-87.58715594672131,-87.58709594643945,-87.5870770750867,-87.58704878465421,-87.58696413467169,-87.58694141122187,-87.58698755693138,-87.58705050428922,-87.5871274384791,-87.58720439003871,-87.5873361219999,-87.58736661660622],"lat":[45.07710780016879,45.07715730057753,45.07721179483404,45.07722773839016,45.07722199719446,45.07717230530249,45.07710648634979,45.07706265351605,45.07705259711395,45.07703067905632,45.07699221766402,45.07693154515504,45.07688799275638,45.07694370406794,45.07690615433328,45.07693554757133,45.07698774917549,45.07699953100045,45.07701096011566,45.07706027399789,45.07711469800005,45.07714725075503,45.07713059722866,45.07707567808238,45.0770776208518,45.07710780016879]}],[{"lng":[-87.65028553923757,-87.65014614726975,-87.65003938633022,-87.6499621915938,-87.64997139473827,-87.6500492295644,-87.6505038694784,-87.65057971936241,-87.65053347681466,-87.65041000685991,-87.65028553923757],"lat":[44.97560623511201,44.97566159646462,44.97573309786122,44.97583756638344,44.97590329826753,44.97595778774458,44.97579160924724,44.97572003218659,44.97564903278873,44.97560569926247,44.97560623511201]}],[{"lng":[-87.73147475661114,-87.73149068548058,-87.73143822756272,-87.73136826153826,-87.7313688363402,-87.73150951030792,-87.73162640048447,-87.7317028591152,-87.73177089037459,-87.73170717331656,-87.73160599239927,-87.73151331957519,-87.73147475661114],"lat":[44.96948027173406,44.96957876828755,44.96962273604694,44.96968857528989,44.96975441364357,44.96988520905956,44.96989568653475,44.96984600862917,44.96970867539164,44.96955578483519,44.969468535258,44.96944700018762,44.96948027173406]}],[{"lng":[-87.73673179817602,-87.73660958499499,-87.73648687056105,-87.73647167329402,-87.73654964882542,-87.7367351415718,-87.73698131002695,-87.73703419523716,-87.7370568164477,-87.73696333988052,-87.73680940945513,-87.73673179817602],"lat":[44.96873703972365,44.96884179218812,44.96891897357676,44.96896283886967,44.96899532558211,44.96899450332489,44.96892202550764,44.96886709372357,44.96879580480493,44.96871406213527,44.96869834753348,44.96873703972365]}],[{"lng":[-87.64741374156169,-87.64716859241527,-87.64708504473563,-87.64715441871232,-87.64722465343974,-87.64725523404427,-87.64750091816275,-87.64754651363546,-87.6475301761934,-87.64747602242828,-87.64741374156169],"lat":[44.97618762204433,44.97630915775436,44.97639436406754,44.97653926202077,44.97656630991467,44.97655512242472,44.97636242371228,44.97627475064105,44.97620915112402,44.97617652806437,44.97618762204433]}],[{"lng":[-87.73407667853212,-87.73406161394374,-87.73417138269204,-87.73429496463748,-87.73448010734582,-87.73457270558026,-87.73465709555605,-87.73465723885904,-87.73459582983881,-87.73415327565169,-87.73407667853212],"lat":[44.9691606208167,44.96922108799197,44.96929162547968,44.96931320785533,44.96930112548748,44.96928440045976,44.96923459291119,44.9691907111319,44.96913998178909,44.96912754115196,44.9691606208167]}],[{"lng":[-87.64639423722392,-87.64634090813048,-87.64631025998575,-87.64637326945021,-87.64648982861651,-87.64655154607377,-87.64663623893779,-87.64667438504384,-87.64666540338131,-87.64664976262304,-87.64654847556473,-87.64648686171952,-87.64639423722392],"lat":[44.97626843790083,44.97631263356394,44.976422274636,44.9765096557562,44.97654750234182,44.97653077127276,44.97647569365802,44.97641515358217,44.97634407962271,44.97630014973968,44.97621845403769,44.97621324495574,44.97626843790083]}],[{"lng":[-87.64911491331409,-87.64903782103846,-87.64898453245941,-87.64893226423992,-87.64893227345429,-87.64895539274319,-87.64904769972539,-87.64916353299171,-87.64925612431888,-87.64924745397889,-87.64919952081632,-87.64915341421522,-87.64911491331409],"lat":[44.97701850197961,44.97710102482012,44.97722173608159,44.97733683870914,44.97737538194726,44.9773916103994,44.97740223022118,44.97734160208872,44.97720960883571,44.9770727097856,44.97702361975795,44.97700748197107,44.97701850197961]}],[{"lng":[-87.70521342223726,-87.70515191980297,-87.70520658798951,-87.70529997738461,-87.70544633129624,-87.70566354811069,-87.70571775573185,-87.70566236841569,-87.70546089593162,-87.70533730774883,-87.70521342223726],"lat":[44.97266582872203,44.9727371702066,44.97279734451347,44.97284057502184,44.97286742633954,44.97286645233889,44.97283884673101,44.97275699612064,44.97268121443744,44.97265987968582,44.97266582872203]}],[{"lng":[-87.59226817104339,-87.59223115426178,-87.5923168891639,-87.59236431947579,-87.59241765479095,-87.5925551814716,-87.59254749158141,-87.59248499586231,-87.59236940869427,-87.59226817104339],"lat":[45.08255416055889,45.08281133494275,45.08288769016393,45.0828929131055,45.08287096869161,45.08267864510911,45.0826348792217,45.08259136443441,45.08252619365685,45.08255416055889]}],[{"lng":[-87.64899428606807,-87.64886466646125,-87.64882630575039,-87.64882679310145,-87.64885795485267,-87.64888854620902,-87.64896635615617,-87.64904359681898,-87.6491055111387,-87.64912712688964,-87.64912684567635,-87.64911107852241,-87.64907221456839,-87.64902509607587,-87.64899428606807],"lat":[44.97653722647323,44.97666367691885,44.97672955968545,44.97679511211916,44.97682782681809,44.97685518216318,44.97687141144458,44.97684346235017,44.97678313384422,44.97673913102665,44.9766296927985,44.9765694522455,44.97653123381116,44.97652041907929,44.97653722647323]}],[{"lng":[-87.73233400917358,-87.73221877119904,-87.73218080112252,-87.73219644610803,-87.73228904594232,-87.73253645305201,-87.73266746381,-87.73270514629368,-87.73266659271025,-87.73233400917358],"lat":[44.9696183092602,44.96964640052942,44.96968475148994,44.96975032458246,44.9697937975251,44.96977058188817,44.96970426536692,44.96963299445891,44.96960578544218,44.9696183092602]}],[{"lng":[-87.58881361495926,-87.58876037711642,-87.58875249512083,-87.58869238439961,-87.58872356401729,-87.58884062812072,-87.58893365584089,-87.58896339711069,-87.58897036860503,-87.58893814973649,-87.58889961593539,-87.58881361495926],"lat":[45.07789509130704,45.07793363480858,45.07804542639879,45.0781530208692,45.07818574764422,45.07823435587719,45.07825038573947,45.07822288693985,45.07815158242411,45.07795482945424,45.07788931464526,45.07789509130704]}],[{"lng":[-87.58237445937628,-87.58227481310394,-87.58218296849773,-87.58214432259925,-87.58215224210933,-87.58220713777885,-87.58230687596033,-87.58239972681335,-87.5825221497194,-87.5825377499005,-87.58248284268663,-87.58237445937628],"lat":[45.07733130136282,45.07735929007963,45.0774470793111,45.07753487155911,45.07757301532693,45.07758936858091,45.07757797753192,45.07752284225993,45.0773690261105,45.07728159170359,45.07726551674082,45.07733130136282]}],[{"lng":[-87.70790556699099,-87.70785966982562,-87.70778936892277,-87.70775929961,-87.70776714690385,-87.70785304389652,-87.70813802458146,-87.70822322165013,-87.7082608650645,-87.70821411563634,-87.70809008656423,-87.70790556699099],"lat":[44.97283413136483,44.97287202995903,44.97290578669043,44.97294428025631,44.97296610297668,44.97299849120367,44.97294795129795,44.97289845853687,44.97284886313119,44.97278884928058,44.97277848224179,44.97283413136483]}],[{"lng":[-87.70963293986874,-87.70955623033069,-87.70954879843136,-87.70960261571926,-87.70972736471542,-87.7099046728849,-87.70998164641034,-87.71005812670114,-87.71007321638217,-87.70994076158571,-87.70963293986874],"lat":[44.97240970870588,44.97246499091536,44.97249241006803,44.97251430718453,44.97254634729507,44.97251249466287,44.97249040387722,44.97244074094072,44.97238028111788,44.97234274222529,44.97240970870588]}],[{"lng":[-87.58630426562686,-87.58629773171602,-87.58640775944586,-87.58645459112878,-87.58650837419323,-87.58654684469317,-87.58654666493173,-87.5865065463047,-87.58650652179091,-87.58643520303501,-87.58636820570605,-87.58630426562686],"lat":[45.07686029429924,45.07695889375541,45.0771556031478,45.0771937312719,45.07719880106036,45.07717148564242,45.07710031450833,45.07703476415595,45.07690339083326,45.07684337005956,45.07683154701417,45.07686029429924]}],[{"lng":[-87.59263377567677,-87.59261876413181,-87.5924805924821,-87.59236504206004,-87.59235777502879,-87.59240461307245,-87.5926433869606,-87.59269707218803,-87.5927283093136,-87.59274994153222,-87.59273358428297,-87.59269853827915,-87.59265903440821,-87.59263377567677],"lat":[45.08275484522772,45.08280966915146,45.08294178108002,45.08300798255041,45.08302977120808,45.0830678915187,45.08301750704346,45.08296828892951,45.08292421777349,45.08278739643651,45.08276089130919,45.0827443995563,45.08273962838554,45.08275484522772]}],[{"lng":[-87.58721486898555,-87.58720737568058,-87.58728569831248,-87.58727114442699,-87.58729494993207,-87.58736437721593,-87.58752547827231,-87.58753539909291,-87.5875009992278,-87.5874463394328,-87.58739332274904,-87.58726934112985,-87.58723860030115,-87.58721486898555],"lat":[45.07925940492284,45.07928653295836,45.07940661619162,45.07945047448689,45.07948867166375,45.07949942168129,45.07935092527687,45.07932272104014,45.079309896102,45.07930677330354,45.07930227934406,45.07924817893101,45.07924274747375,45.07925940492284]}],[{"lng":[-87.58648638577161,-87.58646474125098,-87.58651925825771,-87.58658110350247,-87.58664950839274,-87.58661348914218,-87.58654074914794,-87.58648638577161],"lat":[45.07732492908983,45.07746174908753,45.07754363612379,45.07752694046611,45.07737338234867,45.07732367802662,45.07729738507458,45.07732492908983]}],[{"lng":[-87.59244659593899,-87.59243294699331,-87.59246759086518,-87.59253709481233,-87.59259003303409,-87.59262691420419,-87.59265728007399,-87.59268267360044,-87.59271515774297,-87.59273534696756,-87.59274085019995,-87.59273260840784,-87.59267375645985,-87.59256091346006,-87.59251134721359,-87.5924694954017,-87.59244659593899],"lat":[45.08231459224704,45.08235593630963,45.08240083296554,45.08244759359022,45.08247289795982,45.08250236873126,45.0825356419021,45.08255502688308,45.08255683765882,45.08254882522925,45.08253121451056,45.0825195068829,45.08246482030383,45.08235329399502,45.08230442542725,45.08229875859526,45.08231459224704]}],[{"lng":[-87.58639037649102,-87.58639852365999,-87.58654552833464,-87.58666234238535,-87.58671600450388,-87.58672421031497,-87.58662674440706,-87.5864980602515,-87.58643634565419,-87.58639037649102],"lat":[45.0759847210217,45.07601752301364,45.07607155142255,45.07616375549217,45.0761527928338,45.07610880219431,45.07602854110148,45.07597321533547,45.07596796931507,45.0759847210217]}],[{"lng":[-87.58246659182674,-87.58244386591404,-87.5824908014004,-87.58258346287438,-87.58264419300002,-87.5826763050953,-87.58263006050834,-87.58253591949408,-87.58246659182674],"lat":[45.07437587173294,45.07442517921528,45.07447962300247,45.07452293796822,45.07451381602629,45.07446779922513,45.07439705467906,45.0743700269209,45.07437587173294]}],[{"lng":[-87.58868697491162,-87.58874207345264,-87.5888424914347,-87.58890491712491,-87.58888769766872,-87.58879183731703,-87.58868697491162],"lat":[45.07847022016097,45.07851948870732,45.07852976684676,45.07848045006092,45.07843676887612,45.07837482287192,45.07847022016097]}],[{"lng":[-87.58696470061037,-87.58688838352417,-87.58688088581926,-87.58692043791636,-87.58701323743948,-87.58706703186199,-87.58705812632627,-87.58699619562638,-87.58696470061037],"lat":[45.07812888652715,45.07814977727136,45.07817690823582,45.07823709651987,45.07825847124987,45.07822556926557,45.07815421064044,45.07811633369347,45.07812888652715]}],[{"lng":[-87.58756398514402,-87.58750257649909,-87.58748769197413,-87.58751853944675,-87.58767353980765,-87.5876808203232,-87.58761906443463,-87.58756398514402],"lat":[45.08118979661396,45.08123378784381,45.08126666454421,45.08128841485365,45.08126609535012,45.08124402281513,45.08118308108663,45.08118979661396]}],[{"lng":[-87.58650495764893,-87.58651264310386,-87.58662924513222,-87.58666066675956,-87.58666717840372,-87.58664348757084,-87.5866126384476,-87.58654220978605,-87.58650495764893],"lat":[45.07669547435167,45.07673924180662,45.07679880927839,45.07678794226579,45.07672759792016,45.07670571666024,45.07668396849566,45.07667825808148,45.07669547435167]}],[{"lng":[-87.58818573885482,-87.58813114928174,-87.58813122131772,-87.58816308995698,-87.58822504837258,-87.58827941589979,-87.58824212258247,-87.58818573885482],"lat":[45.08230368835525,45.08233656979153,45.08239142922202,45.08240785463308,45.08240747715065,45.08237993180615,45.08230375346998,45.08230368835525]}],[{"lng":[-87.58651735992139,-87.58652517368533,-87.58655612792613,-87.58664166964834,-87.5866714147372,-87.58665602041927,-87.58657773730455,-87.58651735992139],"lat":[45.0781731588929,45.0781949840507,45.07823305295443,45.0782382380503,45.07821073567454,45.07816146441493,45.07813476983242,45.0781731588929]}],[{"lng":[-87.58731543152176,-87.58731252123069,-87.58733434302974,-87.587355526911,-87.5874026100357,-87.58744314110814,-87.58742702434417,-87.58739713669837,-87.5873511329346,-87.58731543152176],"lat":[45.07736158478489,45.07741187673086,45.07744046807932,45.07744653932011,45.07744106499518,45.0774025373932,45.07737041310263,45.07734474199982,45.07734349061624,45.07736158478489]}],[{"lng":[-87.58749165006108,-87.58745748652566,-87.58746529323962,-87.5874969325922,-87.58753528861251,-87.58756852727244,-87.5875893189492,-87.587581505545,-87.58756503316879,-87.58752816760475,-87.58749165006108],"lat":[45.07953193162076,45.07957002855297,45.07959213551689,45.0796139043986,45.07960824373813,45.07959207101498,45.07956972182225,45.07954789492599,45.07952420138121,45.07951329181977,45.07953193162076]}],[{"lng":[-87.5868757338563,-87.58686082707273,-87.58687383980377,-87.58694211568249,-87.58696306310024,-87.58694584299894,-87.58690795279068,-87.58689135272577,-87.5868757338563],"lat":[45.07726226925756,45.07729571311951,45.07732608519129,45.07734524936181,45.07730040606586,45.07727556426499,45.07725141903398,45.07724966160936,45.07726226925756]}],[{"lng":[-87.58710574635421,-87.5870746174175,-87.58708676727694,-87.58712917115307,-87.58717751862103,-87.58718520103477,-87.58718993762166,-87.58715180824136,-87.58710574635421],"lat":[45.07730623295595,45.07732892697907,45.07736096928322,45.07737227201432,45.07737441910363,45.07734279361463,45.07732461262108,45.07730608284031,45.07730623295595]}],[{"lng":[-87.58562507873037,-87.58560223953658,-87.58562953261094,-87.58568071751827,-87.58570781175879,-87.58571315279949,-87.58566802577569,-87.58562507873037],"lat":[45.07579243809955,45.07582571279615,45.07585638708652,45.07586646962682,45.07584538521415,45.07581286543561,45.07579081500631,45.07579243809955]}]],[[{"lng":[-89.30046718926064,-89.30044821971978,-89.32125323726444,-89.34402252414812,-89.36240570613403,-89.38383655939703,-89.40455416582391,-89.42529473553731,-89.44618309272857,-89.48753219993107,-89.50800467791306,-89.52871352386015,-89.54973941204511,-89.57060999052275,-89.59149228204414,-89.61183732680341,-89.62338743413291,-89.63239554525424,-89.63644288732826,-89.64545513582559,-89.65340226900987,-89.67393200958487,-89.6935188486129,-89.69470483524715,-89.71533059644545,-89.71997054413163,-89.73614525673382,-89.75671159357972,-89.77749957233755,-89.79648335626807,-89.82467475419318,-89.84262425645896,-89.85879918637667,-89.87981146850328,-89.89775665987877,-89.92081700550722,-89.96176742027501,-89.98145030095061,-90.00246599420787,-90.02319384882109,-90.04322048808686,-90.04318319212086,-90.04309093951861,-90.04319376214055,-90.04402289888732,-90.04440214905505,-90.04510419001407,-90.04532359248684,-90.04522203244323,-90.04516345961146,-90.04467662994996,-90.04380568820595,-90.04325262465815,-90.04330489246264,-90.04331522618621,-90.04335659334544,-90.04344398724068,-90.04364220552971,-90.04368012641307,-90.0437540300138,-90.04353926695019,-90.04354456031299,-90.04390105063908,-90.04381257586613,-90.04374777508167,-90.04353720382713,-90.04345299735768,-90.04340450270783,-90.04347334792237,-90.04348490009465,-90.03498486421495,-90.01235370507166,-90.00196318282866,-90.0001602944139,-89.99223595369432,-89.9815281614806,-89.97121754801968,-89.95069676597885,-89.94038694415826,-89.93022239036888,-89.91985811173764,-89.90979646816402,-89.89977239948493,-89.8919150391169,-89.87887363001113,-89.85802786170888,-89.83747504900872,-89.81679795239459,-89.7961912334361,-89.77550869818857,-89.76522346594345,-89.75482868227682,-89.73448442636321,-89.71352644563662,-89.69301754029999,-89.67230989867615,-89.65152415275804,-89.63108707686504,-89.61036830872229,-89.59005002537833,-89.56913648308262,-89.54865416121329,-89.54618360127473,-89.5371867752488,-89.53070829582238,-89.51019025077264,-89.48955535887906,-89.48111769768612,-89.47809423556349,-89.44865214533507,-89.42821556512902,-89.42842132824497,-89.4278030022367,-89.42740475594179,-89.42536214897126,-89.42547086797754,-89.42521012851276,-89.40422355684217,-89.38421045065485,-89.36457690256304,-89.34388596197205,-89.322595449289,-89.30190996115398,-89.27958156925226,-89.25772089030981,-89.23701104270479,-89.21618487500614,-89.19512647922262,-89.1741099232389,-89.15289421004782,-89.13229182480677,-89.11162517311517,-89.06760720491766,-89.04660715830569,-89.04648975795277,-89.04651533489286,-89.04645859693333,-89.04656493272871,-89.0464711830915,-89.04657291727952,-89.04677673822385,-89.04692901949105,-89.04694021084728,-89.04702204274922,-89.04646157863795,-89.0465851787727,-89.04657329614265,-89.04675754909904,-89.04680001266465,-89.04676433060246,-89.04717452521663,-89.04718200276132,-89.04737359408625,-89.04751614678079,-89.0475702909695,-89.0474591530589,-89.04745710824743,-89.04730824998686,-89.04737157938089,-89.04743788055933,-89.04760537665503,-89.04753972774084,-89.04752793906364,-89.04754854141478,-89.05258630614273,-89.05762487793277,-89.06266346135484,-89.06770205543866,-89.0727749225028,-89.07784779469429,-89.07882579053987,-89.0829206702123,-89.08799355595846,-89.08979424352515,-89.09309831138907,-89.09820225659215,-89.10330620954154,-89.10450263438173,-89.10840936104364,-89.11390468887539,-89.11719577136674,-89.1186958854034,-89.1237315929683,-89.12876734282888,-89.13395418129308,-89.13914025891279,-89.14432718307515,-89.14951334796039,-89.1547303739703,-89.15642303797216,-89.1598696797294,-89.16226507061565,-89.16498301890864,-89.16972566030688,-89.17749738640805,-89.17819175073076,-89.17809056528468,-89.17799399958395,-89.17764442943151,-89.17735501799721,-89.17730777148252,-89.17703561312081,-89.17693865834353,-89.17681313710969,-89.17661486609963,-89.17641660501809,-89.17621836577467,-89.17598725182833,-89.17596018871184,-89.17574952862293,-89.17553889716052,-89.17532827280031,-89.18021888796531,-89.18510956842219,-89.1899994952052,-89.19349784312708,-89.19489027904611,-89.19835231366467,-89.19995477520997,-89.20501940353111,-89.21008414579782,-89.21514900568707,-89.22054748705236,-89.22594519000042,-89.23134373824736,-89.23674151923855,-89.24207113452383,-89.24740081082513,-89.25272977066204,-89.25805882702171,-89.2632518681939,-89.26844405174715,-89.27363616649262,-89.27882823050668,-89.28399805797967,-89.28957469147983,-89.29474094220008,-89.30089852048647,-89.300919188728,-89.30089974903953,-89.30086475150219,-89.30084666861148,-89.30082892559732,-89.30079229131336,-89.30073237348415,-89.30067244314995,-89.30061249226939,-89.3005525481455,-89.30052409812127,-89.3004956486724,-89.30046718926064],"lat":[45.89908706149405,45.90150019979251,45.90056346569119,45.89943396359426,45.89878184461627,45.89884244470699,45.89885031261546,45.89858508799419,45.89834606414279,45.89831198776047,45.89859372139051,45.89876713018544,45.89860670514172,45.89861565101612,45.89878564607064,45.89848873019587,45.89876704854586,45.89894322503035,45.89876886523986,45.89855363361524,45.8985864735353,45.89860026296846,45.8985864618701,45.89858514180357,45.89849331130088,45.89849747637997,45.89847863479275,45.89848379911022,45.89832532558324,45.89821274879813,45.89821557689969,45.89826981390418,45.89820542615192,45.89808486840285,45.89807869043075,45.89811778749493,45.89751382634881,45.89730719330403,45.89724845122278,45.89702548502735,45.89714104462062,45.88934567143118,45.87529283194507,45.86096649487614,45.84654195621928,45.83208774033679,45.81760579040866,45.80348008153602,45.78885099610664,45.77413354231121,45.7594944173971,45.73021052232778,45.71585773718722,45.70828939740206,45.70152098350589,45.69440266069409,45.68714085820099,45.67290692522307,45.66658005057919,45.65859817322626,45.64414662638315,45.62746785183999,45.61296368903587,45.60549933476135,45.59855644198009,45.5840377948704,45.57679279048638,45.56960345872938,45.56241744997396,45.55520220127659,45.55509148679085,45.55510518774931,45.55507940378394,45.55505973158712,45.55507078675652,45.55506232725698,45.55506534366316,45.5551209414855,45.5551194835398,45.55517569410467,45.55517122457329,45.55520093214857,45.55525847816993,45.55518162298637,45.55507301117602,45.55504243122277,45.5553426090468,45.5555016280944,45.55554114807794,45.55550873286119,45.55554833208516,45.55564078111264,45.55558460095249,45.55559276772672,45.5557035141201,45.55568680240476,45.55567565928789,45.55573838221719,45.5556513360082,45.55566943617981,45.55582848163996,45.55582171686714,45.55584052502646,45.5558468255423,45.55586571074404,45.55554417678113,45.55559640240475,45.55558207355145,45.5555525675041,45.55546283613251,45.55538219709733,45.54191208312536,45.52689356799009,45.51213714636291,45.49744390550273,45.4817506029293,45.46731779331526,45.46814198893049,45.46909246601125,45.47007473619375,45.46999219504957,45.46950518429628,45.46926149275627,45.46914435429035,45.46897469010967,45.46868091065988,45.46826054549904,45.46839394115107,45.46828298082755,45.46796865029664,45.46771578961221,45.4667808162157,45.46556863060167,45.46474406289322,45.47925741825905,45.50796442781114,45.52248272654293,45.53696184439416,45.55167215674491,45.56509185666122,45.5792020739599,45.59361448701059,45.6079345544156,45.63722201839233,45.65161203249276,45.66008345187046,45.66608693487775,45.68063834887044,45.69517391794035,45.70967504472285,45.72369155580197,45.73796682837846,45.7523285422287,45.76674548592559,45.78120835235835,45.79678194354119,45.79813202457949,45.80986255410696,45.82419994251774,45.85301023952479,45.86737200911733,45.88133184613351,45.88839883803323,45.89526639238168,45.89530596261771,45.89534587768057,45.89538556940126,45.89542504020189,45.89543869058745,45.89545211576131,45.89545493042314,45.89546531570897,45.89547829048573,45.89547293635212,45.89546373142922,45.89544893545839,45.89543390910153,45.89543033750274,45.89541808936846,45.89541295239835,45.89540913407888,45.8954077578943,45.89563374253991,45.8958595103851,45.89605975938682,45.89625976897729,45.89645954765138,45.89665851937434,45.89689686934538,45.89700498218601,45.89737741728305,45.89763573322844,45.89793010950594,45.89844107303687,45.89925153773287,45.89931242424447,45.89726893869437,45.89627650695721,45.89266142277931,45.88966837130172,45.88904812013536,45.88543302534696,45.88408675553746,45.88178284787717,45.87813171415182,45.87448114424929,45.87083056699336,45.86771809726265,45.86726000395276,45.86369090033644,45.86012123097047,45.8565526870067,45.85684208297115,45.8571307084704,45.85741912409396,45.85762552328452,45.8577073315652,45.85814678070255,45.85834981536618,45.85899094934601,45.85963242406172,45.86027367616047,45.86044050801343,45.86060764163608,45.86077396437388,45.86094002444573,45.86120720331873,45.86147356511061,45.86174024968779,45.86200669845909,45.86166167620733,45.86131584906595,45.86097034585461,45.86062404483211,45.86037412543207,45.86010399735373,45.86038516466142,45.86071941259595,45.86215680933214,45.86390335965421,45.86708652055662,45.86872450490017,45.87027079770472,45.87345507117905,45.8771477312978,45.88084038348043,45.88453359893917,45.88822568715044,45.89184652232183,45.89546679307615,45.89908706149405]}]],[[{"lng":[-90.65695280069099,-90.67714215380467,-90.67775647032001,-90.67889318352361,-90.67942838412006,-90.67908704833249,-90.6788859888463,-90.67831059073893,-90.67803370828585,-90.67633383075386,-90.67813614017491,-90.67808696997115,-90.67804732717721,-90.67795920500598,-90.67791708278646,-90.67787969325084,-90.67792808107826,-90.67788975787539,-90.67760912072104,-90.67791980677138,-90.6780773364687,-90.6773170830086,-90.67802014990937,-90.67784572480437,-90.67764672642369,-90.67785643506836,-90.67784615468577,-90.67802675745348,-90.67875987638149,-90.67878874219022,-90.67885489336358,-90.67929131176885,-90.67972890996774,-90.67976141127744,-90.67935020754588,-90.67910339547758,-90.67803372126858,-90.67807916545273,-90.67845326078519,-90.67918804890439,-90.67864105473573,-90.67865912257793,-90.678373310708,-90.6784672040795,-90.67877815689613,-90.6583121528684,-90.63781422662568,-90.61712390306978,-90.59656631382967,-90.57594942825251,-90.55536666914539,-90.53418219182936,-90.51363299326856,-90.49327751526765,-90.47233625480798,-90.4519375100335,-90.43166379587097,-90.41246143103325,-90.39259552946538,-90.37222527438534,-90.35185112231281,-90.33161236756317,-90.32152012973144,-90.31126965906751,-90.29058769344535,-90.26962721997501,-90.24923761118126,-90.2287546196239,-90.20818391053878,-90.18766631218736,-90.16705535660785,-90.15794344130998,-90.15122941000699,-90.14594174855496,-90.14191668298119,-90.13860048417187,-90.1350432827228,-90.13330713276528,-90.12539500875619,-90.10429485174909,-90.0832395304715,-90.04206560246213,-90.04246900630197,-90.04246875913707,-90.04255365587109,-90.04270239369106,-90.04276983079038,-90.04287342770415,-90.04304919333664,-90.04314542066903,-90.04343268442085,-90.0435233614691,-90.04346991668993,-90.04348490009465,-90.04347334792237,-90.04340450270783,-90.04345299735768,-90.04353720382713,-90.04374777508167,-90.04381257586613,-90.04390105063908,-90.04354456031299,-90.04353926695019,-90.0437540300138,-90.04368012641307,-90.04364220552971,-90.04344398724068,-90.04335659334544,-90.04331522618621,-90.04330489246264,-90.04325262465815,-90.04380568820595,-90.04467662994996,-90.04516345961146,-90.04522203244323,-90.04532359248684,-90.04510419001407,-90.04440214905505,-90.04402289888732,-90.04319376214055,-90.04309093951861,-90.04318319212086,-90.04322048808686,-90.04352187086431,-90.04447462770561,-90.04480475881732,-90.04452485615973,-90.04425156401386,-90.05347959785374,-90.08387575384289,-90.1051574396249,-90.11491609616247,-90.13570769103012,-90.1674669894479,-90.1779891875,-90.19891446450359,-90.21912579871154,-90.23976615559835,-90.26019875606656,-90.28096145227735,-90.2905024469262,-90.30240366182598,-90.30309624919613,-90.32318959145951,-90.34396271400354,-90.36483632778382,-90.37276916046154,-90.39287802739713,-90.39499884759933,-90.40988682163531,-90.4159194347347,-90.42659822437597,-90.44043258253024,-90.4474150030433,-90.45770992525041,-90.45995841110873,-90.46818291550655,-90.47743275856882,-90.47831823670035,-90.49789241633665,-90.50047334452179,-90.50691828398253,-90.50986141313314,-90.52031988675537,-90.53011209993632,-90.54106364055251,-90.54178311723791,-90.55209695730638,-90.55372972918876,-90.57229517599376,-90.58278218045655,-90.58466404902937,-90.592741208486,-90.5949792016628,-90.60318529815302,-90.60527759169121,-90.61348221260276,-90.63424316641529,-90.63623195025957,-90.65695280069099],"lat":[45.98144849881011,45.98150342945139,45.96740997061055,45.95315868325704,45.94558180233725,45.93892364456452,45.92486078976621,45.91081756041795,45.89641982353816,45.88245236240734,45.86846357189384,45.86440638346597,45.86297387066038,45.85806636980826,45.85712214165492,45.83981627845477,45.82564425966078,45.81115432518012,45.79756302644839,45.78293200814829,45.7684396823111,45.75394318829066,45.73965511451399,45.72508642249956,45.71083117759228,45.69630738705472,45.68198063343816,45.67757879227054,45.65280112097392,45.63833732596157,45.62450051233117,45.58136718115821,45.55245887175995,45.53766682599514,45.52307483932705,45.50845989677708,45.4933462821346,45.47884647355544,45.46411908695552,45.45025418892025,45.43584105049106,45.42135869797554,45.40680666670265,45.39234348473212,45.37787615959665,45.37771007233432,45.37771039837801,45.37741554208793,45.37761412399497,45.3774121270337,45.37729737635102,45.37722842216581,45.37723257477508,45.37718371550034,45.37680208144175,45.37685216356346,45.37697351332347,45.37767363104427,45.37835535299079,45.37888729404369,45.37949606862003,45.38019476903959,45.38050697617099,45.38066176188143,45.38073049004502,45.38074380382825,45.38114980023061,45.3813844301595,45.38147377542092,45.38147100225478,45.38148155926036,45.38159294655674,45.38163463868774,45.38175513991126,45.38191153684395,45.38206299192527,45.38226020765916,45.382336502892,45.38250464717112,45.38259723978511,45.38202373527939,45.38169400350206,45.39623612389087,45.41063883581855,45.42511348484446,45.43941817738671,45.46751446916959,45.48165873622173,45.49645271159367,45.51105051654617,45.5253791814005,45.5399492182638,45.5488645290587,45.55520220127659,45.56241744997396,45.56960345872938,45.57679279048638,45.5840377948704,45.59855644198009,45.60549933476135,45.61296368903587,45.62746785183999,45.64414662638315,45.65859817322626,45.66658005057919,45.67290692522307,45.68714085820099,45.69440266069409,45.70152098350589,45.70828939740206,45.71585773718722,45.73021052232778,45.7594944173971,45.77413354231121,45.78885099610664,45.80348008153602,45.81760579040866,45.83208774033679,45.84654195621928,45.86096649487614,45.87529283194507,45.88934567143118,45.89714104462062,45.91161282749239,45.94053869840243,45.95447090802897,45.96895458283146,45.98185418475211,45.98191266099649,45.98206478829257,45.98223559619331,45.98227568348891,45.98192547155835,45.98196823151411,45.98195231289984,45.98200833757536,45.98189033786146,45.98164410914681,45.98154226740106,45.98148967610478,45.98150599144869,45.98154009932904,45.98151859172314,45.98153433947144,45.98180384132767,45.98186505903277,45.9817417762401,45.98154327254897,45.98153545164597,45.98151882439659,45.98151855118758,45.98154076348816,45.98149536862626,45.98145941684438,45.98136039935306,45.98132779820499,45.98123666538223,45.98135893684557,45.98135131814146,45.98150782497665,45.98134472955486,45.98126628551925,45.9812757046102,45.98147611812819,45.98152340573731,45.98151318975653,45.98152834565299,45.9815307815456,45.98153807307636,45.98163231633346,45.98171774455023,45.98170251238984,45.98173631294775,45.98167350355086,45.98154445889873,45.981478278729,45.98129337241973,45.98145744384346,45.98144470703646,45.98144849881011]}]],[[{"lng":[-88.53273192737363,-88.53315572480732,-88.53366703216567,-88.53396759045758,-88.53412040907159,-88.53410489079783,-88.53407305230475,-88.53392961289245,-88.53361158352371,-88.53325624298581,-88.53320426501267,-88.53261639477716,-88.53239592768432,-88.53234973245748,-88.53246291497385,-88.53268104349695,-88.53302672989444,-88.53341242595721,-88.53379342071599,-88.53421681058553,-88.53487346741311,-88.53527744614746,-88.535662733832,-88.53628520542053,-88.53643683394606,-88.53661339111973,-88.53668257968359,-88.53681712212293,-88.53695010839536,-88.5371235078659,-88.53755897251148,-88.53786417914212,-88.53829807403791,-88.53903677559452,-88.53933962626934,-88.54019879802246,-88.54074178080101,-88.54130399447791,-88.5420806925341,-88.54264100009949,-88.54336493367157,-88.54407203997432,-88.54484152221498,-88.54574115656793,-88.54636083792558,-88.54708258660851,-88.54749438800887,-88.54780803544836,-88.54828960820178,-88.54865666144595,-88.54894040174794,-88.54915786735293,-88.54940582249604,-88.54970150955627,-88.54983017106774,-88.55020759064429,-88.55043909417745,-88.55062028213143,-88.55080046404531,-88.55119103193135,-88.55154694081764,-88.55232808706522,-88.55276462511854,-88.55326414944776,-88.55387999239571,-88.55416972182827,-88.55449256162397,-88.55481727499738,-88.55521084075674,-88.55568764146487,-88.5563947638036,-88.55672394463434,-88.55688978297648,-88.5575539971891,-88.55823336998112,-88.55886379584119,-88.55961814813564,-88.56022390933438,-88.56058251801475,-88.56090635156426,-88.56128023079231,-88.56163706553757,-88.56196090318187,-88.56256333173248,-88.56295394412095,-88.56331266073937,-88.56381810016485,-88.56419178167704,-88.56460024040992,-88.56525584168723,-88.56578217361232,-88.56614769925861,-88.56664477134206,-88.56710897560723,-88.56752105600388,-88.56823208609545,-88.56887855777993,-88.56955500496599,-88.57034865017715,-88.57077914869564,-88.57142508319269,-88.57194143367444,-88.57219554994214,-88.57232340035203,-88.57241779402455,-88.5726250254755,-88.5728961507543,-88.57309630293645,-88.573643735696,-88.57412667219636,-88.57439161403818,-88.57459323240249,-88.57476580360033,-88.575032217404,-88.57544807816311,-88.57582988100138,-88.57611264082607,-88.57650883604457,-88.5770515489974,-88.57744508615363,-88.57809945929978,-88.57831303657612,-88.57851112410962,-88.57864303449588,-88.57882704207476,-88.5790157254266,-88.57926920366017,-88.57949836184544,-88.57982472951248,-88.5799627952938,-88.5802144905722,-88.58045034649497,-88.58073277781644,-88.5810477959559,-88.58149435191362,-88.58187261780883,-88.58249614694914,-88.58295678515879,-88.58322256890855,-88.58395097837401,-88.58426773551368,-88.58456740314212,-88.58555776124821,-88.58629762117987,-88.58704038863378,-88.58765307268207,-88.58825018510433,-88.58849806358783,-88.58901933261585,-88.58927870409694,-88.58948819505368,-88.58982347672739,-88.58998090794915,-88.59029323649079,-88.59066209337139,-88.59065453676021,-88.59074369664019,-88.59086827457912,-88.59134838125122,-88.59158930804898,-88.59181699377328,-88.59236277174445,-88.59257287957809,-88.59266814653282,-88.5930141177941,-88.59310388205576,-88.59312681828284,-88.59311841819552,-88.5930604709944,-88.5930325095577,-88.59302344945675,-88.5930671778296,-88.59326951638677,-88.59339528920613,-88.59350496582721,-88.59395407108066,-88.59411466747039,-88.59440689998942,-88.59527239968355,-88.59561411363977,-88.59585508220727,-88.59615969459958,-88.59653049811433,-88.59697848842107,-88.59759258681098,-88.59809474749903,-88.59853411925479,-88.59895938114903,-88.59959918809368,-88.60018975700297,-88.60063462777261,-88.60086467347735,-88.60149294581301,-88.60192518479471,-88.60237632547636,-88.60279386256113,-88.60332478831084,-88.60370462170046,-88.60397062716525,-88.60422084555667,-88.60437315332209,-88.60439447428382,-88.6046262627774,-88.60509526053396,-88.60558062582045,-88.60588608998707,-88.60615643850551,-88.60647682055976,-88.60674631765403,-88.6069964904793,-88.60721873527066,-88.60745652082227,-88.60752038980159,-88.6074123893426,-88.60727015966481,-88.60709627043106,-88.60702973421924,-88.60710452315904,-88.60703025520304,-88.60702987978436,-88.6074108034182,-88.60771306307952,-88.60803226688675,-88.60862176950653,-88.6093872235527,-88.60976891544131,-88.61011608410398,-88.61087235247913,-88.61128316672932,-88.61186747510121,-88.61220192655504,-88.61246992459063,-88.61264649448296,-88.61262703830947,-88.61255153470182,-88.61238862824747,-88.6121622988104,-88.61172614752647,-88.61148807881474,-88.6114776679652,-88.61173780460499,-88.61175260531201,-88.61195329397027,-88.61207471775303,-88.61201611281412,-88.61177269663679,-88.61165146570325,-88.61168107151065,-88.61167721623357,-88.61178013032797,-88.61194406189605,-88.61214982028962,-88.61238611533322,-88.61259088071041,-88.61276305316503,-88.61292473172971,-88.6132285555537,-88.61344586127687,-88.61374458328146,-88.61393078212825,-88.61414024906895,-88.61427218725244,-88.6143389662857,-88.61451782750896,-88.61465188956198,-88.61481758476164,-88.61479033153554,-88.6146764987664,-88.61456223376389,-88.61450072567592,-88.61449220725001,-88.61445242003423,-88.61446687424068,-88.61453302781523,-88.61479239971825,-88.61515789006668,-88.61541651211959,-88.61562421836859,-88.61582504448353,-88.61588442363562,-88.61585679232364,-88.61574345542893,-88.61552249650077,-88.61525033681816,-88.61486056541642,-88.61459685334157,-88.61418425679607,-88.61392036081681,-88.61370109555041,-88.61355624042456,-88.61340337763284,-88.6132279869619,-88.61309435483551,-88.61302477863497,-88.61308342196017,-88.61326736465222,-88.61348321321319,-88.61360261404589,-88.61375751973861,-88.61380752163878,-88.6138045977971,-88.61384374699176,-88.61399955948262,-88.61432654064762,-88.61469404481895,-88.61524324431299,-88.6153957152442,-88.61547271232014,-88.61570182628084,-88.61595103839602,-88.6163596941423,-88.61660894812539,-88.61696019130765,-88.61747161475445,-88.61784401478194,-88.6185030242809,-88.6192042321006,-88.62088641148355,-88.62146212359599,-88.62217771364456,-88.62304226151254,-88.62381899620277,-88.62443049384549,-88.62490729625762,-88.62513710241299,-88.62544298019655,-88.62578008078796,-88.62605999148163,-88.62639138269049,-88.62678366698283,-88.6271838158189,-88.62753048415559,-88.62792019063814,-88.62817454381482,-88.62844176023805,-88.62892386698591,-88.6300377084772,-88.63158999227981,-88.63390889001876,-88.63440459945761,-88.63457910242721,-88.63472537378662,-88.63485433105775,-88.63506024105718,-88.63505963887512,-88.63514374122117,-88.63524696008872,-88.63541126272997,-88.6356918807101,-88.63617414532949,-88.63721021552594,-88.63759385180288,-88.63816088152593,-88.63852445163712,-88.63898311129365,-88.6393242344882,-88.6395157712706,-88.63968251786018,-88.63988270896613,-88.64015966883824,-88.64037344778303,-88.64074441151195,-88.6408704914883,-88.64111326593948,-88.64147264627925,-88.64178152047192,-88.64229131302523,-88.64274634151765,-88.64390398160491,-88.64487960292969,-88.64533781082082,-88.64551878151808,-88.64587132809889,-88.64624412279662,-88.64651946260983,-88.64667656317006,-88.64678853649947,-88.64680297554065,-88.64685132829368,-88.64691223424576,-88.64705840194236,-88.64725789902646,-88.64745857139349,-88.64793832431128,-88.64839872493197,-88.64869813248981,-88.64897773747386,-88.64925689227418,-88.64949383775257,-88.64977497428799,-88.65001344455131,-88.6503275898683,-88.6505116368496,-88.65075888676355,-88.65108151521721,-88.65134945284638,-88.65169170834709,-88.65216059687511,-88.6523082223619,-88.65277692259011,-88.65309829323114,-88.65334354713193,-88.65362006323407,-88.65390537794205,-88.65526528708469,-88.65600557985076,-88.65655730910186,-88.65708923147729,-88.65747146269089,-88.65795283606566,-88.65835936589465,-88.6586822705962,-88.65901466597327,-88.65940165972798,-88.65967175500148,-88.65997349328801,-88.66024448522982,-88.66049379299693,-88.6608907209019,-88.661244895328,-88.66158938303403,-88.66180641669419,-88.66194733319486,-88.66215601586768,-88.66224386565673,-88.66236334873707,-88.66250472057574,-88.66267745368621,-88.66292405533872,-88.66308423260371,-88.66327517126314,-88.66342065820307,-88.66332904761566,-88.66330178868489,-88.66335127209726,-88.66342308168416,-88.66355538817785,-88.66358568396167,-88.66379571532086,-88.66418807889339,-88.66444463313722,-88.66475515143,-88.66517781193822,-88.66537376149242,-88.6656447329439,-88.66593669791521,-88.66617531150526,-88.666584156659,-88.66678754272758,-88.6671301515064,-88.66756840055804,-88.66810141327684,-88.66855992163413,-88.66900830847713,-88.66924317086874,-88.66971074082106,-88.67010373995323,-88.67043019781973,-88.67061396500544,-88.6707644959253,-88.67103220815608,-88.67120918484098,-88.67132576229132,-88.67144708507928,-88.67139945716717,-88.6711594499366,-88.67093169282643,-88.67087307288914,-88.67084373961781,-88.6707355215686,-88.67060838122646,-88.67044340398411,-88.67023873170132,-88.6698302810716,-88.66965266715999,-88.66943454605089,-88.66909719334113,-88.66896757902424,-88.66876929852033,-88.66847073415195,-88.66820315067687,-88.66802675613935,-88.66729509097351,-88.66710938029702,-88.66688763806805,-88.66676249987148,-88.66630771709862,-88.66604839782688,-88.66568132467359,-88.66550173179222,-88.66525674918485,-88.66500421724886,-88.66473899026326,-88.66454736722542,-88.66436832620515,-88.66411622094419,-88.66393751733681,-88.66381092040338,-88.663704704062,-88.6636173011633,-88.66356074796485,-88.66352614785836,-88.66354308534608,-88.66354645560888,-88.66358168560136,-88.66364486432906,-88.66370111002705,-88.66378355077273,-88.6639382640092,-88.6640540732735,-88.66417036267998,-88.66433910009812,-88.66457464908217,-88.66476495300277,-88.66494346111648,-88.66518155066848,-88.66544502842085,-88.66568831886774,-88.66600438544829,-88.66622860115896,-88.6668270366516,-88.66697454644688,-88.66719242267,-88.66725115326466,-88.66741648153749,-88.66752838478648,-88.66757395657847,-88.66751444002409,-88.66744498467799,-88.66716971791499,-88.66685372777799,-88.6667316836887,-88.66673626648989,-88.66686303827467,-88.66709456264496,-88.66725038935593,-88.66751407181339,-88.66776923421897,-88.66813037169513,-88.66850477406881,-88.66885632571118,-88.66913353666014,-88.66966503738446,-88.66998126828236,-88.67017002358972,-88.67030524122205,-88.67062965075158,-88.6710405930601,-88.67121804410239,-88.67129840930693,-88.67121855798322,-88.67104320709004,-88.67086679032836,-88.67063569022987,-88.67035957657639,-88.6702560342021,-88.67020401899141,-88.67025080475872,-88.67041218864054,-88.67060285351982,-88.67128773036643,-88.6715624319398,-88.67181951524203,-88.67214321360477,-88.67214770140512,-88.67187307603623,-88.67145953434445,-88.67113107418434,-88.67109624215675,-88.67113267465196,-88.67227179224427,-88.67364801709971,-88.67392091813188,-88.67424465852901,-88.67428986287857,-88.67446568702903,-88.67543831406503,-88.67577636712541,-88.67595914148249,-88.67586979862618,-88.67568244969722,-88.67538338974788,-88.67505882872675,-88.67472089650882,-88.67460352405487,-88.67491449612581,-88.67533489199359,-88.6757160892855,-88.67592374403006,-88.67627344332509,-88.67649528973935,-88.67685433497689,-88.67708643975179,-88.67712473846888,-88.67706145460812,-88.67705823601848,-88.6771808078193,-88.67730258258197,-88.67802206976545,-88.67858259268021,-88.67865884126275,-88.67865239811394,-88.67871801835915,-88.67885523653403,-88.67943386129572,-88.68005811456328,-88.68052822359293,-88.68105138743134,-88.68244019504081,-88.68291134697998,-88.68329704937925,-88.68384389381335,-88.68421374509815,-88.67467456450285,-88.67422042671552,-88.6745429785983,-88.67493807013923,-88.6749529782994,-88.67512401695168,-88.67543697179347,-88.67551898917893,-88.67560569938979,-88.67572498386612,-88.67574585898029,-88.67579305449058,-88.67580720356456,-88.67583499087856,-88.67563711077976,-88.67578535802687,-88.67572019448839,-88.67591118914339,-88.67587436995922,-88.6759089380693,-88.65501635955935,-88.61375346995537,-88.59308727766228,-88.57258939512369,-88.55208219695234,-88.50778734755342,-88.48744642414552,-88.46678168332936,-88.42537490267779,-88.4066842000752,-88.38570671325961,-88.36525465221315,-88.34456226196781,-88.32408275197749,-88.30349295060681,-88.28114929053342,-88.26059928839381,-88.24002194505742,-88.22969319929685,-88.21939034300009,-88.20911772456577,-88.19886820697984,-88.1885252835899,-88.17817391146066,-88.16210020916375,-88.15180345399833,-88.14143605249197,-88.10043992824031,-88.07990905036466,-88.05941366534206,-88.05892115384472,-88.05822859394337,-88.05827921457808,-88.05823386859385,-88.0582348864199,-88.05863986577747,-88.05901110223095,-88.05966811816265,-88.05990784975181,-88.06008169698654,-88.06031043519963,-88.06062650974515,-88.06099667544819,-88.06121604175839,-88.06142415514847,-88.06176432742456,-88.06192852537335,-88.06214948802939,-88.06252205297136,-88.0626436534164,-88.06285442282326,-88.06304296565372,-88.06325374751688,-88.06344308613905,-88.0636653711535,-88.0638879273754,-88.06406709369986,-88.06438875216425,-88.06451033349677,-88.06475430952939,-88.06511936077673,-88.065514967289,-88.06582216725953,-88.06621936463507,-88.06660237507411,-88.0671768636206,-88.06752747289212,-88.06796699860664,-88.06838427910782,-88.06881282160433,-88.06912322074838,-88.06955466306312,-88.06992023443019,-88.07023949315879,-88.07071143152112,-88.07113783675491,-88.07143353962142,-88.07185890632861,-88.07216319751193,-88.07256579853868,-88.07304449196353,-88.07324995080108,-88.07342408394747,-88.07359660183377,-88.07375814912149,-88.07393069212546,-88.07410241771166,-88.07429772559178,-88.0744386135304,-88.0747640958829,-88.07519054412278,-88.0755385170381,-88.07575681994733,-88.07596178412099,-88.07629558853054,-88.07651881754421,-88.07670910474626,-88.07679034653253,-88.07690349576885,-88.07699650987024,-88.07713136679995,-88.07733156182053,-88.07744472240725,-88.07770320646448,-88.07786712218717,-88.078111001266,-88.07847435590281,-88.07883771425,-88.07918308719188,-88.07949762469654,-88.07988930388902,-88.08015076105929,-88.08060911819145,-88.08092497033076,-88.08124294317656,-88.08168116968744,-88.08201118596808,-88.08239634809777,-88.08273706040262,-88.08315702262799,-88.08353095307896,-88.08387298953477,-88.08430314349887,-88.08496366080145,-88.08542808263016,-88.0859894824758,-88.08636552496328,-88.08666203685698,-88.08704746411402,-88.08745379908588,-88.08782983496361,-88.08837763755533,-88.08900284943175,-88.08942694258478,-88.08984112948269,-88.09033507482707,-88.09069408115032,-88.09106775624265,-88.09147173247757,-88.092686315479,-88.0930790586046,-88.09349273847246,-88.09385123544885,-88.09425366617475,-88.09442728078049,-88.09455671901245,-88.09480146389041,-88.09499235309465,-88.09515029538422,-88.09529620000266,-88.09546443875011,-88.09571734373381,-88.09595226604168,-88.09621889773605,-88.09654373701703,-88.09677342417612,-88.09712626246383,-88.09746038800574,-88.09760575348314,-88.09782149495047,-88.09803515434504,-88.09827966202829,-88.09853436957569,-88.09871432022814,-88.09885946379103,-88.09909220949102,-88.09940549533223,-88.09979622338408,-88.10001509240169,-88.10039638583427,-88.10074577949557,-88.10110560254058,-88.10151096923771,-88.10188023254995,-88.10222855995211,-88.10257639319269,-88.1029741852884,-88.10325037514173,-88.10342874754291,-88.10355456489148,-88.10372224058027,-88.10384439220873,-88.10390665515705,-88.10392316862831,-88.10394649017114,-88.10389263665778,-88.103872266689,-88.10379831578871,-88.10372590397796,-88.10378112960076,-88.10395718088924,-88.1041787172139,-88.10433566650829,-88.10444894663513,-88.10467128845531,-88.10492710698182,-88.10523706511466,-88.10547064708759,-88.10569275380922,-88.10581805526074,-88.10602681476779,-88.10616312376321,-88.10629603591416,-88.10632196270745,-88.10622602266245,-88.10623156085083,-88.10608250225897,-88.10594599265377,-88.1057979825043,-88.10569496166856,-88.10556891927091,-88.10549755720957,-88.10539976125398,-88.10538618313332,-88.10535979114754,-88.10528373872415,-88.10526884333261,-88.1053185470019,-88.10541721369675,-88.10577683836665,-88.10599273080371,-88.10614079334,-88.10628914812408,-88.10638150057278,-88.10653847773628,-88.1066619816058,-88.10681766501123,-88.10697413088597,-88.10731163100708,-88.10750366551487,-88.1077600366375,-88.10807083215525,-88.10826597475393,-88.1084391678186,-88.10880877758136,-88.10912582204897,-88.10946456720673,-88.1097282402538,-88.11016740223192,-88.11080485472203,-88.11122260075931,-88.11189274407597,-88.11227726347676,-88.11271564947867,-88.11304368381633,-88.11350301783381,-88.1139639313697,-88.11466367756746,-88.11507853632818,-88.11550440714244,-88.11606157890971,-88.11639985007872,-88.11676819182904,-88.11710513243912,-88.11743033302672,-88.11769065702302,-88.11799255666463,-88.11830444225909,-88.11845463501629,-88.11878847873972,-88.11917674896297,-88.11941224430285,-88.11971446594387,-88.11997191586717,-88.12030657281088,-88.12081752607381,-88.12141611142656,-88.12171014172181,-88.12237363181922,-88.12269987958686,-88.12325426176207,-88.12380134984399,-88.12424698412157,-88.12462255313858,-88.12503797286911,-88.12550220592746,-88.12592659691849,-88.12645824522126,-88.12692077179875,-88.12756025537686,-88.12787502492802,-88.1282768972715,-88.12879629420803,-88.1293044737241,-88.12964835082214,-88.12993910787429,-88.13021629214359,-88.13048401404599,-88.13073975806645,-88.13095102540616,-88.13117432181572,-88.13140705410191,-88.13167353774821,-88.13198088132157,-88.13215945745193,-88.13239191763998,-88.13248389507423,-88.13257250504128,-88.13266267949571,-88.13288895789667,-88.13306574006596,-88.13316999170257,-88.13341323581311,-88.13536657458339,-88.13569977182377,-88.13597444694776,-88.13607837556185,-88.13612384125716,-88.13608113327393,-88.1357802197937,-88.1356725808419,-88.13553174873225,-88.13534824301686,-88.13510385784799,-88.13493029381951,-88.13474702655841,-88.13458599225937,-88.1344249610342,-88.13388153299626,-88.13336162954749,-88.13293322812719,-88.13232589738827,-88.13119329119985,-88.13000695552743,-88.12943489335619,-88.12881729035495,-88.12862453278471,-88.12808491600545,-88.1265742899413,-88.12594460950166,-88.12531184254925,-88.12510809874074,-88.12508416447214,-88.12434484886253,-88.12408558750376,-88.1237151578695,-88.12309672646101,-88.12282544432205,-88.12235878068134,-88.1220593274418,-88.12191993772454,-88.1216123306809,-88.12151719345263,-88.12137702033579,-88.12125985070917,-88.12114271152409,-88.12102451640962,-88.12083884765246,-88.12074287946777,-88.12051605502873,-88.12049125315781,-88.12034423249776,-88.12012606323796,-88.11989976482624,-88.11963893216993,-88.11937706062753,-88.11912927581025,-88.11877082106055,-88.11850054171468,-88.11803847548802,-88.11781051125685,-88.11759023859776,-88.117272411245,-88.11706374796664,-88.1168448554125,-88.11667502492813,-88.11650656226475,-88.11632616623095,-88.11616667165667,-88.11589674250233,-88.11569598883534,-88.11511724173511,-88.11486578808369,-88.114569092271,-88.11425015899906,-88.11389953718925,-88.1135847154322,-88.11337014466089,-88.11304357125863,-88.11275229351303,-88.11246025164304,-88.1122037735127,-88.11187085490117,-88.11157276887297,-88.11120791456095,-88.11068993580616,-88.11016149707656,-88.10988483462373,-88.10937811386941,-88.10906693189169,-88.10854426233355,-88.10810799360031,-88.10773663002023,-88.107443247462,-88.10722943300465,-88.105633499831,-88.10454318308577,-88.10316594527292,-88.10244330569182,-88.10227159990868,-88.10210958904909,-88.10206273968782,-88.10195805185228,-88.10177299243657,-88.10169055991462,-88.10159684268964,-88.10150496375351,-88.10134345996413,-88.10118276108238,-88.10094323732703,-88.10068017497059,-88.10047547068658,-88.10019303255861,-88.10000140734196,-88.0997168607276,-88.09965874392029,-88.09948885576836,-88.0993283936722,-88.09918022495575,-88.09900954932601,-88.09877079196465,-88.09846451053451,-88.09827130349461,-88.09808859262017,-88.09783909996729,-88.09737756741943,-88.0970524251271,-88.09670605839496,-88.09618195337811,-88.09578345672082,-88.09550455234054,-88.09521610332594,-88.09508479572278,-88.09493464271438,-88.09464618900931,-88.0944950888221,-88.09432516049839,-88.0941851181173,-88.0940461290964,-88.09384734976368,-88.09290618752077,-88.09092157640735,-88.09068382543295,-88.09050157284709,-88.0902764090888,-88.08966999455897,-88.08949927076802,-88.08917326836094,-88.08907115768653,-88.08891142737961,-88.08875167596302,-88.08859169401599,-88.08841963513252,-88.08816901840335,-88.08787759249373,-88.08761861299624,-88.08738946048661,-88.08727187185688,-88.08704194395047,-88.08690444810793,-88.08681278787178,-88.08675358032215,-88.08669463991704,-88.08661239810428,-88.08654299770524,-88.08650315650581,-88.08645417195865,-88.08636822421818,-88.0863385880274,-88.08625108808782,-88.08616672039814,-88.08610119569529,-88.08600583109757,-88.08595606706463,-88.08588375118801,-88.08576455363459,-88.08566919649694,-88.08546095233686,-88.08530040194417,-88.08515920245623,-88.08497612830712,-88.08476973238115,-88.08462229516907,-88.08432843204994,-88.08408851231576,-88.08394968067827,-88.08374354331163,-88.08353475830963,-88.08343368200153,-88.08305963150681,-88.08291835807263,-88.08263781772629,-88.0824274626636,-88.08229877876369,-88.08215066948776,-88.08196370321068,-88.08182666193073,-88.08168985797327,-88.08151441977834,-88.08138807557002,-88.08108736790363,-88.08091381144968,-88.08074094863227,-88.08040384974481,-88.08019982316301,-88.08008094925458,-88.07978796948646,-88.07958324223014,-88.07926801148852,-88.07905333536479,-88.07880437197453,-88.07856477978302,-88.0783807374076,-88.07817363171746,-88.07782275971263,-88.077591278044,-88.07744750449399,-88.07708166388512,-88.07694784770008,-88.07675822138511,-88.07644606031377,-88.07624596159033,-88.07601368600629,-88.07584632890139,-88.07563578453976,-88.07541159217564,-88.07523217162513,-88.07508681882676,-88.07500797322153,-88.07464543034428,-88.07453279896748,-88.07447489213213,-88.07436451003736,-88.07433640181927,-88.07432355253788,-88.07444388156131,-88.07456841650465,-88.07474850784345,-88.07498038643352,-88.075137153035,-88.07524832066078,-88.07531087818596,-88.07533857230082,-88.07546128158177,-88.07552276818113,-88.07557112906586,-88.07572869756855,-88.07580249453368,-88.07589566115269,-88.07600008051911,-88.07602777708446,-88.07597874046715,-88.07592005546282,-88.07568138939189,-88.07561062260682,-88.07543980147246,-88.07512785073673,-88.07486043552031,-88.07442697180396,-88.07419253046639,-88.07395676741878,-88.07385434418578,-88.07371705079755,-88.07373757527562,-88.07372072969812,-88.07367313994983,-88.07343525604746,-88.07315444839814,-88.07278747945566,-88.07241163970627,-88.07204599063584,-88.07163794827386,-88.07104080666497,-88.07069876157354,-88.0702534460835,-88.07001821763252,-88.06969932818558,-88.06971201365056,-88.06973757583148,-88.06986106539374,-88.06998534705546,-88.07008062632113,-88.07025910271511,-88.07049632773064,-88.0708754744718,-88.07120015774382,-88.07172257849105,-88.07217356010003,-88.07321633083762,-88.07372993325228,-88.0742935841959,-88.0748315797414,-88.07543948530697,-88.07590126130957,-88.07608616992923,-88.0762928485676,-88.07655049552581,-88.07694042037056,-88.0772837512462,-88.07749680072912,-88.0779931585174,-88.07832440192924,-88.07835659213572,-88.07861075952495,-88.07877176157149,-88.07904893709205,-88.07919874068668,-88.07945264580283,-88.079626017481,-88.08001279444316,-88.08022326438606,-88.08065894345449,-88.08115643242215,-88.08138133360494,-88.08177335205781,-88.0825958138054,-88.08371746072523,-88.08430504526386,-88.08496649199878,-88.08526618707077,-88.08560322772388,-88.08591584618347,-88.08656472249078,-88.08725205362997,-88.08793502236212,-88.08884597924666,-88.08945109791303,-88.09052813215413,-88.09142171080748,-88.09203629070305,-88.09247000368472,-88.09278290788353,-88.09328796842003,-88.09361208162872,-88.09413000789597,-88.09438167228321,-88.09495802796188,-88.09539058328244,-88.0958708619569,-88.09632557054175,-88.09673311189565,-88.09713837155613,-88.09730632468818,-88.09747256413921,-88.09783117779649,-88.09810471384515,-88.09842597057229,-88.09877028729089,-88.09904347872829,-88.09935180291991,-88.0995155189177,-88.09988222537849,-88.10003438423981,-88.10015147183387,-88.10037493403637,-88.10052715396266,-88.10064476165768,-88.1008401244334,-88.1010253721555,-88.10117526052487,-88.10127713458824,-88.10147187423415,-88.10163098205902,-88.10172049769744,-88.10187731133898,-88.10190553057006,-88.1020022567571,-88.1019954000912,-88.10220039198495,-88.1022520443808,-88.10239480391182,-88.10251396544199,-88.10262507405481,-88.10274305407319,-88.10285330355097,-88.10292617432461,-88.10306171056585,-88.10314633680147,-88.10324478158854,-88.10329580290929,-88.10332089248891,-88.103374132986,-88.10340008644657,-88.10339131552595,-88.10331664808228,-88.10319761850995,-88.10320862224837,-88.10318103839194,-88.1031460292193,-88.10310380616113,-88.1030561413708,-88.10298310156492,-88.10277779373284,-88.10275085442684,-88.10278195708453,-88.10283610098728,-88.10300646845452,-88.10310831353196,-88.10323636357478,-88.10337649517757,-88.10354020469434,-88.10372899202183,-88.1039663214143,-88.10419220513647,-88.10435963376757,-88.10476473729888,-88.10498047821027,-88.10520693769679,-88.10569714684181,-88.1058999689792,-88.10607752303218,-88.10693854261935,-88.10710723905851,-88.10719331705749,-88.1072071922337,-88.10718913282467,-88.1071892289541,-88.10715909080362,-88.10708757217263,-88.1070703726941,-88.10701844625929,-88.10695896771487,-88.10686386320587,-88.10681587229733,-88.10677221921948,-88.10671248824447,-88.10661105617922,-88.10658813699244,-88.10652213202674,-88.10646064330065,-88.10638940117505,-88.10635811019068,-88.10629896692065,-88.10624317201659,-88.10613655098341,-88.1060827437004,-88.10593983991838,-88.10583633182728,-88.10551682640272,-88.1053635239047,-88.10517566441945,-88.10497460979391,-88.10486383917508,-88.10473761707178,-88.1046225571326,-88.10439641812977,-88.10398366785564,-88.10364709307323,-88.10343447958239,-88.10325987325582,-88.10307088131357,-88.102872336483,-88.10262123410463,-88.10228521551272,-88.10202340205537,-88.1018732152597,-88.1016980188992,-88.10136256328855,-88.10115307750448,-88.10073532926742,-88.100111771925,-88.09943532722637,-88.09908112336599,-88.09884945915384,-88.09847023953112,-88.09672294849607,-88.09617618609042,-88.09557533981342,-88.09524156562581,-88.09505023089697,-88.09498350753969,-88.09494981547788,-88.0949305548955,-88.09496514587391,-88.09491994774257,-88.09493670519926,-88.09498791939043,-88.0951839115928,-88.09646614718999,-88.09675683868016,-88.09697676288002,-88.09747034770567,-88.09797488735643,-88.09831542187086,-88.09883289944862,-88.09905485517842,-88.09935995396744,-88.09986680232323,-88.10029078359644,-88.10071305988785,-88.10104176582281,-88.10120498324817,-88.10153374839956,-88.1020650815278,-88.10272770543052,-88.10353708662153,-88.10431139013966,-88.10529315654611,-88.10569929222714,-88.10699567619334,-88.10747718727562,-88.10799437363042,-88.10829399917351,-88.10870329369567,-88.10908782537761,-88.10953365587575,-88.11106366553842,-88.11193029734159,-88.11215965980067,-88.11266479453711,-88.11296585237345,-88.11338689066393,-88.11378323905842,-88.11520932546937,-88.11688250633013,-88.11765864730963,-88.11834034356076,-88.11957271389538,-88.11990019093005,-88.12039405607746,-88.12063609120703,-88.12141749814822,-88.1217179772955,-88.12206593504011,-88.12248079156757,-88.1228118503043,-88.12295096821609,-88.12321821616182,-88.12359477152403,-88.12384685318692,-88.12404156372625,-88.12428213789673,-88.12460671431245,-88.12494055981996,-88.12511436816985,-88.12512276354813,-88.12546615281181,-88.12570621779935,-88.12601313792356,-88.12628543863248,-88.12665881148429,-88.12692666661916,-88.1272275356414,-88.12737616592821,-88.12745630733629,-88.12746274387288,-88.12738620499222,-88.12727258663864,-88.12716503771578,-88.12671509089914,-88.12635135601532,-88.12629697266111,-88.12613704076782,-88.12607417581424,-88.12605923469297,-88.12641528491319,-88.12669441315008,-88.12696308236917,-88.12718100792522,-88.12739932763779,-88.12768695682105,-88.12807809814792,-88.12886321324359,-88.12964873883193,-88.13036536202291,-88.13063809340916,-88.13096115956382,-88.13121374677691,-88.13155133005361,-88.13185466938617,-88.13244564781826,-88.13288435414499,-88.13325940973729,-88.13363365633508,-88.13399017529802,-88.1343297961502,-88.13470323946103,-88.13497598141318,-88.13529906652768,-88.13557260576501,-88.13598111127409,-88.13640572721231,-88.1368992499246,-88.13718729956072,-88.13759699867967,-88.13793663796162,-88.13831048855333,-88.13868436147648,-88.13907515671819,-88.1393317824415,-88.13974030597277,-88.13994497197403,-88.14031804356327,-88.14077571815868,-88.14113188963047,-88.14140102786267,-88.14173786607516,-88.14206991469247,-88.14237090870726,-88.14252080167749,-88.14267229653133,-88.14302767912014,-88.14336572723369,-88.14377425780626,-88.14440041358566,-88.14489156694721,-88.14618427332282,-88.14633058532394,-88.14620413495368,-88.14602211972664,-88.1460169282185,-88.14602586723295,-88.14600294665256,-88.14589500549641,-88.14583785035137,-88.1456787296494,-88.14566993780029,-88.1457828079396,-88.14584610644391,-88.14602988904265,-88.14612904033153,-88.14631199725916,-88.14702323778968,-88.14785292593463,-88.14817690890398,-88.14848554563049,-88.14884616245695,-88.14898435255488,-88.14917450744075,-88.14953710741801,-88.14969341873523,-88.15007415617616,-88.15033481026499,-88.15052576658159,-88.15073325210697,-88.15102774919121,-88.15125374898582,-88.15158249958353,-88.15180851343102,-88.15206674847155,-88.15241083425572,-88.15285964969894,-88.15320134378052,-88.15349305438573,-88.15392018690928,-88.15431343731143,-88.15474174567548,-88.1551873895165,-88.15546018175208,-88.15588532712597,-88.1561037677216,-88.15639151389847,-88.15654027122821,-88.15675674020406,-88.15718228620146,-88.15755545763253,-88.1579798115327,-88.15817895509623,-88.15856548441413,-88.15907050496575,-88.159527552364,-88.15967909708621,-88.16047111456473,-88.16104147710867,-88.16148399973999,-88.16170681670754,-88.16208518326189,-88.16256748361204,-88.16282771710158,-88.16302027362985,-88.16316280830186,-88.16321991863883,-88.16304441887996,-88.16283425490242,-88.16279060876606,-88.1629201749334,-88.16311388673999,-88.16342927833107,-88.16370683892352,-88.16396630600015,-88.16456865559016,-88.1648773026335,-88.16532255479224,-88.1656630843877,-88.16586819186554,-88.16627841484755,-88.16793305626625,-88.16987908871664,-88.17047355013909,-88.17074520531376,-88.17232431245353,-88.17268022801476,-88.1728648686434,-88.1732861309557,-88.17350268824791,-88.17373338958107,-88.17380545710498,-88.17383537182808,-88.1738625486153,-88.17388774636049,-88.17398184335157,-88.17401020278794,-88.1739893257446,-88.17411846771046,-88.17426534113956,-88.17434646202781,-88.17454764815383,-88.1746118299918,-88.17484531621335,-88.17499453797871,-88.17519417928182,-88.1754760946792,-88.17562413950077,-88.17578795033414,-88.1760899655072,-88.17666170756532,-88.17698024995848,-88.17718029140333,-88.17739451191028,-88.17757761667956,-88.17779342201513,-88.17804542621458,-88.17831475817482,-88.17897787819864,-88.1796047800446,-88.17995957346957,-88.18021396007121,-88.18050022745074,-88.18087354876606,-88.18130000415454,-88.18244941377708,-88.18281206750173,-88.18336175982154,-88.18372285127492,-88.18435643749152,-88.18459350648666,-88.18491758989434,-88.18537480332876,-88.1858312159361,-88.18613447242075,-88.1864723683708,-88.18668939992024,-88.18695721264109,-88.18738734440927,-88.18753819955276,-88.18765204794735,-88.18803683668735,-88.18832552529305,-88.18866265520536,-88.1890025143468,-88.18959602820433,-88.19008990686289,-88.19088899646921,-88.19131469325025,-88.19172505774597,-88.19211847268829,-88.19280487931741,-88.1932514416342,-88.19364645205842,-88.19412804070049,-88.19435172615837,-88.19455610404134,-88.19489836023598,-88.19549580108456,-88.19569865088125,-88.1960069760454,-88.19619602116309,-88.19641658640761,-88.19667412819635,-88.19705334557929,-88.19722582304172,-88.19745065765152,-88.19765934616079,-88.19783337420449,-88.19802627849106,-88.19825463161973,-88.19844675127713,-88.19866165001905,-88.19882067986963,-88.19908713845702,-88.19916150535576,-88.19934485297236,-88.19954084605003,-88.19975456960539,-88.20001754605588,-88.20028052295608,-88.20057696805894,-88.20092267175032,-88.20132231033111,-88.20163527922374,-88.20184590042945,-88.2019883858605,-88.20209776177524,-88.20212397833546,-88.20209630420055,-88.20208519551286,-88.20192320824988,-88.20182545523014,-88.20167923340644,-88.2016192534461,-88.20169783942741,-88.20195353864855,-88.20202983573168,-88.20207064985514,-88.2019606518852,-88.20183095702976,-88.20171746803607,-88.20163668935878,-88.20153856351033,-88.20158287125066,-88.20167531248516,-88.20183433031991,-88.2019575104093,-88.20207954390573,-88.20225315761084,-88.20244448727416,-88.20261731882914,-88.20290558516812,-88.20315962153677,-88.20339519153592,-88.20354721268809,-88.20385086635677,-88.20413956178784,-88.20444708642238,-88.2047057807611,-88.2048971071326,-88.20513960917972,-88.20538443264405,-88.20564388497681,-88.2058344508404,-88.20606272600808,-88.20630522564679,-88.20651349316825,-88.20685567423796,-88.20723445083529,-88.20757897773022,-88.20787151716293,-88.20807938083489,-88.20825297394704,-88.20851397920875,-88.2087580134025,-88.20893200005983,-88.20912564034629,-88.20933660116336,-88.209527892626,-88.2099597813453,-88.21035393775573,-88.21072807602042,-88.21096480673727,-88.21133625122552,-88.21146979385075,-88.21183968822891,-88.21200793141215,-88.21226040713653,-88.21245941633717,-88.21269461919719,-88.21292863609399,-88.21318000849723,-88.21339748551812,-88.213632664508,-88.21392099051447,-88.21420737824431,-88.21456268351839,-88.21468008968277,-88.21503770908706,-88.21541187629036,-88.21566630340917,-88.21592498045931,-88.21625103231095,-88.21657861752279,-88.21692393435079,-88.21738776503071,-88.21821230389533,-88.2185048834604,-88.21886363466612,-88.21953039407205,-88.21990456065816,-88.22026140825021,-88.22068677891332,-88.22095817596576,-88.22194678069224,-88.22266356455981,-88.22304006055036,-88.22343348422606,-88.22386346978791,-88.2243442890115,-88.22489667339566,-88.2252077101688,-88.22551951821424,-88.22571004749572,-88.22598719780794,-88.22619621190546,-88.22659498082297,-88.2269614391809,-88.22743027545577,-88.22779515169829,-88.22821089292592,-88.22855729571496,-88.22912741546092,-88.22947304576525,-88.22968052970376,-88.2300596949645,-88.230421518995,-88.23085186806701,-88.2312122086347,-88.23167684436925,-88.23243325209675,-88.23330634565687,-88.2340751107207,-88.23472303437455,-88.23537058717227,-88.23660020802222,-88.23724737996204,-88.23847172693389,-88.23944079780134,-88.24008533863187,-88.24081424817562,-88.24132285349602,-88.24169519852803,-88.24199866096122,-88.24228438882068,-88.24250197985813,-88.24283896933289,-88.24322182138295,-88.24374100563914,-88.24401019544116,-88.24419086062711,-88.24442394303539,-88.24457302705932,-88.24476915926817,-88.24519493102369,-88.24566737318241,-88.24599447846659,-88.24612466484243,-88.24625334646059,-88.24623105269806,-88.24576144321009,-88.24570104790568,-88.24568207134752,-88.24574307559212,-88.24623796819459,-88.24684951268569,-88.24761424616105,-88.2482422347996,-88.25009985969865,-88.25196362861973,-88.25272957019207,-88.25338619333949,-88.25413464739749,-88.25499685134,-88.25544183336636,-88.25560302775368,-88.25586119240994,-88.2559763098444,-88.25620607657737,-88.25658782298163,-88.25684186509162,-88.25706389475572,-88.25736536439297,-88.25766650095301,-88.25803291700534,-88.25822623161524,-88.25829923611654,-88.25832219659837,-88.25835117369522,-88.25843381811305,-88.25865982109335,-88.25893268509644,-88.25931577632039,-88.25975626779282,-88.26016327695437,-88.26075799045795,-88.26110190103292,-88.26171308982417,-88.26199649119432,-88.26251572756286,-88.26312998828762,-88.26380915033123,-88.26453427540416,-88.26533703509389,-88.26585707888852,-88.26628211324913,-88.26673859053163,-88.26755901867192,-88.26809776897876,-88.26827253039288,-88.26845354909327,-88.26857052599419,-88.26867299117292,-88.26885081888925,-88.26901162445765,-88.26935912729796,-88.2696418226557,-88.27006006149972,-88.27030873001252,-88.27086757365865,-88.271242560978,-88.27168051310913,-88.27244669742343,-88.27286831693245,-88.27346245468202,-88.27394764042869,-88.27433963733068,-88.27469974151657,-88.27484250965776,-88.2750787966945,-88.27542661417145,-88.27553759546613,-88.27575843636193,-88.27593317992275,-88.27610807023441,-88.2763610093335,-88.2766447274327,-88.27716020649342,-88.2776897675674,-88.27795477194783,-88.27845054452841,-88.27874450960785,-88.27932567947005,-88.27973671195738,-88.28006819113502,-88.28044743820845,-88.28068606090312,-88.2811611779247,-88.28138347697796,-88.28167445980569,-88.28188065082338,-88.282036031545,-88.28253327409446,-88.28276536982588,-88.28288727977703,-88.28307108293485,-88.28322443366534,-88.28350444121196,-88.28383254335047,-88.28417629289916,-88.28481885951911,-88.28513297999221,-88.28557596692242,-88.28579860033985,-88.28635625974307,-88.28646958744577,-88.28655315328859,-88.28654240470766,-88.28654779549285,-88.28658426013409,-88.2867142563327,-88.28693721028684,-88.28727302958268,-88.28751016495522,-88.28792585322245,-88.28797609750255,-88.28814913149773,-88.2886539580779,-88.28906426998768,-88.28923932685062,-88.28955510630546,-88.28985510821714,-88.29015308731137,-88.29061262643489,-88.29086687724838,-88.29121898535483,-88.29138005206518,-88.29171516146022,-88.2918745680398,-88.29220364908248,-88.29246985332043,-88.29275084938095,-88.29303250186028,-88.29334761223502,-88.29381762126447,-88.29417713634213,-88.29467804175778,-88.29492625546978,-88.29541801183264,-88.29556970593063,-88.29576415139597,-88.29582586219774,-88.29580986507301,-88.29592191313104,-88.29629537048788,-88.29641597818764,-88.2966258861731,-88.2967598097493,-88.29692383493639,-88.29709233044795,-88.29804581635935,-88.29826208951128,-88.29900679735869,-88.29943985790077,-88.29976429897587,-88.30016459545179,-88.30043861901387,-88.30072828942762,-88.30132575387297,-88.30175750883861,-88.30208228639776,-88.30282783826738,-88.30377609035321,-88.30414897240412,-88.30486475985373,-88.30556142392005,-88.30580736301403,-88.30605063241138,-88.30623316520055,-88.30647610978993,-88.30667396128347,-88.30706197073431,-88.30734201637249,-88.30785584480898,-88.30808712897819,-88.30856469380907,-88.30870213295172,-88.30918055814634,-88.30961434788303,-88.30997127025775,-88.31018908806161,-88.31053467630824,-88.3106923977479,-88.31114714696552,-88.31142918607345,-88.31197712965469,-88.31232138376416,-88.31282023365033,-88.31309994762955,-88.31331612845077,-88.31357689030683,-88.31397628432865,-88.31428464215955,-88.31496541640246,-88.31564421498184,-88.31671206100481,-88.31734462091102,-88.31768691322583,-88.31814841572151,-88.31833264935848,-88.31854190460804,-88.31854524415593,-88.3185466358493,-88.31864737422856,-88.31881317210939,-88.31901306978517,-88.31926003957831,-88.31989972291323,-88.32014900779762,-88.3205593171968,-88.32071836861537,-88.32094247693844,-88.32108226624993,-88.32108209977856,-88.32116277652362,-88.32106036153074,-88.32086806234791,-88.32074868565655,-88.32052132310412,-88.32029296329084,-88.32017525638292,-88.32027470888012,-88.32038864040226,-88.32048511681903,-88.32061418464691,-88.32085128695007,-88.32132675955893,-88.3215328809646,-88.32188225710388,-88.32218289696932,-88.32251874283708,-88.32266263720634,-88.32282397896211,-88.32295354006689,-88.32309875574938,-88.32322833326414,-88.32334289683511,-88.32337861328018,-88.32359230631917,-88.32375494653093,-88.32404386848698,-88.32423353442184,-88.32466024331704,-88.32484759917119,-88.32505338615439,-88.32533935135528,-88.32545226139823,-88.32547218481771,-88.32550723407861,-88.32549604105672,-88.32547065923984,-88.32544282795595,-88.32570029380669,-88.32581125049799,-88.32600056611939,-88.32642792339902,-88.32664737329343,-88.3267576720022,-88.32727477094581,-88.32741322687899,-88.3275963304629,-88.32790386121677,-88.32808809216615,-88.32834971939153,-88.32861181413156,-88.32888956641956,-88.32915085910768,-88.32930431852854,-88.32968973718464,-88.32995136825852,-88.33011571597059,-88.33011046185358,-88.33002768142099,-88.32992877820396,-88.32976614348357,-88.32958984531004,-88.32935178840208,-88.32920776150021,-88.32879519639364,-88.32863585245767,-88.32849425504888,-88.3281431215806,-88.32800021707595,-88.32769336301132,-88.32762491129117,-88.32760335208467,-88.32758197933931,-88.32765461592464,-88.32815813572411,-88.32844564192459,-88.3285650458604,-88.3287573934162,-88.32884550312569,-88.32875843433472,-88.32868834253388,-88.32860555520874,-88.32850578679535,-88.32834479037109,-88.32823233958412,-88.32814921189534,-88.32808107840108,-88.32803978721878,-88.32806402452617,-88.32819625565276,-88.32823711659923,-88.32811566886403,-88.32818567444926,-88.32825798061198,-88.3285157091461,-88.32873043839189,-88.32897546898826,-88.32932754169518,-88.32952516847696,-88.32976758604541,-88.32988830712441,-88.33008134023406,-88.33021753081036,-88.33040033963259,-88.33064736109476,-88.33084891611142,-88.3310819219919,-88.33145358652943,-88.33213418129114,-88.33236654646311,-88.33262413176899,-88.33272807971969,-88.33306486398035,-88.33409157402539,-88.33435145041662,-88.33476468146904,-88.33491623058642,-88.3354300127166,-88.3356790108044,-88.33617830292356,-88.33641001266362,-88.33661192109719,-88.33704324968222,-88.33741431113286,-88.3377081145111,-88.3383956385693,-88.33911264266008,-88.33993752206986,-88.34036772554842,-88.34065208870105,-88.3409669095663,-88.34121785631768,-88.34172787081054,-88.3419767582976,-88.34241887095261,-88.34268664273812,-88.34267526906189,-88.34265467145015,-88.34257338531889,-88.34246006383114,-88.34242128489394,-88.3424595976623,-88.34247069216158,-88.34257679111035,-88.34257645563106,-88.34297606223409,-88.34315989888017,-88.34343842522394,-88.34360808006311,-88.34380999424855,-88.34402462989773,-88.34417718753011,-88.34434505032641,-88.34460304831262,-88.34472578213591,-88.3449823217866,-88.34513554020651,-88.34528840469635,-88.34573676889742,-88.3461114342234,-88.34634644480163,-88.34659579107625,-88.34687690720273,-88.34717174050297,-88.34745125117324,-88.34782235597145,-88.34808654593088,-88.34851667782111,-88.348668916341,-88.34884856003431,-88.34898288964202,-88.34911672940162,-88.34920510094119,-88.34930960175708,-88.34949361501711,-88.34961571464818,-88.34992279881462,-88.35002874968015,-88.35015085020417,-88.35056534749943,-88.3507488964925,-88.35129036590902,-88.35159955637069,-88.35195860353467,-88.35228621592989,-88.3525981533955,-88.35284753525814,-88.3533433628201,-88.35349659286858,-88.35381740632997,-88.35384466026316,-88.35388626845406,-88.35403400019844,-88.35409465893937,-88.35423111118978,-88.35441579887372,-88.35455323363414,-88.35484889012461,-88.35523828510966,-88.35555121677594,-88.35597336134865,-88.35611320597283,-88.3563000043186,-88.35689118568368,-88.35704507197551,-88.35741430536042,-88.35750528697513,-88.35759707053543,-88.35770337677656,-88.35782644356729,-88.35793420496464,-88.35804131728199,-88.35819585678654,-88.35841281687659,-88.35858203660439,-88.35870478887109,-88.35890094513984,-88.35892789734635,-88.35904807565716,-88.3592131084617,-88.35930425269763,-88.35945750301038,-88.35970142496392,-88.35988565741829,-88.36007101398481,-88.36039671077476,-88.36062883471747,-88.36100068309167,-88.36131072851337,-88.36171210123455,-88.36185051909345,-88.36206555063971,-88.36239045551076,-88.36256340789396,-88.36347325733834,-88.36395683280033,-88.36445936755756,-88.36486670927745,-88.36538740246337,-88.36594762506445,-88.36635217763708,-88.36673936770495,-88.3673778412994,-88.3678416831624,-88.36836479704604,-88.36869832828157,-88.36944081047589,-88.37006794973239,-88.37045874889296,-88.37110364220284,-88.37158765382999,-88.37215945419764,-88.37243081431217,-88.37265667431291,-88.3728363048324,-88.37306306457586,-88.37334668169544,-88.37345648061699,-88.37352434773109,-88.37361595796477,-88.37391416840151,-88.3744119955869,-88.37487988451799,-88.37509295994793,-88.37529148192777,-88.37566721113821,-88.37594938105984,-88.37640049300366,-88.37675740937304,-88.37700364809243,-88.37727784775035,-88.37742893775281,-88.3776576364267,-88.37782594251749,-88.37820890711835,-88.37862571959106,-88.37913819486155,-88.37935267301684,-88.37955149591036,-88.37971695802878,-88.3798375480731,-88.38006562074389,-88.38032865531466,-88.3808392755998,-88.38114118326629,-88.38134701468512,-88.3814768277315,-88.38157581507372,-88.38167542630556,-88.38179054466079,-88.38209375392923,-88.38237719248292,-88.38266064690553,-88.38297554554666,-88.38317819699586,-88.38355268712073,-88.38375533904305,-88.38400541537278,-88.3842554917493,-88.3845376685171,-88.38480767287614,-88.38499989742037,-88.38511467858999,-88.3852005513799,-88.38520562173012,-88.38512990672217,-88.38502399258657,-88.38495083108209,-88.3848460529249,-88.38474426216139,-88.38470192697469,-88.38456647051697,-88.38449519227318,-88.38439295353481,-88.38438316904467,-88.38443407679914,-88.384612723044,-88.38473997992089,-88.38497770181885,-88.38528170383086,-88.3854906846863,-88.38573095647735,-88.38610021520024,-88.38629133055946,-88.38647137879867,-88.38666724932425,-88.38675038633856,-88.38688318119786,-88.38696409504479,-88.38704486910004,-88.38730442601202,-88.38746375145914,-88.38752919842779,-88.38772266798017,-88.38782146497147,-88.38787269037414,-88.38792547844361,-88.38790035503459,-88.38793718323974,-88.38803581032127,-88.38820051369296,-88.38845530853496,-88.38864767974542,-88.38886815656477,-88.38908976766953,-88.38930929748585,-88.38952913680482,-88.38979625372166,-88.39000014717301,-88.39031468192584,-88.39059822544415,-88.39092983386213,-88.39121335927209,-88.39153072509703,-88.39173808681117,-88.39200962743573,-88.39232712763514,-88.39256784425362,-88.39288489256609,-88.39313839270001,-88.3934040604484,-88.39373423575857,-88.39414641910467,-88.39449522526773,-88.39481114761998,-88.39511190544174,-88.3955199824571,-88.39592681168854,-88.39669113669162,-88.39706556938688,-88.39747080472723,-88.3979855635551,-88.39825204989614,-88.39853447859521,-88.39867670345423,-88.39891328990731,-88.39931728280713,-88.39970658030674,-88.3999373393852,-88.40024714175127,-88.40061780526688,-88.40102180428102,-88.40166018919457,-88.40201804258268,-88.40238980102401,-88.40259384416102,-88.4029695310995,-88.40333144092949,-88.40372608548016,-88.4041507348732,-88.40451422460052,-88.40490915702627,-88.40511617162637,-88.40532193013216,-88.40554301082432,-88.40588941031781,-88.40621893762486,-88.40667333743468,-88.40695402050576,-88.40729935562807,-88.40772369870164,-88.40884088219144,-88.40924968997106,-88.40986381950981,-88.41014903993545,-88.41046480060412,-88.41082857252303,-88.41108265547905,-88.41127680700677,-88.41143808227281,-88.41160172502678,-88.41168619567887,-88.41180149670875,-88.41199484915595,-88.41215785971097,-88.41268181080075,-88.41287253980997,-88.41315942639518,-88.41338410081342,-88.41363909797485,-88.41381493001312,-88.41400719584213,-88.4141226117367,-88.41431768389477,-88.41441684230243,-88.41457734440776,-88.41497472049292,-88.41524191733265,-88.41563147124107,-88.41590337259588,-88.41646630049659,-88.41685589223663,-88.41721342111812,-88.41747627448235,-88.4176764007028,-88.4179079854198,-88.41830949289852,-88.41850900225204,-88.4188799896089,-88.41911282321819,-88.41959225480939,-88.42005401925545,-88.42065908907908,-88.4210141415474,-88.421290356648,-88.42142777080592,-88.42173431863223,-88.42197938774834,-88.42213120661293,-88.42259287427885,-88.42296202131308,-88.42303407363859,-88.42296619764051,-88.42275707264915,-88.42263335318279,-88.42246649543789,-88.42227206607018,-88.42225084607354,-88.42226214566571,-88.42227191077926,-88.42225626676034,-88.42237508730835,-88.4225100518474,-88.42273745744237,-88.42288835965957,-88.42302331181618,-88.42306421703708,-88.42315096470834,-88.42328654213888,-88.42354356065805,-88.42388240464018,-88.42415958121266,-88.4244353317943,-88.4246840127709,-88.42490167945856,-88.4250550640925,-88.42533192788112,-88.42549879081223,-88.42570842418286,-88.42589994304032,-88.42600439900527,-88.42621711209203,-88.4265590705497,-88.42684058263588,-88.42720805968852,-88.42743067059713,-88.42777613630109,-88.42812026012989,-88.4283354469822,-88.42865880946435,-88.42887606504549,-88.42907809185837,-88.42907778956214,-88.4293602253822,-88.42976706503295,-88.43001744026968,-88.43046982508015,-88.43067002759535,-88.43100624828654,-88.4312045927246,-88.43160867631057,-88.43196689311434,-88.43237313829695,-88.43262379905201,-88.43295149818137,-88.43332461504428,-88.43363402326379,-88.43397108698677,-88.43412326100027,-88.43408319034261,-88.43396980529552,-88.43387070060129,-88.43372245904398,-88.43370067552294,-88.43375775706654,-88.43392250629455,-88.43410288155634,-88.43430113209412,-88.43441909580291,-88.4346324908181,-88.43489592059008,-88.43516163850801,-88.43539790432597,-88.43554012374285,-88.43572991800774,-88.43591830194512,-88.43619983483431,-88.43646542516767,-88.43662160310826,-88.43688486528737,-88.43728774439049,-88.43765948467949,-88.43815890557974,-88.43842368672296,-88.43874955932793,-88.438931702529,-88.43901829424802,-88.43909023756353,-88.4393018053627,-88.43960991054827,-88.43987102165552,-88.4401959926109,-88.44047538962997,-88.44081864381135,-88.44116107767506,-88.44153681780836,-88.44192807958231,-88.44244469743788,-88.44288285964062,-88.44332365340726,-88.4438265786827,-88.44418729118385,-88.44457976408259,-88.44484793327766,-88.44524193244261,-88.4459490581491,-88.44643694586313,-88.44678445065976,-88.44736682921412,-88.44782356413099,-88.44826605666275,-88.44860830296385,-88.44906137428528,-88.44940401780639,-88.44979019386024,-88.45013040637895,-88.45057769484437,-88.45091376023798,-88.45122068214012,-88.45145087774354,-88.45169762319689,-88.45194375913647,-88.45209751893752,-88.45221861280872,-88.45252495010442,-88.45274235420432,-88.45300675962092,-88.45317435026192,-88.45329513494396,-88.45332174131713,-88.45342538244437,-88.45362139841956,-88.45383578562895,-88.45417248269678,-88.45443082180178,-88.45444007717364,-88.45440152527156,-88.45423530489897,-88.45409780287572,-88.45408809296939,-88.45401604610116,-88.45394148916318,-88.45390029669078,-88.45379760410573,-88.45382969117107,-88.45386159541633,-88.45408767984055,-88.45425700192246,-88.45464143214686,-88.45496677641007,-88.45535444035046,-88.45563330501147,-88.45617336064268,-88.45667046877456,-88.45712178632678,-88.45746308017642,-88.45774285600552,-88.45798874367155,-88.45823249269219,-88.45841444586989,-88.45870742991734,-88.45922291506903,-88.45969340927448,-88.45984882020284,-88.46036581970849,-88.4609128693759,-88.46138185062843,-88.46178882037377,-88.46191568841365,-88.46207434059045,-88.46224800742296,-88.46268522800668,-88.46302260758161,-88.46326759636305,-88.46351431345434,-88.46383606179167,-88.46417315719282,-88.46451286678479,-88.46500830807911,-88.46541073695377,-88.46593106520592,-88.46640258153145,-88.46692258942316,-88.46739108963172,-88.46787451527364,-88.46824699752119,-88.46885369398998,-88.46921115585904,-88.46975782211837,-88.47027222739352,-88.4706158681405,-88.47096049769284,-88.47119770487731,-88.47135843617448,-88.47154924184446,-88.47166258492537,-88.47185417899124,-88.47206022356799,-88.47232867340702,-88.47261417208388,-88.47289877189456,-88.47323106361054,-88.47364343352929,-88.47389685520312,-88.47416730908546,-88.4744231244876,-88.47466422854849,-88.47477883988478,-88.47483192846026,-88.47485524945645,-88.47492516581413,-88.47505532301788,-88.47509157936581,-88.47525618670983,-88.47529664369878,-88.47529229985729,-88.4753068235931,-88.47515748211174,-88.47482285999625,-88.47455115800378,-88.47429261173829,-88.47407826424333,-88.47400649825968,-88.47394896349735,-88.47401789178581,-88.47412980987748,-88.47427878560624,-88.47437656284819,-88.47437895838669,-88.47454086567467,-88.47460688336731,-88.47473761818171,-88.47489683792364,-88.47508810564099,-88.47526294709826,-88.47548487014524,-88.47573876915884,-88.47596039798489,-88.4761654961987,-88.47638681568374,-88.47671816188534,-88.47698678314956,-88.47746089459272,-88.47782399319155,-88.47835923824859,-88.47900420038764,-88.47960234928858,-88.47991636284924,-88.48040122392933,-88.4807889129488,-88.48111367415602,-88.48178093584502,-88.48248165658097,-88.48313688326253,-88.4836214427287,-88.48388686483875,-88.48432911511352,-88.4845671513667,-88.48485495702845,-88.48502977570135,-88.48512631819648,-88.48525549806185,-88.48566749514157,-88.48604916775065,-88.48650553165405,-88.48688236342096,-88.48736752535612,-88.48773908922668,-88.48812718368856,-88.48867377021027,-88.48906216898509,-88.48943840510985,-88.48982650319412,-88.49018394105759,-88.49058638715238,-88.49095887009078,-88.49153486589138,-88.49206325097417,-88.4924336621674,-88.49275727908403,-88.49293815860659,-88.49299435738152,-88.49309638240491,-88.49306107197907,-88.49310461460436,-88.49317577603216,-88.49338841203119,-88.49360232088516,-88.49377209482819,-88.49400450585424,-88.49485069846669,-88.49513108035276,-88.4954871467293,-88.49576606973987,-88.49624711544917,-88.49670896912322,-88.49737427637217,-88.49766638802473,-88.49801951671247,-88.49815570100276,-88.49819364302172,-88.4979273058986,-88.49788876268798,-88.49762625377522,-88.49741761755735,-88.49711066456109,-88.49702677923936,-88.49689286968179,-88.49690436027406,-88.49695695411472,-88.49701407570859,-88.49722498381799,-88.49739063830991,-88.49756178511606,-88.49789816459602,-88.49832878113121,-88.49878396009818,-88.49976452358854,-88.50041930528799,-88.50061091772064,-88.50075272047742,-88.50084586602074,-88.50094340445366,-88.5010372062813,-88.5010386877271,-88.50101001608886,-88.50089877627263,-88.50080101565497,-88.50077983853802,-88.50084339438001,-88.50099731194534,-88.501210290191,-88.50124107684215,-88.50181977112688,-88.50198563116965,-88.50239851838479,-88.50261696055831,-88.50271508579023,-88.50294231807371,-88.50314776934496,-88.5030998307912,-88.50286022908003,-88.50262101694513,-88.50263882908887,-88.50252672307657,-88.50252192723556,-88.50344483943766,-88.5038617468562,-88.5041855423586,-88.50443218612429,-88.50475518466044,-88.50487552702752,-88.50520254216811,-88.50549275400488,-88.50576556595138,-88.50601620729498,-88.50622247400116,-88.50644974536145,-88.50661206382232,-88.50662151656195,-88.50659415544568,-88.50642069211034,-88.50637276075881,-88.50610577952015,-88.50597388503762,-88.50596750893205,-88.50595914857333,-88.50606676769119,-88.50612016755176,-88.5061090210822,-88.50610026729366,-88.50617744177511,-88.5061472948307,-88.5061361480181,-88.50620855345613,-88.50624536509955,-88.50642230753101,-88.50658545428126,-88.50672799990924,-88.50722934841208,-88.50764673186478,-88.50804673857483,-88.50878375709223,-88.50924353852302,-88.50983322957507,-88.51031997868866,-88.51074495291121,-88.51117070306053,-88.51478228935181,-88.51575856032872,-88.51684178020628,-88.51741764224901,-88.51795072474394,-88.51848261510956,-88.51988504388679,-88.52092940890854,-88.52135555712096,-88.52235636485416,-88.52284273081683,-88.52332988676201,-88.52356079081723,-88.52408362468249,-88.52424883495657,-88.52483662420093,-88.52565573686049,-88.52635125065974,-88.52753906593462,-88.52814659401727,-88.52852045230951,-88.529031357425,-88.52968294939893,-88.53019743564053,-88.53054267222845,-88.53082409924929,-88.53121603829617,-88.5315705846384,-88.53194927856943,-88.53273192737363],"lat":[46.02117633166969,46.02121158784118,46.02114389653762,46.02101499629777,46.02085438737521,46.0206471790157,46.0202327507654,46.02003852771083,46.02003444690896,46.01982287577114,46.01965119973275,46.01913400438917,46.01895229058989,46.01877562491604,46.01852619393876,46.01827754411848,46.01805978638765,46.01791679309603,46.01795149696602,46.01800136809039,46.01805422820131,46.01804421618426,46.01791639992771,46.0176431150711,46.01752692393332,46.01729236366906,46.01705698851765,46.0167926362356,46.01658732901538,46.0164416041773,46.01603316002331,46.01572654949803,46.0153771487828,46.01473575106938,46.01451798799084,46.01411438693916,46.01394468540408,46.01378029331502,46.01359557604497,46.01353409232343,46.0134521947599,46.01342689240411,46.01351657298979,46.013630968333,46.01379917307861,46.01383141711499,46.01376802426379,46.01369156855056,46.01349180311678,46.013256267057,46.01308830006953,46.0129538050111,46.01288832480483,46.01288082865853,46.01296233922515,46.01297837788908,46.01292450192954,46.01288067095809,46.01290602092919,46.01303698062568,46.01325862672786,46.01352053857094,46.01377751642672,46.01412698353825,46.0144436058766,46.01466497074983,46.01488618734381,46.01500448930809,46.01502128019519,46.01500424134368,46.01497886289898,46.01492564543972,46.01488217340469,46.01458173317182,46.01435010851242,46.01410661428272,46.01412737628326,46.01418057462926,46.01429984820957,46.01445243161857,46.01460564848266,46.0147935251848,46.01494610503062,46.01515957182256,46.01529049116427,46.01537488067088,46.01553030414097,46.01566044308665,46.01575726633722,46.01578856455733,46.01576085785899,46.0155820607143,46.01540547591573,46.01525097749066,46.01517626592117,46.01496804030837,46.0147584402102,46.01460715621403,46.0143881394131,46.01425626839486,46.01403539772141,46.01376733925982,46.01346168799414,46.01294857409715,46.01248060617381,46.01208267589725,46.01174292136659,46.01161997792286,46.01139786456931,46.01114062848275,46.01104099191235,46.01086068718739,46.01055401283477,46.01039701557889,46.01017325149667,46.01001825420119,46.00988452159326,46.00979776561952,46.00975839768061,46.00977511103279,46.0098518838748,46.00986579139263,46.00982269161786,46.00977876835187,46.00965504823722,46.00934856781442,46.00906539280221,46.0084393395514,46.00789437166849,46.00760975937725,46.00739575284549,46.00716973496695,46.00704780020536,46.00691445356873,46.0067827414688,46.00676437496983,46.00678336230796,46.00673225840133,46.00659829762412,46.00636656875063,46.00616460896275,46.00603106242225,46.00581494026563,46.00576671853931,46.00560433493688,46.00538295993823,46.00513889037048,46.00507332433709,46.00524008338071,46.00535747764805,46.00553163441347,46.00590197731875,46.00615536715187,46.00742940946286,46.0084172545987,46.00871473770184,46.00908204061911,46.00935808978249,46.00984440676586,46.01005326419036,46.01014776194038,46.01062363442816,46.01077472830316,46.01090190858867,46.01148950738183,46.0118337534923,46.01223455305001,46.01256577646348,46.01290876838598,46.01334269496402,46.01373185225842,46.01394952577151,46.01437559429545,46.01460553133722,46.01480151635399,46.01520756030868,46.01536985597723,46.01549889329339,46.01565917050711,46.01581131367346,46.0160201581199,46.0162984132912,46.01657748062151,46.01702906779149,46.01742587231419,46.01768348009632,46.01783793983613,46.01791178279376,46.01793087802992,46.0179493640927,46.017886184824,46.01788900177099,46.01772512003207,46.01749021089081,46.01720996903567,46.01691749930718,46.01670685489173,46.01659674371017,46.01648579917781,46.01632853496545,46.01614757556665,46.01594195162309,46.01520112300074,46.01417742715314,46.01317642902893,46.01277963976332,46.01246285861773,46.01214668699393,46.01186365084541,46.01170694021436,46.01150489272388,46.01103751753836,46.01045495761822,46.01019037820031,46.00997094622178,46.00969431396066,46.00906460097049,46.00872237168118,46.00840082546062,46.00809424617803,46.00761624071717,46.00734541051771,46.00707478409327,46.00661619266413,46.00606186074444,46.00590618408009,46.00580746500754,46.00574803304384,46.00571871235478,46.00533710735386,46.00510097098728,46.00487527738493,46.00469010051506,46.0044997267379,46.0042586111563,46.0041880047784,46.00407106613848,46.00379068866878,46.00343340657692,46.00320433184983,46.00264721709961,46.00234588118226,46.00145446407717,46.00085965973662,46.00036279970568,45.99996157464084,45.99925806738153,45.99894566355407,45.99864804001879,45.99837365103241,45.99824119840369,45.99814694176266,45.99809018468193,45.99800322906526,45.99796087887161,45.99791840042683,45.99774320830997,45.99757427459159,45.9971830035817,45.99699906499868,45.996755780892,45.99657906026721,45.99649042925611,45.99617983198767,45.9959502603688,45.995714317884,45.99551260446966,45.99538465146232,45.99524151291807,45.99515132507588,45.99503984111417,45.99492010319607,45.9947937078779,45.99469775587002,45.99458895942865,45.99449663418967,45.99441763822782,45.99421202123758,45.99389381251135,45.99364870750597,45.99346217535295,45.99328191944872,45.99314535979624,45.99292605224539,45.99269800391065,45.99256092418759,45.99240685019627,45.99227708298868,45.99207303805198,45.99186258046179,45.99158508840448,45.99133713372709,45.99109756347173,45.99091052143158,45.99069522590543,45.99060070297178,45.99052119224045,45.99042588680303,45.99023369320732,45.98994403658013,45.98960873511905,45.98933357152855,45.98910482459458,45.98884046260241,45.98866603615529,45.98848649487435,45.98839158708439,45.98828113926704,45.98808984515355,45.98796629512275,45.98775916755655,45.98769862058401,45.98775518913243,45.98782832012457,45.98787782864972,45.98801967787211,45.98818453642456,45.98842817595256,45.98848012633453,45.98848875719113,45.9885436174649,45.98865760387321,45.98856821330472,45.98831293721337,45.98809238061777,45.98779792186905,45.98757864913959,45.98748526091725,45.98749656021312,45.98759071437834,45.98785653696913,45.98809865288317,45.9882974042368,45.98838933878515,45.98838522901528,45.98833926639931,45.98823336912939,45.9881175255913,45.9881008317372,45.98792787396199,45.98778876388127,45.98748505786946,45.98703207575564,45.98646863312721,45.98606641966548,45.9856652137135,45.98540543635001,45.985221200955,45.98509798349857,45.9850441106664,45.98507897525347,45.98509817661164,45.98507568283561,45.98505751517634,45.9850776027074,45.9851193566131,45.98517339057403,45.98531713219653,45.98544608357008,45.98547188250968,45.98547442642024,45.98558290310935,45.98567384925634,45.98581061641929,45.98596396060383,45.986004759171,45.98614526197557,45.98631436090083,45.98662624722349,45.98689096117061,45.98696333201782,45.98698798053571,45.98699215897962,45.98702639088057,45.98711909353019,45.98726214726619,45.98750198635717,45.98777048376051,45.98797187804067,45.98812167009928,45.98824996847758,45.9884087144888,45.9884859067466,45.98853602321248,45.98851896739611,45.98848538122103,45.98843637082363,45.98837273211571,45.9882860918884,45.98814090680673,45.9880244682596,45.98784929378103,45.9877474018728,45.98766819216751,45.98757524766661,45.9875412830346,45.98753744662925,45.98760260465959,45.98767128786359,45.98774431838235,45.98770310359409,45.98770599422462,45.98778407007879,45.98789881166292,45.9886596088637,45.98898164816058,45.98915914559742,45.98925484029486,45.98933358458177,45.98931730062623,45.98929226049244,45.9892212358033,45.9891581957806,45.98907329278083,45.98894989488635,45.98881955172967,45.988659034465,45.98852751061175,45.98846522402848,45.98840243335025,45.98827258797878,45.98814068565534,45.98805289374579,45.98783201420587,45.98773628854352,45.98763361984479,45.9875604566991,45.98745840791027,45.98743879359159,45.98745585889497,45.98750253147878,45.98766061315716,45.98791268284458,45.98817337398573,45.98833033811206,45.98846505774443,45.98873493033913,45.98881741652824,45.98897625559185,45.98907028457833,45.98907328347156,45.98904709774742,45.98882083750379,45.98865942901236,45.98849889931267,45.98833804949723,45.98821426684888,45.98809246969946,45.98805771739774,45.98803921351491,45.98803701013779,45.9880876659826,45.98811550836835,45.988128045362,45.9881605948451,45.98824816620778,45.98834949616622,45.98843261268417,45.98847581549173,45.98849162986807,45.98856787288705,45.98862505895845,45.9886770423122,45.98880052099052,45.98890234398007,45.98905087730679,45.98922711139787,45.98945087615195,45.98959735592009,45.98970185090977,45.98978756595447,45.9898357120974,45.98985639212928,45.98986063966831,45.98986363546023,45.98990665943922,45.99000848635501,45.99009641566575,45.99025442907495,45.9905220848452,45.99064216237685,45.99062773078736,45.99051400620393,45.99051802727962,45.99057732137515,45.99061298684539,45.99086588008682,45.99097760965019,45.99120733163699,45.99129242969278,45.99134469624003,45.99144243769214,45.99153103054901,45.99157941833185,45.99164145513024,45.99172119840058,45.99176917588227,45.99183182195225,45.99188570957149,45.99196287696396,45.99209947099592,45.99219582042522,45.99229671003167,45.99242500945365,45.99260430375477,45.99272879884664,45.99283971116339,45.99296893340142,45.99311306200303,45.99319710753633,45.99329465779146,45.99339282281864,45.99346476571835,45.99347149157251,45.99343195110966,45.99339816745333,45.99338268101479,45.99336752098867,45.99338021278466,45.99341995679309,45.99353775640471,45.9936463577904,45.99391666198417,45.99412604746394,45.99436648401348,45.99461361608018,45.99493422487392,45.99519454055885,45.99543167864735,45.99587061654109,45.99615663158141,45.99643253632388,45.99661147193175,45.99687790167985,45.99715173857111,45.99728406397155,45.99742889332312,45.99749149706989,45.99757783682664,45.9975822000965,45.99763073768232,45.9976491534903,45.99776672308478,45.99794197490405,45.99811517842417,45.99826582188863,45.99853792106062,45.99880315213506,45.99897678638482,45.99919373200198,45.99939362470258,45.99957047057069,45.99979174001549,45.99997074686392,46.00014192046101,46.00042085293116,46.00087364253253,46.00121170428741,46.00141608976909,46.00154375295698,46.00183129442703,46.00192167920886,46.00217499335666,46.00254552192938,46.00293146732632,46.00341092289369,46.0039270142483,46.00432821358485,46.0046366359363,46.00486825857902,46.00641550671266,46.00675944422879,46.00692630588763,46.00729682927643,46.00770237147503,46.00787823249873,46.00832377969811,46.00863652431753,46.00913028856611,46.009389703883,46.00969635933283,46.01004953464048,46.01028709335291,46.01054362694925,46.01079315251843,46.01112471146813,46.01150591405552,46.01177078283076,46.01176362613541,46.01162310696557,46.01159642607706,46.01163939760144,46.01175796409611,46.0119125411313,46.01223019791317,46.01236516584709,46.01247290280813,46.01258006766513,46.01260808105916,46.01290370305816,46.01319372052217,46.01346422335709,46.01359042488617,46.01365951338464,46.01377195627402,46.01373135303947,46.0137559088889,46.01385813955515,46.01426005655209,46.01427504796034,46.01413426598103,45.99696284692105,45.98237686838107,45.98239250345233,45.96822166077744,45.95368121624696,45.93943634931002,45.93222655587423,45.92505963309011,45.91065454211,45.89626136330826,45.88203865039566,45.86759127112299,45.85331596972215,45.83863872721591,45.82882367504924,45.82417908932072,45.80944774281453,45.79470237062574,45.76597294634688,45.75174888030032,45.73723991849649,45.72293767004184,45.72298081351689,45.72292303177068,45.72280739641062,45.72274019187339,45.72278676089784,45.7227134936989,45.72275510915767,45.72265317446961,45.72249270822475,45.72222878740895,45.72195423485211,45.72206588643046,45.72166409536725,45.72124311469967,45.72086745129984,45.7202878476439,45.71986623089114,45.71954759766768,45.71921761383615,45.71906261658263,45.71886778623144,45.71860601488982,45.718354781866,45.71806984552352,45.71701534910903,45.71654663517985,45.71620354523686,45.71480657096576,45.71413885549497,45.71303939578601,45.72767067914919,45.75638967487971,45.77085465887417,45.78070379072846,45.78070379526977,45.78073374464234,45.78080924750859,45.7808513493986,45.78089367803125,45.78095794981122,45.78101583873151,45.7810825249915,45.78116587956738,45.78116960346438,45.78117313594543,45.78119409666796,45.7812120723154,45.78116969133218,45.78118388579668,45.78115501007085,45.78110514427411,45.78104702297472,45.78097352879391,45.78089235463219,45.78081174235665,45.78072325363285,45.78063403328818,45.78053935059206,45.7805110335001,45.78043078667309,45.78035990162626,45.78035872637586,45.78035661362451,45.7803093351271,45.78032369616813,45.78024115905902,45.78023921778864,45.7802466534784,45.78024639889582,45.78022270474197,45.78012781833033,45.78004341427881,45.77995733515577,45.77993178703961,45.77993188586522,45.77997002734273,45.77999808521857,45.78008964901146,45.78017185651041,45.78027090733013,45.78040162222696,45.78048215693623,45.78053853806652,45.78061851893453,45.78071350142763,45.78081598148585,45.7809190114839,45.78099093582968,45.78103212892621,45.78115293628319,45.78121356867717,45.78131168957703,45.78134630722125,45.78144145586711,45.78162428251224,45.78184293770735,45.78206103289338,45.78224692151728,45.78246371746855,45.78263461481593,45.78287484351144,45.78310886016527,45.78334872567408,45.78357134609983,45.78383175139903,45.78408169050527,45.78436457994786,45.78464746706494,45.7848220424363,45.78493477517375,45.78504880937029,45.78511508241386,45.78518410779616,45.78525860793989,45.78527126425755,45.78529437553676,45.78528416752965,45.78526025483906,45.78524291194479,45.78516557436036,45.78514091265357,45.78510839744141,45.78503854384467,45.78498042275682,45.78489595318746,45.7848440428353,45.78478115224074,45.78476305403709,45.78473125374471,45.78472287217511,45.78465997543086,45.78467645751211,45.78470998544896,45.7848172113899,45.78490852224402,45.78492465880656,45.78500716578249,45.7850134116684,45.78507416912822,45.78517884172594,45.78526246854135,45.78536894394573,45.78549025327275,45.78559653939389,45.78564556617293,45.78571691713458,45.78594377042608,45.7861466605033,45.78634899957672,45.78657420334749,45.78675758679283,45.78707570517128,45.78733164526144,45.78750654459335,45.78769591252645,45.7878223752346,45.78803977281957,45.78826360598082,45.78838697714771,45.78852164395773,45.78869396970462,45.78892868415632,45.78917088266704,45.78938877603445,45.78963702689097,45.78988673430798,45.79003821136079,45.79018253683426,45.79020192810148,45.79029265335085,45.79035190733377,45.79041189336637,45.79045688563288,45.79057047160521,45.79066120321906,45.79076655148607,45.79101111685144,45.79128460533119,45.79152608972871,45.79170481910721,45.79195343777815,45.79221648914734,45.7923249661112,45.7925018847622,45.79278635976428,45.79307011517616,45.79333867312528,45.79359847311611,45.79378909865998,45.79410504466949,45.79441511764033,45.79466463081634,45.7948978817363,45.79511465200981,45.79536417756591,45.79559907064144,45.79585004690114,45.79607668805371,45.79633352124043,45.7965279902613,45.79684648047956,45.7970484451926,45.79732686262808,45.79753487211989,45.79777911600905,45.7979479728254,45.79812214265377,45.79825826608244,45.79842513814024,45.79854606579129,45.79870542797271,45.79886513238461,45.79914028304872,45.79923231784944,45.79937026524611,45.79966828295228,45.79977547908568,45.79992256993414,45.80026229799842,45.80059116773072,45.8007708251408,45.80093473097382,45.80111383134211,45.801284126755,45.80151737484207,45.80176525591121,45.80203673520608,45.80228516224934,45.80269804216454,45.80286998896493,45.80306606567351,45.80329398217157,45.80337428378235,45.80346153511942,45.80356779054007,45.80361129255893,45.80365515166397,45.80365951556816,45.80365946898285,45.8036469497505,45.80363810822567,45.80363399860353,45.80363247907562,45.80365547545692,45.80370702206862,45.80375286127691,45.80377566459221,45.80387159978935,45.80392457364267,45.8040086701957,45.80408705699103,45.804169140724,45.80431360125316,45.80441141299015,45.80454728509301,45.80465114706093,45.80481026070606,45.80500722832187,45.80510927416857,45.80529928860638,45.80552113897693,45.80569378126371,45.80586752090214,45.8060332110943,45.80622323444033,45.80638521851085,45.80654863794462,45.80660747969862,45.80680233930827,45.80690783805338,45.80707052435016,45.80723477279236,45.80733041663621,45.80745246637272,45.80756167232727,45.80767842438068,45.80780802545075,45.80795344497488,45.8081213550589,45.80838555207722,45.80849815711944,45.80862794249661,45.80885134404177,45.80909762810587,45.80932602793199,45.80950742954749,45.8097577982507,45.8099545740099,45.8101967190474,45.81044600960981,45.81067242919463,45.81092938545091,45.81118745362875,45.81152269720369,45.81176357451456,45.81202896151643,45.81223748410569,45.81254664556862,45.81280914229266,45.81359646786079,45.81389132236038,45.8140696658559,45.81434985399981,45.81670957958924,45.81726012729973,45.81792503996494,45.818764369794,45.81904132437612,45.81933258483588,45.82044152160643,45.82070135034685,45.82096738611571,45.82121022293403,45.82161351808961,45.82187170635936,45.82210723375865,45.82232737196031,45.82254750937074,45.82301454866457,45.82345159195183,45.82377480339719,45.82420310052782,45.82489113599085,45.82552483601336,45.82588393820313,45.8262811071528,45.82646246303526,45.8268372773705,45.82797248490316,45.82839250016389,45.82890416476177,45.82910052293997,45.82784846336927,45.828298177176,45.82844637022166,45.8286939956141,45.82911362019535,45.82933192940263,45.82980861345826,45.83021828612046,45.83043876330436,45.83077967001712,45.83100031285098,45.83124383891887,45.83144949333111,45.83167821117796,45.83191422322641,45.83221831734106,45.83243950857983,45.83265123192952,45.83274251997669,45.83287848697547,45.83314379402771,45.83333976978778,45.83358131182401,45.83385377306017,45.83401845843413,45.8342431981013,45.83443057589436,45.8346491086624,45.83477473690444,45.83493480737216,45.83510002025158,45.83522596877133,45.83534499386523,45.83546482565258,45.83554418251373,45.83569084500377,45.83579059908099,45.83599091397808,45.83614455136578,45.83667167228305,45.83694429619572,45.83726961480789,45.83760974863149,45.83791111215698,45.83810561658582,45.83828658985508,45.83851915151878,45.83868366662858,45.83887066985312,45.83898175078162,45.8390685076104,45.83912489820187,45.83918018154581,45.83921774496908,45.83925513116102,45.83929668017428,45.83933442393416,45.83944459479069,45.83962045815876,45.83985906485426,45.84010605802428,45.84033184420638,45.84048974992321,45.8418381567102,45.84289565626655,45.84427071939231,45.84516497711401,45.84536182880878,45.84560496978897,45.84570432456707,45.84587134819171,45.8461292942526,45.84630456434338,45.84645658198512,45.84657825357904,45.84680621147244,45.84701055794967,45.8472602825115,45.84756305834549,45.84775935979748,45.84799261717462,45.84813569395057,45.84840716906664,45.84850633537299,45.84864920771471,45.84884624257554,45.84901310222931,45.84917902557288,45.84940569525915,45.84967680605305,45.84986597713834,45.8500778307965,45.85028856661785,45.85062684808962,45.85081325787146,45.85096106212686,45.85119815751718,45.85136365706596,45.85151595643814,45.8516883487885,45.85180879547892,45.85191542319943,45.85208781402414,45.85222199290324,45.85234179201056,45.85243508898026,45.85252108863607,45.85261340510387,45.85311017306477,45.8542679270985,45.85446365730651,45.85463725118607,45.85479437483101,45.85517632922323,45.85534223742502,45.85555223907829,45.85564222553363,45.85581619302219,45.85599072147857,45.8561719971922,45.85637669571002,45.85661833371909,45.85678221615209,45.85696239722945,45.85723533210358,45.85747131859281,45.85776674484402,45.85792589086475,45.85803967725666,45.85814613027794,45.85826834147664,45.85841266254156,45.85853469783625,45.85873373554232,45.8588707373364,45.85912300479963,45.85935314897932,45.85967402377832,45.85988018794318,45.86019411425502,45.86039222020307,45.86057533888159,45.86075864057209,45.86101766504462,45.86123883499563,45.86153518163865,45.86173219316017,45.86199871955624,45.86221841964188,45.86246079136025,45.86260401959131,45.86283760606039,45.8630946070898,45.8632919809544,45.86352647826025,45.86383800075604,45.86392068593878,45.86430818732602,45.86443576729593,45.86465607393568,45.86480217947315,45.86486808795224,45.86491341857023,45.8649648460507,45.8649692949754,45.8649669976028,45.8649640511988,45.86496192913877,45.8649023087514,45.86484482810903,45.86476710728519,45.86461855386259,45.86458080982346,45.8645253730715,45.86440512381683,45.86429423867863,45.8641888055589,45.86403949521665,45.86392730137869,45.86384676478392,45.86376659822216,45.86372486244895,45.86369589202013,45.86370718805509,45.86374358559082,45.86382180739778,45.86387299587083,45.86395474589543,45.86408731494299,45.86414582358687,45.86418016297436,45.86424654074941,45.86430430899529,45.86443104489537,45.86452027782629,45.86460220953866,45.86464701039829,45.8649559235277,45.86504628170709,45.86513756470899,45.8654659164519,45.86562689362274,45.86569587073404,45.86603542396178,45.86622991463467,45.86644784053071,45.86672852094219,45.8669691178956,45.86724776355527,45.86734838657202,45.86750242792458,45.86777339157104,45.86790493743859,45.86809026731777,45.8683078127508,45.86838612342036,45.86855645722932,45.86872754264896,45.86888158444768,45.86901914162467,45.86913291237692,45.86935165973483,45.86948885310024,45.86967836404714,45.86978055530884,45.8698756182356,45.87002188669089,45.87011806726787,45.87025247592337,45.87037338252344,45.8705246444404,45.87088614075161,45.87104730756403,45.87146897808537,45.87166466790296,45.87184388068314,45.87195301126064,45.8720158663135,45.87208676351187,45.87212600530631,45.87223068035357,45.87227103326335,45.87240976853897,45.87255149458191,45.87285325604567,45.8731381194488,45.87335344098254,45.87360135641881,45.87380316288551,45.87391221777705,45.87415374949958,45.87430345702133,45.87447131161527,45.87460730493287,45.87477757282263,45.87494100868499,45.87531862956681,45.8753947989163,45.8754211805464,45.87551406775724,45.87565819609815,45.87585949014795,45.87605555732186,45.87634424795061,45.8765330996967,45.87671630161023,45.87687284544759,45.87697712562739,45.87720374497684,45.87736064079106,45.87747819306586,45.87776824045155,45.87798077725241,45.87830439958485,45.87849143470241,45.87878934833776,45.87899365165244,45.87926905139347,45.87944866641865,45.87970744382992,45.87992563112584,45.88001378784418,45.88013738105455,45.88034470415379,45.88056491576438,45.88059952379181,45.88059430069043,45.88061563862303,45.88060497363383,45.88060177404783,45.88058733293988,45.88053190046585,45.88043926436442,45.88029812082869,45.88017379616426,45.87995722453813,45.87982927258746,45.87978103656336,45.8797460886514,45.87973443786377,45.87970911584076,45.87972296382295,45.87969841615997,45.87971105012325,45.87972066360047,45.8797194412624,45.87973588350208,45.87979353222886,45.87981719883921,45.87990776909345,45.87991900210272,45.87998027630535,45.88004531843922,45.88012525089443,45.88022285812546,45.88032928360486,45.88044296525365,45.88056566251471,45.88067752326591,45.88085969875275,45.880979801855,45.88106556792721,45.88122060754772,45.88131539281153,45.88140960722661,45.88165643815155,45.88186934340221,45.88205635090357,45.88223412174422,45.88252312884664,45.88279410514404,45.8829801073494,45.88331854916199,45.88355416232724,45.88388316832444,45.88408444451383,45.88513699274421,45.88572514189192,45.8861218576594,45.88650186421,45.88676360324104,45.88720209818297,45.88748913477712,45.88780930825003,45.88806357564307,45.88841713306626,45.88869610123612,45.8889484015881,45.88927622095014,45.88948693324485,45.88978944875093,45.89040191003772,45.89082032684507,45.89114575069176,45.89153239797223,45.89163263640212,45.89195101508828,45.89212638870764,45.89246143513904,45.89292657011725,45.89429463235712,45.89473071978217,45.89488199714877,45.89504265708211,45.89533913298192,45.89554221214626,45.89566191031687,45.89578180893387,45.89591897432424,45.89600592437691,45.89611056323835,45.89617281193608,45.89620090858908,45.89629988414204,45.89632877959866,45.89637416458007,45.89645823691001,45.89651166811596,45.89657367629205,45.89741038500264,45.89775689192448,45.89806884261041,45.8983717188385,45.89854749112452,45.8989002058032,45.89907578339793,45.89940199811976,45.89955247500394,45.90001345859238,45.90036462380163,45.90067356770783,45.90104236630486,45.90125990849945,45.9015947505176,45.90211342142567,45.90243200345035,45.90295125958556,45.90336145831745,45.90367923679953,45.90388854531793,45.90420596273527,45.90444861718377,45.90474049267413,45.90492467914031,45.9052407076038,45.90544094048842,45.90599762355168,45.90626397482048,45.90650387669184,45.90675255863888,45.90683454113973,45.90699164287208,45.90719955975597,45.90749845758665,45.90795288780634,45.90830001356379,45.90855637644523,45.90873799432183,45.90898687313254,45.90918496532957,45.90948287858534,45.90981313402461,45.91009399192209,45.91026813230908,45.91046661160484,45.91077999574023,45.910944152114,45.91118922186492,45.91151412831835,45.91194784688272,45.91210171360021,45.91220699223837,45.91238519239113,45.91285956793099,45.91303496766935,45.91337766480503,45.91364043066863,45.91395620218264,45.91413960322893,45.91444112483935,45.91465063115464,45.91502923348395,45.91531368830796,45.91550691918779,45.91577666729015,45.91603139011955,45.91723409676491,45.91750108354533,45.91773988802228,45.91808394611078,45.91846137198063,45.91868530526604,45.91903819347014,45.91921796117047,45.91944130284456,45.91975181961886,45.92001088521565,45.92031999175501,45.92056059985873,45.92071407129285,45.92092936273718,45.92123183640443,45.9215370533631,45.92179350955846,45.92199143633716,45.92213316975268,45.92220740689857,45.92227052907224,45.92226162623039,45.92227019313361,45.92230047321389,45.9222819321913,45.92228042409009,45.92225405259967,45.92217866847775,45.92215080355902,45.92213771629181,45.92212131125746,45.92210940927752,45.92212480058816,45.92213134557002,45.92191130354475,45.9215108079788,45.9213222069793,45.92108986195721,45.92090032473299,45.92082189912846,45.92080471106392,45.92075019004474,45.92076304265881,45.92076798352846,45.92079901727516,45.92097347310554,45.92114711077998,45.92130015989355,45.92157344382068,45.92216691822577,45.92253164393895,45.92282905256245,45.92317671347333,45.923543191717,45.92399364162775,45.92414612947061,45.9215287743004,45.92152822224269,45.92153216124962,45.92160919786423,45.92168510975838,45.9218234301882,45.92203146038265,45.92228841129997,45.92244667026965,45.92262799648016,45.92293974993802,45.92317813460314,45.92348848276634,45.9236183507972,45.92371898210226,45.92379683498725,45.92387975862705,45.92405714905123,45.92439195458206,45.92483555369057,45.9254888709707,45.92586528889841,45.92604970673234,45.92620910077717,45.92635669207614,45.92650485313143,45.92661926994457,45.92678795704842,45.92692064055382,45.92708875684762,45.92715284558761,45.92725432851879,45.92739009186244,45.92758744162064,45.92777241491723,45.92808191110689,45.92831691003284,45.92840685791241,45.92852098077409,45.92865900044766,45.92877199084617,45.92891028589564,45.92897436866684,45.92907583411466,45.92911630301315,45.92924278848231,45.92939372715841,45.92953340801552,45.9296461164279,45.92973717525072,45.92985015822535,45.92997663504311,45.93010254702403,45.93022873283017,45.93026891293353,45.9303953912822,45.93044653630716,45.93059662112046,45.93077226741645,45.93092151114579,45.93109409120969,45.93129139611995,45.93165625796824,45.93188898047404,45.93203542874886,45.93213408436029,45.93230749811108,45.93246881478752,45.93259583603344,45.93286927454451,45.93310564049246,45.93401374977583,45.93426813729542,45.93445791301464,45.93476660532395,45.93492234439717,45.93516212700693,45.93534176835775,45.93548402743466,45.9356507373404,45.93578035008189,45.93604403610656,45.93626188203784,45.93641873391437,45.93658935170087,45.93671078283596,45.93688194951589,45.9372169463813,45.9375786107488,45.93765530377281,45.93768449631595,45.93770215455161,45.93766838947129,45.9376478449326,45.93758171528825,45.93753642864515,45.9374582146807,45.9373786186075,45.93730970357806,45.93727706245817,45.9371980126303,45.9371420393235,45.93707535478845,45.9369946302844,45.93696336808431,45.9369689334312,45.93690418450905,45.93695752726383,45.93698643082406,45.93706477474412,45.9371195088239,45.93716242779847,45.93719325359221,45.93725785084644,45.93739634529228,45.93754388327066,45.93769253686383,45.93787494636528,45.93808207664869,45.93820876698249,45.93835879254176,45.93852145880944,45.93871649582429,45.93899893120023,45.9393069019626,45.9395297176796,45.93962835561413,45.94010857737248,45.94051378682509,45.94066435243314,45.94068031382461,45.94067402584201,45.94064578410971,45.94055433857037,45.94046123843191,45.9402958971611,45.94012918046116,45.93973033118687,45.93933148631785,45.93909058131107,45.93880521217869,45.93865250081463,45.93847756264045,45.93839820664067,45.93835399942151,45.93832767734391,45.93835682268514,45.93839997836909,45.93848926201326,45.93852855938811,45.93860714829776,45.93896952810721,45.93939618431526,45.93960990777492,45.93970988743786,45.94028701250801,45.94044852668016,45.94057130184202,45.94083005273119,45.94106134248216,45.94135304783298,45.94178566432654,45.94190596748165,45.94213422909574,45.9424226501802,45.94267560680836,45.94286788307776,45.94298793343971,45.94322963889714,45.94347162574692,45.94362874273143,45.94378834521876,45.94392100441323,45.94412837201536,45.94429895467134,45.94450578087314,45.94481011476583,45.94501667769712,45.94525893480892,45.94549158400988,45.94588436362207,45.94612964996184,45.94632466479464,45.94660372557772,45.94677428196993,45.94702974128101,45.94718958225313,45.94736207349713,45.94760047244919,45.94788610878326,45.94805939449979,45.94817145754265,45.9483442133564,45.94849360560693,45.94859658934827,45.94866269812116,45.94862065063748,45.94862939286411,45.94863513416963,45.94871720877201,45.94881660559776,45.94889376149792,45.94911703922408,45.94934030056761,45.94953693855778,45.94970993992887,45.94992939819172,45.95014966376048,45.95065995807796,45.95078217198001,45.95097580262198,45.95129411213248,45.95141850977975,45.95161568055771,45.9517290754069,45.95197812441957,45.95214177008275,45.95241825465612,45.95252119129633,45.952599688272,45.95265373291952,45.95270059530392,45.95270765844429,45.95273753009395,45.95270914253444,45.95272505385604,45.95276428496253,45.95282932268994,45.95295858133265,45.95306979144058,45.95308703683286,45.95310183357167,45.95318913279392,45.95320557404686,45.95317555819705,45.9531540900878,45.953109824299,45.95304111099464,45.9529718529897,45.95284270085249,45.95271466656164,45.95260969125786,45.95234925205109,45.95222012537842,45.95193630770591,45.95178165660754,45.9514245254408,45.95119978763941,45.9509753288901,45.95082365095594,45.95067196816683,45.95053263158403,45.95046606968436,45.95035254305739,45.95022583657036,45.9500969574361,45.94995518957396,45.94976508398193,45.94947804452165,45.9492615963874,45.94908140577593,45.94877902859167,45.94860985421532,45.94834372468356,45.94807894952562,45.94776854207882,45.94729272300967,45.94707791110001,45.94686310226034,45.94654916441231,45.94629567083497,45.94608968292677,45.94594440268973,45.94578703449758,45.94546427319226,45.94527390554538,45.94514421100516,45.9450505203341,45.94499224680676,45.94493478908318,45.94487817320891,45.94484488710471,45.94495743020385,45.94508124476271,45.94525258549212,45.945339358305,45.94549995324122,45.94562431354918,45.94566514899076,45.94564502703518,45.94558840396688,45.94552020763981,45.94538004747262,45.94533630628443,45.94530329506832,45.94515105935376,45.94508286051164,45.94502594039343,45.94506731158648,45.94504906618828,45.94504266217859,45.94502306162526,45.94497850684434,45.94492160182728,45.94482950101015,45.944713505706,45.94464422825934,45.94451563336825,45.94437493024029,45.94429411134433,45.94422887275249,45.94425867634574,45.94438435541126,45.94452025791195,45.94472971408068,45.94483981239874,45.94509761706772,45.94523188446039,45.94537984183116,45.94561078274702,45.94579447606397,45.94598996210799,45.94619753088118,45.94638094366614,45.94654044167175,45.94667714716165,45.94684925996419,45.94703482364146,45.94712047907093,45.94723406915594,45.94735973931345,45.94744752975545,45.94742794182679,45.94744484726605,45.94741395981301,45.9473833487756,45.94737877287428,45.94739163553898,45.9473961982985,45.9474496072652,45.94757981972838,45.9477060336344,45.9478190368069,45.94795785999593,45.94807009163802,45.94834930992663,45.94850447374333,45.94855814562492,45.94861208071386,45.94860695096913,45.94862624051583,45.94855100399611,45.94850802290095,45.94844086361982,45.94838363057584,45.94831592628974,45.94823535654862,45.94812172555272,45.94795921733705,45.94782304668173,45.94768469569799,45.94759495315364,45.94750469309005,45.94742915199283,45.94736306832105,45.94733027829416,45.94730015203784,45.94725737714838,45.94724041800011,45.9472696216255,45.94726500014166,45.94726489559166,45.9473740310155,45.94751811282956,45.94768394767904,45.94786158730816,45.94812077456168,45.94831077337527,45.94873693140939,45.9490758909354,45.94934965364557,45.94968433279065,45.94989636640133,45.95008210836107,45.95027860274534,45.95047482467966,45.95065818294099,45.9508911930951,45.95128073074957,45.95172017635591,45.95190432428159,45.95215911866801,45.9524141524476,45.95259645334767,45.95292348713471,45.95358931973635,45.95441224961895,45.95549621029402,45.95627788313391,45.95710734720997,45.95796711988184,45.96157587818171,45.96218586404584,45.96278692145867,45.96302636934546,45.96339624023921,45.96352038387639,45.96357036820032,45.96360812488852,45.96361015346471,45.96359649482667,45.96360821138074,45.96360756234613,45.96366231827975,45.96358829918279,45.96336614324613,45.96321615752028,45.96295795834364,45.96278533163161,45.96242937900768,45.962216941433,45.96208974683478,45.96200594221865,45.96185809266852,45.96172092528975,45.96150825211357,45.96133681414607,45.96098915588109,45.96077124288256,45.96033572130442,45.96019522270995,45.9599584650886,45.95974492519343,45.95948862182168,45.95940813596419,45.95939239599186,45.95935813792942,45.95937406093246,45.95932879481047,45.95926785440906,45.9591452444724,45.95900157157163,45.95879419728215,45.95858695257552,45.95842475549919,45.95830158047991,45.95819889900874,45.95809669419518,45.95785881252485,45.95762677880153,45.95753154228607,45.95726146131344,45.95700165241809,45.95674162895187,45.95654799631947,45.95640867797253,45.95628287267066,45.95624383598726,45.95635874033885,45.95642832319822,45.95653465969627,45.95656227332314,45.95653627429211,45.95653717612394,45.9565435506651,45.95655253089765,45.95653792319421,45.95651121784671,45.95647277872909,45.9564203676286,45.95636937137251,45.95623286188174,45.95619122271788,45.95611804879317,45.95602280817764,45.95594894197239,45.95585487570232,45.95578265291172,45.95577917717449,45.9558417261668,45.95587890928816,45.95601689160131,45.95610851169506,45.95604132476979,45.95589450400492,45.95579036432462,45.95565431268802,45.95552739869954,45.95531628152278,45.95522174619145,45.95488804085151,45.95479269709424,45.95482766180865,45.95494426572479,45.95500232273435,45.95510259978757,45.95523586980703,45.95533661898321,45.9553841393668,45.95538906836855,45.9553835433715,45.95533862787719,45.95530002583609,45.95511034992571,45.95500456082038,45.95465290320539,45.9545347839606,45.95436165185684,45.95418710523475,45.95401223425965,45.95384964773159,45.95368790108375,45.95357142527559,45.95332556879605,45.95321999130345,45.95292076727637,45.95283432808293,45.95279360467892,45.95263747148667,45.95251254458098,45.95240603563537,45.95231287864574,45.95220824170293,45.95216938545158,45.95199062390098,45.95185267282788,45.95157442022844,45.95142438374944,45.95120044240908,45.95110438102938,45.95107667552647,45.95104802509656,45.95106291494383,45.95105643292385,45.95098463764081,45.95093709068045,45.95094245909991,45.95093925190579,45.95099752056613,45.95126643743369,45.95142170813255,45.95170812832831,45.9519312470676,45.95224265526191,45.95269154098829,45.95324220643829,45.95338575975272,45.95369434902298,45.95390335797534,45.95415669442261,45.95429027582154,45.95478432614077,45.95488542481861,45.95506021392082,45.95521967055542,45.95534431947774,45.95554659889605,45.95579031593884,45.95602357698362,45.9564251076341,45.95662785339833,45.95674181021529,45.95691658381551,45.95708311558678,45.95715390299214,45.95727365632528,45.95749156741795,45.95762572225004,45.95784758991944,45.95802468443009,45.95825723683708,45.95843455465787,45.95853874880117,45.95858621184334,45.95863770093239,45.9587502595003,45.95898628163889,45.95910813518348,45.95928960174092,45.95942708732044,45.95951956384115,45.95954472450445,45.95950595770006,45.95946497130938,45.95941713043526,45.95939936035963,45.95936358216547,45.95936866791994,45.95940922474144,45.95946791893662,45.95954705425223,45.95972528635058,45.95996013494265,45.96008506786421,45.96032405697356,45.96062827574514,45.96100403408641,45.96126424167524,45.96133453243819,45.96157028086285,45.96169281096916,45.96200134857521,45.96231754046439,45.96288459569864,45.9631808412154,45.96337960734893,45.96349111966695,45.96359319457883,45.96364591921072,45.96367152296006,45.96354704884651,45.96346219236199,45.96327985087251,45.96279137436019,45.96228959454601,45.96170180766656,45.96146066264658,45.96109781679201,45.96091098848818,45.96066744487656,45.96045707454744,45.96021514353681,45.96002028174804,45.95988019782593,45.95978373486248,45.95967650130814,45.95957085422948,45.9593708304476,45.95927597632638,45.95908478448948,45.9589581314587,45.95873411087585,45.95861640464057,45.9584550742413,45.95830452973643,45.95814296466305,45.95799185550538,45.95783040239724,45.95768916881606,45.95734297257014,45.95713834616468,45.95689169374224,45.95680728259293,45.95667178279366,45.95666384375529,45.95657966457165,45.95643085104171,45.95632393545979,45.95617121892009,45.95605191127704,45.95588804819195,45.9557132933491,45.95559306408107,45.95534594940533,45.95530369768819,45.95523053047213,45.95507309226876,45.95504368155041,45.95502335812419,45.95496567506756,45.95505489595534,45.95518808396412,45.95536753201078,45.95549005010579,45.95561369426905,45.95574860276034,45.95587248461278,45.95600737526568,45.95610749947915,45.95629877269777,45.95642241626343,45.95669708619431,45.95687195676812,45.95702319198174,45.95717419328012,45.95737939068223,45.95752925839276,45.95766753837317,45.95776331165678,45.95796485000168,45.95806040458723,45.95810221015189,45.95832602095489,45.95841112169893,45.95874471235427,45.95892878664889,45.95913604586332,45.95931011695531,45.95949625217534,45.95991821114355,45.96022787141303,45.96041469449779,45.96077752870144,45.96098582767,45.96127932378482,45.96151793425982,45.96166917249251,45.96187528945043,45.96202537900941,45.96214355365094,45.96230603066146,45.96247942174858,45.96280621216751,45.9630462068347,45.96334290472704,45.96353982648343,45.96393013856515,45.96420399127973,45.96440137312553,45.9646560346406,45.96481162086496,45.96497890247115,45.96523494072812,45.96542290462509,45.96567733514691,45.96582086045019,45.96616176268865,45.96632745071753,45.96647188224282,45.96657336862592,45.96663088146289,45.96668885214468,45.9668034112272,45.96705354998819,45.96713288230998,45.96742015671808,45.96758537237815,45.96784117708575,45.96852106361982,45.96873242822721,45.96902196488984,45.96918731074864,45.96927130230718,45.96930755655148,45.96933676866,45.96943858410345,45.96948483684608,45.96970938113969,45.9698452873912,45.96994800678386,45.96996869385096,45.97005562170384,45.9696642758878,45.96938701158337,45.96929269807173,45.96923201508042,45.96920303373552,45.96927850158673,45.96945368597108,45.96983137157515,45.97029315812647,45.9706743925936,45.97109430543949,45.97125007185934,45.97158707218242,45.97185933568415,45.97214340865467,45.97228532634968,45.97240668652279,45.97241792999142,45.97265267956045,45.97276447553597,45.97286639399906,45.97296673589872,45.973013540528,45.97314772093793,45.97328043793276,45.97341393986758,45.97369050910182,45.97376822767171,45.97406671185352,45.9741774971262,45.97430009543972,45.97446972324602,45.97448639749957,45.97447854900991,45.97450409642025,45.97451941373696,45.97458893221008,45.97465823012116,45.97479466333707,45.97486374057301,45.97513153387816,45.97527549460847,45.9755289780188,45.97575987060964,45.97598006673164,45.97615572700646,45.97633162449036,45.97646535210408,45.97656499254337,45.9767657543151,45.9768657274799,45.9769653697827,45.97724418328436,45.9773666538229,45.97758147871515,45.97768438239115,45.97771150071137,45.97773760425336,45.97777529070307,45.97780026158765,45.97794916701505,45.97806050571599,45.97831601848772,45.97845816530151,45.97863315235623,45.97893004699962,45.97900686113612,45.97913989588714,45.9792516882742,45.97935154971186,45.97942162349031,45.97945985706004,45.97946436144685,45.97945918149746,45.97950507115114,45.9795184490586,45.97963608522377,45.97972548920177,45.97992712131599,45.98001562212742,45.98010413317726,45.98019285472382,45.98026043985453,45.98032724091951,45.98041597373221,45.98048344739244,45.98054113030948,45.98063075554251,45.98070902137635,45.9809520397224,45.98110487438237,45.98127029631151,45.98150161452315,45.98161205495193,45.98172338829019,45.98193389913222,45.98203442653839,45.98212427570712,45.98221614587631,45.98230723164817,45.98242113461899,45.98252402292875,45.98270416627209,45.98277140257053,45.98289486525273,45.9830412820077,45.98314164278452,45.98342750155445,45.98361162567506,45.98380951966261,45.98392448142896,45.98416369489741,45.9844034719287,45.98461345368419,45.98472811818381,45.98496900853758,45.98516633346608,45.98532399956293,45.9852876971369,45.98528479380936,45.98525268013766,45.98524475391379,45.98526745016487,45.98543804514703,45.98572464660678,45.98601990180084,45.98632576145678,45.9868599101498,45.98713540302531,45.98745333135387,45.98772715821032,45.98808252270535,45.98828858667589,45.98876985350773,45.9891313357066,45.98919255518654,45.98913652006068,45.98902627554707,45.98901024052314,45.98899231291813,45.98907522944859,45.98917817710523,45.98931274828058,45.98956753237545,45.98975474781686,45.98996500435788,45.99008777795222,45.99037673181137,45.9905570302765,45.9906948087438,45.99083960736441,45.99099543488298,45.99121604293084,45.99137020139492,45.99160238469058,45.99171524380161,45.99175116964469,45.99174869705517,45.99166442235301,45.99150256335216,45.99131832886847,45.99111273021742,45.9909287270511,45.99071532095183,45.99065408259531,45.99059227797231,45.99053148101858,45.99055628754988,45.9905829627741,45.99060776828733,45.99061130549116,45.99061484214799,45.99059689341914,45.99047020512418,45.99029853516259,45.99012577337742,45.98986484810008,45.98969053501444,45.98960227466879,45.98947027094082,45.98929428627172,45.98915105013143,45.98887734755399,45.98872374024042,45.98852550228648,45.98828485815333,45.98805446173671,45.98783606176983,45.98769502349108,45.98749053724664,45.98741583405459,45.98728868710104,45.98707472211262,45.98688135358606,45.98666648683577,45.98634487048479,45.98623843780778,45.9859574673217,45.98568740490116,45.98549225581161,45.98525449184557,45.98513581899346,45.98504976534527,45.98472603540499,45.98463040459692,45.9845441367156,45.98432860519608,45.98417755188906,45.98402526757342,45.98381899833846,45.983600384545,45.98341583186982,45.98324283601781,45.98296164801895,45.98280154392045,45.98265125054926,45.98258910383203,45.98251572619613,45.98248619199339,45.98244597799567,45.98241711724233,45.98239805237804,45.98234791741025,45.98225346819293,45.98217094773813,45.98207705584091,45.9819290808733,45.98179024040935,45.9816084308129,45.98142782514766,45.98122363629536,45.98108633682201,45.98097008636259,45.98096313370073,45.98090195971236,45.98071143050454,45.98056388673175,45.9804372577204,45.98033291388203,45.9802840790709,45.9802785387874,45.98035508537381,45.98038171314952,45.98043127503544,45.98046043366472,45.98045291906249,45.98042425009498,45.98036099185586,45.98029905273319,45.98039190658749,45.98046261141486,45.98057497351862,45.98068844310955,45.98084607852591,45.98093892581384,45.98104629903899,45.98111655731266,45.98118026015095,45.98121180474453,45.98119511780252,45.98112423257949,45.98100936698638,45.98091741694811,45.9807914254914,45.98066642972582,45.98053825055126,45.98045393214471,45.98036982475797,45.98027677746383,45.9802374970788,45.98023314421055,45.98023705801807,45.98020924748098,45.98012740694956,45.97991402064557,45.97981114425714,45.97966668569732,45.97954014730363,45.97944609522385,45.97930940020264,45.97917117564528,45.97895617697445,45.97876209564932,45.97851347971848,45.97829639457236,45.97810167421584,45.97788609982772,45.97765941545127,45.9773944310564,45.97729863704915,45.97708492143402,45.97690240762334,45.97673156086776,45.97659224796877,45.97644246823369,45.97621512216481,45.97596693788292,45.97577199322322,45.97563246396195,45.97541971226457,45.9753581669763,45.97527806489652,45.97519295447795,45.97520075772738,45.97526072267863,45.97534161631194,45.97543244890664,45.97554435278048,45.97565669251247,45.97583663462575,45.97597046540956,45.97611735692622,45.97618583400153,45.97637809804663,45.97662412578542,45.97679618688746,45.97696478930721,45.97715367732228,45.97728664922625,45.97748720718423,45.97766497650367,45.97783076896352,45.97810940749173,45.97832207889422,45.97854077061459,45.97871478269814,45.97891890713029,45.97904208101698,45.97926366482756,45.97948993119894,45.97969721075147,45.97983912377595,45.98003502012093,45.98004605483704,45.9802659560657,45.98048551973517,45.98071761010534,45.98091601369929,45.98113613809895,45.98134371364066,45.98158511432487,45.9817833082972,45.98208105723031,45.98228205483226,45.98243832105979,45.98261651113102,45.98269644418127,45.98273206989344,45.98284331569783,45.9830108254807,45.98318751225771,45.98350654378388,45.98392376695958,45.98411027813244,45.9843207794035,45.98441268472079,45.98441656104534,45.98414879304383,45.98401009780056,45.98394959924075,45.98396502314436,45.98408835998194,45.9842671946963,45.98434612426131,45.98439277948883,45.98440346452747,45.98437471943853,45.98436962086826,45.98436181315265,45.98440121773399,45.98451253631473,45.98477929275235,45.98495639916487,45.98504914049226,45.9851086212221,45.98512488359197,45.98510694520304,45.98513281720469,45.98523637725545,45.98533849876088,45.9856046964407,45.98575978897781,45.98606469459744,45.98619364487385,45.98638861173444,45.98663746848838,45.98686611750837,45.98707391073642,45.98732705831845,45.98756973061494,45.98777945814705,45.98803196386669,45.98821996022922,45.98832201229403,45.98831439919672,45.98826363029862,45.98819976160446,45.98813710742339,45.98809581199549,45.98809966551506,45.98812523583604,45.98813862663916,45.98821816612723,45.98835475000975,45.98847965171681,45.98854104547242,45.98856660321247,45.98865824660923,45.9888677471697,45.98960528065651,45.98991678158762,45.99017055659117,45.99034915165551,45.99050572464402,45.9906299763867,45.99071029663796,45.99075829821501,45.99080684484692,45.99079003416829,45.99079537016063,45.99079116176435,45.99076450898403,45.99067263039732,45.99058104026741,45.99055332762531,45.99051535519749,45.99042056459871,45.99032804473297,45.99020659580479,45.99010409925603,45.99000025513629,45.98986641422883,45.98975223710571,45.98968568133895,45.98965432745981,45.98967116681225,45.98974106690842,45.98989931862315,45.9900563791734,45.99028070679346,45.99055752433058,45.99077994629976,45.99094676410841,45.99106992835726,45.99121502005643,45.99131554643888,45.99145894350752,45.9917027311518,45.99174955268064,45.99181838244208,45.99197309960909,45.99212774325707,45.99230248486064,45.9925221513851,45.99278637896899,45.99294172846125,45.99319716888899,45.99348418051089,45.99370256565652,45.99398556101187,45.9943320794718,45.99477743004461,45.99512606626698,45.99545248192284,45.99589812173588,45.99624689402779,45.99657233388453,45.99686922070065,45.99708566430117,45.99737223700276,45.99749434802923,45.99771780780847,45.99783133744533,45.99796764850365,45.99806929840728,45.99832748415105,45.99847595614379,45.99855855568566,45.99865035490624,45.99871938291476,45.99887514960616,45.99910794928437,45.99932810370588,45.99947381263569,45.99951338967972,45.99948710836935,45.99950045397329,45.99948548285902,45.99949285282139,45.99952110758708,45.99951533629853,45.99945179278532,45.99937742320429,45.99931450373683,45.99935301669505,45.99958650245136,45.99977543376814,45.9999311966352,46.00017572228245,46.00041989176374,46.00059883855602,46.00077988199388,46.0008511003543,46.00080352398957,46.00071141042127,46.00058788291688,46.00060485584471,46.00066590243367,46.00076934251123,46.00089728873571,46.00098927126233,46.00104047036753,46.0010906752463,46.00112790190878,46.00109988761497,46.00101586801631,46.00086557289102,46.00073705572258,46.00060750336185,46.0004795577571,46.00038387254418,46.0002788943034,46.00014095460875,46.00003562876712,45.99989831168411,45.99969624806641,45.99957981529605,45.99943098221535,45.99922738478408,45.9990010944701,45.99879561419141,45.99856737274873,45.99830610735722,45.9980235282695,45.99783963228696,45.99766572946039,45.99737372465538,45.99704687488936,45.99682293029625,45.99667630167368,45.99641273203378,45.99604825150673,45.99568516728165,45.99543082521355,45.99524233210401,45.99503436211549,45.99483727131292,45.99461993082098,45.9945122937004,45.99423077057919,45.99407962799866,45.99399246870793,45.99379830916441,45.99365743275096,45.99345216759103,45.99335584967888,45.99323858455691,45.99313178362024,45.99301492993834,45.99290918730927,45.99280301247866,45.99274049226051,45.99264556500356,45.9925408540977,45.99245724058325,45.99226723786506,45.99215225645714,45.99202831582267,45.99190583444993,45.99178328988946,45.99172165060738,45.99172809995094,45.99186432391316,45.99199971128431,45.99218296369491,45.99232334017726,45.99238604233573,45.99240372652579,45.99240724865933,45.99226010439794,45.99214344680994,45.99191831327023,45.99181150254582,45.99170421168547,45.9916136676355,45.99136205674844,45.99112747500332,45.99102439209872,45.99099675570969,45.9909919269393,45.99112791505974,45.9912202421533,45.99127135042033,45.99135243008318,45.99134671847823,45.99143903983828,45.99153095353232,45.9916892803076,45.99179207888042,45.9919195054619,45.99204685930988,45.99222613269032,45.99240478578048,45.99266874545449,45.99288774834811,45.99317260879366,45.993313900242,45.99343428992868,45.99369680762794,45.99395049918018,45.99412770380868,45.99420644400755,45.9942967011335,45.99425328447622,45.99430085482974,45.99441467548573,45.99451622635438,45.99466431526737,45.99489540165204,45.99521354666446,45.99542439678925,45.99564730015243,45.99583416485104,45.99616205433752,45.99675820578596,45.99701927817999,45.9974737233682,45.99766730219088,45.99803396868382,45.99824044005825,45.9985655089375,45.99870741709154,45.99909006235424,45.99927588826993,45.99959480465323,45.99982649347316,45.99997443897632,46.00016112166962,46.00035522723965,46.00044727524996,46.00051246929178,46.00050643787976,46.00049488981794,46.00053443935073,46.00061216528658,46.00082608128588,46.00111870054128,46.00145229886244,46.00161730408585,46.00170135064126,46.00194364322445,46.00218975187234,46.00234696860522,46.00271519450817,46.00340708330177,46.00364206257008,46.00409348495781,46.00422898003998,46.00466303749471,46.00521323941961,46.00549579036839,46.00572040173632,46.0059745401178,46.00619555158358,46.00642923575866,46.0066184845766,46.00676609921879,46.00697164298354,46.00714933506882,46.00756082076705,46.00784698502566,46.0084131853325,46.00872693063426,46.00932293766631,46.00959058617153,46.0100679481237,46.01032319816692,46.01044545865024,46.01058149239623,46.01080638807834,46.01103099275275,46.01129919043096,46.01175777203981,46.01196442533232,46.01211010254352,46.01233111099435,46.01277145350539,46.01293230122532,46.01316903965061,46.01347944690306,46.01422001322843,46.0146054805375,46.0150193521369,46.01534437643148,46.01562665121223,46.01596658567492,46.01638045778791,46.01683986326387,46.01706198355284,46.01756719401398,46.01783540164521,46.01805889872814,46.0183613392072,46.01860361390519,46.01874159363214,46.01895822193998,46.01921567240526,46.01938649767395,46.01945190832484,46.01944226103326,46.01940393198947,46.02007196106036,46.02007001972574,46.02005427022586,46.01995823954535,46.01986164625573,46.01980947851386,46.01975340217675,46.0195897291417,46.01953618046761,46.01943099344695,46.01948115893862,46.0195318940966,46.01962375933449,46.01991177797974,46.02010573307364,46.02035014241616,46.02067123011354,46.02084277259514,46.02090252365799,46.02082991159404,46.02070815635511,46.0206556692601,46.02056561509932,46.02049966542151,46.02048273163359,46.02052741191553,46.02069839828482,46.02093977946654,46.02109258768875,46.02117633166969]}]],[[{"lng":[-88.93066265777504,-88.93265079960558,-88.93284212931106,-88.93295471037366,-88.93293562737236,-88.93318297701971,-88.93346897691988,-88.93348441106157,-88.95420406539652,-88.97473291681179,-88.99489800479213,-89.01409658808682,-89.01545276964413,-89.03625243016769,-89.0475828714689,-89.04778651428448,-89.04778724309092,-89.04791333782988,-89.04759104990677,-89.04736013913175,-89.04754854141478,-89.04752793906364,-89.04753972774084,-89.04760537665503,-89.04743788055933,-89.04737157938089,-89.04730824998686,-89.04745710824743,-89.0474591530589,-89.0475702909695,-89.04751614678079,-89.04737359408625,-89.04718200276132,-89.04717452521663,-89.04676433060246,-89.04680001266465,-89.04675754909904,-89.04657329614265,-89.0465851787727,-89.04646157863795,-89.04702204274922,-89.04694021084728,-89.04692901949105,-89.04677673822385,-89.04657291727952,-89.0464711830915,-89.04656493272871,-89.04645859693333,-89.04651533489286,-89.04648975795277,-89.04660715830569,-89.02631044047962,-89.0053485805923,-88.98443373993007,-88.96404833848851,-88.94387022961574,-88.9231446472442,-88.92330445675194,-88.92433037354208,-88.92488451958953,-88.92518899691241,-88.92640600926113,-88.92605400821736,-88.9051941910238,-88.88439120348148,-88.86466876355749,-88.84335151888979,-88.823135215656,-88.80229076352478,-88.78093826110377,-88.76016761410953,-88.73983095729862,-88.71927132924891,-88.69854019617793,-88.67787222298377,-88.6565490637217,-88.61558500132179,-88.59533757193115,-88.57458629700534,-88.55406437688565,-88.53016847467839,-88.50963736786993,-88.48919502165346,-88.46884976214331,-88.4484651482167,-88.42809147896322,-88.42714094048381,-88.42672792651457,-88.4266211815219,-88.42623823956689,-88.42564425885551,-88.42646426529846,-88.42608912490162,-88.42588258296946,-88.42602678546817,-88.42617581661629,-88.42590321574123,-88.42576562996051,-88.42585898511366,-88.42598041454575,-88.42594402939137,-88.42583531713427,-88.42549744526384,-88.42544169598447,-88.42535926850451,-88.42537490267779,-88.46678168332936,-88.48744642414552,-88.50778734755342,-88.55208219695234,-88.57258939512369,-88.59308727766228,-88.61375346995537,-88.65501635955935,-88.6759089380693,-88.67587436995922,-88.67591118914339,-88.67572019448839,-88.67578535802687,-88.67563711077976,-88.67583499087856,-88.67580720356456,-88.67579305449058,-88.67574585898029,-88.67572498386612,-88.67560569938979,-88.67551898917893,-88.67543697179347,-88.67512401695168,-88.6749529782994,-88.67493807013923,-88.6745429785983,-88.67422042671552,-88.67467456450285,-88.68421374509815,-88.68384389381335,-88.68329704937925,-88.68337149538978,-88.68377528375314,-88.68409376763753,-88.68439599656051,-88.68513496330564,-88.68557419989948,-88.68645338777866,-88.68682573225253,-88.68712911238983,-88.68761569921087,-88.68795144202275,-88.68824771485936,-88.68854740933295,-88.68881328033326,-88.68922975124663,-88.68947938387977,-88.68970009361415,-88.6904338519652,-88.69128038048237,-88.69167607927047,-88.69207247006752,-88.6930647827273,-88.69370027944046,-88.69397396492992,-88.69427327993471,-88.6949630007217,-88.69557354753819,-88.69611424053406,-88.69648819208838,-88.69668077850757,-88.69684343959872,-88.69683935696347,-88.69684809823124,-88.69699237370428,-88.69720982326314,-88.69800515616149,-88.69877523399209,-88.69954675110755,-88.70024147274212,-88.70087904506082,-88.70161122059191,-88.7030180595258,-88.7038897685384,-88.70443033909683,-88.70523598795148,-88.70594680044837,-88.70660897420566,-88.70714943971606,-88.70737645544878,-88.7075364212327,-88.70752245873715,-88.70758095154321,-88.70786027402912,-88.70858095691381,-88.70901486345855,-88.7092643608235,-88.70956812650226,-88.70984230617107,-88.71004637488748,-88.7101403324221,-88.71016329048031,-88.7100614866503,-88.71013834800257,-88.71050670492464,-88.71097571718052,-88.71160021487185,-88.71195039784695,-88.71231488269828,-88.71240317787934,-88.71235208866979,-88.71235680141994,-88.71244249005515,-88.71265201592961,-88.71260146121682,-88.7127211497998,-88.71269386938576,-88.71276805854056,-88.71307315707965,-88.71391608220813,-88.71431701013086,-88.71515480541034,-88.71557011983424,-88.71692626677087,-88.7179096676342,-88.71818607812051,-88.71835078949914,-88.71854138564368,-88.71863379074509,-88.71862733461063,-88.71840964134482,-88.71819774557471,-88.71795625464559,-88.7178367568953,-88.71785854640544,-88.717950731364,-88.71841396383797,-88.7187847915618,-88.71900506731632,-88.71935202341096,-88.71961560950268,-88.71986422259303,-88.72012692606128,-88.72030513731085,-88.72050903296602,-88.7206027813947,-88.7206965319518,-88.72093000385691,-88.72116223943188,-88.72152024280626,-88.72180461183324,-88.72198107014168,-88.72225038736588,-88.72161068402404,-88.72134130842487,-88.72110731236094,-88.72116783743016,-88.72131039890388,-88.72129067231008,-88.72134022386201,-88.72137753243244,-88.72139919594782,-88.72126865518202,-88.72112602942175,-88.72118744293336,-88.72111380008069,-88.72112040409799,-88.72125636688222,-88.72208394559914,-88.72253931298465,-88.72295270487349,-88.72340696055338,-88.72377896214321,-88.72388645419143,-88.7238559001846,-88.72398262324434,-88.7241431590636,-88.72428996767961,-88.72461490028297,-88.72483291671163,-88.72508651583837,-88.72550619011079,-88.72592128637275,-88.7262395884746,-88.7264877205881,-88.72680071423811,-88.72725279242752,-88.72865772815229,-88.72895832854448,-88.72972688452826,-88.72997157750476,-88.73023013142951,-88.73062851238825,-88.73111394416341,-88.7314462027212,-88.73186287317105,-88.73228004872227,-88.73260270356053,-88.73355265168205,-88.73437987526971,-88.7348324233202,-88.73506619017182,-88.7358381402745,-88.73616945636905,-88.73648468823195,-88.73673063426035,-88.73708676377423,-88.73738695736041,-88.73756369550546,-88.73786367310014,-88.73809658003246,-88.73843970829304,-88.73896522516584,-88.73953258083421,-88.73997560141468,-88.74132984210023,-88.74182781818983,-88.74206750575763,-88.74371746940827,-88.74495274057452,-88.74597725224756,-88.74619912767496,-88.74639484565454,-88.74687598256838,-88.7470176763635,-88.7473017825936,-88.74793468061961,-88.7483694035336,-88.74898306368027,-88.74959351307081,-88.75002393365084,-88.75011543507392,-88.75080176236462,-88.75162354829503,-88.75205380065289,-88.75257751558766,-88.75291169960279,-88.75321935499886,-88.75345758211604,-88.75373971989475,-88.75392347647148,-88.75426202176277,-88.75464600094409,-88.75492754782854,-88.75512452789347,-88.75533204679611,-88.75556918614996,-88.75576637882759,-88.75603374770915,-88.75630021164734,-88.7565705404069,-88.75667200214521,-88.75702331757253,-88.75734208045226,-88.7578925659476,-88.75827989453789,-88.75854440754011,-88.7586833499592,-88.7591692619805,-88.75951417001328,-88.76005009100754,-88.76035189443435,-88.76063912171264,-88.76084529088055,-88.76103607695279,-88.76125302951043,-88.76145598898107,-88.76164420349295,-88.76188731074039,-88.76224246951007,-88.76310188807807,-88.76405962501786,-88.76465297925571,-88.76497348595991,-88.76535059500779,-88.76557674237782,-88.76558618541229,-88.76568567036223,-88.76574916066339,-88.76593568839823,-88.76621867285466,-88.76636916132558,-88.76670914239871,-88.76818773357257,-88.76885429972305,-88.76934911778493,-88.77015345212953,-88.77073739177604,-88.7710158453298,-88.77143452457452,-88.77157274179346,-88.77159355533243,-88.77154461065018,-88.77143805744279,-88.7712759576586,-88.77105939501422,-88.7708285178074,-88.7704886933906,-88.77015164055297,-88.76973527952192,-88.76942718157504,-88.76930861275177,-88.76925990689283,-88.76922347053748,-88.76916231470859,-88.76912391324655,-88.76908918872807,-88.76904342930108,-88.76903294003165,-88.76915057301105,-88.76929357379295,-88.76946583206899,-88.76970483928395,-88.76999890570949,-88.77026339579086,-88.7704863263008,-88.77095725701861,-88.77145520582538,-88.77182899717565,-88.77226880299773,-88.7725929058428,-88.77305372372886,-88.77359770904684,-88.77389091434826,-88.77413005458105,-88.77423101287123,-88.77440243332565,-88.77471146413282,-88.77506124961069,-88.77545171397716,-88.77569064541287,-88.77595663756172,-88.77630406651019,-88.77668102837022,-88.77693137816279,-88.77729333678109,-88.77758502783129,-88.77787544279983,-88.77831116513089,-88.77903651695887,-88.77964606306774,-88.78010153333038,-88.7804736497055,-88.78070621718692,-88.78089534256492,-88.78112601080949,-88.78137170929244,-88.78157725680117,-88.78170051584202,-88.7820046549095,-88.78216823282914,-88.78237087439194,-88.78250447881116,-88.78255408311952,-88.78258763036342,-88.78263428906388,-88.78278056775015,-88.78295576223793,-88.78315756509797,-88.78335912694412,-88.7835740142861,-88.7837448010775,-88.78381909195905,-88.78386035546598,-88.78391135003054,-88.78420919788141,-88.78434726936067,-88.78442943235152,-88.78444381418471,-88.78439042611235,-88.78435391472246,-88.78427391390258,-88.78420978851459,-88.78406647070028,-88.78370400783508,-88.78343867630673,-88.78317434864934,-88.78294998017363,-88.78280199055365,-88.78213823842869,-88.78191932965514,-88.78180126742716,-88.78138901844478,-88.7810905453657,-88.78056619294466,-88.78025428622126,-88.77995829636664,-88.779629002466,-88.77927858246484,-88.77895845805595,-88.77883615809671,-88.77891891358942,-88.77897155469817,-88.77891090881067,-88.77893324821888,-88.77921831617151,-88.77950762528545,-88.77983072623087,-88.78062605278417,-88.78158441296183,-88.78275351436658,-88.78323767288977,-88.78336344693811,-88.78355457355229,-88.78376159040731,-88.78385656544326,-88.78403253087561,-88.78435589246816,-88.78476074145024,-88.78541685521296,-88.78569771059068,-88.7858550030961,-88.78627746992947,-88.78676075891292,-88.78713105420707,-88.78731369912113,-88.78728627785247,-88.78740482086555,-88.78788468232402,-88.78834245004749,-88.78871793765083,-88.78957656580076,-88.78978761352467,-88.78994669452641,-88.79018527666454,-88.79046547113353,-88.79072927651654,-88.79104104349607,-88.79113275782103,-88.79140076938766,-88.79200507319405,-88.79266228481788,-88.79409180714049,-88.79481634482607,-88.7958484240707,-88.79628466922624,-88.79682026520273,-88.79695247661392,-88.79703764103641,-88.79714269933491,-88.79721710784182,-88.79733268035226,-88.79789932910282,-88.79804768499314,-88.79819530715082,-88.79847880656902,-88.79809322544587,-88.79806532807704,-88.79826433361104,-88.79852604640436,-88.79937323587069,-88.80005960420824,-88.80055211613652,-88.80089699770919,-88.80114548578227,-88.80126397681001,-88.80115526292177,-88.80056457229223,-88.80018054017135,-88.79980965871449,-88.79897742178393,-88.79864184682573,-88.79819439350918,-88.79779473157984,-88.79765202416348,-88.79728464835232,-88.79680295233446,-88.79657993861109,-88.79637486791087,-88.79629945067022,-88.79625689583334,-88.7961705749649,-88.79611278365545,-88.79600532245642,-88.79576919081197,-88.79566296441199,-88.79581327030913,-88.79590069468539,-88.79613271584631,-88.79644429869616,-88.79675538843576,-88.79712861407528,-88.7976310823132,-88.79808216456105,-88.79890330605814,-88.79973032540002,-88.80039506207311,-88.80075385678242,-88.80135646146717,-88.80203931303238,-88.80267273652703,-88.80308052984554,-88.80360231884104,-88.80393027090466,-88.8042934468544,-88.80449312259309,-88.80479096938511,-88.80515534642994,-88.80564774274369,-88.80591256005766,-88.80638492071945,-88.80704842425899,-88.80782333881515,-88.80837205244974,-88.80889178514055,-88.80933827880597,-88.81018134359398,-88.81095979793825,-88.81142895893589,-88.81183632265112,-88.81215084528441,-88.81245061327233,-88.81267311185215,-88.8128037190821,-88.81304225109687,-88.81368614730748,-88.81426568873661,-88.81467303768183,-88.81502030168382,-88.81519481375575,-88.8154456538802,-88.81585124564454,-88.81614612529656,-88.81639348570974,-88.81667398497095,-88.81691738138063,-88.81689810633449,-88.81684548795975,-88.81676184036414,-88.81661580485211,-88.81610552412094,-88.81595462036205,-88.81599749153817,-88.81622604275147,-88.81633248679624,-88.81661065196836,-88.81693378364959,-88.81723925938161,-88.81762433449251,-88.81821507309778,-88.81871504369624,-88.81907049553101,-88.8193472806654,-88.8195257963587,-88.81950443734961,-88.81935817210822,-88.81930556173101,-88.81934844904089,-88.81944240674808,-88.81951521555493,-88.81985742494243,-88.82028118013973,-88.82073595461041,-88.82114241236897,-88.82157966435858,-88.82234261256295,-88.82313683650463,-88.82366635708657,-88.82396197224848,-88.82431940004101,-88.8246446560121,-88.82487833800114,-88.82508190642397,-88.82542366041035,-88.82577879550837,-88.82580694990763,-88.82606636152157,-88.82654515298847,-88.82691494861079,-88.82750160280321,-88.8277964184698,-88.82808883224506,-88.82855481809452,-88.82883453452604,-88.82925507052116,-88.82947089674796,-88.82968568994582,-88.82988640247598,-88.83014824386608,-88.83064666405535,-88.83109582878754,-88.83142019789079,-88.83179232684795,-88.83210170642451,-88.83245894590662,-88.83284800684511,-88.8334248635805,-88.83383190627376,-88.83416200479269,-88.83434875304908,-88.83456732716789,-88.83482794513328,-88.83499500787279,-88.83513275774308,-88.8355677595812,-88.83591149015594,-88.83609663384452,-88.83629783094864,-88.83657813111648,-88.83684206197901,-88.83712463509252,-88.83740585269396,-88.83778210468505,-88.83808093324375,-88.83820927606884,-88.83839943506916,-88.8385435657332,-88.83868656987187,-88.83889208780499,-88.83909702447001,-88.83926865697649,-88.83948564279486,-88.8395616881416,-88.83959009992698,-88.83957224824198,-88.83969830102113,-88.83986815235467,-88.83993523458761,-88.8399657536648,-88.84016559059339,-88.84039701961272,-88.84084577612549,-88.841044811613,-88.84129193372561,-88.84147290291399,-88.84162147936013,-88.84190762565196,-88.84212754226004,-88.84259075637786,-88.84302931858849,-88.84332473983407,-88.84363438064868,-88.84385094132706,-88.84405135239064,-88.84418867706204,-88.84432623354837,-88.84444685712889,-88.8445364551749,-88.84457807283694,-88.84450965060334,-88.84431959429972,-88.84416866318534,-88.84449334411958,-88.84506843339005,-88.84572254573034,-88.84607826581409,-88.84647866004514,-88.84691099633096,-88.84771241784782,-88.84810209302533,-88.84823727218765,-88.84837303566518,-88.84841355287399,-88.84843850364747,-88.84847810943361,-88.84845825538684,-88.84863679708344,-88.84861590274919,-88.84872031167677,-88.84910675423136,-88.84944815767457,-88.84975730932544,-88.85000075704458,-88.85009081958913,-88.85036757054417,-88.85076734264537,-88.85084916945262,-88.85144738834829,-88.85967602075023,-88.87498791127776,-88.8933594967484,-88.90737673495731,-88.9197793938929,-88.93066265777504],"lat":[46.07274180065219,46.07351613198362,46.05433208545985,46.03978615112518,46.02552976364983,46.01114307781597,45.99674709578448,45.98238208203072,45.98235304397197,45.98238716299438,45.98236995461659,45.98240201644481,45.98241368988982,45.9824405404007,45.98239194751636,45.96718582672559,45.95284764075193,45.93843564656385,45.92407613846642,45.90975166622336,45.89526639238168,45.88839883803323,45.88133184613351,45.86737200911733,45.85301023952479,45.82419994251774,45.80986255410696,45.79813202457949,45.79678194354119,45.78120835235835,45.76674548592559,45.7523285422287,45.73796682837846,45.72369155580197,45.70967504472285,45.69517391794035,45.68063834887044,45.66608693487775,45.66008345187046,45.65161203249276,45.63722201839233,45.6079345544156,45.59361448701059,45.5792020739599,45.56509185666122,45.55167215674491,45.53696184439416,45.52248272654293,45.50796442781114,45.47925741825905,45.46474406289322,45.4643390437698,45.46499578018562,45.46500714405871,45.46487657082035,45.46495298900702,45.46514332667462,45.45102869953734,45.43674385515718,45.42219799706784,45.40727957368395,45.39294520884522,45.37863881817898,45.37840207325304,45.37849118483546,45.37867219442646,45.37864407701413,45.37826439550908,45.37808270306736,45.37825803568068,45.37832147930595,45.37851406038936,45.37858166552741,45.3785372821694,45.37859282084559,45.37857164748506,45.37805844974437,45.37792918586024,45.37758694705235,45.37765170972202,45.37767725796034,45.3774194345413,45.37711137626918,45.37709639395221,45.37703225038632,45.37692016866082,45.40559160774857,45.41959396204011,45.4219445972816,45.43464947752039,45.46328052988893,45.47752814950759,45.49202421882314,45.50663569333633,45.53560808013258,45.54905369530722,45.56357583754998,45.59251593483486,45.6214343263204,45.63582559153884,45.65052404812137,45.6649356986555,45.67938634120457,45.6938425279254,45.70827187220875,45.72249270822475,45.72265317446961,45.72275510915767,45.7227134936989,45.72278676089784,45.72274019187339,45.72280739641062,45.72292303177068,45.72298081351689,45.72293767004184,45.73723991849649,45.75174888030032,45.76597294634688,45.79470237062574,45.80944774281453,45.82417908932072,45.82882367504924,45.83863872721591,45.85331596972215,45.86759127112299,45.88203865039566,45.89626136330826,45.91065454211,45.92505963309011,45.93222655587423,45.93943634931002,45.95368121624696,45.96822166077744,45.98239250345233,45.98237686838107,45.99696284692105,46.01413426598103,46.01410709107984,46.01403467963403,46.01401866006758,46.01410933073325,46.01447447670242,46.01464378559495,46.01495259686846,46.01501481831777,46.01505711719452,46.01496595163453,46.01483480194486,46.01459744360919,46.01421498924055,46.01410216110499,46.01403943405048,46.01403273725484,46.01405439121167,46.01464164323962,46.0151722388643,46.01540853060552,46.01561557895614,46.01581987640507,46.01588508480505,46.01602321818671,46.01623870991312,46.01633321681954,46.01629237591423,46.01626929067793,46.01626399701394,46.01631457265979,46.01647055578438,46.01664433025145,46.01685650234901,46.01717653662507,46.01737196413227,46.01768029055265,46.01792982218389,46.01808373683454,46.01796619880334,46.01794419592983,46.01802002050788,46.01824862804791,46.01829677291792,46.01824496097537,46.01814834011613,46.01796344234418,46.0174404819488,46.01683850825547,46.01659018808345,46.01627416994018,46.0156951758299,46.01554114480087,46.0154385490488,46.01541744537892,46.01522940118912,46.01519396819511,46.01525533782108,46.01537375122317,46.01552118764344,46.01564712876586,46.01584033431393,46.01605181971257,46.01632269741207,46.01655805365969,46.01663140680377,46.01658051248373,46.01638195018823,46.01619311097534,46.01597191019234,46.01580764107925,46.01560462264167,46.0154610201034,46.01481703709819,46.0145948333328,46.01361232582972,46.01301349153142,46.01277356878808,46.01277700519226,46.01284443398816,46.01285850854997,46.01314750719742,46.01313305010463,46.01317697423876,46.01314019740787,46.01316242368181,46.01323177370733,46.01336891631879,46.01356289958586,46.0138424028021,46.01428379274682,46.01447436010221,46.01472253821022,46.01510708849552,46.01538690912489,46.01559045280002,46.01591403920646,46.01604363830644,46.01608492192825,46.01605956084492,46.01604338731421,46.0160461726546,46.01606824248083,46.01614786476488,46.01630428137695,46.01644033604378,46.01657639369267,46.01667575962474,46.016793676315,46.01688487404007,46.0171580651995,46.01731417285807,46.01764513587109,46.01839063864453,46.01865763717569,46.0191759155655,46.01956248362214,46.01999834974767,46.02025857772075,46.02049089312607,46.02069381736684,46.02094494666424,46.0212134976386,46.02137559604986,46.02172391950782,46.02190592007278,46.02221481725449,46.02234178068119,46.02248604329433,46.02255864201653,46.02263076437169,46.02275171941805,46.02283293998238,46.02296914831919,46.02310381198396,46.02359743645472,46.02385011448421,46.02410263720956,46.02440496278635,46.02458121652648,46.0247201788542,46.02480079951621,46.02483467998457,46.02482866417834,46.02488937278381,46.02511449304091,46.02533160224741,46.02565606551042,46.02582366587206,46.02615060012847,46.02632657595905,46.02653195878306,46.0266618265049,46.02665765468753,46.02664222061146,46.02660802938205,46.02651646374885,46.02635578744707,46.02535377837467,46.02551707381013,46.02571503100926,46.02580424782474,46.02594835943842,46.02600939835983,46.02613832908111,46.02629574044892,46.02647293589129,46.02665963488445,46.02680671859561,46.02700297873869,46.02713043113442,46.02724053548103,46.02728515166531,46.02730097099416,46.02731541966706,46.02681901190181,46.02622653241056,46.02605535291038,46.0259773105067,46.02584631478483,46.02585756205384,46.02583074677324,46.02574626623997,46.02528858169594,46.02516469603174,46.02484942236241,46.02439339986307,46.02416640383664,46.02398973980333,46.02391935380457,46.02384699973111,46.02408650872178,46.02401751193843,46.02367041406316,46.02356935608833,46.02358520289818,46.02348309722895,46.02330363089931,46.02312341067106,46.02285759894381,46.02265765953216,46.0223249609698,46.02183862754475,46.02156268127568,46.02142082037077,46.0213848294945,46.02125240728826,46.02110098520852,46.02084456992146,46.02066465290378,46.02031207898554,46.02007242490523,46.01981692180132,46.0197528843042,46.01979768503086,46.01977264151331,46.01967932463301,46.01960433251685,46.01950385230004,46.01949803694791,46.01958035473915,46.01966069633909,46.01977912675139,46.01983930444196,46.0199375644947,46.02009348579637,46.02029763148045,46.02051118060489,46.02072532294356,46.02091198770523,46.02133418852664,46.02172931882144,46.02206199674264,46.02221002885577,46.02260843221525,46.02300520611653,46.02319769019491,46.02369828712038,46.02392960623754,46.02422019710952,46.02453095323455,46.02459051728881,46.02484394744743,46.02538866719372,46.02580930689756,46.02589113809802,46.02570797860248,46.02552187527399,46.02541911719076,46.02518342163771,46.02499533679565,46.02485774329307,46.02458833071499,46.02440436497727,46.02424905357518,46.02407346572507,46.02388816294057,46.02366343563478,46.0233138568643,46.02279016657399,46.02237339553249,46.02211279509039,46.02183325703055,46.02158310399138,46.02124605569453,46.02112075932339,46.02079356167621,46.02049043275311,46.02023549258045,46.01991949897594,46.01966115088964,46.01939412228582,46.01917562091469,46.01898640428945,46.01889305942517,46.01878014083001,46.01869857891391,46.01863643028513,46.01860219383871,46.01846741297651,46.01837976663222,46.01813439542006,46.01785222267747,46.01770123568213,46.01751197936212,46.01729142838771,46.01702438083851,46.01677793397651,46.0165504875902,46.01638197704286,46.01620171664777,46.01600261841197,46.01588145892044,46.01570267504806,46.01559003492525,46.01546902792861,46.01538552254146,46.01535993738177,46.0152987834093,46.01524746830624,46.01513866191674,46.01513396204152,46.01513793383015,46.01524617300681,46.01542088556359,46.01561572963827,46.01571454329916,46.01580336109314,46.01585248958821,46.0158270457163,46.01591541814351,46.01609983526528,46.01630320219898,46.01654449304819,46.01692905156705,46.01730475434361,46.01755607026108,46.01774075849528,46.01796398235012,46.01823501213084,46.01848762198207,46.01887364628941,46.01927832846116,46.01979010287937,46.02011578519814,46.02037827803592,46.02100470996264,46.02164010690321,46.02223653872442,46.02279343190339,46.02320649711434,46.02372485452576,46.02410837843182,46.02434705106214,46.02452601278213,46.0246576316272,46.02478025909396,46.02492187716325,46.02511549543448,46.02577557670853,46.02614619652932,46.02633731814383,46.02664962580193,46.02692883045766,46.02716062123431,46.02731592321871,46.02748208334658,46.02769344790569,46.0281307280007,46.02865889087064,46.02904178500447,46.02972107375458,46.0302644720397,46.03081790734395,46.03127041616308,46.03160141271266,46.03174007085369,46.03181102100152,46.03181951014803,46.03179598280606,46.03177469115329,46.03190416334711,46.03209788723089,46.03225798972522,46.03243007372916,46.03255540241924,46.03267034407433,46.03273003663613,46.03275684250506,46.03244767847445,46.03223578088086,46.03172836648891,46.03098695263462,46.03038118260774,46.02980852761533,46.02961808293031,46.02935790721106,46.02914428092219,46.0287308544823,46.02858889045658,46.02847980486775,46.0285457165518,46.02857045173698,46.02871895488283,46.02892511333975,46.02948216693009,46.03005029511286,46.0306414269461,46.03087978430682,46.03125557293939,46.03183910888048,46.0322190049,46.03292375210214,46.03318003061408,46.03351886107876,46.03362527552652,46.03361966584946,46.03351923921582,46.03331650350091,46.03297840864462,46.03252692254927,46.03244882513856,46.0325003504159,46.032400095362,46.03233358170672,46.03199736201177,46.03178967323446,46.03158631087505,46.03138476964735,46.03130820468487,46.03115903951734,46.03094011207393,46.03068483634074,46.03049663726929,46.03028435961686,46.03007072090242,46.02983219576807,46.0293624774398,46.02912105889356,46.02898103668768,46.0284412712927,46.02820035921951,46.02786770339308,46.02760305088957,46.02744347851733,46.02717972785287,46.0269372754019,46.026720041026,46.02645743312393,46.02617425396137,46.02590266602114,46.02541517481258,46.02506411484612,46.02476934602817,46.02445015732232,46.02409858665614,46.02390778741493,46.02363757124688,46.02340206924656,46.0232585325694,46.02313748739675,46.02313016901341,46.02315795928946,46.0233213346958,46.02362360494882,46.02365479730722,46.0236848387388,46.02359803828537,46.02351379184888,46.02345289015123,46.02343702433757,46.02336198479707,46.0232431276364,46.0230884943681,46.02279809424679,46.02256279712942,46.02230602769553,46.02195938680349,46.02170464485396,46.02148127966139,46.02140690053692,46.02149314279142,46.02169304829923,46.0218230900924,46.02187407481651,46.02191360564901,46.02191113168269,46.02198449036015,46.02194605317474,46.02185241408896,46.02175780429665,46.02159778829949,46.02142627964302,46.02113399916387,46.0209300318547,46.02076289737042,46.0206597844509,46.02056612657859,46.02037453470724,46.02025652797311,46.02019387453225,46.02022001650821,46.02028832555715,46.02038876556187,46.02052555338456,46.02069851705157,46.02088282416408,46.02115397834516,46.02140343732547,46.02166293501448,46.02219035662865,46.02267762802902,46.02286314338874,46.02312652093136,46.02324687811751,46.02338026478169,46.02360130794097,46.0239307341751,46.02416310247753,46.02425584195718,46.02425032218885,46.0243951895706,46.02459380846442,46.02500854503473,46.02529127313044,46.02556146084318,46.02583261541348,46.02601812714371,46.02611866550383,46.02622629792795,46.02627314473609,46.02616895276806,46.02608701654844,46.02603664729143,46.02601921859836,46.02610358483432,46.02619839681316,46.02624716529426,46.02628283414879,46.02637369924375,46.02649686651086,46.02652064418452,46.02647942500498,46.0265481888839,46.0267475973754,46.02686714117733,46.02716344460102,46.02739674412708,46.02762892464654,46.02791733231282,46.02802948736035,46.02821699282337,46.02833090050466,46.02835514256211,46.02840332844878,46.02854673282667,46.02870081466167,46.02883337501874,46.02897781077827,46.02904759930441,46.02919395194947,46.02936040061981,46.02948346158162,46.02959518918389,46.0296967207306,46.02974457179855,46.02977183394262,46.02973267793502,46.02962747998858,46.02961813137278,46.02963161425907,46.02987334280996,46.03007080235229,46.03020271156404,46.03029377480951,46.03030852728477,46.0303756668027,46.03048627993414,46.03052175832096,46.0305677627154,46.03053351210842,46.03048687155918,46.03041419559456,46.03029797865905,46.03014683947337,46.02997495342932,46.02980259987826,46.02968423662278,46.02958844435044,46.02948196039548,46.02946176538417,46.0295511582145,46.02966049886378,46.02976935457325,46.02992780384966,46.03011753049967,46.03022107043283,46.03037306934975,46.03045832092063,46.03063416957043,46.03076702253228,46.03093470769642,46.03111054362342,46.03126549049599,46.03157165231909,46.03192079774798,46.03217964617053,46.0323613204035,46.03257245616961,46.03253302023766,46.03257988753221,46.03268090045457,46.03279165750849,46.03290225140277,46.03305608675394,46.03319867066951,46.03341758501648,46.03361368621778,46.03386443022416,46.03412474581619,46.03425333071306,46.0347518854964,46.03490705125402,46.0350219957244,46.0351045410611,46.03528195602389,46.03552506960711,46.03574712660205,46.03612591490258,46.0363025361542,46.03652159551464,46.03675134659505,46.03705607921714,46.03737134459782,46.03771994292635,46.0379368751383,46.03836281836608,46.03859098944638,46.03885305154065,46.03903076400771,46.03912139186784,46.03928707338883,46.03958315982612,46.03975844761893,46.03996767393875,46.04024339523592,46.04031458677937,46.04052266883703,46.04391377662083,46.05022130590117,46.05763995174842,46.0633615694559,46.06835869186498,46.07274180065219]}]],[[{"lng":[-91.50958405647428,-91.53050943542401,-91.55131289622062,-91.55135593469865,-91.5514329180988,-91.55108554672201,-91.55148744933268,-91.55145058616669,-91.55149319066781,-91.55134085548306,-91.5513859213245,-91.55109682210534,-91.55087829923015,-91.55135814438685,-91.55143240636714,-91.55143502817559,-91.55169020119051,-91.55189102328237,-91.55132625140318,-91.55177877989684,-91.54951492503754,-91.54665454709637,-91.54412839251765,-91.54187319040085,-91.54155770565157,-91.54166462176886,-91.54244244713182,-91.54164196419413,-91.54137766307635,-91.54136616760989,-91.54135398647156,-91.54119476698406,-91.54132987581848,-91.54142001896977,-91.54122752610257,-91.54077510230245,-91.54073260866956,-91.54036791210854,-91.54025572384657,-91.54060495551272,-91.54059757430669,-91.54088963165621,-91.54130448503705,-91.54133727470398,-91.54113345358493,-91.54085415204339,-91.54084554453361,-91.540854231484,-91.54068269500834,-91.54063675534201,-91.54068440202343,-91.54066822436296,-91.5406183860716,-91.54052534005736,-91.54040181266562,-91.53159658196142,-91.52107200593967,-91.51399521914345,-91.51100278384598,-91.50093393838151,-91.48057644114299,-91.47406277876355,-91.46016929109146,-91.45123570048887,-91.4296311770559,-91.41935823908432,-91.39993779952844,-91.3794299176474,-91.33861413463787,-91.31821510738526,-91.29754327680368,-91.27722960722056,-91.25711368298087,-91.23655556322193,-91.21612905986733,-91.19119746109337,-91.18938605641154,-91.17464953688568,-91.13312206166144,-91.09133151071116,-91.07080533425783,-91.05021613201953,-91.02917267900932,-91.00856890646459,-90.98811521598846,-90.96726543071588,-90.92574530596612,-90.88543549382813,-90.86555435082055,-90.84482133760076,-90.8372971945184,-90.82408094491538,-90.8031532119854,-90.79469057406817,-90.78254806750228,-90.76190238030225,-90.74331911234223,-90.74088930574547,-90.72052347400381,-90.71766229526503,-90.71381332196468,-90.69931925567612,-90.67878874219022,-90.67875987638149,-90.67802675745348,-90.67784615468577,-90.67785643506836,-90.67764672642369,-90.67784572480437,-90.67802014990937,-90.6773170830086,-90.6780773364687,-90.67791980677138,-90.67760912072104,-90.67788975787539,-90.67792808107826,-90.67787969325084,-90.67791708278646,-90.67795920500598,-90.67804732717721,-90.67808696997115,-90.67813614017491,-90.67633383075386,-90.67803370828585,-90.67831059073893,-90.6788859888463,-90.67908704833249,-90.67942838412006,-90.67889318352361,-90.67775647032001,-90.67714215380467,-90.69747395073077,-90.71846754611221,-90.75737356683648,-90.77805300944104,-90.79924941429653,-90.84034108504608,-90.8617938889213,-90.88256070321698,-90.90334180885232,-90.92487238606721,-90.92583734451587,-90.92490931329438,-90.92417923420084,-90.9241962963594,-90.92433965930428,-90.92471318738319,-90.92506201463819,-90.92470499831171,-90.92450942592642,-90.92510718590199,-90.9250697193347,-90.92483405448148,-90.92474678562111,-90.92455106201477,-90.94545377633617,-90.96643466140949,-90.98738986636819,-91.00824697490627,-91.02968024813083,-91.03994923894859,-91.05107098113314,-91.07212808365776,-91.09299013943355,-91.11291921661528,-91.13356775103141,-91.15436773661547,-91.17548705828574,-91.19630255075511,-91.2174136531706,-91.23838054242289,-91.25959455578142,-91.28029265942791,-91.30170736955168,-91.32181963168668,-91.34311283079421,-91.36330681119999,-91.38452480548538,-91.40570392069347,-91.42590338937963,-91.44677722392416,-91.4675460153219,-91.48845265825348,-91.50958405647428],"lat":[46.15668100396773,46.15754084662792,46.15693655798344,46.14260948603641,46.12866667790976,46.12291693082798,46.11398106437591,46.10671505516709,46.09931182623026,46.08479602079506,46.07043950249255,46.0626728552274,46.05544525666276,46.04110019668352,46.0338399039238,46.02664526295165,46.01935717651286,46.01211875968706,45.99776359941738,45.98342769755834,45.98313907128849,45.98293578639165,45.98272791236269,45.98255218738921,45.97106577147752,45.9568723367026,45.94222933855267,45.92867362468134,45.91435403556845,45.90015024691031,45.88459523023491,45.87008003930355,45.86294863471509,45.85573457199005,45.84876452020559,45.83457497310005,45.82733229176939,45.82024920837249,45.81311489461815,45.80439585342302,45.79550666007416,45.78865206744958,45.7802623142267,45.76575046829878,45.75776450751056,45.7459092745647,45.73781610736316,45.73131412593418,45.72360285447263,45.70341095088251,45.67191669865509,45.65929670181161,45.65202641895811,45.64491929229637,45.63762017036478,45.63753507273037,45.63770118253901,45.63777393158516,45.63778941599872,45.63787787953002,45.63777369663452,45.63771458189293,45.63763782529983,45.63768204857991,45.63785353647332,45.6379587279949,45.63828304541452,45.63858346166895,45.63880298987299,45.63889367937688,45.63891182271713,45.63903978252291,45.63906744381034,45.63863513055998,45.63873441300668,45.6386060430705,45.6386350796371,45.63879965010185,45.6389763149061,45.63887543241442,45.63887429414224,45.63884755201136,45.63884481788926,45.63898677428391,45.63907952466958,45.63909861101879,45.63898215666069,45.63868822638917,45.63858954739258,45.63852464247933,45.63847141082567,45.63844534371038,45.63843953707882,45.63853578141178,45.63864933289766,45.63869028745962,45.63862356344663,45.63856507585557,45.63845892298011,45.63846509976125,45.63845374715713,45.63838015177753,45.63833732596157,45.65280112097392,45.67757879227054,45.68198063343816,45.69630738705472,45.71083117759228,45.72508642249956,45.73965511451399,45.75394318829066,45.7684396823111,45.78293200814829,45.79756302644839,45.81115432518012,45.82564425966078,45.83981627845477,45.85712214165492,45.85806636980826,45.86297387066038,45.86440638346597,45.86846357189384,45.88245236240734,45.89641982353816,45.91081756041795,45.92486078976621,45.93892364456452,45.94558180233725,45.95315868325704,45.96740997061055,45.98150342945139,45.98123779304982,45.98087606896794,45.98068351094602,45.98076406320445,45.98082319792887,45.98053086135315,45.98031944200695,45.98046311164536,45.98058546045392,45.98103265628569,45.99531595161147,46.01082477606856,46.02516709981575,46.03887557248938,46.04160488372868,46.05338437405848,46.06789956124006,46.08260885853827,46.09714074908391,46.10431583274591,46.11153373662809,46.14023157103959,46.14773614564823,46.15466277271187,46.15466230567074,46.15501117101687,46.15463470964173,46.15481160547435,46.15480514753648,46.15482023360027,46.1549019393364,46.15527741983025,46.15531282034895,46.15541930926072,46.15559562721131,46.1563297570221,46.15720925755265,46.15750358662214,46.15748385162078,46.15790840607457,46.15750429482858,46.15785319591642,46.15681371593888,46.15684958918661,46.15679939441896,46.15668524657291,46.15699555235996,46.15685126270089,46.1565459843732,46.15666902583067,46.15684079822461,46.15718136548516,46.15668100396773]}]],[[{"lng":[-92.02794865893725,-92.04947406892236,-92.04980870074742,-92.05004841288802,-92.05024846346585,-92.05031887460839,-92.05039515286047,-92.0505654086776,-92.0507064886098,-92.05057019704523,-92.05050459190981,-92.05029823373259,-92.05012276291802,-92.04999392754192,-92.05024238734812,-92.05054860010092,-92.03350136780524,-92.03308569224123,-92.03264559720542,-92.03285260179051,-92.03301901713306,-92.03302415542643,-92.03298911177106,-92.03290791672758,-92.0327565886608,-92.03266638060124,-92.03262444034482,-92.03264191585801,-92.0326163169029,-92.03245163829415,-92.03292250314746,-92.0328362175616,-92.0326013862597,-92.03198261501646,-92.03179532493716,-92.03175717749848,-92.03166343589571,-92.03141585026485,-92.03144673968137,-92.03142191870705,-92.03152924926874,-92.03156580136726,-92.03148938019339,-92.03145755841899,-92.03154320654809,-92.03153042309981,-92.03158272473276,-92.03167642306407,-92.0313891674366,-92.03131013719896,-92.03124265709774,-92.02125796523521,-91.99122395075109,-91.98088903973915,-91.97058365776735,-91.96017365398552,-91.95006577073036,-91.93969868516847,-91.92938226729686,-91.92246660124817,-91.91914656957287,-91.90879646506153,-91.90063511211315,-91.88852244524227,-91.87813980337833,-91.87522221168483,-91.86816512505942,-91.85789955516987,-91.85402076188618,-91.84776716135367,-91.83681366039934,-91.82692318892919,-91.81828450403391,-91.81653097817987,-91.80624979405484,-91.79732484621633,-91.79608827586068,-91.7858302894133,-91.77925175092835,-91.77502367105737,-91.76470349623588,-91.75434648402377,-91.75071319722262,-91.74465086900011,-91.73404648666778,-91.71380473387606,-91.70338224031752,-91.69314857330552,-91.68279818083089,-91.67260304445821,-91.66223220896238,-91.65265958692039,-91.6430023138726,-91.6385419170113,-91.63614125313285,-91.62483579524924,-91.62278847487264,-91.61876127779743,-91.6021373839577,-91.59321096253591,-91.59161090458251,-91.58121758273789,-91.57647604966706,-91.57113289349174,-91.56868932212984,-91.5610142032376,-91.5559357181597,-91.55356149358811,-91.54040181266562,-91.54052534005736,-91.5406183860716,-91.54066822436296,-91.54068440202343,-91.54063675534201,-91.54068269500834,-91.540854231484,-91.54084554453361,-91.54085415204339,-91.54113345358493,-91.54133727470398,-91.54130448503705,-91.54088963165621,-91.54059757430669,-91.54060495551272,-91.54025572384657,-91.54036791210854,-91.54073260866956,-91.54077510230245,-91.54122752610257,-91.54142001896977,-91.54132987581848,-91.54119476698406,-91.54135398647156,-91.54136616760989,-91.54137766307635,-91.54164196419413,-91.54244244713182,-91.54166462176886,-91.54155770565157,-91.54187319040085,-91.54412839251765,-91.54665454709637,-91.54951492503754,-91.55177877989684,-91.55132625140318,-91.55189102328237,-91.55169020119051,-91.55143502817559,-91.55143240636714,-91.55135814438685,-91.55087829923015,-91.55109682210534,-91.5513859213245,-91.55134085548306,-91.55149319066781,-91.55145058616669,-91.55148744933268,-91.55108554672201,-91.5514329180988,-91.55135593469865,-91.55131289622062,-91.56155004954871,-91.57167005786921,-91.59256576150779,-91.61363587214785,-91.63510227997918,-91.65572507712292,-91.67473426824938,-91.69031942526166,-91.69434819739799,-91.69503222639608,-91.71558351027404,-91.73608755528545,-91.75665881413511,-91.77726767529425,-91.79834272363213,-91.81873846760421,-91.84007196871326,-91.86082510429634,-91.88121128400076,-91.90213273019479,-91.92362432983676,-91.94448317791458,-91.96532002242823,-91.98637668922987,-92.00344197660907,-92.00690353666616,-92.02794865893725],"lat":[46.1576773813675,46.15763702473076,46.14320185909349,46.12873911597954,46.12227328531156,46.11788323355216,46.11423953677743,46.09963790336598,46.08537089519966,46.0708911429272,46.05640558174434,46.04201927448591,46.02754462231142,46.01296053311056,45.99816208084202,45.98392124551694,45.9838091337496,45.97250519014491,45.95858757520984,45.9505678130154,45.94264046074115,45.9310966269633,45.92855065735241,45.92595488651721,45.91439299161242,45.90014331305888,45.89922656352513,45.89854670919497,45.8975587874486,45.88694608084349,45.85816609193665,45.84385434425971,45.82958008079004,45.81531599102507,45.78303822839281,45.76856175252978,45.75430956467505,45.73984138141155,45.73375130246567,45.72543847404974,45.71855383104906,45.71188758796658,45.7056593134752,45.69775835812889,45.69098264348523,45.68332828567844,45.67619593363192,45.668954264252,45.65452153211974,45.64752480899006,45.63987024738412,45.63983977045125,45.63966077885307,45.63954186276924,45.63953176229269,45.63946514618056,45.63934516201589,45.63927707261691,45.63923586910406,45.63908814051579,45.63905680536737,45.63893105463045,45.63888045136417,45.6389003296046,45.63885390179163,45.63885292189536,45.63892024401142,45.63887287660226,45.63883411054454,45.63882636760599,45.63877023319466,45.63875117139853,45.63871694324042,45.63872854375935,45.63872909766935,45.63874562903612,45.63876002763331,45.63873362400915,45.63874576831141,45.63872945476923,45.63872686732081,45.63875148040032,45.63873918978381,45.63875497363039,45.63883055393067,45.63876903561226,45.63876140766546,45.63869939130687,45.6386083657641,45.63857263549406,45.63853404722884,45.6384767750434,45.63836253669366,45.63811727346231,45.63808871912988,45.63820021384934,45.63828560139403,45.63823705227278,45.63817185625908,45.63808983051793,45.63809809750373,45.63802434044425,45.63793806373886,45.63781656141612,45.63778605449095,45.63785419119117,45.63779023909183,45.63778771304891,45.63762017036478,45.64491929229637,45.65202641895811,45.65929670181161,45.67191669865509,45.70341095088251,45.72360285447263,45.73131412593418,45.73781610736316,45.7459092745647,45.75776450751056,45.76575046829878,45.7802623142267,45.78865206744958,45.79550666007416,45.80439585342302,45.81311489461815,45.82024920837249,45.82733229176939,45.83457497310005,45.84876452020559,45.85573457199005,45.86294863471509,45.87008003930355,45.88459523023491,45.90015024691031,45.91435403556845,45.92867362468134,45.94222933855267,45.9568723367026,45.97106577147752,45.98255218738921,45.98272791236269,45.98293578639165,45.98313907128849,45.98342769755834,45.99776359941738,46.01211875968706,46.01935717651286,46.02664526295165,46.0338399039238,46.04110019668352,46.05544525666276,46.0626728552274,46.07043950249255,46.08479602079506,46.09931182623026,46.10671505516709,46.11398106437591,46.12291693082798,46.12866667790976,46.14260948603641,46.15693655798344,46.15777347584895,46.1578128935971,46.15784895105252,46.15789672761343,46.15764524375459,46.15747509281353,46.15744247412053,46.15760537847746,46.15759740111496,46.15757261681263,46.15752941290307,46.1577346656061,46.15790831461691,46.15785853568968,46.15786970244956,46.15780172822679,46.15755301311962,46.15784977537283,46.15775223770663,46.15761571443026,46.15754845123509,46.15742040775904,46.15741550094819,46.15734446360401,46.15757473348125,46.15759218069168,46.1576773813675]}]],[[{"lng":[-92.2794332138416,-92.29323475049205,-92.29322409325383,-92.29326086827061,-92.29322563293236,-92.29325521815846,-92.2932533912623,-92.29328106891381,-92.29366425368197,-92.29399024748004,-92.29409785212435,-92.29409875775264,-92.29421828231548,-92.29476038909291,-92.29532610725487,-92.29588463937374,-92.29705853618121,-92.29782399891528,-92.29861770932314,-92.29963549542407,-92.30087771978475,-92.30214242691198,-92.30288791385841,-92.30420696046352,-92.30569830408962,-92.3067124603561,-92.30789271949487,-92.30912046684684,-92.31014404962922,-92.31133989793379,-92.31295446493203,-92.31411359454644,-92.31468604052128,-92.31536150963373,-92.31616311864943,-92.31665981817299,-92.31697525078121,-92.31791754152127,-92.31846357215383,-92.31917306278673,-92.32032563737204,-92.32132911596264,-92.32286885028785,-92.32350360073568,-92.32394662478225,-92.32431604319898,-92.32468982406917,-92.32587679368562,-92.32666163640762,-92.32746712666729,-92.32925425750093,-92.3300796591685,-92.33084184740544,-92.33200424914882,-92.33307371724486,-92.33357055809461,-92.33407741673911,-92.3342671457131,-92.3345222115201,-92.33526288588125,-92.33590393069636,-92.33637617801404,-92.3369455983828,-92.33732925579247,-92.33783304558057,-92.33795972514635,-92.33818495295496,-92.338331144045,-92.33853646807849,-92.33861567732886,-92.33865305602637,-92.33880654612774,-92.33918839024479,-92.33978579040465,-92.34029299049612,-92.34077231628639,-92.34110701138528,-92.34141416529827,-92.3417206039059,-92.34209981722073,-92.34258678534847,-92.34314505642382,-92.34335438708281,-92.34344938942523,-92.34348814092424,-92.34337321237479,-92.34325607334951,-92.3432371624789,-92.34318725500276,-92.34313261843428,-92.34304185577227,-92.34291145875559,-92.34270679663837,-92.34247930837147,-92.34222797744968,-92.34223355999656,-92.34220721365224,-92.34215307465702,-92.34232416696669,-92.34257795226505,-92.34295820912962,-92.34314207587644,-92.34331098020215,-92.34339558911726,-92.34362067976029,-92.34397076615666,-92.34436062569644,-92.34480848612169,-92.34558279301068,-92.34589235410755,-92.34632362267456,-92.34692657140786,-92.34753431579307,-92.34826735435617,-92.34894197560347,-92.34961436877116,-92.34988680133745,-92.34996328398455,-92.35002581003424,-92.35000746429724,-92.34998618858263,-92.34979469876431,-92.34970539624881,-92.3501226578971,-92.35027816813138,-92.35007863078852,-92.34975705391147,-92.34973359171563,-92.34986409038626,-92.35043569176108,-92.35106940017336,-92.35167807319424,-92.35261129788414,-92.35351435361403,-92.35444536069056,-92.3552282410337,-92.35594199024978,-92.35658445798624,-92.35709569961281,-92.35748452542477,-92.35805310839947,-92.35907745058452,-92.35999743073803,-92.36056526979725,-92.36122679546189,-92.36209709257108,-92.36304351447274,-92.36444127979932,-92.36554170798806,-92.36636834573744,-92.36751174845618,-92.36833320845423,-92.36908817000091,-92.36978391813557,-92.37060538026387,-92.37173082046999,-92.37245898241332,-92.37344260852309,-92.37412932837879,-92.37466418164152,-92.37523188779579,-92.37579696043561,-92.37669825261516,-92.37858288487,-92.37938571940519,-92.38044033552494,-92.38117005727619,-92.38200272631882,-92.38301444367896,-92.38394263513035,-92.38544130309131,-92.38656686574785,-92.38742083580125,-92.38812111248517,-92.38962201204478,-92.39032079373159,-92.39117365152541,-92.39222951478476,-92.39273841865445,-92.39337680818223,-92.39401367303979,-92.39477521804497,-92.39528339264147,-92.39584118836635,-92.39649714550832,-92.39730642134241,-92.39783962631056,-92.39832583476635,-92.39898852272121,-92.39951950746594,-92.40008033658756,-92.40049458116371,-92.40121405134504,-92.40227938716353,-92.40333842433121,-92.40412202483851,-92.40589496066009,-92.4071835351899,-92.40794183645966,-92.40849823030067,-92.40915502838102,-92.40981034202285,-92.41056338852802,-92.41141307489032,-92.41213169603027,-92.41314997326052,-92.41376898376646,-92.41458308264284,-92.4152714313545,-92.41596658592997,-92.41653670518623,-92.41715720328538,-92.41792847857295,-92.41865163517814,-92.41912061168014,-92.41984151071244,-92.42078741649516,-92.42137533718549,-92.42206063305811,-92.42318308038683,-92.42587753696661,-92.42747454609635,-92.42938931993011,-92.43061241678248,-92.43134724251455,-92.43227713406885,-92.43301118067356,-92.43430196992365,-92.43532080874422,-92.43713336747894,-92.43843420192371,-92.4395453205663,-92.44083805240754,-92.44174795638065,-92.44262790663622,-92.44304161400576,-92.44319295899068,-92.44321815078027,-92.44350991983814,-92.44380854592586,-92.44405832669457,-92.44421079482034,-92.4441682290538,-92.44399120259183,-92.44389752647089,-92.44400113008192,-92.44422817236524,-92.44497495753041,-92.44573715304588,-92.44673037903422,-92.4481024224183,-92.44890628045709,-92.4497647259339,-92.45060040667933,-92.45123770950342,-92.45187459135391,-92.45262799660013,-92.45292262844913,-92.45311998132075,-92.45337115061933,-92.45366193781311,-92.45380508715948,-92.45387747611436,-92.45370497229746,-92.45340558320505,-92.45320428953885,-92.45330624793556,-92.45363157712616,-92.45499343248559,-92.45583044432291,-92.45711448150156,-92.4578437602287,-92.458755589142,-92.45937101794337,-92.46028478443185,-92.46106782102849,-92.46208533705148,-92.46303713672961,-92.4634588158757,-92.46411036541882,-92.46450898922365,-92.46457356573796,-92.4643129788016,-92.46419229088559,-92.46402394286157,-92.46355388715948,-92.46309458781201,-92.4617251671153,-92.46136775881037,-92.4610072647468,-92.46084355777863,-92.4608632153154,-92.46103154626384,-92.46153697850809,-92.462307239099,-92.46268501702782,-92.46355362898093,-92.46427923239843,-92.46468085680704,-92.46536915117767,-92.46629149008739,-92.46833941824347,-92.46957411870467,-92.47136255785281,-92.47222876034986,-92.47342662358467,-92.47485080918921,-92.47613132948209,-92.47688921919854,-92.47789886061659,-92.47894608908285,-92.47973886294005,-92.48085949829661,-92.48149173312478,-92.48210210520688,-92.48269483592681,-92.48339023915537,-92.48417353511036,-92.48537613613395,-92.48634303992158,-92.4872092374808,-92.48822261114869,-92.48918408963563,-92.49029505673123,-92.49151796639822,-92.49275566780359,-92.4935144338335,-92.49463230636063,-92.49612843198362,-92.49752039149492,-92.49820153460313,-92.49882924234191,-92.49941203410719,-92.50025401104172,-92.50127285502893,-92.50273320163549,-92.50398396592753,-92.50540885657314,-92.50654173802552,-92.50749779417148,-92.50971012552969,-92.5117936809709,-92.51350089740956,-92.51578870089355,-92.51711727091606,-92.51847397455553,-92.51985135558662,-92.52072549424267,-92.52182174517512,-92.52281649105745,-92.52380964552259,-92.52526102359745,-92.5279106946076,-92.52864371785141,-92.53045440534774,-92.53118820131847,-92.5319343398791,-92.53255830605734,-92.53286218941065,-92.53353924758039,-92.53461171760718,-92.53585671199008,-92.53705524391414,-92.53782626932511,-92.53872856994111,-92.53980217228326,-92.54036890529636,-92.54088488106019,-92.54113393757463,-92.54141986434016,-92.54186285842565,-92.54258100827533,-92.54312825017746,-92.54352558304288,-92.54406647194158,-92.54491384141991,-92.54608636333774,-92.54735839786208,-92.54825608061863,-92.54904507639763,-92.54961562186237,-92.55002829629615,-92.5500167009158,-92.54972479286891,-92.5497374222338,-92.54985111770991,-92.55017930456148,-92.55036835401525,-92.55033416716121,-92.55025045083491,-92.55011318629909,-92.54993592499694,-92.54979195077989,-92.54966106573399,-92.54975809331874,-92.55003903617501,-92.55055974288838,-92.55078168102632,-92.55097106981702,-92.55161476105602,-92.5522497398174,-92.55345512437448,-92.55417298977844,-92.55499192550064,-92.55586161352788,-92.55665397067101,-92.5574495356985,-92.55821892232137,-92.55876273948117,-92.55933353607492,-92.5599067373184,-92.56042996506046,-92.56109945385782,-92.56169083034814,-92.56232497899759,-92.5628829887111,-92.56395904779876,-92.56476797594576,-92.56562286302335,-92.56620541401635,-92.56690682177386,-92.56807871406626,-92.56876953814434,-92.56946116671101,-92.57024706984211,-92.57121417739718,-92.57176716505364,-92.57249497114113,-92.57324175701262,-92.57408399924597,-92.57472286982571,-92.57557884309698,-92.5775880656774,-92.57961777019747,-92.58064449841162,-92.58178682234528,-92.58292469276005,-92.58438474632004,-92.58582099884892,-92.58645535617281,-92.58708524145892,-92.58783194632822,-92.5882616649322,-92.58906270107003,-92.58962857232832,-92.59032330168753,-92.59099224827892,-92.59176229861502,-92.59255406616752,-92.59344371698374,-92.59418352911938,-92.5948021474334,-92.59581946409904,-92.59671353719628,-92.5977525923722,-92.59985726899168,-92.60069773793288,-92.60215196504367,-92.60247210650556,-92.60344580285363,-92.60505084545936,-92.60604865286068,-92.60753120041382,-92.60816131631979,-92.60916496539527,-92.61024913104951,-92.6109009514084,-92.61138323815537,-92.6122528327769,-92.61288249105351,-92.61366234451309,-92.61479297755959,-92.61555881908392,-92.61655430260448,-92.61723046615047,-92.61828604911462,-92.61938915889692,-92.62066376141188,-92.6213616513693,-92.62205548836552,-92.62276935947531,-92.62345009354709,-92.62424914104517,-92.62470597971902,-92.62526022434785,-92.6258439109281,-92.62647672262037,-92.62701007341627,-92.62771818920325,-92.62838619983096,-92.62902839703077,-92.63009914018083,-92.63095335392126,-92.63158412206012,-92.63224392800767,-92.6327289915945,-92.63329182617932,-92.63397909463062,-92.63453371622808,-92.63513667730626,-92.63590783708088,-92.63658036526402,-92.63756762717561,-92.63832275861078,-92.63890724002611,-92.63943517402166,-92.63993733309508,-92.64014066619855,-92.64011561189032,-92.63996034837446,-92.63983253781289,-92.63960362483503,-92.6394549626463,-92.63924857001281,-92.6391154339709,-92.63898681555577,-92.63891841266843,-92.63868952729162,-92.63850443299917,-92.63850476262445,-92.63867941230068,-92.63895640671862,-92.63936971690541,-92.63991564277784,-92.64058599199504,-92.64141475409289,-92.64198934688275,-92.64273912257114,-92.64341150835244,-92.64403234435358,-92.64490118063161,-92.64556741721275,-92.64608426421107,-92.64685323079703,-92.64764509313305,-92.64809157545837,-92.64859581678976,-92.64919867548204,-92.64989728405479,-92.65036669274801,-92.6509813134515,-92.65145235453679,-92.65202283755447,-92.652545030719,-92.65312130233366,-92.65359317111451,-92.65398766947168,-92.65443165457583,-92.65502669281018,-92.65569661407214,-92.65608904130532,-92.65689385202498,-92.65757305100544,-92.65824971024941,-92.65926557448276,-92.66035586689956,-92.66153148325762,-92.66234835301071,-92.66326302798549,-92.66430452105797,-92.66500235685226,-92.66559821722007,-92.66599397099604,-92.66684111977003,-92.66739907669626,-92.66815798814345,-92.66896470364254,-92.66927966629615,-92.6699046024586,-92.67054409964308,-92.67111119302864,-92.67172942679848,-92.67238302632921,-92.67291596349784,-92.67332281460224,-92.67375048754273,-92.67391481483182,-92.67480551857875,-92.67556430332866,-92.67605269692065,-92.67652860203957,-92.67670121602708,-92.67670284462309,-92.6766017613827,-92.67639831682843,-92.6760384470423,-92.67583336610333,-92.67571104491921,-92.67578427309053,-92.67606253669004,-92.67650801071814,-92.67701713926587,-92.67748384713531,-92.67795344177497,-92.67859900727957,-92.67912021872573,-92.67966510743223,-92.68032937644112,-92.68079318021952,-92.68161879475164,-92.68232209322802,-92.68317307570908,-92.68436552172491,-92.6854510119459,-92.6859525322854,-92.68638046569274,-92.68676388586228,-92.68710073464884,-92.68766011450089,-92.68819703441839,-92.68883166601394,-92.68949420550928,-92.68995872485158,-92.69023688108437,-92.69054332386125,-92.69103072676666,-92.69154432227405,-92.69227875212349,-92.69306476610096,-92.6935529918015,-92.6941443694283,-92.69455604798065,-92.69508200909304,-92.69573232946875,-92.69650614399943,-92.69703965139968,-92.69774782190117,-92.69837397949588,-92.69873570038932,-92.69927171607283,-92.69971206777957,-92.70030048082531,-92.70076872300078,-92.70116966375927,-92.70179436882849,-92.7024152846673,-92.70290934639249,-92.70362419031616,-92.70428493160489,-92.70509285351648,-92.70573073644928,-92.70639689387916,-92.70703184963327,-92.70775729974061,-92.70818291823841,-92.70874935845877,-92.7092726488095,-92.71003745699369,-92.7108550939803,-92.71153986468592,-92.71222462292548,-92.71273475031791,-92.71320808696709,-92.71350924638533,-92.71389548029381,-92.71412644232947,-92.71462847574566,-92.71532929320703,-92.71617051794631,-92.71688062342582,-92.71706292143324,-92.71727273969954,-92.71767198725522,-92.71788174195544,-92.71840825470775,-92.71892971259388,-92.7191622949376,-92.71957376644419,-92.7201112585482,-92.72079589005047,-92.72135491255509,-92.72168137767271,-92.72189492745864,-92.72236345066923,-92.72292456275991,-92.7233930643618,-92.72390935619306,-92.72478584611724,-92.72510380603902,-92.72510081602287,-92.72524960394212,-92.72562165763352,-92.72610742227285,-92.72667226455158,-92.72746795208275,-92.72789918023244,-92.72820864563778,-92.72839337293391,-92.72864402644275,-92.72901688390778,-92.72947763172574,-92.72994514477952,-92.73002797830826,-92.73026930354553,-92.73072159457878,-92.73156493511354,-92.73238546493273,-92.73276207134158,-92.73291630138982,-92.73327845736382,-92.73381353813919,-92.73406114459968,-92.73452688283288,-92.73508087892601,-92.73517415537523,-92.73541707944023,-92.73579563981485,-92.73623679979517,-92.73685765023821,-92.73743624453515,-92.73801058412283,-92.73816857712096,-92.73812153478893,-92.73778754714466,-92.73729753914014,-92.73657670153992,-92.73598524466664,-92.7357751227309,-92.73565836490135,-92.73617716367139,-92.73672926719597,-92.73716694209584,-92.73748974403351,-92.73773853502809,-92.73790532531585,-92.73789172167038,-92.73781069712133,-92.73803993848759,-92.7382489103605,-92.73855819422852,-92.73896212424754,-92.73901099634914,-92.73883106232603,-92.73875186262472,-92.73872804680822,-92.73895104560572,-92.73943299064992,-92.73983049710303,-92.74060583141065,-92.74169887392256,-92.74243111279551,-92.74315099919937,-92.74357765077353,-92.74375626055605,-92.74385964328654,-92.74413967631203,-92.7444872413185,-92.74485292127842,-92.74523222711871,-92.74593735977517,-92.7469493194517,-92.74802711066111,-92.74900558005417,-92.74985026089205,-92.75040344828658,-92.7510676387374,-92.75160501737507,-92.75208057437553,-92.75237093108646,-92.7527859700314,-92.75343387941288,-92.75410972368016,-92.75488353686517,-92.75646123176305,-92.75808020087811,-92.75957444139441,-92.76103687326841,-92.76204576233749,-92.76292612475231,-92.76384729529873,-92.76459267771398,-92.76504748211924,-92.76542835606168,-92.76563215802372,-92.76571816945354,-92.76563100595901,-92.76529760750959,-92.76490405369883,-92.76457622429385,-92.76379085317966,-92.76353997549816,-92.76314691340991,-92.7628062747944,-92.76262118204676,-92.76242624436712,-92.76219476186039,-92.76172517856321,-92.76127284433167,-92.76075814048242,-92.7599607815249,-92.75944184575201,-92.75930054626195,-92.75915808008968,-92.75887638206832,-92.75830178333582,-92.75775635933445,-92.75752583022151,-92.75741387902193,-92.75707598633025,-92.75693871013131,-92.75702526647879,-92.7571548256609,-92.75734443013849,-92.75781127348306,-92.75835711917188,-92.75902792950443,-92.75992038655527,-92.76086563557321,-92.7620067218256,-92.76244147236092,-92.76328861765802,-92.76404978967464,-92.76495577291833,-92.76556576156301,-92.7661443698221,-92.76709067523642,-92.76780979367285,-92.76899746915623,-92.76981622453074,-92.77041329572469,-92.77091842301205,-92.77143428396731,-92.7720270294836,-92.77274129545484,-92.77304623139291,-92.77375917064668,-92.77450347423995,-92.77544230293739,-92.77595417320816,-92.7762311192872,-92.77628778349955,-92.77645226144952,-92.77677129087704,-92.77809383113285,-92.77901949842884,-92.77921905017034,-92.77974192588184,-92.77986891220235,-92.77994173077047,-92.78002230087561,-92.78029999270977,-92.78042999839151,-92.78037538264631,-92.78041953088349,-92.7806594708519,-92.78111611029807,-92.78154311368387,-92.78192335239346,-92.78213449137397,-92.78214512059662,-92.78192482311231,-92.78192638309518,-92.78216370449786,-92.78292464336045,-92.78370751760565,-92.7845895544785,-92.78573985122442,-92.78698710419651,-92.78802449158422,-92.78871413761435,-92.78912992892108,-92.78965896556812,-92.79026528186758,-92.79104844580507,-92.79191100201918,-92.79231347334171,-92.79331374200487,-92.79454561224362,-92.79489915197149,-92.79544102697319,-92.7960969772618,-92.79674362068099,-92.79759021338036,-92.79834461146048,-92.79917889122299,-92.79998784204965,-92.80102035598432,-92.8016502523292,-92.80234880615119,-92.80298620597246,-92.80363942246491,-92.8038199179211,-92.80401449981423,-92.80425968036215,-92.80474683312491,-92.80521560082234,-92.80552575527641,-92.806464445749,-92.80716152803485,-92.80787442368587,-92.80819465785972,-92.80869301534976,-92.80931198438138,-92.80993478332924,-92.81073141260946,-92.81160395531666,-92.81230357723295,-92.81308659516753,-92.81387088173811,-92.81532198798669,-92.81600586035404,-92.81626831012133,-92.81691202525353,-92.81765486088149,-92.81841817828,-92.81945049176987,-92.81995918798165,-92.82066094131409,-92.82138706173056,-92.82198834528789,-92.82248180354077,-92.82308868712542,-92.82408028758421,-92.8254840577042,-92.82625644975589,-92.82663193354544,-92.82717634586682,-92.82725931510913,-92.82760242267331,-92.82802634830756,-92.82884365558424,-92.829670099276,-92.83064370832547,-92.83157143104712,-92.8324843419983,-92.83374389872448,-92.83485590752075,-92.83588931491745,-92.83644986893937,-92.83682433799991,-92.83725563560463,-92.83809077247891,-92.83842955600649,-92.83929297081836,-92.84037067642366,-92.84147764562054,-92.84225373300031,-92.84350178475512,-92.84443291679564,-92.84532173003123,-92.84611762871742,-92.84676200335063,-92.84760499035255,-92.84816766857908,-92.84870327690055,-92.84962114485941,-92.85032102669702,-92.85046610886832,-92.85039719594826,-92.85042206821575,-92.85046015073718,-92.85112208385124,-92.85167543225498,-92.85248554109155,-92.85346851293846,-92.85425944508873,-92.8550224747444,-92.85571522708364,-92.85657063992379,-92.85723144300844,-92.85797263511913,-92.85883692123691,-92.86051654142818,-92.86179501216571,-92.86313741798544,-92.86369777757857,-92.86493371573265,-92.86617179177898,-92.86758443599345,-92.86875583715009,-92.86903623209102,-92.86934160109296,-92.8695048284746,-92.8692005319144,-92.86891184569416,-92.86873688786265,-92.86868987658565,-92.86878452524756,-92.86918630563186,-92.86939826709452,-92.86971646043878,-92.86992182084789,-92.86999029966348,-92.86994287581474,-92.87019526996768,-92.87033797529266,-92.87054150634474,-92.87088360162592,-92.87119147061237,-92.87124755471005,-92.87139556002458,-92.87159592027245,-92.87167950272934,-92.87160895251748,-92.87146684628866,-92.87110264875942,-92.87079044017894,-92.87062173464619,-92.87026108453753,-92.87001908433035,-92.87007553056303,-92.87022526701971,-92.87053308707455,-92.87071832459445,-92.87145743457685,-92.87281971534934,-92.87365566596638,-92.8743618357868,-92.87513328812278,-92.87539222059965,-92.87556851768738,-92.87578129294265,-92.87592564485162,-92.87603177000439,-92.87596522941233,-92.87604516367279,-92.87618369511499,-92.87649187892067,-92.87665306512662,-92.87664821309755,-92.87664870721493,-92.87681214624135,-92.87732452534192,-92.8782372746159,-92.87866075413265,-92.87881389847387,-92.87899807335029,-92.87915300117402,-92.87951518299286,-92.88047438199968,-92.88150761660525,-92.88231712595791,-92.88254390813151,-92.88259219176896,-92.88273995159679,-92.88346061135627,-92.88389367241861,-92.88398059753459,-92.88400631296339,-92.88393474741909,-92.88397419105453,-92.8842830187488,-92.88480520709874,-92.88528911988357,-92.88537103645513,-92.88566560931329,-92.88672246484855,-92.88690823688749,-92.88460828209027,-92.85829802271307,-92.84797198756266,-92.8376465911159,-92.82741510666163,-92.8264098855547,-92.8169880840569,-92.80766820960426,-92.80679977317085,-92.79643982071855,-92.78659058446763,-92.77559646919522,-92.76509463049079,-92.75458530156479,-92.75021644795214,-92.7455854709915,-92.7442982881692,-92.73401256581566,-92.72370996193828,-92.71340799668801,-92.70662562993689,-92.703160131638,-92.68397486692997,-92.682606001572,-92.66265009796685,-92.65181989355125,-92.63197974055431,-92.61139219206645,-92.59069950379042,-92.57001475290026,-92.5532800417247,-92.52908821353071,-92.52910252214664,-92.52901430836431,-92.52865327581685,-92.52840925064898,-92.52831073700317,-92.50912687898524,-92.48843723386254,-92.46772789452082,-92.44738781216243,-92.44433274578034,-92.4271817273182,-92.40668855792777,-92.3660922311381,-92.34548081353492,-92.32505645859774,-92.30445544819023,-92.2945815663065,-92.28377612856691,-92.25766531375474,-92.23707660848459,-92.17509886817336,-92.15435603242534,-92.15511726930946,-92.15490774641728,-92.15495622585586,-92.15488765689244,-92.15514114630312,-92.15501853331179,-92.11366337749101,-92.10326983616298,-92.09298538271814,-92.0823677891283,-92.07180839232944,-92.06192242196769,-92.04378825883789,-92.03124265709774,-92.03131013719896,-92.0313891674366,-92.03167642306407,-92.03158272473276,-92.03153042309981,-92.03154320654809,-92.03145755841899,-92.03148938019339,-92.03156580136726,-92.03152924926874,-92.03142191870705,-92.03144673968137,-92.03141585026485,-92.03166343589571,-92.03175717749848,-92.03179532493716,-92.03198261501646,-92.0326013862597,-92.0328362175616,-92.03292250314746,-92.03245163829415,-92.0326163169029,-92.03264191585801,-92.03262444034482,-92.03266638060124,-92.0327565886608,-92.03290791672758,-92.03298911177106,-92.03302415542643,-92.03301901713306,-92.03285260179051,-92.03264559720542,-92.03308569224123,-92.03350136780524,-92.05054860010092,-92.05024238734812,-92.04999392754192,-92.05012276291802,-92.05029823373259,-92.05050459190981,-92.05057019704523,-92.0507064886098,-92.0505654086776,-92.05039515286047,-92.05031887460839,-92.05024846346585,-92.05004841288802,-92.04980870074742,-92.04947406892236,-92.07047137623631,-92.07906554604115,-92.08139158387601,-92.08665843476919,-92.1122268326493,-92.12205958662983,-92.13281147859549,-92.15372903199247,-92.17123164403129,-92.17345091161097,-92.17545007102065,-92.19669656008539,-92.21679575123723,-92.23797262681435,-92.25875852034895,-92.2794332138416],"lat":[46.15761200102457,46.15765427658016,46.14689043648139,46.14477572914987,46.14392758837911,46.14163976672412,46.13116276759148,46.1264319321652,46.10550666516205,46.08440079072575,46.08038722939664,46.07740692568822,46.07428529288821,46.07415289885899,46.07398571470109,46.07364541025752,46.07313690861777,46.07298257071955,46.07291485210961,46.07284205177675,46.0727827247368,46.07266161567133,46.07262971382508,46.07261999268729,46.07255558814885,46.07239616786122,46.07204325249815,46.07163760719948,46.07111401111504,46.07053572910643,46.06985332829722,46.06958683743314,46.06959267919446,46.06966562101993,46.06978831839275,46.06976080457379,46.06956370917651,46.06947540341272,46.06942944706922,46.06913771732795,46.06871604163233,46.06831425922311,46.06762479698403,46.06733456171875,46.06721304369801,46.06711889778549,46.06712873127717,46.06693131151427,46.06665543878828,46.06627507239729,46.06556248578023,46.06506074897677,46.06424809250388,46.0634790116153,46.06227923615031,46.06166267729095,46.06069939341916,46.05988096929312,46.05943360638476,46.05870799069469,46.05796752726327,46.05677936557935,46.05552002088803,46.05400457992944,46.05178520709784,46.05124539218263,46.05068612744073,46.05002497012703,46.04958761849925,46.04910052943316,46.04821602472442,46.04772797803848,46.04733876222973,46.04675499394975,46.04639808276868,46.04595511303862,46.04563604621575,46.04524835287767,46.04484379744971,46.04440287422587,46.04414143443309,46.04381834096309,46.04346752669998,46.04277253598733,46.04192231516288,46.04097173864826,46.0399688948883,46.03892971772663,46.03834176786011,46.03763241002731,46.03725287319925,46.03652819072641,46.03580446958083,46.03513296753789,46.03447995225544,46.03402925138448,46.03340593839521,46.0321250303094,46.03146279687586,46.03098956312046,46.03056605025549,46.03021575669953,46.02931111243294,46.02896285634454,46.02840357861842,46.02785917123943,46.02707149965105,46.02649077250464,46.02597196763902,46.02565396631331,46.02526371006203,46.02481817223079,46.02447660088117,46.02416676404297,46.02365054933322,46.02308206027791,46.0224700430127,46.02193124907753,46.02164419269938,46.02121141663875,46.02070950993019,46.0202971765092,46.01995248957099,46.0192334244337,46.01879707123178,46.01819476303435,46.01764671776152,46.0170931016974,46.01665726341862,46.01605596720259,46.01574872023255,46.01544142056369,46.01516231052862,46.01476231092034,46.0144314768568,46.01412057029972,46.01395002769052,46.01385014462321,46.01358814292166,46.01338098107743,46.01330005209736,46.01340884690433,46.01339884612548,46.01330048186011,46.01307023144369,46.01306911445256,46.01310185444603,46.01322031593985,46.01336179127161,46.01350105457382,46.01348579684917,46.01350364844279,46.01371300881417,46.013698576675,46.01371640640161,46.01386630281581,46.0140244444801,46.01435053495118,46.01470022406554,46.01500074887466,46.01547441815544,46.01589582071605,46.01603289187538,46.01648757094417,46.01664411041678,46.01688203145005,46.01707495826226,46.01735236642035,46.01774697713088,46.01793575099205,46.01807772406534,46.01822747288673,46.01841720095278,46.0185066345446,46.01870926241079,46.01876383144404,46.01893668237572,46.01919190348135,46.01945857533964,46.01984404029524,46.02019409096407,46.0205420905931,46.02079132642054,46.02103952164227,46.02125133757416,46.02156343776437,46.02181213687449,46.02213157762201,46.02249850067561,46.02269548146362,46.02301278500889,46.02338547834445,46.02391601743323,46.02439596226429,46.02472077240302,46.02501592752522,46.02574083436659,46.02619915643952,46.02647794250054,46.02669122486229,46.02691982807756,46.02711414413091,46.02727151468895,46.02735764984035,46.02729916050816,46.02726021288785,46.0271953829347,46.02703923101993,46.02685141516992,46.02681983945625,46.02677290027123,46.02674233454579,46.02674344771014,46.0267798916908,46.02670076950596,46.02668549970813,46.02670033324649,46.02649716951753,46.02624019065249,46.02573991716052,46.02478154049173,46.02433189828333,46.02375396543305,46.02327735422833,46.02301926112156,46.02267038177596,46.02239485453325,46.02176937858003,46.02117611952345,46.01997638373395,46.01901255925567,46.01826147298367,46.01712453468853,46.01632541117018,46.01540597494095,46.01463432320785,46.01412030471611,46.01356510463643,46.01284837733012,46.012287325988,46.01174475594451,46.01125658710713,46.0108586600211,46.0102217174593,46.00979056534904,46.00932031696413,46.00882998582968,46.007722681658,46.00639790069809,46.00523298919307,46.00364422905249,46.0027083752387,46.00187597038799,46.00109524314182,46.00031932870243,45.99954341780477,45.99858273927003,45.99793511589367,45.99734190173643,45.99683415955837,45.9960999865181,45.99540386154762,45.99479588915943,45.99426237101457,45.99367925981431,45.99306029242024,45.99255519135983,45.99204585531475,45.99079475568904,45.99004939794813,45.98929385480641,45.9889142003567,45.98873875223186,45.98860399310184,45.98846336870543,45.9881866065117,45.98759257307024,45.98719120859074,45.98661001319638,45.98560813969248,45.98450820880217,45.98372713702126,45.98289232266346,45.98240945582989,45.98197993059021,45.98147028151184,45.98120285617989,45.98059108350729,45.98037376986414,45.9800867655086,45.97976120653609,45.9790851728219,45.9789600353396,45.97858517771139,45.97801447377641,45.97757260987127,45.97698233724897,45.97653352904631,45.97605682889558,45.97533148373276,45.9748350996734,45.973941982971,45.97320480219933,45.97262889152201,45.97254095503013,45.97265396691336,45.97283069303565,45.97312358843,45.9734019273465,45.97374399068255,45.97382533724215,45.97377324882622,45.97381810686402,45.97406426552153,45.97438065075607,45.9748526791449,45.97539222820951,45.97568684244659,45.97590369585232,45.97584777287757,45.97576815997623,45.97564201628783,45.97546524373235,45.97530263958846,45.97541435515502,45.97585538303206,45.97615046673949,45.97669815906075,45.97735852471324,45.9779176365208,45.97813619490869,45.97827884992856,45.97852599345821,45.97900991419415,45.97955970918647,45.97997775101049,45.98015847761121,45.98033536854012,45.98065703791398,45.98091338550005,45.98146221223136,45.98191932214433,45.98229748172171,45.9828709684746,45.98311902885919,45.98343564741375,45.98366516015577,45.98374994210892,45.98381237264209,45.98382528090398,45.98379434040429,45.98346805126832,45.98269894228923,45.98242282237795,45.98179317693022,45.98153446176453,45.98099813660479,45.98050782938168,45.98008536961427,45.97967151254961,45.97921455895857,45.978719451549,45.97829399087588,45.97775707395445,45.97683582760773,45.97585901255437,45.97520510833249,45.97453545671676,45.97400112408847,45.97373486830587,45.97310171147292,45.97249618355029,45.97196421187686,45.97141813361445,45.97074791352505,45.97026099945992,45.9698191464283,45.96937506238458,45.96890444065416,45.96822809351168,45.96766125501377,45.96690667242993,45.96611824511731,45.96517181514394,45.96435753282078,45.96359218594264,45.96261447113645,45.96186544141986,45.9611208349756,45.96037789538187,45.95954895957505,45.95893805726108,45.95850755057954,45.95781741871115,45.95668904068897,45.95522746366961,45.95358670858131,45.953010210541,45.95226060962588,45.95167468434026,45.95143491643986,45.95117395472851,45.95112358705819,45.95110526899393,45.9511032464151,45.9510506344763,45.95106769869432,45.95105046701392,45.95098596725308,45.95097317724694,45.95101264743499,45.95105267054385,45.95102022187689,45.95092032640345,45.95066364288984,45.95037378894523,45.95000310922882,45.94976836486624,45.94945495311052,45.94916453149866,45.94874992227858,45.94830785630489,45.9482056889719,45.94812093834467,45.94792998821551,45.94789078163431,45.94803415330889,45.94819102724706,45.94822651719673,45.9481726600583,45.94801986975175,45.94773167517062,45.94713223860089,45.94644510704516,45.94609282514301,45.94554721358141,45.94491505955885,45.94425816768702,45.94362767032931,45.94338828701142,45.94304436797399,45.94254253551432,45.94216883022843,45.94176926684323,45.94165292935459,45.94163717377004,45.94160455927836,45.94160452567463,45.9415342377792,45.94144484106882,45.94132397165701,45.94127560238716,45.94125248333051,45.94125803318996,45.94116520744425,45.94103068374511,45.94094179154028,45.94070108606206,45.9406414751522,45.9402209964124,45.93949133906101,45.93905285198148,45.93836027248824,45.93802523126833,45.93718830049892,45.93646990665609,45.93607416186709,45.93576835918463,45.93524611730092,45.9349026217843,45.93459000376861,45.93433910366022,45.93425180975795,45.93429876177872,45.93442165194875,45.93468323084122,45.93490095426107,45.93507929025599,45.93513246818766,45.93509966154217,45.93496175929799,45.93465134883719,45.93421726833751,45.93389511577854,45.93353585078016,45.93327940942713,45.93300496138946,45.93273279783644,45.93247404780728,45.93242435960663,45.93234882208752,45.93241079893585,45.93261614136348,45.93282718821026,45.93312363263578,45.9334072267846,45.93375821662457,45.93410633492044,45.93428368024081,45.9344261591149,45.93446011462134,45.93449690792891,45.93437003916425,45.9340578202334,45.93381929724923,45.93342568944036,45.93301579870226,45.93259481462518,45.93206716187004,45.9314120060971,45.93080853630495,45.93017252513367,45.92965616634307,45.92896787879715,45.92826045698448,45.92763956620586,45.92724286319719,45.92660684623609,45.9258488720086,45.92532906797072,45.92482211853193,45.92438255281579,45.92419973872448,45.92418711978127,45.92418906154797,45.92438647395688,45.9244598158843,45.92456397672642,45.92460016712572,45.92460323718358,45.92460055415503,45.92451592680513,45.92441732236595,45.92439950186576,45.92434626656309,45.92433591402891,45.92449748670109,45.92463932667405,45.92470974746674,45.92466453861925,45.92452876576527,45.92451782996065,45.92450458288245,45.92451833279392,45.92462645419169,45.92463293001271,45.92457200723039,45.92450937185712,45.92449553897625,45.92447996157023,45.92438420210291,45.92407070453557,45.9237432482419,45.92334609183362,45.92278576929044,45.92222314157728,45.92136374018533,45.92079002459477,45.92018870973263,45.91964405897087,45.91917773594355,45.91866090648305,45.91811443756288,45.91766149108788,45.91738856293195,45.91716325545555,45.91690138403615,45.91673819393505,45.91630786128936,45.91566904320221,45.91506679088062,45.91449765344159,45.9141532674188,45.91388089756282,45.91355916022887,45.91315930046368,45.9129647491168,45.91238977835956,45.91216385845956,45.91199658887774,45.91156970881962,45.91102843184984,45.91054291300428,45.90999117005304,45.90937207321473,45.90860025050603,45.9079468711404,45.90746425894465,45.90692587089355,45.90652050162819,45.90597282863322,45.90571843452399,45.90562085955501,45.90557497085948,45.90557726703033,45.90558247957722,45.90555225461792,45.90543259325704,45.90527488033214,45.904891525234,45.9045453540912,45.90417883154455,45.9036833264032,45.90303393565259,45.90262329316325,45.90223237910632,45.90194602138913,45.90172995092786,45.90149176629173,45.90130586356283,45.90108277861016,45.9009287888534,45.90077889855529,45.90037405703704,45.90003774830126,45.89985299460611,45.89969350397607,45.89948548473706,45.89931112315091,45.89914378326119,45.89906007487804,45.89884277827991,45.8984315191278,45.89801788333855,45.89760076366953,45.89734570637441,45.89710395518833,45.89670775267641,45.89649106105084,45.8962882502823,45.89615632566525,45.89600402964616,45.89594063716395,45.89601778789908,45.89610707614403,45.8961182633181,45.89607225415973,45.89596869814378,45.89577978762521,45.89555250652917,45.89539900322194,45.8953134646941,45.89510826808137,45.89470965987864,45.89428384161717,45.8936808546118,45.8932178319755,45.89261069511706,45.8920714886485,45.89186452805293,45.89165755815836,45.89143785710894,45.89096757291007,45.89052668967187,45.88979013174657,45.88943810993555,45.8890447677009,45.8886641295299,45.88810688924971,45.88739693215969,45.88706350131518,45.88627881272973,45.88581870687274,45.88553637784351,45.88514243357915,45.88464509929479,45.88432734100048,45.88410996253418,45.88394133246673,45.88373431614236,45.88349541212416,45.88306346706477,45.8828676715514,45.88230182625845,45.88159538287088,45.88102953434241,45.88042822447656,45.87957529563024,45.87897871824098,45.87840723680323,45.87790076070227,45.87738952344389,45.87666742491074,45.87604750614759,45.87557789891327,45.87526438152793,45.87499708701912,45.87471533425582,45.87425874132268,45.87376490843739,45.87304339298445,45.87246009741745,45.87212902539287,45.87148250463676,45.8710902795791,45.87058462636566,45.87011495217197,45.86970708830788,45.86930511041493,45.86860281461308,45.86788006074801,45.86736277199623,45.86674518380165,45.86589990137293,45.86527379406972,45.86466154219665,45.86378613987975,45.86316913321913,45.86268620898824,45.862343249472,45.86191375115506,45.86159774382703,45.86114826699355,45.86091381402522,45.86052727188491,45.85998987480749,45.85956188210657,45.85932445513711,45.85896327994431,45.85791124830289,45.85652932231323,45.85584264015215,45.85534998040021,45.85485853272353,45.8542137811661,45.85393677060694,45.85279503832433,45.85190576548919,45.85111205594885,45.85084473474854,45.85048851591969,45.84996754228933,45.84882818515889,45.84822365092788,45.84773873597673,45.84723102537139,45.84643976243234,45.84594530297566,45.84558016107899,45.84512019012093,45.84487758299888,45.84439224420907,45.84399214186283,45.84358956127756,45.84317134826667,45.84281808548152,45.84232424511573,45.84169158274877,45.84133592882302,45.84105907324258,45.84096553541487,45.84069713827048,45.840430563128,45.84046254122646,45.84062248304462,45.84051984845564,45.84035107033713,45.83994075892168,45.83929244462932,45.83865912690336,45.83822721370365,45.83785593991744,45.83745585946971,45.83677646822149,45.83592335409178,45.83505522872461,45.83404946415153,45.83340118666453,45.83265250102778,45.83172899289046,45.83076641151316,45.8299408156749,45.82911757439423,45.82822885865716,45.82746395006014,45.82670379773573,45.82598392217533,45.82504048243149,45.82442454689362,45.82308329463146,45.82251781136923,45.82159122928677,45.82071569355596,45.81997534672237,45.81904396783251,45.81837393670024,45.81789980894779,45.81726999771083,45.8168835876773,45.81629642936848,45.81582404910716,45.81547192705123,45.81459159218626,45.81390532809006,45.81281040977186,45.81180085460279,45.81114822860895,45.81038810561179,45.80956480355064,45.80878841120035,45.80803249429528,45.80714558826529,45.80646481349755,45.8053796103574,45.80439601112793,45.80342682943448,45.80243484594202,45.80151077244158,45.80053020288516,45.80030309857342,45.79990118092803,45.79976124699284,45.79954916407812,45.79936112015657,45.7990348866037,45.79863053810791,45.79814562271471,45.79761389457302,45.79714398994921,45.79669633063777,45.79588692604786,45.79530228122594,45.79476808809925,45.79417918268415,45.79383367680236,45.79272443226358,45.79175337193263,45.79070837862074,45.7900371765124,45.78912922489712,45.78827894343823,45.78810167338762,45.78753923321985,45.78524613115341,45.78343859878898,45.7824633216193,45.78102956812056,45.78009093703175,45.77857249732491,45.77720182797941,45.776311282435,45.77544177360578,45.77483666191172,45.77422914310348,45.77358198342473,45.77230565949461,45.77093498392496,45.77011112919881,45.76937858972074,45.76859862307612,45.76815338021196,45.76718292349626,45.76648406436023,45.76535614789384,45.76466142343566,45.76398115350155,45.76321669848049,45.7624065471845,45.7618614095777,45.76128987810507,45.76069072106536,45.75988064463868,45.75913787291837,45.7584605290962,45.75788475061646,45.75751093248475,45.75672418997497,45.75561110924905,45.7552559172979,45.75470540088541,45.75396138212143,45.75352980931946,45.75312764899565,45.7528666946719,45.75272472932855,45.75256650170272,45.75241966083233,45.75214429958532,45.75176373835603,45.75114108319086,45.75034533352228,45.74999436302025,45.74943545916015,45.74889218702051,45.74823889582867,45.74771601202662,45.7474833650506,45.74695792415252,45.74654192728512,45.74595283219238,45.74542514668823,45.74499658942439,45.74451386823461,45.74409968274563,45.74369921838316,45.74333063002144,45.74296686004767,45.74279173584971,45.74263401701221,45.74245928895903,45.74227815213325,45.7420809693745,45.74159703457617,45.74111121312557,45.74053768377487,45.73990574836494,45.7396850344094,45.73937347776899,45.73904330794539,45.73869934806178,45.73818478162887,45.7379441858286,45.73748648722083,45.73686274620376,45.73647964755576,45.73607205657303,45.73558151859973,45.73526780444706,45.73470461766941,45.73427837886527,45.73380751879525,45.7335096896464,45.73319133238414,45.73294273782649,45.73288577438829,45.73283707820416,45.73280946993746,45.73269716688421,45.73252741080595,45.73210180628569,45.7318227450517,45.73169791170991,45.73155109801615,45.73100981874491,45.73030680569472,45.72969025211736,45.72937614698228,45.72910260061771,45.72892357530048,45.72888398558044,45.72896822128732,45.72898703128592,45.72901776407907,45.72889121399171,45.72872202105974,45.72828280989567,45.72745130778191,45.72689299539871,45.72602836623987,45.72505731958021,45.72434584742376,45.7237403120436,45.72343170507768,45.72330738991616,45.72317874948553,45.72315897674965,45.72308814201646,45.72308825238204,45.72287614364094,45.72273809044294,45.72271953685362,45.72268945531557,45.72262994250072,45.72247694844521,45.72211362224619,45.72194373656713,45.72095973942091,45.72001055372669,45.71909128536603,45.71781408203015,45.71749481273712,45.71620504577475,45.71504880753109,45.71441513077639,45.71360778906305,45.71309237596851,45.71266037874467,45.71208586997744,45.71124429858388,45.71054588716328,45.7095151403542,45.70869594574338,45.70810465570734,45.70717873536206,45.70630603418414,45.70522794452879,45.70485940519976,45.70429611360558,45.70354296884911,45.70271008045577,45.70173593105993,45.70081221641922,45.70003039757315,45.69962487263196,45.69926446395404,45.69890964540487,45.69860583617019,45.69821178051373,45.69792606244907,45.69755072628818,45.69720276157087,45.69674838360408,45.69648073797039,45.69623361213686,45.69520971400816,45.69332121115993,45.69178404760031,45.69060513016709,45.68925185128468,45.68851736640823,45.68761168951328,45.68646262769166,45.68541936178494,45.68410815352729,45.68329579401009,45.68244429932374,45.68176516462683,45.68102943247787,45.6803148479023,45.67925790276194,45.67637247019776,45.67473971302906,45.67219692059929,45.66878611123013,45.66692120097009,45.66605098343445,45.66530093348674,45.66495048064672,45.66430001273487,45.66276812653047,45.66122591993944,45.65966347681071,45.65879139149838,45.65780229690175,45.65731306533179,45.65594356691099,45.6547540416459,45.65404131714692,45.6535816103334,45.65266473832614,45.65198809348817,45.65126976429059,45.64988782990356,45.64776145293246,45.64599178349459,45.64547296050653,45.64440660302439,45.64421447284126,45.64422481609061,45.6442816235291,45.64418519127268,45.64411650139588,45.64393710259387,45.64390797778628,45.64378354577753,45.6436035085575,45.64357478714314,45.6433642624764,45.64345592858903,45.64343506246673,45.64338602548049,45.64336376985664,45.64332729602884,45.64334421126961,45.64331326808035,45.6432078065708,45.6431833901999,45.64313046479359,45.64314063704755,45.64315970989523,45.64321727635729,45.64321343493071,45.6432658181864,45.64326070919062,45.64302825712089,45.64302715879396,45.64267650327479,45.64243217524992,45.64235295148369,45.64215928870291,45.65654191243848,45.67102297345267,45.6853874088379,45.69977453689647,45.72871447020413,45.72854227446285,45.72831298772608,45.72776193265808,45.72729709492794,45.72721566902283,45.72684885081575,45.72648802048527,45.72610951807235,45.72619805321705,45.72638257002486,45.7261518300685,45.72594942742294,45.72596618626356,45.72594273640569,45.72588138053552,45.72575796568431,45.72565428819871,45.71153688965845,45.697213308141,45.68294502803163,45.66867667119322,45.65417324898395,45.63971233127985,45.64001869865154,45.64010197178091,45.64024024236042,45.64015526337032,45.6401250616222,45.64004403554728,45.63994857165959,45.63987024738412,45.64752480899006,45.65452153211974,45.668954264252,45.67619593363192,45.68332828567844,45.69098264348523,45.69775835812889,45.7056593134752,45.71188758796658,45.71855383104906,45.72543847404974,45.73375130246567,45.73984138141155,45.75430956467505,45.76856175252978,45.78303822839281,45.81531599102507,45.82958008079004,45.84385434425971,45.85816609193665,45.88694608084349,45.8975587874486,45.89854670919497,45.89922656352513,45.90014331305888,45.91439299161242,45.92595488651721,45.92855065735241,45.9310966269633,45.94264046074115,45.9505678130154,45.95858757520984,45.97250519014491,45.9838091337496,45.98392124551694,45.99816208084202,46.01296053311056,46.02754462231142,46.04201927448591,46.05640558174434,46.0708911429272,46.08537089519966,46.09963790336598,46.11423953677743,46.11788323355216,46.12227328531156,46.12873911597954,46.14320185909349,46.15763702473076,46.15759937135686,46.15751138167401,46.15746847394678,46.15743597524089,46.15702975383336,46.15710575500911,46.15704450780712,46.15724053696938,46.15742849024443,46.15744085684761,46.15747537774774,46.15727363525524,46.15735064328121,46.15738276578767,46.1574390328371,46.15761200102457]}]],[[{"lng":[-89.92885106974279,-89.92907972244683,-89.92902262664073,-89.92906172375051,-89.92886563596743,-89.92889744009804,-89.92892942568818,-89.92939264987332,-89.92893047097908,-89.92895426176949,-89.92889393185051,-89.92891988914104,-89.92893484633612,-89.92912972501328,-89.92919821576763,-89.92884462612761,-89.92878993979504,-89.92844171625627,-89.92844287993975,-89.928435124603,-89.92856049957075,-89.9284486588581,-89.92830783926465,-89.9284958478781,-89.94234897044058,-89.94934428467022,-89.96992326848084,-89.98306837079852,-89.99016218105585,-90.01125064423191,-90.03151037564876,-90.04425156401386,-90.04452485615973,-90.04480475881732,-90.04447462770561,-90.04352187086431,-90.04322048808686,-90.02319384882109,-90.00246599420787,-89.98145030095061,-89.96176742027501,-89.92081700550722,-89.89775665987877,-89.87981146850328,-89.85879918637667,-89.84262425645896,-89.82467475419318,-89.79648335626807,-89.77749957233755,-89.75671159357972,-89.73614525673382,-89.71997054413163,-89.71533059644545,-89.69470483524715,-89.6935188486129,-89.67393200958487,-89.65340226900987,-89.64545513582559,-89.63644288732826,-89.63239554525424,-89.62338743413291,-89.61183732680341,-89.59149228204414,-89.57060999052275,-89.54973941204511,-89.52871352386015,-89.50800467791306,-89.48753219993107,-89.44618309272857,-89.42529473553731,-89.40455416582391,-89.38383655939703,-89.36240570613403,-89.34402252414812,-89.32125323726444,-89.30044821971978,-89.30046718926064,-89.3004956486724,-89.30052409812127,-89.3005525481455,-89.30061249226939,-89.30067244314995,-89.30073237348415,-89.30079229131336,-89.30082892559732,-89.30084666861148,-89.30086475150219,-89.30089974903953,-89.300919188728,-89.30089852048647,-89.29474094220008,-89.28957469147983,-89.28399805797967,-89.27882823050668,-89.27363616649262,-89.26844405174715,-89.2632518681939,-89.25805882702171,-89.25272977066204,-89.24740081082513,-89.24207113452383,-89.23674151923855,-89.23134373824736,-89.22594519000042,-89.22054748705236,-89.21514900568707,-89.21008414579782,-89.20501940353111,-89.19995477520997,-89.19835231366467,-89.19489027904611,-89.19349784312708,-89.1899994952052,-89.18510956842219,-89.18021888796531,-89.17532827280031,-89.17553889716052,-89.17574952862293,-89.17596018871184,-89.17598725182833,-89.17621836577467,-89.17641660501809,-89.17661486609963,-89.17681313710969,-89.17693865834353,-89.17703561312081,-89.17730777148252,-89.17735501799721,-89.17764442943151,-89.17799399958395,-89.17809056528468,-89.17819175073076,-89.17749738640805,-89.16972566030688,-89.16498301890864,-89.16226507061565,-89.1598696797294,-89.15642303797216,-89.1547303739703,-89.14951334796039,-89.14432718307515,-89.13914025891279,-89.13395418129308,-89.12876734282888,-89.1237315929683,-89.1186958854034,-89.11719577136674,-89.11390468887539,-89.10840936104364,-89.10450263438173,-89.10330620954154,-89.09820225659215,-89.09309831138907,-89.08979424352515,-89.08799355595846,-89.0829206702123,-89.07882579053987,-89.07784779469429,-89.0727749225028,-89.06770205543866,-89.06266346135484,-89.05762487793277,-89.05258630614273,-89.04754854141478,-89.04736013913175,-89.04759104990677,-89.04791333782988,-89.04778724309092,-89.04778651428448,-89.0475828714689,-89.03625243016769,-89.01545276964413,-89.01409658808682,-88.99489800479213,-88.97473291681179,-88.95420406539652,-88.93348441106157,-88.93346897691988,-88.93318297701971,-88.93293562737236,-88.93295471037366,-88.93284212931106,-88.93265079960558,-88.9364352914381,-88.95027165684822,-88.96280796345341,-88.98171494590011,-88.99080993197806,-88.99680530058819,-89.00967672137715,-89.01738169582505,-89.02388046695857,-89.02799026131297,-89.05111066038154,-89.09156615686099,-89.10910810578548,-89.11930711987657,-89.13682541757923,-89.13849320774936,-89.13949629771355,-89.14543148091109,-89.15471644294303,-89.17199214019084,-89.18122929908795,-89.19390864133717,-89.19535335454788,-89.19696079331591,-89.20168325455468,-89.21428210227911,-89.24796254946129,-89.24820173767458,-89.26979521185274,-89.28705740497205,-89.30779756513502,-89.33124867445537,-89.37377867099909,-89.38554502604137,-89.40457291502204,-89.42371948385933,-89.45823172704262,-89.46973546795415,-89.48806425401116,-89.49019150737121,-89.49058788628999,-89.49392454968134,-89.4979813756821,-89.50490734746442,-89.52169412353813,-89.54222542698041,-89.54284334746326,-89.54527794676278,-89.54606445662444,-89.55125917075883,-89.5528386581237,-89.55469376794375,-89.55483052654303,-89.56141137866723,-89.60934885382744,-89.62621472813564,-89.64247112691334,-89.65818464079344,-89.66928151828861,-89.67043584245336,-89.67298255668877,-89.67453274779781,-89.68400827003641,-89.68630454792601,-89.69544549432921,-89.69625470958985,-89.69695539589719,-89.6991457836037,-89.7043189391533,-89.70920948605591,-89.71105493269013,-89.71925033174925,-89.71977613530539,-89.72128791243823,-89.72232494113085,-89.73499027175025,-89.73531843364225,-89.74067350676029,-89.74213850070477,-89.74351932016644,-89.75015864753986,-89.76410420685471,-89.76450862556756,-89.77799802827022,-89.78803912077306,-89.78962701890778,-89.78993179471723,-89.79105362606599,-89.79150350274334,-89.79493630526402,-89.80524342313677,-89.85653055220533,-89.86966803004645,-89.87054834703316,-89.87971637700596,-89.88598528335616,-89.89269375522622,-89.89618081983066,-89.90453130389103,-89.90611570570375,-89.91447146216838,-89.92885106974279],"lat":[46.29982848612893,46.29988565522979,46.29126062980556,46.2729357668475,46.25046286215198,46.24267226146322,46.2334557095588,46.22479910018365,46.21381314179721,46.19921899712057,46.18165979358999,46.17747701164298,46.16695588845992,46.15593253717094,46.15201132914585,46.12544599316119,46.09584313138231,46.07086833421999,46.06900302644971,46.05032009743638,46.02091327775177,46.01106174736497,45.99639957233487,45.98203993203874,45.98204263304685,45.98208585013076,45.9821025819478,45.98207259768451,45.98196257734111,45.9818684434877,45.98182073938715,45.98185418475211,45.96895458283146,45.95447090802897,45.94053869840243,45.91161282749239,45.89714104462062,45.89702548502735,45.89724845122278,45.89730719330403,45.89751382634881,45.89811778749493,45.89807869043075,45.89808486840285,45.89820542615192,45.89826981390418,45.89821557689969,45.89821274879813,45.89832532558324,45.89848379911022,45.89847863479275,45.89849747637997,45.89849331130088,45.89858514180357,45.8985864618701,45.89860026296846,45.8985864735353,45.89855363361524,45.89876886523986,45.89894322503035,45.89876704854586,45.89848873019587,45.89878564607064,45.89861565101612,45.89860670514172,45.89876713018544,45.89859372139051,45.89831198776047,45.89834606414279,45.89858508799419,45.89885031261546,45.89884244470699,45.89878184461627,45.89943396359426,45.90056346569119,45.90150019979251,45.89908706149405,45.89546679307615,45.89184652232183,45.88822568715044,45.88453359893917,45.88084038348043,45.8771477312978,45.87345507117905,45.87027079770472,45.86872450490017,45.86708652055662,45.86390335965421,45.86215680933214,45.86071941259595,45.86038516466142,45.86010399735373,45.86037412543207,45.86062404483211,45.86097034585461,45.86131584906595,45.86166167620733,45.86200669845909,45.86174024968779,45.86147356511061,45.86120720331873,45.86094002444573,45.86077396437388,45.86060764163608,45.86044050801343,45.86027367616047,45.85963242406172,45.85899094934601,45.85834981536618,45.85814678070255,45.8577073315652,45.85762552328452,45.85741912409396,45.8571307084704,45.85684208297115,45.8565526870067,45.86012123097047,45.86369090033644,45.86726000395276,45.86771809726265,45.87083056699336,45.87448114424929,45.87813171415182,45.88178284787717,45.88408675553746,45.88543302534696,45.88904812013536,45.88966837130172,45.89266142277931,45.89627650695721,45.89726893869437,45.89931242424447,45.89925153773287,45.89844107303687,45.89793010950594,45.89763573322844,45.89737741728305,45.89700498218601,45.89689686934538,45.89665851937434,45.89645954765138,45.89625976897729,45.89605975938682,45.8958595103851,45.89563374253991,45.8954077578943,45.89540913407888,45.89541295239835,45.89541808936846,45.89543033750274,45.89543390910153,45.89544893545839,45.89546373142922,45.89547293635212,45.89547829048573,45.89546531570897,45.89545493042314,45.89545211576131,45.89543869058745,45.89542504020189,45.89538556940126,45.89534587768057,45.89530596261771,45.89526639238168,45.90975166622336,45.92407613846642,45.93843564656385,45.95284764075193,45.96718582672559,45.98239194751636,45.9824405404007,45.98241368988982,45.98240201644481,45.98236995461659,45.98238716299438,45.98235304397197,45.98238208203072,45.99674709578448,46.01114307781597,46.02552976364983,46.03978615112518,46.05433208545985,46.07351613198362,46.07508885367844,46.08071764213044,46.08581512884844,46.09360787196461,46.09729900569462,46.09973217333663,46.10501855499941,46.10810773746543,46.11066093581578,46.11227525870357,46.12172806926939,46.13835122630562,46.14155005538179,46.14349204458857,46.14682524587121,46.14714241790933,46.14733273102672,46.14845052846837,46.1503162692122,46.15364756411754,46.15549507789068,46.15802965336874,46.15831124659778,46.1586245344123,46.15954478689984,46.16199878620615,46.16862263713843,46.16866883232823,46.17283677804015,46.17622196658321,46.18016603647103,46.18474358214269,46.19284048467228,46.19513250665415,46.19883607397821,46.20255904358908,46.20915197727397,46.21136715628263,46.21489382453574,46.21528548202397,46.21535812495004,46.21597226177741,46.21678801481816,46.2181803137717,46.22142777873032,46.22545011926027,46.22557111286013,46.2260579933926,46.22621130539363,46.2272521885382,46.22756887472102,46.22788155638796,46.2279079643301,46.22919241123288,46.23838227266853,46.24161004075335,46.24471845149196,46.24782425030475,46.24994821216179,46.25016907958086,46.25066009483996,46.25095307805764,46.25276108781955,46.25319996845035,46.25494311291772,46.25509995288926,46.25523287457244,46.25564815593516,46.25662464693086,46.25755968429233,46.25791086145892,46.25947870455985,46.2595778692568,46.2598678759822,46.26006671029289,46.26248906260385,46.26255000956147,46.26357533370101,46.2638576467138,46.2641059989834,46.2654723794033,46.26801185651399,46.26808468906488,46.27082684252765,46.27287987850017,46.27318093341697,46.27323830660403,46.27345185994717,46.27353649029935,46.2741996947921,46.27616000943537,46.28591076115008,46.28841448866352,46.28858233530266,46.29032988379581,46.29155325444354,46.29286196595233,46.29354205391869,46.29517016637285,46.29547900069952,46.29707814052762,46.29982848612893]}]],[[{"lng":[-90.50804363845907,-90.50874284859621,-90.50982408700249,-90.51039656776608,-90.51147798601761,-90.51189163042693,-90.51268677704192,-90.51395891122753,-90.51418158294551,-90.51466679196852,-90.51554938593269,-90.51637650490798,-90.51799822808506,-90.51850707069768,-90.5187615019602,-90.51904770522709,-90.51930218394291,-90.5197795053483,-90.52044752650772,-90.52117889542707,-90.52200544444055,-90.52232381427278,-90.52302333902149,-90.52385001341742,-90.52445410924163,-90.52532054845638,-90.52585351785659,-90.52633859693252,-90.52735654581357,-90.52773765532589,-90.52839802516716,-90.52876392398265,-90.52982460245785,-90.53021869759408,-90.5307038074875,-90.53098973035104,-90.53143548563848,-90.53190444801429,-90.53226215775052,-90.53265170757814,-90.5329932618293,-90.53337489794478,-90.53374886233036,-90.5339397084276,-90.53421772930569,-90.53451227735998,-90.53479829367676,-90.53498861979638,-90.53514783407294,-90.53582384867897,-90.53630104524802,-90.53642805653973,-90.5365870508649,-90.53696816787152,-90.53747743274887,-90.53859010517516,-90.53887637389754,-90.53938526597356,-90.54049810182252,-90.54094277152045,-90.54178078115118,-90.54196034885477,-90.54281893578793,-90.5433279937711,-90.54380434651731,-90.54444054315648,-90.54498094187217,-90.54545773395829,-90.54599887362549,-90.54650730212865,-90.54733368638237,-90.54777933120235,-90.54897207135878,-90.54899089242761,-90.54965519688676,-90.54994123669836,-90.55003733169512,-90.5500418147422,-90.5501093463468,-90.54981772267689,-90.55011290805194,-90.55009862975695,-90.55002586394369,-90.55011977837069,-90.5484674325036,-90.54845442387952,-90.54857972986829,-90.54868960546519,-90.5487482828636,-90.5487793197817,-90.54886246986392,-90.5488591091398,-90.54888894260148,-90.5487348219724,-90.5489182327693,-90.54887883463955,-90.54882048348209,-90.54909442908715,-90.54915020619208,-90.54939775795742,-90.54954228518598,-90.55037698450602,-90.55104602848014,-90.55161671261212,-90.55186962768616,-90.55228446323633,-90.53133523752459,-90.48958921186184,-90.47817488487181,-90.46743206209756,-90.45711439321205,-90.45070568653553,-90.42567041450327,-90.42600858444948,-90.42622266971368,-90.42621247298364,-90.42622945447766,-90.40766906856295,-90.40095921775932,-90.36643606960183,-90.35138633806272,-90.33482713043318,-90.32417000416766,-90.30343970826955,-90.303478983619,-90.3038499736728,-90.30340211132777,-90.3044943967536,-90.3033894626909,-90.30202693714108,-90.30052963835094,-90.30067183923794,-90.30004520051898,-90.30061374913736,-90.30103809336846,-90.30240366182598,-90.2905024469262,-90.28096145227735,-90.26019875606656,-90.23976615559835,-90.21912579871154,-90.19891446450359,-90.1779891875,-90.1674669894479,-90.13570769103012,-90.11491609616247,-90.1051574396249,-90.08387575384289,-90.05347959785374,-90.04425156401386,-90.03151037564876,-90.01125064423191,-89.99016218105585,-89.98306837079852,-89.96992326848084,-89.94934428467022,-89.94234897044058,-89.9284958478781,-89.92830783926465,-89.9284486588581,-89.92856049957075,-89.928435124603,-89.92844287993975,-89.92844171625627,-89.92878993979504,-89.92884462612761,-89.92919821576763,-89.92912972501328,-89.92893484633612,-89.92891988914104,-89.92889393185051,-89.92895426176949,-89.92893047097908,-89.92939264987332,-89.92892942568818,-89.92889744009804,-89.92886563596743,-89.92906172375051,-89.92902262664073,-89.92907972244683,-89.93630622052136,-89.94611080758639,-89.96097810428262,-89.97532007131613,-89.98743810121479,-89.99630608741347,-90.00143530528831,-90.00159599595011,-90.01220604208723,-90.03358406227881,-90.04679380203478,-90.08359910596047,-90.09997221809596,-90.12048906434539,-90.12098444758607,-90.12112234980457,-90.12122316994729,-90.12135400482255,-90.1214280764587,-90.12151103821334,-90.1215388769026,-90.12146567816617,-90.12142920825501,-90.1213926666022,-90.1213191341137,-90.1212362137549,-90.12111677926764,-90.12101556029677,-90.12075712459669,-90.12053589099801,-90.12030477066757,-90.12003718664899,-90.11989877556968,-90.11967751081986,-90.11942827364381,-90.11921602553491,-90.11905939597919,-90.11883771203266,-90.11862543572725,-90.11845957619975,-90.1184323775809,-90.11845106579941,-90.1184330406743,-90.11850712302926,-90.11855318927047,-90.11858157026703,-90.11853556505956,-90.1185082836019,-90.11856364881733,-90.11860073768656,-90.11858275833178,-90.11855501288109,-90.11852762148108,-90.11846327641871,-90.11838025294844,-90.11825119997867,-90.11812212193075,-90.11804831199154,-90.11801146930762,-90.11793775239674,-90.11794745219419,-90.11811385601607,-90.11831713056435,-90.11850206654148,-90.11861312319813,-90.11868726472562,-90.11885363103497,-90.11893695698058,-90.1189837074954,-90.11909496190221,-90.11918753437016,-90.11929878543529,-90.11944698150485,-90.11956703143287,-90.11962305485217,-90.11969754017117,-90.11975321644992,-90.11978131931836,-90.11980928267914,-90.11989293813296,-90.12001295094009,-90.12028117579803,-90.12052989599206,-90.12067767815778,-90.12089919978916,-90.12122185475005,-90.12139709673254,-90.12150784740085,-90.12161871576218,-90.12170159038943,-90.12179423493309,-90.12188664895375,-90.12190554472312,-90.12259880663684,-90.12289489772145,-90.12311664450341,-90.12320944013301,-90.12341292950312,-90.1235331769261,-90.12358958073675,-90.12341454091029,-90.12324863722749,-90.12209444315405,-90.12193776677871,-90.1217255906375,-90.12171660513764,-90.12180951102414,-90.12184685499669,-90.12177344856697,-90.12181976910854,-90.12179249143398,-90.12171881871494,-90.12164514043786,-90.12154404939869,-90.12144295639021,-90.121277582929,-90.12106559665098,-90.12083541767332,-90.12063275422233,-90.12046688294453,-90.12030987437819,-90.12001457768763,-90.11978373654571,-90.1195248418904,-90.11921070071966,-90.11897986161648,-90.11885061208417,-90.11873035118593,-90.11856431133506,-90.11849057127911,-90.11850944817674,-90.11856505810336,-90.11865758469617,-90.11871350079652,-90.11865817869348,-90.11851095440981,-90.11829873252498,-90.11819711411353,-90.11815976948762,-90.11808555936113,-90.11792858108437,-90.11771589350693,-90.1176141936517,-90.11747559080457,-90.11730954725813,-90.1172726939312,-90.11725415174273,-90.11729123295896,-90.11739313682401,-90.11752280130246,-90.11751421997936,-90.1175051264385,-90.11744072741266,-90.11732053254082,-90.11701591953238,-90.11689622797869,-90.11682246045579,-90.11675811402938,-90.1168043098541,-90.11687851592467,-90.11690635075404,-90.11687001666732,-90.11687022168715,-90.11678716181201,-90.11671343283811,-90.11665834554958,-90.11660287668671,-90.11658478965263,-90.11658496666688,-90.11663136499956,-90.1167236993129,-90.11677017755984,-90.11677922383758,-90.11674242659633,-90.1167149989753,-90.11673389769216,-90.11682627397784,-90.11689094873618,-90.11690990741901,-90.11689157591564,-90.11682718726242,-90.11674418359691,-90.11660592232731,-90.1165140069717,-90.11644964464982,-90.1164036673506,-90.11641325337689,-90.11647801043928,-90.11653378042786,-90.11663543092324,-90.11673705581771,-90.1168109652311,-90.11689381130324,-90.11698594514296,-90.11707848607711,-90.11717998683341,-90.11727220042572,-90.1173831285942,-90.11745716250765,-90.11747567303462,-90.1174759743496,-90.11745787470157,-90.11743943822091,-90.11738444250011,-90.11728307342904,-90.11720001512663,-90.11707101408498,-90.1168864205229,-90.11677610057706,-90.11670231403279,-90.11666552918584,-90.11668397029472,-90.11678561103139,-90.11689664649138,-90.11702597645933,-90.11710008225946,-90.11718353951328,-90.11722083020315,-90.11720246097536,-90.11717522230438,-90.11716630506403,-90.11723170645114,-90.11731492273768,-90.11736136739334,-90.117453928787,-90.11754684018534,-90.11765760074235,-90.11775947865873,-90.11791713285643,-90.11804703201322,-90.11815856207815,-90.11826064987973,-90.11838082579608,-90.11845497656273,-90.11853851276297,-90.11855715289565,-90.11853912094845,-90.11851690866015,-90.11872552761211,-90.1192672320694,-90.11966791621889,-90.12010219153187,-90.12046473674633,-90.1206641647682,-90.1208471643522,-90.12088072928307,-90.12086435210865,-90.12076510672206,-90.12067559476137,-90.12060188854568,-90.12063915022858,-90.12077785708351,-90.12090706455835,-90.12104839745587,-90.1211563455861,-90.12129807519014,-90.12144756430888,-90.12158083046209,-90.12161371160263,-90.12168030529016,-90.12174690120976,-90.12187963254199,-90.12209615257122,-90.12229565863086,-90.12247850895325,-90.12264521559773,-90.12277820776413,-90.12289492280692,-90.12302770803903,-90.12312753531771,-90.12326032078869,-90.12334362042101,-90.12341039846865,-90.12337082832831,-90.12329952048842,-90.12324769275058,-90.12328931467293,-90.12335195256884,-90.12343609658608,-90.12349187548523,-90.12351959221101,-90.12352211498028,-90.12351610467258,-90.12348976753721,-90.12344838747224,-90.12340906133291,-90.12335954425542,-90.12331324855828,-90.12315963305844,-90.1229644985895,-90.1228059287203,-90.12263415368318,-90.12257379664356,-90.12255367250822,-90.12253355132366,-90.12258446950328,-90.12264506088545,-90.12275598061512,-90.12279682051047,-90.12276666678397,-90.12282752365431,-90.12307003142919,-90.12309999661584,-90.1231908385366,-90.12331186271267,-90.12341304921534,-90.12349410936905,-90.12359485538914,-90.12367553738422,-90.12373578390387,-90.12377581250169,-90.12383647805157,-90.12394731637725,-90.12403832703502,-90.12408882568566,-90.1240991878599,-90.12409944129358,-90.12407938387085,-90.12404912077955,-90.12398882979227,-90.12392849024205,-90.12386808694276,-90.12375727752818,-90.1236663613298,-90.12356564634355,-90.12345436939864,-90.12336341862014,-90.12327285547448,-90.12312148861756,-90.12295011804399,-90.12278841705313,-90.12266713907879,-90.12250542772817,-90.12242475509314,-90.12245544211417,-90.1225363947883,-90.12266779622426,-90.12285968381298,-90.12297077752385,-90.12311224316649,-90.12323349138542,-90.12326425943861,-90.12322427408715,-90.12311304295334,-90.12297182880108,-90.12285084273921,-90.12279043710258,-90.12277037730995,-90.12286162686753,-90.12303323798996,-90.12324546879428,-90.12339723557305,-90.12351844304752,-90.12363006956195,-90.12357974524355,-90.12360030855336,-90.12387298391468,-90.12406472196571,-90.12418634609305,-90.12426747790227,-90.124328343632,-90.12440912881002,-90.12459133966358,-90.12478320643591,-90.1251492596306,-90.12531719710466,-90.12542775733311,-90.12546494185473,-90.12557614075013,-90.12567473059266,-90.12567508273864,-90.12571238669311,-90.12583591637711,-90.12605805393584,-90.1265383758987,-90.12706832771011,-90.12759750365093,-90.12807734900807,-90.12833599995385,-90.12880364184323,-90.12943141871472,-90.1297635710509,-90.13005875639006,-90.13030472109057,-90.13050208949089,-90.13063776924126,-90.13072418770774,-90.1309330383052,-90.13112976101245,-90.13130204625108,-90.13138824037472,-90.13141282374315,-90.13138860722141,-90.13136400704819,-90.13126582925332,-90.13109409211914,-90.13084781834324,-90.13067549402724,-90.13051586190014,-90.13036853960327,-90.13019655662762,-90.12998786239314,-90.12974193306435,-90.12974217546086,-90.12974231664073,-90.12981654211612,-90.13011183773288,-90.13032136088302,-90.13050630670949,-90.13055567353295,-90.13049452286175,-90.13027317235802,-90.13017504839662,-90.13033541389856,-90.1305324303495,-90.13075396671529,-90.13098758892809,-90.13104914285489,-90.13113456799448,-90.13117101170955,-90.13126909157043,-90.131392178749,-90.13155181449325,-90.13166285903154,-90.13171244929518,-90.13175017730119,-90.13193488607573,-90.13221771544237,-90.13246377853696,-90.13269779344415,-90.13300565501984,-90.13310385829909,-90.13314056287319,-90.13323872471135,-90.1333740456873,-90.13346024242782,-90.13348484854993,-90.13338681578847,-90.13321505741642,-90.13327704288727,-90.13344899451452,-90.13363325024996,-90.13379287986166,-90.1339031470267,-90.13401382625501,-90.13408842219357,-90.13406443756138,-90.1340400071806,-90.13395407754891,-90.13386812790718,-90.13364725816267,-90.13359789645958,-90.13361078437876,-90.13379549785834,-90.13390622633752,-90.13395590934577,-90.13433734734031,-90.13457144365094,-90.13456150755994,-90.13455011347355,-90.13445113185163,-90.13417725591081,-90.13409276234646,-90.13395985082313,-90.13391174969867,-90.13388763804598,-90.13398499954333,-90.13411230930761,-90.13432404830105,-90.13439688748107,-90.13436694106653,-90.13422771791953,-90.13387011109525,-90.13375610354731,-90.13371930747824,-90.13387074615382,-90.13404075453903,-90.13409899718765,-90.13404306836712,-90.13394231344695,-90.13334358984666,-90.13313142475619,-90.13296646208808,-90.13283098769122,-90.13278287040502,-90.13277469749278,-90.13287103384988,-90.13308500673142,-90.13329865499431,-90.13352155106593,-90.13380296629806,-90.13410370703099,-90.13418713483448,-90.13400818311585,-90.13365914864252,-90.13356259528398,-90.13346236317096,-90.13349581010866,-90.13336397974479,-90.13312877117998,-90.13299172173475,-90.13280819697071,-90.13267153305054,-90.13255128940267,-90.13246897425277,-90.13242437866509,-90.13222756945524,-90.13209707685395,-90.13208341990497,-90.13232638164429,-90.13264027804958,-90.13285864150815,-90.1331821757386,-90.13351850738188,-90.13366423623239,-90.13355757179616,-90.13340169521092,-90.13348027822984,-90.13377143058526,-90.13409554233176,-90.13452315277921,-90.13519217804172,-90.1353231310392,-90.13544904522358,-90.1354066673604,-90.13510798083414,-90.13509405098692,-90.13516545919019,-90.13538757335097,-90.13582133172281,-90.13624927278745,-90.13653732785937,-90.13716341577917,-90.13764828573113,-90.13823297874355,-90.13870418517129,-90.13923189466014,-90.13959044107966,-90.13968886251392,-90.13971776682352,-90.13966144655363,-90.13960484806366,-90.13991902626618,-90.14031792181783,-90.14061770024475,-90.1406326848397,-90.14066158941355,-90.14076151815284,-90.14111986088142,-90.14128943278635,-90.14137511302111,-90.14141860127981,-90.14116347018577,-90.14062156429861,-90.14080857640336,-90.14119387456407,-90.14147937114235,-90.14190745277054,-90.14230700935104,-90.14270608285055,-90.14314829134328,-90.14356118192102,-90.14423203363042,-90.14446163133219,-90.14491972614742,-90.14499190162083,-90.14476480890316,-90.14450802979229,-90.14432340243968,-90.14422390871383,-90.14452518848435,-90.1452976845398,-90.14599747675896,-90.14681099333521,-90.14702532872957,-90.147325279722,-90.14758278085273,-90.14768295236559,-90.14766925936728,-90.14749857852485,-90.14735654535724,-90.14721381578121,-90.14705648629173,-90.14688589391878,-90.14679138784351,-90.14679720500517,-90.14688432984454,-90.14662179886014,-90.1466004796672,-90.14661490747652,-90.14677205553633,-90.14711431560274,-90.14747805526196,-90.14769202417185,-90.14781314133683,-90.1479842673332,-90.14830453935572,-90.14896642750422,-90.14913043867379,-90.14925186034701,-90.14942364669743,-90.14954529865609,-90.14964563772179,-90.1497595803322,-90.14986646952934,-90.1503510334947,-90.15040111855917,-90.15037410727939,-90.15041700957995,-90.15051656510605,-90.15095781189346,-90.15107207434615,-90.15115756553229,-90.15124313767312,-90.15129341142072,-90.15122948117369,-90.15109446150568,-90.15106258254244,-90.15111644746469,-90.15120195207474,-90.15254243720315,-90.15312033639081,-90.15314967487724,-90.15315167372809,-90.15324527605736,-90.15315341293538,-90.15318231365478,-90.1532628038924,-90.15341809161968,-90.15355498499255,-90.15364918566556,-90.15372883918609,-90.15386635158168,-90.15397294631083,-90.1539967507468,-90.15396805589076,-90.15389021641461,-90.15368153623139,-90.15315139853286,-90.15295016794903,-90.15280429659998,-90.15274185327004,-90.15275445826767,-90.15281979618203,-90.1531194049865,-90.15327595463438,-90.15343533391172,-90.15357263719558,-90.15369527048247,-90.15386140943964,-90.15391930624479,-90.15394897309382,-90.15391992635631,-90.15387381490167,-90.15383382393927,-90.15384864267199,-90.15393520782278,-90.15401472153988,-90.15415192694209,-90.15423835071682,-90.15432528356905,-90.15439042768816,-90.15441974577955,-90.15443438125904,-90.15444226622878,-90.15434148440241,-90.15425519919492,-90.15412428395204,-90.15416869055797,-90.15435692771365,-90.1545810357005,-90.15479822342611,-90.15486835701776,-90.15484908845251,-90.15482768295638,-90.15469361479781,-90.15413947650994,-90.15370053873592,-90.15361563203192,-90.15353431366385,-90.15340410382193,-90.15328802353756,-90.15317786255898,-90.15314351182622,-90.15323756538491,-90.15350634583024,-90.15373756727999,-90.15389381475568,-90.15401265819607,-90.15405639713596,-90.15404944541712,-90.15402615663351,-90.1537175366489,-90.15359458493992,-90.15352242919022,-90.15352992997447,-90.15357524439774,-90.15367497434244,-90.15384853643808,-90.15408723563064,-90.15437650618,-90.15453807401401,-90.15474208647665,-90.15481069120162,-90.15479587148144,-90.15473050891399,-90.15465038421171,-90.15462123527632,-90.15467923337438,-90.15476578834154,-90.15489593021466,-90.15495426725037,-90.15510658297811,-90.15526702468782,-90.15538950846091,-90.15567859672588,-90.15580674609318,-90.15597588915064,-90.15610632143215,-90.15612859310382,-90.15606351401976,-90.15596255082716,-90.15592538427309,-90.15609323824962,-90.15656756509104,-90.1567663949569,-90.1569104271727,-90.15706208580234,-90.15713572969932,-90.15721391220873,-90.15728650962087,-90.1573258606319,-90.15726585470385,-90.15715213226972,-90.15710366912165,-90.15707944090633,-90.15715320490399,-90.15735774565103,-90.15779566306176,-90.15818961884732,-90.15829199256726,-90.15830721255587,-90.15814739484203,-90.15791401509254,-90.1577974359848,-90.15768118292928,-90.15768138716686,-90.15776941627011,-90.15787164568752,-90.15806184389236,-90.1582663341343,-90.15841218519176,-90.15860244437356,-90.15870494000222,-90.15874876942648,-90.15853147881458,-90.15842988806263,-90.15845963275966,-90.15848934741716,-90.15859166722782,-90.15866474106072,-90.15867972995486,-90.15863605087181,-90.15860744348582,-90.15856402823967,-90.15850737333373,-90.15856601705531,-90.15871243068435,-90.15888783078285,-90.15904891700974,-90.15899100691576,-90.15896211014429,-90.15877318276235,-90.15862819679585,-90.15845406550925,-90.15818245308272,-90.15794255359695,-90.15781744857078,-90.15770287191823,-90.1576509181113,-90.15768301968785,-90.15789402290278,-90.15807268562318,-90.15819915466115,-90.15827291451322,-90.15829468682145,-90.15857748850904,-90.15884047482876,-90.15885255826616,-90.15887454774432,-90.15880188602158,-90.15874020682473,-90.15861538774288,-90.15852222376331,-90.15833454527098,-90.15808399737828,-90.1577918447864,-90.15746793460363,-90.15725878907315,-90.15725903973652,-90.157363845407,-90.15755262523952,-90.15777248186724,-90.15792979085435,-90.15803485029568,-90.15807736601907,-90.1580492443077,-90.15807851536496,-90.15820453423351,-90.15838271519031,-90.15864446564547,-90.1589167035886,-90.15918877787151,-90.15951284210242,-90.15975353571935,-90.16000460908285,-90.16029788867534,-90.16049633207928,-90.16056115045738,-90.16052049514748,-90.16042703188874,-90.1601670526919,-90.15972917401217,-90.15958389700918,-90.15962587695996,-90.1598771315488,-90.16003418308978,-90.16017033752334,-90.16023373795062,-90.16016158938278,-90.16016207700176,-90.16020462627688,-90.16052907548671,-90.16079078188861,-90.16127284576297,-90.1617652914058,-90.16215308925953,-90.1623311250009,-90.16238404394754,-90.16236334679655,-90.16233286487558,-90.16227156075277,-90.16220976100389,-90.16220135517551,-90.16226562209114,-90.16237148901517,-90.16252922191808,-90.16277063803203,-90.16299097282378,-90.16322199128861,-90.16333809276021,-90.16346525122853,-90.16349728529089,-90.16345601863999,-90.16331014660695,-90.16322730428948,-90.16327077599783,-90.16324075248195,-90.16326298782823,-90.16336854099436,-90.16349417387516,-90.16368277089933,-90.16395520959436,-90.16406028860442,-90.16411272601843,-90.16398763173714,-90.16402934126951,-90.16422860477832,-90.16455408494389,-90.16507878197471,-90.16531014871629,-90.1662125289389,-90.16674799731634,-90.16705049213162,-90.16711582067113,-90.1670519927747,-90.16692893055055,-90.16664701685352,-90.1666689189118,-90.16675342635045,-90.16684774368096,-90.16714241195915,-90.16743953612344,-90.16767057642679,-90.16781438600273,-90.16797409416471,-90.16814078853403,-90.16841184027265,-90.16867157626254,-90.16882735751122,-90.16905620506185,-90.16944791350684,-90.16982924998329,-90.17005925592133,-90.17051953948669,-90.17115836470184,-90.17180999831683,-90.17213286301829,-90.17256164322221,-90.17346132350782,-90.17408848016512,-90.17467262178091,-90.17516664063504,-90.17558575794224,-90.17610915312277,-90.176528157787,-90.17705219272375,-90.17818293535743,-90.17829844018328,-90.17821506149602,-90.17808304158096,-90.17776956955078,-90.17771367744179,-90.17781279147454,-90.17788239366735,-90.17782040124241,-90.17787694367684,-90.17793631217863,-90.17817768598675,-90.17827658017808,-90.1782317250174,-90.17801284038056,-90.17781509877777,-90.17775714028659,-90.17781662867499,-90.1780588907404,-90.17792372906793,-90.17801234765903,-90.17759678901594,-90.17754222646225,-90.17745998653584,-90.17686653973993,-90.17662765161728,-90.17672303953844,-90.17684967661036,-90.17701813296208,-90.17726997591343,-90.17781548665739,-90.1785814369878,-90.17903294522014,-90.17909598778454,-90.17912822328529,-90.17893017624502,-90.17883617895988,-90.1787010086195,-90.17874370163341,-90.17914344998266,-90.17929169377223,-90.17926097549153,-90.17870081739041,-90.17796214134515,-90.17824636870975,-90.17822613415649,-90.17810107410796,-90.17819647530024,-90.17821796249102,-90.17840687048562,-90.17842852880113,-90.17876417795449,-90.17936289124043,-90.17971900389581,-90.18030533165583,-90.1808714174836,-90.181329559175,-90.18142542282371,-90.18143576051735,-90.18133079205774,-90.18122613467004,-90.18037659499035,-90.17998789540336,-90.17975695841398,-90.17973499192271,-90.17985942505554,-90.1799954000701,-90.18021470826828,-90.1803823460575,-90.18054949374746,-90.18071847606041,-90.18117855043995,-90.18195541504267,-90.18233231673987,-90.1827478212779,-90.18334840753964,-90.18412805569541,-90.18547466734186,-90.18635459833288,-90.18687817742733,-90.18728700223565,-90.18753806331323,-90.18789451759764,-90.18834484961812,-90.1887747565091,-90.18915224498294,-90.18984475638251,-90.19026447066594,-90.19093647175329,-90.19125186402283,-90.1913888054812,-90.19143072326432,-90.19144206135992,-90.1911924307486,-90.19123627707205,-90.19157154652221,-90.19177063486177,-90.19197979364358,-90.19229374773143,-90.19249291325519,-90.19257710647246,-90.19266120305188,-90.19270378247602,-90.19300830975135,-90.19310329379879,-90.19356579318341,-90.19357678434092,-90.19344077693228,-90.19308471370324,-90.19282302321723,-90.19274930357244,-90.19256045795041,-90.19235124254919,-90.19220508221112,-90.19214373258187,-90.19202896432824,-90.19187216949737,-90.19178937045236,-90.19189460155184,-90.19206228480253,-90.19239905339695,-90.19244183825111,-90.19235863401813,-90.19224403840509,-90.19218153539504,-90.19216095702002,-90.19206661104089,-90.19197251440447,-90.19186761138444,-90.19175191906012,-90.19162575240695,-90.19143725707409,-90.19129096329139,-90.19113446993235,-90.19106199122476,-90.19098924178911,-90.19088494099735,-90.19077998382778,-90.1904874703603,-90.19016340669396,-90.18982924173197,-90.18957897064998,-90.18942304314773,-90.1893083587572,-90.18886985747302,-90.18858762666572,-90.1885256456295,-90.1886202181888,-90.18880016907755,-90.18887416091734,-90.18908364886099,-90.18947036447247,-90.18964820904868,-90.19006643493661,-90.19024451229318,-90.19042230693582,-90.19063156600909,-90.19087209899138,-90.19173063934507,-90.19215971998631,-90.1924636142956,-90.19265031703085,-90.19280981616205,-90.19288354132782,-90.19291618549914,-90.19283305248254,-90.19260369295726,-90.1922989537492,-90.19233381128718,-90.19253379434801,-90.19267099999016,-90.19279841130049,-90.19284125468583,-90.19294729652911,-90.19318955275388,-90.19351443400227,-90.19396080690485,-90.19448985617707,-90.19494624271428,-90.19524027311331,-90.19547081268517,-90.1958741680517,-90.19613076237913,-90.1963373741703,-90.19654853480492,-90.19661093145139,-90.19672605469755,-90.19689912954335,-90.19707197164908,-90.19722410652112,-90.19721442797251,-90.19715709781741,-90.19710010230523,-90.19703749342744,-90.19696973225572,-90.196975193984,-90.19707981335098,-90.1972340149876,-90.19742672659611,-90.19755684960134,-90.19767538812472,-90.19772010779725,-90.19771749147803,-90.1977571643182,-90.1981174475673,-90.19835154558629,-90.19836501619027,-90.19872337180293,-90.19898502266439,-90.1991097676502,-90.19930294044823,-90.19945516983444,-90.19962061383733,-90.20003390089416,-90.20032309612745,-90.20051626239071,-90.20068216184373,-90.20072390750418,-90.20087561894877,-90.20108211183356,-90.20130299719065,-90.2023936722079,-90.2031809396632,-90.20362336097628,-90.20416262989094,-90.2048966367054,-90.20514518172652,-90.20538120527121,-90.20556191119026,-90.20558529979284,-90.20570179173154,-90.20560646569568,-90.20584585952574,-90.20674282489296,-90.20745726353785,-90.2078151559142,-90.20839740921713,-90.20911386227201,-90.20960809252992,-90.21071678313004,-90.21187363802356,-90.2121222170355,-90.21205694636356,-90.2113679433418,-90.21114611899505,-90.21106346480745,-90.21128270463021,-90.21219949254466,-90.21253583078554,-90.21258224699483,-90.21297065350048,-90.21323436794951,-90.21352610758495,-90.21417570387912,-90.21460139564473,-90.21476006230213,-90.21500787761903,-90.21505456089238,-90.21496652643252,-90.21523620071227,-90.21505966800837,-90.21520156364467,-90.21547517101786,-90.21557325879569,-90.21567302335623,-90.21597102340992,-90.21606947621778,-90.21659600179761,-90.21719167491256,-90.21799289163964,-90.2183200261766,-90.21904466884637,-90.21922773195767,-90.22020471364745,-90.22054100080481,-90.22116656653895,-90.22166954012191,-90.22235660125348,-90.22337839503419,-90.22471444156953,-90.22553078810041,-90.22572898024828,-90.22708742296282,-90.22797892855677,-90.22814005014634,-90.22859736274611,-90.22874302321451,-90.22963464589043,-90.22989417447812,-90.23019891188913,-90.23032962645216,-90.2302979150715,-90.22933751575742,-90.2293683902883,-90.22976525200691,-90.23039784336727,-90.23097785164765,-90.2310007292954,-90.23099369889002,-90.2309248117385,-90.23079505768706,-90.23079499870238,-90.2304284963742,-90.22973411414566,-90.22950517528395,-90.22940619430773,-90.22987191461426,-90.23026874686121,-90.23036737751006,-90.23086317761776,-90.23159566798536,-90.23232028969967,-90.23370871200343,-90.23532737112966,-90.23628819964499,-90.23698229052205,-90.2378747219262,-90.23870634989915,-90.23929385857232,-90.2396295358611,-90.24059111277636,-90.24072064938861,-90.24078948350909,-90.24085089371448,-90.24101799883358,-90.24148293627124,-90.2418124421831,-90.24257501884676,-90.24339929667579,-90.24468748557744,-90.24548150346044,-90.24604693128956,-90.24770184914618,-90.24819862583827,-90.24861755657633,-90.25019785543915,-90.25078353779948,-90.25139533840131,-90.25146346630008,-90.25187176244796,-90.25263147638773,-90.25348248371668,-90.25572764118003,-90.25671417931223,-90.25704260685114,-90.25735966798881,-90.25822975067523,-90.25893038667445,-90.25916738429601,-90.25948428353239,-90.26006191441408,-90.26044734406611,-90.26062824760218,-90.26074143359149,-90.26086605423782,-90.26110357008143,-90.26151169267173,-90.26201228529821,-90.26245257691444,-90.26288374150337,-90.26326985106454,-90.26352004116724,-90.26378217540515,-90.2638406060682,-90.26378508901473,-90.2640243363637,-90.26447840856299,-90.26479609487103,-90.26510208181357,-90.26539787509181,-90.2655920731095,-90.26569484793019,-90.26573020538551,-90.26575390297758,-90.26561878420594,-90.2654380684009,-90.26503018292847,-90.26480346876875,-90.26459918572867,-90.26438376224992,-90.26420236804329,-90.26408107927207,-90.26394302336954,-90.26394457783582,-90.26410467982778,-90.26428661275055,-90.26521862844044,-90.26579857470104,-90.26626504026028,-90.26658786260865,-90.26677605766186,-90.26695741096474,-90.26745499156404,-90.26820180327157,-90.26890416670668,-90.26977697448518,-90.27063868974265,-90.27092131706523,-90.27111284891683,-90.2711558971818,-90.27135609847578,-90.27144575471691,-90.27156925648187,-90.27172736130397,-90.27196455282753,-90.27227044517019,-90.27246344690852,-90.27250957240123,-90.27245350759766,-90.2724993411948,-90.27276102787357,-90.27282996848606,-90.27297828923159,-90.27308212859306,-90.27307158599451,-90.27301591152759,-90.27284703453765,-90.2727572970886,-90.27286062888136,-90.27295338241575,-90.2730009059884,-90.27296803930888,-90.27289112057053,-90.27266975333895,-90.2722946370955,-90.27175526495441,-90.27100301390394,-90.27062734604526,-90.27039708519736,-90.27033115603597,-90.27033681083491,-90.27032323312848,-90.27045049235943,-90.27113866349627,-90.27173107734525,-90.27218734107026,-90.27305986213041,-90.27339007244834,-90.27352666387459,-90.27380981260205,-90.27397633020178,-90.27412189083971,-90.27423889960647,-90.27457843370179,-90.27512006798887,-90.27601778972506,-90.27646155067863,-90.2766638119768,-90.2767879248666,-90.27706846197889,-90.2772232614338,-90.27747414467579,-90.27751534218709,-90.27752563002299,-90.27738223877466,-90.27711374695627,-90.27704802044506,-90.27630715915004,-90.27604714332544,-90.27569104661622,-90.27538454583565,-90.27525049528454,-90.27507690650189,-90.27466206890497,-90.27422676581949,-90.27302755851886,-90.27264127041221,-90.27248689586895,-90.27215872382509,-90.27188840701669,-90.27171544478828,-90.27173532577622,-90.27184432173708,-90.27205817689094,-90.2724009144568,-90.27306149476404,-90.27383987990093,-90.27449937571889,-90.27522807731405,-90.2762963483747,-90.27651001282258,-90.27685823748274,-90.27717774010915,-90.27740382918149,-90.27767770290694,-90.27804269604937,-90.27838004691867,-90.27861364036151,-90.27858429609746,-90.27847875863985,-90.27858291037035,-90.2790009117145,-90.27978480534161,-90.28056916556115,-90.2813540717279,-90.28195623842615,-90.28226901678029,-90.28218985900621,-90.28200567784771,-90.28171645781109,-90.28153125409195,-90.28147795496572,-90.28166016636466,-90.28215480449855,-90.28314655397996,-90.28385176633307,-90.28468830348763,-90.28531698310422,-90.28591956087159,-90.2863131501632,-90.28694297532667,-90.28775535332662,-90.28825295977933,-90.28888146353874,-90.28943143805434,-90.28990316423102,-90.29027029001483,-90.29068958433464,-90.29108242088704,-90.29155304827988,-90.29192046862003,-90.29241966153143,-90.2929699211477,-90.29349441998951,-90.29386205129485,-90.29425586987016,-90.29475311435104,-90.29506596662772,-90.29506479127761,-90.29498401125744,-90.29472069038658,-90.29440433830511,-90.29427131341834,-90.29437397159479,-90.29471102249339,-90.29510267893569,-90.29554764857797,-90.29586361474968,-90.29649268762643,-90.29706716275268,-90.2975088845496,-90.29824000501881,-90.29886701375254,-90.29965106151241,-90.30027914183853,-90.30106457774134,-90.3019021667445,-90.30226771103878,-90.30302586886081,-90.30375844859729,-90.30417789382945,-90.30478162958177,-90.30535909141093,-90.30598820053471,-90.3067218125545,-90.30737547856711,-90.30795010511831,-90.30828915232202,-90.30823486129052,-90.30823220466927,-90.30833475717958,-90.30867471520952,-90.30927570145307,-90.31000775994058,-90.31081895106794,-90.31131605612148,-90.31184026275794,-90.31210303763126,-90.31244423835025,-90.31299421554864,-90.31330757904134,-90.31343627420213,-90.31366913928001,-90.31400867373823,-90.31432265649251,-90.31471630548108,-90.31505750710618,-90.3153459514652,-90.31568705648237,-90.31605432646907,-90.31647333375537,-90.31668314744049,-90.31684197679422,-90.31694761908267,-90.31700091824005,-90.31697621212945,-90.31695213550357,-90.31692743998359,-90.31692974879724,-90.31688001834652,-90.31696074697609,-90.31714661421087,-90.31733225810889,-90.31756953181517,-90.31778146845899,-90.31778325899062,-90.31770657613087,-90.31757684662131,-90.31715959453224,-90.31663794435367,-90.31606319530377,-90.3155936746374,-90.31507117665109,-90.31470583492271,-90.31441903152171,-90.31431577841269,-90.31418645206976,-90.31413596745453,-90.31398088061052,-90.31390441846524,-90.31364388886421,-90.31335903688635,-90.31320342252006,-90.31304832011658,-90.31289268987399,-90.31281540164137,-90.31279170979336,-90.31274205010037,-90.31271690566641,-90.31248232443221,-90.31232628476812,-90.31209231806049,-90.31198915105425,-90.31196493453224,-90.31196674432753,-90.31207291411,-90.31246676601889,-90.31283495040545,-90.312967001072,-90.31299422110142,-90.31281292637826,-90.31236877686651,-90.31195121645939,-90.3114290359471,-90.31098528906183,-90.31069832729132,-90.31051679922638,-90.31051844695004,-90.31080820304476,-90.31125443709143,-90.31133442643578,-90.31141452082309,-90.31131113532693,-90.31123413540986,-90.31102642435732,-90.31087066812451,-90.31081943741778,-90.31068965502421,-90.31061244807493,-90.31064016796617,-90.31069357174141,-90.3107736635189,-90.31074892427627,-90.31046121133225,-90.31017340007975,-90.30999082773522,-90.30972930323567,-90.30967754861949,-90.30959992479616,-90.30947012942316,-90.3093663180412,-90.3093669856642,-90.30973397561624,-90.31028415414585,-90.31070371872562,-90.31125452233499,-90.31154357952062,-90.31162327068304,-90.31157286277835,-90.31115411525202,-90.31078814547345,-90.31057969629407,-90.31052866729074,-90.3106344406241,-90.31097577133619,-90.31136968577526,-90.31176381380621,-90.31221051571819,-90.31260423308774,-90.31278639362149,-90.3127066950054,-90.31267926139553,-90.31283512998225,-90.31309626075716,-90.31346336708188,-90.3135686296034,-90.31370018157448,-90.31380616961484,-90.31380742043639,-90.31386083460114,-90.31401899720845,-90.31436086146222,-90.3146745807926,-90.31511869806232,-90.31545754016886,-90.31577103584958,-90.3160344578007,-90.31619251799918,-90.31627285644859,-90.31624741524196,-90.31611857718777,-90.31619881021162,-90.31638347960522,-90.31680257776692,-90.31696063588841,-90.31703983451418,-90.31711912782785,-90.31693624445644,-90.31678016726414,-90.31649295790689,-90.31625821910053,-90.31612938003695,-90.31623549281528,-90.31631530902077,-90.31613283755439,-90.31579282336445,-90.31545238468254,-90.31524299255409,-90.31513949698228,-90.3151146636903,-90.31522046174189,-90.31550893783401,-90.31585064087662,-90.31627028487338,-90.31661109425157,-90.31718774956343,-90.31747445919628,-90.3175513335741,-90.31760213225478,-90.31788892421787,-90.31825492453234,-90.31851753085533,-90.31867540493388,-90.31883348628308,-90.31899113247071,-90.31935787632335,-90.3196468920986,-90.31977857748869,-90.31985746820895,-90.31996370608691,-90.3200961186412,-90.3203321379977,-90.32056708919082,-90.32088059994578,-90.32122104658696,-90.32132675704094,-90.32119668891166,-90.32096173105651,-90.32049129240168,-90.32030840598637,-90.32020460911748,-90.32036311007842,-90.32067854115259,-90.32109768409083,-90.32162145716821,-90.32206677641064,-90.32261652856562,-90.32308654330635,-90.32308439758692,-90.32316134786188,-90.32326460101119,-90.32349944126169,-90.32383935438706,-90.32425847068819,-90.32470485767605,-90.32504638230473,-90.32559742416311,-90.32591114352013,-90.3264340697649,-90.32669702103972,-90.32680339717957,-90.32683132642232,-90.32691143232023,-90.32696585683661,-90.3270199831716,-90.3274405304676,-90.32783433765235,-90.32801866246895,-90.32799410008244,-90.32796953392166,-90.32786618858061,-90.32776273739277,-90.3276073225954,-90.32766080509307,-90.32776697635114,-90.32766373964245,-90.32745606595257,-90.32737934519204,-90.32725044852376,-90.32733075217568,-90.32761984955781,-90.32801325397013,-90.32822169111226,-90.32855966946964,-90.32871508374215,-90.32905360436401,-90.3294988454083,-90.32968315468941,-90.32989454153399,-90.33010609434902,-90.33034346123773,-90.33078992215688,-90.33141799286878,-90.33188886135586,-90.33212436925284,-90.33233378573642,-90.33243954138553,-90.33238794679605,-90.33204877938846,-90.33165786738451,-90.33145064680791,-90.33147805695505,-90.33168901666147,-90.33192563050872,-90.33231842535862,-90.33313003208723,-90.33394122777108,-90.33462178433305,-90.33509314157679,-90.33535604469589,-90.33569832735911,-90.33590890790572,-90.33622421360002,-90.33677425757014,-90.33729642091799,-90.33820969459856,-90.33920264016292,-90.3399614149609,-90.34090367629071,-90.3415320428046,-90.34231712999316,-90.34318009590052,-90.34367651305109,-90.34409317150649,-90.34414260884509,-90.34398350029697,-90.34374583403292,-90.34303683171626,-90.34269566415811,-90.34188309406642,-90.34104496004048,-90.34012792733203,-90.33968223340962,-90.33934085218486,-90.33925925480631,-90.33941393352913,-90.3397774116274,-90.34024624562254,-90.34103025239389,-90.34152708504642,-90.3422341782799,-90.34315071925499,-90.34346601193306,-90.34386071453193,-90.34428180057644,-90.34465030566427,-90.34507128558529,-90.34564863246396,-90.34598934720299,-90.34656451673395,-90.34706003913239,-90.34742418080231,-90.34763029873164,-90.34773228587315,-90.34759821226348,-90.34717665931812,-90.34665173708541,-90.34597081029722,-90.34544618582264,-90.3452074349875,-90.3453363883624,-90.34562151778761,-90.34622175551641,-90.34737095810733,-90.34794306833908,-90.34804285247253,-90.34816987483117,-90.3483479654105,-90.34892004009347,-90.34949290617224,-90.34970007140275,-90.34974835649693,-90.3497972748002,-90.34958443195151,-90.34942428667875,-90.34955220735081,-90.34999479739517,-90.35067398272312,-90.35143309467269,-90.35240191279935,-90.35303050258557,-90.35337196472813,-90.35376646792008,-90.35402986598771,-90.35434619146734,-90.35461065348366,-90.35482272287604,-90.35500835358228,-90.35503655526578,-90.35509101329752,-90.35524957120428,-90.35551269468876,-90.35627197024537,-90.3567954451094,-90.35742230143889,-90.35770949415783,-90.35815323094043,-90.3584918756503,-90.35880466886034,-90.35901331231349,-90.35940614147776,-90.35969511093005,-90.35990614285598,-90.36003923419113,-90.3600144663761,-90.35985929875939,-90.35991402201377,-90.36007319900655,-90.36041566549198,-90.36104484862516,-90.36156804084791,-90.36209152073467,-90.36258783122337,-90.36297790815624,-90.36315938176449,-90.3633925438087,-90.36370447133027,-90.36425220983079,-90.3646438339443,-90.36516704875697,-90.36561221338012,-90.3659006695905,-90.36605871375204,-90.36621719879835,-90.36632388343139,-90.36645750296027,-90.36658991088075,-90.3667484486937,-90.36703715599853,-90.36758780710583,-90.36824260338371,-90.3687388867389,-90.36912959599999,-90.36970277668131,-90.37085210891675,-90.37155769545178,-90.37231635139626,-90.37268273703823,-90.37315275168217,-90.37375337448373,-90.37414435299816,-90.37458926931407,-90.37508588747795,-90.37565975884051,-90.37597147607613,-90.3761789582253,-90.37617671312898,-90.37643510228916,-90.3764851421555,-90.37666478964744,-90.37708084519656,-90.37747091303717,-90.37783705365194,-90.37817682993197,-90.37846491409515,-90.37888610552532,-90.37914961890175,-90.37920357171838,-90.37941417029344,-90.37985969422895,-90.3805664736694,-90.38095780970585,-90.38153174615869,-90.38208035515407,-90.38299474630786,-90.38351688577885,-90.38382952994417,-90.38403758867412,-90.3842443763947,-90.38502633528141,-90.38596582870332,-90.38654073473394,-90.38732535566776,-90.38774349753727,-90.38813515078114,-90.38860596573839,-90.38910339766942,-90.3896001592417,-90.38991473123727,-90.39033480843288,-90.39078031930977,-90.39109424315089,-90.39148550172652,-90.39169222854574,-90.39195163224498,-90.39242219861049,-90.39323312634899,-90.39354809171847,-90.39362776328531,-90.39381270646473,-90.39418087603445,-90.394522316665,-90.39491672115663,-90.394997987213,-90.39507793567246,-90.39481788338378,-90.39429488839112,-90.3940331394634,-90.39350935423752,-90.39314248041333,-90.39274964049251,-90.39227895135451,-90.39214917863249,-90.3919673614885,-90.39183901866885,-90.3918154048752,-90.39194868651629,-90.39221213583674,-90.39252698804194,-90.39299756237584,-90.39365125759436,-90.39406941055137,-90.39469662973035,-90.3950633786895,-90.39540431635569,-90.39561522611356,-90.3956165372927,-90.39556521224681,-90.3955399157678,-90.39561975203335,-90.3957518787314,-90.3958574016859,-90.39596331753532,-90.39609570909941,-90.39625445117244,-90.39630964946913,-90.39628488280981,-90.39639080134695,-90.3966549417233,-90.39691816266564,-90.39691921599086,-90.3969466292249,-90.39734357593059,-90.39737136980999,-90.39755846188334,-90.39772077817307,-90.39814621993672,-90.39849116451971,-90.39896866872674,-90.39925974308711,-90.39936541477317,-90.39952312884496,-90.39968085616606,-90.39988967812239,-90.40015109270503,-90.4004642775222,-90.40088233037257,-90.40138038856004,-90.40164331876076,-90.40180237561307,-90.40185735057372,-90.40185921410949,-90.40188649896548,-90.4019656992095,-90.40214991668026,-90.40299085529814,-90.40356892874604,-90.40401643709656,-90.40459573011795,-90.40499121373681,-90.40554631668729,-90.40583840002601,-90.40607736788718,-90.40623767150043,-90.40642420296876,-90.40661154451115,-90.40677293411912,-90.40698664297192,-90.40706768427225,-90.40727950608482,-90.40743942362607,-90.40754689070927,-90.40760191468345,-90.40755230112008,-90.40758055397004,-90.40768762041121,-90.40776900270713,-90.40800747734883,-90.40850631557581,-90.40897716523051,-90.40950046981784,-90.41018167406096,-90.41075838398514,-90.41102147044633,-90.41107528603065,-90.41110246785298,-90.41144300825859,-90.41196686039277,-90.41246544350201,-90.41280626085855,-90.41333230673925,-90.41370086414493,-90.41388568896242,-90.41391576473387,-90.41404745072981,-90.4144952538079,-90.41465441557428,-90.41471126718091,-90.41468806789938,-90.41474204211042,-90.41477288285182,-90.41485418321722,-90.4148845456988,-90.41507145597663,-90.41525989522765,-90.41542057756291,-90.41537005100282,-90.41516323957507,-90.41511311652104,-90.41532406610824,-90.41561357476623,-90.41582494008627,-90.41601062647874,-90.41616829426566,-90.41632885657557,-90.4165146941822,-90.41675257786326,-90.41698991163071,-90.41743751976469,-90.41788499116667,-90.41822656971837,-90.41833081994734,-90.41877667757015,-90.41880967072406,-90.41889690541191,-90.41908798996337,-90.4193102154973,-90.41991441681121,-90.4203591408338,-90.42056581523167,-90.42065350806128,-90.42110643314814,-90.42166338262771,-90.42242647493271,-90.42290327128039,-90.42360261724357,-90.42439730121673,-90.42538228085114,-90.42605051952745,-90.42624934713189,-90.42633656320599,-90.42668636656317,-90.42706774040253,-90.42752093252781,-90.42815680673405,-90.42857797365274,-90.42876113375029,-90.42933311654161,-90.43059713563595,-90.43078760677261,-90.4310417499178,-90.43180510722328,-90.43199602732601,-90.43333089604629,-90.4339670679059,-90.43460266162796,-90.43501600570663,-90.43571456853078,-90.43637395593525,-90.43637402107544,-90.43649246012592,-90.43662968785003,-90.4366205439503,-90.43666814781182,-90.43681945168824,-90.43704932285324,-90.43711269911122,-90.43721581375753,-90.43733511379831,-90.43735922245494,-90.43739412970339,-90.43851596648567,-90.43855975279506,-90.43868649463825,-90.43878184987476,-90.43900432963136,-90.43932231486821,-90.43951282229463,-90.43976705997481,-90.44005319659439,-90.44084731075367,-90.44132397158953,-90.44215010015179,-90.44284920684422,-90.44577253876656,-90.44618575743051,-90.44647135312691,-90.44675771948509,-90.44786976518525,-90.44861670851766,-90.44971251826414,-90.44999889370611,-90.45041167355997,-90.45072953848346,-90.45104727406169,-90.45200021663712,-90.45320774682601,-90.45597229956572,-90.45743412278324,-90.45774924434552,-90.45794292069063,-90.45851487353639,-90.45911869516851,-90.4593405784712,-90.45959523515546,-90.46010372162867,-90.46099373592355,-90.46181948645774,-90.46229400232903,-90.46297969336862,-90.46336083899872,-90.46361482486085,-90.46450482246877,-90.46514040819829,-90.46555365289343,-90.46587145193664,-90.46606182631051,-90.46644374049212,-90.46701557106152,-90.46781034812666,-90.46892222538973,-90.46949429945917,-90.46993922328954,-90.47063870485351,-90.47146479855847,-90.47203714033841,-90.47295872977521,-90.47330837006228,-90.47403960162026,-90.47467536805796,-90.47569199922917,-90.47607334341953,-90.47645507386041,-90.47699502125698,-90.47747195431505,-90.47810782624327,-90.47855286015519,-90.47883868780883,-90.4792840119878,-90.47998309252456,-90.48065089421343,-90.482430550608,-90.48375643323239,-90.48391695423933,-90.48553027229558,-90.48591178689726,-90.48645200236926,-90.48692893101838,-90.4871518402833,-90.48762839313916,-90.48810511931055,-90.4884235272086,-90.48896355698858,-90.48928185392401,-90.48979019035464,-90.49058535390135,-90.49137983629579,-90.49188851129172,-90.49224648074299,-90.49265154834313,-90.49296966863646,-90.49341443993188,-90.4936613920005,-90.49411403203911,-90.49436857656772,-90.49490909365666,-90.49520332108915,-90.49526012378084,-90.49622878541737,-90.49680091914554,-90.49734144597618,-90.49800943733649,-90.49854983209447,-90.49899523567268,-90.49924925095159,-90.50016477851371,-90.50063619012387,-90.50127210873251,-90.50174895472325,-90.50203480128843,-90.5026149605909,-90.50292497561645,-90.5032264321226,-90.50358359918629,-90.50408481191992,-90.50418047140528,-90.50459365389747,-90.50516588660913,-90.50552439281499,-90.50572231156714,-90.50594448757471,-90.50658076727797,-90.50683506202695,-90.50772549656446,-90.50804363845907],"lat":[46.58999911933935,46.5900432610881,46.59002156902042,46.58995039570108,46.58973126974904,46.58968779806327,46.58956668149401,46.58919931063052,46.58914993626171,46.58899645148568,46.58867806067063,46.58840378453468,46.58804153689493,46.58788792695432,46.5878333422346,46.58781685463401,46.58776733021847,46.58760260948223,46.58741621098467,46.58732850981335,46.58733992766656,46.58731766310991,46.58731221759317,46.58725219047552,46.58716449022256,46.58695633961454,46.58676939874982,46.58656637188363,46.58608302522678,46.58588553152815,46.58546288386205,46.58525420329363,46.58468177062186,46.58447970577043,46.58419960037623,46.58407340694748,46.58381541604755,46.58359556161751,46.58346958962431,46.5833046631029,46.58311239949737,46.58293119317244,46.58271683757062,46.58262932702171,46.58253072295835,46.58245341206497,46.58233846049741,46.58223969693486,46.58212983766926,46.58160808005461,46.58131673595619,46.58125089518794,46.58120177568541,46.58113586812762,46.58111941312462,46.58120192603079,46.58119607826397,46.58122405279949,46.5813228563279,46.58145462361709,46.58160139845351,46.58165285446246,46.5818175234234,46.5818612299359,46.58193827223797,46.58209217323176,46.58216947457196,46.58228981879541,46.58240029194339,46.58254298148363,46.58282869890958,46.58293287130337,46.5833456305952,46.58335172676549,46.58349871284842,46.58363064268217,46.58366516434336,46.57987376742084,46.57299014431327,46.55863716998985,46.54413228217261,46.5296209709565,46.51516334238114,46.50070880620354,46.50070099568048,46.49993273371609,46.48591765818689,46.47154545121373,46.4569805248109,46.44257937420778,46.42834386934424,46.41399737332937,46.39943131030006,46.38499884325898,46.37496219300184,46.37062734209709,46.3562517124426,46.34180076965396,46.32734464737607,46.31303043880387,46.30598346554599,46.29889604862373,46.28478279751525,46.27055748182058,46.2557222295566,46.2412736659254,46.24129128580049,46.24112020521478,46.24103337616692,46.24087798065501,46.24075813286517,46.24066987399166,46.24076663595328,46.22041920786278,46.19205818104852,46.16865690132527,46.1540631697321,46.15421887405082,46.15428581146123,46.154509682305,46.15462812376631,46.15470173699902,46.15476152972045,46.15495928590909,46.14889757127711,46.12545053264718,46.11117399095087,46.10382016218963,46.09630449686863,46.08195209030711,46.06787055416216,46.05338867911098,46.02434843861811,46.01031536394344,45.99608863253246,45.98154009932904,45.98150599144869,45.98148967610478,45.98154226740106,45.98164410914681,45.98189033786146,45.98200833757536,45.98195231289984,45.98196823151411,45.98192547155835,45.98227568348891,45.98223559619331,45.98206478829257,45.98191266099649,45.98185418475211,45.98182073938715,45.9818684434877,45.98196257734111,45.98207259768451,45.9821025819478,45.98208585013076,45.98204263304685,45.98203993203874,45.99639957233487,46.01106174736497,46.02091327775177,46.05032009743638,46.06900302644971,46.07086833421999,46.09584313138231,46.12544599316119,46.15201132914585,46.15593253717094,46.16695588845992,46.17747701164298,46.18165979358999,46.19921899712057,46.21381314179721,46.22479910018365,46.2334557095588,46.24267226146322,46.25046286215198,46.2729357668475,46.29126062980556,46.29988565522979,46.30128132421912,46.30317405944751,46.30600138924816,46.30881738760313,46.31116773988735,46.31288678618485,46.31379468071097,46.31382584272581,46.31580521539971,46.31994424648962,46.32244748646307,46.32965375049299,46.33285081152524,46.3368522680542,46.337036240087,46.33715027872033,46.33720360841877,46.33742733964905,46.33750376064761,46.33756104617959,46.33766338860526,46.33779790116092,46.33801505921276,46.33820072090813,46.33836729465364,46.33851419205629,46.33867406669502,46.33880860618285,46.33891125259674,46.33894354999082,46.3389117294045,46.33891819978255,46.33894365527055,46.33896357451746,46.33900208399042,46.33905967911317,46.33911102920528,46.33912419781576,46.33916885386008,46.33927139960653,46.33946323433609,46.33965502152914,46.33977035018145,46.33985296098412,46.33993616227878,46.34010262850676,46.34023654943334,46.34039013778055,46.34045420407212,46.34051772537105,46.34065217994263,46.34077989215027,46.34088229553709,46.34098473295077,46.34108719270304,46.34112557511165,46.34115158149383,46.34119609333199,46.34124731946017,46.34133683006078,46.34150331870931,46.34164995571797,46.34175830606928,46.3418351756324,46.34192449502704,46.34203297798206,46.34216105312184,46.34238427237108,46.34259515796469,46.3427744763359,46.34295325014497,46.34313200438813,46.34330453441158,46.34341971764085,46.3435985323263,46.34386057360449,46.34406525788962,46.34428853852214,46.34444825470763,46.34463378789193,46.34472984654154,46.34481900285869,46.34471636787045,46.34469708605977,46.3446006681311,46.34451089083129,46.34442127042702,46.34436996411861,46.34436984625703,46.34438269669084,46.34440790891248,46.34451018415667,46.34460634916639,46.34516809580252,46.34536577227878,46.34555115215235,46.34564049215467,46.34583207906349,46.34602994654687,46.34636906450076,46.34654812491254,46.34663773831024,46.34663897648848,46.34667739250994,46.34677999345245,46.34693974721271,46.3470802720059,46.34725291439923,46.34748305075836,46.34767480952586,46.34782839723713,46.34793703606073,46.34804567423304,46.34824433803364,46.34844244267981,46.34877504690204,46.34896708080748,46.34919738236476,46.34938321644177,46.34949195104689,46.34956917730472,46.34955654840489,46.34948648013502,46.34940350395284,46.34931439745421,46.34924432512592,46.34919946248874,46.34918046027085,46.3492126934294,46.34929601877065,46.34938543666787,46.34955806052297,46.34971152619158,46.3498391526069,46.34998601918765,46.35008235449044,46.35017201168128,46.3501338673355,46.34995447197412,46.34982067563213,46.34972465499566,46.34959718664719,46.34952079486349,46.34946975052701,46.34950142037486,46.34955264620066,46.34961678697238,46.34967412248119,46.3498467024421,46.35008337431671,46.35024931943454,46.35036463854659,46.35044795116399,46.35046044921345,46.35046076132932,46.35051882180468,46.35058920809461,46.35069783292477,46.35083840633631,46.35097276498047,46.3510745468061,46.35117695449841,46.35127314115086,46.35136885016426,46.35145836043512,46.35152872693222,46.35161203238055,46.35170148581383,46.35178473511265,46.35182968360806,46.35189315267542,46.35197635226955,46.35202752981908,46.35210406378813,46.35219409190629,46.35229588165717,46.35237903618238,46.35242397014822,46.35255163394119,46.35271814918313,46.35280764935017,46.35292923238374,46.3530441192454,46.35317864491837,46.35328108646281,46.35343412907113,46.35354942780005,46.35363261070211,46.35368992859394,46.3537410105158,46.3537791556114,46.3537728921973,46.35376662203117,46.35373446574199,46.35370230592321,46.35368308029458,46.35368917370316,46.3537081845901,46.35375929412662,46.3538678347709,46.35400845679506,46.35409172301033,46.35420705163556,46.35432185629959,46.35440520914489,46.35450147867845,46.35457810961325,46.35468066893552,46.35475728104624,46.35482147807148,46.35490476443229,46.35498124197473,46.35502614007729,46.35509633747456,46.35517270276504,46.35525587450836,46.35534522334233,46.35549874356961,46.35564557141359,46.35582447222154,46.35602303678426,46.35621477878534,46.35638062713323,46.35644470358729,46.35661054223603,46.35675106721028,46.35687920090823,46.35703209174142,46.35724342141985,46.35758190656882,46.35787597200717,46.35812504889702,46.35828466964337,46.35838696631824,46.35850837486163,46.35867428855306,46.3587896198818,46.35884982440685,46.35951840859424,46.35980471147116,46.35987516271736,46.35988764843689,46.35979164307958,46.35978018418721,46.35987167601894,46.35998695011627,46.36011352441468,46.36024019050605,46.36036009316923,46.36046254435085,46.360596940502,46.36067947830112,46.36069227972344,46.36067750473502,46.36062789242889,46.36060805662003,46.36060789795515,46.3606195664651,46.36060772138031,46.36059640069283,46.36058451665151,46.36053881499333,46.36053858401851,46.36056142958287,46.36058373540346,46.36065274149426,46.36072178658283,46.36077903463575,46.36075639034007,46.36071015810192,46.36068695629962,46.36069811511278,46.36076722782765,46.36087414315159,46.36095690548581,46.36103345945681,46.36111666332629,46.36115090741059,46.36117500138202,46.36123118977862,46.36127278603348,46.36131103326832,46.36134703768482,46.36137744065002,46.36140223462293,46.36143602660477,46.36145520227703,46.36146312521689,46.36143573159192,46.36137125543326,46.3613089892841,46.36133729854296,46.36141386256526,46.36149769435421,46.36158208823247,46.3616444702069,46.36167252833042,46.36167972265552,46.36177755178487,46.36191708149845,46.36206382499973,46.36205681302211,46.36201459188015,46.36194474781787,46.36193055583202,46.36194450821962,46.36204229489731,46.36204218605447,46.36197178623699,46.36184628770344,46.36176243416872,46.36164312123186,46.36161543954616,46.36162209028479,46.36167828411322,46.36176883432828,46.36188076675163,46.36199272425115,46.36208331732347,46.3621885684131,46.36227244402939,46.36232819355466,46.36237050120084,46.36240547267263,46.36241964308903,46.36243382664266,46.36245473697417,46.36246889618046,46.36253880548274,46.36256711477427,46.3625599776071,46.36246223601736,46.3624483453954,46.36252549379069,46.36262333389644,46.36267218305307,46.3627558529833,46.36281864500703,46.36290233640341,46.36294436881942,46.36302804841846,46.36316076010713,46.36326542982518,46.36330042030959,46.36337088482332,46.36340588797231,46.3634616399579,46.36357359659132,46.36368543003704,46.36376230751425,46.36383857825754,46.36394360026053,46.36400646802136,46.36414584285507,46.36434839010518,46.36446030599778,46.36449488162318,46.36448792677822,46.36455754279039,46.36468345248255,46.36483019510489,46.36498366543859,46.36507458631232,46.36512331417666,46.3651296666101,46.36519697989917,46.36522217006147,46.36531550176601,46.36544306381169,46.36556220207483,46.3657157616848,46.36603914937058,46.36622632056541,46.36654050494482,46.36694046443375,46.36736511600983,46.36762833180875,46.36781510361419,46.36792562141303,46.36810396815361,46.36830743955728,46.36840043800942,46.36849403599525,46.36856181889556,46.36869771416968,46.36885955486719,46.36897813990677,46.36898689876865,46.36902042588737,46.36902866572493,46.36905444078719,46.36913934501847,46.36920743574291,46.36928396199549,46.36934369706771,46.36939507948892,46.369370050189,46.36934437317536,46.36936143174101,46.36942965842941,46.3695491026761,46.36960896120512,46.36972848575671,46.36983085873933,46.36989048394581,46.37000908469807,46.37014543392973,46.37026387607607,46.370468411654,46.3705532914081,46.37063829366164,46.37067285761356,46.37075790727717,46.37104740414981,46.37120017475679,46.37124267197773,46.37124240461648,46.37115683468851,46.37102905278582,46.37080795460561,46.37070547125204,46.37069689115649,46.37067983258314,46.37073089140719,46.37090970490236,46.37122409082924,46.37132625110694,46.3713427976698,46.3714448818835,46.371606044623,46.37172493644907,46.37167363436094,46.37156334541406,46.37149517246886,46.37150345102866,46.3715286612038,46.37162256940501,46.37174192780577,46.37195474745442,46.37204805004716,46.37208216108419,46.37199644652353,46.37180951509656,46.37170701281142,46.37177494481247,46.3720386628053,46.37220068523221,46.37234527468257,46.37243031144713,46.37250690821919,46.3725752282046,46.3726607797979,46.37278001419964,46.37288160812805,46.37296697790304,46.37317953606738,46.37330677558445,46.37349380595439,46.3744129181913,46.37473635858265,46.3749676580743,46.37662449506191,46.37680065228402,46.37695155362781,46.37705566937997,46.37716538284452,46.37726595261287,46.37731586575146,46.3773285533393,46.37737065532006,46.37742075227207,46.37748391241776,46.37747589409093,46.37754858827476,46.37762287898031,46.37773576020392,46.37779856195604,46.37785417760344,46.37791386845687,46.3779229842957,46.37785450065129,46.37783449720959,46.37784143914468,46.37794396665851,46.37804302003718,46.37819096397922,46.3783714075261,46.37863271728308,46.37876014982213,46.37884707536817,46.37893393384656,46.37894708097989,46.37899760513643,46.37959967099432,46.37961358191738,46.37968063087828,46.37973811688168,46.38012338241914,46.38022140707488,46.38025487028488,46.38021115652989,46.38010787072641,46.38005740309403,46.38007442180096,46.38014819786596,46.38052793007192,46.38064515324775,46.38079436324017,46.38102780718512,46.3813430823641,46.3815828992995,46.38163833031828,46.38166101386813,46.3817652479654,46.38186576144496,46.38195306916688,46.38202525095006,46.38208759436178,46.38216093906562,46.3822516814892,46.38229055389438,46.38217164290981,46.38221086325049,46.38234852169972,46.38246725661605,46.38263523031884,46.38275336818942,46.38287140583024,46.382962264484,46.38301856185497,46.38318567017249,46.38348119403479,46.38406261730437,46.38423921679214,46.38451468977118,46.38490841942882,46.38498652796584,46.3851823975178,46.38537070857149,46.38554841860824,46.38577516842109,46.38605141630528,46.38621865205633,46.38629691309774,46.38639497770713,46.38669082349918,46.38686853629463,46.38700622074369,46.38711714982665,46.38715350273603,46.38728164255819,46.38759714146696,46.3877960146548,46.38821573145292,46.38855411686132,46.3888691950177,46.389096084546,46.38929242395956,46.38945954768851,46.38943936432311,46.38959686837052,46.38957666229483,46.38997012046661,46.39057112222336,46.39134958537182,46.39174379058781,46.39194151253174,46.39198121184365,46.39209956378577,46.39228699672937,46.39293740661635,46.39409008065167,46.39464154797275,46.39515349170815,46.3953500859604,46.39548806923751,46.39586235306074,46.3960787751209,46.39627622690266,46.3964440665888,46.39653312249633,46.39651362027249,46.39635576312056,46.39640548368295,46.39693771158571,46.39789448548706,46.39855023056978,46.39888074306617,46.39896458006988,46.39903880653949,46.39912691928146,46.39926934910971,46.39938756317586,46.39944128448604,46.39943156816166,46.39942628132596,46.39925318583848,46.39898627181048,46.39905524539204,46.39915858148148,46.39939459991118,46.39958174808452,46.3997053630868,46.39974908760983,46.39973938531172,46.39973874928309,46.39976849321899,46.40029557736118,46.40037482776915,46.40035951114503,46.40012718844291,46.40013716131823,46.40018148351196,46.40025505383971,46.40035398567145,46.4004620681289,46.40059049140277,46.40067490647366,46.40074851998346,46.40079734251491,46.40100761740589,46.40123408882832,46.40154960206446,46.40226395312539,46.40258950334827,46.40288549040054,46.40304294473695,46.40318627335267,46.40318268954094,46.40314256681661,46.40310194527848,46.40309171265694,46.4031269639036,46.40315663021448,46.40323647251379,46.40329669765514,46.40337329996187,46.40347482783537,46.40347272672295,46.40347580831773,46.40350356532469,46.40356270923385,46.40370837417534,46.40381347182478,46.40409712132418,46.40410816441323,46.40411300831437,46.40407289049479,46.40402266604349,46.40397238050603,46.40403192639484,46.40417250635245,46.40425241796388,46.40433685291897,46.40442746629098,46.40449269350992,46.40448245327219,46.40442215972407,46.40434716665914,46.40428686363963,46.40426199725255,46.40429678218744,46.40445648641206,46.40460158509606,46.40480182054336,46.40496226370296,46.40507206542635,46.40521398598307,46.40524767601361,46.40524742210243,46.40528199225687,46.4053115112872,46.40538453521015,46.40547174951449,46.40552183575909,46.40555632855423,46.40555707677018,46.40589853465659,46.40592114703744,46.40591900847379,46.40587868092087,46.4058040271686,46.40581036143949,46.40588409630492,46.40622426864577,46.40623909806119,46.40619884848783,46.40624363736703,46.40628847641056,46.40637335307262,46.40650329521286,46.40660626066786,46.40673885947855,46.40682395659491,46.40689942860696,46.40696410417726,46.40703041525204,46.40707415186662,46.40705873410671,46.40707359714946,46.40714351906962,46.40720067503573,46.40717002489494,46.40713280840129,46.40706758255369,46.40695741999846,46.40680284772817,46.40670276838382,46.40665262723267,46.40663732268744,46.40665233393893,46.40672200060453,46.40695691056127,46.40718956394076,46.40722708453659,46.40723175203431,46.40725970342442,46.40740627994609,46.40752141120637,46.4076321878166,46.40776614525612,46.40786134410939,46.40794520433124,46.40806647244906,46.40815638357513,46.4081606097616,46.40805522737434,46.40791496270616,46.40793342397093,46.40797493933409,46.40805471075813,46.4081654666726,46.40836523065303,46.40854875254337,46.40866300475462,46.40872040915887,46.40892224004913,46.40907326804776,46.40922396965469,46.40935448716582,46.40946515249324,46.4096670624145,46.4097983422395,46.40979866472953,46.40983875912659,46.40999022869968,46.4100611019021,46.4102730352047,46.41033307934574,46.41044362662913,46.4105749639982,46.41067544527824,46.41080624087549,46.41095740606592,46.41106815400478,46.41157299865102,46.41173457235174,46.41189596405845,46.41204722780272,46.41213764540906,46.41223822723882,46.41235970587921,46.41244020218291,46.41253079826634,46.41270241509974,46.41321716653602,46.41338864185174,46.41353974545929,46.41373074449494,46.41389195344271,46.41411421469617,46.41424531104248,46.41443737753455,46.41463895048614,46.41474718647243,46.41489212038962,46.41503700986537,46.41522560978645,46.41539901370219,46.41557289267426,46.41584790340018,46.41639715403682,46.41672989652637,46.41701208742031,46.41720716551642,46.41742424986704,46.41762635453183,46.41814684443226,46.41866768367289,46.41895733206597,46.41928310946756,46.41960830825411,46.41989815911037,46.42016602735962,46.42037609331273,46.42064417957246,46.42086901490282,46.42094145644658,46.42104299177534,46.42113017515059,46.42123127732349,46.42125970351969,46.4213465865778,46.42146167840075,46.42164996027645,46.42186702069483,46.42212861371802,46.42226469050798,46.42238770175015,46.4225466369499,46.42263289637344,46.42269045391753,46.42269007553596,46.42266768603987,46.42264597481151,46.4226962484956,46.42271721003483,46.42284799013174,46.42331757163406,46.42373723675295,46.4240411091861,46.42456232602249,46.42502642411311,46.42527636790681,46.42544617929606,46.42555438420676,46.42557554223882,46.42568391054348,46.42580700290335,46.42616877636021,46.42633527125697,46.42655964209562,46.42666043156506,46.42672475055905,46.42689787758508,46.42714298716727,46.42734549314773,46.42744648498712,46.4275982801077,46.42775017730289,46.42803258336495,46.42848096960672,46.42890066737666,46.42949409385804,46.43004354617776,46.43049225345428,46.43073783309273,46.43094729412432,46.43117872018744,46.43144613352353,46.43177839166587,46.4322703799379,46.43250938720386,46.43271925170435,46.43290732767223,46.43322580898367,46.43375391300902,46.43418819025393,46.43468707637299,46.43488941600995,46.43500510846043,46.43509202403011,46.43519288109942,46.4352360392984,46.43535914806817,46.43542401160522,46.43549651244665,46.43561209480697,46.43590074235322,46.43642084305647,46.43665899966496,46.43763471514099,46.43807548121137,46.43841983899126,46.43863179599486,46.43891088017498,46.43910961544514,46.43937776656796,46.43962410065395,46.43985515549856,46.44050074336852,46.44120847050159,46.44178626486678,46.4420390410042,46.4421035141123,46.44204590826617,46.44187916941508,46.44151709798817,46.44091598745699,46.44051077182586,46.44005426501064,46.43977413540562,46.43956151192078,46.4394813011676,46.43940862035913,46.43958090821612,46.43981448477647,46.43989780837948,46.43989716223938,46.43970793330046,46.43953317134883,46.43952103405125,46.43956752561553,46.43972606428185,46.43979781893164,46.43992035688029,46.44006410534127,46.44025021420417,46.44036590667574,46.44049652890427,46.44055635917896,46.44061421947776,46.4408156717132,46.44101913381788,46.44115514967778,46.44135773622051,46.44148139365164,46.44159660923756,46.4418853455071,46.44214505534173,46.44236280513888,46.44260951191214,46.44297880349239,46.44317182693121,46.44344903587054,46.44388289140994,46.44423014776594,46.44445781335883,46.44528192964161,46.44589455283999,46.44637953659423,46.44743678859319,46.44792201192971,46.44835609911783,46.44863770367317,46.44889112008457,46.44913653292015,46.44947542160762,46.45003164207002,46.45048654269699,46.45060231626859,46.45075413542067,46.451036805876,46.45115957507608,46.45138421095728,46.4516232013687,46.45229529730355,46.45270736015252,46.45301845885653,46.45406216772515,46.45590036738748,46.45645677653273,46.45661598894035,46.45682598716995,46.45712957628955,46.45735396900242,46.45750554394293,46.45765737960703,46.45788128469653,46.45828083156217,46.45853788435561,46.45875632767359,46.45876049690852,46.45861015284457,46.4585571244676,46.45848455013603,46.45836941204674,46.45834763827192,46.45790743907838,46.45751769206411,46.45721094198909,46.45696517274189,46.45669048863719,46.4565845317068,46.45657462175051,46.45656929930259,46.45666071666668,46.45681457004331,46.45725201186433,46.45737677318017,46.45739810957065,46.45752400369882,46.45750504049538,46.45760841048832,46.45785597425427,46.45800641337139,46.45807811823735,46.45815000745781,46.45814228467545,46.45825025490073,46.45832151491577,46.45848729838237,46.45867510293657,46.45910762781657,46.45938198024613,46.45999620841973,46.46034272954778,46.46051630646507,46.46063210534865,46.46084863956246,46.46126866548391,46.46181869351415,46.46191206546146,46.46193366842733,46.46192600615204,46.46186023041934,46.46190320712022,46.4620043091876,46.46219259870736,46.46238039420627,46.46264030522024,46.46279932560327,46.46330533632923,46.46342118427537,46.46351535162553,46.46353057665955,46.46353101813849,46.46340064517572,46.46328509672188,46.46327813737459,46.46337962442819,46.46387189476403,46.46398795951535,46.46407484546329,46.46425609916411,46.46443647782721,46.4645520683649,46.4649497341187,46.46519546435731,46.46537672154703,46.46554284414882,46.46570944241555,46.46576009946274,46.46578219451995,46.46576041590756,46.46567397097499,46.4655296065289,46.46541395025954,46.46539964070878,46.46546513315263,46.46563919817764,46.4658631860913,46.46600842449091,46.46609522016937,46.46611002048778,46.46626237725557,46.46647272018867,46.46670445163395,46.4669512321771,46.46729122193074,46.46743597265618,46.46774830761931,46.46793664158127,46.46813923295706,46.46829825758743,46.46878281612949,46.46899249573018,46.46907145852054,46.46884695430074,46.46883934695681,46.46866484699605,46.46860661710721,46.46858494614265,46.46859866127548,46.46847563891896,46.46839432951158,46.46841554600825,46.46848703380174,46.46856771466626,46.46866756783609,46.4687979363776,46.46905099718621,46.46925362653359,46.46954312669088,46.46981081595365,46.47023092652136,46.47049832740175,46.47085301908582,46.47131572001593,46.47157607491953,46.47198087542856,46.47234214146575,46.47247208380898,46.47253882669991,46.47284672702251,46.47320818402131,46.47335898823061,46.47339852933558,46.47338658784082,46.47342608663897,46.47337679601496,46.47312163262786,46.47304165261413,46.47302008201305,46.47304115684702,46.47311004501098,46.47319302746352,46.47333028801016,46.47346088384315,46.47357291259789,46.47370689058703,46.47376831480869,46.47381555528628,46.47381537506792,46.47379429748832,46.47384121246368,46.47391579873145,46.47405002551239,46.47414725597833,46.47421194538482,46.4742624967644,46.47438224357988,46.47439140000026,46.47440093878886,46.47443800445919,46.47452360647586,46.47468482054117,46.47485603887863,46.47507457391033,46.47512153515724,46.47514949955611,46.47519624025381,46.47525327527473,46.47542397759816,46.47559545910208,46.47567112542615,46.47569944903046,46.47576543161407,46.47656278408561,46.47720823440365,46.47773054787935,46.47834774672447,46.47921658248821,46.47970605211056,46.48021916460205,46.48063788241303,46.48101076320269,46.48232168292638,46.48435969504173,46.48500554639266,46.48597588503198,46.48594365489043,46.48605100088743,46.48648192242117,46.48697390184456,46.48769802482115,46.48874275198952,46.49033185253622,46.49100973499065,46.49150370717172,46.49233800265323,46.49278558121524,46.49299891020156,46.49335623903043,46.4937088999166,46.49401707181531,46.49443321595867,46.49514289740993,46.49561994550884,46.49597432245513,46.49640452360222,46.49705900694083,46.49732925748926,46.49789970151569,46.49837771442213,46.49867093037876,46.49910239894775,46.49967307892616,46.49992255102018,46.50041982393606,46.50050681859769,46.50070912405684,46.50098754728408,46.50116622911644,46.50176201475248,46.50212818039132,46.50235726845988,46.50237970697441,46.50240250878979,46.50255177558527,46.50333735777243,46.50340589535624,46.50339849911857,46.50339133953293,46.50338381759547,46.5030629060504,46.50280324013469,46.50264301288939,46.50260493986437,46.50205608811658,46.50175789190561,46.50171988675289,46.50160929024783,46.50157468825211,46.50159821492181,46.50162075300391,46.50164376342879,46.50173518432376,46.50194167625185,46.50251282573571,46.50278499939401,46.50292144848688,46.5030366081287,46.50333298711431,46.50383016474862,46.50399723316056,46.50465715295128,46.50479521699327,46.50506970333389,46.5056644153328,46.50664845006707,46.50712475884283,46.50799566407348,46.50909436135124,46.50950191544115,46.50970814585573,46.50982188831902,46.5098451592854,46.50945670951142,46.50865517172914,46.50769733655599,46.50712444834529,46.50694245980335,46.50685061088795,46.50691918922619,46.50677115649256,46.50669001936205,46.50630102030236,46.50611850643124,46.50602611671322,46.5058212475585,46.5055689072916,46.50552292903158,46.50570672442932,46.50572929271759,46.50524888255276,46.505134198756,46.50490469634227,46.50483598772204,46.5052981417223,46.50535893655412,46.50522922097541,46.5049557905183,46.50477563721666,46.50469611056048,46.50471958653675,46.50467144160466,46.50469338706991,46.50481693946804,46.50475681773911,46.50477035776304,46.50471505800519,46.50458104198885,46.50391367637647,46.50341880562694,46.5032377143062,46.50307275322285,46.50292294681571,46.50286695042428,46.50279622749225,46.50278809672084,46.50270175606562,46.50263090325384,46.50255122572942,46.50256076823663,46.50256481880209,46.50261895054602,46.50270412145277,46.5028132275794,46.50311804618659,46.50349364388315,46.50372044712386,46.50392350910272,46.50407938892752,46.50407865393052,46.50410157211562,46.50428875147601,46.50452284870484,46.50471835114973,46.50495338149126,46.50521937414531,46.50540755628577,46.50551765799356,46.50556585039406,46.50559731192676,46.50555109955021,46.50555947352667,46.50561445058118,46.50571597371275,46.50588897405905,46.50621014178841,46.50646851037357,46.50660870696333,46.50704527598447,46.50736510106815,46.50771612446461,46.50784586878214,46.50784824103724,46.50778482148151,46.50750186165155,46.50721043785965,46.50707548338386,46.5069794964953,46.50694652382446,46.5067731761339,46.50654604602868,46.50602903403058,46.50525347193855,46.50501814552418,46.50479061453019,46.50464174452141,46.50450787468157,46.5044289663313,46.5044988145838,46.5046005122853,46.50471032805795,46.50483564914795,46.50503864179218,46.50514084581565,46.50539810232524,46.50571902582064,46.50589116939428,46.50607916510043,46.5063540542624,46.50657307360242,46.50679218907884,46.50717557464491,46.50763781256877,46.50782575497138,46.50832710268682,46.50885916544332,46.50927403889229,46.50966905126106,46.51009831367382,46.51040631360727,46.51079440178516,46.51113485284768,46.51137163612524,46.51150891118922,46.51178872260727,46.51214763877726,46.51258045973861,46.51299335453419,46.51339175424461,46.51368457673713,46.5138715536987,46.51444515863761,46.51483173997875,46.51493826041892,46.51511853113751,46.51531795768198,46.51536334127168,46.5150141355461,46.51479932429994,46.51459859539087,46.51433112064547,46.51430344449346,46.51438350069193,46.51453250960893,46.51470283609163,46.51488336779611,46.51520432252804,46.5155987037685,46.51605277694082,46.51680940466077,46.51702995788871,46.51734467608096,46.51796188113239,46.5182006924652,46.51835466417362,46.51849571667206,46.51853669624811,46.51857331412457,46.51864060613885,46.51872815806999,46.51884874424447,46.51896975709224,46.51917040719444,46.51931716604842,46.51985125312226,46.52057858234824,46.52092480630073,46.52144408237795,46.52237704608262,46.52275569566493,46.52336197473318,46.52424022728514,46.52435333105147,46.52440592356387,46.52441865009735,46.52441022377474,46.52434375016876,46.52408975311325,46.52352871053453,46.52307648102183,46.52251689178229,46.52235459839781,46.5222457882893,46.52208221184719,46.52184518843217,46.52169927345631,46.5216607841073,46.52165930139819,46.5214779790111,46.52129762028895,46.52113552167566,46.52082912560785,46.52046847530244,46.52032404995555,46.52010648591762,46.51956361254526,46.51903693937347,46.51880063990266,46.51867200379684,46.51876099762358,46.51892204348983,46.5190836149412,46.51938914557326,46.51962165462706,46.51972895891489,46.51978136969641,46.51985254086278,46.51999590039146,46.52015752222896,46.52024645375284,46.52026345354446,46.52019925864843,46.52041487257752,46.52073870507047,46.52093641197121,46.52111561964294,46.52136778820862,46.52156532861382,46.52160004593569,46.52136468900392,46.52114757958387,46.52075068167141,46.52042568836806,46.52001140036698,46.51959607972324,46.51921670859928,46.51863761932185,46.51843805909164,46.51845490964983,46.51879719987814,46.51903011845432,46.51881208114664,46.5182327116931,46.51790569947875,46.51768751063203,46.51750490827313,46.51755725755442,46.51762718994161,46.51762498234452,46.51749802366815,46.51735146353868,46.51736751987551,46.51748339795114,46.51777089923505,46.5180944674559,46.51832790069391,46.51845249188137,46.51834217761265,46.51816008094172,46.51796061715253,46.51765365330567,46.51711143888802,46.51680405047235,46.51669457939836,46.51656696149438,46.51649242137623,46.51643622365837,46.51645286816176,46.51657799811317,46.5167938307783,46.5169734559297,46.51704450957823,46.51691709568057,46.51655563652584,46.51610333253253,46.51599384674969,46.51597498498672,46.51613645620954,46.51631607054686,46.51645982991943,46.51662144506419,46.51672898810454,46.51683581928239,46.51690780007826,46.51717847227295,46.51734073257541,46.517539137847,46.51777431831615,46.51811749215338,46.51842467072409,46.5188217677504,46.5192375685687,46.51959845253557,46.52010415934293,46.52050075204096,46.52080720356792,46.52124027968781,46.52154737922277,46.52188170338866,46.52206261281358,46.52233488469904,46.52266143795666,46.52282558030199,46.52307998904107,46.52326198158985,46.523425541931,46.52364344180142,46.52389627460724,46.524149742223,46.52443899132291,46.5248185219684,46.52512584099418,46.52537966609114,46.52586810740707,46.52615764699264,46.52646517702208,46.5266821548417,46.52691747784829,46.52733320750981,46.52783900310995,46.5280016275574,46.52816482310169,46.52838180120263,46.52865354822595,46.52892494112162,46.52925011547141,46.52956621762434,46.52981904009508,46.53007051368599,46.53032261515256,46.5305393691003,46.5307378471289,46.53109944569313,46.53124521324875,46.53140891016901,46.53166344317942,46.53188120224394,46.53208109535458,46.53233413692756,46.53262324248131,46.5329835580757,46.5331994598014,46.53343379139412,46.53368668648753,46.5339220792287,46.53421083480078,46.53451850598728,46.53471804625779,46.53495273225039,46.53513364087124,46.53538695811159,46.53560343633051,46.53582040138955,46.53607273536046,46.53630791076363,46.53638069175089,46.53643603259774,46.53650852300633,46.53659978894353,46.53667192274406,46.53685325093716,46.53703415389339,46.53719698588172,46.53731454149293,46.53742154314808,46.53749261029677,46.53759946500264,46.53777908261765,46.53794084994129,46.53819318127835,46.53850042764517,46.53853812331261,46.5386111179296,46.53879223271748,46.53906348466752,46.53924374793722,46.53942337523079,46.53960285412806,46.53989089030523,46.54017877920177,46.54032225754767,46.54017720599914,46.53992487557818,46.53968983948253,46.53950886288165,46.5394175909702,46.53947114502833,46.5395608507139,46.53968704432619,46.53990330513113,46.5401204134581,46.54033681840889,46.54055349912238,46.54075110684137,46.54073224799486,46.54056847312484,46.54031442456485,46.54018700653842,46.54042139135912,46.54061950551968,46.54090839364904,46.54108901256344,46.54143247682636,46.54170336594232,46.54191996763529,46.54200880309143,46.54213491827782,46.54229725410551,46.54240559227807,46.54249609204603,46.54264107913197,46.5428044281972,46.54294963095637,46.54329365720088,46.54352791033478,46.54372624171334,46.54388930017431,46.54394479690276,46.54392773569139,46.54394631345115,46.54416314996745,46.5443803299758,46.54456059302949,46.54461379383666,46.54484796296865,46.54502735500495,46.54510740515828,46.54516036947954,46.54497902385958,46.54467170176581,46.54443644862622,46.54420054110293,46.54412752558534,46.54421735208344,46.54437946762835,46.5445775779493,46.54463113454871,46.54468467187827,46.54482841814023,46.54497260601684,46.54508037764304,46.54533319314636,46.54553136923225,46.54560326967267,46.54549405481171,46.54536662164505,46.54538366485477,46.54554591953118,46.54574540131811,46.5458540529761,46.54598192916045,46.54607299574158,46.5462358415253,46.54643394728117,46.5466316154256,46.54672099703806,46.5467195256225,46.54675427253433,46.54673472290114,46.54653484563241,46.54617318427864,46.54588385695198,46.54563101713507,46.5455037990821,46.54543084191527,46.54544765395622,46.54566293905492,46.54586051564623,46.54605806381571,46.54596661610031,46.54589312784503,46.54603692821571,46.54630717598499,46.54661420179816,46.54692108031279,46.54722803337756,46.54755298533576,46.54780489179785,46.54794831973199,46.54816433707812,46.54841752181269,46.54867070168031,46.54890554719174,46.54912295568879,46.54937594941879,46.54959290765334,46.54982715515059,46.55008055784315,46.55038826277116,46.55071358946834,46.5510390617227,46.55130994239261,46.55152566283977,46.5515970965138,46.55141594553427,46.55101730960904,46.55076375501104,46.55045567333241,46.55047238798073,46.55061641577279,46.55092291052416,46.55125696691896,46.55154483176109,46.55176065355558,46.55174083637098,46.55161291717703,46.55159423315877,46.55157562567378,46.55173787221698,46.55190057475426,46.55210011153255,46.55237235411357,46.55275205956019,46.55296909142731,46.55320302903058,46.55336489467891,46.55340031552196,46.55332539691872,46.55325103401125,46.5532124864795,46.55322910599357,46.55335488958266,46.55366099392196,46.55389548630443,46.55405711377076,46.55407349201897,46.55380084632165,46.55329249226544,46.55294644723794,46.55283563884273,46.55279683735861,46.55275840179711,46.55268405742552,46.55248292306371,46.55233687760245,46.55195596051659,46.55152214875383,46.55117952214235,46.55085513066733,46.55051415377626,46.55038861922599,46.55030105475701,46.55023099976808,46.55012517528035,46.55003650374938,46.5498749618438,46.54940554573404,46.54904341963134,46.54850068580321,46.5481196256632,46.5478827417453,46.5478087014413,46.54778858888782,46.54782183993812,46.54798344643476,46.5483259305208,46.54864977001785,46.54897376698658,46.54927960335336,46.54949441149208,46.54954794084161,46.54941964262294,46.54907503745656,46.54871226479941,46.54817898129693,46.54774500858778,46.54723975791833,46.54684337085141,46.54666441251505,46.54663047594732,46.54643294857495,46.54600056670883,46.54563851242762,46.5452225491606,46.54487706399009,46.54445847903381,46.54386052625297,46.54308345094125,46.54248685142838,46.54165497969001,46.54105758329806,46.54058560987902,46.54022387159717,46.53955550853858,46.53904913982467,46.53852612979795,46.53802095891368,46.53756890828568,46.53718788760548,46.53696925708083,46.53694892810312,46.53696394690773,46.53705256561613,46.53723206245471,46.53748339157704,46.5377536902223,46.53807781501011,46.53851065896854,46.53890766797611,46.53925019794895,46.53957521760452,46.53986415829781,46.5401167758443,46.54034151050818,46.54033914825978,46.54030151683271,46.54011900821858,46.53997355443276,46.53977305287663,46.53951944369685,46.53930134995215,46.53917413794485,46.5392274662714,46.53935311354073,46.53958699945645,46.53992968652642,46.54012887574977,46.54045447356346,46.54077940852088,46.54112201340348,46.54144604137597,46.54155261405314,46.54153296222412,46.54149530655511,46.54129462142084,46.54093227979394,46.54064259655425,46.54028074969924,46.53993608796917,46.5396278005754,46.53949999853271,46.53942577009335,46.53944234685976,46.5395499825885,46.53965803377461,46.53989207557748,46.54018084249756,46.54059607611773,46.54083020394178,46.54101081072758,46.54115387689382,46.54127866364929,46.54131311957625,46.54111240661161,46.54084959514012,46.54045008305537,46.54003069868037,46.53986585359936,46.53977339083401,46.53977219774529,46.53960811309852,46.53935304173176,46.53913465174538,46.53911519512163,46.53896901411156,46.53867858444122,46.53831589170898,46.53802610217037,46.53770100285104,46.53723048935004,46.5369232154338,46.53638096798557,46.53596393226719,46.5356195371691,46.53552777079769,46.5354546530546,46.53550769890828,46.53583141203889,46.53610164528255,46.53630002186382,46.53646187480435,46.53653295320722,46.53654860454712,46.53633018996014,46.53605772919294,46.53589334678485,46.53564617638602,46.53542787341406,46.53526427225992,46.53506446064796,46.53468466190495,46.5342123712374,46.53377554122621,46.5336470454889,46.53355383382482,46.53344441930466,46.53333453713076,46.53329694175986,46.53327725144096,46.53322100046108,46.53327448875352,46.53343560623076,46.53350608191965,46.53346901217673,46.53330512122177,46.5329247451826,46.53261674592662,46.53248914136037,46.53243179820713,46.53253927200494,46.53273755039777,46.53295402596285,46.53320530720463,46.53336668269159,46.53358243383753,46.53394325891707,46.53417809668134,46.53439554515536,46.53448790668784,46.53447080806205,46.53445405152149,46.53438331501542,46.53438466448299,46.53444027581499,46.53458527701725,46.53480301527033,46.5351465612202,46.53548974832799,46.53583239549597,46.53608460562379,46.53617408321808,46.53609990803683,46.53598910463587,46.53587966700162,46.53571495444483,46.53576768461156,46.5358570641986,46.53605488737784,46.53623543347724,46.53640716405781,46.5365158084394,46.53667808788542,46.53685818146118,46.53696637445283,46.53712856096245,46.53734465127877,46.53759721455785,46.53795812996992,46.53813876695474,46.53830095241955,46.53864370735695,46.53885934475674,46.53900389480677,46.53913035526772,46.53974319117442,46.53997764678187,46.54048321894352,46.54122342414313,46.54210670564986,46.54273772304234,46.54360338508185,46.54400003467265,46.5441256591951,46.5442336640223,46.54428710916306,46.54425038254539,46.54415947241973,46.54401382286764,46.54393980044222,46.54399261335087,46.54416324333079,46.54439723369359,46.54477670637117,46.54502924684029,46.54519170628315,46.54526398673259,46.54537189539289,46.54582003380333,46.54610710534877,46.54643063257713,46.54688024438367,46.54722251617996,46.54792475990278,46.54850194037581,46.54895275445506,46.54934928861734,46.54981884827423,46.55034184113293,46.55093748093536,46.55149637486791,46.55181275826739,46.55211911279938,46.55251564461614,46.55287636630115,46.55320183945378,46.55359911743827,46.55388812588976,46.55419485274981,46.55455566708247,46.55493447764529,46.55507725613754,46.55502101320636,46.55500114243515,46.55499870187563,46.55508718980077,46.55526679305385,46.55542915651998,46.55557361213847,46.55559038649365,46.55564249717166,46.55574925831195,46.55580258642937,46.55608923445574,46.55635900825278,46.55653889517824,46.5570630058538,46.557170521316,46.55751256909045,46.55780110120354,46.55836054975195,46.55874029753446,46.55897465022635,46.55959775214998,46.5599405621494,46.56050067097276,46.56095165415209,46.56165573921623,46.56208825620931,46.56235954729588,46.56272196523535,46.56299269263526,46.56317248101977,46.56338854057143,46.56362232124484,46.5639107517148,46.56400073537895,46.56441581236089,46.56477624390907,46.56506448366576,46.56528016643956,46.5655856429803,46.56587311657343,46.56601642315866,46.56610491225045,46.56607515700554,46.56612340711674,46.56617314848865,46.56620619272804,46.56620594472757,46.56614073202336,46.56606991331755,46.56600953151406,46.56596027368209,46.56578986972497,46.56552120915686,46.56533502887144,46.56524777366631,46.56514956851388,46.56509487545881,46.56491966479469,46.5647557492119,46.5646841393177,46.564678751355,46.56456945223149,46.56448197223551,46.56435035012334,46.56406505227761,46.56390598394754,46.56381305360595,46.5636483535588,46.56318800462648,46.56314397954761,46.56305640081625,46.56296352807122,46.56292512128,46.56250891026867,46.56226744833235,46.56215816943881,46.56214703511648,46.56221355955202,46.56227572950296,46.56223298153357,46.56225784020842,46.56228656645756,46.56241709100878,46.56245572126299,46.56251082884962,46.56270287614749,46.5627251335347,46.5627196765233,46.56264835125069,46.56260438659807,46.56248332124783,46.56220060684533,46.56222068595938,46.56231413268996,46.56235820093535,46.56239109757821,46.5623859386417,46.56234751784478,46.56237522924216,46.56236400541288,46.56244700357793,46.56260096950222,46.56280983177674,46.56304111186566,46.56372328071079,46.56384428663801,46.56396522776688,46.56403104141206,46.56439398465661,46.56458679715008,46.56495541055084,46.56502121664624,46.56508708708719,46.56516402047016,46.5652741355261,46.56576871986694,46.56613179529054,46.56709950007635,46.56758301083323,46.56771842881324,46.56781383581014,46.56798984375368,46.56822084830604,46.56827564217178,46.56839667225805,46.56858867814302,46.56885845803748,46.56924266330908,46.56941792634154,46.56968232430342,46.5698585197832,46.56994636158878,46.57035278896599,46.57057294226627,46.57078162226972,46.57089169702448,46.57097922791066,46.57110029050991,46.57139718688583,46.57172692028501,46.5721774040327,46.57245235623429,46.5725950792665,46.57293587236617,46.57329807442858,46.57350719868267,46.57396855400576,46.57407847519044,46.57440786235968,46.57463865221743,46.57514402430876,46.57528699022264,46.57547382747381,46.57570443771832,46.57595724645141,46.57624313553737,46.5764848205788,46.57661636708049,46.57679786692226,46.57703398391268,46.57733041038585,46.5782313023514,46.57882416564129,46.57889604568678,46.5797475326595,46.57985728116852,46.58015421551224,46.58035186105639,46.58046678187408,46.58075835548112,46.58097793436266,46.58109863167862,46.58141749107949,46.58157080939727,46.5818566172447,46.58219687398365,46.58246063648378,46.58269130870293,46.58290013322228,46.58317455988612,46.5833064927477,46.58346037860769,46.58357011700994,46.58391632998955,46.58405359464263,46.5842841218478,46.58438859065441,46.58440015322225,46.58488249126615,46.58522311161451,46.58549749653655,46.58592600015849,46.58618406755644,46.58644760849059,46.58656855461226,46.58716414429203,46.58737019504916,46.58776619574532,46.58798571763366,46.58815095170802,46.58838182743644,46.58860151334757,46.58886567165398,46.58902271173613,46.58927248934343,46.58933843771884,46.58950873337555,46.58962995033984,46.58966661460087,46.58971804875594,46.58974575230777,46.58973506081415,46.5897513722056,46.58996059639666,46.58999911933935]}]],[[{"lng":[-92.09004836992813,-92.1161187875594,-92.13803647207224,-92.14348920588239,-92.1435041695274,-92.14144708052244,-92.14647531787931,-92.1486826748942,-92.15455121326241,-92.16718737741479,-92.16929088740122,-92.17448533983435,-92.17897220479203,-92.18290421385665,-92.18664310027896,-92.18938755313704,-92.19155416809919,-92.19319270657257,-92.19742840889356,-92.2030527731672,-92.2042339351768,-92.20505722764139,-92.2058593984314,-92.20610411864946,-92.20572607059155,-92.20499532793828,-92.2033763377798,-92.1982746485191,-92.19253153684629,-92.18996635936175,-92.18707435540551,-92.18292629549401,-92.17783620362992,-92.17610840149605,-92.17590748493954,-92.17592629060569,-92.17659648626835,-92.17820343664073,-92.18141195253253,-92.18827856339546,-92.18976358046751,-92.19225217364468,-92.19493850717515,-92.19745529865187,-92.20415295981617,-92.20538860715648,-92.20457857636684,-92.20162070488425,-92.20152552396186,-92.20231616946516,-92.20701665544311,-92.21247625613606,-92.21619041711568,-92.22335286284016,-92.22864772191957,-92.23249549236505,-92.23567475327525,-92.2424870287816,-92.24861249175001,-92.25091482471355,-92.25390634371539,-92.25520454760951,-92.25762186215491,-92.25924382087801,-92.26231636467715,-92.26552144794081,-92.26774877380277,-92.27046583019302,-92.27244207108465,-92.2733159693524,-92.27380362245435,-92.27487737320497,-92.27694882093869,-92.28350856356334,-92.28537259852357,-92.28636018305151,-92.28687097439357,-92.28686410743829,-92.28663486424145,-92.28650939788716,-92.28629665337742,-92.28650878465614,-92.28704307037643,-92.28857323290556,-92.28984584623885,-92.29064860830466,-92.29171089033777,-92.29219108837279,-92.29209916723651,-92.2921171449813,-92.29211171458687,-92.29173740701863,-92.29190996423573,-92.292056295314,-92.29221080820932,-92.29226994203054,-92.29250134999975,-92.29271053970177,-92.29298977222199,-92.29300881053629,-92.29302209637608,-92.29306857094026,-92.29303693464624,-92.29308609838139,-92.29315226889123,-92.29321471575953,-92.29326985877657,-92.29323475049205,-92.2794332138416,-92.25875852034895,-92.23797262681435,-92.21679575123723,-92.19669656008539,-92.17545007102065,-92.17345091161097,-92.17123164403129,-92.15372903199247,-92.13281147859549,-92.12205958662983,-92.1122268326493,-92.08665843476919,-92.08139158387601,-92.07906554604115,-92.07047137623631,-92.04947406892236,-92.02794865893725,-92.00690353666616,-92.00344197660907,-91.98637668922987,-91.96532002242823,-91.94448317791458,-91.92362432983676,-91.90213273019479,-91.88121128400076,-91.86082510429634,-91.84007196871326,-91.81873846760421,-91.79834272363213,-91.77726767529425,-91.75665881413511,-91.73608755528545,-91.71558351027404,-91.69503222639608,-91.69434819739799,-91.69031942526166,-91.67473426824938,-91.65572507712292,-91.63510227997918,-91.61363587214785,-91.59256576150779,-91.57167005786921,-91.56155004954871,-91.55131289622062,-91.55124049386797,-91.55126853596263,-91.55113238309887,-91.55088463277286,-91.55089860470041,-91.55074395021509,-91.5509843790401,-91.55100515664554,-91.55109605499496,-91.55103863638104,-91.55131566624641,-91.55126322544609,-91.55102738271306,-91.5511934266593,-91.55133370441162,-91.55153824038889,-91.55156301339503,-91.55156775208123,-91.5515000466185,-91.55171741089725,-91.55173246572032,-91.55174091028499,-91.55159767284113,-91.55162227516527,-91.55202381716381,-91.55207959504114,-91.55221572069907,-91.55225728830621,-91.55160979957111,-91.55349181125838,-91.55376943171643,-91.55346686906758,-91.55355081924885,-91.55350060213522,-91.55330770125484,-91.55325517950138,-91.55326087652574,-91.55329773282712,-91.55321769943006,-91.55287841257615,-91.55244294864528,-91.55205208136465,-91.55204528552802,-91.55217473090202,-91.55235241947545,-91.5521414564036,-91.5519281624251,-91.55188974658218,-91.55235295540521,-91.55363294299762,-91.55449437540608,-91.55465396043508,-91.55541941027433,-91.55577059352967,-91.55605766626516,-91.55647259287301,-91.55797191619092,-91.55835481872425,-91.55912110149976,-91.55943946387715,-91.56010998966339,-91.5609395298336,-91.56176911747167,-91.56259855983011,-91.56278996913032,-91.56361922787242,-91.56435322945727,-91.56483171688517,-91.56645875294574,-91.56709704209557,-91.56783046944685,-91.56859635646136,-91.56913880378147,-91.57006400843582,-91.57038283052907,-91.57077320632251,-91.57175472935084,-91.57210583405599,-91.57292272466056,-91.57293300018964,-91.57411582199356,-91.57446634206038,-91.5749775307615,-91.57526433338629,-91.57567883381273,-91.57574267900313,-91.57647706087498,-91.57753827542621,-91.57804064992557,-91.57862357167615,-91.57906224496944,-91.57941338121154,-91.57970058095073,-91.57989998493925,-91.58014688844851,-91.58043435556893,-91.58094526409175,-91.58148754386065,-91.58196585981239,-91.58231687943541,-91.58242091180924,-91.58317881161236,-91.58394468340775,-91.5847101618963,-91.58557178903288,-91.58592289773415,-91.5864733404397,-91.58681617123874,-91.58758195155868,-91.58863486327787,-91.5888900184775,-91.58915311567316,-91.58927269616393,-91.58943252993403,-91.58966391134476,-91.58987925591465,-91.59029421854125,-91.59080433034939,-91.59150640531517,-91.59230468056128,-91.59259179205458,-91.59301428398112,-91.59338929478585,-91.59425059027141,-91.59504830956628,-91.59555922380194,-91.59603790534807,-91.59709053541071,-91.59779243916199,-91.59830319056277,-91.59854256417383,-91.59898098899893,-91.60044901030761,-91.60085574378456,-91.60108692844229,-91.60139816412176,-91.60178083397233,-91.60270661557341,-91.60351664590942,-91.60356793410101,-91.60426982331525,-91.60506725633164,-91.60545022193946,-91.60634339928126,-91.60659862082117,-91.60694942328216,-91.60864041680227,-91.60909489500446,-91.60934242484049,-91.6095654780963,-91.61026756256936,-91.61053086951185,-91.61074599898734,-91.61100120840513,-91.6110650399648,-91.61122476350535,-91.61132016031391,-91.61138398731508,-91.61144158024649,-91.61173873537699,-91.61190344677867,-91.6120222167182,-91.61226114387364,-91.61248493390376,-91.61273974954449,-91.6130908442843,-91.61328216373924,-91.61350545032315,-91.6138244000614,-91.61394376686118,-91.6140636379058,-91.61416754278859,-91.61427137821137,-91.61457189473462,-91.61465388678121,-91.61503687715069,-91.61535581407144,-91.61580255325606,-91.61602582614297,-91.61634500220173,-91.61682228757995,-91.61699859323127,-91.61750929206661,-91.61763660436417,-91.61814739984526,-91.61862587149919,-91.61932726991442,-91.61950295400248,-91.6195875837995,-91.62018830814492,-91.62041183201534,-91.6206669223649,-91.62111361938896,-91.62175144848732,-91.62251698724609,-91.62289986525631,-91.62325059859801,-91.62376127623568,-91.6241437527147,-91.62436717662591,-91.62474963340199,-91.62515124200718,-91.62557139156726,-91.62597084607745,-91.62647354068321,-91.62684077510806,-91.62709678860877,-91.6275912084148,-91.62807874794233,-91.62851810668194,-91.62874158593451,-91.62934816227235,-91.63016297212656,-91.63075327982808,-91.63156792860816,-91.63262238230058,-91.63313336685914,-91.6336445763384,-91.63413161207038,-91.63441097264841,-91.63482609338718,-91.6357921091715,-91.63635856855606,-91.63661425893137,-91.63696558090444,-91.63754072546628,-91.6379557598907,-91.63866669830665,-91.63896174000972,-91.63911372115403,-91.63918171510154,-91.63954116776613,-91.63981439471218,-91.64009588870987,-91.64025531594227,-91.64044695650496,-91.64062273730516,-91.64093415314915,-91.64145310902693,-91.64172455612841,-91.64186007623933,-91.64249906218585,-91.6428739858659,-91.64312963789205,-91.64391196273633,-91.64445508070763,-91.6452933178774,-91.64564430025735,-91.64589141758783,-91.6460992239939,-91.64657816010499,-91.64680162856396,-91.64728304714873,-91.64783983579453,-91.64874187579548,-91.64911730433168,-91.6498437207037,-91.65036258980486,-91.65061811129556,-91.65096952967633,-91.6511054684395,-91.6515761707749,-91.65189537373179,-91.65234276794881,-91.65371653188406,-91.65413957460619,-91.65465083716796,-91.65502570847742,-91.65570421722849,-91.65700520366168,-91.6578983831901,-91.6580530639136,-91.6583629156728,-91.65881780411696,-91.65922511568044,-91.65944860221271,-91.65989596961069,-91.66040667664541,-91.6606621769285,-91.66104874236696,-91.66147648884822,-91.66185955814005,-91.66259402503282,-91.66339229532286,-91.66364785456908,-91.66467742884139,-91.66597864198002,-91.66687338436054,-91.66744782029691,-91.66860581160039,-91.6687896262646,-91.66907680231378,-91.669268228229,-91.66949171162685,-91.66968443457517,-91.67003470351044,-91.67027376726649,-91.67068871451693,-91.6713035396985,-91.67171058244199,-91.67200637730659,-91.67248485384941,-91.67290006399867,-91.67301968661315,-91.67382631890308,-91.67488032264232,-91.67522314378496,-91.67536445332962,-91.67618066786237,-91.67680322536437,-91.67726620164584,-91.67761746136038,-91.6780648685701,-91.67860740999548,-91.67892701157365,-91.67943801332979,-91.68055581987987,-91.68129821854188,-91.68256744997495,-91.68362110006773,-91.68381321706909,-91.68441967697134,-91.68486671876623,-91.68524976452578,-91.68611257387246,-91.68649561784024,-91.6868149891053,-91.6878685384883,-91.68837955098739,-91.68892258953025,-91.68988822060223,-91.69013562235665,-91.69099753677699,-91.69141252978712,-91.69221203274354,-91.69294539187845,-91.69310496555057,-91.69326432292054,-91.69342413137835,-91.69399867350937,-91.69446181435262,-91.69476416992609,-91.69501982166528,-91.69592234874285,-91.69626549683295,-91.69668858770568,-91.69698353974316,-91.69725488943833,-91.69751044833662,-91.6980851452535,-91.69847622390338,-91.69904307324848,-91.69949817336993,-91.70006444748793,-91.70067091623166,-91.7010222203339,-91.70143675645784,-91.7018202471907,-91.70204326112422,-91.7027454052832,-91.70288121761072,-91.70320873689398,-91.70343169015538,-91.70355135833751,-91.70402260056703,-91.70434210266291,-91.70460524967764,-91.70563231233228,-91.70579373615961,-91.70628037588416,-91.70652778898044,-91.70669564506761,-91.70697464544376,-91.70745348757202,-91.70770861397821,-91.70831532147427,-91.70860255889562,-91.7091019912136,-91.70920903136106,-91.70935240585834,-91.70970384348374,-91.70999080781776,-91.71040598579006,-91.71114005691905,-91.71168316373462,-91.71271246536242,-91.71347876250353,-91.71388557640007,-91.71433257476392,-91.71468405160813,-91.71570533864789,-91.71612077434294,-91.71644813187983,-91.71679040497071,-91.71691856134157,-91.71714170334417,-91.71740551312169,-91.71790302510949,-91.71816326210374,-91.71843453030324,-91.71875343147063,-91.71950376474821,-91.71998223623518,-91.72034111078864,-91.72057254884454,-91.72097152174599,-91.72167351459728,-91.72186493584451,-91.72250344226417,-91.7226229459845,-91.72267926468676,-91.72277482529108,-91.7230063000509,-91.72347693074504,-91.72383622212075,-91.72417926223649,-91.72453073565359,-91.72549612826943,-91.72706011919951,-91.72753061941181,-91.72780209162532,-91.72781512580276,-91.72799728429868,-91.72817903355612,-91.72821809186885,-91.72858798087539,-91.72879565414178,-91.72898132645619,-91.73037770888941,-91.73073831501925,-91.73105952784151,-91.73125098474684,-91.73176766684963,-91.73203575235175,-91.73264624957326,-91.73427507519266,-91.73433532556135,-91.73436264122203,-91.73434669068992,-91.73429847159763,-91.73417318545489,-91.73367933206427,-91.73364039765839,-91.73364321525013,-91.73374421950307,-91.73399645220918,-91.73450438045525,-91.73472440850836,-91.73485818323871,-91.7349459516582,-91.73493862652401,-91.7348273392692,-91.73482939749373,-91.73486071560032,-91.73494929485611,-91.73542448404457,-91.73560197811271,-91.73561718844381,-91.73560871704744,-91.73558170203607,-91.7355283751257,-91.73544547394678,-91.73520446527642,-91.73525949126287,-91.73539402007623,-91.73556357084742,-91.73572053742646,-91.73578217304409,-91.73593511248492,-91.73603006140306,-91.73611067761816,-91.73616683206428,-91.73625256977702,-91.73632769309515,-91.73667214496702,-91.73700136024438,-91.7371754917193,-91.73728504029052,-91.73754067101819,-91.73773887323561,-91.73801234995891,-91.73891220940986,-91.73964874546951,-91.73970834071896,-91.73973572385545,-91.73974244665594,-91.73986228581779,-91.74037264244009,-91.7406761276809,-91.74086733739435,-91.74118657215587,-91.74198410082957,-91.74255852717613,-91.7430049490996,-91.74338817642206,-91.74386701200611,-91.74418628856722,-91.74527143013019,-91.74574968486483,-91.7459412454041,-91.74622844263421,-91.74731379471368,-91.74827139773117,-91.74868647418845,-91.74916487682904,-91.74935935467279,-91.74973204569416,-91.75018198675046,-91.75041658285707,-91.75067238408261,-91.75093562425319,-91.75136724112053,-91.75149529604589,-91.75176732026436,-91.75181521479075,-91.7518392034724,-91.7520149211411,-91.75211887902657,-91.75217498790438,-91.75227072836809,-91.75236655476165,-91.75243033848342,-91.75249422815359,-91.7525342924133,-91.75262229192656,-91.75268607565222,-91.75287764269058,-91.75294918883957,-91.7531014889956,-91.75317303777069,-91.75332453563401,-91.75339649143446,-91.75342066594106,-91.7534525577349,-91.75354838391962,-91.75361216726994,-91.75377181858367,-91.75386755802334,-91.75393185552582,-91.75405946762395,-91.75412376675366,-91.75425101340549,-91.75431479227566,-91.75441102814504,-91.75451452903414,-91.75463452836233,-91.75470613750629,-91.75476224405286,-91.75489009747488,-91.75501763233427,-91.75505769707699,-91.75511363926225,-91.75519323910588,-91.75584907356949,-91.75588065984303,-91.7560723699534,-91.75610475721345,-91.75616819324128,-91.75626442608043,-91.75631209237231,-91.75644783680032,-91.75667986572078,-91.75670381104784,-91.75672804124204,-91.75685527044466,-91.75695183459553,-91.75720757549307,-91.7573114076087,-91.75760689198648,-91.75787069891692,-91.75796662246779,-91.75815903228037,-91.75832696587392,-91.75841476171718,-91.75856651509324,-91.75860686632883,-91.75873481437267,-91.75879057098784,-91.75881460147143,-91.75893457234028,-91.75947870699596,-91.75955012910492,-91.75967011875177,-91.7597097719018,-91.75989394577806,-91.75995772584227,-91.76014091252172,-91.76020518763821,-91.76026110722275,-91.76029283272915,-91.76041268867458,-91.76046834175976,-91.76050084605215,-91.76049311550362,-91.76053275244314,-91.7606602758744,-91.76078813887584,-91.76091627289816,-91.76098788453291,-91.76104382252859,-91.76111563422502,-91.76121169237116,-91.76130007418153,-91.76139534087658,-91.76149162802334,-91.76161116205559,-91.76173142918373,-91.76175547500755,-91.76191536541793,-91.76196324989907,-91.76201099699725,-91.76222681156851,-91.76238658670759,-91.76245827778021,-91.76250616209052,-91.76257807515975,-91.7626181554822,-91.76269021230969,-91.76290565716715,-91.76304153159667,-91.76310563947978,-91.76339320717678,-91.76360101077677,-91.76370513966228,-91.76374485248607,-91.76392840989848,-91.76407253858636,-91.7641686348407,-91.76445621317761,-91.76476800094625,-91.76524750687867,-91.7654672397892,-91.76570283345373,-91.76573521393952,-91.76591880540636,-91.7659588644255,-91.76607842874481,-91.76614243269503,-91.76623824131013,-91.76630226360339,-91.7665575347709,-91.76662929777298,-91.76678116084135,-91.76694883492706,-91.76697299972638,-91.76701265075003,-91.76710022962347,-91.76716441130587,-91.76735594571339,-91.76742789371696,-91.76745165400902,-91.76761160394442,-91.76787498127223,-91.76789915029265,-91.76800302533483,-91.76802637584363,-91.76809015143864,-91.76831397783667,-91.7683859300237,-91.7685373794755,-91.76860138181779,-91.76869720730544,-91.7687452536757,-91.76885705364093,-91.76889670695306,-91.76898458234982,-91.76903303911841,-91.76924086816079,-91.76936815761077,-91.76943221646205,-91.76947227591302,-91.76956791581058,-91.76978359180973,-91.7698552914877,-91.76989557840587,-91.76974645923542,-91.77025465683954,-91.77029444829303,-91.77035830804779,-91.77043009050254,-91.77055024256026,-91.77062159699906,-91.77077388420442,-91.77084542149304,-91.77086958607279,-91.77090923907389,-91.77102093414112,-91.77109308254953,-91.77114110638136,-91.77125296321655,-91.77154029885398,-91.77157181874472,-91.77161966210609,-91.77189172766406,-91.77213113118898,-91.77237879129623,-91.77257077809034,-91.77265461189518,-91.7725069712622,-91.7724833149811,-91.7724670521208,-91.77248338826045,-91.77257153714905,-91.77265943436073,-91.7727710888193,-91.77281881093596,-91.77283469391017,-91.7728663441297,-91.773160523551,-91.77325010129084,-91.77336952084758,-91.77344955121187,-91.77364122745389,-91.77372144082113,-91.77379293394466,-91.77382542556927,-91.77384084265974,-91.77387292729577,-91.77393716372808,-91.77398530617432,-91.77411323654148,-91.77424871113618,-91.77443262160877,-91.77459220632913,-91.77476009146061,-91.77501571394515,-91.77506357941043,-91.77511173839223,-91.77519136034164,-91.77535153855783,-91.7754714105932,-91.77551111888162,-91.77566310676256,-91.7765449162912,-91.77713277054285,-91.77734842736055,-91.77765186171979,-91.77769992439684,-91.77790772887626,-91.77796337160437,-91.7779953534268,-91.77809110748215,-91.77812349874721,-91.7781948879741,-91.77825081072227,-91.77834697313185,-91.77850663814174,-91.77853819513204,-91.77857830804652,-91.77873806637852,-91.7788576160191,-91.7789218341391,-91.77901764669615,-91.77912132967884,-91.77920936240423,-91.77927335457382,-91.77936915086595,-91.77947284943569,-91.77956047035705,-91.77960052788171,-91.77972048507633,-91.7797840893904,-91.77988805240851,-91.77997598584426,-91.78032709670136,-91.78061497585166,-91.78087042400652,-91.78115734247079,-91.78147701683879,-91.78163648156846,-91.78176434332184,-91.7819637060677,-91.78212386478833,-91.78265899416969,-91.78294637975475,-91.78299444486935,-91.78310622120206,-91.78316980655764,-91.78342519308603,-91.78352153771401,-91.7835852163426,-91.78364943446182,-91.78374481288924,-91.78387285714254,-91.78396842042964,-91.78412829544877,-91.78425555839328,-91.7843597928016,-91.78451123359953,-91.7845752270737,-91.78467877944747,-91.78474317985363,-91.78483839044665,-91.78489443844582,-91.78495874634764,-91.78501438451043,-91.7850383595962,-91.78521400034641,-91.78539795841532,-91.78542193236071,-91.78549314959882,-91.78581286227467,-91.78597273288234,-91.78617361134731,-91.78615169847355,-91.78621281074874,-91.78625210743137,-91.78647654691062,-91.78668393727246,-91.78677190357831,-91.78690748675291,-91.78699545187762,-91.7871152658913,-91.78729894307554,-91.78748309987405,-91.7877384940318,-91.7880979674066,-91.78815400883634,-91.78818557935377,-91.78827354398777,-91.78844128395771,-91.78847298227524,-91.7885049392516,-91.78864087117053,-91.78868874200302,-91.78876064268432,-91.78891270831309,-91.78915984895012,-91.78945560447825,-91.78947959595256,-91.78965520636653,-91.78978311345394,-91.78988720991833,-91.78997480185301,-91.79004632902434,-91.79019857892706,-91.79023822587145,-91.79035775413485,-91.79042133546203,-91.7905492398783,-91.7905892945561,-91.79070923368369,-91.79074928820651,-91.79086899998229,-91.79093258118183,-91.79109259286015,-91.79119647164437,-91.79128407918739,-91.79134806628429,-91.79144360695022,-91.7915078360555,-91.79157936267593,-91.79173077522444,-91.79179495080437,-91.79185880783524,-91.79196266750655,-91.79198682339523,-91.7924331911174,-91.7926008681102,-91.79268884758213,-91.79279226172252,-91.79281641835593,-91.79284830179029,-91.79313594928698,-91.79319954838499,-91.79332702227168,-91.79339142186001,-91.79368666440271,-91.79380618741811,-91.79384665012297,-91.79399807837947,-91.79406165849792,-91.79415784482386,-91.79429344868326,-91.79434954459012,-91.79438918718715,-91.7945087137406,-91.79454876692729,-91.79463678180871,-91.79476399342924,-91.79482826172909,-91.79489206038312,-91.79498770953055,-91.79508385795133,-91.7951235050223,-91.79514766092365,-91.79518771391339,-91.79521146475145,-91.79527523064615,-91.79546670632723,-91.7956024082129,-91.79569036590429,-91.79585800532082,-91.7958817558997,-91.79615811478124,-91.79603731360355,-91.79623457864463,-91.79653251266234,-91.79668864293336,-91.79671238880168,-91.79678434286663,-91.79680850175589,-91.796848144065,-91.79687230117062,-91.79703171403622,-91.79719162537944,-91.7972950339482,-91.79731919367407,-91.79773370104549,-91.7981249960722,-91.79814874606541,-91.79837192219959,-91.79875504747559,-91.79913843561464,-91.79936193670443,-91.79977663065033,-91.79996804942635,-91.80028721228932,-91.80041532473315,-91.80060677925519,-91.8011817034099,-91.80137296769743,-91.80141342671708,-91.80172441337265,-91.80182027940167,-91.80188453982088,-91.80191642208686,-91.80217169090444,-91.80252242802331,-91.80255434660646,-91.80287369999516,-91.8030017595662,-91.8032246112884,-91.80332075403123,-91.80344848556848,-91.80367183551269,-91.80376769989127,-91.8038311445659,-91.80408673261803,-91.8041509720977,-91.80431046794568,-91.80437431724937,-91.80459761110758,-91.80485331695786,-91.80494908371924,-91.80501331000164,-91.80510866607716,-91.80529999379526,-91.80533233533752,-91.80565166532821,-91.80581119431397,-91.80603445148361,-91.80625837556583,-91.80635391812456,-91.80648148115587,-91.80667294078083,-91.80670482268337,-91.80686479446091,-91.80715189885326,-91.80724784934105,-91.80731183578115,-91.80751103903944,-91.80757495808605,-91.80757468672147,-91.80775889126204,-91.8078863672375,-91.80794994292279,-91.80810969112289,-91.80852520352826,-91.80858864420266,-91.80871639333679,-91.80881230839211,-91.80906759483818,-91.80919520861289,-91.8092594447713,-91.80941852690205,-91.80954639161212,-91.80980197078689,-91.81037659528411,-91.81047245762836,-91.81060028753087,-91.8107595589798,-91.81095118577535,-91.8110789284347,-91.81117443673953,-91.81127070836702,-91.81158969104048,-91.81206816332866,-91.81240350191869,-91.81253075827934,-91.81310566010697,-91.81316906431513,-91.81321721025998,-91.81328927575233,-91.81340891628703,-91.81360020386168,-91.81395160977813,-91.81423864471807,-91.81449386427896,-91.81482895378281,-91.81505234032099,-91.81530786187349,-91.81575472725433,-91.81578669158048,-91.8158828260821,-91.81620200884231,-91.81648921545701,-91.81709580704046,-91.81738311766897,-91.81763856182823,-91.81773406436996,-91.81786221673759,-91.81789373655039,-91.81814900373605,-91.81830858000291,-91.81837239188813,-91.81846801577569,-91.8185003535452,-91.81865975804732,-91.81869199760465,-91.81878763950442,-91.81885137023116,-91.81913868895769,-91.8192020731738,-91.81939376465239,-91.81942610496222,-91.81961741944993,-91.81980886607032,-91.82003225404344,-91.82016043471565,-91.82028795798136,-91.82036739918658,-91.82054289411222,-91.82070227849229,-91.82113300590635,-91.82142073348454,-91.82180319256616,-91.8222978547301,-91.82258559856238,-91.82290443445497,-91.82325567164827,-91.82341488632011,-91.82363837673321,-91.82383052581997,-91.8240215133614,-91.82414901643305,-91.8242451144673,-91.82446864014719,-91.82463605570526,-91.82481917091299,-91.8251383835716,-91.82523432162186,-91.82542563540086,-91.82564931341354,-91.82580874817356,-91.82622424731316,-91.82631965113535,-91.82649550267719,-91.82675054871002,-91.82700596828094,-91.8271573650955,-91.82718142141913,-91.82717610419239,-91.82734785109787,-91.82743231204952,-91.82754865694523,-91.82774042001866,-91.82789982678504,-91.82812279687894,-91.82831408966534,-91.82847368294757,-91.82863321814422,-91.82868103150035,-91.82876125556892,-91.82895250266526,-91.8290481752873,-91.82917603782649,-91.82924777845975,-91.82952710465685,-91.82991037606386,-91.83016555261487,-91.83023709320534,-91.83042115625604,-91.83052455654467,-91.8305487076825,-91.83068442486955,-91.83070818364453,-91.8308680214174,-91.83118695905685,-91.8312507199395,-91.83150632191901,-91.8323681084868,-91.83259146051084,-91.8327186418382,-91.83288611041458,-91.83313388442528,-91.83320593859396,-91.83326114610895,-91.83348497077259,-91.83358902565688,-91.83367678904047,-91.833748124306,-91.83380400728018,-91.83402748680797,-91.83409124648375,-91.83425113115298,-91.8343467719574,-91.83441089422232,-91.8345384152606,-91.83457027118945,-91.8351147236849,-91.83547982069021,-91.83568733853912,-91.83592663770783,-91.83608610979691,-91.83624543620323,-91.83626950850369,-91.83642088572198,-91.83654852448097,-91.83674035909793,-91.83689966049461,-91.83725029690794,-91.83828743056759,-91.83892634192139,-91.83950059234826,-91.83983552033811,-91.83996299490822,-91.84009073017415,-91.84063368708385,-91.84069708469411,-91.84088877053443,-91.84098484925401,-91.84123988805202,-91.84130319613658,-91.8414631973296,-91.84160659718417,-91.84173429049561,-91.8417661435581,-91.84208530988104,-91.84211714390072,-91.84221297613384,-91.84243613753085,-91.8426597820318,-91.8427235427085,-91.8428514040547,-91.84291468220921,-91.84307442319295,-91.84313852126201,-91.84336165720607,-91.84352135426151,-91.84366437109277,-91.84393601294013,-91.84400011076676,-91.84420684377689,-91.84423910630754,-91.8443666299372,-91.84446251531116,-91.84449424657346,-91.84452643971552,-91.84453029126665,-91.84461587998233,-91.8447622165357,-91.84481360829979,-91.84487748924228,-91.84526056652557,-91.84580285548152,-91.84605809659817,-91.84608999629498,-91.84618552438435,-91.8462174049525,-91.84637707776839,-91.84647269340384,-91.84663217474076,-91.8467275990127,-91.84691919826791,-91.84704710793406,-91.84717429150729,-91.84724663339952,-91.847366245373,-91.84755751008461,-91.84762165490925,-91.8479403310906,-91.84809985990876,-91.84816397732989,-91.84825976723836,-91.84835490686976,-91.84845091369456,-91.84886540568188,-91.84912072341493,-91.84921655810781,-91.84944001921781,-91.85001443118114,-91.85058860539904,-91.85087559028094,-91.85100321137618,-91.85109922308011,-91.85125832036286,-91.85132208164104,-91.85154592811708,-91.85167300385326,-91.85205640429032,-91.85231127185722,-91.85240723074173,-91.85247054283043,-91.85256650541825,-91.85263063321722,-91.85272577681815,-91.85283070747626,-91.8533003465824,-91.85400213033795,-91.85422591654674,-91.85435296784571,-91.85444893325577,-91.85451286943115,-91.85483165110932,-91.85492766062022,-91.85518290089757,-91.85524623364982,-91.85550143195634,-91.85556551162229,-91.85607551924014,-91.85613966806689,-91.8563630107831,-91.85642675023493,-91.85649083523879,-91.8565541449677,-91.8566180392438,-91.8567138323958,-91.85680939004558,-91.85693726057673,-91.85703303434099,-91.85719241978468,-91.85735172253204,-91.85754383136118,-91.85765544901177,-91.85771908699995,-91.85776702814449,-91.85778308905718,-91.8577911577171,-91.85776740824238,-91.85773572062078,-91.85770367087113,-91.85767984782775,-91.85764650957513,-91.85824420601105,-91.85850794152518,-91.85851865654352,-91.85867825544435,-91.85877401024119,-91.85896527991333,-91.85902951370939,-91.85912517782985,-91.85930090169229,-91.85942829675194,-91.85964355409541,-91.85992235672718,-91.85997831296694,-91.86006611100261,-91.86016212072717,-91.86027360784483,-91.86043314571108,-91.86091218068958,-91.86113539164627,-91.86129479989431,-91.86132670338472,-91.86148653881881,-91.86161372072182,-91.86190105615707,-91.8619652520925,-91.86209277707499,-91.86212463527067,-91.86244383430811,-91.86266735109808,-91.86279440504144,-91.86285816760676,-91.86308204418221,-91.86317767040626,-91.86330517116434,-91.86333742169712,-91.86343306555565,-91.86356052874471,-91.86381592415172,-91.86383961349749,-91.8640230987302,-91.86424657221876,-91.86434221633718,-91.86436590936661,-91.86442229883842,-91.86448569385173,-91.86458215349153,-91.86477311423216,-91.8649647234992,-91.86509237413537,-91.86518833551018,-91.86536398359601,-91.86561918899991,-91.86574703120455,-91.86577893173046,-91.86587506596696,-91.86600261234457,-91.86609829611777,-91.86638567268766,-91.86644904729283,-91.86673679550438,-91.86680057678957,-91.86689621895756,-91.86699192433917,-91.86724742290608,-91.86727934243437,-91.86740684607167,-91.86743917686958,-91.8678217491895,-91.86794961962644,-91.86801336208401,-91.86803705210346,-91.86831660663989,-91.86850801517387,-91.86860367608017,-91.86866749963201,-91.86898642987548,-91.86933797677753,-91.86936946966379,-91.8695607754041,-91.86959310311202,-91.87045509061142,-91.87064641642205,-91.8707420588739,-91.87087004906236,-91.87115678134244,-91.87179498188017,-91.87185872344959,-91.87201892357341,-91.87205084476149,-91.87246527571163,-91.87252942602674,-91.87268882664817,-91.87277437449033,-91.87292821600629,-91.8730076535667,-91.87307159029703,-91.87319944518308,-91.87342280219131,-91.87361430254924,-91.87399685336692,-91.87406100412147,-91.87418893715362,-91.87421260894413,-91.87430008233976,-91.87432416004219,-91.87441200318014,-91.87447576496973,-91.87449943941529,-91.87465108235151,-91.87477899424772,-91.87480266607237,-91.87489052875954,-91.87501840267254,-91.87517778698547,-91.87523048188562,-91.87571867472673,-91.87584576886266,-91.87606934499574,-91.87635376266803,-91.8770089507336,-91.87761429805802,-91.87790952629804,-91.87802140705379,-91.87820476736552,-91.87851639425467,-91.87859623712536,-91.87869138807417,-91.87884335586699,-91.87891528612757,-91.87923371352599,-91.87925788919429,-91.87932946724739,-91.87948907444414,-91.87953731068576,-91.87956086660775,-91.8798639980722,-91.87989587847059,-91.87999141845312,-91.88003168229891,-91.88015114688297,-91.88019078678393,-91.8802789720952,-91.8803423422041,-91.8804380761533,-91.88054989845578,-91.88059735906653,-91.8807012048357,-91.88072493419619,-91.8808525092191,-91.88089217110497,-91.88091630908181,-91.88102011689351,-91.88104384786979,-91.88113911493116,-91.88117119286716,-91.88123518308031,-91.88127484232808,-91.88129898281056,-91.88139462235935,-91.88164977131649,-91.88178464539395,-91.88180880093383,-91.88197638932259,-91.88200013883478,-91.88219100992721,-91.88225519494881,-91.88372089937207,-91.8839440061813,-91.8839754395804,-91.88413526835888,-91.88416670184323,-91.88438986271521,-91.88474045459526,-91.88499549494168,-91.88502735766168,-91.88515443365922,-91.88566474752305,-91.88582393703588,-91.8858877117103,-91.88595166780527,-91.8860788164032,-91.88627009634916,-91.88639759974805,-91.88655680361789,-91.88684351292525,-91.88728967434892,-91.88747329942484,-91.88757680566187,-91.88764040630753,-91.88767274896217,-91.8877121916876,-91.88776804860923,-91.8878559831554,-91.88792780463528,-91.88799179235849,-91.88802331758394,-91.88806359958853,-91.88811945539615,-91.88827876143715,-91.88850161690732,-91.88854166579965,-91.8885658036957,-91.88862956347909,-91.88872484453459,-91.88876450694998,-91.88882053777027,-91.88886060687915,-91.88897982968341,-91.88903603980845,-91.88917122760499,-91.88923548442051,-91.88929885182307,-91.88962584778801,-91.889841008329,-91.88988881973854,-91.89000051188032,-91.8900401517285,-91.89009600509212,-91.89028740416661,-91.89035119653343,-91.8907654963424,-91.89081394634051,-91.89092521081922,-91.89096527877798,-91.89105279666779,-91.89112476004752,-91.89124420896306,-91.8912842571778,-91.89140390656628,-91.8914515365624,-91.89156320954181,-91.89169894560011,-91.89189348809093,-91.89251955914872,-91.89256718963543,-91.89267926617593,-91.89291053187813,-91.89294205077043,-91.89299009412119,-91.89309400126797,-91.89313364054304,-91.89325309006617,-91.89341258357769,-91.89350851785665,-91.89354796050608,-91.89363611675515,-91.89369990992691,-91.89384345595299,-91.89392262425089,-91.89411422715209,-91.89414574974212,-91.89446496594007,-91.89456104435151,-91.89465633609414,-91.89475241791604,-91.89481581364808,-91.89495155026631,-91.89503908158501,-91.89510284086673,-91.89526233383484,-91.89530197181584,-91.89542141900617,-91.89551749677705,-91.89564466522924,-91.89568471172724,-91.89583603620537,-91.8958995967353,-91.89605928709162,-91.89613080343933,-91.89615495495845,-91.89631460854497,-91.8964501293389,-91.89656953945806,-91.89663329665424,-91.89676821175526,-91.89682425838339,-91.89688801442898,-91.89698370036436,-91.89702333879677,-91.89704747035317,-91.89708753720433,-91.89711126188163,-91.89717502073152,-91.89751282799149,-91.89780466123432,-91.89789258480845,-91.89796369475988,-91.89798782521072,-91.89805158381589,-91.89808347684347,-91.89817913169216,-91.89830628558997,-91.89840232752731,-91.89852949758938,-91.89865684550355,-91.89878465339612,-91.89888030372988,-91.89900789890247,-91.89907941533268,-91.89910354557762,-91.89935865359486,-91.89948616566909,-91.89961332030271,-91.89967753297259,-91.89986845366276,-91.89990852100348,-91.89993265534811,-91.90006016823017,-91.90041830973949,-91.90053812025698,-91.9005781704826,-91.90082498330706,-91.90101657947353,-91.90111957719689,-91.90120753392111,-91.90127109269301,-91.90136678840942,-91.90143057471728,-91.90149458957075,-91.90156614170272,-91.90165366774539,-91.90174954492942,-91.90187732930031,-91.90191698590007,-91.90203640425746,-91.90214024089333,-91.90225964339932,-91.90232319911134,-91.902482881265,-91.90255441825924,-91.90257854817516,-91.90268197508716,-91.90276987434915,-91.90283363000299,-91.90308874486635,-91.9031843997743,-91.90327988084522,-91.90340763451884,-91.9035743779979,-91.90359850701446,-91.90369414029165,-91.90372605214174,-91.9037898076527,-91.90394883181622,-91.90420427749284,-91.90449108852583,-91.90458657217387,-91.9047860360691,-91.90480935096204,-91.90491318622107,-91.90493731557353,-91.90507299456642,-91.90525618435372,-91.90531974191707,-91.90538354146396,-91.90567035384957,-91.90583791006189,-91.90586122378585,-91.90669006038469,-91.90684920317779,-91.90730347935254,-91.9073276081005,-91.90743061349505,-91.9074547414787,-91.90749478817747,-91.90751851108146,-91.90764606456413,-91.90770983954057,-91.90783739721672,-91.90829144139229,-91.90831516051077,-91.90838710191869,-91.90841123485497,-91.90857022532398,-91.90876197407137,-91.9088968368589,-91.90892096436853,-91.90898473903033,-91.90914377740076,-91.90918382130998,-91.90930325001557,-91.90933512746466,-91.90962242157339,-91.90966212352227,-91.90971812906731,-91.90994141427221,-91.91001315884483,-91.91003688185198,-91.91022821963266,-91.91051470560998,-91.91054659489275,-91.91077792372725,-91.91080205332865,-91.91108858357903,-91.91131180786751,-91.91144751666425,-91.91147082983932,-91.91151087612354,-91.91159878979818,-91.91167030377378,-91.91182160823107,-91.91195691981078,-91.91201295706468,-91.91207671034211,-91.91220430179351,-91.91224435142077,-91.91233186514864,-91.91257105017823,-91.91268230815605,-91.91276243078653,-91.91284177924979,-91.91288958310143,-91.91300124646449,-91.91306500047089,-91.91322445204798,-91.91332011413209,-91.91341581816059,-91.91348733063862,-91.9136705092905,-91.91391894420774,-91.9142125539162,-91.91424445918129,-91.91431638181491,-91.91434010180689,-91.9144435228193,-91.91453143613434,-91.91460335605659,-91.9146585770288,-91.91489034087208,-91.914945561691,-91.91508129607742,-91.91513690549345,-91.91524073196632,-91.91532824615904,-91.91536788421448,-91.91539203145315,-91.91564712784081,-91.91571088281016,-91.91583844039678,-91.91593409941747,-91.91596578822444,-91.91599766479931,-91.91622092432596,-91.91626855294736,-91.91644421569657,-91.91652372723341,-91.91661145079799,-91.9166674533179,-91.91669896454145,-91.91676295607215,-91.91680259367331,-91.91685862770501,-91.91714522842895,-91.91720898125216,-91.9173684465465,-91.91740808051419,-91.91752790985556,-91.91756754467164,-91.91766345494973,-91.91772700766174,-91.9178147280855,-91.91787892059003,-91.91791083618276,-91.91803842301779,-91.91817353023802,-91.91826144729481,-91.91832502062633,-91.91845280613242,-91.91851653856394,-91.91867561046305,-91.91871565539867,-91.91883484317266,-91.91891475205058,-91.91896259678481,-91.91919381039513,-91.91975945155917,-91.91982300350564,-91.91998265938169,-91.92002270687159,-91.92017399460609,-91.92021363420257,-91.92048978736148,-91.92052435030217,-91.92062000884995,-91.92068400882725,-91.92077170600579,-91.92138530230032,-91.92141762516866,-91.92155297257385,-91.92173634788017,-91.92183184270492,-91.92190356319469,-91.92192770666378,-91.92211860336947,-91.92221422925813,-91.9224055576596,-91.92250938415906,-91.92253269218799,-91.92272439228046,-91.92282001795688,-91.92305097324537,-91.92307510090542,-91.92317072473129,-91.92323410606693,-91.92336205365947,-91.92343358812057,-91.92345730085032,-91.92349693993877,-91.92358484414027,-91.92362488727493,-91.92364819323905,-91.92371194324828,-91.92393514747911,-91.9239751916236,-91.92409460253631,-91.92419043939866,-91.92458884268852,-91.92479616342048,-91.92508296381656,-91.92514674066454,-91.92517865653139,-91.92546569170007,-91.9255055537741,-91.925624962515,-91.92565681765824,-91.92578439026252,-91.9258882121208,-91.9260075913529,-91.92610321662458,-91.92613512056161,-91.92623074751147,-91.92626265141611,-91.9265811993991,-91.92662103509461,-91.92664474864512,-91.92686828337935,-91.92699540278936,-91.9272825593775,-91.92740951929919,-91.9274814349196,-91.92750557947282,-91.92769646375461,-91.92793860121513,-91.92811907854797,-91.92814281614477,-91.92833410074377,-91.92839785045567,-91.92842973554509,-91.92875585227331,-91.92877997378071,-91.92882001717575,-91.92884373368342,-91.92903504683663,-91.92913030581904,-91.92916218062136,-91.92941773425989,-91.92945777733044,-91.92960905198173,-91.92980808758242,-91.92983180290467,-91.92999161321939,-91.93002308745194,-91.93011871070954,-91.93027815554895,-91.93040567613546,-91.93056469106753,-91.93060475325863,-91.93069246265347,-91.93073232275626,-91.93081983166185,-91.9308598737242,-91.93088360615091,-91.93120215187642,-91.93126633922704,-91.93145746260531,-91.93161663577094,-91.93171273035504,-91.93183993204423,-91.93190350475939,-91.93199912815747,-91.93219074341094,-91.93228599939361,-91.93254101517287,-91.93261275953913,-91.93267655104951,-91.93282800454038,-91.93292362956954,-91.93298699646758,-91.93311494224133,-91.93315459725446,-91.93324209353901,-91.93336983378975,-91.93359301545692,-91.93368827003427,-91.93373629861395,-91.93384791958995,-91.93389573839495,-91.9340073564784,-91.93404701132901,-91.93410260694453,-91.93423054515108,-91.93445366473985,-91.93474042055047,-91.934867756004,-91.93493130540399,-91.93509093984149,-91.93522621882651,-91.93524992990389,-91.935385621733,-91.93547308887166,-91.93554461763884,-91.9355687399291,-91.93560877957475,-91.93563249506805,-91.93576002354737,-91.93588753997847,-91.93611028459972,-91.93621407502658,-91.93623819439092,-91.93633384437051,-91.93642946385435,-91.93650920683611,-91.93655679257481,-91.93659642546193,-91.93684369234177,-91.93693914412522,-91.9371063272165,-91.93722569562239,-91.93728944360588,-91.93738530053598,-91.93757701725562,-91.93760869663011,-91.93776791653215,-91.93783167547836,-91.93792711606852,-91.93805465103245,-91.93818238133392,-91.93846875914328,-91.9386363262693,-91.93866044949345,-91.93875568859164,-91.93885130631672,-91.93891503022994,-91.93907439923582,-91.93910629748967,-91.93937235324688,-91.93946503088939,-91.93975251268942,-91.93998361535084,-91.94041454059456,-91.94077376552298,-91.94100446502517,-91.94153101696385,-91.94177051727831,-91.94195421161042,-91.94201500683765,-91.94216517395874,-91.94235637940014,-91.94267511711294,-91.94270698541504,-91.94283447935273,-91.94289819936488,-91.9429938223028,-91.94302531286375,-91.94312912679015,-91.94316858387006,-91.94320995058435,-91.94334240184841,-91.94351340110305,-91.94355121355404,-91.9436145156596,-91.94376633159611,-91.94379001180788,-91.94382178784049,-91.94387774538477,-91.94415663311429,-91.94420404769502,-91.94428398336299,-91.94437962957191,-91.94444337092884,-91.94457086559113,-91.94460271581239,-91.94485726228545,-91.94520827871131,-91.94523973985005,-91.94536723629363,-91.94539910338212,-91.94568594057486,-91.94571780862232,-91.94587717722283,-91.94600464500675,-91.94619587986162,-91.94622734391217,-91.94648273954357,-91.94673729145137,-91.94693629069768,-91.94696002375382,-91.94700006464802,-91.94702418244199,-91.94715129799582,-91.94727896482279,-91.94734267955411,-91.94747032369591,-91.94772451597782,-91.94778867715429,-91.9479480451138,-91.94807515783647,-91.94810743584625,-91.9481707519049,-91.94829864689464,-91.94838608161358,-91.94847350285279,-91.94848962754378,-91.94847364255196,-91.9484815487196,-91.94849703745898,-91.94861654089921,-91.94869623309687,-91.94872852232319,-91.94881608709811,-91.94890334332307,-91.94896708679454,-91.94906270727986,-91.94928617659309,-91.94950888405276,-91.94963637050088,-91.94982720857972,-91.94989092936871,-91.95001844663673,-91.95005029474201,-91.9503052863648,-91.95033715369455,-91.95046465084862,-91.95049649889827,-91.95056026603193,-91.95068732595483,-91.9508471056098,-91.95097416580053,-91.95116540443881,-91.95119725453449,-91.95132474912886,-91.95151637176753,-91.95157930161342,-91.9516115803678,-91.95180281779561,-91.95189840960693,-91.95196152613147,-91.95205732069208,-91.95212127109083,-91.95221643280127,-91.95243928962535,-91.95256721533408,-91.95263093471441,-91.95269427678993,-91.9528540277652,-91.95304486244227,-91.95307714178132,-91.95342734671782,-91.9536504410207,-91.95368190081668,-91.95377752292545,-91.95390539898882,-91.95403266529821,-91.95415992642739,-91.95419180040241,-91.95444671718424,-91.95457420869607,-91.95463795349809,-91.95482873935265,-91.95508411152808,-91.95511557622166,-91.95524348236628,-91.95533866788615,-91.95549803974693,-91.95552988822867,-91.9556255108365,-91.95584819067311,-91.95591193925713,-91.95610354295361,-91.95619916581265,-91.95642184565723,-91.95651746847713,-91.95677200635218,-91.95686762926272,-91.95702697385336,-91.95740946180092,-91.95804673947906,-91.95823778142594,-91.95849234158281,-91.95852462237274,-91.95861983947812,-91.95868399461791,-91.95877936839277,-91.95887457832252,-91.95900225343925,-91.95906620558992,-91.95919345221715,-91.95925699494394,-91.95944819361677,-91.95963957128799,-91.9596714189953,-91.95970349686144,-91.95976679110895,-91.95986279910554,-91.95989424185322,-91.9599898601756,-91.96002128287533,-91.96024435715931,-91.96043555393375,-91.96069048011786,-91.96075420594319,-91.96097727924203,-91.96120033042482,-91.96155070169122,-91.96164589367288,-91.96170984690464,-91.961805427279,-91.96186876614009,-91.96202829589311,-91.96206014953728,-91.96209181945683,-91.96215595424673,-91.96225112660291,-91.96228299626002,-91.96250607726734,-91.96257018954599,-91.96307987347144,-91.96320675664617,-91.96342963571603,-91.96368479079874,-91.96374831856797,-91.96390807948822,-91.96397182896888,-91.96409867261542,-91.96416262692425,-91.96448090138004,-91.96457671152876,-91.96476791745727,-91.96483164855853,-91.96492704710509,-91.96511845829211,-91.9652138376556,-91.96524571306647,-91.96543673759128,-91.96552654187782,-91.96578685247188,-91.9658506019465,-91.96591472061834,-91.9660099357107,-91.96604177108165,-91.96636044079413,-91.96731576130283,-91.96760258158041,-91.96769796255508,-91.96776171672188,-91.96782544943198,-91.96804894610979,-91.968399274555,-91.96855820508375,-91.96878107562107,-91.96897249676721,-91.96906787946023,-91.96913163096816,-91.96919495548535,-91.96929076982269,-91.96948196769812,-91.96976858908047,-91.96983230337274,-91.97088356267481,-91.97094687031853,-91.97148843659407,-91.97174356015125,-91.97190249566798,-91.97212578538851,-91.97225323388768,-91.97231717163403,-91.97247609488599,-91.97253984767339,-91.97292228027972,-91.97298601554199,-91.97308122097789,-91.97311348709562,-91.97317724558235,-91.97320869187142,-91.97336804351691,-91.97343177816231,-91.97349551393873,-91.97355886317389,-91.97359112861064,-91.97387795117287,-91.97394129887161,-91.97397315960347,-91.97432371981554,-91.97448305469644,-91.97451513612423,-91.97454658411738,-91.97461054749598,-91.97464238446781,-91.97496088923256,-91.97512042776728,-91.97524727386934,-91.97531101024889,-91.97543867389344,-91.97569342353678,-91.97613937182379,-91.97617145462696,-91.97645764445599,-91.97655366917577,-91.97687194406946,-91.97691158157839,-91.97694364939206,-91.97706293919218,-91.97725414365681,-91.97747741265876,-91.97750908741615,-91.97754054096364,-91.97798715186272,-91.97805068828895,-91.97811443100599,-91.97824191080781,-91.97846482156258,-91.97881500045102,-91.97897415477291,-91.97942033503291,-91.97948448373585,-91.97951593851491,-91.97957990339599,-91.97967509675253,-91.97980277054808,-91.98002545317955,-91.98015314850375,-91.98028859788377,-91.98040787942814,-91.98047121465778,-91.98072656918667,-91.98086222826933,-91.98094944208704,-91.98101318818254,-91.98126774203246,-91.98193681013873,-91.98212783253229,-91.98244656166592,-91.98301982173439,-91.9835295323935,-91.98384804987505,-91.98388013544971,-91.98403929459899,-91.98407136152004,-91.98423092788333,-91.98426219379616,-91.98442176253891,-91.98483591213571,-91.98499508066304,-91.98544111417458,-91.98547298432491,-91.98566422523439,-91.98582360863303,-91.98623756894868,-91.98639673063134,-91.9864607031183,-91.98668379993123,-91.98687504849781,-91.98690693856703,-91.98716151076876,-91.9878304550231,-91.98786254212068,-91.987958166258,-91.98821294929398,-91.98824481510702,-91.98849982419085,-91.98885003237491,-91.98888211985792,-91.98891399064938,-91.98897732932899,-91.98939947215607,-91.98955863230373,-91.98963851955858,-91.98967875919813,-91.98970266812223,-91.98978989864975,-91.98991758547585,-91.9900608013169,-91.99041098428116,-91.99076142349199,-91.99088892129008,-91.99098476201701,-91.9910801615854,-91.99120746734478,-91.99131925248399,-91.99136686878887,-91.99140692948669,-91.99153399901792,-91.99168519413671,-91.99200414647542,-91.9923229156656,-91.99238646098362,-91.99284031346676,-91.99286442380132,-91.99296005100734,-91.99308735212583,-91.99315131544003,-91.99327839469441,-91.99395539056582,-91.99423430438306,-91.99452078739988,-91.99477581374825,-91.99519001823042,-91.9952856569396,-91.99531774723781,-91.99541318043367,-91.99563611561335,-91.99570027308924,-91.99576385062018,-91.9957959128095,-91.99593099878497,-91.99598698714246,-91.99609038748417,-91.99620950790072,-91.9965287013829,-91.99672754735082,-91.99675146143343,-91.99730116109372,-91.99793015176364,-91.99859920565349,-91.99876656743685,-91.99908578705626,-91.99912521806934,-91.99914933279767,-91.99927645057045,-91.99937230544666,-91.9995312820469,-91.99965880584004,-91.99975443815497,-91.99997757790619,-92.00025036841393,-92.00089536088608,-92.00101430941281,-92.00125220115773,-92.00147456466084,-92.00191135184825,-92.00210142683713,-92.00238798912687,-92.00261057563969,-92.00286506085111,-92.00308764299207,-92.00320660346131,-92.00357878774976,-92.00380139034226,-92.00383348485549,-92.00389663174793,-92.00392872611654,-92.00415888215764,-92.00424615438239,-92.0044452484443,-92.00460366072332,-92.00464311607469,-92.00478618948122,-92.00491291975656,-92.00498445641092,-92.00519887669867,-92.00532644039814,-92.00573955249824,-92.00577164785771,-92.00602571294726,-92.00608928356365,-92.00612098715465,-92.0062796051061,-92.00631167979287,-92.00637546876689,-92.00640756440065,-92.00653409006908,-92.00669293146761,-92.00701077640612,-92.00720150844433,-92.00736032828439,-92.00739222323556,-92.00770968743996,-92.00785297962892,-92.00787649313781,-92.00812259660489,-92.00837670046801,-92.00843249872797,-92.0085755942345,-92.00868598534454,-92.00871745995566,-92.00884377698445,-92.00924180758679,-92.00965125951556,-92.01009464326454,-92.0104485853501,-92.01048005441393,-92.01057573606106,-92.01063952373308,-92.01099073330312,-92.01114956126662,-92.01118166632324,-92.01127672257785,-92.01130860801068,-92.01156332859715,-92.01191392155503,-92.01216824398637,-92.01223202628394,-92.01226412352747,-92.01232768698617,-92.01235937468995,-92.01239085364838,-92.01245464958235,-92.01248653788434,-92.0126774743611,-92.01274125026579,-92.01290031164014,-92.01293260565997,-92.01311535845304,-92.01318629895896,-92.01340913885998,-92.01342468467284,-92.01352036700492,-92.01352812892132,-92.01356001299641,-92.01359110271457,-92.01365487240024,-92.01374157399557,-92.01474464029141,-92.0162594317661,-92.02067507921795,-92.0207116047242,-92.03457431587927,-92.03768153270342,-92.04824736266876,-92.06879287328617,-92.09004836992813],"lat":[46.74953546231878,46.74907359770532,46.73986448751209,46.73500673744616,46.72838784233379,46.72543739163408,46.71627269733195,46.71539991628637,46.71601736379391,46.72017944018525,46.71986226589706,46.71747661369913,46.71691480698888,46.71760254938574,46.71786018025526,46.71782511845558,46.71658780335812,46.71163586462988,46.70778485482887,46.70549368909413,46.70481283681824,46.70400837487571,46.70267614615537,46.70126805076055,46.69940398163525,46.69815306185956,46.69735292094317,46.69636776181985,46.69569840534285,46.6957824257055,46.69588107533986,46.69542315333985,46.69220214230391,46.68993056012564,46.68806302241543,46.68665928356383,46.68453274321682,46.68255316652163,46.68032591169962,46.67893872493388,46.67830395077033,46.67697382397557,46.67493000288466,46.67182347610953,46.66692139390314,46.66513026129631,46.66315301460565,46.65786474529725,46.65675793075665,46.65516607607643,46.65194806652512,46.65009269868542,46.64985597550551,46.65273185095821,46.65300114958047,46.65173082826067,46.65010952139784,46.64936078835176,46.6532780025881,46.6560136144064,46.65836267761054,46.65871844932007,46.65875737672572,46.65782424989833,46.6536658295611,46.65148857445851,46.65059564378974,46.65059347605543,46.65212242558248,46.65496415195692,46.65699907927447,46.6579997542664,46.65879043785486,46.65859889849213,46.65984355784989,46.66058654099101,46.66135593023697,46.66298444973231,46.66411568410786,46.66472454744147,46.66564677115046,46.66649187697445,46.66722591686411,46.66830452054696,46.66864297177127,46.66857458433545,46.66810275294996,46.66755596306731,46.66657064912327,46.66580756293508,46.66449090453244,46.63071061887569,46.56990289353892,46.53480672157828,46.5216407295523,46.47837409872105,46.43715799517534,46.41774863235662,46.39810661782365,46.37294877373437,46.36764745559503,46.32074178017727,46.31279751742098,46.27530396094583,46.26297063038193,46.25427964107465,46.19252304091998,46.15765427658016,46.15761200102457,46.1574390328371,46.15738276578767,46.15735064328121,46.15727363525524,46.15747537774774,46.15744085684761,46.15742849024443,46.15724053696938,46.15704450780712,46.15710575500911,46.15702975383336,46.15743597524089,46.15746847394678,46.15751138167401,46.15759937135686,46.15763702473076,46.1576773813675,46.15759218069168,46.15757473348125,46.15734446360401,46.15741550094819,46.15742040775904,46.15754845123509,46.15761571443026,46.15775223770663,46.15784977537283,46.15755301311962,46.15780172822679,46.15786970244956,46.15785853568968,46.15790831461691,46.1577346656061,46.15752941290307,46.15757261681263,46.15759740111496,46.15760537847746,46.15744247412053,46.15747509281353,46.15764524375459,46.15789672761343,46.15784895105252,46.1578128935971,46.15777347584895,46.15693655798344,46.17148336865342,46.18579871953403,46.21505686557861,46.22948329916117,46.24396351552635,46.25890337792088,46.26903976846439,46.27332743079202,46.28306026316772,46.28775229041671,46.30213274368207,46.31669539177131,46.33118736842814,46.34554560369467,46.35251355618662,46.3577172169846,46.35998428774423,46.36128526972634,46.37443331485638,46.38853200793818,46.39181674170979,46.40298372921396,46.41751699030044,46.43188650342594,46.44655967345891,46.46098381574789,46.47526565682645,46.48955267984708,46.50240792382306,46.50239361218418,46.51703434252784,46.53154061919374,46.54585262042339,46.56018721842158,46.57462102996365,46.58184098136107,46.58935655219312,46.60369042986512,46.61827165466409,46.63273599764384,46.63975465464586,46.64710792098358,46.66142538104024,46.67577469971679,46.69016158484423,46.7194283230625,46.7338012841027,46.74812402414273,46.75586538521918,46.75607974777144,46.75616760378519,46.75616768440653,46.75623321360874,46.75622225133774,46.75624422041256,46.7562442016642,46.75614561385794,46.75615614889948,46.75622220223619,46.75622236499857,46.75628803057593,46.75627728102089,46.75621140054699,46.75621132388901,46.75622220966403,46.75634305718363,46.75635383515998,46.75638666376719,46.75660063305268,46.75668301305169,46.75681470383764,46.75697913079639,46.75707237398319,46.75729760115749,46.75734159723876,46.75734130029362,46.75720914162818,46.75720938081285,46.75731177035863,46.7573133140943,46.75746128858417,46.75748346512945,46.75747249146809,46.75742860820375,46.75732953373294,46.75732977922496,46.75714248606852,46.75676901132522,46.75655453664282,46.75635188397357,46.75617034297458,46.75608787589351,46.75604397660272,46.75597822518993,46.75582970280824,46.75572505297878,46.75559312855229,46.755428708896,46.75532985422007,46.75528562434774,46.75524706336202,46.7551100276655,46.75502180776126,46.75487846751442,46.75479059783245,46.7547356720357,46.75472466733206,46.75468053960919,46.75460354713122,46.7545923091816,46.75461407573233,46.75461379482412,46.75460313647238,46.7545699773701,46.75449308530604,46.7543995370684,46.75426215366132,46.75417406751753,46.75394888223279,46.75379491150313,46.75370710601862,46.75352011219033,46.75338833726276,46.75317947931475,46.7529101922458,46.75279451452367,46.75264047143391,46.75234398863789,46.752184015329,46.75209082443305,46.75200817285881,46.75179393295439,46.75123907093498,46.75104664648698,46.7509641035297,46.75079382228903,46.75061803810106,46.75030978460989,46.74994801971609,46.74992536489652,46.74965623396147,46.74949093391768,46.74938094123947,46.74921598043588,46.7491443381517,46.74901229763962,46.74859987139089,46.74844611797378,46.74830877151756,46.74821507759202,46.74799540090064,46.74782464262299,46.74772599501546,46.74765434546924,46.74765456898547,46.74774231576308,46.74775840807879,46.74773107170763,46.74767289271919,46.74753990256121,46.74746558340609,46.74742847944095,46.74726368562578,46.74718122372494,46.74713769586161,46.74712599844151,46.74709348795734,46.74702171903575,46.74679674053228,46.74664262696137,46.746423262595,46.7463132444129,46.74624203442352,46.74611236611121,46.74607689889599,46.74584594417812,46.74570307516066,46.74545603574608,46.74535670105833,46.74523576190861,46.74518964627726,46.74514778283779,46.74487845696853,46.74484009736614,46.74475187985064,46.74460899594206,46.74435552379424,46.74426585688622,46.74422303757603,46.74406435308662,46.7439875055564,46.74387196336249,46.7437340187145,46.74350336897462,46.74328890493111,46.74315129562614,46.74299220506577,46.74286009200286,46.74280460216594,46.74273843739996,46.74254626666809,46.74227002146283,46.74205256795965,46.74190908659509,46.74166177022846,46.74153505794501,46.74136942965475,46.74113290966196,46.74093980030562,46.74073612288052,46.74065869694052,46.74043857412502,46.74009680115294,46.73992077353602,46.73962849232006,46.73935303213771,46.73916518668622,46.73906620714364,46.73891188763974,46.73885671138634,46.7387186025563,46.7383605682144,46.73804648701512,46.73795283773367,46.73784263026473,46.73772134567583,46.7375944748259,46.73747292780227,46.73739557973262,46.73733546994716,46.73728443476976,46.73715948044384,46.73706444669756,46.7369991025321,46.73698219211273,46.73692150891328,46.73685036795039,46.73667941616296,46.73648635915578,46.73635984713279,46.73631009450821,46.73615018180793,46.73602330619616,46.73590208176536,46.73565404313025,46.73542238052091,46.73513022228383,46.73494293652255,46.73478357600525,46.73469003280423,46.73454083951713,46.734491498998,46.73432988862292,46.73419869294882,46.73405520597714,46.73397273555989,46.73375752884095,46.73353687259521,46.73349268782259,46.73348143132885,46.73345922091961,46.73325556292883,46.73316715012613,46.73308419387259,46.73294566392304,46.73280230726341,46.73270829509941,46.73258137964021,46.73243263506538,46.7320020737781,46.73178496420049,46.73174728635978,46.731621302809,46.73151684032979,46.7313680684805,46.73130689388267,46.73122390839738,46.73108600568058,46.73104179932966,46.73100356347597,46.73094785691156,46.73078255148622,46.73060595645941,46.73036317855925,46.73030771770055,46.729965949908,46.72970627149429,46.72959537392983,46.72949588190502,46.72934063448265,46.72928002018381,46.72913633908642,46.72907055065181,46.72900991727409,46.72898629461321,46.72889906142491,46.72879995427861,46.72866171486256,46.72848005559986,46.72829805994665,46.72824817889445,46.72808819430286,46.72803825137185,46.72800500281937,46.72791614510085,46.72764030301958,46.72752447764405,46.72745210096444,46.72717128736465,46.72698948757117,46.72681846006703,46.72672443807127,46.72672406720056,46.72661317714254,46.72657979900224,46.72648061907672,46.72632527639742,46.72630255575796,46.72599310243452,46.72582686241196,46.72581053483464,46.7256778662078,46.72560041200881,46.72555595835725,46.72549993757247,46.72545548159317,46.72538890286843,46.72527267842774,46.72516164804286,46.72496295461232,46.72480807956131,46.72474199070072,46.72459257725134,46.72453694276482,46.72430126155566,46.72409523461217,46.72404562958764,46.72396283772083,46.72390760011552,46.72373654000631,46.72362562669797,46.72351259323261,46.72344918558127,46.72330475516441,46.7232276704182,46.72318315034929,46.7230949697617,46.7229846366933,46.7229184132409,46.72281820164568,46.72279608200896,46.72264142608437,46.72257448405817,46.72241476319366,46.7221937037505,46.72211648162473,46.72195620568318,46.72186219550861,46.72176269349563,46.72158069575908,46.7215691098619,46.7215029272428,46.72141467587574,46.72133189908766,46.721336690587,46.7212756846397,46.7212042680821,46.72079635801471,46.72070227382792,46.72058589797232,46.72050852089921,46.72043683712115,46.7202718106983,46.72019379350525,46.72012755242686,46.71992894208772,46.71985659509208,46.71978332640381,46.71966360973599,46.71958103411649,46.71950884922165,46.71941512809985,46.71931555245185,46.71918814197343,46.71906077620243,46.71889463063476,46.71873916752585,46.71863407946749,46.71862288048062,46.71857823964697,46.71837900402999,46.71837839789378,46.7182953040132,46.71814111385629,46.71810769117968,46.71809084311246,46.71804132324445,46.71788255146712,46.71783645717335,46.71776432342796,46.7176211694438,46.71735059729762,46.71722359776756,46.71716757885006,46.71709041698249,46.71691961298883,46.7166981263838,46.71664855778795,46.7165652644028,46.71650440619585,46.71652661910161,46.71650999427579,46.71645982119276,46.71630536690164,46.71624989461002,46.71617216723616,46.7161280575971,46.71596107507586,46.71556287245463,46.71539209160816,46.71531430563876,46.7152871120587,46.71524217758238,46.71519724656655,46.71520396717647,46.71516069585567,46.71512099656017,46.71507094142479,46.71459873274926,46.71449540944697,46.714362305221,46.71426322713183,46.71406698206232,46.71394761801918,46.7137572591886,46.71314029903245,46.71313207497482,46.71314234822822,46.71319321227018,46.7132451263699,46.71329089807814,46.71343337428849,46.71346883925357,46.71349298047125,46.71350607533534,46.71344094221682,46.71326562582443,46.71321616640392,46.71316745315047,46.71315037664807,46.71313867499541,46.71309817952613,46.71308577106203,46.71306786200059,46.713037832654,46.7129254430231,46.712863129983,46.71282746098577,46.71279271760834,46.71277906640978,46.71277368954456,46.71278956911235,46.71287309834067,46.71282951602111,46.71275322823444,46.71268541071864,46.71264590660275,46.71264272067687,46.71265615034048,46.71264626983625,46.71261017453425,46.71255082492997,46.71244490616888,46.71240327026381,46.71235810381076,46.71225861271328,46.71221884718,46.71220536964157,46.71219530200417,46.71215404403292,46.71206326698536,46.71173067480376,46.71151980300761,46.71149133304447,46.71146560670638,46.7114458189845,46.71143443443124,46.71124668312819,46.71126287597156,46.71124590288874,46.71117973726095,46.71087004998761,46.71070437425033,46.71062670165404,46.71059273809173,46.71049319581603,46.71045401791031,46.71022710558901,46.71007187965925,46.71002789353394,46.70998301604006,46.70975045421638,46.70963907886603,46.70952811833416,46.70942856104696,46.70934852483715,46.70930514334278,46.70926113783962,46.70923336149807,46.7091405762076,46.70902517998711,46.70888245584371,46.708822000895,46.70862434710637,46.70861348716291,46.70859680860385,46.70853111864202,46.70850928191963,46.70848704533252,46.70847658136871,46.70844361403979,46.70844376294528,46.70842197273228,46.70842192347425,46.70839975957689,46.70839991016251,46.70835647922415,46.70835650464451,46.70831254965245,46.70831257610769,46.7082691970144,46.70826921891431,46.70825816038701,46.70825823607014,46.70822526896617,46.70822541417934,46.70818134560452,46.70817087606371,46.70814907757692,46.7081381252766,46.70811632604897,46.70809412784884,46.70809427577672,46.70806130044952,46.70805071315802,46.70800668761236,46.70799602600842,46.70797379365175,46.70795776890115,46.7079192511759,46.70791920102556,46.70789190623543,46.70787549973054,46.70765057376099,46.7076287141677,46.70755208751748,46.70752965409518,46.70751911825365,46.70748614262158,46.70748091236932,46.70743101753346,46.70729921272748,46.70729378327522,46.70727203519185,46.70721158688792,46.70715104490311,46.70701943691358,46.70698128009713,46.70682712442496,46.70671732848145,46.70666241869116,46.7065194087463,46.70636552400013,46.70629949171487,46.70615091524079,46.70613454518493,46.70600827494818,46.70597535798029,46.70594742479216,46.7058651464511,46.70556317367122,46.70554688564325,46.70550285675029,46.70550280825964,46.70545891777294,46.70545906131408,46.70549786465713,46.70543781670317,46.70540995703625,46.70540496979779,46.70543237296431,46.70542139302621,46.70537758175509,46.70527814595148,46.70523984872771,46.70520132484969,46.70522354385534,46.70519119802026,46.70513047339476,46.70510317453007,46.70508632352146,46.70504828342712,46.70498786370712,46.70493802287429,46.70489435701412,46.70486158256485,46.70480123296484,46.70477386038479,46.7046746571307,46.70466379307464,46.70463606145888,46.70455961704361,46.7045324047395,46.70449924048074,46.70448837923743,46.70444958461802,46.70445009182971,46.70442816883445,46.70434047935276,46.70430745158514,46.70428002883033,46.7041096670508,46.70403840465652,46.70397211646431,46.7039613806845,46.70387361638804,46.70378027088022,46.70373098368958,46.70359886532788,46.70340675350485,46.7031428715775,46.70303654909021,46.70294010486467,46.7029176687909,46.70286871458239,46.70286865765564,46.70282462856535,46.70281913893549,46.70278616140874,46.70278123591567,46.70269910986886,46.70269350318407,46.70264953602612,46.70263907046111,46.70262801041462,46.7026279612433,46.70260579812216,46.70260592717984,46.70256247421467,46.70256248860656,46.70255143349296,46.70252983559971,46.70250833085558,46.70249727237039,46.70248610497467,46.70247505607453,46.7024751963574,46.70243179989231,46.70243181240103,46.70238784929869,46.70238236074604,46.70234994175545,46.70234413713462,46.70230022517916,46.70230017228032,46.70226225336616,46.7022564422778,46.70218629213633,46.70214101535003,46.70212483501577,46.70212478110391,46.70208674042142,46.70203165741057,46.70199904860998,46.70199336476978,46.70205866964971,46.70196080936492,46.70197763140986,46.70195526833493,46.70195021739364,46.70191180077531,46.70190619608206,46.70186277790476,46.70186279346378,46.70185173441675,46.70185168203945,46.70182970586403,46.70178584228423,46.70174178644984,46.70168718203366,46.70169848363282,46.70168730992292,46.7016876913227,46.70159461069065,46.70149021592971,46.70141326196913,46.70130904188476,46.70123518477394,46.70122059798265,46.70120971625693,46.70118746805454,46.70109947223144,46.70099517476829,46.70094543867997,46.70093470968691,46.70095646849104,46.70106702914085,46.70112222094563,46.70103048079613,46.70100715355418,46.70099630482357,46.70096862818806,46.70084247299852,46.70082042081159,46.70078162742773,46.70073781311702,46.7006717651964,46.7006279596128,46.7005673399464,46.70053959655677,46.70050161033971,46.7005068259709,46.70038079170871,46.70029844683359,46.70023227872991,46.70011188621027,46.70010045547141,46.70007327342655,46.70004560007847,46.69996886815047,46.69989726186361,46.69988652205107,46.69980935411795,46.69947561854845,46.69927749703823,46.69922240121299,46.69910181711206,46.69909657175996,46.69901403312758,46.69900304480568,46.69898117290096,46.69895943755947,46.6989375568238,46.69892070161471,46.69889339451542,46.69887164957275,46.69881685625538,46.69879442933063,46.69878368215753,46.69870695502146,46.6986629096941,46.6986517875537,46.69861936128821,46.69860256231173,46.69856969480192,46.69856420042026,46.69853120960179,46.69851497396601,46.69848211016001,46.69848205272461,46.69843800197404,46.69843307420458,46.69839995831856,46.69838902805945,46.69830144344194,46.69818053387738,46.69809274671754,46.6980545335743,46.69805517766278,46.69804425993215,46.69801695603303,46.69795141785112,46.69787467729354,46.69766553584755,46.69756712646026,46.69756187762456,46.69751794777966,46.69751245937748,46.69743535668712,46.69741923141288,46.69739180319766,46.69738067535697,46.69734769041145,46.69732600817562,46.69729864156616,46.69728771395541,46.69725479215649,46.69725485558131,46.69721143041184,46.69720593303732,46.6971728167549,46.69716731476051,46.69712926915352,46.69711827112591,46.6970852078792,46.69707421071867,46.69705752777972,46.69699179199329,46.69694279763434,46.69692611220141,46.6969041890946,46.69674508280729,46.69668464832763,46.69659095445179,46.69654630347362,46.6965526605309,46.69654192340131,46.69643154921549,46.69634956310294,46.69632737759274,46.69626170217935,46.69623951469188,46.69617914530392,46.69609696948745,46.69599228323386,46.69586623940212,46.69572337862432,46.6957123790953,46.69569050953223,46.69566832410284,46.69558639314984,46.6955808339838,46.69555839803255,46.69550340251706,46.6954925304802,46.69545428338049,46.69540522056671,46.69528942308931,46.69518523643342,46.69516911559335,46.69510280769285,46.69506480666244,46.69504855836743,46.69501512248399,46.69501513103248,46.69497168806472,46.69497163150002,46.69492757503289,46.69492207839826,46.69488407898039,46.69488401591169,46.69483995325201,46.69483988648368,46.69480145409317,46.69479595960639,46.69475239149435,46.69474176743029,46.69470889602158,46.69470339555501,46.69467546398358,46.69466489362378,46.69466489939797,46.69462090481005,46.69462102558891,46.69459921378635,46.69458802542127,46.69457695715997,46.69457784082243,46.69455608984384,46.69453446224695,46.69453452779109,46.69452346116539,46.69452352597647,46.69444645857114,46.69444152401417,46.69440296371839,46.69439745564028,46.69431520783507,46.69427114722528,46.6942710717549,46.69422763963622,46.69422214220863,46.69418913586809,46.69416169830617,46.69414000806031,46.69413994526197,46.69409588689758,46.69409582307164,46.69406294391015,46.69404125703792,46.69401944015708,46.69400831560417,46.6940085022142,46.69398674336984,46.69398668571533,46.69397561860632,46.69397555152118,46.69396449379368,46.69396461357807,46.69392111428895,46.69392123197611,46.69389904093252,46.69388853648034,46.69387747618656,46.69385457455434,46.69378616384676,46.69369531994441,46.69355902389596,46.69355882249863,46.69354776271281,46.6935483187717,46.69353725126312,46.69353719308474,46.69352612559064,46.69352643363403,46.69350479790387,46.69350486067439,46.69349379547508,46.69348334438542,46.69345075583145,46.69343969750465,46.69344012490343,46.6934076632372,46.69340782477048,46.69343018388537,46.69342534629505,46.69339252291611,46.69330481804658,46.69326117740692,46.69321710652982,46.69305281356251,46.69300311690434,46.69300303881219,46.69291546171242,46.69291001351993,46.69288819096236,46.69288824900762,46.69283360578314,46.69282301598347,46.69281182802119,46.6927792326559,46.69274627919533,46.69272476589495,46.69270300323685,46.69269704950603,46.69265359539694,46.69264814377313,46.69262633480454,46.69259361799003,46.69257123179713,46.69254959264934,46.69252777213486,46.69249500209909,46.69242909646858,46.69239608703474,46.69238551154937,46.69235250603106,46.6923416139114,46.69233097996909,46.69229781694498,46.69226492384097,46.69224339987107,46.69220499218324,46.69217761016999,46.6921665981971,46.6921230748847,46.69212313524548,46.69207898416106,46.69203563670101,46.69200824870946,46.69200273930758,46.69195853137735,46.69192658200735,46.69194290061286,46.69191467966868,46.69187666757343,46.69187116126738,46.69183263946159,46.69176701173996,46.69174519714796,46.69173980175866,46.69172366131053,46.69165775407779,46.69163604718986,46.69161365816995,46.6915920184275,46.69155343442318,46.69152070495124,46.69142217939225,46.6914167252106,46.69138939191468,46.69137337115345,46.69133490099473,46.69132950610373,46.69131336585655,46.69130790573997,46.69131354253098,46.69129752672078,46.69130346118701,46.6913200099394,46.69131539817446,46.69130483113035,46.6912658197345,46.6912331765547,46.69120540784904,46.69120574954977,46.6911788027726,46.69120687695094,46.69121239031592,46.69123519741458,46.69122996626432,46.69120791282484,46.69111476190744,46.69109287964666,46.69107110653538,46.69096085656482,46.6908843005624,46.69081335765522,46.69076435916439,46.69070348897961,46.6906873463751,46.69068193617415,46.69067131172819,46.69066612691063,46.69067146747948,46.69066089106502,46.69066049694795,46.69064985690071,46.69065013490392,46.69066087185051,46.69066104047607,46.690672401437,46.69067232861985,46.69066119706982,46.69066152508026,46.69065088716103,46.6906399682334,46.69059642430534,46.69053043670991,46.6905137721368,46.69051399368242,46.6905307282533,46.69054761851062,46.69054733251212,46.6905702893546,46.69057020550729,46.69054330645164,46.69057142536105,46.69057190283473,46.69056119909766,46.69051735241162,46.69051200174435,46.6904735626284,46.69046318785353,46.69043033344673,46.69042998649522,46.69041945644619,46.69043051413782,46.69047452874801,46.69047498324496,46.69041476948411,46.69038736535153,46.69037643428033,46.69034361937723,46.69033263801158,46.69026750757249,46.6902727342503,46.69030029955181,46.69030072837343,46.69025165105186,46.69019635956033,46.69015829094558,46.69009762978344,46.69003975979111,46.69001141663635,46.69009223975532,46.69019154637456,46.69025255755155,46.69036823761615,46.69042930009611,46.69043518646268,46.69039101427476,46.69039081443086,46.69035803226331,46.69030885112966,46.69029775993851,46.69025971788009,46.69025407158779,46.69019898125883,46.69017203782116,46.6901280227367,46.69012856434853,46.69008455929048,46.69008459212444,46.69007351758898,46.69006234809889,46.69005184128267,46.69004084640733,46.68999693143503,46.68999703669417,46.68995356780645,46.68994876936238,46.68995475339833,46.68999321300011,46.69002652663816,46.6899933061183,46.68996065296491,46.68994964465192,46.68987293446111,46.68985608247373,46.68982880227916,46.68982315905088,46.68979582774079,46.68975736968164,46.68975747337532,46.68973578313758,46.68973593876073,46.68974672330043,46.68974692898219,46.68975822908325,46.68976018270176,46.68970369995336,46.68973693136721,46.68974321444291,46.68978171776364,46.68980390886264,46.68981477135683,46.68983146596561,46.68985922773618,46.68987583322578,46.68990927455901,46.68992051797126,46.68991622971616,46.6898834624605,46.68988435285809,46.68989021466552,46.68990110309997,46.68989567164354,46.68990156125484,46.68989097903444,46.68989126561876,46.68988015971897,46.68988055693528,46.68989134767848,46.68989720934506,46.68991964814988,46.68992490662692,46.68993620477139,46.68994737675221,46.68995811241648,46.68996388344552,46.68996422746526,46.69000280851102,46.69000290615919,46.69002503345852,46.69004707636084,46.69006925126821,46.69009127658239,46.69010287055993,46.69013573117712,46.69014692526011,46.69020273078775,46.69022475987673,46.69024673470302,46.69025802981113,46.6902582220592,46.69024149189303,46.69022523040839,46.69018646240544,46.69015546332944,46.69014846113912,46.69013709821542,46.69017002103303,46.69019767698253,46.69029724226934,46.69039142507689,46.69045761375546,46.69045822249443,46.69049099142561,46.6904910383562,46.69053514855512,46.69054654154243,46.69058502454569,46.69059080080884,46.69062426337187,46.6906238897857,46.69060214802138,46.69060210579162,46.69058611237057,46.690585835535,46.69059717377906,46.6907017078999,46.69072950367897,46.69075209037755,46.69076854204317,46.69080187995201,46.69081270288315,46.6909342450848,46.69097848810416,46.69098425565647,46.69101719891204,46.69103434824682,46.69119998956101,46.69124990714311,46.69128890199661,46.69129972323397,46.69133876990804,46.69133886396866,46.69138305065861,46.69139393006802,46.69145465517952,46.69152140046788,46.69155472174067,46.69156550623912,46.6915988273183,46.69160960155571,46.69164293272728,46.69166373281352,46.6918198023408,46.69196367211945,46.69202979213085,46.692051916668,46.69208523490696,46.69209038491126,46.69217352322652,46.69218434067898,46.69226176158298,46.69227310872247,46.69236121339996,46.69239448461976,46.69257126280432,46.6925825962076,46.69265940607611,46.69267074596197,46.69270401657649,46.69271479763816,46.69274244924601,46.69275889378061,46.69279221665776,46.69281432624226,46.69284202035509,46.69285349204942,46.69288634401638,46.69288659825464,46.69287578688306,46.69284831550853,46.69280422868215,46.69276009509283,46.6926497182791,46.69251736280289,46.69245150683583,46.69243459004636,46.69240741670808,46.69240064133515,46.69186896181967,46.69163406443067,46.69163670257107,46.69164254851275,46.69159824276238,46.69145508200148,46.69143322709824,46.69142211026043,46.69143331589619,46.6914773686252,46.69160436100724,46.69173707143792,46.69174796956175,46.69178141893308,46.69179223198709,46.69182529110829,46.69185306711051,46.69185371351783,46.69183151995811,46.6918317414945,46.69182053430571,46.69180949605104,46.69178774067835,46.6917881258504,46.69177695736625,46.69177713225508,46.69178842343412,46.69178828731549,46.69181052427064,46.69183263938879,46.69183272699506,46.69187745270403,46.69187701811511,46.69188844340414,46.69189916759588,46.69189929580322,46.69192140644196,46.69194368084037,46.6919551070736,46.69196617655992,46.69199909615723,46.69199922663825,46.69201065331018,46.69201029570266,46.69199970033142,46.69199981731899,46.69196689280895,46.69191708401443,46.69187337892341,46.69182344178389,46.69171370789372,46.69157624074625,46.69152634281833,46.69152695030456,46.6914938837648,46.69148280501304,46.69146043004971,46.69145011521291,46.69143895760885,46.69143932814114,46.69142816066698,46.6914282890412,46.69140647748869,46.6913843089012,46.69137366126008,46.69137326909325,46.69136261530101,46.69136311943595,46.69138521853365,46.69138473786405,46.69139616504157,46.69139609542364,46.69135247171685,46.69134134699554,46.69131949154776,46.69126422470496,46.69125397871629,46.69124277902667,46.69123177786135,46.69122112593989,46.69122165368318,46.69119940387188,46.69119952598479,46.69117774708351,46.69117249559966,46.69117836544302,46.69118969730263,46.6911893245872,46.69117867862266,46.69117864217154,46.69118996635881,46.69119017212801,46.69120564191652,46.69123406251894,46.69126200952894,46.69126715157689,46.69130049034645,46.69130639454007,46.6913010102993,46.69130092717626,46.69131225049745,46.69131240520505,46.69132326871417,46.69132352291342,46.69133437671014,46.69134531404607,46.69134539457627,46.69135625615962,46.69135658206672,46.69136798600043,46.6913788463487,46.69137853224151,46.69140062094969,46.69141207001838,46.69139939515497,46.69146395048008,46.69147536541504,46.69147563455653,46.6914507223688,46.69151028079025,46.69151159425067,46.69145668730029,46.69141828902678,46.69131966009432,46.69100687126886,46.69095212576821,46.69090275265275,46.69085357161934,46.69085351489497,46.6907605390226,46.69073876692458,46.69071678054533,46.6906404749642,46.6906289955349,46.69061285741534,46.69050325771064,46.69050329768226,46.69046516358929,46.69045944127013,46.69041585326071,46.69041576560895,46.69037775641706,46.69036658692164,46.69033408102502,46.69031761762154,46.69029546242559,46.69028475751923,46.69027367930004,46.69025189603364,46.69025236864385,46.69024128488115,46.69024126473256,46.69023018459741,46.69021962218829,46.69022527816247,46.690208480189,46.69020895392509,46.69019786882484,46.69019798206961,46.69015441269983,46.69015444472247,46.69014392377937,46.69013272687942,46.69012221257602,46.6901224457407,46.69011126602776,46.69011413765156,46.6901363367267,46.69014706613185,46.69014781035715,46.69015854092368,46.69015880487561,46.69020364654285,46.69020394854699,46.69021523327835,46.69022607790379,46.69022160354302,46.69022741529457,46.69021623605256,46.69022193387564,46.69021140013388,46.690211622785,46.690223018025,46.69021757715001,46.69022353744663,46.69020773849159,46.69016421140591,46.6901203199023,46.69010408502712,46.69008217515129,46.69007646245973,46.6900491045444,46.69002740374444,46.68998909298028,46.68997229126077,46.68995039599213,46.68994522958558,46.68991787394642,46.68986855921267,46.68982494311258,46.68982484641945,46.68981375982358,46.68981383309654,46.6897920097206,46.68979247959018,46.68977018249712,46.68977064136418,46.68973211534938,46.68972668677694,46.68967720761841,46.68964464786417,46.68963347769573,46.68954089154597,46.68946421641941,46.68946398796658,46.68942051805436,46.68942042455595,46.68939306798634,46.68933815836027,46.689327542059,46.68920707432143,46.68920177192943,46.68915774913462,46.68915821275111,46.68912470595478,46.68911395292075,46.68907035597719,46.68907025590271,46.68903227994821,46.68902699388262,46.68898296067091,46.68896103032555,46.68890268926669,46.68872584074811,46.68872055420861,46.68867651443993,46.68861643922843,46.68859454269843,46.68858924914993,46.68854534295321,46.68854525142869,46.6885016523668,46.68845795182079,46.68841979986768,46.68841408637427,46.68837550402644,46.6883648858382,46.68832088479784,46.68828245346788,46.68823372059092,46.6882118236652,46.68810754081254,46.68809695194197,46.6880638738761,46.6880532847879,46.68803142300537,46.68800948756318,46.68797653773827,46.68797660740501,46.68793290184735,46.6879328114145,46.68788920829267,46.6878786174121,46.68784557053777,46.68784547259433,46.68780190464581,46.68779635208099,46.68775826843266,46.68775820894422,46.68774768259463,46.68772028666995,46.68770397931904,46.68767106004153,46.68767113071152,46.68764920794479,46.68762746812411,46.68762753259443,46.68760569863806,46.68760560273909,46.68759451323327,46.68759497654325,46.68758389316431,46.68758396350455,46.68749736438981,46.68747508494238,46.68745337901073,46.68745332511777,46.68744223664634,46.68744230467843,46.68743108798633,46.68743174961595,46.68740995382429,46.6874100461526,46.6873770002882,46.68736082292924,46.68732270440935,46.68731155449556,46.6872790631232,46.68727899874919,46.68726791308308,46.68723555435114,46.68723568346603,46.68721388620578,46.68719201119008,46.68715902801582,46.68715948850538,46.68714840016492,46.68714853287931,46.68709420885178,46.68706128119699,46.68706118026086,46.6869788954595,46.68693015109528,46.68691887719557,46.68688648007475,46.68688092333333,46.68684783294109,46.68683721358237,46.68680971149439,46.68679895992548,46.68676600389082,46.68674979026986,46.68671110415935,46.68671156955841,46.68666739729018,46.6866566730329,46.68662375035272,46.68661819368383,46.68658010239187,46.68658059940594,46.68656950814741,46.68655879203529,46.68653651641057,46.68653658060719,46.68649296507895,46.68649362312395,46.68646616221017,46.68644997279819,46.68645000781734,46.68643892364964,46.68643901893726,46.68642836243562,46.68642842610107,46.68640665505357,46.6863956530005,46.68634700576038,46.68631954370991,46.68630890856899,46.68629783344839,46.68628710547689,46.68627601555116,46.68627600667356,46.68623245697919,46.68622689921931,46.68620502543934,46.68615637460492,46.68615639521097,46.68614531989453,46.68614669233166,46.68616316486884,46.6861584020008,46.68614731036406,46.68614784350316,46.68613675610585,46.68613664976558,46.6861255691099,46.68610375321013,46.68610438009291,46.68608256147877,46.68608286459241,46.68607178201115,46.68607227105755,46.68606118033688,46.68605008907154,46.68601764171719,46.68601764191979,46.68600655118176,46.68600717188939,46.68597414684605,46.68597403996037,46.68593042442261,46.68593045562053,46.68582610169482,46.68580462539104,46.6857935667871,46.68571671562556,46.68571158488734,46.68570050188229,46.68566805345625,46.68566833481314,46.6856571140889,46.68565775153852,46.68564666036686,46.68562499764032,46.68558133081352,46.68557062881834,46.68555955236339,46.68555944644522,46.68553772707595,46.68553765789955,46.68549406603429,46.68547211868541,46.68545037337456,46.68545043063025,46.68540667317043,46.6854065651162,46.68537360655682,46.68531898659,46.68527550169777,46.68526459979804,46.68523177434929,46.68523153943358,46.68518804441184,46.68518810596485,46.68514381693165,46.68513321619783,46.6851006800652,46.68510060977596,46.68505704675539,46.68502139037066,46.68498048018362,46.68496981963258,46.68496974196035,46.68495865750153,46.68494792597231,46.68492620738581,46.68492612957826,46.68490439359051,46.68487126369282,46.68484952817614,46.68482813212633,46.68480582792741,46.68479508888714,46.68476212254876,46.68476202515215,46.68475149540323,46.68470785211012,46.68470790670134,46.68467483322225,46.68466423338715,46.68464739245498,46.68464741998517,46.68458180833922,46.68457651133296,46.68450550580711,46.68448898945526,46.68445039657299,46.68443933156909,46.68441743161898,46.68440117273236,46.68440106998411,46.68437931930423,46.6843137703411,46.68431382717014,46.68427009297753,46.68426999008002,46.68422635981032,46.68422625684324,46.68418808981153,46.68418252279512,46.68414392903772,46.68413329063545,46.68411138356895,46.68406761661249,46.68404004326528,46.68400706791591,46.68400206594997,46.68396392575467,46.68396341828924,46.68392025277158,46.6839201431343,46.68388158464813,46.68387630710202,46.68385412825641,46.68379400182226,46.6836573901926,46.68365182505994,46.68361370666814,46.68361360078324,46.68357000053823,46.68356989657247,46.68350957759338,46.68349324617942,46.68348264242331,46.6834551297991,46.68343903329484,46.68321442701332,46.68319250665073,46.68313736129036,46.68308815995135,46.68304999395556,46.68304428981101,46.68303376056119,46.68300074116138,46.68300082167519,46.68295710887478,46.68294636078892,46.68293528397658,46.68291350206361,46.68291358085857,46.68288100944756,46.68286991874433,46.68286999727687,46.68284812114101,46.68282628407874,46.68282676806007,46.68281568182261,46.68281557915637,46.6827938519169,46.6827937399808,46.68278266297493,46.68278271561334,46.68273902137443,46.68273891415981,46.68269528037192,46.68268973119949,46.68259697190994,46.68252036024372,46.68243791451305,46.68242727901563,46.68240536564858,46.68230660363529,46.68230143229532,46.68225779876121,46.68225726247984,46.68221349133839,46.6822027457254,46.68216979613245,46.68216987522347,46.68215921440213,46.68215929153517,46.68214863067871,46.68214326574497,46.68214878012866,46.68213769382087,46.68213786544778,46.68212728722987,46.68207801417824,46.68203987784916,46.6820397865353,46.68202925608457,46.68199622999141,46.68196796176594,46.68195254530532,46.68194202157947,46.68192023724839,46.68192028484594,46.68190906161653,46.6819097495828,46.68189865473624,46.68189854401282,46.68188745719749,46.68185498189461,46.6818218773742,46.68182190126003,46.68173434653058,46.68173423012006,46.6816906206099,46.68167995019797,46.68166886319673,46.68165829156354,46.68164707360545,46.68164714633113,46.68160339685238,46.68160405703778,46.68155974989924,46.68156019849383,46.68152159499946,46.6815164230827,46.6814721983888,46.68147208393437,46.6814615597245,46.68145618194205,46.68144553609341,46.68138493689686,46.68137943371899,46.68134687683544,46.68126992034979,46.68125366003731,46.68125373118626,46.68128705610475,46.68125394899677,46.68125470065676,46.681238303101,46.68120516520327,46.68116660776386,46.68116667932687,46.68115604637486,46.68112294639534,46.68112339915425,46.68109042421472,46.68106295494723,46.68103049663299,46.68099738655345,46.68099207610301,46.68094800352695,46.68094831982715,46.68090424653592,46.68090469898769,46.68088238697521,46.68086053788254,46.68086070168584,46.68081197872586,46.68077326322333,46.6807676897221,46.68072955236087,46.68073007590986,46.68071898663653,46.68070825464562,46.68068596355251,46.68068643761527,46.68067534435541,46.68067522827715,46.68066414188775,46.68064229801391,46.6806429521499,46.68062118319956,46.68062111379484,46.68061001740451,46.68059940062304,46.6805994681298,46.68055536992751,46.68057199922216,46.68057189272271,46.68055026863141,46.68052277819849,46.68050138668934,46.68046842796588,46.68046847427647,46.68045222558309,46.68040848075401,46.6803916321304,46.68036474823565,46.68034229489163,46.68033729934128,46.68030420624821,46.68028798073537,46.68020606753671,46.68018410215491,46.68017300943963,46.68016239333892,46.68016245763277,46.68017319033604,46.68017330340115,46.68016263661486,46.68016375220231,46.68020717730828,46.68020174031325,46.68019669613911,46.68018038777434,46.68014729492368,46.68013100594075,46.68010350604041,46.68008200554273,46.68006538478684,46.68005141919331,46.68003424437633,46.68006755922161,46.68006776824519,46.68007903987082,46.68007912515987,46.68008985267191,46.68008991766523,46.68007925488608,46.68006849555334,46.68005207473234,46.68000918830124,46.68002212221244,46.68003890252612,46.68009057154726,46.68012380675571,46.6801184159183,46.68012926187274,46.68021759074181,46.68023970407138,46.68008590788271,46.68007497836904,46.68003649593997,46.68002587005338,46.68003716085668,46.68003724419644,46.68004795230202,46.68008130843486,46.68008152849399,46.68009280573111,46.6800928857219,46.6801041566186,46.68011502339957,46.68012629419122,46.6801263983856,46.68014841645734,46.68015978547201,46.68017106299574,46.68017121620952,46.68019332212479,46.68019330877444,46.680182781207,46.68018266111643,46.68017156307932,46.68014971351261,46.68017735187318,46.68021057799618,46.68024890220909,46.68024963582927,46.68023841540704,46.68023851672556,46.68022791455144,46.68023917769544,46.68023866077822,46.68026123110167,46.68026086654163,46.68029425272935,46.68031085151608,46.6803549967839,46.68040435955766,46.6804260321895,46.68045380569014,46.68045413731047,46.68044290030619,46.68035534631818,46.68033867544935,46.6803499636958,46.6803500206163,46.68039402125361,46.68039416572709,46.68041674151802,46.68041686528125,46.68042758888452,46.68042822481033,46.68043893568939,46.68043908725217,46.68045035494672,46.68045043045638,46.68046113695858,46.68046173884093,46.68048375621908,46.68048384404504,46.68050586413828,46.68051722416995,46.68052793348051,46.68052800625182,46.68056129866785,46.68056134975225,46.68057260764154,46.68058397270455,46.68061721381507,46.68062232208629,46.6806611859172,46.68066684256133,46.68069953170038,46.6807491605143,46.68074978905683,46.68077176560717,46.68077180721789,46.68079383164444,46.68079394584237,46.68080520756182,46.68080541381465,46.68082747706153,46.68083875382361,46.68083880677371,46.68087205804802,46.68088844734028,46.68092733393332,46.68092734842178,46.68099330391345,46.68101587411472,46.68101591080529,46.68105989583029,46.68109321630705,46.68110449380649,46.6811045557823,46.68112655259056,46.68113789169364,46.68114859557213,46.68114864696872,46.68119320976195,46.6811932475007,46.68123721763006,46.68123727158102,46.68128183568809,46.68128188633531,46.68132590664176,46.68132595760227,46.68134798011506,46.68137068247288,46.68137664965851,46.68137113018958,46.68140445635089,46.68141571650881,46.68141577234454,46.68142704812703,46.6814540994322,46.68146540780634,46.68150427888532,46.68150993586987,46.68154825563587,46.68155391770362,46.68160913511225,46.6816919186189,46.68171387094704,46.68171950915052,46.68175217408483,46.68178540141071,46.68180735818486,46.68182990700702,46.6818513074742,46.68190654184782,46.68197301451944,46.68203895411452,46.6820721725811,46.68212740675769,46.68220457857955,46.68226550598239,46.68229874580561,46.68230439886342,46.68233707041591,46.68234835841282,46.68239792932901,46.68241988514351,46.68242552845981,46.68245873912998,46.68249141730935,46.68251393304849,46.6825691641117,46.68260181467425,46.68272862122891,46.68274556897499,46.68279517538972,46.68286729399622,46.68287238991912,46.68291689670017,46.68291692689375,46.68295524326125,46.68296089736014,46.68304936523516,46.68306571913865,46.68313218258869,46.68314289769251,46.68318175815801,46.68323134098623,46.68326963824232,46.68326965387978,46.68331980611863,46.68335088755975,46.68344090809519,46.68345218683071,46.68348483115506,46.68350738187591,46.68352877116495,46.6836391647167,46.68406371563122,46.68415215251435,46.68419044888599,46.68420172404534,46.68423494088342,46.68429015277113,46.68441686878081,46.68446081641182,46.68454360287249,46.68459317968798,46.68463147488753,46.68464275175992,46.68467597243123,46.68469232231504,46.68476946491833,46.68486352185412,46.68489617641399,46.68526054716818,46.6852932056831,46.6854863620499,46.68560177167318,46.68565696415867,46.68575098646152,46.68581684919011,46.68583318408921,46.68591031429366,46.68592158924496,46.68605392432601,46.68608713581246,46.68610911629931,46.6861310600952,46.68614233520067,46.6861642906817,46.6862194751671,46.68623018845769,46.68626339965122,46.68627468099744,46.68629662223958,46.6863957302415,46.68640701140245,46.68642896255923,46.68655002950078,46.68662714737986,46.68663278440734,46.68665473949077,46.68667163414224,46.68669301857694,46.68682026569508,46.68689175771831,46.68696325199998,46.68698521379994,46.68705669131995,46.68716141169238,46.6873764465897,46.68738208009075,46.6875306887862,46.68756390485032,46.68771814585394,46.68772927367551,46.68775684369797,46.68782283964432,46.68791065420717,46.68803728796428,46.68804292875237,46.68806488291508,46.68824165067801,46.68825799235061,46.68829120084796,46.68833511684063,46.68838469645392,46.68851700823799,46.68856656383649,46.68877595803834,46.68879790916146,46.68881986275902,46.68883675764394,46.68888066932944,46.68895214179776,46.68905121976081,46.68912325719502,46.68918390761919,46.68926058771648,46.6892825554087,46.68943675031716,46.68950302274104,46.68956338293334,46.68958534138669,46.68971761429919,46.69009806744017,46.69015831604182,46.69029059717369,46.69059901977095,46.69090178922784,46.69106163594304,46.69106726298108,46.69115000297047,46.69115507062497,46.69123779842266,46.69124344139547,46.69132617070835,46.69150797398364,46.69155752338672,46.69173933566771,46.69176128041381,46.69182714684069,46.6919048113651,46.69204780473974,46.69211928756712,46.69213617543384,46.69224592012071,46.69232302850227,46.69234553884,46.69245529549504,46.6927969081635,46.69280253709671,46.69285768701542,46.69297306154319,46.69299500559115,46.69310531800903,46.69328147270138,46.69328710134197,46.69330904815489,46.69333100499895,46.69355146510658,46.69365613082148,46.69372786321581,46.69374403367998,46.69377174507703,46.69383209944044,46.69396993125645,46.69408556175386,46.6943162676655,46.69447609867127,46.69455318872679,46.69462520518977,46.69467416740191,46.694723697062,46.69474031316827,46.69475692216897,46.69477928657075,46.69490025447113,46.6950213648395,46.69522505235194,46.69537924049424,46.69539557161851,46.69562165566615,46.69564373354301,46.69568762660251,46.69577034211471,46.69579791450082,46.69588569606703,46.69623275278391,46.69643656750224,46.69661268860586,46.69674492317807,46.69692612588884,46.69698126637787,46.69698689316492,46.6970476664779,46.6971630197699,46.69720689810338,46.69723503905727,46.69726203814737,46.69733393020124,46.69737795091967,46.69743295529447,46.69751524374634,46.69769135467794,46.69781837770417,46.69784608023773,46.69817621985187,46.69860565110857,46.69903494036461,46.69912819853162,46.69934873503015,46.69936491630035,46.69938699702363,46.69944214850289,46.69950290688005,46.69961261942886,46.69972288465529,46.69978871143179,46.70004186161393,46.70021145787502,46.70064115441963,46.70075156813079,46.70092795906707,46.70112655645463,46.70143052527878,46.70154081777845,46.70166235795588,46.70178951781671,46.70189474433676,46.70201065255824,46.70209912731944,46.7024464016979,46.70258480852463,46.70259043467323,46.70262870222459,46.70263432348773,46.70276697280559,46.7028385667738,46.70294925881416,46.70306516621149,46.7030819096649,46.70320314498704,46.70329148300262,46.70332453989253,46.70346252472417,46.70351822069864,46.70373371813804,46.70373934312062,46.70389912791684,46.70392669751563,46.70395483023179,46.70404317076702,46.70404823144666,46.7040926704979,46.70409829529732,46.7041810075826,46.70426428305004,46.70447919517476,46.7045844058644,46.70468904967452,46.70470030280748,46.70491578296498,46.70498751383556,46.70501522409776,46.7051914553369,46.70532986350328,46.70536825817982,46.70550073792318,46.70565516616281,46.70567711136033,46.7058751344765,46.70604701000392,46.70535922640221,46.70550836448535,46.70551676920346,46.70552746505459,46.70552803464594,46.70553928775842,46.705529175493,46.7055567562119,46.7055736290745,46.70560120305583,46.70560120387333,46.70567884839925,46.7057401791736,46.70582907588562,46.70586226464967,46.70586788777793,46.70590614091215,46.70591177182622,46.70593371836863,46.70595621867639,46.70595621972286,46.70600066831661,46.70600067393465,46.70605637112444,46.70607830256704,46.70615551776646,46.7061942051052,46.70634890100567,46.70637112771756,46.70643750052108,46.70645930033189,46.7064812400284,46.70654762502448,46.70663537419482,46.70673509274315,46.7073997050832,46.70664405322199,46.70449454732546,46.70447646471653,46.70945496865914,46.71171254555641,46.71934669439685,46.73420698986067,46.74953546231878]}]],[[{"lng":[-90.86265206282802,-90.86277974637456,-90.86297239496093,-90.86303656590565,-90.86322859417304,-90.86345286336334,-90.86354889803333,-90.86390076642544,-90.86508603979897,-90.86537427009175,-90.86591857398726,-90.86694334410822,-90.86764718495117,-90.86811173697504,-90.86831985209874,-90.86845587021497,-90.86902402406017,-90.86942428261544,-90.86976069888858,-90.86992036235554,-90.87012039314745,-90.87056092648122,-90.87123282570624,-90.87193755697044,-90.87224138971069,-90.87291383345536,-90.87341751336561,-90.8735055735679,-90.87362524449917,-90.87371347633028,-90.8738414086183,-90.87406531703822,-90.8742015584708,-90.87442567957406,-90.87455370249174,-90.87475404875931,-90.8748577863974,-90.87513757945037,-90.87521305393855,-90.87578100419564,-90.87590894473063,-90.87600505473623,-90.87608558477314,-90.87621369374364,-90.87630936557522,-90.87640617790134,-90.87656618836067,-90.87667038757927,-90.87698268413992,-90.87713502568356,-90.87723919737419,-90.87794410540157,-90.87868121025336,-90.87916168088412,-90.87941757898285,-90.87964194977037,-90.87992908264212,-90.88021137090149,-90.8804436294318,-90.88057227695451,-90.88066894297333,-90.88076539663994,-90.88079793871961,-90.8808466919416,-90.88081444307757,-90.88073459958866,-90.8807514286413,-90.88067178990903,-90.88065632236335,-90.8806735429049,-90.88073812105506,-90.88075386587404,-90.88070677694623,-90.88072410427236,-90.88064470536438,-90.88069356707469,-90.88076533209437,-90.88097379616468,-90.88139112711463,-90.88161534918775,-90.88179151597927,-90.88256119540925,-90.8828420051089,-90.88333033419039,-90.88399563669022,-90.88525327217314,-90.88647127080021,-90.88663125569812,-90.88726627735673,-90.88734407981701,-90.88763274966828,-90.88852963372841,-90.88923464132289,-90.88949056958823,-90.88998686236656,-90.89010705603475,-90.89024343882917,-90.89035573494085,-90.89055581308983,-90.89067599681522,-90.89096435885959,-90.89118807040207,-90.89142820885093,-90.89153228500061,-90.89164438574927,-90.8916923892243,-90.89172432176284,-90.89178072000597,-90.89173272248792,-90.8917571344353,-90.89180541344777,-90.89192554502775,-90.8921815611845,-90.89258478948857,-90.89309441281353,-90.89315847312379,-90.89327865373755,-90.89331848245773,-90.89344704934791,-90.89357476793475,-90.89367108631096,-90.89418318964081,-90.89440726346719,-90.89466341462598,-90.89485531707584,-90.8952074971599,-90.89613636504635,-90.8966804648465,-90.89760944880474,-90.8984741274266,-90.89901861354514,-90.89965944540255,-90.90058802305023,-90.90076436674099,-90.90110078586714,-90.90221391070531,-90.9026623881329,-90.9029424068783,-90.90335937877978,-90.90365550332906,-90.90403179968447,-90.90489621953456,-90.90539330428295,-90.90604935888143,-90.90636969109103,-90.9067382732199,-90.90721886475441,-90.90817394870251,-90.90838016427571,-90.90857256365635,-90.90881270554748,-90.90916501987338,-90.90950183797891,-90.91003091019137,-90.91012678474921,-90.91041493611358,-90.91052724999686,-90.91071912062466,-90.91104014172576,-90.91125612035326,-90.91172109776603,-90.91178548586416,-90.91186577203646,-90.91214579235891,-90.91233827336349,-90.91257834821269,-90.91273913937896,-90.91280300664617,-90.9127877358694,-90.91282738120431,-90.91281188722365,-90.91287575189972,-90.91287586383304,-90.91295570002286,-90.91292404649938,-90.91297200568567,-90.91300458607111,-90.91318102132892,-90.91324487708623,-90.91334158135038,-90.91334168677547,-90.91350213680609,-90.91350239092168,-90.91356628702559,-90.91382323003681,-90.9139993510755,-90.91451138574052,-90.91505629718372,-90.91576044179871,-90.91624068810472,-90.91662513215509,-90.91677699122835,-90.91682140020646,-90.91689703899716,-90.91702530798314,-90.91715302278541,-90.91769767645309,-90.91798597061928,-90.91920251164046,-90.92003486693899,-90.92054734518793,-90.92192338257738,-90.92253175746202,-90.92333181073526,-90.92390829261507,-90.92445210592479,-90.92531679923221,-90.92592475745293,-90.926148713297,-90.92659672450047,-90.92701290142408,-90.92736488217861,-90.92781302348084,-90.92829262146356,-90.92870925355716,-90.92944514509213,-90.9307253301414,-90.93203770264137,-90.9321975331557,-90.93267771842146,-90.93296558087573,-90.93370171185533,-90.93405371826178,-90.93421377863123,-90.9343098411176,-90.93439861230901,-90.93502556540913,-90.93542923302819,-90.93540565855557,-90.93547783860315,-90.93557374740119,-90.93605397909582,-90.936630378366,-90.93755817487663,-90.93807011386312,-90.93848614523685,-90.93887033281547,-90.93931842910892,-90.93979840688839,-90.94011846515926,-90.94063034319745,-90.94111068014547,-90.94162275867568,-90.9421353435625,-90.94293532987108,-90.94360715496121,-90.94392753460465,-90.94437574477446,-90.94543176757618,-90.94677617229516,-90.94728845535519,-90.94764034618399,-90.94824845440431,-90.9485363242771,-90.94885658374422,-90.94959266038589,-90.94995315388695,-90.95097741208561,-90.95189764980088,-90.95234623559078,-90.95269768522643,-90.95375441626972,-90.95413861825257,-90.95458707892431,-90.95519499048896,-90.95596345959208,-90.95669920911457,-90.95714741417208,-90.95778765843757,-90.95814030219753,-90.95865225344478,-90.958980022123,-90.95936433086574,-90.95947631282085,-90.95967653536813,-90.95985235209544,-90.96174127836362,-90.96215746242677,-90.96282938876497,-90.9633018731587,-90.96355785313024,-90.96392588868697,-90.96423804281098,-90.96439812363822,-90.9648467000948,-90.96532655572504,-90.96558251734859,-90.96615877709107,-90.96654354032734,-90.966703499753,-90.96695969214514,-90.96708772118438,-90.96731170751065,-90.96804809086073,-90.96833634486097,-90.96862441767573,-90.96881631054156,-90.9691683887192,-90.96936063501461,-90.96962480645502,-90.96988124246316,-90.97044906814462,-90.971281647385,-90.97132198344295,-90.97137789895606,-90.97147356692693,-90.9715537021532,-90.97173801061766,-90.97192980580502,-90.97221785062268,-90.97234644366178,-90.97260234682149,-90.97270672732682,-90.97280254941288,-90.97309075346314,-90.97320259550854,-90.97329880332904,-90.97351436622698,-90.97361108375038,-90.97381114924494,-90.97412331515982,-90.97433122753428,-90.97449103342763,-90.97476336184071,-90.97492368645342,-90.9754997448382,-90.97605148550581,-90.97643561930028,-90.97687593854279,-90.97701190941368,-90.9771076478068,-90.97712411417784,-90.97746018991251,-90.97781222638784,-90.97795601103762,-90.9781323033414,-90.97816398861598,-90.97842004538354,-90.97883666176212,-90.97906022622016,-90.97917244886858,-90.9792521648472,-90.97936443870881,-90.97944417577339,-90.97960438916127,-90.97980400426488,-90.97997245291333,-90.98013233535376,-90.98018006257983,-90.9802766550055,-90.98029231405849,-90.98037242445294,-90.98043615709932,-90.98064450276361,-90.98107666414728,-90.98182830662994,-90.98208457894809,-90.98232324728644,-90.98325236504834,-90.9836683813792,-90.98464418329894,-90.98515623154279,-90.98538042478272,-90.98539613930886,-90.98545227915314,-90.98625214135592,-90.9865396385879,-90.98686007885495,-90.98734009155524,-90.98794000203529,-90.98852386817286,-90.98945169922126,-90.98980394667751,-90.9904915905785,-90.99105116744033,-90.99170411128081,-90.99229909109242,-90.99290705682122,-90.99398494718029,-90.9943867869423,-90.9955387663866,-90.99625017236133,-90.9970419246382,-90.99761817324598,-90.99832185204907,-90.99876982021058,-90.99896189554624,-90.99928959705822,-90.99976177758955,-90.99995384813279,-91.00017872384856,-91.00038829445538,-91.00058026393087,-91.00077192204199,-91.00112344609236,-91.00141134065053,-91.00160351543352,-91.00179538913211,-91.00195462265644,-91.00214649527804,-91.00240239504431,-91.00278643867415,-91.00317818110265,-91.00333013736868,-91.0035220107131,-91.0039696703496,-91.00406559788466,-91.00419324099522,-91.00429738307464,-91.00445744215804,-91.00454506456454,-91.00486508174237,-91.00493711094816,-91.00496091591002,-91.00499241889723,-91.0050968670419,-91.00570458468344,-91.0061846461298,-91.00647275595855,-91.00704054219005,-91.00755200106522,-91.00787191438818,-91.00810369203194,-91.00828736077389,-91.00842340192963,-91.00850353137655,-91.00851953936565,-91.00858365221302,-91.00887123894691,-91.00903097879494,-91.00911921943718,-91.00937500177785,-91.00963088190845,-91.00979094229474,-91.00995869201621,-91.01011853678592,-91.01037450605747,-91.01051853588559,-91.01093463053516,-91.01110287400054,-91.01123870218206,-91.0114466491013,-91.01190288667597,-91.01267866381293,-91.01271078508266,-91.01295822357872,-91.01321409250325,-91.01359789426739,-91.01372593385689,-91.01383017250571,-91.01398462502738,-91.01418173997001,-91.01427756150444,-91.01434149597348,-91.01438971675623,-91.01442932574737,-91.01454954084208,-91.01457100359124,-91.01508524473714,-91.01534090823709,-91.01550107355233,-91.01559679555142,-91.01579674134024,-91.01585266393987,-91.01587628705285,-91.01591630744099,-91.01594821924027,-91.01604404114022,-91.01623639531219,-91.01632429173146,-91.01646042015742,-91.01662025610867,-91.01690782317642,-91.01703585398893,-91.01716377104444,-91.01730808842787,-91.01749995055847,-91.01781951024701,-91.01803547397854,-91.01810697419624,-91.01817908080044,-91.01833932296117,-91.01846724059196,-91.01871507665419,-91.01889899384129,-91.01905061310654,-91.01924306672804,-91.01940267954495,-91.01959462982603,-91.01993010832102,-91.02007422786126,-91.02029817686639,-91.02036999552345,-91.02049800242095,-91.02068198249002,-91.02076219230025,-91.0209221389678,-91.02106622100992,-91.02122561920172,-91.02135372161702,-91.02153803963152,-91.02160197517743,-91.02169795969824,-91.02191397692002,-91.02202595955562,-91.02221796429875,-91.02242593761432,-91.02250563736793,-91.02260155779206,-91.02266578704618,-91.02276162262835,-91.02285713860097,-91.02291384265547,-91.02296750060415,-91.02306570054802,-91.02332156257665,-91.02343306879192,-91.02360928678516,-91.02370531457775,-91.02386474793622,-91.02399257346499,-91.02439253426266,-91.02474491791048,-91.02570428211931,-91.02598411650962,-91.02626454069627,-91.02646405527814,-91.02651203916334,-91.02652841603137,-91.02658418794529,-91.02693578358409,-91.027047770359,-91.02719992992147,-91.02737541511014,-91.02811122390547,-91.0290944328359,-91.02951826622781,-91.02997365980642,-91.03005375723407,-91.03017411108213,-91.0302460023797,-91.03057364654401,-91.03067775302503,-91.03091763527594,-91.03136502935916,-91.03185285128328,-91.03230035062455,-91.03242031584244,-91.03242818775772,-91.03234840332891,-91.03246077077755,-91.03255665619538,-91.03271615610774,-91.03283631023722,-91.03292418878432,-91.0330760875535,-91.03336412721829,-91.0334357485238,-91.0334759978045,-91.03355542454867,-91.03361974683388,-91.03369185202203,-91.03378764317323,-91.03397929749387,-91.0340994970247,-91.03441909397235,-91.03465055038367,-91.03481892937197,-91.03493864773803,-91.03490671057301,-91.03482699036211,-91.03482687137107,-91.03509032410953,-91.0352666265201,-91.03536684155159,-91.03533335946516,-91.03533387990176,-91.03554487102679,-91.03573892836704,-91.03582703944684,-91.03583478409098,-91.0357869075424,-91.03567497983386,-91.03565934280738,-91.03567529169601,-91.03570724100321,-91.03589910814044,-91.03591548254221,-91.03610733669177,-91.03605926865951,-91.03607521581199,-91.03613129380666,-91.03621128414358,-91.03626717003038,-91.03623528127832,-91.0361556399094,-91.03617120163467,-91.03628315067783,-91.03626781139955,-91.03621938187506,-91.03610805999304,-91.03601228885043,-91.0359802086752,-91.03601214573237,-91.03607650642363,-91.03625245341311,-91.03628437395993,-91.03647623243292,-91.03650811537015,-91.03649237934106,-91.03641264354444,-91.03634849680125,-91.03627699187167,-91.03615709908665,-91.03605315123713,-91.03593363111925,-91.03590154129256,-91.03599783590685,-91.03599768739208,-91.03609387314445,-91.03624552659363,-91.03647756912234,-91.03674969704504,-91.03687784860962,-91.03687879459039,-91.03684600368537,-91.03684594346363,-91.03686228906795,-91.0369261942388,-91.03755784019454,-91.03783782713066,-91.03796566498245,-91.0381259331573,-91.03854127071803,-91.03866137196232,-91.03870130633943,-91.03878105320068,-91.03897329890152,-91.03942055428517,-91.03984439217631,-91.03998841165782,-91.04027618870174,-91.04043609027549,-91.04104362174529,-91.04131544920746,-91.04145934046416,-91.04167491135658,-91.04187495137749,-91.0423226910454,-91.04273786831588,-91.04303376312195,-91.04342537355762,-91.04403312229927,-91.04480001712479,-91.04485616470858,-91.04483982729455,-91.04482663950579,-91.04488029727298,-91.04497107540142,-91.04507197962789,-91.04521611979504,-91.04572693747082,-91.04639038974997,-91.04674217881896,-91.0470685150982,-91.04770128071698,-91.04830027600205,-91.04922745027982,-91.04949920734497,-91.04981844814067,-91.05010607494843,-91.05097730070943,-91.05174415507439,-91.05177641828841,-91.0517475997945,-91.05188578497354,-91.05204552658823,-91.0521357869537,-91.05237553931562,-91.0528153064387,-91.05357440636747,-91.0539259933451,-91.05440496441327,-91.0548602606473,-91.05542771186774,-91.0558113104691,-91.05672206368874,-91.0569772725119,-91.0573850606562,-91.05780080286576,-91.05796026730437,-91.05820809094696,-91.05871922625231,-91.05967787821879,-91.06089262252996,-91.06096418284568,-91.06104263812441,-91.06311320551139,-91.0640717622404,-91.0646869001588,-91.06487898593416,-91.06499877151352,-91.06505479222247,-91.06512614438473,-91.06513460077673,-91.06519018280309,-91.06550992631959,-91.06586118047672,-91.06630850518106,-91.0664682581149,-91.06669195291947,-91.06726720072068,-91.06790645010491,-91.0680345315818,-91.06844941517738,-91.06883304025006,-91.06896061459224,-91.06924832552893,-91.06963198632435,-91.07004729715614,-91.07046288180113,-91.07071849430203,-91.0712935401698,-91.07190121715011,-91.07222806213296,-91.07254006773637,-91.07285958300177,-91.07304363307745,-91.07309096632075,-91.07315516805325,-91.07333109901613,-91.07364272451412,-91.07382668742645,-91.07390601895963,-91.07398587184348,-91.07413782332233,-91.07466534190355,-91.07479285288973,-91.07511232858167,-91.07546423945931,-91.07578391092999,-91.07604731108037,-91.07626295817165,-91.07645510670716,-91.07658268899212,-91.0774136930099,-91.07760517555725,-91.07782917043801,-91.07798893604664,-91.07818074662887,-91.07834029986725,-91.07850039418825,-91.07897945084312,-91.07955473641566,-91.07977834382369,-91.07996998703014,-91.08076924803139,-91.08137639011261,-91.08163238850706,-91.0821116427125,-91.08278282374891,-91.08332631990886,-91.08377351962834,-91.08435651890873,-91.0846037225417,-91.08487570751159,-91.0851793275707,-91.08556272257603,-91.08661699575762,-91.08725611904906,-91.08754383889008,-91.08779521469748,-91.08792747321209,-91.08808723929876,-91.08818321040074,-91.08834307277988,-91.08840694228877,-91.08872651511689,-91.08898210650969,-91.08923766195943,-91.08978093700121,-91.09026013203301,-91.09055603706767,-91.09080366617013,-91.0909955139922,-91.09115510267002,-91.09125910068173,-91.0913946846147,-91.09160261636549,-91.0920653982257,-91.09216164759179,-91.09224957768627,-91.09237701688652,-91.09258444954155,-91.0926322281472,-91.0927840672986,-91.09292784421045,-91.0933274435296,-91.09347110755627,-91.09395041531094,-91.09429362823278,-91.09430958915954,-91.09429359532845,-91.09418123133565,-91.09411741367016,-91.094133672425,-91.09424494509288,-91.09434081346313,-91.09432482471817,-91.09418059667684,-91.09419630666065,-91.094180542893,-91.09424430427843,-91.09424419220503,-91.09420459758282,-91.09403657089813,-91.09392462598944,-91.09386072446731,-91.09384448641318,-91.09402032166675,-91.09406808831952,-91.09413196306659,-91.09413153190962,-91.09417934357931,-91.09429116273371,-91.0943786298899,-91.09437461569036,-91.09453503246918,-91.09457882752376,-91.09462416413066,-91.09464325230361,-91.09460769769323,-91.09462896929494,-91.09478815021841,-91.09490066610849,-91.09491620685041,-91.09489304416958,-91.0948318173709,-91.09473958264272,-91.09474399178056,-91.09472278777697,-91.09481741214678,-91.0949446006189,-91.09511007630418,-91.09526042550716,-91.09530243972162,-91.09530970982544,-91.09524028554569,-91.09528893464231,-91.09574687156154,-91.09581737075605,-91.09613712148682,-91.09632097090794,-91.09651472708659,-91.09657845250509,-91.09660279527058,-91.09653462648498,-91.09641855509609,-91.09637000876783,-91.09632013529043,-91.0961812635108,-91.09613184355071,-91.09600087441135,-91.09597903239778,-91.09598390029059,-91.09593321824089,-91.09595824570275,-91.09590883885603,-91.09584562494504,-91.09583514260794,-91.09587783229433,-91.09597497054814,-91.09649555112119,-91.09656799795663,-91.09658530080186,-91.096696473823,-91.09684392878702,-91.09692489148946,-91.09698048253721,-91.09706603845883,-91.09709559964442,-91.09709978581935,-91.09725822289241,-91.0973122599332,-91.09752492229164,-91.09761988575633,-91.0977404008475,-91.09801954699095,-91.09816482058329,-91.09829782623436,-91.09855357972948,-91.09875199205612,-91.09884385698328,-91.09893640042647,-91.09917725554197,-91.09927044558684,-91.09941525463047,-91.09953296461484,-91.09970511441618,-91.09979829521993,-91.09986545463454,-91.09995864400599,-91.10034037133707,-91.10047228808467,-91.10068426254496,-91.1013372470664,-91.10185853789203,-91.10224464740867,-91.10246974743744,-91.10264058158823,-91.10269284362882,-91.10292273187565,-91.10328277389249,-91.1033862302957,-91.10347700762613,-91.10368612610939,-91.10398778793351,-91.10414680863775,-91.10411182273637,-91.10408926610953,-91.10411125336977,-91.10412847742251,-91.10417155499798,-91.10421332571151,-91.10413698912224,-91.10381591409262,-91.10377871154451,-91.10379337679575,-91.10387387685751,-91.10392682535432,-91.10398085269236,-91.10388220721673,-91.10393822120122,-91.10400623556257,-91.10429870916926,-91.1047580656443,-91.10485039203355,-91.10493044638972,-91.1050109408321,-91.10507918078491,-91.10517674572384,-91.1053642270699,-91.10539309215211,-91.10548693660199,-91.1056446513371,-91.10581832386846,-91.1059239892822,-91.10625143398542,-91.10644850620585,-91.10668625843702,-91.10692491267655,-91.10721583784996,-91.10732236050677,-91.10740286553784,-91.10749865036463,-91.10752711643386,-91.10759404074822,-91.10770385494423,-91.10779440229555,-91.10780554838955,-91.10787926730561,-91.10796981603781,-91.10811309369682,-91.10825767575201,-91.10845605415852,-91.10891779480897,-91.10950860668476,-91.10967988349631,-91.10997187541055,-91.11019871220556,-91.11045197759208,-91.11068886758081,-91.11083281704337,-91.11117206416966,-91.11134311308594,-91.11143606755017,-91.11179565025867,-91.11201964482272,-91.1123348247945,-91.11258221800884,-91.11289587027555,-91.11300044363675,-91.11323863743056,-91.11350568333391,-91.11365156769165,-91.1137438739464,-91.1140332594381,-91.11417737891132,-91.11447466060797,-91.11457856658154,-91.11468269302708,-91.11482705033694,-91.11494560214868,-91.11511795336304,-91.11523759252142,-91.11570368816798,-91.1158086708904,-91.11593904454358,-91.11608078158913,-91.11617155898483,-91.11630279746763,-91.1165926161481,-91.11690757448336,-91.11711667783599,-91.1178494536199,-91.11792840608875,-91.11799554592702,-91.11803729834834,-91.11810467465916,-91.11819675155103,-91.11826128681784,-91.11836389147251,-91.11842775912454,-91.11854478002812,-91.11909576728624,-91.11965856372517,-91.12008861174399,-91.12032374888111,-91.12086075184577,-91.12100533296592,-91.12125618670343,-91.1214550100366,-91.12180144380808,-91.12190772887747,-91.12236944155369,-91.1225674047175,-91.12272532522336,-91.12335588773637,-91.12407661648341,-91.12490101635261,-91.12518676852507,-91.12574800700094,-91.12643641095075,-91.12674964937288,-91.12739119808413,-91.12762611629419,-91.12774293616904,-91.12809662022708,-91.12900817068996,-91.12935882783327,-91.1295649193144,-91.1298510355569,-91.13058123263478,-91.13141424334354,-91.13159408549073,-91.13176232559012,-91.13216508055343,-91.13307662124221,-91.13396666543547,-91.13422352842259,-91.13494900088921,-91.13526031131998,-91.13547953423227,-91.13568457522238,-91.1359106860162,-91.13605118206095,-91.13616101014352,-91.13628987937663,-91.13644657203778,-91.13642875280048,-91.1364519792007,-91.13657653443013,-91.13678608000033,-91.13677661163126,-91.1366513811663,-91.13653754295173,-91.1364252046172,-91.13643380467698,-91.13640452760687,-91.13639634544987,-91.13634297116062,-91.13620349830049,-91.13597753108465,-91.1359099493923,-91.13572853150241,-91.1352990092132,-91.13492692467216,-91.13481501434879,-91.1347248279295,-91.13475833318081,-91.13469958978348,-91.13460187509126,-91.13459992060257,-91.13480369888842,-91.13478798829463,-91.13473245456578,-91.13451724284012,-91.13406362587696,-91.13398269143988,-91.13391425631633,-91.13388413498454,-91.13387915750474,-91.13375540796635,-91.13367126034377,-91.13365510478359,-91.133724589102,-91.13371898211051,-91.13367462333244,-91.13367781529074,-91.13377831851318,-91.13378948363278,-91.13377204975886,-91.13382196614505,-91.13375245804998,-91.13360179593971,-91.13357165663402,-91.13360930571804,-91.1339641648046,-91.13397621267123,-91.13377370972526,-91.13376248049205,-91.13379020385827,-91.13387303397607,-91.13419300621463,-91.13424249742538,-91.13419816823212,-91.13416220198782,-91.134495301182,-91.13454478921786,-91.13462118159164,-91.13489600025675,-91.13506148686984,-91.13536148803404,-91.13546543451594,-91.13566255906005,-91.13579253737761,-91.13587000191832,-91.13601399052305,-91.13607940567505,-91.13624791917316,-91.13645732680591,-91.13678185061191,-91.13707130017318,-91.13737603538193,-91.13761276115017,-91.13780818745981,-91.1379887184611,-91.13814108523583,-91.13824289613774,-91.13853299005135,-91.1388362328785,-91.138993535241,-91.13921477252183,-91.13945257189366,-91.13960020673215,-91.13984103118742,-91.14011756634429,-91.14035215727456,-91.14062676183657,-91.14091772995221,-91.14139849344247,-91.14197522963416,-91.14254139800755,-91.14291563344283,-91.1431577189098,-91.14330641072507,-91.14335030488917,-91.14341938545809,-91.14364533491438,-91.14376755430855,-91.14384931572054,-91.14385164395975,-91.14395687548711,-91.14421642502813,-91.14433908145448,-91.14449033673237,-91.14454692104019,-91.14480963676961,-91.14475601776836,-91.14477492900714,-91.14492641094991,-91.14511211317635,-91.14528641531541,-91.14548261478532,-91.14556782313329,-91.14562675049838,-91.14573391772215,-91.14591962674328,-91.14595101010089,-91.14592776433788,-91.14582554591162,-91.14602325174779,-91.1460010710865,-91.14624356171949,-91.14642042079561,-91.14655832366506,-91.14659786601069,-91.1466847592162,-91.14667742943803,-91.14670624422841,-91.14697326395853,-91.14706857840373,-91.14715246424912,-91.1471847284365,-91.14740502347334,-91.14754543630183,-91.14761706370936,-91.14778292037114,-91.14793245416392,-91.147937581501,-91.14791774480848,-91.14793303027879,-91.14801734949117,-91.14804916302617,-91.14802591506916,-91.14788516995293,-91.14783303630317,-91.14775942890418,-91.1478060887075,-91.14786459467156,-91.14803622973075,-91.14803901061008,-91.14795271106432,-91.14794342830695,-91.14802875819993,-91.14808810670135,-91.14810745401607,-91.14816379182091,-91.14828791586635,-91.14836017365158,-91.14841609951144,-91.14855334900176,-91.14862537600021,-91.14870733809099,-91.14889579600631,-91.14896547456721,-91.14893144753879,-91.14896326342858,-91.14910049742321,-91.14920914019196,-91.14952882413107,-91.14971383701106,-91.14983387781479,-91.14992352139396,-91.15003302076323,-91.15018209223386,-91.15025114172479,-91.15037887572296,-91.1506837041544,-91.15100209468973,-91.15136157191918,-91.15150678784867,-91.15166726733196,-91.15181161136056,-91.1520247964946,-91.15246322677052,-91.15295308323105,-91.15353669631752,-91.1538957232227,-91.15627328938818,-91.15745929218384,-91.15789257947496,-91.15818127770321,-91.15884481076112,-91.15915978475495,-91.16001726313218,-91.16050771264244,-91.1607867042183,-91.16095773161602,-91.16124452841186,-91.16176881933811,-91.16197920399267,-91.16219003433461,-91.16230814493161,-91.16256720977546,-91.16286670352285,-91.16322060378597,-91.16364118184006,-91.16419385131215,-91.16446984835135,-91.16463200472421,-91.16477976112161,-91.1648350038388,-91.16504645482702,-91.16537496381852,-91.16562536134144,-91.16600806777433,-91.16613551760632,-91.16616304680582,-91.16624624011936,-91.16630445882927,-91.16627103273382,-91.16628036560796,-91.16631317136114,-91.16638705714436,-91.16648654848122,-91.16654752235743,-91.16648615197001,-91.16634901044746,-91.16630203635543,-91.16633527259003,-91.16629275581111,-91.16623456628362,-91.1661243664695,-91.16604821165657,-91.16597777489288,-91.16598901162259,-91.16607920350359,-91.16628091798201,-91.16660136768192,-91.16675142122658,-91.16683714176703,-91.1670291278798,-91.16728711174309,-91.16753345215189,-91.16779143357941,-91.16809914287366,-91.16876089802641,-91.16898563270736,-91.16973752335393,-91.16998872470784,-91.17020098919457,-91.17045301164069,-91.17080959797481,-91.17175829668463,-91.17208778675588,-91.17242891493724,-91.1727435885128,-91.17277016289107,-91.17280939941504,-91.17282709336045,-91.17297150406483,-91.17310081027942,-91.17324469593788,-91.17350690986893,-91.17426915066736,-91.17488476216559,-91.17527730930367,-91.17627173485046,-91.17708139682603,-91.17787730963343,-91.17980671762056,-91.18008162054213,-91.18085959418265,-91.1813144122921,-91.18169027625926,-91.18200034358641,-91.18250511174628,-91.18285621882522,-91.18323462151257,-91.18381644334607,-91.18425710211336,-91.18469920459481,-91.18495764506632,-91.18528315550613,-91.18536082482339,-91.18554095940947,-91.18563175429719,-91.18592019442549,-91.18632045596472,-91.18650267004746,-91.18690251071531,-91.18717260526552,-91.18726319040215,-91.18753685296527,-91.18775509321139,-91.18793354460301,-91.1881532512157,-91.18852916631566,-91.18976912578485,-91.19025998911039,-91.19064987555831,-91.19093791273366,-91.19119490051818,-91.19142398478765,-91.19170680442951,-91.19206751706963,-91.19262255856979,-91.19297182328727,-91.19327796577905,-91.19374325452588,-91.19479690662679,-91.19594181279702,-91.19710362530373,-91.19770808725427,-91.19830066200757,-91.19894200212929,-91.20000452971988,-91.20114541151443,-91.20128164575138,-91.20165119000245,-91.20200886774855,-91.20253883751724,-91.20294652242976,-91.20340649321847,-91.20363773122035,-91.20376522894745,-91.20395522781334,-91.20417919631366,-91.20440046331305,-91.20461675862252,-91.20471200473747,-91.20475722761745,-91.20483913895993,-91.20484271160512,-91.20475773328143,-91.20456901118568,-91.20435300327172,-91.20397264389608,-91.20356291745279,-91.20331940396933,-91.20294215110248,-91.20249989434134,-91.20215096344482,-91.2018576418191,-91.20141682173781,-91.20035520045369,-91.20004540535994,-91.19954395465317,-91.19931124717694,-91.19913500060719,-91.19889145842963,-91.19859686265934,-91.19832538824203,-91.19793225327177,-91.19775557590511,-91.19758202722862,-91.19680528606922,-91.19660901179461,-91.19646503603597,-91.19640105774334,-91.1964054265173,-91.19633290189766,-91.19583219299699,-91.19566027611206,-91.19551106141392,-91.19524786311922,-91.19516552581835,-91.19501630231852,-91.19484395739087,-91.19465036318992,-91.19441779308559,-91.19385868516177,-91.19375053223774,-91.19353464037819,-91.19323955707505,-91.19271358527641,-91.19224699367776,-91.19205856650946,-91.19196591027813,-91.19197159385732,-91.19172796720193,-91.19138242504057,-91.19108422936796,-91.19073676991384,-91.19049161311996,-91.19029421427867,-91.19009605798355,-91.18989788423004,-91.1895989248803,-91.18914955114056,-91.18875095814315,-91.18845275578769,-91.18820532622321,-91.18800640852646,-91.18785634333751,-91.18746000276339,-91.18726108210775,-91.18706367513417,-91.1868650875336,-91.18651726392464,-91.18621905318054,-91.18592159567368,-91.18562529397379,-91.18537634818851,-91.18503188497318,-91.1847859455326,-91.18454000358052,-91.18429331585848,-91.18404738416059,-91.18389922278608,-91.18360477296658,-91.18345736089768,-91.18326069267468,-91.18291770957893,-91.18272103565776,-91.18252510564099,-91.18237653940409,-91.18223063293821,-91.18193841239439,-91.18179326702906,-91.1815973314184,-91.18149953985933,-91.18145402029577,-91.18140851281532,-91.18111744520814,-91.18102866024236,-91.18108169839446,-91.1809853963598,-91.18089025752954,-91.18074469183131,-91.18060178065376,-91.18060477858972,-91.18065931946209,-91.18061229216583,-91.18051899375791,-91.18047423561053,-91.18037908922564,-91.1803858491068,-91.18044039333341,-91.18049301211992,-91.18054829468294,-91.18060133488447,-91.18075552077802,-91.18080856185644,-91.18091238629142,-91.18101352913955,-91.18136257628562,-91.18161158002218,-91.18216183169378,-91.18236154603089,-91.18271244263798,-91.18291407206777,-91.1832126812739,-91.18366329848142,-91.1840642322792,-91.18436475769521,-91.18471490630478,-91.18496614673668,-91.18526742986212,-91.18541862540432,-91.1858207271373,-91.18627093741389,-91.18647215223815,-91.18667262163385,-91.18692312120869,-91.18707280610441,-91.18722062791674,-91.18736577950079,-91.1876587504003,-91.18775578207942,-91.18814839945962,-91.18824695639209,-91.1883420584917,-91.18838981525035,-91.18848837127729,-91.1885857502306,-91.18868429324927,-91.18893100797926,-91.18902913904819,-91.18922581508716,-91.1894717694623,-91.18936757395431,-91.18936531185847,-91.18926298061184,-91.18920916184157,-91.1892076580873,-91.18925389567664,-91.18935168956685,-91.18944754301688,-91.1894445101498,-91.18953926985199,-91.18958702230888,-91.18968288635371,-91.18982843030011,-91.18977385298096,-91.18977233618511,-91.18977083180552,-91.18986709269397,-91.19006300596867,-91.19020888385842,-91.19025664624313,-91.1905991759035,-91.19079473692855,-91.19109028777568,-91.19133696591557,-91.191831853639,-91.19222784201187,-91.19262570338283,-91.19287465482334,-91.19332254977832,-91.19356921888127,-91.19376662396277,-91.19386516339409,-91.19436002051226,-91.19450739689383,-91.19465595856184,-91.19504848898094,-91.1950969892299,-91.19524207816356,-91.19533680447414,-91.19528146109246,-91.19527993748518,-91.19532767488175,-91.19537425168171,-91.19542122680896,-91.19546669301403,-91.19575957055054,-91.19590389041781,-91.19609976676919,-91.19629680374378,-91.19639340275614,-91.19668854323942,-91.19673628896727,-91.19683287003848,-91.19688136547359,-91.19717575431054,-91.1972242490293,-91.19741630288172,-91.19756214926873,-91.19764899165702,-91.19767504176146,-91.19792050361538,-91.19838019257408,-91.19869129370599,-91.19904261459149,-91.19929932813899,-91.19950039626787,-91.19991379861446,-91.2003424080394,-91.20050369300378,-91.20058807929725,-91.2007170418342,-91.20083037824175,-91.20103393289719,-91.2017056885942,-91.20197632854763,-91.20231510871459,-91.20290744806954,-91.20355103700943,-91.20389792948835,-91.20429962297712,-91.20473005082179,-91.20538382612126,-91.20599573219206,-91.20631386501974,-91.20669052884573,-91.20715720486253,-91.20766407414547,-91.20859222927419,-91.2101028657065,-91.21068784977966,-91.21113702782155,-91.21149328871954,-91.21175745498935,-91.21216786492764,-91.21282725293167,-91.21332726847436,-91.21385333463648,-91.21413083171957,-91.21453979080739,-91.21500000614121,-91.21548875143877,-91.21618668481709,-91.21684522178963,-91.21756898702397,-91.21809504498943,-91.21839816275856,-91.21913257283501,-91.22002572931217,-91.22078782317814,-91.22156407451601,-91.22222281929788,-91.22296215119026,-91.22358336032856,-91.22412500008595,-91.22462642915291,-91.2251444695833,-91.22596008927607,-91.22656343357028,-91.22716881848966,-91.22758349010948,-91.22820916533324,-91.22893081247209,-91.22968135386154,-91.23020344164932,-91.23053749163699,-91.23088404512595,-91.23148405439217,-91.2320875263684,-91.23242481768713,-91.23283490489906,-91.23308196053912,-91.23330895366246,-91.23373627352578,-91.23421995599932,-91.23448033086851,-91.23481347210678,-91.23517101793171,-91.23525382776074,-91.23534113862493,-91.23551065817735,-91.23582759222883,-91.23623413541962,-91.23697445751621,-91.23755321249148,-91.23811822243171,-91.23853888086637,-91.23891791003112,-91.23920590824099,-91.23947730249603,-91.23972145524982,-91.24011237416416,-91.24043564867027,-91.24069208939711,-91.24092716435665,-91.24124300659457,-91.24145966760484,-91.24190406044413,-91.24259196264178,-91.24326551460196,-91.24360330412767,-91.24388819076492,-91.24443895623187,-91.24487060207252,-91.24522513741577,-91.24567800654887,-91.24592230361706,-91.24640498465145,-91.24682126134536,-91.24717536313409,-91.24743782214335,-91.24773280130381,-91.24799931735723,-91.24823227262817,-91.2483673321514,-91.24866346649539,-91.24904721282758,-91.24947457594324,-91.24970853990789,-91.24980725987045,-91.24995542244018,-91.25010277566383,-91.25020390127263,-91.25038722463272,-91.25063510573297,-91.25095453178142,-91.25146585470735,-91.25165797895704,-91.25196128796462,-91.25296038583936,-91.25391898531032,-91.25411899400238,-91.25449455163786,-91.25483808265466,-91.2552296347172,-91.25601258790186,-91.25645954482088,-91.25679558019984,-91.25722682863672,-91.25780184418784,-91.2582811046768,-91.25854489836465,-91.25885672302235,-91.25924011213687,-91.25978353439311,-91.26033453321861,-91.26061431206998,-91.2610615988241,-91.26118894986543,-91.2612209611811,-91.26131669391604,-91.26138078010503,-91.26272267499769,-91.26320213073788,-91.26346537217917,-91.26368138435788,-91.26376936753518,-91.26383307238599,-91.26391308265414,-91.2639389225579,-91.26420857461345,-91.26455996589138,-91.26487959637726,-91.26547493086557,-91.2658144223206,-91.26585414694048,-91.26609117830762,-91.26655695797479,-91.26693989833704,-91.2671320515193,-91.26748369770235,-91.26802660575251,-91.26965553935618,-91.27029486876063,-91.27122134659858,-91.27160478335854,-91.27288294906769,-91.27400100736951,-91.27508719349676,-91.27527870485508,-91.27563014786513,-91.27578984964308,-91.27626902416485,-91.27678028057866,-91.27700375800991,-91.2776746293144,-91.27879301041857,-91.27943178031614,-91.28055002274941,-91.28083742134457,-91.28118845529553,-91.28173215695141,-91.28206938499459,-91.28235484104601,-91.28241067234372,-91.28246655258711,-91.28250675672784,-91.28260259567934,-91.28271460533409,-91.28285004237412,-91.28304984737805,-91.2831053276024,-91.28320121722089,-91.28358482349404,-91.28389653357516,-91.28408803454164,-91.28418360162874,-91.28427152258219,-91.28436727920712,-91.28478297808334,-91.2849105740996,-91.2851660230717,-91.28535787547439,-91.28548598756669,-91.28554965511103,-91.28599704254457,-91.28638040637601,-91.28669993772128,-91.28679541595173,-91.28692317059684,-91.28721088066673,-91.28749837793562,-91.28768980786471,-91.28836120564871,-91.28844850042965,-91.28858475248322,-91.28867251239181,-91.28891191387936,-91.28905584591877,-91.28926339903049,-91.28931106545757,-91.28951897291437,-91.28954263475615,-91.28951086363963,-91.28951082875567,-91.28953484469098,-91.28962276794701,-91.28999768981586,-91.2903413378842,-91.29062891813928,-91.29168282466972,-91.2920980022004,-91.29254524912034,-91.29273715451959,-91.29296106481139,-91.29369527996958,-91.29414232290902,-91.2944943365307,-91.29529239941041,-91.2960593965454,-91.29641065179754,-91.29682625800181,-91.29720938185973,-91.29752874786861,-91.29823161570732,-91.29928583722923,-91.30027647127591,-91.30069115550201,-91.30113903935492,-91.30139431523882,-91.30219327079857,-91.3024802290836,-91.30276830488607,-91.30299151145647,-91.30311898330376,-91.30334307485428,-91.30367076251643,-91.30371000577027,-91.30388572484544,-91.30398136232689,-91.30462061216163,-91.3054192477139,-91.30571434219667,-91.30615362252703,-91.3064090884068,-91.3065372260489,-91.30707971629704,-91.30739961166374,-91.3075909801511,-91.30781475255058,-91.30833151826606,-91.30896475479197,-91.30953936859638,-91.30982679372255,-91.31021057677606,-91.3103298203184,-91.31049811916201,-91.3106336499348,-91.31078529316571,-91.31094507838841,-91.31110487387474,-91.31129637284728,-91.31151986361814,-91.31169582381006,-91.31187127277352,-91.31204686744806,-91.3122303595791,-91.31235015840294,-91.31244605140523,-91.3127018483644,-91.31298921264373,-91.31356413717828,-91.31375593138711,-91.31397902799338,-91.31428318021,-91.31437350818781,-91.31474534844706,-91.31505697972719,-91.31524828523555,-91.31528015952473,-91.31563127237349,-91.31571886228902,-91.31603046746281,-91.31640584361523,-91.31675686721391,-91.31701229741188,-91.3173317666858,-91.31758729217069,-91.31781087349574,-91.31809823692069,-91.31835391531219,-91.31880109465909,-91.31899256870015,-91.31931244141629,-91.31948003943802,-91.31969547821822,-91.31995048127635,-91.32011043952673,-91.32046189276808,-91.32103649622688,-91.32200219175525,-91.3232398707444,-91.32364857314538,-91.32434169849087,-91.3248143783694,-91.32486893385457,-91.32544280275667,-91.32592191800629,-91.32601793302199,-91.32678413596624,-91.327550599745,-91.32784601645749,-91.32818884126446,-91.32854842484058,-91.32869991134154,-91.32893156328988,-91.32924255335291,-91.33001704349871,-91.3301690575844,-91.33045584680595,-91.3307832379208,-91.33114269377107,-91.33132625962116,-91.33140616514379,-91.33158127842583,-91.33182875762981,-91.33181252544559,-91.33190851421048,-91.33208860901073,-91.33216952044147,-91.33241875042417,-91.33360046036094,-91.3347180813668,-91.33526077414241,-91.33561186304162,-91.33577164238064,-91.33634613381764,-91.33663371380305,-91.33698507922691,-91.33778350874582,-91.33800719174275,-91.33823045996581,-91.33932360903945,-91.33973859647551,-91.34015345273399,-91.34047244207427,-91.34089506555773,-91.34241922662963,-91.34299408265578,-91.34346460743646,-91.34368812466732,-91.3445416416114,-91.34493268247613,-91.34548278692264,-91.34586604700543,-91.34602510279136,-91.34616927955776,-91.34624887786782,-91.34666324245576,-91.3468420309473,-91.34688693489566,-91.34707023633072,-91.34725359239022,-91.34765183860048,-91.34779601133867,-91.34816283786671,-91.34836967238803,-91.34866497213368,-91.34876053468945,-91.34894456393202,-91.3493270873675,-91.34982154757816,-91.35037960869239,-91.35074629001709,-91.3512646360623,-91.35151200339921,-91.3516955990407,-91.35227768008777,-91.35261250610161,-91.35294749440189,-91.3532109275373,-91.35339439152668,-91.35338631737088,-91.35353743855237,-91.35371254787863,-91.35401613673872,-91.35414347577786,-91.3544458923657,-91.35465308439764,-91.35476472279598,-91.35500440069796,-91.35531473730792,-91.35541026109587,-91.35552131211827,-91.35572095473981,-91.35608738411952,-91.35635828960788,-91.35667725032658,-91.35699622289003,-91.3572674029234,-91.357394864989,-91.35749831760981,-91.35779307911611,-91.35819185143032,-91.35895677529446,-91.35932415182565,-91.35973070743127,-91.36018486094994,-91.36034452743829,-91.36051186325587,-91.36066348057095,-91.36111776184904,-91.36130882362986,-91.36150792010964,-91.36191489741481,-91.36197083074588,-91.36280028492065,-91.36319101898079,-91.36380469796632,-91.36465800600514,-91.36536821336432,-91.36583818592717,-91.36622890498374,-91.36683505776742,-91.36709692852699,-91.36724961611696,-91.36779194517489,-91.36845418797164,-91.36890849476964,-91.36944329194472,-91.36976221884737,-91.37017709910211,-91.370687749195,-91.37097488307552,-91.37142172728761,-91.37177288973008,-91.37231505438915,-91.37292079198528,-91.37317610904644,-91.37362344181354,-91.37384631038246,-91.37413359396295,-91.37502737428177,-91.37513049134608,-91.37571036494633,-91.37593377568477,-91.37724282393343,-91.37804152308428,-91.37855179809576,-91.37912677352652,-91.37979717615144,-91.38014836780843,-91.38069124991448,-91.38081900749664,-91.38174509304442,-91.38225552062113,-91.38244754138313,-91.38267109810351,-91.38350112007382,-91.38398006997085,-91.38449150921113,-91.38451944542393,-91.38484231060833,-91.38535346673198,-91.38605609211481,-91.38615414092725,-91.38644694365952,-91.38693921457966,-91.38693904783,-91.38693883472763,-91.38718030947541,-91.38736340601692,-91.38784210288068,-91.38848065459311,-91.38895962109156,-91.38940642424784,-91.38956610393335,-91.38978956136017,-91.39026846947451,-91.39113075415818,-91.39148222673437,-91.39196093329306,-91.39247179971166,-91.39333443953706,-91.394100620347,-91.39534638073846,-91.39572985126415,-91.39611245101554,-91.39624051837887,-91.39636848314125,-91.39649585405475,-91.39706578675025,-91.39767775466156,-91.39834855322248,-91.39866804138131,-91.39917891919679,-91.39943452730449,-91.40000963669438,-91.400232983885,-91.40084022020598,-91.40170228281821,-91.40207009917248,-91.40224587819137,-91.4024374029036,-91.4025417214326,-91.40258936693013,-91.40270187375486,-91.40266168509486,-91.40244656910632,-91.40239889315697,-91.40241468110156,-91.40248684423645,-91.4027108116982,-91.40275854265872,-91.40280691924195,-91.40325375509379,-91.40330993946689,-91.40332612114628,-91.40341378325425,-91.40393253484433,-91.40395654003035,-91.40394061917122,-91.40395642483983,-91.40406039926167,-91.40416390531605,-91.4043637587142,-91.40445131252432,-91.40470668897225,-91.40496199420255,-91.40540962804573,-91.40569711431057,-91.40579284263875,-91.40604807555553,-91.40620793207208,-91.40636774297381,-91.40654330017627,-91.40656720419918,-91.40655935764869,-91.40670316372791,-91.40682346494005,-91.40694326487827,-91.40723073686311,-91.40754997715298,-91.40770943665909,-91.40781344253527,-91.40797320470864,-91.40828391985927,-91.40835549192782,-91.40846720032471,-91.408706658627,-91.40899326876681,-91.40914524952318,-91.40924106677031,-91.40940052435649,-91.40946426542799,-91.40952033250166,-91.40961580823149,-91.4095998595793,-91.40945548707798,-91.40945557206676,-91.40951871217959,-91.40955015696514,-91.40961409877173,-91.40977304964986,-91.40990072871278,-91.4101322613725,-91.41039496489482,-91.41050648421844,-91.41083338255994,-91.41095283463545,-91.4111522537808,-91.4113199543422,-91.41139906315291,-91.41157421537996,-91.41157427991061,-91.41162177427931,-91.41194857354348,-91.41218781996777,-91.41244317236976,-91.4125390821351,-91.41262675489601,-91.41270641744903,-91.41281780881339,-91.41322469349508,-91.41395895729333,-91.41437419149997,-91.41498812785622,-91.41542716926676,-91.41587373654698,-91.41635225101599,-91.41718217652408,-91.41766040771174,-91.41804323976487,-91.41819443339233,-91.41856947467785,-91.41886457590135,-91.4190563577001,-91.41936686389148,-91.41945520848162,-91.41953460971044,-91.41966204251261,-91.41964513568631,-91.41950141626371,-91.41948508841899,-91.41962851145263,-91.41968400448179,-91.4197951576224,-91.42001881525904,-91.42019414370633,-91.42049711477407,-91.42075187205536,-91.42094317905662,-91.42099931812535,-91.42111922542382,-91.42117512423052,-91.4212783299717,-91.42154943040325,-91.42174095498136,-91.42202852178369,-91.42211570716721,-91.4221875639853,-91.42241881514117,-91.42253021700884,-91.42267411720978,-91.42274556234791,-91.4231360315889,-91.42340645742009,-91.42354972291044,-91.42362145905741,-91.42367652100883,-91.42379695768145,-91.42453060222962,-91.42507354644934,-91.42529645892338,-91.42561574777883,-91.42571163323773,-91.42592673833951,-91.42603853613817,-91.42626911282012,-91.42677918267056,-91.42685893668752,-91.4274971908649,-91.42832663297493,-91.42870997480156,-91.42928433303102,-91.42973168169436,-91.43005083322521,-91.43033786804031,-91.43091204510493,-91.43177433259532,-91.43212556914631,-91.43282783760192,-91.43289184289492,-91.43308312751651,-91.43321070726952,-91.43340885511628,-91.43346611413651,-91.43384928457418,-91.43397703853327,-91.4344871332286,-91.43486966986542,-91.43507824697502,-91.43544349802714,-91.43555502406167,-91.43562625477442,-91.43572129701199,-91.43577726371991,-91.43620732874258,-91.43643031431129,-91.43679675759421,-91.43709973342496,-91.43723490028508,-91.43757801351002,-91.43772120435439,-91.43788057975654,-91.43798426286291,-91.43811945877802,-91.43816699925968,-91.43829456574537,-91.43845434551234,-91.438661621802,-91.43904431590411,-91.43915577088646,-91.43927500629208,-91.43937832431669,-91.43953829331805,-91.43972956370811,-91.44011269160505,-91.44033606186268,-91.44084664932122,-91.44106970465344,-91.44142884820718,-91.44162792110102,-91.44189918509848,-91.44212241411097,-91.44247308615697,-91.4430475130976,-91.4433024425159,-91.4435021636416,-91.44384509632977,-91.44394085224093,-91.44416435087597,-91.44445156062741,-91.44458756802784,-91.4449940083192,-91.44515333971512,-91.4454089415074,-91.44564805081285,-91.44631741313106,-91.44686007285924,-91.44754584186417,-91.44811207869564,-91.44829532964273,-91.44877372960042,-91.44922056818818,-91.44931670029331,-91.44951406754134,-91.45001873975529,-91.4504333384486,-91.45065714463503,-91.45103993112558,-91.45241288676036,-91.45273182647267,-91.45301906201145,-91.45346569788899,-91.45384834833851,-91.45432686672027,-91.45449433193832,-91.45461441954153,-91.45466876525222,-91.45474211510354,-91.45484553199501,-91.45501294879541,-91.45541175136557,-91.45589029625931,-91.45628056261504,-91.45704611430001,-91.4574925772952,-91.45777161559671,-91.45815440590387,-91.45882410356124,-91.45921484394349,-91.45933440929203,-91.45968543962448,-91.4600364398209,-91.4601956928163,-91.46061108776088,-91.46118506946419,-91.46179098865856,-91.46202249553107,-91.46246885549944,-91.46301865067063,-91.46313816097619,-91.4639273173588,-91.4642460758983,-91.46475716034871,-91.46587372425408,-91.46689447830889,-91.46730948778206,-91.46778837258692,-91.46794762921211,-91.46829829944609,-91.46855384362271,-91.46896906764867,-91.46960682758855,-91.46979809997529,-91.47015679000528,-91.47054750340791,-91.47131339849099,-91.47185579048484,-91.47243011240747,-91.47338732418883,-91.47383421311909,-91.47405785267715,-91.47450414668916,-91.47491933160208,-91.47552550629246,-91.47594050253852,-91.47613226205033,-91.47638733162486,-91.47673844678856,-91.47724823241995,-91.47750382306839,-91.47785497679909,-91.47814263220187,-91.4789723938442,-91.47938687777126,-91.47964235170912,-91.47989773128428,-91.48015360549475,-91.4810791072053,-91.48149342727214,-91.4819083195998,-91.48204426306529,-91.48219523187689,-91.48229147232712,-91.48238712638405,-91.48264221613159,-91.48302487139999,-91.48344023377497,-91.48385471069678,-91.48433345869174,-91.48487576688882,-91.48529040635133,-91.48567283132196,-91.48583236156304,-91.48627901078144,-91.48656573930602,-91.48701253675199,-91.48743539140762,-91.48758637392963,-91.4876180583459,-91.48805798434422,-91.48840153497956,-91.4885512463259,-91.48870290333696,-91.48886258358881,-91.48914959922158,-91.48934191361167,-91.4895010975866,-91.48978844190752,-91.49001237350218,-91.49026759517315,-91.49074602003682,-91.49096897613643,-91.49126387233188,-91.49157470347187,-91.49192542727981,-91.49243603613056,-91.49276270164812,-91.49291441097228,-91.49301758482035,-91.49304895503742,-91.49308847165972,-91.49343133032991,-91.49370986840735,-91.49396495699828,-91.49428353015556,-91.49442741779227,-91.49458606191988,-91.49473745512788,-91.49492061473451,-91.49533520308033,-91.49591675006671,-91.49605249167411,-91.49640310746929,-91.49697602966936,-91.49732620497751,-91.49793039859745,-91.49837572432092,-91.49859780201697,-91.49880490798704,-91.49934599788773,-91.49975986946167,-91.50011532791851,-91.50166455132472,-91.5030691120098,-91.50361263827628,-91.504985341761,-91.50590725289315,-91.50672539934681,-91.50704419159246,-91.50745898507377,-91.50752328988257,-91.50758732731175,-91.50758567271563,-91.5078266239865,-91.50798663302351,-91.50900804511943,-91.50935869593957,-91.50955855593563,-91.51028517081919,-91.51079607416841,-91.5112111592688,-91.51175367836639,-91.51236002098149,-91.51271131794117,-91.5134133148281,-91.51405156040947,-91.51491334768896,-91.51542372955397,-91.51602997806378,-91.51641328777022,-91.51721061191589,-91.51858298223402,-91.51941274027833,-91.5197950485955,-91.52033765442431,-91.52068823418087,-91.52110357633127,-91.52148648793245,-91.52234802720993,-91.522539531766,-91.52279510570894,-91.52324186581215,-91.52372041619223,-91.52419976047767,-91.52499710604278,-91.52510685896483,-91.52524823631596,-91.52535712967799,-91.52536458871253,-91.52552367832419,-91.52635406606358,-91.5269280273813,-91.52865146676416,-91.52964077823798,-91.53047081614955,-91.53101268630623,-91.53200170596503,-91.53315027883079,-91.53455485512195,-91.53544849778709,-91.53640537457279,-91.53720316325439,-91.53787288998203,-91.53962784917503,-91.54042585042542,-91.54088570293783,-91.54127077888275,-91.54200460910111,-91.54241942453831,-91.54286587824471,-91.54340810500862,-91.54388689215547,-91.54414184133128,-91.54442922297058,-91.54481213430651,-91.54525870859122,-91.54580082581975,-91.54666220892496,-91.54710862454505,-91.54733227168373,-91.54803403764593,-91.54864027811394,-91.54905482036941,-91.55020357996347,-91.55135228570497,-91.55235295540521,-91.55188974658218,-91.5519281624251,-91.5521414564036,-91.55235241947545,-91.55217473090202,-91.55204528552802,-91.55205208136465,-91.55244294864528,-91.55287841257615,-91.55321769943006,-91.55329773282712,-91.55326087652574,-91.55325517950138,-91.55330770125484,-91.55350060213522,-91.55355081924885,-91.55346686906758,-91.55376943171643,-91.55349181125838,-91.55160979957111,-91.55225728830621,-91.55221572069907,-91.55207959504114,-91.55202381716381,-91.55162227516527,-91.55159767284113,-91.55174091028499,-91.55173246572032,-91.55171741089725,-91.5515000466185,-91.55156775208123,-91.55156301339503,-91.55153824038889,-91.55133370441162,-91.5511934266593,-91.55102738271306,-91.55126322544609,-91.55131566624641,-91.55103863638104,-91.55109605499496,-91.55100515664554,-91.5509843790401,-91.55074395021509,-91.55089860470041,-91.55088463277286,-91.55113238309887,-91.55126853596263,-91.55124049386797,-91.55131289622062,-91.53050943542401,-91.50958405647428,-91.48845265825348,-91.4675460153219,-91.44677722392416,-91.42590338937963,-91.40570392069347,-91.38452480548538,-91.36330681119999,-91.34311283079421,-91.32181963168668,-91.30170736955168,-91.28029265942791,-91.25959455578142,-91.23838054242289,-91.2174136531706,-91.19630255075511,-91.17548705828574,-91.15436773661547,-91.13356775103141,-91.11291921661528,-91.09299013943355,-91.07212808365776,-91.05107098113314,-91.03994923894859,-91.02968024813083,-91.00824697490627,-90.98738986636819,-90.96643466140949,-90.94545377633617,-90.92455106201477,-90.92467011001172,-90.92485885783672,-90.92493569873177,-90.9246256700015,-90.92436433669022,-90.92420313575633,-90.92461590028127,-90.92479972170916,-90.924923444654,-90.92470835348915,-90.924415311357,-90.92418592383031,-90.92401024890118,-90.92398247832365,-90.92413855227068,-90.92422331798467,-90.92451293013552,-90.92445685826286,-90.92445842054902,-90.92443429240105,-90.92423772491883,-90.92434806178285,-90.92436719858617,-90.92441278229703,-90.9274289982731,-90.9274060912018,-90.92733536725326,-90.92722879141787,-90.92716078399027,-90.92700607737032,-90.92721872049879,-90.92746600607111,-90.9276135173112,-90.92827953842148,-90.92863050253183,-90.92901259120461,-90.92910837712827,-90.92949013311942,-90.93044553373538,-90.93111371627373,-90.93182995554271,-90.931837217395,-90.93202187709791,-90.93221837278055,-90.93270551467464,-90.93353300122476,-90.93417000836428,-90.93429264672092,-90.93441397099205,-90.93459551536672,-90.93480094305519,-90.9350059902785,-90.93524198251563,-90.93548671142597,-90.93588965540404,-90.93610205738544,-90.93641026781046,-90.93655349667229,-90.93679274629714,-90.93703684774933,-90.93723539993155,-90.93730797045934,-90.9374669596632,-90.93784926969556,-90.93835938877368,-90.93878190797254,-90.93889880866271,-90.93880681437199,-90.93865624495626,-90.93864075505795,-90.93879266529973,-90.93901574106508,-90.93907935126535,-90.93914289179934,-90.93918251139166,-90.93924565179992,-90.93934833702511,-90.93950742724677,-90.93969843709094,-90.93992207735468,-90.9400341184224,-90.94029834258792,-90.94048214254691,-90.94060995402715,-90.9408004926412,-90.94105560128969,-90.94134176425486,-90.9414769326555,-90.94153183935231,-90.94155596008072,-90.94155566398608,-90.94153940785547,-90.94137840511164,-90.94144143777184,-90.94143332573681,-90.9413856905302,-90.94113793127634,-90.94105695453925,-90.94096079063634,-90.94072941772038,-90.94057007856381,-90.94037909113692,-90.94031528967589,-90.94036257160595,-90.94063291432498,-90.94059248449368,-90.94061591415318,-90.94074320717478,-90.94090354357697,-90.94103105303606,-90.94120736918488,-90.94129607796235,-90.94140842454863,-90.9416232575564,-90.9416713151284,-90.94173631995925,-90.94181618838837,-90.94187982615014,-90.94196676983745,-90.9420382291394,-90.9423070456411,-90.94267983836734,-90.94298938376572,-90.9434657591848,-90.94365633363418,-90.94400605476206,-90.94409701264507,-90.94435994524605,-90.94461919632981,-90.94461970452996,-90.94451029287492,-90.9445272365283,-90.94457491220047,-90.94483791179157,-90.94499770268665,-90.94505348067287,-90.94502196831141,-90.94504615019187,-90.94514205375805,-90.94531759244653,-90.94539691280791,-90.94546048068899,-90.94549203786907,-90.94549975302824,-90.94544358925528,-90.94542713002168,-90.94553012986219,-90.94572492791866,-90.94575335985732,-90.94590830857123,-90.94603875057483,-90.94621405298973,-90.94652196430533,-90.94657152033636,-90.94701027215609,-90.94732169965658,-90.94757823504628,-90.94769143158864,-90.94787590235228,-90.94800342919963,-90.94840285970587,-90.94857060606942,-90.94857077961451,-90.94850761856455,-90.94824502420842,-90.94815770106354,-90.94807023669665,-90.94787314861576,-90.94783185914987,-90.94745346903795,-90.94733427344789,-90.94709633252458,-90.94706463578274,-90.94711301082165,-90.94723190583019,-90.94748700034758,-90.94758243167998,-90.94763020411519,-90.94763046532422,-90.94738534316397,-90.94727637662994,-90.9472285982812,-90.94707748654999,-90.94661646853403,-90.94656855098013,-90.94688836472689,-90.94699975708592,-90.94710368221914,-90.94721651309776,-90.9473445201151,-90.94744209621294,-90.94752265298331,-90.94768286782887,-90.94769935248186,-90.94762825961084,-90.94758081345979,-90.94762906884587,-90.94784464103134,-90.94818759344132,-90.94858564802054,-90.94890383615513,-90.94903107171558,-90.94900805303277,-90.94897602178088,-90.94871328490807,-90.94858647429328,-90.94848337762177,-90.94846772925118,-90.94846808483757,-90.94850789835502,-90.94872314235649,-90.94881132770763,-90.94888298420307,-90.94901809472901,-90.94908994869328,-90.94912232196184,-90.949122558277,-90.9490751364648,-90.94886140298965,-90.94882213172649,-90.94880759124679,-90.94867955446051,-90.94837146364939,-90.94796848881903,-90.9483358683447,-90.94842312961674,-90.94855054114986,-90.94910559046298,-90.94932760584823,-90.94936263323015,-90.94952160582604,-90.94961994412547,-90.94964241509534,-90.94963244830011,-90.94975042254487,-90.94985754412849,-90.94998497760248,-90.95022894088203,-90.95028290245843,-90.95041148469532,-90.95062415214682,-90.95079518625496,-90.95092300335857,-90.95103125201766,-90.95104483488662,-90.95107895768984,-90.95119719935741,-90.9513793285675,-90.95139426391106,-90.95155230712825,-90.95155592919443,-90.95165301349918,-90.95166149167503,-90.95157333385609,-90.95143528771233,-90.95121185533179,-90.95101080932457,-90.95084120113739,-90.95063004552135,-90.95047335653584,-90.95049867154115,-90.9505013272981,-90.95052782926706,-90.95054472159499,-90.95054558784895,-90.95048261283603,-90.95015020362553,-90.9499924723265,-90.94965215494932,-90.94942222121389,-90.94912926067569,-90.94878861212527,-90.948653384818,-90.94859037098631,-90.94855110580031,-90.94841707526409,-90.94819488367801,-90.94803637672233,-90.94772601378276,-90.94763874351169,-90.94752844777219,-90.94733786631298,-90.94705140433099,-90.94682912373516,-90.94635223692268,-90.94626508872263,-90.94614596571346,-90.94594816246548,-90.94580603894528,-90.94567855906104,-90.94535248980245,-90.94524193211062,-90.94494118887928,-90.9447668043095,-90.94464747960727,-90.94455257518416,-90.94419466691994,-90.94390891224742,-90.94339980750861,-90.94301894833556,-90.94282792581828,-90.94245481639619,-90.94188324449435,-90.94069701289223,-90.93986688591809,-90.93915326330284,-90.93896271072661,-90.93863673266999,-90.93850977033331,-90.93823331527675,-90.93820178076059,-90.93820243015131,-90.93815600159935,-90.93807773492119,-90.93782599511211,-90.93765220798834,-90.93750961337237,-90.93738312480859,-90.93693779809553,-90.93682655712888,-90.93669193230666,-90.9365962516563,-90.93649364509002,-90.9364625155546,-90.93647879197556,-90.93652742362812,-90.9366713665694,-90.93675164814699,-90.93682032683758,-90.9362713632791,-90.93624121510227,-90.9358136348512,-90.93571874475889,-90.93571972857868,-90.93583289320675,-90.93586599629862,-90.93585055871543,-90.93580345216844,-90.93573232065997,-90.93564531129991,-90.93530364542399,-90.93522470272177,-90.93496344437126,-90.93467082268033,-90.93429006904115,-90.93407585559108,-90.93352796900304,-90.93312271200637,-90.93286061974307,-90.9325425443697,-90.93222396362245,-90.93204104332595,-90.93200148312965,-90.93201037719417,-90.93215814622121,-90.93218783539302,-90.93212042439519,-90.93198479073416,-90.93184989107074,-90.9314692959512,-90.93135006185447,-90.93108779625143,-90.93096856247634,-90.93087324408579,-90.93065941529591,-90.93043751306881,-90.9301757480393,-90.9300170117685,-90.92993039119406,-90.9296438456831,-90.92897588754835,-90.92865761118873,-90.92860247460474,-90.92855475888562,-90.92854146922187,-90.9284783916965,-90.92833608814811,-90.92832861824938,-90.92846795666084,-90.92845262372725,-90.92829502986407,-90.92795458660932,-90.92778875555202,-90.92755162798939,-90.92745669826853,-90.92737837945809,-90.92725154833602,-90.92699762196925,-90.92690279378475,-90.926792319974,-90.92674518436908,-90.92674798646425,-90.92678069613062,-90.92675088053929,-90.92670404736742,-90.92653081882737,-90.92654735724447,-90.92653236237467,-90.9264930117432,-90.92632837037765,-90.92620823441773,-90.92608102504988,-90.92543689077139,-90.92511874029489,-90.92485644120111,-90.92464153629432,-90.92437113072185,-90.92392646702119,-90.92374348187664,-90.92366362113968,-90.92344201660813,-90.9232353069507,-90.92314777364199,-90.92296532011574,-90.9226470164993,-90.92236108557718,-90.92190773983239,-90.92182017995052,-90.92146302231149,-90.9212879828785,-90.9211371176618,-90.92112154803546,-90.92108997269139,-90.92051874005523,-90.92047116306867,-90.92045539673046,-90.92047125392695,-90.92059899347269,-90.92061516430402,-90.92075881501363,-90.920966178664,-90.92098226132161,-90.92107786082305,-90.92118941721415,-90.92120553878097,-90.92118950939344,-90.92104704015989,-90.92104694187211,-90.92112674344179,-90.92112700784492,-90.92106313594581,-90.92103924385229,-90.92111179189277,-90.9209846388252,-90.92104818447845,-90.92117542121311,-90.92119167931595,-90.92120845048021,-90.92111362069986,-90.92095434513824,-90.92085960250644,-90.92082814542877,-90.92082048873547,-90.92084462371551,-90.92098414544508,-90.9209129923895,-90.92089261384133,-90.92082979476812,-90.9206232900486,-90.92043234557302,-90.92014624992669,-90.92004235641944,-90.9198833038478,-90.91960504008284,-90.91940597946167,-90.91931058848392,-90.91906433058844,-90.91887344108507,-90.91878628918293,-90.91874643229859,-90.91877832727127,-90.91877900290304,-90.91872361988807,-90.91843759056741,-90.91841380038309,-90.91841357765732,-90.91846144398914,-90.91847765129802,-90.91854175970616,-90.91854191981855,-90.91858999771651,-90.91870155459041,-90.91862255326706,-90.91855885643133,-90.91852705122849,-90.9183765293117,-90.91824928446394,-90.91789961282788,-90.91778054990323,-90.91723917813508,-90.91682598167792,-90.91647576345957,-90.91621356994047,-90.91603857506598,-90.91579218740644,-90.9157920471861,-90.91585602965772,-90.9160156356193,-90.91601579539794,-90.9159681668468,-90.91606402760311,-90.91606407635344,-90.91599284324613,-90.91549924515947,-90.91537227804925,-90.91531687901754,-90.91531668923926,-90.91541281896838,-90.9154286464521,-90.91540521895952,-90.91535773237288,-90.9151900276795,-90.91502333277329,-90.91489593085589,-90.91480827676381,-90.91479272512014,-90.91480851187163,-90.91488018316512,-90.91504762512277,-90.91500762005225,-90.91476933794482,-90.91469767014347,-90.91472155187493,-90.91477732770264,-90.91486449691078,-90.9150872747942,-90.91518297990528,-90.91522323921072,-90.9153664484885,-90.91537494435521,-90.91524774605247,-90.91522398793914,-90.91531127308336,-90.91528732518265,-90.91512853261251,-90.9150888479893,-90.91512870243116,-90.91520025566066,-90.91524033570198,-90.91521625349735,-90.91509689881795,-90.91510462051306,-90.91515263587439,-90.91528019689346,-90.91562772461963,-90.91557471092365,-90.91552704657704,-90.91570295798456,-90.91573484414278,-90.9157348999795,-90.91583073228308,-90.91583081982455,-90.91575099522004,-90.91550429515301,-90.91559996498778,-90.91585488751974,-90.91603010099995,-90.91602965614638,-90.91624335442283,-90.91569580070097,-90.91563196635553,-90.91555284460826,-90.91554496988296,-90.91575201190541,-90.91572821482791,-90.91560095614385,-90.91556934078055,-90.91557707155351,-90.91562508514222,-90.91573640945469,-90.91579224550162,-90.91595159355887,-90.9159116821542,-90.91569723320585,-90.91566548529465,-90.91543436189247,-90.91547490261902,-90.91564995882484,-90.91566603410192,-90.91561809739218,-90.91572967894156,-90.91580148252454,-90.91578590727906,-90.91588124113001,-90.91584994006256,-90.91584997744414,-90.91593760111178,-90.91592996345035,-90.91596196857951,-90.9159465185819,-90.9159815032841,-90.91577957988042,-90.91550979440737,-90.91540616174326,-90.91535844825756,-90.91534320860058,-90.91537506183268,-90.91537535283932,-90.91540731850422,-90.91550308490531,-90.91555107012653,-90.91556749842343,-90.91559956825854,-90.91557576849539,-90.91550459284252,-90.91536895252987,-90.915329072327,-90.9153531497746,-90.91549670934397,-90.91552073647692,-90.91545912023398,-90.91540987703159,-90.91534703852379,-90.9152512993688,-90.91525162930505,-90.91533103523595,-90.91532306694864,-90.91510861806795,-90.91486212590303,-90.91453617069513,-90.91434527378144,-90.91393180538536,-90.91368494723561,-90.91360523405113,-90.91351802306511,-90.91338256232865,-90.91309578495429,-90.91296880719952,-90.9128414769897,-90.91269822970749,-90.91248364599151,-90.9125396269515,-90.91261131528678,-90.91291416156922,-90.91294625330643,-90.912922447508,-90.91271539406587,-90.91259574624742,-90.91253248266874,-90.9125961257384,-90.9125639773475,-90.91242815453897,-90.91235685865301,-90.91235657066946,-90.91243585204332,-90.91243587526318,-90.91237205108474,-90.91230057081096,-90.91218881230432,-90.91204588657337,-90.91193451018036,-90.91175174194147,-90.91173042202983,-90.91160086378724,-90.91147345877843,-90.91131448645942,-90.91112317630994,-90.91105954775257,-90.91101190288673,-90.91100406224378,-90.91109920769651,-90.911107539749,-90.91105213514417,-90.91094847369732,-90.91087681336035,-90.91086103539421,-90.91088464303137,-90.91107642983498,-90.91114848237368,-90.91112392175364,-90.91110548226735,-90.911092480778,-90.91096512083963,-90.91081055986089,-90.91094932045112,-90.91105308660899,-90.91111676041054,-90.91126026690438,-90.91127637360148,-90.91151501931658,-90.91153156497634,-90.9114995872194,-90.91139645357514,-90.91121362218598,-90.91092658537563,-90.91074355927044,-90.91031389303015,-90.91012271307667,-90.9099954449419,-90.90984417096655,-90.9097007347096,-90.90966067866286,-90.90962122527047,-90.90932627022789,-90.90926263993526,-90.90918277110711,-90.90912747996222,-90.90919165601508,-90.90918361180454,-90.90920747459815,-90.90933540435142,-90.90955001999349,-90.9095898936387,-90.90955823060844,-90.90950251879644,-90.90929539424813,-90.90909661515849,-90.9087150631639,-90.90848416996587,-90.90816569254606,-90.90749675770606,-90.90705122963023,-90.90670023354457,-90.90661262606385,-90.90659677197468,-90.90656476429679,-90.90628625105333,-90.90619057107141,-90.9061352944169,-90.9061114692942,-90.90605565050802,-90.90591989796793,-90.90572926000885,-90.90557797148244,-90.90549827477069,-90.90543422671155,-90.90537844938856,-90.90535488046842,-90.90525172903861,-90.9052433507799,-90.90521181543403,-90.90504444457748,-90.90500464662765,-90.9049735894192,-90.90480605530601,-90.904719113976,-90.9044566520203,-90.90435290118589,-90.90415405900488,-90.90380374240078,-90.90358037100243,-90.90319846102203,-90.9028801914852,-90.90272060167671,-90.90260940564046,-90.90233058797885,-90.90214799621829,-90.9015109110473,-90.90077842635675,-90.90065909177858,-90.90033269284774,-90.90001428536509,-90.89956873808504,-90.89921805095913,-90.89905909496413,-90.89864490805249,-90.89827883870105,-90.89810371981052,-90.89794440022776,-90.89768971802484,-90.89759421505318,-90.89725968658502,-90.89695724721274,-90.89670251469586,-90.89638378707507,-90.89628818534801,-90.89593814153024,-90.89561967655612,-90.89546057822207,-90.89520539529431,-90.89510980457339,-90.89502251529811,-90.89473600033836,-90.89448140254748,-90.89436170240137,-90.89421867483942,-90.89374070685344,-90.89332696436986,-90.89316764962329,-90.8925624898454,-90.89192533680377,-90.89173406193834,-90.8915751954836,-90.89141623759735,-90.89128827224593,-90.8911051155347,-90.89089040789841,-90.89050807734533,-90.89025393208021,-90.88995177117414,-90.88975220948281,-90.88939410179732,-90.88920309022288,-90.8890120362361,-90.88859422747835,-90.88733189309788,-90.88742341400189,-90.88717887643554,-90.88550427856435,-90.8852957684781,-90.88393424070199,-90.88352681662928,-90.88503510242874,-90.88515447082911,-90.88565869371247,-90.88580388658394,-90.88591507017101,-90.88604293784621,-90.88604304351003,-90.88593954464129,-90.88585968108137,-90.88574041613929,-90.88539817041404,-90.88528693242604,-90.88511177573952,-90.88507198937563,-90.88505616400613,-90.88493698055539,-90.88488091030628,-90.88480186726042,-90.88473808024743,-90.88466608350161,-90.8845389077284,-90.88450695292089,-90.88445909926314,-90.88443539854072,-90.88434763365422,-90.8843718957044,-90.88429198767349,-90.88413295818287,-90.88398181679717,-90.88387845937729,-90.88386262988952,-90.8838944405688,-90.88402987043908,-90.88406934965744,-90.8840773665068,-90.88402201560059,-90.88384685052687,-90.88359196581419,-90.88342456260499,-90.88330536798964,-90.88324198920019,-90.88313829993255,-90.88299515743583,-90.88290743237042,-90.8828196423266,-90.88274022609852,-90.88267663954653,-90.88262088810441,-90.88245341758007,-90.88239815791704,-90.882374309472,-90.88240576881836,-90.88238237953267,-90.88219968823384,-90.88188095493916,-90.8817851464445,-90.88165025529302,-90.88140327669188,-90.88111715918851,-90.88077466325056,-90.88029689113716,-90.88000251645846,-90.87961996290721,-90.87946073759805,-90.87911817027607,-90.87904685254136,-90.87872798580673,-90.87856884978153,-90.87848901947339,-90.87838604209432,-90.8782426426994,-90.87815523831152,-90.87805972163508,-90.87770922782424,-90.87762969174982,-90.87735142612992,-90.87710451601951,-90.87676970709259,-90.87657875684697,-90.87651505127624,-90.87633985254871,-90.87611796723667,-90.87575055671016,-90.87555969064326,-90.87527285175216,-90.87517852134653,-90.87506925738178,-90.87494164971588,-90.87462320988372,-90.87452732773265,-90.8742406180498,-90.8739853352277,-90.87376266636142,-90.87366714699586,-90.87345997264848,-90.87337956824672,-90.87322055473335,-90.87312526084284,-90.87298934790294,-90.87294147630362,-90.87280823975887,-90.8725505624779,-90.87243101495855,-90.87211216490324,-90.87203229950173,-90.8719765222897,-90.87188067732706,-90.87165781514562,-90.87147435756454,-90.87137097546785,-90.87111599461234,-90.87092450021717,-90.87078113721735,-90.87070130264102,-90.87064553593694,-90.87054192377079,-90.87019115440128,-90.87012767182935,-90.8700797570621,-90.87006406121027,-90.87011880454385,-90.87008635883171,-90.87000674684822,-90.86939298837802,-90.86907456730862,-90.86897865638085,-90.86880353665407,-90.86857167984826,-90.86845208463023,-90.86832476403904,-90.86800606747835,-90.86791865942867,-90.86785476366266,-90.86790199510069,-90.86798950292985,-90.8679496430628,-90.86799739808734,-90.8679338952702,-90.86771023194487,-90.86757466670117,-90.86745493996364,-90.86729495944026,-90.86723035567044,-90.8672303067584,-90.86716166899828,-90.8670322452684,-90.86696732580867,-90.86685538963889,-90.8667285338376,-90.86663227146074,-90.86650507529831,-90.86632159906598,-90.86617810685082,-90.86611416348475,-90.86605024109934,-90.86594642642231,-90.86559586901231,-90.86549231149361,-90.86547599530613,-90.8655556565397,-90.86553899063045,-90.86558675527716,-90.86558635080482,-90.86549866843653,-90.86525920255842,-90.86523527291502,-90.86526638524956,-90.86515529584759,-90.86517047955984,-90.86511431583028,-90.86469177541505,-90.86462819865359,-90.86457986267192,-90.86417289709948,-90.86388577724149,-90.86354279655484,-90.863151690761,-90.86294788558095,-90.86292228690391,-90.86279223374044,-90.86269625181284,-90.86217733726026,-90.86145181404036,-90.86110089970715,-90.86099726033451,-90.86080588835857,-90.86074222325135,-90.8606862314728,-90.86082952450799,-90.86081360498972,-90.86076560730609,-90.86067789178367,-90.86043862509788,-90.86039883674688,-90.86027878801264,-90.86018309888154,-90.86002353641328,-90.85995996225944,-90.85990430772543,-90.8597843860969,-90.85979184767577,-90.85976843212893,-90.85971232010577,-90.85935365711062,-90.85922549603087,-90.85903403771182,-90.85880258117278,-90.85857118961684,-90.85851518639764,-90.85846725285718,-90.85826797389512,-90.85820403452921,-90.85814819312139,-90.85806759919602,-90.85796395855995,-90.85778837821491,-90.85773225045926,-90.85758054030646,-90.85738919318754,-90.857237664416,-90.85663121357865,-90.85646358577293,-90.8562086749119,-90.85611304179996,-90.85599389201079,-90.85597744859527,-90.85600902041151,-90.85595324887966,-90.85586557364843,-90.85566655807722,-90.85558650856402,-90.85558672745495,-90.85565787744572,-90.855602079601,-90.85545032551519,-90.85540238647788,-90.85541827902306,-90.85546605616919,-90.85557745033068,-90.85596795429976,-90.85624642204691,-90.85642966664633,-90.85650123609089,-90.85617446396952,-90.85502702595512,-90.85470822409356,-90.85458867343421,-90.85452522377044,-90.85456444288826,-90.85468388600012,-90.85468369679698,-90.85460381305965,-90.85441227886058,-90.85434079386087,-90.85427641106675,-90.85418102915042,-90.85389385193362,-90.85377446662906,-90.85375863470665,-90.85377462465195,-90.85391697238548,-90.85391706665493,-90.85387704543184,-90.85388466214569,-90.85384482116974,-90.85350961941283,-90.85343702962594,-90.85337329943272,-90.85324492778459,-90.85311683915378,-90.85308504735843,-90.853124165609,-90.85309982988493,-90.85282813809086,-90.85276371318582,-90.8526831573361,-90.8526352389982,-90.85226729577136,-90.85228345283481,-90.85244229987816,-90.85248974882853,-90.85248951943312,-90.85244106746714,-90.85245666441936,-90.85253603821934,-90.85282233065682,-90.8529014694785,-90.85293272536919,-90.85298834769615,-90.85305955214361,-90.85323524175176,-90.8534103984159,-90.85384735514147,-90.85425307554621,-90.85477817715542,-90.85515987674881,-90.85596335065475,-90.85651277217084,-90.85663950251751,-90.8568146071682,-90.8567664111191,-90.85679762965378,-90.85686967918025,-90.8571162598633,-90.85713231847286,-90.85711620466996,-90.85714760447149,-90.85723465594812,-90.85739435076144,-90.85769668183373,-90.85780049218529,-90.85797524307387,-90.85812637024496,-90.85825335132677,-90.85841302086723,-90.85876536363531,-90.8588031588617,-90.85878744274201,-90.85880255900896,-90.85904126444942,-90.85904064952629,-90.85908782985805,-90.85938979103064,-90.85969217664959,-90.85973188276894,-90.85972358787797,-90.85966780269435,-90.85912505107737,-90.85902943548594,-90.85897355900666,-90.85899738560077,-90.85906134389123,-90.85938044711367,-90.85960338407058,-90.85985861974325,-90.86012129333243,-90.86067098019075,-90.86094971518985,-90.86115639962925,-90.8612039980858,-90.86123567588523,-90.86120372094491,-90.86117948127696,-90.86107562428283,-90.86074869146775,-90.86064521706747,-90.86061297194104,-90.86064450516881,-90.86060472158901,-90.86047689815554,-90.86043662673541,-90.86044456268907,-90.86049259772365,-90.86060415831707,-90.86108254888987,-90.86135364277483,-90.86154448808821,-90.86187939491242,-90.86212612928199,-90.86216599558986,-90.86231671342087,-90.86247616884366,-90.86250811418606,-90.86252344492422,-90.86254744530321,-90.86260316268654,-90.86283420521401,-90.86288247702971,-90.86286594807945,-90.86276250063207,-90.8628181705599,-90.86291384156748,-90.86297741522236,-90.86295372627399,-90.86296879971992,-90.86310435897198,-90.8632552624847,-90.86354804995248,-90.86365326498567,-90.86406721927558,-90.86414686580605,-90.86419382640014,-90.86413793048064,-90.86407393867754,-90.8639783546482,-90.86372321597555,-90.86364359888077,-90.86361987980951,-90.8639222468283,-90.86409710639622,-90.8640806405553,-90.86411212355257,-90.86430292901234,-90.86441446177054,-90.86430266292804,-90.86430237165506,-90.86449303607419,-90.8644930440163,-90.86454888714063,-90.86479545251751,-90.86515354710309,-90.86545625626472,-90.86552808294655,-90.86552776077747,-90.86548751066073,-90.86539966108656,-90.86524801227023,-90.86522430478466,-90.86524804924684,-90.86550288701429,-90.86566198529776,-90.86572568928176,-90.86578197018142,-90.86588499018747,-90.86594104401836,-90.8660285495414,-90.86618837468372,-90.86622829418971,-90.86627591539677,-90.86641878213192,-90.86641846042797,-90.86646614141594,-90.86659375462268,-90.8668086672196,-90.86696847814417,-90.86705566340534,-90.86723872987551,-90.86769253120661,-90.8679076989268,-90.86808301843789,-90.86820208097268,-90.86828165727238,-90.86824171498522,-90.86809789751371,-90.86808995598874,-90.86812983140621,-90.86820933055682,-90.86833689404163,-90.86843266982741,-90.86853619066746,-90.86890210898251,-90.86898137088244,-90.86910068892925,-90.8693396977597,-90.86962628276451,-90.87004806510042,-90.87022311350074,-90.87033437638682,-90.87049372052262,-90.87057307381316,-90.87058842718898,-90.87084281185585,-90.87084250601561,-90.87079519224031,-90.87081875054719,-90.87111302092988,-90.87128830415463,-90.87155844887361,-90.87206817492873,-90.87244952926335,-90.87344361302141,-90.87388160042028,-90.87439051202186,-90.87477233211949,-90.87488306282499,-90.87501026356084,-90.87518639152944,-90.87542365751359,-90.87554333435752,-90.87568702938322,-90.87570262752074,-90.8758144815266,-90.87583090909079,-90.87587821810486,-90.8759982140965,-90.87619754532888,-90.87632505780581,-90.87635743840032,-90.87642073180952,-90.87645871891357,-90.87652017361498,-90.87655983760122,-90.87651703180487,-90.87646907393864,-90.87646932354465,-90.87674010242968,-90.87688366583676,-90.87697956274525,-90.87701966479,-90.87722698452731,-90.87744205587759,-90.8775701366021,-90.87776124881175,-90.87817655552918,-90.87844769536026,-90.87859106419214,-90.87876720351245,-90.87884666431262,-90.87892625637954,-90.87905410212606,-90.87950121732784,-90.87978806412725,-90.88042694795887,-90.88069823874324,-90.88117702156006,-90.88175135897323,-90.88200710912433,-90.88216665053568,-90.88248615597153,-90.88291713316715,-90.88355536846329,-90.88373121433615,-90.88381117126973,-90.88400280860041,-90.88414648591584,-90.88424248393676,-90.88435403987793,-90.88459252070841,-90.88476011886559,-90.88491980334149,-90.88504825334061,-90.88511221904442,-90.88527188584533,-90.88524040383859,-90.88538430862305,-90.88541644870037,-90.88551227190281,-90.88556062815105,-90.88554496233519,-90.88536996647177,-90.88532205957929,-90.88532229788557,-90.88529080245061,-90.88516300237147,-90.88512341484251,-90.88514763383699,-90.88513147854393,-90.885115469203,-90.8849664709727,-90.88457369954826,-90.88447803522624,-90.88431816665563,-90.88415874507368,-90.88403928944159,-90.88372038167823,-90.88347343795634,-90.88307477143265,-90.88276377794854,-90.88257274849897,-90.88246892720801,-90.88224589789738,-90.88167103723208,-90.88144814121837,-90.88090572889114,-90.88077836950841,-90.88058725033937,-90.87994858247795,-90.87982121355877,-90.87943856511045,-90.87934311474827,-90.87892792638134,-90.87867292344627,-90.87841753809002,-90.87803521385734,-90.87765211838433,-90.87733287421931,-90.87682219062138,-90.87659936030894,-90.87637559281514,-90.87599286304304,-90.87554634847011,-90.87518987015576,-90.87507037873448,-90.87497434173439,-90.87445084827741,-90.87410216027557,-90.87398268074152,-90.87340178630876,-90.87276479710607,-90.87251799311352,-90.87240711178818,-90.87224038454374,-90.87201782118957,-90.87163527919954,-90.87129342712535,-90.87104701782133,-90.87071394676113,-90.87056295640572,-90.87023607944435,-90.86998962577201,-90.86940972258019,-90.86931416930521,-90.86851744044495,-90.86794401001616,-90.86740236433459,-90.86705169234064,-90.86666891302835,-90.86648566873509,-90.86634358145353,-90.86632774404814,-90.86629611981095,-90.86601001310976,-90.8659151897551,-90.86589971355028,-90.86594942048981,-90.86583988173992,-90.86574493963917,-90.86545970523129,-90.86522919102521,-90.86455373616464,-90.86421245369581,-90.86395830575501,-90.8635043595887,-90.86298036202403,-90.86289330032308,-90.86283766606778,-90.86251064214441,-90.86236780549935,-90.86231238074029,-90.86229624161733,-90.86232939492378,-90.86231366515469,-90.86220309980439,-90.86214773637471,-90.86191034601853,-90.8618632781825,-90.86185549493624,-90.8617305434563,-90.86158799120548,-90.86144527079284,-90.86136557558771,-90.86127271209672,-90.86114577793619,-90.86070203121061,-90.86052864885404,-90.86038643648578,-90.86010863517367,-90.8598068586392,-90.85962423803065,-90.85956160882174,-90.85956236067062,-90.85964372753399,-90.85962904205687,-90.85951875501475,-90.85929624507268,-90.85928863839305,-90.8593771079443,-90.85955443788959,-90.85965096325953,-90.86035646272867,-90.86087107297638,-90.86109694435858,-90.86124375491865,-90.86150875960823,-90.86169362603759,-90.86170938079957,-90.8616702011367,-90.86167867537489,-90.86188726147714,-90.86190438910573,-90.86193696441944,-90.86206469853161,-90.86229673618763,-90.86238497747298,-90.86302790081932,-90.86365502817357,-90.86378403719569,-90.86381719232632,-90.8637791335766,-90.86353627194208,-90.8633789697694,-90.86325270618462,-90.86295966771969,-90.86255584354795,-90.86206377177911,-90.86166754623487,-90.86145250350124,-90.86131781160272,-90.8611988498978,-90.86095167213207,-90.86086420413555,-90.86080934403952,-90.86074623227066,-90.86063499744313,-90.86029320769214,-90.85965653008955,-90.8591790267696,-90.85905114507815,-90.85885588161247,-90.85872022407638,-90.85836899538674,-90.85808969009881,-90.85793013730262,-90.85793506943862,-90.85765054455973,-90.85764212981283,-90.85743416036171,-90.85733093233712,-90.85716293342806,-90.85705932614259,-90.85699550948043,-90.85694804001257,-90.85694861941822,-90.85670714139928,-90.85670098241314,-90.8567328111417,-90.85676427750241,-90.85669182996462,-90.85659597195642,-90.85650075076838,-90.85638099053818,-90.85632436822362,-90.85627843278962,-90.85631075534144,-90.85628798743907,-90.8563522267342,-90.85635279993792,-90.85642516414443,-90.8564415548106,-90.85655352058588,-90.8565704379626,-90.85657148177458,-90.85659563545471,-90.85658916823982,-90.8565506052679,-90.85640907948026,-90.85630658904908,-90.85615578220219,-90.8559571996407,-90.85549670788762,-90.8553145390331,-90.85513764988143,-90.85469216465506,-90.8544928512914,-90.85321829768424,-90.8520711112641,-90.85133821087409,-90.85105150363552,-90.85095587207361,-90.85073215169054,-90.85047637785067,-90.85006051882304,-90.84980472929051,-90.84916547816876,-90.84878171003589,-90.84862216284745,-90.8482695161326,-90.84788586579579,-90.84654352975339,-90.84619223170642,-90.84558634194437,-90.84526716409881,-90.84504345080838,-90.84478768640167,-90.84408416224957,-90.84379662000016,-90.84315795232965,-90.84192335008868,-90.84156110259899,-90.84114666998244,-90.84098740857615,-90.84076335484896,-90.84041151651466,-90.84025202003757,-90.83999673834091,-90.83916677243315,-90.83884715667645,-90.83865537903083,-90.83852780618012,-90.83840025424796,-90.83818545940753,-90.83780316052615,-90.83757212324625,-90.83715767167429,-90.83651962534212,-90.83601032222191,-90.83576326263001,-90.83560397003274,-90.83542906740668,-90.83535011370218,-90.83524746100983,-90.83518420509942,-90.83501670330794,-90.83492191111981,-90.83468387371096,-90.83460450856106,-90.83447837274323,-90.83444717882665,-90.83438411498665,-90.83371582713134,-90.8336524956071,-90.83362102671681,-90.83364598539004,-90.8335912342756,-90.83347221256329,-90.8330582075418,-90.83263697520123,-90.83241414089059,-90.83227109484119,-90.83212824837005,-90.83129252578766,-90.83103858270428,-90.83080816540152,-90.8305543032257,-90.83041171484888,-90.83017430537893,-90.83001526698932,-90.82984851939706,-90.82925209787292,-90.82910116436099,-90.82906155750663,-90.82904652860799,-90.82906379891284,-90.82900079108298,-90.8287704894671,-90.82848376132272,-90.82823700512445,-90.828031316883,-90.82801647791501,-90.82809731275103,-90.8281220502606,-90.82809815562584,-90.82796347776498,-90.82792354325609,-90.82786863649956,-90.82785365636984,-90.82781390872204,-90.82776659170121,-90.82756805886464,-90.82756061901215,-90.8272739956153,-90.82715485766791,-90.82703619749599,-90.82668634049172,-90.82622639378503,-90.82613202317214,-90.82609267773582,-90.82610150645625,-90.8262946708638,-90.82631357466937,-90.82640403289663,-90.8264048200504,-90.82635860502083,-90.82627220849444,-90.82606667925627,-90.82581248107473,-90.82536788721804,-90.82442145835013,-90.82419879866269,-90.82387253159472,-90.82270280561761,-90.82241658475682,-90.82197825004273,-90.82136361024786,-90.821284249401,-90.82120429702958,-90.8209172217539,-90.82069360046391,-90.82063815206392,-90.8205883862914,-90.82061485921288,-90.82048784988292,-90.82010553016603,-90.819658731007,-90.81905354423986,-90.81892593184917,-90.81885399974131,-90.81879780066942,-90.81881292598243,-90.81885280229362,-90.81946582804207,-90.82026214212118,-90.82051702642894,-90.82070842463411,-90.82089899760223,-90.82093861367575,-90.82083456506813,-90.82059497818442,-90.8204995578691,-90.81993405555434,-90.81951192952113,-90.81881911971881,-90.81843621468477,-90.81841461034095,-90.81836661728441,-90.81829477917844,-90.81827888343153,-90.81830643600917,-90.81835392506161,-90.8188818247756,-90.81880738427546,-90.81869490015971,-90.81856761434337,-90.81800217660113,-90.81790710283019,-90.81788654888686,-90.81786296990927,-90.81775943112063,-90.81771118491507,-90.81769947372625,-90.81766767476003,-90.81760328628081,-90.81754750379739,-90.81745978091836,-90.81741179543461,-90.81742886304212,-90.81741476558781,-90.81733587078165,-90.81728041985303,-90.81705722024118,-90.81622695632477,-90.81609875564199,-90.81596251515114,-90.8158911674516,-90.81588691103727,-90.81579901805084,-90.81577150998575,-90.81572333664518,-90.81564338354057,-90.81536347325539,-90.81526754866327,-90.81524437887167,-90.81525446500682,-90.81522293730339,-90.81514282484909,-90.81513122858809,-90.8150671656058,-90.81497944093643,-90.81492349388333,-90.81490777485755,-90.81492443788723,-90.81490879548458,-90.81483703381241,-90.81481193616663,-90.81470856611719,-90.81466851401949,-90.81468838800265,-90.81465620272949,-90.81457690793805,-90.81455661892858,-90.81450827628211,-90.81438099836498,-90.81408629251942,-90.81329769625619,-90.81271572588567,-90.81256452647851,-90.81241324922095,-90.81239244710981,-90.81233057812346,-90.81229416024863,-90.81220932871483,-90.81212968495275,-90.81207609576586,-90.81205009617092,-90.81207071217467,-90.81212436912017,-90.81218457011623,-90.81222381565767,-90.81220326377644,-90.81220299286235,-90.8122626469672,-90.81230863952021,-90.81232822703888,-90.81234706354192,-90.81238616542552,-90.81241208847216,-90.81244518987754,-90.81246275937137,-90.81252632631696,-90.81268588715395,-90.81367598022244,-90.81379608961508,-90.81398894758688,-90.81414970232494,-90.81421427734657,-90.81424657775875,-90.81424799850481,-90.81417641988249,-90.8138264327778,-90.81359545945662,-90.81327894054205,-90.81306059793435,-90.81261783741742,-90.81259998170812,-90.81269656062365,-90.81271518294538,-90.81270765251739,-90.81267587641344,-90.81249222325414,-90.81230044820394,-90.81225285763483,-90.81225318785472,-90.8122852228701,-90.81274781609886,-90.81280410490768,-90.81285277691757,-90.8131319522052,-90.81317996009005,-90.8131880793355,-90.81315671429263,-90.81298919883206,-90.81249423763548,-90.81230271260695,-90.81227896956709,-90.81231895821475,-90.81235926492769,-90.81229545553312,-90.81229611604064,-90.81232004514429,-90.81243990329486,-90.81240837125969,-90.81182550726855,-90.81174563928117,-90.81174638705494,-90.81192235377233,-90.81195373572987,-90.81197156319246,-90.81207332399485,-90.81201624498695,-90.8118737350277,-90.81165927807585,-90.81121324120322,-90.81066498812103,-90.81034657702521,-90.80974955087952,-90.80941588746921,-90.80839157270353,-90.80793067620786,-90.80755669260394,-90.80721457608949,-90.80684032527674,-90.80644257822985,-90.80576559480954,-90.80512916649424,-90.80411002223582,-90.80340195354971,-90.8028602909562,-90.80154579597541,-90.80119535193494,-90.80048705701384,-90.79950859285769,-90.79919081384064,-90.7989283356688,-90.79827724685491,-90.79768846638275,-90.79741532425409,-90.79730714316644,-90.79705450918314,-90.79694369437206,-90.7966096412908,-90.79641065606923,-90.79608439580672,-90.79602096042409,-90.79595790502661,-90.79596051799705,-90.79592944463585,-90.79583386947017,-90.79539645383679,-90.79476710951587,-90.79424206547826,-90.79407566628259,-90.79396489831531,-90.7938547632599,-90.79366480826322,-90.7936014230188,-90.79359402611001,-90.79372704751094,-90.79370793466616,-90.79358166649354,-90.79355890771974,-90.79361567162128,-90.79390504428541,-90.79397770280698,-90.79401061655221,-90.79398982754684,-90.79394920262287,-90.79380709944515,-90.79363542186611,-90.79330741701895,-90.7930528140019,-90.79185844011616,-90.79091004400472,-90.79037664337041,-90.78996220532431,-90.78977882559992,-90.78956419954669,-90.78946039803041,-90.78939749563486,-90.78936684598726,-90.78924411591606,-90.78876924462978,-90.78854643559529,-90.78763068686857,-90.7868822795765,-90.78668307195572,-90.78650015994266,-90.78599848190009,-90.78558505010204,-90.78515524982636,-90.7850761159812,-90.78506847235589,-90.78510089264394,-90.78530131272321,-90.78566816905575,-90.78580635142043,-90.78628651825304,-90.78660726467609,-90.78745705755796,-90.78762585536674,-90.78826854867806,-90.78837413122729,-90.78835867429019,-90.78812198572204,-90.78809108566224,-90.78814790265815,-90.78853401406676,-90.78863076695393,-90.78872757213571,-90.78876088779876,-90.7887612285776,-90.7887301082996,-90.78850306607509,-90.78852021131577,-90.78849672410534,-90.78840229825559,-90.78840244286135,-90.78857233109775,-90.78868676142874,-90.78883334503517,-90.78888421464616,-90.78885440107045,-90.78879566424861,-90.78854587997893,-90.78835470545539,-90.78810837105003,-90.78774962277281,-90.78740688382797,-90.78721544782142,-90.78654414742033,-90.78619241927423,-90.78580967748162,-90.7854343704502,-90.78502015974175,-90.78478993386898,-90.7846951626013,-90.78466452450537,-90.78448515975937,-90.78427370906152,-90.78426680209104,-90.78437240019716,-90.78452548844217,-90.78463803734461,-90.78516779383503,-90.78499044315092,-90.78471059386531,-90.78445495275099,-90.78432681591767,-90.78403858976115,-90.78378262420598,-90.7833668437758,-90.78298389838461,-90.782856148386,-90.78269613253902,-90.7825275379016,-90.78240760237374,-90.78227953425215,-90.78221565906156,-90.78180105611474,-90.78103459837318,-90.78088271269245,-90.78064355502417,-90.78053241438022,-90.78032583325708,-90.779784571007,-90.7793068492536,-90.77921947053932,-90.7791158359942,-90.77905300514821,-90.77901512630366,-90.77896049196325,-90.7788410448416,-90.77841933268253,-90.77822817615174,-90.77778352188176,-90.77735394972763,-90.77679648439462,-90.77665347881592,-90.7764154447549,-90.77619337622875,-90.77555780995233,-90.77533597616467,-90.77508169029264,-90.77468226357071,-90.77439823760487,-90.77430321308628,-90.77420824326843,-90.77410495654857,-90.77358603644794,-90.7734587808975,-90.77329997244409,-90.77321292241402,-90.77318970486408,-90.77323102551715,-90.77322348333682,-90.77319153097574,-90.77295320642899,-90.77288980747909,-90.77287481837242,-90.7729001465262,-90.77282939847285,-90.77268644485237,-90.77223959614078,-90.77211192365466,-90.77204839833908,-90.77193808835368,-90.77176298585617,-90.77155671660996,-90.77136559410754,-90.77123843496948,-90.77119142868791,-90.77123167436281,-90.77120801223356,-90.77092165242658,-90.77077849634847,-90.77054047647188,-90.77042954715895,-90.77023873112432,-90.77023096628156,-90.77044812705299,-90.77050124646686,-90.77035367807767,-90.77032151874376,-90.77038574531258,-90.77038570742023,-90.77028993241775,-90.77028964426755,-90.77037742767996,-90.77038534045785,-90.77030580567104,-90.77024198464611,-90.77024138874008,-90.77027352607641,-90.77025525392912,-90.77040085010572,-90.7703933251963,-90.77043304124844,-90.77040091297489,-90.77041683642342,-90.77064049081513,-90.77070423300947,-90.77068846805123,-90.7705764003299,-90.7705440100586,-90.77056027116491,-90.77065579673032,-90.77092791877897,-90.77099164231355,-90.77107155204767,-90.77130338213918,-90.77151106961452,-90.7717352831316,-90.77187881943688,-90.77199854921106,-90.77205492409092,-90.77196143960364,-90.77190569930426,-90.77149450638741,-90.77101466939965,-90.77059912380896,-90.77047070903086,-90.77019905897572,-90.77003870897178,-90.76971937413398,-90.76888799009639,-90.76821615365482,-90.76773627741353,-90.76751225086508,-90.76735262934744,-90.76677706387004,-90.76632930058848,-90.76614542157172,-90.76584170891772,-90.76575387296265,-90.76527417534614,-90.76485879869111,-90.76465827117791,-90.76447491477727,-90.76415518733823,-90.76386754609727,-90.76337165486312,-90.76284404002411,-90.7624763097584,-90.76225223114537,-90.76196429605837,-90.76148504057997,-90.76071725027911,-90.76046151742658,-90.76020542906873,-90.76004584848836,-90.75972577283505,-90.75947012359038,-90.75899010159964,-90.75886238885649,-90.75865450065582,-90.75836680313492,-90.75804673386679,-90.75772684264193,-90.75743233955677,-90.75702316338896,-90.75670340150727,-90.75654338048371,-90.75593562410886,-90.7556162649704,-90.75478437209384,-90.75449577149273,-90.75427246408182,-90.7540164121709,-90.75363212521634,-90.75308882437218,-90.75260886554821,-90.75216906779214,-90.75177668609275,-90.75144857399832,-90.75132078174641,-90.75119238561747,-90.75114469278076,-90.75117592558601,-90.75109592326483,-90.75109570697298,-90.7511909625411,-90.75122304420205,-90.7512068123681,-90.75098291334226,-90.7506146460784,-90.75055054119781,-90.75056663094574,-90.75066187166885,-90.75077405739663,-90.7509016142816,-90.75093339995085,-90.75090169937151,-90.75080517923089,-90.75075685492673,-90.7507726173403,-90.75082104921169,-90.75086578144096,-90.75091233090765,-90.75097285938959,-90.75122851211569,-90.75129255297965,-90.75131645348904,-90.75134780271613,-90.75142767762628,-90.75153166206381,-90.75175534402592,-90.75184354624588,-90.75201881010452,-90.75212295550025,-90.75223469629915,-90.75249046236927,-90.75261866271084,-90.75284240895236,-90.75297833151029,-90.75308991364798,-90.75323401183242,-90.753393571572,-90.75375339996884,-90.75379329386884,-90.75382498579921,-90.75390519111933,-90.75408109503546,-90.75443208785639,-90.75474369136195,-90.75495201249372,-90.75515151821126,-90.75533512689502,-90.75575104722127,-90.75619883393581,-90.75645457948292,-90.75663071870095,-90.75683023422903,-90.75705405576232,-90.75718197705272,-90.7572860940766,-90.75766963924615,-90.75798948821483,-90.75870879209263,-90.75906857531588,-90.75935622255612,-90.75942023254055,-90.75945215180177,-90.75950837282454,-90.75961168466145,-90.75976380780969,-90.76008371793351,-90.76076678136116,-90.7607767943876,-90.76141894649304,-90.76181096875308,-90.76200268520951,-90.76321807593585,-90.76372966610165,-90.7640178427967,-90.76459366023865,-90.76549722821809,-90.76569719200853,-90.76580093582351,-90.76594512074293,-90.76602466276165,-90.76617643142137,-90.76648064343352,-90.76690390362421,-90.76756806818356,-90.7678560953571,-90.76801628823142,-90.76814431202693,-90.76900775751987,-90.76932766745441,-90.77000010111195,-90.77079955132699,-90.77137532947386,-90.77188743889441,-90.77268739224751,-90.77351916000495,-90.77380712607957,-90.7744791207037,-90.77534280663319,-90.77585472736639,-90.77620702627473,-90.77668651286068,-90.77723050870166,-90.77819040084444,-90.77934222980684,-90.77953382883626,-90.77975765681435,-90.77984524144665,-90.77986183621287,-90.77994372066638,-90.7800528997473,-90.7800619902836,-90.78010982078069,-90.78078186455338,-90.78097370512261,-90.7823239241485,-90.78273359768409,-90.7828854463413,-90.78293340713898,-90.78310933101803,-90.78318932265778,-90.78322092057503,-90.78320511649507,-90.78315693232257,-90.78304494919438,-90.78302880192935,-90.78290141769772,-90.78286883412335,-90.78283669317692,-90.78283725020795,-90.78286889444733,-90.78286907879522,-90.7826689026395,-90.78261304803257,-90.78262868910339,-90.78288492669826,-90.78307682728149,-90.78312485064419,-90.78310906936362,-90.7830372089678,-90.78268459781695,-90.78258088474887,-90.78250071803615,-90.78248504353269,-90.78259677368008,-90.78274097158483,-90.78280459404624,-90.78278854437404,-90.782724847495,-90.78270902379082,-90.78272458680337,-90.78275637905446,-90.78294847389502,-90.78302862179427,-90.78309233521129,-90.78331640748586,-90.78336438367522,-90.7835802134048,-90.78367685636078,-90.78382850130329,-90.78389435680013,-90.7839561026065,-90.78404463156109,-90.78450852928567,-90.78464440325477,-90.7847562526208,-90.78478848621953,-90.78494048129723,-90.78504443128809,-90.78509248664524,-90.78518864044952,-90.78551664958979,-90.78582056340899,-90.78594103327539,-90.78603645000813,-90.7861168745918,-90.78626856298456,-90.78659662993307,-90.78659647308139,-90.78646883105652,-90.7864378704744,-90.78662860779686,-90.78677287047117,-90.78687683937346,-90.786924774094,-90.78702073735442,-90.78724508800229,-90.78740507489937,-90.78755689181249,-90.78757292263759,-90.78747700420624,-90.78749279812986,-90.78754097539749,-90.78766091126435,-90.78785269134843,-90.78808509881232,-90.7884930745996,-90.78863713613516,-90.78915719721765,-90.7892534678306,-90.789301529551,-90.78937325354029,-90.78982133940301,-90.78997358550652,-90.79012585799195,-90.79044553183198,-90.79078175519392,-90.79094184960356,-90.79126195656222,-90.79148582412516,-90.79170237122054,-90.79189434555622,-90.7921103301781,-90.79238261448896,-90.79279843086817,-90.79353488122803,-90.7936470315951,-90.7937590830649,-90.79410302255445,-90.79449537078247,-90.79468708788492,-90.79535979113359,-90.79555947554772,-90.79572770205166,-90.79583187677993,-90.79595170589462,-90.79606394061902,-90.79616041947449,-90.79632053966334,-90.79644814715498,-90.7966803684499,-90.79705612446367,-90.79718421527984,-90.79728061107335,-90.79737634734281,-90.79749646630523,-90.79767538604513,-90.79806467282037,-90.79832101941744,-90.79871276367648,-90.79892953351032,-90.79912133904094,-90.79982579455383,-90.80004150638958,-90.80014578705219,-90.80025761760731,-90.80043358521444,-90.80060987871607,-90.8007061098341,-90.80086598145054,-90.80099375912977,-90.8010903177466,-90.80118605948614,-90.80129059400048,-90.80136244429551,-90.801450551236,-90.80158621683347,-90.801666108593,-90.8017623491511,-90.80189035973333,-90.80205845324053,-90.80229042478487,-90.80259483124655,-90.80269090366974,-90.80280306577178,-90.80294693299945,-90.80336268487407,-90.80345949340864,-90.80381127427334,-90.8042592945053,-90.80473974215816,-90.80493148242032,-90.80531560762915,-90.80555554505474,-90.80582791427847,-90.80618798280177,-90.80630794805118,-90.80640409712117,-90.80684412890899,-90.80708380881349,-90.80745978805203,-90.80785218649012,-90.80798018969332,-90.80810835876231,-90.8084200394651,-90.80847611852289,-90.80855648513131,-90.80876405149682,-90.80890009257726,-90.80910814540862,-90.80938030933473,-90.80949229772575,-90.80981217591045,-90.80994033764902,-90.81027597376298,-90.81043605946698,-90.81078048375784,-90.81096431129434,-90.81111625579389,-90.81116394725431,-90.81117985052666,-90.81129205272032,-90.81142824145832,-90.8115972213007,-90.81222762937598,-90.81258813645677,-90.8127399918985,-90.81338788657142,-90.81367596544079,-90.8140197937267,-90.81421183277214,-90.8146278549131,-90.81590852134133,-90.81648491307173,-90.81776476133597,-90.81808530525882,-90.81850118318735,-90.81952553055334,-90.82032594010596,-90.82074181530693,-90.82106194981399,-90.82167014920539,-90.82215051768466,-90.82269484198443,-90.82304704473536,-90.82336696092358,-90.82362309028639,-90.82419929435505,-90.82483991168534,-90.82506386012129,-90.82586449053332,-90.82650519276918,-90.82682507837222,-90.82724135550285,-90.82810602396339,-90.82836190944167,-90.82855409132739,-90.82900247760892,-90.82967465561761,-90.82983496014404,-90.82990105372446,-90.83023868385084,-90.83037016993413,-90.8303558139103,-90.83038755005018,-90.83062823571221,-90.83061245558446,-90.8306444689798,-90.83060459725672,-90.83048466895382,-90.83043642522037,-90.83046883767894,-90.83045313769307,-90.83029280015461,-90.82998921669449,-90.82981310015163,-90.82973288278986,-90.82973341847961,-90.82963750257842,-90.82971765707751,-90.82965404603293,-90.82967048353481,-90.82962261023984,-90.8296226009418,-90.82970264523004,-90.83003907546893,-90.83019931913486,-90.83023180695427,-90.83023165972369,-90.83013587585647,-90.83007229777138,-90.83000048956656,-90.82975232364433,-90.82967222233046,-90.82962464805301,-90.82954452903745,-90.82952859835666,-90.829432982426,-90.82946548814829,-90.82942126054898,-90.82926570579809,-90.82891379144824,-90.82872971818524,-90.82857033838178,-90.82849047493821,-90.82849045077002,-90.82853881356107,-90.82858686896157,-90.82865919104586,-90.82877142058916,-90.8288438086586,-90.82897163330557,-90.82903620623431,-90.82922835036428,-90.82929272156704,-90.8293086495929,-90.82927660482837,-90.82927682986757,-90.82929299245761,-90.82924484409089,-90.82927722804111,-90.82937356733085,-90.82966207927814,-90.82971011061701,-90.82966249032124,-90.82967856732738,-90.82979090152858,-90.82979081938302,-90.82966272248899,-90.82966304896345,-90.82969506026866,-90.8297673994585,-90.82997585304399,-90.83009568541208,-90.83017614945011,-90.83032013700719,-90.83040854258542,-90.83079258271907,-90.83092109701353,-90.83104154097661,-90.83121793427078,-90.83150598105851,-90.83181863917716,-90.83207481018151,-90.8323709778966,-90.83255527070688,-90.8326834527932,-90.83285956495605,-90.83301205154412,-90.83306057429574,-90.83309259710079,-90.83309264436632,-90.83287648715155,-90.83285235126786,-90.83287702581714,-90.83313281890331,-90.83348519996763,-90.83357334355118,-90.83371746596261,-90.8340217747259,-90.83410240667475,-90.83415865804538,-90.83430262921415,-90.83459111041145,-90.83475082198601,-90.83479135166641,-90.83480751476348,-90.83489544456576,-90.83502368763949,-90.8351514675617,-90.83523980241408,-90.83534393193432,-90.83540834611841,-90.83576066839102,-90.83604844763616,-90.83627290335085,-90.83656105572285,-90.83688155077841,-90.83764990555818,-90.83787454120831,-90.83825884379276,-90.83841905805863,-90.83854713815914,-90.83883531287617,-90.83915554680475,-90.83950770980817,-90.8397317896536,-90.84005260459423,-90.84018001322626,-90.84066067291769,-90.84094873881389,-90.84114121975858,-90.8421022712093,-90.84226197832945,-90.84248622819831,-90.84283867773603,-90.84303114964146,-90.8433510153361,-90.84357527338237,-90.84408718572156,-90.84431144321303,-90.84453574452775,-90.84482435149248,-90.84530448775647,-90.84565669620089,-90.84604147527727,-90.84652133784833,-90.84750665088866,-90.84794726543053,-90.84823566921146,-90.84829960004271,-90.84855589476857,-90.84865193920922,-90.84903635130398,-90.84953305994736,-90.84975739461316,-90.85019014570734,-90.85059090184106,-90.85082309403521,-90.85100764573768,-90.8511361655023,-90.85135971921817,-90.85177630909284,-90.85203295185499,-90.85241742064412,-90.85270554573368,-90.85310597263516,-90.85334647739421,-90.85362726654675,-90.85371539732421,-90.85390712339073,-90.85419558310166,-90.85451618183711,-90.85461215177943,-90.85483633772557,-90.85493256752366,-90.85541378717103,-90.8556056924543,-90.85599026926148,-90.85621448612557,-90.85675886370186,-90.85695109417166,-90.85733544310992,-90.85755953883803,-90.85794359051819,-90.85836047893321,-90.85890481696158,-90.85947020115886,-90.8596412576066,-90.85983381036078,-90.85989797999933,-90.86012169606357,-90.86063441169031,-90.86076268196193,-90.86092246660515,-90.86124268408328,-90.86143474431032,-90.86165866480769,-90.86207541574765,-90.86265206282802],"lat":[46.96266469363914,46.96268622962126,46.96276295565861,46.96276865746368,46.96273008951147,46.96265303006376,46.96264781004437,46.96266371390588,46.96265195230913,46.96261883933238,46.96251967569142,46.9623876230747,46.96222256143231,46.9621453620612,46.96203523439338,46.96201339320313,46.96181503968751,46.96169951774053,46.96157322761314,46.96154051834819,46.96154012301956,46.96137535564573,46.96124313753592,46.96103361034333,46.96100092448811,46.96072583210109,46.96055551203054,46.96048959711521,46.96034694968639,46.96029172243502,46.96025306432599,46.96023110765782,46.96019800978131,46.96008830774718,46.96005527221838,46.95992326032564,46.95991234241826,46.9597909684631,46.9597847674651,46.95942609338307,46.95938799432621,46.95938782043934,46.95928878057197,46.95931142180243,46.95923419892253,46.95920140019315,46.9591906138311,46.95915775285382,46.95901531835727,46.95898771772519,46.95892786198689,46.95880772187289,46.95857203622359,46.95839118036698,46.95834197189378,46.95824856906825,46.95800002144366,46.95783193409618,46.95756861424474,46.95734884255898,46.95710737639681,46.95677817536323,46.95655857699112,46.95607563489256,46.95598758210038,46.95587739609645,46.95552631119607,46.95532838591581,46.95508665929415,46.95438404954266,46.95416476610156,46.95392279933309,46.95350583813129,46.95293483601672,46.9522757136823,46.95209985636053,46.95196826130891,46.95168319068667,46.95128796279052,46.95111244650113,46.95093673602987,46.95036668629324,46.9500866785425,46.949839941395,46.94941748139426,46.9488312693978,46.94818404875228,46.94807426131537,46.94776056643428,46.94772227856381,46.94764692533179,46.94735087716858,46.94714799120961,46.94710438452137,46.94709377578037,46.94701185054367,46.94684149885208,46.94675400945963,46.94666077877088,46.94662778607285,46.94658392314602,46.94652930972696,46.94652406611724,46.94658456225016,46.94673273480429,46.94675485727851,46.94674898387326,46.94668330434313,46.94646376527898,46.94637583307937,46.94631584268233,46.94625528704454,46.94616780382806,46.94606792424211,46.94597058314916,46.94597064788384,46.94603663966859,46.94603632890156,46.94586603251491,46.9458172279702,46.945806353295,46.94578435657996,46.94575167440434,46.94579579098959,46.94573017382247,46.94569704892591,46.9457471500829,46.94569845865454,46.94553425684186,46.9452822583575,46.94518349438397,46.94495348718021,46.94466834341206,46.94463039892379,46.94451526491132,46.94402167953116,46.943708808579,46.94356093008982,46.94340184323079,46.94330839552772,46.94322105915566,46.94290882970923,46.94277722748902,46.9425521241993,46.94240954536102,46.94220639793554,46.94199842928585,46.9415380981225,46.94142228926921,46.94129083664054,46.94109320294403,46.94085193829338,46.94054442272588,46.93995191491726,46.93989153289151,46.9397655074877,46.93963356791281,46.93932607548029,46.93888707555288,46.93864575902549,46.93805318945932,46.93785526216176,46.93772357508023,46.93748230997075,46.93728448700578,46.93710878072616,46.93695508018092,46.93682352453354,46.93662567090086,46.93649430592124,46.93642806316632,46.93629650566352,46.93623069748255,46.93612095238958,46.93590129383255,46.93570349740232,46.93561549654505,46.93544029644652,46.93530817795457,46.93493507609569,46.93462742500668,46.93418856973141,46.93403445910854,46.93388096655712,46.93349140226859,46.93337076064252,46.93313494781481,46.93299785918694,46.93276163098076,46.93256431109484,46.93245493167661,46.93235641739946,46.93226438392394,46.93224634198253,46.93225712606662,46.93223529149627,46.93205994587629,46.93199408328172,46.93178634271749,46.93158336469141,46.93149600941194,46.93139775746216,46.93127699561022,46.93124973671192,46.93118434109369,46.93120076134659,46.93125620647688,46.93134971826453,46.93141033511269,46.93153663299972,46.93160244221963,46.93163558617409,46.93174556798199,46.93182267061854,46.93186709887416,46.93199892461893,46.93233947883116,46.93257065053841,46.93262559509271,46.93273585775672,46.93283475093028,46.93312065118068,46.93329607157435,46.93334032284541,46.93334010216896,46.93332194087799,46.9335142349624,46.93363804838312,46.93367536457761,46.9337417025847,46.93377972733681,46.93386804109003,46.93403261859486,46.93447778383896,46.93466481693475,46.93479076887087,46.93495015875791,46.93505447420844,46.93519789368769,46.93525825386219,46.93541771936167,46.93560443948848,46.9356812192655,46.93585698004522,46.93603318499432,46.93608839182177,46.93614312006498,46.93625303523281,46.93658290516568,46.93724727754234,46.93754394073889,46.9377086340948,46.93806018173784,46.9382029061881,46.93829642827989,46.93838425121541,46.93838463583141,46.93830751534389,46.93817613311598,46.93814315111611,46.93814304209628,46.93825347911277,46.93836332905641,46.93846195152068,46.93863798482985,46.93890716297766,46.93939033670968,46.93956600678037,46.93975806441496,46.93982429380218,46.93989030988833,46.93998880526192,46.94024149227347,46.94037328644106,46.94068657171975,46.94082908223515,46.94164169466313,46.94186148458883,46.94216911045022,46.94245984921728,46.94278953378635,46.94316270082545,46.94360214703199,46.94369022275705,46.94386023599829,46.94394280721971,46.94401939150541,46.94409664064057,46.94407427306074,46.94404142609526,46.94394814927356,46.94392063350505,46.94393167614858,46.94403062785614,46.94403043768966,46.94399762784384,46.94395944933502,46.94383273500801,46.94372311939842,46.94350378101255,46.94333344192129,46.94308059439017,46.94282269281654,46.94282797226825,46.94287755511438,46.94289980421931,46.94279001087041,46.94269620801995,46.94263046240805,46.94246041113173,46.94232827317332,46.94217480293442,46.94202093590927,46.9419385668301,46.94184556565344,46.94174112814985,46.94170262771671,46.94170247981016,46.94166959948624,46.94149410497133,46.94129628704814,46.9410329856084,46.94087920663897,46.94068116034233,46.94032996288881,46.93956126942008,46.93894632504716,46.9384627300626,46.9381113906888,46.93797974524384,46.9378259453953,46.93773806495933,46.93727681217069,46.93692566078809,46.93675007810243,46.93642067263834,46.93626685462944,46.93567354978931,46.93501474855294,46.93455389373914,46.9342239085301,46.93407024381521,46.93365308003614,46.93345554926213,46.93323595384653,46.93301602098061,46.93273054956632,46.93231297738679,46.93209378327784,46.93183030012812,46.931698554841,46.93154432445636,46.93132499071463,46.93084176334291,46.93016088821701,46.92919436674413,46.92890870203178,46.92858100511901,46.92760226480433,46.9271189326654,46.9258231290495,46.92529565974313,46.92509800175316,46.92505962237872,46.92503214143281,46.92428565040936,46.92407113137468,46.92386251804699,46.92360416062214,46.92321427981764,46.92291227269286,46.92223158369288,46.92192369690108,46.92137443844318,46.92084765572348,46.92039880216101,46.9200123138312,46.91952953397266,46.91860228375151,46.91829338995374,46.91755783653025,46.91718943603735,46.91672809531765,46.91648628995972,46.91623380471685,46.91613484913092,46.91611292425842,46.91612356303139,46.91609075579801,46.91609076740491,46.91611129939952,46.91619158372156,46.91627427091041,46.91631815305597,46.91635163869292,46.91647229421965,46.91649985829989,46.91648918233606,46.91651084427403,46.91647823448962,46.91648949350105,46.91637420286028,46.91634152529039,46.91623726768132,46.91620465072025,46.91622153594435,46.91625950448785,46.91634781127652,46.91636433394159,46.91625437962146,46.91622154971218,46.91617206009648,46.91622710945796,46.9163810073867,46.91639760320551,46.91638656326392,46.91609607067087,46.91576113943118,46.91558593764419,46.91535540800567,46.91525135518075,46.9152406667255,46.91527911947387,46.91540011347789,46.91538879222572,46.91535040115441,46.91528501939174,46.9152242728539,46.91513118637971,46.91500491749556,46.91496139545249,46.91494507948943,46.91497769310367,46.91497797050992,46.91495061579097,46.91489577684444,46.91471465835942,46.91451709911778,46.91412196748434,46.91390282001349,46.91379307015709,46.91367761965999,46.91349698476818,46.91309079441462,46.91309669582893,46.91298651793364,46.91291001149149,46.91282787358235,46.91282786573179,46.91280613223067,46.91272714747034,46.91262528741247,46.91261431550191,46.91274029743083,46.91275111780146,46.9127406438613,46.91263046209676,46.91250653855909,46.91235630955886,46.91233435777031,46.9123841150863,46.91238945390693,46.91232918791996,46.91235680990472,46.91247752578472,46.91253229270814,46.91254887885736,46.91253790546398,46.91248839230551,46.91236218522052,46.9122473686272,46.9122144502557,46.91218715137396,46.91214326729241,46.91207182607368,46.91195636696835,46.91196759983866,46.91189614168864,46.91188016037179,46.91184184292686,46.9117703336515,46.91173741047622,46.9116879040924,46.91155633894952,46.91140846494218,46.91135368667875,46.91130978683638,46.91124368805902,46.91121666936679,46.91120580428233,46.91112352921527,46.91111759785082,46.91109614854635,46.91098645733549,46.91075590523645,46.91072256751164,46.91073913645096,46.9105252529298,46.91042653098086,46.91030052698314,46.91019595629672,46.90993272540744,46.90980082023737,46.90968021831096,46.90952679942269,46.90941653425303,46.90917507515294,46.90913668352358,46.90913132545067,46.90914256381352,46.90919738996154,46.90921396978116,46.90915328254235,46.90893232672919,46.90891739063271,46.90892860318976,46.90890116998976,46.90882422515748,46.90882449419538,46.90885737700988,46.90884667214004,46.90847357289777,46.90818807468798,46.90758442269587,46.90726076555344,46.90714013829432,46.90710179195193,46.90703611778969,46.90694823049106,46.90688192258593,46.90670666645851,46.90661904664117,46.90644332518001,46.9063500731415,46.90605381172611,46.905713700309,46.90562608320875,46.9054723806927,46.90543397776246,46.90526922593411,46.90523089367839,46.9052200678495,46.90519269843271,46.9050774892481,46.90493509967171,46.90484690040647,46.90471012914033,46.90461118439901,46.90455093217712,46.90441329092671,46.90428179026156,46.90404020534507,46.90382053816136,46.9036889680791,46.90362855596843,46.9035900644366,46.90359027668049,46.90362337740156,46.9036893808515,46.90374434615408,46.90376064023534,46.90375492644447,46.90372200330989,46.90359597248119,46.90355214237651,46.9034862608957,46.9033818068183,46.90326160969324,46.90310754475282,46.90304708837464,46.90301968835821,46.90299212955441,46.90286600981428,46.90262481582468,46.90243830846981,46.90210564693366,46.90179179786428,46.9018821335976,46.90162559254125,46.90144987624932,46.90136206441241,46.90121963670175,46.90101086140521,46.90092326536913,46.9008353780935,46.90074735151654,46.90048408048968,46.90041812567729,46.90015429295937,46.90002311778908,46.89993523288946,46.89988579233002,46.89986369761242,46.89982550640896,46.89968237510408,46.8995947940079,46.89955078164699,46.8994412160293,46.89917757172708,46.89898509509575,46.89874369084288,46.89860676058211,46.89847487738221,46.89836491139344,46.89827715277466,46.89816757116192,46.89803566887662,46.89777240107904,46.8975746966504,46.89733298860713,46.8970912985793,46.89701988829712,46.89699241489507,46.89698731460511,46.89691569811546,46.89667436781431,46.89652055373757,46.89632282672495,46.89605960681679,46.89568584042681,46.89544430383163,46.89515929598392,46.89469788066155,46.89425914382868,46.89394641943166,46.8938415394664,46.89373186722836,46.89362204213248,46.89346847915677,46.8925904140644,46.89226109716125,46.89201921199876,46.89180009367116,46.89144874241475,46.89129522876944,46.89119644127426,46.89114115979205,46.89089981790648,46.89043905680941,46.88995544554482,46.88985121073665,46.88971417143389,46.88958279686429,46.88899008599179,46.88879244747633,46.88866065018326,46.8883752180026,46.88817766751161,46.88789237434273,46.88768386483026,46.88731052079788,46.88700829530743,46.88666247755676,46.88616897164271,46.88610321560395,46.88606455583845,46.88606130390525,46.88601525453267,46.88593737133585,46.88591620413167,46.88586145367373,46.8855103256729,46.88509874283004,46.88492285872869,46.8847882634757,46.88442363311091,46.88396820143645,46.88360030450285,46.88338070931135,46.88317755593951,46.88305680229828,46.88274452796783,46.88236008944872,46.88231085985363,46.88230550048561,46.88224067571189,46.88216665009694,46.88216807112516,46.8820747527586,46.88182773465277,46.88150915771794,46.8813883713953,46.88130071830992,46.88111429157793,46.88091670715892,46.88081811712916,46.88053805394867,46.88043895964752,46.88023608657547,46.88010400997025,46.88001648268197,46.87991745266508,46.87981879966215,46.87957763901291,46.87932509693852,46.87929350317962,46.8792787155374,46.87889672759423,46.87879782923486,46.87875386474524,46.87869920792126,46.87863847582343,46.87848496939198,46.87867103324044,46.87870470199862,46.87871543554408,46.87866634093843,46.87865519589237,46.87873202110757,46.8787429064588,46.87871044997763,46.87857853974378,46.87855120381053,46.87857813024986,46.87861137810871,46.87874334600799,46.87876521585188,46.87877602699123,46.87876512909155,46.87881974217244,46.87892946756522,46.87901707082424,46.87930809670481,46.87969274127348,46.87983535129024,46.88007708868373,46.88042787075693,46.88066968310304,46.88080141219223,46.88089473986069,46.88103763677625,46.88121863233995,46.88139407527005,46.88152606708798,46.88174579425387,46.88198171791929,46.88235472803667,46.88239346386656,46.88237133807826,46.88237140879391,46.88242071338487,46.88248629144201,46.88264568539481,46.88271699576468,46.88273885582127,46.88276084455967,46.88279897814066,46.88290373017772,46.88291459933632,46.88288692197901,46.88288710393498,46.88291428277017,46.88305712659307,46.88331492443954,46.88344105373718,46.88350729903385,46.88370448141606,46.88377074339099,46.88381444390482,46.88394602380566,46.88405554152594,46.88407739700389,46.8838796841449,46.8837043045307,46.88355572438457,46.88331411249874,46.88317681102134,46.88311074652417,46.88301750112959,46.88288038406188,46.8827482876128,46.88274589899395,46.8827755773841,46.88284717479699,46.88284682391635,46.88278118816226,46.88277551753745,46.88287990207471,46.88292359185018,46.88294534616836,46.882956485591,46.88304416454488,46.88303291007706,46.8829669930692,46.88296179115321,46.88292314838529,46.88287378522389,46.88276394232449,46.88250042598541,46.88220354335905,46.88211600882163,46.88196218522545,46.88163306469003,46.8813251169214,46.88119361149018,46.88099587261189,46.8808859459884,46.88064984296052,46.88059503858325,46.88050721667835,46.88028177458417,46.88019950459419,46.88013891207042,46.87989757567903,46.87962314996363,46.87953525661585,46.87935983630349,46.87905238719695,46.87881069151439,46.87827268925783,46.8780368761268,46.87786660694149,46.87773494493051,46.87760839905002,46.8775367874012,46.8773612241294,46.87711988094458,46.87704287121886,46.87688948266233,46.87658183274736,46.87645032671649,46.87614262502007,46.87587940363062,46.87552798490289,46.8751984509311,46.87502269587962,46.87494624217747,46.87480859790581,46.87468331704205,46.8745130261779,46.87434242365486,46.87386468610968,46.87364007033998,46.8732200886864,46.8730058478372,46.8729432687325,46.87285293774215,46.87272584858243,46.87236451870302,46.8722384866572,46.87210314527766,46.87165453465278,46.87139572136295,46.87116465765398,46.87099617559091,46.87092490499566,46.87071785816799,46.87008690131766,46.86981758826414,46.86874512841757,46.86860271631938,46.86809514309324,46.86771992036304,46.86706619495989,46.8667523035346,46.86643766344267,46.86613066339128,46.86570600453629,46.86559735451814,46.86552415393452,46.86536912238672,46.86527792192479,46.86490683745917,46.86478049511856,46.86463702932153,46.86422186921776,46.86388022635511,46.86378958223585,46.86372550688213,46.86365361569666,46.86355533967492,46.86341267532969,46.86278225315196,46.86259482766254,46.8624782382719,46.86229999901928,46.86221253647508,46.86214145397908,46.86205261852161,46.86186506462166,46.86176635553609,46.86164988994985,46.86125634890034,46.86121196023726,46.86112555415431,46.86103746554399,46.86097612864076,46.8608727722568,46.86083932016479,46.86078742383344,46.86060273680174,46.86056146357987,46.86056283050782,46.86053719400257,46.86040608145845,46.86037200036301,46.86035599062854,46.86035823285859,46.86031608190256,46.86028144205619,46.86023748631873,46.86020340770565,46.86016486816261,46.8601399784324,46.86008056991384,46.85979419164902,46.85952370063155,46.85935912540632,46.85930015165076,46.85929400413328,46.85930362553562,46.85947858051907,46.85968265093388,46.8597294598959,46.85975783347702,46.85977944173003,46.85977540778882,46.85973281411172,46.85960603854071,46.85960569589692,46.85947837073434,46.85937865285184,46.8594001695787,46.85933789927885,46.85927395444168,46.85907063563273,46.85901587597526,46.85897129941606,46.85891821613643,46.85890139433941,46.85885700016369,46.8586847214542,46.85857731729397,46.85851535660247,46.85840342059628,46.85839280152746,46.85837672150222,46.85834220416512,46.85828911952422,46.85821815645154,46.85805804294083,46.85794430522245,46.85787259627627,46.85781094425057,46.85780491956116,46.85771775414995,46.85769254907292,46.8577068181651,46.8577009764502,46.85765986754065,46.85758275845674,46.857515824712,46.8574726084941,46.85742008654159,46.85731342052524,46.85724227633761,46.85720731969059,46.85706508640059,46.85710245592509,46.85716590339467,46.85730186157139,46.85733922972758,46.85736878061959,46.85736231802142,46.85732046316435,46.85724681221562,46.85722983763971,46.85720567740078,46.85711116798223,46.8569981684023,46.85689447115403,46.85687136019283,46.8568739030792,46.85692404058348,46.85690888023582,46.85688379165609,46.85672731529147,46.85669533152274,46.85669170323413,46.85674048279176,46.85678186806066,46.85678366392795,46.85672454161073,46.85659370486327,46.85655122694767,46.85653458152185,46.8565126420086,46.8565236128963,46.85664558114943,46.85667437712156,46.85669417554077,46.85669670760745,46.8566803639843,46.85662919251411,46.85658640439225,46.85638725356301,46.85638904530346,46.85640914511068,46.8564831331805,46.85651149427703,46.85651415119857,46.85647363980047,46.85647900550385,46.85650002305581,46.85654855168185,46.85654046959367,46.85649650457194,46.8564342281377,46.85638182383779,46.85637417783946,46.85640222916525,46.85646703389627,46.85652208974118,46.85655075821379,46.85655099711417,46.8565871130667,46.85666614787776,46.85669702786767,46.85671483344295,46.85670835413531,46.85666708964909,46.85660777262418,46.85645139360752,46.85641716325325,46.85634345947366,46.85630214625582,46.85628653437574,46.85626966284494,46.8562907096865,46.85634897902334,46.8563889150058,46.85650713411461,46.85670734032215,46.85674812782537,46.85678568111761,46.85682555086887,46.85686376928962,46.85687828364452,46.85706446376206,46.85716899427661,46.8572805728849,46.85735705334535,46.85747695614265,46.85767063935161,46.85778135027313,46.85784718205474,46.85795287497475,46.8581564598613,46.85858522624284,46.85875141432702,46.85901532000923,46.8591190966518,46.85923053556315,46.85936911407433,46.85965146338901,46.85976199631521,46.85975978265983,46.85992161052321,46.86011972290195,46.86022732403121,46.86031764685691,46.86050820571931,46.86089871068565,46.86116877580363,46.86137362312756,46.8616329166098,46.86184663703607,46.86198210043672,46.86207125775876,46.86230531359978,46.86270967956315,46.86332806110327,46.86379207353563,46.86422301255923,46.8645442804125,46.86519422739703,46.86571030208786,46.86590601498466,46.86623762557205,46.86679636372431,46.8669662423295,46.86713537763836,46.86719839327486,46.86737297847004,46.86744456434305,46.86753341758439,46.86769191262337,46.8679005745996,46.86797112040766,46.86805110393745,46.86815882517394,46.86831185955952,46.86847169647936,46.86862326437222,46.86871285175733,46.86897482632484,46.86913686525149,46.86928916251728,46.86957710250223,46.86969590352718,46.86975878916547,46.86988494885285,46.86995756942989,46.8700645633216,46.87025110014528,46.87035826241948,46.87041300790848,46.87040105719046,46.87042793343657,46.87058686009108,46.87091037656106,46.87125319182152,46.87150603323266,46.8717452766116,46.87183646234347,46.87197076400365,46.87224896881619,46.87248807821668,46.87257926566215,46.87264318958254,46.872665776919,46.87281261965426,46.87286251501101,46.87289129158706,46.87288539851064,46.87292347810203,46.87296039495361,46.87296290278209,46.87297293983941,46.87302976205487,46.87304230560331,46.87314651185988,46.87312394669086,46.8730483654633,46.87303420372147,46.87306431957572,46.87316601323701,46.8733124217257,46.87339521488706,46.87336420394745,46.87331506904231,46.87332644080845,46.8733748597736,46.87333368247853,46.87323715997631,46.87310652686597,46.87307452403414,46.87311436969073,46.87314594251593,46.8730789247106,46.87283453197661,46.87247500015258,46.87204302034801,46.87184243036085,46.8716752167789,46.87155168207751,46.87141738119742,46.87131039061141,46.87123332718676,46.87111849143735,46.87102937175104,46.87057939472263,46.87057215680989,46.87064830353338,46.87051546612141,46.8703199120752,46.87020404496844,46.86981220636775,46.86946965260505,46.86929847988581,46.86909448484472,46.86903413218008,46.8689198996149,46.86856303817764,46.86836645439106,46.86818757063572,46.86811731786866,46.86805752586487,46.86791378754054,46.86782346936,46.86774068885906,46.86733937500727,46.86722204568076,46.8670368246671,46.86685057009704,46.86666414646768,46.86626835137938,46.8660357558233,46.86586484617669,46.86579312674176,46.86566277801156,46.86555608062206,46.86541350675286,46.86523432301388,46.86493177167704,46.86428636779167,46.86410735493796,46.86386721778921,46.86370766958176,46.86356363004543,46.86338328847499,46.86331170438414,46.86315112148946,46.86298938570621,46.86289906425151,46.86279754993003,46.86240998569458,46.86226505074314,46.86204972898038,46.86187084748329,46.86145966809931,46.86137864838165,46.86121527904324,46.86110682199757,46.86053227076589,46.86033538516907,46.86014677077532,46.86003934285841,46.85986149081076,46.85967403412003,46.85956660898696,46.85938918699415,46.85921016933993,46.85911260280012,46.85897179003256,46.8588557896632,46.85870202296781,46.85854084518866,46.85836285938859,46.85824759359969,46.85810883322473,46.85807603697084,46.85801465107595,46.85770103198025,46.85756832273905,46.85742677335743,46.85731977866938,46.85704289694677,46.85695771798778,46.85685496292049,46.85669892520427,46.85666484262661,46.85657773599794,46.85657965766419,46.85648414648706,46.85632056106105,46.85618457997309,46.85600490347241,46.85586686022819,46.85538278662971,46.85523131203416,46.85521118282835,46.85521556978799,46.85537927614812,46.85536652502847,46.85522735017022,46.85508233109454,46.85497882409557,46.85496359098864,46.85501298617338,46.85503072874556,46.85501565302396,46.85498314319112,46.85498532041585,46.85507942790958,46.85514725430941,46.85515265650631,46.85513263347819,46.85507864429015,46.85506458457913,46.8549234506571,46.85481789200929,46.85473746561894,46.8546959409782,46.85468359945484,46.85464223924247,46.85419851015513,46.85391261147662,46.85349893668997,46.85336534961782,46.85319546146077,46.85301469485425,46.85274519261289,46.85255643464107,46.85231495885301,46.85208221798212,46.85183130959367,46.85170425718357,46.85150430136825,46.8513416713393,46.85113491340753,46.85083724904639,46.85062974080486,46.84962914924365,46.84915972151481,46.8485378087747,46.84820473143408,46.84786465795162,46.84733671459353,46.84678394089702,46.84661536384073,46.84640976097243,46.84577392509048,46.84551707141876,46.84521477469122,46.84495791805409,46.84478322974791,46.8446049281603,46.8445542651265,46.84443128180229,46.84437246959903,46.84429493225773,46.84421754878316,46.84414247113406,46.84400452585219,46.84396515612269,46.84395209809441,46.84396631073073,46.84396322632377,46.84395832295147,46.84392383246395,46.8438925446966,46.84386422367181,46.84388411972434,46.8438797453121,46.84383761816176,46.84385660693458,46.84388970097712,46.8439509174723,46.84405339336248,46.84418300320646,46.84452872225025,46.84454219873465,46.84480639739848,46.84493106817616,46.84506273315736,46.8452029585984,46.84539966273584,46.84548602388525,46.84554622953107,46.8457983770578,46.84594961506455,46.8460732792337,46.84617634222833,46.84625396437951,46.84628184556456,46.84638403203986,46.84641233792246,46.84642566015425,46.84660318406479,46.84665079027714,46.84684631205504,46.84701280779473,46.84705011536705,46.8470995827646,46.84723792836817,46.84739356161199,46.847486898126,46.84761910580006,46.8481967895839,46.84841103933056,46.84852565942963,46.84853897321527,46.84870503376329,46.84890681686792,46.84907316758904,46.84927695537854,46.8495377708815,46.84968711549762,46.84994377293552,46.85014927718792,46.8508047786972,46.85147057025893,46.85202874474821,46.85238969539346,46.85271364907961,46.85314676400655,46.85393767600796,46.85472944198268,46.85497436117107,46.85529501629293,46.85557979345816,46.85621822625102,46.85657559216533,46.85694253543451,46.85709027316251,46.85720029779379,46.85741034034083,46.85776457385326,46.85821782586454,46.85881511694639,46.85909589955964,46.85932152499374,46.85961088597031,46.85989881968114,46.86009544331704,46.86023635466145,46.86042198377584,46.86081182430242,46.86130039833262,46.86152174849959,46.86181256056457,46.86209392881864,46.86233157159879,46.86247076365708,46.86270655692587,46.86345505890526,46.86370184515999,46.86418011775221,46.86446433994798,46.86463266919423,46.86485401311116,46.86502920713156,46.86530371015959,46.86567566359341,46.86586199309941,46.86594929981594,46.86680952911367,46.86718447959915,46.86756957241677,46.86791951494693,46.86817144492446,46.86837693440115,46.86922414512163,46.86966239770488,46.87019996402129,46.87099688280301,46.87149944293829,46.87203700852306,46.87247526229937,46.87276919233063,46.87306240220827,46.87368354700586,46.87378085317805,46.87395746482161,46.87415064524404,46.87456558478184,46.87479205022441,46.87494980754624,46.87506213762173,46.87520775136043,46.87548419880294,46.87565877650771,46.87573049795137,46.87583704073096,46.87604488280623,46.87614986276415,46.87622054125315,46.87629065387915,46.87632807037659,46.8763327398683,46.87637118921417,46.87644290385196,46.87654839965322,46.87658477342033,46.87658633087094,46.87672711788265,46.87676349038231,46.87686846482789,46.8769385807314,46.87701080483164,46.87708251371961,46.87718852301672,46.87732826711007,46.87736515449082,46.87760888421262,46.87778241368716,46.87795594082919,46.87809572943531,46.87826981866871,46.87833940775175,46.87858261581181,46.8786865055508,46.87882577472648,46.87913753617328,46.87927680446604,46.87944981226136,46.87951996498141,46.87969245247704,46.88003799862305,46.88024535113901,46.8804183573673,46.88052229374173,46.88072805170839,46.88093437522404,46.88131421625136,46.8818286439291,46.88196533251229,46.88213730952016,46.88234358157646,46.88255093700581,46.88286063028311,46.88299727069754,46.88320256185751,46.88333972129028,46.88364890268505,46.88388952694146,46.88409580040653,46.88440394673731,46.88460923791924,46.88474537080744,46.88498439877191,46.88512108748647,46.88532478928055,46.88546147788327,46.88563195148128,46.88569896195605,46.88566105351195,46.88562473581317,46.88565280171566,46.88565073892224,46.88571573164687,46.88578226355207,46.88574487069999,46.88577451828062,46.88583899184858,46.88587019161973,46.88590087700505,46.88596633035883,46.88603182885708,46.8860988810123,46.88619764284269,46.88622728680551,46.88629325711789,46.88632548791739,46.88635719959192,46.88635564734579,46.88625118740541,46.88604439019752,46.88573313169687,46.88559489151729,46.8852825976845,46.88521351572381,46.88500667716503,46.88490325450197,46.88483417659048,46.88473023981155,46.8846605985951,46.88452136065067,46.88445172341272,46.88431244438066,46.88413890541852,46.8839341344129,46.8838317955325,46.8837299319238,46.88355894629692,46.88349090544919,46.88331888025986,46.88321550114736,46.88304295788401,46.88290575355316,46.88266516994874,46.88256174678455,46.88238976767667,46.88218296432309,46.88197767783447,46.88190907566479,46.88184103481125,46.88166848934724,46.88149547163067,46.88132240998831,46.88121954543061,46.88090720472231,46.88069987555154,46.88052582124804,46.88038601813793,46.88017557376784,46.87999990495425,46.8799271421929,46.87989023900674,46.87981751382374,46.87967770900595,46.87957272036571,46.87950363912895,46.87929262264426,46.87918815777275,46.87911855077242,46.87880623676166,46.87873711239693,46.87852974347392,46.87828915276767,46.87805012920196,46.87798152712248,46.87787810161954,46.87774094248815,46.87760321590483,46.87739744850786,46.87708616967235,46.8768444988761,46.87667146859285,46.87653217339523,46.87639448916718,46.87618554980895,46.87608268929468,46.87594444342376,46.87587531831372,46.87563263797096,46.87556351271856,46.8752189780919,46.87504646861829,46.87494994389706,46.87492267569605,46.8746563169426,46.87424992529684,46.87396657072629,46.87366648345224,46.87344556363714,46.87332253231904,46.87312190366345,46.87286768481241,46.87274450929078,46.87257489112259,46.87225294478839,46.87200259543273,46.87180753942461,46.87133253704377,46.8710934688111,46.87076594346919,46.87031651432292,46.86990366432359,46.86973803253814,46.86949251866788,46.86917526951342,46.86885229387781,46.86860118282131,46.8685067154486,46.86822489719106,46.8680073753855,46.86775398954986,46.8674719707933,46.8670184285903,46.86679344971432,46.8666925199068,46.8666353172389,46.86658527657789,46.86647462764238,46.86636809059792,46.86632173318386,46.86628521977794,46.86622659534427,46.86616095052187,46.86613188011024,46.86604063867068,46.86595279311742,46.86588167269721,46.86581210952469,46.86577557851473,46.86574422939195,46.865746532296,46.86571564453191,46.86569120687989,46.86562218149719,46.86554259402001,46.86540083268213,46.86525752154638,46.86514936411444,46.86505794551362,46.86486792032013,46.86440360712166,46.86401693203561,46.86355823523399,46.86331306329951,46.86304369164031,46.86265010836356,46.86215777978177,46.86184169817498,46.86165812775263,46.86150141819488,46.86120474067408,46.86080903580714,46.86051686848904,46.86001975050779,46.85969030838687,46.85955906304234,46.85933173023363,46.85898792301165,46.85864989846194,46.85808835835839,46.8575901124219,46.85746491734062,46.85719624832942,46.85682995734508,46.85636701822433,46.85596835205225,46.85539509561352,46.85494507074009,46.85452162526813,46.85409636679253,46.85373285924086,46.85335065129725,46.85306649264035,46.85282762091112,46.85250054035355,46.85224449915457,46.85202349315188,46.85165816805937,46.85122221799716,46.85101851428631,46.85066497943397,46.85008156776929,46.84953430132424,46.84923366345286,46.84894990588736,46.84855358225611,46.84818217446657,46.84777335613643,46.84715029774787,46.84690241251844,46.84657656355164,46.84628630722467,46.84587748497926,46.84547641368711,46.84486913186701,46.84434258613071,46.84403070235444,46.84391617844948,46.84367784063739,46.84317026802882,46.84252891048981,46.84219057761764,46.84197633010073,46.8418616611828,46.84176499953305,46.84167221320008,46.84146548276388,46.8412681648587,46.84093958123105,46.84054477708083,46.84034694672547,46.8400837765744,46.83930510221992,46.83863654251962,46.83846111727523,46.83818646521119,46.83796221604009,46.83775881865319,46.83729296035547,46.83704057837661,46.83688221200192,46.83662437526513,46.83641613650824,46.83619657871419,46.83610368555773,46.83594445885205,46.83579625504193,46.83560466756834,46.83545686261519,46.83534691774875,46.83521544056028,46.8351937885416,46.83516081083774,46.83517156816775,46.83516073872305,46.83482084382033,46.83473343999943,46.83472265868161,46.83468990009398,46.83457981438891,46.8344480600102,46.83438249467506,46.8343310279014,46.8342616816452,46.83421786662728,46.83413052691798,46.83402214370533,46.83396045714814,46.83397689048826,46.83396695750827,46.83385606314041,46.83381245371293,46.83374114632802,46.83370856614962,46.83354956578864,46.8333082162013,46.83315488186143,46.83297980014378,46.8329575417995,46.83280440963535,46.83276047184028,46.83265107230594,46.83263993699349,46.83265120928797,46.83262918040345,46.83261821417388,46.83262938134565,46.83261845405048,46.83267339452654,46.83269521281738,46.83276119357104,46.83279424715157,46.83278315675954,46.83279441291508,46.83286031728345,46.83292853528746,46.83300801336045,46.83304676230883,46.83315637270702,46.83348551869432,46.83353506586397,46.83352368736934,46.8334636738123,46.83324995319813,46.83322233290166,46.83322238252946,46.83329344719564,46.83342550369504,46.83355159226636,46.83372712936688,46.83377113853007,46.83376556564956,46.83360116366505,46.83357329616902,46.83356255543224,46.83361720716557,46.8336281420694,46.83361730073952,46.83371632837842,46.83375982786497,46.83385860239739,46.83385865485479,46.83382009387194,46.83378761234759,46.83367751299176,46.83362867614129,46.8335845599585,46.83356782982946,46.83350780030045,46.83344213155832,46.8330687819771,46.83269594576986,46.83234489084847,46.83221330221743,46.8317744995197,46.83159874936561,46.83140112622367,46.83115983528796,46.8310504515733,46.83094034530269,46.8306830161815,46.83054021555816,46.83046892042579,46.83031529106304,46.83021667783964,46.83013963462145,46.83012846682921,46.83008487785131,46.82999671400661,46.82999672009199,46.82996405691998,46.82997527351566,46.83004083239494,46.8300959134199,46.83011763919995,46.83011779551936,46.83007367825526,46.83006233370609,46.83016117304252,46.83035858798367,46.83035894098688,46.83032572615924,46.8303256357344,46.83042453860207,46.83042971011083,46.83041349288552,46.83037495568163,46.83032569578371,46.83020503236672,46.82991220068438,46.82990837521078,46.82980401097537,46.8297770489393,46.82971070653267,46.8294749338659,46.82935963790806,46.82912402260833,46.82903055242133,46.82900884027284,46.82900827058727,46.82898661790165,46.82895349760052,46.82888794677332,46.82884041985242,46.82867906625781,46.82863480907152,46.82855840276928,46.82856919321328,46.82855264446933,46.82849784606776,46.82840967719568,46.82836069335973,46.82839373640832,46.82839359325348,46.8283660894992,46.82828928249259,46.82819558988073,46.82806421382432,46.82788840449749,46.82778449850267,46.82774037723234,46.82772408857101,46.82774590246936,46.82773473347393,46.82761958608508,46.82755382614958,46.82742752714521,46.82711356277635,46.82702028429468,46.82692826851601,46.82673626590267,46.82651640422174,46.8264288565388,46.82592423803143,46.82583661662213,46.82564405015621,46.82551262094743,46.82544108862473,46.8253644690389,46.82530960876806,46.82530385626965,46.82526528333297,46.82525466172853,46.82518816127443,46.8251115774769,46.8251003711822,46.82504550193872,46.82497944983806,46.82484254023006,46.82476535571668,46.82468870435563,46.82456822419264,46.82440860599867,46.8240577372306,46.82340448974945,46.82324677527228,46.82297609349342,46.82285475843514,46.82284062829438,46.82261912409847,46.82247633640523,46.82246566221665,46.82220199678571,46.82196587632389,46.82185052110217,46.82168061997753,46.82157576854484,46.82148851821297,46.82129628316986,46.82114812265819,46.82090626932588,46.82082407127604,46.82074143159242,46.82052783029553,46.8203352304336,46.8202037322885,46.82013812128581,46.81989647925538,46.81971530263212,46.81965530964652,46.81966038007076,46.81952104614307,46.81947960672072,46.81935296666424,46.81886449409122,46.81848530995583,46.81828211978105,46.81821615596043,46.81821654177634,46.81813952663391,46.81807317410007,46.81801845074568,46.81795231053063,46.81790301218724,46.81782053474257,46.81703550112238,46.81677191599598,46.81656907670141,46.81633304998902,46.81609693226149,46.81500478203856,46.81473030925702,46.81457630063702,46.81447187271566,46.81387352633931,46.8136371988995,46.81317627336286,46.81289110437652,46.81271543552678,46.81261643298566,46.81250694629827,46.81208979556229,46.81185146309965,46.81182899898833,46.81173853205784,46.81151926987289,46.81124460180716,46.81111298241792,46.81069582149899,46.81054771082111,46.81039911746674,46.81028943840816,46.81014665280343,46.80975180558909,46.80937813145394,46.80882934432036,46.80858766232636,46.80817095215956,46.80803923235038,46.8078469536371,46.80742442497844,46.80707287124381,46.80680962104731,46.80650222181053,46.80637068658923,46.8063263493308,46.80622782093727,46.80600807996953,46.80579975701279,46.80566776171496,46.80511916816119,46.80492154490538,46.80476779848834,46.80452648135377,46.80406553300713,46.80389004295075,46.80358275372814,46.80323166828921,46.80277061464056,46.80248505075783,46.80220510832586,46.80199096880072,46.80174927504422,46.80157396164167,46.8014861195848,46.80115639971641,46.80076132747539,46.80005873822764,46.79968597227328,46.79942185164293,46.79898280373821,46.79885097854942,46.79876349719581,46.79865370292946,46.79823658540679,46.79811563702703,46.79794003000218,46.79772595419601,46.79765441862894,46.79711077615424,46.79691882914259,46.79650711293836,46.79600142025274,46.79569934698385,46.79541926165075,46.79525992291498,46.79490846536714,46.79473884951152,46.79463972074245,46.79443638232608,46.79413373954447,46.79396350428451,46.79372200402422,46.79360682100365,46.79351298538035,46.79333700675688,46.79325988742441,46.79321572208604,46.79314458301243,46.79296822174469,46.79269941609041,46.79261142192483,46.79249018883397,46.79244645165219,46.79242388172005,46.79229165327313,46.79230503939075,46.79230763078159,46.79228525847839,46.79205971751836,46.79202085280912,46.7919438391882,46.7918829139904,46.79185514737573,46.79186609832756,46.79197541131813,46.79197555901036,46.79182658043506,46.79178779375277,46.79175510136102,46.79175465105785,46.79181998791537,46.7918310686118,46.79186369176488,46.79186729065061,46.79190725526735,46.79192862576158,46.79207141914333,46.79107412930672,46.79093221753771,46.7907130831308,46.79078620341389,46.7908098291282,46.79075796482592,46.79068094248623,46.7905710840816,46.79035635395392,46.79025717411402,46.79021294137458,46.79021268865697,46.79024034772448,46.79023453030481,46.79037647559087,46.79039863934606,46.79046424633579,46.79047490626257,46.79055102405321,46.79064968297238,46.79073630354327,46.79082386882202,46.79086194769081,46.79090594582942,46.79097750266827,46.7910102579971,46.79102467065776,46.79122362195674,46.79132229388266,46.79143706522859,46.79157424719978,46.79167292457444,46.79176038301286,46.79181502038622,46.79206744104463,46.79219862226365,46.79231335721732,46.79241244492802,46.79256589372297,46.79271985691177,46.79285144872795,46.79300530653962,46.79308172957568,46.79331272433665,46.79340048701904,46.7934722894841,46.79355464353405,46.79366439153259,46.79387810018825,46.79392756495422,46.79413582110292,46.79420206218386,46.79427329823007,46.79430596831735,46.79425629814887,46.79423462694199,46.79415776895809,46.79413563932184,46.79410286611698,46.79403634793817,46.79405302142142,46.79398726507201,46.79399762733978,46.79405242767045,46.79422804093559,46.7942605068442,46.79430432704266,46.79429331867958,46.79431497751078,46.79441369181909,46.79442503276103,46.79444667466154,46.79450695336531,46.79457268022855,46.79472643875624,46.79479808109242,46.79481423676133,46.79479231162052,46.79483028466275,46.79483012990421,46.79476966824082,46.79459373323336,46.79452760851296,46.7943518732037,46.79406601253706,46.79382962433678,46.79376925683233,46.79376920464775,46.79380717475242,46.79380188828663,46.79376913872215,46.79361497647432,46.7935218051341,46.79334022267589,46.79318667215838,46.79303290764153,46.79263767540368,46.79248333948636,46.7923295210931,46.79215414900789,46.79198874866984,46.79174702958311,46.79143911623173,46.79113136210472,46.79104889601129,46.79095532042285,46.79082332401762,46.79066992411524,46.79049396212307,46.79033985274858,46.79023015145972,46.7898565856392,46.78975183025317,46.78974642797449,46.7897188087975,46.78965810688524,46.78952607105827,46.78943301596576,46.7892570064792,46.78916806550411,46.78901388266255,46.78884880740757,46.78865045484624,46.78855156294573,46.78837521864223,46.78818776988426,46.7879073685426,46.78753365538529,46.78742885194092,46.78724196755884,46.78717587702519,46.78710431922455,46.78693904290724,46.78687326453779,46.7867631628617,46.78645560671823,46.78627976774636,46.78598345103308,46.78582953938543,46.78563202755543,46.78550028659705,46.78536785622764,46.78516990919115,46.78504905475923,46.78486249754938,46.78475753034516,46.78465278721198,46.78459247098527,46.78455948432377,46.78452110432666,46.78436683603388,46.78422960076301,46.78417997858277,46.78420171224555,46.78418544506196,46.78414686867033,46.78392688491503,46.78377307747678,46.7836407961824,46.78350885535075,46.78317890379639,46.78278350546139,46.78240994351181,46.78228924770425,46.78225031602499,46.78220663279016,46.7820518240704,46.78202425560831,46.78198548029192,46.78196856985014,46.78194093804353,46.78179258171382,46.781638764635,46.78144071897335,46.78091296430379,46.78086359688547,46.78063234350453,46.78049431593738,46.78051596442541,46.78043848601381,46.78046552037591,46.78045927912169,46.78041519847265,46.7803928319065,46.78049059875637,46.78049014148362,46.78035817118823,46.78036355791538,46.7804292198846,46.78042368511637,46.78047013512567,46.78048348104836,46.78040612330408,46.7803454646951,46.78003759446553,46.77975157051402,46.77962071616422,46.77930059728497,46.77916870817332,46.77901482604351,46.77866322478751,46.7785972742041,46.77826734404186,46.77804743841047,46.77777285792921,46.77742089260403,46.77731626561286,46.77721127684827,46.77708517412741,46.77701342723012,46.77692550584109,46.77668363830057,46.77663973247619,46.77655713675654,46.77648538275221,46.77633710067505,46.77616636448558,46.77607834549182,46.77591373271979,46.77585843822369,46.77580917879227,46.77579777077409,46.77572039307059,46.77565402489716,46.77558235260489,46.77548898829523,46.77543327953829,46.77536159180556,46.77521868401386,46.77514725126234,46.77508096063326,46.77487123452245,46.77482189755361,46.77480531741312,46.77469468772465,46.77467828841198,46.77467828305478,46.77474946502263,46.77473818379576,46.77458400016845,46.77457242615489,46.77438021732986,46.77427539201697,46.77412631566186,46.77407614993836,46.7738064950872,46.77353666452921,46.77347078848567,46.77336011364057,46.77329371120606,46.77326099597899,46.77324837265047,46.77329315818576,46.77327609345219,46.77330306653765,46.77327515244544,46.77326279399408,46.77323512499943,46.77318535556856,46.77315718583172,46.77306345598424,46.77301856567679,46.77297481492611,46.77291985368954,46.77288597895172,46.77291935625907,46.77291410451643,46.7728534812636,46.77266054883499,46.77249528592652,46.77239582730294,46.77214253857843,46.77191130607251,46.77180088203103,46.77171276574213,46.77150286895216,46.7714365781113,46.77139286841563,46.77132652155516,46.77118311663329,46.77113890022568,46.77112178779664,46.77106608647164,46.7709503573964,46.77088384280565,46.77068015226057,46.77030584202983,46.77024525303205,46.76995899137926,46.76992566882583,46.76981507199609,46.76964891155745,46.76958745709016,46.769526453561,46.76948150336402,46.76943783633276,46.76940409064261,46.76934906384732,46.76932629829427,46.769193806824,46.76913847796229,46.76890326279075,46.768852119676,46.76879615155764,46.76872393164265,46.76871204417472,46.76861760097982,46.76860059944282,46.76856172194591,46.76852278656314,46.76854386856495,46.76849949276435,46.76849864189231,46.76847648307723,46.76840457249765,46.76838766754554,46.76832090450246,46.76834291573552,46.76834231777548,46.768369536551,46.7683295650459,46.76833995755549,46.7683726533256,46.76837216158461,46.76834466536455,46.76834843773034,46.76829301593904,46.76830339402385,46.7682757605479,46.7681989964758,46.76817131493009,46.76818188828805,46.76817070818876,46.7681100649862,46.76809286819233,46.76799862756148,46.76800929105005,46.76792013561811,46.76783207406606,46.76768874379503,46.76765573911359,46.76755600599314,46.76744541161462,46.76739573668611,46.76732387210931,46.76726284835803,46.76723937764203,46.76713353978191,46.76705032832084,46.76704725542746,46.76698116158908,46.7669537744441,46.76700234523324,46.7671342719898,46.7671777578474,46.76719370515454,46.76716603946595,46.76715990289414,46.76705524310933,46.7669775295097,46.76691125556305,46.76678458621038,46.7666798938011,46.76662936319008,46.76655760994027,46.76646394718509,46.76633211353495,46.76613428195741,46.76606852197775,46.76584243563128,46.7657324989311,46.76567742181922,46.76555008555111,46.7654402131935,46.76524240500315,46.76513749768995,46.76507154853002,46.76498288602583,46.76474580300196,46.76465234662089,46.76447058611838,46.76408512399087,46.76375487747706,46.76305120922818,46.76265503324378,46.76232533539632,46.76210495059769,46.76162089928671,46.76134549724789,46.76107423073839,46.76046557975442,46.75998310689889,46.75973579847324,46.75928634373712,46.75904923113399,46.75880391506946,46.75876034622954,46.75875488213438,46.75872759758283,46.75866150940496,46.75849954333196,46.75854080158927,46.75854094357411,46.75832161762474,46.75821743694207,46.75813549075585,46.75773499800518,46.7575375796151,46.75741116978336,46.75729094802569,46.75721431522023,46.75714835952198,46.75708283353962,46.75704963857024,46.75691843178134,46.75690773500088,46.75693007633637,46.75689687516567,46.75678731351195,46.75675504409161,46.75676596429716,46.75679913370682,46.75679923626591,46.75676645504955,46.75676655910381,46.75673390767785,46.75658014587579,46.75653653987145,46.75644314430408,46.75629489469967,46.75622946470804,46.75611958881836,46.75602628351383,46.75597138447674,46.75593518995401,46.75590786666405,46.75591114146821,46.75592252046703,46.75568083493729,46.75556012346206,46.75529694093604,46.75522072659631,46.755198939025,46.75523162149459,46.75523188506494,46.75514450191766,46.75497999843855,46.7549359502155,46.75491410477646,46.75483757896841,46.75480495824908,46.75490397174414,46.7548926705969,46.75493316141123,46.75499153317339,46.7550688273646,46.75507954771848,46.7551235860522,46.75521133044376,46.75525549252684,46.75529929761149,46.75533254100529,46.75534368332861,46.75542033448863,46.75547544523072,46.7555194865612,46.75551907550464,46.75554136382663,46.75554143314601,46.75556360112209,46.75560748576198,46.75568416947979,46.75581596663406,46.75586538521918,46.74812402414273,46.7338012841027,46.7194283230625,46.69016158484423,46.67577469971679,46.66142538104024,46.64710792098358,46.63975465464586,46.63273599764384,46.61827165466409,46.60369042986512,46.58935655219312,46.58184098136107,46.57462102996365,46.56018721842158,46.54585262042339,46.53154061919374,46.51703434252784,46.50239361218418,46.50240792382306,46.48955267984708,46.47526565682645,46.46098381574789,46.44655967345891,46.43188650342594,46.41751699030044,46.40298372921396,46.39181674170979,46.38853200793818,46.37443331485638,46.36128526972634,46.35998428774423,46.3577172169846,46.35251355618662,46.34554560369467,46.33118736842814,46.31669539177131,46.30213274368207,46.28775229041671,46.28306026316772,46.27332743079202,46.26903976846439,46.25890337792088,46.24396351552635,46.22948329916117,46.21505686557861,46.18579871953403,46.17148336865342,46.15693655798344,46.15754084662792,46.15668100396773,46.15718136548516,46.15684079822461,46.15666902583067,46.1565459843732,46.15685126270089,46.15699555235996,46.15668524657291,46.15679939441896,46.15684958918661,46.15681371593888,46.15785319591642,46.15750429482858,46.15790840607457,46.15748385162078,46.15750358662214,46.15720925755265,46.1563297570221,46.15559562721131,46.15541930926072,46.15531282034895,46.15527741983025,46.1549019393364,46.15482023360027,46.15480514753648,46.15481160547435,46.15463470964173,46.15501117101687,46.15466230567074,46.15466277271187,46.16941637455609,46.18404506633334,46.19853681043988,46.21297652040406,46.22749848780188,46.24176086118285,46.25626765834298,46.26962699856387,46.28422707805264,46.29850643293545,46.31245057738771,46.32675640938158,46.3554269956957,46.36988971518367,46.38428679207878,46.39888183578645,46.41413890342253,46.42837502953249,46.43553474269796,46.44285833130923,46.45722882726484,46.47176948264863,46.49996924129317,46.50210956807942,46.50208177640489,46.51656453793304,46.53115620765169,46.54574756699547,46.560257018237,46.57484700852159,46.58115986112632,46.5844009112575,46.58553370520345,46.58568593984406,46.58583889595547,46.58590328679786,46.58594694712947,46.58596802861167,46.58616331493054,46.58626024823006,46.58628085142673,46.58627629320984,46.58629278751926,46.58630974897882,46.58641039649864,46.58649588830936,46.58658180990225,46.58657349705313,46.58658375435133,46.58658508349043,46.58664696302609,46.58675778081077,46.58691277924851,46.58703002397593,46.58719152840174,46.58730284551402,46.58745837833737,46.58743752026962,46.58737875299512,46.58750668146969,46.58752417954482,46.58754551878367,46.58753971871948,46.58761589403794,46.58781757378667,46.58802503072101,46.58808594555585,46.58823912786099,46.58835454203388,46.58842610540913,46.58853004110107,46.58864464070069,46.58866661626695,46.5886610316693,46.58861683386277,46.58844645218776,46.58836911222136,46.58836892928266,46.58844554584442,46.58859276027609,46.58870264694144,46.58909701498828,46.58922824699402,46.58928287899421,46.5893319350613,46.58936414720796,46.58935223071642,46.58931343110861,46.58928035797433,46.5892362869135,46.5891485442906,46.58910480312998,46.58892389068061,46.58867701005494,46.58863264281033,46.58856722602623,46.58837015140692,46.58805189949003,46.58789294892697,46.58772329871223,46.58768523850929,46.58768061975109,46.58764739517523,46.58759807343248,46.58759191379459,46.58747131540061,46.58741093776332,46.58738851924409,46.58760206117314,46.58773375591968,46.58797472970006,46.58822148465162,46.58832517912865,46.58843477852103,46.58850075563279,46.58869764508602,46.58876335964158,46.58876339715735,46.58871937323342,46.58865297598237,46.58832284208324,46.58810828129143,46.58798648845337,46.58786444371984,46.58779818773921,46.58775874101195,46.58773492932809,46.58777156556072,46.58780767558726,46.58795447547865,46.58837216803699,46.58852558201885,46.58856962236695,46.58865687989816,46.58874387078289,46.58883171774786,46.58891972254249,46.58899658044007,46.58904584897578,46.5891000813789,46.58911067534556,46.58908315196108,46.58904464364568,46.5889956443803,46.58888586577101,46.5887369469902,46.58874846992395,46.58876092315322,46.58882424615191,46.58917225357077,46.5893072964055,46.58948864791882,46.58978870681427,46.58991710213288,46.59037469375897,46.59066516176337,46.59105957597755,46.59132805928058,46.59161338909837,46.5917445125658,46.5920511209281,46.59224265732468,46.5922758416126,46.59230336333562,46.5922875398636,46.59230963846057,46.59237054831889,46.59262529252409,46.59266725640556,46.59305286931441,46.59311910071894,46.59320712970379,46.59328444973988,46.59334479503029,46.59335506006266,46.59333832373119,46.59336003159893,46.59340913280097,46.59344737810139,46.59375539175146,46.59415114600768,46.5941954135283,46.59425628570808,46.59427922559555,46.5942919963346,46.59454752156997,46.59461859594233,46.59470604202294,46.59485978751315,46.59511183653935,46.59549013048485,46.59568801482854,46.59586836351069,46.59599478386981,46.59608255144632,46.5961926281075,46.59626928656397,46.59639518227898,46.59652620652295,46.59663483537857,46.59665582197523,46.59669920043996,46.5967595763004,46.59677109027021,46.59677158025314,46.59679906958572,46.59687642053607,46.59691479832978,46.59695866785823,46.59701908290175,46.59707916974168,46.59719936596558,46.59723758356286,46.5972645867302,46.59731404959028,46.59736890414918,46.59742908464924,46.59751722303771,46.59766073939433,46.59774824373667,46.59799022682337,46.59815833950455,46.59834257409564,46.59858383660193,46.59906170248291,46.59910541298851,46.59908860564219,46.59874708389337,46.59858719143642,46.5985604630341,46.59859851703029,46.59862244919308,46.59864757560892,46.59868421407512,46.59873442083715,46.59877065713405,46.59875497337683,46.59873044702034,46.59875980774488,46.59880992813478,46.59881546990996,46.59884329842443,46.59884954727342,46.59897351499103,46.59912020589142,46.59925153897892,46.59931692906441,46.59939584817565,46.59950315376381,46.59988431473077,46.60027744803523,46.60057925098484,46.60076029164448,46.60075877729198,46.60077455046854,46.60078371980735,46.60083657444863,46.60086723303287,46.60097191925339,46.60113464995857,46.60136898524271,46.60152083292896,46.60154311041703,46.60166896235499,46.6019051882035,46.60203733121134,46.60230164039856,46.60252174622062,46.60291773629789,46.60311594541034,46.60330342632641,46.60363417238789,46.60369491600211,46.60375505946178,46.60384312989643,46.60401916696259,46.60421731241367,46.60430018141696,46.604356188686,46.60440584701649,46.60451587716862,46.6046316362621,46.60465425689456,46.60475396455303,46.60483159499123,46.60486493703899,46.60493679390534,46.60520053882088,46.60531083290198,46.60537151013673,46.60541638830116,46.60548817343511,46.60583995044996,46.60597244165095,46.6060330503764,46.60606645698033,46.60611103567783,46.60622194704364,46.60627789172776,46.60641096532127,46.60645528624992,46.60658829104928,46.60683092054779,46.60737389964882,46.60779188426538,46.60829327631024,46.60836514994138,46.60839313553073,46.60843748749232,46.60889928797887,46.60898729379336,46.60911946707318,46.60936114530066,46.6096025218943,46.61019629659941,46.61045982999679,46.61059205672678,46.6106639616989,46.61075310686869,46.61085751048849,46.61090754817663,46.61096795179778,46.6110998474223,46.61118784636717,46.61137445200421,46.61147304500504,46.61163217199334,46.61179125377266,46.61186887410742,46.61155726369293,46.61158394625991,46.61196935485616,46.61212312524449,46.61229860600336,46.61266103150533,46.61285312637233,46.61302311399695,46.61315511760093,46.61324288206015,46.61330940223975,46.61344718683841,46.61350801572586,46.61386000581611,46.61416837798215,46.61445440703486,46.61457595997153,46.6148026072468,46.61494596590739,46.61501278714407,46.61505194149493,46.61501404115989,46.61508077680018,46.61513003436758,46.61519633187012,46.61553091770868,46.61581022453381,46.61623430517998,46.61653576912033,46.6166898602789,46.61691569200303,46.61695997604409,46.61699360901908,46.6170378884053,46.61712021915461,46.61738463188521,46.61751130402421,46.61762198810629,46.61781451331082,46.61788046688065,46.6179744773432,46.6180805836153,46.61810903959191,46.61813086426881,46.61818074585049,46.61874050872791,46.61889456886774,46.619070089969,46.6191584584694,46.62000327361793,46.62015695046259,46.62046477146157,46.62077351528202,46.62112527646607,46.6213893076226,46.62154306633546,46.62178499815582,46.62198289059867,46.62214806337225,46.62223600994175,46.62241183319159,46.6225438288094,46.62311470705684,46.62328543210306,46.62376264655502,46.62396044927863,46.6243342038749,46.62446624938097,46.62466379536114,46.62477379468397,46.62495736730099,46.6250697068439,46.62510223475472,46.62510294509726,46.62514151782182,46.62529550342977,46.62535629917588,46.6254659154688,46.62574623622103,46.62588383450153,46.62598853308595,46.62647179133184,46.62682275073246,46.62693257378427,46.62705384991535,46.6271801608338,46.62736189114035,46.62756522165733,46.62762554605145,46.62810877013888,46.62830647707256,46.62870198041099,46.62898727579984,46.62907527142094,46.6301519261307,46.63028335923124,46.63043704123739,46.63060171272851,46.63093647921389,46.63109552618641,46.63138122626573,46.63164447595955,46.6319188284527,46.63206711246884,46.63231369718742,46.63244574663316,46.63251168095254,46.63275300214498,46.63281937450951,46.63295091126246,46.63303865290091,46.63314828371653,46.6332800932326,46.63360967589024,46.63371925405756,46.63380704770477,46.63389489361153,46.63393863488233,46.63442165527056,46.63499275708768,46.63527864457495,46.63554207814942,46.63580556495722,46.63624491030369,46.63646407381659,46.63705915999991,46.63731734435957,46.63739175259897,46.63741925419399,46.63761721849102,46.63772168549486,46.637776857677,46.63776587934538,46.637776721481,46.63790888693847,46.63792004999155,46.63795287785312,46.63816690106502,46.63829892850718,46.63840874674224,46.63856261629142,46.63871028887709,46.63911188247144,46.63926531642995,46.63963883872427,46.63970483790951,46.63983645610173,46.63996262289102,46.64022066447669,46.64046200857483,46.6408574203394,46.64104433305795,46.64116999075232,46.64123080831409,46.64135168796155,46.64157130453623,46.64196623602757,46.64212024651138,46.6424498420385,46.64253235318303,46.64273018178049,46.64295004274081,46.64317558417103,46.64331829917754,46.64345019142207,46.64377951789393,46.64386782468713,46.64405404967514,46.6442681948316,46.64435031276396,46.64450424461806,46.64474027704362,46.64488819974728,46.64499845275689,46.64541581485678,46.64563562490818,46.6457890583756,46.64589874071917,46.64610214572028,46.6462173236673,46.64630525467915,46.646370882496,46.64647571486812,46.64651923406215,46.64651968965102,46.64655245182412,46.64657451221499,46.64671162660332,46.64677235956243,46.64682164046003,46.64687089783878,46.64693130022879,46.64699205394181,46.64705204492139,46.64709041056319,46.64710152619536,46.64709018260864,46.64712316576256,46.64728258181965,46.64758966599475,46.64775439659712,46.64786397087673,46.64790803422238,46.64797426880034,46.64800708128045,46.64808372156967,46.64812791045424,46.64816640387171,46.64817145588462,46.64819925470481,46.64824838537142,46.64831458612409,46.64833646039587,46.64837488548943,46.64840761191388,46.64845601560786,46.6484845623537,46.64858843811427,46.64894531740411,46.6490440556726,46.64919254514395,46.64932957886365,46.64945557057888,46.64956532822438,46.64970848130309,46.64976339737049,46.64976866816919,46.64981788661508,46.64983982924389,46.64984655216787,46.64990043541663,46.64991725492811,46.64997188599808,46.65003775709903,46.65040001147813,46.65046601124699,46.65054802412543,46.65058652420654,46.65060895740015,46.65064682326218,46.65068530530827,46.65075122792038,46.65082813448066,46.65088301090138,46.65102590798827,46.65120164966838,46.65130024194026,46.65135503894751,46.65144306836324,46.65147612629615,46.65156369074592,46.65168991482295,46.65173377359348,46.65182726429289,46.65195868421507,46.65211248632112,46.65233240768433,46.65261181155961,46.65283685725456,46.65299071461117,46.65318826305925,46.65337359143984,46.65360581678285,46.65397920377325,46.65415495477345,46.65435276306303,46.6546599897517,46.65478066308442,46.65496739757039,46.65514319378079,46.6553241014024,46.65550539131112,46.65616390149231,46.65627332487244,46.65633932273945,46.65640570031727,46.65642759687471,46.65646053982053,46.65653177835097,46.65659193869854,46.65663618051245,46.65726888006527,46.65732776784905,46.65776699120838,46.65809623321022,46.65814010499628,46.6582227122971,46.65828296027939,46.65852428183624,46.65887610611748,46.65911775729771,46.6592059016732,46.65944206220575,46.65953009102091,46.65962353444634,46.65968384810153,46.65971699322316,46.65973896757633,46.65976641406574,46.65982143087164,46.65992606417133,46.66052454465149,46.6606230926614,46.66068383042088,46.66081527612021,46.66085327008945,46.66091926800406,46.66101878969672,46.66116654326042,46.66114511187546,46.66089768708251,46.66083213311857,46.66072241352198,46.66061217618203,46.66054637112461,46.66035450324796,46.66028307012754,46.66022845901526,46.66022846511715,46.66031091190544,46.66045885354004,46.66061273239195,46.66094210285664,46.6611560076363,46.6612003462472,46.66117830482347,46.66122231840321,46.66118953200547,46.66119509612679,46.66122810058048,46.66127203498039,46.66134327415993,46.66142588884554,46.6614589508548,46.66146427769085,46.66150252950953,46.66153584226038,46.66157952870798,46.66168936837933,46.66179622378724,46.66198765496021,46.66213010251776,46.66213414602245,46.66230952263951,46.66244630719969,46.66246320030297,46.66251243185188,46.6626553532959,46.66280888760454,46.66294093665088,46.66311620783346,46.66322575833022,46.663291821026,46.6634017561833,46.66353370599121,46.66368729522242,46.66375905861106,46.66383615859964,46.66383599333732,46.66379819538695,46.66364415800167,46.66356768106485,46.66346900631879,46.66343050850998,46.66333161222964,46.66333718082976,46.66339743278209,46.66353511235409,46.66373259309267,46.66388620579627,46.66401819590158,46.66414429603933,46.66422639645204,46.66431438481254,46.6644237531058,46.6645119368394,46.6646328273362,46.66471540113081,46.66483654618142,46.6648800064976,46.66491346826337,46.66492496371671,46.66495830529757,46.66495264906006,46.66489260132693,46.66479935871978,46.66476642704826,46.6647225108958,46.66471708232793,46.66473382991483,46.66479926504916,46.66483233032461,46.66484915361944,46.66483266389405,46.66475061657025,46.66450376585601,46.66445983933166,46.66447096858793,46.66472313497439,46.6648330695539,46.66494281507889,46.6649869365217,46.66514068763162,46.66522817998521,46.6654477877419,46.66568984449854,46.66586545888443,46.66607395749978,46.66612371001374,46.66617871475889,46.66618991975979,46.66614612592182,46.66612439268304,46.66614658754062,46.66617934710455,46.66622353485142,46.66638265949449,46.66643246969305,46.66654267214932,46.66676273869137,46.66678448814906,46.66678480941563,46.6668728070797,46.66690612267973,46.66689537754768,46.66691743976649,46.66699437664261,46.66711536762686,46.66714824022963,46.66714836597117,46.66708849112133,46.66709374182889,46.66726960515339,46.66733553371858,46.66734652600581,46.66729221611202,46.66729184214746,46.66736939267722,46.66738032196516,46.66736919319776,46.6673036929925,46.66730387942027,46.66733662403097,46.66755091033489,46.66769407684996,46.66774338593579,46.66776531447878,46.6677656754808,46.66772165809328,46.66772234042915,46.66778837186218,46.66772246989136,46.66766771486652,46.66764588982064,46.66766794385755,46.66771168733611,46.66777779649261,46.66788802293772,46.66801530084447,46.6682118906262,46.66851965782686,46.66865676071431,46.6687669764796,46.66877802303087,46.66876150868374,46.66876869006368,46.66782174478746,46.667722606343,46.66755801255088,46.66862953529571,46.66861990015981,46.66767367943245,46.66794174763244,46.6691438781011,46.66909852132551,46.66952939888745,46.66961433062696,46.66971808478888,46.66999270244182,46.67012431667147,46.67036585264207,46.6704536514972,46.6705305029804,46.67066252236614,46.67080568053768,46.67093752900336,46.67100308009962,46.67113482057957,46.67126679480535,46.67148602576769,46.67157438080448,46.6715962436827,46.67159061700963,46.67150835552291,46.67150297760332,46.67152472322534,46.67157440144388,46.67162907627152,46.67173912988218,46.67179936889247,46.67184334440831,46.67196994021886,46.67214566412792,46.67227740201552,46.67229909220492,46.6722609231124,46.67227692782985,46.67234267611534,46.67243084752796,46.67256268860923,46.67271652199658,46.67284830248039,46.6729802793008,46.67300214122429,46.67300744182796,46.67307379112138,46.67315602662052,46.67330969104281,46.67337554950279,46.67348515642894,46.67352383342151,46.67355155829621,46.67359529730997,46.67366128901631,46.67383709527888,46.67405663553693,46.67425378083943,46.67445197145721,46.67453989211655,46.67473722958519,46.67500123817845,46.67522054983482,46.67544029599703,46.67563296026929,46.67567122093845,46.67563872790785,46.67567144970189,46.67578657107298,46.67579780868191,46.67578732194718,46.67582566676534,46.67589152116445,46.67606724009234,46.67657230369114,46.67672596389871,46.67685774916158,46.67716528988091,46.67727501869982,46.67745094780969,46.67754452446945,46.67761008676239,46.67762673484805,46.67765422229795,46.67791260639748,46.67806335802737,46.67815953938555,46.67818181068041,46.67818175461465,46.67815997882185,46.67814956524325,46.67811679264236,46.67800673619801,46.67799003278768,46.67802315713352,46.67810497844204,46.67805549613445,46.67806128842634,46.67818717204924,46.67819284871149,46.67813781654893,46.67813235312123,46.67819245066393,46.67834074291947,46.67846549732898,46.67857658318697,46.67871417007961,46.67880715666897,46.67892250901359,46.67896061950621,46.6789714732346,46.6789607972383,46.67903756429946,46.67903722389453,46.67896042227249,46.67894388411288,46.67899840713371,46.67914131672988,46.67917998856075,46.6791909002702,46.67917950771221,46.6791957381771,46.67923997435923,46.67930590385513,46.67978863642144,46.67985469086167,46.67990985283397,46.68011250508598,46.68015654767071,46.68018933536317,46.68027672261964,46.68034260260589,46.68045262662738,46.680463154812,46.68041382857883,46.68044148799631,46.6805342158461,46.68060022856156,46.68065524424918,46.68074329264284,46.68084192324288,46.68090821266055,46.68100102811777,46.68108361147647,46.68123694515531,46.68163244012609,46.68196196879994,46.68213745569262,46.68229152714684,46.6822986968025,46.68230199968322,46.68225278838989,46.68224137537943,46.68225222786089,46.68229650152892,46.68237325980135,46.68247164976757,46.68266393491379,46.68272966011485,46.68277938051292,46.68283378295146,46.68289980950257,46.68300398862868,46.68313050236743,46.68336629642138,46.68354254630676,46.68369610177512,46.68378394653708,46.68393761963124,46.68402554412389,46.68415692475158,46.68428881558507,46.68457443112684,46.68464009711356,46.68494758312742,46.68503524380992,46.6851818490635,46.68544140373169,46.68568261645882,46.68588038013286,46.68618705741501,46.68629714871543,46.68635752506543,46.68665941921327,46.68679119488736,46.6872079508606,46.68755932599618,46.68769639422978,46.68770673722293,46.68767386724063,46.68767940784848,46.6877563244588,46.68792679590694,46.68803097128534,46.68809657547771,46.68815741797893,46.68822277745716,46.68831644141603,46.68842590109464,46.68844799248082,46.68843681730714,46.68844798294882,46.6885462679953,46.68861241531969,46.68872203917748,46.68876608685558,46.68880981570533,46.68897449756174,46.68906207875503,46.68928174960216,46.68947922302081,46.68957770276837,46.68973167400392,46.68977590354499,46.68986345453519,46.68992918085242,46.6901708935077,46.69034641846958,46.6904343800504,46.69052175066605,46.69071959352776,46.69089509279565,46.69107088826902,46.69118057511241,46.69152034305625,46.69154241084554,46.69149819622524,46.69149835034922,46.69153636381167,46.69160791870896,46.69171792323294,46.69178358594595,46.69182192588188,46.69184928832215,46.69190444521444,46.69197025112803,46.69210189502794,46.69213999880006,46.69218387921128,46.6922281105251,46.69235454332989,46.69240367972681,46.69246978155171,46.69258497723537,46.6927229452839,46.69278344145373,46.69283802851761,46.69287646835519,46.69268369082892,46.6926832605231,46.69272184000454,46.69279318428871,46.69286994696751,46.69297985698063,46.6930456683618,46.69311150807654,46.69319899565501,46.69333114389252,46.69336930867829,46.69338577143478,46.69336935149266,46.69341861121368,46.69345135481202,46.69350635584024,46.69382476879217,46.69393444851519,46.69406635919709,46.69426428881774,46.69432983219217,46.69456012796857,46.69464841217003,46.69477993924976,46.695219051893,46.6954168631929,46.69552622037623,46.69585608855775,46.69607562895093,46.69660242261132,46.69697581372547,46.6971294015916,46.69730524773903,46.69789800376999,46.69796369029527,46.69816161867118,46.69829344157949,46.69851280214369,46.69873252075121,46.6989961952815,46.69918290119697,46.69955648946165,46.69975388282342,46.6999735694921,46.70010533365879,46.70018804713062,46.70028685139084,46.70042953524352,46.70105060155178,46.70147897720361,46.70201163911841,46.70234175991114,46.70310519172511,46.70372596770113,46.70390725510521,46.70422598317504,46.70435795706311,46.70452252438268,46.70463222533044,46.70479180415635,46.70482486890496,46.70499484806339,46.70517066315053,46.70532412429286,46.70541797907143,46.70548377378655,46.70553361686138,46.70590690206367,46.7061048777683,46.70619785193048,46.70626415082384,46.70633800154982,46.70640127457839,46.70646720235427,46.70662120093337,46.70708230905813,46.70745578119328,46.70762079247037,46.70812585789842,46.70855442963133,46.70868630749587,46.7087302413962,46.70879590156668,46.70906489725006,46.70911961117632,46.70917965041514,46.70921265352717,46.7092239858797,46.70910853716777,46.70906468025667,46.70909819825275,46.70921377252855,46.70958704657692,46.70981274398542,46.71003223514452,46.7101201845422,46.71023524934586,46.71041097672484,46.71045503072369,46.71053173990095,46.71059213445375,46.71064128573719,46.71069608455706,46.71090508252866,46.71094868881654,46.71100927108525,46.71104781934669,46.71113550278921,46.71117395270753,46.71119617239842,46.71114701560877,46.7111742233364,46.71124590561964,46.71145486568197,46.71156999513485,46.71168556427855,46.71177892193263,46.71193295679425,46.71198783374417,46.71218007975353,46.71222376978376,46.71225653476881,46.71228460358519,46.71231179905391,46.71237773224011,46.71245444287215,46.71250970412773,46.71250954414423,46.71254787886871,46.71265210844416,46.71282804545567,46.71304750428064,46.71315210911139,46.71328263742605,46.7133937728959,46.71394297708041,46.714091427044,46.71442066977161,46.71453077196431,46.71456894037222,46.71457472254198,46.7144979059734,46.71453056595485,46.71460723943244,46.71479956608613,46.71504685090265,46.71539850955521,46.71547532710634,46.71572248812423,46.71594719326968,46.7161668321227,46.71627651252312,46.71646349492705,46.71661760786379,46.71676004973064,46.71691398268849,46.71734268165556,46.71760643195447,46.71769982050311,46.71778194105393,46.71784748948742,46.71790271197322,46.71795729209352,46.71803452722981,46.71806190531409,46.71814434989139,46.71824888766502,46.71824334286838,46.71825978995591,46.71838612600279,46.71841382576667,46.71841372558828,46.71835908132989,46.71837508876818,46.71854009346044,46.71875442878441,46.71883654810522,46.71897961650151,46.71908382991766,46.71914969677705,46.71922160138609,46.71930362337473,46.71955084042813,46.71982581528044,46.72003454062411,46.72015526280867,46.72028709993952,46.72042992250436,46.72053990553191,46.720649549466,46.7207154163444,46.72075392369109,46.72076456851862,46.72073772489519,46.72074318867612,46.72079808391394,46.72130320468498,46.7215281459787,46.72172634889301,46.72189101588397,46.72224262469826,46.72266013441361,46.72289053281524,46.72312142036284,46.7233412524628,46.72349476038089,46.72389004826946,46.72424695932239,46.72432964174362,46.72443911658723,46.72450530900084,46.72469767497014,46.72504337283537,46.72543897328292,46.72610890914842,46.72693281072564,46.72847084844778,46.72922850186031,46.72997042793145,46.73066776385576,46.73096445546926,46.73154618522708,46.7317895040693,46.73214597215728,46.73246453093329,46.73270022214335,46.73280472088999,46.73301872110645,46.7331997022412,46.73334276924131,46.73352914634159,46.73376497301116,46.73406153701445,46.73424239890955,46.73428634944742,46.73428324635465,46.73444082507292,46.73454119941178,46.73454996312893,46.73459420186042,46.73466000643047,46.73503871208955,46.73529071776373,46.73568032275796,46.73575707410609,46.73595515446798,46.73620210922316,46.73643229641148,46.73686616837272,46.73757954611498,46.73790312424826,46.73811688086501,46.73848449566452,46.73874261406377,46.73915990726027,46.73932428684041,46.74005428860848,46.74066346978442,46.74178851910426,46.74219477282282,46.74313319477289,46.74393420335728,46.74438950469552,46.74479042544382,46.74536672730947,46.74630494750431,46.74745754756598,46.74780322384476,46.74803939650559,46.74832476648983,46.74860432097119,46.7488954892041,46.74913704519312,46.74993444443256,46.75042529460742,46.7507322841761,46.75110588344991,46.7515890956323,46.75226955141429,46.75262076568431,46.75303811617157,46.75330165712106,46.75363107240585,46.75396029650976,46.75437775609152,46.75486056853848,46.75505836039211,46.75549763122702,46.75567336106572,46.75591507760642,46.75604643546255,46.75637584325711,46.7564637119006,46.75648577134466,46.75648242232774,46.75693598259591,46.75699127790615,46.75702401198989,46.757084299848,46.75716115580167,46.75745271942375,46.75771616488308,46.75798528084059,46.75816091447301,46.75844080184172,46.75852315556764,46.75857268208824,46.75862773576402,46.75871044566242,46.75897391211446,46.75901820157442,46.75906747924962,46.75915001122257,46.75919373398037,46.75946834132558,46.75951238456735,46.75957294517607,46.75964464710248,46.75974334555394,46.75996282595066,46.76003438359947,46.76005651584627,46.76013354893708,46.76022131044746,46.76027645845666,46.76032044484057,46.76034242638625,46.76041545831878,46.76049117735192,46.76060046190278,46.76102461563698,46.76137712615713,46.76145396867882,46.76166988461108,46.76185866312031,46.76195785164733,46.76203518841067,46.76222769149865,46.76233287988972,46.76246572158102,46.76260949950264,46.76275873386496,46.76306668242796,46.76314432498235,46.76322724002478,46.76334891744157,46.76380665835565,46.76384506484612,46.76402828758855,46.76415131450059,46.76424035389113,46.76434593963199,46.76436346367756,46.76444640303188,46.7645948396959,46.76470463992064,46.76474875047876,46.76492527523362,46.76503510920567,46.76516740122998,46.76540887791819,46.76582648207719,46.76598018611487,46.7662883187237,46.76648691866553,46.76691161090304,46.76717066653735,46.76732500793988,46.76755172481921,46.76795389488631,46.76806366471871,46.76809108256408,46.76814191719325,46.76821892350648,46.76828514906067,46.76835107432549,46.76850494038531,46.7685708625655,46.7687466180792,46.76879090752202,46.76909866822414,46.769252571031,46.76940617857353,46.7697580860512,46.76995601856075,46.77006620870451,46.77017648333083,46.77061589399649,46.77079233427839,46.77127656733532,46.77167214726401,46.77189200816036,46.7721567621424,46.77235532321463,46.77253105477735,46.77268507464235,46.7728611117867,46.77319009768957,46.77332182066542,46.77354200509224,46.77378383926823,46.77387164098643,46.77400371283434,46.77418967717717,46.77436499914569,46.7750217005129,46.77566858385806,46.77607409741874,46.77657863286791,46.77689667037392,46.77706626391144,46.77710439027882,46.77721436536892,46.77725817262544,46.77747764157212,46.77765299924864,46.77771912194831,46.77782277528993,46.7779211431129,46.77798684745337,46.77876998880411,46.77953693620447,46.77982224967749,46.77997555050904,46.78028349712361,46.78109637900534,46.78144853470089,46.781668278457,46.78210863488896,46.78263644532353,46.78309910827073,46.78353967522138,46.78366110026516,46.78381509810805,46.78390317454655,46.78398658699833,46.78404686398171,46.78412377017629,46.78429972890084,46.7844102423692,46.784619793996,46.78495079924729,46.78512255500361,46.78513926541108,46.78516660329462,46.78518336925562,46.78521187647105,46.78528371435601,46.78531697041032,46.7853180581625,46.78534493837794,46.78527919250993,46.78520257053189,46.78522472036477,46.78524172675188,46.78529143527108,46.78534646876001,46.78545087808036,46.78551330666659,46.78562141606706,46.78559446388822,46.78548455116986,46.78542919249001,46.78527562549616,46.78529771645743,46.78538617234278,46.78550180580498,46.7856231560645,46.78572136611086,46.78595228976848,46.78611725706919,46.78624389047427,46.78633162816559,46.78648013318522,46.78658406193921,46.78669965346216,46.7868367640403,46.78690256209912,46.78698000136355,46.78724327506662,46.7874190458011,46.78781494255632,46.78801312704032,46.7882111126514,46.78836558563122,46.7886316883397,46.78873710556284,46.78883966606541,46.78907134652364,46.78915439352942,46.78959698633485,46.78991319070853,46.7901734343618,46.79024531003777,46.79025670876366,46.79024655966273,46.79020290232527,46.79005582079437,46.78998516381174,46.78982229735966,46.78976271315936,46.78971946391486,46.78955559345107,46.78942513615056,46.78912628965862,46.78910020016553,46.78918398642293,46.78919590531469,46.78918574564994,46.78914207370485,46.7889520978224,46.78889234739258,46.78881718986003,46.78872897532648,46.78878844585591,46.78888823473912,46.7888888412798,46.78885674209317,46.78876933371552,46.78878118942483,46.78871557261006,46.78873965934307,46.78869700617401,46.78868660176315,46.78869765967767,46.78873627457858,46.78885202907072,46.78901793655362,46.7890899354026,46.78916270805972,46.78931248612259,46.78950012780552,46.78962173278453,46.78972638520297,46.78988065138935,46.78999090325427,46.79021044515511,46.79027671320964,46.79035386439278,46.79055197339834,46.79072807118892,46.79083832430654,46.79110190888535,46.79125568400621,46.79138775660964,46.79186170865371,46.79194990881822,46.79205981779933,46.79219124879086,46.79241100284712,46.79249904706766,46.79270904281666,46.79306138819929,46.79321543267732,46.79339195609069,46.79350210882381,46.79398176145757,46.79416358582775,46.7943840536681,46.79475767487233,46.79491169325014,46.79526382140713,46.79543989222754,46.79559409056043,46.79600730923006,46.79617826272176,46.7962657299846,46.7963535800375,46.79670498414391,46.79681511778879,46.79699114397729,46.7971462017541,46.79734428445113,46.79763037149456,46.79778402755746,46.79798142008689,46.79817922394348,46.79822326771836,46.79833335725372,46.79839945368346,46.79853089901655,46.79872898716684,46.79886088790828,46.79892647500955,46.79909214338259,46.79924799589687,46.79938393195564,46.79946634548974,46.79968655554856,46.79997255946505,46.80061088059716,46.80078648382981,46.80091838101867,46.80109380011895,46.80137925059939,46.80197193208997,46.80247691844503,46.80260852591014,46.80296038781739,46.80320230183681,46.80355418528376,46.80388392568975,46.80432415679281,46.80505147085649,46.80519481011132,46.80536589236637,46.80619772735117,46.80636345599622,46.80654546357433,46.80663480636536,46.80666799583182,46.80666238326243,46.80671843663252,46.80671891444132,46.8067356214023,46.80672191951258,46.80692758467326,46.80703254868214,46.80720908288844,46.80734726956653,46.80760133029185,46.80761292983209,46.80759600920013,46.80753622866923,46.80742644344773,46.80738228734922,46.80705111873205,46.80662639404023,46.80652726373656,46.80642802668105,46.80630123317005,46.80621320738508,46.80615827054122,46.80615886570102,46.80618654494752,46.80649038054146,46.80666157859916,46.8069978165964,46.80713610585436,46.80754796901788,46.8075972445485,46.8075865091624,46.80756468741006,46.80668088861272,46.80659843104704,46.80629881097567,46.80625153531605,46.80618034811571,46.80621331706087,46.80652220540025,46.80662693707892,46.80735151374114,46.8073899294381,46.8073957265723,46.8073741389206,46.80668241459485,46.80663820952081,46.80660548628755,46.80660025751675,46.80662225806429,46.80667209581259,46.80682552113861,46.80711134170037,46.80741900260541,46.80746270915785,46.80751829668346,46.80754221823044,46.80751501198951,46.80738943312626,46.80741131329033,46.80824038752165,46.80822414141468,46.80748865880852,46.8074445656583,46.80741195408228,46.80731945496522,46.8073139550737,46.80737992632169,46.80788493013935,46.80791271432408,46.80789640986207,46.80723730753047,46.80719895330513,46.80719395622484,46.80720504218217,46.80724902430155,46.80740301491746,46.80742506169627,46.80741938514404,46.8072491427683,46.80723863082812,46.80727153769917,46.80801832213551,46.80805679599593,46.80804049078672,46.80723914786331,46.80721137024066,46.80724489895015,46.80736623422049,46.807736304432,46.80792941953689,46.80800698688005,46.80813348509493,46.80813925453472,46.80830111632421,46.80854829080314,46.80865407094288,46.80869625624587,46.80867357516296,46.80871481953796,46.8087512330647,46.80877841072891,46.80877798353835,46.80874564472015,46.80871373268675,46.80869573604001,46.80865875288642,46.80861230805698,46.80858010750624,46.80852541847547,46.80845652020773,46.80841021718091,46.80837792372022,46.80837498385587,46.80835316168113,46.80834134182116,46.80832249728989,46.80841050781142,46.80862399143241,46.80885400941635,46.80900766169016,46.80913960571607,46.80931508119274,46.80940333198104,46.8096347343028,46.80985460503667,46.81040467793343,46.81078362972828,46.81078508744655,46.81085045650607,46.81084470739375,46.81096606560878,46.81106454638336,46.81110301675852,46.81114762998109,46.81114224169173,46.81116451483307,46.81118644787576,46.81121940493328,46.81122905791067,46.81124046743629,46.81131717695461,46.81133262794907,46.81136547552774,46.81141491282032,46.8114809393925,46.81153612572123,46.81152614205387,46.8115376246178,46.81164746701241,46.81169161967227,46.81170258261395,46.81179021255281,46.81183407984793,46.8118727204528,46.81188930377353,46.8119440847265,46.81194540783774,46.81197297307506,46.81207701804733,46.81209320394876,46.81210985637513,46.81250513004574,46.81311522333212,46.81340528467624,46.81362565186837,46.81380153061009,46.81407691514567,46.8145836271468,46.81484798113621,46.81524479203913,46.81553062036991,46.81671899538809,46.81718120625408,46.81751175069566,46.81775432770805,46.8179853179379,46.81831602620019,46.81868525594268,46.81916444066469,46.81983135021286,46.82034364776604,46.8206416058983,46.82128694410886,46.82149637811484,46.82210708369517,46.82290021963306,46.82318647243355,46.82347233894175,46.82424236606124,46.82507101584619,46.82613312276947,46.82688023703316,46.82747369125453,46.82762744686008,46.82797960906159,46.82815591550803,46.82839834715968,46.82848653083349,46.82868382513286,46.82927718332152,46.82936514065759,46.8294968550596,46.82987110731449,46.83028999930305,46.83075259857065,46.83097254230611,46.83121403763833,46.83160963217089,46.83198329001431,46.83215921010387,46.83226893789344,46.8325368639052,46.83268604467538,46.83301594907569,46.83327933104066,46.83343304295448,46.83382756068981,46.83400310049372,46.83417891535972,46.83454802273955,46.83473897022993,46.83513479411395,46.83544251479222,46.83590430375065,46.83614679419701,46.83705216001496,46.83746367299475,46.83781044716883,46.83802591151113,46.83815260059648,46.83832844125722,46.83846020685432,46.83861418579666,46.83890011658092,46.83905451226319,46.83925801220276,46.83937934924148,46.84012245468104,46.84065123351531,46.84076171772349,46.8408934609995,46.84131198551467,46.8417962766846,46.84217043781366,46.84228065812795,46.8423465132953,46.84243403439287,46.84263119973177,46.84288740643242,46.84297588322135,46.84321668808072,46.84342989942726,46.84411473364235,46.84430649006062,46.84520534667759,46.84544646869519,46.84562262102029,46.84628174511464,46.84652324496056,46.84676470288286,46.84726936626773,46.84746667770462,46.84775172843972,46.84792754466074,46.8481468940968,46.84834508834852,46.84935567225433,46.84957490708883,46.8497066772473,46.84994861584058,46.85001442053977,46.85047557686068,46.85106816252388,46.85161665901857,46.85231935850454,46.85280269909272,46.8530185186827,46.8534291371367,46.85367117751271,46.85386972449454,46.85408986182251,46.85422776815279,46.85425608161692,46.8542680085976,46.85432385818243,46.85444572342138,46.85462771601319,46.85489715358758,46.85516139095746,46.8553813952246,46.855754501385,46.85680918216888,46.85768803987674,46.85797380564613,46.85841234812226,46.8586210887984,46.85869230854912,46.8587539200897,46.85887774754767,46.85891678486615,46.85890110318999,46.85885754942971,46.85871553676794,46.8586773591716,46.85870045141129,46.85881106379694,46.85882206058363,46.85875678782559,46.85860889298934,46.85856528101251,46.8585543429184,46.85855984215349,46.85869259664335,46.85890312177887,46.85897446186397,46.85913414078357,46.85924457284715,46.85953057678791,46.85994878337191,46.86036711379318,46.86047682558524,46.86065301192612,46.86087278962523,46.86140005637868,46.86161977639205,46.86175163702618,46.86210378422911,46.86232386953189,46.86296188849774,46.86342375672974,46.86397366993875,46.86415012232063,46.8645893146685,46.86494178407295,46.86582124453023,46.86630475954239,46.86661301008116,46.86697961226671,46.86755859778839,46.8678224631384,46.86797608714409,46.86806452570859,46.86833462738858,46.86843897994657,46.86865884059436,46.86887878080019,46.86903248067516,46.86933985759359,46.86947151885281,46.86955947651035,46.86986761431117,46.87002158784801,46.8702629757077,46.87057045579648,46.870812222532,46.87096617278357,46.87120316089489,46.87130750984802,46.87139568133193,46.8716815772982,46.87196735524088,46.87225333872424,46.8724514797963,46.87264919203576,46.87280305410449,46.87297882551645,46.87304479035341,46.87326494533857,46.87346276477039,46.87388056790388,46.87420977770905,46.87443041558996,46.87451820837001,46.8747917807093,46.87495002936596,46.87521255676509,46.87534382070046,46.87547612213471,46.87553068131484,46.875629750771,46.87569555931131,46.87578327234644,46.87584902387047,46.87593673635887,46.87609071170399,46.87650748311274,46.87666137418284,46.87707545242242,46.87727638513829,46.87749578943413,46.87760575918608,46.87782532723481,46.87793489263075,46.87837434017857,46.87861576120748,46.87903263213784,46.87934047881458,46.8797135931821,46.87993283546014,46.88013072824871,46.88046017503891,46.8806138542943,46.88072355304791,46.88095990330918,46.88111373625053,46.8811904038001,46.88121812058856,46.88127299069406,46.88131479577092,46.88288912783237,46.88383552022415,46.88393503512189,46.88411037284884,46.88419303900518,46.88424789653662,46.88443982469975,46.88452752035175,46.88462640664897,46.88471411256758,46.8846865651258,46.88477414896283,46.88476890178006,46.88473566078896,46.88452691911687,46.88445005128835,46.88438379067695,46.88419740172245,46.88416424695286,46.88412020628166,46.88395537884,46.8839004747348,46.88381283307571,46.88376885006601,46.88370271392444,46.88349960838998,46.88337320180263,46.88324122911526,46.88320278801383,46.88320245433658,46.88324669971289,46.8832191850822,46.88326250624671,46.88325183362052,46.88327876575232,46.88326795057996,46.88331745697946,46.8834820611196,46.88347109568544,46.88338810858038,46.88340463728831,46.88348156262035,46.8836293520307,46.88389114623978,46.88401927728375,46.88420586984421,46.88426035922117,46.88432624212594,46.88442509104358,46.88485803030463,46.8850449744566,46.88514937266746,46.88525904821104,46.8853791259564,46.88562623622584,46.88576887800683,46.88602655344079,46.88653701199822,46.88692106154702,46.8873161691218,46.88749193032292,46.88760135540363,46.88863378514434,46.88880922741016,46.88894083622587,46.88927036500517,46.88959974136623,46.88975901749793,46.89026386598688,46.89065323776767,46.89085107610479,46.8910928183674,46.89159782259256,46.89181756281432,46.89216881063025,46.892388516593,46.89258613945869,46.89278362176348,46.89311296637305,46.89318429289847,46.89324471713009,46.8932753570212,46.89328911442536,46.89330502769102,46.89331066116668,46.89334342480086,46.89340963697844,46.89406804185858,46.89452927837633,46.894660768728,46.89481453396748,46.89490281536488,46.89523181762988,46.89537455400979,46.89547336907111,46.89563310819346,46.89567669695095,46.8956881637524,46.89572663985561,46.89581421052382,46.89605567025459,46.89625878571663,46.89649545130472,46.89656099497006,46.89680263259738,46.89702201871815,46.8973077000016,46.89814229484994,46.89853731974508,46.89873504574746,46.89897670505658,46.89910879008112,46.89930627178916,46.89958115991012,46.89970770512991,46.89983365247139,46.90007530449998,46.90029486222747,46.90049255678168,46.9006021046688,46.90088809508867,46.90128305641983,46.90189809691016,46.90235972087617,46.90262328350448,46.90271060020173,46.90282062500459,46.90290855050798,46.90301866727641,46.9031278973563,46.90329281530577,46.90357568148101,46.90358742703815,46.90434188335833,46.90464355344427,46.90473732840851,46.90514374662758,46.90536924698961,46.90552255532905,46.90590679175128,46.90645643705067,46.90660977317722,46.90671987716271,46.90696132175003,46.9071587642232,46.90735629199512,46.9076259118366,46.90786998331001,46.90808713520173,46.90814200863468,46.90815330757781,46.90815301006125,46.90804372612257,46.90803257666136,46.90796674955338,46.90794506049314,46.9079783034737,46.9079782251622,46.90793458026332,46.90793459211855,46.90795626837234,46.90808839381617,46.90811067049941,46.90815444573332,46.90819817820159,46.90829728847213,46.90837402559642,46.90855029490776,46.90894516361101,46.90902766236578,46.90915381068437,46.90919427142926,46.90917840953511,46.9092222861756,46.90928059788582,46.90931315712346,46.90935726264487,46.90963164755509,46.9097304525318,46.9105862575682,46.91090517198861,46.9111032359998,46.9112125799592,46.91154208838834,46.911849758865,46.91204695583072,46.91259600207756,46.91283761420694,46.91312297307527,46.91328225378163,46.91369370122557,46.91433060014108,46.91446242984948,46.91472620791568,46.91481372842551,46.91496727448798,46.91514299776756,46.91525305453083,46.91534068753666,46.91580181772763,46.91624089281447,46.91643853752763,46.91651007755917,46.91659212286127,46.91678463322234,46.9168775833757,46.91700917917232,46.91722919568561,46.91760245426443,46.91786581342932,46.91806335460368,46.91837055152568,46.91859033614882,46.9187439873056,46.91924894966613,46.91940283972338,46.91999545758704,46.92056633894303,46.92074194671492,46.92104975325272,46.92115910100044,46.92216831578392,46.92237800625337,46.92253163565901,46.92268472883183,46.92289409230198,46.92302565963562,46.92350898799695,46.92370659670219,46.92405791154445,46.92460662637275,46.92498016459113,46.92515549405431,46.92555111580953,46.9257264998045,46.92612189132598,46.92638527254295,46.92653911547119,46.92672012545219,46.92680225277375,46.92690132434617,46.92699130989583,46.92712066696545,46.92731839934238,46.92744684574458,46.92780155760575,46.92826232220853,46.92843821244145,46.92848793593512,46.92853733653921,46.92860834762159,46.92871298529931,46.92893241384726,46.92912971735594,46.92950327161305,46.92965670445174,46.92972273927889,46.92978322018138,46.92981620898441,46.92990403827845,46.9301509495124,46.93026075717482,46.93078754731606,46.93094155224804,46.9311391978888,46.93127087558,46.9317317926639,46.93195121677026,46.93208852002539,46.93230285294437,46.93263743017634,46.93272012536902,46.93282421271037,46.93297227233206,46.9332362440782,46.93358756178571,46.93378516922562,46.93409768466282,46.93442720315849,46.93478374574222,46.93487183390668,46.93500885208371,46.93516844747491,46.93546437558822,46.93554685031361,46.93575533700297,46.93584900248011,46.9359805656927,46.93611201491149,46.93652400779029,46.93661715259201,46.93664460395443,46.93664461625014,46.93661167082029,46.936601052668,46.93652419885072,46.93652386844746,46.93654569657413,46.93660633273326,46.93676016511419,46.93689277991153,46.93689737471977,46.93696308138188,46.93710545728032,46.93727042404215,46.93735794789046,46.93738002919878,46.93741845385187,46.93747340207248,46.93759410943132,46.93769299238502,46.93786892324054,46.93790705984377,46.93791775364947,46.93795116811778,46.93801123397221,46.93812642465322,46.93817068574702,46.93817074853669,46.93813188667636,46.9379785178652,46.93793971274835,46.93795084841449,46.93802756801538,46.93803876400424,46.93798370802146,46.93783028070188,46.93783016616516,46.93789012421547,46.93801116572943,46.93816516693501,46.93815942493381,46.93807146661667,46.93804975634151,46.93805482122696,46.93802760166293,46.93787923006894,46.93783535899486,46.93770914360742,46.93762674129528,46.9375499719149,46.93744580509276,46.93727509963932,46.93707768280538,46.93682531154953,46.93662738035494,46.93653930066649,46.9364079100594,46.93622123275193,46.93615559344541,46.93595761409374,46.93583691196643,46.93568296849155,46.93554032677242,46.9352110659763,46.93512309900417,46.93493635685424,46.93480496845762,46.9345742467149,46.93438188422858,46.93424446255023,46.93410199018756,46.93386019046368,46.93372880507109,46.93353127989906,46.93326783082866,46.93312456632162,46.9330052601975,46.9325592788495,46.93240036408074,46.93218050072027,46.93172482792694,46.93158217062837,46.93146105358317,46.93142819220198,46.93141173392003,46.93142792429712,46.93148287104152,46.93152604225538,46.93154793770701,46.93160289466675,46.9316354997138,46.93178949735547,46.93184388597398,46.93186577602701,46.93198683296072,46.93215098967405,46.93228262637672,46.93241451410215,46.93250220407788,46.93260666290897,46.93278193235848,46.93303434986287,46.93315478550373,46.93356071379583,46.93379118581339,46.93395591869728,46.93411489278633,46.9346249552076,46.93468553471921,46.93479494456481,46.93493230454124,46.93533800904808,46.93537678457365,46.93537630548386,46.93559882902782,46.93568561208414,46.93576614749919,46.93585365700566,46.93620511794123,46.93651232071011,46.93664426061454,46.93672104078544,46.93679783783417,46.93686399375645,46.93699536511719,46.9372811992282,46.93750621071985,46.93781381104289,46.93802768744746,46.93820374876203,46.93829148392464,46.93862063641566,46.93897213942179,46.93921332298397,46.93974582962149,46.93991602685259,46.94004820265668,46.94017979103589,46.94050862414515,46.94072849986292,46.94083793940081,46.9410409762516,46.94145843698625,46.94159557001971,46.94167820554053,46.94185379443007,46.94195786148492,46.94206788316275,46.94246328944244,46.94281436078425,46.94342923058588,46.94391212719818,46.94410592429654,46.94429658984327,46.94461522431116,46.94490058451949,46.94529600522198,46.94573527845276,46.94586688854059,46.94602064113983,46.94639375266288,46.94650346507069,46.94659151510727,46.94667873303137,46.94689884311698,46.94711828578516,46.94738179712911,46.94753487745817,46.94768886766335,46.9478207096472,46.94812779567805,46.94824353849805,46.94836987181099,46.94876502702684,46.94894037202654,46.94924761560872,46.94937944062887,46.94975267912999,46.94986279537034,46.95016963328757,46.95032374182443,46.95056482839991,46.95071893153433,46.95085030814469,46.9509605841253,46.9511356773896,46.95128947554576,46.95155323578926,46.95172879341022,46.9517888966099,46.95189859683909,46.95200283731704,46.95222243703941,46.95279315023667,46.95325393576888,46.9534738276538,46.95359963799098,46.95370941005898,46.9538081829355,46.95389048836092,46.95404443870481,46.95426380319135,46.9543736858442,46.95450506195549,46.95477277861443,46.95494983251734,46.95498262722236,46.95503756496552,46.95519149662413,46.95519118246889,46.95520741540334,46.955284544,46.95567940310821,46.95589928949708,46.9561626592846,46.95625609962108,46.95626637053059,46.95631582465243,46.9563599602746,46.95647513829636,46.9565301812578,46.95656298982659,46.95664529903781,46.95683194602866,46.95692511000571,46.95694713629467,46.95696875041958,46.9570127696331,46.95707862225657,46.9571991262638,46.957286774021,46.9573852058896,46.95746230158697,46.95763777628415,46.95769228727576,46.95771440456181,46.95773085739113,46.95767001699544,46.95768093344662,46.95766972937342,46.95772474192854,46.95772999435949,46.95765841401494,46.95764167447904,46.95765825561371,46.95794365659224,46.95796554256658,46.95796501734131,46.95791574279996,46.95793176121217,46.95803064363326,46.95803067825706,46.95790935584991,46.95790938721237,46.95796454171699,46.95800796950992,46.95800779970281,46.95807381534132,46.95809515809569,46.95825977604277,46.95846620861419,46.95861593109539,46.95880220777479,46.95881917079441,46.95881895889992,46.95884074209021,46.95899424920652,46.95933983482448,46.95952602220393,46.95980064921076,46.96012950722004,46.96026670180714,46.96040425003665,46.96045335169459,46.96048599785319,46.96059538679273,46.96069415140921,46.96079814872827,46.96091355207339,46.96103936853118,46.96118212011717,46.96153323250071,46.96159950275931,46.96167062929272,46.9617033502869,46.96184549878224,46.96186222157526,46.96185661001734,46.96188963650733,46.96221281588823,46.96229518150704,46.96240479311293,46.96242674056428,46.96238273530282,46.96238242257397,46.96250328010887,46.96249203922213,46.96256846584284,46.9626176475367,46.96262256223526,46.96255645165932,46.96256754149363,46.96263864946243,46.96264435546677,46.96258361989892,46.96258876514554,46.96262154466972,46.96262146798224,46.96253357155159,46.9625225652677,46.96257712339069,46.96264316418721,46.96266469363914]}],[{"lng":[-90.93719399909232,-90.93767509960341,-90.93780338620751,-90.938027866173,-90.93822000476735,-90.93844469048018,-90.9388295490017,-90.93895764988089,-90.93903763576141,-90.9390219447895,-90.93918257573252,-90.93919881118063,-90.93915040716936,-90.93872633620599,-90.93850994161227,-90.93820577623376,-90.93818985443242,-90.93822251364453,-90.93809419239197,-90.93809416027437,-90.93809423203533,-90.9379743931384,-90.93776580128959,-90.93763817264268,-90.93761403110371,-90.93766236323647,-90.9378228266776,-90.93782302364549,-90.93775917370183,-90.93751915247275,-90.93747085633524,-90.93748707675796,-90.9376156732808,-90.93790396669564,-90.93819301662482,-90.93832110722721,-90.93871259879305,-90.93873818217988,-90.93891430312618,-90.93891453672184,-90.93913099155188,-90.93937125955979,-90.93977982368176,-90.94019665948751,-90.94054936106653,-90.94088590027877,-90.94133474217841,-90.94202406200377,-90.94234437768466,-90.94276096318939,-90.94314560984459,-90.94407547820941,-90.94446001764717,-90.94468443669734,-90.94516509500264,-90.94580603644397,-90.94599869606245,-90.94625463678921,-90.94683201536974,-90.94744066919021,-90.94798535519023,-90.94840202586359,-90.94910701703228,-90.94942765927455,-90.94978003324343,-90.9502926432969,-90.9507732164728,-90.9509978509918,-90.95125429691079,-90.9516225147825,-90.95207132464867,-90.95216715816647,-90.9522953841154,-90.95251983884988,-90.95274422460784,-90.95287247347831,-90.95309694645636,-90.95332124983869,-90.95360575652892,-90.95399394106096,-90.95418627575864,-90.95430644251387,-90.95441883179453,-90.95453055506572,-90.95514760839025,-90.95545209685517,-90.95582039972699,-90.95630110538582,-90.95682947673394,-90.95689355872302,-90.95708620475563,-90.95724654433079,-90.95734209026924,-90.95820767688612,-90.95862387169041,-90.959393020392,-90.95956932581252,-90.95989003609128,-90.96014647902058,-90.96065884375743,-90.96104323504872,-90.96117165245352,-90.9613958502531,-90.96156428566535,-90.96168446692572,-90.96218910211788,-90.96250177555751,-90.96262969075379,-90.96275831090361,-90.96309439153804,-90.96325445986243,-90.96373500949721,-90.96382310585167,-90.9638795858975,-90.96387961763187,-90.96381565665503,-90.96387983946038,-90.96400803104304,-90.96410392803143,-90.96419989102962,-90.96425586918127,-90.96435243728733,-90.96443213219118,-90.96450446362861,-90.96511339804033,-90.96516127149954,-90.96520167664787,-90.96543377778147,-90.96556193550542,-90.96584237772817,-90.96599438981356,-90.96641136594711,-90.9670838291768,-90.96724419034366,-90.96743603259735,-90.96758076040874,-90.96770896085629,-90.96808911058815,-90.96844586549467,-90.96857369790186,-90.96879849029803,-90.96902260778357,-90.96918302400407,-90.96947134308895,-90.96959945898746,-90.96980763191131,-90.96999972733303,-90.97009578632503,-90.97020815513545,-90.97040028463317,-90.97049664963328,-90.97072119576217,-90.97094518325692,-90.97116953575645,-90.97139372616418,-90.97152165368212,-90.97167431664121,-90.97174634257624,-90.97176241920549,-90.97166593135982,-90.97166636776153,-90.97175439103613,-90.97194643505169,-90.97247529422768,-90.97291577693497,-90.97339637302223,-90.97378102684465,-90.97390895618042,-90.97442206908097,-90.97458215564725,-90.97493422390924,-90.97525480157063,-90.97560741362746,-90.97605556640723,-90.97650421956013,-90.97690473446836,-90.97718540964009,-90.97868311992958,-90.97900408966434,-90.97909943750396,-90.97917985726286,-90.97923612833037,-90.97940430188576,-90.97950067325954,-90.9796286217903,-90.98010922875902,-90.98068586329003,-90.98113408682751,-90.98132683844288,-90.98175924496169,-90.98223960583216,-90.98253335258646,-90.98284035438006,-90.98304042949128,-90.9830964359931,-90.98313675412221,-90.98316852153833,-90.9833449122751,-90.98336056111137,-90.98331257557895,-90.98332044597326,-90.98340887432251,-90.98332843861002,-90.98334455124377,-90.98308008603873,-90.98293600388115,-90.98286403599658,-90.98271985227981,-90.98273549800975,-90.98268750994427,-90.98255120497713,-90.98262317605042,-90.98261543024822,-90.982671341216,-90.98267137688518,-90.98259131547481,-90.98259095010181,-90.98267112818097,-90.98285528229277,-90.98300780134446,-90.98313570406113,-90.98315175948031,-90.98313538835257,-90.9831033756646,-90.98288697219803,-90.98268709248768,-90.98252657824195,-90.98232616005099,-90.98229416033415,-90.98222187412765,-90.98222970436527,-90.9822700982912,-90.98220594223434,-90.98224624894375,-90.98222204607558,-90.98235018109894,-90.98235036850163,-90.98241407975904,-90.98249432544556,-90.98278269751926,-90.98287864937309,-90.98290280105755,-90.98290251854878,-90.98287051259064,-90.98275839725846,-90.98251812496889,-90.98217338155578,-90.98203716092617,-90.98190942694798,-90.98149254272437,-90.9812207084905,-90.98105239626182,-90.98093211172316,-90.98075555232931,-90.98059547171985,-90.98029082743767,-90.98017920756142,-90.97976249174604,-90.97960200263024,-90.97945829695058,-90.97934618839589,-90.97921815251307,-90.97903392446125,-90.97871300613662,-90.97813663032846,-90.97797628908091,-90.97762430454461,-90.97723974975996,-90.97695170697652,-90.97640689152746,-90.97624644244496,-90.97605467249839,-90.9759583513802,-90.97586196230071,-90.9758142222263,-90.97569423494231,-90.97568610932517,-90.97579818815555,-90.97578255595566,-90.97573404986936,-90.97512584747383,-90.97485341665377,-90.97448510775772,-90.97435667269987,-90.97430879331635,-90.97406844808505,-90.97381229176671,-90.97362780834814,-90.97349193981663,-90.9729797806184,-90.97249889232097,-90.97211444308537,-90.97184204520069,-90.97168195305643,-90.97124139305183,-90.97114573178841,-90.97082541512189,-90.97062504692775,-90.97033688182307,-90.97007248831554,-90.96990470425314,-90.96971182514943,-90.96961584872643,-90.96937572180951,-90.96927938018133,-90.96879931798773,-90.96867136791528,-90.96841489223068,-90.96793441053572,-90.9678064342887,-90.96747031364674,-90.96735832142399,-90.96713385116193,-90.96703787841777,-90.9670059543068,-90.96676597788807,-90.96662169186216,-90.96646984088748,-90.96622927071829,-90.96582938642456,-90.96558072096971,-90.96516424446813,-90.96436366125901,-90.96423551652173,-90.96388317291891,-90.96314665411738,-90.96279459693187,-90.96237819453084,-90.96196171269115,-90.96160917584572,-90.96088078459557,-90.96036811132306,-90.9598799047285,-90.95962361530398,-90.95904700274734,-90.9585346434127,-90.95824650169045,-90.95783017048022,-90.95763789468175,-90.95702926045371,-90.95651688643676,-90.95614064135276,-90.95581192333357,-90.95446694675925,-90.95401823293254,-90.95366631854699,-90.95299353199235,-90.95276945229642,-90.95241702134734,-90.95203300856102,-90.95155214833834,-90.95046338027399,-90.95007920910862,-90.94972679750467,-90.94943910153948,-90.94927875050827,-90.9489588074042,-90.94867015881394,-90.94835005638394,-90.94802947359754,-90.94770924627524,-90.94754915092844,-90.94735702412106,-90.94687654346336,-90.94604380110881,-90.94578776591764,-90.94546741443712,-90.94524323803633,-90.94511519318239,-90.94479513939307,-90.94450651673074,-90.94428237806966,-90.94389809645655,-90.94348169513812,-90.94328953031007,-90.94309710030346,-90.94259286251659,-90.9424247779401,-90.94217621675456,-90.94184800865527,-90.94162333914699,-90.9411436910907,-90.94088719636706,-90.9404389634534,-90.94008638437235,-90.93951048502311,-90.93883753050953,-90.93842101390993,-90.93794055561348,-90.93739653083959,-90.93687926362743,-90.93680404504363,-90.93669173869262,-90.93654742114806,-90.93618708354003,-90.93606720434508,-90.93568272194652,-90.93545850373435,-90.93501054323467,-90.93478621074443,-90.93444153334755,-90.93419395576062,-90.93403387691087,-90.93396999393291,-90.93392143599699,-90.93390529915757,-90.93376127146558,-90.93333648691532,-90.93314434441561,-90.93292763562299,-90.9328318383628,-90.93267161358949,-90.93247152459421,-90.93237522219897,-90.93219144449856,-90.93203102923347,-90.93158257237268,-90.93107006751727,-90.93094949547658,-90.93090928042666,-90.93090901668992,-90.93094091359259,-90.93110085671732,-90.93129313714223,-90.93151661730688,-90.93158103821798,-90.93162057999731,-90.9315801997725,-90.93140338412873,-90.93137154749313,-90.93130730862754,-90.93101885693592,-90.93090640903058,-90.93090686322667,-90.93098667943482,-90.93108239367071,-90.93108189093964,-90.93100198238963,-90.93100227381578,-90.9310338502253,-90.93100151138944,-90.93104944361403,-90.93109751624024,-90.93119350125811,-90.9312097246538,-90.93135324897058,-90.93132147008133,-90.93148102482441,-90.9315292957143,-90.93165718595309,-90.93172097777509,-90.93172083564842,-90.93167309048711,-90.93172117618019,-90.93175261287173,-90.93170454325978,-90.9317204721966,-90.93174423707825,-90.93192021518986,-90.93199257914765,-90.93208810259534,-90.93219225288863,-90.93232825258841,-90.93237653004765,-90.93261625021182,-90.93288797246474,-90.93295193693601,-90.93311218152748,-90.93330378494989,-90.93376779142223,-90.9340078520199,-90.93447100083553,-90.93459879696587,-90.934711233214,-90.93474953974241,-90.9347429176749,-90.93493467687156,-90.93495032850599,-90.93493418070032,-90.9347093080616,-90.93446857549692,-90.93420414309321,-90.93394727600376,-90.93380328048521,-90.93354698095514,-90.93297796058482,-90.93262518132272,-90.93244102583814,-90.93224049193384,-90.93204843286225,-90.93195255423531,-90.93184873418546,-90.93166424526012,-90.93155209389568,-90.93150429435309,-90.93139178064794,-90.93128767121993,-90.93097509249107,-90.93085485341821,-90.93034237262528,-90.92982164060656,-90.92969279388822,-90.92956502323894,-90.92937270490691,-90.92911638447268,-90.92865924996369,-90.92844321166,-90.9281468082564,-90.92785011939657,-90.92768951032112,-90.92762506381949,-90.92744861963025,-90.92732838062153,-90.92718435999433,-90.92687177854282,-90.9266393714273,-90.92645488468173,-90.92555778036136,-90.92526900171617,-90.92488444391087,-90.92465992394105,-90.92430758402445,-90.92409121225597,-90.92379472011905,-90.923586391982,-90.92359432674844,-90.92367436171756,-90.92373012167674,-90.92372995837339,-90.92363409904736,-90.92364961631981,-90.92376212394838,-90.9238340036637,-90.92399409188153,-90.92404219900556,-90.92419428804301,-90.92424898835654,-90.92427414095461,-90.92417771405228,-90.9242259147027,-90.92414555008094,-90.92414548142536,-90.92420927543338,-90.92439329605909,-90.92460139732434,-90.92486596972684,-90.92495379595283,-90.92510649338338,-90.92529819660406,-90.92557057780913,-90.92617958567938,-90.92630791148817,-90.92655608128,-90.92667608918482,-90.92676409863164,-90.92679669015703,-90.92690091691536,-90.92786210462155,-90.92811852498075,-90.9284707746683,-90.92868664389896,-90.92953566827956,-90.9299362497561,-90.9300716105093,-90.93013583358612,-90.93010385664044,-90.93005562536779,-90.92987897764827,-90.92979859150465,-90.92967833541788,-90.92906926803025,-90.92829998033778,-90.92825961484029,-90.92828164768451,-90.92848344042901,-90.92849931237457,-90.92846754352334,-90.92848350999,-90.92852329150448,-90.92865958941908,-90.92868372228507,-90.92880378026253,-90.9288196530248,-90.9288594308882,-90.92896338281753,-90.92909206104861,-90.92931637803923,-90.92944443223207,-90.92961281926247,-90.92978849581579,-90.92989309756533,-90.92989250352947,-90.9298442373442,-90.92968433527209,-90.92971574610941,-90.9295071982141,-90.92939491480679,-90.92939485043435,-90.9295388570787,-90.92953902383843,-90.92963487409037,-90.92961872488166,-90.92947417561285,-90.92944193721864,-90.92945829298598,-90.92953009962925,-90.92984285076216,-90.93001049448377,-90.93019481283746,-90.93020280064793,-90.93001819246697,-90.92993818766415,-90.92995360615605,-90.93000168208084,-90.9300071707994,-90.93005746580526,-90.93020978573,-90.93028184418246,-90.93040180228721,-90.93048161969352,-90.93091427620392,-90.93100247431398,-90.93104235762269,-90.93104223802089,-90.9309145152192,-90.93089786641056,-90.93095399752005,-90.93113019719735,-90.93120237032031,-90.93120222261791,-90.93126619730984,-90.93137021223602,-90.93150652624315,-90.93165859694376,-90.93205135279804,-90.93229164718225,-90.9324757880846,-90.93262778385999,-90.93270797521625,-90.93294808624695,-90.93346123401174,-90.93362154707073,-90.9337494499707,-90.9338778710645,-90.93400583212207,-90.93407015565563,-90.93421411152276,-90.93434242365471,-90.93469480457171,-90.9349832061535,-90.93515963078731,-90.93534399063122,-90.93562457931853,-90.93573632891483,-90.93589648450788,-90.93606487487808,-90.93644101973614,-90.93660146472587,-90.93667325985692,-90.93684167963768,-90.93700161302657,-90.93719399909232],"lat":[47.0034994694935,47.00355458614758,47.00353272367918,47.00341727648794,47.00328578318172,47.00308821623543,47.00283534346052,47.00270943411214,47.00251192656668,47.0022263431187,47.0019629343845,47.00178675961236,47.00169885632805,47.00123777039941,47.00103988058765,47.00068860751779,47.00060099969647,47.00044718903808,47.00016140229479,46.99994824321886,46.99978795083256,46.9996342611789,46.9994588076239,46.99928268768083,46.99919514706966,46.9989973363082,46.99853651996504,46.99803089486297,46.99781150662599,46.99746027067813,46.99728406294422,46.99713038456825,46.99684530533906,46.99645543216792,46.99594463086756,46.99581872215177,46.99561922527882,46.99548403363483,46.99530823449648,46.99511026150419,46.99489082564637,46.99469312875124,46.99441306172351,46.99418297966238,46.9939522994395,46.99366719720433,46.99345822065999,46.99304141528522,46.99290941915542,46.99278338127821,46.99264073039762,46.99218537764409,46.99194373547839,46.99182827544279,46.99163083323496,46.99143318798082,46.99133485983785,46.99123600598276,46.99109343886329,46.99090673747551,46.99077512231177,46.99063218854699,46.99047899146353,46.99039084224599,46.99033055341593,46.99031448815906,46.99016033233999,46.9901275314939,46.99012765182758,46.99014990031611,46.9904521307287,46.99047945710956,46.9904795129765,46.99041353081369,46.99041335065267,46.99039147395386,46.99030355270057,46.99018301523559,46.99009684128345,46.99004017914725,46.9900402632,46.9900955046505,46.99022167772629,46.99028767355879,46.99043607114984,46.99047965083668,46.99064473938929,46.99079820803385,46.99085903487806,46.99088043411538,46.99101268315853,46.99106196226964,46.99107297539997,46.99100724132317,46.9909081408116,46.99066716859659,46.99066681587643,46.99074399454558,46.99074353173244,46.99064474505215,46.99049134999967,46.99050208098601,46.99049120059992,46.99057921261483,46.99061195000083,46.99067801409161,46.99065063932444,46.99065631027955,46.99067829074422,46.99080988497646,46.99082091186557,46.99066726202852,46.99060690469948,46.99050237944744,46.99045850963821,46.99026107125344,46.99015085953411,46.99005754064432,46.99001960997491,46.99000811766549,46.99003576955186,46.99019524840661,46.99023900813497,46.99023896332939,46.98998073714302,46.98985491287859,46.98981632435107,46.98981099347971,46.98976154510574,46.98951958643784,46.98944856240173,46.98937136413857,46.9891958303248,46.98922316231575,46.9893554007906,46.98940479735446,46.9894262089058,46.98942637185087,46.98938285942864,46.98933846879314,46.98920158486458,46.98898203031455,46.98892161575561,46.98886630720384,46.98888322042171,46.98900912872485,46.98906430771965,46.98905843127226,46.98895455461618,46.98894336505627,46.98895435844583,46.98903119595102,46.98900904931326,46.98907519847761,46.98906429977816,46.98902552969894,46.98887744013469,46.98870191448986,46.98861403892095,46.98846019144872,46.98841631575061,46.98828452449984,46.9880646688709,46.98760911161506,46.98735677553013,46.9871862130306,46.98700521336812,46.9869670050563,46.98689008324961,46.98683472834072,46.98667031287777,46.98660459222147,46.98656053371828,46.98652746621964,46.98652195154601,46.98662596079922,46.98664831009118,46.98661527478521,46.98654897458553,46.98654928518332,46.98658740138628,46.98667578643191,46.9866810985764,46.98664765210081,46.98656556764026,46.98632973082666,46.9861318837878,46.98592331742912,46.98585698708103,46.98561537334052,46.98541215050834,46.98525102697695,46.98473714415449,46.98459988100638,46.98453921918072,46.98440726418006,46.98407796875048,46.98379242681147,46.98370455623016,46.98346312162359,46.98330951099562,46.98306746803435,46.98280437731082,46.98258489266467,46.98212315741243,46.98201922461086,46.98190397983578,46.98177192124778,46.98168404831834,46.98146455063702,46.98115694630398,46.98100334699772,46.98084987159105,46.98076165004988,46.98067391291085,46.98052049001073,46.98038832524198,46.98025659209245,46.98008121960741,46.97986112409978,46.9795759985515,46.97948812019014,46.97931222137095,46.97920226070824,46.9788509102745,46.97828007299497,46.97792880660358,46.97768699443213,46.97757759544624,46.97748935159337,46.97742347872067,46.9773854510628,46.97727013937956,46.97716011945254,46.97705009150585,46.97693481867046,46.97674302583421,46.97665474289534,46.97659443472243,46.97650140843276,46.97644603084049,46.97641882604319,46.97635864803876,46.97624868476984,46.97611691529808,46.9758973803082,46.97569392287032,46.97550218085014,46.97536997880928,46.97504059340998,46.97466722153671,46.97433795455233,46.97411851086038,46.9738770546485,46.97352578159933,46.97304244974934,46.97275713014988,46.97209815216073,46.97176881597228,46.97157094445102,46.97146110208971,46.97137895901269,46.97130179507816,46.97123085959594,46.97118685281133,46.9712253428553,46.97123059949931,46.97127494012641,46.97136232506737,46.9714721480708,46.97152750881894,46.97155501661157,46.97152208842603,46.97139524070413,46.97136808868046,46.97141185322392,46.97143948320998,46.97159319788013,46.97163720019473,46.97168092305778,46.97201062554781,46.97209843365845,46.97208750946842,46.97218646719143,46.97219699748238,46.97221929122434,46.97220797087891,46.97225228422476,46.97221350719062,46.97195014384079,46.97177987542595,46.97162622167281,46.971307948804,46.97108827360385,46.97064881598947,46.97056132114506,46.9703413187495,46.970165851428,46.96979258891496,46.96950686487213,46.9691337071166,46.96880406991765,46.96856247405909,46.9682551712467,46.96794777360557,46.9670468864992,46.96671781966962,46.96630041307446,46.96546589352505,46.96518013538569,46.96471897105643,46.96449944032228,46.96417006789969,46.96395040455067,46.96377463134863,46.96331377989368,46.96287461332247,46.96267679282612,46.96247916067135,46.96219344521764,46.96211624109072,46.96207250711698,46.96209443879449,46.96207245730996,46.96196294080485,46.96198432460339,46.96205083975496,46.96217132527308,46.96240204879038,46.96253380568285,46.96266534243308,46.96270901797973,46.96271985843753,46.96269838524577,46.9625659810193,46.96248928160204,46.96247819970971,46.96251149061663,46.96255527961262,46.9628843322807,46.96306015447685,46.96326858692688,46.96337819335267,46.96374093249654,46.96389427908818,46.9639933871177,46.96413566100957,46.9641470873789,46.96412470648205,46.96405872467984,46.96390524078556,46.96349864735421,46.96328417402596,46.9630536890304,46.96290534069727,46.96285042713692,46.96280639765605,46.96278966935444,46.96280638145637,46.96288890367358,46.96301472548595,46.96302055177978,46.96300357786951,46.96289394578496,46.96281702462016,46.96273984025125,46.96269580438852,46.96260822556583,46.9625912857169,46.96265748432493,46.96280553449116,46.96286025060626,46.96287129344748,46.96285447566823,46.96288193370378,46.96296450905093,46.96325550146208,46.96332100058144,46.96336523113175,46.96336512073916,46.9633427832666,46.96323311481846,46.96319979178833,46.96310111097135,46.96304607662037,46.96304573880001,46.96296858527748,46.96296862347515,46.96285894946519,46.96282572012912,46.96274840256668,46.96279289021006,46.96292429052563,46.9630340219769,46.96319332627816,46.96322073948397,46.96322050884244,46.96317678215924,46.9630223979571,46.9629016205873,46.96261590513826,46.96252793850363,46.96244037919674,46.96245158766538,46.96251722388507,46.96260509618038,46.96280255816538,46.96315360610754,46.96339533105789,46.96357088741257,46.96363690807175,46.96365902539377,46.96384569302378,46.96390609698335,46.96394415113748,46.96402644717779,46.96417464223497,46.96444315351515,46.96452568605283,46.96464637401838,46.96484435370768,46.96495433005537,46.96529442323086,46.96558026363003,46.96603063829512,46.96623933917937,46.96676601580648,46.96716117158543,46.96760074313155,46.96775454662416,46.96786417891037,46.96821523476131,46.96843493302023,46.96855585166035,46.9687756763586,46.96908311105779,46.96914891722651,46.96930254702099,46.96939028642599,46.96943446076452,46.96965407208512,46.96990677506322,46.97004924309101,46.97015926254434,46.97031266956473,46.97051060419716,46.97062053746504,46.97096063538955,46.9711143473011,46.97133434477162,46.97155373538811,46.97166397211853,46.97172960430137,46.97187263092383,46.97216877596947,46.97247625530996,46.97270728227645,46.97275095852994,46.97287720094904,46.97306952352665,46.97322341558191,46.97337723427808,46.97351954844157,46.97367325744959,46.97399189126273,46.97466178415375,46.97491435611089,46.97522182440973,46.97574951028666,46.97658374618891,46.97713297038211,46.97850602201305,46.97881318841736,46.97925265333505,46.97930520955115,46.97937331435654,46.9802851355619,46.98049929552545,46.98115240920855,46.98187696683158,46.98247004645307,46.98295308047396,46.98330444281367,46.98343610130361,46.98358442340787,46.98373248334818,46.9838860882543,46.98392976852472,46.983929712289,46.98389696768852,46.98384206963506,46.98373211785304,46.9836385668396,46.98354555170143,46.9835616904921,46.98373189796814,46.98384185242566,46.98403899785288,46.98407203546972,46.984116130549,46.98432452350995,46.98433512812357,46.98431310787201,46.98431297991181,46.98438986687601,46.98466410116784,46.98488407870153,46.98525712118217,46.98554242790792,46.98578388652334,46.98602569116325,46.98642082171128,46.9865967092868,46.98672835894709,46.98690355525592,46.98698586587664,46.98703516503237,46.98717796688555,46.98723260588375,46.9873808177246,46.9875395503519,46.98764981843961,46.9877809223123,46.98791267526146,46.98803358925713,46.98808864530623,46.9881543654049,46.9882422160525,46.98835189178745,46.98870362066941,46.98876929977559,46.98883532171224,46.98900009522931,46.98906067223112,46.98910977513859,46.98915916892712,46.98920934139448,46.98928563111939,46.98946132427643,46.98965891189646,46.98981253756595,46.98985641006329,46.99007636557716,46.99028523011373,46.99046071522606,46.99059806162153,46.99061478696294,46.99060399257978,46.99061481693114,46.99068066846181,46.99065324463654,46.99065895831895,46.99070307044353,46.99070321968532,46.99065920415254,46.99057120133267,46.99053830008739,46.9904618987254,46.99048400281137,46.99067630736481,46.99082472834133,46.99131896053936,46.99171447312035,46.99191247377662,46.99213186041297,46.99237340181246,46.99248346855423,46.99272506022039,46.99290062653466,46.99307595569051,46.99350440886045,46.99400896016123,46.99407508860158,46.99423182662615,46.9944922820712,46.99460182949819,46.99468982607157,46.99473356608097,46.99479960913837,46.99490930276658,46.99499740742291,46.99511848310863,46.99522802804329,46.99529407100874,46.99531572384842,46.9952938697395,46.99521724581686,46.99520664506888,46.99529413990587,46.99546987993777,46.9956236995509,46.99575531218883,46.99588731379404,46.99619457018402,46.9963703568807,46.99678768467648,46.99713899040155,46.99718285734831,46.99738078828375,46.99755626416278,46.99779789392203,46.99788576334284,46.99808322407978,46.99821509535209,46.99828132819985,46.99836904684773,46.99848461779566,46.99859967984992,46.99877534655027,46.99895132149857,46.99928015218558,46.99947821691701,46.99977449115826,46.99993945081643,46.99994784472393,47.00002729803565,47.00008793058655,47.00014246207488,47.0004227038808,47.00052160306426,47.00065306811319,47.00071365643356,47.00078532237336,47.00087306464867,47.0010928839983,47.00124656480083,47.00130684998917,47.00141677758327,47.00161979159893,47.00172946333707,47.00183918047541,47.00191088793422,47.00194914671737,47.00197153335637,47.00198239527201,47.00204286911281,47.00213642172212,47.00236690249248,47.00241630723643,47.00246609455061,47.00252096718123,47.00252078301369,47.00247699835968,47.00251025607913,47.00249346615907,47.00250475095477,47.00260368874638,47.00263076501182,47.00256545775019,47.0025321715555,47.00255997324618,47.00264227198821,47.00270296867421,47.00274649181949,47.00287847728458,47.0030818245912,47.00331777961481,47.0034660730004,47.0035048539638,47.00352147654922,47.00349935787033,47.0034994694935]}],[{"lng":[-90.78942363670438,-90.78990411813555,-90.79032092331848,-90.79064094137905,-90.79089743447133,-90.79121738697962,-90.79153814807857,-90.79176257734916,-90.79208285046055,-90.79227499150772,-90.79281920636619,-90.79297954102529,-90.79328400025307,-90.79349140656132,-90.79437355373969,-90.7948535832322,-90.79498186261634,-90.79523858497623,-90.79549457607472,-90.79600723716568,-90.79635963810939,-90.79645529854344,-90.79713643347755,-90.79722478521049,-90.79733696841207,-90.7974406941108,-90.79752067623961,-90.79758481716317,-90.79756864256805,-90.79758502951513,-90.79750452428087,-90.79752040550481,-90.7974564290555,-90.79745630223888,-90.79748015569832,-90.79742413259854,-90.79744036194126,-90.79749600695338,-90.79769621655085,-90.79792025412129,-90.79808856017239,-90.7983211218734,-90.79923344054507,-90.79975400696736,-90.80000225261168,-90.80029083963122,-90.80053891517751,-90.800955186716,-90.80114714198062,-90.80178781553739,-90.80230056080977,-90.8025248013261,-90.80310138724363,-90.8033254559425,-90.80345388735446,-90.80355011378988,-90.80374221906835,-90.80403819298751,-90.80439061170664,-90.80508764368902,-90.80538392953854,-90.805719571512,-90.8058319570232,-90.80589579852881,-90.80594384488296,-90.80594349801099,-90.80591152989157,-90.8058635280276,-90.80573517239127,-90.80565512949923,-90.80545455510149,-90.80513451508524,-90.80481390752838,-90.80450940635609,-90.80404510268974,-90.8037087291261,-90.80289186623112,-90.80224265540225,-90.80161062686338,-90.80103435300956,-90.80080996505542,-90.80036111498035,-90.80007280745021,-90.79936852069879,-90.79847164998392,-90.79805517720968,-90.79719017803285,-90.79680614401467,-90.79613345997032,-90.7954610240496,-90.79498839225765,-90.79445207539017,-90.79365142593328,-90.79337862847309,-90.79254652549591,-90.7920655214832,-90.79174508167618,-90.79046418955357,-90.78988764840894,-90.78972718591309,-90.78961534188367,-90.78960744054814,-90.78993536301573,-90.79056027943545,-90.79082465832316,-90.79090469231592,-90.79096881251478,-90.7909685992294,-90.79087305696547,-90.79061653489956,-90.79026427386755,-90.78986380114011,-90.78962366673775,-90.78952720606203,-90.7893672160334,-90.78896713198691,-90.78867870823177,-90.78852638885753,-90.78827809508476,-90.78798996439804,-90.78762943949513,-90.78702034973735,-90.78658001687495,-90.78616375527378,-90.78563544929378,-90.78522649938876,-90.78501872478725,-90.78466637819538,-90.78454604396006,-90.78448199580494,-90.78449757667948,-90.78456986241628,-90.78472194129192,-90.78492218020131,-90.78532277639202,-90.78573915910728,-90.78615594435726,-90.78658815740393,-90.78690822480853,-90.78706877032276,-90.78715683792092,-90.78718876685498,-90.78718862060578,-90.78725315544163,-90.78744517856545,-90.78754145888477,-90.78768843181096,-90.78791776279088,-90.78807783673503,-90.78942363670438],"lat":[46.98083191470931,46.9809528986526,46.98101863869265,46.98101361976489,46.98096404216115,46.98084315743996,46.98080494561403,46.9808101432459,46.9807387504428,46.98072785973203,46.98062904060428,46.98063467902973,46.98071693373899,46.98073799275445,46.98065088637413,46.98057444306694,46.98057973734863,46.98062913425318,46.98060148760699,46.9804258196152,46.98036037452201,46.98032709018261,46.98001414092293,46.97995953107795,46.97984964067265,46.97969593592276,46.97952046414271,46.9790813236468,46.97890539568623,46.97859819323366,46.97832372990557,46.97803790670353,46.97768683180045,46.9772914432597,46.97709949080965,46.97689628271994,46.97652328126222,46.97636934796842,46.97601812489647,46.97566673357662,46.975491204722,46.97529892298027,46.97470650458163,46.97445933847526,46.97430012172835,46.9741462538159,46.9740584642206,46.97398131504256,46.97395972343046,46.97394286539652,46.97380597649406,46.97377291127493,46.97378405449466,46.9737672965927,46.97378383083911,46.97381690046657,46.97380542929151,46.9736520590559,46.97353653336023,46.97319642480565,46.97295474834932,46.97251593898417,46.97233967472364,46.97218624095674,46.97185688354197,46.9715329263208,46.97142854067247,46.9709952455529,46.97079198711606,46.97057770008833,46.97029789944231,46.97002343429483,46.96984795705097,46.9697325527201,46.96959014597891,46.96945864591977,46.96922815940867,46.9689998635253,46.96884906060539,46.96877266541054,46.96876692304977,46.96880549562858,46.96881088408417,46.96877249761355,46.96868482622844,46.96866298305559,46.96867407463481,46.96873411553851,46.96894295493256,46.96908542589007,46.96929399561788,46.9695851179366,46.96989269550903,46.96997501446636,46.97012869430153,46.97018882720537,46.97018879290806,46.97002441732292,46.96998565013156,46.96999687982689,46.97004602194917,46.97012313070414,46.97040826965096,46.97122060099213,46.97173677616452,46.97206580636063,46.97229089418769,46.97252712037685,46.97279043372964,46.97314203632393,46.97349317142574,46.97408592285228,46.97454708632057,46.97483233954409,46.97518383494879,46.97577658279741,46.9763916152928,46.97656701469287,46.97675376619291,46.97685811248989,46.97692920937114,46.9770008862026,46.97712146347139,46.97728630044768,46.97754414189299,46.97767574608166,46.97776884711092,46.97795011130779,46.97803811588707,46.97812573045807,46.97823585826102,46.97831803933818,46.97840586204651,46.9784714184513,46.97852660115348,46.97853724319898,46.97860355997793,46.97871307731212,46.97876824683316,46.97884475649934,46.97893807857898,46.97907003018126,46.97931187297231,46.97950940581823,46.97988266271105,46.98000348617455,46.98013464444669,46.9802500492005,46.98029394475781,46.98083191470931]}],[{"lng":[-90.86941244314905,-90.86994110666794,-90.87106331343141,-90.87196070881878,-90.87250609673808,-90.87284282260529,-90.87321963539465,-90.87331594702739,-90.87342869292502,-90.87344459144001,-90.87336475103537,-90.87338141950769,-90.87333348712234,-90.8733181584567,-90.8733341198751,-90.87349473205335,-90.87353488141315,-90.87366317069272,-90.87376751952112,-90.87376768902135,-90.87365542967912,-90.87375229608517,-90.87376889955961,-90.87381707693139,-90.873873394638,-90.87396949184415,-90.87406579064391,-90.87415406328621,-90.87415427575051,-90.87407434143404,-90.87407423620768,-90.87414672884566,-90.8743386313061,-90.87448340752321,-90.87463546749754,-90.87502044294372,-90.87521001508847,-90.87566077312638,-90.87596488244617,-90.8762526654308,-90.87654103296103,-90.87676543045463,-90.87721466865383,-90.87740676166921,-90.87775985442795,-90.87783983228891,-90.8780885908248,-90.878273293349,-90.87835374594776,-90.87830657766234,-90.87833899311165,-90.87843562024855,-90.87843582624741,-90.87838748480605,-90.87837171689799,-90.87853260919665,-90.87854102463619,-90.87850928535953,-90.87831745749853,-90.87801316519376,-90.87762068758032,-90.87733254813982,-90.87712478181002,-90.87693293409657,-90.87682151205918,-90.87672539911314,-90.87667841467801,-90.87664661536351,-90.87658271573905,-90.87638295156795,-90.876038669926,-90.87594224931719,-90.87582279018513,-90.87542298403594,-90.8753188499166,-90.87519863131186,-90.87508314617321,-90.87473910570809,-90.87438672543833,-90.87418605271104,-90.87383401963706,-90.87364157718508,-90.87335332108003,-90.87293602599496,-90.87274419424182,-90.87244304229237,-90.87210283843163,-90.87184641084072,-90.8716223859592,-90.87139756182053,-90.87107743412848,-90.87088462096197,-90.87069224560135,-90.87047566089787,-90.86982646846198,-90.86953773306215,-90.86936973482854,-90.86920942432498,-90.86896072248277,-90.86880052045572,-90.86832010090755,-90.86815972614318,-90.86783906852894,-90.86745416503268,-90.86658835814266,-90.86624421684385,-90.86584306177262,-90.86487275652156,-90.86454357122827,-90.86423135000602,-90.86384607193555,-90.8636376168463,-90.86306773529019,-90.86288305416139,-90.86225755449681,-90.86195325283434,-90.86170452057796,-90.8612480304495,-90.86083114382343,-90.86012584016441,-90.85961249480656,-90.8593878129245,-90.85931579678555,-90.85931597382331,-90.85925153369105,-90.85917135293202,-90.85909059400635,-90.85901863190627,-90.85895454459133,-90.85889848583767,-90.85888268987209,-90.85881894833386,-90.85865928320386,-90.85845906884249,-90.85822719141963,-90.85805884393605,-90.85770655329333,-90.85751444918091,-90.85713028416332,-90.85671377048891,-90.8565532312471,-90.85629702759331,-90.85613698689018,-90.8558251002478,-90.85554463289685,-90.85516920528302,-90.85507287018298,-90.85488079018019,-90.85481749384239,-90.85480139340079,-90.85475336853249,-90.85457765883436,-90.85446586496882,-90.8542587530106,-90.85424325419278,-90.85417941991891,-90.85379569793797,-90.8536200787608,-90.85357185897303,-90.85343652383366,-90.85333190676893,-90.85287582021958,-90.85259602788291,-90.85217949168482,-90.85200331080256,-90.85190732839834,-90.85187595168887,-90.85177993843628,-90.85178001042131,-90.85181255349001,-90.85181243760861,-90.85160443287172,-90.85146880414931,-90.85130857829166,-90.85123677159154,-90.85121309043005,-90.85121345395289,-90.85126932513502,-90.85135735488784,-90.85153354597676,-90.85169377923519,-90.85191814305077,-90.85201429874745,-90.85209404736386,-90.85223881627513,-90.85230244857254,-90.85260689135073,-90.85284742312358,-90.85350495519134,-90.85363327878359,-90.85392158189309,-90.85406538075291,-90.85417761917603,-90.8542658736539,-90.85452291339709,-90.8546670900672,-90.85503533225369,-90.85525183788309,-90.85559643303634,-90.85572434716475,-90.85595697492739,-90.85650161695474,-90.85682210624611,-90.85704648186564,-90.85768714504873,-90.85787932092349,-90.8581519145548,-90.85834358913522,-90.85856814451274,-90.85888836061999,-90.859016372363,-90.85924062995485,-90.85940115627879,-90.8596571733667,-90.85991292614817,-90.86002535168851,-90.86024919111907,-90.86045713110971,-90.86077742259312,-90.86096994514602,-90.86145008777581,-90.86167498875798,-90.86186677261284,-90.86209099670985,-90.86241154819822,-90.86273118190404,-90.86292331556575,-90.86314759625546,-90.86378804563172,-90.86417260992599,-90.8645888767345,-90.86516558981437,-90.86585473429889,-90.8664957407069,-90.86700865052369,-90.86728140318709,-90.86781011295633,-90.86941244314905],"lat":[46.98558262010845,46.98574677431667,46.98614712814115,46.98639338694942,46.98657427407608,46.98676068433234,46.98706208322815,46.98717214770175,46.98740807115549,46.98762729732094,46.98784725377833,46.98808840576714,46.98819844630003,46.98841791002218,46.98861576480753,46.98881307517129,46.98890613187478,46.98896083449662,46.98905958671695,46.98912033006671,46.98931803424291,46.98966375031913,46.98997633335316,46.99010813857542,46.99018475862707,46.99025601788395,46.99028902887866,46.99040983818115,46.99044808259269,46.99053642871807,46.99058029898776,46.9906404895917,46.99068964559894,46.99077177773616,46.99089772594638,46.99111750475745,46.99127522304192,46.99149618479115,46.99159566012531,46.99172731224975,46.99179372127885,46.99179369238296,46.99169519944631,46.99162961258828,46.99143230820962,46.99137207392208,46.99110301726304,46.99076245383134,46.99045531427102,46.99005972859264,46.98973045887594,46.98953286395896,46.98944512342274,46.98937913106425,46.98926957772113,46.98900625175785,46.98891788679183,46.98878652247708,46.98856639368784,46.98837975328889,46.98820334939569,46.98809925791153,46.98793437166719,46.98768724758262,46.98735739297628,46.98715959093924,46.98652272012741,46.98641272841768,46.98632491477436,46.98617121397096,46.98600062118259,46.98593442688013,46.9858414186496,46.9853905956727,46.98533008568405,46.98531638372236,46.98531557724078,46.98543631595663,46.98552449591069,46.98554121664375,46.98552477988195,46.98549194026035,46.98540471419345,46.98519079459329,46.98511970517021,46.98504775808515,46.9850762243145,46.98507592899217,46.98502138927109,46.98491736650231,46.98471451497188,46.98458268642592,46.98440191966931,46.98424833886953,46.98397430858389,46.98383139446373,46.9836836256214,46.98357910625172,46.98349719288039,46.98347534792178,46.98349755357021,46.98346502297027,46.98335496801911,46.98318521930111,46.9826259729181,46.98238448205594,46.98194544762473,46.98137572722263,46.98111781177676,46.98073940258258,46.98036604551949,46.98010271167416,46.97946640352909,46.97922482748594,46.9786547362585,46.97843486772629,46.97829782052182,46.97814433887093,46.97797480714672,46.97744804840958,46.97689959744971,46.97672411850868,46.97661442429864,46.97654861863005,46.97637306256799,46.97624093028058,46.97602162700885,46.97596648296522,46.97596696376593,46.97603262964795,46.97625209534722,46.97642804990045,46.97666940468711,46.97686719675195,46.97703766089064,46.9770704187893,46.97705956149074,46.97707112320426,46.97714824074118,46.97718116501265,46.97721386470097,46.97722534244799,46.97726365944541,46.97739028594403,46.97755492353559,46.97792274469585,46.97814281433089,46.97836247105556,46.97851592073643,46.97869152153343,46.9788234880734,46.97906495742728,46.97937231709044,46.98011907827558,46.9806681274717,46.98086545148732,46.98143692810107,46.98178806958925,46.98198584128386,46.9821831351956,46.98227109495316,46.98255683051692,46.98268883608433,46.98282635753802,46.98293621713302,46.98312815800065,46.98332580239437,46.98356779956597,46.98383101542593,46.983913449713,46.98406136977403,46.98452242143906,46.98467641251754,46.98480808588243,46.9849182946892,46.98500564525307,46.98531329101402,46.98538992735479,46.98539546014637,46.98528559970192,46.98525797626489,46.98515394418619,46.98515379318327,46.98518131995158,46.98531803705677,46.98534006141335,46.9853619771204,46.98542205573295,46.98581141776064,46.98584420783131,46.985833058146,46.98588260445072,46.985937443773,46.9860087799183,46.98630494896354,46.98640398521651,46.98653509436539,46.98655709885951,46.98669962909386,46.98673241927104,46.98675992719916,46.98674291895301,46.98668821558103,46.98661116830753,46.98653381932922,46.98655037766443,46.986687253572,46.98669819023414,46.98663239157684,46.98648375819723,46.98644567712731,46.98641249895595,46.98635167727586,46.98619790013922,46.98610430277599,46.98601684409439,46.98590661536719,46.9857531933711,46.98561018240683,46.98557161475775,46.98558206286231,46.98553818598413,46.98542819652754,46.98536801504503,46.9852413064161,46.98503248520312,46.98494442303942,46.98486230734073,46.98469718556218,46.9846419775644,46.9846416446636,46.98472896717933,46.98488236131658,46.98498100044623,46.98511209971337,46.98515615415001,46.98529837580831,46.98558262010845]}],[{"lng":[-91.03515400673533,-91.03543313641626,-91.03552889276895,-91.03562498846388,-91.03584083252508,-91.03612043138627,-91.03628074025167,-91.0364726954671,-91.03660108907424,-91.03685684508943,-91.03692066995302,-91.03707777331472,-91.0372410086853,-91.0374811082005,-91.03757697033052,-91.03773701215151,-91.03783276266969,-91.03795320475861,-91.03800095308904,-91.03800120220644,-91.03787464389016,-91.03790567628235,-91.0379934364243,-91.03810569830192,-91.03829740706277,-91.03840174692013,-91.03841761016143,-91.03840153098548,-91.0384340442961,-91.03868201600625,-91.03881775123367,-91.03886586288347,-91.0388504152814,-91.03888238101588,-91.03888182181174,-91.03881851930541,-91.03873071010081,-91.03865030360805,-91.03825041095592,-91.03815480323584,-91.03810663660559,-91.03804254639496,-91.03791482260591,-91.03753107938168,-91.0374113371212,-91.03732339676101,-91.03725089961389,-91.0371631341026,-91.03703495845404,-91.03697163059969,-91.03687520307908,-91.03681114988269,-91.03672298719658,-91.03664326350737,-91.03657905894836,-91.03656311235108,-91.03657883691341,-91.03667468990808,-91.03667477955828,-91.03664320926021,-91.03653898843953,-91.03645094319947,-91.0361866628229,-91.0360905167193,-91.0359309063943,-91.03584265457356,-91.03564260377598,-91.03549903181542,-91.03541039037076,-91.03536240780214,-91.03537532753131,-91.03524240108713,-91.03501851437554,-91.03493856848718,-91.03489850654128,-91.03458635187397,-91.03453054161244,-91.03451421581521,-91.03456194489752,-91.03441787954209,-91.03441832736442,-91.03451369412943,-91.03451377683395,-91.03438585018019,-91.03438553545276,-91.03441765414522,-91.03444140577089,-91.03449756742728,-91.03456972825796,-91.03461707260963,-91.03464121425806,-91.03464122361909,-91.03469691130923,-91.0349530518355,-91.03515400673533],"lat":[46.94608078588055,46.94592640364164,46.94588785375809,46.94588811043051,46.94598683435058,46.94589937640192,46.9458225566407,46.94581126053049,46.9457403551812,46.94546019718543,46.94542699555832,46.94539689116957,46.94532285741742,46.94512551525664,46.94509258861842,46.94508720250004,46.94504865073297,46.94492775862378,46.94478503152406,46.94452181016776,46.94396502351395,46.94378588582462,46.94361017541154,46.94353378988895,46.94344599940591,46.9433634980719,46.94329192757018,46.94318239607965,46.94314385713416,46.9430780538887,46.94296264617501,46.94275411041722,46.94235885944995,46.94224945589544,46.94202954967953,46.94191988834375,46.94185937589287,46.94182073666801,46.94171637582071,46.94165593912032,46.94160688181514,46.94139261188034,46.9413487740194,46.94129376136279,46.94121666801158,46.94108529107046,46.94105220086974,46.94105749724928,46.94111771394206,46.94111266346883,46.94105223069139,46.94105224875947,46.94107948217146,46.94113982290923,46.94123826712035,46.94134808583563,46.94154591795567,46.94185326512963,46.94198543809672,46.94207290246967,46.94218295476177,46.94223775023601,46.94233069452742,46.94239118046445,46.94258891499383,46.94263302144668,46.9426713861871,46.94274242961668,46.9428304092208,46.94293995481747,46.94318393419994,46.94327512804109,46.94329120958982,46.94331892997891,46.94345596467279,46.94366463699266,46.94373038482927,46.94390601277914,46.94408161968334,46.94419147408613,46.94425727496598,46.94443301713132,46.94458655938167,46.94491617602948,46.94509166108327,46.9452454771213,46.94530600536945,46.94532237141943,46.9453166578903,46.9453443523738,46.94538237821544,46.94557472959635,46.94565184329367,46.94583850661112,46.94608078588055]}],[{"lng":[-91.03700343806446,-91.03699503717947,-91.03702739604083,-91.03709905787295,-91.0371795029063,-91.03710972131546,-91.03705136095408,-91.03700343806446],"lat":[46.94093127134155,46.94096396677124,46.94100248339685,46.94101364631776,46.94096960656919,46.94090668682674,46.94090384201158,46.94093127134155]}]],[[{"lng":[-90.73345813609585,-90.73359388895847,-90.73392076711896,-90.73416010676266,-90.73534146500573,-90.73706465306211,-90.73840605485249,-90.73889275440213,-90.73932348604717,-90.74049714956612,-90.74113546647514,-90.74137462045564,-90.74170230388687,-90.74206930805305,-90.74289949870051,-90.7433385759729,-90.74388193789638,-90.74414521573389,-90.74455291041505,-90.74488046875788,-90.74507989486797,-90.74541511574475,-90.74587850635909,-90.74610966763099,-90.74626947803812,-90.74646921492797,-90.74665308141182,-90.74727548726004,-90.74770708154198,-90.74813827773474,-90.74896793057489,-90.74923191098736,-90.74940763507507,-90.74990169548008,-90.75010968520448,-90.75019883375032,-90.75051214033036,-90.7507511719464,-90.75121184082421,-90.75191196810536,-90.75240542056609,-90.7528664804243,-90.75320043123978,-90.75359030732905,-90.75388441064968,-90.75410746203274,-90.75455313022732,-90.75557298721567,-90.75586006997891,-90.75619429081659,-90.7567355033129,-90.75702218390724,-90.75722883662233,-90.75767363109675,-90.75788821070284,-90.75808748620182,-90.75821493818988,-90.75840633233103,-90.75856553897613,-90.75875727210448,-90.75878935730039,-90.7588137998725,-90.75886214011777,-90.75900669531867,-90.75927043592851,-90.75939044159895,-90.75939109547457,-90.75936676236118,-90.75915274752336,-90.75916989388868,-90.75922589843944,-90.75940980042066,-90.75939369866688,-90.75931435647296,-90.75911557544728,-90.7582868380278,-90.75771334142374,-90.75698098423744,-90.75583475279983,-90.75481530998462,-90.75427400619932,-90.75395563826237,-90.75340738098448,-90.75324037469024,-90.75195152172074,-90.75150597288008,-90.75125132445871,-90.7510286539918,-90.75074206528778,-90.75016365337335,-90.74991270983973,-90.74949829485875,-90.74930705598182,-90.74892349889453,-90.7484134654439,-90.74751954719206,-90.74713616008195,-90.74585843464027,-90.74558708303688,-90.74534701038763,-90.74508305967498,-90.74484303265469,-90.74447480083322,-90.74409878759361,-90.74322773810707,-90.74300344891437,-90.74281948727206,-90.74254795684823,-90.74220520876226,-90.74212482468255,-90.74202097911372,-90.74189329180001,-90.74145442386251,-90.7411668579647,-90.74091901126135,-90.74050391572574,-90.74020025591172,-90.73977712060012,-90.73972832934506,-90.73973643778584,-90.73970418510365,-90.7396162328013,-90.73949696480531,-90.73935315294429,-90.73902885466997,-90.73877969845032,-90.73865192133729,-90.7383645365593,-90.7378869025186,-90.73747226496201,-90.73635621940693,-90.73610075651506,-90.73594140173459,-90.73555824145339,-90.73527086537469,-90.73506354620355,-90.73487157756082,-90.73475090627275,-90.73467109791284,-90.73467890094305,-90.73484566915741,-90.73486145578451,-90.73478926600229,-90.73467784825986,-90.73451018381625,-90.73429496680673,-90.73407956346729,-90.73375270918872,-90.73356145632785,-90.73340144843192,-90.73314633902484,-90.73246768028373,-90.73238836823545,-90.73231643849731,-90.73218912630617,-90.7321253806642,-90.73180654918374,-90.73167905892478,-90.73148799220726,-90.73123299358872,-90.73101005561763,-90.73069126736755,-90.73046796125183,-90.73021278004408,-90.73002098892957,-90.72986946337871,-90.72978945527423,-90.72947769977728,-90.72900590411516,-90.72878245321992,-90.7286227256679,-90.72845548300927,-90.72832746504754,-90.72821624096048,-90.72804950429362,-90.72776315000041,-90.72753174722234,-90.72721290441466,-90.72695803259018,-90.72673467099756,-90.7264394014105,-90.72593704362532,-90.72572127538437,-90.72542598407246,-90.72520232649948,-90.72506653080073,-90.72493038544549,-90.72453965280205,-90.72445108138572,-90.72440309744432,-90.72424404989081,-90.72402106421266,-90.72363767951063,-90.7232873007658,-90.72295172599667,-90.7226798967681,-90.72239275385466,-90.72222403786736,-90.72202439589221,-90.72188102507901,-90.72173661585063,-90.72157725410881,-90.72146529937888,-90.72123303265479,-90.72112965815957,-90.72053836677591,-90.7203946570455,-90.72021108743353,-90.72001135134705,-90.71985136290969,-90.71973958896038,-90.71913326989984,-90.71886962485019,-90.71871053120807,-90.7185431080145,-90.71828815850084,-90.71796941390701,-90.71787380638796,-90.7176268269414,-90.7174276973723,-90.71723636458286,-90.71691746163985,-90.71672619725501,-90.71650335147666,-90.71592898512931,-90.71584121376506,-90.71579365330518,-90.7158416597797,-90.71582606767799,-90.71577877453738,-90.71567499677217,-90.71554727570489,-90.71537207923211,-90.71513231938074,-90.71506896347672,-90.71498929832046,-90.71467026610551,-90.71451094656973,-90.71425539412583,-90.71390551909904,-90.7137777505733,-90.71352261101718,-90.71339549816061,-90.71319585191354,-90.71311588619693,-90.71311574333812,-90.71320268826291,-90.71317858023485,-90.71313032659829,-90.71305101474211,-90.71293147217233,-90.71285151504189,-90.7125968330111,-90.71254076652609,-90.71244507513839,-90.71237313654429,-90.71176750694079,-90.71132113413249,-90.71116179285714,-90.71099476038512,-90.71093933911456,-90.71088353906021,-90.71075644838837,-90.71055724022833,-90.71027043491343,-90.71004786479034,-90.70983234060085,-90.70980036004518,-90.70981608370954,-90.70979998363867,-90.70975201267397,-90.70964038408403,-90.70960869016999,-90.70964005786118,-90.70958389881153,-90.70949942196374,-90.70953615068241,-90.70935257820837,-90.70931285468149,-90.70918505853705,-90.70912904057749,-90.70911294310423,-90.70914443067363,-90.70912870031691,-90.70901690402626,-90.70881742128839,-90.70877721459858,-90.70875318963746,-90.70869753313309,-90.70856714664852,-90.70864847877341,-90.70852185411623,-90.70850587856529,-90.70837820853039,-90.70836181631763,-90.70837762108557,-90.70832173510654,-90.70825790728995,-90.7081621687737,-90.70807475968437,-90.70793981243413,-90.70784404380419,-90.70765286969257,-90.70750977845901,-90.70746198417318,-90.70743023348669,-90.70745410650365,-90.70771621191116,-90.70785105785106,-90.7078989422848,-90.70794615908768,-90.70791430158405,-90.70771506475175,-90.70765919770896,-90.70762705639262,-90.70749133500122,-90.70742711639157,-90.70726806389709,-90.70704467768981,-90.70694893435527,-90.7068854207931,-90.70683778935526,-90.70682978201712,-90.70688569181544,-90.70684581213159,-90.70669470116462,-90.70662305859014,-90.7063920023741,-90.70621655232782,-90.70634410304325,-90.7064950528182,-90.7064869650517,-90.70638334762079,-90.70628773486131,-90.7061964642933,-90.70611482199698,-90.7060665314703,-90.70596822643299,-90.70608596543619,-90.70624531600697,-90.70631684297582,-90.706324491521,-90.70627689522796,-90.70621254187401,-90.70697826487267,-90.7074545188194,-90.70769089916249,-90.7078179910238,-90.70784976322823,-90.70784935826696,-90.70773775357877,-90.70767394064283,-90.70752994687683,-90.70741057596129,-90.70727511094188,-90.70708381668089,-90.70663748816982,-90.70640426939896,-90.70647831843546,-90.7064540613315,-90.70663723117138,-90.70674846948206,-90.70684422043016,-90.70697162193555,-90.70721892066635,-90.70759356891263,-90.70779283633576,-90.70783270034322,-90.70787296033537,-90.70804833849118,-90.708112617786,-90.70824867696726,-90.70837571836654,-90.70850347941817,-90.7085829860866,-90.70882265116579,-90.70922113062053,-90.70954761739405,-90.70967509537211,-90.70979485907077,-90.70989001648049,-90.70992178677854,-90.70992983635583,-90.70983386947734,-90.70984166242845,-90.70978565824018,-90.70963439016381,-90.70959397189549,-90.70962622514659,-90.70969763982421,-90.70978545072559,-90.70977716658518,-90.70972110488438,-90.7091394337278,-90.70898019997696,-90.70866891290655,-90.70846964729776,-90.70832597697006,-90.70821422988838,-90.70825419896536,-90.70815034976907,-90.70818192750222,-90.70826179330753,-90.70834925339574,-90.70854052534126,-90.70862827167788,-90.70874002993435,-90.70882009082483,-90.70888335412613,-90.70902688307579,-90.70909031749395,-90.70944214785813,-90.70951288851283,-90.70956118660999,-90.70961656771051,-90.70969629156947,-90.70972875790133,-90.70976005497144,-90.70983956509043,-90.70991919570203,-90.71001520980258,-90.71022255715074,-90.71035800457068,-90.71068513765344,-90.71080443830097,-90.71092420509407,-90.71105156135357,-90.71110733725591,-90.71114662395789,-90.71147383229486,-90.71152174400626,-90.7115217181244,-90.71157758514605,-90.71168913469494,-90.71181663401268,-90.71191229641178,-90.71196828542261,-90.7120002213713,-90.71205568216688,-90.71213577051876,-90.71232661886449,-90.7124302808969,-90.71254213979753,-90.71265376386185,-90.71274158523738,-90.71280623857275,-90.71291715873311,-90.71297287999808,-90.71320381016071,-90.71335548370148,-90.71344127818979,-90.71384156920242,-90.7140488364842,-90.71426402326495,-90.7145744959865,-90.71492508698392,-90.71537051648957,-90.71543484054075,-90.71548982260465,-90.71550611204637,-90.7154098887146,-90.71528259699291,-90.71498788991239,-90.71473237559515,-90.71438213513582,-90.71435017190007,-90.71436573778834,-90.71439794128128,-90.71455730501755,-90.71478045806337,-90.71499545448977,-90.71519454636417,-90.715640727859,-90.71624612672821,-90.71662840126054,-90.7171148099698,-90.71748908940462,-90.71768041782379,-90.71783955809576,-90.71790328921979,-90.71815811421661,-90.71838108770676,-90.71854062726062,-90.71913053975216,-90.71930553047046,-90.72003852144928,-90.72133736653424,-90.72230135925419,-90.72265204181588,-90.7230344128315,-90.72322535543206,-90.72357566700703,-90.72373455042199,-90.72389379317663,-90.72408520114467,-90.72445144123073,-90.72505722384378,-90.72515229527247,-90.7253118269911,-90.72544779708382,-90.72567295345412,-90.72626856036011,-90.72690595218135,-90.72738424710577,-90.72760744555386,-90.72792569630734,-90.72821233303507,-90.72833967729373,-90.72860271570707,-90.72907241142524,-90.72931952012337,-90.7295664488344,-90.72973427242648,-90.73020415423976,-90.73109673565217,-90.73232364609912,-90.73273770806664,-90.7331515866387,-90.73359770069153,-90.73426705632988,-90.73461764615082,-90.73493585426037,-90.73544614950085,-90.73589226169113,-90.73611494557247,-90.73632229969787,-90.73648166462183,-90.73670472344526,-90.73687983425128,-90.73716648219094,-90.73742159066917,-90.73758099033167,-90.73818568911553,-90.73879120478907,-90.74016154217374,-90.7405440151103,-90.74063991254,-90.74090057127395,-90.74129317462562,-90.74167567260633,-90.74196224365726,-90.74247175794373,-90.74336405097456,-90.74400142985334,-90.74473415984967,-90.74482968107337,-90.74514835933179,-90.74642180834653,-90.74677197898679,-90.74731369511451,-90.74750458724347,-90.74810954054762,-90.74836426666904,-90.74890575080566,-90.74976628291931,-90.75018607265091,-90.75049006430048,-90.75064965840676,-90.75090434363968,-90.75103996348176,-90.75112811399698,-90.75120022973906,-90.75118474328812,-90.75111338036341,-90.7510498268086,-90.75020281404187,-90.74993988016358,-90.74992383104015,-90.74995546476849,-90.75014986337357,-90.7503012159337,-90.75042901095468,-90.75163978256883,-90.75173540955254,-90.75181553603072,-90.75191955411067,-90.75202340557206,-90.75215092430417,-90.75231027722477,-90.75283586350346,-90.7535685734204,-90.75401444506483,-90.75411022264363,-90.75415021067603,-90.75411891015372,-90.75403919304304,-90.75337825492321,-90.75321887532392,-90.75267808976123,-90.75210458184492,-90.75202523240729,-90.75201767874108,-90.7520494989798,-90.75212126839344,-90.75240814530453,-90.75285537991599,-90.75320626237314,-90.75368461003401,-90.7539720712912,-90.75460997305395,-90.75515257640197,-90.75550379019826,-90.75596690638774,-90.75632707097641,-90.75651069761818,-90.75675813132271,-90.75676653217454,-90.75674212482845,-90.75657506705059,-90.75651986281606,-90.75651213172398,-90.75655206339131,-90.7566716588116,-90.75674378525413,-90.75681570968746,-90.7568157301889,-90.75677613590304,-90.75654486262779,-90.75659301647885,-90.75711253446097,-90.75729623333714,-90.7575836500321,-90.75796638572925,-90.75831703928968,-90.75863592661202,-90.75898632615325,-90.75924183667823,-90.75940095212262,-90.75949638195702,-90.7597195810187,-90.75999774577399,-90.75996493995261,-90.75998924502869,-90.76006061150119,-90.76018812596018,-90.76037113444802,-90.76062642248793,-90.7607856353804,-90.76085749547943,-90.76088933096207,-90.76092265717013,-90.76102680934646,-90.76113061492829,-90.7617436999552,-90.76190298758002,-90.76199146553358,-90.76203937662622,-90.76205592742538,-90.76215196280026,-90.76225619669778,-90.76241532452013,-90.76257521286951,-90.76288708555042,-90.76342985099792,-90.76357392701667,-90.76376596175602,-90.76378459571821,-90.76348778269822,-90.76329695706356,-90.76307457596261,-90.76300307954612,-90.76290842006776,-90.76263837719831,-90.7625910736166,-90.76262333215563,-90.76272702440144,-90.76285509997614,-90.76304638805307,-90.76308636452229,-90.76308670529582,-90.76311059456438,-90.76368570469018,-90.76372578004127,-90.76370190148536,-90.7636783051309,-90.76357465717849,-90.76328778814089,-90.76287309961978,-90.7621715255642,-90.76159762627451,-90.76122270406326,-90.760991557107,-90.7601953638035,-90.75994011722246,-90.7595410197351,-90.7591656435354,-90.75878351240111,-90.75852019633884,-90.75842466020637,-90.75829722110385,-90.75804222542968,-90.75791493315687,-90.75780362049025,-90.75763545719485,-90.75721795283157,-90.75686953124347,-90.75654269096815,-90.75600126676473,-90.75571453096234,-90.75556278167028,-90.75533162187044,-90.755108485905,-90.75485354211982,-90.75450315900481,-90.75423181433936,-90.75407191645678,-90.75375293119737,-90.75352130696997,-90.75336150349591,-90.75309868636583,-90.75271602185146,-90.75228520213086,-90.75194997329996,-90.75185453716929,-90.75153575786383,-90.75128132291525,-90.75105829231794,-90.7509952321866,-90.75077234430117,-90.7504535524066,-90.75033449600413,-90.75019026038545,-90.75009712014288,-90.75003352393769,-90.75002615921225,-90.75004979658189,-90.75003398463996,-90.74990714636388,-90.74956427891759,-90.74938107784854,-90.74883974862821,-90.74848886778621,-90.74788435288936,-90.74692889920829,-90.74661022207502,-90.74603753540299,-90.74578294616194,-90.74552829807011,-90.7454498336138,-90.74436190945475,-90.74313180101876,-90.74338438224311,-90.74348009945855,-90.74355108642489,-90.74358296677003,-90.74382107601072,-90.743804443903,-90.743644774814,-90.74364447864016,-90.74353165153052,-90.74354748808241,-90.74351479602599,-90.7435624194094,-90.74366557685455,-90.74402264152073,-90.74407055370213,-90.74406207482122,-90.74399819534352,-90.74393469636622,-90.74367937368274,-90.74320145932872,-90.74307905087849,-90.74179160073234,-90.74106003104072,-90.74107370172139,-90.74107317507726,-90.74102562946047,-90.74117929906645,-90.7414471863319,-90.7416001743138,-90.74214067529246,-90.74325460161614,-90.74373153724844,-90.74404935146987,-90.74421625066414,-90.74436715380216,-90.7444630805672,-90.74465405958054,-90.74490828564871,-90.74508360985949,-90.74530635276513,-90.74543377120141,-90.74568853019547,-90.74648430229615,-90.7466195641744,-90.74665133877305,-90.7466507917769,-90.74668219547853,-90.7468657634342,-90.74704784688389,-90.74721474362012,-90.74743778961239,-90.74836122015293,-90.74851988769379,-90.74880637785617,-90.74915674825641,-90.74934772162916,-90.74947486032228,-90.74963358867886,-90.74985639609312,-90.75018020556973,-90.75025985032691,-90.7505143191496,-90.75067344649476,-90.75105639242285,-90.75154280170943,-90.75175807587888,-90.75189408504262,-90.75195811780559,-90.7520069403504,-90.7520949611993,-90.75237416543081,-90.7525585722983,-90.75279851931948,-90.75298169562176,-90.75330096437567,-90.75350047428303,-90.75357286703472,-90.75365353829685,-90.75374175831828,-90.75382178264998,-90.75428462391575,-90.75450816496971,-90.75457228800698,-90.75462813583222,-90.75470437205206,-90.75478935888022,-90.75500560425546,-90.75507758626894,-90.75515762499117,-90.75523032708284,-90.75555784730851,-90.75570246426302,-90.75584613116263,-90.75616517549511,-90.75635661342503,-90.75649229443823,-90.75736205162164,-90.75786483085136,-90.7584087475966,-90.75856064746037,-90.75881676767465,-90.75909606834041,-90.75925590851359,-90.76009377987756,-90.76088392186986,-90.76200070832451,-90.76254384569135,-90.76315037239155,-90.76401275018161,-90.76462724491444,-90.76466441904037,-90.76524179424723,-90.76632678645092,-90.76718780011096,-90.76817742215795,-90.76875971967554,-90.76977279652566,-90.77041087015833,-90.77118410819435,-90.77187881526665,-90.77249291967335,-90.77312288987972,-90.77433546435124,-90.77549933886307,-90.77566671500364,-90.77568289148483,-90.77565092296807,-90.77570671223737,-90.77655241595257,-90.77686281658679,-90.77701442914318,-90.7777323561578,-90.77849783084567,-90.77929526473356,-90.77986975238021,-90.77999730074652,-90.78015591160964,-90.78021184469196,-90.780227951108,-90.7801964763861,-90.7802364971779,-90.78072196573927,-90.78103310569833,-90.7812559852195,-90.78149563016314,-90.78200613817394,-90.78269154946831,-90.78370324854768,-90.78443681558274,-90.78462807864562,-90.78501896477134,-90.78527424456463,-90.78602371380278,-90.78631841301927,-90.78674092367154,-90.78737827804157,-90.78807198545303,-90.78903642380462,-90.79040751837466,-90.7927580484394,-90.79441495771631,-90.79541637996888,-90.79640430304913,-90.79678556853457,-90.7980888770621,-90.79856597559137,-90.79916945595943,-90.79971055409393,-90.8012998873408,-90.80209518315047,-90.80234971988482,-90.80276296643297,-90.80314405075946,-90.80330258952696,-90.80358841124128,-90.80382638376949,-90.8040884350909,-90.80436641381115,-90.804961138406,-90.80536847320889,-90.80565476194086,-90.80737258425945,-90.80819871046644,-90.80864402092278,-90.8089615653768,-90.81042442111382,-90.81096498291906,-90.81099681727414,-90.8110681709005,-90.81113192368727,-90.8111797643429,-90.81119485762319,-90.811282533387,-90.81249067128718,-90.81290396006631,-90.81325342537929,-90.81395283454407,-90.8145891324817,-90.81493891851947,-90.81522519893655,-90.81551090264095,-90.81563840247921,-90.81633763240799,-90.81656040277352,-90.81675958548226,-90.81679874475951,-90.81714038376956,-90.81719125476697,-90.81749770791525,-90.8179429164598,-90.81870581231827,-90.820040889881,-90.82077260954061,-90.82112230018463,-90.82166257012189,-90.82223492511152,-90.82245775281488,-90.82293461768133,-90.82382499107349,-90.82414250548315,-90.82449236051821,-90.82458770864145,-90.82471556178703,-90.82488237897944,-90.82485028910359,-90.82486542404229,-90.82497596174038,-90.82510251509706,-90.82518944153507,-90.82521248499289,-90.82531529669221,-90.82569633616293,-90.82619526412148,-90.82651297184179,-90.82702852299519,-90.82742546102068,-90.82748896134063,-90.82762405924402,-90.82763954519891,-90.82750840733129,-90.8275250024634,-90.82789168139557,-90.82811423204609,-90.82896333312473,-90.82982113269475,-90.83023403186333,-90.83067914480738,-90.83159933541108,-90.83182173128358,-90.83252167966529,-90.83299806368903,-90.83363364668887,-90.83391926957778,-90.83398293826231,-90.83411053234576,-90.83424545554274,-90.83427727924379,-90.83426102913613,-90.83410173840663,-90.83408570637016,-90.83427518106798,-90.83436948543861,-90.83446451443726,-90.8345831613327,-90.83528232571678,-90.83561620986976,-90.83575392825213,-90.83607704898404,-90.83639432472368,-90.83683901595465,-90.83722859231301,-90.83729224963278,-90.83731576875469,-90.83735562116561,-90.83736398592542,-90.83738840221437,-90.83745182482873,-90.83749947664575,-90.83750640772926,-90.8376492143389,-90.83825292180474,-90.83872988698516,-90.83899226315437,-90.83940540851336,-90.8396514241539,-90.83991265527789,-90.84003178354355,-90.84022252196594,-90.84050851585653,-90.84061215554881,-90.84066788258011,-90.84070726272159,-90.8407222972086,-90.84083027166939,-90.84105395452819,-90.84107962572062,-90.84119164430332,-90.84131896840719,-90.84135054421317,-90.84136618549385,-90.84134977814372,-90.84142901960341,-90.84152460755541,-90.84165985617459,-90.84177073369864,-90.84178651126631,-90.84165847362667,-90.84168228480046,-90.84176150437347,-90.8423730057111,-90.84322241620818,-90.84344486613792,-90.84385806765307,-90.84471542309947,-90.84493797106036,-90.84522497134127,-90.84554310785109,-90.84608420759028,-90.84627535726622,-90.84662556350264,-90.8467210552601,-90.84710289103512,-90.84726122247017,-90.84742033321808,-90.84757363531888,-90.84778310033613,-90.84781865286976,-90.84782683731767,-90.84789283635439,-90.84813388320262,-90.84842691112222,-90.84841046429531,-90.84837068717925,-90.84830651314051,-90.84815550910858,-90.84810740587025,-90.84809895837346,-90.84813805294357,-90.84835977279249,-90.84846248084474,-90.84881260252408,-90.84913102555906,-90.849265318956,-90.84931314864689,-90.84937734165662,-90.84920406347769,-90.84924398542061,-90.84929971741093,-90.84954452635323,-90.84943209691114,-90.84951864426202,-90.84951753352664,-90.84954914924054,-90.84973902412997,-90.85002495005862,-90.85014341706999,-90.85033412670629,-90.85046940813073,-90.85075508957108,-90.85104047101618,-90.85128660901356,-90.85150896206423,-90.85176285044793,-90.85185833661831,-90.85195387158612,-90.85204952544942,-90.8521207981743,-90.85216005957608,-90.8523024026692,-90.85300133732773,-90.853454182249,-90.8542080191244,-90.85457293307525,-90.85519992654862,-90.85526306321898,-90.85529460680198,-90.85535826476628,-90.85546161980022,-90.85596090628702,-90.85604845795538,-90.85608054857374,-90.85609702686619,-90.85604247182623,-90.85611501047153,-90.85621809681574,-90.85630571183118,-90.85636057144161,-90.85636041147909,-90.85621657562531,-90.85627889502464,-90.85634984552921,-90.85663649661318,-90.85720840246837,-90.85746336381681,-90.8577182625466,-90.85794119691302,-90.85802851757497,-90.85809197136862,-90.85834401265356,-90.85862892756911,-90.85889031594687,-90.85909605053111,-90.85925460723925,-90.85930986879971,-90.85932568190459,-90.85934899935212,-90.85973835720226,-90.8603731593537,-90.86138095976675,-90.86180193046421,-90.8623021134869,-90.8629052999095,-90.86357181637047,-90.86423945496909,-90.86443002998388,-90.86481846388989,-90.86509603375407,-90.86579473157485,-90.8661833028671,-90.86668319893062,-90.86687391628729,-90.86707261496883,-90.86822835760711,-90.86838721556721,-90.86851446005025,-90.86867356322695,-90.86876959757201,-90.86885740176658,-90.87108629168598,-90.87117363263087,-90.87134727566428,-90.87149822425057,-90.87168838007508,-90.87194392372861,-90.87203893603315,-90.87238917272072,-90.87254812005,-90.87321615400928,-90.87340753686263,-90.87355072492109,-90.87362302310758,-90.87440734418401,-90.87525718234772,-90.87539823227127,-90.87560189023746,-90.87590890284899,-90.87615817844534,-90.87629147334319,-90.87641755005275,-90.87662529053671,-90.87706454256359,-90.87710602965281,-90.87658119568115,-90.87626902893309,-90.87598691209051,-90.8757281461225,-90.87550251580781,-90.87532393486043,-90.87543609442048,-90.8754619862074,-90.87528184575199,-90.87532545774263,-90.87545133859481,-90.87554006019026,-90.87562121907393,-90.87560757860189,-90.87529693535156,-90.87488809516448,-90.87480013093901,-90.87457723053231,-90.87452919101798,-90.87449685761874,-90.87457562139241,-90.8746240879249,-90.87476710040556,-90.87499842120847,-90.87522295459064,-90.875418768233,-90.87555188038134,-90.87565970964523,-90.87573434562017,-90.8759018189765,-90.87598771199785,-90.87636066362678,-90.87661271468312,-90.87678479908598,-90.8770319695366,-90.87754411063207,-90.87769987515642,-90.87725204216287,-90.8769058969341,-90.87666458361107,-90.87654182319454,-90.8762909061649,-90.87606949015921,-90.87610305078874,-90.87624878447038,-90.8765676466863,-90.87702257310696,-90.87698385231637,-90.87677144073233,-90.876726019907,-90.87684592312617,-90.87694209935083,-90.87706357647933,-90.87726387999318,-90.87754398740242,-90.87773546900337,-90.87802105530442,-90.87832838620784,-90.87858672885612,-90.87879668752323,-90.87916383047234,-90.87957228127121,-90.87988534550216,-90.88029273988167,-90.88056622866989,-90.88095743593362,-90.88135557755304,-90.88173882091152,-90.88217552966233,-90.88244142367367,-90.88263228610249,-90.88288139654699,-90.88272608086278,-90.88226408561491,-90.88180189885757,-90.88148840015654,-90.88107403138832,-90.88087799188533,-90.88067580683767,-90.88043475120605,-90.88028789911266,-90.87959701046684,-90.8791993607736,-90.87883050174717,-90.8785785507764,-90.87867705935692,-90.87899331422163,-90.87936268969,-90.87969981668618,-90.87988601485456,-90.88032500630426,-90.88064803753608,-90.88076792595582,-90.88070691196532,-90.88065511833638,-90.88058621881717,-90.88059687770992,-90.88028749842735,-90.88006700356968,-90.88014188706734,-90.8802168147766,-90.88042007150638,-90.88080821492196,-90.88108226976672,-90.88152418572157,-90.88187807544111,-90.88201028087927,-90.88207333607053,-90.88247814235312,-90.88284831004472,-90.88279346607241,-90.88267760000136,-90.88261572519806,-90.88260089738729,-90.8826813454955,-90.88275850913672,-90.88290662269685,-90.88320441317912,-90.88336064914978,-90.88366578868198,-90.88380130324306,-90.88370793952902,-90.88373349980868,-90.8837432280737,-90.88353749793265,-90.8833013731176,-90.88317595566781,-90.88312227691037,-90.88308490410346,-90.88315164448819,-90.88334705084409,-90.88369220986665,-90.8841782997298,-90.88450385366413,-90.88452844194659,-90.88454546378782,-90.88472032827325,-90.88469190500552,-90.8845751595619,-90.88456423987002,-90.88445121461027,-90.88442353733248,-90.88464202820636,-90.88493165541834,-90.88508427367255,-90.88553094474624,-90.88568158657209,-90.88596008899566,-90.88619759372222,-90.88658477813428,-90.88678902434154,-90.88696892588688,-90.88715465249894,-90.88722989728736,-90.88736742089196,-90.88761148148193,-90.88768499980135,-90.88760290781831,-90.88760512424112,-90.88764516015262,-90.8879377371032,-90.88813461339507,-90.88843499244268,-90.88869713311249,-90.88881733102211,-90.88868511319534,-90.88853603755962,-90.88833369399742,-90.88824748567617,-90.88758541928772,-90.88727876319508,-90.88698614342749,-90.8866176787525,-90.88634936405832,-90.88588927073174,-90.88553631617339,-90.88540522258364,-90.88563204274729,-90.8859776919661,-90.886154704684,-90.88658023292564,-90.886806267602,-90.88687730628276,-90.88707875677547,-90.88764060048334,-90.88781008781712,-90.88815488364851,-90.88865119452625,-90.88925941258427,-90.8894904325746,-90.88990625538896,-90.89001629311156,-90.89023188529714,-90.89077333800205,-90.89114660520404,-90.89161391701789,-90.89201682062135,-90.89232411163141,-90.8927576050455,-90.89315927867624,-90.8933861015155,-90.89362852251003,-90.89397334438287,-90.89423164182213,-90.89438534712038,-90.89460141038674,-90.8951441182242,-90.89553836264588,-90.89548455523204,-90.89540645450711,-90.89495127881462,-90.89440396936064,-90.89417822819846,-90.89387148570563,-90.89376388369152,-90.893649224939,-90.89324746849974,-90.89301986665197,-90.89305525663418,-90.89350961676578,-90.89393047616603,-90.89448149561341,-90.89488136812349,-90.89534697777317,-90.89549318726677,-90.89556812865126,-90.89573712697657,-90.8960435349663,-90.89618238735775,-90.89643896330531,-90.89675981673638,-90.89692018952768,-90.89754950800328,-90.8979237855043,-90.89867213225035,-90.89886346460781,-90.89933145550697,-90.89966249437254,-90.89954967170287,-90.89972932009245,-90.89995987101042,-90.89989409234271,-90.89972506345153,-90.89963463021134,-90.89964909950847,-90.89982008709953,-90.90005707977274,-90.90025323256482,-90.90053578748245,-90.90062939649286,-90.9008004376422,-90.90105343365082,-90.901173339165,-90.90153271793424,-90.90176511996721,-90.90218922825473,-90.90229893273177,-90.90242414709303,-90.90266673152651,-90.9028892592945,-90.90292969684729,-90.90277382672936,-90.90258614062168,-90.9024932451738,-90.90254950206085,-90.90266917740131,-90.90284301744181,-90.90310174227047,-90.9032901931627,-90.90331535114341,-90.90327103693835,-90.90310990042755,-90.90290671552685,-90.90261699149475,-90.90243038779271,-90.90248708930635,-90.90265998343565,-90.90302859044247,-90.90323263966224,-90.90345115708834,-90.90367724169344,-90.90409341340474,-90.90415083418769,-90.90399388687693,-90.90391694540081,-90.90372263258797,-90.90372506314104,-90.90386699446887,-90.90412522329851,-90.90446396033302,-90.90434027685893,-90.90419305959489,-90.90413197877616,-90.90422095057694,-90.9042791442686,-90.90424204072957,-90.90405891306806,-90.90386798290055,-90.90358051068154,-90.90347035205241,-90.90344735912782,-90.90342595426792,-90.9033813779473,-90.90324949998877,-90.90299704228347,-90.90279981391343,-90.90274581194693,-90.90274775325955,-90.90270027722225,-90.90267997683972,-90.9027461362292,-90.90277092761011,-90.90258987486617,-90.90238470939566,-90.90207796554355,-90.9018173568042,-90.90162942122383,-90.90166255114025,-90.90177383110186,-90.90193928770343,-90.90207277801031,-90.90228840485442,-90.90248924013946,-90.90275322775535,-90.90308079404005,-90.90338398340045,-90.90343089955037,-90.903278884491,-90.90301521409147,-90.90279888208237,-90.90249491903759,-90.90219032766682,-90.90244344633338,-90.90271211248442,-90.90279107284215,-90.90318450422602,-90.90343361175432,-90.90381752368927,-90.9040251202251,-90.90441489027852,-90.90465394610963,-90.9048834935215,-90.90497922408122,-90.90487086343963,-90.90474610248967,-90.90491461823439,-90.90502517834007,-90.90526712871528,-90.90558822436728,-90.90581404065395,-90.90605770430896,-90.90606891254163,-90.90586742960897,-90.90566509787783,-90.9053998999388,-90.90524677939332,-90.9051244840404,-90.90524652875361,-90.90549481586292,-90.90575193042774,-90.90607186590559,-90.90621626046924,-90.90621867940297,-90.90638185188982,-90.90671470240824,-90.90687363183177,-90.90712840785804,-90.90744677952847,-90.90789157270089,-90.90827605659373,-90.90866222716267,-90.90890834169642,-90.90909907934682,-90.90935340114287,-90.90963916103269,-90.91033951019244,-90.91138910664641,-90.91150039881416,-90.91167530971339,-90.9118657295421,-90.91253388951029,-90.91310680852146,-90.91393430748784,-90.91508025586703,-90.91523924826642,-90.91539875465857,-90.91546266039042,-90.91587619444383,-90.91660805075948,-90.91679881741693,-90.91704564130877,-90.91714934557471,-90.91722913725113,-90.91733359021806,-90.91748576260777,-90.91756518555883,-90.91766077035808,-90.9177645986405,-90.9177960793704,-90.91778799601735,-90.91772388154041,-90.91740447013844,-90.9173883171772,-90.9174279032523,-90.91780153409947,-90.91789697637984,-90.91812000349961,-90.91837405408462,-90.91866069651167,-90.91891613016745,-90.9190601880736,-90.91922909178584,-90.91930870738808,-90.91938054463824,-90.91944398686701,-90.91945203783698,-90.91917149685169,-90.9191552951241,-90.91917893113404,-90.9194253080298,-90.91961619361301,-90.91980741234903,-90.91999810780304,-90.92010125948714,-90.92018921721602,-90.92029426990008,-90.92034990012054,-90.92039761711339,-90.92041315154685,-90.92035686290779,-90.92037237570476,-90.92041200968561,-90.92050702034568,-90.92060300584849,-90.92072982215649,-90.92098500288355,-90.9213035217457,-90.92168589357937,-90.92245049761175,-90.9228886983415,-90.92296063216023,-90.92303231500267,-90.92306442929676,-90.9230573049673,-90.92311305916542,-90.9231448709084,-90.92320779578691,-90.9232471625665,-90.92331029963714,-90.92343722033803,-90.92353294155951,-90.92372441653463,-90.92397969103892,-90.92410716266346,-90.92455275553549,-90.92480719682301,-90.92515798890778,-90.9261459870999,-90.92643319139492,-90.92703806873963,-90.9276135173112,-90.92746600607111,-90.92721872049879,-90.92700607737032,-90.92716078399027,-90.92722879141787,-90.92733536725326,-90.9274060912018,-90.9274289982731,-90.92441278229703,-90.92436719858617,-90.92434806178285,-90.92423772491883,-90.92443429240105,-90.92445842054902,-90.92445685826286,-90.92451293013552,-90.92422331798467,-90.92413855227068,-90.92398247832365,-90.92401024890118,-90.92418592383031,-90.924415311357,-90.92470835348915,-90.924923444654,-90.92479972170916,-90.92461590028127,-90.92420313575633,-90.92436433669022,-90.9246256700015,-90.92493569873177,-90.92485885783672,-90.92467011001172,-90.92455106201477,-90.92474678562111,-90.92483405448148,-90.9250697193347,-90.92510718590199,-90.92450942592642,-90.92470499831171,-90.92506201463819,-90.92471318738319,-90.92433965930428,-90.9241962963594,-90.92417923420084,-90.92490931329438,-90.92583734451587,-90.92487238606721,-90.90334180885232,-90.88256070321698,-90.8617938889213,-90.84034108504608,-90.79924941429653,-90.77805300944104,-90.75737356683648,-90.71846754611221,-90.69747395073077,-90.67714215380467,-90.65695280069099,-90.63623195025957,-90.63424316641529,-90.61348221260276,-90.60527759169121,-90.60318529815302,-90.5949792016628,-90.592741208486,-90.58466404902937,-90.58278218045655,-90.57229517599376,-90.55372972918876,-90.55209695730638,-90.54178311723791,-90.54106364055251,-90.53011209993632,-90.52031988675537,-90.50986141313314,-90.50691828398253,-90.50047334452179,-90.49789241633665,-90.47831823670035,-90.47743275856882,-90.46818291550655,-90.45995841110873,-90.45770992525041,-90.4474150030433,-90.44043258253024,-90.42659822437597,-90.4159194347347,-90.40988682163531,-90.39499884759933,-90.39287802739713,-90.37276916046154,-90.36483632778382,-90.34396271400354,-90.32318959145951,-90.30309624919613,-90.30240366182598,-90.30103809336846,-90.30061374913736,-90.30004520051898,-90.30067183923794,-90.30052963835094,-90.30202693714108,-90.3033894626909,-90.3044943967536,-90.30340211132777,-90.3038499736728,-90.303478983619,-90.30343970826955,-90.32417000416766,-90.33482713043318,-90.35138633806272,-90.36643606960183,-90.40095921775932,-90.40766906856295,-90.42622945447766,-90.42621247298364,-90.42622266971368,-90.42600858444948,-90.42567041450327,-90.45070568653553,-90.45711439321205,-90.46743206209756,-90.47817488487181,-90.48958921186184,-90.53133523752459,-90.55228446323633,-90.55186962768616,-90.55161671261212,-90.55104602848014,-90.55037698450602,-90.54954228518598,-90.54939775795742,-90.54915020619208,-90.54909442908715,-90.54882048348209,-90.54887883463955,-90.5489182327693,-90.5487348219724,-90.54888894260148,-90.5488591091398,-90.54886246986392,-90.5487793197817,-90.5487482828636,-90.54868960546519,-90.54857972986829,-90.54845442387952,-90.5484674325036,-90.55011977837069,-90.55002586394369,-90.55009862975695,-90.55011290805194,-90.54981772267689,-90.5501093463468,-90.5500418147422,-90.55003733169512,-90.55076777106346,-90.55130859993965,-90.5515627861141,-90.55188122796348,-90.55242182338905,-90.55334393982983,-90.5537253687278,-90.55443434930524,-90.55447295381352,-90.55464747385408,-90.55595135949966,-90.5570322092485,-90.55725489665117,-90.55754140263828,-90.55770024122727,-90.55811367756074,-90.55865446667261,-90.5588129519395,-90.5592902315978,-90.55983110538929,-90.56088002950925,-90.5614844940412,-90.5627249329884,-90.56342468178838,-90.5641802601117,-90.56428469025494,-90.56439463492083,-90.56540440005058,-90.56647788836085,-90.56720151036225,-90.56778173754536,-90.56828323177102,-90.56957919706274,-90.57031054233286,-90.57067639629246,-90.57225062988104,-90.573125780666,-90.57374633835293,-90.57435034003414,-90.57534865434319,-90.57540317944748,-90.57559089164015,-90.57612393764974,-90.57673618582797,-90.57715820885295,-90.57761112399723,-90.57810431614739,-90.57862881472666,-90.57891562968634,-90.5794483543777,-90.57971069846221,-90.58007673427436,-90.58061721396815,-90.580856244307,-90.58136492004932,-90.58164382874598,-90.58188980595831,-90.58252648216279,-90.58282211556693,-90.58316252846558,-90.58365613376915,-90.58424427967481,-90.58458673673924,-90.58526267195502,-90.58569182402489,-90.58613728357989,-90.58674230508807,-90.58710804702663,-90.5875533540578,-90.58790347917635,-90.58819004812528,-90.58855566494499,-90.58880254018364,-90.58892181977741,-90.58989211073347,-90.59076750204463,-90.59148313608812,-90.59176979003281,-90.59191882411405,-90.59254114349612,-90.59288359132532,-90.59318578054163,-90.59423596101131,-90.59466589542852,-90.5951427535332,-90.59555661601485,-90.59578751098721,-90.5959863756198,-90.59625647390713,-90.59721147356996,-90.59784802374486,-90.59875528367996,-90.59943991846319,-90.59978183997451,-90.60031452985942,-90.60080794782387,-90.60154015349414,-90.60189033267466,-90.60221661263024,-90.60264614886873,-90.60372013259604,-90.60393577675174,-90.60422994422336,-90.60483443540207,-90.60534373220362,-90.60585323252974,-90.60632930792596,-90.60633876908005,-90.60722202956489,-90.60795460912283,-90.60813740243201,-90.60832035072373,-90.60862304819975,-90.6090125590261,-90.60946637603584,-90.60995947030987,-90.6104373425742,-90.61089921169379,-90.61171088580359,-90.61214840124896,-90.61304013468492,-90.61368426681899,-90.61422602884247,-90.61500608378149,-90.61635941874884,-90.61728215919481,-90.61839679365357,-90.61893013967213,-90.61924039019337,-90.61984598857819,-90.62036304943318,-90.62065727082624,-90.62094420227994,-90.62181990569687,-90.62236129241563,-90.62339636787111,-90.62424020806274,-90.62487730143195,-90.6251979623141,-90.62528768448016,-90.62555801197325,-90.6257325730616,-90.6259153247816,-90.62660677363843,-90.62712343846012,-90.62796579170136,-90.62883982073737,-90.62963697368018,-90.62989313089862,-90.63059383894176,-90.6309518916221,-90.63146130925557,-90.63159667424394,-90.63191501223532,-90.63211395017514,-90.63236098260263,-90.63264732597304,-90.63291024352397,-90.63388979438106,-90.63440733718514,-90.63509147032568,-90.63557747421063,-90.6366683732638,-90.63710599481406,-90.63755978114767,-90.63793402400607,-90.63892134524492,-90.63950286688915,-90.63990882904569,-90.64033884942432,-90.64095973512663,-90.64168449050258,-90.64217057996825,-90.64258435952505,-90.64294274857201,-90.64352433767874,-90.64416112590074,-90.64508523862121,-90.64543562907762,-90.64588144360889,-90.64644667843231,-90.64686854859995,-90.64741047149514,-90.64868477487843,-90.64954467739427,-90.65043580402727,-90.65104145563475,-90.65129660207052,-90.65155100938138,-90.65186946259317,-90.6518951425343,-90.65240297479605,-90.65287547935898,-90.65289685963607,-90.65295290307569,-90.65312165974908,-90.65370937335902,-90.65445844588071,-90.65458571406914,-90.65476160753084,-90.65489665436786,-90.65527913373761,-90.65642593213823,-90.65765246282716,-90.6590861917775,-90.66010613322837,-90.66064800348427,-90.66080709044139,-90.66142067221665,-90.66165937107162,-90.6621613628442,-90.66305351281905,-90.66387453615377,-90.66451941315454,-90.66530054684171,-90.66598537275816,-90.66647938355682,-90.66670240483572,-90.66691726226651,-90.66726829321733,-90.66753113690982,-90.66794526122824,-90.66834381256881,-90.66871010515614,-90.66966628481562,-90.67022419106867,-90.67071866445293,-90.67110043045081,-90.67161846719272,-90.67202467387023,-90.67272601720447,-90.67299711817415,-90.67336345344849,-90.67361857161941,-90.67466225436253,-90.67581787124851,-90.67683772032325,-90.67761893328637,-90.67789810340139,-90.67843214183243,-90.67994634685382,-90.68067968394593,-90.68109359840217,-90.68145243234775,-90.68209801616568,-90.68295849317649,-90.68362794046705,-90.68479172434229,-90.68491911349945,-90.68514238497204,-90.68546892587422,-90.68587607364614,-90.68667247282164,-90.68763708918509,-90.68887298202549,-90.68978173776652,-90.69092907588067,-90.69129596624205,-90.69183818863807,-90.69201352765306,-90.69234837286321,-90.69271469933607,-90.69306545017311,-90.69329693471902,-90.69357572069697,-90.69405401130082,-90.69454038704839,-90.69481986916981,-90.69526575491135,-90.69563247020859,-90.69679691449811,-90.69757794164838,-90.69828723563158,-90.69882976996176,-90.69953921607987,-90.70002585482764,-90.70052064564089,-90.70073539747224,-90.7014689773295,-90.70201945927217,-90.70228276361196,-90.70257756758963,-90.70398848856638,-90.70506534536574,-90.70684386839397,-90.7074575931404,-90.70920421313201,-90.70948361373651,-90.70987431494049,-90.71048039427191,-90.71134162715198,-90.71222683095749,-90.71287301324021,-90.71398968502562,-90.71490713482419,-90.71531371639647,-90.71569682299101,-90.71651809538909,-90.71719613564673,-90.71768249720269,-90.71808972873546,-90.71891163559451,-90.71962931860736,-90.72002049026284,-90.72070626383535,-90.72132046368777,-90.72265239314473,-90.72290778679697,-90.72351468283894,-90.72402533220975,-90.72461551207797,-90.72487128008001,-90.72501490316148,-90.72509499148309,-90.72538982088142,-90.72560552577737,-90.72619605342675,-90.72691420139709,-90.7272416153175,-90.72769612144516,-90.72787959698125,-90.72825511434056,-90.72844665380784,-90.7286459874705,-90.72900489662075,-90.72978714782363,-90.730649133089,-90.73119164267065,-90.73139909057956,-90.73213316901423,-90.73273949414657,-90.73345813609585],"lat":[46.69021074240872,46.69027624105532,46.69033095196451,46.69044022282141,46.69130050831841,46.69232996385061,46.69326117842723,46.69364500610666,46.69394032536685,46.69467461582077,46.69502482960878,46.69517795629491,46.69540812615253,46.69570384807543,46.69627384922193,46.69666809575877,46.69709540551384,46.69733667295719,46.69767655281628,46.69789547054121,46.69807078079236,46.69831157861811,46.69871746394744,46.69888132053312,46.69896914444531,46.6991663878335,46.69930917811647,46.69971401999771,46.70006498468831,46.70032764391459,46.70090829499301,46.70113829799013,46.70125301496381,46.70138982806143,46.70153189015129,46.70156392925434,46.70169517558881,46.70180553652131,46.70215742126057,46.70253191670941,46.70274128360806,46.70297279485342,46.703176452527,46.70346242724364,46.7036224768212,46.70369974978658,46.70379355584311,46.70390494078724,46.70397109791647,46.70407575880565,46.70430728858824,46.70446175486799,46.70459368954067,46.70494565197568,46.70508878096693,46.70516058176088,46.70518279780923,46.70518827725011,46.70517203824095,46.70508471074141,46.70504062643864,46.70485935387632,46.7047499158987,46.70456334707493,46.70430567977211,46.70414683342577,46.7040478355502,46.70400356645917,46.70378394198369,46.70352003502605,46.70343248361743,46.70331202316606,46.70321313890847,46.70315235707234,46.70308618124624,46.70293137674264,46.70278781054387,46.70256711669064,46.7021865995018,46.70192672592684,46.70174524796133,46.70157410695825,46.70115643933296,46.7010517986336,46.7005225676521,46.70025833024928,46.70008226300217,46.69997236141298,46.69985106444115,46.69967318588837,46.69961689783175,46.69956280424066,46.69950837446104,46.69926171685461,46.69903219674583,46.69856107944867,46.69832566333595,46.69737838848418,46.69711524057662,46.69680801667567,46.69636933294991,46.69588661882296,46.69529450214839,46.69479017684233,46.69380310238877,46.69345246316351,46.69321123830794,46.69299195641975,46.69279506802382,46.6926853488884,46.69244416696477,46.69231225774291,46.69204962135854,46.691852374665,46.69166049498327,46.69128239880548,46.69095363951392,46.69040517079264,46.69027387191817,46.69011970607462,46.69003217190448,46.68996636970788,46.68991145823378,46.68988482683375,46.68992966877305,46.68988009254724,46.68983085945251,46.6897652206371,46.6897441152883,46.68966748408288,46.68937263129524,46.6892797838866,46.68919194029449,46.68893455023306,46.68868835412342,46.68846863805488,46.68820551585969,46.68798637410756,46.68776696438874,46.68767916975573,46.68753073625298,46.68745920426874,46.68734942605156,46.68723989663067,46.68714142204998,46.68709218206363,46.68693888803234,46.68688417740577,46.68682409517452,46.68674750084871,46.68658883765683,46.68608472241596,46.68605204623059,46.68605194515667,46.68609606707826,46.68609647497343,46.68603045637165,46.68603127169367,46.68607524208073,46.6860757442069,46.68599898722127,46.68596615214813,46.68592258336931,46.68581846990018,46.68568751602541,46.68551187307086,46.68533633281701,46.68485404434966,46.68426141300804,46.68393267348835,46.68378463881386,46.68374633340172,46.68376851969634,46.68382378710532,46.68394465066746,46.68404377695473,46.68406605963562,46.6840281523507,46.68394596668872,46.68383657797523,46.68360616213399,46.683321371699,46.68316806356555,46.68290502036579,46.68262014862047,46.68248826940039,46.68226921152026,46.68189652872791,46.68172047680349,46.68167690890557,46.68157836040218,46.6814959651245,46.68124416123095,46.68110744795275,46.68085533647699,46.68044983675796,46.68012092538201,46.67972546128375,46.67946236259516,46.67922084743877,46.67902377729021,46.67887010300144,46.67871669954275,46.67821195164116,46.67805849071484,46.67753238087015,46.67735667472161,46.67707153875153,46.67683037776261,46.67656702805848,46.67645749102402,46.67599727653744,46.67571207771786,46.67560789678812,46.67555326645019,46.67555374431188,46.67548824799847,46.6754882839971,46.67556576665751,46.67555464139289,46.67548384752077,46.67531373339432,46.67524799807229,46.67520439911055,46.67496388523138,46.67496949969467,46.67501872942456,46.6751888556218,46.67527669665478,46.67531523749842,46.67531532520135,46.67526606465059,46.675148482229,46.67493736954976,46.67499738976736,46.67499788761353,46.67481708021011,46.67475676658793,46.67468018051504,46.67466999004639,46.67464772777348,46.67457113809531,46.67450555980606,46.67433019329258,46.67421482472019,46.6740174033462,46.67382506531284,46.67373184470617,46.67366634087402,46.67360046304108,46.67355115041442,46.67352914943188,46.67351836185134,46.67347990092362,46.67334888214689,46.67331558162353,46.67321191958313,46.6730701447343,46.67307001230146,46.67316891962106,46.67327331418666,46.67331753507212,46.67337794584589,46.67342193014341,46.67342258614754,46.67336772058044,46.67325825129923,46.67318702016131,46.67307724079955,46.67303347135329,46.67298933328598,46.67295121861906,46.67290192030936,46.67277010927954,46.67269339944321,46.67270067542828,46.67257276687681,46.67237535987519,46.67224342635787,46.67215591354911,46.67208989164061,46.67204612025176,46.67189237392917,46.67178278958059,46.67170024028915,46.67162948280939,46.6715852968318,46.67149770090681,46.67145923736882,46.6714234842842,46.67126943243225,46.67114647574245,46.67108076701404,46.67097131419238,46.67090504656016,46.67070752330759,46.6706201287849,46.67058171439826,46.67057105831577,46.67060365848814,46.67071923583774,46.67076876056618,46.67080200473919,46.67085688473393,46.670857180263,46.67083487680016,46.67078579697784,46.67061543866035,46.67046105087033,46.67037357739424,46.67011005520757,46.6700168813876,46.66990168720907,46.66984690986931,46.66973180486934,46.66959990590872,46.66946868763831,46.66936449045693,46.66927700460628,46.66926578364543,46.66928248761108,46.66932665365674,46.66937057429792,46.66949115763119,46.66953471250235,46.66960088910339,46.66968345323044,46.66963425848985,46.66965109164102,46.66946975429433,46.66935970189981,46.66927201070541,46.66918940770127,46.6691568139892,46.66914387858083,46.66870960152307,46.66845229314681,46.66793037335115,46.66790546447494,46.66784485970583,46.66778479872129,46.66771331947456,46.66760337233999,46.66755539635277,46.66643925022786,46.66574504721131,46.66579645456869,46.66576867083834,46.66573022620485,46.66563686013984,46.66550537425116,46.66537359205788,46.66526424158452,46.66513223889368,46.66505039561405,46.66497902114488,46.66489740794311,46.6647745437798,46.66468915693878,46.66455150363386,46.66459536908491,46.66469929686139,46.66474314411656,46.66477047808655,46.66490787699135,46.66500567831046,46.66509331416995,46.66514312517874,46.66528574205421,46.66548320418489,46.66571341290918,46.66596567890696,46.66605881942832,46.66611371274624,46.66619590355403,46.66631084887544,46.66638712459206,46.66651840260382,46.66655135803302,46.66655680397137,46.66652358988325,46.66648514590579,46.66641366087219,46.66626014653838,46.66610654625644,46.6660410859805,46.6659694668658,46.66590897331406,46.66587614954572,46.66587064372049,46.6658380397832,46.66576665911605,46.66572819794727,46.66548150857477,46.6653941902879,46.66517507408075,46.66508743852077,46.66497189819784,46.6649230943934,46.66482441612899,46.66469232054715,46.66467074822283,46.66468656786071,46.6647523956192,46.66479058412757,46.66487834580781,46.66492771303176,46.66502114711976,46.66504831543054,46.66505923866324,46.6650369096408,46.66517028222681,46.66520696447819,46.66533884308507,46.6653879945627,46.66539312503325,46.6653766096529,46.66523974144209,46.66522855914302,46.66528881235912,46.66541476975,46.66555746930087,46.66570005889537,46.6658808252078,46.66591326931965,46.66591871344863,46.66588023361543,46.66580339446984,46.6658087776733,46.66599516317277,46.66606630032899,46.66612648325458,46.66618125692067,46.66621431159916,46.6661865166401,46.66619211212296,46.66622494893469,46.66632374189744,46.66637851481835,46.66641120338878,46.66641676446642,46.6664712401455,46.66665221904555,46.66669089179781,46.66669034476139,46.66666744706075,46.66683886471041,46.66688238930843,46.66695350989596,46.66693118991549,46.66699365294503,46.66714470573344,46.66724915317943,46.66730349563688,46.66730324325162,46.6672476170481,46.66725833476717,46.66724162101389,46.66719796868604,46.66713205972366,46.66702242044492,46.66697315381859,46.6669294396269,46.66685285430189,46.66665593108,46.66661732050152,46.66658966003317,46.66658440155388,46.66664977557522,46.66678168334499,46.66685233353525,46.66686346569436,46.66680780302001,46.66696093978908,46.66701535646163,46.66719060828341,46.66728894095457,46.66729955357898,46.66725524491712,46.66725540651831,46.66731005318518,46.6673041520158,46.66732059016721,46.6675064314361,46.66751714402734,46.66764808650717,46.66799762702399,46.66817209558075,46.66821543740725,46.66821471097627,46.66816569547711,46.66802792709829,46.66799486297644,46.66798879513986,46.66800501846117,46.66808144636764,46.66816872637307,46.66819062123012,46.6682672272732,46.6684148561017,46.66854110617328,46.6686610680253,46.66875882420442,46.66887390357567,46.6688842939503,46.66882377616608,46.66881239034702,46.66883407593267,46.66892127077333,46.66894302687403,46.6690303215702,46.66907374204494,46.66912835618323,46.66919397824757,46.66940144605952,46.66961914885371,46.66963505835349,46.66960709755853,46.66960648578803,46.66964944064613,46.66971468532765,46.66974188583641,46.6697138588481,46.66971324118094,46.66974555963586,46.66982240713786,46.66985512748453,46.66985481440173,46.66990374740434,46.6698929023684,46.66993625622674,46.66994141397365,46.66988576981773,46.66989029568222,46.67004736695065,46.67011294746413,46.67013482714223,46.67025519307916,46.67025489779724,46.67029235388163,46.6702758735975,46.67028044102451,46.67037251421865,46.67052529632425,46.67054078027765,46.67053509683301,46.67044696448375,46.67018161900005,46.67012590343209,46.67012517745307,46.67010311811458,46.66994842694965,46.66990401288155,46.66988697235802,46.66995670736464,46.6699432679122,46.66997558429142,46.6699649754953,46.66988849863316,46.66982854987878,46.66976272558323,46.66963063671994,46.66951543454132,46.66946584543238,46.6694493865641,46.66941107216007,46.6693638635977,46.66932571889462,46.66930920181368,46.66930455198823,46.66928893482994,46.66928360077852,46.66927452727536,46.66924746170957,46.66919237863944,46.6690336453935,46.66895140443472,46.66889657108437,46.66886908609662,46.66891400228962,46.66904698010818,46.66905866496288,46.66904228546211,46.66900940120071,46.66893255171367,46.66889932618833,46.66881593947474,46.66878267885806,46.66858431489081,46.66850090162681,46.66843505401184,46.66839123427596,46.66835840199875,46.66831968033887,46.66823792803252,46.66802462744234,46.66790420205005,46.6677840613628,46.66768598727651,46.66740673899191,46.6672372324253,46.6670239924568,46.66666208564552,46.66630029180774,46.66616859011243,46.66604264705586,46.66597116182432,46.66594938733858,46.66592180651359,46.6658884254685,46.665861477178,46.66579540599754,46.66572993334049,46.66565858507307,46.66554336868742,46.66551580950228,46.66548850809338,46.66554290920613,46.66542222517985,46.66500538156311,46.66487930001059,46.66472103365834,46.66457282299749,46.66449681362282,46.66448626558182,46.66450868980307,46.66437706826485,46.66433382725813,46.66432250720483,46.66433395967302,46.66441985722989,46.66470242936675,46.66474613977273,46.66479572336323,46.66482918618581,46.66482909789755,46.66476946590029,46.66470372432916,46.66464306366782,46.66458266610263,46.66430853039681,46.66413291234741,46.66407822665219,46.66407358508737,46.66401346640829,46.66391444625044,46.66377744870963,46.66361816263267,46.6634757840431,46.66339353115042,46.66332216472545,46.66321816923809,46.6628836751579,46.66252739312866,46.66237400794974,46.6621162422678,46.66207618596914,46.6619128034569,46.66187920218466,46.66178000628629,46.66169217789593,46.66146726394445,46.66120302144292,46.6610053506205,46.66091739246168,46.66079689579031,46.66072573510933,46.66067665073768,46.66064376337416,46.66052283209279,46.66047880088025,46.66010092725767,46.6600461006342,46.65997482784533,46.65995248794064,46.65993068230566,46.65997984196966,46.6600889113578,46.66036244269535,46.66044950905623,46.66056955643842,46.66060202982511,46.66059551313097,46.66062814329818,46.66083046695662,46.66109393820654,46.66122471325153,46.66123545903922,46.66126815164296,46.66126843608551,46.66120206608249,46.66121303575552,46.66125651715373,46.66138249673615,46.66164286505885,46.6617604744668,46.66181494630808,46.66183033766864,46.66180241911395,46.66184616965738,46.66196637419489,46.66198809798981,46.66195490456791,46.66202021374249,46.66212943173738,46.66223397953054,46.66235419759213,46.6625295245031,46.66261157085001,46.66268810622299,46.6627530591025,46.66293924959344,46.66303763651955,46.66304838885983,46.66303698136924,46.66298184740519,46.66289331481645,46.66288248248196,46.66289294080467,46.6628213518072,46.66283732190418,46.66301150381093,46.66304080009922,46.66307946391216,46.66316725711197,46.66322222209875,46.66326057386573,46.66330471261842,46.66329402383516,46.6632502272875,46.66318515157966,46.66318576010725,46.66330782931293,46.6633967509291,46.66345226582143,46.66366129979209,46.66368376950065,46.66376136017224,46.66375905863723,46.66211419808941,46.66025314597557,46.66017444865527,46.66012489438452,46.66005918430382,46.659971233371,46.65964177497851,46.65947145787782,46.65923569943521,46.65906527612194,46.65873078507776,46.6586345012608,46.65833548680042,46.65820412250871,46.65807183639326,46.65772022852351,46.65761023782516,46.65752817110373,46.6574565952868,46.65741313629066,46.65732030326124,46.65728797268931,46.65729720185408,46.65681678193644,46.65654366407765,46.65652783025977,46.65642940202338,46.65638752610923,46.65552765681635,46.65403034162077,46.65395847871289,46.6536118713127,46.65323735340986,46.65302221053455,46.65281878235129,46.65265964670866,46.65255517042381,46.65252192550018,46.65251055506367,46.65240597003978,46.65244420438895,46.65236682236027,46.65236655250869,46.65230076949052,46.65225564828079,46.65217264860583,46.65210719481253,46.65200820518898,46.65197537520272,46.65187068789108,46.65162876433462,46.65152980784319,46.65147491710174,46.65141825666213,46.65137447456868,46.65132985392878,46.65120887938983,46.65119750540174,46.65114773779258,46.65104883066029,46.65097706125115,46.65094400518149,46.65094460768763,46.6510655541236,46.65105494828249,46.65095681611722,46.65086925363251,46.65075478583972,46.65057896637218,46.6504255576133,46.65020587696694,46.6500742446033,46.64988792003563,46.6496684752356,46.64944922130593,46.64931809171554,46.64916468648187,46.64894513582929,46.64883554545476,46.64852791094046,46.64835240520329,46.64829225524302,46.64806815933821,46.64790357096624,46.64781596863605,46.64766204717355,46.64730044332977,46.64715701742718,46.64693792058927,46.64682832463931,46.64665231028329,46.64638916361733,46.64603827298298,46.64580783637632,46.64571464193065,46.64560566656207,46.64551215877044,46.64540270649316,46.64484405396871,46.644471187508,46.64394505496992,46.64376968772265,46.64339620019065,46.64313336850761,46.64302937757924,46.64261884329221,46.6420376275547,46.64136930663928,46.64090896977325,46.64051457880995,46.63990642735425,46.63952828448524,46.63950047564316,46.63906801759644,46.63849829441362,46.63800036949949,46.63747458113541,46.63716244013902,46.63656504476023,46.63621427170386,46.6358367135003,46.63539274580944,46.63508093557417,46.63470826595029,46.63393568123709,46.63344295545964,46.63347050779637,46.63345971022302,46.63339411882637,46.63335549346971,46.63291216009555,46.63283524661634,46.63273128408191,46.63237543154684,46.63194781658308,46.63144404599052,46.63113696170692,46.63112090830227,46.63119238473419,46.63119256477103,46.63114858281798,46.63106049177267,46.63103321987283,46.63092416529123,46.63081461205879,46.63069947305061,46.63052966088551,46.63028881343765,46.63000401868018,46.62967030203507,46.6293857301818,46.62928711545492,46.62901894987453,46.62888727080525,46.62860257957129,46.628515058494,46.62834566570376,46.62807186232386,46.62771554791449,46.6273376734139,46.62674099790124,46.625876540964,46.6253183348386,46.62496265070857,46.62463404711382,46.62452339878636,46.62421339739621,46.62412457453524,46.62396961950991,46.62387528186183,46.62353174667216,46.62348623835519,46.62344676778548,46.6233471264117,46.62322577080896,46.62315378955923,46.62291161060984,46.62277382261828,46.62271854452688,46.62260859920735,46.62252623377435,46.62249636797728,46.62250672638686,46.62232756652755,46.62216086707351,46.62205028815277,46.6219394905079,46.62171708496068,46.6215895153531,46.62158928968739,46.62163884190899,46.62164401613023,46.62162230290017,46.62153951439982,46.62150683316933,46.62133908230825,46.62121746601122,46.62114017535465,46.62104520380549,46.62093380843947,46.62090544426422,46.62086121864133,46.62080575127187,46.62076152916084,46.62062830133686,46.62062221249311,46.62067647554328,46.6205119558997,46.6203492112733,46.62033928595463,46.62027972965905,46.62024617292689,46.62014003590347,46.61986780447173,46.61983330437528,46.61977230217616,46.61962837110234,46.61952807727734,46.61947247748049,46.61940042771498,46.6193045888637,46.61922186875199,46.61919910106462,46.61921528400833,46.61927567475622,46.61918728786821,46.61914364762002,46.61901136033821,46.6187917635997,46.61863223762285,46.61860461100184,46.61842895645665,46.61831853178845,46.61806548935668,46.61767435078404,46.6174976892752,46.61726053942878,46.6170073738154,46.61699622962932,46.6170233773957,46.61696814067545,46.61671879387939,46.61670967638345,46.61650678368412,46.61640730257887,46.61609798794369,46.61574416590812,46.61565567700406,46.6155118261781,46.61507598270067,46.61502037016886,46.61491459850798,46.61481494965818,46.61463764070059,46.61452700616527,46.61452710350975,46.61457060702269,46.61458649884292,46.6145592677048,46.61453745007282,46.61444974409331,46.61438911307766,46.61410368708724,46.61383976629491,46.61372939431074,46.61366890688146,46.61351362428725,46.61338406820375,46.61336956508657,46.61333626744844,46.61321470742327,46.61312539828005,46.61298193054036,46.61298146465668,46.61299816815814,46.61304174875066,46.61310805741732,46.61312981484045,46.61314059696011,46.61310762707763,46.61294839894271,46.61289335767642,46.61271569488584,46.61268182870732,46.61262647054505,46.6124771956865,46.61236683738599,46.61218493096712,46.6121294948337,46.61211291016397,46.61213387143667,46.61210611086443,46.61206801677445,46.61200191651588,46.6118921283344,46.61180190275842,46.61177832235759,46.61177588289135,46.61184142918331,46.61184105740401,46.61182451283632,46.61178052550809,46.61164340488428,46.61162144740418,46.61165393169378,46.61166474701226,46.61160374961127,46.61151588649292,46.61141727428471,46.61137378705585,46.6113242719895,46.61112459388455,46.61079323456764,46.61074322095027,46.61070417601168,46.61043855239024,46.61042116106735,46.61048091187801,46.61046956044443,46.61057242842541,46.61058282727127,46.61069160369858,46.61069145600695,46.61063013629803,46.61062952525954,46.61057435161682,46.61056534139961,46.61049404267881,46.61044484639001,46.61039416426026,46.61033461582066,46.61011684113659,46.60983062366488,46.60977056218052,46.60973204657453,46.60969933809555,46.60967233387152,46.60962319073477,46.60957881957581,46.60946885199173,46.60921578619455,46.60915540249947,46.60915449390603,46.6091099453842,46.6090600132593,46.60906528015589,46.60912555153822,46.60942269534831,46.60944433515601,46.6094332346818,46.6091693084301,46.60889509603746,46.60874090329197,46.60856542163731,46.60849937837251,46.60835060334803,46.60818536163964,46.6081411735134,46.60812400766511,46.60808531801846,46.60793076424806,46.60780940061914,46.60770969874854,46.60765460961805,46.60755485146089,46.60755469951776,46.60760967557434,46.60762021139477,46.60755949705001,46.60746077501338,46.6073781552166,46.6071125222335,46.60700171770702,46.60672498402072,46.60657601671963,46.60627828350056,46.60624519040721,46.60620108223386,46.60620117079155,46.6061565256189,46.60588618257282,46.60587483767531,46.60589147320024,46.60597909458438,46.60629785807759,46.60636931268888,46.60638541138262,46.60635213450417,46.60628591533604,46.60619816941043,46.6060558211325,46.60584161796559,46.60578652656915,46.60574725787826,46.60573510122811,46.60575624959939,46.6057993358701,46.60585953574324,46.60585944231475,46.60582072025864,46.6054245409721,46.60509448558926,46.60492884611295,46.60475293663178,46.6046645656054,46.6045983395498,46.60448854290437,46.60446643035334,46.60439432084753,46.60412912640341,46.60376437766261,46.60365321547832,46.60344301955283,46.603243858467,46.60305040141738,46.60292780350618,46.60287799402285,46.60264613496543,46.60252479334256,46.60230351933267,46.602208897958,46.60198237623278,46.60191624737908,46.60188999434447,46.60236269889429,46.60234574342839,46.6023672769397,46.60241668621997,46.60247670500969,46.60248166440677,46.60155351998245,46.60150392076697,46.60128942343403,46.60121177581143,46.60116195740363,46.60127137835985,46.60129315180042,46.60130285566324,46.60129151997001,46.60132298385786,46.60134964553502,46.60139860990247,46.60145430440141,46.60217051969867,46.60295034760159,46.60309438506261,46.60324918895513,46.60348757590614,46.60376352440147,46.60390705745409,46.60395727648208,46.60390956348262,46.60377007808175,46.6036606423492,46.60317419438078,46.60279354722453,46.60255553508822,46.60232296791344,46.60201983832017,46.60174953391272,46.60169580335202,46.60158086128148,46.60149224722665,46.6012612996883,46.60122377954394,46.60115897697213,46.60105542459043,46.60091772591582,46.60063043292525,46.60027527112037,46.60020957374358,46.6001004710624,46.60005640444393,46.59997397036373,46.59992442984579,46.59991899878833,46.59995727622652,46.60008262531162,46.60024233626286,46.60029089809564,46.60042374551242,46.60063328166218,46.60093531747664,46.60140257124686,46.60149134579987,46.60154304547378,46.60168791913274,46.60185871563448,46.60182757351814,46.60157897176792,46.60129485756852,46.60095181187837,46.60074073059649,46.60042647216295,46.60015124335814,46.59992424225287,46.59985675276972,46.59973669430703,46.59958933473916,46.59952614685233,46.59942478936606,46.59932609498188,46.5992096006385,46.59904965037473,46.59899585601632,46.59896362362565,46.59880520070807,46.59870241982289,46.59858946747334,46.59854693885245,46.59857118192813,46.59875443400438,46.59898643964637,46.59927899573119,46.59970364943074,46.60000817862715,46.6003179391038,46.60068265619206,46.60099216026374,46.60138961946586,46.60183709249498,46.60224586281118,46.6027807731488,46.60307345674663,46.60304217357789,46.60287938669774,46.60263703638113,46.60217825398585,46.60175771550431,46.60149802257462,46.6010563072801,46.60086826632921,46.6006032142992,46.60025577798739,46.59998073555572,46.59944383547739,46.59897441921864,46.59867014839672,46.59853090503033,46.5983400313779,46.59841916257957,46.59867955650154,46.59898913500904,46.59927568531501,46.59965197083705,46.59984634953595,46.59979199093145,46.59962709510583,46.59940194588604,46.59920392503656,46.59905591577744,46.59899867474451,46.59888731652161,46.59867412568416,46.59843844223835,46.59816576721661,46.59774599191564,46.59751214756549,46.5972140096862,46.59714828629093,46.59712420607215,46.59716309205773,46.59719315568789,46.59742653556827,46.59736564617736,46.59713986926677,46.59699747992559,46.59696384840539,46.59689291756737,46.59704699860343,46.59722359542778,46.59752221843939,46.59767118949622,46.59796975089295,46.59794845708012,46.59782712367598,46.59771780662328,46.59761367725176,46.59755733047005,46.59741291472056,46.59730251452476,46.59713756267558,46.59702198177856,46.59683585092034,46.59650811357667,46.59630746036931,46.59621821024451,46.59624212882421,46.59619862956055,46.59611637809436,46.59610658861808,46.59591444600961,46.59576010659617,46.59574106884551,46.59553945380174,46.5952927424803,46.59503063302614,46.59480284478952,46.59470491621314,46.59462609179454,46.59463223867722,46.59462333231148,46.594652427609,46.59480354501674,46.59496957593026,46.59516841883561,46.59544933796492,46.59573504824809,46.59608721185667,46.59624224565799,46.59612243209024,46.59579233647497,46.59562807834277,46.59560639719623,46.59573461917825,46.59582364796789,46.59592987127221,46.59594301910944,46.59588358787621,46.59570687942185,46.59554717015794,46.59529844504836,46.59521587104425,46.59487115318679,46.5946547337225,46.59454844659585,46.59424419637184,46.59412703307041,46.59405803789842,46.59375366527571,46.59349481709577,46.59324389247386,46.59299991501442,46.59284724409231,46.59254865186217,46.59240009599706,46.59235342206298,46.59217355556741,46.59185421975479,46.59169091238154,46.59149587214248,46.59123609597283,46.59100975702309,46.59096746396391,46.59080055033207,46.59079406801886,46.59078114404048,46.59071337114633,46.59073802464494,46.59085081430633,46.59099110107964,46.59114675968711,46.59138579904998,46.5916245237352,46.59187305173018,46.59212707941501,46.59243093169454,46.59270733110817,46.59299917511181,46.59294011418901,46.59277387850002,46.59248618568158,46.59236511295469,46.5922549201682,46.59188950419372,46.59130431717435,46.5910226006563,46.59080113643867,46.59055898679689,46.59028427826218,46.5900399290358,46.58986790533384,46.58963814067196,46.58955865801745,46.58955087399274,46.58939582462695,46.5892284560889,46.58894076691122,46.58872813573254,46.58849806244238,46.58835668449797,46.58806292824455,46.58784978926712,46.58767622646889,46.58749203573089,46.58742159292746,46.58731653829634,46.58728041350689,46.58717048256641,46.5871222939713,46.58720298524955,46.5873640619734,46.58747294366661,46.58765545511736,46.58768457836955,46.58782627601067,46.58794066053632,46.58812079879336,46.58823093017698,46.58845682000528,46.58857926305072,46.58872339753823,46.58896134696476,46.58907141421957,46.58932486585322,46.58940330708475,46.5893770508003,46.5892532884091,46.5891232152396,46.58891794529232,46.58903913675131,46.58916076296836,46.58939846095974,46.58941076832305,46.58934013890843,46.58914113244479,46.58894237558415,46.58877718049616,46.58875029891097,46.58873472965352,46.58876317224279,46.58899005090373,46.58916123898099,46.58907948607666,46.58884303383904,46.58847420683364,46.5882755716194,46.58799943711064,46.58771798935027,46.58761966803878,46.58776342287623,46.58807324388803,46.58825049667549,46.58853731853542,46.58881283193304,46.58911214900816,46.58900820163967,46.58889188557023,46.58870519138168,46.58845136918126,46.5882539242875,46.58832592236346,46.58859667819499,46.58880211292246,46.5885764163376,46.58833403233395,46.58816858769105,46.58804864115073,46.58791768897763,46.58774699127134,46.58772425167668,46.58777188370342,46.58785233777061,46.58780202405215,46.58771952357557,46.58756051438309,46.58735725175234,46.58715355612606,46.58700874401156,46.58694730475568,46.58681498738301,46.58671091579778,46.58655380145817,46.58648590211816,46.58629414200803,46.58623938644036,46.58614463403048,46.58602250963376,46.58585056420445,46.58570581495303,46.58554024230311,46.58544717618724,46.58544235899182,46.58553161184456,46.58563630603427,46.58557779418301,46.58546371635694,46.58534520465741,46.58519918877932,46.58510792440288,46.58515761536804,46.58523924656878,46.58535213497719,46.58546633360144,46.58558460235903,46.58576361926958,46.58582574527222,46.58591530872433,46.58595405359791,46.58572090218286,46.58554175631325,46.58537448485766,46.585299160478,46.58526345527944,46.58521600624086,46.58528337621832,46.58525111941567,46.5850635495446,46.58491998303092,46.58480052906689,46.58485084067067,46.58514872209432,46.58544710123783,46.58575579416873,46.5859113565412,46.58570258946593,46.58536108007114,46.58509101026418,46.58479331550289,46.58439180231159,46.58407778643544,46.58388670553254,46.58375706040361,46.58359416151361,46.58343188376895,46.58333399917724,46.58333229073903,46.58323538011918,46.58311406281896,46.58308074138393,46.58304722178966,46.58308463224876,46.58297423136845,46.58298974424172,46.58281287403097,46.5827248629553,46.58269128507925,46.58267970162774,46.58259643434807,46.58257286502193,46.58265281408806,46.58262492931718,46.58254760129975,46.5825196476008,46.58259531542001,46.58261042861835,46.58270169201343,46.58278646181004,46.58283018838711,46.58292846694785,46.58294483128459,46.58291677260558,46.58294747199094,46.58301287503608,46.58304014416593,46.58309443601693,46.58318210284508,46.5834017540392,46.58362101997686,46.58368675506652,46.58371917104554,46.58370821458576,46.58366409188933,46.5836202847953,46.58354317634952,46.58327518995391,46.58323651294199,46.58316532366483,46.58309314097283,46.58309293968529,46.58313614720476,46.58310823160013,46.58322292511492,46.58339748911215,46.5835948812577,46.58393494314237,46.58401192191539,46.58403890833117,46.58402771041528,46.58397308817827,46.58361648467103,46.58355080905706,46.58350111910404,46.58342939513011,46.58342898368164,46.58347244604782,46.58346078722316,46.5834824577656,46.58357005623685,46.58380038487144,46.58383368636574,46.58383330244768,46.58381124117948,46.58369076440955,46.58361920632547,46.58357501487685,46.58352531485076,46.58350879387763,46.58353083426797,46.58361765117029,46.58375963969993,46.58389042304809,46.58411937611132,46.58422270780335,46.58425531441404,46.5843211063329,46.5843866572453,46.5845678293817,46.58458424974979,46.58458399303515,46.58451824272144,46.58438630734545,46.58430930152468,46.58426496594372,46.5842810689356,46.5843633280182,46.58452719700385,46.58458747464852,46.5845973737419,46.58464031492586,46.58476009794748,46.58521895028807,46.58531730548739,46.58545808452176,46.58553370520345,46.5844009112575,46.58115986112632,46.57484700852159,46.560257018237,46.54574756699547,46.53115620765169,46.51656453793304,46.50208177640489,46.50210956807942,46.49996924129317,46.47176948264863,46.45722882726484,46.44285833130923,46.43553474269796,46.42837502953249,46.41413890342253,46.39888183578645,46.38428679207878,46.36988971518367,46.3554269956957,46.32675640938158,46.31245057738771,46.29850643293545,46.28422707805264,46.26962699856387,46.25626765834298,46.24176086118285,46.22749848780188,46.21297652040406,46.19853681043988,46.18404506633334,46.16941637455609,46.15466277271187,46.14773614564823,46.14023157103959,46.11153373662809,46.10431583274591,46.09714074908391,46.08260885853827,46.06789956124006,46.05338437405848,46.04160488372868,46.03887557248938,46.02516709981575,46.01082477606856,45.99531595161147,45.98103265628569,45.98058546045392,45.98046311164536,45.98031944200695,45.98053086135315,45.98082319792887,45.98076406320445,45.98068351094602,45.98087606896794,45.98123779304982,45.98150342945139,45.98144849881011,45.98144470703646,45.98145744384346,45.98129337241973,45.981478278729,45.98154445889873,45.98167350355086,45.98173631294775,45.98170251238984,45.98171774455023,45.98163231633346,45.98153807307636,45.9815307815456,45.98152834565299,45.98151318975653,45.98152340573731,45.98147611812819,45.9812757046102,45.98126628551925,45.98134472955486,45.98150782497665,45.98135131814146,45.98135893684557,45.98123666538223,45.98132779820499,45.98136039935306,45.98145941684438,45.98149536862626,45.98154076348816,45.98151855118758,45.98151882439659,45.98153545164597,45.98154327254897,45.9817417762401,45.98186505903277,45.98180384132767,45.98153433947144,45.98151859172314,45.98154009932904,45.99608863253246,46.01031536394344,46.02434843861811,46.05338867911098,46.06787055416216,46.08195209030711,46.09630449686863,46.10382016218963,46.11117399095087,46.12545053264718,46.14889757127711,46.15495928590909,46.15476152972045,46.15470173699902,46.15462812376631,46.154509682305,46.15428581146123,46.15421887405082,46.1540631697321,46.16865690132527,46.19205818104852,46.22041920786278,46.24076663595328,46.24066987399166,46.24075813286517,46.24087798065501,46.24103337616692,46.24112020521478,46.24129128580049,46.2412736659254,46.2557222295566,46.27055748182058,46.28478279751525,46.29889604862373,46.30598346554599,46.31303043880387,46.32734464737607,46.34180076965396,46.3562517124426,46.37062734209709,46.37496219300184,46.38499884325898,46.39943131030006,46.41399737332937,46.42834386934424,46.44257937420778,46.4569805248109,46.47154545121373,46.48591765818689,46.49993273371609,46.50070099568048,46.50070880620354,46.51516334238114,46.5296209709565,46.54413228217261,46.55863716998985,46.57299014431327,46.57987376742084,46.58366516434336,46.58392758701146,46.58400429065444,46.58409193488583,46.58424057625974,46.58445451724607,46.58476222712131,46.58492686982374,46.58517204879344,46.58519773483304,46.58531162961502,46.58577327202718,46.58620167480131,46.58627821090904,46.58633306147686,46.58638853499398,46.58656931874977,46.58687715922606,46.5869376946453,46.58705854023743,46.58729438094052,46.58770659113701,46.58797586048821,46.58860141291772,46.5889315102687,46.58925514213126,46.58925518854085,46.58935420293559,46.58983743492453,46.59024947589445,46.590595179099,46.59084259665128,46.59108927944754,46.5916661101033,46.59208375249271,46.59227035534954,46.59296219529209,46.59343422128697,46.59370897002766,46.59403835449793,46.59450243316458,46.59452747178558,46.59460920913971,46.59490069390817,46.5951585895459,46.59540563633489,46.59564183642961,46.59582833147934,46.59608104019812,46.59623482654183,46.59660785666872,46.59676176920413,46.59692133945665,46.59710252335696,46.5972121135837,46.59750876353087,46.59772276657448,46.59787113411523,46.59815643676412,46.59833154302989,46.59849686256167,46.59879357665682,46.59907911850612,46.59928210487227,46.59957281662818,46.59983103924834,46.60001212195677,46.60030881446486,46.60055048678757,46.60079174689634,46.60102224746108,46.60114845240746,46.60126412656322,46.60137928598584,46.60146697797267,46.6020323181198,46.60246089898634,46.6029437285421,46.60307555452133,46.60312258845237,46.60346528483974,46.6036243740658,46.60383317067183,46.60438230988953,46.60466749303637,46.60491474957418,46.60522194967469,46.6053647382584,46.6054525698082,46.60552371988291,46.60609470232495,46.60650084995675,46.60699501120161,46.60746727045239,46.60764827779956,46.60788453081825,46.608147986012,46.60856486180804,46.60879025124229,46.60903152111013,46.60927336788268,46.6098166668053,46.60994264616068,46.6101570777102,46.61049698885245,46.61082670956397,46.61110074510338,46.61145088718835,46.61145758679727,46.61190793557885,46.61238551344606,46.61252796866717,46.61272048321781,46.61292867278279,46.61312627481551,46.61330778090951,46.61357063729967,46.61389487834276,46.61417476981593,46.61460296542375,46.61489367055854,46.61539848589023,46.61573306860572,46.61607326571975,46.61647967212863,46.61730314503988,46.61776388795482,46.61844407535288,46.61875729535866,46.61890523199074,46.61928948795462,46.61956904197171,46.61970637375708,46.61992023981884,46.62050775649703,46.62077085572066,46.62140755356554,46.62184673394521,46.6222307943049,46.62239327965548,46.62242203900419,46.62260898519717,46.62277395644426,46.62290569598411,46.62325795129296,46.62346154038119,46.62397832452244,46.62455004733755,46.62493263666807,46.62509208951192,46.62556913613483,46.62574996095884,46.62613412399249,46.62626049398472,46.62643028687482,46.62651243059648,46.62669330347089,46.62681433799604,46.62695687535815,46.62764215107915,46.62794976293024,46.62839931028076,46.62876671169003,46.62940297435965,46.62971552009135,46.62997903667185,46.63024749400898,46.63078476069987,46.6311471104058,46.63143788384943,46.63165708633815,46.63210132796484,46.63249042740495,46.63285779464304,46.6330827066061,46.63331861319772,46.63378500006842,46.6342235121923,46.63475545506885,46.63496946531869,46.63527629935628,46.63559989880777,46.63591811785555,46.63620303035583,46.63699282021186,46.63733778908329,46.63759539934446,46.63788049676375,46.63797915963163,46.63805027124665,46.6380827673467,46.63807924555934,46.63834351914968,46.63858943155201,46.63866974233314,46.6387464798193,46.63885857202107,46.63944861022614,46.63994210342477,46.64010111310047,46.64056751208514,46.64069385606548,46.64081990897283,46.64134598392179,46.64204763898741,46.64299613231094,46.64359377297065,46.64386231359205,46.64398288735953,46.64437193869352,46.64459160507669,46.64493686488863,46.64543059803251,46.64605016751711,46.6463900856977,46.64675170845467,46.64721737989633,46.6475739121596,46.64771097889437,46.6478149074966,46.64806708886121,46.64822079599934,46.64852210949556,46.64885163119002,46.64904860317602,46.64962403030495,46.64989243149388,46.6501831389993,46.65037494665842,46.65072063447732,46.65093985769548,46.6512793965039,46.65143810414134,46.65170143082954,46.65185516755077,46.6525622146367,46.65326915673306,46.65396001362927,46.65457409427962,46.65472205459655,46.65506705265177,46.65592762639456,46.65639910436404,46.65664018650833,46.65682084909442,46.65710048247853,46.65764318315836,46.65803234325134,46.65862384140626,46.6587170090127,46.65893109395733,46.65917212008326,46.65942391321343,46.65986797812195,46.66053094726042,46.6612603336893,46.66186287606696,46.66249827821162,46.66272835912584,46.66299731310907,46.6631008694289,46.66334801379021,46.66350103226575,46.66368170902741,46.66386310259567,46.66403802863039,46.66425729650737,46.66459688309059,46.6647616730527,46.66496932551793,46.66518307952057,46.66599436964402,46.66637208270638,46.66692065253793,46.66727112729943,46.6676711987664,46.66799444627725,46.66841101274238,46.66855874998557,46.6689586603952,46.66932032170734,46.66946269220465,46.66967124387958,46.67047644757935,46.67119426250174,46.67226826878945,46.67271219370135,46.67380773353165,46.6740214225964,46.67427941820375,46.67463506379375,46.67506786871142,46.67567600304046,46.67606513710705,46.67681017718525,46.67747321161846,46.67769227741507,46.67792780195322,46.67851436442849,46.67889764827274,46.6792152000289,46.67945056336055,46.68008098294242,46.68058493172612,46.68080970377528,46.68124803839161,46.68168063431671,46.68237079853114,46.68252386454952,46.68304986186046,46.68340604232128,46.68387195630432,46.6841133173206,46.68431039441403,46.68437118999026,46.68450768839028,46.68465593404608,46.68517639705716,46.68573541898035,46.6859543811822,46.68617310298213,46.68629398730577,46.68665550603405,46.68679827819997,46.68691287150382,46.68707201121019,46.6875923597941,46.68826630733078,46.68864418549505,46.68881384727285,46.68933448639399,46.68968495135375,46.69021074240872]}],[{"lng":[-90.61296015087775,-90.61353563459306,-90.61459909204653,-90.61534286243176,-90.61678302889025,-90.61746260504572,-90.61789385883378,-90.61805341449561,-90.61835714153349,-90.61874146600439,-90.61911672022116,-90.61949284443305,-90.62018866471303,-90.62056396549643,-90.62101939910563,-90.62204298491541,-90.62254642421826,-90.623305508206,-90.62384909369446,-90.62422414078452,-90.62439960972098,-90.6246632427759,-90.62518257167237,-90.62563513833649,-90.62682752242932,-90.62714693456732,-90.62750748029585,-90.6276993491297,-90.62896355772985,-90.6290835927128,-90.62919602383734,-90.62932353367148,-90.62968390544447,-90.63041982765121,-90.63123572659447,-90.63167631878466,-90.6318520590218,-90.63211565546575,-90.63250831654098,-90.63296405893514,-90.63369937334444,-90.63383564855508,-90.63397178830451,-90.63420430450363,-90.63420482029873,-90.63408525027195,-90.63408450193343,-90.63426142164496,-90.63438922722764,-90.63451685747609,-90.63458108449832,-90.63465267748143,-90.63490896695053,-90.63503669414932,-90.63516454974908,-90.63534134561485,-90.63548596474298,-90.63563761301616,-90.63582904180389,-90.63637435776133,-90.63640615002879,-90.63638212373296,-90.63644599836294,-90.63680622167763,-90.63705450520685,-90.63728634273416,-90.63737488089596,-90.63745463451235,-90.63759872295599,-90.63832708269658,-90.63879896629011,-90.6391267966909,-90.64022316429407,-90.64070355254853,-90.64107120271861,-90.64128790631067,-90.64165517476374,-90.64198426383962,-90.64218383900315,-90.64242416555051,-90.64263245945234,-90.64290459438567,-90.64300839745344,-90.64339228437541,-90.64355222849098,-90.64410455472023,-90.64504760329899,-90.64562418056063,-90.64632818084121,-90.64702379801317,-90.64730347968103,-90.6474637304249,-90.64802371661349,-90.64899910873277,-90.64926285615752,-90.64967069365566,-90.64984654430945,-90.65028684394693,-90.65052687109475,-90.65077422074812,-90.65100646077899,-90.65130220992668,-90.65153388386896,-90.65192574179022,-90.65211010356698,-90.65234199655056,-90.65294935328454,-90.65370893910533,-90.65388457306935,-90.65414077893156,-90.65448468908205,-90.65468420400258,-90.65478852499403,-90.65583605594273,-90.65597147268117,-90.65630760950256,-90.6564676506004,-90.65697942761068,-90.65733129456179,-90.65864232932877,-90.65903431643237,-90.65923324171281,-90.6594734331977,-90.65960166333063,-90.66026489068874,-90.66193555706205,-90.66297438723819,-90.66318278094843,-90.6634379402676,-90.66396585740966,-90.66420605912153,-90.66509273158381,-90.66531698533674,-90.6661482102015,-90.66660396289741,-90.66758707020858,-90.66836185687467,-90.66907326468397,-90.66937693223333,-90.66991340770643,-90.67032029123675,-90.67056809621377,-90.67163122570766,-90.67251011898384,-90.6730297620379,-90.67317348109175,-90.67337293636326,-90.67425255271151,-90.67585859402,-90.67656992455748,-90.67694549385938,-90.67791225293048,-90.678807639867,-90.6797101306709,-90.67995064932303,-90.68066085399538,-90.68109277772139,-90.68133246789796,-90.68173219247413,-90.6828506474873,-90.68293057133326,-90.68344199393627,-90.68413720708219,-90.6844406478466,-90.68611092630972,-90.68700560264492,-90.68857155313282,-90.68994576349374,-90.69036974618579,-90.69089662892497,-90.69137658643703,-90.69217545378638,-90.69276637344734,-90.69331730968271,-90.69407620123458,-90.69439560264649,-90.69541871359993,-90.69570626002627,-90.69806272615529,-90.69903770888696,-90.70018803871521,-90.70118664630233,-90.70133037754604,-90.70168152131396,-90.70191388567343,-90.70220871871277,-90.70309554292221,-90.70322381453019,-90.70341490266514,-90.70361482508009,-90.70383934567504,-90.70432583300621,-90.70546836048604,-90.7061072834602,-90.70695457005196,-90.70788824004373,-90.70889584943453,-90.70945448994097,-90.70966224031099,-90.70972650852215,-90.71129961600096,-90.71142745893111,-90.71220202954878,-90.71291289853725,-90.71321592115461,-90.71355144385068,-90.7145259555831,-90.71478994778246,-90.71495746008389,-90.71506925177327,-90.71613141665344,-90.71632275806206,-90.7167060089145,-90.71685020387949,-90.71688237896281,-90.71710572083013,-90.71726537403214,-90.71752846107239,-90.71759271584042,-90.71877486490821,-90.71898214856726,-90.71906974736548,-90.71910197124745,-90.71918149929122,-90.71940539085743,-90.71978878395345,-90.72018844429874,-90.72121031918626,-90.72143420057357,-90.72160920923712,-90.7217371890553,-90.7225352505021,-90.72267927941428,-90.72275143731422,-90.72286250924131,-90.72295079296752,-90.72303060973536,-90.72331822215942,-90.72342216217173,-90.72365331252112,-90.72374978998265,-90.72385290666459,-90.72394850064414,-90.72426762113018,-90.72445178252606,-90.72469104604367,-90.72476340486477,-90.72474723531579,-90.72479526723799,-90.7250267111765,-90.72525003425568,-90.72535411293306,-90.72557704101231,-90.72577748207807,-90.72608001704846,-90.72624015562431,-90.72642379383123,-90.72671915622855,-90.7271419790785,-90.72730992058762,-90.72777209031177,-90.72805175546341,-90.72819579214996,-90.72841061389609,-90.72842665105185,-90.72839482844049,-90.72817830317977,-90.72791474042678,-90.72776304296529,-90.7276989026093,-90.72769858286632,-90.72774651809674,-90.7277224815516,-90.72773853627609,-90.72792152491589,-90.72792085724348,-90.72794467828345,-90.72815255070054,-90.72831971113632,-90.72865433715045,-90.72869407156409,-90.72879831967344,-90.72922096714055,-90.72942034931937,-90.72980360117467,-90.73054502516374,-90.73134335638883,-90.73158284021564,-90.73181410578037,-90.73218161753012,-90.73259671007506,-90.73345059979385,-90.733681640981,-90.73471991473795,-90.73503112908844,-90.73567039355665,-90.73597304412446,-90.73698761424788,-90.73757845009361,-90.73782662007162,-90.73872908140537,-90.73899264349841,-90.73922387274783,-90.73954254069093,-90.73986209101624,-90.74034876434858,-90.74049327621616,-90.74055694654659,-90.74060452580338,-90.74058837321402,-90.74064361025466,-90.74095513504005,-90.74215321313521,-90.74271952043459,-90.74319082231807,-90.74397374522435,-90.74498755463675,-90.74558666997208,-90.74610505911613,-90.74687967508635,-90.74740738897111,-90.74772692006889,-90.74833373460973,-90.74872492140956,-90.74920430391614,-90.75018429592008,-90.75021127503518,-90.75037097740012,-90.75069018685397,-90.75120077841244,-90.75244500018113,-90.75413601998153,-90.75468630928118,-90.75515650345261,-90.75624095847814,-90.75665571866797,-90.75747721817206,-90.75787561497789,-90.75888739499322,-90.75939797075422,-90.76038548853285,-90.76206542409909,-90.76259040358643,-90.76294045350379,-90.76362508443438,-90.7639992424993,-90.76455710886643,-90.76588720824772,-90.76707426623157,-90.76818170472828,-90.76887435510233,-90.77018200411111,-90.77075602737762,-90.7724796017617,-90.77407576298465,-90.77442699394261,-90.77541546058718,-90.77608607395601,-90.77685197800143,-90.77707545660488,-90.77725064587355,-90.77748973628128,-90.77774444021557,-90.77809504866687,-90.77889262719761,-90.7793393491153,-90.77956274296204,-90.78007320131196,-90.78052099637863,-90.7808397583362,-90.78157371444449,-90.78170120718556,-90.78189312109131,-90.78198900090531,-90.78259476930995,-90.78272250949384,-90.78307434081034,-90.78320199865058,-90.78444546337948,-90.78543419560449,-90.78597661450274,-90.786255782285,-90.78644683491605,-90.78686926099836,-90.7872913859657,-90.78830994893259,-90.78885167037195,-90.78964076759588,-90.78979980369091,-90.78996631416244,-90.79038100668093,-90.7904122411925,-90.79048382667789,-90.79083391081762,-90.79087323928424,-90.79119173051127,-90.7912390145766,-90.79131059505501,-90.79165240806343,-90.79165220020226,-90.79149120953494,-90.79141052957188,-90.79132946578504,-90.79146351609677,-90.79129526947845,-90.79118360785478,-90.79104684331115,-90.79098245027781,-90.79094943748858,-90.790962770351,-90.79104197170317,-90.79103316159052,-90.79110436392149,-90.79111971645375,-90.79107866792694,-90.79096582329332,-90.7906769877176,-90.7900679988073,-90.7895548273417,-90.78918510570701,-90.78936742607542,-90.78909618468286,-90.78874530144229,-90.78855323774407,-90.7882099111407,-90.7879777637213,-90.78778590293334,-90.78731347136046,-90.78636682934237,-90.78598237517146,-90.78586962132715,-90.78542089811504,-90.78436265852802,-90.78386502816697,-90.78372006020928,-90.78297232646094,-90.78286985485265,-90.78271025990048,-90.78269052393885,-90.78270612591849,-90.78268961861205,-90.78251193908578,-90.7824940770295,-90.78241173495637,-90.78218610440985,-90.78212121775488,-90.78205510037019,-90.78203723939252,-90.78211396646755,-90.78213616480707,-90.78219091569751,-90.78234971645449,-90.78325605442696,-90.78344635466651,-90.78393968440747,-90.78422506668426,-90.784733112589,-90.78547904785849,-90.7858439313632,-90.78633666950034,-90.78728854231909,-90.78790805611324,-90.78821021735114,-90.78835324984219,-90.78868617119203,-90.78889169667436,-90.78915276074255,-90.78931034601733,-90.78932500677024,-90.78929186905678,-90.78920282249221,-90.78899390833224,-90.7887050702119,-90.78796743046357,-90.7878151739633,-90.78740697270629,-90.78719067961424,-90.78705394955391,-90.78694848970302,-90.7868178768362,-90.7867284973499,-90.7867261406502,-90.78684132902977,-90.78693409583573,-90.78695936412755,-90.78697824610673,-90.78702567523914,-90.78717189549104,-90.78736596959847,-90.78753497032801,-90.78760078076174,-90.78758774337335,-90.78762534066045,-90.78765446278167,-90.78770494730844,-90.78777315789726,-90.78782641591373,-90.78791712865348,-90.78797636017003,-90.78809512725769,-90.78811379375077,-90.78808558140462,-90.78788937805353,-90.78782094566974,-90.78771980923419,-90.78765299933259,-90.78764351492129,-90.78767837649984,-90.78776444322715,-90.78787101643941,-90.78797828419268,-90.78811179379048,-90.78821102290961,-90.78830545333039,-90.78839712818441,-90.78845641086308,-90.78849272179843,-90.78850652223699,-90.78850082767843,-90.78847564665686,-90.78832092668547,-90.78827060981797,-90.78818323318366,-90.78804914158445,-90.78789562148042,-90.78763557879287,-90.78742999228035,-90.78741198279739,-90.78706110384772,-90.7862634214413,-90.78600843064409,-90.78568929569182,-90.78537063656137,-90.78495576122518,-90.78387155865866,-90.78336109423439,-90.78240379408732,-90.78173299446449,-90.78122262507077,-90.78061674255909,-90.77988372732334,-90.77962813864346,-90.77854470488974,-90.77774755478819,-90.77746032262223,-90.77704515652199,-90.77685366929346,-90.77637556469696,-90.77560975652061,-90.77495601782829,-90.77364813762857,-90.77329708204283,-90.77285063458405,-90.77195721939241,-90.7699807780762,-90.76953460728726,-90.76867315524244,-90.76784516642236,-90.76625128442929,-90.76561337678258,-90.76532689686415,-90.76478526047326,-90.7644986816826,-90.76430740505691,-90.76402032187347,-90.76378121123389,-90.76362184615958,-90.76336682549723,-90.76312815011519,-90.76284200536205,-90.76252309553178,-90.76198149284023,-90.76172617740642,-90.76118549148107,-90.76064365044341,-90.76019771814805,-90.7597521345516,-90.75863853478639,-90.75820113434234,-90.75755737495309,-90.75709573416191,-90.75665027426516,-90.75598136768015,-90.75512947747448,-90.75445343950423,-90.75353865437664,-90.75277502290099,-90.75199667039738,-90.75151977876304,-90.75106006562102,-90.75071788027836,-90.75021954455276,-90.7490069922075,-90.74860838037175,-90.74828153364383,-90.74610434775644,-90.74540224188196,-90.74501068721177,-90.74476381024047,-90.74446063923385,-90.74413275874738,-90.7434942625096,-90.74290359686378,-90.74257649212109,-90.74220935881951,-90.74178635330026,-90.74080584858645,-90.73994395788057,-90.73956048319769,-90.73914588290464,-90.73861922503113,-90.73839606813583,-90.73804562534139,-90.73659370398208,-90.73566868394882,-90.73558108923312,-90.73511026341309,-90.73439262755734,-90.7341541786668,-90.73375588977005,-90.73276656077684,-90.73244720062596,-90.73199322186318,-90.7314344731634,-90.73130698356458,-90.73068404012193,-90.73049321265476,-90.72919285377054,-90.72857891713218,-90.72695072710724,-90.72683168432471,-90.72638431113151,-90.72623313188696,-90.725643157761,-90.7253398405384,-90.72513195784398,-90.72468528768033,-90.72445372247154,-90.72375218007129,-90.72282657356304,-90.72225222103654,-90.72217226852473,-90.72173389357417,-90.72107102235483,-90.72067986145177,-90.71943526675442,-90.71805383900411,-90.71771900676561,-90.71674518460532,-90.71612251708544,-90.71525243002247,-90.71496482226509,-90.71485301496784,-90.71445366131032,-90.71380681088459,-90.71297693008628,-90.7127531448112,-90.7124416050648,-90.71197911843218,-90.71058099678534,-90.71014256622232,-90.709799211909,-90.70882488606871,-90.70840237568879,-90.70769952027463,-90.7068214015687,-90.70562357220469,-90.70512027534294,-90.70444125684207,-90.70339602481616,-90.70282084859328,-90.70177517182091,-90.7014482225001,-90.70097713147408,-90.70001120895022,-90.69894190436931,-90.69789558501623,-90.69676239823403,-90.69640338293253,-90.6943992719891,-90.6935129842914,-90.69301865807128,-90.6928980332944,-90.69272272509747,-90.69252318978822,-90.69239583137593,-90.69218837261359,-90.69181289949323,-90.69042417280872,-90.69015230631872,-90.68989695686066,-90.68968963060678,-90.68909862569069,-90.68892318660747,-90.6887793765431,-90.68855552424226,-90.6882683697396,-90.688077059119,-90.68787744588462,-90.6877419668299,-90.68750237855514,-90.68721468916144,-90.68693545920472,-90.68683163352576,-90.68665544542762,-90.6864958463796,-90.685825554934,-90.68549013782177,-90.68519545413319,-90.68499509433296,-90.68469997329774,-90.68450805051577,-90.68437252809136,-90.68428468820083,-90.68418104626645,-90.68405306453322,-90.68387733057767,-90.68374213160233,-90.68343857249059,-90.68321516149224,-90.6830793543685,-90.68290431501843,-90.68284018362318,-90.68275993089327,-90.68265618844578,-90.68163486676269,-90.68147472575883,-90.68135522764364,-90.68122708434591,-90.68113945059132,-90.68102737068975,-90.68090053710823,-90.68075660226458,-90.68054056321837,-90.68014221020105,-90.67995049673144,-90.67976692312695,-90.67953551689807,-90.67904774844173,-90.67855305963943,-90.67713968756894,-90.67683684688184,-90.67671663102976,-90.67642170485587,-90.67574280016262,-90.67541547665689,-90.67519982278804,-90.67496062420413,-90.67469706170269,-90.67435365615106,-90.67392250654031,-90.67354750796638,-90.67307617289956,-90.67290854659558,-90.67274930928032,-90.67268538418797,-90.67255732647989,-90.67243718767124,-90.67230993813399,-90.67222961963455,-90.67213476443031,-90.67203073983434,-90.67191037603892,-90.67172691909943,-90.67132748593453,-90.67108006166123,-90.67090500025316,-90.67047356427632,-90.67021022105476,-90.66995398514941,-90.66959450750409,-90.66921153964631,-90.66908416352479,-90.6689400619008,-90.66857306763363,-90.66842904344156,-90.66822980738947,-90.66809387152621,-90.66791026900253,-90.6676783006472,-90.667551624872,-90.6674151415605,-90.6672077679912,-90.66680035083989,-90.6666256113345,-90.66642497893515,-90.66609847589851,-90.66588263012555,-90.66506024908534,-90.66483654970307,-90.66456502474165,-90.66379104355462,-90.66349519415381,-90.66313628670295,-90.66278485606615,-90.66228163820563,-90.66217800963452,-90.66204270933079,-90.66176306658861,-90.66149972986011,-90.661324048309,-90.66118813355536,-90.66102022136691,-90.66092479708641,-90.66074894967876,-90.66054924749874,-90.66040605506869,-90.66025434503692,-90.66006211258974,-90.6595434513018,-90.65928785113545,-90.65908037623143,-90.6589446031799,-90.65872090208249,-90.65849762404892,-90.6582267545089,-90.658114708412,-90.65799455840084,-90.65786678809377,-90.65775511830992,-90.65760334410759,-90.65743587783585,-90.65722043677128,-90.6570283421846,-90.65698843044234,-90.65681304347528,-90.65664511051925,-90.65651687027596,-90.65630909655577,-90.65627721210589,-90.65646907522799,-90.65647699256348,-90.65638119476031,-90.65609336349873,-90.6555899782648,-90.65565381400592,-90.6556220833584,-90.65547027780774,-90.65539103998594,-90.65537455468693,-90.65531898855265,-90.65503080179505,-90.65479196853437,-90.65449558966688,-90.65419213651998,-90.65420831695629,-90.6541209986348,-90.65384853136224,-90.65373723390435,-90.65370518216623,-90.65370495933371,-90.6538571527425,-90.65411181458367,-90.65420773052152,-90.65421567831109,-90.65415153991472,-90.65382483925168,-90.65365690992093,-90.65358457411867,-90.65297738499737,-90.65274557590746,-90.65249041529457,-90.65225809386989,-90.65205820416199,-90.65199479130038,-90.65200271047753,-90.65208229415249,-90.65215405709188,-90.65224187066731,-90.65239320113929,-90.65260946047505,-90.65284046624814,-90.65297682648593,-90.65300866438649,-90.65300854884609,-90.65282445451402,-90.65290330698164,-90.65279148554752,-90.65273624082,-90.6527117349153,-90.65284726458925,-90.65299012516206,-90.65296688209189,-90.65288664793498,-90.6528311070888,-90.6528391317855,-90.65289458964668,-90.65311823308426,-90.65327778488509,-90.65339741928472,-90.65367734253378,-90.65399656186432,-90.65421995726746,-90.65443494909594,-90.65477886918102,-90.65490600582629,-90.65512177029834,-90.65592762649278,-90.65623959904559,-90.65728521903279,-90.6574692799467,-90.65798806076889,-90.65812405634814,-90.65838743860067,-90.65906620390039,-90.659329815679,-90.65949732209126,-90.66010482043377,-90.66027186086292,-90.66047925314444,-90.66065588607928,-90.66081522510922,-90.66100734475317,-90.66108700912451,-90.66116663812225,-90.66134190814822,-90.66160552797369,-90.66231650363301,-90.66269160026242,-90.66297111164238,-90.66312322461334,-90.66374599432214,-90.66427209429999,-90.66436812774866,-90.66447972031527,-90.66458474995734,-90.66506325793412,-90.66527891612003,-90.66556678472229,-90.66629311926847,-90.66650926859477,-90.6668207899301,-90.66733187879214,-90.66828957434871,-90.6688484957825,-90.66936759715155,-90.66971095023338,-90.67096442538055,-90.67145073839318,-90.67333531068444,-90.67411701318271,-90.67424506695026,-90.67450892213873,-90.67532263432149,-90.67576189413437,-90.67598516928612,-90.67616066382807,-90.6762167318099,-90.67637678268852,-90.67653587222757,-90.67658341260956,-90.67667116588403,-90.67672741911534,-90.67679915279729,-90.67682230798837,-90.67670312152399,-90.67648683321688,-90.67624727846659,-90.6760950375573,-90.67589535672433,-90.67566315624762,-90.67528828656488,-90.67511183377123,-90.67472840714547,-90.674408411938,-90.67384925479506,-90.67377690308278,-90.67352630707502,-90.6732740757782,-90.67305797021397,-90.6705339836234,-90.66939088597952,-90.66915939124786,-90.66853597276034,-90.66791323880001,-90.66706576885429,-90.66685815120172,-90.66637141157385,-90.66603585665186,-90.66537268233522,-90.66494105888921,-90.66426116656197,-90.66316696589175,-90.66271191007009,-90.66152974983302,-90.66120164074978,-90.660970099927,-90.66070662788906,-90.66009925409729,-90.659307982912,-90.65857296857813,-90.65745447132856,-90.65701522721021,-90.65660790420897,-90.65623989332572,-90.65569705819195,-90.65413852895288,-90.6539788056463,-90.65385086523624,-90.65304345881539,-90.65295561902127,-90.65258051965245,-90.6519333221386,-90.65161338467269,-90.65072608347344,-90.65031917817559,-90.64971222667094,-90.64842523036592,-90.64751463480088,-90.64654806216916,-90.64614787253997,-90.64583673473349,-90.64556482261266,-90.64523732465194,-90.64391045973365,-90.64250393984638,-90.64244852096226,-90.64117783258565,-90.64038639854851,-90.6388844526297,-90.63870829017576,-90.63815738165728,-90.63742164216373,-90.63686192143854,-90.63678212076942,-90.63603900898967,-90.63431984093198,-90.63387186160027,-90.63368053931313,-90.63267278267034,-90.63211381565846,-90.63107509614552,-90.63033949255339,-90.63003565484861,-90.62938029119528,-90.6291398873457,-90.6287640049826,-90.62845248330434,-90.62811662963698,-90.62728540127928,-90.62518388902568,-90.62491906838791,-90.62479974777003,-90.62471946806043,-90.62434394056915,-90.62320971518049,-90.62117242152385,-90.62072534975802,-90.61978272495855,-90.61967963578653,-90.6194550737456,-90.61834568133622,-90.61801751671233,-90.61725911679683,-90.61626788341701,-90.6161886689891,-90.61470262679809,-90.61356816168848,-90.61303276925405,-90.61204990792325,-90.6111795097859,-90.61078753653629,-90.61065129601519,-90.61040360842038,-90.6102116216003,-90.61005180919102,-90.60801493815305,-90.60715959528257,-90.60589680259486,-90.60515358640185,-90.60385988202478,-90.60356418573915,-90.6034679148601,-90.60334806732664,-90.60303614267083,-90.60274038798237,-90.60209322275385,-90.60073559813506,-90.59832237070945,-90.59745075652852,-90.59651603380532,-90.59459032062632,-90.59318345462651,-90.59286467414438,-90.59216107964099,-90.59160921504073,-90.5898751850646,-90.58907640694461,-90.58720682934637,-90.5863439027838,-90.58500957485361,-90.58460222636842,-90.58240434732745,-90.57927233226978,-90.57896096615124,-90.57840178134811,-90.57824120573096,-90.57804179283819,-90.57791386888344,-90.5777935425442,-90.57773050775135,-90.57758611782761,-90.57747488192287,-90.57728266535513,-90.57675512791434,-90.57649962715053,-90.57561281027873,-90.57514084232764,-90.57486980197265,-90.57456599422653,-90.57415882675713,-90.57356674789544,-90.57237590944668,-90.57117746064097,-90.57083428280416,-90.57033873921743,-90.57014604766347,-90.5695387392483,-90.56922760066612,-90.56906780198756,-90.56889197179055,-90.56882788379325,-90.56882012188889,-90.56885176210525,-90.56893214764699,-90.56913187722529,-90.56930753409095,-90.5695233859111,-90.56972287040911,-90.57011460624832,-90.57087392704159,-90.57136204793008,-90.57192927405418,-90.57268788328146,-90.57324037051583,-90.57396717787087,-90.57475832182028,-90.57604545162702,-90.57646169816587,-90.57684512763531,-90.57757270469801,-90.58033803870231,-90.5812093907423,-90.58316031738467,-90.58439122101653,-90.58471930703027,-90.58692597369208,-90.5872782983303,-90.58758192953175,-90.58806931956434,-90.58922101096427,-90.59058081904789,-90.5913799700769,-90.59336425036058,-90.59380419568792,-90.5955327866031,-90.59768470589749,-90.59862826958535,-90.59893231011915,-90.59914839486309,-90.59939637044111,-90.59958823500649,-90.60051635044825,-90.60070792166881,-90.60192404306507,-90.60212346280183,-90.60226788553933,-90.60265985198275,-90.60278781915389,-90.60282769056053,-90.6028359352736,-90.60266003283628,-90.60261187492002,-90.60262057645501,-90.60270798420073,-90.60296438584189,-90.60302011116305,-90.60312359772674,-90.60324417744252,-90.6034200849067,-90.60357164786696,-90.60404404322597,-90.60422774219025,-90.60436335763914,-90.60487537657028,-90.60507562075995,-90.60585871660687,-90.60625877562111,-90.60661045958173,-90.60694675280087,-90.60701843395073,-90.60705836112136,-90.60709854619805,-90.6071787330638,-90.60733044467317,-90.6076663832855,-90.60812994734283,-90.60940157903228,-90.60965707038081,-90.61055304940871,-90.61135228676584,-90.611688529651,-90.61233636776906,-90.6127675726262,-90.61296015087775],"lat":[46.87403585648782,46.8741913818293,46.87434428053542,46.87444096445531,46.87450689262516,46.87451222604683,46.87446265780311,46.87442973597836,46.87430998345805,46.87410205476414,46.8739616664592,46.87389720225941,46.87385350235428,46.87378903605534,46.87366789370918,46.87324388136756,46.87294811417987,46.87241979175828,46.8719449452766,46.87147101595685,46.87129064321016,46.87107547738943,46.87077398701967,46.87051504020361,46.86994608090541,46.86976828970376,46.86949634246263,46.8693878661992,46.86844221777066,46.86832794582353,46.86815915969232,46.86801784858775,46.86773296031491,46.86737457496495,46.86705398934912,46.86679283384358,46.86663944582301,46.86646025952182,46.86623874112489,46.86608155081235,46.86571020952736,46.86561834101639,46.86544547718159,46.86499593058135,46.86486543922851,46.86453032766118,46.86446677461475,46.86434487295056,46.86423055228851,46.86406673683051,46.86391508549787,46.86386688032678,46.86380021574192,46.8637488874999,46.86363906572518,46.86336811473004,46.86301128890543,46.86279840705652,46.86258642570925,46.86185954065213,46.86177443541115,46.8616840139177,46.86157286019834,46.86124745622238,46.86095585574387,46.86059122871457,46.86038207114431,46.86026182832282,46.86013897647845,46.85974402122935,46.85939830240343,46.85914393748155,46.85801462081651,46.85742136985979,46.85679444252037,46.85647095131437,46.85601950362147,46.85549515121858,46.85528311872041,46.85508547898779,46.85488295587319,46.85436229700329,46.8541980447518,46.85383648926017,46.85370510380208,46.85337465632134,46.85284515227053,46.85248756527072,46.85164724336975,46.85096388663907,46.8507356401715,46.85063124836899,46.85043122363555,46.84973558422716,46.84944443158476,46.84913783510656,46.84893436229833,46.84866863699432,46.8484850445131,46.84822885482301,46.84790975457742,46.84775846316027,46.84759628799512,46.84725827634448,46.84701425462893,46.84687063519484,46.8463564775276,46.84589093822733,46.84577294990357,46.8455397609099,46.8453398166891,46.84516375488707,46.84501298887167,46.84433262368621,46.84417773977906,46.84401383019635,46.84389536156978,46.84358195632153,46.84343145421595,46.84278779706904,46.84263424492838,46.84257966497986,46.84248098196583,46.84244312214533,46.84208327387423,46.8413615750561,46.84082011600919,46.84070304824901,46.84062282881145,46.8403947912573,46.84026515919754,46.83968463422171,46.83955846661367,46.83920210928934,46.83897279025957,46.83834050029431,46.83789727643421,46.83746622756767,46.83730134139581,46.83697480377849,46.83664114173721,46.8364664564853,46.83591634634475,46.8354797911498,46.8351212739444,46.83498038100624,46.83484028532165,46.83439865269738,46.83372043852427,46.83345582445858,46.83334223897636,46.83289387764165,46.83253873092667,46.83209804639421,46.83199931518807,46.83181117559697,46.83171636692989,46.83161763713257,46.83150445597764,46.83123006619078,46.83123183756096,46.83113823180949,46.83090066782363,46.83082123566992,46.83054013507256,46.83029742099026,46.82980655978724,46.82919141003264,46.82905555507538,46.82882796037033,46.82867995397145,46.82822348429576,46.82797468491752,46.82767550520373,46.82733062508097,46.82715714410363,46.82674541220005,46.82658055674933,46.82573716879121,46.82544156063764,46.8249249571809,46.82458925051895,46.82452031639449,46.82439611282673,46.82436937741581,46.82429445209951,46.82399709944984,46.82393669357666,46.8238865860255,46.82379142973774,46.82376023976656,46.82358513824366,46.82329350675588,46.82308990152587,46.82293618629077,46.82265312956849,46.82241685509301,46.8221850380413,46.82206339209509,46.82199718765819,46.82146153799155,46.82140112311977,46.82114208175484,46.82083731185622,46.82064081885476,46.82051667608557,46.81995153024237,46.81987113772579,46.81974410615685,46.81967872228119,46.81933068270824,46.81924005546067,46.81900930220495,46.81885485372099,46.81877872315613,46.8186305268898,46.81849847597135,46.8181661102564,46.81809989900088,46.8174445492399,46.81729082591832,46.81719353592579,46.81709096533991,46.81703366224945,46.8169889459806,46.81674018652156,46.8165138153304,46.81588644666034,46.81568817970015,46.81563364596795,46.81555465623458,46.8149185594033,46.81472304651183,46.81466634646463,46.81460996205527,46.81450366514501,46.81443791636619,46.81438041917296,46.81434207660165,46.81419831875812,46.81409196941598,46.8139006487101,46.81378980347817,46.8136387383874,46.81353464564221,46.81335483361466,46.81325257596617,46.81320768232898,46.81315450668347,46.81303324157778,46.8128259722173,46.81270663876048,46.81253086519377,46.81232824114552,46.81216321379931,46.81204014606828,46.81195855023783,46.8117480098316,46.81136061341947,46.81114806699391,46.81082397359429,46.81060452811435,46.81047256349537,46.81015285302988,46.80991483611859,46.80983292321454,46.80954070252383,46.80928365659385,46.80906020667922,46.80882944914893,46.80841099118023,46.80816883648084,46.80784445519174,46.80763793700279,46.80723631422877,46.80694384579748,46.80670578113952,46.80620613262935,46.805876602215,46.80502799324768,46.8047858871764,46.80446856880724,46.80389162106445,46.8036439991189,46.80306223865588,46.80222621366341,46.80157149198112,46.80129267612559,46.80107240264905,46.8007826461465,46.80049876712308,46.80007877621074,46.79999349118162,46.79967242459423,46.79961080515246,46.79955101775341,46.79955244429738,46.79971633668818,46.79976877511884,46.79976886228793,46.7998496595544,46.79983727108811,46.79979640590577,46.79968129662672,46.79966066949243,46.7994634796848,46.79934049398653,46.79926527620287,46.79903211758382,46.79886967342977,46.79877651158023,46.79867888109098,46.79836964684603,46.79827710865874,46.79821442921723,46.79818065637699,46.79820049719214,46.7982303404889,46.79822696224998,46.79827365859644,46.79835176595143,46.79838961282349,46.79832490084551,46.79833246548905,46.79840975904756,46.79835328257847,46.79834973339285,46.79834924789042,46.79830497297823,46.79827068657472,46.79810390256466,46.79770524842118,46.79752332564323,46.79732449218804,46.79709741353558,46.79697599973717,46.79671633832825,46.79656746632281,46.7961535504787,46.79591618694766,46.79540961246925,46.79435172863317,46.79388983833761,46.79362540788136,46.79319056706083,46.79298109179214,46.79273270298602,46.79202187308673,46.79147622883891,46.79091929006545,46.7906216049294,46.79026746948271,46.79015111573158,46.78999382248528,46.7899464778943,46.7899126034235,46.78974617786417,46.78965670195715,46.78961663313941,46.78958305739639,46.78952224645595,46.78940701015637,46.78932372096958,46.78921897578073,46.7890195030759,46.78893603536304,46.78892495285021,46.78894565898236,46.78902134935473,46.78889487321915,46.78882686900408,46.78883781060168,46.78891467978527,46.78891964649645,46.78876477151837,46.788764462438,46.7888295482113,46.78882361310841,46.78851362156237,46.78834092309363,46.78830738949204,46.78824641509519,46.78817985623039,46.78797559722582,46.7876948459237,46.7870995143589,46.78687867520645,46.78660832339976,46.786508797092,46.7863602876747,46.78618925172214,46.78605742073492,46.7859691874536,46.78580366068432,46.78569370910631,46.7854957752382,46.78534190304367,46.78525366501364,46.78505500713766,46.7849290205457,46.7846714090274,46.78447398377303,46.78411064198029,46.78378743295381,46.78373291487564,46.78365606807333,46.78348659299726,46.78331099213393,46.78306936851116,46.78249839226658,46.78239941588522,46.78224536691187,46.7820474529141,46.78189380018404,46.78171860061885,46.7814769648498,46.7811263060738,46.78057819010648,46.78003053153542,46.77969055067656,46.77919658613639,46.77920802080091,46.77917613031117,46.779143144541,46.77903976960563,46.77892494177721,46.77879352672672,46.77842668334682,46.77745678607819,46.77702971479851,46.77687637669173,46.77644862493445,46.77528711435767,46.77461840032106,46.77438822626095,46.77298384881749,46.77280456615848,46.77252443407206,46.77249025970657,46.77238047538646,46.77231478171424,46.77183172600669,46.77130483406085,46.77070639306275,46.7702186041786,46.76997719291779,46.76953781180744,46.76901091957874,46.76837370321621,46.76795621420803,46.76778035629329,46.76758241177728,46.76683377976734,46.76663562052917,46.76619521867047,46.76586535855311,46.76522743118979,46.76445738399819,46.76399535766083,46.76348914201545,46.76227895873248,46.76168468250738,46.76144243586102,46.76128846371881,46.76082665003082,46.76049676375941,46.75999101016113,46.75957314748631,46.75928788147279,46.75898045295462,46.7587392142887,46.75838799637452,46.75797152461314,46.75705587550642,46.7569410601449,46.75670032928631,46.75645940176715,46.75617405427234,46.75584462222069,46.75516439114562,46.75506770459072,46.7550463442259,46.75483575993069,46.75463095031172,46.7545396630298,46.75434717505141,46.75423210810309,46.7540173713374,46.75382930293126,46.75360540805964,46.75357289636431,46.75343631274581,46.75334887487638,46.75332561410921,46.7533083914019,46.75330004935853,46.75330474006374,46.75335248807703,46.75342969944333,46.75371798180734,46.75379153498031,46.75379284974879,46.75375033199765,46.75374349268,46.75376668593807,46.75381495385081,46.75389432450777,46.75398407882867,46.75407797776356,46.75414698347464,46.754179433893,46.75418751175131,46.75417389423259,46.75413949578277,46.75408486865255,46.75402540425254,46.75396215881009,46.75389850457692,46.75381642630414,46.75371704805273,46.75337670556066,46.75315319727135,46.75302556214669,46.75289318463174,46.75277500259683,46.752619305416,46.75252229075095,46.75252185260927,46.75250626642834,46.75251906090831,46.75254162467484,46.75254213001642,46.75257581472006,46.75257697199451,46.75266708571981,46.75267901816363,46.75260400992388,46.75250679175777,46.75249677963102,46.75253128677695,46.75265889789206,46.75272532027419,46.75289805845845,46.75297659369053,46.75297686046966,46.75290093390323,46.75290111349047,46.75300109892132,46.75306872440955,46.7530478410994,46.75314949561156,46.75315017914289,46.75311832417823,46.75321884692723,46.75355219586286,46.75359738139223,46.75373084704361,46.7539737596205,46.75425160510318,46.75439592756256,46.7544788365587,46.75477605596269,46.75488089912174,46.7549254840604,46.75493696279469,46.75492618505772,46.75497055768419,46.75510837212543,46.75527363623006,46.75543865542446,46.75554370913142,46.75567105458715,46.75575936885728,46.75606838024316,46.7562665904702,46.75647653612243,46.75674047082359,46.75745654465834,46.75780872518234,46.75838668751237,46.75873339812787,46.75900856892093,46.75931221566465,46.7597582350587,46.76031445954612,46.76094761762606,46.76156346222299,46.76232844893574,46.76287827875007,46.76351630531834,46.76389538680476,46.76443523096889,46.76562094306671,46.76594639861494,46.76616451554869,46.76712083311296,46.76746231137327,46.76758972464742,46.76764308055317,46.76765067676612,46.76761737451857,46.7674966583977,46.76743131652339,46.76742443679054,46.76745325528584,46.76752630582596,46.76780375647319,46.76810630603885,46.76819764982641,46.76834712988367,46.76868293663176,46.76888573142266,46.76914840613397,46.77036646163229,46.77120764861046,46.77132745152718,46.77179955828846,46.77260396229234,46.77300877010184,46.77333867022482,46.77439453472274,46.77481110595244,46.77517116115772,46.77574505648968,46.77579199288586,46.7762206217369,46.77639675878204,46.77743714305558,46.77780776770788,46.77919274411204,46.77932061418566,46.7797211028493,46.77992510581659,46.78049860901085,46.78074463473933,46.78093380662753,46.78138828238922,46.7815821055232,46.78223392188318,46.78290851717433,46.7832164294776,46.78326868044469,46.78348967207501,46.78379194910063,46.78405426247947,46.78463691203795,46.78515347852216,46.78525062981839,46.78550983746862,46.78563691172771,46.78572334259214,46.78570826699985,46.78567465618548,46.78559953304717,46.78541515104421,46.78529095952924,46.78524117152635,46.78514974527364,46.78503675555444,46.78478841049653,46.78466739335461,46.78461552932455,46.78433921915006,46.78424509314336,46.78400196582989,46.78381784823464,46.78347876890422,46.7832793938526,46.7830726577266,46.78262856626012,46.78244143091486,46.78215031048261,46.78206738693286,46.78201290387513,46.78193557307443,46.78193648426292,46.7820682966143,46.78213144590854,46.78219606206602,46.78247033966653,46.78263263734399,46.78264969292756,46.78262904928781,46.782558115441,46.78251376774959,46.78254265946831,46.78264628067421,46.7827694742795,46.78330824887623,46.78337006835145,46.78337892438643,46.78336554953729,46.78324987003388,46.78323292883924,46.78328835172965,46.78342355725262,46.78357095962838,46.78362554377591,46.78363911628367,46.78360955931119,46.78350582348195,46.78345074214559,46.78344904492433,46.78342941999899,46.78335342180675,46.78339093672239,46.78376898283059,46.78385648469011,46.78389536947479,46.78388250890114,46.78382240538256,46.78376449663975,46.7836989393175,46.783616222856,46.78354653663438,46.78349443053521,46.78348648237251,46.78351091058461,46.78365727411114,46.78382846680006,46.78390239298236,46.78391693911769,46.78396063061273,46.7840893467173,46.78414114990419,46.78415173624239,46.78421174670306,46.78431257376406,46.78437745371844,46.7843757270785,46.78435108324152,46.78435746395269,46.78440387726765,46.78438153805988,46.78457626539143,46.78472982673929,46.78484734158635,46.78493758048548,46.78515252146124,46.78527300762039,46.78591918843805,46.78599466406513,46.78597399974646,46.78586437742835,46.78618392287874,46.78629890884719,46.78643853986636,46.78649619545057,46.78650449967819,46.78647952723422,46.78654280857607,46.78664344790941,46.78680032973334,46.78681931282011,46.78678875247103,46.78675144484077,46.78662733438214,46.7865802326126,46.78658660198645,46.78667931684728,46.78672261706816,46.78672041826108,46.78675374800311,46.78684931559772,46.78709294846293,46.78721420103155,46.7872281644367,46.7871699467802,46.78719623677137,46.78726748014158,46.78739951030707,46.78758510679043,46.78761453589968,46.78761594274048,46.78750503101457,46.78747944098743,46.787525036757,46.78765688089963,46.78777494069253,46.78785559716776,46.78787546186101,46.78786388408668,46.78781447280485,46.78761267880229,46.78758670096843,46.78761880201856,46.78750371521111,46.78753084472833,46.78784271893392,46.78789689091989,46.78789115690168,46.78774491204217,46.78772525358296,46.78777176907499,46.78776030508725,46.7876912213608,46.78772107288284,46.78783940218512,46.78790570225655,46.78806696132536,46.78813097078566,46.78813231751896,46.78806185634253,46.78805959655077,46.78811010637934,46.78821868806066,46.78832806622408,46.78841049271801,46.78846053516914,46.78846802660285,46.78852574390833,46.78853481134016,46.78851422220449,46.78840133333249,46.78835649670351,46.78833724416966,46.78834857612041,46.78840044880798,46.78853279648306,46.78857505851337,46.78858548930412,46.78861851420197,46.78871311809887,46.78887564206381,46.78896023871107,46.78915022542927,46.78938066882066,46.78950851512479,46.78959407309883,46.78966568641635,46.78985413179623,46.78996657559042,46.79013586006695,46.79037261196289,46.79056054095948,46.79069235165753,46.7907768997161,46.79075133432234,46.79076753542348,46.7908936187123,46.79093724323283,46.79104407117318,46.79130416393288,46.79141103738536,46.79144089097232,46.79159378431844,46.79168652759077,46.79180732262274,46.79188107563844,46.79193919068243,46.79205617696621,46.79218073620022,46.79234801597213,46.79245770624327,46.7925392131402,46.79261888567114,46.7927922983345,46.79292374224002,46.79300290103061,46.79348107215331,46.79378217549919,46.79428533264196,46.79457800398703,46.79470850170297,46.79481516884395,46.79492817428392,46.79504189676284,46.79508423333981,46.79509948267027,46.79508455901466,46.79508895090262,46.79516131451359,46.79526290018885,46.79532233664276,46.79551581844904,46.79603825542333,46.79632802912773,46.79639334722426,46.79646396798189,46.79670652239733,46.79714557952603,46.79751316790334,46.79765672211072,46.79772692404317,46.79780710694551,46.79786105504036,46.79794341991422,46.79801526348702,46.79803628523955,46.79807497481609,46.79822917537989,46.79848326236399,46.79863609720498,46.79870348391072,46.79876507478411,46.7989831373355,46.79918157161579,46.79944524098103,46.79950588522185,46.79954938006593,46.79959837686442,46.79979337786647,46.79979653580188,46.79973427516734,46.79971630557667,46.79974009924506,46.79970763591687,46.7997558799895,46.79971892054996,46.79963279509037,46.79960984025245,46.79961285720226,46.79968430347621,46.79973558898303,46.79975031485552,46.79974986123445,46.79967409760698,46.79954455822855,46.7995429514617,46.79959420184414,46.79964225414276,46.80003291719955,46.80042132828134,46.80033808966716,46.80008827958951,46.79993749623794,46.79958712530114,46.79947450883712,46.79927372990903,46.79889660156545,46.79882447409251,46.79878160145068,46.79878312389063,46.79886977687965,46.7989306301018,46.79904964722027,46.79919612295547,46.79994977039316,46.80032881768516,46.80206357448517,46.80300612854713,46.80322472738273,46.80362644389702,46.80538884879833,46.8062884157431,46.80691422255509,46.80745313299008,46.80771096389188,46.80812791344568,46.80872991410507,46.80958116953188,46.81004635767125,46.81155956152025,46.81224925420465,46.81331157514725,46.81360643699514,46.8148799630551,46.81557262106362,46.81617252440321,46.81681151492523,46.81727520957428,46.81786124169345,46.81826274253928,46.81885331476238,46.81924272783119,46.81967235067435,46.81978357910132,46.8199245407232,46.8200660728581,46.82011515129226,46.82107205671394,46.82139540419161,46.8214265673617,46.82143639603644,46.82166669506329,46.82204509949895,46.82218523451028,46.82238211107094,46.82244705798405,46.82262246008953,46.8227712039396,46.82298719194193,46.82342830484353,46.8235715506217,46.8238579238569,46.82389637938142,46.82389152926088,46.82392229791325,46.82404053729863,46.82416377699998,46.82436486224525,46.82463395383822,46.82476527628167,46.82486041513553,46.82492045733602,46.82505798913373,46.82556579665828,46.82563870146365,46.82566361833064,46.82591232742981,46.82593307768718,46.82598358572928,46.82613238516958,46.82617076359464,46.82631923548234,46.82638285205769,46.8264380449509,46.82650158744479,46.82662204304531,46.82668768930055,46.82676531355298,46.82688912207418,46.82707232142375,46.82716472128107,46.82742529557157,46.82781059866128,46.82783621854281,46.82820611787424,46.82853170523548,46.82906316902785,46.82910014850464,46.82925508023784,46.82954602511354,46.82971899691362,46.82976218914467,46.83008915877728,46.83086755846601,46.83110176585937,46.83117425578125,46.83168434141404,46.83192478008946,46.83231240814829,46.83262186947532,46.83271015738995,46.83294380045857,46.83306042434309,46.8332959026946,46.83342866175604,46.833548055113,46.83374215655158,46.83450451343491,46.83460213557911,46.83463090843156,46.83466959536044,46.83479706773672,46.83522788839097,46.83591895750088,46.83606255582713,46.83626789359216,46.83628363627699,46.83635571901259,46.83681392056021,46.83692874015154,46.83712012896937,46.83734257235469,46.83736774613302,46.83771938541592,46.8379611361952,46.83805343315223,46.83818580539718,46.83826188487495,46.83828085027731,46.83826470408512,46.83821428057041,46.83812475186063,46.83812616699318,46.83847953029325,46.83854706114427,46.83860606230881,46.83858637144353,46.83870344380435,46.83868362719171,46.83865039039955,46.83863414848032,46.83855592678081,46.83856760756785,46.83863513006224,46.83882730909806,46.83921284527873,46.83929332916559,46.83933701193668,46.83937740048848,46.83945613280236,46.83949884211775,46.83954241787613,46.83955764702093,46.83947604337871,46.83947284305403,46.83955050570832,46.83964042016877,46.83979629276251,46.83987374358097,46.84044345102324,46.84112021008885,46.84124439652257,46.84161056043178,46.84173285994181,46.84194028165436,46.84212653464309,46.84237123955504,46.84260834304031,46.84297916105324,46.84319288319475,46.84342276872207,46.84391531326421,46.84420681817455,46.84490814458394,46.84519511302664,46.84533764543787,46.84544378648346,46.84554313126416,46.84559840683009,46.8457753473551,46.84604680609957,46.84615200652856,46.84626752858583,46.84633991581139,46.84670065156381,46.84696823350466,46.8471675699968,46.84747890942527,46.84769801886779,46.84785553864487,46.84813491454818,46.84841123669015,46.84888775491319,46.84910285717856,46.84924239394542,46.84934601378133,46.84948917089428,46.8497390451515,46.84984853863456,46.84999587370857,46.85025474383099,46.85051857448941,46.85090751414757,46.85121682292398,46.85163949391295,46.85181006766089,46.85193974702433,46.85224316982368,46.85353910297653,46.85398069361053,46.85516033218808,46.85597802949198,46.85617883005938,46.85775080291685,46.85799196797836,46.85824125850749,46.85872414141435,46.85970698388801,46.86078379616141,46.86153895823276,46.863654146355,46.86421261665471,46.86658443655588,46.8687352327707,46.86955146018297,46.86986370823135,46.87012017207309,46.87036859618343,46.87051214246387,46.8710039067862,46.87112045188877,46.87210001758825,46.87222101724703,46.87226468911667,46.87225925087282,46.87229794602666,46.87237985473008,46.87245686242333,46.87264170556135,46.872735326622,46.87281683499455,46.87285911725386,46.87290501370988,46.87293734147842,46.87309708892383,46.87317182276712,46.87320689105702,46.87319203168757,46.87304443050968,46.87304346102337,46.87306917963014,46.87330944676824,46.87343043873184,46.87374407179563,46.87383757187986,46.87385876553405,46.87382492491908,46.87385379202243,46.8739761925682,46.87404853476834,46.87410435322271,46.87413897875029,46.87410963793959,46.87401549787799,46.87386700183961,46.8738678920524,46.87397166747061,46.87411475945317,46.87411240116742,46.8740318840495,46.87401382711626,46.87403585648782]}],[{"lng":[-90.52693403074446,-90.52728605246449,-90.52824710445719,-90.5294008060943,-90.52959306197319,-90.52975332628542,-90.53003313262658,-90.5303294862031,-90.53079464450248,-90.53087526518532,-90.53099524353689,-90.53113966759078,-90.53246927798986,-90.53280617346331,-90.53296670854118,-90.53394379980378,-90.53406441408247,-90.53431222842454,-90.53529788872386,-90.53601824969915,-90.53665086154872,-90.53730823063295,-90.53825317405665,-90.53873385655365,-90.53927850111913,-90.53950266081213,-90.54024749913674,-90.54058446411511,-90.54110518259637,-90.54197830400574,-90.54234663245843,-90.54261881787863,-90.54285137293652,-90.54310748312794,-90.54350875556548,-90.54419758980335,-90.5446382614732,-90.54524691582868,-90.54587995037906,-90.54742590655792,-90.54793095253123,-90.54829056563307,-90.54948430602089,-90.54980451474239,-90.55037310107178,-90.5506137067408,-90.55128608133955,-90.55203915885056,-90.55251192243423,-90.55309638521388,-90.55371297415284,-90.55461009695622,-90.55659652678209,-90.55689313965195,-90.55735723047447,-90.55800632822277,-90.55911931774322,-90.55940028593361,-90.56064897877479,-90.56096923490951,-90.56132140937206,-90.5622668032307,-90.56271590604383,-90.56347663359614,-90.56437307921196,-90.56466141846261,-90.56560670082239,-90.56618350383197,-90.56642405579893,-90.56802571088718,-90.56888182423496,-90.5692270384353,-90.56997131478748,-90.57048368112176,-90.57095635227736,-90.57130110979496,-90.57269457136644,-90.57360723568679,-90.57525744590862,-90.57646643039303,-90.57709092544536,-90.57933315372203,-90.58128717451882,-90.58171244872122,-90.58252064212778,-90.58323314759072,-90.58382597871024,-90.58456269064274,-90.584875569248,-90.58534805397096,-90.58579640966529,-90.58633286059907,-90.58754942446824,-90.58851044556802,-90.58898339067713,-90.59068057243466,-90.59179411060622,-90.59315503283972,-90.59405241168734,-90.59561320497744,-90.5974228123209,-90.59778305703738,-90.59855979925922,-90.599208375407,-90.59936094551539,-90.60004926210169,-90.60096954393001,-90.60189065388049,-90.60294671113674,-90.60342736321952,-90.60394811386828,-90.60454851172885,-90.60482821437687,-90.60649312666661,-90.60746981593802,-90.60906201157417,-90.6100710265011,-90.61091111158284,-90.61131122276993,-90.61145570063265,-90.61216792886819,-90.61339232683733,-90.61387277871169,-90.61395256315231,-90.61423303587624,-90.61440892731399,-90.61544163260882,-90.6173384883505,-90.6189800307521,-90.61967619405078,-90.6200052399835,-90.62104558437251,-90.6214701685311,-90.62182231309083,-90.62333520501866,-90.62373667709996,-90.62416036612144,-90.62441696108486,-90.62471266022534,-90.62518533287343,-90.62559400462447,-90.62718732226162,-90.62801994839144,-90.62850040496201,-90.62901235896722,-90.629180635811,-90.62978147130555,-90.63008598985317,-90.63071860904977,-90.6311589905245,-90.63135130067823,-90.63148801780683,-90.63185553079906,-90.63256033486908,-90.63287305476014,-90.63363423577094,-90.63419407634026,-90.63455498761199,-90.63472294848401,-90.63499485091903,-90.63548370242454,-90.63603642553088,-90.63654903120047,-90.63677296429637,-90.63712641228497,-90.63752667848716,-90.63774287312964,-90.63784692684756,-90.63801539731691,-90.63807225627616,-90.63822521862865,-90.63824929586222,-90.63829763958343,-90.63977950694172,-90.64006774294302,-90.64023630881177,-90.64031624852431,-90.64043724628814,-90.64078099645585,-90.64094167255064,-90.64110959214159,-90.64153484773699,-90.64195976820402,-90.64269623925499,-90.64291286599088,-90.64333017778564,-90.64334597730925,-90.64331385414806,-90.64335391635267,-90.64377055580313,-90.64409084957221,-90.6442669078514,-90.6444036437484,-90.64492456473442,-90.64523726347657,-90.64546982160969,-90.64610214355673,-90.64690343716649,-90.64756068984018,-90.6479528594123,-90.64816918982703,-90.64847346380115,-90.64906639004222,-90.64948285694418,-90.65042845777887,-90.6509082641019,-90.65106927618001,-90.65159746060081,-90.65205423665196,-90.65215011923094,-90.6521742655403,-90.65215801355941,-90.65220638599841,-90.65234198288444,-90.65255039793468,-90.65281488568448,-90.65369635197649,-90.65426480379233,-90.65442527503608,-90.65456950025715,-90.6548105940394,-90.65479520500134,-90.65470711903671,-90.6546435392584,-90.65403562568227,-90.65391531764035,-90.65355512724238,-90.65342762221893,-90.65330003352169,-90.65310780602906,-90.65280389712966,-90.65259545070705,-90.65238801174472,-90.6519085911076,-90.65074903394044,-90.65021358700949,-90.6497815071998,-90.64897386058941,-90.64799018975779,-90.64729450727648,-90.64711802268864,-90.64675808460133,-90.64658227011253,-90.64611860174617,-90.64576690534169,-90.64519081705815,-90.64479943191104,-90.64450333343898,-90.64414377252216,-90.64359234517026,-90.64334433421156,-90.64274389815091,-90.64100786190753,-90.64074402488075,-90.63908818961254,-90.63893618311516,-90.63862404008906,-90.63831988744232,-90.63756804183271,-90.63720807200974,-90.6364796299313,-90.63618386877829,-90.63589551154128,-90.63527970058452,-90.6348389770077,-90.63420763899386,-90.63400754793503,-90.63338350108057,-90.6332152220607,-90.63304788055872,-90.63199864352093,-90.63171080896922,-90.63136662136166,-90.63020632792731,-90.62947780751263,-90.62918124923435,-90.62855732111306,-90.62758093242404,-90.62704493842119,-90.62589220559892,-90.62518596961503,-90.6242890036209,-90.62417639529635,-90.62225683588171,-90.62216136285733,-90.62203320166311,-90.62190508651862,-90.62155293406076,-90.62085741380118,-90.62002559177567,-90.61935334543705,-90.61899338942033,-90.61853763758313,-90.61839335900632,-90.61820947027803,-90.61812183835498,-90.61776171345055,-90.61766592020869,-90.61716957397562,-90.61652971793524,-90.61636132878103,-90.61621719836978,-90.61609723939836,-90.61582572277689,-90.61548954813685,-90.61501757095222,-90.6144257345709,-90.61430592678119,-90.61420238709889,-90.61402635280072,-90.61391480786112,-90.61358617101853,-90.61335466018652,-90.61312298946584,-90.61294791622254,-90.6127074725234,-90.61237234610677,-90.61202849616301,-90.61175714290852,-90.61160519848856,-90.61126173682631,-90.61116607849243,-90.61110982796748,-90.61114250823071,-90.61122245593442,-90.61131835675437,-90.61136638641143,-90.61095921940182,-90.61091969629558,-90.61091943089245,-90.61087986317469,-90.61079975052502,-90.61063152845929,-90.60986386682734,-90.60865511047317,-90.60827108988822,-90.60781533561371,-90.60707882044532,-90.6060548218651,-90.60549413039539,-90.60507764812141,-90.60445394149407,-90.60437382793924,-90.60433337958465,-90.60441388821586,-90.60440581139879,-90.6042856996465,-90.60438224531083,-90.60435842061047,-90.60442199406232,-90.6043901223059,-90.60432658505947,-90.60426974041241,-90.60416612872379,-90.60411020358117,-90.6041100123505,-90.60398145014372,-90.60405350772652,-90.60416528283953,-90.60419765249961,-90.60417369297278,-90.60406942894089,-90.6037972006929,-90.60298072297077,-90.60254912612966,-90.60234059392116,-90.60182853873341,-90.60165987999659,-90.60121165527134,-90.60072329336177,-90.59976959548544,-90.59959362987874,-90.59937703980053,-90.5991052128373,-90.59876097521776,-90.59837654028665,-90.59813616486665,-90.59760707235813,-90.59746326393696,-90.59705508482207,-90.59655914381833,-90.59632614256577,-90.59597471095037,-90.59543837558662,-90.59488614911453,-90.59441415546181,-90.5941026156017,-90.59367002319139,-90.59295819674151,-90.59285342286599,-90.59270946933474,-90.59256621549683,-90.59237359594017,-90.5919579509128,-90.59150911117983,-90.59116553369816,-90.59098146740227,-90.59061310585847,-90.59010923863796,-90.58983753066687,-90.58910924568831,-90.58848507768629,-90.58781315360271,-90.58658931933567,-90.58594029955123,-90.58524460566419,-90.58493217456737,-90.58404433588123,-90.58375612830756,-90.58339611206114,-90.58314752049274,-90.58272366327303,-90.58252336455405,-90.58229218816079,-90.58160351021877,-90.58139546449058,-90.58128342355224,-90.58011515702191,-90.57982727052358,-90.57959526516314,-90.57906739433034,-90.57878687188585,-90.57854675264939,-90.5782593325043,-90.57755483467062,-90.57737908236209,-90.57713094354526,-90.57707528503158,-90.5769629125805,-90.57651454805989,-90.5762984340863,-90.57595514475807,-90.57409770128481,-90.57320143357492,-90.57228164038975,-90.57204138919182,-90.57175297122846,-90.57161674521593,-90.57146516527943,-90.57038436273263,-90.56998431132452,-90.56941592969662,-90.56923985500923,-90.56907192932927,-90.56888010884639,-90.5684953673214,-90.56807961061995,-90.56751875779402,-90.56618240250805,-90.56488594632941,-90.5643817796841,-90.56369360682379,-90.56236456642657,-90.56191692855768,-90.56083572433437,-90.55986724883061,-90.5592600218296,-90.55900369317723,-90.55861964309616,-90.55805950630388,-90.55781880811487,-90.55684286011066,-90.55638642167091,-90.55601888939758,-90.55555452143372,-90.55460192372595,-90.55428187433773,-90.55394653567203,-90.55353044927909,-90.55333003242168,-90.55308996424561,-90.55289840667278,-90.55216955104001,-90.55180137949156,-90.55144187738179,-90.55110585860206,-90.55068184242489,-90.55038533680414,-90.55034600962082,-90.55003367319358,-90.54957745205226,-90.549497995804,-90.54948986475252,-90.54957793619765,-90.54977807116278,-90.54996198688714,-90.55047410905181,-90.55067435855644,-90.55071426239738,-90.55086673967728,-90.55101091308119,-90.55149920426248,-90.55162738466565,-90.55172300143069,-90.55185925078709,-90.55208370200305,-90.55221936758271,-90.55236325016412,-90.55252333798207,-90.55265200299306,-90.55263580286372,-90.5525561660604,-90.55239553631417,-90.5521081950144,-90.55200362672183,-90.5518201607845,-90.54901148784477,-90.54861934246202,-90.5480192042492,-90.54729876456078,-90.54661091736813,-90.54617080044488,-90.5458106661852,-90.54538664048582,-90.54518694061191,-90.54471462251402,-90.54446644137872,-90.54429861740172,-90.5439377986641,-90.54345789588204,-90.54322627183076,-90.54275426928189,-90.54172198768887,-90.54145761218908,-90.54104943056431,-90.54084953783314,-90.54052952010241,-90.54009731876064,-90.53974538112851,-90.53956947777831,-90.5392566931245,-90.53862447672022,-90.53856061452058,-90.5385766117909,-90.53872024274615,-90.53876852051563,-90.5387599837958,-90.53862381795821,-90.53846375990493,-90.53838397608068,-90.53839973948139,-90.53846357625493,-90.53858359714741,-90.53873569537085,-90.53929620031498,-90.53970442875952,-90.53995978296047,-90.54020819743123,-90.54061637123537,-90.54096019104381,-90.54109574291026,-90.54123243324709,-90.54129605573647,-90.54138366664017,-90.54190361265123,-90.5421519920705,-90.54239982228421,-90.54263169855447,-90.54301604526249,-90.54331218686931,-90.54342465766844,-90.5437276221769,-90.54396009130782,-90.54416797598249,-90.54420008580253,-90.54436017251369,-90.54513532988638,-90.54560692245053,-90.54575873102864,-90.54583111961054,-90.54587140254422,-90.5459274638319,-90.54624736785537,-90.54705462790412,-90.54705417632063,-90.54719050549916,-90.54717406863186,-90.5471577381654,-90.54710966611312,-90.54706998889148,-90.54694966630993,-90.5468855913049,-90.54678136778311,-90.54654097579106,-90.54645317101981,-90.54638114484236,-90.54621255496576,-90.54610846008305,-90.54613209467341,-90.54606030456677,-90.54599630240065,-90.54576341294525,-90.54528289808007,-90.54515542982233,-90.54507458823332,-90.54489049715029,-90.54458610199119,-90.54440976805853,-90.54344891943619,-90.542921224992,-90.54245612104273,-90.54193585837217,-90.5414636745746,-90.54099951912819,-90.54058282049282,-90.53971879795223,-90.53946958780783,-90.53842092101873,-90.53816587545455,-90.53789313241442,-90.53755743733059,-90.53706129503576,-90.53621248686029,-90.53599691749616,-90.5350844838741,-90.53366000134048,-90.53349936418546,-90.53284250723311,-90.53254686945441,-90.53192290350961,-90.53137815722144,-90.53105063330048,-90.53075408532439,-90.5302896235562,-90.52989787741576,-90.52964921985782,-90.5289043658389,-90.52762366059126,-90.52735143753742,-90.52665498481281,-90.52639891846022,-90.52618249619138,-90.52587840093909,-90.52563044788971,-90.52532569644816,-90.52489318005935,-90.52478918774089,-90.52462903752847,-90.52453245126559,-90.52411590450576,-90.52402037199742,-90.52387557097077,-90.52385934415233,-90.52387537875011,-90.52409986158727,-90.52441131271476,-90.52440302670097,-90.52425878322488,-90.52423465679102,-90.52428230182574,-90.52441933245625,-90.52457084333734,-90.52458696241173,-90.52445845076593,-90.5241209612069,-90.52404919715572,-90.52391296473435,-90.52382414685438,-90.52390449720517,-90.52390374533908,-90.52385581116459,-90.52374408636516,-90.52349526256343,-90.52345527434974,-90.52342254778401,-90.52335828957052,-90.52315841583915,-90.52299867258471,-90.52247801351207,-90.52237350739939,-90.52227789732582,-90.5222930548175,-90.52222924462933,-90.52208490822271,-90.52191662486818,-90.5219252778769,-90.52198083663535,-90.5220687928097,-90.52236528016478,-90.52248544418978,-90.52256470357115,-90.52276455929992,-90.52276473031802,-90.52259645685665,-90.52217201667754,-90.52214794615462,-90.52225226883628,-90.52254015011533,-90.52263639547452,-90.52265151390122,-90.52264342835657,-90.52259556274612,-90.52243581656187,-90.52230753757982,-90.52211518932701,-90.52182691178088,-90.52162676909276,-90.52126594372265,-90.52072995729226,-90.52038523243485,-90.52012095666525,-90.51999266837987,-90.51965619156891,-90.51954458574063,-90.51955246301162,-90.51961630002552,-90.51975253229918,-90.5198000484344,-90.51977634338806,-90.51961620894456,-90.51944016215768,-90.5191923667935,-90.51903117591441,-90.51897538614084,-90.51899908082483,-90.51935129520326,-90.51943134422392,-90.51935949420131,-90.5191193594068,-90.51909515388431,-90.51914290647845,-90.51923093129579,-90.51951985860462,-90.51953516996049,-90.51939074074363,-90.51936714891185,-90.51938274315417,-90.51935875421705,-90.51925464671054,-90.51896638247588,-90.51856583606698,-90.5181973527433,-90.51801377942751,-90.51788509618326,-90.51780509697232,-90.51779729209193,-90.51783702889635,-90.51794875311683,-90.51794893151882,-90.5178927547301,-90.51757253927154,-90.51742835100048,-90.51730777698893,-90.51733175931325,-90.51724308514177,-90.5169708766832,-90.51633040580465,-90.51586542532991,-90.51550479539169,-90.51477577096347,-90.51451165419286,-90.51391883659194,-90.51344666445046,-90.51311803145614,-90.51302195769853,-90.51306983799208,-90.51328564924532,-90.51342146157943,-90.5139583120494,-90.51407813898942,-90.51421468447951,-90.51432610390368,-90.51434281273247,-90.51377372491177,-90.51348489516143,-90.51318851482084,-90.51299645607517,-90.51241987298131,-90.51227586648999,-90.51222754674566,-90.51244418323003,-90.51243574426806,-90.51232352942802,-90.51222737682859,-90.51210665417366,-90.51166672299647,-90.51140176764785,-90.51114513018707,-90.51080949518955,-90.51049679934231,-90.50987126743227,-90.50968754828118,-90.50958284821492,-90.50950285409934,-90.50953475664852,-90.50981512399584,-90.50980677364231,-90.50968644642975,-90.50923840476862,-90.50882101955797,-90.50882157397845,-90.50897355197324,-90.50894080208232,-90.5085005109468,-90.50829185028817,-90.50822763920803,-90.50810712564065,-90.50818676692634,-90.50795453816151,-90.5079222744298,-90.50798566909468,-90.50786558717847,-90.50784145159449,-90.50787322700333,-90.50794558736941,-90.50816198245865,-90.5082022133975,-90.50820979181594,-90.50811374005939,-90.50769689454387,-90.50766457917061,-90.50768022424013,-90.50780031935182,-90.50832895436842,-90.50862548657476,-90.50888976501587,-90.50992230448638,-90.51008278128762,-90.51017079677779,-90.5101707893738,-90.51005819904481,-90.50954462240554,-90.50956042826577,-90.50961624748767,-90.50972904622135,-90.50988106750447,-90.5100969224511,-90.51017734594211,-90.51016919050917,-90.51011322241604,-90.50961599616066,-90.50959144163235,-90.50963945407626,-90.50971201996853,-90.50980810950635,-90.51034480087419,-90.5105448807745,-90.51057672446665,-90.51065631633178,-90.51095240219503,-90.51108137543487,-90.51116109623069,-90.51139321437647,-90.511601321402,-90.51181717823512,-90.51201736054489,-90.5127069002598,-90.51278616347761,-90.5128508136,-90.51289035083774,-90.51293832651356,-90.51305853316576,-90.51319486342352,-90.51353847791947,-90.51374709810737,-90.51402705961134,-90.51414711579434,-90.51430703551704,-90.51457175243698,-90.51465194778594,-90.51466747212288,-90.51459580827959,-90.51465098743157,-90.51471566364692,-90.51480325996435,-90.51566070628458,-90.51598865173285,-90.51629320017734,-90.51691734997257,-90.51752619423091,-90.51773448452033,-90.51807851249124,-90.51839034376259,-90.51860659500238,-90.5190705677215,-90.51939093038141,-90.51952680944842,-90.51963126601673,-90.51977469779099,-90.51979112065571,-90.5199595673617,-90.52027969265673,-90.52096842560944,-90.52156866372945,-90.52188878615979,-90.5220881252345,-90.52227252989731,-90.52256913953966,-90.52276942161798,-90.52356212801566,-90.52388183008958,-90.5248598939979,-90.52512365092831,-90.52551623855038,-90.52562077904103,-90.52571656529138,-90.52578877707549,-90.52587683868711,-90.52604476328519,-90.5263732136067,-90.52675019121466,-90.52693403074446],"lat":[46.96794938238377,46.96802931154455,46.96842364380571,46.96873158795655,46.96873126213774,46.96869452596783,46.96857455699939,46.96838308619038,46.96789780270185,46.96774219741486,46.96757853857478,46.9674777595408,46.96696652420945,46.9666814924479,46.96659019442927,46.96628305242292,46.96626730694367,46.9662369028736,46.96617268521238,46.96615637733319,46.96619728350381,46.96612614582644,46.9659754783779,46.96594059634803,46.96581261140017,46.9657997440822,46.96564493963517,46.96553480090548,46.96539735947001,46.9650113390788,46.96479418508073,46.96465622757643,46.96449932914523,46.96435638650654,46.96418912678857,46.96386189599633,46.96369163665984,46.96331753675535,46.96303892969769,46.96241962682577,46.96207919250821,46.96189805580107,46.96146488952611,46.96132724153883,46.96117771903632,46.96108825940254,46.96088648543463,46.96062414189553,46.96050375174988,46.96042162760712,46.96026847705894,46.96007572224876,46.95976687118296,46.95973280688364,46.95972886256994,46.95966214735176,46.95957291606443,46.95957491470229,46.95946194844552,46.95945082028238,46.95946708929011,46.9594557042911,46.95939331716295,46.95931927046985,46.95926198886336,46.9592234440314,46.95916253784252,46.95917487182436,46.95916187009406,46.95894808654185,46.95896183658059,46.95894212037595,46.95894460383091,46.95900054558214,46.95899256485279,46.95896834895822,46.95879996963978,46.95880158708272,46.95863808034752,46.95846608305453,46.95833076473701,46.95768952369207,46.95732978664501,46.95719489532844,46.95699618609699,46.95691212937322,46.95677637654655,46.95653977246963,46.95645662043603,46.95635859459946,46.95623256697515,46.95616288964086,46.95594124277693,46.95563765642366,46.95550811887308,46.95514785852053,46.95486089119414,46.95458782136228,46.95432782740797,46.95408180895198,46.95368318134817,46.95357837407319,46.95340559016064,46.95323009226283,46.95317473683546,46.95299115268855,46.95265505841691,46.9522469582627,46.95167953514692,46.95143796597447,46.95114725834465,46.95078188733712,46.95063924057365,46.94951738215214,46.94891265387398,46.9479784345204,46.94758554917393,46.94718005768097,46.94701256884212,46.94693418092255,46.94666153077996,46.94632708074229,46.94614790737819,46.94608673532588,46.94587207075734,46.94577663776244,46.94541563538876,46.94503646872712,46.94484594174311,46.94478818347694,46.94479989594079,46.94471326754267,46.94471321425539,46.94473380093504,46.94471151404242,46.94466601936912,46.94458890899194,46.94458525926106,46.94448353225586,46.94448770216214,46.94446128627178,46.94439970014323,46.94439007334827,46.94442737164702,46.94441949507895,46.94437807730474,46.94407106100198,46.94398727090491,46.94387017556389,46.94371251636284,46.94368952122203,46.94368820579378,46.94361925079864,46.94339095046146,46.94330710701546,46.94312516766546,46.94310519331653,46.94310375804799,46.94307076935543,46.94297308560991,46.94274933822247,46.94254491755311,46.94231653486161,46.9421909920132,46.94194155697025,46.94169354625841,46.94150449067073,46.94138073869562,46.9409073575701,46.94054370797666,46.94007885264879,46.93975531982876,46.93960825576825,46.93844193881116,46.93802918965297,46.93770428941554,46.93762510048602,46.93754624569987,46.93721080009413,46.93701642433363,46.9367410177234,46.93611490119751,46.93563332348597,46.9349419018414,46.93468984429067,46.93395183686479,46.93376277280644,46.9336859011582,46.93363730509549,46.93346117267942,46.93319334071901,46.93301687174116,46.93291654947068,46.93229719220646,46.93197934449215,46.93179074498305,46.93115162822355,46.93022752689403,46.92954833161556,46.92921877618834,46.928980202776,46.92854541025936,46.92804936102199,46.92755824233645,46.92662823853795,46.92618343954402,46.92605653928885,46.92574307163913,46.9253298933481,46.92521461003934,46.9250395571199,46.92471512793345,46.92460855071287,46.9244851687131,46.92434112274504,46.92411689112243,46.92308654656205,46.92234201105367,46.92207112791274,46.92151124613025,46.91953684964938,46.91921691619208,46.91865723469198,46.91845793632708,46.91767569068426,46.91757007613698,46.91734659805472,46.91722246566195,46.91705783903762,46.91670741600963,46.91631881865434,46.91608547517144,46.91576606950294,46.91518499261601,46.91422083169961,46.91338190870553,46.91301315756373,46.91243393062696,46.91161722560568,46.91123364525651,46.91109515853557,46.91075017058544,46.91053068881423,46.91002205619217,46.90971301376673,46.90917014028413,46.90886975466875,46.90867906938793,46.90839706382061,46.90785516509082,46.90766983357565,46.90745497882315,46.90687922074014,46.90681095545563,46.90648893592311,46.90650778444123,46.90669062757884,46.90675194384922,46.90677694255713,46.9067333906592,46.90655183962415,46.90655910768756,46.90660289052534,46.90681947117999,46.90688715886343,46.90690134549401,46.90687939291004,46.90678104771987,46.90677748043731,46.90681890175259,46.90734157426405,46.90743034072592,46.90747273406653,46.90766023105284,46.9078565917789,46.90797183359278,46.90812993100145,46.90832539148657,46.90849424189192,46.90891169003685,46.90926257338324,46.90919772658474,46.90921802494747,46.90989777090552,46.90994553319558,46.90996985375308,46.90996267568746,46.91006357555867,46.91042224620061,46.91063429235442,46.91091296206102,46.91112132099349,46.91127845422743,46.9112932939002,46.91125378821229,46.91127001323878,46.91135688421843,46.91141307879219,46.91153780630752,46.91163742744748,46.91173282577438,46.91172516612882,46.91174943284069,46.91183413469707,46.91197092570941,46.91221755864242,46.91260600162897,46.91275175484226,46.91299246942487,46.91331737576121,46.91346814263107,46.91376293336609,46.91404595220324,46.91456744364673,46.91479785577498,46.91501792589293,46.91546516699594,46.91601143918195,46.91679804808496,46.9170063989366,46.91758866416458,46.9178023361291,46.91816146800785,46.91832833435104,46.91846514114888,46.91859736695669,46.918742779603,46.91967915520486,46.91988521647099,46.92015068684009,46.9202442592809,46.92034592272237,46.92045930912493,46.92073618078878,46.92106151179161,46.9211479171003,46.92120601950903,46.92122680206418,46.92123222741175,46.92119357497848,46.92113109264592,46.92107308688588,46.92110275496172,46.92115583829236,46.92123415291478,46.92131912313736,46.92151492133512,46.92174163240315,46.9218131900101,46.92188203137047,46.92193113208792,46.92193877831896,46.92184740201262,46.92183163862978,46.9217858151537,46.92169582593888,46.92143216252165,46.92137947641154,46.92135470109221,46.92113068302778,46.92108075109779,46.92100649960368,46.92092413034025,46.92076814222776,46.92060168470756,46.92048917076437,46.92028488746902,46.92017778857615,46.91980837267356,46.91929912243448,46.91798746816767,46.91781291115719,46.91756545097959,46.91722210242512,46.91671546279159,46.91632039597975,46.91603649748173,46.91551226213497,46.91542358567034,46.91521705260243,46.91508971452178,46.91506224470504,46.91505057348861,46.91512929738954,46.91529302293588,46.91536409137898,46.91543432532902,46.91550574523195,46.91556286799596,46.91555160160303,46.91548597529212,46.91544678678886,46.9154337209633,46.91547917928968,46.91549218351992,46.91559744909738,46.91561583434171,46.91559467687217,46.91552978365429,46.91556492900192,46.91580602510901,46.9159234086309,46.91598985267432,46.91613955202417,46.9161619960465,46.91615655758778,46.91622170542643,46.9165496403305,46.91669171673701,46.91679704156471,46.91684554896595,46.91685445899603,46.91689091264576,46.91699388797124,46.91752438806782,46.91764130670771,46.91767955811835,46.91800157267469,46.91809864299615,46.91820218152042,46.91884321389708,46.91905329357257,46.91939477903988,46.91995585256214,46.92123669268906,46.92145805226132,46.92162803017459,46.92168118295679,46.9217278697239,46.92201977842794,46.92211423016986,46.92221494787731,46.92266185038771,46.92283169450106,46.9230280858966,46.92313108574517,46.92333669049137,46.92349541434562,46.92360022082083,46.92405892998621,46.9241897190538,46.92439389931035,46.92451175954215,46.92470157280912,46.92480545115357,46.92490972404435,46.92491460162805,46.92486170138898,46.92468046302082,46.92442814915233,46.92430014980636,46.92420005372089,46.92385225992415,46.92371216304196,46.92327539281798,46.92298035781061,46.92272854253657,46.92251157202195,46.9222873476861,46.92202348785803,46.92188798888254,46.92126394064066,46.92094444474658,46.92064870805938,46.92035512200337,46.91964207691719,46.91949120788382,46.91929035417918,46.9189802178462,46.91876858703668,46.91841260067228,46.91822398588852,46.9177494368119,46.91746718344788,46.91714889261387,46.91675962021493,46.91619247756251,46.91585307009563,46.91578014115602,46.91533675593939,46.91446774002517,46.91392143882589,46.91372800091438,46.91323038700059,46.91285653055408,46.91262224015448,46.91213833638418,46.91161599650063,46.91158543166338,46.91132766687894,46.91102044789036,46.91021606802741,46.91007034267254,46.90991071326614,46.90979194270393,46.9096705015242,46.90957479419291,46.90928051277123,46.90904576858559,46.90850858304161,46.90844960581883,46.90836675227671,46.9082691015368,46.90801964121157,46.90798640149549,46.90798222027552,46.9080750300373,46.9080487870289,46.90814840119626,46.90832170305521,46.90827099413171,46.90828884469261,46.90834399053549,46.90849224509257,46.90846563663059,46.90842401503798,46.90843194624197,46.90847324005819,46.9086234368922,46.90888724369164,46.90894965205548,46.90902106783671,46.90932235950999,46.90943384935716,46.90969055920308,46.90976743444763,46.90985499641482,46.90992734163856,46.90994193696798,46.90999675889791,46.9102333313802,46.91090335065978,46.91100095469102,46.91112292756546,46.91136915947008,46.91151854003052,46.91164906446108,46.91186174178245,46.91206553009243,46.91221214139141,46.91235211050881,46.91245698610867,46.91255766062839,46.91262443589154,46.91273991069642,46.91277116943417,46.91282170746217,46.91291671441626,46.91314594528394,46.91338279387583,46.91339508577516,46.91331682708855,46.9133182112086,46.91337854147909,46.91394751534883,46.91407907177574,46.91415607611795,46.91419715918806,46.91413796637702,46.91412194273051,46.9141647142803,46.91466158850188,46.91492314417027,46.9153912231459,46.91556317695029,46.91605229476165,46.91733770273004,46.91835120817183,46.91854845832627,46.91872528099769,46.91905467448718,46.91928050616146,46.91998483067655,46.92280101388178,46.92291800128673,46.92340722806107,46.92409066144921,46.92413966886443,46.92429625601946,46.92455179131913,46.92482851904163,46.92534907485056,46.92567521988822,46.92621461367951,46.92650075122842,46.92692629304254,46.92734160697771,46.92784323203649,46.9280281602482,46.92851725460864,46.92868234961772,46.92903273352788,46.93022399944444,46.93044620503561,46.93065131810349,46.93095759259628,46.93134261951814,46.93148294071535,46.93215061075128,46.93241858252991,46.9326243893304,46.93277533507428,46.9330126639436,46.93319146161798,46.93331322755966,46.93353327707157,46.93357269661573,46.93368055791299,46.93367050830596,46.93361498668119,46.9335046373134,46.933278056517,46.93296707499669,46.93292196412303,46.93281655792689,46.93253411870187,46.93252192943898,46.93252105165184,46.93247405933464,46.93231216733404,46.93210716109912,46.93203218890698,46.93201725386824,46.93204302706616,46.93211570805006,46.93212810618721,46.93211186534559,46.93237705542903,46.93245648882932,46.93272966153152,46.93278258047228,46.93285894247727,46.9329958854421,46.93320681048399,46.93340280892074,46.93363257959287,46.93378772305358,46.9341619113122,46.93427709067783,46.93458720827997,46.93468438427061,46.9349915713573,46.93518006157296,46.93547695059761,46.93584656231599,46.93620846871113,46.93628499845691,46.93643920284719,46.9365332381342,46.93661963154812,46.93673542990248,46.93690514937111,46.93700013048247,46.93729430564213,46.93842971254664,46.93852284052888,46.93882549128968,46.93935908025659,46.9397254171713,46.9399008960984,46.9400799728834,46.9403701341538,46.94070648103055,46.94085852081287,46.94112357368207,46.94114467755219,46.94115346629081,46.94123574620669,46.94123362522947,46.94125378630184,46.94138639216805,46.94159386155622,46.94174544386633,46.94185015453873,46.94194147304507,46.94198642608132,46.94204185439581,46.94209319763194,46.94218070740294,46.94225046470937,46.94237833592286,46.9430843999307,46.9432283783432,46.9432786432435,46.94329238873514,46.94335042643992,46.94343769226244,46.94361072942839,46.94371152986685,46.9437885139788,46.94392803434143,46.944030616038,46.94419782351622,46.9443075164824,46.9444158226587,46.94454030899721,46.94460758683894,46.9447037187179,46.94481807985149,46.94492313324059,46.94502500812433,46.94513470581084,46.94515929114844,46.94521041658673,46.9452604389574,46.9453653189979,46.94544006883412,46.94551297071792,46.9455665093041,46.94556779760199,46.94553710026062,46.9455179761415,46.94553726891684,46.94558532811693,46.94565777261923,46.94585920963527,46.94594152547214,46.9459851595653,46.94607905038463,46.94612359114534,46.94617848989512,46.94619384246626,46.94617734637438,46.9462318331562,46.94649851611718,46.94669153443842,46.94681801223548,46.94688504828451,46.94690520467511,46.94686320837211,46.94684533903438,46.94687344152915,46.94691420387348,46.94698340240114,46.94707656417518,46.94716152355255,46.94727945688641,46.94745274307501,46.94755622705875,46.94764984437001,46.94778683899202,46.94790953802859,46.94809624780672,46.94841166247382,46.9484998022294,46.94863320115129,46.94886218899999,46.94914887321463,46.94939796553494,46.95011553181604,46.95019489611008,46.95029992163629,46.95035265711243,46.95047111745246,46.95055928706286,46.95062768885535,46.95073582913317,46.95076615734284,46.95077724802964,46.95081101702906,46.95091782530456,46.95105962318034,46.95113210117142,46.95144342732169,46.95155889804817,46.95161534206791,46.95162970387149,46.95163059907156,46.95164530360229,46.95170288558184,46.95181102859605,46.95195954468628,46.95216421092398,46.95228781425599,46.95237553008314,46.95258165854442,46.95274707230129,46.95288094974367,46.95299943465258,46.95315493404738,46.95358179259497,46.95374008878782,46.95387272723652,46.95405531003691,46.95412828433174,46.95415684446856,46.95422887200979,46.95431602448785,46.95453567346303,46.95478331318239,46.95484180420831,46.95493055385606,46.95502856368071,46.95546021568315,46.95576147633857,46.95622351581904,46.95637871983669,46.95659152595682,46.95670335548706,46.95676592697426,46.95704179750719,46.9571559436858,46.95720947673163,46.95726895698006,46.95731981564341,46.95740096855364,46.95744241132327,46.95750536989731,46.95759803452868,46.95807963596632,46.95813714680575,46.95822762842533,46.95828839890677,46.95842159893196,46.95846359009637,46.95848266138492,46.95839257917516,46.95842336046861,46.95847921119194,46.95856470202988,46.95881885734978,46.9596670368766,46.9598610032769,46.95994286913849,46.96001323384473,46.96006148782995,46.96008414723612,46.96016196649729,46.96021149938483,46.96028654983871,46.96060878569757,46.96074781353963,46.96082971716091,46.96085863964078,46.96085596124912,46.96071015000744,46.96071488389277,46.9609537739717,46.96098716569902,46.96098021892243,46.96102351276471,46.96106983837336,46.96137644893596,46.9615341249796,46.96164227189264,46.96170043173877,46.96177439902997,46.96181622680534,46.96187611739488,46.96210203448384,46.96217943569438,46.96224976391129,46.96228852122322,46.96235446906548,46.96235016216878,46.96228872612222,46.96230056045486,46.96235777118142,46.96254837092369,46.96264418423674,46.96272116732133,46.96295827266124,46.96305813692581,46.96307753033622,46.96308838217103,46.9630215346332,46.96303805401832,46.96309854802522,46.96333251515453,46.9635974802691,46.96372814696084,46.96400555371945,46.96422405341401,46.96441317403973,46.96485932491569,46.96510927924888,46.965270080442,46.96536690604539,46.96537412721348,46.96550060200092,46.96563031957821,46.96581277917245,46.96630458158236,46.96665055438032,46.96687350543727,46.96705313636598,46.9672598287337,46.96738783551676,46.96749546709345,46.96781861698017,46.96787058664195,46.96786498153775,46.96782552862955,46.96781135409254,46.96783168426226,46.9679645400926,46.96799739068631,46.96801273611926,46.96800296362007,46.96794183914152,46.96792773213453,46.96794938238377]}],[{"lng":[-90.41572336732888,-90.41603564021011,-90.41618043082042,-90.41642075559379,-90.41653298622519,-90.41696596951442,-90.41703075839985,-90.41703016793508,-90.41710294367199,-90.41727932957039,-90.41736770869906,-90.4175198809594,-90.41770479201422,-90.41795369287482,-90.4181062509962,-90.41830677740609,-90.41870039742562,-90.41905324896589,-90.41933521900303,-90.41938293083035,-90.41950338459344,-90.41955113237472,-90.42061077409252,-90.42081178214646,-90.42099569166828,-90.42124518656507,-90.421477679989,-90.4220562298988,-90.4224570376487,-90.42304330720829,-90.42356479217418,-90.42372485566339,-90.42381344526819,-90.42391008761878,-90.42400619368262,-90.42419070747826,-90.42448794180707,-90.42537072562115,-90.42577211986746,-90.42620549776385,-90.42630149329749,-90.4265344961218,-90.42782666818927,-90.42810798586991,-90.42838045690246,-90.42951200938931,-90.42982518216247,-90.43003368025387,-90.43025821593531,-90.43250625631821,-90.43278659521309,-90.43335675010263,-90.43355737392972,-90.43393420229829,-90.43460907273948,-90.43526668147551,-90.43550813153585,-90.4358451676036,-90.43647092119627,-90.43728176477799,-90.43744226012636,-90.43772271028266,-90.43785124063037,-90.43906293251077,-90.4392557936127,-90.43956096463816,-90.44038812212534,-90.44055590292696,-90.44086924039304,-90.44102950300039,-90.44160763987635,-90.44194504027737,-90.44237013536471,-90.44264270281296,-90.4428676625575,-90.44351782238479,-90.4448416961044,-90.44533922705536,-90.44683197344406,-90.44877318358478,-90.44897408862823,-90.44915103789155,-90.44925494660039,-90.44955207610199,-90.44958457309069,-90.4498492072009,-90.4499295894296,-90.44998536201044,-90.45020976470448,-90.45033837022611,-90.45041010686997,-90.45059486550987,-90.45115607478321,-90.45144566878233,-90.45160630840245,-90.45186261319097,-90.4519503776766,-90.45200737363228,-90.45232820676793,-90.45237543159011,-90.45253621818637,-90.45264042879327,-90.45328194926664,-90.45357087379297,-90.45377917026748,-90.45382750750034,-90.45390002415868,-90.45406867222697,-90.45437283631117,-90.45448519826131,-90.45462140217816,-90.45531908083328,-90.45541563179508,-90.455575675446,-90.45554404165574,-90.45555951931416,-90.45541504137283,-90.45537443038744,-90.45522224545927,-90.45521411914989,-90.4553265288779,-90.45553450653766,-90.45556723550094,-90.4559755057354,-90.45636870243182,-90.45641690585084,-90.45652854249384,-90.45664091043901,-90.45694576652421,-90.45705788994536,-90.45708243649878,-90.45704963796797,-90.45708217342855,-90.45707403588924,-90.45709017683079,-90.45713719048196,-90.45715340797913,-90.45711328459674,-90.45713789016895,-90.45706511627483,-90.4570492810284,-90.45719268685295,-90.45719292841842,-90.45708832531425,-90.4570562715332,-90.45663161638382,-90.45654326260274,-90.45655080699356,-90.45644658992633,-90.45633442609173,-90.45626206631461,-90.45618880434483,-90.45619701119007,-90.45607716484366,-90.45602876736689,-90.45592462571491,-90.45587584761249,-90.45586019360171,-90.45607626092715,-90.45616388834868,-90.45621264125195,-90.45618773459434,-90.45626056191418,-90.45619571772254,-90.45615518210586,-90.4561153104662,-90.45608301225057,-90.45607530352581,-90.45597135355344,-90.45581825176944,-90.45569834783005,-90.45562623157797,-90.4556176555071,-90.45554601792307,-90.45536902238649,-90.45529664790364,-90.45531197448025,-90.45548813397335,-90.45559278116808,-90.45558467430303,-90.45579283854694,-90.45585700634817,-90.45592852990404,-90.45601674949216,-90.45628915417146,-90.45663395927222,-90.45671430332223,-90.4569222172189,-90.45693012787356,-90.45701021394407,-90.45718638530514,-90.45722617528385,-90.45729794752069,-90.45738600939698,-90.45739573421901,-90.45741012349147,-90.45748988245725,-90.45763509075121,-90.45776267884524,-90.45804294359689,-90.45886904583871,-90.459590095792,-90.46033515419099,-90.4605431808977,-90.46083161573253,-90.46126410209263,-90.46154450057465,-90.46201794537302,-90.46259477916426,-90.46291486102592,-90.46316353541486,-90.46384456289539,-90.46410843824096,-90.46481400446996,-90.46498162127394,-90.46554209796534,-90.46593513560337,-90.46640777584537,-90.46665648030823,-90.46676036092902,-90.46681585191527,-90.46680790559739,-90.46675968160584,-90.4667687947218,-90.46677003333916,-90.46681734971393,-90.46695338088793,-90.46700929138818,-90.46704125004386,-90.46701670194008,-90.46692136081819,-90.46687301821029,-90.46684844536281,-90.46687222834099,-90.46697620786098,-90.46708801134878,-90.46724020567294,-90.46728827690941,-90.46753603609159,-90.46830459440838,-90.46844078158479,-90.46931351330288,-90.46949027043716,-90.46956170001071,-90.46979362238727,-90.46977788054912,-90.46964863296529,-90.46954494628123,-90.46952890858358,-90.46948046243938,-90.46941610476996,-90.46909579220625,-90.46899929904747,-90.4690080365191,-90.46931282456757,-90.46934473459284,-90.46930486545288,-90.46924126092011,-90.46922486099372,-90.4690813804975,-90.46877650335337,-90.46861666953798,-90.46843268466579,-90.4682394973867,-90.46788746922579,-90.46758274779877,-90.46718222026639,-90.4668783519629,-90.46665399072612,-90.46596506108799,-90.4656849423944,-90.46556492329834,-90.46551657109913,-90.46531605888696,-90.46521242699859,-90.46506823336857,-90.46483559479468,-90.46454708891495,-90.46398680242012,-90.46382617798706,-90.46315318383677,-90.4620635621615,-90.461775511282,-90.46085377035848,-90.46066142659357,-90.45970792437477,-90.45946718655408,-90.45862632720255,-90.45838553679427,-90.45816131966362,-90.45768027481236,-90.45724719964505,-90.45687843257568,-90.45642980990479,-90.45612540969688,-90.45565196068453,-90.45527602806006,-90.45486773254736,-90.45443452338407,-90.45410650146738,-90.45261527165817,-90.45217462738933,-90.45164622221428,-90.45073151647765,-90.45029877327043,-90.44985843122473,-90.44867197072384,-90.44835921993599,-90.44763774171359,-90.44641178784306,-90.44591523364072,-90.44527396385438,-90.44399139722671,-90.44373501632334,-90.44337480707107,-90.44317392838836,-90.4425971484872,-90.44201976766688,-90.44189995270956,-90.44161119803711,-90.44145874965234,-90.44108250732418,-90.44086610792648,-90.4405935270221,-90.44004007340649,-90.43995202224036,-90.43986390549732,-90.43978441112904,-90.4396562915848,-90.43955952498648,-90.43956728734474,-90.43947956460771,-90.43954350163484,-90.43929561261135,-90.43906285784971,-90.43900679246099,-90.43898297886538,-90.43884580549735,-90.43883821155232,-90.43873441351923,-90.43846135426122,-90.43828485016148,-90.43812490974749,-90.4379081252571,-90.43749902510586,-90.43725729328345,-90.43687329882501,-90.43668010533084,-90.43653601113816,-90.43611086489207,-90.43582317685369,-90.43556679120044,-90.43543805491063,-90.43506976818223,-90.43494904136264,-90.43456405207502,-90.43416405101406,-90.43389145105206,-90.43376313019425,-90.43365072966751,-90.43358673910866,-90.4334583220667,-90.43329826868353,-90.43308183735347,-90.43298539254918,-90.43291378644797,-90.43276929991514,-90.43253664942925,-90.43236815219018,-90.43192782503827,-90.43159054219349,-90.43143833428317,-90.43123009771597,-90.43111708294072,-90.43100564373468,-90.43097333255308,-90.43104522733756,-90.4310290144746,-90.43074056770203,-90.43055617564451,-90.43051639037435,-90.43054819949759,-90.43033988660291,-90.43033137789837,-90.43037155966404,-90.43035549584977,-90.43030743523224,-90.42962635367455,-90.42942595761524,-90.42912168073691,-90.42897704150245,-90.42888875109644,-90.42852005673338,-90.42832743287705,-90.42826352847939,-90.42823957749398,-90.42824767978209,-90.42820710716255,-90.42795858702559,-90.42785488457356,-90.42776655350399,-90.42727743643449,-90.42710889079595,-90.4268926702011,-90.42677264878493,-90.42672469783733,-90.42668418901457,-90.42662790945047,-90.42649240267215,-90.42637924174603,-90.42625948516574,-90.42617933974648,-90.42592307764519,-90.42553827267166,-90.42551440930738,-90.42558605766669,-90.42557781722573,-90.42549771052755,-90.42544992408119,-90.4253134355336,-90.42527337096476,-90.42529816409417,-90.42522549481093,-90.42526505787947,-90.4254575772312,-90.42556925157574,-90.42502405324393,-90.42439883036783,-90.42400622708008,-90.42396582249276,-90.42400658308887,-90.42410240977219,-90.42386156864823,-90.42384535357985,-90.42389384900976,-90.42395838877705,-90.42404573720128,-90.42414229561422,-90.42429420815346,-90.42435017945947,-90.42435842097062,-90.42428612761196,-90.42421450535645,-90.42408593775268,-90.42398973019316,-90.42369352372006,-90.4235568780647,-90.42328447584643,-90.42324415649915,-90.42324379957584,-90.42328411133467,-90.42305937423514,-90.42284320911924,-90.42271532428025,-90.42254663624409,-90.4224506527755,-90.42229002746751,-90.42223415714356,-90.42229799111649,-90.42216124411468,-90.42214561169099,-90.42175277976847,-90.42176852703588,-90.42157621933853,-90.42116703122441,-90.42048559619707,-90.42018097007006,-90.4200285973231,-90.41994814006166,-90.41973971220465,-90.41963563940314,-90.41948377044618,-90.41926640158604,-90.41895477723381,-90.41866564482514,-90.41855314479072,-90.4183290871252,-90.41813668019145,-90.41796044388245,-90.41773560007752,-90.41703817656794,-90.41677330093854,-90.41646903695379,-90.41610056629952,-90.41601259961075,-90.41575591230983,-90.41572347244211,-90.4157158052203,-90.41565965065357,-90.41570703270337,-90.41564346871866,-90.41557951318561,-90.41539475478281,-90.41517850723076,-90.41488187206559,-90.41481001263055,-90.41477004168388,-90.41449725466047,-90.41427239692545,-90.41381578214404,-90.41356645206247,-90.4133506444976,-90.41310179351734,-90.41298981397192,-90.41276546429945,-90.41281297262994,-90.41282103789231,-90.41275697044907,-90.41264475400538,-90.41246787017204,-90.41227558961529,-90.41163459031488,-90.41132131353643,-90.41121758048844,-90.41112904244974,-90.41092852681267,-90.41081605769038,-90.41077620655946,-90.41081617028587,-90.41104064014445,-90.4111524588895,-90.41121648076783,-90.41105623450312,-90.41098441239269,-90.41094431978421,-90.41069536357433,-90.41037487532428,-90.41019026515302,-90.4100775575759,-90.40992560790167,-90.40972464854123,-90.40955689696506,-90.40953194977172,-90.40939610466692,-90.40937194764354,-90.40949204064034,-90.40946818918523,-90.40936366671569,-90.409291523457,-90.40927552510546,-90.40932381585634,-90.40932378133822,-90.40936343697572,-90.40972394166577,-90.40982844116253,-90.4098198756421,-90.40973214314802,-90.40961195378713,-90.40960373121416,-90.40972399372053,-90.40976389060394,-90.4097717412692,-90.40970776132401,-90.40941889367906,-90.40928259174765,-90.40915438338101,-90.40908217337102,-90.40900156613777,-90.40888977573627,-90.408616762094,-90.4085681643509,-90.40831163784276,-90.40817502459872,-90.40812752438248,-90.40819078843566,-90.40818352062423,-90.4081106243291,-90.4080220602991,-90.40788592619332,-90.4075975855397,-90.40750075748426,-90.40740486495804,-90.40734084171059,-90.40719664964219,-90.40718051197311,-90.40693205360652,-90.40674731700496,-90.40668339547656,-90.40661049518725,-90.40656202868102,-90.40644192994672,-90.40594466958497,-90.40570375020349,-90.40559986103106,-90.40558433244254,-90.40560814572581,-90.40558356956609,-90.40551950718609,-90.4053831965787,-90.40527923153118,-90.40522219512403,-90.40516660130652,-90.40502219846417,-90.40473362596985,-90.40454095269483,-90.40437275044994,-90.40434831256428,-90.403995219178,-90.40391490945761,-90.40388302665212,-90.4039231710904,-90.40360162865143,-90.40367372613483,-90.40373808967007,-90.40374558438222,-90.40356109733528,-90.4034407097601,-90.40345592840484,-90.40352063582741,-90.40352851032674,-90.40341614942562,-90.40328769467048,-90.40333560555746,-90.40358416989824,-90.40383286895779,-90.40392900893067,-90.40392131820596,-90.40381699694152,-90.40386415630206,-90.40397685403721,-90.40392011339186,-90.40401704666735,-90.40421774092366,-90.40443345055928,-90.40465810410068,-90.40471434923343,-90.40476251007652,-90.40469006993121,-90.40471442476195,-90.40468158536258,-90.40459393414601,-90.4044171618487,-90.40429646682975,-90.40419283983506,-90.40425655194794,-90.40431304168223,-90.40453738880836,-90.4046813886111,-90.40477006075754,-90.40482535050201,-90.40481756096902,-90.40464094239884,-90.4047215239199,-90.40470479200783,-90.404568423211,-90.40459287956948,-90.40456808800764,-90.40458501918758,-90.40468072003374,-90.40469682943477,-90.40466455904036,-90.40442384245507,-90.40452036824654,-90.40450387628714,-90.40455984278607,-90.40451163934036,-90.40448815554642,-90.40458451739694,-90.40471224824054,-90.40484833574048,-90.40492916719215,-90.40502524461417,-90.40507258390507,-90.40505680652237,-90.40494371207275,-90.40496043138819,-90.40492799900028,-90.40486369068508,-90.40486351161709,-90.40505629848333,-90.40505570362963,-90.40501616858538,-90.40484712152637,-90.40490333800103,-90.40491131904705,-90.40521610781161,-90.40519971491862,-90.40521554539519,-90.40530361384492,-90.405271483281,-90.40533606747546,-90.40531185915611,-90.40535960562148,-90.40555237218604,-90.40583296289583,-90.40596964464127,-90.40611292699676,-90.40610517926413,-90.40595272435915,-90.40588110684055,-90.40592062620634,-90.40611328569406,-90.40614482149613,-90.40610470845732,-90.40608917240667,-90.40612941480491,-90.40625670133031,-90.40624106826533,-90.40614455973576,-90.40609694172186,-90.40610461404954,-90.40622490838373,-90.40617605129019,-90.40602365673725,-90.406031471614,-90.40609598834529,-90.40613633602212,-90.40620836138822,-90.40634463291502,-90.40645622700397,-90.40656929110088,-90.40697798395917,-90.40713877636176,-90.40715398921793,-90.40724158205866,-90.40734604581178,-90.40735390020342,-90.40731388633139,-90.40734545811414,-90.4072333482045,-90.40713697635721,-90.40639878105041,-90.40635057356549,-90.406334319012,-90.40613399210388,-90.40608589019122,-90.40607728209076,-90.40614190759905,-90.40621369923652,-90.40621370103941,-90.40610107573711,-90.40601377654437,-90.40591733297293,-90.40583693351283,-90.40562844140375,-90.40550820606092,-90.40485830939552,-90.40472970478267,-90.40460108889205,-90.40457670260234,-90.40464132698659,-90.40454445439944,-90.40453660190326,-90.40460856044172,-90.40460121328223,-90.40473725406804,-90.40480115346796,-90.40501780280557,-90.40502568924715,-90.40496903881916,-90.40490532718471,-90.40388566855992,-90.40374141211329,-90.40366076354525,-90.4032275694409,-90.40303507237417,-90.40279467749087,-90.40269804667038,-90.40263381808828,-90.40263354395029,-90.40268153486466,-90.40268149227423,-90.40244139112943,-90.40234449027449,-90.40222424282761,-90.40209603619471,-90.40196789284391,-90.40179135661484,-90.40134950307548,-90.40127738077443,-90.40125346588171,-90.40122921665454,-90.40097197097114,-90.40090753438845,-90.40086756120967,-90.40081179025668,-90.40084339027344,-90.40094744479474,-90.40097150426968,-90.4009240136252,-90.40077930660328,-90.40061835123812,-90.40056276077142,-90.40061826365799,-90.40061888259052,-90.40038550863336,-90.40036110705124,-90.40040904356432,-90.40040087488161,-90.40034486973175,-90.40012044366057,-90.40007976471384,-90.40008020205839,-90.39995119198935,-90.40000779433608,-90.39996735936145,-90.4000959088124,-90.40018381050292,-90.40015971941328,-90.3999509987917,-90.39987897395235,-90.39983831321983,-90.39966208185281,-90.39962916823717,-90.39967749204045,-90.39974986872159,-90.39994221821023,-90.40000594144209,-90.4000061388917,-90.39994202865394,-90.39993388850351,-90.40006989149865,-90.40006965732984,-90.40010194570625,-90.40006119850803,-90.40000523101396,-90.39984511310081,-90.39972457078223,-90.39972446082066,-90.39978837218787,-90.39995652492136,-90.40001292575305,-90.40003685632955,-90.39957957224604,-90.39947537508222,-90.39936275655197,-90.39938620228519,-90.39947470279276,-90.39957898567084,-90.39967514941408,-90.39972369621994,-90.39937045566936,-90.39915383810005,-90.39906572509773,-90.39906543797998,-90.39900846675665,-90.39892035939394,-90.39883989275376,-90.39876783252393,-90.3987682584509,-90.39886375542874,-90.39894412932929,-90.39901612668119,-90.39905592739173,-90.39888746904793,-90.39870281144391,-90.39855063090327,-90.39847833940726,-90.39830959366877,-90.39812497696855,-90.39806062354681,-90.39807702951552,-90.39802095583768,-90.39802024761698,-90.39798004008344,-90.39782785479343,-90.39765069018569,-90.39746581222164,-90.39740955472472,-90.39738514832604,-90.39728109095026,-90.39690408290514,-90.39685585716749,-90.3968477038445,-90.39675159233038,-90.39669579955323,-90.39614162508214,-90.39610118045519,-90.39609300116027,-90.39627741940014,-90.39587603881887,-90.39550681339122,-90.39499994701649,-90.39474283567399,-90.39459056317439,-90.39479847791621,-90.39484665231159,-90.39485499919127,-90.39483021127823,-90.39457353253037,-90.39446921819081,-90.39440509640546,-90.39434048551911,-90.39434061156835,-90.39429217282581,-90.39415512851735,-90.3942038668289,-90.39421983349293,-90.39416368288261,-90.39421935829485,-90.39433144717026,-90.39427504723854,-90.39419436842721,-90.39421880455639,-90.39434622790193,-90.39436201680951,-90.39428199685507,-90.39434610505023,-90.3942975782559,-90.39430611286413,-90.39426509373223,-90.39426483930509,-90.39425693821663,-90.39416917567092,-90.39418521320897,-90.39426511739005,-90.39426520239043,-90.39412019629337,-90.39402354850398,-90.39383907200832,-90.39380705197652,-90.39380660566529,-90.39371809096887,-90.39362212721346,-90.3933649379173,-90.39322011447025,-90.39313196770377,-90.39313993534375,-90.39321169432988,-90.39336375015615,-90.39323518647925,-90.39331603894186,-90.39325191129967,-90.39311459965762,-90.39306649817725,-90.39306610984436,-90.39301797062821,-90.39300907356809,-90.39293690896839,-90.39292833247919,-90.39303262968217,-90.39308072849634,-90.39313726165061,-90.39310522704973,-90.39324891079741,-90.39330524513055,-90.39341714890743,-90.3934653343195,-90.39348163596611,-90.39336903122054,-90.39333639645061,-90.39337720014441,-90.39350495667129,-90.39354500759318,-90.39360935527621,-90.39365706185673,-90.3937132764638,-90.39390622790353,-90.39408294448631,-90.39415497247889,-90.39421089406713,-90.3943391386744,-90.39449174939369,-90.39462763453147,-90.39491667645774,-90.39517325845534,-90.39551801599802,-90.39576638182352,-90.39585499834691,-90.39592648461874,-90.39595858901868,-90.39594219440687,-90.39590212953341,-90.39575680200691,-90.39553276655914,-90.39538738758837,-90.39529945713203,-90.3950100094668,-90.39489030920294,-90.39470475346251,-90.39468937686888,-90.39464858501528,-90.39469643598639,-90.39465646387426,-90.39456810235582,-90.3943197105698,-90.39419847927751,-90.39402973653031,-90.39373265906511,-90.3935723392554,-90.39350764510382,-90.3935071608152,-90.39357162108602,-90.39356337391267,-90.39338679652853,-90.39350725930221,-90.39373173611268,-90.39392469527257,-90.39419749473994,-90.39448580385918,-90.39486285841335,-90.39493579160954,-90.3949838813014,-90.39509575643328,-90.39503171627057,-90.39480630531234,-90.39484608216041,-90.39502341514894,-90.39520001571789,-90.39544042419101,-90.39567361375626,-90.39583381580607,-90.39597787874661,-90.39610685710461,-90.39659625184183,-90.39685351171038,-90.39723058236491,-90.39755958557028,-90.39807317130135,-90.39825764753294,-90.39839418083811,-90.39841061003787,-90.39838572024414,-90.39855413812975,-90.39873870072009,-90.39901199913508,-90.39918854725752,-90.39943701205074,-90.39981420513074,-90.40013569076194,-90.40055315542769,-90.40088219123686,-90.40121142677374,-90.40133137674056,-90.40193347442971,-90.40226332981176,-90.40243103740463,-90.40268809286603,-90.40293725404688,-90.40322580163881,-90.4036191673497,-90.40412547112295,-90.40443817126452,-90.40463136673969,-90.40708887820325,-90.40725705457936,-90.40736961433383,-90.40772249626846,-90.4078756820858,-90.40809967224682,-90.408485454127,-90.40877404196492,-90.40937593370786,-90.40981699049762,-90.41042743104201,-90.41066813728905,-90.41092497145472,-90.41106896574587,-90.41122160415729,-90.41148673222813,-90.41178329466611,-90.41195957196501,-90.41232939032336,-90.41280995975632,-90.41363651824025,-90.41383706138842,-90.41423098568964,-90.41572336732888],"lat":[47.07657207754109,47.07676329139648,47.07680269727496,47.0769519908591,47.07698589013835,47.07718959752675,47.07726303343668,47.077398018822,47.07743993322601,47.07746628750399,47.0774502201994,47.0773276199096,47.07723302145273,47.07716237401123,47.07708926459295,47.07704410243559,47.07684581897713,47.07675060426852,47.07669839066923,47.07664085147871,47.0766212880446,47.07656824791101,47.07621397143625,47.07617836670033,47.07611470059386,47.07612052939529,47.07605837232876,47.07608492529,47.07601708336632,47.07603066589928,47.07602423988347,47.07596459177017,47.07597607568824,47.07596447018901,47.07598942452611,47.07600224029514,47.07595501996728,47.07593430608745,47.07588951235503,47.07577766767569,47.07578855886714,47.07573988498333,47.07533687270752,47.07530770129645,47.07530443500833,47.07515003118306,47.07508980207159,47.07511657701234,47.07509042728675,47.07455103755952,47.07450329805498,47.07435885066682,47.07427766548754,47.07420087317872,47.07402678028632,47.0739067371225,47.07383551532786,47.0737757434499,47.07363668982951,47.0733310204287,47.07322635761096,47.07309312201466,47.07300601580382,47.07239453009775,47.07232236379404,47.0722435814445,47.07197381659677,47.07190568115915,47.07171943751258,47.07158778101784,47.0709708316291,47.07056008855989,47.06975475587397,47.0694190643143,47.06924890802125,47.06883582571305,47.06807367709756,47.06791876666695,47.06732635071648,47.0662310472511,47.06609190413716,47.06594273323579,47.06581915568806,47.06513240135101,47.06488593435468,47.06410426240451,47.06377774070716,47.06360767335053,47.06283909302019,47.0624730168586,47.06219545990351,47.06170486719653,47.0606194418968,47.06021617140435,47.05999057135142,47.05973928471347,47.05960676972344,47.05943669642516,47.05883645263646,47.05858148927206,47.0581309222814,47.05770532253521,47.0565408278941,47.05591764756676,47.05558893236076,47.05536939907014,47.05518688577563,47.05488926369181,47.05446399080683,47.05412890618589,47.05383928161345,47.05275723038608,47.05254762723924,47.05196657444703,47.05168211729217,47.0516151267234,47.05088287084549,47.05080091816771,47.04983922495445,47.04960922697307,47.04918471620908,47.04853260685936,47.04831763453095,47.04722435165676,47.0463915297497,47.04615849525207,47.04588640404767,47.04536234313013,47.04435214601305,47.044089611043,47.04397759111611,47.0438461155986,47.04346466251527,47.0432346687046,47.04314967924639,47.04248920882283,47.04241321822251,47.04214679267502,47.04180080582075,47.04151594893793,47.04129947755993,47.04051039697301,47.04024943052879,47.03980216235506,47.03946877531381,47.03834338029176,47.03777456034319,47.03754956507461,47.03627834439979,47.03590703435844,47.03576615423485,47.03527826638584,47.03517924619688,47.03472697793168,47.0343565351595,47.03405774217985,47.03383577754192,47.03301189408094,47.03167584694145,47.03100284366435,47.03073887459995,47.03003650924211,47.02975050732154,47.0290426806295,47.02887074043831,47.02829385582455,47.02817137506725,47.02760448311417,47.02727813305982,47.02702283720281,47.02675448167047,47.02625364923796,47.02601915100624,47.02567129886943,47.02463714828892,47.02396027863234,47.02334436797749,47.02244378978339,47.02203224650861,47.02151428764007,47.0208486771765,47.01993280008611,47.01939877373053,47.01913521214408,47.01785461476999,47.01691736980144,47.0165992797629,47.01595616420111,47.01572666484853,47.01508968299225,47.01448606378118,47.01404158999597,47.01353906005282,47.01330699050914,47.01324227278153,47.01314547799492,47.01290444350474,47.01262434092516,47.01230324909987,47.01185499950133,47.01071728700497,47.00984657780769,47.00880591267553,47.0084237549068,47.00806995516966,47.0076880172025,47.00735674396142,47.00662480933685,47.00591776483562,47.00537598214895,47.00503920904412,47.00416807074106,47.00392628226412,47.00309159696504,47.00293793778744,47.00267582166103,47.00235139007351,47.00182191354693,47.00144576269126,47.00119618631153,47.00063016244662,47.00047271495127,47.00036323928042,46.99994644465146,46.99971134775929,46.99943331612146,46.99858125210311,46.99829924921202,46.99786324047858,46.99768730008821,46.99731199263103,46.99690555232733,46.99658563541801,46.99615415986568,46.99554013185391,46.99459761369177,46.99428147305734,46.99413841827602,46.99365822350823,46.99201055232302,46.99179290041405,46.99050249752884,46.99017837779667,46.98998180112122,46.98919963976993,46.98885718652214,46.98812993946118,46.98797457481243,46.98787958893661,46.98783816770001,46.9878097482377,46.98778912628419,46.98784520266929,46.98799870982642,46.98863974918707,46.98871722987654,46.98913921539248,46.98929076596112,46.98938926003812,46.98966487332083,46.99009468832594,46.99023988799345,46.99053703874844,46.99072174177473,46.99102464124127,46.99133296559134,46.99168386981896,46.99190220525236,46.99209546805909,46.99279118097191,46.99318995287694,46.99333104776428,46.9934426046571,46.99368526406514,46.99377342352419,46.9939230508805,46.99411128351893,46.99430311637757,46.99476770119991,46.99487183703258,46.9953745555162,46.99603867946362,46.99619001254612,46.99659248391139,46.99664218960257,46.99698516237035,46.99704743361525,46.99715485277331,46.99716312885443,46.9970903448267,46.99683242938836,46.99665643410646,46.9965988527943,46.99657533081975,46.99659510490056,46.99669710387489,46.99686001277896,46.99708491910648,46.99737684640071,46.99761661789918,46.99863657260918,46.99887903296983,46.99909652676103,46.99937290458994,46.99948034026968,46.99951581745333,46.99944398452647,46.99940134037486,46.99934004602274,46.99931277462787,46.99926127891764,46.99915691101563,46.99879519307482,46.99870844917539,46.99864179258912,46.99855651862359,46.99834559153712,46.99821115172683,46.99818630616025,46.99821104201536,46.99826618312922,46.99834806058628,46.99842425590576,46.99856647618349,46.99879244635061,46.99878153911163,46.99866264347897,46.99864270095281,46.99865781679355,46.9987369267155,46.99883138509997,46.99891046023487,46.99898839304667,46.9991850675024,46.99912184258017,46.99915186728642,46.99920538596815,46.99926946731975,46.99934598731049,46.9994200621146,46.99945485259326,46.99958544656452,46.99973060074304,46.99981129610408,46.99994896778858,46.99999488369404,47.00003571975417,47.00028786019879,47.00036096197806,47.0003963283504,47.00045310462895,47.00041583257664,47.00050743386841,47.00066125342801,47.0006763346902,47.00079815453196,47.00084297648705,47.00078327042336,47.00082537634203,47.00090397902688,47.00092053129844,47.00089964190399,47.00093174591955,47.00105742276352,47.00112752784174,47.00126952986768,47.00139718466953,47.0014998613139,47.00165741299268,47.00180024579368,47.00197755479565,47.00216766542555,47.00249577961667,47.00260137922535,47.00280089582577,47.00302542494156,47.00322481406663,47.00335535712728,47.00378050726249,47.00395667955069,47.00401869307223,47.00414062193194,47.00446030111145,47.00452725958651,47.00466771510553,47.00476619779681,47.00487324157599,47.00544777892772,47.00573086949684,47.00603009207649,47.00608969078495,47.00610126948271,47.00605709398651,47.00607974676127,47.00615929038382,47.00624880240198,47.00638825390791,47.0064553363612,47.00663399047411,47.00667206103994,47.00667914153063,47.00658704099417,47.0065876697615,47.00664134433541,47.00664347659154,47.00661047519644,47.00647958033231,47.00643310894595,47.00645273625558,47.00649027746309,47.00647441032828,47.00647695920188,47.00656115513365,47.00661095293012,47.00665997324894,47.0067783777054,47.00682790018394,47.00683494835835,47.00687449506467,47.00692561861092,47.00700563343072,47.00707359371033,47.00718916025741,47.00735661446496,47.00773441287085,47.00807876321252,47.00838112164227,47.00875407757965,47.00901537045365,47.0091043828468,47.00916384767172,47.00922029656144,47.00938541652167,47.00946646294895,47.00962039142475,47.00967133225303,47.00969575292345,47.00968864908975,47.00971508219786,47.00977449114242,47.00993249856196,47.01020048127732,47.01039703206445,47.01061910225543,47.01067064068258,47.01064642906971,47.01067899178437,47.01085772515116,47.01090624010514,47.01096473429377,47.01101970474259,47.01109083750157,47.01105001802995,47.01104711371725,47.0110837332075,47.01121625589323,47.01128433618327,47.01134191160613,47.01146034683558,47.01163689105714,47.01174043100784,47.01244659746029,47.01251459053886,47.01252823638783,47.01267203326409,47.01275552625209,47.01281176383695,47.01288487321005,47.01290091739514,47.0128516246853,47.01284469298109,47.01287730660356,47.01299846480514,47.01305416028219,47.01298941417949,47.01300894794706,47.01311662784688,47.01317075780997,47.01318940024267,47.01314353965162,47.01312808259343,47.01306324580387,47.01306097691602,47.01294477170388,47.01294733944292,47.01303600910504,47.01309405647149,47.01316550939715,47.01324108046528,47.01341301053682,47.01343405110344,47.0133516053021,47.01322573174813,47.01312190536105,47.01304311451658,47.01305518909528,47.01320268519054,47.0131243732577,47.01318255206353,47.01325788414824,47.01334201874631,47.01345415901461,47.01354729738448,47.01363487486336,47.01407999852014,47.01421593240823,47.01435538492692,47.01452490408438,47.014688972729,47.0148380907838,47.01491021129825,47.01501712780016,47.01518135565178,47.01527340409458,47.01546944034553,47.01543304274642,47.01551162303252,47.0155691341304,47.01563310695964,47.01568348055338,47.01568139303539,47.01571884431969,47.01578690924718,47.01585747166615,47.01593747961246,47.0161796522383,47.01631634545298,47.01642442879999,47.01657949923078,47.01671108699753,47.01683216460114,47.01688732020599,47.01695883446558,47.01709936557517,47.01722037176662,47.01743928552175,47.0175467951475,47.01769733201717,47.01772684053757,47.01778538747097,47.01786283016649,47.01796631491825,47.01804378845966,47.01819154193134,47.01830646139659,47.01836892028628,47.01851096627479,47.01860251065831,47.01865652868772,47.0187359643139,47.0187909360675,47.01890339241202,47.0190324187075,47.01932760000225,47.0194096349131,47.01952820449958,47.01965725679729,47.01970928823245,47.01993184428748,47.02015047448738,47.02024850788472,47.02047214410987,47.02062223523446,47.0207562571253,47.02085614280129,47.02092759855775,47.02102065884113,47.02105471828759,47.02105126780467,47.02141843196127,47.02144746029522,47.0214365510999,47.02145308935395,47.02158014648152,47.02167469103249,47.02188029760229,47.02192088316336,47.02195091920031,47.02204397852448,47.02216000595405,47.02226504452925,47.02263182228323,47.0227479699636,47.02282201592525,47.02288900023203,47.02299296367273,47.02305998002258,47.02312600727203,47.02315461157762,47.02338163556328,47.02339814789902,47.02344221354742,47.02348827757596,47.02372045676378,47.02396353896214,47.02412611087112,47.02421112365389,47.02445027496154,47.02454335684129,47.02462333201396,47.02498426635977,47.02542690191176,47.02571685349046,47.02579930432317,47.02592076200554,47.02605133234491,47.0261749249011,47.02622942429289,47.02630287725496,47.02636583786285,47.02640841351719,47.02666195922894,47.02674390192721,47.02692975285014,47.02707904026211,47.02722999244063,47.02735544090756,47.02759202527638,47.02768296777055,47.02773937807903,47.02790436794791,47.02794283176729,47.02794268558345,47.02797004626656,47.02803843186171,47.02807985084148,47.02813985819548,47.02829534390486,47.02852528461476,47.02858783304067,47.02863538505603,47.02864500926225,47.02867355284018,47.02872960176123,47.0288885419927,47.0289080264581,47.02893535583974,47.02899727518851,47.02908469960682,47.02921667471974,47.02927463046596,47.02957671175188,47.02968216379254,47.02975364780121,47.02988573571044,47.03018317092407,47.03033117504706,47.03039466922132,47.0304865669366,47.03055006521183,47.03063397732695,47.03078161952079,47.03092807045169,47.03097706013164,47.03114502729685,47.0311885044237,47.03123751758055,47.03125348705315,47.03122941518691,47.031223307169,47.03125226892799,47.03139366089636,47.03150766434838,47.03159714461716,47.03170721677371,47.03185113749737,47.03191367965677,47.03194821467375,47.03203370250086,47.03212807162808,47.03242952945504,47.03258602474919,47.03274859947869,47.03284007087152,47.03291653428523,47.03297282419638,47.03314385594861,47.03322479146459,47.03333977351197,47.03344224871874,47.03355169291594,47.03361420787928,47.03378163920861,47.03376351915572,47.03377433693605,47.03384528278329,47.03419009622191,47.03425311743475,47.03438020442614,47.03448225650515,47.03459516198338,47.03477951497639,47.03492450575693,47.03500451362788,47.03517948027682,47.03533343997591,47.03552083710968,47.03557488649182,47.0356489065891,47.03571544015141,47.03580539815933,47.03599282132354,47.03616734350513,47.03635685836971,47.03646537749128,47.03656582407801,47.03673328123565,47.03679320508289,47.03686358501166,47.03698804627727,47.03703545042698,47.03706718172138,47.03711610056447,47.03738601056223,47.03754542845876,47.03765135075618,47.03771037986846,47.03785787711426,47.03816878207254,47.03840933285007,47.03855590695241,47.03911925939528,47.03916329927867,47.03924378393541,47.03929792457397,47.03935546001211,47.03941342168194,47.03947337239064,47.03950236283536,47.03955635124883,47.0395674396021,47.03960993125294,47.0396935120877,47.03972304209883,47.0397316528337,47.03976976267734,47.04015563041447,47.04017520984235,47.04024821493928,47.04039621737013,47.04051016036724,47.0407011599783,47.04075068352078,47.04085560144058,47.04108059660681,47.04117347747173,47.0413009195709,47.04139126519856,47.04145479238912,47.04163327931018,47.0417488011545,47.04241886961697,47.04254592273384,47.04259794789883,47.04275920194236,47.04287179965374,47.04296094623928,47.04302146347222,47.04312348919917,47.0434699393656,47.04361543748625,47.04371892361608,47.04390255399642,47.04392707941552,47.0439106244764,47.04393019953147,47.0440127629885,47.0442248518833,47.04466059094355,47.04475307929778,47.04491007720756,47.04496809021619,47.04506123104775,47.0451362565414,47.04534674298089,47.04548079322802,47.04558022889155,47.04568616377931,47.04576763110139,47.0457981652477,47.0458127340542,47.04585435400015,47.04590235446898,47.04600733114068,47.04625479256504,47.04651488402989,47.04666288605557,47.04691130973352,47.0469743264199,47.04702232883039,47.0470489847711,47.04711099277296,47.04716948373316,47.04724754741267,47.04733452278131,47.04737403712476,47.04739945912655,47.0475453801787,47.04767988259725,47.04788195773001,47.04798850528991,47.04816299698386,47.04847406676352,47.0486395345936,47.04882946163162,47.04893494606605,47.04907431727124,47.04923325926948,47.04931424562452,47.04943426521594,47.04950122142141,47.04975214709119,47.04994112069937,47.0500219961523,47.05029547170653,47.05034853813744,47.05039408885099,47.05045019012001,47.05049068097961,47.05056413852891,47.05065803749267,47.05071745337716,47.05100139125935,47.05119815121996,47.05129468869659,47.05153073307715,47.05158520590375,47.05164563841142,47.05167058419765,47.05165506350302,47.05171000825809,47.05184566118153,47.05198477113511,47.05208631468917,47.05215830170702,47.0522428636446,47.05229041572834,47.05236943364928,47.05263739615685,47.05274987539678,47.05303131791508,47.05332574335429,47.05343516552502,47.05353063754812,47.0535627211613,47.05368484463512,47.05374836784207,47.05376492494145,47.0538690007742,47.05394163112491,47.05403015364921,47.05413358362875,47.05433962359856,47.05446560761504,47.05453660987806,47.05465468547154,47.05501074900214,47.05515930483573,47.05523036805797,47.05532381468596,47.0555513906188,47.05570455152162,47.05574858733357,47.05586953580427,47.0559486064146,47.05608209183786,47.0563714046151,47.05641091756014,47.05647337244651,47.05659477874885,47.05712540363339,47.0573870769779,47.05812278139478,47.05863434658385,47.05902237625595,47.05914820259667,47.0592082149714,47.05944665248005,47.05954516232364,47.05978169818646,47.05997721533259,47.06004324158572,47.06015425855571,47.06033873189574,47.06052224351696,47.06074431148453,47.06088024896476,47.06109222358827,47.06123470924857,47.06147466990902,47.0616075772738,47.06193903621919,47.06210410205298,47.06218106816976,47.06232798195156,47.0624044176025,47.06254698547529,47.06281391139004,47.06292993845028,47.06308288725997,47.06321238382986,47.06340135765004,47.06344637632314,47.06354341541864,47.0635973514478,47.06366231732353,47.06372980727678,47.06393333912634,47.06416538733636,47.06431843737631,47.06438547325943,47.064659934398,47.06499094006644,47.06520442522783,47.06543252642017,47.06571760831336,47.06581914594398,47.0658956055252,47.06602752947473,47.06616592378437,47.06642395239064,47.06667338799515,47.06673941232607,47.06698397240108,47.06715848420446,47.06744194475318,47.06761139900303,47.06791288335786,47.06800593066726,47.06812688004704,47.06820582286817,47.06831083062634,47.06855472094933,47.0686757520656,47.06884961093657,47.06895458788129,47.06906050162991,47.06912051505489,47.06921044373048,47.069289007762,47.06932905058726,47.06939246217473,47.06947132518745,47.06954430107172,47.06984272413705,47.06989374180675,47.0699261668727,47.06997106112435,47.07004694008553,47.07010293393461,47.07020735284254,47.07029577135989,47.0705067142304,47.07062660459204,47.07080839262617,47.07105272201245,47.07125400000939,47.07144436587872,47.07157228952539,47.07177676099685,47.07211016352446,47.07256408849605,47.07271214485779,47.07304166192249,47.07324771577652,47.07334832797704,47.07336887968985,47.07335750520906,47.07336804298815,47.07349016265466,47.07363813226716,47.07379912277487,47.07398062047157,47.07414160814739,47.07421615190621,47.0742462522418,47.0743287803021,47.07455488903481,47.07484949454861,47.07510200898268,47.07531651086909,47.0754739902608,47.07561943480192,47.07567345121505,47.0757865411444,47.07587892690243,47.07589783916384,47.07599672685991,47.07609308649394,47.07617139502268,47.07617121916498,47.0761816535146,47.07622760675554,47.07654948629383,47.07679604356971,47.07693011307802,47.07702108821623,47.07706546810389,47.07701086838528,47.07701228914002,47.07703960339344,47.07699405847124,47.07699299603382,47.07695543192129,47.0768941202756,47.0768369875284,47.07678281515018,47.07668662533186,47.07661284846184,47.0766217707294,47.07671465444631,47.07676465603089,47.07684966710151,47.07707854456041,47.07720838552247,47.0772597375332,47.07730861478716,47.07734149448905,47.07735873442621,47.07730305921375,47.07714637284797,47.07705467263386,47.07698996814685,47.07695692721092,47.07688507824917,47.07679337118498,47.0767612841918,47.07662315117805,47.07653003916138,47.07636536061099,47.07618119090093,47.07596287421114,47.07578123681036,47.07563713711752,47.07418976873115,47.0741126815902,47.0740835978201,47.07388436979383,47.0738388329702,47.07384815765072,47.07380741491824,47.07381369590865,47.07393583936808,47.07407149345695,47.07423409536291,47.0743833942365,47.07448821023284,47.07458611583218,47.07462999847653,47.07463579604851,47.07471459222207,47.07478145025959,47.07496515240253,47.07515183003327,47.07557965890114,47.07564305059032,47.07590821364276,47.07657207754109]}],[{"lng":[-90.72813328307859,-90.72843744189041,-90.72924632634668,-90.72949431140358,-90.72981461216574,-90.73009511584954,-90.73038402978163,-90.7315050387092,-90.73211413566814,-90.73248247308162,-90.73296321473488,-90.73354007271867,-90.73424486243164,-90.73455022389396,-90.73493420822692,-90.73552742888793,-90.73632933406498,-90.73681793772006,-90.73706688520721,-90.73733146156945,-90.73765249735025,-90.73801327358319,-90.73824518533515,-90.73857393872431,-90.7387743694524,-90.73903865686695,-90.73935879774126,-90.74020006997436,-90.74136151780969,-90.74277916941266,-90.7434835529307,-90.74379622386316,-90.74404373431005,-90.74437226014626,-90.7451004550163,-90.74532438374592,-90.74562038843661,-90.74607704720941,-90.74614127814368,-90.74618082173002,-90.74625314641945,-90.74656537914255,-90.74672537667836,-90.74780601402182,-90.74799009872589,-90.74819798350775,-90.7483094120024,-90.74860566493275,-90.74878205878103,-90.74898196866057,-90.75018975112691,-90.75076144555685,-90.75096147161806,-90.75121782700114,-90.75139423857649,-90.75158620528906,-90.75181087374547,-90.75213098656025,-90.75230675466287,-90.75259582935921,-90.75277161421494,-90.75315661361748,-90.75350069449314,-90.75380513001609,-90.75389301291814,-90.75405345167242,-90.75432595274924,-90.75451774752121,-90.75469393808812,-90.75511058476252,-90.75551131674631,-90.75595989052771,-90.75607990554532,-90.7563361540267,-90.75673676984307,-90.75680102689788,-90.75694486292504,-90.75715321559406,-90.75773006608151,-90.75818680541872,-90.75858729654553,-90.7591233177362,-90.75970801159455,-90.75991622769529,-90.76017272329489,-90.76072498581169,-90.76110913561739,-90.76148410060915,-90.76196586646073,-90.7623822668008,-90.76319077075809,-90.76353475881712,-90.76380725035906,-90.76407196908274,-90.76428783820586,-90.76453641950768,-90.7646162442414,-90.76480842646627,-90.76485654063906,-90.76487276691462,-90.76482472831603,-90.76474461657089,-90.7647289725484,-90.76464899941014,-90.76437680953943,-90.76394525952252,-90.76384912434185,-90.76380134251556,-90.76367327660508,-90.76356168928046,-90.76330575575932,-90.76316961575169,-90.7629617956439,-90.76220926872426,-90.76192173218961,-90.76176917585067,-90.76157751875654,-90.76136931646022,-90.76072134581672,-90.7602414481662,-90.76008949584077,-90.75975380827209,-90.75913714897584,-90.75820956739456,-90.75785870977565,-90.75736145352143,-90.75700113172793,-90.75665712943595,-90.75644906128814,-90.75622518513373,-90.75571016516385,-90.75551340806442,-90.75529715516079,-90.75523305616797,-90.75492156590396,-90.75493787975168,-90.75484210434114,-90.75480206864079,-90.75484250294053,-90.75484227124129,-90.75476233843338,-90.75468217462009,-90.75468216295899,-90.75481086399401,-90.75482717618188,-90.75485908785905,-90.75495505095554,-90.75503520429396,-90.75529187757566,-90.75531524871876,-90.755303275101,-90.75532919817017,-90.75548419982321,-90.75554801936534,-90.7554844218961,-90.75526023303721,-90.75476471869398,-90.75456456190395,-90.75444453217338,-90.7544284671628,-90.75455674844302,-90.75455715879599,-90.75446114639809,-90.7541971791988,-90.75407692373926,-90.75386951259867,-90.75350148734074,-90.75335714547187,-90.75301311474317,-90.75264512017108,-90.75245356602328,-90.75213913028045,-90.75186626065076,-90.7514375768358,-90.75123753983397,-90.75074148791639,-90.75058134820853,-90.75020490231817,-90.75010745081076,-90.74985950399738,-90.74969934507918,-90.74948280238796,-90.74897093152022,-90.74864260634466,-90.74852243323426,-90.74836976407896,-90.7475044073275,-90.74744825748014,-90.74736807225349,-90.7472318766706,-90.74690330934574,-90.7464789318107,-90.74640668508559,-90.7463021979207,-90.74621350274401,-90.74610165336595,-90.7459815481928,-90.74582856422739,-90.74559659648594,-90.74535567412813,-90.74521998171679,-90.74485939203802,-90.74423518597985,-90.74413917986804,-90.74391479494149,-90.74377812990164,-90.74348161921493,-90.74302522174841,-90.74258444034123,-90.74179091643106,-90.74169485676211,-90.74162313800537,-90.74148674486517,-90.74142271243016,-90.74138290198502,-90.74129452650642,-90.74111820978379,-90.74100628508472,-90.74090929094274,-90.74078950754723,-90.74058114084987,-90.74049331592683,-90.74032416179574,-90.74027638157406,-90.74017253499299,-90.7400759624537,-90.73993165453275,-90.73982774629187,-90.73962747743366,-90.73933920526545,-90.73895530836684,-90.73881089729021,-90.73854631817571,-90.73837844963955,-90.73828976811927,-90.7380735953531,-90.73796183787152,-90.73717644241424,-90.73716086086557,-90.73719976854319,-90.73715214074883,-90.73707155076315,-90.73695931599532,-90.73686378620056,-90.73668685873047,-90.73651882018591,-90.73615086826538,-90.73559855916787,-90.73519101260034,-90.73461453389366,-90.7343905791834,-90.73413417801375,-90.73372675010462,-90.73279037269725,-90.73212588756178,-90.73122994688974,-90.7310135771943,-90.73060572430381,-90.73034131021065,-90.72994927559863,-90.7289568479648,-90.72845234954011,-90.72814070335784,-90.72790860202346,-90.72766015445013,-90.72734030729873,-90.72715629083562,-90.72693243688848,-90.72637264093706,-90.72582042714453,-90.72539629277701,-90.7244995133693,-90.72419564771877,-90.72349183933726,-90.72313142358558,-90.72273992717562,-90.72210761587716,-90.72173111153468,-90.72072277012018,-90.72033897973687,-90.72008238302662,-90.72001911615533,-90.7198671771675,-90.71871441927431,-90.71836263934027,-90.71775375400821,-90.71684988280217,-90.716609981918,-90.71638525753436,-90.71606533438755,-90.71534553552945,-90.71506550521714,-90.71420884928419,-90.71362482273361,-90.71290445816341,-90.71272060244654,-90.71186422160872,-90.71146379684258,-90.71045510288229,-90.70973534359611,-90.70808640617707,-90.70769453321289,-90.70746241162612,-90.70717470965577,-90.70701455583263,-90.7067577086579,-90.706398635274,-90.70602226433536,-90.70579830940288,-90.70392553877168,-90.70310919926978,-90.70284477658593,-90.70269335600513,-90.70244534654815,-90.70223669311667,-90.70194152963089,-90.69988461827721,-90.69954823046379,-90.69906752672809,-90.69845181021411,-90.6978913949872,-90.69758731730626,-90.69730740361676,-90.69696339143486,-90.69663503929524,-90.69631530143876,-90.69613948538665,-90.69572293768638,-90.69557051938871,-90.69488237866047,-90.69437064516853,-90.69416263017486,-90.69377863215152,-90.69355420452642,-90.69325031310998,-90.69295362499173,-90.69270572161687,-90.69240983894984,-90.69220943694538,-90.69197720129249,-90.69186587591444,-90.69178552891282,-90.69166527647047,-90.6909609930009,-90.69073687969268,-90.68992111615673,-90.68972050474487,-90.68954504701529,-90.68933654173938,-90.68929667319506,-90.68931253982527,-90.68927293370785,-90.68928825751674,-90.68922465526101,-90.68910464022787,-90.68889629405284,-90.68888841589346,-90.68914436107347,-90.68916855404491,-90.68913666825485,-90.6891529880306,-90.68910480751248,-90.68892066533536,-90.68888064905614,-90.688688722734,-90.68859238335814,-90.68860860002522,-90.68928901500597,-90.68931226140118,-90.6893448194549,-90.68953674952625,-90.68967272985599,-90.68988113251056,-90.6904568798938,-90.6904490692738,-90.69052900683516,-90.6905538372682,-90.69068137970005,-90.69099388768194,-90.69112941631403,-90.69116124925161,-90.69112147118837,-90.6911295006341,-90.69124144113759,-90.69124154770992,-90.6911216941507,-90.69113769886096,-90.69138578596429,-90.69149802603636,-90.69158573068911,-90.69158571669033,-90.69147372424266,-90.69131393267284,-90.69125011071883,-90.69130605221697,-90.69153755990712,-90.69152957471256,-90.69150562317138,-90.69134557105738,-90.69124159557536,-90.69120972093395,-90.69123359954187,-90.6913457687657,-90.6914103748927,-90.69169805631964,-90.69185011742873,-90.6919461713612,-90.69198616081198,-90.69196207011284,-90.69197056414504,-90.69190583505869,-90.69192234697309,-90.69200273200528,-90.69209029298821,-90.69213828983385,-90.69222682116539,-90.69225002740309,-90.69239454120297,-90.69240292262117,-90.69243488537457,-90.69247476131292,-90.69254705775752,-90.69291556741501,-90.69313908439653,-90.69350749453565,-90.69365964365186,-90.69386751877136,-90.69417988862254,-90.69440368083758,-90.69462068200646,-90.69536557500584,-90.69582989391242,-90.69600518294811,-90.69640569830345,-90.69717499679935,-90.69731872467776,-90.69761540128319,-90.69785541344442,-90.69863161496579,-90.69888811771163,-90.69927223341693,-90.69986521678844,-90.70064185187927,-90.70120194411821,-90.70163424464391,-90.70178708684047,-90.70205916260494,-90.70217902729034,-90.70241131755782,-90.702531719627,-90.70266755311697,-90.70288424127925,-90.70310785844735,-90.70371750866815,-90.70386156741642,-90.70398138251657,-90.70466183790808,-90.70486997660581,-90.7050789382169,-90.70634371476058,-90.70674422686898,-90.70700897118331,-90.70728916581535,-90.70754545255824,-90.70793852529518,-90.70810625481398,-90.7083949402748,-90.70845046178364,-90.7085309997144,-90.70867526078769,-90.70892381785924,-90.70918767679825,-90.70946822644676,-90.70992536944554,-90.71007763422725,-90.71026957171463,-90.71075820749402,-90.71120683752089,-90.71149585667293,-90.71176032514531,-90.7119203846123,-90.71192849703336,-90.71201629059969,-90.71220916628401,-90.71221719049244,-90.7121856575374,-90.71225000154833,-90.71222601689233,-90.71208173550527,-90.71207347098643,-90.71233008729887,-90.71281866089709,-90.71308252702021,-90.71322671625995,-90.71329085383699,-90.7133872750376,-90.71353116951457,-90.71376426992313,-90.71417245533874,-90.714324803341,-90.71472497622938,-90.71515836876034,-90.71531014955886,-90.71539043519631,-90.71547857668061,-90.71559105486213,-90.71564650486314,-90.71580713609463,-90.7160549307247,-90.71626280713728,-90.71658328177287,-90.7176886777242,-90.71870564784957,-90.71981937202391,-90.72012326497349,-90.72048407971452,-90.72097213315219,-90.72128473471059,-90.72151746172439,-90.72181377418791,-90.72218232618141,-90.72238207658259,-90.72262267332333,-90.72319957842393,-90.72359222734578,-90.72404879849415,-90.72421660587956,-90.72436827873288,-90.72472924987865,-90.72530558390756,-90.72568986976449,-90.72618692291994,-90.72664344823865,-90.726947102016,-90.72729217501764,-90.72760416442388,-90.72813328307859],"lat":[46.95828873613107,46.95833517159662,46.95834689461145,46.95837005925558,46.95842538877435,46.9584539713201,46.95852693299658,46.95874699719185,46.95883590587439,46.95891959701553,46.9591133746442,46.95945782263706,46.95975532960097,46.95991872589384,46.96021434715657,46.96058174501204,46.96124981752761,46.96189403131905,46.96243461142866,46.96282660819646,46.96320192804114,46.96356912102551,46.96373579343425,46.96389509136498,46.96395285327736,46.96399445398951,46.96400532377926,46.96388683772408,46.96360373297961,46.96355067771985,46.96336669029799,46.9632240514501,46.96306271426671,46.96279005000588,46.96225100622119,46.96204875970653,46.96186066678952,46.96167602814722,46.96162780327478,46.96154712021343,46.96149040583464,46.96140625460473,46.96133321648318,46.96050389356683,46.96033227591945,46.96007051203255,46.95990218004994,46.95955659735662,46.95939346660078,46.95926729712819,46.9586069715173,46.9582809520474,46.95810472503204,46.9579624351024,46.95783079392147,46.95775416810256,46.95757833985858,46.95741369559403,46.95726574707382,46.95708499346934,46.95690892015732,46.95665666914036,46.95632763596516,46.95586668754677,46.9557783702321,46.95568001483751,46.95537281661768,46.95528494127485,46.95510942674503,46.95480184267112,46.95438524695381,46.95409994774947,46.95399004559747,46.95363851993627,46.95324385907465,46.95311182475521,46.95291458510489,46.95274954137337,46.95198138181275,46.95152053856611,46.95123554547447,46.95092265373758,46.95065387309819,46.95053831770397,46.95049724527227,46.9501431835311,46.94992409342653,46.94975230931026,46.94949600934897,46.94940830938465,46.9490845867803,46.94884325808349,46.94854166828556,46.94841560121784,46.94826174414453,46.94795412181832,46.94773480103136,46.94727344990824,46.94707627803944,46.94665884408438,46.94619797395482,46.9460224663456,46.9458465305156,46.94559396856052,46.94516552801216,46.94424320973693,46.9439800688917,46.94373854207347,46.94345312020142,46.94308490960684,46.94270078546049,46.94256896092388,46.9424207386559,46.94205285881405,46.94187141965093,46.94173970268388,46.94151487899282,46.94133909800834,46.94087208612891,46.94035614751363,46.94009281255089,46.93966984363077,46.93932410437576,46.93891179915814,46.93877970085874,46.93845622112867,46.93826400282789,46.93800586965324,46.93789588281058,46.93774212901238,46.93729277474678,46.93711071951682,46.93697322560614,46.93679423258862,46.93616073829849,46.93591934748462,46.93567756983457,46.93537018318848,46.93523830721396,46.93504652116809,46.9349092502041,46.93466793393306,46.93449189336803,46.9341845177287,46.93385538724588,46.933701631909,46.9335480192869,46.93335063981977,46.93297717928409,46.93291684385418,46.93288261446617,46.93288694283078,46.93249446705174,46.93209921812914,46.9317807394573,46.93136882878886,46.93101720246677,46.93091278402237,46.93081402396919,46.93069320769036,46.93038583732564,46.93029809373905,46.93015530556236,46.92989157700524,46.92960103028728,46.92944716263767,46.92931516144191,46.92923849941076,46.92900228823091,46.92884272992381,46.92876580839244,46.92870769573323,46.92865718029024,46.92850195399775,46.92837559460201,46.92812856500605,46.92809586986873,46.92806515174951,46.92805341680944,46.92799429654136,46.92790142265175,46.92785672000776,46.92782857348946,46.92774523185963,46.92769371164966,46.92757828631278,46.92639551571806,46.92637226308291,46.92630304442984,46.92610258172815,46.92579426084422,46.92544382406064,46.92532562104947,46.92495453305401,46.92480437871134,46.92467181134327,46.92421027361193,46.92398236014505,46.92371221449293,46.9233881351119,46.9232821564208,46.92314895546844,46.92303771924102,46.92298153667996,46.922783890698,46.92263686059621,46.92244699680312,46.92197414229937,46.92141287917676,46.92021385197609,46.92015317072196,46.92016094861032,46.92012189953817,46.92006213409845,46.92000277198763,46.91993360266472,46.91967827600612,46.91956819983133,46.91935003767895,46.91923551639229,46.91909625718016,46.91897758905264,46.9184072513105,46.91818596009313,46.91797684281048,46.91784867005115,46.91771124428988,46.91764610973606,46.91758778807576,46.91754634347119,46.91738571346634,46.91727022373421,46.91698171372742,46.91686131149948,46.916679654936,46.91641895456388,46.91611089876984,46.91513226183471,46.91507330363111,46.91476821656562,46.91449742889245,46.91430672101605,46.91414265055886,46.91405946294797,46.91396611231129,46.91392219765461,46.91387450941178,46.91384993665417,46.91387786307557,46.9140064241513,46.9140151743019,46.91408206228741,46.91420897142834,46.91433926489886,46.91433508258111,46.91424069292155,46.91417346020776,46.91417887584682,46.914200247353,46.9142826122433,46.91424506645502,46.91414479023181,46.91410290288947,46.91411618671416,46.91416501443771,46.91412317704299,46.91414178218762,46.91421857019421,46.9144904008218,46.91465532270249,46.91473225503962,46.91497077926269,46.91501881998727,46.91523418654074,46.91525839865653,46.91526030641832,46.91520749166481,46.91519524176845,46.9152876473412,46.91537442739275,46.91545928270572,46.91548499090371,46.91550900180852,46.91551343496243,46.91560057067657,46.91582711222514,46.91606112574951,46.91610593615599,46.9161191528562,46.91607222178389,46.91586018358323,46.91585012095074,46.91593196194439,46.91602334500597,46.91610825907423,46.91610884239459,46.91615016526316,46.916129033355,46.9161043601484,46.91604921009549,46.91586762971193,46.91577893950519,46.91576068800519,46.91579114990529,46.91584613189112,46.91597595346776,46.91600966726865,46.91613234931506,46.91617310196752,46.91619812887517,46.91613228034571,46.9161541504134,46.91618713899108,46.91627190080919,46.91629061582586,46.91628455248496,46.91622515479859,46.91623620777251,46.91622733508643,46.91631376973192,46.91636105732164,46.9164270293064,46.9164259225371,46.91645051376571,46.91644857492648,46.91647807915314,46.91646564957389,46.91633994733657,46.91632793977398,46.91633661687209,46.91630822299311,46.91628136338147,46.9161970747768,46.91617031655893,46.91615528245506,46.91615820457874,46.91622044946971,46.91638140814492,46.91643548690629,46.91647176074699,46.91652755410735,46.91659834328637,46.91675767474038,46.9171393204985,46.91729703201355,46.91759553903639,46.9177621050993,46.91800163375556,46.91838478040134,46.91860436803993,46.91875331829897,46.91912139111055,46.91958024215185,46.9197414786406,46.91982431918277,46.91993243631538,46.92002247103309,46.92004117883131,46.92016758014991,46.92033762807918,46.92055406652153,46.92070171310999,46.92087324058573,46.92098540178674,46.92109398297243,46.92123123470713,46.92137568167209,46.92248745570642,46.9226678535457,46.92319016016032,46.92368900632933,46.92389010092736,46.92413687637646,46.92476502239752,46.92482806160297,46.92488382279448,46.92509121014717,46.92527379478719,46.92560374236319,46.92576884215787,46.92585020168361,46.92591680799789,46.92596681791423,46.9261489346541,46.92622092305605,46.92631726159498,46.92638071849765,46.92655244741388,46.92672556207987,46.927001753043,46.92709624154622,46.92719759256222,46.92728460802545,46.92730130360571,46.92737408441275,46.92746886201427,46.92751840414832,46.92760291496958,46.92782941617399,46.92801170876979,46.92818231537812,46.92850669841864,46.92912075982193,46.92932453073281,46.92963662855225,46.92990511951269,46.93003220984145,46.93014107937179,46.93040613048239,46.9304600718002,46.93062975422956,46.93085969011956,46.93110892423132,46.93162808056026,46.93232633585551,46.93269756354401,46.93284197292371,46.9330334497587,46.9331104494598,46.93316931446374,46.93326918325118,46.93355896149081,46.93453367619361,46.9349294022428,46.93544966852392,46.93575470976646,46.93601948126958,46.93633198615769,46.93649373516207,46.93660602988807,46.93731410828976,46.93778710500725,46.93794352155022,46.93818124427663,46.93874124169589,46.93886972740833,46.93923575012849,46.93937995739654,46.93974249091691,46.93989165802092,46.94016040256859,46.9404824274742,46.94081288696128,46.94109911054718,46.94128318908428,46.94138517722654,46.94162479198717,46.94168536148953,46.94173961527854,46.94180974616972,46.94199226368209,46.94217203649769,46.94231633335325,46.94284127483192,46.94302430299324,46.94314336404385,46.94393108019916,46.94411539877436,46.94426822293568,46.94499102261939,46.94540812567974,46.94583618863162,46.94637720438563,46.94666133519905,46.9469794900312,46.94714942967938,46.94783437559114,46.9482766642527,46.94843589520878,46.94863185381329,46.94888903243261,46.94909212201025,46.94937722644872,46.94978665211845,46.95002811628513,46.95028845267228,46.95081129469128,46.95138275211958,46.95196419543518,46.95292374452022,46.95331813933264,46.9536201142822,46.95389178363767,46.95428259861265,46.954485021594,46.95464663607993,46.95500787765022,46.9550884552979,46.95523389644061,46.9552918800397,46.9554410160046,46.9559233475855,46.95640145818476,46.95661991053667,46.95681017485438,46.95701936136298,46.95718437868919,46.95738652446663,46.95759714159787,46.9577491733728,46.95806726009069,46.95835026947379,46.95855179468608,46.95856647851084,46.95852318284208,46.95839537292076,46.95836465059869,46.95833665450742,46.95834578808885,46.95831861631063,46.95820356355568,46.95790586344375,46.9578454893599,46.95789473586262,46.9578917014237,46.95784500043573,46.95782280602777,46.95785627065685,46.95790598469117,46.9580109789879,46.95823418840739,46.95830548265518,46.95835964294135,46.9584386793968,46.95843788469208,46.95836525717676,46.95838219393959,46.95842116551335,46.95835588943036,46.95833143098572,46.95828962631406,46.95829491149599,46.95834038279997,46.95831933307753,46.9582631491938,46.95825104108464,46.95828873613107]}],[{"lng":[-90.73142231212299,-90.73159895941177,-90.73173476673934,-90.7319828621289,-90.73218220477052,-90.73244652586141,-90.73262249623967,-90.73325430355659,-90.73390928249898,-90.73450117256236,-90.73480481521612,-90.73510040149526,-90.73770680086072,-90.7380745408081,-90.73818615335917,-90.73829834600983,-90.73858574216631,-90.73897713697653,-90.73924884804345,-90.73976866539097,-90.74002404838271,-90.74048798709869,-90.74151836197599,-90.74175894769917,-90.74222217788464,-90.74301305222315,-90.74317279460634,-90.74329261459188,-90.74338829625054,-90.74347613153815,-90.74395475328849,-90.74452990079754,-90.745121204241,-90.74545658939712,-90.745760965396,-90.74589663617537,-90.74602460999738,-90.74632826828791,-90.7465754491195,-90.7466877491498,-90.7469425757931,-90.74732646066965,-90.74743796487203,-90.7483727488377,-90.74855678908943,-90.74897158486216,-90.74931509249485,-90.74936314803381,-90.74976964668976,-90.7501858551223,-90.75024416223135,-90.75050681480747,-90.75109547727851,-90.75136587971002,-90.75149287397819,-90.75161116740172,-90.75174636043371,-90.75178582413031,-90.75180909920725,-90.75195116384447,-90.75198951291155,-90.75202897254053,-90.75218763366517,-90.75323733726583,-90.75358732475334,-90.75385716403272,-90.75402483574803,-90.75416000386208,-90.75459011986662,-90.75470152188643,-90.75487573013575,-90.75503457071112,-90.75559215780376,-90.75597357013267,-90.75621253788918,-90.75648338090424,-90.75661864607333,-90.75670553261591,-90.75675377259161,-90.75695288586859,-90.75703237628466,-90.7570800300947,-90.75707929936645,-90.75701301906105,-90.7568567563989,-90.75707044301512,-90.75717427451784,-90.75734129957486,-90.75758763757042,-90.75765915334543,-90.75773004591395,-90.75800802662229,-90.75820597413558,-90.75821924307049,-90.75818623351823,-90.75817739885071,-90.75820085581584,-90.75814454177979,-90.75810384322587,-90.75831808001334,-90.75866557404265,-90.75870531916692,-90.75868819329465,-90.75898843988959,-90.75909792831126,-90.75912843113906,-90.75923937367669,-90.75933433144922,-90.75934905739855,-90.75953056473388,-90.75968715464887,-90.75992522164928,-90.76008347376347,-90.76010733485312,-90.76008956320466,-90.76021490669696,-90.76072097416373,-90.76079930719504,-90.76080604527041,-90.76091717855059,-90.76105953057878,-90.76110600849906,-90.76120904753429,-90.76125604354357,-90.76159637413438,-90.76194575058315,-90.76207305276354,-90.76254804635607,-90.76288907330988,-90.76316576996523,-90.76333248770744,-90.76361610797457,-90.76366275450985,-90.76359031131695,-90.76342245364998,-90.7628467392163,-90.76236741781923,-90.7615672188717,-90.76022394570408,-90.75990421218778,-90.75964899099262,-90.75923426362323,-90.75894724461153,-90.75859583105661,-90.75843567605628,-90.75782982888623,-90.75693611687632,-90.75677621586746,-90.75658485941565,-90.75626483623185,-90.75613699513811,-90.75597717285784,-90.7556583581249,-90.75537066192986,-90.75517949536962,-90.75495663954048,-90.75396779267776,-90.75377605469987,-90.75339256616003,-90.75320126019342,-90.75304173982244,-90.75237222972538,-90.75189313352703,-90.75174200657435,-90.75143128898068,-90.75120856777045,-90.75025084610063,-90.75018615582711,-90.7500585069039,-90.74935616240265,-90.74926014560582,-90.74918051600461,-90.74910877759011,-90.74898107143996,-90.74882874393748,-90.74863752089401,-90.74803850390443,-90.74770301547757,-90.7474874447429,-90.74728818983498,-90.7470720737532,-90.74688908886455,-90.74665695519336,-90.74616184009361,-90.74557947796606,-90.74533967702834,-90.74524335018216,-90.74501166322828,-90.74484407047512,-90.74470919959431,-90.74447740919331,-90.7440458312618,-90.74357448308869,-90.74314300468389,-90.74248028272989,-90.74237594574163,-90.74224840074409,-90.74200947143973,-90.74181745619326,-90.74167402841607,-90.74157773847753,-90.74150628316393,-90.74137839195031,-90.74089111741419,-90.74059584093015,-90.74031602954742,-90.73992420864505,-90.73982024958823,-90.73973333755784,-90.7396210631028,-90.7396533931951,-90.73956499141522,-90.73945365022954,-90.73947722566925,-90.73946180309778,-90.7393416696175,-90.73923805567388,-90.73918194301685,-90.73892712060663,-90.7386476257097,-90.73845550996134,-90.73789702484743,-90.73763323002359,-90.73754589296165,-90.73732256705327,-90.73717057912373,-90.73699476995634,-90.73665956158281,-90.73651593626403,-90.73629208866467,-90.7359171930899,-90.73566104828868,-90.73531010229688,-90.73499863260267,-90.7345595015272,-90.73444764656011,-90.73439127360962,-90.7342473409611,-90.73412779928562,-90.7339121970859,-90.73380075194562,-90.73370467052057,-90.73363289298956,-90.73299400946541,-90.73277034849906,-90.732714442662,-90.73269073086561,-90.73261051021574,-90.73233887978752,-90.73188374818605,-90.73178816050878,-90.7316843774624,-90.73151680825798,-90.73146824908795,-90.73069437824317,-90.73059050563037,-90.73051890764337,-90.73043071795088,-90.7303190536,-90.73016718893049,-90.72964811018628,-90.72963242949864,-90.72956074025923,-90.72942472326935,-90.72916880846296,-90.728737808585,-90.72860942748638,-90.72856197257656,-90.72846567648689,-90.72824272768815,-90.7281624332273,-90.72794633239269,-90.72779519761063,-90.72771504512602,-90.7276434088302,-90.72688496092903,-90.72678831879466,-90.72646092333738,-90.72633409256972,-90.72622229807442,-90.72609485819646,-90.725487281657,-90.72519182595187,-90.72500015023938,-90.72474437809036,-90.72453613430281,-90.72408929508175,-90.72389751920463,-90.72377766382995,-90.72371347663847,-90.72370595541548,-90.72351389214381,-90.72342616460696,-90.72334670338078,-90.72293106835181,-90.72261214141196,-90.72252386674441,-90.72246889602549,-90.72219725548872,-90.72208526865437,-90.72185330546853,-90.72175748122167,-90.72155754193034,-90.72128602606961,-90.72101408647498,-90.72082261265685,-90.72079882549953,-90.72061523572879,-90.72051158403342,-90.72066349656812,-90.72067110147883,-90.72073500759628,-90.72099150962973,-90.72131167627302,-90.72143160015942,-90.72154302535613,-90.72178330083609,-90.72243933855015,-90.72261592839432,-90.7233515666952,-90.72363964007049,-90.72371989065965,-90.72423205905694,-90.72442356714643,-90.72459972959241,-90.72480773176123,-90.72528007387007,-90.72535961505467,-90.72547172285569,-90.72552034609424,-90.72608819107654,-90.7263837603999,-90.72644804966968,-90.72643221996734,-90.72635247261051,-90.72648856028157,-90.72663188099318,-90.72692836910893,-90.72714371462378,-90.72730450456193,-90.72739183486651,-90.72767984329539,-90.72786350210407,-90.72819991152427,-90.72840772852535,-90.72855972412205,-90.72879888931892,-90.72923095387789,-90.72948755290727,-90.72964725959687,-90.73012680060097,-90.73047909358918,-90.73092686284211,-90.73124632311514,-90.73142231212299],"lat":[46.87310850265391,46.87316193272248,46.87322743270744,46.87340807637366,46.87350185532596,46.87357890476579,46.87358227749798,46.87348261927665,46.8733378116163,46.87322827398275,46.87312171413681,46.87305569588415,46.87191461819407,46.87172832736495,46.87161399703434,46.87142260672928,46.87123908303587,46.87095421472636,46.87079329022368,46.87066394596465,46.87053855919028,46.87019247090907,46.86956036682342,46.86940301448837,46.86900742681834,46.86816763937841,46.86803611498426,46.867894166396,46.86766688325742,46.86752457891407,46.86699839851119,46.86651490077718,46.86610328600314,46.8658356292181,46.86569753743059,46.86566459530857,46.86560863906854,46.86538955927068,46.86517815793541,46.86502725222657,46.86477586666781,46.86451801629538,46.86439861294952,46.86353984831494,46.86330016955545,46.86296674195356,46.86246054633973,46.86234887156209,46.86186194910322,46.86139577137801,46.86131383594859,46.86112651035233,46.86044490689973,46.86004942737644,46.85980730609411,46.85941169550538,46.85925782347609,46.85914789019274,46.85890645089093,46.85851068436222,46.85802729744837,46.85791736104532,46.85765366013478,46.85620241115789,46.85587220488723,46.85541035275992,46.85532263288153,46.85516819599185,46.85479415027169,46.85464043266468,46.85428832066073,46.85406848545437,46.85360641742355,46.85303470833176,46.85285820959488,46.85261625550655,46.85244044608199,46.85226439062857,46.85222582484158,46.85215982795383,46.8520991207785,46.85198969097534,46.85187945829357,46.85168416953033,46.85153221720518,46.85151168093527,46.85146206098785,46.85132990797009,46.85106618054098,46.85093409648578,46.85058266431776,46.85020848892331,46.84976903671981,46.84902258976152,46.84889063318701,46.848583034659,46.84847320618408,46.84837458933875,46.84813301054897,46.84780312685965,46.84683623662463,46.84666049191766,46.84646318588862,46.84560572599315,46.84505661893871,46.84466158229566,46.8444195563531,46.84417764362696,46.84382658201685,46.84329893121103,46.84257402941295,46.84213430551874,46.84176036031165,46.8416505261973,46.84123330988863,46.84061829270441,46.8392774434104,46.83890402571463,46.83868462888483,46.83848647213849,46.83809069151245,46.83778328810065,46.83756381407456,46.83732221111707,46.83655277889733,46.83604706706195,46.8358049321215,46.83479387293974,46.83413410403846,46.83347476420158,46.83312325176314,46.83228838282599,46.83193654611343,46.83182679152269,46.83175029068119,46.83166357895085,46.83155484422431,46.83129863756731,46.83094422837645,46.83090641658357,46.8309396100751,46.83111053019194,46.83115517958284,46.83116650934274,46.83120019047713,46.83138812201974,46.83162014005094,46.83164256698755,46.83164271157631,46.83155539372984,46.83155567933144,46.8315837306388,46.8316994503834,46.83175477854225,46.8318269085966,46.8319481806699,46.83241084152189,46.83247172158012,46.83250518247484,46.83253849986304,46.83258848157754,46.83288591614348,46.83305723570636,46.8331510304246,46.83343710408525,46.83356905181073,46.83382899279331,46.83386204143164,46.83390618650178,46.83426118866405,46.83434056002693,46.83447831407187,46.83453559232818,46.83460504598517,46.83464260226571,46.83480077361886,46.83501391486161,46.83520059108918,46.83537635657284,46.83545808779592,46.83568335016514,46.83575653640094,46.83594984357616,46.83621010688172,46.83677015896284,46.83691345538787,46.83706031366969,46.83716812716423,46.83731770201803,46.83737369849083,46.83750400645673,46.83764854431345,46.83794070316296,46.83830122211295,46.83868404353074,46.83878539888157,46.83901682455946,46.83916517344537,46.83932783967273,46.83938838685412,46.83944919234003,46.83958745242613,46.83967489717585,46.83985409819795,46.84007817069629,46.84023465291038,46.84026249708446,46.84033234897058,46.84056913330821,46.84063004286551,46.84071644963559,46.84075526718581,46.84082460437678,46.84087000690664,46.84100059758457,46.84105649004471,46.84112184213156,46.84118407285668,46.84157942734534,46.84178989690601,46.84200655156967,46.84249497629479,46.84280489531441,46.84295169204854,46.84319441850903,46.84343893331568,46.84362004864474,46.84401366542283,46.84415069934899,46.84432593462425,46.84466524709372,46.84496667538792,46.84531989171166,46.84559242832228,46.84588096428359,46.84600429330386,46.84613851945116,46.84628398930327,46.84647486218699,46.84674509228675,46.84695897101327,46.84709682245273,46.84715352662648,46.84743377684821,46.84756400815664,46.84770272443342,46.84791829103556,46.84825852214173,46.84859941227611,46.84895047228804,46.8491558107141,46.84927065153125,46.84948769875954,46.84968486457264,46.8506234580478,46.85079228880252,46.85107452996775,46.85122132830232,46.8512996568148,46.8514361736999,46.85233488489825,46.85247841070413,46.85260316794606,46.85269964797329,46.85281151838807,46.8530414881455,46.85318741496562,46.85328558082823,46.8534093686645,46.85362564046466,46.85365989685327,46.85386712317172,46.85408912356392,46.85440684648172,46.85453610341143,46.85541214136121,46.85569341184155,46.85606951368266,46.85630091874963,46.85637081020364,46.85655722255775,46.85710326722816,46.85741672965174,46.85755236823261,46.85779921173916,46.85810537195126,46.85896085690153,46.85915048635768,46.85944484022089,46.85948855193072,46.85956959131908,46.85992120376638,46.86013548641864,46.86023272876976,46.86127755400183,46.86173908036541,46.86206585360964,46.86276643601249,46.86311686272671,46.86320418211371,46.86330351424547,46.8633732962729,46.86356747559854,46.86398932771526,46.86434875048104,46.8646553611885,46.86480793234931,46.86521348255351,46.8656792720432,46.86581723694252,46.86592574010537,46.86604401419719,46.86618412971562,46.86642452461345,46.86656156837753,46.86682914750404,46.86725733734215,46.86826446482048,46.86837639940781,46.86911079538942,46.86934069901818,46.86942343399841,46.86982064889904,46.8700044821419,46.87020584425163,46.87057910839305,46.87084946603405,46.87090970472891,46.871073788492,46.87118259271605,46.87166212595756,46.87192909585067,46.87207435961196,46.87217738625225,46.87231512721297,46.87237163520663,46.87235666274002,46.87244814496191,46.87245239894495,46.87257680445177,46.87260606005628,46.87261603989901,46.87264243090397,46.87277471355572,46.87282851048604,46.87281798166394,46.87276415275082,46.87281314612562,46.87292624646846,46.87297022476287,46.87304253400763,46.87304534912924,46.8731032335388,46.87307363336604,46.87310850265391]}],[{"lng":[-90.75713209542118,-90.75710779423062,-90.75709241711657,-90.75715606375783,-90.75727651986703,-90.75730779497309,-90.75742876540171,-90.75751682593297,-90.75762070084741,-90.7578455267756,-90.75802969993846,-90.75821389851215,-90.75844648839565,-90.75870319023021,-90.7587427029021,-90.75891202758447,-90.75933635997832,-90.75940882728311,-90.75939264491721,-90.75940096261179,-90.75946516639956,-90.75984266532285,-90.76029949689826,-90.76038817302481,-90.76043572567266,-90.76054897308413,-90.76118246280818,-90.76147863212208,-90.76187251557133,-90.76215286618616,-90.76226522594789,-90.76259435352058,-90.76277850972869,-90.76305182236356,-90.7634844039064,-90.7636773328915,-90.76398206678972,-90.76426286015337,-90.76441481267095,-90.76509754588771,-90.76533815500196,-90.76556288871403,-90.76573118403381,-90.7658595715391,-90.76604409157189,-90.76618075096039,-90.76642941923478,-90.76671874236331,-90.76692731306844,-90.76707122618342,-90.76728785999845,-90.76768102297912,-90.76828314042706,-90.7684278353906,-90.76901344806758,-90.76916594939252,-90.76936590061246,-90.76985627527245,-90.77020094105438,-90.77046628397699,-90.77159779465563,-90.77166219146903,-90.77184669110848,-90.77220799491531,-90.77274616068917,-90.77284248050395,-90.77288240505976,-90.77308312691662,-90.77322768923449,-90.77345222883065,-90.773845503831,-90.77412665350124,-90.7745435663103,-90.77485634725333,-90.77533742637436,-90.77580267961307,-90.77614771410106,-90.77645279265569,-90.77660496630911,-90.77654155002226,-90.77610839485202,-90.77527435790871,-90.77472936472587,-90.77403293048616,-90.77400937676815,-90.77408942707724,-90.77435432420516,-90.77455495057978,-90.77468417690585,-90.77466836617715,-90.77456414145564,-90.77449227484631,-90.77445272222644,-90.77450904304729,-90.77450154662607,-90.77457342324773,-90.77460580047205,-90.77453395849751,-90.77459044599519,-90.77460736264405,-90.77459148388415,-90.77449540147654,-90.77436800343281,-90.77431944728021,-90.77423133848264,-90.77406310667639,-90.77387867555841,-90.77365453244404,-90.77359863571934,-90.77331888374469,-90.77317477703934,-90.77295825190684,-90.77284578592507,-90.77295052586157,-90.77299102359284,-90.77283895229863,-90.77271934156197,-90.77244727242373,-90.77178998894664,-90.77169427902366,-90.77165445943731,-90.7716149530914,-90.77146316765703,-90.77143909084326,-90.77135182210996,-90.77132010782199,-90.77109568843359,-90.77079963793197,-90.77059895956741,-90.77023127987967,-90.76982241800495,-90.76938216925898,-90.76882936181244,-90.76854093496422,-90.76823600322264,-90.76806790595137,-90.7677792514161,-90.7674036786983,-90.76701039146779,-90.76656238898694,-90.76605700348601,-90.76571257735286,-90.76522341836922,-90.76477474381176,-90.76440550760847,-90.76353986529729,-90.76286624513635,-90.76246527850545,-90.76198455762697,-90.76127168218775,-90.76064572358523,-90.76020524879534,-90.75972471960817,-90.75893127611052,-90.758643662841,-90.75826697774879,-90.75762656310535,-90.75722192354957,-90.75709165236202,-90.75658558190511,-90.75620824745275,-90.75581525968357,-90.75544589423579,-90.75511625461951,-90.75468176670772,-90.75394092479429,-90.75359440798177,-90.75316831970535,-90.75306316381936,-90.75299028123736,-90.75283642589535,-90.75203139972432,-90.75162273323748,-90.75126188646254,-90.75085318067269,-90.75052435147423,-90.75018782542546,-90.74958584589626,-90.74880198552648,-90.74855342449347,-90.74839307987179,-90.74814432009188,-90.74791247336722,-90.74779247360679,-90.74779163717247,-90.74777392133861,-90.74778988600251,-90.74787788419462,-90.74803088185149,-90.74866448427962,-90.74878491051312,-90.74881678282118,-90.74885779905142,-90.7487853786721,-90.74851341226727,-90.74840132550713,-90.7477772737091,-90.7476012368398,-90.74695176975253,-90.74683213194822,-90.74655934662971,-90.74639912240141,-90.74622352072041,-90.74612736079013,-90.74558273736658,-90.74506938436261,-90.74466884982348,-90.74430050699199,-90.74402803527235,-90.74369141036387,-90.74357935187334,-90.74344358915681,-90.74325904504383,-90.74309067419088,-90.74229762312231,-90.74219390101064,-90.74215357007986,-90.74204137862449,-90.74184133065877,-90.74169699946374,-90.74159300431272,-90.74136115785083,-90.74130473037341,-90.74110492886597,-90.74100106914027,-90.74086496686337,-90.74034393856179,-90.73995952153044,-90.73989547622891,-90.73991237706127,-90.73987196784852,-90.73981623733569,-90.73972808142693,-90.7394556727872,-90.73940765128654,-90.73938416645606,-90.73933562443101,-90.73915170259841,-90.73909531086075,-90.73909527963345,-90.73919227256373,-90.73911219481553,-90.73896845943642,-90.73899193353931,-90.73915319903325,-90.73920964032217,-90.73921748577209,-90.7391854408056,-90.73924189139029,-90.73920152427624,-90.73926660708877,-90.7392098892895,-90.73929142668564,-90.73949110634982,-90.7395396142096,-90.73955592801848,-90.73972487528887,-90.73977215808161,-90.73980493555376,-90.73980485272945,-90.73986158355963,-90.74000564760695,-90.74009427760365,-90.74027877837008,-90.74041541279513,-90.74050367709701,-90.74052765147647,-90.74047172117413,-90.74049618106983,-90.74054433157174,-90.74067268381962,-90.74080145284263,-90.74089714550628,-90.74104182810353,-90.74111395192509,-90.74113000769051,-90.74103408156724,-90.74084171107843,-90.74076184469185,-90.74087450092543,-90.74094609004109,-90.74136270375199,-90.74149969125371,-90.7419648498672,-90.74219791491755,-90.7425419371266,-90.74273449538924,-90.74287947321399,-90.74288763571658,-90.74293533893876,-90.743256018995,-90.7434655745505,-90.74355316320407,-90.74352901090454,-90.74353751241038,-90.74377843202898,-90.74389041556277,-90.74403544469962,-90.74429981429914,-90.74449260161093,-90.74514212919364,-90.74535124388032,-90.7453752095,-90.74526315988426,-90.74537547006548,-90.74533571430884,-90.74538366849097,-90.74572082561028,-90.74579356886311,-90.74580117575633,-90.74568177335667,-90.74570572102449,-90.7457696271379,-90.74600216431536,-90.7460258541639,-90.74599446252094,-90.74587408911667,-90.74559376561517,-90.74550500495431,-90.74545763352685,-90.74547325729984,-90.74559372557687,-90.74546615577866,-90.74545817151738,-90.74557008762108,-90.7458828502162,-90.74607548767588,-90.74638832559801,-90.74666907877926,-90.74672501373531,-90.74681321682063,-90.74686209714876,-90.74685331477991,-90.7467256774907,-90.74629297883942,-90.74608495237864,-90.74569977321752,-90.74565229230019,-90.74565227580241,-90.74569993189161,-90.74587654988203,-90.74594072314643,-90.74602062561254,-90.7461332859129,-90.74671893418531,-90.74685531468084,-90.74712734763183,-90.74725563568133,-90.74744781316419,-90.74772037170193,-90.74870744218289,-90.74946117987912,-90.74978159713487,-90.74996609846193,-90.75018739610168,-90.75037983113104,-90.75055642682936,-90.75058012548826,-90.75056391534036,-90.75065178816958,-90.75114118335739,-90.75122956279074,-90.75118943252478,-90.75112423931688,-90.75113256343327,-90.75119692647182,-90.75142906195263,-90.75194228920266,-90.75210301312707,-90.75231898181327,-90.7525751426563,-90.75257533100451,-90.75261536320855,-90.75259052210619,-90.75260659771853,-90.75267121720827,-90.75283152816969,-90.75301607974269,-90.75349666860552,-90.75356888347223,-90.75353588113023,-90.75363230183609,-90.75387322496222,-90.75402512344172,-90.75408087979744,-90.75420183605414,-90.75433028509129,-90.75442629320229,-90.75449046998453,-90.75451453151122,-90.75458611289399,-90.75493117724596,-90.7550673156835,-90.75514697549593,-90.75525076026391,-90.75523512883346,-90.75530656515633,-90.75539539379857,-90.75564374782194,-90.75614112520351,-90.75611671061294,-90.75628498808591,-90.75623620885204,-90.75623578688338,-90.75631623497722,-90.75664476634101,-90.75685285472342,-90.75703704464664,-90.75710158303963,-90.75703694228416,-90.75695729843126,-90.7569645494719,-90.75699692426772,-90.7571495117667,-90.75716499859469,-90.75710035718468,-90.75709268217244,-90.75713209542118],"lat":[47.03357490572498,47.03360149901638,47.03367752999113,47.03372828833369,47.03375336181892,47.03387070522191,47.03399025887504,47.03416740559296,47.03424152000887,47.03425915186413,47.03433948739777,47.03445075257594,47.03452288926562,47.03455493518073,47.0346727807753,47.03472115240591,47.03491406351271,47.03486127855179,47.03479333051153,47.03471284795764,47.03462862439883,47.03441970722837,47.03435199925812,47.03428223166064,47.03418405388883,47.0340781278928,47.03399630648206,47.03391166253066,47.03384323911899,47.03374519646975,47.03363477900527,47.03343854976719,47.03340188958222,47.03341637746027,47.03337975210716,47.03341052289525,47.03326338273744,47.03319683322027,47.03312326370773,47.0325742806726,47.03243038153733,47.03232708063373,47.03221740619857,47.0321929269954,47.03212476330574,47.03204623663773,47.03186234643836,47.0316742468276,47.03161998429926,47.03155996544967,47.03137966501092,47.03100470122212,47.03074645156531,47.03065492933008,47.03036472384922,47.03027314946511,47.03019194325956,47.02980057751878,47.02965877804134,47.02943483562024,47.02830011903222,47.02811689797827,47.02787775032817,47.02749342721137,47.0268829400101,47.02671806698991,47.02660643742011,47.02620969657989,47.02599668807211,47.02574039294284,47.02546439608186,47.02531233214651,47.02513572317981,47.02495306563352,47.02477771113236,47.02458896082059,47.02453262847526,47.02435845960596,47.02401940929055,47.02364470350577,47.02346541174748,47.02294969726885,47.02254337747165,47.02187261392383,47.02149482759084,47.02117257790307,47.02063761071553,47.0203218589789,47.01995990632307,47.01949207626546,47.01925150327207,47.01891678207098,47.01857003404469,47.0178868712229,47.01756746432305,47.01716371701549,47.01678667804921,47.016510450247,47.0160663160371,47.01564381958448,47.01534190454384,47.01495279538538,47.01464432133839,47.01432856777063,47.01409294483475,47.01394560311217,47.01373031500403,47.01338424928532,47.01307248041275,47.01257662568053,47.01236275442551,47.0121735527806,47.01198702370801,47.01172366522898,47.01105410594314,47.01025929944774,47.0100047639723,47.00969782818254,47.00919101757778,47.00896838151296,47.00871555648057,47.00808477866129,47.00730796840352,47.00692062039634,47.00637003165261,47.00602322780374,47.00556861244309,47.00504980140068,47.00481662095715,47.00449007452302,47.00415817792569,47.00390186146678,47.00345000956226,47.00334564781449,47.00315084305004,47.00298099287535,47.00274558731572,47.00246857855924,47.00221755674016,47.00202033595536,47.00183473929014,47.00175155803346,47.00180938334194,47.00202553948785,47.00216242427668,47.00239766714733,47.00234816489142,47.0022777226595,47.00217799992328,47.00205619260813,47.00212053055633,47.00207565093677,47.00187299533482,47.00128602140006,47.00088860486284,47.00055758141249,47.00012200214833,46.99993570287359,46.99985051481066,46.99972900112532,46.99961282114646,46.99943600308639,46.99933101299613,46.99930281904813,46.99938948481156,46.99961314965597,46.9997003554894,46.99977065201585,46.99986358158848,46.99991299278484,46.99993368850707,47.0000660876328,47.00014807284072,47.00023986378485,47.00040733695175,47.00026157479449,47.00018222628507,46.99993251712738,46.99963899427549,46.99958887797636,46.99958599120779,46.99963935766343,46.99975617012987,46.99987562458236,46.99993356182839,47.00001916554562,47.00013211041157,47.00034075701868,47.00052367146827,47.00118319405394,47.00138825325053,47.00155114684024,47.00201544283245,47.00221614144304,47.0025216280868,47.00270796060251,47.00335264028956,47.00355176534764,47.00417354764647,47.00426094125325,47.00433246066562,47.00442799119463,47.0046001140345,47.00466148135596,47.00490237551043,47.00523417251622,47.00560910282485,47.00578641081481,47.00596984645139,47.00615200895617,47.00625340993506,47.00645338980332,47.00663400210152,47.00676557670278,47.00726734334236,47.00743617887384,47.00761135641743,47.0078516775994,47.00804138243743,47.00812837218826,47.00824827952876,47.00842806974852,47.00853923100332,47.0094308430189,47.00959068266936,47.00967817830647,47.0099065182638,47.01017334120168,47.01038803612759,47.01083786953209,47.01091855833555,47.01111070342955,47.01121701172455,47.01146792335756,47.01159309178143,47.01176815943428,47.0118258400488,47.01193444984,47.01201917637861,47.01213616031521,47.01237175531572,47.01300443285032,47.01367239769372,47.01379429370005,47.01395017028058,47.01407747622238,47.0141989055583,47.01432003522319,47.01453733002823,47.01477043573566,47.01498767296513,47.01519782312153,47.01541551492011,47.01570275111484,47.01582111004819,47.01596048679376,47.01607637737411,47.01613569086068,47.01627608588193,47.01647855723012,47.01659686410231,47.01699469301808,47.01710041485765,47.01727020021565,47.01745773064678,47.01762588727342,47.01778377363035,47.01802091394328,47.01827328658545,47.01830615778945,47.01834019696165,47.01846422218178,47.01851534681507,47.01854084391078,47.01858255959315,47.01867300599299,47.01878329968494,47.01893696115677,47.01928674129728,47.01946430230001,47.0194970210749,47.01929410448566,47.01932808560619,47.01966140256051,47.01977406440105,47.0199113161523,47.02006810748455,47.02023308174309,47.02037701072546,47.02043631892519,47.02055065523969,47.02071690175841,47.02083556476784,47.02090265058908,47.02095208852838,47.02109675523888,47.02122482385452,47.02130430615483,47.02139032640172,47.02159210828714,47.02193321267661,47.02218494141552,47.02231132963995,47.02259271077784,47.02268478062118,47.02278289731721,47.02286020316004,47.02297499157524,47.02303076024643,47.02313419566305,47.02347805167077,47.02357350853933,47.02367376531654,47.02383535326931,47.023912251219,47.02396138498238,47.02399928892812,47.02403880058144,47.02407312305485,47.02412629737607,47.02418525006144,47.02433125838333,47.02447269672462,47.02454923833027,47.02458281755855,47.02453972368634,47.02455252816073,47.02460335971563,47.0247128883342,47.02477213942037,47.02490429442045,47.02501814955223,47.02512562843148,47.02532106041358,47.025699579969,47.02596977534492,47.02633560972307,47.02641071997345,47.02652770596787,47.02658307416211,47.02668541123654,47.02668667994321,47.02666591220254,47.02660499793927,47.02666585648753,47.02665484682615,47.02646240820953,47.02640195777214,47.02635177189314,47.02622682061429,47.02596728297177,47.02604952618223,47.02608286240761,47.02618963906598,47.0262517438442,47.02633765919994,47.0264669845094,47.02648538726789,47.02661991282193,47.02669807762298,47.02687427978757,47.02692994241202,47.0270010718835,47.02722027872711,47.02731527545904,47.02738852904261,47.02757767011285,47.0276052356133,47.02765817192431,47.02777936315277,47.02800939628623,47.02813987643409,47.0282667219061,47.02840130564925,47.02849175017503,47.02858300031868,47.02863537688847,47.02865722087229,47.02893639428,47.02904109552679,47.02923872357983,47.02933932639457,47.02942097459044,47.02951840227103,47.02962264466097,47.02974220492781,47.02978073229204,47.02976435009791,47.02982410751805,47.02989706026985,47.02995677067032,47.03004448510099,47.0301324485475,47.03021066401529,47.03059973627527,47.03071626376035,47.03079453091406,47.03082319266136,47.03081873909511,47.03076990081573,47.03102146401866,47.03125882130455,47.03153247995412,47.03185194008801,47.03189865432255,47.03200840425888,47.03209364260653,47.03226339962728,47.0323771467543,47.03254686493342,47.0326446877677,47.03272113058822,47.03277097409567,47.0328869456355,47.03308031672516,47.03325003249287,47.0334345611216,47.03357490572498]}],[{"lng":[-90.4656736562297,-90.46504167632489,-90.4649060420727,-90.46459391889778,-90.46430669562812,-90.46400222587282,-90.46363477859781,-90.46317092952326,-90.46280371820073,-90.46265174656214,-90.46252439735871,-90.46237180456228,-90.46214034586225,-90.46186068762709,-90.46149269042995,-90.46127681666037,-90.46102900761734,-90.46075713046773,-90.45982134723188,-90.45950923728785,-90.45926997329416,-90.45912610612977,-90.45840638802279,-90.45704601593241,-90.45576652990279,-90.45542339634855,-90.45479192991739,-90.45449535214752,-90.454231341013,-90.45255992428365,-90.45177678356627,-90.45150443580462,-90.45060064253809,-90.45016131816733,-90.45004121953932,-90.44992888624118,-90.44979343388211,-90.44969737820979,-90.44959340443117,-90.44927319368979,-90.44901807413221,-90.44876237335849,-90.44865787686173,-90.44868188037687,-90.448794066733,-90.44910655201913,-90.44965784145712,-90.44986586440437,-90.45015447710901,-90.45038559915757,-90.45067394266833,-90.45085865551266,-90.45097731976419,-90.45107397602564,-90.45117038808989,-90.45137763698318,-90.4517540970414,-90.45295411649683,-90.45336221012334,-90.45488962222089,-90.45595363655272,-90.4568651273345,-90.45800095472207,-90.45853710765194,-90.45921678462696,-90.46002440192464,-90.46036865996423,-90.46075220097272,-90.46117652313758,-90.46202413945998,-90.46235199126878,-90.46271145015315,-90.4630155292473,-90.46369498105662,-90.46481552122962,-90.46658285742654,-90.46710200026817,-90.46748599478698,-90.46799020794761,-90.46854196818708,-90.47209197069267,-90.47249998725856,-90.47385114626402,-90.47422744891003,-90.47577837005204,-90.47645008535711,-90.47749832813659,-90.47932111083402,-90.47944965754286,-90.48065691105695,-90.48203978116926,-90.48288708785337,-90.48400645734397,-90.48415063697327,-90.48487076246829,-90.485846273568,-90.48781343590342,-90.48862150073775,-90.48909236683498,-90.49076489950924,-90.49197956640616,-90.49406721234296,-90.49473888053146,-90.49555439665122,-90.49580268460009,-90.49657788914745,-90.49700958397928,-90.49725707420292,-90.49754538364489,-90.49812041064401,-90.49869554597059,-90.49967046459416,-90.49994246225636,-90.50018310659868,-90.50060967468777,-90.50072952413869,-90.50124177667576,-90.5016496856811,-90.50243455958655,-90.50317033661071,-90.50370656142604,-90.50405024203121,-90.50457069733673,-90.50508254018749,-90.50698736680302,-90.50752240013617,-90.50816285299736,-90.50873854418249,-90.50950707425703,-90.51032303201461,-90.51067491067425,-90.51115486764496,-90.51144265300803,-90.5117062507227,-90.51209855164939,-90.51233075809633,-90.51275435300717,-90.51312243580357,-90.51354659363754,-90.51385044538921,-90.51422677653562,-90.51460256462333,-90.51525069395247,-90.51565009525477,-90.51633083425715,-90.51645801513301,-90.51683431042136,-90.51693809074294,-90.51704229871852,-90.51707437731316,-90.51707439608371,-90.51705880528425,-90.51674670045965,-90.51617192638862,-90.51556435470738,-90.51538840632614,-90.51514021034349,-90.51501896072971,-90.51449559904134,-90.51423958433249,-90.51310448648353,-90.51254449805299,-90.51095344145303,-90.51020211369888,-90.50987439931963,-90.50848349727113,-90.50793211271804,-90.50721978259365,-90.50622895026861,-90.50509425795968,-90.50424748456341,-90.50326386073991,-90.50228120326842,-90.50018231833337,-90.49015881429129,-90.48416414532915,-90.47552357519099,-90.47535280444326,-90.4752090982773,-90.47495300492727,-90.47459411263353,-90.47449800821957,-90.4740981928644,-90.47392275651812,-90.47375609125743,-90.47354800079579,-90.47340444284411,-90.473085447012,-90.47278963835282,-90.47258990679819,-90.47204620312608,-90.47151036405319,-90.47097457741255,-90.47076737737409,-90.47064749580774,-90.47007919862963,-90.46954312722546,-90.46811151196896,-90.46778346961955,-90.46752793844573,-90.46668020005524,-90.46645647488978,-90.46613700595385,-90.46601702341027,-90.4656736562297],"lat":[46.8826376158751,46.88335672669081,46.88346639064605,46.88375168771586,46.88411899948672,46.88467479550088,46.88506267527892,46.88549762904194,46.88596199755371,46.88622414518088,46.88639226510805,46.88658242246257,46.88695062684228,46.8872954028424,46.88757529315454,46.88770552198408,46.88779482471732,46.88785159835839,46.88797909680685,46.88808046051416,46.88821022102854,46.88831934536778,46.8889650963699,46.88962295892561,46.8903417900043,46.89041514792286,46.89063925394881,46.89078554236562,46.89095082251475,46.89175497152751,46.89209327748957,46.89224452272608,46.89287238727714,46.89326781691928,46.89342689662078,46.89363149993976,46.89396612012322,46.89444962774786,46.89477118843034,46.89513746532898,46.89553723063257,46.89630989204792,46.89686542575937,46.89713586148029,46.89745319796703,46.89797784831032,46.89865173063821,46.89885001412496,46.89916665090616,46.89937890770764,46.89956506283445,46.89972237900074,46.89973372124028,46.89966416452478,46.89951754834023,46.8993288800711,46.89911254742,46.89862129689796,46.89850888384702,46.89821485896157,46.89799521391041,46.89783578648316,46.89752359773191,46.89732403621923,46.89692479573439,46.89651997447818,46.89633411266566,46.89618520859782,46.89596021784099,46.89543936085533,46.89520800073569,46.89502713127631,46.89489429198561,46.89466656806747,46.89425932203361,46.89378981128939,46.89367070910975,46.89353078178365,46.89329924653866,46.89306358197136,46.89178801893721,46.89163054069371,46.89124643641249,46.89116895032183,46.8907401267922,46.89048479696284,46.89004004586162,46.88946830339702,46.88943964698315,46.88902962672251,46.88862786167181,46.88833632120647,46.88787489813853,46.88780623586842,46.88760577359231,46.8874790221793,46.88728786748272,46.88724280249943,46.88723966400583,46.8871278955268,46.88700569346407,46.88653888238466,46.88642743122857,46.88639128026483,46.88636095932022,46.886179870364,46.88602276327379,46.88590638932128,46.88572403237917,46.88527720969579,46.88475445380841,46.88404265962238,46.88387273827406,46.88368327250991,46.88341931291215,46.88329617863117,46.88302846347451,46.88269990431841,46.88224426579335,46.88184676193958,46.88160143406525,46.88142444165246,46.88111674692737,46.88085352054416,46.88012967963372,46.87997938706373,46.87970095544755,46.87947061186674,46.8792489657048,46.87896973946709,46.87888267767289,46.87872193060616,46.87858003549806,46.87848211909372,46.87824751548291,46.87812667830534,46.87799204612171,46.87792796699133,46.87776633222123,46.8776333590077,46.87740275893885,46.87724471040107,46.87704663257429,46.87695653068968,46.87669642840086,46.87665873522675,46.87646918231752,46.87638603617722,46.87626239139905,46.87618631839799,46.87606032966388,46.87597434903711,46.87571591113755,46.87539285432619,46.87515543195268,46.87511066798417,46.87501560811355,46.87494415989397,46.87467767148091,46.87462257572065,46.87453936749753,46.87447325890901,46.8742227774527,46.87404445942986,46.87395143047977,46.87361509237848,46.87345949842299,46.87319606017543,46.87288210697634,46.87244335762612,46.87222717618266,46.87189066841163,46.87161263862291,46.87110888839142,46.87142896632454,46.87230207057532,46.87495193018515,46.87521079920357,46.87556291871674,46.87591269231363,46.87627863738932,46.87640221049194,46.87710466196632,46.87790629818341,46.87882038375229,46.87931506318382,46.87954625553712,46.88034904575547,46.88085083556985,46.88108507087973,46.88156819740889,46.88192080346803,46.88223291083496,46.88231812787822,46.8823512420192,46.88237044879262,46.88232259140581,46.88192181678198,46.88188322261633,46.88188201831819,46.8820744540075,46.88214623358606,46.88229207999855,46.8823617500967,46.8826376158751]}],[{"lng":[-90.56263498213228,-90.56262653998525,-90.56243458461906,-90.56241843589751,-90.56245013051851,-90.56266705359855,-90.56283605058707,-90.56298820701294,-90.56338890066348,-90.5637175720522,-90.56407077600961,-90.56427946518046,-90.56435958248653,-90.56444761416414,-90.56463189787141,-90.56483315742216,-90.56504075192252,-90.56518550495043,-90.56526541750837,-90.56541829047994,-90.56563509015812,-90.56594786365197,-90.56610030274375,-90.56616413860975,-90.56617988021021,-90.56626816238409,-90.56644531881113,-90.56663799889733,-90.56691792577432,-90.5670548478649,-90.56715882916546,-90.56721534936288,-90.56726314864039,-90.56722276218642,-90.56719074175079,-90.56719111797371,-90.56732725015991,-90.56741539264813,-90.56798458729783,-90.56810504444935,-90.56824170016979,-90.56840229320693,-90.56869893218654,-90.56913248296526,-90.56941270871138,-90.5699899907152,-90.57032721249851,-90.57132953928196,-90.5718750538812,-90.57189071386867,-90.57198662807232,-90.57241207080584,-90.57247600147326,-90.57257251793087,-90.57276543638199,-90.57283728065055,-90.57291724859223,-90.57314179608981,-90.57324678283224,-90.57347108029565,-90.574104598611,-90.57452985782413,-90.57485094946615,-90.57518714256418,-90.5755080433442,-90.57562030625463,-90.5756205713066,-90.57545901837908,-90.57542666759763,-90.57533879347234,-90.57531445330635,-90.57523447655267,-90.57505800622549,-90.57492942204864,-90.57481777275268,-90.57417525795474,-90.57382355899063,-90.57335795723316,-90.57282867043759,-90.57173776277118,-90.57122459511319,-90.57107213202927,-90.57043089648745,-90.57030235128595,-90.57002925130659,-90.57002176267645,-90.56985318922058,-90.56980516466109,-90.56982887160935,-90.56989294894282,-90.56995795968058,-90.57000556481933,-90.57003779972325,-90.57000533151316,-90.56993356939704,-90.56987716305204,-90.56984526394689,-90.56978933084579,-90.56973308991671,-90.5696760466395,-90.56962010804628,-90.56960440805716,-90.56949191851358,-90.56946836781148,-90.56938039107412,-90.5693079409488,-90.5692520434464,-90.56911546173366,-90.56893900672824,-90.56886699821727,-90.56884233357917,-90.56880244529448,-90.56874587083668,-90.56861755789753,-90.56860975168493,-90.56834481012625,-90.5683132656568,-90.56825675021716,-90.5682413002576,-90.56820089642795,-90.56822558074036,-90.56825700546112,-90.56827307051211,-90.56818443349289,-90.56810515351586,-90.56795245726454,-90.56768771349988,-90.56757610427339,-90.56754318856213,-90.567511541727,-90.5674076164907,-90.56729493684142,-90.56712647838805,-90.56682233158961,-90.56669368075781,-90.5664370371474,-90.56630887865683,-90.56594866255777,-90.56586009427821,-90.56573228872307,-90.5656199360579,-90.56548399516532,-90.56539575243436,-90.56534732426684,-90.56525107376488,-90.5652107612961,-90.56515488653584,-90.56498665393502,-90.5648986354028,-90.56486612276595,-90.56476981669213,-90.56479427939092,-90.56480250869565,-90.56476226325178,-90.56426560194845,-90.56390609015325,-90.56347378477228,-90.56335425931096,-90.56326574646287,-90.56323415547111,-90.56325044926014,-90.56328197603484,-90.5634103530038,-90.56345071714721,-90.56354659492833,-90.563643004499,-90.56396372614752,-90.5641715995897,-90.56421987162275,-90.56433227685801,-90.56452402621068,-90.56450834011459,-90.56436409682232,-90.56401955456379,-90.56394718170233,-90.56386743367455,-90.56365071120423,-90.56312974542277,-90.562593105216,-90.56227178172304,-90.56202402449546,-90.56166305205541,-90.56119832310623,-90.56094973142186,-90.56052577723679,-90.5599558897854,-90.55929864259016,-90.5589704512573,-90.5587063613203,-90.55804898477571,-90.55747985918964,-90.55685409067777,-90.55611725084316,-90.55549168294448,-90.55506623346571,-90.55502677288949,-90.55490618698124,-90.55444167572807,-90.55431299631678,-90.55402486671967,-90.55346389241431,-90.55290251062804,-90.55254990702409,-90.55229032189033,-90.55222696857308,-90.55218742506297,-90.55217875861517,-90.55212313527443,-90.55198637784791,-90.55185813317043,-90.55176215826603,-90.55132111389058,-90.55113721416829,-90.55087249652401,-90.55081567222857,-90.55075936899713,-90.55066322578809,-90.55039884483018,-90.55034289911488,-90.549989522939,-90.54982146701862,-90.54965327545584,-90.54943706631835,-90.5492361172292,-90.54901949026345,-90.54884334359289,-90.5486349913588,-90.54810592330955,-90.54801030777318,-90.54788116096685,-90.54776147845108,-90.54774494806,-90.54756870801184,-90.54736851346658,-90.54731223189867,-90.54721606967458,-90.54715961743399,-90.54712033146913,-90.5468548646013,-90.54671132489318,-90.54651059575416,-90.54648615155594,-90.54645401397798,-90.5466142494612,-90.54663887720592,-90.54671042900642,-90.54691872544591,-90.54699891164942,-90.54703903236008,-90.54703836893971,-90.54711879404755,-90.54711012045362,-90.5470381180363,-90.54694186248661,-90.54683820598655,-90.54663769490973,-90.54658100078017,-90.5465813239057,-90.54674974087264,-90.54674915734707,-90.54666925144059,-90.54670092753287,-90.54658835944042,-90.54661280590578,-90.5466613307422,-90.54666106185495,-90.54651677548853,-90.5464925602505,-90.54654835420811,-90.54654826960706,-90.54651682942092,-90.54638017742629,-90.54635664772323,-90.54636450301537,-90.54642011702165,-90.54642099317586,-90.54642054127261,-90.54638051624752,-90.54640455766531,-90.54619552765899,-90.54613915260518,-90.5461712746127,-90.54613966101149,-90.5460278154027,-90.54599519310733,-90.54590728345343,-90.54591551637651,-90.54588275538489,-90.54574719417991,-90.54572298106203,-90.54573828808309,-90.54577895632524,-90.54585043168571,-90.54593044096949,-90.54604262295152,-90.54618710104077,-90.54633195088428,-90.54661990805107,-90.54690101734977,-90.54695666569167,-90.54701265286468,-90.54701266073738,-90.54681967311548,-90.54676379262753,-90.54661941149274,-90.54657906484825,-90.54677213489801,-90.54687577148387,-90.54690812236963,-90.54689967761141,-90.5467876431006,-90.54651440485239,-90.54601749289151,-90.5459931409483,-90.54598596752828,-90.54592949465253,-90.54593785599705,-90.54603363239403,-90.54615362926563,-90.54645069079511,-90.54643479179266,-90.54630630850626,-90.54634615956307,-90.54637805756086,-90.54637010902228,-90.54619346222059,-90.54620209678374,-90.546281838678,-90.54648248380116,-90.54657081875548,-90.54659439793764,-90.54655437528989,-90.54626526818495,-90.546145183882,-90.5458969631914,-90.54587243106467,-90.54590515111715,-90.54589697219205,-90.54579306263038,-90.54572786430079,-90.54573595633472,-90.54600118712814,-90.54600110498627,-90.54584026833589,-90.54566429554018,-90.54566407052342,-90.54583205075932,-90.54589621414175,-90.54625676427769,-90.54636940637602,-90.54640934980161,-90.54649791253844,-90.54663432260041,-90.54686678340177,-90.54699423020278,-90.54711509944666,-90.54717112896857,-90.54718685310601,-90.54730745007866,-90.54732312935532,-90.54737970857396,-90.54766778820274,-90.54783627784285,-90.54811704740268,-90.54841311894695,-90.54861387556781,-90.54874224732082,-90.54874179606732,-90.54866165215968,-90.54866951658803,-90.54883024738071,-90.54882207759927,-90.54891800444523,-90.54907864652216,-90.5492225548077,-90.54948712600877,-90.54943921260646,-90.54939914386389,-90.54940710408175,-90.54946346088623,-90.54955125541071,-90.5498957404525,-90.55038544463888,-90.55054627059643,-90.55053814385496,-90.55048184683486,-90.55048162355909,-90.55061759593504,-90.55078577661386,-90.55088193555964,-90.55097855986423,-90.55115478462304,-90.55137122348243,-90.55164419566053,-90.55178002101185,-90.55187649980941,-90.55198821617195,-90.55217314724173,-90.55216516620423,-90.55202832357341,-90.5520687240753,-90.55222891369392,-90.55222129853964,-90.55233330939832,-90.55275027935622,-90.55294246263693,-90.55297479164176,-90.55331172616002,-90.55338339920291,-90.55353582204243,-90.55364053450991,-90.5540491306609,-90.55414529818073,-90.55416103029097,-90.55421725786925,-90.55431360271054,-90.55453014776829,-90.55461809367075,-90.5546745084789,-90.55475486474225,-90.55508346576515,-90.55527566245914,-90.55556418563035,-90.55566893526546,-90.5558130122659,-90.5559496218618,-90.55616571905573,-90.55635814502385,-90.55684668067981,-90.55837801488741,-90.55931679838679,-90.56019832955229,-90.56042359982386,-90.56073600044657,-90.56136163664387,-90.56211531485519,-90.5622589322402,-90.56317304331732,-90.56343842208513,-90.56413566826423,-90.56486562056435,-90.56499386971076,-90.56530636633624,-90.56543436725399,-90.56562690782081,-90.56652496890057,-90.56665359388302,-90.56670202790917,-90.56694980336825,-90.56707901883772,-90.56712715353353,-90.56712629639699,-90.56701477072161,-90.56660523927513,-90.56606799504706,-90.56556271207609,-90.56539471755005,-90.56528273873442,-90.56488951449315,-90.56475259767888,-90.5645929053389,-90.56448016611337,-90.56397562193368,-90.56378289069714,-90.56363061960481,-90.56306838877737,-90.56298011378206,-90.56281924084335,-90.56258676927646,-90.56253885589499,-90.56248238409327,-90.56249897854353,-90.5628035755134,-90.56282764331132,-90.56278014844818,-90.56272294267183,-90.56261124021481,-90.56242623040313,-90.5623385664225,-90.56208960050611,-90.56210571778202,-90.56214559095058,-90.56216215886334,-90.56219399603714,-90.56239454052215,-90.56236202910075,-90.56243496948211,-90.56236231692208,-90.56220216897987,-90.56220178608189,-90.56227397401166,-90.56249857510153,-90.56249836507065,-90.56241834202808,-90.56241062895091,-90.56244214014265,-90.56263498213228],"lat":[47.04024787603704,47.04030584813586,47.04043727300671,47.04054477335436,47.04058567580937,47.04071621382632,47.04078737512948,47.04082205954749,47.04078578137074,47.04070711212743,47.04057545424295,47.04043157096625,47.04026638714669,47.04022770594244,47.04022736317676,47.04027642559475,47.04026302830571,47.04018076405811,47.0401910537221,47.04017680238003,47.04010036782542,47.04007519898246,47.04001989257711,47.03994927255442,47.03976528322355,47.0396726078311,47.03958174762238,47.03955886058013,47.03969526724672,47.0396895261999,47.03964233040814,47.03958018562107,47.03943259495527,47.03927025649458,47.03923779413014,47.03915680311778,47.03903802183163,47.03904883247301,47.03923217052172,47.03922595149104,47.03915665513139,47.0390563116218,47.03894572810098,47.03863536915791,47.03852880200217,47.0384286317758,47.03830547184423,47.0377554896253,47.03733938556771,47.03730387683986,47.03723365475786,47.03678384007425,47.03656924089999,47.03644052685849,47.03628714742333,47.03608206360904,47.03594443283608,47.03571046916553,47.03560476945498,47.03542479796521,47.03501105678254,47.03477720681482,47.0345719944138,47.03431834613333,47.0338662327305,47.03340504704875,47.0328561224756,47.031678098501,47.03153821579637,47.03025014872697,47.03020471594328,47.02976642801367,47.02930388054146,47.02912567381412,47.02899237740771,47.02848379677085,47.02824709463663,47.02801208460625,47.02782069881344,47.02752806741886,47.02745863639468,47.02739246621511,47.02703684055119,47.02689912212858,47.02631725029983,47.02623180318925,47.02553973803387,47.02500736296298,47.02441388752455,47.02413629585907,47.02371471799357,47.02358962326979,47.02333412023015,47.02310425021622,47.02092072459684,47.02033439729448,47.02023500794709,47.01977016322777,47.01943130009119,47.01901651645573,47.01882163516915,47.01838920997375,47.01813499231914,47.01800856422145,47.01653995194312,47.01602963303649,47.01579931696496,47.01532812195448,47.01497354744003,47.01469719517849,47.01462026366438,47.01423239175192,47.01401557545834,47.01370294363436,47.01362593077533,47.01299058276192,47.01296261691936,47.01286728706182,47.01245735658394,47.01233044848289,47.01155699270501,47.01141848259794,47.0106849988576,47.01039073303477,47.00997043006131,47.00956680658001,47.00921941633442,47.00892919688255,47.00888774147044,47.00881084602287,47.00854758300966,47.00831135978891,47.00808722456632,47.00778333630071,47.00759162390079,47.00723069260668,47.00700748207529,47.00629835863919,47.00612500950947,47.00573981609924,47.00549459207882,47.00519492869936,47.00489671635761,47.00478728439656,47.00435356730248,47.00407818046735,47.00361333132015,47.00309672953794,47.00266297019214,47.0025815825274,47.00198532559027,47.00157632231823,47.00099192173921,47.00087851059381,47.00028253899738,46.99994572977479,46.99948779520381,46.99930053078759,46.99909174781532,46.99890180010424,46.99822287504221,46.99774184783542,46.99728565212992,46.99698062021097,46.99671749392022,46.99654379311004,46.99620419798761,46.99580385227544,46.99566525685299,46.99552803267856,46.99539266782564,46.99534718860548,46.99534902551373,46.99549470410491,46.99556930041723,46.99584190593731,46.99614330819129,46.99651482307944,46.99676436259099,46.99685199438482,46.99686052262878,46.99681223851468,46.99670765665121,46.99667569148645,46.99665751906625,46.99667661607362,46.99675294517704,46.9968130408098,46.99691106613648,46.99740976715682,46.997937842101,46.99831602329118,46.99864693888195,46.99880857701228,46.99888544195834,46.99892500674626,46.99898970581305,46.99906563304084,46.99910337653201,46.99926337509186,46.99943200455279,46.99968105662865,46.99976768560356,46.99994610076457,46.99998127562708,47.00005289714314,47.00016935754296,47.0002359939958,47.00036769457243,47.00056741559418,47.00062805542597,47.00074941399371,47.00085378434302,47.00097373033667,47.00104430434916,47.00124536535839,47.001369560081,47.0016829730825,47.00179910458998,47.00209269886596,47.00217955814484,47.00233334686336,47.00245474153887,47.00262105888412,47.00270196085669,47.00280179219896,47.00296814396021,47.00356909726812,47.00366572920942,47.00373946164285,47.00385420641833,47.00396620590918,47.00413802669107,47.00417835425044,47.00422249241858,47.00434612405248,47.00453424308672,47.00459179791253,47.00480228718111,47.00495651398069,47.00526736876762,47.00532935246215,47.00576538523453,47.00595809430165,47.0060350278352,47.00615785522677,47.0063469603531,47.00646974935703,47.00661466123785,47.0069926152001,47.00717895487205,47.00729598045148,47.00741105982902,47.00752625196402,47.00772190993452,47.00797427077504,47.00809883805385,47.00821131827348,47.00835899604799,47.00850297946869,47.00864958730235,47.00885303677826,47.00906223376065,47.0091211714587,47.00916255836119,47.00925704472081,47.00933928683896,47.00938383476729,47.00945274557579,47.00952473810626,47.00954625825111,47.00957053405055,47.00960157890063,47.00964653520818,47.00973794291629,47.00990441531603,47.00998091073382,47.01004746680256,47.01022788804035,47.01037174238069,47.01048787004991,47.01057376833901,47.01061834964646,47.01069705994026,47.01076358056674,47.01081124525004,47.01097374405265,47.01102676978495,47.01107803430582,47.01112258022413,47.01125298685132,47.01133041094906,47.01160678096311,47.01179256248452,47.0119483814279,47.01204555571984,47.01209829510675,47.01227520745217,47.01238522650272,47.01243951393451,47.01264790295232,47.01280988374229,47.01315669434793,47.01320027004447,47.01327407061768,47.01334963052727,47.01357423964554,47.01365754867442,47.01372544532136,47.01382447239914,47.01400610770555,47.01418513832525,47.0144040415265,47.01443509019493,47.01453804780228,47.01460468450892,47.01465863398423,47.01473691563137,47.01477121747527,47.01479116854755,47.01488517283279,47.01506688612148,47.01518480465149,47.01520827431289,47.01527524051365,47.01545155885435,47.01549201148998,47.01552987557935,47.01552948269925,47.01556336647738,47.01561780954842,47.01572486124036,47.01596133515982,47.01599958671977,47.01601202068832,47.0160655673528,47.0160890332239,47.01617399833816,47.01634715848378,47.01652575439658,47.01663426622683,47.01691871158906,47.01715268107127,47.01742847153115,47.01763178346403,47.0176902755871,47.0177923983786,47.01787477048816,47.01786911327098,47.0179073829821,47.01795331201041,47.01800913169923,47.01799891936171,47.01793200468863,47.01793027131486,47.01796850038636,47.01801941485392,47.01806939174882,47.01816161608386,47.01820709933051,47.01827150717772,47.01833593335687,47.0184071139748,47.01844007820874,47.01840154335228,47.01849113182556,47.01857938072795,47.01865587239278,47.01873949274764,47.01878501446362,47.01890066307887,47.01902668293458,47.01911846479643,47.01918518431553,47.01922442657697,47.01948186801931,47.01970144552152,47.019803999652,47.01989844940374,47.01998085390452,47.02004117360455,47.02011151191534,47.02006810107341,47.02015225223975,47.02020178736432,47.02024536256855,47.02030385649218,47.02041062478958,47.02045031222701,47.02052408860127,47.02064341839216,47.02074549366686,47.02079956935732,47.0208325624811,47.02088477696005,47.02094954929699,47.02109636885345,47.02160390650968,47.02170743274102,47.0218756934018,47.02192555307011,47.02194727967079,47.02204630178897,47.02206207150759,47.02206174449472,47.02211537407209,47.02221982855808,47.02239311387989,47.0224445098992,47.02251070264377,47.02257599996673,47.02271969082446,47.0227934643931,47.02284344329317,47.02291235055055,47.02296362718565,47.0230266962089,47.0231005097969,47.02318741011345,47.02324326434038,47.02328610244383,47.02338022058674,47.02340469115769,47.02343343055108,47.02352665234527,47.02357435935446,47.02363349200409,47.02370960633757,47.02402556282325,47.02480549838449,47.02542858093595,47.02588377175885,47.02603227253028,47.02621465520319,47.02661878478322,47.02719269526352,47.02735790003473,47.02812899236717,47.02841339674566,47.02901344074352,47.0295149001287,47.02962562597478,47.02985242600526,47.0300171466444,47.03017873517577,47.03125077274426,47.03135699371887,47.03142537189792,47.03171435441016,47.0319150615636,47.03203293153301,47.03226240258001,47.03248961085293,47.03308386856714,47.03381486221432,47.03402938967567,47.03412920259143,47.03427542394073,47.03446915110238,47.03478590627284,47.03497116981289,47.03504540228082,47.03521492544436,47.03530980071143,47.03541909787956,47.03600958988471,47.03614219752254,47.03648999927492,47.03695289100013,47.03705098623799,47.03727454481763,47.03740550678114,47.03781682697362,47.03799331018668,47.03813133812485,47.03820698381706,47.03826321150971,47.03827255561722,47.0383067323571,47.03857116556259,47.03877412045388,47.03892802972116,47.03925246640024,47.03930686308356,47.03940598879985,47.03952200910943,47.03973030640988,47.03982346351708,47.03992829868216,47.04000928787239,47.04002861856539,47.04002864026876,47.04008713395787,47.04014433050692,47.0401932973825,47.04021676620324,47.04024787603704]}],[{"lng":[-90.6379445959813,-90.63804870508156,-90.63848108449049,-90.63879342552607,-90.63892935684473,-90.63914649310618,-90.6397076025426,-90.64026817717709,-90.64066823082683,-90.64154216841428,-90.64188680645385,-90.64229518904375,-90.64249554193344,-90.64266365748328,-90.64296027996613,-90.64330503248546,-90.64340954708976,-90.64356154170613,-90.64397025014051,-90.64404220524858,-90.64441074402355,-90.6450604144883,-90.64535647869064,-90.64560558576974,-90.64593418369608,-90.64663953760291,-90.6472245272417,-90.6475206179874,-90.64877958862934,-90.64983743795919,-90.65017343880827,-90.65135937752143,-90.65200911288338,-90.65255380162949,-90.65330670850412,-90.65433320088304,-90.65469323720562,-90.65523014141138,-90.65530242112493,-90.65547141872244,-90.65569556771204,-90.65580818977959,-90.65609658107394,-90.65660992576255,-90.65697842843674,-90.65726722460255,-90.65747550072665,-90.65782871215789,-90.65836489377766,-90.65862209854789,-90.65896652917569,-90.66002415207676,-90.66075297028645,-90.66107346867453,-90.66131441944036,-90.66248412868683,-90.66318944267678,-90.66377420279196,-90.66427859389638,-90.66484763288391,-90.66512031555078,-90.66572962113857,-90.66604186119112,-90.66666654537759,-90.66829357251216,-90.66875831000412,-90.66919105237918,-90.66933562396889,-90.67021712168268,-90.67038553583735,-90.67125069966094,-90.67211668360166,-90.67219633773104,-90.6727011953688,-90.67347061640213,-90.67387886302372,-90.67428765556753,-90.67556936581251,-90.67576923343788,-90.67623386290273,-90.67689864258118,-90.67733171093113,-90.67806833877647,-90.67844490217597,-90.67846899423999,-90.67846861989867,-90.6784283230528,-90.67830827102027,-90.67784398601799,-90.67770781748989,-90.67741973386724,-90.67691599995399,-90.67675502642106,-90.67644281327908,-90.67636311342918,-90.67615446078926,-90.67609113895018,-90.67596219168726,-90.67565851527631,-90.67527408487553,-90.67478568743701,-90.67458583797767,-90.6742980027343,-90.6739692100946,-90.67386517557478,-90.67368903099151,-90.67359338670735,-90.67341706579043,-90.67310482172259,-90.67280068980523,-90.67259233752982,-90.67253622211932,-90.67232848126505,-90.67219206271626,-90.67210415845413,-90.67188737019099,-90.67164761766045,-90.6709028607453,-90.67069433064393,-90.67037438334093,-90.66932490474429,-90.6689644313068,-90.66826736911416,-90.66807600439755,-90.66773921677819,-90.66682589731194,-90.66648145156792,-90.66604121796507,-90.66564028310167,-90.66540842447004,-90.66388683990913,-90.66360608326472,-90.66336636164277,-90.66306936760277,-90.66249282494849,-90.66181243860304,-90.66132340434129,-90.66123539336564,-90.66108290016628,-90.66090695076328,-90.66077831299907,-90.66053829297455,-90.65993729204989,-90.6596734280588,-90.65885581026916,-90.65795897019707,-90.65771865321517,-90.65725404488109,-90.65645273565704,-90.65594765153614,-90.6554274284792,-90.65525929804927,-90.65489885423879,-90.65449852583495,-90.65364889211345,-90.65340026028814,-90.65331242471623,-90.65324819641856,-90.65289554018585,-90.65273544526693,-90.65227816762885,-90.65210163921545,-90.65167675847039,-90.65143629012495,-90.65123568027727,-90.6508270046895,-90.65031440069167,-90.65026605217768,-90.65016184940164,-90.64891173355421,-90.64851054283459,-90.64815063751411,-90.64750940563273,-90.64715737944135,-90.64697269231061,-90.64662853638104,-90.64609148314919,-90.64569048936958,-90.64522617088063,-90.64440865577312,-90.64412844562685,-90.64327094407108,-90.64269418822703,-90.64256556969693,-90.64239790252805,-90.64222115465,-90.64172456443391,-90.64153236039122,-90.64135645633118,-90.64116311317804,-90.64053807112293,-90.6403540440067,-90.63986491978272,-90.63970479731935,-90.63907940123062,-90.6388476683654,-90.63877555058946,-90.63869506400393,-90.63843064090969,-90.63762881260831,-90.63702000083514,-90.6367230290456,-90.63646658862835,-90.6360646968166,-90.63572824604233,-90.63522316078259,-90.63479818840828,-90.63442986468328,-90.63428489292536,-90.6341644683672,-90.63410788538285,-90.63413199568674,-90.63422731033135,-90.63419544695925,-90.63393040921511,-90.63380186961751,-90.63376200622928,-90.63373741800308,-90.63376833566484,-90.63379208110079,-90.63384827506238,-90.63389531477026,-90.63381497266776,-90.63379097198523,-90.63382302668587,-90.6340546090621,-90.63426217513714,-90.63436627072122,-90.63440617404495,-90.63439801703935,-90.63424460588811,-90.63412416004211,-90.63414768394561,-90.63422011296028,-90.63435625679199,-90.6347003719345,-90.63514107209041,-90.6354773276861,-90.63589449735142,-90.63595834139052,-90.63593424002813,-90.63599785516585,-90.6360942819696,-90.63614213986902,-90.63620621857316,-90.63619842378479,-90.63625418634314,-90.63640680602964,-90.63650232315489,-90.63677496405265,-90.63679877581414,-90.6369595452434,-90.63740759234834,-90.63773666112769,-90.63782476696478,-90.63789674254269,-90.6379445959813],"lat":[46.98121759321705,46.98126482224197,46.98127365767591,46.98134728341932,46.98134090096543,46.9812868198453,46.9812713130294,46.98121081421596,46.98119676459357,46.98119243278875,46.98121749859081,46.98131588204991,46.98130182322069,46.98123788528412,46.98102812365071,46.98072022444872,46.98066396076423,46.9806265473383,46.98058094453658,46.98055073052436,46.98034224546955,46.98024353717851,46.98015919270652,46.98006555150769,46.97991914985104,46.97966826594767,46.97935168833456,46.97923640409741,46.97865953860572,46.97820415974382,46.97809426795904,46.97776750764297,46.97747472118458,46.97726126987002,46.97700669296923,46.97674830407486,46.97658932960378,46.9762448643994,46.97617470687881,46.97591671333756,46.97543117891463,46.97526686874171,46.97496206788409,46.97460816974015,46.97426972499941,46.97373094703178,46.97346091360014,46.97304943526664,46.97258347369043,46.97241776718494,46.97226280620621,46.97190631965228,46.97160628099659,46.97141039431289,46.97129370337865,46.97086793339546,46.97056295132224,46.9703767717462,46.97010331956287,46.96971025350557,46.9694370174857,46.96874731090369,46.96855089677307,46.9682081178887,46.96684205623541,46.96632528207116,46.96528563227704,46.96508625457493,46.96366883910009,46.96330733493928,46.96193500028572,46.96079606120031,46.96066230063265,46.96014190083395,46.95939721918385,46.9590680459864,46.95881535912123,46.95814807399515,46.95810302372789,46.95788261932024,46.95747711853699,46.95722989881641,46.95675872013706,46.95642859280661,46.95635252588525,46.956258038965,46.95622171894748,46.95614706447783,46.95600245849579,46.95588740511028,46.95558033608077,46.95520592446101,46.95504489760295,46.95464741747317,46.95451515118486,46.95402482226842,46.95375804246131,46.95353045523346,46.95322291228752,46.95292709052134,46.95259307508152,46.95240921351281,46.95202114756008,46.95137966380118,46.95110749641684,46.9509465532246,46.95081887812123,46.950643877209,46.95040386953606,46.95025380015529,46.95007841988744,46.94999157473371,46.94989774537303,46.94985861346355,46.94985687892291,46.94989301857024,46.94996473092351,46.95011139304824,46.95018404087742,46.95031246579075,46.95062400347135,46.95079652670979,46.95104806887294,46.95114760612423,46.951244061842,46.95157615391251,46.95171764604311,46.95198342493892,46.95217304216624,46.95225369486425,46.95271809610188,46.95289632804396,46.95297251672054,46.95303385843702,46.95307206557824,46.95321548392471,46.95338985073898,46.95344660207646,46.95356953007987,46.9538225135157,46.95398185916642,46.95413453955686,46.95435622793661,46.95444042751868,46.95481521246406,46.95539573703594,46.95552534822472,46.95571868243601,46.95612035390055,46.95649726535827,46.95671171534792,46.9568341635898,46.95715062605622,46.95743019211776,46.95788105221875,46.95810519385614,46.95821143044088,46.95836759217299,46.95875205082679,46.95899593776969,46.95999910245674,46.96024308025287,46.96063469811552,46.96102582732822,46.96121538698016,46.96145449137348,46.96186235015218,46.96197399016266,46.96212024819582,46.96295467554517,46.96320273031013,46.96329869155003,46.96356891144392,46.96377337408906,46.96385484607429,46.963928783017,46.96401674118591,46.96411236387302,46.96430508583459,46.96467526745526,46.96477301925569,46.96502980658696,46.96523383167671,46.96529867412136,46.96543009754637,46.9654895807187,46.96559641412277,46.96566891949544,46.96576439328361,46.96591339531172,46.96671947934156,46.9668234330769,46.9669032174468,46.96694517206235,46.96720681936096,46.96734140712382,46.96742561113058,46.96763528412874,46.96781898668691,46.96823852625425,46.9686536124093,46.9688993577376,46.9691684996622,46.96981695992585,46.9702333407925,46.97056460109771,46.97096572037643,46.97139857864461,46.97171546544143,46.97191973470852,46.97234636791745,46.97264825725043,46.97309992296433,46.97318502569694,46.97349414084868,46.97370744965231,46.97381059454793,46.97412906592388,46.97525037161326,46.97541728361799,46.97565263091536,46.97626091338763,46.976520078292,46.97674912013276,46.97699303583818,46.97750187098105,46.97782074683768,46.97811094224828,46.97832331942875,46.97846734616311,46.97918416576732,46.97963140196364,46.9797443185906,46.97985808902265,46.97997375580483,46.98012933080961,46.98028661539313,46.98043772927013,46.98044666374124,46.98052898592847,46.9806449774802,46.98067330937606,46.98066208649927,46.98060895316198,46.98064178049716,46.98078130655467,46.98084061045645,46.98092469146137,46.98094047119245,46.98092376931879,46.98109517709008,46.98113871670918,46.98115252920658,46.98118163390634,46.98116145905047,46.98116724416193,46.98121759321705]}],[{"lng":[-90.69345301647805,-90.69360610750238,-90.69368535026027,-90.69386217258403,-90.69404664060526,-90.69415843802841,-90.69432710509622,-90.69457524817555,-90.69487197042517,-90.69529680899736,-90.69552163351942,-90.69565786580945,-90.69585008975915,-90.69617877499377,-90.6965953032998,-90.69672372129305,-90.69692445143198,-90.69702819345291,-90.69750913845546,-90.69768620139286,-90.69855128104152,-90.6987758580718,-90.69979472149188,-90.69997095140643,-90.70006722709742,-90.70029162889868,-90.7004997583153,-90.70072450318001,-90.70085185757868,-90.70103712630197,-90.70120488398973,-90.70140554172403,-90.70160590388465,-90.70193402834406,-90.70209468740275,-90.70263179410961,-90.70274380781558,-90.70292020412644,-90.70313695408196,-90.70320903311476,-90.70326476549113,-90.70326504533008,-90.70328083922369,-90.70351302807134,-90.70355331697453,-90.70351342621791,-90.70344087564216,-90.70336081501659,-90.70337648912536,-90.70362512646751,-90.70379393940928,-90.70383346835591,-90.70380103494051,-90.70394540513956,-90.7041539757854,-90.70429025013974,-90.70433018401403,-90.70430614528883,-90.70434606332438,-90.7045627147312,-90.70480316636885,-90.70483527529824,-90.70494762432767,-90.7049954934101,-90.70500341316674,-90.70512416119213,-90.70518017176202,-90.70542787141788,-90.70557930118287,-90.70583119929475,-90.7061193659611,-90.70633556611646,-90.70656845826792,-90.70680857799182,-90.70694510271318,-90.70711340907314,-90.70758613453218,-90.70763379562582,-90.70827501147023,-90.70860311264862,-90.708834946127,-90.70882682552013,-90.70888353628968,-90.70931557741815,-90.70940397351471,-90.70948358581134,-90.70958027566053,-90.70970815274853,-90.71005275737852,-90.71033304529283,-90.71043729385542,-90.71062950327361,-90.71122247301798,-90.71134282244503,-90.71140662770354,-90.71141417572768,-90.71161415770875,-90.71177458360228,-90.71186245174484,-90.71187098429628,-90.71184617398239,-90.71179847801221,-90.71189443257344,-90.71187788495995,-90.71176625280887,-90.71176590524668,-90.7117254032048,-90.7115014972365,-90.71146070625804,-90.71130877911392,-90.71122085549673,-90.71101222398185,-90.71069099184781,-90.71050662027942,-90.71025032447855,-90.71008224831151,-90.70957740302845,-90.70922444703112,-90.70899224996644,-90.70877598113518,-90.70862342664199,-90.70833475967167,-90.70798189352575,-90.70779004488953,-90.70752614149434,-90.7070769127445,-90.7067878880335,-90.7065315766549,-90.70622781973807,-90.70566607016964,-90.70510554369365,-90.70391954303255,-90.70261347105777,-90.70175571842523,-90.70151526985053,-90.70110682754226,-90.70051418130743,-90.69972859151707,-90.69940069969044,-90.69925631622638,-90.69873518060511,-90.6977497613919,-90.69714090566886,-90.69676433489458,-90.69634766855209,-90.69586711834098,-90.69555432604312,-90.69511389634989,-90.69500103338497,-90.69492963270346,-90.69490542684908,-90.69492924286622,-90.69488887828697,-90.6948174141191,-90.69454417317098,-90.69417637027256,-90.69419186442924,-90.69413571142613,-90.69401614302407,-90.69356700905153,-90.69340684592417,-90.69270118602472,-90.69192452503935,-90.69006555707736,-90.68922381878482,-90.6887270224601,-90.68808564133616,-90.6877890746721,-90.68718080324234,-90.68685148462524,-90.68631476213223,-90.68613013843243,-90.68569731152067,-90.68530428439543,-90.68463188252034,-90.68447950590063,-90.68421479530718,-90.68393419655297,-90.68367810766021,-90.68338943182201,-90.68286848242226,-90.68201847268473,-90.68173001927907,-90.68155390612938,-90.68127337149629,-90.68089718048104,-90.68074418489232,-90.68031910983082,-90.68013526998105,-90.67957416309957,-90.67938998755582,-90.67901324804758,-90.67847618972004,-90.67833185425448,-90.67750618136347,-90.67718571373197,-90.67688919948438,-90.67656856724913,-90.67616777354665,-90.675245879624,-90.67450801501575,-90.6739548837716,-90.67352251226507,-90.67319309622917,-90.6725200851802,-90.67201518550584,-90.67151020021277,-90.67116579932434,-90.67101369715749,-90.67048462686799,-90.67030722787645,-90.67010720098531,-90.67002706670165,-90.670038090402,-90.67009664225286,-90.67046490353216,-90.6707381526397,-90.67090535749985,-90.6713297979302,-90.67146606496505,-90.67251597491664,-90.67277296555902,-90.67289259023737,-90.67318145850358,-90.673533984419,-90.673774303134,-90.67419922873204,-90.67444812593311,-90.67490437879285,-90.67511328153249,-90.67522504108798,-90.67550601594974,-90.67581866899704,-90.6760586968156,-90.67639555861135,-90.67665222449045,-90.67751676828965,-90.67763810427472,-90.67783847491407,-90.67807878524772,-90.67833471305629,-90.67858328461038,-90.67897639121874,-90.67903270866567,-90.67907274241628,-90.6790323041367,-90.67907996649582,-90.67918450180649,-90.67937675218027,-90.67963386662002,-90.67992198824923,-90.68044336127016,-90.68063497357743,-90.68097992757222,-90.68165381397951,-90.68180554842831,-90.68202210219403,-90.68214257943251,-90.68233496547779,-90.68255139292319,-90.68267116122456,-90.6830800085332,-90.68330474536229,-90.6834167264265,-90.68356050801816,-90.68367273524933,-90.68376132835566,-90.68420185455565,-90.68437096891418,-90.68467484625864,-90.68561307448148,-90.68574142187154,-90.68587733551047,-90.68596556045306,-90.68607771346464,-90.68635849324484,-90.68645448432186,-90.6865834205494,-90.68679154056341,-90.68692013195472,-90.68718404345888,-90.68738472937774,-90.68758510836402,-90.68772150461346,-90.68805009926606,-90.68845905969755,-90.68880403566109,-90.68897955260292,-90.68913252128277,-90.68950920784218,-90.68991778033988,-90.69009395283467,-90.69019833089656,-90.69027850130675,-90.6903987296111,-90.69049500245391,-90.69063968659552,-90.69075941710364,-90.6910639780659,-90.6912009120376,-90.69137709271045,-90.69151266588203,-90.69168125093088,-90.69192979155443,-90.69240246261721,-90.69253969007715,-90.69274034963188,-90.69288450562286,-90.6931003947852,-90.69321289108692,-90.69345301647805],"lat":[47.00830583708328,47.00838139966471,47.00840510300119,47.00840853284352,47.00836747997231,47.00830212318274,47.00824710866218,47.00823435636886,47.0082899233518,47.00833402573961,47.00832984960197,47.00827840294737,47.00816981013318,47.00805926518443,47.00771702824192,47.0076656260255,47.00764246991297,47.00765365034741,47.00761810301157,47.00757709180362,47.00720736543381,47.00715312672067,47.00675545760758,47.00665089530199,47.00649957708664,47.00636940868194,47.00628377367777,47.00614853973827,47.00604764857592,47.00572312172856,47.00556854983937,47.00525798815637,47.00511334414867,47.00499378250996,47.00489381349771,47.0044096465684,47.0043307789778,47.00433419743843,47.0042485022519,47.00419631822796,47.00408911546565,47.00392263118926,47.00381061536409,47.00358590616774,47.00349229612925,47.0034284234584,47.00341312242197,47.00335793308822,47.00329934366963,47.0031380883047,47.00309655808477,47.00303894666102,47.00294803103829,47.00276660704959,47.00271639281507,47.00260700688307,47.00251789807011,47.00234650559924,47.002162344591,47.00178868933681,47.00147450013613,47.00132188658271,47.00117552653796,47.00109592871402,47.00101039260863,47.00084654537072,47.00066734750961,47.00012364319019,46.99994892285719,46.99953736219982,46.99910251676898,46.99860287385267,46.99821617414348,46.99791042162966,46.99769698228493,46.99749346865118,46.99696749214093,46.99677934769287,46.99587887696728,46.99532735597552,46.99511163648757,46.99499470030138,46.99490098900799,46.99434713501882,46.99406987285649,46.99393664877277,46.99369589364449,46.99351399980198,46.99281445287603,46.99241058213087,46.99218271165909,46.99186262409935,46.99129876383,46.99113884950643,46.99099165971424,46.99084819772774,46.99015460679817,46.98985608796263,46.98963338293346,46.98947134866586,46.98908849120177,46.98877720040313,46.98826592314636,46.9880719891399,46.98755693790837,46.98731397179476,46.98714212010914,46.98689885541478,46.98670507255325,46.98640455603978,46.98631286409476,46.98604363336028,46.98533977954338,46.98513338872987,46.98492575705435,46.98483231199908,46.98462902889182,46.98435225004549,46.9842260195909,46.98418573727513,46.98417824605706,46.98413222486787,46.9840168615567,46.98392749681443,46.98376489829653,46.98353989023327,46.98343537704647,46.98338071614099,46.98337415462472,46.98343498242968,46.98343280968584,46.98330118984232,46.98328840046834,46.98333865716745,46.98336543932354,46.98346074238224,46.98367359145644,46.9838066290658,46.98380863236331,46.98379714083887,46.98382225689093,46.98382038961744,46.98389384205441,46.98391300565744,46.98391385426851,46.98386840518106,46.98379887758031,46.98361482897302,46.98359414081644,46.98363338097064,46.98379494535988,46.98404733052115,46.9842939172903,46.98439165107838,46.98458397172762,46.9849635906282,46.98508104475774,46.98521917634945,46.98537906798575,46.98572993539811,46.98596037445428,46.98646351935036,46.98694290364867,46.98794511504443,46.98819315597434,46.98845317041781,46.98871911726775,46.9887945807079,46.9890473857708,46.98926139763832,46.98964650217641,46.98983152505968,46.99037179304813,46.99071497970652,46.99109751596836,46.99123396736438,46.99152070248111,46.99172204198381,46.99184730406807,46.99196319995752,46.99207429327999,46.99235832320453,46.99249220728093,46.99260518197369,46.99274802068874,46.99302866013076,46.99321460776346,46.99401577906217,46.99420078198604,46.9945179478676,46.99467652122749,46.99494815712576,46.99544571472185,46.9955376818767,46.99586709051291,46.9960720195782,46.99628636928146,46.99657679041901,46.99686599548728,46.99742317502223,46.99803831534575,46.99834191026265,46.99850868329829,46.99856011128226,46.99861412251538,46.99863508471756,46.99871509674613,46.99878460896392,46.99884905613246,46.99913955361226,46.99928457330885,46.99955964619701,46.99969284574437,46.99994981131323,47.00006307971419,47.00042143693258,47.00074210612023,47.00089860684219,47.00134380851307,47.00145886990014,47.0019881374065,47.00209236115393,47.00215802353929,47.00241110810795,47.00259407273288,47.00267983414447,47.0029315510075,47.00301276055506,47.00310793352866,47.00317925461374,47.00324046280946,47.00332260679284,47.0035041134666,47.00359886863005,47.00377685735686,47.00398456192038,47.00457337173576,47.00464351895511,47.00491736083193,47.00509816179179,47.00557133278391,47.00578751935942,47.00595785457206,47.00599014121237,47.00606751767705,47.00628260177318,47.00637793212934,47.00645211583269,47.00650552874572,47.00651975278255,47.0065799076642,47.00684677585526,47.00688219313439,47.00685314747647,47.00692506445906,47.00692809900699,47.00688800156318,47.0068900965422,47.00708298587999,47.00722679980556,47.0072699574778,47.00731869924299,47.00737247622897,47.0073526871798,47.00721572020397,47.00715093311817,47.00713465801322,47.00731425218626,47.00735823668819,47.00736372782859,47.00730637275577,47.00734497226998,47.00742852567427,47.00744824265345,47.0074419461318,47.00728109727652,47.00726477331412,47.00728537347413,47.00735723934675,47.00735084522871,47.00722102940009,47.0071624564742,47.00714381877786,47.00716887097469,47.00730637922637,47.00739559627494,47.00755999983709,47.0076219326858,47.00762495192214,47.00756981527111,47.00756454234482,47.00758147808067,47.00764215469081,47.00770634935268,47.00787997606706,47.00794969749688,47.00794770331225,47.00792335919271,47.00775841562199,47.00772946849483,47.00774696424354,47.00780351401117,47.00790148406272,47.00795116243671,47.00791118540266,47.00793678826231,47.00803512297959,47.00808768372975,47.00809200181616,47.00811212955103,47.00830583708328]}],[{"lng":[-90.64678167793413,-90.64686211651602,-90.64703107102039,-90.64719894006842,-90.64760791965766,-90.64791350102549,-90.64887621738501,-90.649204946631,-90.64946121773148,-90.65018327677369,-90.65042439950214,-90.65070602756245,-90.65106629230317,-90.6517006861872,-90.65194993312839,-90.65238262067014,-90.65319312489375,-90.65444499944154,-90.65475835582883,-90.65535980195915,-90.65705269401857,-90.65725363449509,-90.65738992924291,-90.65752636277234,-90.65756703926228,-90.65757538328167,-90.65761549687309,-90.65763164226249,-90.65764062150086,-90.65780851456155,-90.65809867705285,-90.65829099762098,-90.65852477033842,-90.65873302742811,-90.65913444302069,-90.65927036900202,-90.65983228438091,-90.66060242291938,-90.66086700962734,-90.6614456188876,-90.66225607034073,-90.66294589915704,-90.66345949870828,-90.66429333424242,-90.66454244970635,-90.66550520822641,-90.66686906873259,-90.66748676654622,-90.66852994554236,-90.66913983289618,-90.67063126958061,-90.67184254591967,-90.67203546429045,-90.67225969541843,-90.67265294528738,-90.67302262357894,-90.67364792532122,-90.67383216706925,-90.67452166468173,-90.6752122527938,-90.67568536099857,-90.67634290118049,-90.67669566456343,-90.67702498716922,-90.67737031656748,-90.67837261061905,-90.67896676651243,-90.6791112036815,-90.67931108939183,-90.67955207522081,-90.67968040563115,-90.679752347921,-90.67991284865529,-90.68002551812059,-90.68020179885796,-90.68049824224151,-90.68085142304651,-90.68159731902341,-90.68179036768214,-90.68261614917678,-90.683137795666,-90.68340239616202,-90.68417244943727,-90.68473442393589,-90.68521520929625,-90.68579282848104,-90.68611365414158,-90.68675598801291,-90.68714082682341,-90.68799148158988,-90.68818397050633,-90.68840034262081,-90.68848084008403,-90.68868126677967,-90.68884139417672,-90.68898590808499,-90.68902607423018,-90.68899399879918,-90.68899487317999,-90.68907487627079,-90.68914640208941,-90.68934755891581,-90.69035781162513,-90.69086335172992,-90.69107986243354,-90.69127197517545,-90.6915771478526,-90.69185841920805,-90.69197807036882,-90.69202686173924,-90.69212291746354,-90.6922267640836,-90.69229930363745,-90.69229866357431,-90.69219514609256,-90.69215480620474,-90.69213833732888,-90.69216299809175,-90.69223508812618,-90.69253185527454,-90.69263615885244,-90.69264348310523,-90.69262822935492,-90.69267656553664,-90.69278880989143,-90.6927965367673,-90.69272393872066,-90.69272474246766,-90.69262005151668,-90.69266770765147,-90.69300465932324,-90.69299656783927,-90.69290030455716,-90.69289261982213,-90.69284489491518,-90.69279639284009,-90.69274805025462,-90.69251528141218,-90.6923551218303,-90.69180198913028,-90.69150556376755,-90.69107218271918,-90.69025435217763,-90.68970093872109,-90.6893884715341,-90.68857850502086,-90.68831368479371,-90.68779292024576,-90.68763998615172,-90.68707135717791,-90.68685461069882,-90.68657422385971,-90.68597280087366,-90.68586815426488,-90.68529910298454,-90.68507470546433,-90.6833102454261,-90.68293314604334,-90.68201164946386,-90.68142622990339,-90.68052884554054,-90.6802161806059,-90.68002387640838,-90.67971872186487,-90.67949422163163,-90.67912481841189,-90.67894099596734,-90.6787640334211,-90.67878037033995,-90.67890024257352,-90.67900477811466,-90.67898045222697,-90.679004382269,-90.67915675684623,-90.67917259381439,-90.67907657668523,-90.67890757587858,-90.67828248310636,-90.67793686803594,-90.67771218063454,-90.67761604514894,-90.67728680097979,-90.67702990456746,-90.67681333915846,-90.67649292763721,-90.67627610702048,-90.67609986096392,-90.67601157463794,-90.67580208573901,-90.67556200020759,-90.67535361543523,-90.67520960269579,-90.67511308280169,-90.67488012689678,-90.67479176517365,-90.67447932980599,-90.67417414933986,-90.67394941714113,-90.67383706258586,-90.67366881125901,-90.67353170101879,-90.67346770537128,-90.67309877381696,-90.67291421957317,-90.67264171251068,-90.67253694901855,-90.67240073348323,-90.67232030112302,-90.67226391311283,-90.67202353246311,-90.67179102562372,-90.67179084788674,-90.67197505006654,-90.67204737911868,-90.67209582673001,-90.67211963435939,-90.67207940507933,-90.67195847510689,-90.67192643644145,-90.67191815451076,-90.67175795271996,-90.67164467050883,-90.67159696557611,-90.67134830802652,-90.67111574397461,-90.67104298355225,-90.67072172333393,-90.67068206844873,-90.67056875798787,-90.67054576339238,-90.67044930360038,-90.67028847762727,-90.67021653816714,-90.67017568264113,-90.67000731652799,-90.66959840942022,-90.6693899886389,-90.66898804433089,-90.66873166315133,-90.66849928827742,-90.66767214030411,-90.6665812282568,-90.66628428563614,-90.66585034920412,-90.66563474725811,-90.66529709889321,-90.66480779925524,-90.66456721093682,-90.66429473458089,-90.66384503736059,-90.6635483203697,-90.66321178389454,-90.66276232232173,-90.66198456619054,-90.66126242060244,-90.65969772880975,-90.65894324046812,-90.65863063349261,-90.65797226269487,-90.65764350054191,-90.65732164281299,-90.65719403356874,-90.65700065558109,-90.65669594385369,-90.65650360841008,-90.65623899467819,-90.65509111143146,-90.65415287005739,-90.6537673421485,-90.65354282301261,-90.6534216160826,-90.65334183605118,-90.65301251551259,-90.65208872253939,-90.65171164678524,-90.65101365735153,-90.65086146868629,-90.65070832137989,-90.65044366416545,-90.65018701499763,-90.64998612423261,-90.64978508576078,-90.64965650889863,-90.64935967537355,-90.64908641576325,-90.64877347243767,-90.64858844856855,-90.64838817723953,-90.6482113323171,-90.64780174239586,-90.64759344458345,-90.64692679641242,-90.64678157725905,-90.64678167793413],"lat":[47.0545783379996,47.05469711939018,47.05478615133942,47.0547852027978,47.05461360335818,47.05453425872908,47.05455861768526,47.05462368076017,47.05465147524242,47.05467999848506,47.05468031661891,47.05462753731285,47.05447757284702,47.05389635912979,47.05375320894112,47.05360451773841,47.05346379203698,47.05324630063554,47.05319838770126,47.05308921509261,47.05293497384145,47.05288038831802,47.05278849494502,47.05260717682862,47.05246858689799,47.05224357079545,47.05192557506161,47.05072865191022,47.05022073018515,47.04962079188402,47.04912756747658,47.04887505826953,47.04861444314318,47.04842033417497,47.04810925566296,47.04802186138124,47.04778184382852,47.04727966165284,47.04715046328163,47.04679786329366,47.04636405237045,47.04609066114296,47.04593864437997,47.04566778586602,47.04561909825646,47.04532836023862,47.0450049069028,47.04485564225359,47.0447151361493,47.04463283620493,47.04454593547437,47.0445573962723,47.04458832449502,47.04465562074659,47.04471799030628,47.04477037438465,47.04476951166171,47.04476448804483,47.04463444804801,47.0446888699022,47.0446894547102,47.04476543715438,47.0447813498188,47.04476534346545,47.04471380852791,47.04472531149096,47.04486351981873,47.04486660004822,47.04482998218857,47.04475825099713,47.0447563635373,47.04478461963804,47.04491864701103,47.04497928332314,47.04502772931353,47.04507883448009,47.04509529632642,47.04503349133749,47.04504190464751,47.0452118990605,47.04527627799046,47.04528201117898,47.04521160869238,47.04511544955886,47.04497646901986,47.04478572641267,47.04465275938912,47.04447230825832,47.0443271444766,47.0438715391927,47.04374046497641,47.04351531631502,47.04340909976565,47.04322398294843,47.04294405719918,47.04247413045757,47.04207906892325,47.04198421272952,47.04138129198348,47.04104504545304,47.04081739757228,47.04043430094524,47.03905984388567,47.03851743288921,47.03830578148043,47.03814770472489,47.0377622923905,47.03718298478831,47.03682962327164,47.03637208052267,47.0357843287589,47.03541756631565,47.03482489632544,47.03477540660431,47.03443576687539,47.0341469248952,47.03382757178062,47.03354002299278,47.03326231260648,47.03261148351674,47.03228071220133,47.03195671279542,47.03169977632218,47.03098520626261,47.03060095699247,47.03033994599891,47.02994219103477,47.02962272903117,47.02884215790107,47.02794817811422,47.02608339537705,47.02596646157938,47.02548729630619,47.02489342419419,47.02447864524379,47.02362236384946,47.02347755292198,47.0230948255746,47.02292088151394,47.0225361494624,47.0223500920247,47.02209849411821,47.02172210336954,47.02144085256447,47.02131731160589,47.02110284240434,47.02107068869736,47.02096133296261,47.02089982301153,47.02068107925162,47.02061376385759,47.02055413730238,47.02040701417342,47.0203913304376,47.02029912454295,47.02027628209973,47.02005173217268,47.01998536608427,47.01959828903204,47.01928512910479,47.01888439561022,47.01877489440611,47.01875297610066,47.01897581768416,47.01910650924041,47.01925661910814,47.01932013876416,47.01943817131313,47.01959161696438,47.02003015823792,47.02139960080648,47.02155666029646,47.02182254434938,47.02229407863938,47.02266743337416,47.02346214559451,47.02407956225886,47.0252142985773,47.02572027614836,47.0260984303815,47.02636614968753,47.02689958743454,47.02739828443735,47.0277043997867,47.02828727715452,47.0287688642326,47.0290443671114,47.02921811631922,47.02943419924633,47.02960490411344,47.02984347502237,47.0300338609215,47.03020765794987,47.03045480697576,47.03052506910285,47.03066695154417,47.03089484357098,47.03114250854102,47.03123484259124,47.03146080398446,47.03180862227948,47.03191979707295,47.03221386398138,47.03248491251235,47.03279415732785,47.03296743726313,47.03328881322074,47.03369648273112,47.03385710390951,47.03420327891018,47.03478393737237,47.03490092157283,47.03512480975791,47.03528355317579,47.03547336676871,47.03569875735865,47.03586884479998,47.03603265773413,47.0361672646485,47.0363922790682,47.03680266106124,47.0374124309818,47.03760955908038,47.03821618275261,47.03840033302642,47.03850255665662,47.03945436928456,47.03996640514148,47.04037819970918,47.04051275013533,47.04062804980535,47.04072797890007,47.04083019837043,47.04104978217085,47.04140171884545,47.04186135783553,47.04203692734373,47.04233060952857,47.04248733489526,47.04259048877719,47.0428973371623,47.04319952426713,47.04333735530423,47.04360759439033,47.04367071568706,47.04374466407009,47.04379756171103,47.04377027501005,47.0436925564362,47.04358886522146,47.04354671348483,47.0435447305321,47.0436255073548,47.04383866569706,47.04405824204132,47.04471011277336,47.04514471204167,47.04534954435345,47.04584038361659,47.04617072670127,47.04639360569986,47.04645451683425,47.04648655882367,47.04649786776106,47.04654790193671,47.04670914262692,47.047275326,47.04772837592206,47.04792742534763,47.04807155896678,47.04818586247798,47.0483235482373,47.04864544083653,47.0494094124695,47.04966239828696,47.04994982728375,47.0500547398934,47.05024964723468,47.05041031565644,47.05075596977656,47.05095002128608,47.05123406092368,47.05148787900263,47.05191362717606,47.05221382222769,47.05270265140383,47.05288310959188,47.05302766434312,47.05320413591481,47.05359621348717,47.05382573486922,47.05432949300299,47.05450185127026,47.0545783379996]}],[{"lng":[-90.67255294549936,-90.67316911017078,-90.67352886015672,-90.67383302096532,-90.67404853506454,-90.67435248645344,-90.6752726590385,-90.67574438016099,-90.67598453486961,-90.67701676485986,-90.67738446163352,-90.67876051899687,-90.67899198605825,-90.67950418925722,-90.68042483538518,-90.68121619585735,-90.68152025164585,-90.68210439498789,-90.68231264815901,-90.68306398260931,-90.68332010623961,-90.68434404909559,-90.68529603001697,-90.68570440223006,-90.68663226016332,-90.68676804362985,-90.68708814192375,-90.68743231660358,-90.68762396676696,-90.68901601748533,-90.69017568297741,-90.69043209223879,-90.69201585317244,-90.69236757444959,-90.69296771653885,-90.69361533780867,-90.69463085981246,-90.69493538900109,-90.69511928829419,-90.69536753900883,-90.69599130217922,-90.69703060802733,-90.69792623362348,-90.6983104057995,-90.69856603999357,-90.6988301792686,-90.69908580067184,-90.69934235997034,-90.69991784416393,-90.70098140157444,-90.70145312227872,-90.70162942773557,-90.70182911762427,-90.70238927703984,-90.70266873671196,-90.7028043030499,-90.70289267721516,-90.70286070527702,-90.70293249966872,-90.70315602019174,-90.70318795424278,-90.70321173962745,-90.70314813497455,-90.70302774367939,-90.70282787812087,-90.70257994912637,-90.70175559448057,-90.70128350082689,-90.7009797899013,-90.70068422918196,-90.70048449531363,-90.69975612147984,-90.69759673965665,-90.69695666802967,-90.69665268266634,-90.69615700608352,-90.69515774575187,-90.6946618995283,-90.69374994774086,-90.69235790859324,-90.69155010626956,-90.69056666289028,-90.69003107971575,-90.68903122980824,-90.68847957059745,-90.68716825507997,-90.68620861846777,-90.68573635772049,-90.68468942642568,-90.68431283463903,-90.68329792766336,-90.68113820371194,-90.68054607752785,-90.67989054470556,-90.67961819883897,-90.67931432055228,-90.67909837081406,-90.67881846478213,-90.67849821079075,-90.67798659603096,-90.67785935561514,-90.67770699103865,-90.67757900841249,-90.677331522844,-90.67725900822612,-90.67687525024404,-90.67650674376006,-90.67615502315901,-90.67539553693528,-90.67497987194338,-90.6746030974429,-90.67443554843503,-90.67428338439876,-90.67409935855518,-90.67382763216226,-90.67359577411585,-90.67343603609478,-90.67329984018916,-90.6730836157426,-90.67302794404482,-90.67232386034031,-90.67214730249269,-90.67107569507414,-90.67093126113929,-90.67077995196881,-90.67065951638126,-90.67044304839766,-90.67033132675486,-90.67023552811479,-90.67012368397438,-90.66978779226994,-90.66963520301707,-90.66955609342189,-90.66946767861612,-90.66934805658101,-90.66920383710566,-90.66910747705715,-90.66905177241891,-90.66884420681787,-90.66874739312021,-90.66869137474896,-90.66848381773548,-90.66838713937504,-90.66833957135471,-90.66833928753678,-90.66830723023629,-90.6678752143669,-90.66775442864903,-90.66765843056206,-90.6675390768236,-90.66745789023173,-90.66744227275463,-90.66789080984245,-90.6679302751039,-90.66812218653351,-90.66831412117449,-90.66840963791691,-90.66860172564483,-90.66891427683336,-90.66916972563209,-90.6693297761001,-90.66948102609398,-90.66960990688041,-90.66992980478136,-90.67000930483414,-90.67007356067903,-90.67013695979412,-90.67053741491401,-90.67072121533334,-90.67085730056502,-90.6709049045468,-90.67090517512619,-90.67092911763791,-90.67100124162431,-90.67118444178016,-90.67125672295391,-90.67170482769913,-90.6719044945488,-90.67229701893633,-90.67255294549936],"lat":[46.89458788967568,46.89471756677949,46.8947475117342,46.89479409004412,46.89487043907476,46.89499800852234,46.89565119652594,46.89580926840965,46.89585453266029,46.89585743398411,46.89583388404257,46.89567725148893,46.89561907076854,46.89540849408019,46.89499076141303,46.89460191129807,46.89447749142268,46.89434521481118,46.89426860596281,46.89412182957278,46.89410005214852,46.89406693786781,46.89392400863434,46.89384226172655,46.8935774171422,46.89351304571488,46.89339357744808,46.89332851571519,46.89323794023025,46.89235160475089,46.89170906910733,46.89164678048044,46.89154385318253,46.89149279368964,46.89142841748219,46.89132438160834,46.89105669323387,46.8909412317529,46.89082369116554,46.89070238407938,46.89046743384478,46.89010620972141,46.88967442534938,46.88943867409421,46.88919189144343,46.88877913976747,46.88853179456151,46.88838849420959,46.88816618851416,46.88784583749326,46.88759435383751,46.88746278770618,46.88720565433792,46.88694237386503,46.88670049841824,46.88649662648199,46.8861653711262,46.88560200508861,46.88532034571646,46.884910645829,46.88478052294761,46.88452897051405,46.88430719841188,46.88403965607725,46.88377934980256,46.88357614515717,46.88304632358791,46.88282536768376,46.8827158651067,46.88257031703725,46.88244498919698,46.88194437562357,46.88074437796035,46.88043950000839,46.88033842439799,46.88022501439823,46.88008429079088,46.87995737949387,46.87987573161279,46.87977560872471,46.87975518306075,46.87969475025296,46.87963442592208,46.87957351859383,46.8796027096594,46.87949528929805,46.87966077706848,46.8797091633898,46.87994490758915,46.88009901283171,46.88075806764069,46.88192899677529,46.88213330709323,46.88228624907954,46.88228561567069,46.88225648726122,46.88220714957266,46.8821924975728,46.88210047154747,46.88202251194453,46.88204744813613,46.88212934112915,46.8822257113646,46.88247296244542,46.88251219955341,46.88262133263658,46.88270394040953,46.88271895344641,46.88305471303341,46.8834328735713,46.88351102270259,46.88359300079562,46.88362595519708,46.88360397923953,46.88352233877929,46.88351301469257,46.88356345182608,46.88365986677779,46.88391648500859,46.88402367621271,46.88502163788414,46.88517115744918,46.88584224330238,46.88596964001578,46.88613757101376,46.8863148800022,46.88675147562249,46.88687080035939,46.88691860793837,46.88692938747582,46.88690041814437,46.88693336882714,46.88700357349023,46.88705133723709,46.88703066312869,46.88687908623331,46.88688190012117,46.886921033128,46.88715115567036,46.88731539202445,46.88749457318649,46.88789061634508,46.8882308934209,46.88866143411543,46.88893590336997,46.88912900834747,46.89031264546173,46.89056194640725,46.8908257262099,46.89102552496355,46.89122678719863,46.89135680173231,46.89137049601319,46.89144338294987,46.89153675202063,46.8915991861551,46.89165993478807,46.89186635070258,46.89206137687113,46.89228261021279,46.89245265599384,46.89283816293536,46.89297576937174,46.89316681421804,46.89335757623855,46.89344437700338,46.89349518924553,46.89366494741139,46.89383091533617,46.89398647519014,46.89408630926035,46.89433827551899,46.89441575481336,46.89447551304868,46.89455992796353,46.89456625418622,46.89467442559996,46.89466481586473,46.89456014949729,46.89458788967568]}],[{"lng":[-90.61032672669657,-90.61042222553225,-90.61044643409627,-90.61041502726454,-90.61039102005724,-90.61042242316786,-90.61051109045432,-90.6105916877604,-90.61068740440908,-90.6109680530701,-90.61113577760666,-90.61127209274473,-90.61127209220889,-90.61144891112372,-90.61155325589392,-90.61167281564813,-90.61207425576833,-90.61250725468915,-90.61266706350881,-90.61305976350303,-90.61333270463531,-90.61347693919659,-90.61380518132833,-90.6139658607176,-90.61433456639045,-90.61471971543658,-90.61480766492618,-90.6149925481852,-90.61537645995573,-90.61545659354741,-90.615681211566,-90.61581737860948,-90.61698854615668,-90.61724441772165,-90.61790968335015,-90.61804568924185,-90.61812644348697,-90.61820622266984,-90.61838304323459,-90.61928825729633,-90.61943294759335,-90.61963307829784,-90.61980123695918,-90.62004978753515,-90.62065057665789,-90.62095495812946,-90.62105163207252,-90.62110723695865,-90.62135612375309,-90.62156462903822,-90.6217648603142,-90.62189247456593,-90.62218153967454,-90.62234148205816,-90.62262986642074,-90.62285444909112,-90.62304644111239,-90.62347884670618,-90.62368714258679,-90.62414400056846,-90.62434354562485,-90.62437586155252,-90.62469623949248,-90.62489608630611,-90.62508880840505,-90.62518673075213,-90.6259038071462,-90.62609647234576,-90.62623209812935,-90.62653718325211,-90.627202872745,-90.62725166411661,-90.6272596954403,-90.62721144205696,-90.62688405570829,-90.62653917275487,-90.62589844301966,-90.62567419967762,-90.62540265319979,-90.62518703147049,-90.62511811931614,-90.62503974417379,-90.62499566017017,-90.62490784972198,-90.62485176199766,-90.62481319150693,-90.6247787537321,-90.62454903213798,-90.62440409288816,-90.62431636555168,-90.62415538482857,-90.62396986679384,-90.62387356125946,-90.62383285515004,-90.62383249678942,-90.62368803451601,-90.62327817801889,-90.62311684918205,-90.62278015871551,-90.62259555394223,-90.62237104070448,-90.62204188237365,-90.62188153136698,-90.62117575278735,-90.62092681549599,-90.6204135741028,-90.61968397755101,-90.61905838669158,-90.61789427940658,-90.6177183834985,-90.61755827210062,-90.6174374160029,-90.61730166701682,-90.61704522251448,-90.6163723353085,-90.61601132044457,-90.6153146586575,-90.61488956530167,-90.6140165035894,-90.61363245927643,-90.61315916071132,-90.61267075167072,-90.61214191151952,-90.61126026386246,-90.61047504624479,-90.6101709459885,-90.60991524271941,-90.60983481683364,-90.6094103461174,-90.60914640534575,-90.6090822748852,-90.60889800140339,-90.60877800730512,-90.60864223636945,-90.60845743146071,-90.60840998653329,-90.60832190657773,-90.60812924690518,-90.60793669200885,-90.60777713192479,-90.60760842033716,-90.60714365675568,-90.60687164762194,-90.60667091208599,-90.60619069242182,-90.60588661229077,-90.60542978310941,-90.60527720316021,-90.6048288757039,-90.60470008796159,-90.60422783728649,-90.60405926566058,-90.6039881281783,-90.60389970581134,-90.60382769374485,-90.60382699290543,-90.60386764970868,-90.6038198233492,-90.60376374587422,-90.60359542161922,-90.60353939459911,-90.60345193084015,-90.60336346001172,-90.60314691868794,-90.60314711861149,-90.60323569292535,-90.60327535315395,-90.60328392175946,-90.60325972472445,-90.60321190573492,-90.6031399387475,-90.60302778624863,-90.60279532062822,-90.60267516052893,-90.60261147826159,-90.60252290500793,-90.60251501284024,-90.60255527416996,-90.60259555997762,-90.60279596413761,-90.60284431041532,-90.60285642902156,-90.60284975334935,-90.60284260052934,-90.60294680444544,-90.6029550734571,-90.60302686405586,-90.60313922800557,-90.60321887279355,-90.60322724068436,-90.6030664545334,-90.60305872712563,-90.60291454473277,-90.60289890403835,-90.60283501286166,-90.60283483940296,-90.60292290942587,-90.60293943007684,-90.60305135223098,-90.60305926470983,-90.60303525238622,-90.60273122331748,-90.60261125072716,-90.60257915907785,-90.60260282683404,-90.6026992388451,-90.60271495863434,-90.60268339045005,-90.6026671279117,-90.60269163306207,-90.60290819597633,-90.60304386409842,-90.60319714340943,-90.60330053761761,-90.60355756744083,-90.60359841292295,-90.60366219192814,-90.60388679360858,-90.60393499746792,-90.60396704840976,-90.60403904521498,-90.60443997942303,-90.60464869123815,-90.60501730030461,-90.60529801961253,-90.60549886547219,-90.6055383295061,-90.60552268142763,-90.60557123904192,-90.60574746836873,-90.60590782800503,-90.60622854502354,-90.60638042298483,-90.60643705139901,-90.60647748928574,-90.60645317280445,-90.60637308168511,-90.60639742875638,-90.60642933800337,-90.60640553398737,-90.60637350467294,-90.60638170956626,-90.6064297593024,-90.60640532732694,-90.60663049244897,-90.60672634416517,-90.60672658321766,-90.60678244951845,-90.60692682077662,-90.60714361979369,-90.60754407504425,-90.60767262653521,-90.60772891079388,-90.6077768670889,-90.60797717212608,-90.60857050288654,-90.6086987474107,-90.60912355611234,-90.60923622254066,-90.60931630022769,-90.60933257963693,-90.60950065631188,-90.6098455553318,-90.60999780799635,-90.61022222883651,-90.61028586359316,-90.6103180884101,-90.61032672669657],"lat":[47.00816377300607,47.00817451136413,47.00820643960603,47.00830053380371,47.00839458429498,47.00844447208747,47.00846874597023,47.00847056681125,47.00839187937498,47.00830770719914,47.00830681218601,47.00825546554981,47.00818347699931,47.00815103589873,47.00814429143153,47.0081740209988,47.00819100095653,47.00812794514604,47.00808209517959,47.00805412157093,47.00805097327325,47.00808113569,47.00809681013095,47.00812688256696,47.00812153166999,47.00815208346705,47.00818535773904,47.00817536508863,47.00813393215643,47.00809525815901,47.00807267814535,47.00811637895936,47.00810894873506,47.00808732011033,47.00795269101002,47.00794632816412,47.00796164386178,47.00799945773659,47.00803899690787,47.00799923565852,47.00796189461676,47.00781289135877,47.00763650647262,47.00747993027732,47.00728095526655,47.00722418610228,47.00719441652485,47.00713280989935,47.00686374531521,47.00676419123946,47.00662474800166,47.00656893722373,47.00653868370294,47.00650575724732,47.00638157886694,47.00625100116655,47.00607504142167,47.00553951087087,47.00542251573712,47.00511688193411,47.00495493881866,47.00490583328317,47.0045300725441,47.0043945631528,47.00431758354542,47.00428948853452,47.00409153575039,47.00401005481783,47.00393676191774,47.00373149197496,47.00300738419671,47.00289125849423,47.00276972718402,47.002615890888,47.00224929593274,47.00179224289811,47.00123894388754,47.00100901627551,47.00063536014461,47.00036882475882,47.00031070909125,47.00021664979138,47.00017245733223,47.00008013797838,46.99999383089345,46.99996423276878,46.99993685901277,46.99965915312995,46.99939053729052,46.99916379914557,46.99885871800188,46.99796434702058,46.99774159069894,46.99749321604889,46.99703878123266,46.99631572859458,46.9952139168926,46.99487734004389,46.9943757980577,46.99401628892027,46.99372392558089,46.99333876592344,46.99319171785087,46.99268655335378,46.99255517040341,46.99224299587337,46.99173738669619,46.99112603913458,46.98978812974022,46.98971652612836,46.9896954551178,46.9896927316033,46.98971708427462,46.9898242054752,46.99017034485707,46.99029771064418,46.99036388386647,46.99038697432051,46.9905170835557,46.99053601556067,46.99051267843256,46.99053385334928,46.99054117864075,46.99071180677546,46.99101464476081,46.99123336087185,46.99151593741357,46.99167159436685,46.99222053104504,46.99268312182608,46.99271777092562,46.99277724413969,46.9928509992293,46.99301932103534,46.99328520855507,46.99352280431988,46.99358401602551,46.99366546413644,46.99379190956271,46.99385630686464,46.99394719375991,46.99406326459206,46.99421487793553,46.99438185674911,46.99487595987509,46.99502717190918,46.9953372368205,46.99540159614052,46.99548214532492,46.99554244151214,46.99579802232858,46.99590240181978,46.99600907431317,46.99622326044847,46.99632544115484,46.99655491439406,46.99684378611909,46.99701333043899,46.99710698861512,46.9972338572771,46.99729545529194,46.99759512933285,46.99776882127499,46.99795781229563,46.99801180320361,46.99813956843784,46.99823047138454,46.99833447772529,46.99855844761853,46.99872855423699,46.99883523112474,46.99894999600805,46.99903951986437,46.99906377124721,46.99910291546925,46.99923161517661,46.99940713175025,46.99958802077046,46.99962492869279,46.99975435807502,46.99981372255026,46.99994076523792,47.00018770444972,47.00050213790728,47.0006303842786,47.00067083468954,47.00073120030825,47.00092689465958,47.00102771273528,47.00107716065084,47.0012540470127,47.00133451539092,47.00148937523213,47.0015608884294,47.00161802873536,47.00171251673486,47.00183128734858,47.00202073716923,47.00210394646707,47.0021494655694,47.00217096276657,47.00233116761804,47.00244597135709,47.00255300121698,47.00268392038591,47.00274021871993,47.00278569249486,47.00282972783967,47.00295523313741,47.00301415622372,47.00315418748365,47.00326483034479,47.00347943166585,47.0035716879206,47.00394603534136,47.00403243373039,47.0040742775587,47.00408771717019,47.0041341441319,47.0042785197852,47.00432032005805,47.00444137595456,47.00457637789982,47.00467398358096,47.00477879469406,47.0049087813787,47.00498168657155,47.00523373636091,47.00531109095335,47.0054451452669,47.00552078477178,47.00559951493125,47.00565213819569,47.00571595717344,47.00587434585788,47.00590540909059,47.00602056872871,47.00617397702597,47.0062694239915,47.00634547348231,47.00638501658182,47.00660150634898,47.00666986764116,47.00687190454482,47.00700682055931,47.0071216096379,47.007324082163,47.00739296331143,47.00747206255571,47.00755752812513,47.00763358120213,47.00769476553728,47.00769165483877,47.00767902702575,47.00768752499735,47.00751564287053,47.00751383959619,47.00767074672094,47.00774494790912,47.00784575629778,47.00804814344595,47.00815073641032,47.00818489468977,47.00816102144656,47.00808502700431,47.00807737473308,47.00809126541951,47.00816377300607]}],[{"lng":[-90.64186871670074,-90.64217380161874,-90.64255842285426,-90.64433146642538,-90.64467635618432,-90.64503741423063,-90.64531013821846,-90.64548715796958,-90.645840127014,-90.64616866218726,-90.6464174929536,-90.64660289674457,-90.6468831185682,-90.6479990137609,-90.6485688565452,-90.64881793141404,-90.64891500375438,-90.64886702228981,-90.64888372797573,-90.64904362499607,-90.64927669898503,-90.64943708356184,-90.64975823004383,-90.65011946971487,-90.65043961619867,-90.65092975536051,-90.65183649821088,-90.65196458496717,-90.65198861280581,-90.65192471018436,-90.6518285187618,-90.6517245444704,-90.65161975248773,-90.65164446837466,-90.65170052721594,-90.65167728396736,-90.65176524369666,-90.651910284574,-90.6519663434479,-90.65207972702375,-90.6520956050243,-90.65195952601088,-90.65144662779974,-90.6510624664699,-90.65086172292609,-90.65022855476496,-90.65003645305313,-90.64979545506927,-90.64914665610962,-90.6484410392948,-90.64834491679125,-90.64743922844774,-90.64727085275081,-90.64684556028884,-90.6456836630626,-90.64536313306679,-90.64451344111067,-90.64401603252932,-90.64380793146904,-90.64343087818014,-90.64321420808874,-90.64274167444364,-90.64209925729685,-90.64185147882225,-90.64124959061203,-90.64081620248683,-90.64004494943327,-90.63982058515647,-90.63970016700048,-90.63893793192176,-90.63881743646911,-90.63867189525062,-90.63855246914683,-90.63858368838254,-90.63868760687583,-90.638951478493,-90.63928826721639,-90.63947951816418,-90.63960036091636,-90.63971211951848,-90.63977562857647,-90.63979141481363,-90.63978351570493,-90.6396232011252,-90.63903646884651,-90.63865094752083,-90.63799219539855,-90.6378160647712,-90.63757440073867,-90.63751882540467,-90.63739027788094,-90.63706125711322,-90.63695718598373,-90.63698826819339,-90.63696486777783,-90.63698069720947,-90.63710022285615,-90.63740487235978,-90.63746111420583,-90.63752497405946,-90.63749243496602,-90.6372036320905,-90.63710698064125,-90.63711547160446,-90.63722752116645,-90.63778798931823,-90.63860587425978,-90.63878989755865,-90.63907067224365,-90.63955994292719,-90.64020847776766,-90.64046568131093,-90.64068233580383,-90.64127548679345,-90.64186871670074],"lat":[47.04065064106359,47.0406388037763,47.04057028153541,47.04061150146764,47.0405915632679,47.04051360410252,47.04041083188893,47.0403198446209,47.03998096365814,47.03973108442803,47.03942147230813,47.03934393812527,47.0391471934869,47.03801829115945,47.03735084684518,47.03699567170898,47.03665598426069,47.03636266949308,47.03628158859969,47.0360692097687,47.03585360628357,47.03561366869754,47.0353008239134,47.03503837430784,47.03484701993445,47.03463163997434,47.03434470985538,47.03425736864105,47.03413631082729,47.03388751825479,47.03372327884181,47.0335950762556,47.03339995007146,47.03296393153994,47.03277126523528,47.03248343645827,47.03224222147761,47.03131846020842,47.03112579250132,47.03091255116978,47.03069649157123,47.03012696924758,47.02948197740964,47.02914108455034,47.02893468996729,47.02840848581334,47.02826953093898,47.02813423330399,47.02757211550158,47.02713911143488,47.02711434775034,47.02696986750783,47.02692132145474,47.02667851303377,47.02588530420644,47.02573469407202,47.02528560195996,47.02513092389326,47.02509553811797,47.02506559766264,47.0250701913307,47.02513695893533,47.0253036651533,47.02538885258432,47.02567793717382,47.02599250962315,47.02680445967387,47.02706049165435,47.02727376025598,47.02798273202441,47.02815550449046,47.02850389257709,47.0288701345018,47.0292805281868,47.02947623391248,47.02973797597408,47.03038850439265,47.03090542678268,47.03120902594141,47.03154416780809,47.03193694480736,47.03222537846022,47.03235590427266,47.03270775229933,47.03334375109714,47.03378121386108,47.03472638436494,47.03506425544213,47.0353563727892,47.03538705324314,47.0355418685466,47.0357866683802,47.03592447813065,47.0361858322842,47.03629338123239,47.03637934742836,47.03650297567766,47.03669812989057,47.03675799568327,47.03693929897085,47.03707390138128,47.03745008146891,47.03762384383072,47.03774978006116,47.03793644420934,47.03854186295163,47.03934606895371,47.03946202502163,47.03958475463221,47.03970294411421,47.04006714374595,47.04024792994832,47.04037438515959,47.0405437289472,47.04065064106359]}],[{"lng":[-90.72921666607274,-90.72933731875793,-90.72949775659531,-90.72968241534201,-90.72981138746832,-90.72991562492915,-90.73032456224901,-90.73044522288879,-90.73053357604276,-90.73059773160601,-90.73102283391583,-90.73118332589736,-90.73125581622327,-90.73123204365653,-90.73126386839813,-90.73126364365834,-90.73130320146723,-90.73144816102537,-90.7316327706714,-90.73165628783435,-90.73184863615872,-90.73188913739385,-90.73187243909551,-90.73176028153007,-90.73176026639236,-90.73184002465494,-90.7318798843488,-90.73190452938908,-90.73183989081832,-90.73196023670091,-90.73195235667809,-90.73196831544232,-90.73191172461004,-90.73191174903182,-90.73183966843511,-90.73182359868871,-90.73176683910323,-90.73175121583655,-90.73177526825722,-90.73173409860533,-90.73149344362452,-90.73139743856119,-90.73123671247915,-90.7311564074962,-90.73114795419806,-90.7314126652159,-90.73142023383437,-90.73133220797665,-90.73125926067716,-90.73127521692744,-90.73138045870644,-90.73143558893109,-90.73142822484692,-90.73137163652818,-90.73140351224328,-90.73150778706719,-90.73151576363867,-90.73144338742254,-90.7312421106635,-90.73108954285766,-90.73103316530289,-90.73038184489134,-90.73022939492462,-90.73019764508851,-90.7301971860924,-90.73024506238963,-90.73038124774828,-90.73041324389841,-90.73037319458618,-90.73051681882761,-90.73054119742869,-90.7304605869334,-90.73054047052894,-90.73054858617938,-90.73066916483671,-90.73074054918872,-90.73069190507285,-90.73061155887471,-90.73047512544339,-90.73035461339005,-90.73028229550025,-90.73008128679338,-90.73004088632135,-90.73005790979724,-90.72980822587365,-90.72962346242824,-90.72940616537008,-90.72929409151236,-90.72913304231894,-90.72888443516018,-90.72834663480202,-90.72805721636011,-90.7278488122285,-90.7276719113509,-90.72749608054592,-90.72731934366995,-90.72668513167208,-90.72646028084829,-90.72622735361567,-90.72602679746652,-90.72567439431596,-90.72482373549342,-90.72463139071189,-90.72438234936047,-90.72421350141333,-90.72409304098264,-90.72398054107398,-90.72390081802139,-90.72382847524027,-90.72370842399572,-90.72343547493277,-90.72324318051403,-90.72312208157388,-90.72284926685906,-90.72251308710834,-90.72233623494809,-90.72197449419866,-90.721853870486,-90.72174985035376,-90.72161398213595,-90.721582158106,-90.7215578502434,-90.72148533854785,-90.72133318768324,-90.72126135109872,-90.72116515982499,-90.72077247430578,-90.7207803935584,-90.72084425588953,-90.72086072559151,-90.72093345809297,-90.72087658426858,-90.72092538100794,-90.72091753400082,-90.72086112943782,-90.7208613059649,-90.72081273412577,-90.72094978058296,-90.7209740133749,-90.72092571967934,-90.72082108222338,-90.72081342265102,-90.72084588745861,-90.72085356225638,-90.72067753649654,-90.72058959572833,-90.7205494802313,-90.72059816363411,-90.72067780985843,-90.72099923998418,-90.72101531222134,-90.72118343547879,-90.7211919725564,-90.72135275761407,-90.72137656817802,-90.7212959620484,-90.72127231003491,-90.7213769454486,-90.72140885629246,-90.72140946338146,-90.72150588724273,-90.72153020821838,-90.72150584843465,-90.72151416875477,-90.72141803764815,-90.72139384042667,-90.72154616253761,-90.72159515138058,-90.72155505089073,-90.72158701874382,-90.72174761560372,-90.7217482508989,-90.72192452374338,-90.72196480653967,-90.72212532612632,-90.72227754175903,-90.72238227975858,-90.72261557220003,-90.72267978591346,-90.72284003457169,-90.72288818178467,-90.72296862013027,-90.72334578701056,-90.72367589011212,-90.72384385210763,-90.72395671522541,-90.72402053333923,-90.72415713943133,-90.72432548459091,-90.72435834057184,-90.72457466144573,-90.72462381290353,-90.72479216090855,-90.72480065586996,-90.72488858177766,-90.72492101582625,-90.72492080335367,-90.72508915350552,-90.72518533841583,-90.72528224090074,-90.72545063737562,-90.72556353752518,-90.72562699666318,-90.72584428953964,-90.72590790168171,-90.72608503393235,-90.72615723759689,-90.72615734883232,-90.72606906591457,-90.72606909981295,-90.72611741418847,-90.72622201951759,-90.72648652351538,-90.72655889246573,-90.72658304258076,-90.7266156005894,-90.72679977656415,-90.72695201467742,-90.72700086166931,-90.72703327949647,-90.72720121698971,-90.72728160981842,-90.72735410255375,-90.72747444230187,-90.72757117087012,-90.72763570471504,-90.72782821888295,-90.7280605248406,-90.72818172387916,-90.7283498789249,-90.72850257650684,-90.72871074733227,-90.72888774962398,-90.72905630623096,-90.72921671360376,-90.72921666607274],"lat":[47.0807721561176,47.08077476428614,47.08070624913547,47.08072307051007,47.08067163388991,47.08067771579563,47.08065880028114,47.08057141689358,47.08046962000535,47.08043490327375,47.08039394355023,47.08032936657546,47.08027210049947,47.08015920718047,47.08004820639484,47.07997171651954,47.07991409925395,47.07985805759806,47.07960097877356,47.07939442210561,47.0791912805206,47.07905267127785,47.07897572220101,47.07881165297818,47.07869017142383,47.07850237588589,47.07846725224658,47.07837316713426,47.07819192003271,47.07799205754751,47.07780763576668,47.07765005667601,47.07754580667179,47.07748731592287,47.07736404491803,47.07724266349032,47.07715585320845,47.07700690879299,47.07680934774832,47.07662851200698,47.07630890968743,47.07609130453554,47.07595735130242,47.07583412870269,47.07566770817891,47.07503835926485,47.07489939229347,47.07457318953931,47.07444598396697,47.07437895615005,47.07430910763471,47.07424689032246,47.07412995427824,47.07402514250923,47.07391807909502,47.07380773886533,47.07348823847629,47.0732524833947,47.07295174944795,47.07266082743827,47.0724210345103,47.07114400148716,47.070740593638,47.07046520793311,47.0702807409135,47.06998910091935,47.06944324940582,47.06925463447285,47.06876333670169,47.06846096323191,47.06831739208394,47.06796020440092,47.0676919859627,47.06759294812478,47.0673210923299,47.06682289572106,47.0666061121083,47.06638840604373,47.06619243003109,47.06607733945049,47.06590513682223,47.06571182384646,47.0656164668606,47.06535595998805,47.06497341867878,47.0642811334878,47.06406992286491,47.06387885093804,47.06371789901888,47.06356425217663,47.06320716444238,47.06292723325785,47.06282394904465,47.06279807563175,47.06279019229822,47.06274575994054,47.06240952189077,47.06233727066246,47.06233705881141,47.0623872641866,47.06252897925609,47.06279982598374,47.06281847949759,47.06281386473933,47.06277444204837,47.06272233513189,47.06271123763581,47.06274998583083,47.06284773887468,47.0629171127601,47.06297001915626,47.06296223450477,47.06292362907021,47.06289554483804,47.06292916122468,47.06299776732942,47.06321095400794,47.06329889055174,47.06345871091608,47.0639421239095,47.0642066594575,47.06429623751278,47.06441199332853,47.06451249806205,47.06458718962387,47.06490050088798,47.06568923531673,47.06578816852533,47.06591543872227,47.0660688751939,47.06618258739713,47.06629880576929,47.06640760731792,47.06649708036643,47.06661779140887,47.06675277550151,47.06690492976923,47.06724039846626,47.06738928491149,47.0675009481622,47.0676157798264,47.06771931215697,47.06786814984346,47.06807113312568,47.06850811540356,47.06860990534199,47.06871757909287,47.06912333893631,47.06929156480388,47.06962642885373,47.06981080004148,47.07003921030928,47.07018369983788,47.07044758401869,47.07056498042115,47.07075277485545,47.07089127685096,47.07117238885031,47.07152426307297,47.07156925083636,47.07191284655406,47.07209829333888,47.07224523633868,47.072434718128,47.0726619798447,47.07288203552552,47.07312798037047,47.07337232312936,47.07354242431292,47.07362377741848,47.07381173637969,47.07391971749022,47.07404908739444,47.07416693876289,47.07431834384158,47.07455585058914,47.07466092455907,47.07483661502299,47.07492788392575,47.07536330924707,47.07557559970655,47.07577081447037,47.07617449742228,47.07656779125033,47.0768726879125,47.07696927131654,47.07709203747928,47.07727002201324,47.07739044155763,47.07756683261596,47.07776456070329,47.07783736341914,47.07795778225008,47.078128701565,47.07820744717488,47.07826179643519,47.07830678931764,47.07842720708284,47.0785683292104,47.07861101800572,47.07858295461225,47.07862104802994,47.07871682232187,47.07883355244284,47.07887982993741,47.07891919997476,47.07896148500956,47.07906047017273,47.07919825988678,47.07926125073187,47.07930256499831,47.07933620925514,47.07929178895349,47.07931607497864,47.07948745927141,47.07955080641192,47.07965368495477,47.07976913907871,47.0798194450996,47.0799328506991,47.07993121823169,47.08000045045319,47.08003373434369,47.08001328623826,47.08004248001785,47.08015623797807,47.08023656733789,47.08024577667212,47.08028831341284,47.08045371851104,47.08054217199793,47.08062296048806,47.08062183415598,47.08066575587286,47.08065517348366,47.0807721561176]}],[{"lng":[-90.7990799047505,-90.79936710682921,-90.80002084925032,-90.80040309451577,-90.80065831655898,-90.80088196792686,-90.8011049595363,-90.8012651324197,-90.80145688882074,-90.80172848045559,-90.80185625855397,-90.80201545361784,-90.8031644224221,-90.80399380300251,-90.80466391905844,-90.80482318568168,-90.80507889307864,-90.80527055470499,-90.80562131587773,-90.80600405786734,-90.80641944143802,-90.80680259035843,-90.80721755503835,-90.80756896563179,-90.8080798786569,-90.80843103352484,-90.80868657192418,-90.80958059768666,-90.80983694804333,-90.81009198263985,-90.8103152106754,-90.81057042374215,-90.81069794668669,-90.8108255461911,-90.81084983618736,-90.81079421021097,-90.81075428901576,-90.810315765097,-90.80987020271029,-90.8091681278885,-90.80884960845148,-90.80814835606955,-90.80802066867312,-90.80794133136818,-90.80780522913321,-90.80770887655653,-90.80735772362155,-90.8071019487557,-90.80687021471863,-90.80662294423865,-90.80626409790534,-90.80444556623259,-90.8039032436218,-90.80345703186634,-90.80250032996403,-90.8021493431883,-90.80103229946413,-90.80013923502871,-90.79921451448155,-90.7975248496962,-90.79736534771888,-90.79691815059213,-90.79666309710659,-90.79647178373941,-90.79446305448859,-90.79245470616154,-90.79191282901016,-90.79143418589703,-90.79089281778364,-90.78980867367868,-90.78821492315002,-90.78741790518185,-90.78563361927779,-90.7834038577939,-90.78273450980602,-90.78152448435719,-90.78072851386771,-90.77993221892807,-90.77868975585341,-90.77795778519338,-90.77598420053745,-90.77557047513193,-90.77451977122089,-90.77375584199379,-90.77133679632992,-90.77125693833447,-90.77121784865051,-90.77126626239344,-90.77142585194348,-90.7717299100143,-90.77190560653288,-90.77201831448868,-90.7720504929227,-90.7719633401619,-90.77121648275124,-90.77096225909371,-90.77054946512141,-90.77031897016236,-90.77019255831507,-90.77020913462208,-90.7702737867731,-90.77039395554964,-90.77065844597811,-90.77081849725502,-90.77086712865916,-90.77091676510926,-90.77090118140421,-90.77086199922601,-90.77078234636684,-90.77057590983574,-90.77017047570392,-90.76993938117877,-90.76984379890625,-90.7697957897421,-90.76979600452935,-90.77030479367446,-90.77047158080124,-90.77051910890147,-90.77051872880439,-90.77045496629849,-90.77030257762729,-90.76953110872741,-90.76869961394853,-90.76862806117096,-90.76859634004822,-90.7685640786864,-90.76857248646726,-90.76854159058979,-90.76868553173462,-90.76896501424369,-90.76905282892716,-90.76906921795303,-90.7689894532879,-90.76888610021106,-90.76859868364039,-90.76855079179406,-90.76855150868802,-90.76848774294734,-90.76835992389415,-90.76794515370183,-90.76788129729717,-90.76782554835989,-90.76780962055177,-90.76782644575422,-90.76778686843829,-90.76757256212036,-90.76765302928254,-90.76786895141286,-90.76792477271118,-90.76794075183059,-90.76791692734078,-90.76777397666282,-90.76758272528473,-90.76731100884123,-90.76711981545135,-90.7669753090431,-90.76650388470463,-90.76633614896215,-90.76624884836308,-90.76622514830716,-90.76620979564086,-90.76612247462126,-90.76616253080003,-90.76625869382318,-90.76625898763598,-90.76616335648637,-90.76584493137302,-90.7657970788562,-90.7658371903251,-90.76590950385675,-90.76600501501957,-90.76629186274859,-90.76641944906818,-90.76645945964032,-90.76643326031719,-90.76638047177424,-90.76622921482429,-90.76597393407084,-90.76568646094982,-90.76551133959416,-90.76543082537076,-90.76534315008605,-90.76526213807264,-90.76529312047636,-90.76538751721341,-90.76571258883139,-90.76622957564835,-90.76669728267586,-90.76711853617248,-90.76763415776776,-90.76784856590726,-90.76810170870255,-90.76849769956594,-90.76865600841624,-90.76882275386809,-90.7690132456385,-90.76947351686977,-90.77014835165318,-90.77060089669538,-90.77117295323765,-90.77161790034948,-90.77203113744444,-90.77296903646666,-90.77376428485719,-90.77468685136427,-90.77519599499489,-90.77572064534196,-90.7767145599887,-90.77766920699101,-90.77900543330419,-90.78184569909351,-90.7820129385096,-90.78245163674602,-90.78343930369505,-90.78393279983129,-90.78422788981374,-90.78442689066095,-90.78455449778409,-90.78487377884291,-90.78509700598261,-90.78562328658764,-90.78600583168868,-90.78624466253898,-90.78694592760705,-90.78712121263807,-90.78777459438857,-90.79045238342775,-90.79150487926493,-90.79225405873714,-90.79258892801026,-90.7931308041469,-90.79352917254037,-90.79381613015688,-90.79458230265256,-90.79509258492594,-90.79579450961383,-90.79777178910506,-90.79802701674691,-90.79834647045169,-90.79871912958545,-90.7990799047505],"lat":[46.73094238959569,46.73097581923626,46.73109723982328,46.73119637086027,46.73122439362028,46.73121945494831,46.73117008277156,46.73110428204824,46.73098932387585,46.73076975313538,46.73069855182226,46.73064962792784,46.73060107097771,46.73062393145719,46.73060853474522,46.73056466866019,46.73043294197999,46.73036747554877,46.73030201232775,46.73026950582221,46.73020414641693,46.73011651684765,46.72999603814719,46.72986475607674,46.72962379415891,46.72950319896066,46.72938834127772,46.72889493543285,46.72878006759704,46.72871414333142,46.72868162739811,46.72868207056353,46.72870422579141,46.7287038862193,46.72868740208764,46.72860511628073,46.72858852383843,46.72847295301185,46.72829668240993,46.7281970352884,46.72811997899895,46.72791064191986,46.72790479399048,46.72793235271455,46.72810261100346,46.72816853678822,46.72834368891237,46.72849735084105,46.72859010571414,46.72865596685278,46.72869955565945,46.72868648361437,46.72871335102779,46.72871255227922,46.72865120784543,46.72864579319,46.7286935526316,46.72870373761589,46.72864776697637,46.72841488934518,46.7284148749325,46.72851360853382,46.72852381849373,46.72850209164572,46.72818083422818,46.72782747755089,46.72771704902827,46.72759549835366,46.72746312821381,46.72724226135588,46.72687809354127,46.72665747354276,46.72604035204395,46.72518608839854,46.72491112905195,46.72434963579078,46.72394223020152,46.72356800373244,46.72305000841335,46.7226539561704,46.72150926843999,46.72128877564093,46.72070531713771,46.72024308559988,46.71884541292155,46.71877958257414,46.71864766781218,46.71851572473833,46.71835154197736,46.71811044704204,46.71792927661264,46.717775528241,46.71759476552411,46.71741873931116,46.71671508727164,46.71640688740874,46.71598895147753,46.71568115607325,46.7154176528426,46.71508850706415,46.71489065024853,46.71471548010791,46.7144245982247,46.7141501674546,46.713947355347,46.71344193744075,46.71326655405848,46.71315657785023,46.71304687728267,46.71284859465751,46.71260103250627,46.71247997234438,46.71245755374412,46.7124741875677,46.71251805761376,46.71290329252286,46.71307371807266,46.71316676410088,46.71325507109024,46.71334268011986,46.71340838977628,46.713413014843,46.71365314961484,46.7136530688114,46.71363640655362,46.7135815037715,46.71348245512741,46.7133510457606,46.71320834423253,46.71299441948512,46.71290158739757,46.71284635715897,46.71278614884271,46.71276378288091,46.7128512030422,46.71281834280383,46.71272497071194,46.71269727808246,46.71270825969285,46.71283928430302,46.71283408610802,46.71279509071111,46.71276763450578,46.71257010173152,46.71246068917889,46.7121966448688,46.71207574405553,46.71190611982491,46.71183487634919,46.71177964840597,46.71171399862018,46.71160921905745,46.71158688019814,46.71168544286049,46.71181159205128,46.71194304743776,46.71228874178825,46.71231011177403,46.71226626345802,46.71223830004877,46.71210678898572,46.71197463322787,46.71188718411232,46.71177742595986,46.71171161553518,46.7116565749402,46.71154621567228,46.71145822905229,46.71140340438966,46.71137086138096,46.71135953550517,46.71137673546784,46.71134944384441,46.71131655781744,46.71125654975087,46.71119559624011,46.71116792257939,46.71115669630689,46.71121092885131,46.71128803104434,46.71134818870883,46.71147982758173,46.71176497326762,46.7121056123143,46.71239127097898,46.71279800029957,46.71333112068127,46.71396356104782,46.71437582694065,46.71504112830544,46.71539797018114,46.71591991667418,46.71659557874216,46.71697473149404,46.71722784211479,46.71742567042301,46.718019339798,46.71880560823119,46.71937176554124,46.72003104366345,46.72049319255135,46.72091055806538,46.72175746912983,46.7224067891468,46.72312161089295,46.72355069124344,46.72403421967645,46.72481547184639,46.72550868217153,46.72654238116164,46.72849496950651,46.72857763199428,46.728737744104,46.72904652368397,46.72923381489949,46.7293330331276,46.72937722671146,46.72937747784263,46.72931173077711,46.72930626258372,46.72935664523153,46.72942263744265,46.72947780345289,46.72972046127126,46.72976481872937,46.72986437182208,46.73046066651619,46.73058275967147,46.73071537570351,46.73079236247769,46.73101246132497,46.73106819548014,46.73105720792515,46.73098158378468,46.73097128974782,46.73100465755899,46.73115512366039,46.73112803535064,46.73101894019652,46.73093984672657,46.73094238959569]}],[{"lng":[-90.58943308919115,-90.58931277184813,-90.5891447154597,-90.58898346207422,-90.58884707228155,-90.58871882600621,-90.58861458591809,-90.58833392292301,-90.58812497151803,-90.58736348426631,-90.58717893910145,-90.58692202638723,-90.58648147788652,-90.58622447858987,-90.58592699754594,-90.58530131726222,-90.58494055659402,-90.58492403868055,-90.5848923025051,-90.58490919292061,-90.5848928672321,-90.58486021873709,-90.58473258990433,-90.58471644680826,-90.58466815161948,-90.58466858472634,-90.58470014821133,-90.58470079642558,-90.58461232362471,-90.58463645014614,-90.58454790824021,-90.58451599160627,-90.58460435959127,-90.58474791019867,-90.58480469954236,-90.58480502951534,-90.58465997333718,-90.5846361308996,-90.58465276309863,-90.58465290634618,-90.58488579249752,-90.58486151669217,-90.58478876528095,-90.58460482380067,-90.58396332112792,-90.58391502994392,-90.58373844134482,-90.58374665583466,-90.58380258146492,-90.58382711015538,-90.58365058942623,-90.58356994320754,-90.5835384551568,-90.58351394173516,-90.58371475782472,-90.58370729321719,-90.58365112751237,-90.58365895892371,-90.58371520441146,-90.58370726193185,-90.58360259751116,-90.58359455967904,-90.58368312617311,-90.58370678780679,-90.58373874925763,-90.5836993658984,-90.58370731036055,-90.58379535653054,-90.58379500746146,-90.58367483764238,-90.58364268199995,-90.58364326595665,-90.58369905698,-90.58381202113407,-90.58394810379518,-90.58401265815003,-90.58406874416582,-90.58416486428931,-90.58446988548239,-90.58467842243647,-90.5848876888443,-90.58505661913117,-90.58527256167619,-90.58550580234964,-90.58561067191677,-90.58599568562509,-90.58622829095319,-90.58627682143471,-90.58630061533219,-90.58649387522095,-90.58666968720459,-90.58675021335783,-90.58703107684975,-90.58735253609086,-90.58746456045913,-90.58803430768609,-90.58819534219937,-90.58830717764603,-90.58843536277296,-90.58852365163675,-90.58861213546987,-90.58866759906506,-90.58914124961005,-90.58933394220013,-90.58939755468442,-90.58944613649395,-90.58958226488821,-90.58955742748947,-90.58950920103602,-90.58945277791453,-90.58946147077563,-90.58951782099328,-90.58953402295916,-90.58967039059881,-90.58967760979458,-90.58971026368455,-90.58976581699744,-90.58996637440288,-90.58999065006553,-90.58996591381648,-90.58992581248546,-90.59019048139403,-90.59028720629949,-90.59029528653252,-90.59053598087783,-90.59062379942441,-90.59059965207445,-90.59068791677517,-90.59066326468781,-90.59059928429851,-90.5906794950784,-90.590719363361,-90.59069548521146,-90.5907992906394,-90.59085560832359,-90.59085480948826,-90.59082367592656,-90.5907914620749,-90.59075126853375,-90.59073554586431,-90.59075024265083,-90.59055772440061,-90.59047666000399,-90.59039720805501,-90.59039654713429,-90.59033236489115,-90.59017222845831,-90.58994712757736,-90.58972246653444,-90.58956166599924,-90.58955396915341,-90.58950574284775,-90.58949735893533,-90.58941678584519,-90.58939274373748,-90.58939285814965,-90.58969796246694,-90.58967354363551,-90.58953712078318,-90.58943308919115],"lat":[47.05894740232977,47.05900763865981,47.05917947964509,47.05933384725859,47.05942959979341,47.05962935397712,47.05976711997282,47.05999015458594,47.06026062565233,47.06095518555372,47.06116310178254,47.06152661769092,47.06188151111584,47.06197506242512,47.06205476101023,47.0624910236611,47.06295629794904,47.06306380599867,47.06313483125631,47.06332427974375,47.06344978451954,47.06351237789679,47.06365813418746,47.0638376293299,47.06389974110818,47.06416519930544,47.06422915211048,47.06447661451628,47.06462779468011,47.06483970503567,47.06502237739127,47.06545335406555,47.06551814162309,47.06554834533322,47.06558573384518,47.06565322434172,47.0657490135906,47.06578906858061,47.06618098757328,47.06630696960056,47.06652793535438,47.06660342355789,47.0666875951986,47.06695343069507,47.06783126279392,47.06796930468371,47.06823116702869,47.06838016687967,47.06848899027349,47.06862440791392,47.06904318350598,47.06915832562728,47.0692524106007,47.06968391219619,47.06994441238644,47.07005243419178,47.07018601373748,47.07037550834101,47.07047532974353,47.07061485070313,47.0707925472563,47.07111204260173,47.07130731111237,47.0713257520685,47.07142569963641,47.07155075712114,47.0717126928354,47.07182247712949,47.07190346700735,47.0720182491785,47.07208927854283,47.07225575041848,47.07235164234017,47.07244386334404,47.0725050359285,47.07257388495753,47.07269676656109,47.07282957079889,47.07313284520823,47.0732318912494,47.07339786142342,47.07345098984101,47.07366248053936,47.07440086747376,47.0745426212345,47.07485673215347,47.07501020485039,47.07511906598596,47.07541196597463,47.07561850730027,47.07573515047844,47.07575892282462,47.07573329873803,47.0756186056834,47.07554941622117,47.07525516094329,47.07515085023923,47.07502710644321,47.07481835262576,47.074388211764,47.07423702938902,47.0741529412525,47.07373094415371,47.07332557319553,47.07304741391632,47.07293636638928,47.07240362037646,47.07134584036127,47.07122741779637,47.07103760924595,47.07078110172788,47.07066551608509,47.07056701132727,47.07031772038052,47.07015120707585,47.07008917257509,47.06975256083708,47.06946469480958,47.06924016385306,47.06919923760793,47.06884736824571,47.06829033608831,47.0680671207795,47.06794166086415,47.06774863548981,47.06753896119184,47.06717857741834,47.06700939422835,47.06675249698736,47.06640019065322,47.06628448129932,47.06620497479122,47.06594357425325,47.06576587790732,47.06557380153564,47.0652408531021,47.06510490831219,47.06483398833907,47.06473464650387,47.06454069664748,47.06311432542025,47.06252534164067,47.06207863638815,47.06196431467868,47.06194181925834,47.06186847250635,47.06163983152835,47.06137890413824,47.06104542108899,47.06083084312623,47.06076733018638,47.06068546246629,47.06055952820001,47.06030572777972,47.06021530204473,47.05981485816746,47.05904727415054,47.05899734514507,47.05894011945701,47.05894740232977]}],[{"lng":[-90.76107982412385,-90.7611750826365,-90.76125453086647,-90.76144609133577,-90.76160555039364,-90.76169341576504,-90.76174165045155,-90.76174146444185,-90.76170179918263,-90.76154357159308,-90.76086754021179,-90.76068478333654,-90.76062958572777,-90.76062958017755,-90.76067790926197,-90.76066227067837,-90.76061470889718,-90.76047947255876,-90.76023130853703,-90.76012777395816,-90.76006443629662,-90.76001631601075,-90.75990589980707,-90.75979400377113,-90.75974634955124,-90.75968265318815,-90.75955487858651,-90.75938636426945,-90.75913005622267,-90.75912965833162,-90.7591613976272,-90.75939173019098,-90.75982883942055,-90.76003502033052,-90.76028226704418,-90.76044168363914,-90.76063278399438,-90.76079226869986,-90.76098425152989,-90.76107982412385],"lat":[46.70654854212745,46.70663621301455,46.70667505705863,46.70669177831466,46.70666428418301,46.70660407840302,46.70651657753,46.7064451483799,46.70635710243615,46.70618154655653,46.70569727052818,46.70552131083614,46.70543337323299,46.70534563322943,46.70523563189185,46.70516992914955,46.70513087212554,46.70513627238606,46.70525153839282,46.70527303603422,46.70524589486844,46.70519615718863,46.70496009600503,46.70491021968427,46.7048936619647,46.70489914650324,46.70497029919164,46.70525545733115,46.70560644596588,46.70569475313699,46.70577159605212,46.70604623472666,46.7064314295632,46.70655773431427,46.70666802252801,46.70669564801139,46.70667975319939,46.70662469813718,46.70652611726423,46.70654854212745]}],[{"lng":[-90.44197858473578,-90.44191474555782,-90.44186694213592,-90.44189051358551,-90.44205846792562,-90.44233085304383,-90.44245032239576,-90.44266690500301,-90.44276290294974,-90.44305855616453,-90.44327451188252,-90.44377067817766,-90.44427474957963,-90.44450705023867,-90.44446690459236,-90.44439489584512,-90.44418670813873,-90.44384255579457,-90.44369077757584,-90.44354713130876,-90.44336330692136,-90.44317922525101,-90.44294660021774,-90.44270681549597,-90.44233087533621,-90.44219465458195,-90.44197858473578],"lat":[46.90671486869914,46.90678542113145,46.90691046579709,46.90703242231238,46.90724775026571,46.90743792451831,46.90749483210068,46.90753561348674,46.90753298921863,46.90745873163126,46.90737353006597,46.90708307794801,46.90670767019136,46.90646548185521,46.90637452696541,46.9063500595356,46.90643129635134,46.90664410324737,46.90669924878051,46.90669586744741,46.90664652472709,46.90656624717101,46.90652046252028,46.90650170873903,46.90654252747737,46.90659367539005,46.90671486869914]}],[{"lng":[-90.76366927852013,-90.76340406445054,-90.76302215258876,-90.76291839964787,-90.76291083772703,-90.76293420078707,-90.76301354505621,-90.76318097888316,-90.76368312155128,-90.76422510595651,-90.76428043405323,-90.76430484795534,-90.76428780304077,-90.76429578007678,-90.76434349170938,-90.76443073303395,-90.76462255427042,-90.76481433128755,-90.7649181807483,-90.76498288551922,-90.76495915322556,-90.76472043831743,-90.76430706905022,-90.76411567765629,-90.76389244372356,-90.76366927852013],"lat":[46.70918776314031,46.70925421415637,46.70939512322417,46.70948862089107,46.7095325428181,46.70956557201678,46.7096257898133,46.70967023092206,46.70967644252246,46.70975381739953,46.70979225652744,46.70984215072802,46.70999581728303,46.71003963550832,46.71008881019384,46.71010003990264,46.71001832879899,46.70987587142825,46.70976043564691,46.70962332450178,46.70953517867991,46.70936466548985,46.70918856219453,46.70915553071625,46.70915477476843,46.70918776314031]}],[{"lng":[-90.76547044971591,-90.76541848404864,-90.76535431467541,-90.76523453464657,-90.76465978415612,-90.76459529881222,-90.76460317879962,-90.76471461875835,-90.76512963980177,-90.76564053649263,-90.7658003626256,-90.76588823067682,-90.7660003002586,-90.76616838390215,-90.76622475034414,-90.76618507511611,-90.76606567285346,-90.76590684930352,-90.76578070106883,-90.76577105631547,-90.76570719576299,-90.76545231090935,-90.76527661592546,-90.76512484943358,-90.76498855895403,-90.76496455067864,-90.76498812444055,-90.76503585306041,-90.76510725319514,-90.76529165381965,-90.76547044971591],"lat":[46.71030457184931,46.71035947872754,46.71044764791912,46.71053506850046,46.71083082574804,46.71089649758605,46.71096225218169,46.71097894731499,46.71083724676097,46.71073877290229,46.7106786451663,46.71061843922817,46.71044839123853,46.71027852833571,46.71013022554665,46.71004218674133,46.70995411781872,46.70988262409237,46.70986659304847,46.70984978225415,46.70984402627661,46.70986035321224,46.70992564944779,46.71003521534161,46.71022736563502,46.71029333035697,46.7103702310518,46.71039184770896,46.71038124523702,46.71026639523677,46.71030457184931]}],[{"lng":[-90.76653253296269,-90.76645247815155,-90.76641135110467,-90.76645024273836,-90.76644937874491,-90.76633709714515,-90.76636068887714,-90.7664166765325,-90.76645633785562,-90.7665199786198,-90.76660844959588,-90.76676907781037,-90.76680148409619,-90.76680245762577,-90.76671567463012,-90.76665181756613,-90.76659623301077,-90.76653253296269],"lat":[46.70868096813232,46.7088018709369,46.70913118216772,46.7093947128171,46.70968044427887,46.70992192875738,46.70997126535247,46.7099984510315,46.70999874683542,46.70996007090101,46.70985599006837,46.70947750701868,46.70934061004642,46.70912068753293,46.70882429353016,46.70870322948985,46.70867547854666,46.70868096813232]}],[{"lng":[-90.76925738385658,-90.76924150081039,-90.76927293567744,-90.76942391251858,-90.76943943088935,-90.76943187842433,-90.76927960812311,-90.76924783912482,-90.76924684714449,-90.76931042221028,-90.76936589103339,-90.76945343144568,-90.76951713474105,-90.76954912086845,-90.76954944785493,-90.76959786642946,-90.76983832605954,-90.76991029971711,-90.76989447093699,-90.76983905519424,-90.76960818384637,-90.76943264483407,-90.76933697440435,-90.76925738385658],"lat":[46.71152895058186,46.71156224110243,46.71161658598779,46.7117106274268,46.7117380806972,46.71178200540882,46.71191351834695,46.71197953673362,46.71211116031516,46.71229803076265,46.71237471427146,46.71243543150033,46.71242994270378,46.71240779184831,46.7122868623173,46.71215548365946,46.71184282819507,46.71170004474578,46.71165065544814,46.71160659229278,46.71152940265706,46.71149064733268,46.71149073157535,46.71152895058186]}],[{"lng":[-90.76822548748646,-90.76821760413921,-90.7683128815152,-90.76875826649776,-90.76878176141614,-90.76866214626881,-90.7686857493706,-90.76930731758696,-90.76934750491797,-90.76926043387087,-90.76889444692935,-90.76883105612121,-90.76883154006205,-90.7687994402657,-90.76873600391787,-90.76844866526802,-90.768408826479,-90.76830556722108,-90.76822548748646],"lat":[46.71014943420003,46.7101989817215,46.71028664649721,46.7105564465549,46.71062771783471,46.71072639011027,46.71077629064077,46.71084241782334,46.71079321328314,46.71065037652708,46.71038623130359,46.71029835277178,46.71018867075149,46.71014501491737,46.7101116958999,46.71011699892881,46.71010433044673,46.71011683205862,46.71014943420003]}],[{"lng":[-90.76288998735045,-90.76280229942465,-90.76266599455356,-90.76251438447176,-90.76252195270996,-90.76256992111325,-90.76272921225502,-90.76308059558353,-90.76320829874471,-90.76329653623908,-90.76327268574448,-90.76320925473681,-90.76288998735045],"lat":[46.7085168873778,46.70856078202611,46.7087523621598,46.70887317764547,46.70891699872591,46.70895548833644,46.70894486364603,46.70881371911448,46.70873693688866,46.70861598238209,46.70849014880045,46.70845682850043,46.7085168873778]}],[{"lng":[-90.76237451728653,-90.76219027664916,-90.76200632544905,-90.76192610107623,-90.76191036835611,-90.76192562950072,-90.76202962843492,-90.76218962501459,-90.7626369275597,-90.76274872466794,-90.76272513714352,-90.76262162915462,-90.76237451728653],"lat":[46.70791175080191,46.70803784004627,46.70821342896284,46.70832307747798,46.70836705496887,46.70840575898426,46.70841688137086,46.70833988278171,46.70799493123493,46.70786313478239,46.70781379618433,46.70780829546234,46.70791175080191]}],[{"lng":[-90.76766567129836,-90.76779350909473,-90.76784145643447,-90.76785759572908,-90.76784151710964,-90.76768280854138,-90.76752359196314,-90.76742816969254,-90.76737238873474,-90.76736370241549,-90.76729186225469,-90.76714020281183,-90.76713183155154,-90.767155523374,-90.76725109333303,-90.76737890772833,-90.76766567129836],"lat":[46.71063183668675,46.71059385833747,46.71054403775954,46.71050006099168,46.71046192350627,46.71034093323791,46.71024188433888,46.7102307148939,46.71024683533471,46.71038413301553,46.71044986117238,46.71053805654252,46.71058198416898,46.71060938538773,46.71063124486225,46.71062026451446,46.71063183668675]}],[{"lng":[-90.76511294023383,-90.76496128891425,-90.76480969529321,-90.76475338556445,-90.76477705508032,-90.76488865917362,-90.76498443032887,-90.76552760298524,-90.76555168863025,-90.76552014927591,-90.76541647505924,-90.76511294023383],"lat":[46.71107302494041,46.71113309645338,46.7112263541617,46.71129197143943,46.71134693577634,46.71137487581522,46.71135286312371,46.71107925128775,46.71101890781011,46.71098593506788,46.71096918877314,46.71107302494041]}],[{"lng":[-90.76913111211501,-90.76909143250481,-90.76913882661769,-90.76925016558306,-90.76933797935486,-90.76956096464784,-90.76968102847214,-90.76968899054599,-90.76964944187793,-90.76944815685977,-90.76925902181334,-90.76913111211501],"lat":[46.71107308554246,46.7111003508409,46.71115571627693,46.71119377588817,46.71121624721849,46.71122768075824,46.71118918991316,46.71114526485573,46.71109547421824,46.71105745232661,46.71104016670427,46.71107308554246]}],[{"lng":[-90.51802973587664,-90.51799802747711,-90.51814992991714,-90.5182936377295,-90.51847031663112,-90.51852601544762,-90.51850236538749,-90.51836632895227,-90.51802973587664],"lat":[46.94639725753734,46.94647333121716,46.9465125736947,46.94651079977018,46.94647906571077,46.94642144518873,46.94635349976232,46.94634174233449,46.94639725753734]}],[{"lng":[-90.52234826336395,-90.52230795305248,-90.52231595748059,-90.52238042046559,-90.52253246573827,-90.52254845736145,-90.5225165448402,-90.52242091171681,-90.52234826336395],"lat":[46.94304861644141,46.94308366877878,46.94314662524879,46.94318851341623,46.94320075505681,46.94315625103312,46.9430838429134,46.94304547294657,46.94304861644141]}]],[[{"lng":[-87.9941225606204,-87.99426935778577,-87.99428538590178,-87.9942475993807,-87.99397231412968,-87.99382615808868,-87.99375763611893,-87.99371281319526,-87.99373660629969,-87.99399251818856,-87.99407375283498,-88.02965836952301,-88.05000715008738,-88.0703551475543,-88.09072630223106,-88.13130720323858,-88.13629116051993,-88.14127427762811,-88.14625734740018,-88.15123957678196,-88.15622921624991,-88.1613286379902,-88.16637269681807,-88.17141749955283,-88.17647320889999,-88.18152888261166,-88.18658531239718,-88.19164091787751,-88.19664936810054,-88.20165700717946,-88.20666461564929,-88.2116145898009,-88.21679123424018,-88.22196782878802,-88.22714442803382,-88.23162613543323,-88.23148784730199,-88.231449138546,-88.23143892379528,-88.23764120422362,-88.23839632283921,-88.23895691753269,-88.2424507019302,-88.24271559104652,-88.24271551137343,-88.24756638339539,-88.25260864372366,-88.25248586296122,-88.2523655848308,-88.25194704927875,-88.25202968058741,-88.25226039964117,-88.2524433855173,-88.24604592238917,-88.24600910228943,-88.24283963012502,-88.24285684827863,-88.24301722107452,-88.24315161674967,-88.24328517409246,-88.24341872551727,-88.2435530351618,-88.24369272604426,-88.24383159325753,-88.24397122718922,-88.24411083624796,-88.24419161479057,-88.24427156942939,-88.24435231288058,-88.24443303281275,-88.24455457500413,-88.24467686829878,-88.24479835394639,-88.24492061458297,-88.24495758070788,-88.24499532588709,-88.24503226961743,-88.24506999047934,-88.23086420086784,-88.21065009442253,-88.19050963358627,-88.19044708223143,-88.19029076862654,-88.19013525527475,-88.18997895728063,-88.19009076465896,-88.19020254393767,-88.19031430841845,-88.19042605179713,-88.19046489007705,-88.19050373573926,-88.19054256849137,-88.19058217448185,-88.19053465847757,-88.19048714749212,-88.19043963756599,-88.19039213091753,-88.19039242544989,-88.19039351498628,-88.19039380035093,-88.19039408200962,-88.19038168261667,-88.19036849059029,-88.19035608177076,-88.19034287331482,-88.19037285988328,-88.19040230529919,-88.19043096349739,-88.19045960996824,-88.19043435823509,-88.19040912233864,-88.19038387042956,-88.19035863256018,-88.19038634979766,-88.19040700470107,-88.19044807881211,-88.19046476696509,-88.19047320485471,-88.19048319493106,-88.19049631395895,-88.19050943524303,-88.19049528550769,-88.19048638068308,-88.1904701366484,-88.19045833840771,-88.19045517563056,-88.19049162907901,-88.19052730629312,-88.19056374484049,-88.19058390025616,-88.19062216036501,-88.19075790635696,-88.19088597133992,-88.19101402187617,-88.19114204405297,-88.19126629149024,-88.19139051961108,-88.19144721731668,-88.19147940320849,-88.19153844247498,-88.1915336255655,-88.19152799871441,-88.19152316026218,-88.19151751427083,-88.19151721683629,-88.19151689749688,-88.1915157934436,-88.19151546799564,-88.19148827100825,-88.19146106852169,-88.19143464897975,-88.1914074521865,-88.19137257837089,-88.19133770078835,-88.19130282207158,-88.19126795675201,-88.19246100509226,-88.1924949012857,-88.19253006132671,-88.19256678177528,-88.19259709504973,-88.19262695881757,-88.19192370605472,-88.19122053067079,-88.19101321234268,-88.19080669270012,-88.19088323037938,-88.19095896622497,-88.19103547018425,-88.19111118192964,-88.19121218125912,-88.19131317343528,-88.1914141416305,-88.19151510357595,-88.19161836660061,-88.1917255303679,-88.1918491068232,-88.19197188286149,-88.1920872599627,-88.19220183561657,-88.19231714327182,-88.19243162664242,-88.1720036589862,-88.16286703116081,-88.15186641153528,-88.13168313575301,-88.11103892114063,-88.09078723742923,-88.07066430088069,-88.05045743950546,-88.04324349685317,-88.03021287242136,-88.01008266137626,-87.98936381135402,-87.94888148384429,-87.92858337919232,-87.92377326177289,-87.9082384531095,-87.88800850651745,-87.88799830248536,-87.88802428955617,-87.88801035692548,-87.88795241736021,-87.88794059609648,-87.88783764454006,-87.88766496383337,-87.88760062979424,-87.88748577628226,-87.86698653430517,-87.84684441748232,-87.82684082288874,-87.80657677561869,-87.78628963086699,-87.76609434299709,-87.76582936074519,-87.76560195496046,-87.76545155238176,-87.76545099026856,-87.76531640839653,-87.76509172647793,-87.76490616207926,-87.7648809454536,-87.76497810521144,-87.76492168863071,-87.76503380385843,-87.76522767856774,-87.76517056820725,-87.76487433606019,-87.76454614425771,-87.76430345863048,-87.76418932707401,-87.76380938073251,-87.76345271844028,-87.76286584189671,-87.76249211643317,-87.76247404409847,-87.76245856156676,-87.76243924255448,-87.76246823567884,-87.76262143021391,-87.76279842282123,-87.76290533978812,-87.762928366202,-87.76294440759084,-87.76293609382903,-87.7628895756838,-87.76281294911158,-87.76278218122923,-87.76281326257592,-87.7628986671772,-87.76349735880821,-87.76374249102371,-87.76542561477594,-87.76549445116942,-87.76585547722088,-87.7661937495089,-87.76662407272617,-87.76745286222345,-87.76760664947015,-87.76776043717884,-87.7678838579866,-87.76803685510677,-87.76840517537411,-87.7687135317036,-87.76898915026239,-87.76914372560064,-87.76926635550025,-87.76941935463924,-87.76984956300085,-87.76997297968947,-87.77012676656278,-87.77028054990053,-87.77040317932621,-87.77055696125007,-87.77067958053571,-87.7708944743043,-87.77114050710344,-87.77123277085062,-87.771478386414,-87.77163216850271,-87.77200114437812,-87.77242319164098,-87.77268047974137,-87.77346103327157,-87.77370670510906,-87.77386048225279,-87.77398232243716,-87.77410573374434,-87.77422871825229,-87.77432139719893,-87.77444323428587,-87.77456664939159,-87.77481267369713,-87.77493566834913,-87.77511981046642,-87.77521206953948,-87.77533505222037,-87.77558029971719,-87.7758881684608,-87.77607262444955,-87.77665605519633,-87.77677861527556,-87.77693276081902,-87.77705533063478,-87.77714794755181,-87.77733203504322,-87.77742466242611,-87.77760912108853,-87.77779236993645,-87.77813879098687,-87.77843794440446,-87.77880679828937,-87.77907118674672,-87.77920640149503,-87.77929901681826,-87.77978985889609,-87.78022071237211,-87.78037443226933,-87.78046547162278,-87.78071182186443,-87.78098889030848,-87.78123443736433,-87.78141890412162,-87.78203335961975,-87.78286311489542,-87.78369286837288,-87.78433753828813,-87.78455264074766,-87.78479878578061,-87.78489135170673,-87.78495198186214,-87.78513695827472,-87.78526761801653,-87.78541309250457,-87.78553643931933,-87.78608933002212,-87.78701124362387,-87.7892546496205,-87.79014511098457,-87.79029893900136,-87.79042208223399,-87.79063701682776,-87.79235819341964,-87.79306507206876,-87.793279794233,-87.79404814868816,-87.79417067039233,-87.79460173593429,-87.79472425041727,-87.79534681400223,-87.7957381235547,-87.79604508593694,-87.79626064895068,-87.79654475546977,-87.79690573320292,-87.79709055453326,-87.79727458490588,-87.79742867202431,-87.79761270727283,-87.79779673735837,-87.79798155931874,-87.79816579467995,-87.79835003895586,-87.79853485833685,-87.79874962466248,-87.79924140495071,-87.79948732523188,-87.79964808638896,-87.79982503269288,-87.80000984080044,-87.80007015434683,-87.8002557617215,-87.80040827250112,-87.80077691269969,-87.80089985300685,-87.80108520352915,-87.80114662934773,-87.80129984543726,-87.80148458287491,-87.80182269992949,-87.80200677302753,-87.80212932986159,-87.80222195200599,-87.80363579307755,-87.80374305516142,-87.80407225167755,-87.80424947551023,-87.80443354449906,-87.80455689713354,-87.8047413418745,-87.8049246241345,-87.80498612692338,-87.80578548848366,-87.80600028779824,-87.80612367960509,-87.80657642983358,-87.80683000096464,-87.80707595471142,-87.8073211516309,-87.8075371987223,-87.80772088741374,-87.80784348876544,-87.80796650634611,-87.80802838292372,-87.80842774297314,-87.80901102960533,-87.80954152524372,-87.80985543468226,-87.81019421310275,-87.81168254732181,-87.8118974462616,-87.81198988869529,-87.81223620355915,-87.8124204633985,-87.8125590632354,-87.81261272361012,-87.81275009957345,-87.8129497327477,-87.81313442685386,-87.81324095982815,-87.81334193163759,-87.81382495604204,-87.81400916207275,-87.81417006505644,-87.81453914725491,-87.81558280198841,-87.8162359733021,-87.81644260494784,-87.81683384690837,-87.81757101852253,-87.81809329228268,-87.81813906922594,-87.81858401880831,-87.82051852671157,-87.82100993515506,-87.821470951273,-87.82174659963277,-87.8219610919888,-87.82214597673173,-87.82264500897256,-87.82304415117012,-87.82362723619788,-87.82418078933863,-87.82436492536048,-87.82460211411788,-87.82485622707415,-87.82503229813817,-87.82528483286737,-87.82580767381995,-87.82616790140452,-87.82629899504447,-87.82638240888413,-87.82651271360372,-87.82690485696324,-87.82700440585398,-87.82736459064897,-87.82792539896286,-87.82855535661633,-87.82864319787672,-87.82878832793163,-87.82884988199724,-87.82892698211013,-87.82912606689021,-87.82925633728834,-87.82939473012956,-87.82965501612259,-87.82977802035249,-87.8299391144255,-87.83016087081971,-87.83023718009119,-87.83055988224199,-87.83074457192107,-87.83102068619122,-87.83124259020592,-87.83143498077119,-87.83157240148495,-87.83163330146678,-87.83206369598081,-87.8324308863275,-87.83270699544498,-87.83295372834486,-87.83307627605384,-87.83320633916672,-87.83322900899006,-87.83353625809447,-87.83408803624314,-87.83414991848129,-87.8345184078363,-87.83461064744453,-87.83482462732267,-87.83519313899902,-87.83546930622701,-87.83559996901994,-87.83574604935195,-87.83602925789977,-87.83620521993723,-87.83635887527574,-87.83666651842616,-87.8368199657228,-87.83708851493301,-87.8372650769183,-87.83729086313559,-87.83734963742388,-87.83737174750006,-87.83736413778173,-87.83731793964709,-87.83732529553458,-87.83734837416888,-87.83780119760164,-87.8382608536097,-87.83851330296947,-87.83869817613677,-87.83894321097274,-87.83943377568698,-87.83957905583858,-87.83998585361911,-87.84028599347133,-87.84071456670347,-87.84089917394958,-87.8411138897287,-87.84117458279735,-87.84126794354744,-87.84132863735344,-87.84151263232725,-87.84157411184297,-87.84182034832908,-87.84194210451975,-87.84212647899969,-87.84224980903855,-87.8424956615802,-87.84283290653923,-87.84304803555399,-87.84323240825462,-87.84347761899211,-87.84375437557424,-87.84433707860256,-87.84461340447506,-87.84504374648928,-87.84525826211377,-87.84550451779393,-87.84588091618954,-87.84617934396967,-87.84633375299505,-87.8467009047812,-87.84694669219267,-87.84710128846307,-87.84762259452275,-87.84812643701218,-87.8485448881288,-87.84857520559429,-87.84885170664263,-87.84888202429801,-87.84961937403335,-87.85001835092827,-87.85004945470455,-87.85017272665867,-87.85037299129225,-87.85044920804475,-87.85067920237577,-87.85081804222547,-87.85095568030094,-87.85101789262978,-87.85118567631066,-87.85144678632197,-87.85163209354336,-87.85203203895108,-87.85219982272993,-87.85232249356753,-87.85240006627825,-87.85298313461212,-87.85346006382449,-87.85361364889587,-87.85373731854546,-87.85405903903873,-87.85408976215287,-87.85415119657276,-87.85418191969931,-87.85424334726164,-87.85427407051267,-87.8543817755648,-87.85467382308263,-87.85499712054936,-87.85502785421511,-87.8551806446375,-87.85531928177105,-87.85555004750948,-87.85557999535116,-87.8556414204534,-87.85574932682763,-87.85578005016698,-87.85603328780164,-87.8562103546621,-87.85642525293567,-87.85667031237074,-87.85682417341314,-87.85719222551127,-87.85737627119533,-87.85748408953984,-87.85764436596965,-87.85786652297229,-87.85799665603196,-87.85829611625714,-87.85844065123993,-87.85852521226984,-87.85864778437735,-87.85895386479744,-87.85907688970585,-87.85932223863392,-87.8595984880167,-87.85972028337039,-87.85987357441354,-87.85993506894988,-87.8601496550822,-87.8603037150594,-87.86057950111217,-87.86079384579074,-87.86091676141179,-87.86103969465168,-87.8610704156419,-87.86119294782769,-87.86127690473394,-87.86143071643201,-87.86151448127833,-87.86169831340733,-87.86203600429575,-87.86237349835396,-87.86255769414825,-87.86258841483551,-87.86271055911834,-87.86274129117817,-87.86292568381046,-87.86295640529372,-87.8630488028067,-87.86314042268907,-87.86323955551933,-87.86331676851641,-87.86336963523215,-87.86345322040859,-87.86353105870072,-87.86370703080416,-87.86384421842308,-87.86388226149789,-87.86392867281214,-87.86392804962399,-87.86391231128377,-87.86389668728013,-87.86388096767824,-87.8638960459289,-87.86392684721869,-87.86396471219159,-87.86427118569354,-87.86437786181702,-87.86459234781678,-87.86477474937944,-87.86491192500355,-87.86497287841186,-87.86505016405633,-87.86518745693806,-87.86524797160911,-87.86529391421173,-87.86540917068793,-87.86544703225294,-87.86549995650924,-87.8655157691978,-87.86551443335451,-87.86555237135785,-87.86563606143717,-87.86565824332217,-87.86570482392794,-87.86578057598474,-87.86584208696583,-87.86587206576989,-87.86602584068142,-87.86602506913766,-87.86614811045705,-87.86622385692493,-87.86622387442715,-87.86625384525721,-87.86625386265816,-87.86631538877347,-87.86631540366506,-87.86636113664045,-87.86655995142569,-87.86675078628652,-87.86703436703749,-87.86721748091682,-87.86730183740737,-87.86740095021986,-87.86749373987126,-87.86776835759362,-87.86816742667611,-87.86819815789526,-87.86829093280365,-87.86878028974502,-87.86893475931973,-87.86901811469295,-87.86916333339916,-87.86962390193796,-87.86996039442973,-87.87026769157988,-87.87063563416599,-87.87075776460856,-87.87094252735106,-87.87109499766085,-87.87180051207106,-87.8719844973978,-87.8722913588947,-87.8725068589996,-87.87284266347436,-87.87318026400334,-87.8735792804036,-87.87379474745059,-87.87385580528976,-87.87388653132699,-87.87400864440629,-87.87434697301894,-87.87450017581901,-87.87468469579787,-87.87480756873894,-87.87509491123133,-87.87574086274543,-87.87699291722173,-87.87720087847552,-87.87759275555129,-87.87951286947903,-87.8797050618472,-87.87992069304147,-87.88003591901078,-87.8801740123026,-87.88022074709093,-87.88028246563324,-87.88022843318628,-87.88002153005114,-87.87996809831388,-87.87998450802398,-87.88006108131678,-87.88013048382656,-87.88019965154363,-87.88083087146741,-87.88114543283423,-87.88166815616891,-87.88190713746317,-87.88203756051703,-87.88221404131447,-87.88226053168979,-87.88315191147292,-87.8835211656917,-87.88386734074211,-87.88433604660908,-87.88505768098986,-87.88525754624672,-87.88584206018474,-87.88599604727555,-87.88631088718022,-87.88642625247134,-87.88642568764159,-87.8862802240601,-87.88626469610864,-87.88633401251033,-87.88657990349631,-87.8870332816375,-87.88718625857223,-87.88727859855091,-87.88734755003111,-87.88753261602579,-87.88753248619877,-87.88767127584455,-87.88784857398048,-87.88796388791258,-87.88831806955751,-87.88871723110606,-87.88897121592761,-87.8894551553481,-87.88965459835924,-87.88999320508859,-87.89012332677697,-87.89029227433278,-87.89036928989455,-87.89051540514221,-87.89076089892475,-87.89096114186742,-87.8910917054625,-87.89124568622648,-87.89178292522968,-87.89199082736407,-87.89226682075038,-87.89235147268151,-87.89252849434109,-87.89268226035186,-87.89287419639747,-87.89321989504421,-87.89367266843038,-87.89397230509609,-87.89433354609616,-87.89530914469107,-87.89577804717831,-87.89654595946432,-87.89671466569693,-87.89719089689576,-87.89727595309654,-87.89775196150212,-87.89874309379547,-87.89954977709827,-87.90092496676765,-87.90206937667406,-87.90239178709645,-87.9025531976056,-87.90274510668313,-87.90301437057427,-87.90339012089203,-87.9044732518223,-87.9049570439669,-87.90504128012901,-87.90513399103887,-87.90526448483267,-87.90547213188952,-87.90577110230605,-87.90590985435774,-87.90590945529939,-87.90582501823152,-87.90585512342692,-87.90596337395756,-87.90608559721495,-87.90635465434551,-87.90644657698995,-87.90647786606924,-87.90644678398765,-87.90646272241507,-87.90660837338444,-87.90680007075902,-87.90696165631718,-87.90725294891729,-87.90739937389013,-87.90746806506785,-87.90764500511889,-87.90776801268711,-87.90785973049799,-87.90795184082921,-87.9080445467454,-87.90832028279956,-87.90856649570162,-87.90887392037469,-87.90929569809944,-87.90961098616926,-87.90973419232989,-87.90997981734498,-87.91005617948214,-87.91064012155002,-87.91083948855558,-87.91124668396105,-87.91131615442922,-87.91143108693227,-87.91143087581162,-87.91145389617597,-87.91151549623697,-87.91199963044653,-87.91231450975684,-87.91242963556074,-87.91250638295909,-87.91255242155061,-87.91260673105235,-87.91271436340163,-87.91294442196852,-87.91310599455558,-87.91358932774693,-87.91371213489127,-87.91398136571351,-87.91408882154784,-87.91407287539147,-87.9139197410702,-87.9137741003116,-87.91347435540608,-87.91319783481168,-87.91297544541628,-87.91264559834927,-87.91246080162954,-87.91212308756985,-87.91134001626716,-87.91061028002508,-87.91023478603259,-87.90984255859884,-87.90942081157175,-87.90890637344033,-87.90861477851986,-87.90855251956738,-87.90824570722181,-87.90761592819294,-87.90764961682312,-87.90744378030566,-87.90701684481461,-87.90667872837174,-87.90647897257898,-87.90636443624589,-87.90611822729427,-87.90571162526209,-87.9055423707221,-87.90538886285354,-87.90527432780436,-87.90462172268953,-87.90437552556719,-87.9041993846741,-87.90402266593095,-87.90377706598039,-87.9035314615485,-87.90328566102498,-87.90310933271826,-87.90284032957342,-87.90273287913362,-87.90261007147205,-87.9024642359928,-87.90241020418379,-87.90198060360738,-87.9018107852563,-87.90179631915088,-87.90134352038262,-87.90106764058476,-87.90098302236277,-87.90086793685121,-87.90084492345525,-87.90089905839818,-87.90102973662515,-87.90133695878708,-87.90138301522066,-87.9012600226219,-87.90061475372052,-87.90053819987811,-87.90053822393138,-87.90068447426285,-87.90073822664154,-87.90069985700936,-87.90062350499767,-87.89936422883694,-87.89911075147542,-87.89904168267498,-87.89904189576744,-87.8997249751842,-87.89988653815351,-87.90003237077973,-87.89999361157543,-87.8998710284109,-87.89980196020689,-87.89988625344601,-87.89975623756212,-87.89976451245546,-87.89983302216517,-87.90012512048077,-87.90021744701235,-87.90030214320929,-87.90072513121018,-87.90090229900196,-87.90095544169482,-87.90110206201197,-87.90114811872822,-87.9011325964284,-87.9011635079535,-87.90142428583128,-87.90145538126249,-87.90200112484726,-87.90210839044298,-87.90235418905279,-87.90259231168183,-87.90386000733986,-87.90425179192759,-87.90488166642734,-87.90508139313141,-87.90525808095698,-87.90536493310992,-87.90538834933848,-87.9053269711406,-87.90535018750029,-87.90543480269946,-87.90571873467,-87.90580295633379,-87.90608020690871,-87.90611818417463,-87.90624096267848,-87.90635646064707,-87.90664077175065,-87.90670195922172,-87.9067708314905,-87.90688632708235,-87.90697093415315,-87.907062813088,-87.90710944809081,-87.9073392566829,-87.90748505080772,-87.90768454554266,-87.90779276832211,-87.90788425262922,-87.90789999087698,-87.90782286513461,-87.90767727429765,-87.90761608029911,-87.90758538519781,-87.90737782532604,-87.90730089099343,-87.90727826154654,-87.90730148570648,-87.90774691934193,-87.90787736414832,-87.9079155353181,-87.90833067006139,-87.90886087395749,-87.90900626110995,-87.90967495303694,-87.90986676139818,-87.91066547974677,-87.91120293555592,-87.9113634602141,-87.91157140213332,-87.91165598600358,-87.91170966402819,-87.91184793560541,-87.91192484262382,-87.91207826078754,-87.91215477020131,-87.91229325117357,-87.91253147665138,-87.91284640407419,-87.91329940411454,-87.91349099811369,-87.91379802651866,-87.91393631262208,-87.91407498283093,-87.91424375839971,-87.91436610681356,-87.91441289434802,-87.91468884296266,-87.91504958407641,-87.91509579752849,-87.91537253637148,-87.91603235859546,-87.91634722429131,-87.91653975355082,-87.91667780832847,-87.91702275383226,-87.91718440537977,-87.91753781410354,-87.91775217942724,-87.91786721773053,-87.91895789009018,-87.91941788731292,-87.91980196365557,-87.92006292298478,-87.9212525393942,-87.92160535575235,-87.92195897881562,-87.92234191404927,-87.92347047269878,-87.92359319152516,-87.92374672803764,-87.92376986142114,-87.92384682513162,-87.92384642649337,-87.92391576286742,-87.92394636722098,-87.92404640259224,-87.92408451240506,-87.92407717283044,-87.9241841872026,-87.92435344159543,-87.92466824437075,-87.92543530903686,-87.92576504415422,-87.92597241648124,-87.92638669220987,-87.92699329179122,-87.92720835944408,-87.92811370724759,-87.92828279157018,-87.92904213408221,-87.92936479674287,-87.92969411030755,-87.93007771168536,-87.93023874468862,-87.93050734119898,-87.93081425216209,-87.93165066668487,-87.9320344925297,-87.93236421006087,-87.93269434704195,-87.93326235991141,-87.93396019634757,-87.93429033484,-87.93447400122196,-87.93464332544261,-87.93485784295103,-87.93505739445465,-87.9351187323218,-87.93548684131308,-87.93583997137334,-87.93655372326431,-87.93686815524678,-87.93710553346698,-87.93747430933993,-87.93756633485592,-87.9376504853842,-87.93774265921795,-87.9378195393151,-87.9380111179055,-87.93811887498438,-87.93836414360845,-87.93847148658897,-87.93890115645704,-87.93900835065577,-87.93933036736756,-87.93950758677055,-87.93957637970782,-87.93956863112003,-87.93951507143099,-87.93956886661555,-87.9400515167728,-87.94014419435592,-87.94013584708273,-87.94020537064223,-87.94028993640772,-87.94032785027566,-87.94041258138277,-87.94061160515056,-87.94069652875245,-87.94083391662127,-87.94101870033927,-87.94134860119732,-87.94157077718398,-87.94201594802914,-87.94272189775982,-87.94292105052841,-87.9429819665126,-87.94293650283015,-87.94271372662251,-87.94243767575738,-87.94234581440455,-87.94236895065546,-87.94246073968425,-87.94262213219928,-87.94285201570628,-87.94345048222756,-87.94365006499083,-87.94374953569866,-87.943933756986,-87.94402574654335,-87.94600456108306,-87.946326861072,-87.94659570902188,-87.94677209681856,-87.94721680765613,-87.9474089112321,-87.94781538499986,-87.94834467277924,-87.94860571369037,-87.94867454366882,-87.94876655860914,-87.94896945574949,-87.94905846535836,-87.94918074545866,-87.94964874092852,-87.95027034743421,-87.95090731127391,-87.95099908538069,-87.95102220667563,-87.95110672719051,-87.95133661256895,-87.95178919090094,-87.95223438604953,-87.95247964896926,-87.95265602564047,-87.95296296530761,-87.9531700284203,-87.95330790080239,-87.953338613545,-87.95335461372419,-87.95341597358401,-87.9540600402263,-87.95450517584631,-87.95462747852149,-87.9549962251257,-87.9552721180893,-87.95565545595581,-87.95590143149329,-87.9563081061012,-87.95672995165231,-87.95731273167483,-87.9589392730317,-87.96002061903096,-87.96024368250973,-87.96048872422651,-87.96082655187577,-87.96107957908501,-87.96120209984483,-87.96138640961236,-87.96191561831961,-87.96220721486031,-87.96238361182607,-87.96252938471906,-87.9626825929288,-87.96292053006459,-87.96328127135169,-87.96347321458029,-87.96390285779205,-87.96430933263062,-87.96476184416828,-87.96555997498638,-87.96698687181173,-87.9673088055451,-87.96773136566041,-87.96787671815825,-87.96817636078595,-87.96829141632497,-87.96856760159753,-87.96865176382072,-87.96877430931052,-87.96906572533354,-87.96946486139456,-87.96969559110012,-87.96981830104639,-87.96994098492135,-87.97015538858901,-87.97030126974128,-87.97041610979196,-87.97053869490529,-87.97058520259149,-87.97070762907339,-87.97085398095474,-87.97103018478145,-87.97142872196866,-87.97168202852619,-87.97192811176681,-87.9722271646438,-87.97255676160466,-87.97283293581445,-87.9736540815942,-87.97426775673989,-87.97448271153799,-87.97488929368251,-87.9749970479544,-87.97528836852587,-87.97584101886879,-87.97620121698799,-87.97636296439833,-87.97656235006127,-87.97662940436085,-87.97677429824834,-87.97696062875686,-87.97721635615102,-87.97760304911513,-87.97782992239114,-87.97799921221488,-87.97816996175445,-87.9782314400786,-87.97847234882914,-87.97876850476376,-87.97930340509579,-87.97965134856771,-87.9800929671533,-87.98045338855455,-87.98086795073984,-87.98122826286942,-87.98164294194845,-87.98197652714101,-87.98236502626561,-87.9826056165906,-87.98271364953291,-87.98281532639268,-87.98296857106706,-87.98308830770266,-87.98330016848506,-87.98349653797003,-87.98371006199388,-87.9838713476862,-87.9840741755677,-87.98419257329114,-87.98438024937597,-87.98497474730362,-87.98513569793587,-87.98537695814035,-87.98557833405529,-87.98564394600552,-87.98567871629169,-87.98581326571052,-87.98608391789963,-87.98624419602065,-87.98635069245564,-87.98639816094749,-87.98654408847644,-87.98670604005275,-87.98690986579415,-87.98700486369844,-87.98724247013151,-87.98771595223742,-87.98784806487427,-87.98801905926183,-87.98811384786244,-87.98819349673543,-87.98820386841338,-87.98814762534947,-87.98823930551261,-87.98838656370708,-87.9885755730328,-87.98877807640113,-87.98907047788832,-87.98925927889935,-87.98948983560177,-87.98978522932283,-87.99002517524724,-87.99027515280564,-87.99055481391187,-87.99084589269594,-87.99140476543023,-87.9920058472136,-87.99249877705371,-87.9926857998821,-87.99271630387912,-87.9926937622819,-87.99275133668472,-87.99304983907562,-87.99331949988911,-87.99374681032343,-87.99419864842972,-87.99446301082303,-87.99452565170095,-87.99459062222554,-87.9947385445423,-87.99488602260672,-87.99501859723104,-87.99506720676052,-87.99503406376361,-87.99518674648628,-87.99533710662239,-87.99549930048218,-87.99563750845945,-87.99573871408424,-87.99586885531401,-87.99620150758965,-87.99641474140387,-87.99688726560903,-87.997279473956,-87.99771541566808,-87.99804497084618,-87.99822923229364,-87.99558965470727,-87.99581778024357,-87.99599608370889,-87.99702353857111,-87.99806402682391,-87.99878326331387,-87.99898234406815,-87.99910288960024,-87.99952049592299,-88.00010986376778,-88.00028436299887,-88.00068316119929,-88.00081416228299,-88.00109789960042,-88.00405811456545,-88.0046234786445,-88.00517015930369,-88.00693500347606,-88.00714966900919,-88.00742513508827,-88.00838426940761,-88.00850655277499,-88.00856057710729,-88.0085600853218,-88.00852206781667,-88.00841439604007,-88.00804609364685,-88.00796967088671,-88.00794595911279,-88.00796139650296,-88.00814549955778,-88.008582774329,-88.00878245904937,-88.00890526283521,-88.00941097473502,-88.01026196849185,-88.01051496745873,-88.01065352045725,-88.01082198919178,-88.01109855943402,-88.01109845579073,-88.01099820731591,-88.01101402137061,-88.0111746828821,-88.0114203008574,-88.01179612551516,-88.01194914664848,-88.01200329615051,-88.01207171920596,-88.01261661082984,-88.01279262925877,-88.01291596557373,-88.01313850877554,-88.01326147189862,-88.01333782191666,-88.0138665968402,-88.01415792445879,-88.01463358175796,-88.01488728838403,-88.01507079775969,-88.01531605510655,-88.01545398545534,-88.01563792753917,-88.01582216039823,-88.01599877990198,-88.0164286505436,-88.01658262741631,-88.01682786093033,-88.01701179071591,-88.01702694681038,-88.01684306007273,-88.01682780444878,-88.01691288368674,-88.0169736530036,-88.01738085998457,-88.01777956087111,-88.01804787376139,-88.01843863744276,-88.01859986998195,-88.01867709550395,-88.01877634754068,-88.0188688003159,-88.01911369925158,-88.01920636831503,-88.0193514640403,-88.01944376729787,-88.01954405587502,-88.01983577211828,-88.02012811811822,-88.02028126408766,-88.02045050776806,-88.02043455109468,-88.02034213056564,-88.02000489104881,-88.01995812729149,-88.0199736944782,-88.02017281181634,-88.02033390721643,-88.02081742783218,-88.02116227089989,-88.02145412078775,-88.02171477700664,-88.02185268084281,-88.02193736364715,-88.02151425347897,-88.02145338104883,-88.02136881897617,-88.02125329920641,-88.02112306283465,-88.02097013722201,-88.02082413378439,-88.02029474453821,-88.01998021437781,-88.01981165266075,-88.01945884141327,-88.01918946283165,-88.01902829640926,-88.01890575601601,-88.01889041079812,-88.01896692531922,-88.01906651026556,-88.02054690667414,-88.02125262961898,-88.02174340731689,-88.02221957996667,-88.02307853167518,-88.02396049927285,-88.02426734026949,-88.02443608588008,-88.02465829290705,-88.02481168913206,-88.02488861789399,-88.02497295785633,-88.02525714160008,-88.02564833779076,-88.02542604442546,-88.02534896789849,-88.02534108949783,-88.02537195926082,-88.02633061678618,-88.02657606987225,-88.02682129760902,-88.02702833299503,-88.02734337242313,-88.02791882647013,-88.02812573022976,-88.0282486256819,-88.0283482362164,-88.02859346819415,-88.02886232033426,-88.02900799904839,-88.02913057756922,-88.02919941138362,-88.02929962914492,-88.02941453167738,-88.02950710818922,-88.0295915485372,-88.02968380340697,-88.03037440011983,-88.03040490558708,-88.03038912506715,-88.03030455029425,-88.03002032186336,-88.02994380041351,-88.02990569935817,-88.02992106910007,-88.03000513348222,-88.03178482551971,-88.03248307827864,-88.0326369089553,-88.03285143081042,-88.03306646701662,-88.03323553239478,-88.03335802306901,-88.03358079443662,-88.0337644958264,-88.03388727422397,-88.03401781876596,-88.03445507206185,-88.03462436927832,-88.03483112775646,-88.03533759683724,-88.03551459084005,-88.03575248927476,-88.03640075357409,-88.03655059554741,-88.03699607750872,-88.03728003599147,-88.03847963495197,-88.03924459011213,-88.03929043816112,-88.03942140996146,-88.03954381011924,-88.03998173526469,-88.04013519729173,-88.04033482843158,-88.04048057411742,-88.04061026336839,-88.04067245166013,-88.04070303162548,-88.04067953721147,-88.04055661106246,-88.0405260658938,-88.04068736340828,-88.04070972089465,-88.04075588898269,-88.04084843101964,-88.04114791947175,-88.04127824679408,-88.04136255906371,-88.04145416116961,-88.04152363197497,-88.04156976445803,-88.0418613214558,-88.0419297073577,-88.04197648168829,-88.04198391808444,-88.04209144285572,-88.04211703620462,-88.0421598892642,-88.04213672824422,-88.042167551589,-88.04225238714677,-88.04233664051127,-88.04251313386406,-88.04260513354123,-88.04266660859693,-88.04263550469256,-88.04258193917244,-88.04255859220181,-88.04261217546086,-88.04267406879551,-88.04276567936564,-88.04285791397892,-88.04320332869642,-88.04322645492427,-88.04339452425266,-88.04334885949987,-88.04301073213547,-88.04281860285307,-88.04281104362242,-88.04289516578496,-88.04311005721013,-88.04314048809961,-88.04314089859861,-88.04306425009509,-88.04284884381261,-88.04213498845027,-88.04181217361001,-88.04125150501319,-88.03989248651928,-88.0386019697458,-88.03824175338774,-88.03812636185243,-88.03795685204359,-88.03784928964636,-88.03774992436816,-88.03752723401574,-88.03741174330723,-88.03732348037784,-88.03695101427434,-88.03663783735936,-88.0362885917194,-88.03606086694388,-88.03583585236937,-88.0355360967804,-88.03523826070379,-88.03501233797726,-88.034933986063,-88.03474131977221,-88.03454967258035,-88.03432103717499,-88.03408879697022,-88.03389973760689,-88.03367472077788,-88.03330124013407,-88.03311578962773,-88.03281615503033,-88.03251639735809,-88.0322158484412,-88.03187651264474,-88.03164878428095,-88.03145881976023,-88.03126794120223,-88.0310393075324,-88.03077381054689,-88.0305856545984,-88.03032287143643,-88.02998534793954,-88.02968479864101,-88.02942008740527,-88.02926709377367,-88.0290743983539,-88.02895826804711,-88.02876297646118,-88.02860986548004,-88.02842000859242,-88.02826492183618,-88.0281593783061,-88.02807445012955,-88.0281284869902,-88.02825139238772,-88.02820507909816,-88.02805920138327,-88.02801314963396,-88.02794372900109,-88.02785194516777,-88.02765976330188,-88.02772874815126,-88.02765219964172,-88.02754420774997,-88.02742150050398,-88.02739830479835,-88.02745225913608,-88.02759804797759,-88.02763722665658,-88.02765993627159,-88.02763740071829,-88.02772141015161,-88.02782085861014,-88.02790563245574,-88.02793639049966,-88.0278601237856,-88.02778353428107,-88.02769850269881,-88.02725357078741,-88.02712326032976,-88.02693883452075,-88.02681616777205,-88.02670812893261,-88.02649348528081,-88.02636299449792,-88.02538055711595,-88.02522645826677,-88.02512700245886,-88.02494294411512,-88.02455932051036,-88.02428274037038,-88.02408344424479,-88.02392952566665,-88.02375290179975,-88.0233689408133,-88.02313094542149,-88.02295394131079,-88.02260824250834,-88.02183999076414,-88.02137166517426,-88.02074199069781,-88.02039592767481,-88.02031189337379,-88.02025773276948,-88.02030383011763,-88.02040346926816,-88.02053361303656,-88.0207259230838,-88.02094851165886,-88.02102500786339,-88.02113208382153,-88.02124729315823,-88.02132420718445,-88.02140802404763,-88.02136951863677,-88.02129213679767,-88.02111537809355,-88.02032397358259,-88.02028036702609,-88.02023178928216,-88.02020141885249,-88.0202702420801,-88.02036220107044,-88.02049287596306,-88.02090666005424,-88.02094529122654,-88.02090660827164,-88.02076042641367,-88.02062182550124,-88.02055305439175,-88.02066124847872,-88.02061518743895,-88.02043092410047,-88.02026214431554,-88.02016207109369,-88.02003961575947,-88.01977867771473,-88.019731917743,-88.01977076071569,-88.01972496802459,-88.01933329866335,-88.01929861669265,-88.01921072902358,-88.0190495096997,-88.01836568950132,-88.01772821692451,-88.01662206759697,-88.01654563681964,-88.01648405411942,-88.01648371399865,-88.01673651068697,-88.01675194012448,-88.0167211338424,-88.01662090691511,-88.01636802452857,-88.01610703439955,-88.015762450031,-88.01568590352012,-88.01563958654498,-88.01566278646924,-88.01578601514355,-88.01607038523737,-88.01600940758716,-88.01593243983575,-88.0157711627043,-88.01526382317687,-88.014795295407,-88.0146496291172,-88.01453400259591,-88.01427214539147,-88.014194547918,-88.01424847545454,-88.01437123782507,-88.0145479080949,-88.01524632161505,-88.01532337411648,-88.01527685779247,-88.01500856508066,-88.01497760445169,-88.01500772808599,-88.01508508179336,-88.01535278102384,-88.01538396370105,-88.0154060750527,-88.01548340212285,-88.01582041720417,-88.01583572149835,-88.01573580620078,-88.01526012748798,-88.01510666220071,-88.01502174771414,-88.014990976324,-88.01503700073275,-88.0149989545323,-88.01502149299304,-88.01508280219782,-88.01535974100295,-88.01579755065347,-88.01594324916246,-88.01603512423502,-88.01603476251165,-88.01594289980585,-88.01594310230314,-88.0158885141315,-88.01576591532405,-88.01562038904029,-88.0154125230698,-88.01531264521056,-88.0152896324617,-88.01530525037745,-88.01535122442631,-88.01547391149086,-88.0156968918364,-88.01596562403742,-88.01620337241592,-88.01628058254806,-88.0163259635774,-88.01628041256326,-88.01617238283495,-88.01567325464788,-88.01552730088159,-88.01545085082229,-88.01542007903687,-88.01541184672487,-88.01546556014404,-88.01538860004962,-88.01539644028071,-88.01548854258205,-88.01580337457258,-88.01589517211177,-88.01611014751846,-88.01622535671541,-88.01626394751008,-88.01625636389224,-88.01619402544539,-88.01607136294319,-88.01591022250796,-88.01544908275386,-88.01530256777541,-88.01524128419931,-88.01524890372785,-88.01534120663344,-88.01531028384994,-88.01533342794937,-88.01538663763692,-88.01547168236556,-88.01560231717059,-88.01566354807377,-88.01573983153322,-88.01574745244662,-88.01567089353046,-88.01540976222419,-88.01487947095156,-88.0147799202451,-88.01446423059366,-88.01348131463247,-88.01318197838171,-88.01294341207742,-88.01284352276529,-88.01287435560107,-88.01300473951939,-88.01401888143043,-88.01447964971698,-88.01457950437464,-88.01451805853195,-88.01424928807266,-88.01415695322994,-88.01408685398393,-88.01399507444768,-88.01387156996491,-88.01383277705433,-88.01387108272041,-88.01379453341757,-88.01387857649188,-88.0141321624575,-88.01429319616908,-88.0143699269171,-88.01462317054792,-88.01484547458256,-88.01490681780082,-88.01490648006275,-88.01488355243578,-88.01475253948287,-88.01429917905566,-88.01429160923848,-88.0144145949464,-88.01437574513314,-88.01422986707011,-88.01406065413985,-88.01368428796448,-88.01350769527953,-88.01345440696255,-88.01355436138377,-88.01409149769837,-88.01422997265597,-88.01422217182244,-88.01416828609196,-88.0138610838622,-88.01380684919538,-88.01382300534191,-88.01376869184719,-88.01366942363435,-88.01349226553167,-88.01332307007024,-88.01316219439828,-88.01303106136065,-88.01293127387089,-88.01286202453889,-88.01276930962752,-88.01265440992158,-88.01249297474251,-88.01227771544538,-88.01224688715521,-88.01229305844684,-88.01253079218245,-88.01266126909343,-88.01284557713917,-88.01297631669863,-88.01299181330417,-88.0129452077212,-88.01291428525663,-88.01295243763573,-88.01309120252859,-88.01326746811611,-88.01355961597585,-88.01360518585531,-88.01353659703156,-88.01338261366459,-88.0133214193304,-88.01341310768542,-88.0133975256813,-88.01313585657249,-88.01308956374257,-88.01313507149432,-88.01296634053224,-88.01299634918502,-88.01318057196116,-88.01313519680528,-88.01295056619841,-88.01276567795028,-88.01273522095497,-88.01274306435778,-88.01291947499008,-88.01291881080394,-88.01289568619347,-88.01278835788744,-88.01271867539803,-88.01238884347643,-88.01231173019863,-88.01236597185724,-88.01270382920906,-88.01288022525658,-88.01296469377722,-88.01306447195539,-88.01314115237297,-88.01323270503661,-88.01337059625689,-88.01338613263187,-88.01339351066085,-88.01346234961218,-88.01356242694378,-88.01361599908337,-88.01363086000042,-88.01360835895451,-88.01337763614687,-88.01335393696894,-88.01336943314929,-88.01363094386726,-88.01384545734778,-88.01390678573803,-88.01366895576834,-88.01348471415638,-88.01334620577029,-88.01322304253029,-88.01320024640906,-88.0132535517576,-88.01335388616748,-88.01332306182414,-88.01303856002832,-88.01275417797417,-88.01277691033421,-88.01329157032636,-88.01322277965441,-88.01279234357553,-88.01264666230649,-88.01260015110908,-88.01262367172478,-88.01269269077677,-88.01303049814472,-88.0133379170115,-88.01341477961566,-88.01346057577612,-88.01346050997068,-88.01343002420361,-88.01346008048641,-88.01343736216761,-88.01326785734874,-88.01319943287629,-88.01322196913209,-88.01317635521006,-88.01299173078588,-88.01250756361223,-88.01243866306619,-88.01243112781974,-88.01250036960137,-88.01277685304616,-88.01267671396386,-88.01267645953084,-88.01273819974932,-88.01284503370449,-88.01319087195925,-88.01331386490098,-88.01338292187037,-88.01349067603408,-88.01344390337535,-88.01328250135559,-88.01305212692277,-88.01296769219394,-88.01295989012416,-88.01300644459781,-88.01340547253605,-88.01386661216199,-88.0139513068044,-88.01402051982183,-88.01396627940854,-88.01368935850765,-88.01362049246319,-88.0136203808926,-88.01393516719783,-88.01401207070111,-88.01408112984939,-88.01408102831479,-88.0140351294274,-88.01404995846228,-88.01401170722986,-88.01376614001916,-88.01376592503699,-88.01395756578378,-88.01396462936334,-88.01394156155877,-88.01376524163253,-88.01375725694186,-88.01379536604152,-88.01389585960838,-88.01403394097855,-88.01414160822794,-88.01427167164827,-88.01433278930956,-88.01431786832383,-88.0142636335957,-88.01417901276342,-88.01407952653166,-88.01384927910946,-88.01365716562252,-88.0134652403985,-88.01336538135146,-88.01328872023645,-88.01330369219581,-88.01336540461247,-88.0135108849927,-88.01396397978768,-88.0141255555055,-88.01426346751823,-88.0142939031483,-88.01428578053167,-88.01413189643392,-88.01393157881886,-88.01383194978349,-88.01370137531048,-88.01367805620737,-88.01380090854455,-88.01380830456704,-88.01372409702564,-88.01356255252394,-88.0132396397905,-88.0133700947884,-88.01333888198796,-88.01327747990817,-88.01316992383536,-88.01313960970758,-88.01297785022021,-88.01287022852125,-88.01286291424974,-88.01291645280996,-88.01300847840363,-88.0133160818401,-88.01322355257074,-88.0132231157325,-88.01326172833146,-88.01341543986378,-88.01340786485422,-88.01330016488757,-88.0132148726931,-88.01323064528798,-88.01336099039399,-88.01333703328865,-88.0132837687389,-88.0132373161745,-88.01310631161098,-88.01314465739686,-88.0134212963827,-88.01348211868512,-88.01342870591132,-88.01330572285849,-88.01312911561726,-88.01299837151696,-88.01273643380624,-88.01262936048991,-88.01258322196914,-88.01252925284936,-88.01228324143788,-88.01200773402741,-88.0119985075743,-88.0119903657091,-88.01187345740821,-88.01175767204789,-88.01125862399692,-88.01082816730438,-88.01049109216062,-88.01030614771757,-88.01015306571422,-88.00988401310062,-88.00972286702209,-88.00966136541992,-88.00916898127105,-88.00867732079226,-88.00827712371907,-88.00806148788119,-88.00793398364499,-88.00783311378936,-88.00768780063096,-88.00760403740811,-88.00754251706975,-88.00744973224674,-88.00730364024125,-88.00721934070374,-88.00716569844711,-88.00712728674112,-88.00711191321052,-88.00699727146154,-88.00697424388771,-88.00703551319495,-88.00719766978725,-88.00724400298972,-88.0072132564011,-88.00725186431073,-88.00745186759139,-88.00749763227017,-88.00750600981534,-88.00747529140946,-88.00740581634169,-88.00726048914916,-88.00705299676946,-88.00695332954687,-88.00694549168425,-88.00699955312855,-88.00716860563438,-88.00726075052488,-88.00723037242847,-88.00716146952539,-88.0070152049238,-88.0067311165465,-88.00623221915434,-88.00612437142034,-88.00604772316059,-88.00603165074503,-88.00597803804902,-88.00574776053458,-88.0056857496343,-88.00569309123796,-88.00590804011463,-88.00599219352858,-88.00662821118421,-88.00661285556041,-88.00642804552837,-88.00641231399008,-88.00651243321271,-88.00661091073145,-88.00666081218345,-88.00672385892811,-88.00708862906599,-88.00721392629788,-88.00733032590144,-88.00750105744487,-88.00764031315099,-88.00780289617445,-88.00794271279604,-88.00798166637686,-88.00805132761565,-88.00822817022785,-88.00824499794416,-88.00813818183462,-88.00810763853784,-88.00810858218355,-88.00813942333049,-88.00829320085663,-88.00841631385259,-88.00867014200443,-88.00874624366591,-88.00876290240669,-88.00880890753814,-88.00892384526274,-88.00897041819059,-88.00901016634764,-88.00924162436027,-88.00942069311617,-88.00955283173069,-88.00961445437643,-88.00954613155703,-88.00943101343395,-88.00936201081262,-88.00932454029029,-88.00934700188985,-88.00912314520758,-88.00890341259081,-88.00877346608017,-88.00871995342013,-88.00865891750308,-88.00866008657421,-88.00887874946825,-88.00898754515462,-88.00906509062318,-88.00914582698297,-88.00928825765556,-88.00945971785889,-88.00955262106041,-88.00957133131519,-88.0096646687464,-88.00969654585478,-88.00970478064488,-88.00965934565579,-88.00968310281368,-88.00974446452906,-88.00983666735159,-88.0101433436128,-88.01032823015812,-88.01045117628324,-88.01051268116417,-88.01054316219674,-88.01046355094064,-88.00902246284875,-88.00877533005504,-88.00866927873295,-88.00863172084696,-88.00870126663938,-88.00886258432818,-88.00888607872923,-88.00892553056576,-88.00894093329026,-88.00901086511882,-88.00906509733892,-88.00914192270831,-88.00920231455936,-88.00914025211556,-88.00912194492918,-88.00928273995136,-88.00984577737245,-88.00996166296694,-88.01003379220722,-88.01015670843786,-88.01021784152705,-88.01037152988489,-88.01052491988378,-88.01067860847975,-88.01077187013038,-88.0108409663474,-88.01101814944793,-88.01107947783969,-88.01129611447774,-88.01126486139843,-88.01111147822274,-88.01052751259951,-88.01034376656462,-88.01026702157857,-88.01025974475037,-88.01032175398723,-88.01043698269324,-88.01037677284349,-88.01050022864159,-88.01044785451377,-88.0103251434552,-88.010218073049,-88.00993426590381,-88.00979588711263,-88.00969682450094,-88.00955912825059,-88.00931549912575,-88.00926926219617,-88.00928435956881,-88.00937747776116,-88.00949337676694,-88.00961569365172,-88.00986200738025,-88.01004560517526,-88.01016848169886,-88.01034562753821,-88.0104674745734,-88.01051299817235,-88.01058204325153,-88.01070431731718,-88.01085880155478,-88.01113481761018,-88.01144268702042,-88.01158982027512,-88.01173570357327,-88.0118970741939,-88.01204366949115,-88.01210570092,-88.01219735715952,-88.01231315101846,-88.01242883778956,-88.01248323279,-88.01237537376115,-88.01225246550632,-88.01190679214479,-88.01104614709425,-88.01073831569434,-88.01043039640915,-88.01009208300191,-88.00979311641692,-88.00971659930728,-88.00968537016506,-88.0097032990825,-88.00966449277435,-88.00957260590542,-88.00937925846165,-88.00933272289372,-88.0092864518767,-88.00927192671345,-88.0093252666627,-88.00939519846349,-88.00961165206321,-88.00992776676193,-88.00994338229569,-88.00988967491341,-88.00978920206707,-88.00945035975346,-88.00936590148436,-88.00927318464346,-88.00924221864065,-88.00916539144112,-88.00912744742344,-88.00912768173126,-88.00905953831848,-88.00898331812148,-88.00889204021274,-88.00866902963755,-88.00845479833033,-88.00823932061456,-88.00799359997497,-88.00787845261807,-88.00784860931029,-88.00794121247388,-88.00794133258673,-88.00790357124639,-88.0078112468954,-88.00750365944749,-88.00738054872373,-88.00730398476645,-88.00725099210008,-88.00713614025777,-88.00701389113354,-88.00685921935587,-88.00676714691895,-88.00633581082869,-88.00590444274096,-88.00568869908041,-88.00556450052136,-88.00534932326266,-88.00528867151627,-88.00524994523985,-88.00526675042624,-88.00522107367428,-88.00512093761017,-88.00505836663471,-88.00499752575249,-88.00447309009903,-88.00437997129431,-88.00418792343422,-88.00365374798012,-88.00354439327843,-88.00335080765635,-88.00314299613021,-88.0030511967075,-88.00300532625856,-88.00294381924154,-88.00290555340517,-88.00291451798938,-88.00300000961968,-88.00321696443484,-88.00335560087801,-88.00410465721873,-88.00425178066342,-88.00432136532793,-88.0043373179445,-88.00429316427393,-88.00424086628895,-88.00411226368485,-88.00410277362003,-88.00417527751992,-88.00417624060888,-88.00410724790312,-88.00403889129259,-88.00404001691903,-88.00408595701788,-88.0040949209959,-88.00414048148019,-88.00430188265075,-88.00429452406289,-88.00421006901135,-88.00402622560453,-88.0038412912821,-88.00365741097178,-88.0035802705991,-88.00356353510995,-88.00353272515277,-88.00343213838271,-88.00327132933096,-88.0031331340677,-88.00312569132784,-88.00314873891371,-88.0033114375953,-88.00354246362264,-88.00368971396587,-88.00402692626783,-88.00408841781564,-88.00416551529845,-88.00419651898541,-88.00415109351786,-88.00409692950367,-88.00393586895761,-88.00390519905015,-88.0039203148886,-88.00387486173426,-88.00372055714757,-88.00341322304143,-88.00334392336327,-88.00335214525467,-88.00346800712109,-88.00369959574022,-88.00392225802557,-88.00416912109691,-88.00422280634317,-88.00431536377835,-88.00442406156257,-88.00460881364234,-88.00463216015051,-88.00460866304414,-88.00446338884373,-88.00416501589724,-88.00408809268623,-88.00404973185525,-88.00404991785686,-88.00408951099108,-88.00414360821968,-88.00428260131314,-88.00468202662654,-88.00489684824736,-88.00492803831564,-88.00492732039035,-88.00488168297173,-88.00478201936417,-88.0044829314746,-88.00432920859721,-88.00418344993476,-88.00415259562232,-88.00418424008409,-88.00424523415901,-88.00440671764444,-88.00453051646357,-88.00474571800721,-88.00493069797089,-88.00497625845854,-88.00495392264216,-88.0048694636244,-88.00474635218374,-88.00465411767058,-88.00440851361685,-88.00425479570256,-88.00417018919991,-88.0041853539402,-88.0042327548453,-88.00440182691739,-88.00462497826567,-88.0049324159465,-88.00499416436389,-88.00498680351116,-88.00493330641572,-88.00489431121673,-88.00465695793665,-88.00441101554767,-88.00431743167331,-88.00424914901883,-88.00424971147545,-88.00437373339304,-88.00444339652027,-88.0045205723832,-88.00451388468218,-88.00446909278281,-88.00439093291644,-88.00404629576832,-88.00392279284365,-88.00379269043039,-88.00370799840537,-88.00349279401547,-88.00315516704075,-88.00300183111585,-88.00287817686366,-88.00275516986848,-88.00264787860375,-88.00262471560201,-88.00265634821044,-88.00276371390926,-88.00287846448978,-88.00303297413363,-88.00309468005879,-88.00319471604067,-88.00337163582776,-88.00351915451508,-88.00358030115881,-88.00375789453746,-88.00381135667755,-88.00383514495873,-88.0038805274998,-88.00380063626037,-88.00375185383444,-88.00366930902111,-88.00362245805799,-88.0036004962037,-88.00360773518427,-88.00365525211966,-88.00376350387477,-88.00378673841222,-88.00384061217571,-88.00408906824619,-88.00411025431796,-88.00394991741864,-88.00380357714614,-88.00372722908673,-88.00368104057303,-88.00366621300527,-88.00369015842453,-88.00373744632533,-88.00381444156857,-88.00398307289599,-88.0039612251031,-88.0040159501449,-88.00410843694232,-88.00410862249458,-88.00407078158794,-88.0035818811555,-88.00344522122532,-88.00343049768614,-88.00345358187251,-88.00352324910156,-88.0036394319097,-88.00362494257894,-88.00349462345751,-88.00339554323263,-88.00338881986727,-88.00330475100758,-88.00335935907343,-88.0035213467809,-88.00369114679027,-88.00376867077453,-88.00373093613632,-88.00364589318947,-88.00340817158019,-88.00328562358742,-88.00324795934193,-88.00322553866573,-88.0031886639956,-88.00301263823489,-88.0029601433484,-88.00284517329882,-88.00277627059918,-88.00268365240089,-88.00234456890027,-88.00226808398725,-88.00222911460872,-88.00226864336786,-88.00247625666411,-88.00249998142466,-88.00254119865372,-88.00246539940788,-88.00243540446411,-88.0023286144159,-88.00229800564462,-88.0022991226769,-88.00226859301583,-88.00223066183966,-88.00215368495881,-88.00175404065367,-88.00156307500195,-88.00149409597996,-88.00157251114645,-88.00153480821791,-88.00143518589969,-88.00118831717391,-88.00098860418146,-88.00092771200197,-88.00086597657965,-88.00063415041666,-88.00034262498582,-88.00012448242799,-88.00004050009579,-87.99993236757467,-87.99986242679319,-87.99984487090923,-87.99992113487986,-87.99993519296413,-87.9998263153872,-87.99970341868739,-87.99961116445201,-87.99951874980792,-87.99933504525735,-87.9992131162454,-87.99893660364744,-87.99882946941997,-87.99880749497022,-87.99881551720868,-87.99895723213905,-87.99897481878095,-87.99905398923002,-87.99907076411925,-87.99913323378135,-87.99936624693174,-87.99944369874237,-87.9995545834436,-87.99981899534208,-87.99985748478998,-87.99962370862723,-87.9993347599723,-87.99915279690052,-87.99896243304536,-87.99871032279088,-87.99838290919944,-87.99823887552833,-87.99823281282978,-87.99827337707868,-87.99843769957342,-87.99850840686427,-87.99869393378395,-87.99887125119862,-87.99892595310672,-87.9988788932051,-87.9986343839691,-87.99855119046582,-87.99850838133548,-87.99859738935568,-87.99880706720613,-87.99879177483585,-87.99873859470904,-87.99847019168172,-87.99840089600927,-87.99838598078267,-87.99837279340069,-87.99859175828284,-87.99856906401381,-87.99851573134474,-87.99842431759268,-87.99822374736164,-87.99810024532871,-87.99802355434372,-87.99794659618348,-87.99790996131031,-87.99781158980115,-87.99767409777405,-87.99747445369646,-87.99742127247845,-87.99739846572358,-87.99740661459757,-87.99746049464639,-87.99764529849045,-87.99804512833198,-87.99820664778076,-87.99834675226208,-87.99860968750635,-87.9986490307069,-87.99858758235477,-87.99831073747981,-87.99815718083799,-87.99800431705982,-87.99794262047865,-87.9978654858898,-87.99783465757778,-87.99783332045244,-87.99777921070832,-87.99774034006892,-87.99766425466991,-87.99758804846283,-87.99748190049648,-87.99719204496647,-87.99694183737395,-87.99688850129878,-87.99684967355405,-87.9968192577707,-87.99684113896087,-87.9971213143624,-87.99723456609199,-87.99726436740788,-87.99729409410011,-87.9972702949695,-87.99721600103442,-87.99713867710634,-87.99700891005088,-87.9968649365811,-87.99669693722241,-87.99645243996038,-87.99629831056343,-87.99615288409234,-87.99598469836964,-87.99585477466667,-87.99578087620063,-87.99570728095114,-87.99559412655618,-87.99526755845075,-87.99511033663059,-87.99502785773014,-87.99498412564147,-87.99487969520919,-87.99466725320626,-87.99454539798874,-87.99439254968439,-87.9942093370471,-87.99407248633594,-87.99406551851415,-87.99415083335178,-87.99416689200309,-87.9941212161694,-87.99402859792117,-87.99381308987725,-87.99375161093002,-87.99366885685058,-87.99362261863995,-87.99366151968987,-87.99393853630347,-87.9941225606204],"lat":[44.67668629261679,44.67675132452436,44.67678958202853,44.67683336885683,44.67694978608119,44.67704905601328,44.67711508530778,44.67720291695996,44.6772902615964,44.67752966751593,44.6776419475027,44.67743622686352,44.67735077086873,44.67731089897832,44.67714147461611,44.67683296507668,44.67650555471788,44.67617791534452,44.67585005447039,44.67552196837864,44.67518224494083,44.67483506662538,44.6744912771853,44.6741469945722,44.67390562719917,44.67366403337732,44.67342222811905,44.6731801875092,44.67300807027811,44.67283572039628,44.67266343227395,44.67249255267517,44.67243724181228,44.67238338512233,44.67232900977451,44.67228165854075,44.67589955040119,44.6769121359884,44.6795554362546,44.67959315211423,44.6795977228335,44.67960110944381,44.67962216744163,44.67962574692005,44.67959983857337,44.67969847560652,44.67980071222249,44.67619400691196,44.67263461927582,44.67262892692458,44.67033026863732,44.66447098823048,44.66014750362154,44.66005978191979,44.66082913686205,44.66076967724281,44.65999764618025,44.65637951353337,44.65283778086374,44.64929687622151,44.64575540524034,44.6422142282364,44.63865062427693,44.63508728566628,44.63152395543213,44.62796062808415,44.62438795135974,44.6208158203117,44.61724313946459,44.61367073881251,44.61007617338478,44.60648190360865,44.60288761496463,44.599293052169,44.59565357698079,44.59201411285765,44.58837462821128,44.58473515885485,44.58547691087819,44.5862400283254,44.58676920400452,44.58530729519,44.58168867126027,44.57807005652242,44.57445171094016,44.57084351206036,44.56723559503511,44.56362739415833,44.56001919502379,44.55642671431731,44.55283366514221,44.54924061978105,44.54564758157437,44.54202222047672,44.53839657044999,44.53477092381281,44.53114498943411,44.52752487650147,44.5239042081728,44.52028380828755,44.51666340201304,44.51304589461422,44.50942836954096,44.50581085359251,44.50219360433961,44.49840115951226,44.4947808211656,44.49116018499176,44.48753955080208,44.48393324973235,44.48032638639668,44.47671979853941,44.47311265142614,44.46949536341844,44.46587739973236,44.46225947795455,44.45864201195464,44.45501175119639,44.45138179560842,44.44775188508701,44.44412169471538,44.44050963630214,44.43746540212456,44.43689768174202,44.43328537805552,44.4296729271023,44.42604871588299,44.42242393406426,44.41879944305317,44.41677157722276,44.41517473409149,44.41135824701887,44.40773913364934,44.40411974063107,44.40050062942,44.39687582239496,44.39325101770012,44.39158862310116,44.3896264922866,44.38600233517682,44.38238758242721,44.37877337342054,44.37515889034537,44.37154495895457,44.36788440811449,44.36422441162285,44.36056412338912,44.35690384718896,44.35335201761633,44.34980019142603,44.34624837563474,44.34269625982775,44.33906215401227,44.33542804543089,44.33179393108588,44.328159255603,44.32815927255876,44.32455465965604,44.32093402812434,44.31713448385714,44.31520268434764,44.31369373991515,44.31018156349172,44.30666937903628,44.30295965488327,44.29924993841869,44.29571182156139,44.29217368692118,44.28863556362467,44.28509714003151,44.28155095831774,44.27800449659549,44.27445802753913,44.27091127666424,44.26726327623651,44.26361505330431,44.25996708559476,44.25631910478193,44.25273290354835,44.24914641634317,44.24555999813417,44.24197412579547,44.24162829330152,44.24144782801896,44.24122976593463,44.2410579177071,44.24113203289872,44.24109586528225,44.24100116624517,44.24098504613499,44.24099797882138,44.24102039913571,44.24093683522049,44.2407390816216,44.2403838222652,44.24038447503737,44.24039450853692,44.24042567449251,44.24044652419057,44.26018095807194,44.26568959037581,44.27329714782011,44.27913620176,44.28394919838663,44.29851972460033,44.31301887255975,44.31699782349152,44.32756203941445,44.32756654559461,44.32747281585745,44.32740826636435,44.32745590945147,44.32724151159139,44.32708944600079,44.34160675739534,44.35611858385268,44.37080602941852,44.38534389467968,44.41451143739052,44.42904566251572,44.44361831777717,44.45814146779671,44.47268667467829,44.48723728650045,44.5017348897408,44.51631444084509,44.53077088852672,44.54532390478824,44.55988189454592,44.57441901251185,44.58906692930475,44.60351464666762,44.61796278771708,44.63252904623511,44.64377926763518,44.64432302160277,44.64478901848695,44.6453702966264,44.64534666704582,44.64523657810801,44.6450608438147,44.64486291467647,44.64479697415781,44.64468729325697,44.64447304079756,44.64433005644579,44.64417073565583,44.64402806296977,44.64389616633384,44.64378615619388,44.64328080969813,44.64311597521183,44.64222027927162,44.64219265175424,44.64200588697172,44.6418574955145,44.64169261748641,44.64141231548354,44.64136833870414,44.64132436598091,44.64129133565278,44.64124734284213,44.64113723056251,44.64104929922991,44.64097253958793,44.64092857613404,44.64089552459537,44.64085153543623,44.64073024708591,44.6406972156277,44.64065323786704,44.64060925739812,44.64057620584111,44.64053222922604,44.64049945617639,44.64044429733602,44.64037848627394,44.64035637731116,44.6403015296757,44.64025755282696,44.64019161114003,44.64009800364891,44.63998515218906,44.63970780168216,44.63963072794053,44.63958674494483,44.63955367292466,44.63952063262541,44.63949883578641,44.63946575950339,44.63943268814521,44.63939964620461,44.63933383190215,44.63931175245499,44.63925682809793,44.63923471034838,44.63921291227915,44.63914679670515,44.63909175274208,44.63906974075825,44.63895957507891,44.6389487419577,44.63891573246961,44.63890461841366,44.63889375919729,44.63886077055629,44.63884963413909,44.63882762823039,44.6388165659153,44.6387836426296,44.63875036128574,44.63872855793871,44.63871823169369,44.6387062325614,44.63869537399772,44.6385743869618,44.63849724141772,44.63847519677429,44.6384643035798,44.63843111775165,44.63839824343906,44.6383653198716,44.63834302348057,44.63826606385725,44.63820537716006,44.63814469229111,44.63812260066751,44.63814421714709,44.63819907475536,44.63821015348174,44.63823214763085,44.63823770378036,44.63822110916407,44.63818792423059,44.63817709270173,44.63814393005757,44.63810497929216,44.63808796437395,44.63810942435841,44.63812590675303,44.63812040961162,44.63812569787599,44.63818544145211,44.63818532302128,44.63819622603049,44.63819588757009,44.63820669211605,44.63820658391732,44.63821767220307,44.63821731915676,44.6382057431143,44.63819478876458,44.63818348120547,44.63817264897112,44.6381503548276,44.63813929610041,44.63812821451705,44.63811712262788,44.63810604363211,44.63809496423968,44.63808390225675,44.63806748383028,44.63805078201968,44.63803971422725,44.6380286668175,44.63800663782586,44.63798437605742,44.63798437666058,44.63797315745283,44.63796237395772,44.63795115803816,44.63794010507347,44.63792897574233,44.63791244993784,44.63791228483295,44.63792879523888,44.6379507955006,44.63798356841049,44.63801638349847,44.6379942036743,44.63796117308753,44.63795031326123,44.63793915173395,44.63768588690563,44.63764180927362,44.63743827277422,44.6373778216099,44.63734478884577,44.63733366210318,44.63731160351696,44.63727856030103,44.63725667133931,44.63710240245245,44.63706939617831,44.63703631779057,44.63696231083492,44.63690416629588,44.63685993991866,44.63679403467549,44.63672785413775,44.63668384009273,44.63665074770029,44.63660669146334,44.63659578156389,44.63647460375518,44.63628211927103,44.63608946252822,44.63593541410979,44.63574863863898,44.63487412927685,44.63477528353762,44.63474779408198,44.63471453822365,44.63467614954919,44.63461550874974,44.63457152622412,44.63441774201905,44.63426374020482,44.63408779594555,44.63399981036589,44.63393394605504,44.63359857508206,44.63347747433809,44.63338940691993,44.63321332854036,44.63276236481715,44.63244880790663,44.6323388206542,44.63209677100146,44.63160194627421,44.6312062579049,44.63116212389642,44.63083219036307,44.62941918970117,44.6290892917174,44.62879228841272,44.62862706803412,44.62851693744076,44.62844000774739,44.62826385462235,44.62810407680018,44.62782908447227,44.62754311924678,44.6274439480078,44.62729542635638,44.62715791940261,44.62704255281077,44.62690501482636,44.626597074782,44.6263605852281,44.6262890962332,44.62622850919108,44.62615700188795,44.62590958791293,44.62585999784877,44.62564545137415,44.62535398026979,44.62500389667078,44.62493017200739,44.62482012240059,44.62475405740445,44.62469363227007,44.62459445311744,44.62454488363602,44.62446761667294,44.62426944815665,44.62420342761675,44.62408776683695,44.62397213800715,44.6239116969466,44.62372990410279,44.62363635868586,44.62352063352839,44.62344326602594,44.62333326230913,44.62323966190176,44.62321212321206,44.62305769230255,44.62288686641992,44.62277113828078,44.62268270239156,44.62264986502015,44.62260563374055,44.62258918276182,44.62246223005492,44.62226367153881,44.62223080833171,44.6221095135524,44.62206540504839,44.62201010514334,44.62186686696106,44.62170696180843,44.62164642258406,44.62155270229854,44.62141515478329,44.62136531832464,44.62134319386212,44.62135380928193,44.62133730228105,44.62127627830289,44.62121013864309,44.62119459020017,44.62116054001947,44.62111678747286,44.62106713009654,44.62099592395143,44.62094626987096,44.62091885407919,44.62060503109233,44.62034056989253,44.6202249442977,44.62012575948344,44.61995513448497,44.61968534227535,44.61959159947057,44.61937113874443,44.61922265447802,44.61907349997436,44.61902381977345,44.61899074260747,44.61896854155771,44.61895764853254,44.61893544802246,44.61890235205392,44.61888016566126,44.61884683943666,44.61881369368136,44.61879158110432,44.6187584672013,44.6187141623459,44.61866961211214,44.61862529019127,44.61860317518367,44.61859739879818,44.61856942995422,44.61846987427866,44.61847480739277,44.61846886789893,44.61844112703367,44.61838585034258,44.61836875852033,44.61832994075712,44.61832975871339,44.61830714610801,44.61830699881579,44.61832313645927,44.61834984481539,44.61835878170319,44.61837623512298,44.61838721779112,44.61840874256832,44.61841972211918,44.61846259508897,44.61851680998168,44.61852780402752,44.61853884459627,44.61857693760416,44.61858231104012,44.61862602854122,44.61864214410194,44.61866949490763,44.61869148317707,44.61871320959524,44.61876763806374,44.61878406552543,44.6188548884064,44.61887661211865,44.61890395989564,44.61893664464723,44.6190404506856,44.61913860119169,44.61918228257743,44.61920401768134,44.61930261989237,44.61930263576524,44.61932432869717,44.61932434454546,44.61934631751883,44.61934633030535,44.61937367600277,44.61942248696619,44.61952112041963,44.61952085297884,44.6195647945027,44.61958653192041,44.6196521945252,44.61965191338972,44.61967388434755,44.61969588890304,44.61969590432489,44.61975045038811,44.61975546794825,44.6197386807525,44.61969433288281,44.61964489758987,44.61951226565443,44.61941331643678,44.61933066372621,44.61917106625154,44.61897830550852,44.61882433044421,44.61852161632783,44.61834005608855,44.61826849825962,44.61819146239621,44.6179656753189,44.61783350855629,44.61767381426863,44.61753073640443,44.61745340337865,44.6173763786319,44.61733224216816,44.6172164149749,44.61716135058422,44.61709506202114,44.61702875024416,44.61700657403684,44.61696245879622,44.61696247578739,44.61692932157054,44.61687406452603,44.6166541369798,44.6165825619977,44.6164889484256,44.61634560768169,44.61620760709852,44.61614691235395,44.61614692589105,44.61610279710946,44.6161025233039,44.61603649105331,44.61603650450617,44.61600869249557,44.61595920866316,44.61587666323903,44.61564010971411,44.6155302541757,44.61544207757574,44.61538163971256,44.61526593228989,44.61513374513265,44.61508438328183,44.61493586333115,44.61473808183253,44.6147161271103,44.61456222969296,44.61451832574346,44.61438638525961,44.61429834452749,44.61423238066656,44.61395172351989,44.61379223695754,44.61329183327125,44.61300041195559,44.61263191058192,44.61251630019648,44.61240633703019,44.61212054807699,44.61205978748023,44.61198834609061,44.6116804796734,44.61161451340506,44.61143854471709,44.6113724482036,44.61106493210114,44.61091091662043,44.61066913029227,44.61051509918735,44.61038318326445,44.610229023655,44.6101409960248,44.61007516427767,44.60985522656139,44.60983326862845,44.6096352638305,44.60948110319564,44.609459160011,44.60941498947523,44.60939304871989,44.60928307333785,44.60926113071159,44.60919531305769,44.60879926047929,44.60853500337036,44.60825447543753,44.60802889566057,44.6079407311486,44.60785818648516,44.60779774310043,44.60765433510409,44.60751071396775,44.60748878266922,44.60745028309109,44.60716374826337,44.6070535389126,44.60697097525131,44.60685524865285,44.60660192815882,44.60638146060408,44.60622711922985,44.60607278187855,44.60600669635892,44.60592940047281,44.60585206799635,44.60559824042735,44.60549898847506,44.6053778277962,44.60527831380221,44.60516247604287,44.60501910032085,44.60489769023536,44.60482039936366,44.60480915820194,44.60478722343964,44.6047430764125,44.60468748429428,44.60467627169514,44.60464848281714,44.60464823431541,44.6046085696997,44.604345740333,44.60396222812854,44.60387466437337,44.60375422834355,44.60329956142718,44.60325558300597,44.60317350524101,44.60308027577808,44.60292135755925,44.60278409110364,44.60221330219322,44.60198836357072,44.60154930452355,44.60130778005626,44.6007918480601,44.6004188268633,44.60022121350957,44.60009505998099,44.59921750442,44.5989048809297,44.59845489345086,44.59807644004809,44.59788980970614,44.59769249412166,44.59762668462002,44.59684790264502,44.5965680792484,44.59635984122326,44.59598676882929,44.59567436396447,44.59557003609647,44.59499964053064,44.59490092990628,44.59475287808849,44.59472012740224,44.59467060350859,44.59462121001386,44.59457168868418,44.59450601503472,44.59445683666591,44.59444046925263,44.59441291996155,44.59436371009421,44.59424288993408,44.59365580832885,44.59348560285015,44.59291510520853,44.59256391123976,44.59211958230267,44.59145010502033,44.59103858671568,44.59087420560207,44.59060014083386,44.59050676854152,44.59041906756376,44.59036998653215,44.59022710195359,44.59005719261817,44.58989250384742,44.58978844768986,44.5896292613839,44.58943727571291,44.58927272885773,44.58906996815053,44.58896014803317,44.58888337798665,44.58882867532274,44.58861475839076,44.58849944069587,44.58843912402209,44.58824182395426,44.5880664677329,44.58790179557923,44.58773178586554,44.58740289672973,44.58721657928327,44.58694799768435,44.58687655675894,44.58639947728405,44.58628963370506,44.58594955480331,44.58545044052265,44.58495692581046,44.58387069639707,44.58322357972367,44.58308095868401,44.58299305955065,44.58291077784033,44.5827353950865,44.58253242618306,44.58218686493882,44.58200050265453,44.58195675589398,44.58185239597296,44.58177011424334,44.58170977765593,44.58167137523573,44.58173187591785,44.58183061607043,44.58194581694251,44.58202823344525,44.58201727844606,44.58196803971466,44.58179798769837,44.58171555768679,44.5816553610392,44.58149049903117,44.5813754469276,44.58130947381945,44.58129864157814,44.5813151077142,44.58144675981205,44.58146886003171,44.58146336644821,44.58140302714404,44.58133185310886,44.58123310393992,44.5811892148479,44.58117262691472,44.58121116061621,44.58108513247783,44.58096444660784,44.58083826264133,44.58069577638268,44.58061897631855,44.58033342612993,44.58028953149755,44.58020737791393,44.58015813628177,44.5799551545604,44.57988384327058,44.57968620372247,44.57951627660326,44.57942301793882,44.57932961891382,44.57893448765738,44.57878101458609,44.57868774712258,44.57858899760391,44.57838053492584,44.57820485015838,44.57803492656113,44.57787568478563,44.57778242445478,44.57760698820954,44.57760698103617,44.57767294666348,44.5776619700266,44.57757953108361,44.57737108531816,44.57728317751067,44.57716798138884,44.57701973068134,44.57692085915799,44.57681102195555,44.57678344784473,44.57676151819882,44.5767997975446,44.57690938823719,44.57693120803881,44.57700251829771,44.57715065525474,44.57729314728135,44.57730215609995,44.57730410831306,44.57745209251846,44.5780665078146,44.57807106417057,44.57823496019333,44.57826399181315,44.5783188407491,44.57837903919852,44.578389876382,44.57834062991,44.57837340197101,44.57835144848104,44.57828561740114,44.5782525674809,44.57818657764833,44.57813704315453,44.57808767336158,44.57796683488377,44.57772544679308,44.57763766225144,44.57757716269652,44.57748924783812,44.57730791020224,44.57725304606756,44.57725304141039,44.57728046552055,44.57731632590129,44.57713513662657,44.57706337161435,44.57700599638599,44.57668202072229,44.57642938095661,44.57633076503545,44.57607264401707,44.57596840803597,44.57584224525264,44.57575462193148,44.57563929864846,44.57556250070753,44.57548033812927,44.57534272035536,44.57528251819492,44.57519445962697,44.57491469927642,44.57471172253639,44.57466235073182,44.57461846478306,44.5746124578494,44.57463452336935,44.5745851410296,44.57451368711369,44.57445339641387,44.57442626207369,44.57435495939004,44.57429460593008,44.57420119915561,44.57412987911777,44.57369086963357,44.57327914505211,44.57318055151359,44.57302679858269,44.57254406492447,44.57229706931366,44.57171543433221,44.57098557117814,44.57045880650246,44.57033824862717,44.57015723528547,44.5700584955509,44.5698773136459,44.56978392056893,44.56938331684652,44.56935041009384,44.56848916696817,44.56826410824659,44.56790767904846,44.56761131535541,44.56613005354595,44.56569668570111,44.56514249661903,44.56501618541099,44.56493953009684,44.56483514712777,44.56477480981708,44.56448954170462,44.56436899726791,44.56422622968821,44.56396839423265,44.56385853283627,44.56319462261563,44.56305746426081,44.56285997393854,44.56277769224505,44.56268444443131,44.56262423411059,44.5624595133794,44.56228946003537,44.56210280193685,44.5619548195461,44.56192726076831,44.56188336516674,44.56187788008761,44.56180135756122,44.56172428778237,44.56156532443156,44.56136784010016,44.56138977575419,44.56167490407503,44.5616476221346,44.56155984709709,44.56170767656335,44.56170232740236,44.56160907805227,44.56146630697039,44.56065439571357,44.56046239016369,44.5603634981676,44.55969394890266,44.55897529923891,44.55876133787528,44.55797686097875,44.55771901613075,44.55690681443301,44.55653375667285,44.55646804933812,44.55637479788898,44.55618813327654,44.5558096016122,44.55537607541196,44.55525003597498,44.55478893318158,44.55465191749264,44.55447636738259,44.55426213202463,44.55392748231493,44.55338435671672,44.55319768194572,44.55277539177444,44.5526271234535,44.55253400452268,44.55245719176075,44.55235843180188,44.55210608830594,44.55169447874312,44.55137613511008,44.55129398442415,44.55099211042738,44.54994410921685,44.54949972802908,44.54913188651185,44.54892341058815,44.54849561048305,44.54822116917902,44.54779859080895,44.54756815213095,44.54738710460636,44.54621303078606,44.54580139113389,44.54548879685393,44.54520885004997,44.54439131076257,44.54418279637309,44.54406207175447,44.54397985857326,44.54381556122521,44.54374971053169,44.54345879228135,44.54318435815889,44.5427235319361,44.54266838387838,44.54235568262518,44.54209235007513,44.541823529761,44.54165880028694,44.54144485809761,44.54084672436671,44.54053387001549,44.54026501770054,44.53971095010383,44.53942014025959,44.53903032485129,44.53868478663928,44.53770805327846,44.53745566419778,44.53657212284296,44.53644043829841,44.53596863610412,44.53578740379812,44.53552948980074,44.53531560176077,44.53523327796143,44.53513461995536,44.53493143747412,44.5345034968189,44.53437175558057,44.53419064252372,44.53406439433403,44.53377365600359,44.53354856450629,44.5334664788861,44.53343350964638,44.53342785443951,44.53336759050968,44.53324122778472,44.5332195497059,44.53315362107969,44.53302187661079,44.53281336891551,44.53277488436922,44.53280224401301,44.53289555568927,44.53289581281196,44.53285175251715,44.5327363854544,44.53272005379895,44.53279693887354,44.532774974234,44.53248963319694,44.53243473959598,44.53240733147187,44.53242361703732,44.53259372736976,44.53265403393787,44.53259929393062,44.53246214098076,44.53233035837641,44.5321878527665,44.53195180533457,44.53168817955143,44.53154567636565,44.53138094450956,44.53105725291655,44.53098591691889,44.53094749748693,44.53096937647161,44.53092561112181,44.53079923903311,44.53068947793873,44.53056882975365,44.53051404104642,44.53044807229769,44.53041494167351,44.53034369764017,44.53026686193062,44.53021765518465,44.53024486801315,44.53031079234631,44.53026130960296,44.53016269929506,44.53008023225696,44.53000915435223,44.53000344703468,44.53011860562253,44.53010222693663,44.53004718594022,44.52968505997269,44.52961919293411,44.52931186992966,44.52931738659984,44.52936667593691,44.52936112489613,44.52921832790862,44.52919084051626,44.52921839864494,44.52937730200155,44.52951449928831,44.5295255809562,44.52950360361184,44.52939274419931,44.52934427004633,44.52931157785735,44.52928960032163,44.52930582692135,44.52935524025444,44.52927276909824,44.5291741555265,44.52911912487272,44.52913563119611,44.52926163050269,44.52926173573043,44.52931086838947,44.52930559009771,44.52903117317462,44.52902560058546,44.52906408143944,44.52910795918054,44.52919010976079,44.5292123128559,44.52928349948752,44.52919553814536,44.52918450713459,44.5292338771318,44.52923938279278,44.52909657762105,44.52905794048211,44.52907984679509,44.52914028805943,44.52905225041524,44.52916714917561,44.5291724102335,44.5292492565032,44.52928232956714,44.52927120598958,44.52921073922574,44.52921602067151,44.52927641869023,44.52932581647172,44.52928713825035,44.52930378725716,44.5293640645897,44.52939155567742,44.52938032526186,44.52947903778714,44.52950103019108,44.52947352981197,44.52947880637917,44.52951725805499,44.52965976767261,44.52988436797112,44.52990051172911,44.52987315043772,44.52990049471155,44.53003748999482,44.53005388370158,44.52996061712914,44.52996070803952,44.52998792559391,44.53015796688526,44.53028407295452,44.5303444424672,44.53034437127407,44.53032235750882,44.53019619918296,44.53016306329059,44.5301631323732,44.5302345220327,44.53032227598518,44.53042094893673,44.53046490909306,44.53046466098313,44.53040422662831,44.53042617037593,44.53049749678153,44.53062912480124,44.5308099695701,44.53087563792495,44.5309906534217,44.53110028784127,44.53111676343263,44.53102860568776,44.53102883016666,44.53108885220642,44.53114366702764,44.53125892793038,44.53133550005611,44.53148364181531,44.53147807809678,44.53158698520188,44.53165780652576,44.53170088279023,44.53182363799196,44.5319050228175,44.5320818841403,44.5322393608288,44.53239489739527,44.53245711682697,44.53249134136374,44.53265047639463,44.53273400099432,44.53283830704923,44.5329704375503,44.53308383459275,44.53319654987495,44.53332935396129,44.53344159315817,44.53353538798374,44.53360716382948,44.53359950745615,44.53338861818127,44.53325628382795,44.53329694426893,44.53342615913409,44.53359392287329,44.53367506020831,44.53369703912205,44.53370062073665,44.53378007743508,44.53381236650836,44.5338180804936,44.53384989662718,44.53390226336057,44.53392522568976,44.5339843374499,44.53413940360429,44.53416118766517,44.53413698673126,44.53418820452532,44.53424803640238,44.5344227346981,44.53450239183805,44.53450524787827,44.53447986469663,44.53446240789795,44.53462105097271,44.53460041635638,44.53467026849776,44.53479875128741,44.53481027269964,44.53485021404438,44.53493733007576,44.53499429064708,44.53507327231971,44.53511441214668,44.53510817758449,44.53512130981591,44.53524236804355,44.53526510359782,44.53524018841798,44.53527436545748,44.53536524004264,44.53555335033211,44.53567896495344,44.53583853860124,44.53608018810089,44.53628403215743,44.53647612646763,44.53652780789838,44.53644141278907,44.53629612912952,44.53620036321342,44.53616707192851,44.53617181193449,44.53630479400351,44.53652541826279,44.53668451085988,44.53683049855128,44.53690872144287,44.53693073291099,44.53694288842824,44.53702258467164,44.53718773282433,44.53735116445628,44.53762420766635,44.53796500582742,44.53837353212597,44.5386558791654,44.5388703415625,44.53899809836317,44.53913925928942,44.53922992996272,44.5392382214853,44.53922569502202,44.53910786431754,44.53894935154153,44.53869178518786,44.53768923492969,44.53734579436551,44.53726199832091,44.53762746678847,44.53800328939486,44.53829582370011,44.53838624454134,44.53842689564463,44.53845362823427,44.53867945255024,44.53870670015566,44.53880033576601,44.53881134953956,44.53877299662256,44.53978974870631,44.53998221315045,44.54016900403008,44.54078443087054,44.54094909891931,44.54113029716828,44.54154230575712,44.54162461811581,44.54170151631039,44.54176199473277,44.54183869523375,44.54190461781545,44.54195389683159,44.54200320551214,44.54205258772863,44.54210743142036,44.54222261328624,44.54236556332074,44.5423929569972,44.5424370168172,44.54290355915341,44.54353506798384,44.54368351742452,44.54372729178168,44.54367817666744,44.54380453067493,44.54385376313834,44.54400196372261,44.54404584713794,44.54413360845967,44.54422172176503,44.54441394487275,44.54451816845945,44.54466090088911,44.54475409136983,44.54511101561923,44.54521001750081,44.54521553783195,44.54514964131955,44.54516612666249,44.5451882726543,44.54564928859931,44.54587435796444,44.54611613396138,44.54631382082507,44.54651675737247,44.54682429172502,44.5469561028311,44.54707689670079,44.5471428347255,44.54713183336414,44.54696178870974,44.54694560979654,44.54702245386819,44.54702790018385,44.54692913509188,44.54673717127726,44.54667669893729,44.54662725571037,44.54662184300007,44.54674819981008,44.54684711759521,44.54696261604374,44.54722597189321,44.54729741462954,44.54736346096099,44.54752244895785,44.54762673972175,44.54773676649003,44.54774203362091,44.54770938252853,44.54763249446302,44.54741310983523,44.54690839993714,44.54652411000415,44.54627722383459,44.54632123519882,44.5465133852217,44.54673290831126,44.54718815805958,44.54731422692512,44.54743519059263,44.54766567765638,44.54776440118892,44.54798434577423,44.54809413182234,44.54816558771742,44.54827531787423,44.54838518005356,44.54853321876406,44.54964164119971,44.54969656777511,44.54970748074786,44.54967987984234,44.54957578228957,44.54932865328464,44.54920233711164,44.54887300789262,44.54877415333853,44.54877938431396,44.54892771504879,44.5489824041014,44.54904796772507,44.54915781411932,44.54926220006767,44.54946524245708,44.54959131909392,44.55048630290223,44.55095316524283,44.55123849932781,44.55160656574233,44.55224318081465,44.55287456137941,44.55324785119767,44.55342350736425,44.55357730386945,44.55364860218738,44.55365414918582,44.55362663520252,44.55339073217464,44.55364338137866,44.55384096709611,44.55395610418075,44.55404936980397,44.55413711759532,44.55501540259175,44.55518028639761,44.55542168677931,44.55565229543127,44.55587717711284,44.55617379177589,44.55633857043498,44.55649767387055,44.5567171439715,44.5569588207905,44.55710693894236,44.55715080788985,44.55715629882898,44.55714539309701,44.55709057265124,44.55681066481421,44.55667919434396,44.55660216064182,44.55659672108325,44.55709646382881,44.55719517336735,44.55726635925019,44.55737067984517,44.55758464655452,44.55768347888177,44.55780970171535,44.55800717836976,44.55812791220106,44.55942346295539,44.56007102476942,44.56015357207536,44.56018652720415,44.56018094583794,44.56020833507301,44.5602633343356,44.56047198111321,44.5607190539064,44.56081232106333,44.560861831358,44.56089468338617,44.56093867153582,44.561015373679,44.56130654778762,44.56135572748917,44.56137248119545,44.56133243440569,44.56132319466275,44.56125179934764,44.56118606998356,44.56129698928031,44.56136752086939,44.5614552418235,44.56151572391003,44.56152682633417,44.56142266276631,44.56142276125406,44.56147767366257,44.56154347280069,44.56164219501809,44.56173554014261,44.56185619003188,44.56199335990921,44.56218536392397,44.56225123247112,44.56258062516908,44.56280550816646,44.56286031966327,44.56289341669905,44.56290446210458,44.5629373603358,44.56298129186972,44.56311283266096,44.56355205538005,44.56367831851946,44.5638318643233,44.56388142336921,44.56394158905591,44.56409531946669,44.5642215131451,44.56444391714195,44.56480869070837,44.56500635395229,44.56514332492247,44.56524212218117,44.5652643854573,44.56525868705887,44.56530809315047,44.56551676487426,44.56576352310247,44.56599948177198,44.56620276274574,44.5664824775783,44.56670213435708,44.56683367660072,44.56689968165091,44.56702038734633,44.56715216381956,44.5691111210703,44.56927576345966,44.56975863506582,44.57032390542442,44.57045544035258,44.57066956713006,44.57092756875411,44.57098238666397,44.57115794555801,44.57128407044538,44.57148715433642,44.57211803590318,44.57242533671189,44.57301776151949,44.57415351043064,44.57549775761644,44.57581594332795,44.57587641665648,44.57602457392546,44.57606295763608,44.57606828155618,44.57601888159268,44.57603546030798,44.57608514346661,44.57655643561388,44.57692662605657,44.57726918508765,44.57734573188917,44.57734186094223,44.57733670352915,44.5772511144421,44.57727423639,44.57738007315919,44.57753767615171,44.57764156236756,44.57774509225608,44.57795546471339,44.57800594731115,44.57800207206163,44.57794190073938,44.57788525401971,44.57785308565331,44.57784792026863,44.57784274045854,44.57789062642802,44.57796716130882,44.57804434688135,44.5781485192234,44.57825176536902,44.57832764287348,44.57835112541411,44.57834659207296,44.57834076847865,44.57833558199268,44.57841147415984,44.57848928994354,44.57864716487033,44.57875234957234,44.578963631684,44.57906817264491,44.57911862690576,44.57916518199194,44.57916673580505,44.57921055978375,44.57926551216224,44.57930926823547,44.57937514544712,44.57945196099898,44.57974290057217,44.5798635190962,44.57992382506416,44.57997311213771,44.58021455821974,44.58021998727544,44.58015426253058,44.5800114776392,44.5799292076185,44.57984687068964,44.57972616466177,44.57963850831422,44.57938598461812,44.57914449783178,44.57903482310807,44.5789341365571,44.57884839104418,44.57877690036938,44.57872747409633,44.57871096070885,44.57871117858821,44.57883178083468,44.5788208075473,44.57871071535451,44.57868327383992,44.57868872331514,44.57872721307607,44.57872157947671,44.57844154876667,44.57834266871158,44.57821097388423,44.57809019807365,44.57786496870909,44.57773330100769,44.57766739520407,44.57765629233128,44.57771118823212,44.57791413287494,44.57808415413923,44.57824313292015,44.57859443290653,44.5792416881248,44.57958719899271,44.57995467309697,44.58022324701579,44.58033319549895,44.5805139934502,44.58084901207685,44.58097508608245,44.58110703439429,44.58121671435642,44.58131566195902,44.58138140804517,44.58159004241118,44.58193019498321,44.58221566955163,44.5830169378694,44.58345570484821,44.58364791749171,44.58384544415473,44.58447624411333,44.58455482542248,44.58464063180964,44.58481621279125,44.58499211459249,44.58511270867112,44.58520612257655,44.58584262787598,44.58607314270754,44.58633129504084,44.58667141630177,44.58685778809512,44.58681946058472,44.58606765690715,44.58596332819649,44.58563942093124,44.58548570270274,44.58544176687674,44.58543092415236,44.58546381330013,44.58540336421361,44.58523327156659,44.58516748829044,44.58476120752345,44.58473922446854,44.58468424596052,44.58467892002906,44.58496947915339,44.58530923097352,44.58586336462593,44.58593461913149,44.58605536671881,44.58629674003668,44.58696618759396,44.5871144352442,44.5871636956917,44.58714732707713,44.5866424488654,44.5863295774824,44.58572014313986,44.58551710159554,44.58516604288998,44.58503956395735,44.58472689918943,44.58416722068762,44.58408513312787,44.58407957946775,44.58414542062869,44.58461710779856,44.58489675998315,44.58510522372917,44.58537947587597,44.58664146432492,44.58716281770166,44.58726700619101,44.58733834704805,44.58739881159483,44.58742108410971,44.58747052754703,44.58754173955121,44.58765157887061,44.58772840487752,44.5878380801888,44.58794801802468,44.58848016482042,44.58874374515642,44.58932001134231,44.58940771911875,44.58952301828536,44.5896054317809,44.58964926928073,44.58969839278127,44.5897424251326,44.58980818193895,44.58987938915155,44.5900771177464,44.59015381932042,44.5902087893795,44.5902582431048,44.59024167995821,44.59014857112558,44.59017080082595,44.59024751023045,44.59037381706148,44.59062063626486,44.59073035842161,44.59080733446734,44.59082349231981,44.59079620741715,44.59079596843957,44.59086174799186,44.59098260063628,44.59112522474144,44.59118566496596,44.59121311790484,44.59118576689798,44.59120225345264,44.59118050297722,44.5912023828164,44.59125718298878,44.59132306846926,44.59135072827868,44.59139438074391,44.59144895556255,44.59152048976257,44.59159169524139,44.59171786522762,44.59192107577928,44.59203058233993,44.59212411934904,44.59221743427631,44.59236019434071,44.59239301346249,44.59250843919814,44.59264013085419,44.59275558101686,44.59290905504425,44.5930517346301,44.59325468581018,44.59340830503884,44.59367711608848,44.5938636250659,44.59404457845899,44.59412150985485,44.59432454511366,44.59442331963584,44.59448364135505,44.5945166380211,44.59451671282157,44.59447284484992,44.59447841211775,44.59452755920534,44.59460449544944,44.59472526357503,44.59499389249355,44.59535040099937,44.59538326912261,44.59542701432187,44.59566282555169,44.59571191761871,44.59573392532531,44.59579970489145,44.59586551066094,44.59589844812115,44.59594816394127,44.59589906660141,44.59592668566363,44.59601986386809,44.59621183792422,44.59642572882689,44.59707324695277,44.59727083068945,44.59745182842759,44.59766580433359,44.59783582898668,44.59818728194738,44.59828608297439,44.59840133850478,44.59850569996496,44.59858805678017,44.5989446840111,44.59940035883044,44.59968022193551,44.60003693956408,44.60020139853467,44.60037157684437,44.60061829136594,44.60067864797978,44.60085971039805,44.60093667909245,44.60094202024636,44.60089265621095,44.60082112468514,44.60082649096822,44.60086495032318,44.60093617527483,44.60107380351629,44.60121631306415,44.60126034899469,44.60129317198243,44.60136434970223,44.60131501604658,44.60121064452835,44.60111742416569,44.60109544152955,44.60111739482697,44.60118309454613,44.60128185537284,44.60138591561603,44.60151781032704,44.60165473583101,44.6021102758332,44.60226947893074,44.60238454570707,44.60246125437765,44.60251079758638,44.60256561363708,44.60261504618821,44.6026918678997,44.60303773363889,44.60315310181498,44.6032298925599,44.60337256190915,44.60358639528157,44.6036686407443,44.60375657859218,44.60378412564953,44.6037622004433,44.6038116606213,44.60388305055675,44.60398727583324,44.60411899989986,44.60452514040108,44.60472798758691,44.60517243199264,44.60549065524315,44.60572663290538,44.60628635150822,44.60633019681269,44.60640176898416,44.60646202798056,44.60649482213936,44.60660441637552,44.60664299315525,44.60673624571321,44.60706003010559,44.60724119567364,44.60752662097287,44.6076251825558,44.60763607017884,44.60763060613174,44.60767455846377,44.6077238929059,44.60781726422127,44.60791064416985,44.60802042247497,44.60821261687114,44.60848149486922,44.6089149273684,44.60916742253249,44.60926615799568,44.60965030200713,44.60982592243398,44.60996325905194,44.61007841428503,44.61024324574795,44.61032556376509,44.61057783995395,44.61064916408298,44.61072595528926,44.61084135146376,44.61087968263272,44.61092913960805,44.61095088498342,44.61099494298869,44.61106061188821,44.61123064269179,44.61136781553404,44.61144469820387,44.61150524315285,44.61155449913477,44.61158190283883,44.61167513426476,44.61172448166491,44.61178492414678,44.6118619353697,44.61187244912616,44.61189438546668,44.61198781994096,44.61203718413044,44.61209211927216,44.61214160406691,44.61215820602536,44.61219105225032,44.6122571162494,44.61232829056133,44.61245998233056,44.61264111821676,44.61270683797324,44.61273427193585,44.61268497014404,44.6125092524297,44.61243784786391,44.61237752317005,44.61230045168141,44.61231135030387,44.6123936496009,44.6124651837572,44.61258056047478,44.61274507760061,44.61282187674307,44.61288231448185,44.61293705979818,44.61295911711117,44.61302511557147,44.61310199690867,44.61345327913561,44.61350816900966,44.61355206060644,44.61356268122226,44.61359018443631,44.61363422017328,44.61367807075144,44.61371118241594,44.61367840963081,44.61368944821331,44.61373876204885,44.61380477482088,44.61388688270435,44.61391972859541,44.61396924061082,44.61402423051099,44.61407902056306,44.61415590028837,44.61420512921727,44.61441926367495,44.61456187249765,44.61464419617125,44.614869207187,44.61496794747752,44.61542337696268,44.61551661574568,44.61561552621101,44.6157964463739,44.61584581957629,44.61590640298508,44.61593938280635,44.61595585061247,44.61603255513842,44.61619179932274,44.61633999272931,44.61647730508876,44.61654303298859,44.61657588296,44.616559522613,44.61642751721052,44.61626297264562,44.61597746449189,44.61597207000952,44.61604866343512,44.6161639833896,44.61631782064385,44.61650996658678,44.61680620986052,44.61696543768266,44.61721793486557,44.61738810220271,44.61758011013019,44.61798085677214,44.61884217018861,44.6189684350953,44.61907813363661,44.61913821359114,44.61923178429436,44.6192921178084,44.61945128898576,44.61963752920499,44.61979676793192,44.62006010867596,44.62012061163159,44.62014233154427,44.62013145930729,44.62002711708121,44.61998857766675,44.62004887816077,44.62014777502187,44.62024098084605,44.62026846554147,44.62025778666798,44.62049924119267,44.62069672330104,44.62081189718294,44.62097098541498,44.62103134290354,44.62116309618709,44.62137710803411,44.62160751148706,44.62192036050582,44.62218382786711,44.62235957651908,44.62270508150646,44.62324266268185,44.6233195718218,44.62338571342226,44.62347342182318,44.62356110826286,44.62363267644907,44.62377505008014,44.62379696959029,44.62380788388127,44.6238518740175,44.6239340640439,44.6241534013211,44.62459783292187,44.62495988471731,44.62499939496411,44.62503019836839,44.62508526848859,44.62510744706764,44.62516317993457,44.62524064083923,44.62532900938827,44.6253460417725,44.6253298702781,44.62534121565927,44.62533053112462,44.62530892080108,44.62523872849454,44.62523971834975,44.62516943603998,44.62509337341225,44.62499746638472,44.6249290345323,44.62463982560749,44.62425575931643,44.62421164480583,44.62420636617542,44.62423926385731,44.62423920081535,44.6241952230072,44.62407442373927,44.62394812314923,44.62370671048919,44.62359687550443,44.62337203956652,44.62316893932016,44.62296606442911,44.62259839908715,44.62248316756791,44.62230210451384,44.62223088723986,44.62205520160406,44.62193988761349,44.62185202679643,44.62174764503629,44.62157213802811,44.62144576512733,44.62135251369963,44.6211770627288,44.62086436532684,44.62061193971115,44.62046370841297,44.62035926241285,44.62028244043524,44.62022740275702,44.62021081400027,44.62025450674262,44.62035331797592,44.62052352308388,44.62061682886847,44.62083083564166,44.62096225468807,44.62111598744174,44.62187876104991,44.62227408750383,44.62408512072336,44.62421144891906,44.62440881151939,44.62454610303819,44.62482045873154,44.62498169038522,44.62499691004868,44.62501938962833,44.62589449431676,44.62635411741716,44.62668248824348,44.62698873796742,44.62731694265189,44.62747001003187,44.62766684589233,44.62786389114651,44.62803868560282,44.62823559938507,44.62838865664366,44.62858597173405,44.62869571786802,44.62878322618938,44.62884903001494,44.62891416913316,44.62890843910937,44.62885885302882,44.6288914100474,44.62895724594709,44.6290174118279,44.62906639796226,44.62910996897374,44.62930702830015,44.62963515084412,44.63018208107282,44.63048849774994,44.63057593759648,44.63070753358137,44.63077895015004,44.63086130238571,44.63105841984798,44.63109285305617,44.63137168350467,44.63164495732288,44.63168910651063,44.63173318521355,44.63185900184862,44.63207817240869,44.63273466568995,44.63298638060886,44.63327637091595,44.6340261055058,44.6350225140582,44.63549278377211,44.63588685764056,44.63665323090085,44.63685038159012,44.63704730261417,44.63724437493549,44.63739774982957,44.63746342965122,44.63751260477958,44.63751252473418,44.63734738989889,44.63728702793489,44.63728664313343,44.63730853205855,44.63738502281042,44.63745480760211,44.64256191013671,44.64287465516746,44.643071984248,44.64322521272955,44.64333473757092,44.64341097720178,44.64343839257343,44.64357524110869,44.64381604188658,44.64391432133111,44.64394171349338,44.64393067495877,44.64387011326124,44.64354185089413,44.64299435255882,44.64255603767586,44.64033410127536,44.64030995518948,44.6403207776222,44.64029844796837,44.64033129924245,44.64033088685543,44.64038532339757,44.64038490816962,44.64042310216509,44.64049970093917,44.64052670327145,44.64055393607575,44.64071778402112,44.6407560612454,44.64081668904706,44.64083970771139,44.64088939286827,44.64094432048895,44.64106488680537,44.64114136236942,44.64122860952619,44.64149144732831,44.64177604602997,44.64201707696627,44.64214856660655,44.64221449781767,44.6422863560184,44.64236890496891,44.64250024087853,44.64263203191452,44.64302670459411,44.64318034664461,44.64324587548726,44.64331136487705,44.643333077628,44.64330538903085,44.64320080782442,44.64317868936225,44.64313469276985,44.64302468826996,44.64284929671383,44.64273952677012,44.64267940020676,44.64262977173461,44.64262936830723,44.64271632395677,44.64277063719671,44.64284690673573,44.64289052243234,44.642988419477,44.64298815910746,44.64297179878106,44.64298802204001,44.64305896117888,44.64317913245596,44.64329401627889,44.64335993698984,44.64338199197986,44.64334981094673,44.64337364366102,44.64334127344298,44.64326529179816,44.64327149471946,44.6434637735165,44.643535021871,44.64359552270636,44.64392386089997,44.64392937714753,44.64389682520937,44.64365095067865,44.64362904499892,44.64364539841463,44.64367834170734,44.64387001061186,44.64396828678058,44.64413775848875,44.64427380411185,44.6443010843523,44.64435050799193,44.64436169644375,44.64429108382712,44.64422574793672,44.64405618259987,44.64403988652336,44.64405092509334,44.64410034000225,44.64423172562265,44.64447275618699,44.64460421077974,44.64469208480917,44.64482941897812,44.64491739396475,44.64497271310707,44.64508264291878,44.64515405784486,44.64521993143146,44.64543872940492,44.64550428275231,44.64554835255721,44.6455976642294,44.64560382850916,44.64563150279687,44.64568080101619,44.64580141035309,44.6459330373087,44.64600461124841,44.64601035102266,44.64598314207438,44.64575954921939,44.64539895429785,44.64530093904633,44.64526838656118,44.64526884998138,44.64529086003942,44.64533997368146,44.64560837271988,44.64563035991565,44.64560863865766,44.64543368534337,44.64534625385411,44.64505688900166,44.64499139987152,44.64480012007119,44.64399096944403,44.64364077551258,44.64335663088468,44.64328041150993,44.64329146855616,44.64331907957827,44.64341196285447,44.6436312893655,44.64380643191694,44.64402511014456,44.6443861870495,44.64457203689347,44.6453205232654,44.64551186398808,44.64564305229663,44.6457524859821,44.64621252344392,44.64651938110103,44.64691380170148,44.64712153533833,44.64735152009178,44.64746125337633,44.64768032563203,44.64781191736378,44.64800886060321,44.64814019788162,44.64831534385677,44.6483428627005,44.64834793573904,44.64842461024676,44.64847405228683,44.64847984293252,44.64842540660302,44.64840924834659,44.64836035575296,44.64825090831565,44.64820704618592,44.64815239681069,44.64815296402623,44.64822959910192,44.64826266242699,44.64837193889853,44.64856889800274,44.64872710383066,44.64875415815114,44.64866608784553,44.64866575755727,44.6486929901229,44.64873122616114,44.64890654093435,44.64892303689165,44.64888505866431,44.64892897088851,44.64901672858326,44.64905503566915,44.64904980407481,44.64897916590175,44.64902324607812,44.64910525214803,44.64922009427698,44.6493619912554,44.64946547601011,44.64955278058335,44.64959620055973,44.64979306016232,44.64986416523374,44.64992393860573,44.64997864472812,44.65006628483093,44.65016530768496,44.65026980888,44.65035229880439,44.65050551338259,44.65061495159391,44.65072451710435,44.6507789160131,44.65081707286969,44.65079985969914,44.65081036303263,44.65084325972025,44.65088713518892,44.65093079035147,44.65096392948568,44.65099724640923,44.65111271632212,44.6511568681905,44.6512061238934,44.65127166178065,44.6513318050388,44.65138076616507,44.65140234302363,44.6514018834072,44.65136319637404,44.651390720343,44.65146741334762,44.65151685578147,44.65154424574719,44.65154460072457,44.6515121740774,44.6515125851931,44.6515893145788,44.6516987319804,44.65176454408653,44.65186793714522,44.6519115004732,44.6519106855803,44.65194890004292,44.65202557451327,44.65209159495824,44.65210244562918,44.65205919504848,44.65205967698019,44.65207633009398,44.65213674327769,44.65223521695272,44.65238817620387,44.65256325550085,44.65268022793627,44.65299013106308,44.65307796357239,44.6531275199992,44.65315553233334,44.65319416768743,44.6532872596933,44.65332038247893,44.65332084190791,44.65342014914074,44.65340931150911,44.65336044973974,44.65333860047148,44.65341014988549,44.65346488880095,44.65353070527693,44.65361782914357,44.65365049593829,44.65365010782334,44.65366665635092,44.65373761347655,44.6538191982578,44.65399957611693,44.65403243415998,44.65404847956422,44.65407558110816,44.65439304678956,44.65451762227595,44.65477842027522,44.65493652128202,44.65493001267538,44.65496295096331,44.65502867668241,44.65511629659242,44.65524766269211,44.65540091024622,44.65550484309092,44.65554291742637,44.6555616091083,44.65567929453997,44.65584922585077,44.65590996558471,44.65597558160755,44.65605804695117,44.65614556058726,44.65632068570019,44.65643573061482,44.65651218710792,44.65658293694416,44.65671421645402,44.65691125223781,44.65706450401805,44.65717394636547,44.65728890816376,44.65805119095523,44.65835797712489,44.65851131899134,44.65864254167477,44.65881761961482,44.65899266176054,44.65904727107144,44.65914627019482,44.65929982780762,44.65951857984114,44.65969406426517,44.65982555381064,44.66004416178148,44.66021901817378,44.66037200972264,44.66043774165413,44.66050377569739,44.66060820834701,44.66075629201569,44.66086591174507,44.66112856036714,44.66123819205694,44.66158901942783,44.66178615307343,44.66198894576893,44.66204400534534,44.66205504529444,44.66189691913495,44.661897265721,44.66193006352945,44.66199574163328,44.66214847319345,44.66219221580388,44.66280537917386,44.66322181799353,44.66331469284479,44.66346277092296,44.66355057039399,44.6637475209206,44.66387892339284,44.66395028064249,44.66401082539257,44.66419231708917,44.66433498400261,44.66446093610438,44.66467977348708,44.66476744551357,44.66484447149828,44.66491611179628,44.66501501384056,44.66502042179751,44.66500442657114,44.66486786542166,44.66474798058488,44.66469492367181,44.66466110213131,44.66459591244688,44.66449762758953,44.66436622397812,44.66423477364248,44.66414696265194,44.66398892301018,44.66394034953744,44.66394070494461,44.66396862220945,44.66410634620893,44.66416722875604,44.66420683071907,44.6642730343453,44.66433875639073,44.66442639324518,44.66477574819942,44.66492909522042,44.66512572641587,44.6652568337947,44.6653659586435,44.66560550839038,44.66571461539614,44.6660206677143,44.66642478135876,44.66670396720527,44.66683012835863,44.66711623191724,44.66736342499713,44.66753394358043,44.6678032550732,44.66808418136175,44.66826001699417,44.66841323627639,44.66863197070917,44.66894318183675,44.66901925556123,44.66914966937163,44.66919806905805,44.66925810653007,44.66929666780639,44.66939084582498,44.66951710607263,44.67007337889088,44.67030506350095,44.67048991148171,44.67054478257274,44.67057788743217,44.67065589565028,44.67072191606374,44.67076582082942,44.67089696938124,44.67122433260345,44.67133392796219,44.67139432304204,44.67143857644482,44.67140130288883,44.67134709087865,44.67135305906774,44.67143554334432,44.67158344444852,44.67171534743481,44.67179254896621,44.67184278342931,44.67187588764792,44.67191993588924,44.6719580602396,44.67199613882253,44.67203342044291,44.67203171355125,44.67205817593512,44.67213405634088,44.67232968797393,44.67240070635402,44.67244492110527,44.67242431374967,44.67244131431695,44.67252978365477,44.67253545612014,44.67250850325798,44.67246491964583,44.67236643023445,44.67231202828852,44.67229587621028,44.67230720019588,44.67236775347317,44.67256506951569,44.67280754929382,44.67318098100139,44.6732413746341,44.67324688185641,44.67321427809026,44.67308271640612,44.67270925449253,44.67251177954719,44.67240202407182,44.67224866509945,44.67216131799067,44.67211225796353,44.67209092510004,44.67219555252579,44.672414992578,44.67253076537384,44.67264687976362,44.67268046325032,44.6727361468659,44.67285725649776,44.67298916980317,44.67314288047833,44.67349352831452,44.67375654769199,44.67424003710386,44.6745689563784,44.67478834457425,44.67507312167859,44.6753801843815,44.6757095384462,44.6758359602133,44.67594636885057,44.67604555053494,44.6761722748385,44.6762599280866,44.67634694888413,44.67640714964706,44.67645108290179,44.67648433870775,44.67649095874362,44.67651294679205,44.67655735156406,44.67661758572587,44.67665568425764,44.67664902022389,44.67668629261679]}],[{"lng":[-88.0034058997865,-88.00477015775859,-88.00595528292784,-88.00607216666128,-88.00685186857963,-88.00748539670253,-88.0076257308321,-88.00791225980444,-88.00830603499041,-88.00859258123947,-88.00960238781596,-88.01062781437101,-88.01085591036964,-88.01083058210732,-88.01183656893892,-88.0119672218096,-88.0135483662054,-88.01419367044942,-88.01478820830343,-88.01523841374947,-88.01436871724979,-88.01342111766867,-88.01112269928755,-88.00857908917077,-88.00530483708171,-87.99586987440624,-87.9929892849443,-87.99249215352584,-87.99800144781682,-87.99895451227123,-87.99885696742632,-87.99754699585461,-87.99767349509719,-87.99862071946106,-87.99983316577051,-88.00056023394332,-88.00174722119274,-88.0025522448563,-88.0034058997865],"lat":[44.56469406529552,44.56689022892383,44.56731109662909,44.56857079302505,44.56915606857421,44.56933862565994,44.56991273608219,44.57088955931124,44.57106792814633,44.57204475041104,44.57291985147302,44.57333788663981,44.57368485685828,44.57442757442684,44.57541692080284,44.57627668655965,44.57681870334084,44.57665843160036,44.57563978227315,44.5741612916058,44.57151652873596,44.5688132372582,44.56351393596465,44.56072561975714,44.55826747930976,44.55827374496095,44.55833747409569,44.55884322917244,44.56139811770708,44.56158632454002,44.56209911007996,44.56299079949954,44.56396484300807,44.56432444891931,44.56394553393562,44.56372960532268,44.56409338345256,44.56393597261644,44.56469406529552]}],[{"lng":[-88.01523755230988,-88.01513787743278,-88.01507678361891,-88.01500732833331,-88.01498384586436,-88.01519077383712,-88.01531364022874,-88.01542841814293,-88.0155285622015,-88.0156896995133,-88.01576610564258,-88.01588910438888,-88.01592777928683,-88.0156510137172,-88.01536049902121,-88.01526079329696,-88.01531442215808,-88.01560679650343,-88.01556022806321,-88.01546044241572,-88.01523755230988],"lat":[44.57854221479147,44.57860265600622,44.57866291873597,44.5787838090132,44.57896486069922,44.57954658827838,44.58000756947217,44.58024363042723,44.58033145894782,44.58040824445895,44.58043011130863,44.58042465075103,44.58037553269187,44.58013384246549,44.57937089508403,44.57887711537202,44.57871234821694,44.57856438721277,44.57849859175799,44.57849291895053,44.57854221479147]}],[{"lng":[-88.01645637445722,-88.01644148761403,-88.01621048066194,-88.0160957236984,-88.0160721235483,-88.01581852101799,-88.01566505526527,-88.01556435936368,-88.01556486570867,-88.01563358834395,-88.0156951439089,-88.01575680638686,-88.01580244682569,-88.01582613008483,-88.01594939128783,-88.01628714815033,-88.01638753062674,-88.01654070630113,-88.01655639015898,-88.0165181469843,-88.01645637445722],"lat":[44.58119859637228,44.58124278666374,44.58148409181535,44.58168690479891,44.58180212246011,44.58217525761124,44.58231240776036,44.58288850511966,44.58305872173913,44.58307510536915,44.58304776160296,44.58297090850606,44.58285579376599,44.58246065770751,44.58216993440357,44.58175297100679,44.58164865140919,44.58135789037802,44.58122087470423,44.58118785832097,44.58119859637228]}],[{"lng":[-87.97968530534349,-87.97980081431113,-87.98057008955102,-87.98103953766778,-87.98151601915906,-87.98173139599967,-87.98205449582127,-87.98255392433363,-87.98311525985589,-87.98320731815394,-87.98333026127482,-87.98349960909293,-87.98369135628737,-87.9838066923819,-87.98406051110469,-87.98429793127683,-87.98464382675731,-87.98485821040033,-87.98528066402818,-87.9855722814235,-87.98581800965725,-87.98589449585344,-87.98595618709874,-87.98588674529272,-87.98571060753737,-87.98526464145307,-87.9849651889065,-87.98483473332143,-87.98471145501074,-87.98459618501299,-87.98405828639703,-87.98393553238033,-87.98388918075736,-87.98399662952676,-87.98425661408406,-87.98423377545173,-87.98414947718216,-87.98398710496419,-87.98396342015916,-87.98390176302875,-87.98372457208802,-87.98331713725595,-87.98327831966469,-87.98321692617449,-87.98303285558444,-87.98293308732472,-87.9826941737911,-87.9826094341504,-87.98251749003444,-87.98226433554304,-87.98220277657894,-87.98207265917553,-87.98201083350511,-87.98175760893091,-87.98168058030754,-87.98166507095823,-87.98159588616151,-87.98145809385805,-87.98135043140856,-87.98128091950261,-87.98122762052526,-87.98122734412415,-87.98138067583223,-87.98146501038944,-87.98146504046971,-87.98122622648133,-87.98111110606042,-87.98108800015015,-87.981096008829,-87.9812947825305,-87.98125619907319,-87.98126336739118,-87.98122461931442,-87.98107083209598,-87.98098619891262,-87.98108603804428,-87.98107775377429,-87.98100124321834,-87.980954836736,-87.98090056891483,-87.98093871469847,-87.98110798937221,-87.98134530476564,-87.98139124972917,-87.98139115452076,-87.98134525017815,-87.98122218433802,-87.98105352461297,-87.9806462858852,-87.98021650293263,-87.98009397761362,-87.97987128813813,-87.97957238874167,-87.97929663109689,-87.97928101936066,-87.97935085999059,-87.97962824057815,-87.97991211705738,-87.97995132809974,-87.9799901654991,-87.97996753387295,-87.98006764405,-87.98051358598431,-87.980537042208,-87.98050702608441,-87.98052253353691,-87.98049147396154,-87.98040757008604,-87.98032274163594,-87.97999244823271,-87.97993082101087,-87.97991509376773,-87.98003780726231,-87.98003807816754,-87.98000702324684,-87.97983047596972,-87.9797681922839,-87.97975326606611,-87.97978308989907,-87.97976036039034,-87.97926819493773,-87.97919915435389,-87.97912996782176,-87.97902969798284,-87.9789609864614,-87.97887675678606,-87.97879198693832,-87.97876206347669,-87.97883921484768,-87.9790001295426,-87.979054616054,-87.97910060649569,-87.97935442601363,-87.97956234845532,-87.97968530534349],"lat":[44.59387637255913,44.5941560898974,44.5955442655299,44.59674567680091,44.59742619321715,44.59773327454833,44.59806785576325,44.59865481045829,44.59945582290554,44.59954916299238,44.59961491339208,44.59963675065104,44.59962579194408,44.59959266081093,44.59947195650638,44.59930172401319,44.59897783032073,44.59881310258798,44.59862081675482,44.59849992814829,44.59836247601837,44.59829124202933,44.59819245914672,44.59808263708215,44.59798388287648,44.59780862236173,44.59765507660313,44.59755628058596,44.59738643368912,44.5973039382483,44.59712311175082,44.59705201997252,44.5969805856604,44.59678836814972,44.5959652937902,44.59580594363447,44.59562496701581,44.59474154575665,44.59408310195404,44.59374835814224,44.59343013841568,44.59287069838622,44.59253607922809,44.5923988271072,44.59223409716538,44.59211361054779,44.59139482062032,44.5913179272269,44.59131264560576,44.59161988016869,44.59166943385704,44.59167500942435,44.59166407116848,44.59176846733476,44.59171899743691,44.59159831430119,44.5915270418516,44.59152685714606,44.59154352170265,44.59152710226788,44.59140631190236,44.59134610497074,44.59101122035525,44.59075867087861,44.59062138350322,44.59044611321074,44.59031438716925,44.59025405430043,44.59004545089173,44.589216798181,44.58889849958297,44.58864599343969,44.58835525756054,44.58799863082797,44.58753237821927,44.58724128234362,44.58707121145206,44.58680231714949,44.58668727964444,44.58625363743379,44.58606160336617,44.58574331748293,44.58552920348755,44.58543014323673,44.58536459396436,44.58532608365426,44.58528761853245,44.58531529872614,44.5854799858766,44.58556803537548,44.58565026423248,44.586078444854,44.58647911418645,44.5871432317754,44.58725295068322,44.58787310906057,44.58870709442813,44.58937661450831,44.58956298462765,44.59057813966388,44.5909130781323,44.59147806922544,44.59249311226348,44.59267976445459,44.59325061299595,44.5933712907531,44.59356317384607,44.59368941284539,44.5937059168751,44.5932617606782,44.59308597070024,44.59294896621985,44.59267993841306,44.5925811933954,44.59245489073046,44.59216425349488,44.59193921303331,44.59180194002852,44.59123671872794,44.59100647405221,44.59048518136321,44.59036439892085,44.59013417242554,44.59007388040076,44.59005718863393,44.59007933276997,44.59013972451881,44.5907983439854,44.59143466457502,44.59183531052696,44.59212604234209,44.59223038887883,44.59260876332861,44.59313008888866,44.59387637255913]}],[{"lng":[-87.98613349364042,-87.98552688037948,-87.98528128677482,-87.98423743292599,-87.98408403313081,-87.98399184787354,-87.98399152513036,-87.98403041558065,-87.98533695486402,-87.98662052488821,-87.98702020490103,-87.98760482521244,-87.98842673886529,-87.98883409227034,-87.98976459092502,-87.98997181949697,-87.99006416435201,-87.99034764640142,-87.99054761851987,-87.99062386022389,-87.99069311314184,-87.99066999039559,-87.99060849419106,-87.99040082812179,-87.99016279639484,-87.98947856941304,-87.9894246717284,-87.98933223330151,-87.98927836618215,-87.98921706838055,-87.98894038363419,-87.98870243927469,-87.98848662837882,-87.98808735882558,-87.98750278178098,-87.98737940907299,-87.98725648487876,-87.98711783059113,-87.98704034047141,-87.98687915596412,-87.98678627569265,-87.98657151049552,-87.98647127683267,-87.98613349364042],"lat":[44.59916898013778,44.59931216251987,44.59940010414442,44.6000261959367,44.60015796127239,44.60027308597911,44.60032793737335,44.60041021103201,44.60161682203578,44.60269191067506,44.60297719077283,44.60344887134195,44.60407384000717,44.6043426489986,44.60488005611168,44.60494587863521,44.60494018588069,44.60475894186709,44.60455568666799,44.60444589999253,44.60426481898648,44.6042044915308,44.60416064841405,44.60406190582981,44.60379326719976,44.60321743610884,44.60311324400218,44.60275657835569,44.6026743272318,44.602624859938,44.60258650573186,44.6025209838892,44.60236188993144,44.60195058650254,44.60120433368706,44.6009683723173,44.60062833569847,44.60015101045034,44.59977238438402,44.59937736934032,44.59926207414559,44.59914154024545,44.59912514261387,44.59916898013778]}],[{"lng":[-88.00316712986569,-88.00303633638919,-88.00298301552998,-88.0030671839941,-88.00328262783854,-88.00352838844113,-88.00357415870185,-88.0035511706222,-88.003467010856,-88.00329035300187,-88.00316712986569],"lat":[44.61124284331542,44.6113359284915,44.61148972566856,44.61153902146552,44.61155010584237,44.61143512160114,44.61136361836229,44.61127600449628,44.61122642898577,44.61120983292889,44.61124284331542]}],[{"lng":[-87.99130918388531,-87.99154748503298,-87.99188621473705,-87.99203995974582,-87.99297757578286,-87.99336953598787,-87.99358459470035,-87.99385397001049,-87.99443766154872,-87.99472200886775,-87.99513742226451,-87.99549868814998,-87.99575997916794,-87.99605973496101,-87.9963831767885,-87.99649859456672,-87.99742874362074,-87.99773621961799,-87.99828222081361,-87.99895910195718,-87.99929720837467,-87.99937460955519,-87.99951265417447,-87.99988979619705,-88.00010968379021,-88.00040735615983,-88.00058447281745,-88.00067673077343,-88.00069930028511,-88.00049140152832,-88.00050672390472,-88.00057599492131,-88.00079836240812,-88.00101389980979,-88.00123629580716,-88.00160415956086,-88.00166589155499,-88.00181952605971,-88.00198811088629,-88.00221871210002,-88.00241821570195,-88.00248726086416,-88.00257120128475,-88.00269437300476,-88.00275504301692,-88.00311574472695,-88.00339976925913,-88.00353783298647,-88.00368352029123,-88.0038449242797,-88.00406792483724,-88.00448247134312,-88.00532042649658,-88.00580456880003,-88.00590487936408,-88.00595068987113,-88.00595838105848,-88.00588201393465,-88.00574367876546,-88.00554411362651,-88.00548219335462,-88.00552098313726,-88.00550549610568,-88.00532182122582,-88.00528299803267,-88.00526039851496,-88.00522956887305,-88.00512979432241,-88.00492998244458,-88.00446905469082,-88.00432363554823,-88.00432349092895,-88.00437762725913,-88.00434698966718,-88.00424687872216,-88.0038628408341,-88.0037169765978,-88.00335659448831,-88.00313404040072,-88.00207428429596,-88.00187463361402,-88.00156805038121,-88.00149882517626,-88.00145293841706,-88.00139190122074,-88.0009617865087,-88.00080029648024,-88.00073136760018,-88.00070853920154,-88.00078578521676,-88.00078595569008,-88.00068605679225,-88.00050982899361,-88.00044828672557,-88.00043239564742,-88.00058665758741,-88.00058696357874,-88.00052561463683,-88.0001109295948,-88.00000951868286,-87.99987944512286,-87.99944873847262,-87.99924841978157,-87.9991334364621,-87.99897205891899,-87.99837284551792,-87.99832649874693,-87.99829564452428,-87.99831099618687,-87.99811850562639,-87.99814137610302,-87.9981026494342,-87.99800245407356,-87.99776404351843,-87.99680396756328,-87.99651933808047,-87.99629671329582,-87.99623498510239,-87.99622698108183,-87.99631146526895,-87.9963420135453,-87.99632668589643,-87.99626489575896,-87.99606471963494,-87.99597952057474,-87.99577974878251,-87.99549531365233,-87.99522673975797,-87.99501158697798,-87.99473501124346,-87.99461271219457,-87.99442811770608,-87.99405170453394,-87.99374402798921,-87.99350543868097,-87.99329073061618,-87.99292191338871,-87.99279870524059,-87.99274476563698,-87.99261386471558,-87.99252121533738,-87.99235251259157,-87.99227505084048,-87.99213734393321,-87.99198360756309,-87.99185318176102,-87.99166919572727,-87.99118545797513,-87.99107045581503,-87.99103255514629,-87.99109382019357,-87.99130918388531],"lat":[44.60592733491124,44.60609722619224,44.60641546154572,44.60652507094147,44.60704062725582,44.60739158290695,44.60755065247717,44.6076876141233,44.60812070023489,44.60825764079223,44.60861434347424,44.60882802378617,44.60908580440022,44.60925592316413,44.6095848454123,44.60973287996918,44.61072034379136,44.61103294141746,44.61151008226302,44.61205281403383,44.61229955627932,44.61243116423949,44.61256299231349,44.61295783231213,44.61309194263828,44.61314019460534,44.61318943518976,44.61325547611762,44.61333239348536,44.61349136132475,44.61359572040502,44.61368892316413,44.61384276761486,44.61403503118678,44.61432587701768,44.61457847636181,44.61463892053587,44.61502843014181,44.61516585494487,44.61528664276356,44.6154184194117,44.61549530467257,44.61564334447554,44.61607142795715,44.61620893061655,44.61664791960895,44.61716377656395,44.61729560487786,44.61738901929769,44.61746048520887,44.61750461185274,44.61749920060022,44.61725277362942,44.61705530039382,44.61697856465514,44.61692900231118,44.61681942211174,44.61672609263448,44.61667107078646,44.61663270107923,44.61657760241058,44.61645703090569,44.61638023825782,44.61617700651571,44.61604551079316,44.61583130521797,44.61576549643275,44.61568864240671,44.6156117220901,44.61554571294854,44.61549056554746,44.61540278894118,44.61527122801015,44.6151998015148,44.61515585003293,44.61514491742344,44.61505684192802,44.61456272007908,44.61429916217998,44.61325068562954,44.61314647741226,44.6130364581776,44.6129649128256,44.61271823019733,44.61259169089531,44.61231717875874,44.61217987662422,44.61205376042141,44.6119385783548,44.6115927740798,44.61145014471376,44.61128550740851,44.61116454663548,44.61109876330683,44.61101098985152,44.61080804481253,44.61075318829555,44.61068178209235,44.6104401768533,44.61041139216924,44.61034581574093,44.61006622584394,44.60977547756561,44.60966037235713,44.60958890017096,44.60946867579339,44.60941919595669,44.60933144005232,44.60906810713005,44.60887061432152,44.60850304100779,44.60841515125276,44.60830536396915,44.60820665675063,44.60786150785779,44.60780137418789,44.60772460181156,44.60766443982439,44.60757652516413,44.60731862431236,44.60707159531321,44.60683022811862,44.60658861014887,44.60611134211873,44.60602375736948,44.60594682650002,44.60588134455434,44.60588141063648,44.6059310870271,44.60598052299962,44.60596402700521,44.60590395722817,44.60581069803853,44.60559682419901,44.60550373607193,44.60544904049856,44.60529542044006,44.60519113717293,44.60506499507895,44.60454392662749,44.6043298972866,44.60408302048384,44.60402258085725,44.60397345330981,44.60400085522399,44.60408323772791,44.60430281105238,44.60503841236484,44.60531293344074,44.60552129615466,44.60568610289063,44.60592733491124]}],[{"lng":[-88.00542854110249,-88.00532210628172,-88.00521439824387,-88.00517675628231,-88.00517893266849,-88.00514863655198,-88.00518031333308,-88.00528773100262,-88.00538853727562,-88.00558808382335,-88.00563466384966,-88.0056587931828,-88.00562925027367,-88.00566017641161,-88.00573685917028,-88.00591452497792,-88.00604649104815,-88.00627915477953,-88.00634198784927,-88.00632941432283,-88.00641394140712,-88.00644509395066,-88.0065288244498,-88.00662157118788,-88.00669771823404,-88.00685891890558,-88.00698055366745,-88.0070480725185,-88.00706344939722,-88.00702389364277,-88.00693077677403,-88.00672348447668,-88.00638491042922,-88.00629239972955,-88.00616824334823,-88.00612147202472,-88.00615986909852,-88.00640438391179,-88.00673374041732,-88.00684813080753,-88.0069232258992,-88.00692990180363,-88.00700446125028,-88.00707343305125,-88.00714999769211,-88.00725612663987,-88.00730239155983,-88.00730122930024,-88.00742307964613,-88.00745444585078,-88.00743845336895,-88.00739188355297,-88.00729209447061,-88.00715338385237,-88.00687672292472,-88.00648556273445,-88.00640178875501,-88.00640190750357,-88.00651029639536,-88.00675608060251,-88.00678696842026,-88.00673367760865,-88.00661958793978,-88.00631222386514,-88.00606573469493,-88.00560554106181,-88.00542854110249],"lat":[44.64031383995511,44.64040706900433,44.64056048034539,44.64067010145107,44.64102039132671,44.64128346275378,44.64137094324406,44.64150195022944,44.64157291840681,44.64166023943471,44.64170381489023,44.64187359349487,44.64211473474423,44.64222415026916,44.64235517851832,44.64255211835872,44.64274881836692,44.64329583688095,44.64362411609036,44.64410609018086,44.64421531150271,44.64422626676948,44.64422069723152,44.64418208666905,44.64412180200299,44.64390237332947,44.64348053832091,44.6433269897218,44.64310810046631,44.64302048540865,44.64295499837419,44.6428405346049,44.64269339699496,44.64263326485742,44.6425075982473,44.64235458031946,44.64222302868897,44.6418719878556,44.64159781656633,44.64143326854353,44.64110458742822,44.64086360521178,44.64022827004396,44.6401242574295,44.64007467668016,44.63992123167908,44.63978981694549,44.63957064736203,44.63939525476793,44.6393077482391,44.63917637074318,44.63913251475049,44.63907788688571,44.63907827939607,44.63917191009143,44.63936425815906,44.63946323119638,44.63952878032631,44.63965445953518,44.63970319774816,44.63979066890239,44.63996613028213,44.64007582245721,44.64019142683649,44.6402552020263,44.64023112606165,44.64031383995511]}],[{"lng":[-88.00376000686211,-88.00377606445745,-88.0038221255267,-88.00387629006687,-88.00388413336118,-88.00388184254957,-88.00389787946746,-88.00387479649784,-88.00382059842701,-88.00376000686211],"lat":[44.65095506935784,44.6511303308084,44.65121215779456,44.65119566198384,44.65117385572292,44.65098786451298,44.65091106036456,44.65089461863532,44.65088917046074,44.65095506935784]}],[{"lng":[-87.99322642440211,-87.99327323436503,-87.99333460010992,-87.99336554808363,-87.99343371782302,-87.99343342813034,-87.99337894289424,-87.99327127960534,-87.99322642440211],"lat":[44.6745946503008,44.67465483557203,44.6746817970088,44.67467615005125,44.67464302671171,44.67458281791097,44.67453937895611,44.67452876511992,44.6745946503008]}],[{"lng":[-87.99296473716313,-87.9928880268136,-87.99288132925972,-87.99294295140247,-87.99299758906282,-87.9930817563198,-87.99310364735869,-87.99305700787019,-87.99301795535247,-87.99296473716313],"lat":[44.67456866835032,44.67462077145241,44.67470055411999,44.67476577580319,44.67478192708835,44.67476512266235,44.67463356615874,44.67456832591046,44.67455751019259,44.67456866835032]}],[{"lng":[-87.99392854026789,-87.99386709198735,-87.99384425155363,-87.99386050266283,-87.99389861693346,-87.99396823870497,-87.99415276098014,-87.99419174453467,-87.99418218145239,-87.99409751305915,-87.99401251957372,-87.99392854026789],"lat":[44.67485961902579,44.67490355160569,44.67492565520615,44.6749802362045,44.6750183226624,44.67503445717621,44.67501153578775,44.67497874592254,44.67491302695563,44.67485302299693,44.67484815724236,44.67485961902579]}],[{"lng":[-87.99272249791734,-87.99227155265004,-87.99214136382865,-87.99204215482312,-87.99195263210477,-87.99203109589833,-87.99209226380403,-87.9921460849106,-87.99222248572987,-87.99224928929992,-87.99232033801734,-87.99264803327215,-87.99301478205079,-87.99304547328569,-87.99302232382902,-87.99296058341672,-87.99272249791734],"lat":[44.67423075914034,44.67447912011855,44.6745727580233,44.67468270217386,44.67494585026987,44.67507129641659,44.67510388188974,44.67509807590515,44.67503218429986,44.67489536955478,44.67480181115818,44.67453749997538,44.674284005413,44.67424009667372,44.67417976560704,44.67416377271999,44.67423075914034]}],[{"lng":[-87.99294481255642,-87.99289913803003,-87.99286223341716,-87.99287893832907,-87.99297225036328,-87.99304897652975,-87.99309528818038,-87.99322440124678,-87.9932691936439,-87.99326139611848,-87.9932147997129,-87.99305974387819,-87.99299842055126,-87.99294481255642],"lat":[44.67496302058198,44.67500694790959,44.67511657548706,44.67527215916441,44.67537873672991,44.6753947152683,44.67537808355885,44.67522422135652,44.67511444905643,44.6750434174563,44.67499983687661,44.67494590846498,44.67494060890148,44.67496302058198]}],[{"lng":[-87.99287525902821,-87.99282169288961,-87.99280639252174,-87.99282223496922,-87.99292309504268,-87.99299250367109,-87.99303051317739,-87.9930220505519,-87.99298214659579,-87.99294327864943,-87.99287525902821],"lat":[44.67565272891749,44.67569680011373,44.67575166960663,44.67579526825701,44.67586596660725,44.67586549946233,44.67583803464307,44.67571775990837,44.67566304501622,44.67564688831935,44.67565272891749]}],[{"lng":[-87.98810377183088,-87.9881017155586,-87.9907493998016,-87.9907631508364,-87.99082369224291,-87.99120321317234,-87.99130759711134,-87.99129011269905,-87.99122830880702,-87.99112852566576,-87.99107498636049,-87.99106104081257,-87.9909943562246,-87.99084337546593,-87.99071446570191,-87.99060752062839,-87.99053123915671,-87.99047640539223,-87.9904149805333,-87.99042195480472,-87.99058883581749,-87.99074067706316,-87.9907846583753,-87.99075121175458,-87.99078184550179,-87.99088794000059,-87.99116359663499,-87.99124000619939,-87.99147952868728,-87.9916902515675,-87.99179649375081,-87.99198628093389,-87.99275703057486,-87.99283257859848,-87.99284644413486,-87.99250881362919,-87.99235280109406,-87.99223674150377,-87.99176578813734,-87.99160279689212,-87.99129284742672,-87.99082134301612,-87.990659064239,-87.99042415107046,-87.99037493572931,-87.99037219403181,-87.99043266285372,-87.99043079645041,-87.99035070248206,-87.99020256593523,-87.9898615436129,-87.98913313577197,-87.98890006480802,-87.98863983697518,-87.98854470551292,-87.98852710828483,-87.98844791408688,-87.98837045004107,-87.98833701752011,-87.98824289981138,-87.9880999341221,-87.98784834024487,-87.98767650563207,-87.9873973382571,-87.98697621987284,-87.986615702541,-87.98642881410046,-87.98586243866205,-87.98571464961145,-87.98556041840807,-87.98512922782062,-87.98482140688792,-87.98458151602115,-87.98444903633978,-87.98438768759127,-87.9840190819952,-87.98384103963765,-87.98370239502833,-87.98357056187547,-87.98352389240848,-87.98349133041768,-87.98340561563799,-87.98327438894258,-87.98301978461716,-87.98285705303542,-87.98256308511158,-87.98235422078048,-87.9821226109962,-87.9819986707635,-87.98190507574232,-87.9818180011475,-87.98184685429,-87.98200409724842,-87.98208752295281,-87.98236285517322,-87.98248492243366,-87.98263513654638,-87.98260372225276,-87.98234877337676,-87.98223644399079,-87.98226314127506,-87.98236657652363,-87.98239373476009,-87.98245258009251,-87.98251121456013,-87.98243115199863,-87.98229055636762,-87.98193329570692,-87.98162455497332,-87.98137623107721,-87.98106784820668,-87.98083701223975,-87.98052934817474,-87.98037726674386,-87.98027015486964,-87.98011909257282,-87.97999885891764,-87.97995507146723,-87.9799867797359,-87.9800965908324,-87.98042970271008,-87.9805158098994,-87.98054750905995,-87.98054159501424,-87.98047370748158,-87.98024425920713,-87.98012110191365,-87.97972273121886,-87.97934061599112,-87.97922471994013,-87.97915528127568,-87.97916723388248,-87.97908784147127,-87.9789314002159,-87.97886963082171,-87.97876137751733,-87.97859246354147,-87.97851626209707,-87.97848638397944,-87.97847244162665,-87.97856829817719,-87.97860093137898,-87.97877485288166,-87.97913163613474,-87.97934964472419,-87.97937430380031,-87.97933932631689,-87.97941757109875,-87.97971377922042,-87.97980788160378,-87.97995118678172,-87.98012260919589,-87.98033020830076,-87.98109932376438,-87.98133314275465,-87.98149673585468,-87.98180158838541,-87.98235463789027,-87.98264293584025,-87.9828540565054,-87.98305796754101,-87.98337621009509,-87.98381543684991,-87.98394668518135,-87.98426859785748,-87.98445505363095,-87.98455704366998,-87.98482967296195,-87.98501081995106,-87.98520680354879,-87.98549514220372,-87.98588651893675,-87.98610377740923,-87.98629980104613,-87.98672016207129,-87.98679756932704,-87.98718518091357,-87.98738812310199,-87.98758347632004,-87.98776245046999,-87.98801859472981,-87.9880117821411,-87.98792688924766,-87.98754310268613,-87.98748184083932,-87.98743619084648,-87.98745299910044,-87.98751551629046,-87.98763874091473,-87.98806819666591,-87.98822839034217,-87.98852801469931,-87.98871189879937,-87.98885857839288,-87.98888959353955,-87.98880571025835,-87.98859047227742,-87.98840684201701,-87.98818607767477,-87.98794986044086,-87.98781215719438,-87.98775165469424,-87.98759647902044,-87.98741893725511,-87.98728042130327,-87.9871490624259,-87.9869031968521,-87.98679663545704,-87.98676684304695,-87.98681525446388,-87.98700344037147,-87.98703517224845,-87.98724011075377,-87.98745918087994,-87.98784160593553,-87.98791204365853,-87.98793432265371,-87.9878904873338,-87.98789149955589,-87.98792316739575,-87.98790925046777,-87.98803759459842,-87.98803857700844,-87.98810377183088],"lat":[44.67767923204723,44.67768862474447,44.67764702718573,44.67755671142503,44.67742499134942,44.67698521061065,44.67663454657121,44.67641030593098,44.67635042194119,44.67633994474069,44.67640595585467,44.67658125936701,44.67682230112288,44.67712938393095,44.67729984911492,44.67738236465904,44.67739902705284,44.677388496772,44.67731764615294,44.67722999568954,44.67701040732589,44.67674694457153,44.67661521751415,44.67639660414403,44.67630880292538,44.67618238986664,44.67605529942523,44.67598912599336,44.67528749501468,44.67484868148536,44.67469497533792,44.6744968898274,44.6738473618755,44.67373756578265,44.6735186583992,44.67279224904181,44.67262915029688,44.67254215331599,44.67232006093909,44.672222108542,44.67195023847552,44.67174445321594,44.67160318578478,44.67112248742777,44.67090387519292,44.67061828281986,44.67046574332725,44.6702687870101,44.66996270155131,44.66977751550078,44.66953829207006,44.66889613968956,44.66859073510625,44.66804488628317,44.66769520827742,44.66752019824101,44.66727967819678,44.66714861959481,44.66693000666815,44.66673338735714,44.66628525395683,44.66569538352497,44.66546645074366,44.66517232537606,44.66458340550557,44.66390664880451,44.66361190361593,44.6630291321404,44.66292581133645,44.66287189145258,44.66282489412082,44.6627440651523,44.66261407855247,44.66245588776282,44.66242892180271,44.66244154348368,44.66241504758096,44.66236646079111,44.66225779336227,44.66214866003289,44.6619736631464,44.66185371392117,44.66175039802641,44.66165840563236,44.66157704615714,44.66139264734785,44.66130033662468,44.66115923624658,44.66105042566769,44.66093061622276,44.66066828889927,44.66042742258349,44.66007629281769,44.65996664468236,44.65977908597902,44.65966899229771,44.65938385501575,44.65917596060167,44.65836715035618,44.65778760579964,44.65740434702852,44.6569223000098,44.65659390895922,44.65637467389149,44.6560023906359,44.65567435857826,44.65547804080094,44.65509671670088,44.65488476656606,44.65474899955637,44.65466308644621,44.65463677609948,44.65464371238179,44.65471023002201,44.6547983570503,44.65503987534008,44.65534692778356,44.65563169775753,44.65576279395517,44.65593746595043,44.65624212717314,44.65637305857715,44.65650443891729,44.65665202720226,44.65674563627011,44.65688336354426,44.6569112877408,44.657055589003,44.65727641917504,44.65727689703922,44.65723347340238,44.65686683310032,44.65658804096891,44.65632617496921,44.65626628290044,44.65622835974956,44.65623465210206,44.65629519408844,44.6563610568136,44.65655801584065,44.65692993741904,44.65717048639392,44.65754181872349,44.65786856651739,44.65817372188353,44.65834886403618,44.65874294172195,44.65889596258293,44.65931025107869,44.65952881343382,44.6599876599902,44.66024979559117,44.66103667445418,44.66190859868785,44.66223597486216,44.66251963300947,44.66289018199937,44.66371945312503,44.6640902707018,44.66452696294912,44.66487602754313,44.66522486541772,44.66585913317083,44.66607581926675,44.6667966304928,44.66705846311171,44.66725494125469,44.66766936135385,44.66808441639113,44.66839002053175,44.66876082711499,44.66950311821358,44.66978658563568,44.67011412760584,44.67070304160084,44.67079020812246,44.67107274158243,44.67126902385899,44.67166182188485,44.67191282254741,44.67207572290106,44.67213580899816,44.67219648355068,44.67225864151535,44.67229722975634,44.6723631011012,44.67253809726571,44.672554393734,44.67254812410292,44.67244231751358,44.67237030956781,44.67232495052288,44.67227473915272,44.67227422988184,44.67231219114194,44.67238920303612,44.67243408263156,44.67252255381733,44.67270434244998,44.67296799744422,44.67305081019488,44.67306746863844,44.67306276638382,44.6729980226947,44.67292215688849,44.67289002231326,44.67288568708226,44.67295723421567,44.6730889273768,44.67330752995204,44.67365687686348,44.67378796812634,44.67426842926129,44.67470524883905,44.67520683654281,44.67538165691971,44.67608197924295,44.67632315019578,44.67647620469242,44.67656369237814,44.67676065483717,44.67717618588658,44.67730729835313,44.67767923204723]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":false,"fillColor":"black","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addCircleMarkers","args":[[43.98900748135952,46.55844473979167,45.4589484493627,46.69084880866667,44.50096284985563,44.4350945855,45.80865581416667,44.18970537307372,44.96826315481891,44.8729077068578,43.52106903113577,43.06914154928095,43.07340684390952,43.45517643506264,45.00761562397381,46.69576089513035,44.89734005576247,44.79969964535016,45.8834947265,43.77607870351175,45.562469207,42.81719415866836,42.62084966269533,43.94315326516428,42.97032956090278,46.35952611516667,44.2979360545,43.07106800338879,43.80624365888571,42.57881401621728,44.52761108715,43.82951031282764,42.66420461083334,45.15794319808809,45.25018268368571,44.0975877161197,44.93202714626087,45.12101699264387,43.76815110804166,43.04395183642145,43.9629218223103,44.87763072038095,45.73532648302347,44.27881403666476,43.30478917698814,null,44.81147272405816,45.37839468774285,44.50303371229584,45.67564272771666,42.72608012751141,43.32693385006667,42.62894922339308,45.462737174,43.51470922280277,45.93779149348333,44.79253133874161,43.75069917158159,45.00215893686346,45.12261120936111,44.29494683239584,43.58674828132143,45.98583284130952,42.65983785564558,45.80476336572222,43.36385343996425,43.04329630300704,44.41791827699196,44.11863068647619,44.10088868134103,44.47819201110897],[-89.806500955,-90.84983053777778,-91.78642658875283,-90.91131645466666,-88.03435158788341,-91.77986896500001,-92.35746057833333,-88.30078089880017,-91.35884343932257,-90.49689918815801,-89.44407260617987,-91.09707951828571,-89.39641365253408,-88.76418169128212,-87.26463580580953,-92.07790771446163,-91.92231974561122,-91.48089868865222,-88.2368091,-88.48443913903169,-88.67403520000001,-90.56948577075981,-89.59623120984364,-88.97908052373809,-90.15325755527778,-90.15398509333333,-90.87052050050001,-88.79036388450531,-90.06127213494048,-87.87177058223173,-87.50066537683334,-91.23255242492129,-90.17085783833333,-89.14380061811904,-89.6870327478492,-87.67683638503479,-89.65871260620045,-87.69063595970604,-89.44066606875001,-87.95361903413595,-90.66723798878964,-88.00615659338095,-89.49906833451531,-88.39774035204833,-87.94696386368317,null,-92.58590763019387,-92.50278598511905,-89.54494422026062,-90.42130272116667,-87.85894420762395,-90.36895684214286,-89.02662711239762,-91.09707131357143,-89.81357749196178,-91.38306816583334,-88.64874342240533,-87.76386411456637,-92.63626017770115,-90.38151755566666,-91.40309462791667,-90.78983753869048,-89.61694085733333,-88.55465264628508,-91.90011346277778,-88.21006607167544,-88.23693213463764,-88.95707446647754,-89.27165254857142,-88.52031221571146,-89.95117668678891],[1.0613,0.8019500000000001,2.34215,0.8304,13.5018,0.66955,0.8518,2.6359,3.34035,1.73455,2.90965,0.80035,28.41015,4.4141,1.5263,2.2072,2.28255,5.34185,0.2344,5.1918,0.46905,2.5638,1.8408,0.961,1.19325,0.3112,1.0418,4.2892,1.3433,8.39085,1.03115,6.0147,0.84385,0.97795,1.4188,4.0586,6.8979,2.0994,0.78895,45.93305,2.30545,1.98165,1.9106,9.606350000000001,4.65045,0.3705,2.1266,2.28545,3.5359,0.70895,9.792299999999999,0.8545,8.202999999999999,0.7093,3.28885,0.9279500000000001,2.0443,5.89205,4.80085,0.99875,1.54495,1.553,1.18815,5.269,0.84555,6.8844,20.5217,2.5744,1.24995,8.5359,3.69965],null,"Counties",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":["#FFEB9B","#FFEDA0","#FFEC9E","#FFF6B6","#FEBA55","#FFF5B4","#FFFAC0","#FFE58F","#FFEFA4","#FFF5B5","#FED470","#FFE186","#FD863A","#FFEA99","#FEDC7D","#FFC965","#FED773","#FEB04B","#FFDF82","#FD8B3B","#FFF6B7","#FFF1A9","#FFE691","#FFEA9A","#FFFABF","#FFCC68","#FFEFA4","#FEDB7A","#FFE590","#FD7634","#FFF2AD","#FB4C29","#FFFCC5","#FFE38A","#FFE58F","#FEB751","#FFC45F","#FED875","#FFF2AD","#800026","#FEDD7F","#FFFFCC","#FFE188","#FEAE4A","#FEDC7C","#FFF0A9","#FFEDA0","#FFF8BA","#FECF6C","#FFE794","#FD7F37","#FFF1A9","#FEA345","#FFE288","#FD863A","#FFE896","#FFE895","#FEB751","#FFEEA2","#FFE48D","#FFF5B4","#FFF9BE","#FFF0A7","#FED06C","#FFFAC0","#FEDA79","#FEDC7C","#FFEA9A","#FFF8BC","#FD8138","#FED875"],"fillOpacity":0.7},null,null,null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#FFFFCC , #FFF8BA 5.04802389538879%, #FFE289 19.4220764794904%, #FFBE59 33.7961290635921%, #FD933E 48.1701816476937%, #FC4E2A 62.5442342317954%, #DD171E 76.918286815897%, #AA0026 91.2923393999987%, #800026 "],"labels":["10","20","30","40","50","60","70"],"na_color":null,"na_label":"NA","opacity":0.5,"position":"bottomleft","type":"numeric","title":"Mean Crashes/Year in County<\/br>(per 100,000 residents)","extra":{"p_1":0.05048023895388788,"p_n":0.9129233939999866},"layerId":null,"className":"info legend","group":"Counties"}]},{"method":"setGroupOptions","args":["Counties",{"zoomLevels":[1,2,3,4,5,6,7,8,9]}]}],"limits":{"lat":[42.49196631144915,47.08077476428614],"lng":[-92.8892413256408,-86.80479844797887]}},"evals":[],"jsHooks":[]}</script>
|
|
<script type="application/htmlwidget-sizing" data-for="htmlwidget-d7d4bc1916f5e161f5fe">{"viewer":{"width":"100%","height":400,"padding":0,"fill":true},"browser":{"width":"100%","height":400,"padding":0,"fill":true}}</script>
|
|
</body>
|
|
</html>
|