Skip to content

Instantly share code, notes, and snippets.

@mryhryki
Last active January 11, 2022 02:24
Show Gist options
  • Save mryhryki/27ab3502a4da93841de6f2e1443b0338 to your computer and use it in GitHub Desktop.
Save mryhryki/27ab3502a4da93841de6f2e1443b0338 to your computer and use it in GitHub Desktop.
Progate 道場コース Quest ドローンメールの回答ソースコード
node_modules
index.js
import { evalRoutes, initRoute, NodeType, replacePoints, Route } from "./lib_route.ts";
import { getMinDistancePoint } from "./lib_calc.ts";
import { moveElementInArray, random, randomInt } from "./lib_misc.ts";
const NEIGHBOUR = (route: Route): Route => {
const srcPointIndex = randomInt(route.points.length)
const destPointIndex = getMinDistancePoint(route.points[srcPointIndex], route)
const nextPoints = moveElementInArray(route.points, srcPointIndex, destPointIndex);
return replacePoints(route, nextPoints);
};
const PROBABILITY = (e1: number, e2: number, t: number) => {
if (e1 >= e2) {
return 1;
} else {
return Math.E * ((e1 - e2) / t);
}
};
const TEMPERATURE = (r: number): number => 0.8 ** r;
const simulatedAnnealing = (startRoute: Readonly<Route>, maxIter: Readonly<number>, goalDistance: Readonly<number>): Route => {
let route: Route = startRoute;
let bestRoute = route;
for (let iter = 0; iter < maxIter; iter++) {
const nextRoute: Route = NEIGHBOUR(route);
evalRoutes(nextRoute);
if (nextRoute.totalDistance < bestRoute.totalDistance) {
bestRoute = nextRoute;
if (bestRoute.totalDistance <= goalDistance) {
return bestRoute;
}
}
if (random() <= PROBABILITY(route.totalDistance, nextRoute.totalDistance, TEMPERATURE(iter / maxIter))) {
route = nextRoute;
}
}
return bestRoute;
};
export const start = (nodes: NodeType[]): void => {
const GoalDistance = 260;
const route = initRoute(nodes);
let bestRoute = route;
evalRoutes(route);
while (bestRoute.totalDistance >= GoalDistance) {
bestRoute = simulatedAnnealing(route, 1000000, GoalDistance);
evalRoutes(bestRoute);
}
};
import { NodeType, Point, PointWithDistance, Route } from "./lib_route.ts";
import { random, randomInt } from "./lib_misc.ts";
export const calcDistance = (nodeA: NodeType, nodeB: NodeType) => {
const [x, y] = nodeA;
const [u, v] = nodeB;
return Math.sqrt((x - u) * (x - u) + (y - v) * (y - v));
};
export const getInitRoutes = (route: Readonly<Route>): Point[] => {
const { points } = route;
// ランダムに再配置し直す
const indexes = Array.from({ length: points.length }).map((_, index) => ({ index, random: random() }));
indexes.sort((a, b) => a.random - b.random);
return indexes.map(({ index }) => points[index]);
};
export const getTargetPoint = (route: Route): [/* index:*/ number, PointWithDistance] => {
// 各ポイント間の距離を出して、その合計値の範囲内の乱数を生成して、そこに合致する地点を入れ替え対象として抽出する
const total = route.points.reduce((total, point) => total + point.distance, 0);
const randomDistance = random() * total;
let current = 0;
const index = route.points.findIndex((point) => {
if (current < randomDistance && randomDistance <= (current + point.distance)) {
return true;
}
current += point.distance;
return false;
});
if (index < 1 || route.points[index] == null) {
throw new Error(`Out of array range: ${index}`);
}
return [index, route.points[index]];
};
export const getMinDistancePoint = (srcPoint: PointWithDistance, route: Route): /* index: */number => {
const { ignoreIds } = srcPoint;
const candidatePoints = route.points.filter((point) => !ignoreIds.includes(point.id));
const minDistancePoint = getSortedPointWithDistances(srcPoint, candidatePoints)[randomInt(1)];
ignoreIds.push(minDistancePoint.id); // ※破壊的変更
const index = route.points.findIndex((point) => point.id === minDistancePoint.id);
if (index < 0) {
throw new Error(`Point not found: ${minDistancePoint.id}`);
}
return index;
};
export const getSortedPointWithDistances = <T extends Point>(base: T, points: T[]): PointWithDistance[] => {
const pointWithDistances: PointWithDistance[] = points.map((point): PointWithDistance => {
const distance = calcDistance(base.node, point.node);
return { ...point, distance };
});
pointWithDistances.sort((p1, p2) => p1.distance - p2.distance);
return pointWithDistances;
};
export const random = Math.random
export const randomInt = (range: number): number => Math.floor(random() * range);
export const moveElementInArray = <T>(arr: T[], src: number, dest: number): T[] => {
if (arr[src] == null) {
throw new Error(`Out of array range: ${src}(src) / ${arr.length}`);
} else if (arr[dest] == null) {
throw new Error(`Out of array range: ${dest}(dest) / ${arr.length}`);
}
const newArr: T[] = [];
arr.forEach((el, index) => {
if (index === dest) {
newArr.push(arr[src]);
}
if (index !== src) {
newArr.push(el);
}
});
return newArr;
};
import { calcDistance } from "./lib_calc.ts";
import { random } from "./lib_misc.ts";
export type NodeType = [number, number]
export interface Point {
node: NodeType;
id: number;
ignoreIds: number[];
}
export interface PointWithDistance extends Point {
distance: number;
}
export interface Route {
start: Point;
points: PointWithDistance[];
end: PointWithDistance;
totalDistance: number;
}
export const evalRoutes = (route: Route): void => {
// @ts-ignore
if (typeof updateGraph === "function") {
// @ts-ignore
updateGraph(convRouteToIndexes(route));
} else {
console.log(`${route.totalDistance} km`);
}
};
export const initRoute = (_nodes: NodeType[]): Readonly<Route> => {
const [startNode, ...remainNodes] = _nodes;
const start: Point = { node: startNode, id: 0, ignoreIds: [0] };
const indexes = Array.from({ length: remainNodes.length }).map((_, index) => ({ index, random: random() }));
indexes.sort((a, b) => a.random - b.random);
let totalDistance: number = 0;
const points: PointWithDistance[] = indexes.map(({ index }, i) => {
const node = remainNodes[index];
const distance = calcDistance(index === 0 ? startNode : remainNodes[index - 1], node);
totalDistance += distance;
return { id: i + 1, node, ignoreIds: [i + 1], distance };
});
const end: PointWithDistance = { ...start, distance: calcDistance(remainNodes[remainNodes.length - 1], startNode) };
totalDistance += end.distance;
return { start, points, end, totalDistance };
};
export const replacePoints = (route: Readonly<Route>, points: Point[]): Readonly<Route> => {
if (route.points.length !== points.length) {
throw new Error(`Unmatch points length: ${route.points.length} !== ${points.length}`);
}
let totalDistance: number = 0;
const pointWithDistances: PointWithDistance[] = points.map((point, index) => {
const distance = calcDistance(index === 0 ? route.start.node : points[index - 1].node, point.node);
totalDistance += distance;
return { ...point, distance };
});
const end: PointWithDistance = {
...route.start,
distance: calcDistance(points[points.length - 1].node, route.end.node),
};
totalDistance += end.distance;
return { ...route, points: pointWithDistances, totalDistance };
};
export const convRouteToIndexes = (route: Readonly<Route>): number[] => [
route.start.id,
...route.points.map((point) => point.id),
route.end.id,
];
{
"name": "progate-quest-dojo-2",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"esbuild": "^0.12.18"
}
},
"node_modules/esbuild": {
"version": "0.12.18",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.12.18.tgz",
"integrity": "sha512-arWhBQSy+oiBAp8VRRCFvAU+3jyf0gGacABLO3haMHboXCDjzq4WUqyQklst2XRuFS8MXgap+9uvODqj9Iygpg==",
"hasInstallScript": true,
"bin": {
"esbuild": "bin/esbuild"
}
}
},
"dependencies": {
"esbuild": {
"version": "0.12.18",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.12.18.tgz",
"integrity": "sha512-arWhBQSy+oiBAp8VRRCFvAU+3jyf0gGacABLO3haMHboXCDjzq4WUqyQklst2XRuFS8MXgap+9uvODqj9Iygpg=="
}
}
}
{
"name": "progate-quest-dojo-2",
"version": "0.0.1",
"private": true,
"author": "mryhryki",
"license": "MIT",
"scripts": {
"build": "esbuild index.ts --bundle --outfile=index.js && cat index.js | grep -Ev '^\\(\\(\\) => \\{$' | grep -Ev '^\\}\\)\\(\\);' | pbcopy",
"test": "deno run test.ts"
},
"dependencies": {
"esbuild": "^0.12.18"
}
}
import { start } from "./index.ts";
const data: [number, number][] = [[139.7025094214385,35.66392284066758],[138.422123,36.326878],[140.304015,40.276743],[135.282056,34.124785],[136.692448,35.066637],[139.414615,35.501027],[136.876174,35.154072],[130.462263,33.63918],[141.918184,43.932879],[136.07617,34.59151],[139.893762,39.002885],[130.3837,33.200967],[140.891265,37.853777],[133.569363,35.177164],[143.571268,43.293784],[144.111014,43.816714],[134.025012,34.349399],[142.437248,43.702455],[140.1345,35.653386],[138.813471,36.923889],[130.862296,33.489634],[141.246917,39.537107],[140.576021,36.48142],[142.345097,44.110272],[140.827179,42.780715],[134.228615,35.508259],[134.519306,33.922271],[134.040277,33.42695],[137.746827,34.708039],[140.678713,37.59049],[140.458626,36.45705],[138.324829,36.874538],[141.75258,39.057747],[137.546506,35.848492],[136.247967,36.231086],[131.061928,31.931928],[138.891767,35.424642],[134.043694,33.923684],[142.047411,43.722666],[136.764894,35.366834],[136.639668,35.458007],[142.834114,43.083333],[138.924892,35.787144],[137.256988,36.142345],[135.55148,34.680418],[135.733443,34.553246],[130.690471,31.98132],[136.250015,35.192316],[130.880994,32.613331],[134.382226,34.019749],[134.488069,35.50128],[142.020838,43.520879],[133.865767,33.995865],[140.375282,38.5943],[138.446402,36.046104],[130.434709,33.309483],[140.716562,41.757089],[139.662758,35.976364],[140.382435,35.859044],[140.972985,39.158154],[140.001914,35.673642],[137.764185,35.372441],[131.504216,32.277334],[139.407513,35.969142],[139.22574,37.918613],[132.444904,34.396743],[136.250601,35.212319],[131.034985,30.631215],[128.264275,26.709047],[140.290347,38.760851],[138.806344,36.528963],[135.737293,34.579559],[130.452364,32.916202],[137.91966,36.426035],[139.998081,36.032863],[132.722066,34.712147],[140.283705,38.33767],[139.84175,36.757923],[135.708455,34.594445],[129.272936,28.31852],[134.802114,34.750163],[138.415928,36.732142],[135.93971,34.029912],[136.277104,34.221556],[135.582075,34.71437],[131.186295,33.611226],[130.812582,33.46975],[140.877432,38.16315],[142.503693,43.829383],[134.430267,33.975981],[136.911144,34.934537],[132.767689,33.249501],[141.367222,40.649433],[132.487153,34.396257],[141.666528,44.000511],[140.721275,36.714995],[131.790262,34.576783],[141.133531,40.864448],[137.052583,35.088972],[135.157719,34.670509],[138.252921,34.793425],[136.119941,34.990005],[130.410958,33.168448],[130.862504,32.735828],[134.180629,34.039306],[139.213502,34.326527],[133.74785,34.258192],[141.212019,41.267566],[137.096648,35.078401],[139.119715,35.336532],[136.887375,36.658977],[139.359624,35.743657],[131.35203,32.744367],[134.351301,35.574484],[131.634475,33.720411],[146.003754,43.367617],[141.822185,44.93981],[136.108446,33.988403],[138.942141,35.472019],[134.489602,34.784897],[140.771564,37.67633],[142.359884,43.352004],[135.421682,34.839347],[137.849888,36.652257],[139.92474,35.898702],[139.052581,37.925918],[135.700915,34.667971],[138.575798,36.627368],[131.852412,33.07498],[139.370693,35.320696],[139.669449,35.559237],[138.362507,34.935385],[137.994064,36.649573],[130.617091,33.855015],[136.669667,35.228767],[134.32365,35.151143],[124.011919,24.237087],[139.691599,35.651328],[131.04874,31.533325],[133.85252,34.307609],[130.975388,33.754071],[143.605816,42.740969],[137.385277,35.652923],[140.034989,42.319471],[135.720024,34.559949],[132.215624,34.191974],[139.517168,36.222711],[129.709246,28.455927],[133.870164,34.215648],[132.440467,34.556528],[133.595496,33.977056],[130.456278,33.544607],[135.676083,34.937151],[142.416811,44.339032],[130.538246,33.313495],[142.848802,44.536152],[133.424796,33.549842],[139.2619,36.380676],[141.001775,37.589291],[132.92719,33.382026],[140.009996,35.785893],[140.632257,35.852291],[130.521948,33.683109],[133.729449,35.461787],[139.11947,36.217404],[138.620758,35.5253],[132.456472,34.470808],[140.179881,40.765644],[140.058927,36.841663],[137.082972,35.589429],[140.768765,35.741354],[141.248806,40.753548],[141.01314,38.329819],[140.384586,38.478148],[136.988176,35.446007],[135.909444,35.525772],[132.305406,34.192656],[142.299488,44.808344],[127.763168,26.365072],[140.429039,42.66462],[128.893582,27.835118],[141.777466,40.201584],[130.669891,33.832125],[130.513972,33.371616],[130.324091,32.113828],[138.287712,36.762996],[140.155211,38.291252],[140.602483,40.66294],[141.189104,38.675532],[136.920663,35.482293],[136.880159,34.74581],[140.949843,38.586634],[133.938305,34.649358],[137.395775,35.298233],[130.347052,33.290315],[140.356934,35.484474],[139.081551,35.996353],[136.772127,36.878001],[132.865658,34.215049],[130.908085,30.475122],[138.483474,35.492897],[140.919017,42.787224],[134.372976,34.920223],[134.259397,34.239052],[139.573051,35.835372],[136.658055,35.325597],[139.327472,36.049389],[136.144305,34.543335],[132.461707,33.322711],[132.95312,35.496685],[139.614145,35.837422],[138.874127,36.579994],[133.109112,36.096967],[140.122835,39.949749],[143.344835,44.340211],[140.788622,37.42509],[133.320986,36.235391],[137.207233,36.685821],[136.816885,35.295331],[139.605794,35.931542],[127.864071,26.641602],[140.294263,35.524232],[139.579606,35.352083],[139.581402,38.045989],[133.233527,35.546713],[136.90083,35.321759],[135.491262,34.653268],[137.652694,35.337489],[135.764009,35.002973],[133.248594,33.565255],[140.472821,43.123519],[136.597244,35.395512],[139.612725,37.559128],[135.581148,34.555917],[140.121055,35.849624],[138.977312,35.760808],[127.962329,26.603581],[140.577828,35.742174],[138.858599,35.097243],[140.091029,35.657353],[135.35537,33.870837],[140.357052,41.522293],[139.49908,35.40877],[140.029723,41.706035],[142.227726,43.509189],[141.021876,39.700293],[140.531597,36.386856],[140.383354,41.614634],[130.657722,32.60065],[134.559551,33.86792],[139.442378,35.420321],[139.871828,39.981958],[140.369669,38.327216],[132.367932,34.364137],[138.313381,36.678538],[135.665295,34.33191],[139.932719,36.207032],[134.347762,35.278365],[139.176233,35.340438],[141.39018,43.157077],[142.522021,43.61762],[135.448031,34.81025],[139.245219,37.993366],[135.247407,34.721931],[138.028501,34.770586],[134.121371,34.223289],[137.545975,36.95944],[141.44523,38.634149],[140.983018,37.762506],[139.65612,35.724688],[138.678192,35.156038],[138.635975,35.656051],[141.225631,40.007751],[133.070774,36.127093],[140.03869,40.396356],[135.683899,35.44583],[136.927492,35.32358],[136.635087,36.634066],[140.418005,38.915961],[138.870388,35.461574],[138.992411,37.901984],[141.006357,41.477571],[142.843144,44.383986],[135.766298,34.60571],[139.574252,35.626625],[139.939905,35.906563],[139.647996,35.891587],[137.312101,36.313326],[139.749607,35.735037],[132.539873,34.367164],[140.984787,42.700184],[137.021349,36.731428],[138.196342,35.968757],[140.450515,36.627376],[135.485147,34.723323],[135.756239,34.512724],[131.137299,33.298901],[136.45838,34.419273],[141.292302,40.443165],[140.871837,38.365783],[139.646391,36.224293],[129.99467,33.057929],[144.020358,43.707604],[130.516567,33.244761],[139.628053,35.172833],[140.175366,38.057612],[135.522732,34.63765],[137.040964,35.017972],[141.004925,43.191426],[139.942822,36.37427],[137.968361,35.641711],[134.979768,34.805688],[139.692584,35.864719],[142.781584,44.099007],[140.499123,37.507708],[139.497123,35.585701],[133.937632,34.218657],[139.8286,34.92409],[135.78734,34.571394],[134.742594,35.089036],[127.789516,26.31292],[136.694116,35.440742],[127.751229,26.204724],[135.969532,34.461962],[140.259364,38.852976],[140.743053,40.805836],[130.762115,33.693175],[140.576616,39.593981],[130.974406,31.990233],[139.863958,35.7951],[130.004388,32.828584],[130.479575,33.576877],[139.377229,34.716898],[136.982184,37.220726],[139.482747,35.749897],[133.602776,33.754753],[139.725046,36.034694],[133.08025,33.691462],[138.285921,36.383098],[139.378443,36.04305],[141.746593,45.191458],[127.277528,26.199931],[135.147928,33.892798],[142.117871,44.588796],[135.530623,34.629301],[140.011609,35.963058],[136.967846,35.101565],[131.43508,32.064979],[136.841037,35.164506],[131.017801,33.655445],[130.598186,33.369491],[139.506229,35.569834],[141.031708,45.334026],[139.709361,35.668183],[140.173106,36.19809],[133.27296,33.539845],[130.462569,32.983817],[138.26158,36.814679],[137.60396,35.565104],[141.973009,43.521098],[133.56142,34.523398],[140.854674,38.099098],[139.560506,35.832518],[128.604713,27.373161],[140.019083,40.200323],[138.373845,35.334011],[137.928528,34.850219],[130.614762,31.717551],[129.872254,32.830664],[138.12647,36.357748],[136.967674,35.102446],[141.6523,43.33741],[139.883748,37.177516],[136.818404,37.380985],[136.206748,35.758799],[143.756101,43.797478],[130.577607,32.965376],[139.055763,37.794141],[139.556512,35.636327],[136.596001,36.339795],[133.724609,33.544494],[130.48004,33.70597],[130.509463,33.570628],[131.079669,32.256599],[130.875462,33.630572],[136.612654,36.510221],[136.060356,34.636602],[131.00532,31.451036],[130.549345,33.207555],[136.026113,34.967197],[130.359852,31.264994],[140.400144,35.536009],[136.129175,35.064769],[138.728018,35.663177],[138.248834,34.856244],[135.973301,35.003221],[133.76021,34.92778],[140.163267,36.652605],[141.684085,43.012112],[138.588399,35.25145],[131.042301,32.708193],[137.066661,36.676826],[131.105541,33.586274],[135.810728,34.538034],[136.696116,36.729045],[139.181177,36.192154],[133.829528,33.521629],[139.630813,35.58722],[135.275194,34.373508],[134.623592,34.835323],[140.407295,36.206582],[132.82285,34.754748],[136.990806,36.651684],[137.870628,36.52463],[139.565958,35.998701],[136.146607,35.994514],[140.364453,38.652203],[140.084767,37.691697],[134.481044,33.76781],[137.453526,36.846294],[134.513515,35.006191],[140.307087,35.878199],[137.484518,36.919168],[135.277854,35.693536],[136.995211,35.182575],[129.846164,32.830465],[139.997738,37.582137],[131.074236,33.07748],[139.496259,35.753699],[135.802425,34.18744],[134.854839,34.760633],[130.649554,30.305076],[140.83817,38.234756],[139.055732,37.662893],[141.509963,39.978636],[140.111405,40.709276],[135.959182,35.60087],[139.911701,36.646869],[135.615964,34.447272],[139.161497,35.728232],[142.51172,44.937051],[142.299988,44.496039],[139.725347,36.059288],[132.966444,34.067445],[140.289637,35.716486],[140.145923,39.410605],[139.883273,37.601145],[139.499524,35.776137],[140.59018,36.321332],[140.369404,37.007157],[144.508278,43.73335],[131.147191,33.574508],[139.804232,35.694484],[134.364223,33.872923],[140.400154,35.72341],[135.999997,35.134833],[131.580851,33.371114],[135.191324,34.33191],[140.99448,37.453655],[130.441148,33.555004],[132.777218,35.326217],[130.796072,32.445803],[130.514998,32.653843],[136.907747,35.293168],[141.482606,43.022577],[130.145407,33.043948],[135.541277,34.553927],[139.286786,36.102683],[140.11868,37.906318],[140.920337,41.527021],[139.08109,37.939391],[133.997723,33.427408],[130.272309,31.777885],[136.924819,35.112686],[134.165637,35.110161],[129.716102,33.17673],[135.624851,34.706958],[139.915821,37.480625],[139.312461,35.854403],[135.355173,34.819586],[140.246258,35.829739],[139.651527,37.258967],[139.352386,35.415655],[136.778056,36.791269],[142.641838,44.304509],[129.876992,33.275762],[143.40831,42.980849],[137.781322,34.716112],[135.491823,34.680784],[140.498964,37.213402],[135.5542,34.755747],[131.550912,34.558442],[132.532018,33.512059],[132.102583,33.955286],[139.591687,35.588048],[134.119141,35.262959],[141.047071,42.553098],[135.70433,34.521843],[133.89937,34.669495],[141.560188,39.31283],[140.648624,42.69484],[142.36052,42.643478],[130.38477,31.608085],[139.415127,35.947686],[136.906528,36.974945],[140.075614,36.560043],[133.580268,35.513983],[135.766657,34.733534],[139.443556,35.98748],[140.092925,35.771972],[132.928533,34.365902],[127.695944,26.260212],[132.674258,33.308399],[127.791972,26.160656],[139.559665,35.415704],[136.925584,35.194027],[138.373788,36.792838],[135.110788,35.513364],[137.264129,37.438626],[131.267438,32.004463],[137.502359,35.022327],[140.400361,43.172175],[135.505126,34.514668],[130.719609,33.543253],[130.405565,33.362343],[136.92985,35.155586],[135.742306,34.854126],[138.912865,35.585062],[136.605349,34.513313],[141.635256,43.206845],[132.397361,33.398859],[141.511275,40.50908],[139.901215,35.024192],[136.37912,35.90194],[138.243006,37.170515],[139.965744,39.998211],[129.769626,33.339534],[131.245356,33.953657],[137.950454,35.906965],[135.769041,35.031139],[138.168853,36.438706],[139.796671,35.629417],[138.609995,36.858235],[130.472053,32.563691],[130.720624,33.724843],[132.092779,33.948989],[135.638721,34.631139],[136.916129,34.878092],[135.374908,34.691088],[138.054962,36.385488],[140.506065,42.974333],[139.445242,35.674105],[141.586875,42.880707],[135.596806,34.580197],[130.208909,32.035026],[130.684535,33.799315],[130.460387,33.017146],[135.76835,35.033825],[137.87636,36.12615],[131.894218,34.375563],[136.919633,36.341283],[135.57291,34.819084],[134.923444,34.474241],[131.188692,24.466789],[130.749586,33.84933],[127.999249,26.687458],[141.002975,37.414404],[141.80398,44.553319],[130.816603,33.885553],[132.253473,33.882142],[127.784369,26.256153],[135.180677,34.064964],[132.778757,33.770781],[140.559336,40.261354],[143.782572,43.469336],[139.654628,36.013092],[127.82414,26.345421],[140.445719,39.171015],[136.994092,35.227782],[139.756204,38.057893],[137.751905,36.017795],[139.262291,35.484274],[133.375914,33.457011],[135.690683,34.90365],[141.442969,38.441009],[127.361284,26.204298],[135.846171,34.122935],[140.667831,41.834548],[137.8287,35.377597],[141.11318,39.721677],[140.753187,39.339409],[137.938003,35.732245],[130.944648,31.545156],[133.930669,34.909021],[141.372083,40.767701],[133.584088,33.646471],[139.467602,35.542217],[141.860047,39.268121],[139.620282,35.420463],[139.338544,35.75369],[136.603252,35.081892],[141.630987,43.871273],[133.193516,35.200062],[139.358706,35.761085],[133.471816,34.632427],[130.92079,33.885076],[129.266775,28.291686],[140.167639,36.990064],[137.310072,34.658632],[135.315918,35.493083],[140.85976,38.26529],[136.445495,36.399515],[141.292375,40.385128],[135.42827,33.809853],[136.820807,35.109288],[130.594538,32.468671],[139.329707,35.748842],[133.069778,33.927534],[132.506174,34.372525],[130.355334,32.784523],[130.361082,33.577125],[129.268475,34.146684],[139.735037,35.69995],[139.423205,35.936974],[133.156807,33.569927],[130.74077,32.846615],[139.966872,36.686776],[135.389333,34.969662],[130.61142,32.923766],[139.38498,35.868961],[127.764862,26.268776],[141.910629,43.568725],[130.701085,32.59388],[135.254655,35.300239],[136.037102,33.800662],[137.080485,35.210186],[144.456936,43.610507],[140.174972,36.065893],[139.031572,36.441729],[141.333456,40.545274],[139.000687,36.332412],[141.885852,43.300004],[138.902719,35.145472],[139.544689,35.83243],[138.462198,35.975729],[136.06831,35.655513],[130.431285,33.522734],[136.81032,35.275078],[130.762844,32.90956],[135.574133,34.460683],[137.943096,35.844037],[132.628898,34.87352],[137.016715,35.121563],[140.247897,35.169099],[138.294058,36.699012],[140.744937,43.159163],[145.184848,43.142463],[139.754182,35.670812],[129.890986,33.477367],[137.581904,36.583675],[136.681454,37.162037],[136.89121,35.53218],[140.117944,35.467401],[136.907383,34.756158],[142.221329,45.212723],[140.550661,42.939899],[135.508079,34.619985],[139.749294,36.238838],[135.67169,34.833954],[133.964032,34.486788],[131.157844,33.23926],[136.56702,34.519128],[137.010967,34.991058],[139.589688,35.700419],[133.337971,33.530296],[135.309902,34.75336],[130.222544,33.544417],[130.205879,31.756679],[135.176854,34.669815],[130.792127,33.330546],[137.917092,36.864535],[138.855164,37.41199],[133.545765,33.564618],[135.122063,35.004942],[130.814115,33.643903],[135.189671,34.031859],[134.642411,33.989727],[136.45795,34.869116],[138.547135,35.646242],[139.307282,35.313178],[141.349127,40.974671],[130.37239,33.761034],[130.649824,33.014657],[130.859499,31.824185],[134.256324,33.644928],[135.960921,35.07941],[127.770723,26.709901],[140.337672,38.259076],[127.664681,26.087777],[143.619525,44.228466],[140.774591,38.004172],[141.277508,42.574356],[139.49888,36.028035],[130.434366,33.197394],[139.328876,37.917364],[138.125211,36.033227],[133.795876,34.113704],[136.764174,35.420492],[135.641397,34.484205],[139.138391,35.152756],[134.382554,33.66781],[130.765404,32.769667],[130.685034,33.409771],[140.085229,36.348354],[136.092612,35.13905],[139.864968,37.540146],[138.471641,35.676214],[130.45583,32.229941],[140.500311,39.086976],[134.870363,34.922458],[139.664663,36.075873],[139.646176,35.671529],[141.437011,43.071628],[135.69675,34.553926],[139.571635,35.461988],[136.981389,34.925833],[135.70363,35.018385],[130.728331,33.728356],[140.240351,35.475329],[140.514404,36.028024],[136.6606,35.293989],[139.606648,36.002377],[139.397416,38.056152],[142.414601,43.397381],[140.745109,36.95094],[139.044367,37.682504],[130.978589,33.715394],[135.37677,35.251573],[130.477789,33.534157],[139.229986,37.825658],[135.588031,34.72276],[132.508131,34.376702],[137.862022,36.410962],[134.362894,35.003541],[137.692696,35.788827],[129.871781,32.733844],[135.879963,34.784362],[137.334318,36.707954],[135.105147,35.066144],[139.698751,35.959814],[139.246068,35.42717],[136.569528,35.438732],[141.707212,45.382922],[142.887027,42.879327],[130.126192,33.188806],[131.649663,32.41451],[139.404535,35.50144],[135.76078,34.941165],[132.064813,34.130808],[135.377907,34.272057],[139.400807,37.255803],[138.779743,34.828137],[137.587612,35.083637],[141.927808,42.585475],[139.138958,36.753904],[139.820201,36.08648],[137.952999,35.491861],[134.667794,34.895323],[140.393374,37.256588],[131.464137,31.803978],[143.545833,42.762846],[129.038612,33.17302],[139.231997,36.775789],[141.971273,39.584141],[136.816949,35.07941],[135.4731,34.696053],[135.270444,34.893716],[131.482977,32.13656],[138.531924,35.671501],[133.757815,34.613175],[139.419342,37.689142],[140.815138,43.083901],[131.410127,32.111083],[136.921741,35.170061],[140.008045,35.956983],[143.208306,42.027336],[130.214574,33.237635],[145.104109,43.680797],[138.960347,37.050756],[139.23278,35.337848],[133.383271,35.453222],[122.987678,24.455925],[137.06868,35.498907],[130.465004,31.30756],[133.219908,35.438466],[135.114544,33.96094],[139.622072,35.337428],[144.408303,43.012964],[140.568429,40.602096],[135.350324,34.043888],[135.116586,34.678697],[129.608218,33.044388],[139.621009,35.43808],[132.586775,35.047396],[137.573206,34.68784],[136.943092,35.422189],[135.619325,34.273518],[136.59756,35.401219],[138.82856,34.746123],[140.053454,38.411318],[137.691099,35.152641],[130.491321,33.508293],[139.824106,36.46455],[136.861269,34.895808],[139.617895,35.522765],[136.638497,35.441528],[130.652302,32.751735],[138.8496,36.358588],[139.216731,35.764089],[140.249788,36.390394],[139.477742,35.644584],[135.362671,34.37984],[135.441199,34.902589],[140.128123,39.743039],[138.845507,35.513429],[141.146055,38.370763],[140.721338,38.090371],[139.940339,38.821738],[135.416027,33.70548],[139.022509,35.749685],[140.640698,42.012556],[139.673702,35.422175],[137.934429,36.345441],[137.807165,34.802688],[131.415248,33.009487],[135.711142,34.414389],[137.301579,36.703872],[127.730075,26.174519],[139.744289,36.563155],[125.384528,24.756914],[140.996454,37.359208],[139.36986,35.727354],[130.682298,33.891672],[135.553015,34.72319],[140.493773,37.844661],[141.637368,43.94527],[136.261864,35.273953],[142.099616,42.485537],[131.085085,31.72916],[139.067339,35.568936],[139.139964,37.857526],[135.795949,34.813539],[141.5635,42.97227],[135.201603,35.534397],[132.565904,34.238082],[133.498673,34.519698],[136.0666,34.059192],[138.047985,36.458354],[130.818494,32.842748],[140.446908,37.990074],[139.048309,36.523192],[143.614668,43.123851],[135.619091,34.590324],[131.759275,33.101223],[139.807147,35.884141],[140.264704,36.577859],[130.796953,32.675168],[140.838273,41.998462],[132.933395,33.748647],[140.189236,35.913113],[135.536105,34.716232],[137.012116,35.044668],[130.550582,31.57545],[141.084867,40.296519],[131.316253,31.973649],[133.182465,33.458037],[140.830315,38.560895],[140.182957,35.662563],[139.461329,35.814929],[136.246629,35.175795],[140.481667,43.359405],[130.579825,33.778945],[141.881371,43.243846],[140.267796,40.535049],[127.768369,26.303823],[144.630061,43.117955],[140.375268,35.421323],[139.676337,35.752364],[140.659725,36.581847],[135.869791,34.513755],[140.480629,41.167818],[135.375762,34.916675],[142.374026,45.060567],[139.045154,36.234662],[139.641737,35.898711],[133.077348,33.071462],[141.328661,40.648177],[134.145466,33.297117],[131.894765,32.95134],[136.005921,34.778164],[141.882658,39.983932],[139.527377,36.059595],[142.676427,43.012557],[138.93921,35.02655],[138.146838,36.549417],[136.939302,35.922028],[130.0953,33.303705],[136.92189,35.180876],[139.406756,35.655453],[135.96079,34.752679],[134.910826,34.752444],[141.215237,40.243094],[134.014646,34.50169],[140.505805,37.887465],[141.308758,43.079715],[134.781122,34.929729],[141.61063,40.443771],[135.561644,35.443055],[140.366266,37.17197],[137.086583,34.954872],[139.54413,38.195919],[140.547471,35.936508],[140.48046,36.394705],[140.404746,40.915836],[136.230462,35.01269],[137.23205,37.33241],[139.46271,36.196031],[140.238526,37.25342],[132.475607,34.267325],[131.155884,32.382621],[136.034823,35.329925],[139.984841,35.731294],[139.886649,36.05688],[131.352441,32.633074],[138.253429,37.027329],[141.846536,43.401282],[139.426602,36.251089],[134.238499,34.752583],[135.542642,34.698898],[133.642966,34.13187],[134.825176,34.167974],[135.285773,34.283355],[138.96945,35.112061],[138.97028,36.438067],[140.85954,37.994795],[140.393775,38.408802],[137.692447,35.105557],[140.736692,37.503445],[137.174669,34.855106],[137.257586,35.554193],[143.358005,42.370589],[131.075079,32.848353],[139.24339,35.361692],[128.433997,27.040185],[132.73654,32.785132],[133.796478,34.68364],[138.050334,36.07702],[134.172253,34.505828],[130.947847,30.396236],[131.15403,32.618645],[138.912109,36.623179],[138.91702,37.515292],[129.074581,32.961156],[140.233606,38.713054],[139.15247,37.685349],[135.259225,34.808882],[141.054452,39.091826],[139.749553,35.72349],[130.8079,32.963367],[136.225268,34.810465],[136.58509,34.356488],[138.299684,36.236881],[135.504888,35.484779],[140.208684,36.50083],[130.968909,31.391889],[136.90444,35.049591],[136.939084,35.161494],[135.678134,34.609012],[139.129175,36.280547],[135.432595,34.529257],[141.12729,38.929515],[139.620901,35.669726],[135.779702,34.374129],[141.693076,38.997881],[140.457963,36.828769],[142.312494,43.810347],[140.533676,38.145949],[135.797479,34.413958],[140.016531,36.210589],[139.226326,38.44737],[139.581867,35.812641],[135.621668,34.87516],[139.309247,36.248065],[136.296782,35.093206],[130.618148,32.228271],[142.734241,42.23358],[133.485436,35.36394],[136.869943,35.332544],[139.899607,36.468907],[135.603872,34.773622],[133.877086,35.496616],[138.749107,36.159644],[136.965326,35.005016],[135.823245,34.479741],[142.542119,43.705566],[141.215255,40.767315],[139.375121,35.328485],[130.535269,33.431939],[136.642732,35.419565],[143.085977,44.192729],[133.428088,34.513455],[138.462734,36.233296],[138.906795,35.207141],[139.276539,36.000173],[130.527673,33.486321],[136.584193,35.256983],[140.990574,37.250943],[140.780153,43.193712],[140.526776,39.324108],[141.711972,39.809125],[130.901456,32.223893],[141.155797,38.990173],[135.520751,34.673741],[140.513657,40.693127],[138.920886,35.10508],[133.046774,33.220902],[139.765102,37.32511],[135.511339,34.733444],[138.464316,36.860405],[141.804599,43.428969],[130.711448,32.801323],[138.49411,36.039919],[136.434151,35.329498],[138.960651,37.631986],[141.631505,39.218929],[142.679584,43.868179],[136.595635,34.260002],[134.527846,34.161483],[130.898314,31.307682],[138.094911,34.75696],[141.227744,40.629777],[132.89422,32.92811],[135.46883,34.651833],[138.776417,36.172806],[134.632937,35.419444],[130.497162,32.293872],[141.676764,44.300379],[140.12315,36.042677],[140.382225,35.95259],[139.497922,35.320847],[139.668901,35.898978],[131.31968,33.138614],[140.272529,42.251958],[144.660449,43.903122],[135.107428,35.30444],[139.45922,35.670488],[138.503638,35.581203],[135.744057,34.60755],[138.48823,35.016462],[139.367957,35.696368],[129.599032,29.460868],[143.133474,44.445705],[138.604775,36.511153],[138.330531,36.361361],[137.780628,34.865305],[135.7507,34.984746],[136.563477,35.110331],[135.759142,34.89508],[138.68284,35.932494],[140.225427,41.930867],[140.764278,37.913637],[134.395295,35.416527],[138.701929,35.48621],[137.675266,34.834189],[143.535785,44.071873],[140.337982,35.35058],[131.161886,34.010333],[137.419049,36.821946],[137.687879,35.289736],[141.885971,43.651347],[131.976838,33.783669],[139.84051,33.093013],[143.782392,43.705849],[135.575378,34.476926],[135.818137,34.800551],[140.457945,36.177131],[131.48686,32.210017],[139.49856,35.728845],[135.759327,34.671769],[133.040829,34.380439],[134.935177,34.694274],[135.818163,35.002201],[132.960542,32.781344],[130.816949,33.546305],[140.121108,37.577416],[130.541368,33.347642],[140.506807,42.742135],[134.27589,33.531673],[140.914852,38.274396],[140.982149,38.426324],[132.7284,33.793632],[135.821105,34.828578],[135.4615,34.561947],[135.412936,35.059144],[138.916736,34.714225],[142.368767,43.77494],[131.383115,32.976508],[129.96308,33.436433],[139.595894,33.897291],[134.052818,33.58627],[139.871866,35.755326],[135.500414,34.571974],[139.621716,35.469008],[141.416259,42.932893],[140.624556,37.24155],[136.818714,35.206201],[134.071045,34.706735],[136.889382,35.13589],[140.144523,35.844549],[141.481144,43.478768],[130.827114,31.27608],[135.283838,34.396048],[137.079154,35.180227],[141.239503,43.145554],[133.835161,34.162006],[135.6876,35.002107],[139.397116,35.55588],[138.337674,35.762416],[140.35717,41.058497],[140.074889,38.042637],[129.946599,28.321085],[140.357802,36.064586],[134.990823,34.916292],[133.818498,34.608687],[140.243488,36.739903],[139.866809,35.878188],[139.297322,36.518931],[140.506106,41.701377],[140.069245,35.304641],[138.200062,34.708412],[129.759952,33.801158],[132.7629,35.179111],[128.920721,32.595054],[139.578768,35.964724],[139.094564,36.113534],[138.588002,36.12409],[140.754685,36.805668],[139.539201,36.171959],[141.718804,40.27003],[138.651354,37.41773],[139.659693,35.846652],[131.438709,32.511894],[132.389317,34.375638],[143.336918,42.921574],[139.55756,35.75307],[141.835275,39.539248],[138.510228,36.062461],[128.924915,27.707231],[139.895378,35.680621],[128.633885,27.404051],[133.911773,35.185966],[137.230108,35.383997],[141.336756,40.161251],[140.553514,39.444077],[138.490859,35.575175],[136.515009,34.724247],[140.298044,35.302627],[139.992012,36.996675],[140.055206,35.776788],[140.196249,38.743858],[139.141619,34.240715],[137.616933,35.30061],[136.875098,34.955687],[132.687175,32.923335],[141.963731,43.476835],[139.786522,35.549786],[140.174378,36.032002],[133.016478,34.838688],[139.837132,38.788254],[141.915631,39.957441],[143.341411,43.216261],[136.640644,34.511057],[132.621187,34.38342],[144.275215,43.890257],[130.358195,33.571993],[140.044042,36.653653],[140.899379,38.24769],[131.279324,31.507322],[143.244889,42.606423],[140.850804,38.574983],[139.102271,36.086772],[139.786787,35.846446],[137.516414,35.401929],[142.827264,43.711342],[135.730408,33.484268],[139.716811,36.026683],[141.829618,42.988172],[135.711548,34.941289],[139.50683,36.213032],[140.302405,36.006785],[130.727969,33.818416],[127.762751,26.430632],[132.643893,33.529722],[139.004544,35.2606],[139.28751,36.056291],[139.285414,36.201451],[135.426064,34.826356],[129.973014,32.910251],[140.901068,38.46937],[130.826655,32.768995],[139.498487,35.503989],[136.55084,34.816532],[133.76729,33.79302],[138.728008,37.502464],[131.281863,34.507569],[140.992755,37.507154],[131.56982,33.399277],[136.741673,35.081179],[139.101959,35.171964],[139.617916,35.206801],[134.734854,35.333523],[136.549494,35.371169],[130.62815,33.066275],[130.826075,32.267461],[139.620976,35.757756],[139.442913,35.648156],[130.859949,32.185682],[135.824261,34.723277],[134.159125,34.628302],[134.373583,34.74699],[136.527038,35.477785],[136.30045,35.240403],[135.678169,34.76458],[138.54248,36.337902],[144.052284,43.006523],[139.153355,36.285509],[136.515168,36.446746],[138.388962,35.516709],[137.263576,35.786543],[131.888288,34.719865],[139.333933,35.892491],[137.887261,36.404205],[130.481244,33.163429],[127.747182,26.125995],[140.423934,35.903725],[144.707204,43.393788],[140.371977,39.542555],[140.964823,40.948022],[135.810945,34.585892],[135.673914,34.890252],[130.959277,32.236879],[134.548083,34.073407],[135.799944,34.48314],[135.334211,34.423728],[139.742419,37.397151],[126.76973,26.347359],[137.364658,36.733028],[143.327935,43.028931],[137.307875,34.871415],[138.866857,37.646584],[143.133431,42.699827],[130.40107,32.208249],[134.186544,33.510666],[127.743071,26.231912],[139.263568,35.830314],[140.141572,35.742274],[139.880138,35.201051],[133.499263,35.280534],[131.669891,32.57776],[133.642221,35.511335],[138.962001,35.350726],[131.168148,33.599343],[139.451444,36.132674],[137.86368,37.039692],[139.821673,35.920304],[137.047192,35.227428],[130.676222,33.540182],[139.767814,36.094614],[129.892662,33.061738],[141.032195,38.294393],[140.623654,40.97197],[139.998029,39.219524],[136.888116,35.223348],[133.520172,33.720884],[135.015976,35.685388],[139.353168,35.990122],[137.810554,34.708885],[136.504433,34.560537],[137.945166,35.562012],[139.046549,35.106068],[124.685433,24.657759],[136.25822,34.878963],[136.491066,36.468136],[140.485409,37.093893],[132.716264,34.99698],[136.695607,34.474406],[140.178489,38.000746],[130.970974,32.337593],[130.195017,32.491004],[135.530677,34.586363],[137.715367,35.705142],[133.826956,35.42647],[134.160776,34.815418],[132.461534,34.632963],[131.491629,33.564165],[131.380159,33.374915],[136.522905,35.033189],[141.573662,42.630407],[135.858128,34.860702],[136.849612,35.222217],[131.668851,32.485042],[135.35844,34.441285],[137.153978,35.431366],[139.899897,37.583361],[130.772925,33.655374],[142.583269,43.158206],[133.014216,36.026349],[141.948756,43.76061],[139.329062,35.568457],[139.336938,35.517047],[140.027851,35.375384],[129.895783,33.187835],[131.704054,33.258456],[136.377695,36.077441],[143.11929,42.093779],[135.228664,34.665691],[130.688366,33.843702],[137.127225,35.3331],[139.582933,36.314003],[135.937567,34.395892],[130.511945,33.771213],[135.560387,34.617357],[138.259178,34.804532],[138.926799,36.283783],[141.82024,43.035741],[135.479256,34.840986],[140.371609,37.158574],[141.815543,40.052976],[130.849574,33.628173],[136.187465,35.944274],[134.848992,35.340273],[141.114177,39.405529],[135.63104,34.73411],[140.167109,35.877466],[130.882246,32.849321],[131.236303,32.858216],[134.489616,34.123194],[140.481139,37.443108],[137.954955,34.747333],[135.551463,34.498523],[130.695722,32.824913],[141.138611,38.535518],[130.687721,33.902525],[130.740722,32.319282],[133.179216,34.61866],[132.559911,35.247624],[135.01338,34.695208],[140.131888,36.516829],[137.126773,35.463249],[138.878664,36.102071],[142.451264,43.994598],[139.124082,35.405665],[137.798037,35.251689],[140.368999,37.23054],[140.914904,42.844402],[136.902135,35.374251],[133.400714,35.048881],[139.639004,37.487202],[139.875924,36.23134],[135.525974,34.64777],[140.082349,38.087402],[130.824288,33.8977],[139.498535,35.440488],[135.38692,34.131636],[140.670594,35.79578],[138.818102,35.487726],[135.068349,33.89312],[130.324391,32.676694],[136.420146,34.334242],[136.0128,34.333613],[142.353819,42.403913],[133.47142,33.816482],[140.064054,35.629713],[128.250274,26.663118],[130.585033,33.045251],[143.603451,43.728017],[140.675566,41.8946],[138.699282,35.67186],[139.4337,35.507309],[131.240837,34.163115],[130.649704,33.670933],[141.107387,39.743192],[139.13307,35.29364],[130.507212,33.615605],[142.500214,43.879699],[130.160487,32.994948],[140.48832,36.257039],[130.910285,32.800552],[139.154964,35.966352],[136.782902,35.127284],[140.398386,37.087919],[138.43584,36.678003],[140.404955,35.644684],[139.435417,35.751978],[139.913184,42.396773],[135.775867,34.99777],[140.489064,36.918943],[143.047232,43.290695],[139.448232,42.059504],[137.67045,34.745976],[140.741629,40.179767],[138.884754,35.283449],[139.962481,40.07329],[139.593622,35.258634],[131.052909,33.252516],[139.893822,35.693059],[135.895109,34.303982],[137.029871,35.315329],[140.180765,35.212679],[141.855077,44.659457],[140.405878,40.944992],[138.560612,36.53326],[139.562208,35.924498],[133.14219,33.357493],[141.469946,38.521624],[139.532605,35.878091],[130.137754,33.226023],[141.845028,45.015721],[140.574411,38.123418],[139.47908,36.231337],[141.599152,43.026435],[137.94691,35.579231],[138.18148,36.617509],[144.391342,43.028943],[139.765015,36.261436],[144.842425,43.023055],[137.882702,36.183094],[134.870664,34.723371],[140.161968,35.141486],[128.115483,26.649028],[142.260329,44.729262],[139.335315,35.617579],[136.645787,35.035443],[139.620836,36.74661],[134.014808,33.525833],[138.907753,34.78358],[141.255139,41.059074],[133.167003,34.345926],[139.812035,38.723986],[143.354112,43.126471],[139.861396,36.435221],[127.148383,26.380755],[142.048219,43.540658],[132.048805,33.89392],[131.108363,31.739763],[144.306244,43.092401],[138.886337,34.665353],[141.560867,43.113328],[141.072858,38.806727],[134.345634,34.522354],[138.22845,35.995707],[131.929261,33.971764],[136.98845,34.905079],[138.626889,35.414104],[141.080418,42.398287],[136.511828,36.048632],[131.011382,34.059673],[130.161927,32.203657],[139.002881,36.023045],[130.678811,33.70774],[139.624259,37.091497],[139.736519,36.377396],[140.204779,38.383934],[130.778029,32.752795],[135.681028,34.645954],[131.208427,33.022967],[140.708757,42.816779],[135.480805,34.530967],[140.270985,38.280535],[135.444826,34.50429],[140.42949,35.523186],[141.047009,38.286797],[140.254378,35.965114],[141.883506,42.732045],[136.238345,36.160439],[135.779468,34.646541],[139.500723,35.689652],[141.183343,40.432988],[139.502309,35.386415],[140.764077,42.555599],[135.550052,34.769232],[137.175795,35.356349],[136.198945,34.072988],[127.98759,27.068049],[134.484696,34.770872],[139.928503,35.385167],[139.1965,36.061593],[135.669292,34.176195],[139.558865,35.628776],[139.014758,36.412822],[134.331353,34.072038],[139.781518,35.718801],[133.922068,34.628197],[138.120772,35.086945],[135.601552,33.520921],[142.165856,44.00579],[133.909257,34.060503],[129.876343,33.083394],[140.077104,39.898089],[129.629876,28.412793],[140.870928,38.320467],[130.494048,33.207351],[140.121649,39.884129],[135.72606,33.553284],[139.535408,36.012849],[127.691306,26.199562],[135.510105,34.661331],[134.120813,34.945971],[136.311394,35.932367],[140.352911,42.820506],[137.992436,36.359378],[144.318681,43.819002],[141.397036,41.370926],[130.960961,31.28855],[136.788988,36.646128],[137.831321,35.339317],[131.491743,33.277952],[140.240162,35.333204],[132.504683,34.329055],[140.247137,42.005011],[130.873871,33.673191],[141.394435,43.120789],[140.463703,40.7017],[129.005143,27.77352],[140.269823,35.529696],[138.077124,35.531614],[131.799768,34.05896],[141.888831,39.370512],[139.508753,37.431588],[134.44979,34.150647],[134.979129,34.83454],[135.506936,34.285106],[136.897086,34.358668],[139.193647,36.227211],[130.589599,33.480188],[138.426864,36.929657],[135.487992,34.605352],[141.965544,43.080613],[139.403816,35.996817],[130.301352,33.260192],[137.753938,34.767533],[139.300647,35.963721],[140.724664,38.06153],[135.195307,34.005935],[135.173906,34.743738],[136.905125,34.855487],[133.178516,34.270477],[135.364693,33.96417],[145.317394,44.186819],[140.531232,40.65401],[142.931005,42.739568],[134.863021,35.013995],[137.866626,35.574931],[137.815163,35.516896],[141.170698,39.593781],[140.621345,38.00475],[130.997909,33.678306],[141.079564,38.38788],[136.381082,36.340309],[135.571804,35.084241],[135.22812,34.753965],[133.790498,34.219909],[136.944066,35.095134],[140.045121,37.187084],[139.250718,35.718576],[137.014561,35.394266],[141.068609,38.538414],[138.908426,35.096057],[136.78258,35.612147],[140.373386,40.227134],[139.328619,35.814346],[135.003268,35.426446],[136.692969,35.028618],[140.915172,38.434658],[140.518373,35.751692],[134.726586,35.018306],[131.62368,33.502662],[131.396481,32.245479],[138.626825,37.157891],[138.081659,36.07342],[140.475295,35.701068],[141.319783,24.779258],[131.375801,31.607585],[140.371043,40.534219],[139.496507,34.064749],[135.638259,34.522092],[141.328331,42.946783],[133.815667,33.544525],[130.907,33.850402],[137.94313,35.770547],[135.756956,35.016212],[131.871849,34.004935],[135.537547,34.539384],[139.131615,36.594054],[135.480537,33.609899],[132.479044,34.958211],[136.966663,37.044229],[135.767963,34.58514],[140.084797,35.897057],[140.373835,36.508102],[132.697864,33.738342],[136.485796,35.971514],[140.328639,37.384863],[135.483429,34.488017],[130.695882,31.088783],[141.148816,45.187521],[139.827453,35.827153],[133.293078,33.427923],[140.423672,40.781417],[140.267611,40.030919],[133.588634,34.538802],[140.278994,38.124874],[139.746192,35.66849],[139.658908,35.827251],[140.523905,37.180119],[138.651092,36.974486],[131.244094,34.427687],[140.613203,37.541324],[130.784096,32.191538],[135.50739,34.689044],[137.157372,34.970876],[137.96727,36.105715],[132.096524,34.890513],[141.854673,44.36569],[139.080288,36.680651],[135.021937,35.014006],[140.715779,39.180566],[139.63933,35.794677],[141.319722,43.04223],[138.127084,34.643948],[140.201837,41.944479],[131.35526,32.519568],[136.88994,34.39425],[130.698157,31.48965],[140.281702,36.750644],[140.139851,35.59724],[131.021691,32.906022],[130.454127,31.909089],[139.619367,35.467075],[138.362571,35.421015],[140.079981,39.941392],[133.449651,35.187968],[133.75557,33.678992],[131.253281,25.836353],[133.867487,34.990715],[141.755694,43.188931],[136.986391,36.884243],[133.856219,35.37301],[127.658747,26.16731],[135.466691,34.710406],[136.973066,34.95278],[140.299338,38.832647],[134.555672,34.123502],[140.073625,41.492914],[143.27524,42.489955],[139.797811,35.740193],[137.656763,35.969403],[140.291239,38.405903],[140.882932,41.403862],[130.562714,31.247906],[140.658782,35.96645],[132.567412,34.324961],[124.14501,24.330858],[134.197851,34.087666],[140.336397,35.675317],[136.958108,35.496609],[134.384029,34.148493],[141.424756,40.191643],[143.758265,43.976479],[140.279237,38.401377],[140.380661,37.55421],[138.392224,34.978092],[132.133677,34.338533],[142.36856,42.336349],[136.727176,35.352431],[135.461233,34.68516],[133.834634,34.291983],[141.65672,42.825407],[141.82393,42.816856],[134.870581,34.251316],[139.101512,37.833554],[142.475635,43.456121],[140.279473,38.693674],[139.697619,35.823089],[139.611601,36.115971],[135.584875,34.173824],[139.548462,35.506129],[138.874961,36.768793],[137.750308,35.454668],[139.035565,34.785806],[135.416208,34.488469],[133.187456,34.841032],[140.529435,40.49372],[130.423805,33.296256],[136.765645,35.378917],[127.946139,26.925141],[132.268924,33.468771],[138.501331,35.260215],[135.061312,34.673367],[140.850883,37.319005],[139.843169,38.91877],[140.396996,35.465029],[130.867263,33.887916],[140.417435,38.755286],[133.563184,34.598761],[131.122837,33.116321],[139.580228,35.673275],[127.243133,26.586506],[139.613198,35.589939],[130.152096,32.80624],[139.863326,35.981714],[138.250423,36.2206],[133.769477,35.026326],[131.550385,34.044443],[130.458298,33.615429],[139.892432,36.141689],[134.407564,35.360758],[136.765329,35.199144],[127.984398,26.504901],[138.874489,36.185447],[130.390215,33.587481],[130.827042,32.040474],[136.829517,35.164339],[137.897373,35.68409],[140.067618,38.141804],[136.632056,34.963176],[140.625895,35.881714],[136.871761,35.276346],[130.439641,33.529562],[139.3872,36.142298],[139.037632,35.366077],[139.72136,36.197117],[139.381177,36.991905],[140.640529,41.03863],[135.214708,33.821209],[139.76361,35.752063],[141.219863,45.222094],[135.774558,35.014829],[139.074956,34.864229],[140.55206,36.96243],[135.404787,34.46597],[140.864107,38.039208],[134.473371,33.84588],[141.547413,38.911353],[141.967821,43.740122],[137.349365,34.760845],[139.461246,36.336014],[136.024952,34.410996],[133.61845,34.792855],[130.0555,32.489286],[135.576378,34.671693],[135.96645,33.939146],[138.003733,35.968789],[137.077034,34.806594],[139.479679,35.702823],[138.812667,37.305207],[135.405945,34.48076],[136.914862,35.257564],[137.138747,35.105581],[132.749193,33.846316],[130.502167,33.603921],[135.163085,34.21348],[135.650479,34.311242],[138.951683,37.219496],[134.37952,34.236596],[139.729768,35.814632],[138.52337,36.292905],[140.445118,35.763052],[129.473632,33.266915],[139.767925,32.452932],[139.560309,35.818884],[136.914051,36.430688],[138.992645,35.598221],[139.12328,35.248714],[140.760426,40.300628],[139.610675,35.281544],[132.931886,33.020163],[141.091612,39.249061],[140.370129,37.099683],[130.334183,33.582288],[144.908841,43.540284],[134.58406,34.131863],[140.201508,42.736365],[140.065667,36.515659],[139.59042,35.550709],[138.884781,37.744164],[139.918976,35.644934],[133.824902,34.194632],[139.758968,35.598187],[139.497169,35.335188],[140.105346,35.632655],[135.187278,34.330811],[144.530914,43.875959],[138.187966,34.831401],[139.786583,35.668796],[136.1071,35.96271],[132.225123,34.580925],[138.600198,37.430963],[140.539338,37.692813],[140.97026,38.33259],[135.449062,34.65792],[135.95784,33.591113],[130.679794,32.080796],[140.717418,42.904941],[141.365176,43.049506],[140.379083,35.385494],[141.556801,43.323519],[139.941108,36.797551],[139.24855,35.295391],[131.440473,34.02895],[138.849326,37.700262],[138.242337,38.034294],[139.680165,35.502643],[136.272739,35.324545],[134.149708,35.082692],[130.044882,33.207745],[133.10199,35.163889],[127.883299,26.464591],[136.697666,35.202512],[140.348095,35.751151],[133.082553,34.642261],[129.275021,28.083171],[143.217217,42.87171],[132.260821,35.032003],[135.559967,34.726986],[136.758505,35.044212],[130.122954,33.217746],[127.747119,26.374691],[139.37102,35.365845],[139.899807,35.815309],[138.255691,35.89655],[140.618791,37.086116],[127.877681,26.332998],[141.885784,43.742746],[133.3575,33.958125],[140.782276,38.048646],[130.29334,30.790266],[136.656136,36.571525],[139.739504,35.975616],[135.772117,34.438686],[140.375612,35.188839],[141.784596,43.589469],[139.745645,35.754421],[130.235874,31.367495],[135.149678,33.917789],[139.891292,35.14558],[133.337396,35.355762],[140.926015,37.226901],[139.382276,35.449496],[140.936264,42.3855],[132.765619,34.322132],[140.641055,43.278485],[137.218621,34.825785],[129.662427,33.249739],[129.920759,33.132399],[137.010952,35.513452],[135.505174,34.708582],[132.526213,32.958715],[139.312743,35.948491],[135.931014,33.768214],[135.938009,33.628251],[135.982393,33.732571],[140.386922,42.522145],[140.268996,37.174117],[140.940422,40.119321],[139.810091,37.870791],[132.560646,33.223042],[140.652835,37.762863],[133.99919,34.853143],[138.748217,36.079435],[140.867344,42.465988],[139.316967,36.402382],[141.406712,40.281907],[136.853041,35.245556],[138.926449,34.933156],[134.438628,34.099208],[139.753955,35.49719],[135.852347,34.89903],[135.968774,34.98274],[133.364157,35.3954],[136.205976,34.488996],[139.633474,35.893904],[136.26955,35.376471],[135.373459,34.789644]]
start(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment