-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.html
More file actions
288 lines (260 loc) · 810 KB
/
map.html
File metadata and controls
288 lines (260 loc) · 810 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Aqua Viva</title>
<!--Uber Font-->
<link rel="stylesheet" href="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/uber-fonts/4.0.0/superfine.css">
<!--Montserrat-->
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<!--MapBox css-->
<link href="https:https://unpkg.com/maplibre-gl@^3/dist/maplibre-gl.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<!-- Load React/Redux -->
<script src="https://unpkg.com/react@16.8.4/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16.8.4/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/redux@3.7.2/dist/redux.js" crossorigin></script>
<script src="https://unpkg.com/react-redux@7.1.3/dist/react-redux.min.js" crossorigin></script>
<script src="https://unpkg.com/styled-components@4.1.3/dist/styled-components.min.js" crossorigin></script>
<!-- Load Kepler.gl -->
<script src="https://unpkg.com/kepler.gl@3.0.0/umd/keplergl.min.js" crossorigin></script>
<style type="text/css">
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000000;
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
}
/* Back Button */
.back-button{
width:20px;
height:20px;
position: absolute;
top: 25px;
left: 25px;
transform: translate(-50%, -50%);
border-radius:50%;
border:#03A9F4 1.5px solid;
overflow:hidden;
transition: background 0.3s ease;
&.back{
.arrow-wrap{
left:-50%;
}
}
&:hover{
background:#03A9F4;
.arrow-wrap{
span{
background:#fff;
}
}
}
.arrow-wrap{
display:block;
position:absolute;
height:70%;
width:70%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition:left 0.3s ease;
span{
height:1px;
left:0;
top:50%;
background:#03A9F4;
position:absolute;
display:block;
transition: background 0.3s ease;
}
.arrow-part-1{
width:100%;
transform: translate(0, -50%);
}
.arrow-part-2{
width:60%;
transform: rotate(-45deg);
transform-origin: 0 0;
}
.arrow-part-3{
width:60%;
transform: rotate(45deg);
transform-origin: 0 0;
}
}
}
</style>
<!--MapBox token-->
<script>
/**
* Provide your MapBox Token
**/
const MAPBOX_TOKEN = 'pk.eyJ1IjoiYWR6aGVuZyIsImEiOiJjbHJzNWloZ2cwM2EzMmtxbjd1MHBrdzE4In0.Uk7_WJogKCZRQ8FmD4Px3w';
const WARNING_MESSAGE = 'Please Provide a Mapbox Token in order to use Kepler.gl. Edit this file and fill out MAPBOX_TOKEN with your access key';
</script>
<div class="back-button">
<div class="arrow-wrap">
<span class="arrow-part-1"></span>
<span class="arrow-part-2"></span>
<span class="arrow-part-3"></span>
</div>
</div>
<script>
const backButton = document.querySelector('.back-button');
backButton.addEventListener('click', () => {
window.location.href = './index.html'; // Replace with your desired URL
});
</script>
</head>
<body>
<!-- Create a full screen with small text in the middle that scrolls down to reveal the map below -->
<!-- We will put our React component inside this div. -->
<div id="app">
<!-- Kepler.gl map will be placed here-->
</div>
<!-- Load our React component. -->
<script>
/* Validate Mapbox Token */
if ((MAPBOX_TOKEN || '') === '' || MAPBOX_TOKEN === 'PROVIDE_MAPBOX_TOKEN') {
alert(WARNING_MESSAGE);
}
/** STORE **/
const reducers = (function createReducers(redux, keplerGl) {
return redux.combineReducers({
// mount keplerGl reducer
keplerGl: keplerGl.keplerGlReducer.initialState({
uiState: {
readOnly: false,
currentModal: null
}
})
});
}(Redux, KeplerGl));
const middleWares = (function createMiddlewares(keplerGl) {
return keplerGl.enhanceReduxMiddleware([
// Add other middlewares here
]);
}(KeplerGl));
const enhancers = (function craeteEnhancers(redux, middles) {
return redux.applyMiddleware(...middles);
}(Redux, middleWares));
const store = (function createStore(redux, enhancers) {
const initialState = {};
return redux.createStore(
reducers,
initialState,
redux.compose(enhancers)
);
}(Redux, enhancers));
/** END STORE **/
/** COMPONENTS **/
var KeplerElement = (function makeKeplerElement(react, keplerGl, mapboxToken) {
var LogoSvg = function LogoSvg() {
return react.createElement(
"div",
{ className: "logo-container", style: {position: 'fixed', zIndex: 10000, padding: '4px'} },
react.createElement(
"svg",
{
className: "kepler_gl__logo",
width: "107px",
height: "21px",
viewBox: "0 0 124 24"
},
react.createElement(
"g",
{ transform: "translate(13.500000, 13.500000) rotate(45.000000) translate(-13.500000, -13.500000) translate(4.000000, 4.000000)" },
react.createElement("rect", { x: "0", y: "6", transform: "matrix(2.535181e-06 1 -1 2.535181e-06 18.1107 6.0369)", fill: "#535C6C", width: "12.1", height: "12.1" }),
react.createElement("rect", { x: "6", y: "0", transform: "matrix(2.535182e-06 1 -1 2.535182e-06 18.1107 -6.0369)", fill:"#1FBAD6", width: "12.1", height: "12.1" })
),
react.createElement(
"g",
{},
react.createElement("path", { fill:"#1FBAD6", d: "M39,8.7h2.2l-2.8,4.2l2.9,5.1H39l-2.4-4.2h-1.3V18h-2V5l2-0.1v7.3h1.3L39,8.7z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M42.4,13.3c0-1.5,0.4-2.7,1.1-3.5s1.8-1.2,3.1-1.2c1.3,0,2.2,0.4,2.8,1.1c0.6,0.7,0.9,1.8,0.9,3.3 c0,0.4,0,0.8,0,1.1h-5.8c0,1.6,0.8,2.4,2.4,2.4c1,0,2-0.2,2.9-0.6l0.2,1.7c-0.4,0.2-0.9,0.4-1.4,0.5s-1.1,0.2-1.7,0.2 c-1.5,0-2.6-0.4-3.3-1.2C42.8,16.1,42.4,14.9,42.4,13.3z M46.6,10.1c-0.7,0-1.2,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.7h4 c0-0.8-0.2-1.4-0.5-1.7S47.2,10.1,46.6,10.1z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M57.1,18.2c-1,0-1.8-0.3-2.3-0.9l0,0l0,1.3v2.5h-2V8.7h1.5l0.3,0.9h0c0.3-0.3,0.7-0.6,1.2-0.7 c0.4-0.2,0.9-0.3,1.4-0.3c1.2,0,2.1,0.4,2.7,1.1c0.6,0.7,0.9,2,0.9,3.7c0,1.6-0.3,2.8-1,3.7C59.2,17.8,58.3,18.2,57.1,18.2z M56.7,10.3c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.7v4.3c0.2,0.3,0.4,0.5,0.7,0.7c0.3,0.2,0.7,0.3,1.1,0.3 c0.7,0,1.2-0.2,1.6-0.7c0.4-0.5,0.5-1.3,0.5-2.5c0-0.8-0.1-1.4-0.2-1.8s-0.4-0.7-0.7-0.9C57.6,10.4,57.2,10.3,56.7,10.3z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M63.2,16V5l2-0.1v10.8c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.6,0.2c0.3,0,0.6,0,0.9-0.1V18 c-0.4,0.1-1,0.2-1.6,0.2c-0.8,0-1.3-0.2-1.7-0.5S63.2,16.8,63.2,16z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M68.2,13.3c0-1.5,0.4-2.7,1.1-3.5c0.7-0.8,1.8-1.2,3.1-1.2c1.3,0,2.2,0.4,2.8,1.1c0.6,0.7,0.9,1.8,0.9,3.3 c0,0.4,0,0.8,0,1.1h-5.8c0,1.6,0.8,2.4,2.4,2.4c1,0,2-0.2,2.9-0.6l0.2,1.7c-0.4,0.2-0.9,0.4-1.4,0.5s-1.1,0.2-1.7,0.2 c-1.5,0-2.6-0.4-3.3-1.2C68.6,16.1,68.2,14.9,68.2,13.3z M72.4,10.1c-0.7,0-1.2,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.7h4 c0-0.8-0.2-1.4-0.5-1.7S73,10.1,72.4,10.1z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M80.2,8.7l0.1,1.7h0c0.3-0.6,0.7-1.1,1.1-1.4c0.4-0.3,1-0.5,1.6-0.5c0.4,0,0.7,0,1,0.1l-0.1,2 c-0.3-0.1-0.7-0.2-1-0.2c-0.7,0-1.3,0.3-1.7,0.8c-0.4,0.5-0.7,1.2-0.7,2.1V18h-2V8.7H80.2z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M83.8,17c0-0.8,0.4-1.2,1.2-1.2c0.8,0,1.2,0.4,1.2,1.2c0,0.8-0.4,1.1-1.2,1.1C84.2,18.2,83.8,17.8,83.8,17z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M88.5,18.7c0-0.8,0.4-1.4,1.2-1.8c-0.6-0.3-0.9-0.8-0.9-1.5c0-0.7,0.4-1.2,1.1-1.6c-0.3-0.3-0.6-0.6-0.7-0.9 c-0.2-0.4-0.2-0.8-0.2-1.3c0-1,0.3-1.8,0.9-2.3c0.6-0.5,1.6-0.8,2.8-0.8c0.5,0,1,0,1.4,0.1c0.4,0.1,0.8,0.2,1.1,0.4l2.4-0.2v1.5 h-1.5c0.2,0.4,0.2,0.8,0.2,1.3c0,1-0.3,1.7-0.9,2.2s-1.5,0.8-2.7,0.8c-0.7,0-1.2-0.1-1.6-0.2c-0.1,0.1-0.2,0.2-0.3,0.3 c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.6,0.2l2.7,0.2c1,0.1,1.7,0.3,2.2,0.6c0.5,0.3,0.8,0.9,0.8,1.7 c0,0.6-0.2,1.1-0.5,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.7,0.2-1.5,0.4-2.4,0.4c-1.3,0-2.3-0.2-3-0.6C88.8,20.1,88.5,19.5,88.5,18.7z M95.1,18.4c0-0.3-0.1-0.5-0.3-0.7s-0.6-0.2-1.1-0.3l-2.7-0.3c-0.2,0.1-0.4,0.3-0.5,0.5c-0.1,0.2-0.2,0.4-0.2,0.6 c0,0.4,0.2,0.8,0.5,1c0.4,0.2,1,0.3,1.8,0.3C94.2,19.5,95.1,19.2,95.1,18.4z M94.3,11.5c0-0.6-0.1-1-0.4-1.2 c-0.3-0.2-0.7-0.3-1.3-0.3c-0.7,0-1.1,0.1-1.4,0.3c-0.3,0.2-0.4,0.6-0.4,1.2s0.1,1,0.4,1.2c0.3,0.2,0.7,0.3,1.4,0.3 c0.6,0,1.1-0.1,1.3-0.4S94.3,12,94.3,11.5z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M99.4,16V5l2-0.1v10.8c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.6,0.2c0.3,0,0.6,0,0.9-0.1V18 c-0.4,0.1-1,0.2-1.6,0.2c-0.8,0-1.3-0.2-1.7-0.5S99.4,16.8,99.4,16z" })
)
)
);
};
return function App() {
var rootElm = react.useRef(null);
var widthFraction = 0.9;
var heightFraction = 0.85;
var _useState = react.useState({
width: window.innerWidth,
height: window.innerHeight
});
var windowDimension = _useState[0];
var setDimension = _useState[1];
react.useEffect(function sideEffect(){
function handleResize() {
setDimension({width: window.innerWidth, height: window.innerHeight});
};
window.addEventListener('resize', handleResize);
return function() {window.removeEventListener('resize', handleResize);};
}, []);
return react.createElement(
'div',
{style: {position: 'absolute', left: 0, right: 0, top: `${(1-heightFraction) * 50}vh`, margin: 'auto', width: `${widthFraction * 100}vw`, height: `${heightFraction * 100}vh`, border: '1px solid #03A9F4', padding: '2px'}},
react.createElement('p', {style: {color: '#03A9F4', textAlign: 'center', fontFamily: "Montserrat", fontSize: '1.8vmin', fontWeight: 'bold'},
width: windowDimension.width * widthFraction,
height: windowDimension.height * heightFraction * 0.1},
'West Gambia Groundwater Level Map | December 1, 2023'),
react.createElement(keplerGl.KeplerGl, {style: {border: '1px solid white'},
mapboxApiAccessToken: mapboxToken,
id: "map",
width: windowDimension.width * widthFraction,
height: windowDimension.height * heightFraction * 0.9,
})
)
}
}(React, KeplerGl, MAPBOX_TOKEN));
const app = (function createReactReduxProvider(react, reactRedux, KeplerElement) {
return react.createElement(
reactRedux.Provider,
{store},
react.createElement(KeplerElement, null)
)
}(React, ReactRedux, KeplerElement));
/** END COMPONENTS **/
/** Render **/
(function render(react, reactDOM, app) {
reactDOM.render(app, document.getElementById('app'));
}(React, ReactDOM, app));
</script>
<!-- The next script will show how to interact directly with Kepler map store -->
<script>
/**
* Customize map.
* In the following section you can use the store object to dispatch Kepler.gl actions
* to add new data and customize behavior
*/
(function customize(keplerGl, store) {
const datasets = [{"version":"v1","data":{"id":"qg9h4e","label":"interpolated_groundwater_dataset_cleaned.csv","color":[84,122,130],"allData":[[-3.8478999,-16.66844122,13.48746507],[-2.97365,-16.66680559,13.48746507],[-5.5831499,-16.66844122,13.48582945],[-5.1949501,-16.66680559,13.48582945],[-4.8814101,-16.6733481,13.48419382],[-8.78514,-16.67171247,13.48419382],[-9.9856195,-16.67007685,13.48419382],[-6.9686599,-16.66844122,13.48419382],[-6.42204,-16.66680559,13.48419382],[-6.3527198,-16.66516996,13.48419382],[-4.5452399,-16.67661936,13.48255819],[-3.4784501,-16.67498373,13.48255819],[-5.7529502,-16.6733481,13.48255819],[-8.1002302,-16.67171247,13.48255819],[-8.5956001,-16.67007685,13.48255819],[-6.9326501,-16.66844122,13.48255819],[-6.2047901,-16.66680559,13.48255819],[-5.93894,-16.66516996,13.48255819],[-4.9824901,-16.66353434,13.48255819],[-8.8001604,-16.68152624,13.48092256],[-10.3856001,-16.67989061,13.48092256],[-8.9531603,-16.67825499,13.48092256],[-7.6877799,-16.67661936,13.48092256],[-7.59619,-16.67498373,13.48092256],[-7.2697802,-16.6733481,13.48092256],[-7.3864498,-16.67171247,13.48092256],[-7.1173301,-16.67007685,13.48092256],[-6.37047,-16.66844122,13.48092256],[-5.4630198,-16.66680559,13.48092256],[-5.1076798,-16.66516996,13.48092256],[-4.30019,-16.66353434,13.48092256],[-8.82584,-16.6847975,13.47928694],[-9.2932301,-16.68316187,13.47928694],[-11.6920004,-16.68152624,13.47928694],[-15.6691999,-16.67989061,13.47928694],[-11.6674995,-16.67825499,13.47928694],[-9.1006298,-16.67661936,13.47928694],[-9.5216703,-16.67498373,13.47928694],[-8.0472097,-16.6733481,13.47928694],[-7.5020399,-16.67171247,13.47928694],[-7.4134202,-16.67007685,13.47928694],[-6.4238701,-16.66844122,13.47928694],[-4.96139,-16.66680559,13.47928694],[-4.72366,-16.66516996,13.47928694],[-3.95154,-16.66353434,13.47928694],[-1.85334,-16.66189871,13.47928694],[-7.2741799,-16.68806875,13.47765131],[-9.9684601,-16.68643312,13.47765131],[-11.2791996,-16.6847975,13.47765131],[-11.1576996,-16.68316187,13.47765131],[-10.7883997,-16.68152624,13.47765131],[-11.4913998,-16.67989061,13.47765131],[-9.9548702,-16.67825499,13.47765131],[-8.9278603,-16.67661936,13.47765131],[-8.6384401,-16.67498373,13.47765131],[-8.0160503,-16.6733481,13.47765131],[-7.5322199,-16.67171247,13.47765131],[-6.8881202,-16.67007685,13.47765131],[-6.21526,-16.66844122,13.47765131],[-5.2555799,-16.66680559,13.47765131],[-4.7430902,-16.66516996,13.47765131],[-4.3312001,-16.66353434,13.47765131],[-3.5756299,-16.66189871,13.47765131],[-10.7068996,-16.69297564,13.47601568],[-11.4022999,-16.69134001,13.47601568],[-13.2659998,-16.68970438,13.47601568],[-13.4187002,-16.68806875,13.47601568],[-13.1627998,-16.68643312,13.47601568],[-14.8515997,-16.6847975,13.47601568],[-13.2922001,-16.68316187,13.47601568],[-9.3146496,-16.68152624,13.47601568],[-6.6662698,-16.67989061,13.47601568],[-7.5926499,-16.67825499,13.47601568],[-8.0844603,-16.67661936,13.47601568],[-7.8495402,-16.67498373,13.47601568],[-7.6813202,-16.6733481,13.47601568],[-6.95327,-16.67171247,13.47601568],[-6.7937298,-16.67007685,13.47601568],[-5.9271698,-16.66844122,13.47601568],[-4.32057,-16.66680559,13.47601568],[-4.0012598,-16.66516996,13.47601568],[-4.7846699,-16.66353434,13.47601568],[-5.7602201,-16.66189871,13.47601568],[-5.5432501,-16.66026308,13.47601568],[-10.5262003,-16.69461126,13.47438005],[-11.0654001,-16.69297564,13.47438005],[-12.5872002,-16.69134001,13.47438005],[-15.8240995,-16.68970438,13.47438005],[-15.6936998,-16.68806875,13.47438005],[-14.6702003,-16.68643312,13.47438005],[-17.0251007,-16.6847975,13.47438005],[-14.8933001,-16.68316187,13.47438005],[-9.0142202,-16.68152624,13.47438005],[-4.2613001,-16.67989061,13.47438005],[-6.7930398,-16.67825499,13.47438005],[-8.0462303,-16.67661936,13.47438005],[-7.6845198,-16.67498373,13.47438005],[-7.7373199,-16.6733481,13.47438005],[-7.0149102,-16.67171247,13.47438005],[-6.76054,-16.67007685,13.47438005],[-5.8296499,-16.66844122,13.47438005],[-3.7473199,-16.66680559,13.47438005],[-3.45083,-16.66516996,13.47438005],[-4.85676,-16.66353434,13.47438005],[-6.5545502,-16.66189871,13.47438005],[-6.11338,-16.66026308,13.47438005],[-4.7370701,-16.65862745,13.47438005],[-0.727842,-16.64717806,13.47438005],[-2.5666599,-16.64554243,13.47438005],[-2.5107501,-16.6439068,13.47438005],[-2.15978,-16.64227118,13.47438005],[-7.9228601,-16.69624689,13.47274442],[-10.5417004,-16.69461126,13.47274442],[-11.7547998,-16.69297564,13.47274442],[-12.8435001,-16.69134001,13.47274442],[-14.1564999,-16.68970438,13.47274442],[-14.3823996,-16.68806875,13.47274442],[-14.0150003,-16.68643312,13.47274442],[-14.0311003,-16.6847975,13.47274442],[-12.7615004,-16.68316187,13.47274442],[-10.2342997,-16.68152624,13.47274442],[-8.2030001,-16.67989061,13.47274442],[-8.1965704,-16.67825499,13.47274442],[-8.47124,-16.67661936,13.47274442],[-8.2079496,-16.67498373,13.47274442],[-7.89747,-16.6733481,13.47274442],[-7.9409199,-16.67171247,13.47274442],[-7.6701598,-16.67007685,13.47274442],[-6.4390202,-16.66844122,13.47274442],[-4.8476601,-16.66680559,13.47274442],[-4.3021998,-16.66516996,13.47274442],[-4.6697402,-16.66353434,13.47274442],[-4.9298501,-16.66189871,13.47274442],[-4.9428902,-16.66026308,13.47274442],[-4.8830299,-16.65862745,13.47274442],[-4.8919201,-16.65699182,13.47274442],[-5.0749402,-16.6553562,13.47274442],[-5.2799802,-16.65372057,13.47274442],[-5.3471999,-16.65208494,13.47274442],[-5.2005,-16.65044931,13.47274442],[-4.7048101,-16.64881369,13.47274442],[-4.3305101,-16.64717806,13.47274442],[-4.3899398,-16.64554243,13.47274442],[-4.21137,-16.6439068,13.47274442],[-4.0917101,-16.64227118,13.47274442],[-3.82447,-16.64063555,13.47274442],[-3.3527701,-16.63899992,13.47274442],[-3.2008901,-16.63736429,13.47274442],[-4.6785898,-16.61773676,13.47274442],[-5.1374898,-16.61610113,13.47274442],[-5.07126,-16.6144655,13.47274442],[-2.8537199,-16.61119425,13.47274442],[-2.49403,-16.60955862,13.47274442],[-3.1249599,-16.60792299,13.47274442],[-3.00898,-16.60628736,13.47274442],[-6.2432199,-16.69788252,13.4711088],[-8.7015896,-16.69624689,13.4711088],[-12.0923004,-16.69461126,13.4711088],[-13.3551998,-16.69297564,13.4711088],[-13.2893,-16.69134001,13.4711088],[-14.6009998,-16.68970438,13.4711088],[-14.5840998,-16.68806875,13.4711088],[-13.3304005,-16.68643312,13.4711088],[-12.7145996,-16.6847975,13.4711088],[-12.2279997,-16.68316187,13.4711088],[-10.4709997,-16.68152624,13.4711088],[-9.2779303,-16.67989061,13.4711088],[-9.0604296,-16.67825499,13.4711088],[-8.5916796,-16.67661936,13.4711088],[-8.2802095,-16.67498373,13.4711088],[-8.4474001,-16.6733481,13.4711088],[-9.5236797,-16.67171247,13.4711088],[-10.2371998,-16.67007685,13.4711088],[-7.3818998,-16.66844122,13.4711088],[-4.4021101,-16.66680559,13.4711088],[-3.8431201,-16.66516996,13.4711088],[-4.3591099,-16.66353434,13.4711088],[-3.9202099,-16.66189871,13.4711088],[-4.10501,-16.66026308,13.4711088],[-4.9724498,-16.65862745,13.4711088],[-5.7262802,-16.65699182,13.4711088],[-5.7993302,-16.6553562,13.4711088],[-7.08953,-16.65372057,13.4711088],[-9.3501596,-16.65208494,13.4711088],[-7.41366,-16.65044931,13.4711088],[-6.8189301,-16.64881369,13.4711088],[-7.7351699,-16.64717806,13.4711088],[-6.0591998,-16.64554243,13.4711088],[-5.9166999,-16.6439068,13.4711088],[-6.19203,-16.64227118,13.4711088],[-5.0087199,-16.64063555,13.4711088],[-4.7214799,-16.63899992,13.4711088],[-4.68502,-16.63736429,13.4711088],[-3.73524,-16.63572866,13.4711088],[-5.5605602,-16.61937239,13.4711088],[-6.1276202,-16.61773676,13.4711088],[-8.0317402,-16.61610113,13.4711088],[-8.4858303,-16.6144655,13.4711088],[-5.2253299,-16.61282988,13.4711088],[-2.2398801,-16.60955862,13.4711088],[-3.2406499,-16.60628736,13.4711088],[-3.0452399,-16.60465174,13.4711088],[-5.9951901,-16.69951815,13.46947317],[-5.96628,-16.69788252,13.46947317],[-8.7481699,-16.69624689,13.46947317],[-12.5960999,-16.69461126,13.46947317],[-13.6476002,-16.69297564,13.46947317],[-13.0972996,-16.69134001,13.46947317],[-14.7685003,-16.68970438,13.46947317],[-14.6869001,-16.68806875,13.46947317],[-13.0691996,-16.68643312,13.46947317],[-12.5783005,-16.6847975,13.46947317],[-12.0073996,-16.68316187,13.46947317],[-10.3569002,-16.68152624,13.46947317],[-9.3200703,-16.67989061,13.46947317],[-9.3244495,-16.67825499,13.46947317],[-8.70224,-16.67661936,13.46947317],[-8.3810301,-16.67498373,13.46947317],[-8.7357197,-16.6733481,13.46947317],[-9.83846,-16.67171247,13.46947317],[-10.4389,-16.67007685,13.46947317],[-7.64259,-16.66844122,13.46947317],[-4.6528702,-16.66680559,13.46947317],[-4.0741,-16.66516996,13.46947317],[-4.7093,-16.66353434,13.46947317],[-4.0293398,-16.66189871,13.46947317],[-4.2393398,-16.66026308,13.46947317],[-5.1533098,-16.65862745,13.46947317],[-5.7402501,-16.65699182,13.46947317],[-5.9685998,-16.6553562,13.46947317],[-7.2313099,-16.65372057,13.46947317],[-9.0762196,-16.65208494,13.46947317],[-7.6732302,-16.65044931,13.46947317],[-6.9145298,-16.64881369,13.46947317],[-7.49648,-16.64717806,13.46947317],[-6.3590398,-16.64554243,13.46947317],[-6.1647301,-16.6439068,13.46947317],[-6.2093,-16.64227118,13.46947317],[-5.7136102,-16.64063555,13.46947317],[-5.1693501,-16.63899992,13.46947317],[-5.0220399,-16.63736429,13.46947317],[-4.31111,-16.63572866,13.46947317],[-2.67489,-16.63409304,13.46947317],[-2.99512,-16.63245741,13.46947317],[-4.02982,-16.63082178,13.46947317],[-4.4296298,-16.62918615,13.46947317],[-5.9980698,-16.62427927,13.46947317],[-6.1248102,-16.62264364,13.46947317],[-6.20439,-16.62100801,13.46947317],[-6.1402202,-16.61937239,13.46947317],[-6.8937602,-16.61773676,13.46947317],[-8.0154896,-16.61610113,13.46947317],[-8.1490803,-16.6144655,13.46947317],[-6.2712202,-16.61282988,13.46947317],[-3.7785101,-16.61119425,13.46947317],[-2.9881201,-16.60465174,13.46947317],[-5.9420199,-16.70115377,13.46783754],[-7.5668802,-16.69951815,13.46783754],[-8.71315,-16.69788252,13.46783754],[-9.6054897,-16.69624689,13.46783754],[-10.8107004,-16.69461126,13.46783754],[-11.6752996,-16.69297564,13.46783754],[-12.1253996,-16.69134001,13.46783754],[-12.5970001,-16.68970438,13.46783754],[-12.6487999,-16.68806875,13.46783754],[-12.2282,-16.68643312,13.46783754],[-11.6275997,-16.6847975,13.46783754],[-11.1687002,-16.68316187,13.46783754],[-10.6335001,-16.68152624,13.46783754],[-10.0669003,-16.67989061,13.46783754],[-9.6656399,-16.67825499,13.46783754],[-9.3278399,-16.67661936,13.46783754],[-9.0486898,-16.67498373,13.46783754],[-8.9836597,-16.6733481,13.46783754],[-9.1239996,-16.67171247,13.46783754],[-8.7921896,-16.67007685,13.46783754],[-7.6213598,-16.66844122,13.46783754],[-6.5244699,-16.66680559,13.46783754],[-6.0276799,-16.66516996,13.46783754],[-5.4162102,-16.66353434,13.46783754],[-4.7722998,-16.66189871,13.46783754],[-4.8568001,-16.66026308,13.46783754],[-5.2035499,-16.65862745,13.46783754],[-5.3554201,-16.65699182,13.46783754],[-5.7095699,-16.6553562,13.46783754],[-6.5619798,-16.65372057,13.46783754],[-6.9584699,-16.65208494,13.46783754],[-6.6638198,-16.65044931,13.46783754],[-5.8357301,-16.64881369,13.46783754],[-5.3575001,-16.64717806,13.46783754],[-5.76896,-16.64554243,13.46783754],[-6.2381101,-16.6439068,13.46783754],[-6.3028598,-16.64227118,13.46783754],[-6.2618899,-16.64063555,13.46783754],[-6.4352102,-16.63899992,13.46783754],[-6.3105202,-16.63736429,13.46783754],[-5.6909099,-16.63572866,13.46783754],[-5.2066398,-16.63409304,13.46783754],[-4.9875002,-16.63245741,13.46783754],[-4.5156698,-16.63082178,13.46783754],[-4.0387502,-16.62918615,13.46783754],[-5.6375399,-16.6259149,13.46783754],[-6.1508999,-16.62427927,13.46783754],[-6.8129902,-16.62264364,13.46783754],[-7.5816898,-16.62100801,13.46783754],[-8.05509,-16.61937239,13.46783754],[-8.0804501,-16.61773676,13.46783754],[-8.6276197,-16.61610113,13.46783754],[-8.5943203,-16.6144655,13.46783754],[-7.4988899,-16.61282988,13.46783754],[-7.17415,-16.61119425,13.46783754],[-6.4397998,-16.60955862,13.46783754],[-4.63906,-16.60792299,13.46783754],[-2.55323,-16.60465174,13.46783754],[-6.14502,-16.7027894,13.46620191],[-6.8221202,-16.70115377,13.46620191],[-9.7383404,-16.69951815,13.46620191],[-11.9223003,-16.69788252,13.46620191],[-10.3393002,-16.69624689,13.46620191],[-10.6220999,-16.69461126,13.46620191],[-10.9165001,-16.69297564,13.46620191],[-10.9097996,-16.69134001,13.46620191],[-11.0471001,-16.68970438,13.46620191],[-11.0241003,-16.68806875,13.46620191],[-11.2362003,-16.68643312,13.46620191],[-10.6489,-16.6847975,13.46620191],[-10.7242002,-16.68316187,13.46620191],[-10.5615997,-16.68152624,13.46620191],[-10.6056004,-16.67989061,13.46620191],[-10.2403002,-16.67825499,13.46620191],[-9.6364498,-16.67661936,13.46620191],[-9.2076597,-16.67498373,13.46620191],[-9.2007904,-16.6733481,13.46620191],[-8.8661003,-16.67171247,13.46620191],[-8.7605,-16.67007685,13.46620191],[-8.0514698,-16.66844122,13.46620191],[-7.3741298,-16.66680559,13.46620191],[-7.2595801,-16.66516996,13.46620191],[-6.0706301,-16.66353434,13.46620191],[-4.8147101,-16.66189871,13.46620191],[-4.8975902,-16.66026308,13.46620191],[-5.2245002,-16.65862745,13.46620191],[-4.4132099,-16.65699182,13.46620191],[-5.1521101,-16.6553562,13.46620191],[-6.3836799,-16.65372057,13.46620191],[-6.8034501,-16.65208494,13.46620191],[-6.4616399,-16.65044931,13.46620191],[-4.6644301,-16.64881369,13.46620191],[-2.88942,-16.64717806,13.46620191],[-5.3737798,-16.64554243,13.46620191],[-6.6182599,-16.6439068,13.46620191],[-6.8284302,-16.64227118,13.46620191],[-7.0700302,-16.64063555,13.46620191],[-7.7082,-16.63899992,13.46620191],[-7.7319798,-16.63736429,13.46620191],[-6.5803399,-16.63572866,13.46620191],[-6.2151299,-16.63409304,13.46620191],[-6.0230098,-16.63245741,13.46620191],[-4.6605902,-16.63082178,13.46620191],[-2.67869,-16.62918615,13.46620191],[-5.8758898,-16.6259149,13.46620191],[-5.9622102,-16.62427927,13.46620191],[-7.0114198,-16.62264364,13.46620191],[-8.69034,-16.62100801,13.46620191],[-9.30931,-16.61937239,13.46620191],[-9.0881395,-16.61773676,13.46620191],[-9.5555,-16.61610113,13.46620191],[-9.6721697,-16.6144655,13.46620191],[-8.9683704,-16.61282988,13.46620191],[-8.9106102,-16.61119425,13.46620191],[-8.5612602,-16.60955862,13.46620191],[-5.3800998,-16.60792299,13.46620191],[-1.2652299,-16.60628736,13.46620191],[-2.12638,-16.60465174,13.46620191],[-5.50314,-16.70442503,13.46456629],[-6.2693901,-16.7027894,13.46456629],[-7.1269798,-16.70115377,13.46456629],[-9.5579205,-16.69951815,13.46456629],[-11.3064003,-16.69788252,13.46456629],[-10.0605001,-16.69624689,13.46456629],[-10.1239996,-16.69461126,13.46456629],[-10.3795996,-16.69297564,13.46456629],[-10.1934996,-16.69134001,13.46456629],[-10.5661001,-16.68970438,13.46456629],[-10.5746002,-16.68806875,13.46456629],[-10.4400997,-16.68643312,13.46456629],[-10.5121002,-16.6847975,13.46456629],[-10.6150999,-16.68316187,13.46456629],[-10.6970997,-16.68152624,13.46456629],[-10.7145996,-16.67989061,13.46456629],[-10.526,-16.67825499,13.46456629],[-9.9225502,-16.67661936,13.46456629],[-9.5078297,-16.67498373,13.46456629],[-9.4719696,-16.6733481,13.46456629],[-8.9915895,-16.67171247,13.46456629],[-8.6735601,-16.67007685,13.46456629],[-8.16751,-16.66844122,13.46456629],[-7.4752202,-16.66680559,13.46456629],[-7.1328902,-16.66516996,13.46456629],[-6.2727499,-16.66353434,13.46456629],[-5.3629498,-16.66189871,13.46456629],[-5.28513,-16.66026308,13.46456629],[-5.5427599,-16.65862745,13.46456629],[-5.1693802,-16.65699182,13.46456629],[-5.70714,-16.6553562,13.46456629],[-6.66892,-16.65372057,13.46456629],[-6.9342899,-16.65208494,13.46456629],[-6.7721701,-16.65044931,13.46456629],[-5.5300202,-16.64881369,13.46456629],[-4.5998101,-16.64717806,13.46456629],[-5.8765998,-16.64554243,13.46456629],[-6.8003602,-16.6439068,13.46456629],[-7.1001101,-16.64227118,13.46456629],[-7.5810599,-16.64063555,13.46456629],[-7.8547702,-16.63899992,13.46456629],[-7.7675099,-16.63736429,13.46456629],[-7.2690401,-16.63572866,13.46456629],[-6.7536802,-16.63409304,13.46456629],[-6.4000502,-16.63245741,13.46456629],[-5.3804998,-16.63082178,13.46456629],[-6.2938199,-16.6259149,13.46456629],[-6.8411298,-16.62427927,13.46456629],[-7.92939,-16.62264364,13.46456629],[-9.0673399,-16.62100801,13.46456629],[-9.6823101,-16.61937239,13.46456629],[-10.0424004,-16.61773676,13.46456629],[-9.9703598,-16.61610113,13.46456629],[-9.8500099,-16.6144655,13.46456629],[-9.9432201,-16.61282988,13.46456629],[-9.5462799,-16.61119425,13.46456629],[-8.91784,-16.60955862,13.46456629],[-7.2119398,-16.60792299,13.46456629],[-4.7839298,-16.60628736,13.46456629],[-4.4349298,-16.60465174,13.46456629],[-4.3813901,-16.70606066,13.46293066],[-5.9925799,-16.70442503,13.46293066],[-6.9423599,-16.7027894,13.46293066],[-7.4314699,-16.70115377,13.46293066],[-8.0885897,-16.69951815,13.46293066],[-8.73069,-16.69788252,13.46293066],[-8.63902,-16.69624689,13.46293066],[-7.9670501,-16.69461126,13.46293066],[-7.8825698,-16.69297564,13.46293066],[-8.9033699,-16.69134001,13.46293066],[-9.1872501,-16.68970438,13.46293066],[-9.4420099,-16.68806875,13.46293066],[-9.8704901,-16.68643312,13.46293066],[-10.1233997,-16.6847975,13.46293066],[-10.302,-16.68316187,13.46293066],[-10.9989004,-16.68152624,13.46293066],[-11.5811005,-16.67989061,13.46293066],[-11.1287003,-16.67825499,13.46293066],[-10.4861002,-16.67661936,13.46293066],[-10.2223997,-16.67498373,13.46293066],[-9.8038597,-16.6733481,13.46293066],[-9.4588499,-16.67171247,13.46293066],[-8.9791298,-16.67007685,13.46293066],[-8.2400999,-16.66844122,13.46293066],[-7.5095601,-16.66680559,13.46293066],[-7.04355,-16.66516996,13.46293066],[-6.69559,-16.66353434,13.46293066],[-6.6422801,-16.66189871,13.46293066],[-6.5713201,-16.66026308,13.46293066],[-6.3045602,-16.65862745,13.46293066],[-6.5465002,-16.65699182,13.46293066],[-6.8017001,-16.6553562,13.46293066],[-7.3759098,-16.65372057,13.46293066],[-8.10888,-16.65208494,13.46293066],[-7.5783801,-16.65044931,13.46293066],[-6.5587001,-16.64881369,13.46293066],[-6.2636499,-16.64717806,13.46293066],[-6.69064,-16.64554243,13.46293066],[-7.6313,-16.6439068,13.46293066],[-8.0176096,-16.64227118,13.46293066],[-8.1472502,-16.64063555,13.46293066],[-8.7462196,-16.63899992,13.46293066],[-8.7051296,-16.63736429,13.46293066],[-8.1528597,-16.63572866,13.46293066],[-8.60359,-16.63409304,13.46293066],[-8.0313301,-16.63245741,13.46293066],[-6.3154702,-16.63082178,13.46293066],[-5.8657598,-16.62755053,13.46293066],[-7.42206,-16.6259149,13.46293066],[-8.4644499,-16.62427927,13.46293066],[-8.8644104,-16.62264364,13.46293066],[-10.2350998,-16.62100801,13.46293066],[-11.2657003,-16.61937239,13.46293066],[-10.8627996,-16.61773676,13.46293066],[-10.8788996,-16.61610113,13.46293066],[-10.9216003,-16.6144655,13.46293066],[-10.9197998,-16.61282988,13.46293066],[-12.0017004,-16.61119425,13.46293066],[-11.6014004,-16.60955862,13.46293066],[-9.6316004,-16.60792299,13.46293066],[-9.98001,-16.60628736,13.46293066],[-8.62644,-16.60465174,13.46293066],[-2.8464899,-16.70769628,13.46129503],[-4.1937199,-16.70606066,13.46129503],[-6.8312998,-16.70442503,13.46129503],[-8.1228399,-16.7027894,13.46129503],[-7.73768,-16.70115377,13.46129503],[-7.85847,-16.69951815,13.46129503],[-7.8561602,-16.69788252,13.46129503],[-7.7627101,-16.69624689,13.46129503],[-5.90277,-16.69461126,13.46129503],[-4.9916,-16.69297564,13.46129503],[-7.5708098,-16.69134001,13.46129503],[-8.3207197,-16.68970438,13.46129503],[-8.4685497,-16.68806875,13.46129503],[-9.3304796,-16.68643312,13.46129503],[-9.4819603,-16.6847975,13.46129503],[-9.8783197,-16.68316187,13.46129503],[-11.3388004,-16.68152624,13.46129503],[-13.0010996,-16.67989061,13.46129503],[-11.9513998,-16.67825499,13.46129503],[-10.7526999,-16.67661936,13.46129503],[-10.4702997,-16.67498373,13.46129503],[-10.0518999,-16.6733481,13.46129503],[-9.49333,-16.67171247,13.46129503],[-9.4345303,-16.67007685,13.46129503],[-8.4273596,-16.66844122,13.46129503],[-7.2466898,-16.66680559,13.46129503],[-7.09969,-16.66516996,13.46129503],[-7.0690899,-16.66353434,13.46129503],[-7.53192,-16.66189871,13.46129503],[-7.3712602,-16.66026308,13.46129503],[-6.83249,-16.65862745,13.46129503],[-7.0007901,-16.65699182,13.46129503],[-7.0223799,-16.6553562,13.46129503],[-7.96877,-16.65372057,13.46129503],[-9.5588799,-16.65208494,13.46129503],[-8.2830601,-16.65044931,13.46129503],[-6.70748,-16.64881369,13.46129503],[-5.9563298,-16.64717806,13.46129503],[-7.0460601,-16.64554243,13.46129503],[-8.2305603,-16.6439068,13.46129503],[-8.5764399,-16.64227118,13.46129503],[-8.51653,-16.64063555,13.46129503],[-9.3806,-16.63899992,13.46129503],[-9.4877701,-16.63736429,13.46129503],[-8.8254004,-16.63572866,13.46129503],[-10.1252003,-16.63409304,13.46129503],[-9.3391104,-16.63245741,13.46129503],[-6.6984,-16.63082178,13.46129503],[-5.9112201,-16.62755053,13.46129503],[-7.9657102,-16.6259149,13.46129503],[-9.10497,-16.62427927,13.46129503],[-9.3592796,-16.62264364,13.46129503],[-11.1560001,-16.62100801,13.46129503],[-12.2454996,-16.61937239,13.46129503],[-11.4364996,-16.61773676,13.46129503],[-11.1470003,-16.61610113,13.46129503],[-11.0839005,-16.6144655,13.46129503],[-11.6218996,-16.61282988,13.46129503],[-13.3922997,-16.61119425,13.46129503],[-13.2750998,-16.60955862,13.46129503],[-10.9917002,-16.60792299,13.46129503],[-11.9909,-16.60628736,13.46129503],[-10.6118002,-16.60465174,13.46129503],[-6.9682102,-16.7142388,13.4596594],[-6.5958099,-16.71260317,13.4596594],[-6.3727798,-16.71096754,13.4596594],[-5.46665,-16.70933191,13.4596594],[-4.4258499,-16.70769628,13.4596594],[-5.4930701,-16.70606066,13.4596594],[-7.3410201,-16.70442503,13.4596594],[-8.0784502,-16.7027894,13.4596594],[-8.1542501,-16.70115377,13.4596594],[-7.92414,-16.69951815,13.4596594],[-7.82793,-16.69788252,13.4596594],[-7.6121998,-16.69624689,13.4596594],[-6.7855201,-16.69461126,13.4596594],[-6.5388498,-16.69297564,13.4596594],[-7.6554599,-16.69134001,13.4596594],[-8.3176003,-16.68970438,13.4596594],[-8.6380901,-16.68806875,13.4596594],[-9.2401695,-16.68643312,13.4596594],[-9.6349897,-16.6847975,13.4596594],[-10.1573,-16.68316187,13.4596594],[-11.1424999,-16.68152624,13.4596594],[-11.9952002,-16.67989061,13.4596594],[-11.6127005,-16.67825499,13.4596594],[-10.9533005,-16.67661936,13.4596594],[-10.5654001,-16.67498373,13.4596594],[-10.0391998,-16.6733481,13.4596594],[-9.5093203,-16.67171247,13.4596594],[-9.0353498,-16.67007685,13.4596594],[-8.2692804,-16.66844122,13.4596594],[-7.3646798,-16.66680559,13.4596594],[-7.0462599,-16.66516996,13.4596594],[-6.8773899,-16.66353434,13.4596594],[-6.8994999,-16.66189871,13.4596594],[-6.7891002,-16.66026308,13.4596594],[-6.5886698,-16.65862745,13.4596594],[-6.7199001,-16.65699182,13.4596594],[-7.0123401,-16.6553562,13.4596594],[-7.96457,-16.65372057,13.4596594],[-8.5433102,-16.65208494,13.4596594],[-8.2961397,-16.65044931,13.4596594],[-7.4453402,-16.64881369,13.4596594],[-7.06181,-16.64717806,13.4596594],[-7.5559802,-16.64554243,13.4596594],[-8.1989403,-16.6439068,13.4596594],[-8.3378496,-16.64227118,13.4596594],[-8.5507002,-16.64063555,13.4596594],[-8.76651,-16.63899992,13.4596594],[-8.6750898,-16.63736429,13.4596594],[-8.2325096,-16.63572866,13.4596594],[-8.0932598,-16.63409304,13.4596594],[-7.7500601,-16.63245741,13.4596594],[-6.8358202,-16.63082178,13.4596594],[-6.1988301,-16.62918615,13.4596594],[-6.8846798,-16.62755053,13.4596594],[-7.9570398,-16.6259149,13.4596594],[-8.7479401,-16.62427927,13.4596594],[-9.6735802,-16.62264364,13.4596594],[-10.7650995,-16.62100801,13.4596594],[-11.5063,-16.61937239,13.4596594],[-11.6290998,-16.61773676,13.4596594],[-11.5497999,-16.61610113,13.4596594],[-11.5809002,-16.6144655,13.4596594],[-11.8111,-16.61282988,13.4596594],[-11.8781996,-16.61119425,13.4596594],[-11.6032,-16.60955862,13.4596594],[-10.7690001,-16.60792299,13.4596594],[-10.1675997,-16.60628736,13.4596594],[-9.2668304,-16.60465174,13.4596594],[-7.1491599,-16.71587442,13.45802378],[-7.1975298,-16.7142388,13.45802378],[-7.0151,-16.71260317,13.45802378],[-6.9732699,-16.71096754,13.45802378],[-6.8814001,-16.70933191,13.45802378],[-6.9812999,-16.70769628,13.45802378],[-7.2902899,-16.70606066,13.45802378],[-8.3724899,-16.70442503,13.45802378],[-9.5728197,-16.7027894,13.45802378],[-8.8003702,-16.70115377,13.45802378],[-7.4282598,-16.69951815,13.45802378],[-6.8494802,-16.69788252,13.45802378],[-7.4987202,-16.69624689,13.45802378],[-8.28901,-16.69461126,13.45802378],[-8.5441303,-16.69297564,13.45802378],[-8.2846899,-16.69134001,13.45802378],[-8.2784901,-16.68970438,13.45802378],[-8.5199404,-16.68806875,13.45802378],[-9.2924004,-16.68643312,13.45802378],[-9.9955101,-16.6847975,13.45802378],[-10.3093004,-16.68316187,13.45802378],[-11.0073004,-16.68152624,13.45802378],[-11.5783997,-16.67989061,13.45802378],[-11.4134998,-16.67825499,13.45802378],[-11.1317997,-16.67661936,13.45802378],[-11.0384998,-16.67498373,13.45802378],[-10.2286997,-16.6733481,13.45802378],[-9.2525301,-16.67171247,13.45802378],[-8.82335,-16.67007685,13.45802378],[-8.0934496,-16.66844122,13.45802378],[-6.9732299,-16.66680559,13.45802378],[-6.5071602,-16.66516996,13.45802378],[-6.52247,-16.66353434,13.45802378],[-6.20123,-16.66189871,13.45802378],[-6.1251798,-16.66026308,13.45802378],[-6.09132,-16.65862745,13.45802378],[-5.6384401,-16.65699182,13.45802378],[-6.3570099,-16.6553562,13.45802378],[-8.1008902,-16.65372057,13.45802378],[-9.3629704,-16.65208494,13.45802378],[-8.8542805,-16.65044931,13.45802378],[-7.9836502,-16.64881369,13.45802378],[-7.8559999,-16.64717806,13.45802378],[-7.9937,-16.64554243,13.45802378],[-8.56847,-16.6439068,13.45802378],[-8.9609699,-16.64227118,13.45802378],[-8.5614204,-16.64063555,13.45802378],[-8.5353203,-16.63899992,13.45802378],[-8.4114399,-16.63736429,13.45802378],[-7.3669901,-16.63572866,13.45802378],[-5.8972301,-16.63409304,13.45802378],[-5.9240799,-16.63245741,13.45802378],[-6.9574299,-16.62918615,13.45802378],[-7.2107701,-16.62755053,13.45802378],[-8.3155699,-16.6259149,13.45802378],[-8.7544003,-16.62427927,13.45802378],[-9.5545702,-16.62264364,13.45802378],[-11.2609997,-16.62100801,13.45802378],[-12.2493,-16.61937239,13.45802378],[-11.8687,-16.61773676,13.45802378],[-12.1589003,-16.61610113,13.45802378],[-12.3348999,-16.6144655,13.45802378],[-11.7245998,-16.61282988,13.45802378],[-11.0819998,-16.61119425,13.45802378],[-10.7860003,-16.60955862,13.45802378],[-10.1582003,-16.60792299,13.45802378],[-9.2131701,-16.60628736,13.45802378],[-8.9349899,-16.60465174,13.45802378],[-7.2184801,-16.71587442,13.45638815],[-7.3028402,-16.7142388,13.45638815],[-6.8861799,-16.71260317,13.45638815],[-7.0760498,-16.71096754,13.45638815],[-7.6630998,-16.70933191,13.45638815],[-7.5124602,-16.70769628,13.45638815],[-7.9730401,-16.70606066,13.45638815],[-9.6545801,-16.70442503,13.45638815],[-11.5057001,-16.7027894,13.45638815],[-9.5581303,-16.70115377,13.45638815],[-7.0476398,-16.69951815,13.45638815],[-5.4204502,-16.69788252,13.45638815],[-7.2729702,-16.69624689,13.45638815],[-9.0083599,-16.69461126,13.45638815],[-9.5630503,-16.69297564,13.45638815],[-8.5441799,-16.69134001,13.45638815],[-8.1608496,-16.68970438,13.45638815],[-8.2356701,-16.68806875,13.45638815],[-9.29984,-16.68643312,13.45638815],[-10.1286001,-16.6847975,13.45638815],[-10.2547998,-16.68316187,13.45638815],[-10.9709997,-16.68152624,13.45638815],[-11.8620005,-16.67989061,13.45638815],[-11.4406996,-16.67825499,13.45638815],[-11.0979004,-16.67661936,13.45638815],[-11.4701996,-16.67498373,13.45638815],[-10.3976002,-16.6733481,13.45638815],[-9.1853399,-16.67171247,13.45638815],[-8.9849997,-16.67007685,13.45638815],[-8.0013103,-16.66844122,13.45638815],[-6.57406,-16.66680559,13.45638815],[-6.2279401,-16.66516996,13.45638815],[-6.35847,-16.66353434,13.45638815],[-5.9590998,-16.66189871,13.45638815],[-5.9983602,-16.66026308,13.45638815],[-5.9983301,-16.65862745,13.45638815],[-4.9998498,-16.65699182,13.45638815],[-5.91786,-16.6553562,13.45638815],[-8.3378897,-16.65372057,13.45638815],[-10.1784,-16.65208494,13.45638815],[-9.19345,-16.65044931,13.45638815],[-8.1753101,-16.64881369,13.45638815],[-7.90482,-16.64717806,13.45638815],[-8.1395597,-16.64554243,13.45638815],[-8.8464499,-16.6439068,13.45638815],[-9.3177004,-16.64227118,13.45638815],[-8.25313,-16.64063555,13.45638815],[-8.4552603,-16.63899992,13.45638815],[-8.4619703,-16.63736429,13.45638815],[-6.9204402,-16.63572866,13.45638815],[-5.2775302,-16.63409304,13.45638815],[-5.5482402,-16.63245741,13.45638815],[-7.10465,-16.62918615,13.45638815],[-7.47825,-16.62755053,13.45638815],[-8.42414,-16.6259149,13.45638815],[-8.8703899,-16.62427927,13.45638815],[-9.5823803,-16.62264364,13.45638815],[-11.4209995,-16.62100801,13.45638815],[-12.4916,-16.61937239,13.45638815],[-11.8389997,-16.61773676,13.45638815],[-12.2014999,-16.61610113,13.45638815],[-12.4581003,-16.6144655,13.45638815],[-11.5832005,-16.61282988,13.45638815],[-10.9252005,-16.61119425,13.45638815],[-10.7622004,-16.60955862,13.45638815],[-10.2729998,-16.60792299,13.45638815],[-9.2061996,-16.60628736,13.45638815],[-9.1861801,-16.60465174,13.45638815],[-6.9762502,-16.71751005,13.45475252],[-7.3225098,-16.71587442,13.45475252],[-7.9491901,-16.7142388,13.45475252],[-8.1733398,-16.71260317,13.45475252],[-8.4248896,-16.71096754,13.45475252],[-8.6801901,-16.70933191,13.45475252],[-8.5683298,-16.70769628,13.45475252],[-8.8335199,-16.70606066,13.45475252],[-9.6132402,-16.70442503,13.45475252],[-10.1414003,-16.7027894,13.45475252],[-9.5904999,-16.70115377,13.45475252],[-8.2606802,-16.69951815,13.45475252],[-7.4559999,-16.69788252,13.45475252],[-7.9537501,-16.69624689,13.45475252],[-8.6159096,-16.69461126,13.45475252],[-8.7554302,-16.69297564,13.45475252],[-8.5956602,-16.69134001,13.45475252],[-8.5385599,-16.68970438,13.45475252],[-8.8151703,-16.68806875,13.45475252],[-9.4305496,-16.68643312,13.45475252],[-9.9217396,-16.6847975,13.45475252],[-10.2484999,-16.68316187,13.45475252],[-10.8079004,-16.68152624,13.45475252],[-11.2601995,-16.67989061,13.45475252],[-11.0227003,-16.67825499,13.45475252],[-10.677,-16.67661936,13.45475252],[-10.4925003,-16.67498373,13.45475252],[-9.7381096,-16.6733481,13.45475252],[-9.0323095,-16.67171247,13.45475252],[-8.4454498,-16.67007685,13.45475252],[-7.70789,-16.66844122,13.45475252],[-6.9738302,-16.66680559,13.45475252],[-6.5552802,-16.66516996,13.45475252],[-6.2512698,-16.66353434,13.45475252],[-6.0701699,-16.66189871,13.45475252],[-6.1244402,-16.66026308,13.45475252],[-6.1777401,-16.65862745,13.45475252],[-6.2574701,-16.65699182,13.45475252],[-6.8365402,-16.6553562,13.45475252],[-8.1560698,-16.65372057,13.45475252],[-9.0805302,-16.65208494,13.45475252],[-8.8500996,-16.65044931,13.45475252],[-8.1851397,-16.64881369,13.45475252],[-7.9215999,-16.64717806,13.45475252],[-7.8319502,-16.64554243,13.45475252],[-8.07411,-16.6439068,13.45475252],[-8.0991697,-16.64227118,13.45475252],[-7.5296798,-16.64063555,13.45475252],[-7.0180302,-16.63899992,13.45475252],[-6.90905,-16.63736429,13.45475252],[-6.65242,-16.63572866,13.45475252],[-6.3069301,-16.63409304,13.45475252],[-6.9274602,-16.63082178,13.45475252],[-7.4425802,-16.62918615,13.45475252],[-7.8520699,-16.62755053,13.45475252],[-8.5087099,-16.6259149,13.45475252],[-9.2854795,-16.62427927,13.45475252],[-9.8897495,-16.62264364,13.45475252],[-10.5134001,-16.62100801,13.45475252],[-10.9699001,-16.61937239,13.45475252],[-11.2080002,-16.61773676,13.45475252],[-11.4635,-16.61610113,13.45475252],[-11.6008997,-16.6144655,13.45475252],[-11.1721001,-16.61282988,13.45475252],[-10.8570995,-16.61119425,13.45475252],[-10.8078003,-16.60955862,13.45475252],[-10.5513,-16.60792299,13.45475252],[-10.1961002,-16.60628736,13.45475252],[-9.8446503,-16.60465174,13.45475252],[-6.51615,-16.71914568,13.45311689],[-6.08813,-16.71751005,13.45311689],[-6.2165098,-16.71587442,13.45311689],[-8.4513702,-16.7142388,13.45311689],[-10.5022001,-16.71260317,13.45311689],[-10.5220003,-16.71096754,13.45311689],[-9.8461304,-16.70933191,13.45311689],[-9.8376303,-16.70769628,13.45311689],[-9.8646603,-16.70606066,13.45311689],[-9.8643904,-16.70442503,13.45311689],[-10.1752005,-16.7027894,13.45311689],[-9.8362398,-16.70115377,13.45311689],[-8.9443598,-16.69951815,13.45311689],[-8.51513,-16.69788252,13.45311689],[-8.44911,-16.69624689,13.45311689],[-8.4186802,-16.69461126,13.45311689],[-8.4083595,-16.69297564,13.45311689],[-8.62432,-16.69134001,13.45311689],[-9.0916405,-16.68970438,13.45311689],[-9.2723503,-16.68806875,13.45311689],[-9.4807301,-16.68643312,13.45311689],[-9.4864902,-16.6847975,13.45311689],[-9.8275499,-16.68316187,13.45311689],[-10.7213001,-16.68152624,13.45311689],[-11.3081999,-16.67989061,13.45311689],[-10.9548998,-16.67825499,13.45311689],[-10.0394001,-16.67661936,13.45311689],[-9.4579201,-16.67498373,13.45311689],[-9.2757101,-16.6733481,13.45311689],[-8.37813,-16.67171247,13.45311689],[-7.7811999,-16.67007685,13.45311689],[-7.54878,-16.66844122,13.45311689],[-6.6452799,-16.66680559,13.45311689],[-6.3570299,-16.66516996,13.45311689],[-6.21593,-16.66353434,13.45311689],[-6.0240998,-16.66189871,13.45311689],[-6.0500798,-16.66026308,13.45311689],[-6.25565,-16.65862745,13.45311689],[-5.9896698,-16.65699182,13.45311689],[-6.5936399,-16.6553562,13.45311689],[-8.4790297,-16.65372057,13.45311689],[-9.5868902,-16.65208494,13.45311689],[-9.10851,-16.65044931,13.45311689],[-7.6655302,-16.64881369,13.45311689],[-6.63727,-16.64717806,13.45311689],[-7.42137,-16.64554243,13.45311689],[-7.5992398,-16.6439068,13.45311689],[-7.42381,-16.64227118,13.45311689],[-6.4026799,-16.63245741,13.45311689],[-7.1733298,-16.63082178,13.45311689],[-7.1448002,-16.62918615,13.45311689],[-7.7537198,-16.62755053,13.45311689],[-8.9749403,-16.6259149,13.45311689],[-9.0507698,-16.62427927,13.45311689],[-9.7065096,-16.62264364,13.45311689],[-9.8452797,-16.62100801,13.45311689],[-9.1500998,-16.61937239,13.45311689],[-10.5720997,-16.61773676,13.45311689],[-10.9846001,-16.61610113,13.45311689],[-10.9816999,-16.6144655,13.45311689],[-10.9815998,-16.61282988,13.45311689],[-10.6062002,-16.61119425,13.45311689],[-10.5854998,-16.60955862,13.45311689],[-10.6148005,-16.60792299,13.45311689],[-10.8277998,-16.60628736,13.45311689],[-10.6248999,-16.60465174,13.45311689],[-5.1061802,-16.72078131,13.45148126],[-6.5756502,-16.71914568,13.45148126],[-5.63518,-16.71751005,13.45148126],[-5.3207302,-16.71587442,13.45148126],[-9.0720196,-16.7142388,13.45148126],[-11.4858999,-16.71260317,13.45148126],[-11.4755001,-16.71096754,13.45148126],[-10.5523005,-16.70933191,13.45148126],[-10.1388998,-16.70769628,13.45148126],[-10.3255997,-16.70606066,13.45148126],[-10.5011997,-16.70442503,13.45148126],[-10.4521999,-16.7027894,13.45148126],[-10.1801996,-16.70115377,13.45148126],[-9.3016396,-16.69951815,13.45148126],[-8.56322,-16.69788252,13.45148126],[-9.0125198,-16.69624689,13.45148126],[-8.6240597,-16.69461126,13.45148126],[-8.3825197,-16.69297564,13.45148126],[-8.9362497,-16.69134001,13.45148126],[-9.2666397,-16.68970438,13.45148126],[-9.3666697,-16.68806875,13.45148126],[-9.6056299,-16.68643312,13.45148126],[-9.4626398,-16.6847975,13.45148126],[-9.7570601,-16.68316187,13.45148126],[-10.6660995,-16.68152624,13.45148126],[-11.4075003,-16.67989061,13.45148126],[-10.8787003,-16.67825499,13.45148126],[-9.8510504,-16.67661936,13.45148126],[-9.3195696,-16.67498373,13.45148126],[-9.1227102,-16.6733481,13.45148126],[-8.2381897,-16.67171247,13.45148126],[-7.7249398,-16.67007685,13.45148126],[-7.5315599,-16.66844122,13.45148126],[-6.63554,-16.66680559,13.45148126],[-6.3459802,-16.66516996,13.45148126],[-6.38866,-16.66353434,13.45148126],[-6.0461302,-16.66189871,13.45148126],[-6.1209698,-16.66026308,13.45148126],[-6.6266899,-16.65862745,13.45148126],[-6.1276302,-16.65699182,13.45148126],[-6.8947601,-16.6553562,13.45148126],[-8.7318802,-16.65372057,13.45148126],[-9.66854,-16.65208494,13.45148126],[-9.2369299,-16.65044931,13.45148126],[-8.0656004,-16.64881369,13.45148126],[-6.8799801,-16.64717806,13.45148126],[-7.6263199,-16.64554243,13.45148126],[-7.6662698,-16.6439068,13.45148126],[-7.0332999,-16.64063555,13.45148126],[-5.3256402,-16.63899992,13.45148126],[-4.9882102,-16.63736429,13.45148126],[-6.49156,-16.63572866,13.45148126],[-6.47331,-16.63409304,13.45148126],[-6.86026,-16.63245741,13.45148126],[-7.9212599,-16.63082178,13.45148126],[-7.6473098,-16.62918615,13.45148126],[-8.4341803,-16.62755053,13.45148126],[-9.6277504,-16.6259149,13.45148126],[-9.4733896,-16.62427927,13.45148126],[-10.2298002,-16.62264364,13.45148126],[-10.4645004,-16.62100801,13.45148126],[-9.8604002,-16.61937239,13.45148126],[-11.0085001,-16.61773676,13.45148126],[-11.1901999,-16.61610113,13.45148126],[-11.0711002,-16.6144655,13.45148126],[-11.0302,-16.61282988,13.45148126],[-10.6070995,-16.61119425,13.45148126],[-10.5087996,-16.60955862,13.45148126],[-10.6148996,-16.60792299,13.45148126],[-10.7479,-16.60628736,13.45148126],[-10.526,-16.60465174,13.45148126],[-6.7793498,-16.72241693,13.44984564],[-6.7680001,-16.72078131,13.44984564],[-7.8372898,-16.71914568,13.44984564],[-8.4547596,-16.71751005,13.44984564],[-8.99753,-16.71587442,13.44984564],[-10.2372999,-16.7142388,13.44984564],[-11.4742002,-16.71260317,13.44984564],[-11.5902996,-16.71096754,13.44984564],[-11.0965996,-16.70933191,13.44984564],[-10.8421001,-16.70769628,13.44984564],[-10.8367996,-16.70606066,13.44984564],[-11.1202002,-16.70442503,13.44984564],[-11.1035995,-16.7027894,13.44984564],[-10.8472996,-16.70115377,13.44984564],[-10.3677998,-16.69951815,13.44984564],[-10.0604,-16.69788252,13.44984564],[-9.7164803,-16.69624689,13.44984564],[-9.3566198,-16.69461126,13.44984564],[-9.0700998,-16.69297564,13.44984564],[-9.2159405,-16.69134001,13.44984564],[-9.2908697,-16.68970438,13.44984564],[-9.5200796,-16.68806875,13.44984564],[-9.9680004,-16.68643312,13.44984564],[-10.4736996,-16.6847975,13.44984564],[-10.6464996,-16.68316187,13.44984564],[-10.6814003,-16.68152624,13.44984564],[-10.6864996,-16.67989061,13.44984564],[-10.3104,-16.67825499,13.44984564],[-9.8062201,-16.67661936,13.44984564],[-9.3637104,-16.67498373,13.44984564],[-8.9807301,-16.6733481,13.44984564],[-8.7576704,-16.67171247,13.44984564],[-8.4171801,-16.67007685,13.44984564],[-7.7228999,-16.66844122,13.44984564],[-7.0358901,-16.66680559,13.44984564],[-6.6391301,-16.66516996,13.44984564],[-6.52701,-16.66353434,13.44984564],[-6.4510198,-16.66189871,13.44984564],[-6.5972199,-16.66026308,13.44984564],[-7.2528901,-16.65862745,13.44984564],[-8.0720501,-16.65699182,13.44984564],[-8.57514,-16.6553562,13.44984564],[-9.3055,-16.65372057,13.44984564],[-10.0524998,-16.65208494,13.44984564],[-9.8477802,-16.65044931,13.44984564],[-9.3832903,-16.64881369,13.44984564],[-9.3268099,-16.64717806,13.44984564],[-8.6689796,-16.64554243,13.44984564],[-7.9465199,-16.6439068,13.44984564],[-7.4604101,-16.64063555,13.44984564],[-7.56778,-16.63899992,13.44984564],[-7.55369,-16.63736429,13.44984564],[-7.6408401,-16.63572866,13.44984564],[-8.1838903,-16.63409304,13.44984564],[-8.59443,-16.63245741,13.44984564],[-9.3415604,-16.63082178,13.44984564],[-10.4357004,-16.62918615,13.44984564],[-10.7412996,-16.62755053,13.44984564],[-11.0319004,-16.6259149,13.44984564],[-11.7468004,-16.62427927,13.44984564],[-11.9157,-16.62264364,13.44984564],[-12.4478998,-16.62100801,13.44984564],[-13.0446997,-16.61937239,13.44984564],[-12.3877001,-16.61773676,13.44984564],[-11.8287001,-16.61610113,13.44984564],[-11.5656004,-16.6144655,13.44984564],[-11.1420002,-16.61282988,13.44984564],[-10.5794001,-16.61119425,13.44984564],[-10.3336,-16.60955862,13.44984564],[-10.6679001,-16.60792299,13.44984564],[-11.0141001,-16.60628736,13.44984564],[-10.7860003,-16.60465174,13.44984564],[-6.7005,-16.72241693,13.44821001],[-6.02174,-16.72078131,13.44821001],[-8.6552401,-16.71914568,13.44821001],[-11.4081001,-16.71751005,13.44821001],[-12.0860004,-16.71587442,13.44821001],[-11.7778997,-16.7142388,13.44821001],[-12.9516001,-16.71260317,13.44821001],[-12.9041996,-16.71096754,13.44821001],[-11.6385002,-16.70933191,13.44821001],[-10.6604996,-16.70769628,13.44821001],[-10.9706001,-16.70606066,13.44821001],[-11.8767996,-16.70442503,13.44821001],[-12.7082005,-16.7027894,13.44821001],[-11.9714003,-16.70115377,13.44821001],[-11.2940998,-16.69951815,13.44821001],[-11.5412998,-16.69788252,13.44821001],[-10.6023998,-16.69624689,13.44821001],[-9.7150297,-16.69461126,13.44821001],[-9.4498796,-16.69297564,13.44821001],[-9.4727602,-16.69134001,13.44821001],[-9.2665596,-16.68970438,13.44821001],[-9.3015404,-16.68806875,13.44821001],[-10.4025002,-16.68643312,13.44821001],[-11.7226,-16.6847975,13.44821001],[-11.5283003,-16.68316187,13.44821001],[-10.7065001,-16.68152624,13.44821001],[-10.1868,-16.67989061,13.44821001],[-10.1276999,-16.67825499,13.44821001],[-9.4359999,-16.67661936,13.44821001],[-8.9063101,-16.67498373,13.44821001],[-8.9896402,-16.6733481,13.44821001],[-9.1205301,-16.67171247,13.44821001],[-9.4977903,-16.67007685,13.44821001],[-8.1956301,-16.66844122,13.44821001],[-6.7993002,-16.66680559,13.44821001],[-6.4730301,-16.66516996,13.44821001],[-6.6967201,-16.66353434,13.44821001],[-6.2752299,-16.66189871,13.44821001],[-6.4222598,-16.66026308,13.44821001],[-8.0342197,-16.65862745,13.44821001],[-9.7853098,-16.65699182,13.44821001],[-9.6153002,-16.6553562,13.44821001],[-10.2088003,-16.65372057,13.44821001],[-11.5164003,-16.65208494,13.44821001],[-10.7407999,-16.65044931,13.44821001],[-10.4426003,-16.64881369,13.44821001],[-11.1564999,-16.64717806,13.44821001],[-9.6563597,-16.64554243,13.44821001],[-7.64463,-16.6439068,13.44821001],[-7.8381,-16.64063555,13.44821001],[-8.6847601,-16.63899992,13.44821001],[-8.9190903,-16.63736429,13.44821001],[-8.7805796,-16.63572866,13.44821001],[-9.3137503,-16.63409304,13.44821001],[-9.4591503,-16.63245741,13.44821001],[-10.7490997,-16.63082178,13.44821001],[-12.9729996,-16.62918615,13.44821001],[-12.3505001,-16.62755053,13.44821001],[-12.3790998,-16.6259149,13.44821001],[-13.3879995,-16.62427927,13.44821001],[-12.9636002,-16.62264364,13.44821001],[-14.2193003,-16.62100801,13.44821001],[-15.9813995,-16.61937239,13.44821001],[-13.5354004,-16.61773676,13.44821001],[-12.0190001,-16.61610113,13.44821001],[-11.7958002,-16.6144655,13.44821001],[-11.1470003,-16.61282988,13.44821001],[-9.9754601,-16.61119425,13.44821001],[-9.8518696,-16.60955862,13.44821001],[-10.5878,-16.60792299,13.44821001],[-12.0472002,-16.60628736,13.44821001],[-11.4905005,-16.60465174,13.44821001],[-8.98139,-16.72405256,13.44657438],[-7.1550698,-16.72241693,13.44657438],[-6.1076298,-16.72078131,13.44657438],[-9.4605703,-16.71914568,13.44657438],[-12.0681,-16.71751005,13.44657438],[-12.5795002,-16.71587442,13.44657438],[-12.7468996,-16.7142388,13.44657438],[-13.3235998,-16.71260317,13.44657438],[-13.2725,-16.71096754,13.44657438],[-12.3631001,-16.70933191,13.44657438],[-10.9004002,-16.70769628,13.44657438],[-11.3620996,-16.70606066,13.44657438],[-12.1753998,-16.70442503,13.44657438],[-12.7496004,-16.7027894,13.44657438],[-12.2203999,-16.70115377,13.44657438],[-11.6745996,-16.69951815,13.44657438],[-11.6244001,-16.69788252,13.44657438],[-10.9475002,-16.69624689,13.44657438],[-9.95681,-16.69461126,13.44657438],[-9.5999699,-16.69297564,13.44657438],[-9.7676201,-16.69134001,13.44657438],[-9.4003296,-16.68970438,13.44657438],[-9.4752197,-16.68806875,13.44657438],[-10.5985003,-16.68643312,13.44657438],[-11.6775999,-16.6847975,13.44657438],[-11.5998001,-16.68316187,13.44657438],[-10.8571997,-16.68152624,13.44657438],[-10.3002005,-16.67989061,13.44657438],[-10.1592999,-16.67825499,13.44657438],[-9.5407896,-16.67661936,13.44657438],[-8.9797897,-16.67498373,13.44657438],[-8.9939804,-16.6733481,13.44657438],[-8.9400501,-16.67171247,13.44657438],[-9.0521002,-16.67007685,13.44657438],[-8.0243998,-16.66844122,13.44657438],[-6.9688401,-16.66680559,13.44657438],[-6.6746702,-16.66516996,13.44657438],[-6.7882199,-16.66353434,13.44657438],[-6.4931698,-16.66189871,13.44657438],[-6.7273202,-16.66026308,13.44657438],[-8.0365105,-16.65862745,13.44657438],[-9.3461504,-16.65699182,13.44657438],[-9.6401196,-16.6553562,13.44657438],[-10.2230997,-16.65372057,13.44657438],[-10.9604998,-16.65208494,13.44657438],[-10.7392998,-16.65044931,13.44657438],[-10.7262001,-16.64881369,13.44657438],[-10.7546997,-16.64717806,13.44657438],[-9.9690504,-16.64554243,13.44657438],[-8.5278502,-16.6439068,13.44657438],[-8.7425003,-16.63899992,13.44657438],[-8.9275904,-16.63736429,13.44657438],[-9.2880297,-16.63572866,13.44657438],[-9.5153503,-16.63409304,13.44657438],[-9.9654598,-16.63245741,13.44657438],[-11.1805,-16.63082178,13.44657438],[-12.2489004,-16.62918615,13.44657438],[-12.3565998,-16.62755053,13.44657438],[-12.6576004,-16.6259149,13.44657438],[-12.9749002,-16.62427927,13.44657438],[-13.1662998,-16.62264364,13.44657438],[-13.8418999,-16.62100801,13.44657438],[-14.4133997,-16.61937239,13.44657438],[-13.3283997,-16.61773676,13.44657438],[-12.2587004,-16.61610113,13.44657438],[-11.7868004,-16.6144655,13.44657438],[-11.1366997,-16.61282988,13.44657438],[-10.3168001,-16.61119425,13.44657438],[-9.9126301,-16.60955862,13.44657438],[-9.91784,-16.60792299,13.44657438],[-10.3906002,-16.60628736,13.44657438],[-9.7929401,-16.60465174,13.44657438],[-10.5962,-16.72405256,13.44493875],[-10.2725,-16.72241693,13.44493875],[-10.3626003,-16.72078131,13.44493875],[-11.2532997,-16.71914568,13.44493875],[-12.5922003,-16.71751005,13.44493875],[-13.1478996,-16.71587442,13.44493875],[-13.3548002,-16.7142388,13.44493875],[-13.9979,-16.71260317,13.44493875],[-13.9181004,-16.71096754,13.44493875],[-13.0249004,-16.70933191,13.44493875],[-12.3695002,-16.70769628,13.44493875],[-12.3668003,-16.70606066,13.44493875],[-12.4546003,-16.70442503,13.44493875],[-12.2881002,-16.7027894,13.44493875],[-12.1190996,-16.70115377,13.44493875],[-12.0462999,-16.69951815,13.44493875],[-11.948,-16.69788252,13.44493875],[-11.2693005,-16.69624689,13.44493875],[-10.6147003,-16.69461126,13.44493875],[-10.1876001,-16.69297564,13.44493875],[-10.0193996,-16.69134001,13.44493875],[-9.6553602,-16.68970438,13.44493875],[-9.7894001,-16.68806875,13.44493875],[-10.7803001,-16.68643312,13.44493875],[-11.8772001,-16.6847975,13.44493875],[-11.8795004,-16.68316187,13.44493875],[-11.1519003,-16.68152624,13.44493875],[-10.7681999,-16.67989061,13.44493875],[-10.3192997,-16.67825499,13.44493875],[-9.6797895,-16.67661936,13.44493875],[-9.0008001,-16.67498373,13.44493875],[-8.7631998,-16.6733481,13.44493875],[-8.5987701,-16.67171247,13.44493875],[-8.2252398,-16.67007685,13.44493875],[-7.7869401,-16.66844122,13.44493875],[-7.4101801,-16.66680559,13.44493875],[-7.26577,-16.66516996,13.44493875],[-7.0717001,-16.66353434,13.44493875],[-6.89885,-16.66189871,13.44493875],[-7.1096001,-16.66026308,13.44493875],[-8.0111399,-16.65862745,13.44493875],[-8.9007797,-16.65699182,13.44493875],[-9.3365898,-16.6553562,13.44493875],[-9.9618196,-16.65372057,13.44493875],[-10.4664001,-16.65208494,13.44493875],[-10.6668997,-16.65044931,13.44493875],[-10.6527004,-16.64881369,13.44493875],[-10.5284996,-16.64717806,13.44493875],[-10.3241997,-16.64554243,13.44493875],[-10.5373001,-16.6439068,13.44493875],[-10.6610003,-16.64227118,13.44493875],[-9.6219902,-16.64063555,13.44493875],[-8.7383699,-16.63736429,13.44493875],[-9.5839195,-16.63572866,13.44493875],[-10.5279999,-16.63409304,13.44493875],[-10.8632002,-16.63245741,13.44493875],[-11.3943996,-16.63082178,13.44493875],[-12.0819998,-16.62918615,13.44493875],[-12.3183002,-16.62755053,13.44493875],[-12.6307001,-16.6259149,13.44493875],[-12.8114004,-16.62427927,13.44493875],[-12.9910002,-16.62264364,13.44493875],[-13.2847004,-16.62100801,13.44493875],[-13.4000998,-16.61937239,13.44493875],[-12.9897003,-16.61773676,13.44493875],[-12.4136,-16.61610113,13.44493875],[-12.1926003,-16.6144655,13.44493875],[-11.316,-16.61282988,13.44493875],[-10.6606998,-16.61119425,13.44493875],[-10.1129999,-16.60955862,13.44493875],[-7.3717999,-16.60628736,13.44493875],[-7.0755,-16.60465174,13.44493875],[-11.5415001,-16.72405256,13.44330313],[-12.3476,-16.72241693,13.44330313],[-12.7686996,-16.72078131,13.44330313],[-12.5733004,-16.71914568,13.44330313],[-14.2669001,-16.71751005,13.44330313],[-14.8278999,-16.71587442,13.44330313],[-14.2894001,-16.7142388,13.44330313],[-15.5853004,-16.71260317,13.44330313],[-15.4020996,-16.71096754,13.44330313],[-13.5825005,-16.70933191,13.44330313],[-12.9743996,-16.70769628,13.44330313],[-12.8332996,-16.70606066,13.44330313],[-12.5900002,-16.70442503,13.44330313],[-12.4090004,-16.7027894,13.44330313],[-12.3289003,-16.70115377,13.44330313],[-12.4371004,-16.69951815,13.44330313],[-13.0592003,-16.69788252,13.44330313],[-11.8387003,-16.69624689,13.44330313],[-10.8479004,-16.69461126,13.44330313],[-10.75,-16.69297564,13.44330313],[-10.2582998,-16.69134001,13.44330313],[-9.1061201,-16.68970438,13.44330313],[-8.9439096,-16.68806875,13.44330313],[-11.0124998,-16.68643312,13.44330313],[-13.3955002,-16.6847975,13.44330313],[-12.9756002,-16.68316187,13.44330313],[-11.3399,-16.68152624,13.44330313],[-10.9481001,-16.67989061,13.44330313],[-10.6402998,-16.67825499,13.44330313],[-9.4738798,-16.67661936,13.44330313],[-8.6077003,-16.67498373,13.44330313],[-8.6334295,-16.6733481,13.44330313],[-8.2256298,-16.67171247,13.44330313],[-8.0568104,-16.67007685,13.44330313],[-7.7502398,-16.66844122,13.44330313],[-7.6900702,-16.66680559,13.44330313],[-7.87746,-16.66516996,13.44330313],[-7.1844602,-16.66353434,13.44330313],[-6.9061699,-16.66189871,13.44330313],[-6.9788899,-16.66026308,13.44330313],[-8.0639601,-16.65862745,13.44330313],[-9.2355604,-16.65699182,13.44330313],[-9.2442999,-16.6553562,13.44330313],[-9.95539,-16.65372057,13.44330313],[-10.5836,-16.65208494,13.44330313],[-10.5675001,-16.65044931,13.44330313],[-10.6156998,-16.64881369,13.44330313],[-10.6093998,-16.64717806,13.44330313],[-10.7318001,-16.64554243,13.44330313],[-11.8214998,-16.6439068,13.44330313],[-13.0183001,-16.64227118,13.44330313],[-10.5403004,-16.64063555,13.44330313],[-8.4871101,-16.63899992,13.44330313],[-8.1695099,-16.63736429,13.44330313],[-9.9136896,-16.63572866,13.44330313],[-11.2179003,-16.63409304,13.44330313],[-11.2811003,-16.63245741,13.44330313],[-11.7612,-16.63082178,13.44330313],[-12.5112,-16.62918615,13.44330313],[-12.4483004,-16.62755053,13.44330313],[-12.6780005,-16.6259149,13.44330313],[-13.0209999,-16.62427927,13.44330313],[-12.9233999,-16.62264364,13.44330313],[-13.1918001,-16.62100801,13.44330313],[-13.7275,-16.61937239,13.44330313],[-12.7781,-16.61773676,13.44330313],[-12.6027002,-16.61610113,13.44330313],[-12.9393997,-16.6144655,13.44330313],[-11.2686996,-16.61282988,13.44330313],[-10.5684996,-16.61119425,13.44330313],[-10.4755001,-16.60955862,13.44330313],[-5.86514,-16.60465174,13.44330313],[-11.9427996,-16.72568819,13.4416675],[-12.3271999,-16.72405256,13.4416675],[-12.9101,-16.72241693,13.4416675],[-13.0565996,-16.72078131,13.4416675],[-13.4261999,-16.71914568,13.4416675],[-14.2840996,-16.71751005,13.4416675],[-14.5346003,-16.71587442,13.4416675],[-14.3783998,-16.7142388,13.4416675],[-14.8410997,-16.71260317,13.4416675],[-14.5945997,-16.71096754,13.4416675],[-13.5370998,-16.70933191,13.4416675],[-13.1286001,-16.70769628,13.4416675],[-12.9974003,-16.70606066,13.4416675],[-12.6814003,-16.70442503,13.4416675],[-12.4573002,-16.7027894,13.4416675],[-12.3416004,-16.70115377,13.4416675],[-12.3429003,-16.69951815,13.4416675],[-12.3774004,-16.69788252,13.4416675],[-11.5527,-16.69624689,13.4416675],[-10.8779001,-16.69461126,13.4416675],[-10.6352997,-16.69297564,13.4416675],[-10.1875,-16.69134001,13.4416675],[-9.5698099,-16.68970438,13.4416675],[-9.64151,-16.68806875,13.4416675],[-10.9713001,-16.68643312,13.4416675],[-12.3627005,-16.6847975,13.4416675],[-12.3001003,-16.68316187,13.4416675],[-11.3919001,-16.68152624,13.4416675],[-10.8999004,-16.67989061,13.4416675],[-10.4977999,-16.67825499,13.4416675],[-9.6877899,-16.67661936,13.4416675],[-9.01752,-16.67498373,13.4416675],[-8.6688995,-16.6733481,13.4416675],[-8.1827297,-16.67171247,13.4416675],[-7.7617898,-16.67007685,13.4416675],[-7.3070402,-16.66844122,13.4416675],[-7.0497999,-16.66680559,13.4416675],[-6.99754,-16.66516996,13.4416675],[-6.5288901,-16.66353434,13.4416675],[-6.6094098,-16.66189871,13.4416675],[-6.8755999,-16.66026308,13.4416675],[-7.5656199,-16.65862745,13.4416675],[-8.4995298,-16.65699182,13.4416675],[-8.9971905,-16.6553562,13.4416675],[-9.7830801,-16.65372057,13.4416675],[-10.5089998,-16.65208494,13.4416675],[-10.7147999,-16.65044931,13.4416675],[-10.8678999,-16.64881369,13.4416675],[-10.8837004,-16.64717806,13.4416675],[-10.7694998,-16.64554243,13.4416675],[-10.9169998,-16.6439068,13.4416675],[-11.0068998,-16.64227118,13.4416675],[-10.1529999,-16.64063555,13.4416675],[-9.3427696,-16.63736429,13.4416675],[-10.2082996,-16.63572866,13.4416675],[-10.9771996,-16.63409304,13.4416675],[-11.2545004,-16.63245741,13.4416675],[-11.6555004,-16.63082178,13.4416675],[-12.1631002,-16.62918615,13.4416675],[-12.2568998,-16.62755053,13.4416675],[-12.3250999,-16.6259149,13.4416675],[-12.5634003,-16.62427927,13.4416675],[-12.4400997,-16.62264364,13.4416675],[-12.3599005,-16.62100801,13.4416675],[-12.3773003,-16.61937239,13.4416675],[-11.8934002,-16.61773676,13.4416675],[-11.7983999,-16.61610113,13.4416675],[-11.3872995,-16.6144655,13.4416675],[-10.1415997,-16.61282988,13.4416675],[-9.1442299,-16.61119425,13.4416675],[-8.5930796,-16.60955862,13.4416675],[-11.7213001,-16.72568819,13.44003187],[-12.5592003,-16.72405256,13.44003187],[-13.2929001,-16.72241693,13.44003187],[-13.7790003,-16.72078131,13.44003187],[-13.8922997,-16.71914568,13.44003187],[-13.9980001,-16.71751005,13.44003187],[-14.1984997,-16.71587442,13.44003187],[-13.5438995,-16.7142388,13.44003187],[-12.4231005,-16.71260317,13.44003187],[-12.3079004,-16.71096754,13.44003187],[-13.1083002,-16.70933191,13.44003187],[-13.5717001,-16.70769628,13.44003187],[-13.3416004,-16.70606066,13.44003187],[-12.8472004,-16.70442503,13.44003187],[-12.5937004,-16.7027894,13.44003187],[-12.2690001,-16.70115377,13.44003187],[-11.618,-16.69951815,13.44003187],[-10.9397001,-16.69788252,13.44003187],[-10.9427004,-16.69624689,13.44003187],[-10.8690004,-16.69461126,13.44003187],[-10.7643003,-16.69297564,13.44003187],[-10.3015003,-16.69134001,13.44003187],[-9.8193502,-16.68970438,13.44003187],[-9.94207,-16.68806875,13.44003187],[-10.8530998,-16.68643312,13.44003187],[-11.7448997,-16.6847975,13.44003187],[-11.7692003,-16.68316187,13.44003187],[-11.1408005,-16.68152624,13.44003187],[-10.5014,-16.67989061,13.44003187],[-10.2824001,-16.67825499,13.44003187],[-10.0544996,-16.67661936,13.44003187],[-9.9397402,-16.67498373,13.44003187],[-9.0284901,-16.6733481,13.44003187],[-7.7860599,-16.67171247,13.44003187],[-6.9281201,-16.67007685,13.44003187],[-6.6613598,-16.66844122,13.44003187],[-5.79879,-16.66680559,13.44003187],[-5.32091,-16.66516996,13.44003187],[-5.7606902,-16.66353434,13.44003187],[-5.78126,-16.66189871,13.44003187],[-6.0513301,-16.66026308,13.44003187],[-6.9482298,-16.65862745,13.44003187],[-7.2830601,-16.65699182,13.44003187],[-8.0408602,-16.6553562,13.44003187],[-9.6396198,-16.65372057,13.44003187],[-10.6406002,-16.65208494,13.44003187],[-10.7859001,-16.65044931,13.44003187],[-11.2215004,-16.64881369,13.44003187],[-11.6150999,-16.64717806,13.44003187],[-10.8478003,-16.64554243,13.44003187],[-9.4556799,-16.6439068,13.44003187],[-10.1062002,-16.63899992,13.44003187],[-10.3211002,-16.63736429,13.44003187],[-10.5058002,-16.63572866,13.44003187],[-10.8678999,-16.63409304,13.44003187],[-11.1362,-16.63245741,13.44003187],[-11.5393,-16.63082178,13.44003187],[-11.8167,-16.62918615,13.44003187],[-11.9101,-16.62755053,13.44003187],[-11.9741001,-16.6259149,13.44003187],[-11.8463001,-16.62427927,13.44003187],[-11.7502003,-16.62264364,13.44003187],[-10.9834003,-16.62100801,13.44003187],[-9.9127798,-16.61937239,13.44003187],[-10.7306995,-16.61773676,13.44003187],[-10.7171001,-16.61610113,13.44003187],[-10.5293999,-16.6144655,13.44003187],[-9.0309696,-16.61282988,13.44003187],[-6.2085099,-16.61119425,13.44003187],[-11.5228996,-16.72732382,13.43839624],[-10.5094004,-16.72568819,13.43839624],[-12.3608999,-16.72405256,13.43839624],[-13.9347,-16.72241693,13.43839624],[-14.1375999,-16.72078131,13.43839624],[-14.2376003,-16.71914568,13.43839624],[-14.2271004,-16.71751005,13.43839624],[-14.1604996,-16.71587442,13.43839624],[-13.2101002,-16.7142388,13.43839624],[-10.0979996,-16.71260317,13.43839624],[-10.2250004,-16.71096754,13.43839624],[-12.9855003,-16.70933191,13.43839624],[-14.3220997,-16.70769628,13.43839624],[-13.8938999,-16.70606066,13.43839624],[-12.9653997,-16.70442503,13.43839624],[-12.7305002,-16.7027894,13.43839624],[-12.3073997,-16.70115377,13.43839624],[-11.0201998,-16.69951815,13.43839624],[-9.8776798,-16.69788252,13.43839624],[-10.5710001,-16.69624689,13.43839624],[-10.9783001,-16.69461126,13.43839624],[-11.2707996,-16.69297564,13.43839624],[-10.4582005,-16.69134001,13.43839624],[-9.5576801,-16.68970438,13.43839624],[-9.49547,-16.68806875,13.43839624],[-10.7509003,-16.68643312,13.43839624],[-12.1386995,-16.6847975,13.43839624],[-12.0108995,-16.68316187,13.43839624],[-10.8719997,-16.68152624,13.43839624],[-10.0131998,-16.67989061,13.43839624],[-10.1684999,-16.67825499,13.43839624],[-10.2205,-16.67661936,13.43839624],[-10.7277002,-16.67498373,13.43839624],[-9.3860703,-16.6733481,13.43839624],[-7.2880802,-16.67171247,13.43839624],[-6.38623,-16.67007685,13.43839624],[-6.2831502,-16.66844122,13.43839624],[-5.0891199,-16.66680559,13.43839624],[-4.54597,-16.66516996,13.43839624],[-5.38307,-16.66353434,13.43839624],[-5.4031301,-16.66189871,13.43839624],[-5.49687,-16.66026308,13.43839624],[-6.6304402,-16.65862745,13.43839624],[-6.80654,-16.65699182,13.43839624],[-7.4270802,-16.6553562,13.43839624],[-9.5532398,-16.65372057,13.43839624],[-10.9518003,-16.65208494,13.43839624],[-10.8168001,-16.65044931,13.43839624],[-11.4247999,-16.64881369,13.43839624],[-12.1007004,-16.64717806,13.43839624],[-7.5219798,-16.64227118,13.43839624],[-9.4818697,-16.64063555,13.43839624],[-10.3857002,-16.63899992,13.43839624],[-10.5258999,-16.63736429,13.43839624],[-10.7252998,-16.63572866,13.43839624],[-10.9948997,-16.63409304,13.43839624],[-11.1160002,-16.63245741,13.43839624],[-11.5122995,-16.63082178,13.43839624],[-11.7605,-16.62918615,13.43839624],[-11.7438002,-16.62755053,13.43839624],[-11.8093004,-16.6259149,13.43839624],[-11.7152996,-16.62427927,13.43839624],[-11.5436001,-16.62264364,13.43839624],[-10.5271997,-16.62100801,13.43839624],[-9.2578602,-16.61937239,13.43839624],[-10.1588001,-16.61773676,13.43839624],[-10.3878002,-16.61610113,13.43839624],[-10.4844999,-16.6144655,13.43839624],[-8.5564098,-16.61282988,13.43839624],[-12.6478996,-16.72732382,13.43676061],[-12.5901003,-16.72568819,13.43676061],[-13.7882004,-16.72405256,13.43676061],[-14.7241001,-16.72241693,13.43676061],[-14.8745003,-16.72078131,13.43676061],[-14.9523001,-16.71914568,13.43676061],[-14.6566,-16.71751005,13.43676061],[-14.4322996,-16.71587442,13.43676061],[-13.7497997,-16.7142388,13.43676061],[-12.1941996,-16.71260317,13.43676061],[-12.1178999,-16.71096754,13.43676061],[-13.1682997,-16.70933191,13.43676061],[-13.6946001,-16.70769628,13.43676061],[-13.4840002,-16.70606066,13.43676061],[-12.8878002,-16.70442503,13.43676061],[-12.6351004,-16.7027894,13.43676061],[-12.1391001,-16.70115377,13.43676061],[-11.3978996,-16.69951815,13.43676061],[-10.7489996,-16.69788252,13.43676061],[-10.6521997,-16.69624689,13.43676061],[-10.6578999,-16.69461126,13.43676061],[-10.3979998,-16.69297564,13.43676061],[-9.8822803,-16.69134001,13.43676061],[-9.5122204,-16.68970438,13.43676061],[-9.6576004,-16.68806875,13.43676061],[-10.4934998,-16.68643312,13.43676061],[-11.4518995,-16.6847975,13.43676061],[-11.6414003,-16.68316187,13.43676061],[-11.1372004,-16.68152624,13.43676061],[-10.6891003,-16.67989061,13.43676061],[-10.2849998,-16.67825499,13.43676061],[-10.0718002,-16.67661936,13.43676061],[-9.7441797,-16.67498373,13.43676061],[-8.7869701,-16.6733481,13.43676061],[-7.6788301,-16.67171247,13.43676061],[-6.9268098,-16.67007685,13.43676061],[-6.2715101,-16.66844122,13.43676061],[-5.5184002,-16.66680559,13.43676061],[-5.0693898,-16.66516996,13.43676061],[-5.1601601,-16.66353434,13.43676061],[-5.2467899,-16.66189871,13.43676061],[-5.6094098,-16.66026308,13.43676061],[-6.56565,-16.65862745,13.43676061],[-7.4654198,-16.65699182,13.43676061],[-8.2767601,-16.6553562,13.43676061],[-9.4142399,-16.65372057,13.43676061],[-10.5438995,-16.65208494,13.43676061],[-10.7873001,-16.65044931,13.43676061],[-11.0663004,-16.64881369,13.43676061],[-11.4905996,-16.64717806,13.43676061],[-11.1752005,-16.64554243,13.43676061],[-10.3566999,-16.6439068,13.43676061],[-9.8548403,-16.64227118,13.43676061],[-10.1730003,-16.64063555,13.43676061],[-10.3980999,-16.63899992,13.43676061],[-10.5079002,-16.63736429,13.43676061],[-10.7543001,-16.63572866,13.43676061],[-11.1478004,-16.63409304,13.43676061],[-11.2948999,-16.63245741,13.43676061],[-11.4778004,-16.63082178,13.43676061],[-11.6423998,-16.62918615,13.43676061],[-11.6342001,-16.62755053,13.43676061],[-11.6615,-16.6259149,13.43676061],[-11.7452002,-16.62427927,13.43676061],[-11.6243,-16.62264364,13.43676061],[-11.2770996,-16.62100801,13.43676061],[-10.9626999,-16.61937239,13.43676061],[-10.4652996,-16.61773676,13.43676061],[-10.2048998,-16.61610113,13.43676061],[-9.7672195,-16.6144655,13.43676061],[-14.4314003,-16.72732382,13.43512499],[-16.9633007,-16.72568819,13.43512499],[-16.1536999,-16.72405256,13.43512499],[-16.2609005,-16.72241693,13.43512499],[-16.8589993,-16.72078131,13.43512499],[-15.9549999,-16.71914568,13.43512499],[-15.7456999,-16.71751005,13.43512499],[-15.6033001,-16.71587442,13.43512499],[-14.6513996,-16.7142388,13.43512499],[-14.2587996,-16.71260317,13.43512499],[-14.0084,-16.71096754,13.43512499],[-13.5853996,-16.70933191,13.43512499],[-13.4448004,-16.70769628,13.43512499],[-13.243,-16.70606066,13.43512499],[-12.8188,-16.70442503,13.43512499],[-12.5756998,-16.7027894,13.43512499],[-12.2486,-16.70115377,13.43512499],[-11.6513996,-16.69951815,13.43512499],[-11.3149004,-16.69788252,13.43512499],[-10.802,-16.69624689,13.43512499],[-10.0375996,-16.69461126,13.43512499],[-9.6652298,-16.69297564,13.43512499],[-9.3891697,-16.69134001,13.43512499],[-8.5574303,-16.68970438,13.43512499],[-8.5049801,-16.68806875,13.43512499],[-10.2285004,-16.68643312,13.43512499],[-11.8872995,-16.6847975,13.43512499],[-11.9530001,-16.68316187,13.43512499],[-11.3063002,-16.68152624,13.43512499],[-10.9555998,-16.67989061,13.43512499],[-10.6560001,-16.67825499,13.43512499],[-9.7617397,-16.67661936,13.43512499],[-9.1019697,-16.67498373,13.43512499],[-8.6578398,-16.6733481,13.43512499],[-7.61972,-16.67171247,13.43512499],[-7.0234098,-16.67007685,13.43512499],[-6.4478898,-16.66844122,13.43512499],[-5.1765399,-16.66680559,13.43512499],[-4.7186799,-16.66516996,13.43512499],[-4.9031501,-16.66353434,13.43512499],[-4.3195701,-16.66189871,13.43512499],[-4.4706898,-16.66026308,13.43512499],[-6.5802798,-16.65862745,13.43512499],[-8.2331896,-16.65699182,13.43512499],[-8.6076603,-16.6553562,13.43512499],[-9.7080002,-16.65372057,13.43512499],[-11.0165997,-16.65208494,13.43512499],[-10.9108,-16.65044931,13.43512499],[-11.2419004,-16.64881369,13.43512499],[-11.7566996,-16.64717806,13.43512499],[-11.3495998,-16.64554243,13.43512499],[-11.1921997,-16.6439068,13.43512499],[-11.2040997,-16.64227118,13.43512499],[-10.8507996,-16.64063555,13.43512499],[-10.2960997,-16.63899992,13.43512499],[-10.1674004,-16.63736429,13.43512499],[-10.8476,-16.63572866,13.43512499],[-11.7224998,-16.63409304,13.43512499],[-11.8111,-16.63245741,13.43512499],[-11.4952002,-16.63082178,13.43512499],[-11.6272001,-16.62918615,13.43512499],[-11.5757999,-16.62755053,13.43512499],[-11.6876001,-16.6259149,13.43512499],[-12.1089001,-16.62427927,13.43512499],[-11.8010998,-16.62264364,13.43512499],[-11.7584,-16.62100801,13.43512499],[-12.1894999,-16.61937239,13.43512499],[-11.0122995,-16.61773676,13.43512499],[-10.3970003,-16.61610113,13.43512499],[-10.4106998,-16.6144655,13.43512499],[-8.0031996,-16.72895945,13.43348936],[-15.5402002,-16.72732382,13.43348936],[-19.6226997,-16.72568819,13.43348936],[-17.4421005,-16.72405256,13.43348936],[-17.0708008,-16.72241693,13.43348936],[-17.8936005,-16.72078131,13.43348936],[-16.5494003,-16.71914568,13.43348936],[-16.2591991,-16.71751005,13.43348936],[-16.2928009,-16.71587442,13.43348936],[-15.0745001,-16.7142388,13.43348936],[-14.6991997,-16.71260317,13.43348936],[-14.5446997,-16.71096754,13.43348936],[-13.7768002,-16.70933191,13.43348936],[-13.4118996,-16.70769628,13.43348936],[-13.3205004,-16.70606066,13.43348936],[-12.8576002,-16.70442503,13.43348936],[-12.5415001,-16.7027894,13.43348936],[-12.2529001,-16.70115377,13.43348936],[-11.6008997,-16.69951815,13.43348936],[-11.4364004,-16.69788252,13.43348936],[-10.8225002,-16.69624689,13.43348936],[-9.8379898,-16.69461126,13.43348936],[-9.5435896,-16.69297564,13.43348936],[-9.2213297,-16.69134001,13.43348936],[-8.0874701,-16.68970438,13.43348936],[-7.85431,-16.68806875,13.43348936],[-10.0458002,-16.68643312,13.43348936],[-12.2639999,-16.6847975,13.43348936],[-12.2082996,-16.68316187,13.43348936],[-11.2905998,-16.68152624,13.43348936],[-10.9721003,-16.67989061,13.43348936],[-10.7925997,-16.67825499,13.43348936],[-9.8366804,-16.67661936,13.43348936],[-8.9447098,-16.67498373,13.43348936],[-8.8267002,-16.6733481,13.43348936],[-7.71878,-16.67171247,13.43348936],[-7.0716901,-16.67007685,13.43348936],[-6.6480999,-16.66844122,13.43348936],[-5.2087002,-16.66680559,13.43348936],[-4.6111302,-16.66516996,13.43348936],[-5.05232,-16.66353434,13.43348936],[-4.1726999,-16.66189871,13.43348936],[-4.25983,-16.66026308,13.43348936],[-6.7023101,-16.65862745,13.43348936],[-8.3812904,-16.65699182,13.43348936],[-8.6633301,-16.6553562,13.43348936],[-9.61409,-16.65372057,13.43348936],[-11.0342999,-16.65208494,13.43348936],[-10.8558998,-16.65044931,13.43348936],[-11.1970997,-16.64881369,13.43348936],[-11.7916002,-16.64717806,13.43348936],[-11.5045996,-16.64554243,13.43348936],[-11.3260002,-16.6439068,13.43348936],[-11.3532,-16.64227118,13.43348936],[-11.1126003,-16.64063555,13.43348936],[-10.4427004,-16.63899992,13.43348936],[-10.2655001,-16.63736429,13.43348936],[-11.0351,-16.63572866,13.43348936],[-11.7173004,-16.63409304,13.43348936],[-11.7035999,-16.63245741,13.43348936],[-11.2449999,-16.63082178,13.43348936],[-11.4363003,-16.62918615,13.43348936],[-11.3226995,-16.62755053,13.43348936],[-11.4619999,-16.6259149,13.43348936],[-11.9281998,-16.62427927,13.43348936],[-11.6142998,-16.62264364,13.43348936],[-11.6454,-16.62100801,13.43348936],[-11.9545002,-16.61937239,13.43348936],[-10.9498997,-16.61773676,13.43348936],[-10.0651999,-16.61610113,13.43348936],[-10.0693998,-16.6144655,13.43348936],[-9.2069502,-16.73059507,13.43185373],[-11.2065001,-16.72895945,13.43185373],[-14.9455004,-16.72732382,13.43185373],[-16.9482002,-16.72568819,13.43185373],[-16.8470993,-16.72405256,13.43185373],[-16.7143993,-16.72241693,13.43185373],[-17.0547009,-16.72078131,13.43185373],[-16.6854,-16.71914568,13.43185373],[-16.3521996,-16.71751005,13.43185373],[-15.8365002,-16.71587442,13.43185373],[-15.1306,-16.7142388,13.43185373],[-14.5345001,-16.71260317,13.43185373],[-14.2091999,-16.71096754,13.43185373],[-14.0116997,-16.70933191,13.43185373],[-13.7558002,-16.70769628,13.43185373],[-13.5778999,-16.70606066,13.43185373],[-13.0776997,-16.70442503,13.43185373],[-12.5263004,-16.7027894,13.43185373],[-12.0312004,-16.70115377,13.43185373],[-11.6885996,-16.69951815,13.43185373],[-11.3280001,-16.69788252,13.43185373],[-10.6573,-16.69624689,13.43185373],[-9.9705696,-16.69461126,13.43185373],[-9.4588404,-16.69297564,13.43185373],[-9.1383305,-16.69134001,13.43185373],[-8.5812998,-16.68970438,13.43185373],[-8.7097998,-16.68806875,13.43185373],[-9.92068,-16.68643312,13.43185373],[-11.1757002,-16.6847975,13.43185373],[-11.4856997,-16.68316187,13.43185373],[-11.4006004,-16.68152624,13.43185373],[-11.5376997,-16.67989061,13.43185373],[-11.0844002,-16.67825499,13.43185373],[-10.4905005,-16.67661936,13.43185373],[-9.8426504,-16.67498373,13.43185373],[-9.2002201,-16.6733481,13.43185373],[-8.4723797,-16.67171247,13.43185373],[-7.74894,-16.67007685,13.43185373],[-6.96632,-16.66844122,13.43185373],[-6.30089,-16.66680559,13.43185373],[-5.80832,-16.66516996,13.43185373],[-5.69736,-16.66353434,13.43185373],[-5.5240698,-16.66189871,13.43185373],[-5.7926698,-16.66026308,13.43185373],[-6.8759599,-16.65862745,13.43185373],[-8.0402098,-16.65699182,13.43185373],[-8.6045599,-16.6553562,13.43185373],[-8.77707,-16.65372057,13.43185373],[-9.1218395,-16.65208494,13.43185373],[-9.7809401,-16.65044931,13.43185373],[-10.7519999,-16.64881369,13.43185373],[-11.3113003,-16.64717806,13.43185373],[-11.4843998,-16.64554243,13.43185373],[-11.8023005,-16.6439068,13.43185373],[-12.0153999,-16.64227118,13.43185373],[-11.5552998,-16.64063555,13.43185373],[-11.0932999,-16.63899992,13.43185373],[-10.9855003,-16.63736429,13.43185373],[-11.1487999,-16.63572866,13.43185373],[-11.2416,-16.63409304,13.43185373],[-11.1160002,-16.63245741,13.43185373],[-10.6671,-16.63082178,13.43185373],[-10.1456003,-16.62918615,13.43185373],[-10.2763004,-16.62755053,13.43185373],[-10.7761002,-16.6259149,13.43185373],[-10.9897003,-16.62427927,13.43185373],[-11.1069002,-16.62264364,13.43185373],[-11.2833996,-16.62100801,13.43185373],[-11.2484999,-16.61937239,13.43185373],[-10.3807001,-16.61773676,13.43185373],[-9.0193396,-16.61610113,13.43185373],[-11.1518002,-16.73059507,13.4302181],[-12.4403,-16.72895945,13.4302181],[-15.4313002,-16.72732382,13.4302181],[-17.0513992,-16.72568819,13.4302181],[-16.8274002,-16.72405256,13.4302181],[-16.5060005,-16.72241693,13.4302181],[-16.2996006,-16.72078131,13.4302181],[-16.5548,-16.71914568,13.4302181],[-16.1870003,-16.71751005,13.4302181],[-15.9865999,-16.71587442,13.4302181],[-15.0924997,-16.7142388,13.4302181],[-13.8573999,-16.71260317,13.4302181],[-13.6918001,-16.71096754,13.4302181],[-14.1569004,-16.70933191,13.4302181],[-14.6030998,-16.70769628,13.4302181],[-14.2784004,-16.70606066,13.4302181],[-12.9875002,-16.70442503,13.4302181],[-12.0756998,-16.7027894,13.4302181],[-12.0453997,-16.70115377,13.4302181],[-11.6554003,-16.69951815,13.4302181],[-11.4937,-16.69788252,13.4302181],[-10.8355999,-16.69624689,13.4302181],[-9.7130299,-16.69461126,13.4302181],[-9.1798201,-16.69297564,13.4302181],[-9.0684795,-16.69134001,13.4302181],[-7.8970199,-16.68970438,13.4302181],[-7.6368699,-16.68806875,13.4302181],[-9.6884499,-16.68643312,13.4302181],[-11.2248001,-16.6847975,13.4302181],[-11.4162998,-16.68316187,13.4302181],[-11.6122999,-16.68152624,13.4302181],[-12.2847996,-16.67989061,13.4302181],[-11.8463001,-16.67825499,13.4302181],[-10.8744001,-16.67661936,13.4302181],[-10.5858002,-16.67498373,13.4302181],[-9.9578695,-16.6733481,13.4302181],[-8.6881304,-16.67171247,13.4302181],[-8.2852297,-16.67007685,13.4302181],[-7.6859298,-16.66844122,13.4302181],[-6.8279099,-16.66680559,13.4302181],[-6.7118902,-16.66516996,13.4302181],[-6.3344202,-16.66353434,13.4302181],[-6.1603098,-16.66189871,13.4302181],[-6.1950402,-16.66026308,13.4302181],[-7.3264799,-16.65862745,13.4302181],[-8.4677496,-16.65699182,13.4302181],[-8.5382996,-16.6553562,13.4302181],[-8.1653299,-16.65372057,13.4302181],[-6.3362699,-16.65208494,13.4302181],[-7.9967899,-16.65044931,13.4302181],[-10.5618,-16.64881369,13.4302181],[-11.4598999,-16.64717806,13.4302181],[-11.6169004,-16.64554243,13.4302181],[-12.5721998,-16.6439068,13.4302181],[-13.6422005,-16.64227118,13.4302181],[-12.1574001,-16.64063555,13.4302181],[-11.3451996,-16.63899992,13.4302181],[-11.2068005,-16.63736429,13.4302181],[-11.1536999,-16.63572866,13.4302181],[-11.3486004,-16.63409304,13.4302181],[-11.2545004,-16.63245741,13.4302181],[-10.0932999,-16.63082178,13.4302181],[-8.36343,-16.62918615,13.4302181],[-8.9411097,-16.62755053,13.4302181],[-10.3037004,-16.6259149,13.4302181],[-10.5627003,-16.62427927,13.4302181],[-10.7413998,-16.62264364,13.4302181],[-11.1636,-16.62100801,13.4302181],[-11.7154999,-16.61937239,13.4302181],[-10.3877001,-16.61773676,13.4302181],[-12.6140003,-16.7322307,13.42858248],[-11.1035004,-16.73059507,13.42858248],[-12.7561998,-16.72895945,13.42858248],[-15.9062004,-16.72732382,13.42858248],[-17.3857994,-16.72568819,13.42858248],[-17.1149006,-16.72405256,13.42858248],[-16.7768002,-16.72241693,13.42858248],[-16.1870003,-16.72078131,13.42858248],[-16.6490002,-16.71914568,13.42858248],[-16.3332005,-16.71751005,13.42858248],[-16.1065998,-16.71587442,13.42858248],[-15.4771996,-16.7142388,13.42858248],[-13.8698997,-16.71260317,13.42858248],[-13.7093,-16.71096754,13.42858248],[-14.4008999,-16.70933191,13.42858248],[-14.7594995,-16.70769628,13.42858248],[-14.4177999,-16.70606066,13.42858248],[-13.0676003,-16.70442503,13.42858248],[-12.0709,-16.7027894,13.42858248],[-12.0847998,-16.70115377,13.42858248],[-11.8211002,-16.69951815,13.42858248],[-11.5354996,-16.69788252,13.42858248],[-11.0194998,-16.69624689,13.42858248],[-9.8231201,-16.69461126,13.42858248],[-9.26402,-16.69297564,13.42858248],[-9.2141705,-16.69134001,13.42858248],[-8.1265097,-16.68970438,13.42858248],[-7.8864002,-16.68806875,13.42858248],[-9.8934002,-16.68643312,13.42858248],[-11.2062998,-16.6847975,13.42858248],[-11.4802999,-16.68316187,13.42858248],[-11.8964005,-16.68152624,13.42858248],[-12.2701998,-16.67989061,13.42858248],[-11.9787998,-16.67825499,13.42858248],[-11.0312004,-16.67661936,13.42858248],[-10.6969995,-16.67498373,13.42858248],[-10.1575003,-16.6733481,13.42858248],[-8.8213396,-16.67171247,13.42858248],[-8.2770796,-16.67007685,13.42858248],[-7.7781501,-16.66844122,13.42858248],[-6.9690599,-16.66680559,13.42858248],[-6.8369398,-16.66516996,13.42858248],[-6.7154198,-16.66353434,13.42858248],[-6.4025402,-16.66189871,13.42858248],[-6.43507,-16.66026308,13.42858248],[-7.48772,-16.65862745,13.42858248],[-8.4271898,-16.65699182,13.42858248],[-8.6101198,-16.6553562,13.42858248],[-8.4010897,-16.65372057,13.42858248],[-7.3424001,-16.65208494,13.42858248],[-8.5998697,-16.65044931,13.42858248],[-10.5461998,-16.64881369,13.42858248],[-11.3519001,-16.64717806,13.42858248],[-11.5874004,-16.64554243,13.42858248],[-12.2982998,-16.6439068,13.42858248],[-12.9217997,-16.64227118,13.42858248],[-12.0037003,-16.64063555,13.42858248],[-11.3683996,-16.63899992,13.42858248],[-11.1482,-16.63736429,13.42858248],[-11.0123997,-16.63572866,13.42858248],[-11.1356001,-16.63409304,13.42858248],[-10.9483995,-16.63245741,13.42858248],[-10.0053997,-16.63082178,13.42858248],[-8.9748297,-16.62918615,13.42858248],[-9.26898,-16.62755053,13.42858248],[-10.1548996,-16.6259149,13.42858248],[-10.5710001,-16.62427927,13.42858248],[-10.5938997,-16.62264364,13.42858248],[-10.8107004,-16.62100801,13.42858248],[-11.0206003,-16.61937239,13.42858248],[-9.8391304,-16.61773676,13.42858248],[-14.6268997,-16.7322307,13.42694685],[-14.7903004,-16.73059507,13.42694685],[-15.3957996,-16.72895945,13.42694685],[-16.5886993,-16.72732382,13.42694685],[-17.3479996,-16.72568819,13.42694685],[-17.7052002,-16.72405256,13.42694685],[-17.5228996,-16.72241693,13.42694685],[-17.4624996,-16.72078131,13.42694685],[-17.0813999,-16.71914568,13.42694685],[-16.8987007,-16.71751005,13.42694685],[-16.5163002,-16.71587442,13.42694685],[-15.7438002,-16.7142388,13.42694685],[-14.9724998,-16.71260317,13.42694685],[-14.6400003,-16.71096754,13.42694685],[-14.7458,-16.70933191,13.42694685],[-14.7565002,-16.70769628,13.42694685],[-14.3829002,-16.70606066,13.42694685],[-13.4933996,-16.70442503,13.42694685],[-12.8127003,-16.7027894,13.42694685],[-12.3816996,-16.70115377,13.42694685],[-12.0593996,-16.69951815,13.42694685],[-11.6306,-16.69788252,13.42694685],[-11.1362,-16.69624689,13.42694685],[-10.6100998,-16.69461126,13.42694685],[-10.1801996,-16.69297564,13.42694685],[-9.8133202,-16.69134001,13.42694685],[-9.4569197,-16.68970438,13.42694685],[-9.5897303,-16.68806875,13.42694685],[-10.4252996,-16.68643312,13.42694685],[-11.4083004,-16.6847975,13.42694685],[-11.8098001,-16.68316187,13.42694685],[-11.9299002,-16.68152624,13.42694685],[-12.0197001,-16.67989061,13.42694685],[-11.7566004,-16.67825499,13.42694685],[-11.5602999,-16.67661936,13.42694685],[-11.1409998,-16.67498373,13.42694685],[-10.2103004,-16.6733481,13.42694685],[-9.2146196,-16.67171247,13.42694685],[-8.5922003,-16.67007685,13.42694685],[-7.9576802,-16.66844122,13.42694685],[-7.4440999,-16.66680559,13.42694685],[-7.0035701,-16.66516996,13.42694685],[-6.9516001,-16.66353434,13.42694685],[-6.5844102,-16.66189871,13.42694685],[-6.8236198,-16.66026308,13.42694685],[-7.7276502,-16.65862745,13.42694685],[-8.8856401,-16.65699182,13.42694685],[-9.3058996,-16.6553562,13.42694685],[-9.36693,-16.65372057,13.42694685],[-9.8976402,-16.65208494,13.42694685],[-10.2358999,-16.65044931,13.42694685],[-10.8360004,-16.64881369,13.42694685],[-11.3661003,-16.64717806,13.42694685],[-11.4773998,-16.64554243,13.42694685],[-11.5286999,-16.6439068,13.42694685],[-11.5122995,-16.64227118,13.42694685],[-11.4055004,-16.64063555,13.42694685],[-10.9897003,-16.63899992,13.42694685],[-10.7981005,-16.63736429,13.42694685],[-10.8629999,-16.63572866,13.42694685],[-11.0472002,-16.63409304,13.42694685],[-10.9137001,-16.63245741,13.42694685],[-9.9825201,-16.63082178,13.42694685],[-9.0444202,-16.62918615,13.42694685],[-9.2345304,-16.62755053,13.42694685],[-10.1138,-16.6259149,13.42694685],[-10.4078999,-16.62427927,13.42694685],[-10.3720999,-16.62264364,13.42694685],[-10.6863003,-16.62100801,13.42694685],[-10.8212004,-16.61937239,13.42694685],[-9.7989397,-16.61773676,13.42694685],[-8.03088,-16.61610113,13.42694685],[-14.6681004,-16.73386633,13.42531122],[-16.1842003,-16.7322307,13.42531122],[-17.9507008,-16.73059507,13.42531122],[-17.3647995,-16.72895945,13.42531122],[-17.5436001,-16.72732382,13.42531122],[-18.8855991,-16.72568819,13.42531122],[-18.2420006,-16.72405256,13.42531122],[-18.0846004,-16.72241693,13.42531122],[-18.5627995,-16.72078131,13.42531122],[-17.6889,-16.71914568,13.42531122],[-17.4890995,-16.71751005,13.42531122],[-17.7171001,-16.71587442,13.42531122],[-16.1469994,-16.7142388,13.42531122],[-15.0754004,-16.71260317,13.42531122],[-14.9204998,-16.71096754,13.42531122],[-15.0305996,-16.70933191,13.42531122],[-15.9012003,-16.70769628,13.42531122],[-15.3470001,-16.70606066,13.42531122],[-13.6372004,-16.70442503,13.42531122],[-12.9511995,-16.7027894,13.42531122],[-12.7060003,-16.70115377,13.42531122],[-12.1146002,-16.69951815,13.42531122],[-11.9397001,-16.69788252,13.42531122],[-11.4961996,-16.69624689,13.42531122],[-10.9459,-16.69461126,13.42531122],[-10.9365997,-16.69297564,13.42531122],[-10.5068998,-16.69134001,13.42531122],[-9.9565096,-16.68970438,13.42531122],[-9.9035702,-16.68806875,13.42531122],[-10.9027004,-16.68643312,13.42531122],[-12.1260004,-16.6847975,13.42531122],[-12.1915998,-16.68316187,13.42531122],[-11.9526997,-16.68152624,13.42531122],[-11.9554996,-16.67989061,13.42531122],[-11.9179001,-16.67825499,13.42531122],[-11.7219,-16.67661936,13.42531122],[-12.6086998,-16.67498373,13.42531122],[-11.0721998,-16.6733481,13.42531122],[-9.2215595,-16.67171247,13.42531122],[-9.2384901,-16.67007685,13.42531122],[-8.2497902,-16.66844122,13.42531122],[-7.5232902,-16.66680559,13.42531122],[-7.4795899,-16.66516996,13.42531122],[-7.1202202,-16.66353434,13.42531122],[-6.1958098,-16.66189871,13.42531122],[-6.0270801,-16.66026308,13.42531122],[-8.07481,-16.65862745,13.42531122],[-10.1370001,-16.65699182,13.42531122],[-10.0389996,-16.6553562,13.42531122],[-9.9880695,-16.65372057,13.42531122],[-10.9568996,-16.65208494,13.42531122],[-10.802,-16.65044931,13.42531122],[-11.1259003,-16.64881369,13.42531122],[-11.6549997,-16.64717806,13.42531122],[-11.4584999,-16.64554243,13.42531122],[-11.1581001,-16.6439068,13.42531122],[-10.8746004,-16.64227118,13.42531122],[-11.0888004,-16.64063555,13.42531122],[-10.5934,-16.63899992,13.42531122],[-10.3858004,-16.63736429,13.42531122],[-10.7999001,-16.63572866,13.42531122],[-11.4399996,-16.63409304,13.42531122],[-11.4246998,-16.63245741,13.42531122],[-8.60497,-16.62755053,13.42531122],[-9.9687901,-16.6259149,13.42531122],[-10.4273005,-16.62427927,13.42531122],[-10.3105001,-16.62264364,13.42531122],[-10.6034002,-16.62100801,13.42531122],[-11.8626003,-16.61937239,13.42531122],[-9.8389301,-16.61773676,13.42531122],[-7.4812298,-16.61610113,13.42531122],[-14.5563002,-16.73386633,13.42367559],[-15.8437996,-16.7322307,13.42367559],[-17.5618,-16.73059507,13.42367559],[-17.4363003,-16.72895945,13.42367559],[-17.6697006,-16.72732382,13.42367559],[-18.5760994,-16.72568819,13.42367559],[-18.1275997,-16.72405256,13.42367559],[-18.0116005,-16.72241693,13.42367559],[-18.2229004,-16.72078131,13.42367559],[-17.4605999,-16.71914568,13.42367559],[-17.1947994,-16.71751005,13.42367559],[-17.2334003,-16.71587442,13.42367559],[-15.9909,-16.7142388,13.42367559],[-15.1168003,-16.71260317,13.42367559],[-14.9063997,-16.71096754,13.42367559],[-14.9387999,-16.70933191,13.42367559],[-15.4322004,-16.70769628,13.42367559],[-14.9582996,-16.70606066,13.42367559],[-13.6823997,-16.70442503,13.42367559],[-13.0001001,-16.7027894,13.42367559],[-12.7561998,-16.70115377,13.42367559],[-12.3495998,-16.69951815,13.42367559],[-11.9934998,-16.69788252,13.42367559],[-11.7049999,-16.69624689,13.42367559],[-11.177,-16.69461126,13.42367559],[-10.9406004,-16.69297564,13.42367559],[-10.7340002,-16.69134001,13.42367559],[-10.3416996,-16.68970438,13.42367559],[-10.3200998,-16.68806875,13.42367559],[-11.1906004,-16.68643312,13.42367559],[-11.9804001,-16.6847975,13.42367559],[-12.2290001,-16.68316187,13.42367559],[-12.3239002,-16.68152624,13.42367559],[-12.2130003,-16.67989061,13.42367559],[-12.1738005,-16.67825499,13.42367559],[-11.6334,-16.67661936,13.42367559],[-11.5790997,-16.67498373,13.42367559],[-10.3506002,-16.6733481,13.42367559],[-8.8774099,-16.67171247,13.42367559],[-8.4050999,-16.67007685,13.42367559],[-7.8130698,-16.66844122,13.42367559],[-7.7136698,-16.66680559,13.42367559],[-7.6463199,-16.66516996,13.42367559],[-7.5155201,-16.66353434,13.42367559],[-7.1061502,-16.66189871,13.42367559],[-7.0287299,-16.66026308,13.42367559],[-8.2852497,-16.65862745,13.42367559],[-9.3233204,-16.65699182,13.42367559],[-9.5574799,-16.6553562,13.42367559],[-9.8928804,-16.65372057,13.42367559],[-10.4709997,-16.65208494,13.42367559],[-10.6809998,-16.65044931,13.42367559],[-11.0475998,-16.64881369,13.42367559],[-11.4769001,-16.64717806,13.42367559],[-11.5546999,-16.64554243,13.42367559],[-11.3274002,-16.6439068,13.42367559],[-11.1225004,-16.64227118,13.42367559],[-11.0506001,-16.64063555,13.42367559],[-10.8007002,-16.63899992,13.42367559],[-10.5359001,-16.63736429,13.42367559],[-10.4757004,-16.63572866,13.42367559],[-10.5395002,-16.63409304,13.42367559],[-10.0167999,-16.63082178,13.42367559],[-10.2530003,-16.6259149,13.42367559],[-10.5261002,-16.62427927,13.42367559],[-10.2881002,-16.62264364,13.42367559],[-10.0579996,-16.62100801,13.42367559],[-9.7991896,-16.61937239,13.42367559],[-8.6744003,-16.61773676,13.42367559],[-7.1510901,-16.61610113,13.42367559],[-13.5118999,-16.73550196,13.42203996],[-14.0319996,-16.73386633,13.42203996],[-14.9674997,-16.7322307,13.42203996],[-15.6661997,-16.73059507,13.42203996],[-16.1529007,-16.72895945,13.42203996],[-17.0737991,-16.72732382,13.42203996],[-17.6229992,-16.72568819,13.42203996],[-17.7416,-16.72405256,13.42203996],[-17.4867992,-16.72241693,13.42203996],[-17.2248001,-16.72078131,13.42203996],[-16.8250999,-16.71914568,13.42203996],[-16.3682003,-16.71751005,13.42203996],[-15.8898001,-16.71587442,13.42203996],[-15.4553003,-16.7142388,13.42203996],[-14.6775999,-16.71260317,13.42203996],[-14.4133997,-16.71096754,13.42203996],[-14.5564003,-16.70933191,13.42203996],[-14.5510998,-16.70769628,13.42203996],[-14.2542,-16.70606066,13.42203996],[-13.3424997,-16.70442503,13.42203996],[-12.4663,-16.7027894,13.42203996],[-12.3701,-16.70115377,13.42203996],[-12.5171003,-16.69951815,13.42203996],[-12.4184999,-16.69788252,13.42203996],[-11.9632998,-16.69624689,13.42203996],[-11.4548998,-16.69461126,13.42203996],[-11.0992002,-16.69297564,13.42203996],[-10.9576998,-16.69134001,13.42203996],[-10.8174,-16.68970438,13.42203996],[-10.9419003,-16.68806875,13.42203996],[-11.4652004,-16.68643312,13.42203996],[-12.2346001,-16.6847975,13.42203996],[-12.5207996,-16.68316187,13.42203996],[-12.743,-16.68152624,13.42203996],[-13.2877998,-16.67989061,13.42203996],[-12.6507998,-16.67825499,13.42203996],[-11.1309996,-16.67661936,13.42203996],[-9.8406296,-16.67498373,13.42203996],[-9.0268602,-16.6733481,13.42203996],[-6.81001,-16.67171247,13.42203996],[-4.6423802,-16.67007685,13.42203996],[-6.3000698,-16.66844122,13.42203996],[-8.1057396,-16.66680559,13.42203996],[-8.6607599,-16.66516996,13.42203996],[-8.1241503,-16.66353434,13.42203996],[-7.6785002,-16.66189871,13.42203996],[-7.8461099,-16.66026308,13.42203996],[-8.3350201,-16.65862745,13.42203996],[-8.7612696,-16.65699182,13.42203996],[-9.0510902,-16.6553562,13.42203996],[-9.6823301,-16.65372057,13.42203996],[-10.2628002,-16.65208494,13.42203996],[-10.5609999,-16.65044931,13.42203996],[-11.2139997,-16.64881369,13.42203996],[-11.9343004,-16.64717806,13.42203996],[-11.7568998,-16.64554243,13.42203996],[-11.3774004,-16.6439068,13.42203996],[-11.3008003,-16.64227118,13.42203996],[-11.1468,-16.64063555,13.42203996],[-10.9818001,-16.63899992,13.42203996],[-10.9183998,-16.63736429,13.42203996],[-10.1752996,-16.63572866,13.42203996],[-9.2026501,-16.63409304,13.42203996],[-10.2468004,-16.63082178,13.42203996],[-11.5503998,-16.62918615,13.42203996],[-10.8711004,-16.6259149,13.42203996],[-11.0630999,-16.62427927,13.42203996],[-10.5360003,-16.62264364,13.42203996],[-9.0205498,-16.62100801,13.42203996],[-12.7428999,-16.73713758,13.42040434],[-13.2049999,-16.73550196,13.42040434],[-13.3885002,-16.73386633,13.42040434],[-14.2386999,-16.7322307,13.42040434],[-14.3031998,-16.73059507,13.42040434],[-15.0436001,-16.72895945,13.42040434],[-16.9165993,-16.72732382,13.42040434],[-17.8561993,-16.72568819,13.42040434],[-17.5592995,-16.72405256,13.42040434],[-17.0168991,-16.72241693,13.42040434],[-16.7357998,-16.72078131,13.42040434],[-16.5070992,-16.71914568,13.42040434],[-15.6931,-16.71751005,13.42040434],[-15.3620005,-16.71587442,13.42040434],[-15.1025,-16.7142388,13.42040434],[-13.9651003,-16.71260317,13.42040434],[-13.8030005,-16.71096754,13.42040434],[-14.3355999,-16.70933191,13.42040434],[-14.5129995,-16.70769628,13.42040434],[-14.3364,-16.70606066,13.42040434],[-13.0344,-16.70442503,13.42040434],[-11.3811998,-16.7027894,13.42040434],[-12.0132999,-16.70115377,13.42040434],[-12.7131004,-16.69951815,13.42040434],[-12.9540997,-16.69788252,13.42040434],[-12.3987999,-16.69624689,13.42040434],[-11.5207996,-16.69461126,13.42040434],[-11.0642004,-16.69297564,13.42040434],[-11.3058004,-16.69134001,13.42040434],[-10.9034996,-16.68970438,13.42040434],[-10.7549,-16.68806875,13.42040434],[-11.7769003,-16.68643312,13.42040434],[-12.7145996,-16.6847975,13.42040434],[-12.7824001,-16.68316187,13.42040434],[-13.0869999,-16.68152624,13.42040434],[-14.2786999,-16.67989061,13.42040434],[-13.5103998,-16.67825499,13.42040434],[-10.9310999,-16.67661936,13.42040434],[-8.7718,-16.67498373,13.42040434],[-8.9264402,-16.6733481,13.42040434],[-5.37152,-16.67171247,13.42040434],[-0.484223,-16.67007685,13.42040434],[-5.4820299,-16.66844122,13.42040434],[-8.8639402,-16.66680559,13.42040434],[-9.55931,-16.66516996,13.42040434],[-8.7686005,-16.66353434,13.42040434],[-7.8327999,-16.66189871,13.42040434],[-7.6972299,-16.66026308,13.42040434],[-8.5260897,-16.65862745,13.42040434],[-8.5898304,-16.65699182,13.42040434],[-8.7448502,-16.6553562,13.42040434],[-9.6934099,-16.65372057,13.42040434],[-10.4209995,-16.65208494,13.42040434],[-10.5242004,-16.65044931,13.42040434],[-11.3445997,-16.64881369,13.42040434],[-12.5171003,-16.64717806,13.42040434],[-11.7137003,-16.64554243,13.42040434],[-11.3133001,-16.6439068,13.42040434],[-11.3526001,-16.64227118,13.42040434],[-11.0026999,-16.64063555,13.42040434],[-11.0086002,-16.63899992,13.42040434],[-11.2187004,-16.63736429,13.42040434],[-9.9878101,-16.63572866,13.42040434],[-8.5314102,-16.63409304,13.42040434],[-10.2915001,-16.63082178,13.42040434],[-12.3999004,-16.62918615,13.42040434],[-12.0332003,-16.62755053,13.42040434],[-12.1192999,-16.73713758,13.41876871],[-13.0045004,-16.73550196,13.41876871],[-13.3785,-16.73386633,13.41876871],[-14.0883999,-16.7322307,13.41876871],[-14.5077,-16.73059507,13.41876871],[-15.3001003,-16.72895945,13.41876871],[-16.5186996,-16.72732382,13.41876871],[-17.4503002,-16.72568819,13.41876871],[-17.1959991,-16.72405256,13.41876871],[-16.7891998,-16.72241693,13.41876871],[-16.6688004,-16.72078131,13.41876871],[-16.2240009,-16.71914568,13.41876871],[-15.6237001,-16.71751005,13.41876871],[-15.2721004,-16.71587442,13.41876871],[-14.8555002,-16.7142388,13.41876871],[-14.3896999,-16.71260317,13.41876871],[-14.2047005,-16.71096754,13.41876871],[-14.2525997,-16.70933191,13.41876871],[-14.2490997,-16.70769628,13.41876871],[-14.0943003,-16.70606066,13.41876871],[-13.4679003,-16.70442503,13.41876871],[-12.6723003,-16.7027894,13.41876871],[-12.6801004,-16.70115377,13.41876871],[-12.9083996,-16.69951815,13.41876871],[-12.8327999,-16.69788252,13.41876871],[-12.4938002,-16.69624689,13.41876871],[-12.0358,-16.69461126,13.41876871],[-11.6936998,-16.69297564,13.41876871],[-11.6969995,-16.69134001,13.41876871],[-11.4303999,-16.68970438,13.41876871],[-11.4258003,-16.68806875,13.41876871],[-12.0436001,-16.68643312,13.41876871],[-12.5513,-16.6847975,13.41876871],[-12.6858997,-16.68316187,13.41876871],[-13.0414,-16.68152624,13.41876871],[-13.4446001,-16.67989061,13.41876871],[-12.9062996,-16.67825499,13.41876871],[-11.7292004,-16.67661936,13.41876871],[-10.5825005,-16.67498373,13.41876871],[-9.9977303,-16.6733481,13.41876871],[-8.3118296,-16.67171247,13.41876871],[-6.6451001,-16.67007685,13.41876871],[-7.9875898,-16.66844122,13.41876871],[-9.4220695,-16.66680559,13.41876871],[-9.7458401,-16.66516996,13.41876871],[-9.4848604,-16.66353434,13.41876871],[-9.0359201,-16.66189871,13.41876871],[-8.9344597,-16.66026308,13.41876871],[-8.9300003,-16.65862745,13.41876871],[-8.6979599,-16.65699182,13.41876871],[-8.7947302,-16.6553562,13.41876871],[-9.4041004,-16.65372057,13.41876871],[-9.8957195,-16.65208494,13.41876871],[-10.1962996,-16.65044931,13.41876871],[-10.5576,-16.64881369,13.41876871],[-11.0641003,-16.64717806,13.41876871],[-11.0396996,-16.64554243,13.41876871],[-11.1415005,-16.6439068,13.41876871],[-11.2346001,-16.64227118,13.41876871],[-10.8431997,-16.64063555,13.41876871],[-10.4048996,-16.63899992,13.41876871],[-10.1878004,-16.63736429,13.41876871],[-9.7576704,-16.63572866,13.41876871],[-9.1195002,-16.63409304,13.41876871],[-10.0619001,-16.63082178,13.41876871],[-10.9591999,-16.62918615,13.41876871],[-11.0551996,-16.62755053,13.41876871],[-11.0899,-16.6259149,13.41876871],[-11.3448,-16.62427927,13.41876871],[-10.7828999,-16.62264364,13.41876871],[-9.92945,-16.62100801,13.41876871],[-8.9292097,-16.61937239,13.41876871],[-7.9735298,-16.61773676,13.41876871],[-7.98874,-16.73877321,13.41713308],[-10.8439999,-16.73713758,13.41713308],[-12.2862997,-16.73550196,13.41713308],[-12.8395996,-16.73386633,13.41713308],[-13.7782001,-16.7322307,13.41713308],[-14.5298996,-16.73059507,13.41713308],[-15.2180996,-16.72895945,13.41713308],[-16.5004997,-16.72732382,13.41713308],[-17.5788002,-16.72568819,13.41713308],[-17.1924992,-16.72405256,13.41713308],[-16.5147991,-16.72241693,13.41713308],[-16.1774006,-16.72078131,13.41713308],[-15.9240999,-16.71914568,13.41713308],[-15.2291002,-16.71751005,13.41713308],[-14.7771997,-16.71587442,13.41713308],[-14.7702999,-16.7142388,13.41713308],[-14.7817001,-16.71260317,13.41713308],[-14.7010002,-16.71096754,13.41713308],[-14.2476997,-16.70933191,13.41713308],[-13.8163004,-16.70769628,13.41713308],[-13.7734003,-16.70606066,13.41713308],[-13.9516001,-16.70442503,13.41713308],[-14.1533003,-16.7027894,13.41713308],[-13.7847996,-16.70115377,13.41713308],[-13.2145996,-16.69951815,13.41713308],[-13.0101004,-16.69788252,13.41713308],[-12.7277002,-16.69624689,13.41713308],[-12.6908998,-16.69461126,13.41713308],[-12.7073002,-16.69297564,13.41713308],[-12.2264996,-16.69134001,13.41713308],[-11.7861996,-16.68970438,13.41713308],[-11.7386999,-16.68806875,13.41713308],[-12.2159996,-16.68643312,13.41713308],[-12.7109003,-16.6847975,13.41713308],[-12.8938999,-16.68316187,13.41713308],[-12.9918003,-16.68152624,13.41713308],[-13.3542004,-16.67989061,13.41713308],[-13.2658005,-16.67825499,13.41713308],[-12.6756001,-16.67661936,13.41713308],[-13.1204996,-16.67498373,13.41713308],[-12.1423998,-16.6733481,13.41713308],[-11.2173996,-16.67171247,13.41713308],[-11.6800003,-16.67007685,13.41713308],[-10.7835999,-16.66844122,13.41713308],[-10.9153996,-16.66680559,13.41713308],[-11.2110996,-16.66516996,13.41713308],[-10.4920998,-16.66353434,13.41713308],[-10.7795,-16.66189871,13.41713308],[-10.7684002,-16.66026308,13.41713308],[-9.3568401,-16.65862745,13.41713308],[-8.0875301,-16.65699182,13.41713308],[-8.1738005,-16.6553562,13.41713308],[-9.1008501,-16.65372057,13.41713308],[-9.5403996,-16.65208494,13.41713308],[-9.6689501,-16.65044931,13.41713308],[-9.8015003,-16.64881369,13.41713308],[-9.4179296,-16.64717806,13.41713308],[-10.1429005,-16.64554243,13.41713308],[-11.2152996,-16.6439068,13.41713308],[-11.7725,-16.64227118,13.41713308],[-10.8444004,-16.64063555,13.41713308],[-9.4768896,-16.63899992,13.41713308],[-8.8215103,-16.63736429,13.41713308],[-9.3190098,-16.63572866,13.41713308],[-8.7125902,-16.63409304,13.41713308],[-9.7500801,-16.63082178,13.41713308],[-10.1485004,-16.62918615,13.41713308],[-10.4496002,-16.62755053,13.41713308],[-11.2300997,-16.6259149,13.41713308],[-11.9077997,-16.62427927,13.41713308],[-11.4240999,-16.62264364,13.41713308],[-10.9694996,-16.62100801,13.41713308],[-11.8500004,-16.61937239,13.41713308],[-9.5647001,-16.61773676,13.41713308],[-6.8734298,-16.61282988,13.41713308],[-9.5355301,-16.61119425,13.41713308],[-6.2048502,-16.74040884,13.41549745],[-5.3665099,-16.73877321,13.41549745],[-10.2339001,-16.73713758,13.41549745],[-12.1201,-16.73550196,13.41549745],[-12.3599997,-16.73386633,13.41549745],[-13.6259003,-16.7322307,13.41549745],[-14.5032997,-16.73059507,13.41549745],[-14.8664999,-16.72895945,13.41549745],[-16.5063,-16.72732382,13.41549745],[-18.3824005,-16.72568819,13.41549745],[-17.2826004,-16.72405256,13.41549745],[-16.2236996,-16.72241693,13.41549745],[-15.7809,-16.72078131,13.41549745],[-15.6601,-16.71914568,13.41549745],[-14.7586002,-16.71751005,13.41549745],[-14.4153996,-16.71587442,13.41549745],[-14.7426996,-16.7142388,13.41549745],[-14.9294004,-16.71260317,13.41549745],[-14.9483004,-16.71096754,13.41549745],[-14.2889996,-16.70933191,13.41549745],[-13.4783001,-16.70769628,13.41549745],[-13.6176004,-16.70606066,13.41549745],[-14.1749001,-16.70442503,13.41549745],[-14.6363001,-16.7027894,13.41549745],[-14.2931995,-16.70115377,13.41549745],[-13.4487,-16.69951815,13.41549745],[-13.0711002,-16.69788252,13.41549745],[-13.0752001,-16.69624689,13.41549745],[-13.0244999,-16.69461126,13.41549745],[-13.1192999,-16.69297564,13.41549745],[-12.6294003,-16.69134001,13.41549745],[-11.9125996,-16.68970438,13.41549745],[-11.6311998,-16.68806875,13.41549745],[-12.3795004,-16.68643312,13.41549745],[-12.8310003,-16.6847975,13.41549745],[-12.8982,-16.68316187,13.41549745],[-13.0311003,-16.68152624,13.41549745],[-13.4736996,-16.67989061,13.41549745],[-13.3627005,-16.67825499,13.41549745],[-13.0916996,-16.67661936,13.41549745],[-13.8729,-16.67498373,13.41549745],[-13.0240002,-16.6733481,13.41549745],[-12.2482996,-16.67171247,13.41549745],[-12.7025003,-16.67007685,13.41549745],[-11.9425001,-16.66844122,13.41549745],[-11.6309004,-16.66680559,13.41549745],[-11.7412004,-16.66516996,13.41549745],[-11.2377005,-16.66353434,13.41549745],[-11.3614998,-16.66189871,13.41549745],[-11.2896996,-16.66026308,13.41549745],[-9.7122803,-16.65862745,13.41549745],[-7.9149098,-16.65699182,13.41549745],[-7.9378099,-16.6553562,13.41549745],[-9.0605297,-16.65372057,13.41549745],[-9.4989004,-16.65208494,13.41549745],[-9.5309601,-16.65044931,13.41549745],[-9.4222898,-16.64881369,13.41549745],[-9.1221905,-16.64717806,13.41549745],[-9.7997999,-16.64554243,13.41549745],[-11.1794004,-16.6439068,13.41549745],[-11.8905001,-16.64227118,13.41549745],[-10.9832001,-16.64063555,13.41549745],[-9.3774796,-16.63899992,13.41549745],[-8.7430897,-16.63736429,13.41549745],[-9.3868399,-16.63572866,13.41549745],[-8.7861099,-16.63409304,13.41549745],[-9.9097795,-16.63082178,13.41549745],[-10.1636,-16.62918615,13.41549745],[-10.4650002,-16.62755053,13.41549745],[-11.3253002,-16.6259149,13.41549745],[-11.9483995,-16.62427927,13.41549745],[-11.5572996,-16.62264364,13.41549745],[-10.9898005,-16.62100801,13.41549745],[-11.7469997,-16.61937239,13.41549745],[-9.7072802,-16.61773676,13.41549745],[-6.6621399,-16.61610113,13.41549745],[-7.1886401,-16.61282988,13.41549745],[-9.6307201,-16.61119425,13.41549745],[-10.3066998,-16.60955862,13.41549745],[-9.43612,-16.74040884,13.41386183],[-9.3561497,-16.73877321,13.41386183],[-11.2828999,-16.73713758,13.41386183],[-12.2833996,-16.73550196,13.41386183],[-12.6780996,-16.73386633,13.41386183],[-13.5711002,-16.7322307,13.41386183],[-14.5688,-16.73059507,13.41386183],[-15.0663996,-16.72895945,13.41386183],[-15.8583002,-16.72732382,13.41386183],[-16.7392998,-16.72568819,13.41386183],[-16.5809994,-16.72405256,13.41386183],[-16.2978001,-16.72241693,13.41386183],[-16.0459003,-16.72078131,13.41386183],[-15.6618996,-16.71914568,13.41386183],[-15.1461,-16.71751005,13.41386183],[-14.7686996,-16.71587442,13.41386183],[-14.5628996,-16.7142388,13.41386183],[-14.4180002,-16.71260317,13.41386183],[-14.5478001,-16.71096754,13.41386183],[-14.5742998,-16.70933191,13.41386183],[-14.448,-16.70769628,13.41386183],[-14.5495005,-16.70606066,13.41386183],[-14.6924,-16.70442503,13.41386183],[-14.7047005,-16.7027894,13.41386183],[-14.3554001,-16.70115377,13.41386183],[-13.8127003,-16.69951815,13.41386183],[-13.3614998,-16.69788252,13.41386183],[-13.2337999,-16.69624689,13.41386183],[-13.1355,-16.69461126,13.41386183],[-12.9596004,-16.69297564,13.41386183],[-12.8247004,-16.69134001,13.41386183],[-12.6886997,-16.68970438,13.41386183],[-12.6184998,-16.68806875,13.41386183],[-12.7125998,-16.68643312,13.41386183],[-12.7961998,-16.6847975,13.41386183],[-12.7791996,-16.68316187,13.41386183],[-12.8978004,-16.68152624,13.41386183],[-12.9298,-16.67989061,13.41386183],[-12.9979,-16.67825499,13.41386183],[-13.1220999,-16.67661936,13.41386183],[-13.0454998,-16.67498373,13.41386183],[-12.8534002,-16.6733481,13.41386183],[-12.6433001,-16.67171247,13.41386183],[-12.5324001,-16.67007685,13.41386183],[-12.3521996,-16.66844122,13.41386183],[-12.1595001,-16.66680559,13.41386183],[-11.9638004,-16.66516996,13.41386183],[-11.7973003,-16.66353434,13.41386183],[-11.6730003,-16.66189871,13.41386183],[-11.2024002,-16.66026308,13.41386183],[-10.0256004,-16.65862745,13.41386183],[-8.80898,-16.65699182,13.41386183],[-8.5978603,-16.6553562,13.41386183],[-9.0138397,-16.65372057,13.41386183],[-9.1947498,-16.65208494,13.41386183],[-9.3592997,-16.65044931,13.41386183],[-9.2556,-16.64881369,13.41386183],[-9.3677301,-16.64717806,13.41386183],[-9.8086796,-16.64554243,13.41386183],[-10.6931,-16.6439068,13.41386183],[-11.1835003,-16.64227118,13.41386183],[-10.9506998,-16.64063555,13.41386183],[-10.5345001,-16.63899992,13.41386183],[-10.3879004,-16.63736429,13.41386183],[-10.2558002,-16.63245741,13.41386183],[-10.4654999,-16.63082178,13.41386183],[-10.6885996,-16.62918615,13.41386183],[-10.9917002,-16.62755053,13.41386183],[-11.4625998,-16.6259149,13.41386183],[-11.6638002,-16.62427927,13.41386183],[-11.1848001,-16.62264364,13.41386183],[-10.8218002,-16.62100801,13.41386183],[-10.3760004,-16.61937239,13.41386183],[-9.10783,-16.61773676,13.41386183],[-7.0181398,-16.61610113,13.41386183],[-7.4401398,-16.61282988,13.41386183],[-9.5316601,-16.61119425,13.41386183],[-10.3397999,-16.60955862,13.41386183],[-10.3388996,-16.60792299,13.41386183],[-12.6059999,-16.74204447,13.4122262],[-12.8457003,-16.74040884,13.4122262],[-12.9572001,-16.73877321,13.4122262],[-12.6077995,-16.73713758,13.4122262],[-12.3913002,-16.73550196,13.4122262],[-12.6176004,-16.73386633,13.4122262],[-13.7123003,-16.7322307,13.4122262],[-14.8108997,-16.73059507,13.4122262],[-15.0553999,-16.72895945,13.4122262],[-15.2679996,-16.72732382,13.4122262],[-15.2361002,-16.72568819,13.4122262],[-15.7276001,-16.72405256,13.4122262],[-16.2971001,-16.72241693,13.4122262],[-16.7973995,-16.72078131,13.4122262],[-15.9874001,-16.71914568,13.4122262],[-15.2676001,-16.71751005,13.4122262],[-15.1684999,-16.71587442,13.4122262],[-14.5024996,-16.7142388,13.4122262],[-13.8104,-16.71260317,13.4122262],[-13.7033005,-16.71096754,13.4122262],[-14.7648001,-16.70933191,13.4122262],[-15.8142004,-16.70769628,13.4122262],[-15.7180996,-16.70606066,13.4122262],[-15.2540998,-16.70442503,13.4122262],[-15.4475002,-16.7027894,13.4122262],[-15.0031996,-16.70115377,13.4122262],[-13.9730997,-16.69951815,13.4122262],[-13.3221998,-16.69788252,13.4122262],[-13.3817997,-16.69624689,13.4122262],[-13.1306,-16.69461126,13.4122262],[-12.8954,-16.69297564,13.4122262],[-13.1292,-16.69134001,13.4122262],[-13.5295,-16.68970438,13.4122262],[-13.7526999,-16.68806875,13.4122262],[-13.0713997,-16.68643312,13.4122262],[-12.7004995,-16.6847975,13.4122262],[-12.6920004,-16.68316187,13.4122262],[-12.6431999,-16.68152624,13.4122262],[-12.4238997,-16.67989061,13.4122262],[-12.5753002,-16.67825499,13.4122262],[-12.9680004,-16.67661936,13.4122262],[-13.1268997,-16.67498373,13.4122262],[-13.1664,-16.6733481,13.4122262],[-13.1049004,-16.67171247,13.4122262],[-13.2817001,-16.67007685,13.4122262],[-12.9271002,-16.66844122,13.4122262],[-12.7462997,-16.66680559,13.4122262],[-12.5981998,-16.66516996,13.4122262],[-12.3501997,-16.66353434,13.4122262],[-12.4506998,-16.66189871,13.4122262],[-12.5002003,-16.66026308,13.4122262],[-10.4231005,-16.65862745,13.4122262],[-8.2268496,-16.65699182,13.4122262],[-8.1824999,-16.6553562,13.4122262],[-9.0032701,-16.65372057,13.4122262],[-9.4155102,-16.65208494,13.4122262],[-9.3214798,-16.65044931,13.4122262],[-8.9967804,-16.64881369,13.4122262],[-8.3564901,-16.64717806,13.4122262],[-9.2609301,-16.64554243,13.4122262],[-10.8140001,-16.6439068,13.4122262],[-11.7167997,-16.64227118,13.4122262],[-11.1492996,-16.64063555,13.4122262],[-11.2414999,-16.63899992,13.4122262],[-11.4829998,-16.63736429,13.4122262],[-11.0228996,-16.63572866,13.4122262],[-11.3181,-16.63409304,13.4122262],[-11.4456997,-16.63245741,13.4122262],[-10.9298,-16.63082178,13.4122262],[-10.9187002,-16.62918615,13.4122262],[-11.0277996,-16.62755053,13.4122262],[-11.4188995,-16.6259149,13.4122262],[-12.3001003,-16.62427927,13.4122262],[-11.6353998,-16.62264364,13.4122262],[-10.7856998,-16.62100801,13.4122262],[-11.5059004,-16.61937239,13.4122262],[-9.6384096,-16.61773676,13.4122262],[-5.9581399,-16.61610113,13.4122262],[-7.1318598,-16.61282988,13.4122262],[-10.7198,-16.61119425,13.4122262],[-11.6267996,-16.60955862,13.4122262],[-10.9264002,-16.60792299,13.4122262],[-11.3559999,-16.60628736,13.4122262],[-11.3142996,-16.60465174,13.4122262],[-13.8467999,-16.74204447,13.41059057],[-13.7369003,-16.74040884,13.41059057],[-13.6627998,-16.73877321,13.41059057],[-13.3900995,-16.73713758,13.41059057],[-12.4055004,-16.73550196,13.41059057],[-12.4853001,-16.73386633,13.41059057],[-14.0066996,-16.7322307,13.41059057],[-15.0158997,-16.73059507,13.41059057],[-15.0527,-16.72895945,13.41059057],[-15.1597004,-16.72732382,13.41059057],[-14.9362001,-16.72568819,13.41059057],[-15.3704996,-16.72405256,13.41059057],[-16.3031998,-16.72241693,13.41059057],[-17.1245995,-16.72078131,13.41059057],[-15.9771996,-16.71914568,13.41059057],[-15.1859999,-16.71751005,13.41059057],[-15.2585001,-16.71587442,13.41059057],[-14.5621996,-16.7142388,13.41059057],[-13.6468,-16.71260317,13.41059057],[-13.5453997,-16.71096754,13.41059057],[-14.8198996,-16.70933191,13.41059057],[-16.0993004,-16.70769628,13.41059057],[-16.0597992,-16.70606066,13.41059057],[-15.5549002,-16.70442503,13.41059057],[-15.6338997,-16.7027894,13.41059057],[-15.2530003,-16.70115377,13.41059057],[-14.2038002,-16.69951815,13.41059057],[-13.3423004,-16.69788252,13.41059057],[-13.5614004,-16.69624689,13.41059057],[-13.3106003,-16.69461126,13.41059057],[-12.9865999,-16.69297564,13.41059057],[-13.3210001,-16.69134001,13.41059057],[-13.7697001,-16.68970438,13.41059057],[-13.9021997,-16.68806875,13.41059057],[-13.2573004,-16.68643312,13.41059057],[-12.7860003,-16.6847975,13.41059057],[-12.6622,-16.68316187,13.41059057],[-12.6030998,-16.68152624,13.41059057],[-12.3719997,-16.67989061,13.41059057],[-12.4888,-16.67825499,13.41059057],[-13.0127001,-16.67661936,13.41059057],[-13.1788998,-16.67498373,13.41059057],[-13.3375998,-16.6733481,13.41059057],[-13.4567003,-16.67171247,13.41059057],[-13.4308004,-16.67007685,13.41059057],[-13.3509998,-16.66844122,13.41059057],[-12.9055996,-16.66680559,13.41059057],[-12.6691999,-16.66516996,13.41059057],[-12.5024996,-16.66353434,13.41059057],[-12.4434004,-16.66189871,13.41059057],[-12.3262997,-16.66026308,13.41059057],[-10.6122999,-16.65862745,13.41059057],[-8.6790504,-16.65699182,13.41059057],[-8.5347004,-16.6553562,13.41059057],[-9.1941404,-16.65372057,13.41059057],[-9.4132299,-16.65208494,13.41059057],[-9.3083496,-16.65044931,13.41059057],[-8.9746399,-16.64881369,13.41059057],[-8.5815897,-16.64717806,13.41059057],[-9.28088,-16.64554243,13.41059057],[-10.6125002,-16.6439068,13.41059057],[-11.3990002,-16.64227118,13.41059057],[-11.1701002,-16.64063555,13.41059057],[-11.1913996,-16.63899992,13.41059057],[-11.3326998,-16.63736429,13.41059057],[-11.1043997,-16.63572866,13.41059057],[-11.2608004,-16.63409304,13.41059057],[-11.3295002,-16.63245741,13.41059057],[-11.0851002,-16.63082178,13.41059057],[-11.0026999,-16.62918615,13.41059057],[-11.0005999,-16.62755053,13.41059057],[-11.1773005,-16.6259149,13.41059057],[-11.7093,-16.62427927,13.41059057],[-11.0977001,-16.62264364,13.41059057],[-10.3418999,-16.62100801,13.41059057],[-10.3500996,-16.61937239,13.41059057],[-9.0583496,-16.61773676,13.41059057],[-6.8947501,-16.61610113,13.41059057],[-7.8822799,-16.61282988,13.41059057],[-10.2289,-16.61119425,13.41059057],[-11.0228996,-16.60955862,13.41059057],[-10.9707003,-16.60792299,13.41059057],[-11.3154001,-16.60628736,13.41059057],[-11.1358004,-16.60465174,13.41059057],[-15.3580999,-16.7436801,13.40895494],[-15.1194,-16.74204447,13.40895494],[-15.2567997,-16.74040884,13.40895494],[-15.0966997,-16.73877321,13.40895494],[-14.5029001,-16.73713758,13.40895494],[-13.8984003,-16.73550196,13.40895494],[-13.8678999,-16.73386633,13.40895494],[-14.4436998,-16.7322307,13.40895494],[-14.7890997,-16.73059507,13.40895494],[-15.0698004,-16.72895945,13.40895494],[-15.1026001,-16.72732382,13.40895494],[-15.1885004,-16.72568819,13.40895494],[-15.3783998,-16.72405256,13.40895494],[-15.9134998,-16.72241693,13.40895494],[-16.1576004,-16.72078131,13.40895494],[-15.3629999,-16.71914568,13.40895494],[-14.3100004,-16.71751005,13.40895494],[-13.8284998,-16.71587442,13.40895494],[-14.0326996,-16.7142388,13.40895494],[-14.1774998,-16.71260317,13.40895494],[-14.3343,-16.71096754,13.40895494],[-15.0662003,-16.70933191,13.40895494],[-15.9474001,-16.70769628,13.40895494],[-16.0277004,-16.70606066,13.40895494],[-15.7790003,-16.70442503,13.40895494],[-15.6459999,-16.7027894,13.40895494],[-15.2812004,-16.70115377,13.40895494],[-14.6884003,-16.69951815,13.40895494],[-14.1960001,-16.69788252,13.40895494],[-14.0164003,-16.69624689,13.40895494],[-13.8702002,-16.69461126,13.40895494],[-13.7472,-16.69297564,13.40895494],[-13.7248001,-16.69134001,13.40895494],[-13.8135996,-16.68970438,13.40895494],[-13.7768002,-16.68806875,13.40895494],[-13.3044004,-16.68643312,13.40895494],[-12.8285999,-16.6847975,13.40895494],[-12.6792002,-16.68316187,13.40895494],[-12.4754,-16.68152624,13.40895494],[-12.2334003,-16.67989061,13.40895494],[-12.4467001,-16.67825499,13.40895494],[-13.0973997,-16.67661936,13.40895494],[-13.6289997,-16.67498373,13.40895494],[-13.7299995,-16.6733481,13.40895494],[-13.9006996,-16.67171247,13.40895494],[-14.0619001,-16.67007685,13.40895494],[-13.6588001,-16.66844122,13.40895494],[-13.1684999,-16.66680559,13.40895494],[-12.8810997,-16.66516996,13.40895494],[-12.4841995,-16.66353434,13.40895494],[-12.1688995,-16.66189871,13.40895494],[-11.7369003,-16.66026308,13.40895494],[-10.7487001,-16.65862745,13.40895494],[-9.8170099,-16.65699182,13.40895494],[-9.4843502,-16.6553562,13.40895494],[-9.5843401,-16.65372057,13.40895494],[-9.7056503,-16.65208494,13.40895494],[-9.6506004,-16.65044931,13.40895494],[-8.9565296,-16.64881369,13.40895494],[-8.4758396,-16.64717806,13.40895494],[-9.1193895,-16.64554243,13.40895494],[-10.4334002,-16.6439068,13.40895494],[-11.1149998,-16.64227118,13.40895494],[-11.0511999,-16.64063555,13.40895494],[-10.8199997,-16.63899992,13.40895494],[-10.7973003,-16.63736429,13.40895494],[-10.9686003,-16.63572866,13.40895494],[-11.1609001,-16.63409304,13.40895494],[-11.2149,-16.63245741,13.40895494],[-11.1419001,-16.63082178,13.40895494],[-11.0178003,-16.62918615,13.40895494],[-10.9386997,-16.62755053,13.40895494],[-10.7896996,-16.6259149,13.40895494],[-10.6470003,-16.62427927,13.40895494],[-10.0998001,-16.62264364,13.40895494],[-8.8524504,-16.62100801,13.40895494],[-7.4380999,-16.61937239,13.40895494],[-7.8636599,-16.61773676,13.40895494],[-8.9605303,-16.61282988,13.40895494],[-10.0784998,-16.61119425,13.40895494],[-10.7354002,-16.60955862,13.40895494],[-11.1738997,-16.60792299,13.40895494],[-11.9671001,-16.60628736,13.40895494],[-11.9926004,-16.60465174,13.40895494],[-16.0337009,-16.74531572,13.40731932],[-17.0058002,-16.7436801,13.40731932],[-16.2052994,-16.74204447,13.40731932],[-17.4976006,-16.74040884,13.40731932],[-18.3248005,-16.73877321,13.40731932],[-15.7564001,-16.73713758,13.40731932],[-14.9870005,-16.73550196,13.40731932],[-14.9426003,-16.73386633,13.40731932],[-14.8790998,-16.7322307,13.40731932],[-14.8746004,-16.73059507,13.40731932],[-14.9238005,-16.72895945,13.40731932],[-14.9747,-16.72732382,13.40731932],[-14.4439001,-16.72568819,13.40731932],[-15.0032997,-16.72405256,13.40731932],[-15.9258003,-16.72241693,13.40731932],[-16.5081997,-16.72078131,13.40731932],[-15.3329,-16.71914568,13.40731932],[-12.5743999,-16.71751005,13.40731932],[-10.9625998,-16.71587442,13.40731932],[-13.3129997,-16.7142388,13.40731932],[-14.2559996,-16.71260317,13.40731932],[-14.3508997,-16.71096754,13.40731932],[-15.3940001,-16.70933191,13.40731932],[-16.7626991,-16.70769628,13.40731932],[-16.7224998,-16.70606066,13.40731932],[-16.0289001,-16.70442503,13.40731932],[-15.9703999,-16.7027894,13.40731932],[-15.6873999,-16.70115377,13.40731932],[-14.8919001,-16.69951815,13.40731932],[-14.5613003,-16.69788252,13.40731932],[-14.4181004,-16.69624689,13.40731932],[-14.2186003,-16.69461126,13.40731932],[-14.1176004,-16.69297564,13.40731932],[-14.0802002,-16.69134001,13.40731932],[-14.0349998,-16.68970438,13.40731932],[-14.0354004,-16.68806875,13.40731932],[-13.4968004,-16.68643312,13.40731932],[-12.4593,-16.6847975,13.40731932],[-12.3028002,-16.68316187,13.40731932],[-12.3830004,-16.68152624,13.40731932],[-11.4115,-16.67989061,13.40731932],[-11.7891998,-16.67825499,13.40731932],[-13.2784996,-16.67661936,13.40731932],[-14.3601999,-16.67498373,13.40731932],[-14.1212997,-16.6733481,13.40731932],[-14.3410997,-16.67171247,13.40731932],[-15.1917,-16.67007685,13.40731932],[-14.1865997,-16.66844122,13.40731932],[-13.1350002,-16.66680559,13.40731932],[-12.8674002,-16.66516996,13.40731932],[-12.5191002,-16.66353434,13.40731932],[-12.1911001,-16.66189871,13.40731932],[-12.1519003,-16.66026308,13.40731932],[-10.9979,-16.65862745,13.40731932],[-9.6873903,-16.65699182,13.40731932],[-9.6065798,-16.6553562,13.40731932],[-10.0094995,-16.65372057,13.40731932],[-10.5972004,-16.65208494,13.40731932],[-10.2003002,-16.65044931,13.40731932],[-8.6925898,-16.64881369,13.40731932],[-6.8529301,-16.64717806,13.40731932],[-8.3801098,-16.64554243,13.40731932],[-10.7512999,-16.6439068,13.40731932],[-12.1234999,-16.64227118,13.40731932],[-11.1450005,-16.64063555,13.40731932],[-10.5358,-16.63899992,13.40731932],[-10.3831997,-16.63736429,13.40731932],[-10.9039001,-16.63572866,13.40731932],[-11.3333998,-16.63409304,13.40731932],[-11.4210997,-16.63245741,13.40731932],[-11.1431999,-16.63082178,13.40731932],[-11.2063999,-16.62918615,13.40731932],[-11.0633001,-16.62755053,13.40731932],[-10.5424004,-16.6259149,13.40731932],[-10.5302,-16.62427927,13.40731932],[-10.0333004,-16.62264364,13.40731932],[-9.11131,-16.6144655,13.40731932],[-9.4948702,-16.61282988,13.40731932],[-10.5074997,-16.61119425,13.40731932],[-10.8416004,-16.60955862,13.40731932],[-11.302,-16.60792299,13.40731932],[-12.9884996,-16.60628736,13.40731932],[-13.0839005,-16.60465174,13.40731932],[-13.5410004,-16.74695135,13.40568369],[-15.8355999,-16.74531572,13.40568369],[-16.9263,-16.7436801,13.40568369],[-16.0739994,-16.74204447,13.40568369],[-17.4286003,-16.74040884,13.40568369],[-18.3111992,-16.73877321,13.40568369],[-16.0146008,-16.73713758,13.40568369],[-15.1329002,-16.73550196,13.40568369],[-15.0052004,-16.73386633,13.40568369],[-14.967,-16.7322307,13.40568369],[-14.9489002,-16.73059507,13.40568369],[-15.0127001,-16.72895945,13.40568369],[-15.1230001,-16.72732382,13.40568369],[-14.6368999,-16.72568819,13.40568369],[-15.1454,-16.72405256,13.40568369],[-15.9675999,-16.72241693,13.40568369],[-16.3761997,-16.72078131,13.40568369],[-15.4167995,-16.71914568,13.40568369],[-13.1623001,-16.71751005,13.40568369],[-11.7962999,-16.71587442,13.40568369],[-13.6401997,-16.7142388,13.40568369],[-14.3736,-16.71260317,13.40568369],[-14.4812002,-16.71096754,13.40568369],[-15.3399,-16.70933191,13.40568369],[-16.4535007,-16.70769628,13.40568369],[-16.5545998,-16.70606066,13.40568369],[-16.0757999,-16.70442503,13.40568369],[-15.9088001,-16.7027894,13.40568369],[-15.7645998,-16.70115377,13.40568369],[-15.2222004,-16.69951815,13.40568369],[-14.7522001,-16.69788252,13.40568369],[-14.7117996,-16.69624689,13.40568369],[-14.4279003,-16.69461126,13.40568369],[-14.2561998,-16.69297564,13.40568369],[-14.4143,-16.69134001,13.40568369],[-14.3339005,-16.68970438,13.40568369],[-14.1847,-16.68806875,13.40568369],[-13.8748999,-16.68643312,13.40568369],[-12.9757004,-16.6847975,13.40568369],[-12.7004004,-16.68316187,13.40568369],[-12.6543999,-16.68152624,13.40568369],[-11.9864998,-16.67989061,13.40568369],[-12.2702999,-16.67825499,13.40568369],[-13.3165998,-16.67661936,13.40568369],[-13.9994001,-16.67498373,13.40568369],[-13.8888998,-16.6733481,13.40568369],[-14.0475998,-16.67171247,13.40568369],[-14.4877005,-16.67007685,13.40568369],[-13.7941999,-16.66844122,13.40568369],[-13.0625,-16.66680559,13.40568369],[-12.8711996,-16.66516996,13.40568369],[-12.5851002,-16.66353434,13.40568369],[-12.1779003,-16.66189871,13.40568369],[-11.8889999,-16.66026308,13.40568369],[-11.1100998,-16.65862745,13.40568369],[-10.1622,-16.65699182,13.40568369],[-10.0021,-16.6553562,13.40568369],[-10.3157997,-16.65372057,13.40568369],[-10.4794998,-16.65208494,13.40568369],[-10.2575998,-16.65044931,13.40568369],[-9.3608398,-16.64881369,13.40568369],[-8.4610901,-16.64717806,13.40568369],[-9.1042995,-16.64554243,13.40568369],[-10.3486996,-16.6439068,13.40568369],[-11.0802002,-16.64227118,13.40568369],[-10.8525,-16.64063555,13.40568369],[-10.6671,-16.63899992,13.40568369],[-10.6168003,-16.63736429,13.40568369],[-10.8052998,-16.63572866,13.40568369],[-11.1099005,-16.63409304,13.40568369],[-11.1087999,-16.63245741,13.40568369],[-10.8712997,-16.63082178,13.40568369],[-10.9309998,-16.62918615,13.40568369],[-10.6618996,-16.62755053,13.40568369],[-10.0923996,-16.6259149,13.40568369],[-9.8163204,-16.62427927,13.40568369],[-7.3316002,-16.61937239,13.40568369],[-7.9620199,-16.61773676,13.40568369],[-8.7128,-16.61610113,13.40568369],[-9.1152802,-16.6144655,13.40568369],[-9.6236897,-16.61282988,13.40568369],[-10.3337002,-16.61119425,13.40568369],[-10.8232002,-16.60955862,13.40568369],[-11.4420996,-16.60792299,13.40568369],[-11.9993,-16.60628736,13.40568369],[-12.0198002,-16.60465174,13.40568369],[-11.6048002,-16.74695135,13.40404806],[-13.8842001,-16.74531572,13.40404806],[-14.6435003,-16.7436801,13.40404806],[-14.9796,-16.74204447,13.40404806],[-15.2777996,-16.74040884,13.40404806],[-15.4609003,-16.73877321,13.40404806],[-15.0918999,-16.73713758,13.40404806],[-14.6073999,-16.73550196,13.40404806],[-14.6602001,-16.73386633,13.40404806],[-15.0071001,-16.7322307,13.40404806],[-15.2938995,-16.73059507,13.40404806],[-15.5536003,-16.72895945,13.40404806],[-15.6611004,-16.72732382,13.40404806],[-16.0095005,-16.72568819,13.40404806],[-15.9757996,-16.72405256,13.40404806],[-15.9849997,-16.72241693,13.40404806],[-16.0170002,-16.72078131,13.40404806],[-15.7648001,-16.71914568,13.40404806],[-15.5009003,-16.71751005,13.40404806],[-15.3627996,-16.71587442,13.40404806],[-14.9644003,-16.7142388,13.40404806],[-14.7003002,-16.71260317,13.40404806],[-14.8072004,-16.71096754,13.40404806],[-15.2955999,-16.70933191,13.40404806],[-16.0678997,-16.70769628,13.40404806],[-16.1587009,-16.70606066,13.40404806],[-15.9131002,-16.70442503,13.40404806],[-15.7755003,-16.7027894,13.40404806],[-15.6682997,-16.70115377,13.40404806],[-15.4514999,-16.69951815,13.40404806],[-15.1610003,-16.69788252,13.40404806],[-15.0052004,-16.69624689,13.40404806],[-14.8774996,-16.69461126,13.40404806],[-14.8423004,-16.69297564,13.40404806],[-14.8178997,-16.69134001,13.40404806],[-15.1420002,-16.68970438,13.40404806],[-15.2258997,-16.68806875,13.40404806],[-14.5218,-16.68643312,13.40404806],[-14.0347004,-16.6847975,13.40404806],[-13.7477999,-16.68316187,13.40404806],[-13.2329998,-16.68152624,13.40404806],[-12.9757004,-16.67989061,13.40404806],[-12.9968996,-16.67825499,13.40404806],[-13.375,-16.67661936,13.40404806],[-13.5173998,-16.67498373,13.40404806],[-13.5607996,-16.6733481,13.40404806],[-13.6205997,-16.67171247,13.40404806],[-13.7522001,-16.67007685,13.40404806],[-13.3523998,-16.66844122,13.40404806],[-12.7954998,-16.66680559,13.40404806],[-12.5026999,-16.66516996,13.40404806],[-12.4912004,-16.66353434,13.40404806],[-12.2960997,-16.66189871,13.40404806],[-12.0089998,-16.66026308,13.40404806],[-11.1677999,-16.65862745,13.40404806],[-10.2123003,-16.65699182,13.40404806],[-10.0576,-16.6553562,13.40404806],[-10.632,-16.65372057,13.40404806],[-11.2595997,-16.65208494,13.40404806],[-10.9580002,-16.65044931,13.40404806],[-10.0889997,-16.64881369,13.40404806],[-9.7301798,-16.64717806,13.40404806],[-9.7167597,-16.64554243,13.40404806],[-9.87216,-16.6439068,13.40404806],[-9.7897301,-16.64227118,13.40404806],[-10.2612,-16.64063555,13.40404806],[-10.5459003,-16.63899992,13.40404806],[-10.5411997,-16.63736429,13.40404806],[-10.6731005,-16.63572866,13.40404806],[-10.6898003,-16.63409304,13.40404806],[-10.6562996,-16.63245741,13.40404806],[-10.6528997,-16.63082178,13.40404806],[-10.6900997,-16.62918615,13.40404806],[-10.5151997,-16.62755053,13.40404806],[-9.4617004,-16.6259149,13.40404806],[-8.4479399,-16.62264364,13.40404806],[-9.22363,-16.62100801,13.40404806],[-9.8215303,-16.61937239,13.40404806],[-9.4671602,-16.61773676,13.40404806],[-9.0710001,-16.61610113,13.40404806],[-9.1993999,-16.6144655,13.40404806],[-9.71733,-16.61282988,13.40404806],[-10.6424999,-16.61119425,13.40404806],[-11.0578003,-16.60955862,13.40404806],[-11.2496996,-16.60792299,13.40404806],[-11.4853001,-16.60628736,13.40404806],[-11.4498997,-16.60465174,13.40404806],[-5.5380802,-16.74858698,13.40241243],[-9.3518801,-16.74695135,13.40241243],[-13.1728001,-16.74531572,13.40241243],[-13.7496996,-16.7436801,13.40241243],[-14.1092997,-16.74204447,13.40241243],[-14.1300001,-16.74040884,13.40241243],[-14.0137997,-16.73877321,13.40241243],[-14.4616003,-16.73713758,13.40241243],[-13.9815998,-16.73550196,13.40241243],[-13.9919004,-16.73386633,13.40241243],[-15.0319996,-16.7322307,13.40241243],[-16.0303001,-16.73059507,13.40241243],[-15.9463997,-16.72895945,13.40241243],[-16.1695995,-16.72732382,13.40241243],[-17.0645008,-16.72568819,13.40241243],[-16.5478992,-16.72405256,13.40241243],[-16.1660004,-16.72241693,13.40241243],[-15.9615002,-16.72078131,13.40241243],[-16.1350002,-16.71914568,13.40241243],[-16.8237,-16.71751005,13.40241243],[-17.6961002,-16.71587442,13.40241243],[-15.9464998,-16.7142388,13.40241243],[-14.7537003,-16.71260317,13.40241243],[-14.6033001,-16.71096754,13.40241243],[-15.3469,-16.70933191,13.40241243],[-16.4022999,-16.70769628,13.40241243],[-16.3426991,-16.70606066,13.40241243],[-15.8084002,-16.70442503,13.40241243],[-15.5986996,-16.7027894,13.40241243],[-15.6402998,-16.70115377,13.40241243],[-15.5325003,-16.69951815,13.40241243],[-15.3109999,-16.69788252,13.40241243],[-15.3483,-16.69624689,13.40241243],[-15.1576996,-16.69461126,13.40241243],[-14.9863997,-16.69297564,13.40241243],[-15.1688004,-16.69134001,13.40241243],[-15.8779001,-16.68970438,13.40241243],[-16.4141006,-16.68806875,13.40241243],[-15.0407,-16.68643312,13.40241243],[-14.4757996,-16.6847975,13.40241243],[-14.4183998,-16.68316187,13.40241243],[-13.6785002,-16.68152624,13.40241243],[-13.0934,-16.67989061,13.40241243],[-13.1461,-16.67825499,13.40241243],[-13.3429003,-16.67661936,13.40241243],[-13.6524,-16.67498373,13.40241243],[-13.4973001,-16.6733481,13.40241243],[-13.4359999,-16.67171247,13.40241243],[-14.0169001,-16.67007685,13.40241243],[-13.2618999,-16.66844122,13.40241243],[-12.5170002,-16.66680559,13.40241243],[-12.1548004,-16.66516996,13.40241243],[-12.3080997,-16.66353434,13.40241243],[-12.4054003,-16.66189871,13.40241243],[-12.3799,-16.66026308,13.40241243],[-11.4636002,-16.65862745,13.40241243],[-9.56108,-16.65699182,13.40241243],[-9.5317602,-16.6553562,13.40241243],[-11.0931997,-16.65372057,13.40241243],[-12.0242996,-16.65208494,13.40241243],[-11.7529001,-16.65044931,13.40241243],[-10.5705996,-16.64881369,13.40241243],[-9.6146202,-16.64717806,13.40241243],[-10.0822001,-16.64554243,13.40241243],[-9.9432001,-16.6439068,13.40241243],[-9.1121397,-16.64227118,13.40241243],[-10.0035,-16.64063555,13.40241243],[-10.4463997,-16.63899992,13.40241243],[-10.3682003,-16.63736429,13.40241243],[-10.6030998,-16.63572866,13.40241243],[-10.5748997,-16.63409304,13.40241243],[-10.5495996,-16.63245741,13.40241243],[-10.5138998,-16.63082178,13.40241243],[-10.7674999,-16.62918615,13.40241243],[-10.5848999,-16.62755053,13.40241243],[-9.0714397,-16.6259149,13.40241243],[-9.4572802,-16.62100801,13.40241243],[-10.7403002,-16.61937239,13.40241243],[-9.9118204,-16.61773676,13.40241243],[-9.2776003,-16.61610113,13.40241243],[-9.1271095,-16.6144655,13.40241243],[-9.7121801,-16.61282988,13.40241243],[-10.8069,-16.61119425,13.40241243],[-11.1048002,-16.60955862,13.40241243],[-11.0825005,-16.60792299,13.40241243],[-11.3275995,-16.60628736,13.40241243],[-11.3873997,-16.60465174,13.40241243],[-10.2316999,-16.75022261,13.4007768],[-7.7744498,-16.74858698,13.4007768],[-10.4277,-16.74695135,13.4007768],[-13.092,-16.74531572,13.4007768],[-13.7228003,-16.7436801,13.4007768],[-13.8469,-16.74204447,13.4007768],[-13.9190998,-16.74040884,13.4007768],[-14.0057001,-16.73877321,13.4007768],[-14.0029001,-16.73713758,13.4007768],[-13.9341002,-16.73550196,13.4007768],[-14.1290998,-16.73386633,13.4007768],[-14.7519999,-16.7322307,13.4007768],[-15.5867004,-16.73059507,13.4007768],[-15.7756996,-16.72895945,13.4007768],[-16.0792007,-16.72732382,13.4007768],[-16.6205997,-16.72568819,13.4007768],[-16.5879993,-16.72405256,13.4007768],[-16.5118008,-16.72241693,13.4007768],[-16.2982998,-16.72078131,13.4007768],[-16.4871006,-16.71914568,13.4007768],[-16.8260002,-16.71751005,13.4007768],[-16.9859009,-16.71587442,13.4007768],[-16.0132999,-16.7142388,13.4007768],[-15.0797997,-16.71260317,13.4007768],[-14.7707996,-16.71096754,13.4007768],[-15.1707001,-16.70933191,13.4007768],[-15.6344995,-16.70769628,13.4007768],[-15.6753998,-16.70606066,13.4007768],[-15.6566,-16.70442503,13.4007768],[-15.7244997,-16.7027894,13.4007768],[-15.8851995,-16.70115377,13.4007768],[-15.8662996,-16.69951815,13.4007768],[-15.6806002,-16.69788252,13.4007768],[-15.5737,-16.69624689,13.4007768],[-15.2849998,-16.69461126,13.4007768],[-15.0997,-16.69297564,13.4007768],[-15.2517004,-16.69134001,13.4007768],[-15.5373001,-16.68970438,13.4007768],[-15.6900997,-16.68806875,13.4007768],[-15.1036997,-16.68643312,13.4007768],[-14.5495005,-16.6847975,13.4007768],[-14.3095999,-16.68316187,13.4007768],[-13.8814001,-16.68152624,13.4007768],[-13.4315996,-16.67989061,13.4007768],[-13.4171,-16.67825499,13.4007768],[-13.4707003,-16.67661936,13.4007768],[-13.6259003,-16.67498373,13.4007768],[-13.3849001,-16.6733481,13.4007768],[-12.8563004,-16.67171247,13.4007768],[-12.7259998,-16.67007685,13.4007768],[-12.559,-16.66844122,13.4007768],[-12.7058001,-16.66680559,13.4007768],[-12.7278996,-16.66516996,13.4007768],[-12.5867996,-16.66353434,13.4007768],[-12.6090002,-16.66189871,13.4007768],[-12.4099998,-16.66026308,13.4007768],[-12.0028,-16.65862745,13.4007768],[-11.1705999,-16.65699182,13.4007768],[-11.1991997,-16.6553562,13.4007768],[-11.9710999,-16.65372057,13.4007768],[-12.3200998,-16.65208494,13.4007768],[-12.1124001,-16.65044931,13.4007768],[-11.533,-16.64881369,13.4007768],[-10.9981003,-16.64717806,13.4007768],[-10.9254999,-16.64554243,13.4007768],[-10.8666,-16.6439068,13.4007768],[-10.5190001,-16.64227118,13.4007768],[-10.7112999,-16.64063555,13.4007768],[-10.8865995,-16.63899992,13.4007768],[-10.8965998,-16.63736429,13.4007768],[-10.6321001,-16.63572866,13.4007768],[-10.3451004,-16.63409304,13.4007768],[-10.2702999,-16.63245741,13.4007768],[-10.2617998,-16.63082178,13.4007768],[-10.3065004,-16.62918615,13.4007768],[-10.0157003,-16.62755053,13.4007768],[-9.4219303,-16.61610113,13.4007768],[-9.5509501,-16.6144655,13.4007768],[-9.93785,-16.61282988,13.4007768],[-10.2924995,-16.61119425,13.4007768],[-10.5284004,-16.60955862,13.4007768],[-10.8080997,-16.60792299,13.4007768],[-11.0750999,-16.60628736,13.4007768],[-11.1591997,-16.60465174,13.4007768],[-16.4951992,-16.75349386,13.39914118],[-15.4181995,-16.75185823,13.39914118],[-13.0209999,-16.75022261,13.39914118],[-12.1170998,-16.74858698,13.39914118],[-12.5010004,-16.74695135,13.39914118],[-13.7302999,-16.74531572,13.39914118],[-14.2996998,-16.7436801,13.39914118],[-13.9088001,-16.74204447,13.39914118],[-13.5570002,-16.74040884,13.39914118],[-13.2838001,-16.73877321,13.39914118],[-13.5915003,-16.73713758,13.39914118],[-13.6311998,-16.73550196,13.39914118],[-13.6948996,-16.73386633,13.39914118],[-14.4607,-16.7322307,13.39914118],[-15.0269003,-16.73059507,13.39914118],[-15.3491001,-16.72895945,13.39914118],[-15.8134003,-16.72732382,13.39914118],[-16.1438007,-16.72568819,13.39914118],[-16.4405994,-16.72405256,13.39914118],[-16.8763008,-16.72241693,13.39914118],[-17.1825008,-16.72078131,13.39914118],[-16.9713993,-16.71914568,13.39914118],[-16.9974995,-16.71751005,13.39914118],[-17.0081005,-16.71587442,13.39914118],[-16.0995998,-16.7142388,13.39914118],[-14.9477997,-16.71260317,13.39914118],[-14.6792002,-16.71096754,13.39914118],[-14.6559,-16.70933191,13.39914118],[-14.2017002,-16.70769628,13.39914118],[-14.4031,-16.70606066,13.39914118],[-15.3823004,-16.70442503,13.39914118],[-16.1023998,-16.7027894,13.39914118],[-16.1613007,-16.70115377,13.39914118],[-16.4731998,-16.69951815,13.39914118],[-16.9403992,-16.69788252,13.39914118],[-16.2481003,-16.69624689,13.39914118],[-15.2839003,-16.69461126,13.39914118],[-14.8395004,-16.69297564,13.39914118],[-15.1134005,-16.69134001,13.39914118],[-15.5173998,-16.68970438,13.39914118],[-15.5644999,-16.68806875,13.39914118],[-15.1001997,-16.68643312,13.39914118],[-14.7083998,-16.6847975,13.39914118],[-14.4891005,-16.68316187,13.39914118],[-13.9827995,-16.68152624,13.39914118],[-13.3527002,-16.67989061,13.39914118],[-13.2856998,-16.67825499,13.39914118],[-13.6864004,-16.67661936,13.39914118],[-14.1857996,-16.67498373,13.39914118],[-13.6142998,-16.6733481,13.39914118],[-11.3172998,-16.67171247,13.39914118],[-8.8927603,-16.67007685,13.39914118],[-10.8705997,-16.66844122,13.39914118],[-12.9499998,-16.66680559,13.39914118],[-13.6709003,-16.66516996,13.39914118],[-13.0716,-16.66353434,13.39914118],[-12.9418001,-16.66189871,13.39914118],[-12.9919004,-16.66026308,13.39914118],[-12.5973997,-16.65862745,13.39914118],[-12.5227003,-16.65699182,13.39914118],[-12.5300999,-16.6553562,13.39914118],[-12.8895998,-16.65372057,13.39914118],[-13.9455996,-16.65208494,13.39914118],[-13.5822001,-16.65044931,13.39914118],[-12.3463001,-16.64881369,13.39914118],[-11.9366999,-16.64717806,13.39914118],[-11.8572998,-16.64554243,13.39914118],[-11.802,-16.6439068,13.39914118],[-11.9089003,-16.64227118,13.39914118],[-11.6041002,-16.64063555,13.39914118],[-11.6752005,-16.63899992,13.39914118],[-12.0588999,-16.63736429,13.39914118],[-10.8881998,-16.63572866,13.39914118],[-9.7108603,-16.63409304,13.39914118],[-9.4080896,-16.63245741,13.39914118],[-9.9900599,-16.63082178,13.39914118],[-10.2279997,-16.62918615,13.39914118],[-9.3687696,-16.6259149,13.39914118],[-9.1104403,-16.62427927,13.39914118],[-9.0827303,-16.62264364,13.39914118],[-9.1372404,-16.61937239,13.39914118],[-9.2572298,-16.61773676,13.39914118],[-9.86658,-16.6144655,13.39914118],[-9.9135799,-16.61282988,13.39914118],[-9.9727602,-16.61119425,13.39914118],[-9.9997196,-16.60955862,13.39914118],[-10.4139996,-16.60792299,13.39914118],[-11.0973997,-16.60628736,13.39914118],[-11.2138996,-16.60465174,13.39914118],[-16.6278992,-16.75512949,13.39750555],[-18.3945007,-16.75349386,13.39750555],[-17.0928993,-16.75185823,13.39750555],[-13.9525003,-16.75022261,13.39750555],[-12.3674002,-16.74858698,13.39750555],[-13.0946999,-16.74695135,13.39750555],[-14.4733,-16.74531572,13.39750555],[-15.4856997,-16.7436801,13.39750555],[-14.0205002,-16.74204447,13.39750555],[-12.9329004,-16.74040884,13.39750555],[-12.4593,-16.73877321,13.39750555],[-13.1672001,-16.73713758,13.39750555],[-13.1506996,-16.73550196,13.39750555],[-13.1746998,-16.73386633,13.39750555],[-14.2959995,-16.7322307,13.39750555],[-14.9490995,-16.73059507,13.39750555],[-15.1279001,-16.72895945,13.39750555],[-15.7404003,-16.72732382,13.39750555],[-15.9112997,-16.72568819,13.39750555],[-16.2668991,-16.72405256,13.39750555],[-17.1650009,-16.72241693,13.39750555],[-17.8677006,-16.72078131,13.39750555],[-17.3834991,-16.71914568,13.39750555],[-17.3743,-16.71751005,13.39750555],[-17.6387997,-16.71587442,13.39750555],[-16.3824005,-16.7142388,13.39750555],[-14.7060003,-16.71260317,13.39750555],[-14.2184,-16.71096754,13.39750555],[-14.4408998,-16.70933191,13.39750555],[-13.3346996,-16.70769628,13.39750555],[-13.4794998,-16.70606066,13.39750555],[-15.2413998,-16.70442503,13.39750555],[-16.4729004,-16.7027894,13.39750555],[-16.3813992,-16.70115377,13.39750555],[-16.6798,-16.69951815,13.39750555],[-17.9200993,-16.69788252,13.39750555],[-16.7702007,-16.69624689,13.39750555],[-15.2263002,-16.69461126,13.39750555],[-14.4744997,-16.69297564,13.39750555],[-15.0193005,-16.69134001,13.39750555],[-15.5830002,-16.68970438,13.39750555],[-15.8676996,-16.68806875,13.39750555],[-15.2110996,-16.68643312,13.39750555],[-14.6906996,-16.6847975,13.39750555],[-14.6004,-16.68316187,13.39750555],[-14.2235003,-16.68152624,13.39750555],[-13.1436005,-16.67989061,13.39750555],[-13.29,-16.67825499,13.39750555],[-14.0263996,-16.67661936,13.39750555],[-14.6615,-16.67498373,13.39750555],[-13.9603004,-16.6733481,13.39750555],[-10.9303999,-16.67171247,13.39750555],[-6.79179,-16.67007685,13.39750555],[-10.3253002,-16.66844122,13.39750555],[-13.2952995,-16.66680559,13.39750555],[-14.1452999,-16.66516996,13.39750555],[-13.6307001,-16.66353434,13.39750555],[-13.1971998,-16.66189871,13.39750555],[-13.2094002,-16.66026308,13.39750555],[-13.1302004,-16.65862745,13.39750555],[-12.8663998,-16.65699182,13.39750555],[-12.9146996,-16.6553562,13.39750555],[-13.6084003,-16.65372057,13.39750555],[-14.5748997,-16.65208494,13.39750555],[-14.3156004,-16.65044931,13.39750555],[-13.1008997,-16.64881369,13.39750555],[-12.0867996,-16.64717806,13.39750555],[-12.2832003,-16.64554243,13.39750555],[-12.3200998,-16.6439068,13.39750555],[-12.1722002,-16.64227118,13.39750555],[-11.9148998,-16.64063555,13.39750555],[-12,-16.63899992,13.39750555],[-12.3469,-16.63736429,13.39750555],[-11.0107002,-16.63572866,13.39750555],[-9.6835499,-16.63409304,13.39750555],[-9.3225403,-16.63245741,13.39750555],[-9.9007397,-16.63082178,13.39750555],[-10.2656002,-16.62918615,13.39750555],[-10.0712004,-16.62755053,13.39750555],[-9.2926798,-16.6259149,13.39750555],[-9.11308,-16.62427927,13.39750555],[-9.0443001,-16.62264364,13.39750555],[-9.1708002,-16.61937239,13.39750555],[-9.3255701,-16.61773676,13.39750555],[-9.6508703,-16.61610113,13.39750555],[-9.8563995,-16.6144655,13.39750555],[-9.80865,-16.61282988,13.39750555],[-9.90804,-16.61119425,13.39750555],[-9.94242,-16.60955862,13.39750555],[-10.2552004,-16.60792299,13.39750555],[-10.8948002,-16.60628736,13.39750555],[-11.0518999,-16.60465174,13.39750555],[-15.3887997,-16.75676512,13.39586992],[-16.2397003,-16.75512949,13.39586992],[-16.9864998,-16.75349386,13.39586992],[-16.3969994,-16.75185823,13.39586992],[-14.7799997,-16.75022261,13.39586992],[-13.7255001,-16.74858698,13.39586992],[-13.9125996,-16.74695135,13.39586992],[-14.3207998,-16.74531572,13.39586992],[-14.4366999,-16.7436801,13.39586992],[-14.0046997,-16.74204447,13.39586992],[-13.2293997,-16.74040884,13.39586992],[-13.0185003,-16.73877321,13.39586992],[-13.2363005,-16.73713758,13.39586992],[-13.3252001,-16.73550196,13.39586992],[-13.5433998,-16.73386633,13.39586992],[-14.3127003,-16.7322307,13.39586992],[-14.9688997,-16.73059507,13.39586992],[-15.3591003,-16.72895945,13.39586992],[-15.8373003,-16.72732382,13.39586992],[-16.1679001,-16.72568819,13.39586992],[-16.4414005,-16.72405256,13.39586992],[-16.8955002,-16.72241693,13.39586992],[-17.3246002,-16.72078131,13.39586992],[-17.2243996,-16.71914568,13.39586992],[-17.2084007,-16.71751005,13.39586992],[-17.1618004,-16.71587442,13.39586992],[-16.4571991,-16.7142388,13.39586992],[-15.5815001,-16.71260317,13.39586992],[-15.1611996,-16.71096754,13.39586992],[-14.8136997,-16.70933191,13.39586992],[-14.0977001,-16.70769628,13.39586992],[-14.2477999,-16.70606066,13.39586992],[-15.4251003,-16.70442503,13.39586992],[-16.2915001,-16.7027894,13.39586992],[-16.2943001,-16.70115377,13.39586992],[-16.3425999,-16.69951815,13.39586992],[-16.5969009,-16.69788252,13.39586992],[-16.0692005,-16.69624689,13.39586992],[-15.2118998,-16.69461126,13.39586992],[-14.7046003,-16.69297564,13.39586992],[-14.8747997,-16.69134001,13.39586992],[-15.3016996,-16.68970438,13.39586992],[-15.3415003,-16.68806875,13.39586992],[-15.0005999,-16.68643312,13.39586992],[-14.6686001,-16.6847975,13.39586992],[-14.6052999,-16.68316187,13.39586992],[-14.6143999,-16.68152624,13.39586992],[-14.5038996,-16.67989061,13.39586992],[-14.4022999,-16.67825499,13.39586992],[-14.4569998,-16.67661936,13.39586992],[-14.3870001,-16.67498373,13.39586992],[-14.0551996,-16.6733481,13.39586992],[-13.2643003,-16.67171247,13.39586992],[-12.5178003,-16.67007685,13.39586992],[-12.9555998,-16.66844122,13.39586992],[-13.6469002,-16.66680559,13.39586992],[-13.8320999,-16.66516996,13.39586992],[-13.7011995,-16.66353434,13.39586992],[-13.6042004,-16.66189871,13.39586992],[-13.6281004,-16.66026308,13.39586992],[-13.7627001,-16.65862745,13.39586992],[-13.7676001,-16.65699182,13.39586992],[-14.0461998,-16.6553562,13.39586992],[-14.5824003,-16.65372057,13.39586992],[-14.8631001,-16.65208494,13.39586992],[-14.7363005,-16.65044931,13.39586992],[-14.2433996,-16.64881369,13.39586992],[-13.8400002,-16.64717806,13.39586992],[-13.3479004,-16.64554243,13.39586992],[-12.9616003,-16.6439068,13.39586992],[-12.6316004,-16.64227118,13.39586992],[-12.1640997,-16.64063555,13.39586992],[-11.3877001,-16.63899992,13.39586992],[-10.9413996,-16.63736429,13.39586992],[-10.8027,-16.63572866,13.39586992],[-10.6563997,-16.63409304,13.39586992],[-10.5538998,-16.63245741,13.39586992],[-10.1454,-16.63082178,13.39586992],[-9.7360697,-16.62918615,13.39586992],[-9.5121098,-16.62755053,13.39586992],[-9.0087404,-16.6259149,13.39586992],[-8.5778904,-16.62427927,13.39586992],[-9.2107801,-16.62100801,13.39586992],[-9.6202002,-16.61937239,13.39586992],[-9.6294403,-16.61773676,13.39586992],[-9.3955402,-16.6144655,13.39586992],[-9.5992899,-16.61282988,13.39586992],[-9.9271803,-16.61119425,13.39586992],[-10.0872002,-16.60955862,13.39586992],[-10.0536003,-16.60792299,13.39586992],[-9.8895197,-16.60628736,13.39586992],[-9.9906902,-16.60465174,13.39586992],[-12.6469002,-16.76003637,13.39423429],[-15.2214003,-16.75840074,13.39423429],[-15.7456999,-16.75676512,13.39423429],[-15.9763002,-16.75512949,13.39423429],[-16.4265003,-16.75349386,13.39423429],[-16.2696991,-16.75185823,13.39423429],[-15.7264996,-16.75022261,13.39423429],[-15.8186998,-16.74858698,13.39423429],[-15.0300999,-16.74695135,13.39423429],[-14.2138996,-16.74531572,13.39423429],[-13.7479,-16.7436801,13.39423429],[-13.7563,-16.74204447,13.39423429],[-13.5338001,-16.74040884,13.39423429],[-13.3825998,-16.73877321,13.39423429],[-13.335,-16.73713758,13.39423429],[-13.1093998,-16.73550196,13.39423429],[-13.2910995,-16.73386633,13.39423429],[-14.3895998,-16.7322307,13.39423429],[-15.3851995,-16.73059507,13.39423429],[-15.6508999,-16.72895945,13.39423429],[-16.0191002,-16.72732382,13.39423429],[-16.4363003,-16.72568819,13.39423429],[-16.5314007,-16.72405256,13.39423429],[-16.7852001,-16.72241693,13.39423429],[-17.0531998,-16.72078131,13.39423429],[-17.0156002,-16.71914568,13.39423429],[-17.1495991,-16.71751005,13.39423429],[-17.0863991,-16.71587442,13.39423429],[-16.6961002,-16.7142388,13.39423429],[-16.4832001,-16.71260317,13.39423429],[-16.3642998,-16.71096754,13.39423429],[-15.1408005,-16.70933191,13.39423429],[-13.2889004,-16.70769628,13.39423429],[-13.3687,-16.70606066,13.39423429],[-15.5594997,-16.70442503,13.39423429],[-17.1390991,-16.7027894,13.39423429],[-16.9174995,-16.70115377,13.39423429],[-16.1033001,-16.69951815,13.39423429],[-15.7358999,-16.69788252,13.39423429],[-15.6211996,-16.69624689,13.39423429],[-14.5768003,-16.69461126,13.39423429],[-13.6282997,-16.69297564,13.39423429],[-14.4316998,-16.69134001,13.39423429],[-15.3178997,-16.68970438,13.39423429],[-15.6405001,-16.68806875,13.39423429],[-14.9359999,-16.68643312,13.39423429],[-14.3761997,-16.6847975,13.39423429],[-14.2702999,-16.68316187,13.39423429],[-15.0360003,-16.68152624,13.39423429],[-16.2586994,-16.67989061,13.39423429],[-16.1371994,-16.67825499,13.39423429],[-14.9700003,-16.67661936,13.39423429],[-14.3109999,-16.67498373,13.39423429],[-14.4916,-16.6733481,13.39423429],[-15.3776999,-16.67171247,13.39423429],[-17.1396999,-16.67007685,13.39423429],[-15.5321999,-16.66844122,13.39423429],[-14.2656002,-16.66680559,13.39423429],[-14.1454,-16.66516996,13.39423429],[-14.0099001,-16.66353434,13.39423429],[-14.0593996,-16.66189871,13.39423429],[-14.1188002,-16.66026308,13.39423429],[-14.3432999,-16.65862745,13.39423429],[-14.7095003,-16.65699182,13.39423429],[-14.8557997,-16.6553562,13.39423429],[-15.3649998,-16.65372057,13.39423429],[-16.2311993,-16.65208494,13.39423429],[-15.9911003,-16.65044931,13.39423429],[-15.1906004,-16.64881369,13.39423429],[-15.8199997,-16.64717806,13.39423429],[-14.8570995,-16.64554243,13.39423429],[-13.6820002,-16.6439068,13.39423429],[-13.7228003,-16.64227118,13.39423429],[-12.5987997,-16.64063555,13.39423429],[-10.3216,-16.63899992,13.39423429],[-8.6421099,-16.63736429,13.39423429],[-10.4982004,-16.63572866,13.39423429],[-11.2985001,-16.63409304,13.39423429],[-11.3189001,-16.63245741,13.39423429],[-10.4673996,-16.63082178,13.39423429],[-8.9448299,-16.62918615,13.39423429],[-8.8704996,-16.62755053,13.39423429],[-8.75315,-16.6259149,13.39423429],[-9.5114603,-16.62100801,13.39423429],[-10.5895996,-16.61937239,13.39423429],[-10.0502005,-16.61773676,13.39423429],[-9.0533504,-16.61610113,13.39423429],[-9.2663698,-16.61282988,13.39423429],[-10.1554003,-16.61119425,13.39423429],[-10.4027004,-16.60955862,13.39423429],[-9.9102297,-16.60792299,13.39423429],[-8.6916399,-16.60628736,13.39423429],[-8.4740896,-16.60465174,13.39423429],[-6.8688102,-16.761672,13.39259867],[-12.4974003,-16.76003637,13.39259867],[-15.8018999,-16.75840074,13.39259867],[-15.9306002,-16.75676512,13.39259867],[-16.0625992,-16.75512949,13.39259867],[-16.8374004,-16.75349386,13.39259867],[-16.5951004,-16.75185823,13.39259867],[-16.2499008,-16.75022261,13.39259867],[-16.6893997,-16.74858698,13.39259867],[-15.8076,-16.74695135,13.39259867],[-14.2625999,-16.74531572,13.39259867],[-13.5438995,-16.7436801,13.39259867],[-13.8030005,-16.74204447,13.39259867],[-13.5240002,-16.74040884,13.39259867],[-13.3695002,-16.73877321,13.39259867],[-13.4878998,-16.73713758,13.39259867],[-12.9356003,-16.73550196,13.39259867],[-12.9275999,-16.73386633,13.39259867],[-14.4785004,-16.7322307,13.39259867],[-15.6538,-16.73059507,13.39259867],[-15.7091999,-16.72895945,13.39259867],[-16.0296001,-16.72732382,13.39259867],[-16.5771008,-16.72568819,13.39259867],[-16.5221004,-16.72405256,13.39259867],[-16.7849998,-16.72241693,13.39259867],[-17.0471992,-16.72078131,13.39259867],[-17.0219002,-16.71914568,13.39259867],[-17.1063004,-16.71751005,13.39259867],[-17.1788006,-16.71587442,13.39259867],[-16.9925995,-16.7142388,13.39259867],[-16.8162994,-16.71260317,13.39259867],[-16.8013992,-16.71096754,13.39259867],[-15.6202002,-16.70933191,13.39259867],[-13.1013002,-16.70769628,13.39259867],[-13.0914001,-16.70606066,13.39259867],[-15.8442001,-16.70442503,13.39259867],[-17.4790993,-16.7027894,13.39259867],[-17.0967999,-16.70115377,13.39259867],[-16.1989994,-16.69951815,13.39259867],[-15.6364002,-16.69788252,13.39259867],[-15.4911003,-16.69624689,13.39259867],[-14.5184002,-16.69461126,13.39259867],[-13.4210997,-16.69297564,13.39259867],[-14.3480997,-16.69134001,13.39259867],[-15.1316996,-16.68970438,13.39259867],[-15.6400995,-16.68806875,13.39259867],[-14.8267002,-16.68643312,13.39259867],[-14.2599001,-16.6847975,13.39259867],[-14.2923002,-16.68316187,13.39259867],[-15.2783003,-16.68152624,13.39259867],[-16.5128002,-16.67989061,13.39259867],[-16.4323997,-16.67825499,13.39259867],[-15.2701998,-16.67661936,13.39259867],[-14.4893999,-16.67498373,13.39259867],[-14.8231001,-16.6733481,13.39259867],[-16.0463009,-16.67171247,13.39259867],[-17.3299007,-16.67007685,13.39259867],[-16.0487003,-16.66844122,13.39259867],[-14.6605997,-16.66680559,13.39259867],[-14.2788,-16.66516996,13.39259867],[-14.3280001,-16.66353434,13.39259867],[-14.335,-16.66189871,13.39259867],[-14.3018999,-16.66026308,13.39259867],[-14.8921003,-16.65862745,13.39259867],[-15.1513996,-16.65699182,13.39259867],[-15.3086996,-16.6553562,13.39259867],[-16.0090008,-16.65372057,13.39259867],[-16.4258995,-16.65208494,13.39259867],[-16.1961002,-16.65044931,13.39259867],[-15.6187,-16.64881369,13.39259867],[-15.6386995,-16.64717806,13.39259867],[-14.8802004,-16.64554243,13.39259867],[-13.9407997,-16.6439068,13.39259867],[-13.7191,-16.64227118,13.39259867],[-12.9647999,-16.64063555,13.39259867],[-11.0740004,-16.63899992,13.39259867],[-9.7018995,-16.63736429,13.39259867],[-11.3910999,-16.63572866,13.39259867],[-11.8247995,-16.63409304,13.39259867],[-11.6422997,-16.63245741,13.39259867],[-11.2110004,-16.63082178,13.39259867],[-9.7519903,-16.62918615,13.39259867],[-9.4916096,-16.62755053,13.39259867],[-9.3859396,-16.6259149,13.39259867],[-7.87433,-16.62427927,13.39259867],[-10.2888002,-16.61937239,13.39259867],[-10.0983,-16.61773676,13.39259867],[-9.4729099,-16.61610113,13.39259867],[-8.9478703,-16.6144655,13.39259867],[-10.2131004,-16.61119425,13.39259867],[-10.2716999,-16.60955862,13.39259867],[-9.9711704,-16.60792299,13.39259867],[-9.2182398,-16.60628736,13.39259867],[-9.1682997,-16.60465174,13.39259867],[-11.6275997,-16.76330763,13.39096304],[-11.6370001,-16.761672,13.39096304],[-13.6232996,-16.76003637,13.39096304],[-15.1248999,-16.75840074,13.39096304],[-15.5650997,-16.75676512,13.39096304],[-15.7729998,-16.75512949,13.39096304],[-16.0793991,-16.75349386,13.39096304],[-16.1690998,-16.75185823,13.39096304],[-15.9933996,-16.75022261,13.39096304],[-15.9027996,-16.74858698,13.39096304],[-15.3753996,-16.74695135,13.39096304],[-14.7046003,-16.74531572,13.39096304],[-14.1479998,-16.7436801,13.39096304],[-14.0038004,-16.74204447,13.39096304],[-13.8084002,-16.74040884,13.39096304],[-13.6181002,-16.73877321,13.39096304],[-13.6821003,-16.73713758,13.39096304],[-13.6935997,-16.73550196,13.39096304],[-13.9610996,-16.73386633,13.39096304],[-14.6896,-16.7322307,13.39096304],[-15.3757,-16.73059507,13.39096304],[-15.6630001,-16.72895945,13.39096304],[-15.7922001,-16.72732382,13.39096304],[-16.1196003,-16.72568819,13.39096304],[-16.3033009,-16.72405256,13.39096304],[-16.3528004,-16.72241693,13.39096304],[-16.4545002,-16.72078131,13.39096304],[-16.7674007,-16.71914568,13.39096304],[-17.1620998,-16.71751005,13.39096304],[-17.4172001,-16.71587442,13.39096304],[-17.3120995,-16.7142388,13.39096304],[-17.2206001,-16.71260317,13.39096304],[-17.1821995,-16.71096754,13.39096304],[-16.9643993,-16.70933191,13.39096304],[-16.5702991,-16.70769628,13.39096304],[-16.5237999,-16.70606066,13.39096304],[-16.7119007,-16.70442503,13.39096304],[-16.9242992,-16.7027894,13.39096304],[-16.6709003,-16.70115377,13.39096304],[-16.1770992,-16.69951815,13.39096304],[-15.7800999,-16.69788252,13.39096304],[-15.5423002,-16.69624689,13.39096304],[-15.2817001,-16.69461126,13.39096304],[-14.9608002,-16.69297564,13.39096304],[-14.6318998,-16.69134001,13.39096304],[-14.3231001,-16.68970438,13.39096304],[-14.1618996,-16.68806875,13.39096304],[-14.3126001,-16.68643312,13.39096304],[-14.3546,-16.6847975,13.39096304],[-14.5720997,-16.68316187,13.39096304],[-15.3182001,-16.68152624,13.39096304],[-16.0228996,-16.67989061,13.39096304],[-16.1539993,-16.67825499,13.39096304],[-16.0296001,-16.67661936,13.39096304],[-15.9288998,-16.67498373,13.39096304],[-15.8786001,-16.6733481,13.39096304],[-16.0370007,-16.67171247,13.39096304],[-16.1476002,-16.67007685,13.39096304],[-15.7614002,-16.66844122,13.39096304],[-15.1459999,-16.66680559,13.39096304],[-14.8186998,-16.66516996,13.39096304],[-14.7694998,-16.66353434,13.39096304],[-14.4040003,-16.66189871,13.39096304],[-14.3499002,-16.66026308,13.39096304],[-15.2924995,-16.65862745,13.39096304],[-16.3612995,-16.65699182,13.39096304],[-16.6837006,-16.6553562,13.39096304],[-16.7324009,-16.65372057,13.39096304],[-17.0862999,-16.65208494,13.39096304],[-16.7092991,-16.65044931,13.39096304],[-15.2145996,-16.64881369,13.39096304],[-13.9289999,-16.64717806,13.39096304],[-13.7779999,-16.64554243,13.39096304],[-13.9806004,-16.6439068,13.39096304],[-13.9329004,-16.64227118,13.39096304],[-13.6223001,-16.64063555,13.39096304],[-13.3202,-16.63899992,13.39096304],[-13.3354998,-16.63736429,13.39096304],[-13.1245003,-16.63572866,13.39096304],[-13.3898001,-16.63409304,13.39096304],[-13.3456001,-16.63245741,13.39096304],[-12.4870005,-16.63082178,13.39096304],[-12.2419996,-16.62918615,13.39096304],[-11.7938004,-16.62755053,13.39096304],[-10.6907997,-16.6259149,13.39096304],[-10.1716995,-16.62427927,13.39096304],[-9.9987497,-16.62264364,13.39096304],[-10.3304996,-16.61937239,13.39096304],[-10.3142996,-16.61773676,13.39096304],[-10.2009001,-16.61610113,13.39096304],[-10.3079996,-16.6144655,13.39096304],[-10.4712,-16.61119425,13.39096304],[-10.5112,-16.60955862,13.39096304],[-10.2709999,-16.60792299,13.39096304],[-10.1554003,-16.60628736,13.39096304],[-10.2312002,-16.60465174,13.39096304],[-14.5965004,-16.76657888,13.38932741],[-14.3951998,-16.76494326,13.38932741],[-15.0739002,-16.76330763,13.38932741],[-15.4747,-16.761672,13.38932741],[-14.8016996,-16.76003637,13.38932741],[-15.3514004,-16.75840074,13.38932741],[-15.4974003,-16.75676512,13.38932741],[-15.6289997,-16.75512949,13.38932741],[-15.8126001,-16.75349386,13.38932741],[-15.8518,-16.75185823,13.38932741],[-15.6448002,-16.75022261,13.38932741],[-15.5632,-16.74858698,13.38932741],[-15.2903004,-16.74695135,13.38932741],[-14.8263998,-16.74531572,13.38932741],[-14.6002998,-16.7436801,13.38932741],[-14.3179998,-16.74204447,13.38932741],[-13.9710999,-16.74040884,13.38932741],[-13.9490004,-16.73877321,13.38932741],[-13.9984999,-16.73713758,13.38932741],[-14.3678999,-16.73550196,13.38932741],[-14.5642996,-16.73386633,13.38932741],[-14.9619999,-16.7322307,13.38932741],[-15.8228998,-16.73059507,13.38932741],[-15.8366003,-16.72895945,13.38932741],[-15.7304001,-16.72732382,13.38932741],[-15.8536997,-16.72568819,13.38932741],[-15.9165001,-16.72405256,13.38932741],[-15.8856001,-16.72241693,13.38932741],[-15.4349003,-16.72078131,13.38932741],[-16.2054996,-16.71914568,13.38932741],[-17.5256996,-16.71751005,13.38932741],[-18.1497002,-16.71587442,13.38932741],[-17.7443008,-16.7142388,13.38932741],[-17.7639999,-16.71260317,13.38932741],[-17.7992992,-16.71096754,13.38932741],[-18.1781006,-16.70933191,13.38932741],[-19.4505005,-16.70769628,13.38932741],[-19.4505005,-16.70606066,13.38932741],[-17.6306,-16.70442503,13.38932741],[-17.0921993,-16.7027894,13.38932741],[-16.8684006,-16.70115377,13.38932741],[-16.0394993,-16.69951815,13.38932741],[-15.5320997,-16.69788252,13.38932741],[-15.5976,-16.69624689,13.38932741],[-15.7554998,-16.69461126,13.38932741],[-16.3841991,-16.69297564,13.38932741],[-15.1134996,-16.69134001,13.38932741],[-13.4194002,-16.68970438,13.38932741],[-12.5198002,-16.68806875,13.38932741],[-13.7469997,-16.68643312,13.38932741],[-14.0915003,-16.6847975,13.38932741],[-14.0927,-16.68316187,13.38932741],[-15.3409004,-16.68152624,13.38932741],[-16.4146996,-16.67989061,13.38932741],[-16.5013008,-16.67825499,13.38932741],[-16.5781994,-16.67661936,13.38932741],[-17.0786991,-16.67498373,13.38932741],[-16.8143005,-16.6733481,13.38932741],[-16.2710991,-16.67171247,13.38932741],[-16.3512001,-16.67007685,13.38932741],[-15.9733,-16.66844122,13.38932741],[-15.4733,-16.66680559,13.38932741],[-15.0943003,-16.66516996,13.38932741],[-15.0082998,-16.66353434,13.38932741],[-13.9443998,-16.66189871,13.38932741],[-13.2236004,-16.66026308,13.38932741],[-15.6093998,-16.65862745,13.38932741],[-17.8481998,-16.65699182,13.38932741],[-18.1359997,-16.6553562,13.38932741],[-17.5578995,-16.65372057,13.38932741],[-18.6315002,-16.65208494,13.38932741],[-17.9845009,-16.65044931,13.38932741],[-14.8480997,-16.64881369,13.38932741],[-11.5658998,-16.64717806,13.38932741],[-12.7552004,-16.64554243,13.38932741],[-14.2117996,-16.6439068,13.38932741],[-14.5797997,-16.64227118,13.38932741],[-14.2617998,-16.64063555,13.38932741],[-14.6322002,-16.63899992,13.38932741],[-15.2503996,-16.63736429,13.38932741],[-14.4589005,-16.63572866,13.38932741],[-14.6334,-16.63409304,13.38932741],[-14.9020996,-16.63245741,13.38932741],[-13.6736002,-16.63082178,13.38932741],[-13.7250004,-16.62918615,13.38932741],[-13.5265999,-16.62755053,13.38932741],[-11.6393003,-16.6259149,13.38932741],[-10.8178997,-16.62427927,13.38932741],[-10.6885004,-16.62264364,13.38932741],[-10.5565004,-16.62100801,13.38932741],[-10.7636003,-16.61937239,13.38932741],[-10.5988998,-16.61773676,13.38932741],[-10.6171999,-16.61610113,13.38932741],[-10.7805004,-16.6144655,13.38932741],[-10.6441002,-16.61282988,13.38932741],[-10.9273005,-16.60955862,13.38932741],[-10.4990997,-16.60792299,13.38932741],[-10.4197998,-16.60628736,13.38932741],[-10.4832001,-16.60465174,13.38932741],[-14.2433996,-16.76985014,13.38769178],[-14.5035,-16.76821451,13.38769178],[-14.8099003,-16.76657888,13.38769178],[-14.7327995,-16.76494326,13.38769178],[-15.7063999,-16.76330763,13.38769178],[-16.1217995,-16.761672,13.38769178],[-15.1594,-16.76003637,13.38769178],[-15.3817997,-16.75840074,13.38769178],[-15.3781004,-16.75676512,13.38769178],[-15.5419998,-16.75512949,13.38769178],[-15.7518997,-16.75349386,13.38769178],[-15.6688995,-16.75185823,13.38769178],[-15.5319004,-16.75022261,13.38769178],[-15.5143995,-16.74858698,13.38769178],[-15.2877998,-16.74695135,13.38769178],[-14.7490997,-16.74531572,13.38769178],[-14.6343002,-16.7436801,13.38769178],[-14.3163004,-16.74204447,13.38769178],[-13.8866997,-16.74040884,13.38769178],[-13.9219999,-16.73877321,13.38769178],[-13.8794003,-16.73713758,13.38769178],[-14.3774996,-16.73550196,13.38769178],[-14.5853004,-16.73386633,13.38769178],[-14.8006001,-16.7322307,13.38769178],[-15.7304001,-16.73059507,13.38769178],[-15.6896,-16.72895945,13.38769178],[-15.5698004,-16.72732382,13.38769178],[-15.7560997,-16.72568819,13.38769178],[-15.7592001,-16.72405256,13.38769178],[-15.7406998,-16.72241693,13.38769178],[-15.4644003,-16.72078131,13.38769178],[-16.2411995,-16.71914568,13.38769178],[-17.4503994,-16.71751005,13.38769178],[-18.1355,-16.71587442,13.38769178],[-18.1212997,-16.7142388,13.38769178],[-18.1902008,-16.71260317,13.38769178],[-18.1860008,-16.71096754,13.38769178],[-18.8715,-16.70933191,13.38769178],[-19.7691002,-16.70769628,13.38769178],[-19.5755005,-16.70606066,13.38769178],[-18.0676994,-16.70442503,13.38769178],[-17.1254005,-16.7027894,13.38769178],[-16.8178005,-16.70115377,13.38769178],[-16.3295002,-16.69951815,13.38769178],[-15.6768999,-16.69788252,13.38769178],[-15.5949001,-16.69624689,13.38769178],[-15.7446003,-16.69461126,13.38769178],[-16.0997009,-16.69297564,13.38769178],[-15.1177998,-16.69134001,13.38769178],[-13.6001997,-16.68970438,13.38769178],[-12.9872999,-16.68806875,13.38769178],[-13.9836998,-16.68643312,13.38769178],[-14.4122,-16.6847975,13.38769178],[-14.6066999,-16.68316187,13.38769178],[-15.7060003,-16.68152624,13.38769178],[-16.4867001,-16.67989061,13.38769178],[-16.6103992,-16.67825499,13.38769178],[-16.6954002,-16.67661936,13.38769178],[-16.8859005,-16.67498373,13.38769178],[-16.7642994,-16.6733481,13.38769178],[-16.6273994,-16.67171247,13.38769178],[-16.4617996,-16.67007685,13.38769178],[-16.2476006,-16.66844122,13.38769178],[-15.8037004,-16.66680559,13.38769178],[-15.3252001,-16.66516996,13.38769178],[-15.3209,-16.66353434,13.38769178],[-14.6351995,-16.66189871,13.38769178],[-14.3843002,-16.66026308,13.38769178],[-15.9799995,-16.65862745,13.38769178],[-17.4936008,-16.65699182,13.38769178],[-17.8306007,-16.6553562,13.38769178],[-17.5631008,-16.65372057,13.38769178],[-17.8148003,-16.65208494,13.38769178],[-17.3083,-16.65044931,13.38769178],[-15.3239002,-16.64881369,13.38769178],[-13.349,-16.64717806,13.38769178],[-13.7379999,-16.64554243,13.38769178],[-14.4909,-16.6439068,13.38769178],[-14.4856005,-16.64227118,13.38769178],[-14.6396999,-16.64063555,13.38769178],[-15.0122004,-16.63899992,13.38769178],[-15.1879997,-16.63736429,13.38769178],[-15.1100998,-16.63572866,13.38769178],[-14.9897003,-16.63409304,13.38769178],[-14.8322001,-16.63245741,13.38769178],[-14.3970003,-16.63082178,13.38769178],[-13.7335997,-16.62918615,13.38769178],[-13.2396002,-16.62755053,13.38769178],[-12.0700998,-16.6259149,13.38769178],[-11.0705996,-16.62427927,13.38769178],[-10.8192997,-16.62100801,13.38769178],[-10.6244001,-16.61937239,13.38769178],[-10.7403002,-16.61773676,13.38769178],[-10.8989,-16.61610113,13.38769178],[-10.8690004,-16.6144655,13.38769178],[-10.7257996,-16.61282988,13.38769178],[-10.6398001,-16.61119425,13.38769178],[-10.4980001,-16.60955862,13.38769178],[-10.2367001,-16.60792299,13.38769178],[-10.0299997,-16.60628736,13.38769178],[-10.1127005,-16.60465174,13.38769178],[-13.6275997,-16.77312139,13.38605615],[-14.5767002,-16.77148577,13.38605615],[-14.4420996,-16.76985014,13.38605615],[-14.3151999,-16.76821451,13.38605615],[-14.2438002,-16.76657888,13.38605615],[-14.5753002,-16.76494326,13.38605615],[-14.9356003,-16.76330763,13.38605615],[-15.0183001,-16.761672,13.38605615],[-14.7559004,-16.76003637,13.38605615],[-14.6139002,-16.75840074,13.38605615],[-14.8797998,-16.75676512,13.38605615],[-15.0307999,-16.75512949,13.38605615],[-15.1609001,-16.75349386,13.38605615],[-15.2383003,-16.75185823,13.38605615],[-15.3431997,-16.75022261,13.38605615],[-15.3660002,-16.74858698,13.38605615],[-15.1099005,-16.74695135,13.38605615],[-14.7344999,-16.74531572,13.38605615],[-14.3224001,-16.7436801,13.38605615],[-13.9031,-16.74204447,13.38605615],[-13.3964005,-16.74040884,13.38605615],[-13.1135998,-16.73877321,13.38605615],[-13.5031004,-16.73713758,13.38605615],[-13.9657001,-16.73550196,13.38605615],[-14.1709003,-16.73386633,13.38605615],[-14.3825998,-16.7322307,13.38605615],[-14.5370998,-16.73059507,13.38605615],[-14.7058001,-16.72895945,13.38605615],[-14.9768,-16.72732382,13.38605615],[-15.1695995,-16.72568819,13.38605615],[-15.4573002,-16.72405256,13.38605615],[-15.8353996,-16.72241693,13.38605615],[-16.2791004,-16.72078131,13.38605615],[-16.6602001,-16.71914568,13.38605615],[-16.9290009,-16.71751005,13.38605615],[-17.2509003,-16.71587442,13.38605615],[-18.2164993,-16.7142388,13.38605615],[-19.2598,-16.71260317,13.38605615],[-19.7262001,-16.71096754,13.38605615],[-19.6704998,-16.70933191,13.38605615],[-20.0888004,-16.70769628,13.38605615],[-19.8362999,-16.70606066,13.38605615],[-18.0865002,-16.70442503,13.38605615],[-16.5452003,-16.7027894,13.38605615],[-16.3623009,-16.70115377,13.38605615],[-16.2696991,-16.69951815,13.38605615],[-15.8830004,-16.69788252,13.38605615],[-15.6991997,-16.69624689,13.38605615],[-15.7033997,-16.69461126,13.38605615],[-15.6338997,-16.69297564,13.38605615],[-14.9495001,-16.69134001,13.38605615],[-13.8383999,-16.68970438,13.38605615],[-13.4204998,-16.68806875,13.38605615],[-14.2954998,-16.68643312,13.38605615],[-15.2549,-16.6847975,13.38605615],[-15.7139997,-16.68316187,13.38605615],[-16.2872009,-16.68152624,13.38605615],[-17.1786995,-16.67989061,13.38605615],[-17.3024006,-16.67825499,13.38605615],[-16.6313,-16.67661936,13.38605615],[-16.1205006,-16.67498373,13.38605615],[-16.2861004,-16.6733481,13.38605615],[-16.8239002,-16.67171247,13.38605615],[-17.1877003,-16.67007685,13.38605615],[-16.7917004,-16.66844122,13.38605615],[-16.2674007,-16.66680559,13.38605615],[-15.9927998,-16.66516996,13.38605615],[-15.9110003,-16.66353434,13.38605615],[-16.0118008,-16.66189871,13.38605615],[-16.2887993,-16.66026308,13.38605615],[-16.7112007,-16.65862745,13.38605615],[-17.8878994,-16.65699182,13.38605615],[-18.1870995,-16.6553562,13.38605615],[-17.3971996,-16.65372057,13.38605615],[-16.8526993,-16.65208494,13.38605615],[-16.5023003,-16.65044931,13.38605615],[-15.8502998,-16.64881369,13.38605615],[-15.3900003,-16.64717806,13.38605615],[-15.0459003,-16.64554243,13.38605615],[-14.6934004,-16.6439068,13.38605615],[-14.3444996,-16.64227118,13.38605615],[-14.7699003,-16.64063555,13.38605615],[-15.5832005,-16.63899992,13.38605615],[-16.0650997,-16.63736429,13.38605615],[-15.7515001,-16.63572866,13.38605615],[-15.9542999,-16.63409304,13.38605615],[-15.9837999,-16.63245741,13.38605615],[-14.9305,-16.63082178,13.38605615],[-14.3985004,-16.62918615,13.38605615],[-13.8073997,-16.62755053,13.38605615],[-12.2425003,-16.6259149,13.38605615],[-10.8437996,-16.62427927,13.38605615],[-10.7435999,-16.62264364,13.38605615],[-10.4897003,-16.61937239,13.38605615],[-10.7465,-16.61773676,13.38605615],[-11.3667002,-16.61610113,13.38605615],[-11.8415003,-16.6144655,13.38605615],[-11.1099997,-16.61282988,13.38605615],[-10.5698004,-16.61119425,13.38605615],[-10.4905005,-16.60955862,13.38605615],[-9.9897003,-16.60792299,13.38605615],[-9.3348503,-16.60628736,13.38605615],[-9.1751003,-16.60465174,13.38605615],[-6.8429499,-16.77639265,13.38442053],[-9.3283195,-16.77475702,13.38442053],[-14.1323004,-16.77312139,13.38442053],[-16.2525005,-16.77148577,13.38442053],[-15.1406002,-16.76985014,13.38442053],[-14.1134996,-16.76821451,13.38442053],[-13.7082996,-16.76657888,13.38442053],[-14.2639999,-16.76494326,13.38442053],[-14.8197002,-16.76330763,13.38442053],[-14.974,-16.761672,13.38442053],[-14.4386997,-16.76003637,13.38442053],[-13.8095999,-16.75840074,13.38442053],[-13.9209003,-16.75676512,13.38442053],[-14.5509005,-16.75512949,13.38442053],[-14.7945004,-16.75349386,13.38442053],[-14.8395004,-16.75185823,13.38442053],[-15.1878996,-16.75022261,13.38442053],[-15.7608004,-16.74858698,13.38442053],[-15.2531996,-16.74695135,13.38442053],[-14.5066004,-16.74531572,13.38442053],[-14.4844999,-16.7436801,13.38442053],[-13.8121996,-16.74204447,13.38442053],[-12.5439997,-16.74040884,13.38442053],[-11.9148998,-16.73877321,13.38442053],[-13.0576,-16.73713758,13.38442053],[-14.1103001,-16.73550196,13.38442053],[-14.3114004,-16.73386633,13.38442053],[-13.9660997,-16.7322307,13.38442053],[-13.4260998,-16.73059507,13.38442053],[-13.6471996,-16.72895945,13.38442053],[-14.4933996,-16.72732382,13.38442053],[-14.4151001,-16.72568819,13.38442053],[-14.8982,-16.72405256,13.38442053],[-16.1084995,-16.72241693,13.38442053],[-16.6896,-16.72078131,13.38442053],[-16.7250004,-16.71914568,13.38442053],[-16.5720997,-16.71751005,13.38442053],[-15.7117996,-16.71587442,13.38442053],[-18.0240002,-16.7142388,13.38442053],[-20.4755001,-16.71260317,13.38442053],[-21.2593994,-16.71096754,13.38442053],[-20.5879002,-16.70933191,13.38442053],[-21.6079998,-16.70769628,13.38442053],[-21.5946999,-16.70606066,13.38442053],[-18.2891006,-16.70442503,13.38442053],[-15.0523996,-16.7027894,13.38442053],[-15.4137001,-16.70115377,13.38442053],[-16.1977005,-16.69951815,13.38442053],[-15.8158998,-16.69788252,13.38442053],[-15.8591995,-16.69624689,13.38442053],[-15.8825998,-16.69461126,13.38442053],[-15.9819002,-16.69297564,13.38442053],[-15.3282003,-16.69134001,13.38442053],[-13.3975,-16.68970438,13.38442053],[-12.0818996,-16.68806875,13.38442053],[-14.3729,-16.68643312,13.38442053],[-15.9780998,-16.6847975,13.38442053],[-16.2383003,-16.68316187,13.38442053],[-16.8001995,-16.68152624,13.38442053],[-18.2014999,-16.67989061,13.38442053],[-18.1529999,-16.67825499,13.38442053],[-16.6702995,-16.67661936,13.38442053],[-14.9827003,-16.67498373,13.38442053],[-15.5969,-16.6733481,13.38442053],[-17.0818996,-16.67171247,13.38442053],[-18.3199997,-16.67007685,13.38442053],[-17.2973995,-16.66844122,13.38442053],[-16.3941002,-16.66680559,13.38442053],[-16.3929996,-16.66516996,13.38442053],[-16.2087994,-16.66353434,13.38442053],[-16.7108002,-16.66189871,13.38442053],[-17.1949997,-16.66026308,13.38442053],[-17.0578995,-16.65862745,13.38442053],[-18.8924007,-16.65699182,13.38442053],[-19.2441006,-16.6553562,13.38442053],[-17.2714005,-16.65372057,13.38442053],[-16.4239998,-16.65208494,13.38442053],[-16.3785992,-16.65044931,13.38442053],[-16.0098991,-16.64881369,13.38442053],[-15.8008003,-16.64717806,13.38442053],[-15.5799999,-16.64554243,13.38442053],[-14.8645,-16.6439068,13.38442053],[-13.8978996,-16.64227118,13.38442053],[-14.9139004,-16.64063555,13.38442053],[-16.2672005,-16.63899992,13.38442053],[-16.8469009,-16.63736429,13.38442053],[-16.3684006,-16.63572866,13.38442053],[-16.6054993,-16.63409304,13.38442053],[-16.8864994,-16.63245741,13.38442053],[-15.4706001,-16.63082178,13.38442053],[-14.7035999,-16.62918615,13.38442053],[-14.4834003,-16.62755053,13.38442053],[-12.6112003,-16.6259149,13.38442053],[-10.2025995,-16.62427927,13.38442053],[-10.5712004,-16.62264364,13.38442053],[-10.9039001,-16.62100801,13.38442053],[-10.1766005,-16.61937239,13.38442053],[-10.6245003,-16.61773676,13.38442053],[-11.5804005,-16.61610113,13.38442053],[-12.6630001,-16.6144655,13.38442053],[-11.2735996,-16.61282988,13.38442053],[-10.5101995,-16.61119425,13.38442053],[-10.7449999,-16.60955862,13.38442053],[-9.7326002,-16.60792299,13.38442053],[-9.0222998,-16.60628736,13.38442053],[-8.8617001,-16.60465174,13.38442053],[-14.3549004,-16.77966391,13.3827849],[-11.4674997,-16.77802828,13.3827849],[-7.7096,-16.77639265,13.3827849],[-10.1870003,-16.77475702,13.3827849],[-14.1016998,-16.77312139,13.3827849],[-15.9393997,-16.77148577,13.3827849],[-14.9455996,-16.76985014,13.3827849],[-14.0944996,-16.76821451,13.3827849],[-13.8634005,-16.76657888,13.3827849],[-14.3042002,-16.76494326,13.3827849],[-14.7686005,-16.76330763,13.3827849],[-14.8629999,-16.761672,13.3827849],[-14.3280001,-16.76003637,13.3827849],[-13.8613997,-16.75840074,13.3827849],[-13.8591003,-16.75676512,13.3827849],[-14.1559,-16.75512949,13.3827849],[-14.5615997,-16.75349386,13.3827849],[-14.5188999,-16.75185823,13.3827849],[-14.7384005,-16.75022261,13.3827849],[-15.3754997,-16.74858698,13.3827849],[-14.8055,-16.74695135,13.3827849],[-14.2385998,-16.74531572,13.3827849],[-14.1887999,-16.7436801,13.3827849],[-13.4731998,-16.74204447,13.3827849],[-12.4891996,-16.74040884,13.3827849],[-12.1196003,-16.73877321,13.3827849],[-12.7819004,-16.73713758,13.3827849],[-13.7660999,-16.73550196,13.3827849],[-13.9839001,-16.73386633,13.3827849],[-13.7432003,-16.7322307,13.3827849],[-13.6148005,-16.73059507,13.3827849],[-13.7201996,-16.72895945,13.3827849],[-14.2776003,-16.72732382,13.3827849],[-14.5205002,-16.72568819,13.3827849],[-14.9329004,-16.72405256,13.3827849],[-15.8929005,-16.72241693,13.3827849],[-16.5737,-16.72078131,13.3827849],[-17.0911007,-16.71914568,13.3827849],[-17.1667004,-16.71751005,13.3827849],[-17.0711994,-16.71587442,13.3827849],[-18.7667999,-16.7142388,13.3827849],[-20.4183006,-16.71260317,13.3827849],[-20.9174004,-16.71096754,13.3827849],[-20.7241993,-16.70933191,13.3827849],[-20.9526005,-16.70769628,13.3827849],[-20.5230007,-16.70606066,13.3827849],[-18.4176006,-16.70442503,13.3827849],[-16.2994003,-16.7027894,13.3827849],[-16.0664997,-16.70115377,13.3827849],[-16.3771992,-16.69951815,13.3827849],[-16.2432003,-16.69788252,13.3827849],[-16.1681995,-16.69624689,13.3827849],[-16.0953999,-16.69461126,13.3827849],[-15.9209003,-16.69297564,13.3827849],[-15.5818996,-16.69134001,13.3827849],[-14.5123997,-16.68970438,13.3827849],[-13.9013996,-16.68806875,13.3827849],[-15.2319002,-16.68643312,13.3827849],[-16.3136005,-16.6847975,13.3827849],[-16.7099991,-16.68316187,13.3827849],[-17.3211994,-16.68152624,13.3827849],[-17.8216,-16.67989061,13.3827849],[-17.7621994,-16.67825499,13.3827849],[-17.0645008,-16.67661936,13.3827849],[-16.1924992,-16.67498373,13.3827849],[-16.3313999,-16.6733481,13.3827849],[-16.8988991,-16.67171247,13.3827849],[-17.2166004,-16.67007685,13.3827849],[-16.8269997,-16.66844122,13.3827849],[-16.3714008,-16.66680559,13.3827849],[-16.1907997,-16.66516996,13.3827849],[-16.0128994,-16.66353434,13.3827849],[-16.0151997,-16.66189871,13.3827849],[-16.2553005,-16.66026308,13.3827849],[-16.5284004,-16.65862745,13.3827849],[-17.3794994,-16.65699182,13.3827849],[-17.5974007,-16.6553562,13.3827849],[-17.2187996,-16.65372057,13.3827849],[-16.8757992,-16.65208494,13.3827849],[-16.5785007,-16.65044931,13.3827849],[-16.2399006,-16.64881369,13.3827849],[-15.8432999,-16.64717806,13.3827849],[-15.5888004,-16.64554243,13.3827849],[-15.3591995,-16.6439068,13.3827849],[-15.0937996,-16.64227118,13.3827849],[-15.599,-16.64063555,13.3827849],[-16.1578007,-16.63899992,13.3827849],[-16.2931004,-16.63736429,13.3827849],[-16.1285992,-16.63572866,13.3827849],[-16.0617008,-16.63409304,13.3827849],[-15.8738003,-16.63245741,13.3827849],[-15.1106997,-16.63082178,13.3827849],[-14.4871998,-16.62918615,13.3827849],[-14.0853004,-16.62755053,13.3827849],[-13.0883999,-16.6259149,13.3827849],[-11.9245005,-16.62427927,13.3827849],[-11.6858997,-16.62264364,13.3827849],[-11.5572004,-16.62100801,13.3827849],[-11.1196003,-16.61937239,13.3827849],[-10.9686003,-16.61773676,13.3827849],[-11.0600996,-16.61610113,13.3827849],[-11.0118999,-16.6144655,13.3827849],[-10.2564001,-16.61282988,13.3827849],[-9.44065,-16.61119425,13.3827849],[-9.1564598,-16.60955862,13.3827849],[-8.9098301,-16.60792299,13.3827849],[-8.78584,-16.60628736,13.3827849],[-8.8810101,-16.60465174,13.3827849],[-18.3101997,-16.78457079,13.38114927],[-17.6210003,-16.78293516,13.38114927],[-16.9123001,-16.78129953,13.38114927],[-16.0058002,-16.77966391,13.38114927],[-14.8113003,-16.77802828,13.38114927],[-14.2180996,-16.77639265,13.38114927],[-13.9315996,-16.77475702,13.38114927],[-14.1225004,-16.77312139,13.38114927],[-14.1927004,-16.77148577,13.38114927],[-14.1919003,-16.76985014,13.38114927],[-14.1148996,-16.76821451,13.38114927],[-14.2417002,-16.76657888,13.38114927],[-14.2860003,-16.76494326,13.38114927],[-14.2052002,-16.76330763,13.38114927],[-14.1599998,-16.761672,13.38114927],[-14.0283003,-16.76003637,13.38114927],[-13.7725,-16.75840074,13.38114927],[-13.6688004,-16.75676512,13.38114927],[-13.7037001,-16.75512949,13.38114927],[-13.4120998,-16.75349386,13.38114927],[-13.5670996,-16.75185823,13.38114927],[-14.0909004,-16.75022261,13.38114927],[-14.3551998,-16.74858698,13.38114927],[-14.0567999,-16.74695135,13.38114927],[-13.6550999,-16.74531572,13.38114927],[-13.368,-16.7436801,13.38114927],[-12.9687004,-16.74204447,13.38114927],[-12.0248003,-16.74040884,13.38114927],[-11.5453997,-16.73877321,13.38114927],[-12.3584003,-16.73713758,13.38114927],[-13.0391998,-16.73550196,13.38114927],[-13.3521996,-16.73386633,13.38114927],[-13.5798998,-16.7322307,13.38114927],[-13.6856003,-16.73059507,13.38114927],[-13.9215002,-16.72895945,13.38114927],[-14.3156996,-16.72732382,13.38114927],[-14.8437996,-16.72568819,13.38114927],[-15.2217999,-16.72405256,13.38114927],[-15.9864998,-16.72241693,13.38114927],[-16.7677002,-16.72078131,13.38114927],[-17.5524006,-16.71914568,13.38114927],[-18.5632992,-16.71751005,13.38114927],[-19.6376991,-16.71587442,13.38114927],[-19.9148006,-16.7142388,13.38114927],[-20.7110004,-16.71260317,13.38114927],[-21.0776997,-16.71096754,13.38114927],[-20.6408997,-16.70933191,13.38114927],[-20.2409992,-16.70769628,13.38114927],[-19.7644997,-16.70606066,13.38114927],[-18.4001999,-16.70442503,13.38114927],[-17.0596008,-16.7027894,13.38114927],[-16.7322006,-16.70115377,13.38114927],[-16.927,-16.69951815,13.38114927],[-17.2842999,-16.69788252,13.38114927],[-16.9619999,-16.69624689,13.38114927],[-16.4806995,-16.69461126,13.38114927],[-16.4699993,-16.69297564,13.38114927],[-16.1173,-16.69134001,13.38114927],[-15.7114,-16.68970438,13.38114927],[-15.6346998,-16.68806875,13.38114927],[-16.2705994,-16.68643312,13.38114927],[-17.7110996,-16.6847975,13.38114927],[-18.3202,-16.68316187,13.38114927],[-17.8743,-16.68152624,13.38114927],[-17.9396,-16.67989061,13.38114927],[-17.8742008,-16.67825499,13.38114927],[-17.4540997,-16.67661936,13.38114927],[-17.3810005,-16.67498373,13.38114927],[-17.1264992,-16.6733481,13.38114927],[-16.6487007,-16.67171247,13.38114927],[-16.2262001,-16.67007685,13.38114927],[-16.1935997,-16.66844122,13.38114927],[-16.1075993,-16.66680559,13.38114927],[-15.9278002,-16.66516996,13.38114927],[-15.6636,-16.66353434,13.38114927],[-14.7033997,-16.66189871,13.38114927],[-14.1497002,-16.66026308,13.38114927],[-15.3842001,-16.65862745,13.38114927],[-15.4610996,-16.65699182,13.38114927],[-15.5394001,-16.6553562,13.38114927],[-16.7352009,-16.65372057,13.38114927],[-17.3610992,-16.65208494,13.38114927],[-17.2231007,-16.65044931,13.38114927],[-16.4382,-16.64881369,13.38114927],[-15.9336004,-16.64717806,13.38114927],[-15.8670998,-16.64554243,13.38114927],[-16.0377007,-16.6439068,13.38114927],[-16.5807991,-16.64227118,13.38114927],[-16.2889996,-16.64063555,13.38114927],[-16.3118,-16.63899992,13.38114927],[-16.6170998,-16.63736429,13.38114927],[-16.0387993,-16.63572866,13.38114927],[-15.5370998,-16.63409304,13.38114927],[-15.3610001,-16.63245741,13.38114927],[-14.8195,-16.63082178,13.38114927],[-14.4833002,-16.62918615,13.38114927],[-14.2358999,-16.62755053,13.38114927],[-13.5783997,-16.6259149,13.38114927],[-13.4013996,-16.62427927,13.38114927],[-12.9666004,-16.62264364,13.38114927],[-12.1956997,-16.62100801,13.38114927],[-12.0152998,-16.61937239,13.38114927],[-11.5064001,-16.61773676,13.38114927],[-10.5389996,-16.61610113,13.38114927],[-9.9751196,-16.6144655,13.38114927],[-9.4811001,-16.61282988,13.38114927],[-7.60323,-16.61119425,13.38114927],[-6.18643,-16.60955862,13.38114927],[-7.83286,-16.60792299,13.38114927],[-8.2272902,-16.60628736,13.38114927],[-8.1350899,-16.60465174,13.38114927],[-13.5810003,-16.7911133,13.37951364],[-13.5373001,-16.78947767,13.37951364],[-16.1986008,-16.78784204,13.37951364],[-19.2961006,-16.78620642,13.37951364],[-19.7334003,-16.78457079,13.37951364],[-18.0827007,-16.78293516,13.37951364],[-17.3348999,-16.78129953,13.37951364],[-17.0769005,-16.77966391,13.37951364],[-16.5237999,-16.77802828,13.37951364],[-17.6627998,-16.77639265,13.37951364],[-16.2975006,-16.77475702,13.37951364],[-14.2474003,-16.77312139,13.37951364],[-13.4027004,-16.77148577,13.37951364],[-13.7656002,-16.76985014,13.37951364],[-14.1569996,-16.76821451,13.37951364],[-14.4390001,-16.76657888,13.37951364],[-14.1451998,-16.76494326,13.37951364],[-13.8156996,-16.76330763,13.37951364],[-13.5867004,-16.761672,13.37951364],[-13.7636003,-16.76003637,13.37951364],[-13.3317003,-16.75840074,13.37951364],[-13.2831001,-16.75676512,13.37951364],[-13.2400999,-16.75512949,13.37951364],[-12.0771999,-16.75349386,13.37951364],[-12.5684996,-16.75185823,13.37951364],[-13.6921997,-16.75022261,13.37951364],[-14.2330999,-16.74858698,13.37951364],[-13.8837004,-16.74695135,13.37951364],[-13.2903004,-16.74531572,13.37951364],[-13.0170002,-16.7436801,13.37951364],[-12.7063999,-16.74204447,13.37951364],[-11.0741997,-16.74040884,13.37951364],[-9.7559204,-16.73877321,13.37951364],[-11.8881998,-16.73713758,13.37951364],[-12.9363003,-16.73550196,13.37951364],[-13.0409002,-16.73386633,13.37951364],[-13.3337002,-16.7322307,13.37951364],[-13.8381004,-16.73059507,13.37951364],[-13.8902998,-16.72895945,13.37951364],[-14.2748003,-16.72732382,13.37951364],[-15.1215,-16.72568819,13.37951364],[-15.1476002,-16.72405256,13.37951364],[-16.1413002,-16.72241693,13.37951364],[-17.1205997,-16.72078131,13.37951364],[-17.5797997,-16.71914568,13.37951364],[-19.5182991,-16.71751005,13.37951364],[-21.1812992,-16.71587442,13.37951364],[-20.4941998,-16.7142388,13.37951364],[-21.2977009,-16.71260317,13.37951364],[-21.6935997,-16.71096754,13.37951364],[-20.6345005,-16.70933191,13.37951364],[-20.0280991,-16.70769628,13.37951364],[-19.8549004,-16.70606066,13.37951364],[-18.3675003,-16.70442503,13.37951364],[-16.6292,-16.7027894,13.37951364],[-16.7068005,-16.70115377,13.37951364],[-17.2474995,-16.69951815,13.37951364],[-18.1336994,-16.69788252,13.37951364],[-17.4517002,-16.69624689,13.37951364],[-16.7325993,-16.69461126,13.37951364],[-16.9592991,-16.69297564,13.37951364],[-16.5372009,-16.69134001,13.37951364],[-16.0256996,-16.68970438,13.37951364],[-15.7166996,-16.68806875,13.37951364],[-16.8719006,-16.68643312,13.37951364],[-18.7154999,-16.6847975,13.37951364],[-19.2362995,-16.68316187,13.37951364],[-18.2756004,-16.68152624,13.37951364],[-18.1254997,-16.67989061,13.37951364],[-18.0639,-16.67825499,13.37951364],[-17.6807995,-16.67661936,13.37951364],[-17.6625996,-16.67498373,13.37951364],[-17.3563004,-16.6733481,13.37951364],[-16.5848007,-16.67171247,13.37951364],[-15.8367004,-16.67007685,13.37951364],[-16.1231003,-16.66844122,13.37951364],[-16.1427994,-16.66680559,13.37951364],[-15.8730001,-16.66516996,13.37951364],[-15.7644997,-16.66353434,13.37951364],[-14.2891998,-16.66189871,13.37951364],[-13.0453997,-16.66026308,13.37951364],[-15.1617002,-16.65862745,13.37951364],[-14.9780998,-16.65699182,13.37951364],[-14.7686005,-16.6553562,13.37951364],[-16.6282005,-16.65372057,13.37951364],[-17.6529999,-16.65208494,13.37951364],[-17.5370007,-16.65044931,13.37951364],[-16.5799007,-16.64881369,13.37951364],[-15.9505997,-16.64717806,13.37951364],[-16.0177994,-16.64554243,13.37951364],[-16.3304996,-16.6439068,13.37951364],[-16.9944992,-16.64227118,13.37951364],[-16.3083,-16.64063555,13.37951364],[-16.3626995,-16.63899992,13.37951364],[-16.8551998,-16.63736429,13.37951364],[-15.8211002,-16.63572866,13.37951364],[-15.2446003,-16.63409304,13.37951364],[-15.2811003,-16.63245741,13.37951364],[-14.6085997,-16.63082178,13.37951364],[-14.3877001,-16.62918615,13.37951364],[-14.2919998,-16.62755053,13.37951364],[-13.5298004,-16.6259149,13.37951364],[-13.6337004,-16.62427927,13.37951364],[-13.2910995,-16.62264364,13.37951364],[-12.3347998,-16.62100801,13.37951364],[-12.1219997,-16.61937239,13.37951364],[-11.5417004,-16.61773676,13.37951364],[-10.5925999,-16.61610113,13.37951364],[-9.9021502,-16.6144655,13.37951364],[-9.4564304,-16.61282988,13.37951364],[-7.4612999,-16.61119425,13.37951364],[-5.9825802,-16.60955862,13.37951364],[-7.9873199,-16.60792299,13.37951364],[-8.43822,-16.60628736,13.37951364],[-8.2737398,-16.60465174,13.37951364],[-12.3619003,-16.79274893,13.37787802],[-14.1217003,-16.7911133,13.37787802],[-14.5620003,-16.78947767,13.37787802],[-16.6805,-16.78784204,13.37787802],[-18.8463001,-16.78620642,13.37787802],[-19.3087006,-16.78457079,13.37787802],[-18.2311001,-16.78293516,13.37787802],[-17.5429993,-16.78129953,13.37787802],[-17.1769009,-16.77966391,13.37787802],[-16.8341999,-16.77802828,13.37787802],[-16.9668999,-16.77639265,13.37787802],[-16.0284996,-16.77475702,13.37787802],[-14.4268999,-16.77312139,13.37787802],[-13.5651999,-16.77148577,13.37787802],[-13.8135004,-16.76985014,13.37787802],[-14.0770998,-16.76821451,13.37787802],[-14.2210999,-16.76657888,13.37787802],[-14.0625,-16.76494326,13.37787802],[-13.9665003,-16.76330763,13.37787802],[-13.8520002,-16.761672,13.37787802],[-13.9511995,-16.76003637,13.37787802],[-13.7392998,-16.75840074,13.37787802],[-13.5755997,-16.75676512,13.37787802],[-13.3346004,-16.75512949,13.37787802],[-12.8318996,-16.75349386,13.37787802],[-12.9498997,-16.75185823,13.37787802],[-13.3579998,-16.75022261,13.37787802],[-13.5256004,-16.74858698,13.37787802],[-13.2749996,-16.74695135,13.37787802],[-12.9970999,-16.74531572,13.37787802],[-12.9092999,-16.7436801,13.37787802],[-12.5634003,-16.74204447,13.37787802],[-11.8600998,-16.74040884,13.37787802],[-11.4916,-16.73877321,13.37787802],[-12.4877996,-16.73713758,13.37787802],[-13.0195999,-16.73550196,13.37787802],[-13.1856003,-16.73386633,13.37787802],[-13.3325996,-16.7322307,13.37787802],[-13.5344,-16.73059507,13.37787802],[-13.6457996,-16.72895945,13.37787802],[-13.6857996,-16.72732382,13.37787802],[-14.0440998,-16.72568819,13.37787802],[-14.4995003,-16.72405256,13.37787802],[-15.717,-16.72241693,13.37787802],[-16.7637997,-16.72078131,13.37787802],[-17.5942001,-16.71914568,13.37787802],[-18.6329994,-16.71751005,13.37787802],[-19.8206005,-16.71587442,13.37787802],[-20.2714005,-16.7142388,13.37787802],[-21.0051994,-16.71260317,13.37787802],[-21.3570995,-16.71096754,13.37787802],[-20.8166008,-16.70933191,13.37787802],[-20.0571003,-16.70769628,13.37787802],[-19.4304008,-16.70606066,13.37787802],[-18.3537006,-16.70442503,13.37787802],[-17.2728996,-16.7027894,13.37787802],[-16.9801998,-16.70115377,13.37787802],[-16.9078007,-16.69951815,13.37787802],[-16.9141006,-16.69788252,13.37787802],[-16.7847996,-16.69624689,13.37787802],[-16.6131992,-16.69461126,13.37787802],[-16.4780998,-16.69297564,13.37787802],[-16.4986992,-16.69134001,13.37787802],[-16.4153004,-16.68970438,13.37787802],[-16.5188999,-16.68806875,13.37787802],[-17.2945995,-16.68643312,13.37787802],[-18.2203999,-16.6847975,13.37787802],[-18.6551991,-16.68316187,13.37787802],[-18.6140003,-16.68152624,13.37787802],[-18.3899002,-16.67989061,13.37787802],[-18.0953007,-16.67825499,13.37787802],[-17.6049004,-16.67661936,13.37787802],[-17.1567001,-16.67498373,13.37787802],[-16.8850002,-16.6733481,13.37787802],[-16.7355003,-16.67171247,13.37787802],[-16.5638008,-16.67007685,13.37787802],[-16.5718994,-16.66844122,13.37787802],[-16.3717003,-16.66680559,13.37787802],[-16.2357006,-16.66516996,13.37787802],[-16.1541996,-16.66353434,13.37787802],[-15.9870005,-16.66189871,13.37787802],[-16.1119003,-16.66026308,13.37787802],[-16.6425991,-16.65862745,13.37787802],[-16.8426991,-16.65699182,13.37787802],[-17.1270008,-16.6553562,13.37787802],[-17.6054993,-16.65372057,13.37787802],[-18.0340004,-16.65208494,13.37787802],[-17.6406994,-16.65044931,13.37787802],[-16.9568996,-16.64881369,13.37787802],[-16.2987003,-16.64717806,13.37787802],[-16.0230007,-16.64554243,13.37787802],[-15.9277,-16.6439068,13.37787802],[-15.8436003,-16.64227118,13.37787802],[-15.6511002,-16.64063555,13.37787802],[-15.6408997,-16.63899992,13.37787802],[-15.5697002,-16.63736429,13.37787802],[-14.9995003,-16.63572866,13.37787802],[-14.2056999,-16.63409304,13.37787802],[-13.7767,-16.63245741,13.37787802],[-13.6395998,-16.63082178,13.37787802],[-13.5963001,-16.62918615,13.37787802],[-13.4278002,-16.62755053,13.37787802],[-13.4169998,-16.6259149,13.37787802],[-13.4759998,-16.62427927,13.37787802],[-13.0759001,-16.62264364,13.37787802],[-12.4087,-16.62100801,13.37787802],[-11.9934998,-16.61937239,13.37787802],[-11.4259005,-16.61773676,13.37787802],[-10.7187996,-16.61610113,13.37787802],[-10.1665001,-16.6144655,13.37787802],[-9.7725697,-16.61282988,13.37787802],[-8.9562902,-16.61119425,13.37787802],[-8.5852699,-16.60955862,13.37787802],[-9.1914701,-16.60792299,13.37787802],[-10.1330004,-16.60628736,13.37787802],[-10.5514002,-16.60465174,13.37787802],[-12.8563004,-16.79274893,13.37624239],[-16.0951004,-16.7911133,13.37624239],[-17.6088009,-16.78947767,13.37624239],[-17.8318005,-16.78784204,13.37624239],[-18.6331005,-16.78620642,13.37624239],[-19.0398006,-16.78457079,13.37624239],[-18.6065006,-16.78293516,13.37624239],[-18.0340996,-16.78129953,13.37624239],[-17.5783997,-16.77966391,13.37624239],[-16.9444008,-16.77802828,13.37624239],[-16.6830006,-16.77639265,13.37624239],[-15.8535995,-16.77475702,13.37624239],[-14.0766001,-16.77312139,13.37624239],[-12.6518002,-16.77148577,13.37624239],[-13.2286997,-16.76985014,13.37624239],[-13.8494997,-16.76821451,13.37624239],[-13.9525995,-16.76657888,13.37624239],[-14.0551996,-16.76494326,13.37624239],[-14.3113003,-16.76330763,13.37624239],[-14.4860001,-16.761672,13.37624239],[-14.3822002,-16.76003637,13.37624239],[-14.5222998,-16.75840074,13.37624239],[-14.4240999,-16.75676512,13.37624239],[-13.8895998,-16.75512949,13.37624239],[-13.9148998,-16.75349386,13.37624239],[-13.6843996,-16.75185823,13.37624239],[-13.0107002,-16.75022261,13.37624239],[-12.2369003,-16.74858698,13.37624239],[-12.4483004,-16.74695135,13.37624239],[-12.7362003,-16.74531572,13.37624239],[-12.9222002,-16.7436801,13.37624239],[-12.8220997,-16.74204447,13.37624239],[-13.2124004,-16.74040884,13.37624239],[-13.7020998,-16.73877321,13.37624239],[-13.4259005,-16.73713758,13.37624239],[-13.3697996,-16.73550196,13.37624239],[-13.3559999,-16.73386633,13.37624239],[-13.3542995,-16.7322307,13.37624239],[-13.5193996,-16.73059507,13.37624239],[-13.4236002,-16.72895945,13.37624239],[-12.6907997,-16.72732382,13.37624239],[-11.0455999,-16.72568819,13.37624239],[-12.2964001,-16.72405256,13.37624239],[-15.4397001,-16.72241693,13.37624239],[-17.3034992,-16.72078131,13.37624239],[-17.5753002,-16.71914568,13.37624239],[-17.9258995,-16.71751005,13.37624239],[-18.0685005,-16.71587442,13.37624239],[-19.6404991,-16.7142388,13.37624239],[-21.6317005,-16.71260317,13.37624239],[-22.4421005,-16.71096754,13.37624239],[-21.0408993,-16.70933191,13.37624239],[-19.7738991,-16.70769628,13.37624239],[-19.2658997,-16.70606066,13.37624239],[-18.3013,-16.70442503,13.37624239],[-17.2763004,-16.7027894,13.37624239],[-16.9249992,-16.70115377,13.37624239],[-16.5004997,-16.69951815,13.37624239],[-15.7282,-16.69788252,13.37624239],[-15.9976997,-16.69624689,13.37624239],[-16.2933006,-16.69461126,13.37624239],[-16.3565006,-16.69297564,13.37624239],[-16.5464001,-16.69134001,13.37624239],[-16.8705997,-16.68970438,13.37624239],[-17.2091007,-16.68806875,13.37624239],[-17.6019001,-16.68643312,13.37624239],[-18.6674004,-16.6847975,13.37624239],[-19.1126995,-16.68316187,13.37624239],[-18.8463001,-16.68152624,13.37624239],[-19.0312004,-16.67989061,13.37624239],[-18.8486004,-16.67825499,13.37624239],[-17.4463997,-16.67661936,13.37624239],[-16.1130009,-16.67498373,13.37624239],[-16.2756004,-16.6733481,13.37624239],[-16.9957008,-16.67171247,13.37624239],[-17.4685993,-16.67007685,13.37624239],[-17.0841007,-16.66844122,13.37624239],[-16.4655991,-16.66680559,13.37624239],[-16.0541992,-16.66516996,13.37624239],[-16.5806999,-16.66353434,13.37624239],[-17.8640003,-16.66189871,13.37624239],[-18.6716003,-16.66026308,13.37624239],[-18.0265007,-16.65862745,13.37624239],[-18.6550999,-16.65699182,13.37624239],[-18.8691006,-16.6553562,13.37624239],[-18.5321007,-16.65372057,13.37624239],[-19.1039009,-16.65208494,13.37624239],[-18.7744007,-16.65044931,13.37624239],[-17.1282005,-16.64881369,13.37624239],[-15.7852001,-16.64717806,13.37624239],[-15.8862,-16.64554243,13.37624239],[-15.441,-16.6439068,13.37624239],[-14.2765999,-16.64227118,13.37624239],[-14.9482002,-16.64063555,13.37624239],[-15.0427999,-16.63899992,13.37624239],[-14.5725002,-16.63736429,13.37624239],[-14.3613997,-16.63572866,13.37624239],[-12.2508001,-16.63409304,13.37624239],[-11.0967999,-16.63245741,13.37624239],[-12.7456999,-16.63082178,13.37624239],[-12.3491001,-16.62918615,13.37624239],[-12.2577,-16.62755053,13.37624239],[-13.2753,-16.6259149,13.37624239],[-14.3074999,-16.62427927,13.37624239],[-13.8903999,-16.62264364,13.37624239],[-12.5190001,-16.62100801,13.37624239],[-12.0068998,-16.61937239,13.37624239],[-11.5941,-16.61773676,13.37624239],[-10.7623997,-16.61610113,13.37624239],[-10.1163998,-16.6144655,13.37624239],[-10.0544004,-16.61282988,13.37624239],[-9.2678204,-16.61119425,13.37624239],[-8.5847797,-16.60955862,13.37624239],[-10.0306997,-16.60792299,13.37624239],[-12.0962,-16.60628736,13.37624239],[-12.7934999,-16.60465174,13.37624239],[-8.3560801,-16.79438456,13.37460676],[-12.2269001,-16.79274893,13.37460676],[-18.0870991,-16.7911133,13.37460676],[-20.5398006,-16.78947767,13.37460676],[-18.6303997,-16.78784204,13.37460676],[-19.3474998,-16.78620642,13.37460676],[-19.7241001,-16.78457079,13.37460676],[-18.6679001,-16.78293516,13.37460676],[-18.4064007,-16.78129953,13.37460676],[-18.1639996,-16.77966391,13.37460676],[-17.3052006,-16.77802828,13.37460676],[-17.3078003,-16.77639265,13.37460676],[-16.4694996,-16.77475702,13.37460676],[-13.6617002,-16.77312139,13.37460676],[-10.9097996,-16.77148577,13.37460676],[-12.5951004,-16.76985014,13.37460676],[-13.7976999,-16.76821451,13.37460676],[-13.9300003,-16.76657888,13.37460676],[-14.0629997,-16.76494326,13.37460676],[-14.5466995,-16.76330763,13.37460676],[-14.7965002,-16.761672,13.37460676],[-14.4989996,-16.76003637,13.37460676],[-15.1089001,-16.75840074,13.37460676],[-15.1267996,-16.75676512,13.37460676],[-14.1051998,-16.75512949,13.37460676],[-14.5120001,-16.75349386,13.37460676],[-13.9876003,-16.75185823,13.37460676],[-12.5166998,-16.75022261,13.37460676],[-11.5059996,-16.74858698,13.37460676],[-11.9361,-16.74695135,13.37460676],[-12.5414,-16.74531572,13.37460676],[-13.1513996,-16.7436801,13.37460676],[-12.9191999,-16.74204447,13.37460676],[-13.8448,-16.74040884,13.37460676],[-14.7058001,-16.73877321,13.37460676],[-13.7164001,-16.73713758,13.37460676],[-13.4275999,-16.73550196,13.37460676],[-13.4371004,-16.73386633,13.37460676],[-13.4462004,-16.7322307,13.37460676],[-13.552,-16.73059507,13.37460676],[-13.4610004,-16.72895945,13.37460676],[-12.2774,-16.72732382,13.37460676],[-9.2872896,-16.72568819,13.37460676],[-11.0515003,-16.72405256,13.37460676],[-15.4572001,-16.72241693,13.37460676],[-18.0716991,-16.72078131,13.37460676],[-17.5203991,-16.71914568,13.37460676],[-17.5673008,-16.71751005,13.37460676],[-17.3041992,-16.71587442,13.37460676],[-19.0688,-16.7142388,13.37460676],[-21.9286003,-16.71260317,13.37460676],[-23.1730995,-16.71096754,13.37460676],[-20.9547997,-16.70933191,13.37460676],[-19.5091,-16.70769628,13.37460676],[-19.2420998,-16.70606066,13.37460676],[-18.2887001,-16.70442503,13.37460676],[-17.0949993,-16.7027894,13.37460676],[-16.9179001,-16.70115377,13.37460676],[-16.2863007,-16.69951815,13.37460676],[-15.3936005,-16.69788252,13.37460676],[-15.7144003,-16.69624689,13.37460676],[-16.1646996,-16.69461126,13.37460676],[-16.3437996,-16.69297564,13.37460676],[-16.4239006,-16.69134001,13.37460676],[-16.9032001,-16.68970438,13.37460676],[-17.2831993,-16.68806875,13.37460676],[-17.6375008,-16.68643312,13.37460676],[-18.7994003,-16.6847975,13.37460676],[-19.2194004,-16.68316187,13.37460676],[-18.7376003,-16.68152624,13.37460676],[-19.1040001,-16.67989061,13.37460676],[-18.9680996,-16.67825499,13.37460676],[-17.4146996,-16.67661936,13.37460676],[-15.9461002,-16.67498373,13.37460676],[-16.1928005,-16.6733481,13.37460676],[-17.0153008,-16.67171247,13.37460676],[-17.5681992,-16.67007685,13.37460676],[-17.3127003,-16.66844122,13.37460676],[-16.6536007,-16.66680559,13.37460676],[-16.1296997,-16.66516996,13.37460676],[-17.0816002,-16.66353434,13.37460676],[-18.2157001,-16.66189871,13.37460676],[-18.8528004,-16.66026308,13.37460676],[-18.6018009,-16.65862745,13.37460676],[-19.0375004,-16.65699182,13.37460676],[-19.2092991,-16.6553562,13.37460676],[-19.3341999,-16.65372057,13.37460676],[-19.3211994,-16.65208494,13.37460676],[-18.9796009,-16.65044931,13.37460676],[-17.7010002,-16.64881369,13.37460676],[-16.0622005,-16.64717806,13.37460676],[-16.1189003,-16.64554243,13.37460676],[-15.8197002,-16.6439068,13.37460676],[-14.6296997,-16.64227118,13.37460676],[-15.2289,-16.64063555,13.37460676],[-15.4216995,-16.63899992,13.37460676],[-14.8439999,-16.63736429,13.37460676],[-14.6461,-16.63572866,13.37460676],[-12.7432003,-16.63409304,13.37460676],[-11.6644001,-16.63245741,13.37460676],[-12.7981005,-16.63082178,13.37460676],[-12.5338001,-16.62918615,13.37460676],[-12.4834003,-16.62755053,13.37460676],[-13.1861,-16.6259149,13.37460676],[-13.9663,-16.62427927,13.37460676],[-13.5719995,-16.62264364,13.37460676],[-12.4003,-16.62100801,13.37460676],[-11.9140997,-16.61937239,13.37460676],[-11.5941,-16.61773676,13.37460676],[-10.9912004,-16.61610113,13.37460676],[-10.4708996,-16.6144655,13.37460676],[-10.6591997,-16.61282988,13.37460676],[-10.1622,-16.61119425,13.37460676],[-9.5634298,-16.60955862,13.37460676],[-10.9818001,-16.60792299,13.37460676],[-12.1787004,-16.60628736,13.37460676],[-12.5401001,-16.60465174,13.37460676],[-10.7243004,-16.79438456,13.37297113],[-13.0910997,-16.79274893,13.37297113],[-16.4918995,-16.7911133,13.37297113],[-18.0237007,-16.78947767,13.37297113],[-17.8223991,-16.78784204,13.37297113],[-18.2922001,-16.78620642,13.37297113],[-18.5517998,-16.78457079,13.37297113],[-17.9023991,-16.78293516,13.37297113],[-17.6746998,-16.78129953,13.37297113],[-17.4554996,-16.77966391,13.37297113],[-16.8518009,-16.77802828,13.37297113],[-16.4582005,-16.77639265,13.37297113],[-15.7779999,-16.77475702,13.37297113],[-14.2459002,-16.77312139,13.37297113],[-12.9336004,-16.77148577,13.37297113],[-13.1786003,-16.76985014,13.37297113],[-13.6668997,-16.76821451,13.37297113],[-13.7271996,-16.76657888,13.37297113],[-13.9581003,-16.76494326,13.37297113],[-14.2620001,-16.76330763,13.37297113],[-14.3796997,-16.761672,13.37297113],[-14.2384996,-16.76003637,13.37297113],[-14.2944002,-16.75840074,13.37297113],[-14.0897999,-16.75676512,13.37297113],[-13.4541998,-16.75512949,13.37297113],[-13.2065001,-16.75349386,13.37297113],[-12.9961996,-16.75185823,13.37297113],[-12.4189997,-16.75022261,13.37297113],[-12.1311998,-16.74858698,13.37297113],[-12.1400003,-16.74695135,13.37297113],[-11.8351002,-16.74531572,13.37297113],[-11.7517004,-16.7436801,13.37297113],[-12.2152004,-16.74204447,13.37297113],[-13.3647003,-16.74040884,13.37297113],[-13.9612999,-16.73877321,13.37297113],[-13.7397003,-16.73713758,13.37297113],[-13.5194998,-16.73550196,13.37297113],[-13.5242004,-16.73386633,13.37297113],[-13.4236002,-16.7322307,13.37297113],[-13.3737001,-16.73059507,13.37297113],[-13.3102999,-16.72895945,13.37297113],[-12.8169003,-16.72732382,13.37297113],[-12.3562002,-16.72568819,13.37297113],[-13.1615,-16.72405256,13.37297113],[-14.6967001,-16.72241693,13.37297113],[-15.9069996,-16.72078131,13.37297113],[-16.6583996,-16.71914568,13.37297113],[-17.2833996,-16.71751005,13.37297113],[-18.0478001,-16.71587442,13.37297113],[-19.1005993,-16.7142388,13.37297113],[-20.6375008,-16.71260317,13.37297113],[-21.2532997,-16.71096754,13.37297113],[-20.2434006,-16.70933191,13.37297113],[-19.1856003,-16.70769628,13.37297113],[-18.6065006,-16.70606066,13.37297113],[-17.9577999,-16.70442503,13.37297113],[-17.1896,-16.7027894,13.37297113],[-16.8304996,-16.70115377,13.37297113],[-16.3871994,-16.69951815,13.37297113],[-15.9673004,-16.69788252,13.37297113],[-15.9343004,-16.69624689,13.37297113],[-15.8877001,-16.69461126,13.37297113],[-15.7704,-16.69297564,13.37297113],[-16.0258999,-16.69134001,13.37297113],[-16.2943001,-16.68970438,13.37297113],[-16.5993996,-16.68806875,13.37297113],[-17.281601,-16.68643312,13.37297113],[-18.1240997,-16.6847975,13.37297113],[-18.5468006,-16.68316187,13.37297113],[-18.4752998,-16.68152624,13.37297113],[-18.4724998,-16.67989061,13.37297113],[-18.2217999,-16.67825499,13.37297113],[-17.3722992,-16.67661936,13.37297113],[-16.4157009,-16.67498373,13.37297113],[-16.4543991,-16.6733481,13.37297113],[-17.0583,-16.67171247,13.37297113],[-17.4129009,-16.67007685,13.37297113],[-17.4685001,-16.66844122,13.37297113],[-17.3980007,-16.66680559,13.37297113],[-17.3946991,-16.66516996,13.37297113],[-17.7402,-16.66353434,13.37297113],[-18.1116009,-16.66189871,13.37297113],[-18.3607998,-16.66026308,13.37297113],[-18.9864006,-16.65862745,13.37297113],[-19.9029999,-16.65699182,13.37297113],[-20.3171005,-16.6553562,13.37297113],[-19.9969006,-16.65372057,13.37297113],[-19.6616993,-16.65208494,13.37297113],[-19.3603992,-16.65044931,13.37297113],[-18.4370995,-16.64881369,13.37297113],[-17.8090992,-16.64717806,13.37297113],[-17.3131008,-16.64554243,13.37297113],[-16.7721996,-16.6439068,13.37297113],[-16.5590992,-16.64227118,13.37297113],[-16.5597,-16.64063555,13.37297113],[-16.8694,-16.63899992,13.37297113],[-16.9960003,-16.63736429,13.37297113],[-15.8959999,-16.63572866,13.37297113],[-14.7556,-16.63409304,13.37297113],[-14.2674999,-16.63245741,13.37297113],[-13.7396002,-16.63082178,13.37297113],[-13.4962997,-16.62918615,13.37297113],[-13.2386999,-16.62755053,13.37297113],[-13.092,-16.6259149,13.37297113],[-12.9747,-16.62427927,13.37297113],[-12.6622,-16.62264364,13.37297113],[-11.8137999,-16.62100801,13.37297113],[-10.9884996,-16.61937239,13.37297113],[-11.0980997,-16.61773676,13.37297113],[-11.7278996,-16.61610113,13.37297113],[-12.0809002,-16.6144655,13.37297113],[-11.9848003,-16.61282988,13.37297113],[-12.1119003,-16.61119425,13.37297113],[-12.4134998,-16.60955862,13.37297113],[-12.2658005,-16.60792299,13.37297113],[-12.4855003,-16.60628736,13.37297113],[-12.5803003,-16.60465174,13.37297113],[-11.9396,-16.79438456,13.3713355],[-13.2004995,-16.79274893,13.3713355],[-15.9902,-16.7911133,13.3713355],[-17.2875004,-16.78947767,13.3713355],[-17.0431004,-16.78784204,13.3713355],[-17.3407993,-16.78620642,13.3713355],[-17.4843006,-16.78457079,13.3713355],[-17.0741005,-16.78293516,13.3713355],[-16.4333992,-16.78129953,13.3713355],[-16.2963009,-16.77966391,13.3713355],[-16.3805008,-16.77802828,13.3713355],[-16.1875992,-16.77639265,13.3713355],[-15.6618004,-16.77475702,13.3713355],[-14.7512999,-16.77312139,13.3713355],[-14.2845001,-16.77148577,13.3713355],[-13.9209003,-16.76985014,13.3713355],[-13.7413998,-16.76821451,13.3713355],[-13.7476997,-16.76657888,13.3713355],[-13.8719997,-16.76494326,13.3713355],[-14.2166996,-16.76330763,13.3713355],[-14.2895002,-16.761672,13.3713355],[-13.9900999,-16.76003637,13.3713355],[-13.6791,-16.75840074,13.3713355],[-13.4886999,-16.75676512,13.3713355],[-12.6197004,-16.75512949,13.3713355],[-11.0860996,-16.75349386,13.3713355],[-11.2332001,-16.75185823,13.3713355],[-12.3399,-16.75022261,13.3713355],[-13.1101999,-16.74858698,13.3713355],[-12.4569998,-16.74695135,13.3713355],[-10.2546997,-16.74531572,13.3713355],[-7.7292199,-16.7436801,13.3713355],[-10.5889997,-16.74204447,13.3713355],[-13.6387997,-16.74040884,13.3713355],[-14.8192997,-16.73877321,13.3713355],[-14.0553999,-16.73713758,13.3713355],[-13.5389996,-16.73550196,13.3713355],[-13.6070995,-16.73386633,13.3713355],[-13.4335003,-16.7322307,13.3713355],[-13.5552998,-16.73059507,13.3713355],[-13.5115004,-16.72895945,13.3713355],[-13.4238005,-16.72732382,13.3713355],[-13.8970003,-16.72568819,13.3713355],[-13.9812002,-16.72405256,13.3713355],[-14.3528996,-16.72241693,13.3713355],[-14.0527,-16.72078131,13.3713355],[-15.3139,-16.71914568,13.3713355],[-17.0776005,-16.71751005,13.3713355],[-17.7873993,-16.71587442,13.3713355],[-18.6637993,-16.7142388,13.3713355],[-20.9116993,-16.71260317,13.3713355],[-22.1030006,-16.71096754,13.3713355],[-19.9283009,-16.70933191,13.3713355],[-18.1264,-16.70769628,13.3713355],[-17.6902008,-16.70606066,13.3713355],[-17.7173004,-16.70442503,13.3713355],[-17.4372997,-16.7027894,13.3713355],[-17.1646996,-16.70115377,13.3713355],[-16.4361,-16.69951815,13.3713355],[-16.1387005,-16.69788252,13.3713355],[-15.9786997,-16.69624689,13.3713355],[-15.4814997,-16.69461126,13.3713355],[-14.8638,-16.69297564,13.3713355],[-15.4569998,-16.69134001,13.3713355],[-15.6988001,-16.68970438,13.3713355],[-15.3929005,-16.68806875,13.3713355],[-16.6658001,-16.68643312,13.3713355],[-18.2451,-16.6847975,13.3713355],[-18.7033005,-16.68316187,13.3713355],[-18.2844009,-16.68152624,13.3713355],[-18.5520992,-16.67989061,13.3713355],[-18.4990997,-16.67825499,13.3713355],[-17.1009007,-16.67661936,13.3713355],[-15.5023003,-16.67498373,13.3713355],[-15.8648005,-16.6733481,13.3713355],[-17.2115993,-16.67171247,13.3713355],[-18.2105999,-16.67007685,13.3713355],[-17.8910999,-16.66844122,13.3713355],[-17.9300995,-16.66680559,13.3713355],[-18.4995995,-16.66516996,13.3713355],[-18.2012005,-16.66353434,13.3713355],[-18.1917992,-16.66189871,13.3713355],[-18.2234001,-16.66026308,13.3713355],[-19.4151993,-16.65862745,13.3713355],[-21.8010006,-16.65699182,13.3713355],[-22.5498009,-16.6553562,13.3713355],[-20.6355991,-16.65372057,13.3713355],[-20.3216991,-16.65208494,13.3713355],[-20.0760002,-16.65044931,13.3713355],[-19.0587997,-16.64881369,13.3713355],[-19.0809994,-16.64717806,13.3713355],[-18.4780998,-16.64554243,13.3713355],[-17.5632992,-16.6439068,13.3713355],[-17.1616001,-16.64227118,13.3713355],[-17.2427998,-16.64063555,13.3713355],[-18.1763992,-16.63899992,13.3713355],[-19.2926998,-16.63736429,13.3713355],[-17.2803993,-16.63572866,13.3713355],[-15.4203997,-16.63409304,13.3713355],[-15.0705004,-16.63245741,13.3713355],[-14.5297003,-16.63082178,13.3713355],[-13.7055998,-16.62918615,13.3713355],[-13.5611,-16.62755053,13.3713355],[-13.0879002,-16.6259149,13.3713355],[-12.4900999,-16.62427927,13.3713355],[-12.3818998,-16.62264364,13.3713355],[-11.3128004,-16.62100801,13.3713355],[-9.3761902,-16.61937239,13.3713355],[-10.4110003,-16.61773676,13.3713355],[-12.3823004,-16.61610113,13.3713355],[-13.6844997,-16.6144655,13.3713355],[-13.0373001,-16.61282988,13.3713355],[-13.4275999,-16.61119425,13.3713355],[-14.3573999,-16.60955862,13.3713355],[-13.2849998,-16.60792299,13.3713355],[-12.9804001,-16.60628736,13.3713355],[-13.0579996,-16.60465174,13.3713355],[-11.6809998,-16.79438456,13.36969988],[-12.7962999,-16.79274893,13.36969988],[-16.0317001,-16.7911133,13.36969988],[-18.1266994,-16.78947767,13.36969988],[-16.1560001,-16.78784204,13.36969988],[-16.9979,-16.78620642,13.36969988],[-17.5266991,-16.78457079,13.36969988],[-16.0142994,-16.78293516,13.36969988],[-15.9333,-16.78129953,13.36969988],[-15.8058004,-16.77966391,13.36969988],[-15.6763,-16.77802828,13.36969988],[-16.2766991,-16.77639265,13.36969988],[-15.6285,-16.77475702,13.36969988],[-14.4723997,-16.77312139,13.36969988],[-14.5279999,-16.77148577,13.36969988],[-13.9759998,-16.76985014,13.36969988],[-13.5841999,-16.76821451,13.36969988],[-13.8147001,-16.76657888,13.36969988],[-13.5166998,-16.76494326,13.36969988],[-14.0932999,-16.76330763,13.36969988],[-14.4041996,-16.761672,13.36969988],[-13.6013002,-16.76003637,13.36969988],[-13.4819002,-16.75840074,13.36969988],[-13.4120998,-16.75676512,13.36969988],[-12.2676001,-16.75512949,13.36969988],[-10.4540997,-16.75349386,13.36969988],[-10.7985001,-16.75185823,13.36969988],[-12.2875996,-16.75022261,13.36969988],[-13.4254999,-16.74858698,13.36969988],[-12.6494999,-16.74695135,13.36969988],[-9.9993696,-16.74531572,13.36969988],[-6.73455,-16.7436801,13.36969988],[-10.3108997,-16.74204447,13.36969988],[-13.8625002,-16.74040884,13.36969988],[-15.0742998,-16.73877321,13.36969988],[-14.0792999,-16.73713758,13.36969988],[-13.5372,-16.73550196,13.36969988],[-13.4778004,-16.73386633,13.36969988],[-13.3851995,-16.7322307,13.36969988],[-13.3769999,-16.73059507,13.36969988],[-13.3992996,-16.72895945,13.36969988],[-13.5906,-16.72732382,13.36969988],[-13.9822998,-16.72568819,13.36969988],[-14.1313,-16.72405256,13.36969988],[-14.3252001,-16.72241693,13.36969988],[-14.0044003,-16.72078131,13.36969988],[-15.0270996,-16.71914568,13.36969988],[-16.8425007,-16.71751005,13.36969988],[-17.6254005,-16.71587442,13.36969988],[-18.0834007,-16.7142388,13.36969988],[-20.2525997,-16.71260317,13.36969988],[-21.6042004,-16.71096754,13.36969988],[-19.2283001,-16.70933191,13.36969988],[-17.8169994,-16.70769628,13.36969988],[-17.5452003,-16.70606066,13.36969988],[-17.2112007,-16.70442503,13.36969988],[-17.2703991,-16.7027894,13.36969988],[-16.9650993,-16.70115377,13.36969988],[-16.2213001,-16.69951815,13.36969988],[-16.0646,-16.69788252,13.36969988],[-15.8387003,-16.69624689,13.36969988],[-15.4301996,-16.69461126,13.36969988],[-14.9973001,-16.69297564,13.36969988],[-15.3987999,-16.69134001,13.36969988],[-15.7084999,-16.68970438,13.36969988],[-15.6385002,-16.68806875,13.36969988],[-16.6089001,-16.68643312,13.36969988],[-17.9258003,-16.6847975,13.36969988],[-18.3953991,-16.68316187,13.36969988],[-18.0879993,-16.68152624,13.36969988],[-18.3015003,-16.67989061,13.36969988],[-18.1644001,-16.67825499,13.36969988],[-17.0265999,-16.67661936,13.36969988],[-15.948,-16.67498373,13.36969988],[-16.2003994,-16.6733481,13.36969988],[-17.1744995,-16.67171247,13.36969988],[-17.8831005,-16.67007685,13.36969988],[-17.7742996,-16.66844122,13.36969988],[-17.8827991,-16.66680559,13.36969988],[-18.2961998,-16.66516996,13.36969988],[-18.2150993,-16.66353434,13.36969988],[-18.2297001,-16.66189871,13.36969988],[-18.3927002,-16.66026308,13.36969988],[-19.4190998,-16.65862745,13.36969988],[-21.1609993,-16.65699182,13.36969988],[-21.6667995,-16.6553562,13.36969988],[-20.6525002,-16.65372057,13.36969988],[-20.3008995,-16.65208494,13.36969988],[-20.0175991,-16.65044931,13.36969988],[-19.2133007,-16.64881369,13.36969988],[-18.7348003,-16.64717806,13.36969988],[-18.3127995,-16.64554243,13.36969988],[-17.9701004,-16.6439068,13.36969988],[-17.6040993,-16.64227118,13.36969988],[-17.9855995,-16.64063555,13.36969988],[-18.6949005,-16.63899992,13.36969988],[-18.8083992,-16.63736429,13.36969988],[-17.8150997,-16.63572866,13.36969988],[-16.1828003,-16.63409304,13.36969988],[-15.3823004,-16.63245741,13.36969988],[-14.9379997,-16.63082178,13.36969988],[-14.1127005,-16.62918615,13.36969988],[-13.6777,-16.62755053,13.36969988],[-13.2847004,-16.6259149,13.36969988],[-12.6618996,-16.62427927,13.36969988],[-12.3153,-16.62264364,13.36969988],[-11.5321999,-16.62100801,13.36969988],[-10.5010004,-16.61937239,13.36969988],[-11.0277004,-16.61773676,13.36969988],[-12.2629004,-16.61610113,13.36969988],[-12.9820004,-16.6144655,13.36969988],[-13.0887003,-16.61282988,13.36969988],[-13.4545002,-16.61119425,13.36969988],[-13.8112001,-16.60955862,13.36969988],[-13.3821001,-16.60792299,13.36969988],[-13.0002003,-16.60628736,13.36969988],[-12.6402998,-16.60465174,13.36969988],[-11.5707998,-16.79438456,13.36806425],[-12.2116003,-16.79274893,13.36806425],[-13.1619997,-16.7911133,13.36806425],[-13.7379999,-16.78947767,13.36806425],[-13.5962,-16.78784204,13.36806425],[-13.6440001,-16.78620642,13.36806425],[-13.7598,-16.78457079,13.36806425],[-13.7407999,-16.78293516,13.36806425],[-14.2988997,-16.78129953,13.36806425],[-14.3716002,-16.77966391,13.36806425],[-14.4926004,-16.77802828,13.36806425],[-14.8760996,-16.77639265,13.36806425],[-14.5752001,-16.77475702,13.36806425],[-13.8451996,-16.77312139,13.36806425],[-13.3851995,-16.77148577,13.36806425],[-13.1239996,-16.76985014,13.36806425],[-12.9090996,-16.76821451,13.36806425],[-12.7676001,-16.76657888,13.36806425],[-12.8829002,-16.76494326,13.36806425],[-13.0593996,-16.76330763,13.36806425],[-13.1450005,-16.761672,13.36806425],[-12.8947001,-16.76003637,13.36806425],[-12.7051001,-16.75840074,13.36806425],[-12.5548,-16.75676512,13.36806425],[-12.1205997,-16.75512949,13.36806425],[-11.5642004,-16.75349386,13.36806425],[-11.5770998,-16.75185823,13.36806425],[-12.2302999,-16.75022261,13.36806425],[-12.7016001,-16.74858698,13.36806425],[-12.5675001,-16.74695135,13.36806425],[-12.0009003,-16.74531572,13.36806425],[-11.8610001,-16.7436801,13.36806425],[-12.5019999,-16.74204447,13.36806425],[-13.5403004,-16.74040884,13.36806425],[-13.9097004,-16.73877321,13.36806425],[-13.6208,-16.73713758,13.36806425],[-13.3331003,-16.73550196,13.36806425],[-13.0632,-16.73386633,13.36806425],[-12.658,-16.7322307,13.36806425],[-12.2337999,-16.73059507,13.36806425],[-12.2419004,-16.72895945,13.36806425],[-12.9981003,-16.72732382,13.36806425],[-13.8135004,-16.72568819,13.36806425],[-14.3864002,-16.72405256,13.36806425],[-14.7517004,-16.72241693,13.36806425],[-15.2299995,-16.72078131,13.36806425],[-15.7311001,-16.71914568,13.36806425],[-16.0825996,-16.71751005,13.36806425],[-16.5044994,-16.71587442,13.36806425],[-16.9529991,-16.7142388,13.36806425],[-17.4225006,-16.71260317,13.36806425],[-17.6032009,-16.71096754,13.36806425],[-17.6508999,-16.70933191,13.36806425],[-17.3761997,-16.70769628,13.36806425],[-17.2150002,-16.70606066,13.36806425],[-16.7609005,-16.70442503,13.36806425],[-16.1546993,-16.7027894,13.36806425],[-15.9776001,-16.70115377,13.36806425],[-15.8183002,-16.69951815,13.36806425],[-15.5319996,-16.69788252,13.36806425],[-15.4773998,-16.69624689,13.36806425],[-15.6052999,-16.69461126,13.36806425],[-15.7701998,-16.69297564,13.36806425],[-15.8495998,-16.69134001,13.36806425],[-15.8425999,-16.68970438,13.36806425],[-16.0888004,-16.68806875,13.36806425],[-16.5837002,-16.68643312,13.36806425],[-16.9871998,-16.6847975,13.36806425],[-17.2719994,-16.68316187,13.36806425],[-17.4944,-16.68152624,13.36806425],[-17.4685001,-16.67989061,13.36806425],[-17.2787991,-16.67825499,13.36806425],[-17.0447998,-16.67661936,13.36806425],[-16.8782005,-16.67498373,13.36806425],[-16.8791008,-16.6733481,13.36806425],[-17.0195007,-16.67171247,13.36806425],[-16.9881992,-16.67007685,13.36806425],[-17.2835007,-16.66844122,13.36806425],[-17.6315994,-16.66680559,13.36806425],[-17.9726009,-16.66516996,13.36806425],[-17.9813004,-16.66353434,13.36806425],[-17.6657009,-16.66189871,13.36806425],[-17.6079998,-16.66026308,13.36806425],[-18.8498993,-16.65862745,13.36806425],[-19.8281002,-16.65699182,13.36806425],[-20.0643997,-16.6553562,13.36806425],[-20.2805996,-16.65372057,13.36806425],[-20.6315994,-16.65208494,13.36806425],[-20.3099995,-16.65044931,13.36806425],[-18.8467999,-16.64881369,13.36806425],[-17.2723007,-16.64717806,13.36806425],[-17.4146004,-16.64554243,13.36806425],[-18.2385006,-16.6439068,13.36806425],[-18.6648006,-16.64227118,13.36806425],[-18.8045998,-16.64063555,13.36806425],[-19.6208992,-16.63899992,13.36806425],[-20.1811008,-16.63736429,13.36806425],[-18.7070007,-16.63572866,13.36806425],[-17.1970005,-16.63409304,13.36806425],[-16.5902004,-16.63245741,13.36806425],[-15.5627003,-16.63082178,13.36806425],[-14.8416996,-16.62918615,13.36806425],[-14.5053997,-16.62755053,13.36806425],[-13.5965996,-16.6259149,13.36806425],[-13.0791998,-16.62427927,13.36806425],[-12.6471996,-16.62264364,13.36806425],[-11.7474003,-16.62100801,13.36806425],[-11.0246,-16.61937239,13.36806425],[-11.2372999,-16.61773676,13.36806425],[-12.2313995,-16.61610113,13.36806425],[-12.7825003,-16.6144655,13.36806425],[-13.0746002,-16.61282988,13.36806425],[-13.7214003,-16.61119425,13.36806425],[-14.1014004,-16.60955862,13.36806425],[-13.4889002,-16.60792299,13.36806425],[-12.7003002,-16.60628736,13.36806425],[-12.4203997,-16.60465174,13.36806425],[-11.3171997,-16.79438456,13.36642862],[-11.1237001,-16.79274893,13.36642862],[-9.9170799,-16.7911133,13.36642862],[-8.8092098,-16.78947767,13.36642862],[-10.3835001,-16.78784204,13.36642862],[-9.2354698,-16.78620642,13.36642862],[-8.5678196,-16.78457079,13.36642862],[-11.4849997,-16.78293516,13.36642862],[-11.9413996,-16.78129953,13.36642862],[-12.2554998,-16.77966391,13.36642862],[-13.6470003,-16.77802828,13.36642862],[-14.7302999,-16.77639265,13.36642862],[-14.2960997,-16.77475702,13.36642862],[-12.9180002,-16.77312139,13.36642862],[-11.9743004,-16.77148577,13.36642862],[-12.1997995,-16.76985014,13.36642862],[-12.0809002,-16.76821451,13.36642862],[-11.5274,-16.76657888,13.36642862],[-12.0381002,-16.76494326,13.36642862],[-12.1858997,-16.76330763,13.36642862],[-12.0746002,-16.761672,13.36642862],[-12.1695004,-16.76003637,13.36642862],[-11.9728003,-16.75840074,13.36642862],[-11.8902998,-16.75676512,13.36642862],[-11.8704004,-16.75512949,13.36642862],[-11.3957996,-16.75349386,13.36642862],[-11.5235004,-16.75185823,13.36642862],[-12.3653002,-16.75022261,13.36642862],[-13.1546001,-16.74858698,13.36642862],[-13.0493002,-16.74695135,13.36642862],[-13.5872002,-16.74531572,13.36642862],[-15.0166998,-16.7436801,13.36642862],[-13.9764996,-16.74204447,13.36642862],[-13.8333998,-16.74040884,13.36642862],[-14.2187004,-16.73877321,13.36642862],[-13.5272999,-16.73713758,13.36642862],[-13.1288004,-16.73550196,13.36642862],[-13.2470999,-16.73386633,13.36642862],[-12.1302996,-16.7322307,13.36642862],[-10.6394997,-16.73059507,13.36642862],[-10.6997995,-16.72895945,13.36642862],[-12.7834997,-16.72732382,13.36642862],[-14.3185997,-16.72568819,13.36642862],[-14.3783998,-16.72405256,13.36642862],[-15.3354998,-16.72241693,13.36642862],[-16.2495995,-16.72078131,13.36642862],[-15.9769001,-16.71914568,13.36642862],[-15.5916996,-16.71751005,13.36642862],[-15.2150002,-16.71587442,13.36642862],[-15.7775002,-16.7142388,13.36642862],[-15.5788002,-16.71260317,13.36642862],[-14.8116999,-16.71096754,13.36642862],[-16.2131996,-16.70933191,13.36642862],[-16.8225002,-16.70769628,13.36642862],[-16.802,-16.70606066,13.36642862],[-16.2654991,-16.70442503,13.36642862],[-15.1011,-16.7027894,13.36642862],[-15.1766996,-16.70115377,13.36642862],[-15.4448004,-16.69951815,13.36642862],[-14.8862,-16.69788252,13.36642862],[-15.1660004,-16.69624689,13.36642862],[-15.8424997,-16.69461126,13.36642862],[-16.4193993,-16.69297564,13.36642862],[-16.0835991,-16.69134001,13.36642862],[-15.9792995,-16.68970438,13.36642862],[-15.7584,-16.68806875,13.36642862],[-16.3796997,-16.68643312,13.36642862],[-16.5496998,-16.6847975,13.36642862],[-16.2653999,-16.68316187,13.36642862],[-17.0160007,-16.68152624,13.36642862],[-16.8624001,-16.67989061,13.36642862],[-16.8008995,-16.67825499,13.36642862],[-17.1506004,-16.67661936,13.36642862],[-17.1056995,-16.67498373,13.36642862],[-17.0802002,-16.6733481,13.36642862],[-16.9636993,-16.67171247,13.36642862],[-16.3673992,-16.67007685,13.36642862],[-16.8705006,-16.66844122,13.36642862],[-17.7108002,-16.66680559,13.36642862],[-18.0659008,-16.66516996,13.36642862],[-17.9887009,-16.66353434,13.36642862],[-17.1161003,-16.66189871,13.36642862],[-16.0639992,-16.66026308,13.36642862],[-18.2884007,-16.65862745,13.36642862],[-19.4633999,-16.65699182,13.36642862],[-19.4734001,-16.6553562,13.36642862],[-20.2290993,-16.65372057,13.36642862],[-21.3001003,-16.65208494,13.36642862],[-21.1515007,-16.65044931,13.36642862],[-18.6564999,-16.64881369,13.36642862],[-15.3189001,-16.64717806,13.36642862],[-16.4263992,-16.64554243,13.36642862],[-18.6473999,-16.6439068,13.36642862],[-19.3257008,-16.64227118,13.36642862],[-19.2978001,-16.64063555,13.36642862],[-20.5790997,-16.63899992,13.36642862],[-22.3920994,-16.63736429,13.36642862],[-19.6564007,-16.63572866,13.36642862],[-17.5669994,-16.63409304,13.36642862],[-17.2987995,-16.63245741,13.36642862],[-16.0368004,-16.63082178,13.36642862],[-15.2002001,-16.62918615,13.36642862],[-15.1323004,-16.62755053,13.36642862],[-13.6917,-16.6259149,13.36642862],[-13.3051004,-16.62427927,13.36642862],[-12.9976997,-16.62264364,13.36642862],[-11.6927004,-16.62100801,13.36642862],[-10.5284996,-16.61937239,13.36642862],[-11.1252003,-16.61773676,13.36642862],[-12.3926001,-16.61610113,13.36642862],[-12.9782,-16.6144655,13.36642862],[-13.1974001,-16.61282988,13.36642862],[-14.1056004,-16.61119425,13.36642862],[-14.6629,-16.60955862,13.36642862],[-13.6073999,-16.60792299,13.36642862],[-12.6637001,-16.60628736,13.36642862],[-12.4291,-16.60465174,13.36642862],[-10.3055,-16.79602018,13.36479299],[-11.1863003,-16.79438456,13.36479299],[-10.6716003,-16.79274893,13.36479299],[-9.184,-16.7911133,13.36479299],[-8.0391397,-16.78947767,13.36479299],[-9.2328701,-16.78784204,13.36479299],[-8.2797298,-16.78620642,13.36479299],[-7.8059301,-16.78457079,13.36479299],[-10.0747995,-16.78293516,13.36479299],[-11.3942003,-16.78129953,13.36479299],[-11.6660995,-16.77966391,13.36479299],[-12.5407,-16.77802828,13.36479299],[-14.3877001,-16.77639265,13.36479299],[-13.7645998,-16.77475702,13.36479299],[-12.3858004,-16.77312139,13.36479299],[-11.8546,-16.77148577,13.36479299],[-11.915,-16.76985014,13.36479299],[-11.6428003,-16.76821451,13.36479299],[-11.4216995,-16.76657888,13.36479299],[-11.6569996,-16.76494326,13.36479299],[-11.9097004,-16.76330763,13.36479299],[-11.9553003,-16.761672,13.36479299],[-11.9566002,-16.76003637,13.36479299],[-11.8432999,-16.75840074,13.36479299],[-11.8125,-16.75676512,13.36479299],[-11.7537003,-16.75512949,13.36479299],[-11.5040998,-16.75349386,13.36479299],[-11.7414999,-16.75185823,13.36479299],[-12.5675001,-16.75022261,13.36479299],[-13.0572004,-16.74858698,13.36479299],[-13.0988998,-16.74695135,13.36479299],[-13.7382002,-16.74531572,13.36479299],[-14.6374998,-16.7436801,13.36479299],[-13.9095001,-16.74204447,13.36479299],[-13.6863003,-16.74040884,13.36479299],[-13.8842001,-16.73877321,13.36479299],[-13.1900997,-16.73713758,13.36479299],[-12.8203001,-16.73550196,13.36479299],[-12.7254,-16.73386633,13.36479299],[-11.5723,-16.7322307,13.36479299],[-10.6424999,-16.73059507,13.36479299],[-10.8119001,-16.72895945,13.36479299],[-12.5205002,-16.72732382,13.36479299],[-14.0528002,-16.72568819,13.36479299],[-14.3817997,-16.72405256,13.36479299],[-14.9806004,-16.72241693,13.36479299],[-15.8764,-16.72078131,13.36479299],[-15.6490002,-16.71914568,13.36479299],[-15.2496996,-16.71751005,13.36479299],[-15.2649002,-16.71587442,13.36479299],[-15.4702997,-16.7142388,13.36479299],[-15.4034996,-16.71260317,13.36479299],[-15.2235003,-16.71096754,13.36479299],[-15.8659,-16.70933191,13.36479299],[-16.4820995,-16.70769628,13.36479299],[-16.5559006,-16.70606066,13.36479299],[-16.0179005,-16.70442503,13.36479299],[-15.5151997,-16.7027894,13.36479299],[-15.4743996,-16.70115377,13.36479299],[-15.4289999,-16.69951815,13.36479299],[-15.1309996,-16.69788252,13.36479299],[-15.2502003,-16.69624689,13.36479299],[-15.6531,-16.69461126,13.36479299],[-16.0174007,-16.69297564,13.36479299],[-16.0799007,-16.69134001,13.36479299],[-16.0792999,-16.68970438,13.36479299],[-16.1606998,-16.68806875,13.36479299],[-16.6844997,-16.68643312,13.36479299],[-17.0270004,-16.6847975,13.36479299],[-16.9944,-16.68316187,13.36479299],[-17.3376999,-16.68152624,13.36479299],[-17.1898003,-16.67989061,13.36479299],[-17.1198997,-16.67825499,13.36479299],[-17.0925999,-16.67661936,13.36479299],[-16.9708996,-16.67498373,13.36479299],[-17.0104008,-16.6733481,13.36479299],[-17.0342999,-16.67171247,13.36479299],[-17.0284004,-16.67007685,13.36479299],[-17.3686008,-16.66844122,13.36479299],[-17.6004009,-16.66680559,13.36479299],[-17.8476009,-16.66516996,13.36479299],[-18.0634995,-16.66353434,13.36479299],[-18.0328999,-16.66189871,13.36479299],[-18.0139008,-16.66026308,13.36479299],[-19.0273991,-16.65862745,13.36479299],[-19.6870003,-16.65699182,13.36479299],[-19.7840996,-16.6553562,13.36479299],[-20.2514992,-16.65372057,13.36479299],[-20.6380997,-16.65208494,13.36479299],[-20.4920998,-16.65044931,13.36479299],[-19.1984005,-16.64881369,13.36479299],[-17.7754993,-16.64717806,13.36479299],[-18.0443001,-16.64554243,13.36479299],[-18.8705997,-16.6439068,13.36479299],[-19.1527996,-16.64227118,13.36479299],[-19.2810993,-16.64063555,13.36479299],[-19.9146996,-16.63899992,13.36479299],[-20.2796993,-16.63736429,13.36479299],[-18.9356003,-16.63572866,13.36479299],[-17.4631004,-16.63409304,13.36479299],[-16.5723991,-16.63245741,13.36479299],[-15.5305996,-16.63082178,13.36479299],[-14.7137003,-16.62918615,13.36479299],[-14.0049,-16.62755053,13.36479299],[-13.1528997,-16.6259149,13.36479299],[-12.5646,-16.62427927,13.36479299],[-12.2006998,-16.62264364,13.36479299],[-11.6272001,-16.62100801,13.36479299],[-11.2923002,-16.61937239,13.36479299],[-11.7220001,-16.61773676,13.36479299],[-12.3895998,-16.61610113,13.36479299],[-12.9391003,-16.6144655,13.36479299],[-13.3901997,-16.61282988,13.36479299],[-13.9743004,-16.61119425,13.36479299],[-14.3334999,-16.60955862,13.36479299],[-13.6219997,-16.60792299,13.36479299],[-12.8662004,-16.60628736,13.36479299],[-12.3320999,-16.60465174,13.36479299],[-9.7464504,-16.79602018,13.36315737],[-9.98915,-16.79438456,13.36315737],[-9.93542,-16.79274893,13.36315737],[-9.85427,-16.7911133,13.36315737],[-9.8625698,-16.78947767,13.36315737],[-9.8015003,-16.78784204,13.36315737],[-9.6133699,-16.78620642,13.36315737],[-9.7733402,-16.78457079,13.36315737],[-9.9888601,-16.78293516,13.36315737],[-10.1471996,-16.78129953,13.36315737],[-10.3940001,-16.77966391,13.36315737],[-11.1504002,-16.77802828,13.36315737],[-11.7054996,-16.77639265,13.36315737],[-11.7019997,-16.77475702,13.36315737],[-11.8165998,-16.77312139,13.36315737],[-11.8779001,-16.77148577,13.36315737],[-11.6344995,-16.76985014,13.36315737],[-11.3204002,-16.76821451,13.36315737],[-11.1796999,-16.76657888,13.36315737],[-11.3437004,-16.76494326,13.36315737],[-11.5799999,-16.76330763,13.36315737],[-11.7243004,-16.761672,13.36315737],[-11.7953997,-16.76003637,13.36315737],[-11.7845001,-16.75840074,13.36315737],[-11.7363005,-16.75676512,13.36315737],[-11.9129,-16.75512949,13.36315737],[-12.1068001,-16.75349386,13.36315737],[-12.2667999,-16.75185823,13.36315737],[-12.6353998,-16.75022261,13.36315737],[-12.8516998,-16.74858698,13.36315737],[-13.0531998,-16.74695135,13.36315737],[-13.2325001,-16.74531572,13.36315737],[-13.4549999,-16.7436801,13.36315737],[-13.3108997,-16.74204447,13.36315737],[-13.0903997,-16.74040884,13.36315737],[-12.9109001,-16.73877321,13.36315737],[-12.4216995,-16.73713758,13.36315737],[-11.3878002,-16.73550196,13.36315737],[-10.8268995,-16.73386633,13.36315737],[-10.5860004,-16.7322307,13.36315737],[-9.5604801,-16.73059507,13.36315737],[-9.8842697,-16.72895945,13.36315737],[-12.1339998,-16.72732382,13.36315737],[-13.8659,-16.72568819,13.36315737],[-14.4200001,-16.72405256,13.36315737],[-14.9224005,-16.72241693,13.36315737],[-15.6854,-16.72078131,13.36315737],[-15.4966002,-16.71914568,13.36315737],[-14.9389,-16.71751005,13.36315737],[-14.7152996,-16.71587442,13.36315737],[-15.1176004,-16.7142388,13.36315737],[-15.4320002,-16.71260317,13.36315737],[-15.5282001,-16.71096754,13.36315737],[-15.783,-16.70933191,13.36315737],[-16.0496998,-16.70769628,13.36315737],[-16.0594006,-16.70606066,13.36315737],[-16.1343002,-16.70442503,13.36315737],[-16.3815994,-16.7027894,13.36315737],[-16.2080994,-16.70115377,13.36315737],[-15.6199999,-16.69951815,13.36315737],[-15.2254,-16.69788252,13.36315737],[-15.2235003,-16.69624689,13.36315737],[-15.4243002,-16.69461126,13.36315737],[-15.4970999,-16.69297564,13.36315737],[-15.9158001,-16.69134001,13.36315737],[-16.3799992,-16.68970438,13.36315737],[-16.7516994,-16.68806875,13.36315737],[-17.2070999,-16.68643312,13.36315737],[-18.2021999,-16.6847975,13.36315737],[-18.7992992,-16.68316187,13.36315737],[-18.0993996,-16.68152624,13.36315737],[-18.1151009,-16.67989061,13.36315737],[-17.9997005,-16.67825499,13.36315737],[-17.1665001,-16.67661936,13.36315737],[-16.3883991,-16.67498373,13.36315737],[-16.4564991,-16.6733481,13.36315737],[-17.4648991,-16.67171247,13.36315737],[-18.5907001,-16.67007685,13.36315737],[-18.2555008,-16.66844122,13.36315737],[-17.3467999,-16.66680559,13.36315737],[-16.8903008,-16.66516996,13.36315737],[-17.9829006,-16.66353434,13.36315737],[-19.7563992,-16.66189871,13.36315737],[-20.8120003,-16.66026308,13.36315737],[-20.1599998,-16.65862745,13.36315737],[-19.9892006,-16.65699182,13.36315737],[-20.1135006,-16.6553562,13.36315737],[-20.2635002,-16.65372057,13.36315737],[-20.6769009,-16.65208494,13.36315737],[-20.4906998,-16.65044931,13.36315737],[-19.9076996,-16.64881369,13.36315737],[-19.9057999,-16.64717806,13.36315737],[-19.5827007,-16.64554243,13.36315737],[-19.2341995,-16.6439068,13.36315737],[-19.0317993,-16.64227118,13.36315737],[-19.1478996,-16.64063555,13.36315737],[-19.4780006,-16.63899992,13.36315737],[-19.6305008,-16.63736429,13.36315737],[-18.4326,-16.63572866,13.36315737],[-16.2373009,-16.63409304,13.36315737],[-15.0883999,-16.63245741,13.36315737],[-14.8607998,-16.63082178,13.36315737],[-13.5918999,-16.62918615,13.36315737],[-13.0904999,-16.62755053,13.36315737],[-12.4593,-16.6259149,13.36315737],[-11.3888998,-16.62427927,13.36315737],[-11.2608995,-16.62264364,13.36315737],[-11.4729996,-16.62100801,13.36315737],[-11.3816996,-16.61937239,13.36315737],[-11.6966,-16.61773676,13.36315737],[-12.5710001,-16.61610113,13.36315737],[-12.5790997,-16.6144655,13.36315737],[-13.2343998,-16.61282988,13.36315737],[-14.3121004,-16.61119425,13.36315737],[-14.8053999,-16.60955862,13.36315737],[-13.9267998,-16.60792299,13.36315737],[-12.6259003,-16.60628736,13.36315737],[-12.1061001,-16.60465174,13.36315737],[-9.0206499,-16.79765581,13.36152174],[-9.5149899,-16.79602018,13.36152174],[-9.2159204,-16.79438456,13.36152174],[-9.6422396,-16.79274893,13.36152174],[-10.2032003,-16.7911133,13.36152174],[-10.2594995,-16.78947767,13.36152174],[-10.1269999,-16.78784204,13.36152174],[-10.1336002,-16.78620642,13.36152174],[-10.1697998,-16.78457079,13.36152174],[-9.6575499,-16.78293516,13.36152174],[-8.1717901,-16.78129953,13.36152174],[-8.3286304,-16.77966391,13.36152174],[-9.9107103,-16.77802828,13.36152174],[-9.3328199,-16.77639265,13.36152174],[-10.0397997,-16.77475702,13.36152174],[-11.2945995,-16.77312139,13.36152174],[-11.7224998,-16.77148577,13.36152174],[-11.5354004,-16.76985014,13.36152174],[-10.8535004,-16.76821451,13.36152174],[-10.1247997,-16.76657888,13.36152174],[-10.9172001,-16.76494326,13.36152174],[-11.3964005,-16.76330763,13.36152174],[-11.3682003,-16.761672,13.36152174],[-11.5813999,-16.76003637,13.36152174],[-11.4898005,-16.75840074,13.36152174],[-11.4687004,-16.75676512,13.36152174],[-12.0677996,-16.75512949,13.36152174],[-12.526,-16.75349386,13.36152174],[-12.5581999,-16.75185823,13.36152174],[-12.7783003,-16.75022261,13.36152174],[-13.0444002,-16.74858698,13.36152174],[-13.0897999,-16.74695135,13.36152174],[-13.1911001,-16.74531572,13.36152174],[-13.0916004,-16.7436801,13.36152174],[-13.0249004,-16.74204447,13.36152174],[-12.8576002,-16.74040884,13.36152174],[-12.4561005,-16.73877321,13.36152174],[-12.0318003,-16.73713758,13.36152174],[-10.0756998,-16.73550196,13.36152174],[-9.1503401,-16.73386633,13.36152174],[-9.9331598,-16.7322307,13.36152174],[-7.2948298,-16.73059507,13.36152174],[-7.2792401,-16.72895945,13.36152174],[-11.9565001,-16.72732382,13.36152174],[-14.8284998,-16.72568819,13.36152174],[-14.7442999,-16.72405256,13.36152174],[-15.0725002,-16.72241693,13.36152174],[-16.1984997,-16.72078131,13.36152174],[-15.6122999,-16.71914568,13.36152174],[-14.5469999,-16.71751005,13.36152174],[-13.8022003,-16.71587442,13.36152174],[-14.5108004,-16.7142388,13.36152174],[-15.2226,-16.71260317,13.36152174],[-15.5095997,-16.71096754,13.36152174],[-15.4460001,-16.70933191,13.36152174],[-15.8781004,-16.70769628,13.36152174],[-16.0279007,-16.70606066,13.36152174],[-16.0268002,-16.70442503,13.36152174],[-17.1124992,-16.7027894,13.36152174],[-16.9358006,-16.70115377,13.36152174],[-15.5674,-16.69951815,13.36152174],[-14.9818001,-16.69788252,13.36152174],[-15.0649004,-16.69624689,13.36152174],[-15.3478003,-16.69461126,13.36152174],[-15.2392998,-16.69297564,13.36152174],[-15.6900997,-16.69134001,13.36152174],[-16.5330009,-16.68970438,13.36152174],[-16.9300003,-16.68806875,13.36152174],[-17.2966003,-16.68643312,13.36152174],[-19.0639,-16.6847975,13.36152174],[-20.2049999,-16.68316187,13.36152174],[-18.3493996,-16.68152624,13.36152174],[-18.6037998,-16.67989061,13.36152174],[-18.7059994,-16.67825499,13.36152174],[-17.0351009,-16.67661936,13.36152174],[-15.7708998,-16.67498373,13.36152174],[-16.0191994,-16.6733481,13.36152174],[-17.6581001,-16.67171247,13.36152174],[-19.7987003,-16.67007685,13.36152174],[-18.7707005,-16.66844122,13.36152174],[-17.2660999,-16.66680559,13.36152174],[-15.9221001,-16.66516996,13.36152174],[-17.7814007,-16.66353434,13.36152174],[-20.6049995,-16.66189871,13.36152174],[-22.1016998,-16.66026308,13.36152174],[-20.6751003,-16.65862745,13.36152174],[-20.0711994,-16.65699182,13.36152174],[-20.0121002,-16.6553562,13.36152174],[-20.2717991,-16.65372057,13.36152174],[-20.8309002,-16.65208494,13.36152174],[-20.7714005,-16.65044931,13.36152174],[-20.2031994,-16.64881369,13.36152174],[-20.4022007,-16.64717806,13.36152174],[-20.1243992,-16.64554243,13.36152174],[-19.4160004,-16.6439068,13.36152174],[-18.9127998,-16.64227118,13.36152174],[-19.0923996,-16.64063555,13.36152174],[-19.3948994,-16.63899992,13.36152174],[-19.8610992,-16.63736429,13.36152174],[-18.3153,-16.63572866,13.36152174],[-15.8016005,-16.63409304,13.36152174],[-14.6687002,-16.63245741,13.36152174],[-14.6379004,-16.63082178,13.36152174],[-13.3011999,-16.62918615,13.36152174],[-12.9029999,-16.62755053,13.36152174],[-12.2472,-16.6259149,13.36152174],[-11.0445995,-16.62427927,13.36152174],[-11.0930004,-16.62264364,13.36152174],[-11.5599003,-16.62100801,13.36152174],[-11.3865995,-16.61937239,13.36152174],[-11.8809004,-16.61773676,13.36152174],[-12.7221003,-16.61610113,13.36152174],[-12.5426998,-16.6144655,13.36152174],[-13.4588003,-16.61282988,13.36152174],[-14.6001997,-16.61119425,13.36152174],[-15.0052004,-16.60955862,13.36152174],[-14.2096004,-16.60792299,13.36152174],[-12.7018003,-16.60628736,13.36152174],[-12.1274996,-16.60465174,13.36152174],[-8.5105696,-16.79765581,13.35988611],[-9.3919096,-16.79602018,13.35988611],[-9.4279804,-16.79438456,13.35988611],[-9.9190798,-16.79274893,13.35988611],[-10.2716999,-16.7911133,13.35988611],[-10.3283997,-16.78947767,13.35988611],[-10.4101,-16.78784204,13.35988611],[-10.3559999,-16.78620642,13.35988611],[-10.3130999,-16.78457079,13.35988611],[-10.1503,-16.78293516,13.35988611],[-9.0635595,-16.78129953,13.35988611],[-9.1612701,-16.77966391,13.35988611],[-10.3150997,-16.77802828,13.35988611],[-9.9526701,-16.77639265,13.35988611],[-10.3872995,-16.77475702,13.35988611],[-11.2685003,-16.77312139,13.35988611],[-11.5679998,-16.77148577,13.35988611],[-11.4754,-16.76985014,13.35988611],[-10.9661999,-16.76821451,13.35988611],[-10.6553001,-16.76657888,13.35988611],[-11.1757002,-16.76494326,13.35988611],[-11.5604,-16.76330763,13.35988611],[-11.6415997,-16.761672,13.35988611],[-11.9132996,-16.76003637,13.35988611],[-11.8456001,-16.75840074,13.35988611],[-11.875,-16.75676512,13.35988611],[-12.2776003,-16.75512949,13.35988611],[-12.5052004,-16.75349386,13.35988611],[-12.5593996,-16.75185823,13.35988611],[-12.7167997,-16.75022261,13.35988611],[-12.9371004,-16.74858698,13.35988611],[-12.9164,-16.74695135,13.35988611],[-13.0136003,-16.74531572,13.35988611],[-13.0993996,-16.7436801,13.35988611],[-13.0262003,-16.74204447,13.35988611],[-12.8778,-16.74040884,13.35988611],[-12.7222004,-16.73877321,13.35988611],[-12.2770996,-16.73713758,13.35988611],[-11.1441002,-16.73550196,13.35988611],[-10.6169996,-16.73386633,13.35988611],[-10.7579002,-16.7322307,13.35988611],[-9.6501598,-16.73059507,13.35988611],[-9.9133101,-16.72895945,13.35988611],[-12.2933998,-16.72732382,13.35988611],[-13.9806995,-16.72568819,13.35988611],[-14.3725996,-16.72405256,13.35988611],[-14.7646999,-16.72241693,13.35988611],[-15.3576002,-16.72078131,13.35988611],[-15.0775003,-16.71914568,13.35988611],[-14.5160999,-16.71751005,13.35988611],[-14.1934996,-16.71587442,13.35988611],[-14.3894997,-16.7142388,13.35988611],[-14.7950001,-16.71260317,13.35988611],[-14.993,-16.71096754,13.35988611],[-15.0599003,-16.70933191,13.35988611],[-15.2728004,-16.70769628,13.35988611],[-15.4355001,-16.70606066,13.35988611],[-15.5009003,-16.70442503,13.35988611],[-15.9660997,-16.7027894,13.35988611],[-15.8374004,-16.70115377,13.35988611],[-15.0941,-16.69951815,13.35988611],[-14.7639999,-16.69788252,13.35988611],[-14.9052,-16.69624689,13.35988611],[-15.2192001,-16.69461126,13.35988611],[-15.4087,-16.69297564,13.35988611],[-15.8725004,-16.69134001,13.35988611],[-16.3680992,-16.68970438,13.35988611],[-16.7208004,-16.68806875,13.35988611],[-16.9923,-16.68643312,13.35988611],[-17.5904999,-16.6847975,13.35988611],[-17.8857994,-16.68316187,13.35988611],[-17.3761997,-16.68152624,13.35988611],[-17.2553997,-16.67989061,13.35988611],[-17.1861992,-16.67825499,13.35988611],[-16.6257,-16.67661936,13.35988611],[-16.2978001,-16.67498373,13.35988611],[-16.2856998,-16.6733481,13.35988611],[-16.8369999,-16.67171247,13.35988611],[-17.5109997,-16.67007685,13.35988611],[-17.7338009,-16.66844122,13.35988611],[-17.6742001,-16.66680559,13.35988611],[-17.8136005,-16.66516996,13.35988611],[-18.8353996,-16.66353434,13.35988611],[-20.1774998,-16.66189871,13.35988611],[-20.9183998,-16.66026308,13.35988611],[-20.6762009,-16.65862745,13.35988611],[-20.3141003,-16.65699182,13.35988611],[-20.4316998,-16.6553562,13.35988611],[-20.6460991,-16.65372057,13.35988611],[-20.5972996,-16.65208494,13.35988611],[-20.5487003,-16.65044931,13.35988611],[-20.4192009,-16.64881369,13.35988611],[-20.3150005,-16.64717806,13.35988611],[-19.9946995,-16.64554243,13.35988611],[-19.6882992,-16.6439068,13.35988611],[-19.4234009,-16.64227118,13.35988611],[-19.2136002,-16.64063555,13.35988611],[-18.9944992,-16.63899992,13.35988611],[-18.6203003,-16.63736429,13.35988611],[-17.6602993,-16.63572866,13.35988611],[-16.6877003,-16.63409304,13.35988611],[-15.9256001,-16.63245741,13.35988611],[-14.7097998,-16.63082178,13.35988611],[-13.5895996,-16.62918615,13.35988611],[-12.8493004,-16.62755053,13.35988611],[-12.1295996,-16.6259149,13.35988611],[-11.2814999,-16.62427927,13.35988611],[-11.2507,-16.62264364,13.35988611],[-11.8451996,-16.62100801,13.35988611],[-12.3753004,-16.61937239,13.35988611],[-12.8408003,-16.61773676,13.35988611],[-13.5292997,-16.61610113,13.35988611],[-14.2481003,-16.6144655,13.35988611],[-14.5909996,-16.61282988,13.35988611],[-14.9734001,-16.61119425,13.35988611],[-15.0768995,-16.60955862,13.35988611],[-14.4528999,-16.60792299,13.35988611],[-13.9497995,-16.60628736,13.35988611],[-13.3522997,-16.60465174,13.35988611],[-7.0285602,-16.79765581,13.35825048],[-9.5328302,-16.79602018,13.35825048],[-10.7618999,-16.79438456,13.35825048],[-10.8807001,-16.79274893,13.35825048],[-10.9895,-16.7911133,13.35825048],[-11.2454996,-16.78947767,13.35825048],[-11.0579004,-16.78784204,13.35825048],[-11.3731003,-16.78620642,13.35825048],[-11.5581999,-16.78457079,13.35825048],[-11.2237997,-16.78293516,13.35825048],[-11.4312,-16.78129953,13.35825048],[-11.5839996,-16.77966391,13.35825048],[-11.3523998,-16.77802828,13.35825048],[-11.4552002,-16.77639265,13.35825048],[-11.4607,-16.77475702,13.35825048],[-11.5080004,-16.77312139,13.35825048],[-11.7224998,-16.77148577,13.35825048],[-11.5403996,-16.76985014,13.35825048],[-11.2650995,-16.76821451,13.35825048],[-11.2220001,-16.76657888,13.35825048],[-11.5530996,-16.76494326,13.35825048],[-12.1141996,-16.76330763,13.35825048],[-12.4554005,-16.761672,13.35825048],[-12.4155998,-16.76003637,13.35825048],[-12.6389999,-16.75840074,13.35825048],[-12.6989002,-16.75676512,13.35825048],[-12.5552998,-16.75512949,13.35825048],[-12.5038004,-16.75349386,13.35825048],[-12.5573997,-16.75185823,13.35825048],[-12.6660995,-16.75022261,13.35825048],[-12.7227001,-16.74858698,13.35825048],[-12.8378,-16.74695135,13.35825048],[-12.8710003,-16.74531572,13.35825048],[-12.9632998,-16.7436801,13.35825048],[-12.9916,-16.74204447,13.35825048],[-13.2096004,-16.74040884,13.35825048],[-13.4411001,-16.73877321,13.35825048],[-12.9700003,-16.73713758,13.35825048],[-12.8774996,-16.73550196,13.35825048],[-12.8725996,-16.73386633,13.35825048],[-12.3389997,-16.7322307,13.35825048],[-12.5494003,-16.73059507,13.35825048],[-12.7482996,-16.72895945,13.35825048],[-13.0853996,-16.72732382,13.35825048],[-13.8704004,-16.72568819,13.35825048],[-14.1682997,-16.72405256,13.35825048],[-14.3717003,-16.72241693,13.35825048],[-14.54,-16.72078131,13.35825048],[-14.5200996,-16.71914568,13.35825048],[-14.3462,-16.71751005,13.35825048],[-14.1426001,-16.71587442,13.35825048],[-14.2796001,-16.7142388,13.35825048],[-14.4757004,-16.71260317,13.35825048],[-14.6730003,-16.71096754,13.35825048],[-14.6490002,-16.70933191,13.35825048],[-14.3600998,-16.70769628,13.35825048],[-14.2847996,-16.70606066,13.35825048],[-14.8497,-16.70442503,13.35825048],[-15.1097002,-16.7027894,13.35825048],[-15.0369997,-16.70115377,13.35825048],[-14.5135002,-16.69951815,13.35825048],[-13.6773996,-16.69788252,13.35825048],[-14.0769997,-16.69624689,13.35825048],[-15.2005997,-16.69461126,13.35825048],[-15.8627005,-16.69297564,13.35825048],[-15.9507999,-16.69134001,13.35825048],[-16.3871002,-16.68970438,13.35825048],[-16.8264008,-16.68806875,13.35825048],[-16.6380005,-16.68643312,13.35825048],[-16.1686993,-16.6847975,13.35825048],[-15.8562002,-16.68316187,13.35825048],[-16.1947002,-16.68152624,13.35825048],[-15.5457001,-16.67989061,13.35825048],[-15.3646002,-16.67825499,13.35825048],[-16.1061001,-16.67661936,13.35825048],[-16.3153,-16.67498373,13.35825048],[-16.3300991,-16.6733481,13.35825048],[-16.0142994,-16.67171247,13.35825048],[-15.2255001,-16.67007685,13.35825048],[-16.2238998,-16.66844122,13.35825048],[-18.1208992,-16.66680559,13.35825048],[-19.0198002,-16.66516996,13.35825048],[-19.4148006,-16.66353434,13.35825048],[-20.6837997,-16.66189871,13.35825048],[-21.4549999,-16.66026308,13.35825048],[-20.8903008,-16.65862745,13.35825048],[-20.5452003,-16.65699182,13.35825048],[-20.4587002,-16.6553562,13.35825048],[-20.6651993,-16.65372057,13.35825048],[-20.559,-16.65208494,13.35825048],[-20.4902992,-16.65044931,13.35825048],[-20.4878006,-16.64881369,13.35825048],[-20.3209,-16.64717806,13.35825048],[-20.2332001,-16.64554243,13.35825048],[-19.9519005,-16.6439068,13.35825048],[-19.7887993,-16.64227118,13.35825048],[-19.3964005,-16.64063555,13.35825048],[-18.3925991,-16.63899992,13.35825048],[-17.6872997,-16.63736429,13.35825048],[-17.5156994,-16.63572866,13.35825048],[-17.0907001,-16.63409304,13.35825048],[-17.2220001,-16.63245741,13.35825048],[-15.1962996,-16.63082178,13.35825048],[-12.8600998,-16.62918615,13.35825048],[-12.2249002,-16.62755053,13.35825048],[-11.9173002,-16.6259149,13.35825048],[-10.2104998,-16.62427927,13.35825048],[-10.3718996,-16.62264364,13.35825048],[-12.1788998,-16.62100801,13.35825048],[-13.1941996,-16.61937239,13.35825048],[-13.4331999,-16.61773676,13.35825048],[-14.6601,-16.61610113,13.35825048],[-16.0249996,-16.6144655,13.35825048],[-15.5264997,-16.61282988,13.35825048],[-15.5116997,-16.61119425,13.35825048],[-15.9580002,-16.60955862,13.35825048],[-15.1231003,-16.60792299,13.35825048],[-15.0637999,-16.60628736,13.35825048],[-15.5409002,-16.60465174,13.35825048],[-5.1176701,-16.79765581,13.35661486],[-10.1792002,-16.79602018,13.35661486],[-12.2865,-16.79438456,13.35661486],[-11.6370001,-16.79274893,13.35661486],[-11.5883999,-16.7911133,13.35661486],[-11.9737997,-16.78947767,13.35661486],[-11.7839003,-16.78784204,13.35661486],[-12.2797003,-16.78620642,13.35661486],[-12.6205997,-16.78457079,13.35661486],[-12.0768995,-16.78293516,13.35661486],[-12.9511995,-16.78129953,13.35661486],[-12.9445,-16.77966391,13.35661486],[-11.9319,-16.77802828,13.35661486],[-12.0375996,-16.77639265,13.35661486],[-11.9369001,-16.77475702,13.35661486],[-11.7418003,-16.77312139,13.35661486],[-11.9383001,-16.77148577,13.35661486],[-11.7889996,-16.76985014,13.35661486],[-11.3937998,-16.76821451,13.35661486],[-10.9184999,-16.76657888,13.35661486],[-11.7080002,-16.76494326,13.35661486],[-12.6792002,-16.76330763,13.35661486],[-13.0073996,-16.761672,13.35661486],[-12.8275003,-16.76003637,13.35661486],[-13.0523005,-16.75840074,13.35661486],[-13.1089001,-16.75676512,13.35661486],[-12.8149004,-16.75512949,13.35661486],[-12.4321003,-16.75349386,13.35661486],[-12.4664001,-16.75185823,13.35661486],[-12.6514997,-16.75022261,13.35661486],[-12.7559004,-16.74858698,13.35661486],[-12.7658005,-16.74695135,13.35661486],[-12.7305002,-16.74531572,13.35661486],[-12.9279003,-16.7436801,13.35661486],[-12.9968004,-16.74204447,13.35661486],[-13.4468002,-16.74040884,13.35661486],[-13.9743996,-16.73877321,13.35661486],[-13.3354998,-16.73713758,13.35661486],[-13.5474005,-16.73550196,13.35661486],[-13.8683004,-16.73386633,13.35661486],[-13.2364998,-16.7322307,13.35661486],[-13.5227003,-16.73059507,13.35661486],[-13.6015997,-16.72895945,13.35661486],[-13.5847998,-16.72732382,13.35661486],[-14.0944996,-16.72568819,13.35661486],[-14.0762997,-16.72405256,13.35661486],[-14.1420002,-16.72241693,13.35661486],[-14.4148998,-16.72078131,13.35661486],[-14.2487001,-16.71914568,13.35661486],[-14.0291004,-16.71751005,13.35661486],[-14.0292997,-16.71587442,13.35661486],[-13.9782,-16.7142388,13.35661486],[-14.3546,-16.71260317,13.35661486],[-14.7594004,-16.71096754,13.35661486],[-14.2453003,-16.70933191,13.35661486],[-13.8860998,-16.70769628,13.35661486],[-13.8562002,-16.70606066,13.35661486],[-14.2979002,-16.70442503,13.35661486],[-14.9907999,-16.7027894,13.35661486],[-14.9541998,-16.70115377,13.35661486],[-14.0904999,-16.69951815,13.35661486],[-13.1801996,-16.69788252,13.35661486],[-13.6205997,-16.69624689,13.35661486],[-14.9624996,-16.69461126,13.35661486],[-16.1039009,-16.69297564,13.35661486],[-15.7598,-16.69134001,13.35661486],[-16.1615009,-16.68970438,13.35661486],[-16.9498997,-16.68806875,13.35661486],[-16.1289997,-16.68643312,13.35661486],[-15.6681995,-16.6847975,13.35661486],[-15.4154997,-16.68316187,13.35661486],[-15.5770998,-16.68152624,13.35661486],[-15.0504999,-16.67989061,13.35661486],[-14.9055004,-16.67825499,13.35661486],[-15.7103996,-16.67661936,13.35661486],[-16.2290993,-16.67498373,13.35661486],[-16.2231007,-16.6733481,13.35661486],[-15.7536001,-16.67171247,13.35661486],[-14.8295002,-16.67007685,13.35661486],[-15.9391003,-16.66844122,13.35661486],[-18.2108002,-16.66680559,13.35661486],[-19.1931,-16.66516996,13.35661486],[-19.6280994,-16.66353434,13.35661486],[-20.8073997,-16.66189871,13.35661486],[-21.5993996,-16.66026308,13.35661486],[-21.1063995,-16.65862745,13.35661486],[-20.6662006,-16.65699182,13.35661486],[-20.468399,-16.6553562,13.35661486],[-20.8784008,-16.65372057,13.35661486],[-20.6415005,-16.65208494,13.35661486],[-20.6215,-16.65044931,13.35661486],[-20.8265991,-16.64881369,13.35661486],[-20.4386005,-16.64717806,13.35661486],[-20.4262009,-16.64554243,13.35661486],[-20.1590004,-16.6439068,13.35661486],[-19.8631992,-16.64227118,13.35661486],[-19.4389992,-16.64063555,13.35661486],[-18.3204994,-16.63899992,13.35661486],[-17.6378994,-16.63736429,13.35661486],[-17.3967991,-16.63572866,13.35661486],[-17.0716,-16.63409304,13.35661486],[-17.066,-16.63245741,13.35661486],[-15.3559999,-16.63082178,13.35661486],[-13.1173,-16.62918615,13.35661486],[-12.5039997,-16.62755053,13.35661486],[-12.4089003,-16.6259149,13.35661486],[-10.7735004,-16.62427927,13.35661486],[-10.9931002,-16.62264364,13.35661486],[-12.8164997,-16.62100801,13.35661486],[-13.3908997,-16.61937239,13.35661486],[-13.8473997,-16.61773676,13.35661486],[-15.0342999,-16.61610113,13.35661486],[-15.9057999,-16.6144655,13.35661486],[-15.7229996,-16.61282988,13.35661486],[-15.6325998,-16.61119425,13.35661486],[-15.7314997,-16.60955862,13.35661486],[-15.0305996,-16.60792299,13.35661486],[-14.6707001,-16.60628736,13.35661486],[-14.7400999,-16.60465174,13.35661486],[-7.6217198,-16.79765581,13.35497923],[-10.6969004,-16.79602018,13.35497923],[-11.9317999,-16.79438456,13.35497923],[-11.8599005,-16.79274893,13.35497923],[-11.7938004,-16.7911133,13.35497923],[-11.9279003,-16.78947767,13.35497923],[-12.0780001,-16.78784204,13.35497923],[-12.1089001,-16.78620642,13.35497923],[-12.2009001,-16.78457079,13.35497923],[-12.2744999,-16.78293516,13.35497923],[-12.5797997,-16.78129953,13.35497923],[-12.5719995,-16.77966391,13.35497923],[-12.2349005,-16.77802828,13.35497923],[-12.0853004,-16.77639265,13.35497923],[-11.9914999,-16.77475702,13.35497923],[-12.0548,-16.77312139,13.35497923],[-11.9661999,-16.77148577,13.35497923],[-12.0691996,-16.76985014,13.35497923],[-11.9856005,-16.76821451,13.35497923],[-11.8601999,-16.76657888,13.35497923],[-12.3469,-16.76494326,13.35497923],[-12.8428001,-16.76330763,13.35497923],[-13.0576,-16.761672,13.35497923],[-13.1914997,-16.76003637,13.35497923],[-13.2662001,-16.75840074,13.35497923],[-13.2763996,-16.75676512,13.35497923],[-13.1409998,-16.75512949,13.35497923],[-12.8701,-16.75349386,13.35497923],[-12.8862,-16.75185823,13.35497923],[-12.8572998,-16.75022261,13.35497923],[-12.7969999,-16.74858698,13.35497923],[-12.7704,-16.74695135,13.35497923],[-12.6746998,-16.74531572,13.35497923],[-12.6964998,-16.7436801,13.35497923],[-12.8752003,-16.74204447,13.35497923],[-13.3622999,-16.74040884,13.35497923],[-13.5976,-16.73877321,13.35497923],[-13.6187,-16.73713758,13.35497923],[-13.7421999,-16.73550196,13.35497923],[-13.7320004,-16.73386633,13.35497923],[-13.632,-16.7322307,13.35497923],[-13.7151003,-16.73059507,13.35497923],[-13.7385998,-16.72895945,13.35497923],[-13.8653002,-16.72732382,13.35497923],[-13.9665003,-16.72568819,13.35497923],[-13.9547005,-16.72405256,13.35497923],[-14.0571003,-16.72241693,13.35497923],[-14.0018997,-16.72078131,13.35497923],[-13.8395004,-16.71914568,13.35497923],[-13.6382999,-16.71751005,13.35497923],[-13.5699997,-16.71587442,13.35497923],[-13.5029001,-16.7142388,13.35497923],[-13.6012001,-16.71260317,13.35497923],[-13.6591997,-16.71096754,13.35497923],[-13.5296001,-16.70933191,13.35497923],[-13.3747997,-16.70769628,13.35497923],[-13.4956999,-16.70606066,13.35497923],[-13.6596003,-16.70442503,13.35497923],[-13.9898996,-16.7027894,13.35497923],[-14.0197001,-16.70115377,13.35497923],[-13.6849003,-16.69951815,13.35497923],[-13.4879999,-16.69788252,13.35497923],[-13.6766996,-16.69624689,13.35497923],[-14.3530998,-16.69461126,13.35497923],[-14.8063002,-16.69297564,13.35497923],[-14.9394999,-16.69134001,13.35497923],[-15.0986996,-16.68970438,13.35497923],[-15.4376001,-16.68806875,13.35497923],[-15.3107004,-16.68643312,13.35497923],[-15.1229,-16.6847975,13.35497923],[-15.1055002,-16.68316187,13.35497923],[-15.2270002,-16.68152624,13.35497923],[-15.1622,-16.67989061,13.35497923],[-15.0588999,-16.67825499,13.35497923],[-15.0141001,-16.67661936,13.35497923],[-15.2723999,-16.67498373,13.35497923],[-15.4540005,-16.6733481,13.35497923],[-15.5794001,-16.67171247,13.35497923],[-15.7838001,-16.67007685,13.35497923],[-16.7784004,-16.66844122,13.35497923],[-18.2168007,-16.66680559,13.35497923],[-19.4160995,-16.66516996,13.35497923],[-19.927,-16.66353434,13.35497923],[-20.5669994,-16.66189871,13.35497923],[-21.1089001,-16.66026308,13.35497923],[-21.1739006,-16.65862745,13.35497923],[-21.0170002,-16.65699182,13.35497923],[-21.0079994,-16.6553562,13.35497923],[-21.2560005,-16.65372057,13.35497923],[-21.6357994,-16.65208494,13.35497923],[-21.7098999,-16.65044931,13.35497923],[-21.4067001,-16.64881369,13.35497923],[-21.2264004,-16.64717806,13.35497923],[-20.9272003,-16.64554243,13.35497923],[-20.5363998,-16.6439068,13.35497923],[-20.2427998,-16.64227118,13.35497923],[-19.5407009,-16.64063555,13.35497923],[-18.4489002,-16.63899992,13.35497923],[-17.5340004,-16.63736429,13.35497923],[-17.0841007,-16.63572866,13.35497923],[-16.6567993,-16.63409304,13.35497923],[-16.0499992,-16.63245741,13.35497923],[-15.1787004,-16.63082178,13.35497923],[-14.4995003,-16.62918615,13.35497923],[-14.0566998,-16.62755053,13.35497923],[-13.5025997,-16.6259149,13.35497923],[-13.1525002,-16.62427927,13.35497923],[-13.2024002,-16.62264364,13.35497923],[-13.6760998,-16.62100801,13.35497923],[-14.2531004,-16.61937239,13.35497923],[-14.6629,-16.61773676,13.35497923],[-15.3142996,-16.61610113,13.35497923],[-15.9519997,-16.6144655,13.35497923],[-15.8773003,-16.61282988,13.35497923],[-15.8073997,-16.61119425,13.35497923],[-15.6456003,-16.60955862,13.35497923],[-14.5923004,-16.60792299,13.35497923],[-13.2130003,-16.60628736,13.35497923],[-12.2934999,-16.60465174,13.35497923],[-11.4378004,-16.79929144,13.3533436],[-11.4055996,-16.79765581,13.3533436],[-11.9067001,-16.79602018,13.3533436],[-12.8171997,-16.79438456,13.3533436],[-12.3878002,-16.79274893,13.3533436],[-11.8533001,-16.7911133,13.3533436],[-11.7482004,-16.78947767,13.3533436],[-11.9623003,-16.78784204,13.3533436],[-11.7793999,-16.78620642,13.3533436],[-11.6050997,-16.78457079,13.3533436],[-12.1262999,-16.78293516,13.3533436],[-12.6792002,-16.78129953,13.3533436],[-12.7226,-16.77966391,13.3533436],[-12.4108,-16.77802828,13.3533436],[-12.3374004,-16.77639265,13.3533436],[-12.3736,-16.77475702,13.3533436],[-12.1765003,-16.77312139,13.3533436],[-12.0936003,-16.77148577,13.3533436],[-12.2509003,-16.76985014,13.3533436],[-12.6058998,-16.76821451,13.3533436],[-12.9715004,-16.76657888,13.3533436],[-12.9808998,-16.76494326,13.3533436],[-13.3179998,-16.76330763,13.3533436],[-13.5539999,-16.761672,13.3533436],[-13.5290003,-16.76003637,13.3533436],[-13.9273005,-16.75840074,13.3533436],[-14.0127001,-16.75676512,13.3533436],[-13.5080996,-16.75512949,13.3533436],[-13.4224005,-16.75349386,13.3533436],[-13.3149996,-16.75185823,13.3533436],[-12.9579,-16.75022261,13.3533436],[-12.5881004,-16.74858698,13.3533436],[-12.5972996,-16.74695135,13.3533436],[-12.1876001,-16.74531572,13.3533436],[-11.2559004,-16.7436801,13.3533436],[-12.2848997,-16.74204447,13.3533436],[-13.2838001,-16.74040884,13.3533436],[-13.4680004,-16.73877321,13.3533436],[-13.8408003,-16.73713758,13.3533436],[-14.0346003,-16.73550196,13.3533436],[-14.1080999,-16.73386633,13.3533436],[-13.9856005,-16.7322307,13.3533436],[-14.2396002,-16.73059507,13.3533436],[-14.3486996,-16.72895945,13.3533436],[-14.0674,-16.72732382,13.3533436],[-13.9736004,-16.72568819,13.3533436],[-14.0208998,-16.72405256,13.3533436],[-13.8086004,-16.72241693,13.3533436],[-13.5289001,-16.72078131,13.3533436],[-13.4796,-16.71914568,13.3533436],[-13.0626001,-16.71751005,13.3533436],[-12.5545998,-16.71587442,13.3533436],[-12.8655996,-16.7142388,13.3533436],[-12.8051996,-16.71260317,13.3533436],[-12.4981003,-16.71096754,13.3533436],[-12.8065996,-16.70933191,13.3533436],[-12.5265999,-16.70769628,13.3533436],[-12.3432999,-16.70606066,13.3533436],[-13.052,-16.70442503,13.3533436],[-13.0712996,-16.7027894,13.3533436],[-13.0978003,-16.70115377,13.3533436],[-13.1803999,-16.69951815,13.3533436],[-12.6918001,-16.69788252,13.3533436],[-13.0529003,-16.69624689,13.3533436],[-13.8352003,-16.69461126,13.3533436],[-14.1238003,-16.69297564,13.3533436],[-14.2210999,-16.69134001,13.3533436],[-14.3318005,-16.68970438,13.3533436],[-14.2321997,-16.68806875,13.3533436],[-14.4348001,-16.68643312,13.3533436],[-14.4993,-16.6847975,13.3533436],[-14.4057999,-16.68316187,13.3533436],[-14.6883001,-16.68152624,13.3533436],[-14.8813,-16.67989061,13.3533436],[-14.8927002,-16.67825499,13.3533436],[-14.6240997,-16.67661936,13.3533436],[-14.2606001,-16.67498373,13.3533436],[-14.4609003,-16.6733481,13.3533436],[-15.4428997,-16.67171247,13.3533436],[-15.3427,-16.67007685,13.3533436],[-16.2873001,-16.66844122,13.3533436],[-18.7448997,-16.66680559,13.3533436],[-20.4046001,-16.66516996,13.3533436],[-20.1697006,-16.66353434,13.3533436],[-20.9374008,-16.66189871,13.3533436],[-21.5482998,-16.66026308,13.3533436],[-21.2380009,-16.65862745,13.3533436],[-21.1089001,-16.65699182,13.3533436],[-21.1949997,-16.6553562,13.3533436],[-21.5725994,-16.65372057,13.3533436],[-23.1518002,-16.65208494,13.3533436],[-23.2709999,-16.65044931,13.3533436],[-21.8696995,-16.64881369,13.3533436],[-22.1608009,-16.64717806,13.3533436],[-21.7513008,-16.64554243,13.3533436],[-20.8719006,-16.6439068,13.3533436],[-21.2215996,-16.64227118,13.3533436],[-20.1854,-16.64063555,13.3533436],[-18.0366993,-16.63899992,13.3533436],[-16.5776997,-16.63736429,13.3533436],[-16.9312,-16.63572866,13.3533436],[-16.0366993,-16.63409304,13.3533436],[-15.4076004,-16.63245741,13.3533436],[-15.4998999,-16.63082178,13.3533436],[-15.118,-16.62918615,13.3533436],[-15.0976,-16.62755053,13.3533436],[-14.5376997,-16.6259149,13.3533436],[-14.1705999,-16.62427927,13.3533436],[-14.1983995,-16.62264364,13.3533436],[-14.5923004,-16.62100801,13.3533436],[-14.9116001,-16.61937239,13.3533436],[-15.0583,-16.61773676,13.3533436],[-15.8762999,-16.61610113,13.3533436],[-16.6525993,-16.6144655,13.3533436],[-16.1935997,-16.61282988,13.3533436],[-15.9963999,-16.61119425,13.3533436],[-16.5702,-16.60955862,13.3533436],[-14.71,-16.60792299,13.3533436],[-11.6864996,-16.60628736,13.3533436],[-10.4067001,-16.60465174,13.3533436],[-13.7814999,-16.79929144,13.35170797],[-13.0153999,-16.79765581,13.35170797],[-12.8179998,-16.79602018,13.35170797],[-13.9385004,-16.79438456,13.35170797],[-13.0723,-16.79274893,13.35170797],[-12.2248001,-16.7911133,13.35170797],[-11.4317999,-16.78947767,13.35170797],[-12.0459995,-16.78784204,13.35170797],[-11.5388002,-16.78620642,13.35170797],[-11.0662003,-16.78457079,13.35170797],[-12.3311005,-16.78293516,13.35170797],[-12.9224005,-16.78129953,13.35170797],[-12.9712,-16.77966391,13.35170797],[-12.7467003,-16.77802828,13.35170797],[-12.4575005,-16.77639265,13.35170797],[-12.5375996,-16.77475702,13.35170797],[-12.4216995,-16.77312139,13.35170797],[-12.0049,-16.77148577,13.35170797],[-12.4216003,-16.76985014,13.35170797],[-13.0773001,-16.76821451,13.35170797],[-13.3070002,-16.76657888,13.35170797],[-13.4083996,-16.76494326,13.35170797],[-13.6075001,-16.76330763,13.35170797],[-13.6978998,-16.761672,13.35170797],[-13.8211002,-16.76003637,13.35170797],[-14.2589998,-16.75840074,13.35170797],[-14.3520002,-16.75676512,13.35170797],[-13.8549004,-16.75512949,13.35170797],[-13.5642996,-16.75349386,13.35170797],[-13.5221996,-16.75185823,13.35170797],[-13.2612,-16.75022261,13.35170797],[-12.4819002,-16.74858698,13.35170797],[-12.7679005,-16.74695135,13.35170797],[-12.4679003,-16.74531572,13.35170797],[-10.6672001,-16.7436801,13.35170797],[-12.3120003,-16.74204447,13.35170797],[-13.6032,-16.74040884,13.35170797],[-13.4834995,-16.73877321,13.35170797],[-14.1086998,-16.73713758,13.35170797],[-14.2809,-16.73550196,13.35170797],[-14.2799997,-16.73386633,13.35170797],[-14.4644003,-16.7322307,13.35170797],[-14.5647001,-16.73059507,13.35170797],[-14.5271997,-16.72895945,13.35170797],[-14.1838999,-16.72732382,13.35170797],[-14.0080004,-16.72568819,13.35170797],[-13.8718004,-16.72405256,13.35170797],[-13.6984997,-16.72241693,13.35170797],[-13.4111004,-16.72078131,13.35170797],[-13.3397999,-16.71914568,13.35170797],[-13,-16.71751005,13.35170797],[-12.4833002,-16.71587442,13.35170797],[-12.7741003,-16.7142388,13.35170797],[-12.6422005,-16.71260317,13.35170797],[-12.4029999,-16.71096754,13.35170797],[-12.6122999,-16.70933191,13.35170797],[-12.3614998,-16.70769628,13.35170797],[-12.2180996,-16.70606066,13.35170797],[-12.7625999,-16.70442503,13.35170797],[-12.9481001,-16.7027894,13.35170797],[-12.9720001,-16.70115377,13.35170797],[-12.9619999,-16.69951815,13.35170797],[-12.6658001,-16.69788252,13.35170797],[-12.9537001,-16.69624689,13.35170797],[-13.6213999,-16.69461126,13.35170797],[-13.9923,-16.69297564,13.35170797],[-13.9110003,-16.69134001,13.35170797],[-13.8945999,-16.68970438,13.35170797],[-14.0403004,-16.68806875,13.35170797],[-14.0031004,-16.68643312,13.35170797],[-14.1705999,-16.6847975,13.35170797],[-14.2975998,-16.68316187,13.35170797],[-14.2847004,-16.68152624,13.35170797],[-14.6760998,-16.67989061,13.35170797],[-14.7421999,-16.67825499,13.35170797],[-14.4899998,-16.67661936,13.35170797],[-14.2123003,-16.67498373,13.35170797],[-14.4691,-16.6733481,13.35170797],[-15.3681002,-16.67171247,13.35170797],[-15.6462002,-16.67007685,13.35170797],[-16.5303001,-16.66844122,13.35170797],[-18.5359993,-16.66680559,13.35170797],[-20.0137997,-16.66516996,13.35170797],[-20.0895996,-16.66353434,13.35170797],[-20.7488003,-16.66189871,13.35170797],[-21.2651005,-16.66026308,13.35170797],[-20.9736996,-16.65862745,13.35170797],[-20.9643993,-16.65699182,13.35170797],[-21.0855999,-16.6553562,13.35170797],[-21.2900009,-16.65372057,13.35170797],[-22.3665009,-16.65208494,13.35170797],[-22.4960003,-16.65044931,13.35170797],[-21.5886002,-16.64881369,13.35170797],[-21.7073002,-16.64717806,13.35170797],[-21.3696995,-16.64554243,13.35170797],[-20.7416,-16.6439068,13.35170797],[-20.7387009,-16.64227118,13.35170797],[-19.9400005,-16.64063555,13.35170797],[-18.4619007,-16.63899992,13.35170797],[-17.3642006,-16.63736429,13.35170797],[-17.2912998,-16.63572866,13.35170797],[-16.5379009,-16.63409304,13.35170797],[-15.9216003,-16.63245741,13.35170797],[-15.9883003,-16.63082178,13.35170797],[-15.4463997,-16.62918615,13.35170797],[-15.3207998,-16.62755053,13.35170797],[-15.2229004,-16.6259149,13.35170797],[-14.8249998,-16.62427927,13.35170797],[-14.9027996,-16.62264364,13.35170797],[-15.3566999,-16.62100801,13.35170797],[-15.3441,-16.61937239,13.35170797],[-15.5444002,-16.61773676,13.35170797],[-16.1527996,-16.61610113,13.35170797],[-16.4270992,-16.6144655,13.35170797],[-16.0363998,-16.61282988,13.35170797],[-15.6920004,-16.61119425,13.35170797],[-15.5783005,-16.60955862,13.35170797],[-14.2012997,-16.60792299,13.35170797],[-12.2503996,-16.60628736,13.35170797],[-11.2466002,-16.60465174,13.35170797],[-10.9222002,-16.80092707,13.35007234],[-12.6968002,-16.79929144,13.35007234],[-12.9530001,-16.79765581,13.35007234],[-12.7489004,-16.79602018,13.35007234],[-13.0601997,-16.79438456,13.35007234],[-13.1155996,-16.79274893,13.35007234],[-12.9470997,-16.7911133,13.35007234],[-12.7442999,-16.78947767,13.35007234],[-12.8009996,-16.78784204,13.35007234],[-12.5281,-16.78620642,13.35007234],[-12.4399996,-16.78457079,13.35007234],[-12.8043003,-16.78293516,13.35007234],[-12.9853001,-16.78129953,13.35007234],[-13.0255003,-16.77966391,13.35007234],[-12.9266005,-16.77802828,13.35007234],[-12.8254004,-16.77639265,13.35007234],[-12.8359003,-16.77475702,13.35007234],[-12.8374996,-16.77312139,13.35007234],[-12.7704,-16.77148577,13.35007234],[-13.0261002,-16.76985014,13.35007234],[-13.408,-16.76821451,13.35007234],[-13.6096001,-16.76657888,13.35007234],[-13.7370996,-16.76494326,13.35007234],[-13.8309002,-16.76330763,13.35007234],[-13.9412003,-16.761672,13.35007234],[-14.0181999,-16.76003637,13.35007234],[-14.1042004,-16.75840074,13.35007234],[-14.0857,-16.75676512,13.35007234],[-14.0227003,-16.75512949,13.35007234],[-13.8375998,-16.75349386,13.35007234],[-13.7922001,-16.75185823,13.35007234],[-14.0334997,-16.75022261,13.35007234],[-14.1793003,-16.74858698,13.35007234],[-14.2217999,-16.74695135,13.35007234],[-13.9948997,-16.74531572,13.35007234],[-13.8710003,-16.7436801,13.35007234],[-14.1968002,-16.74204447,13.35007234],[-14.6788998,-16.74040884,13.35007234],[-14.8408003,-16.73877321,13.35007234],[-14.8108997,-16.73713758,13.35007234],[-14.7254,-16.73550196,13.35007234],[-14.7748003,-16.73386633,13.35007234],[-14.7802,-16.7322307,13.35007234],[-14.9088001,-16.73059507,13.35007234],[-14.6992998,-16.72895945,13.35007234],[-14.2971001,-16.72732382,13.35007234],[-13.9875002,-16.72568819,13.35007234],[-13.7188997,-16.72405256,13.35007234],[-13.4510002,-16.72241693,13.35007234],[-13.2530003,-16.72078131,13.35007234],[-13.2959003,-16.71914568,13.35007234],[-13.2273998,-16.71751005,13.35007234],[-13.1566,-16.71587442,13.35007234],[-13.0556002,-16.7142388,13.35007234],[-13.0334997,-16.71260317,13.35007234],[-13.0236998,-16.71096754,13.35007234],[-12.8097,-16.70933191,13.35007234],[-12.5402002,-16.70769628,13.35007234],[-12.5586996,-16.70606066,13.35007234],[-12.8577995,-16.70442503,13.35007234],[-13.2278004,-16.7027894,13.35007234],[-13.2805004,-16.70115377,13.35007234],[-13.1352997,-16.69951815,13.35007234],[-13.1654997,-16.69788252,13.35007234],[-13.1486998,-16.69624689,13.35007234],[-13.4224005,-16.69461126,13.35007234],[-13.7130003,-16.69297564,13.35007234],[-13.5731001,-16.69134001,13.35007234],[-12.8936996,-16.68970438,13.35007234],[-12.4292002,-16.68806875,13.35007234],[-13.0893002,-16.68643312,13.35007234],[-13.934,-16.6847975,13.35007234],[-14.3013,-16.68316187,13.35007234],[-14.1691999,-16.68152624,13.35007234],[-14.1732998,-16.67989061,13.35007234],[-14.2880001,-16.67825499,13.35007234],[-14.1747999,-16.67661936,13.35007234],[-13.8254995,-16.67498373,13.35007234],[-14.2094002,-16.6733481,13.35007234],[-15.6760998,-16.67171247,13.35007234],[-16.9365005,-16.67007685,13.35007234],[-17.5732002,-16.66844122,13.35007234],[-18.4533997,-16.66680559,13.35007234],[-19.4692001,-16.66516996,13.35007234],[-19.8607006,-16.66353434,13.35007234],[-20.1054993,-16.66189871,13.35007234],[-20.2870998,-16.66026308,13.35007234],[-20.5058994,-16.65862745,13.35007234],[-20.5118999,-16.65699182,13.35007234],[-20.5112,-16.6553562,13.35007234],[-20.6126995,-16.65372057,13.35007234],[-20.4384995,-16.65208494,13.35007234],[-20.4123993,-16.65044931,13.35007234],[-20.6956997,-16.64881369,13.35007234],[-20.5645008,-16.64717806,13.35007234],[-20.4925003,-16.64554243,13.35007234],[-20.1415005,-16.6439068,13.35007234],[-19.6107998,-16.64227118,13.35007234],[-19.3640995,-16.64063555,13.35007234],[-19.1207008,-16.63899992,13.35007234],[-18.9452,-16.63736429,13.35007234],[-18.1907005,-16.63572866,13.35007234],[-17.5480995,-16.63409304,13.35007234],[-17.1497002,-16.63245741,13.35007234],[-16.5722008,-16.63082178,13.35007234],[-16.1942005,-16.62918615,13.35007234],[-15.875,-16.62755053,13.35007234],[-15.9604998,-16.6259149,13.35007234],[-16.4652004,-16.62427927,13.35007234],[-16.4967003,-16.62264364,13.35007234],[-16.1791,-16.62100801,13.35007234],[-16.2308006,-16.61937239,13.35007234],[-16.3400002,-16.61773676,13.35007234],[-16.4165001,-16.61610113,13.35007234],[-16.6273003,-16.6144655,13.35007234],[-16.0072002,-16.61282988,13.35007234],[-15.0724001,-16.61119425,13.35007234],[-14.3394003,-16.60955862,13.35007234],[-13.6721001,-16.60792299,13.35007234],[-12.2375002,-16.60628736,13.35007234],[-11.4743996,-16.60465174,13.35007234],[-11.7922001,-16.80092707,13.34843672],[-14.5837002,-16.79929144,13.34843672],[-14.1618004,-16.79765581,13.34843672],[-12.8453999,-16.79602018,13.34843672],[-11.8533001,-16.79438456,13.34843672],[-12.7454996,-16.79274893,13.34843672],[-13.9673996,-16.7911133,13.34843672],[-14.7791996,-16.78947767,13.34843672],[-13.8396997,-16.78784204,13.34843672],[-13.4357996,-16.78620642,13.34843672],[-13.5258999,-16.78457079,13.34843672],[-13.2789001,-16.78293516,13.34843672],[-13.4448004,-16.78129953,13.34843672],[-13.4203997,-16.77966391,13.34843672],[-13.1111002,-16.77802828,13.34843672],[-13.1032,-16.77639265,13.34843672],[-13.0904999,-16.77475702,13.34843672],[-13.2389002,-16.77312139,13.34843672],[-13.3687,-16.77148577,13.34843672],[-13.4969997,-16.76985014,13.34843672],[-13.9421997,-16.76821451,13.34843672],[-14.5007,-16.76657888,13.34843672],[-14.1885004,-16.76494326,13.34843672],[-14.2461996,-16.76330763,13.34843672],[-14.4280005,-16.761672,13.34843672],[-14.1941004,-16.76003637,13.34843672],[-14.1599998,-16.75840074,13.34843672],[-14.1809998,-16.75676512,13.34843672],[-14.1032,-16.75512949,13.34843672],[-13.9478998,-16.75349386,13.34843672],[-14.0507002,-16.75185823,13.34843672],[-14.9245996,-16.75022261,13.34843672],[-16.4395008,-16.74858698,13.34843672],[-15.9800997,-16.74695135,13.34843672],[-15.5029001,-16.74531572,13.34843672],[-16.2635994,-16.7436801,13.34843672],[-15.7390003,-16.74204447,13.34843672],[-15.9392996,-16.74040884,13.34843672],[-16.7886009,-16.73877321,13.34843672],[-15.7150002,-16.73713758,13.34843672],[-15.1191998,-16.73550196,13.34843672],[-15.1145,-16.73386633,13.34843672],[-15.0993996,-16.7322307,13.34843672],[-15.4321003,-16.73059507,13.34843672],[-15.4820995,-16.72895945,13.34843672],[-14.3907003,-16.72732382,13.34843672],[-13.9177999,-16.72568819,13.34843672],[-13.7655001,-16.72405256,13.34843672],[-13.3150997,-16.72241693,13.34843672],[-12.7684002,-16.72078131,13.34843672],[-12.9956999,-16.71914568,13.34843672],[-13.3449001,-16.71751005,13.34843672],[-13.1598997,-16.71587442,13.34843672],[-13.2777996,-16.7142388,13.34843672],[-13.3226004,-16.71260317,13.34843672],[-13.3346004,-16.71096754,13.34843672],[-13.0705004,-16.70933191,13.34843672],[-12.2318001,-16.70769628,13.34843672],[-11.9307003,-16.70606066,13.34843672],[-12.8552999,-16.70442503,13.34843672],[-13.7163,-16.7027894,13.34843672],[-13.7725,-16.70115377,13.34843672],[-13.2622004,-16.69951815,13.34843672],[-13.0963001,-16.69788252,13.34843672],[-13.1202002,-16.69624689,13.34843672],[-13.4569998,-16.69461126,13.34843672],[-14.0103998,-16.69297564,13.34843672],[-13.4783001,-16.69134001,13.34843672],[-11.6859999,-16.68970438,13.34843672],[-9.4651604,-16.68806875,13.34843672],[-11.9728003,-16.68643312,13.34843672],[-14.0622997,-16.6847975,13.34843672],[-14.6492004,-16.68316187,13.34843672],[-14.2104998,-16.68152624,13.34843672],[-13.9281998,-16.67989061,13.34843672],[-13.8882999,-16.67825499,13.34843672],[-13.9169998,-16.67661936,13.34843672],[-12.4822998,-16.67498373,13.34843672],[-12.9110003,-16.6733481,13.34843672],[-15.9854002,-16.67171247,13.34843672],[-18.1886997,-16.67007685,13.34843672],[-18.0270004,-16.66844122,13.34843672],[-18.7322998,-16.66680559,13.34843672],[-19.7945004,-16.66516996,13.34843672],[-19.6033001,-16.66353434,13.34843672],[-19.8393993,-16.66189871,13.34843672],[-19.9722996,-16.66026308,13.34843672],[-20.0624008,-16.65862745,13.34843672],[-20.2084999,-16.65699182,13.34843672],[-20.2056999,-16.6553562,13.34843672],[-20.1184006,-16.65372057,13.34843672],[-19.3409004,-16.65208494,13.34843672],[-19.2383003,-16.65044931,13.34843672],[-20.0956993,-16.64881369,13.34843672],[-19.9797993,-16.64717806,13.34843672],[-20.0457993,-16.64554243,13.34843672],[-19.7600002,-16.6439068,13.34843672],[-18.906601,-16.64227118,13.34843672],[-19.1891003,-16.64063555,13.34843672],[-19.4780006,-16.63899992,13.34843672],[-19.8864002,-16.63736429,13.34843672],[-18.9316006,-16.63572866,13.34843672],[-17.9167004,-16.63409304,13.34843672],[-17.6828995,-16.63245741,13.34843672],[-17.2175999,-16.63082178,13.34843672],[-16.1963997,-16.62918615,13.34843672],[-15.8835001,-16.62755053,13.34843672],[-16.7935009,-16.6259149,13.34843672],[-17.3428993,-16.62427927,13.34843672],[-17.3304996,-16.62264364,13.34843672],[-16.9622993,-16.62100801,13.34843672],[-16.4995995,-16.61937239,13.34843672],[-16.5709991,-16.61773676,13.34843672],[-16.7609005,-16.61610113,13.34843672],[-17.0925999,-16.6144655,13.34843672],[-16.3782005,-16.61282988,13.34843672],[-14.7151003,-16.61119425,13.34843672],[-13.8669996,-16.60955862,13.34843672],[-13.3809996,-16.60792299,13.34843672],[-11.8968,-16.60628736,13.34843672],[-11.2152004,-16.60465174,13.34843672],[-8.9683199,-16.80256269,13.34680109],[-12.5639,-16.80092707,13.34680109],[-15.6220999,-16.79929144,13.34680109],[-14.8263998,-16.79765581,13.34680109],[-13.0506001,-16.79602018,13.34680109],[-11.5409002,-16.79438456,13.34680109],[-12.7182999,-16.79274893,13.34680109],[-14.2888002,-16.7911133,13.34680109],[-15.2806997,-16.78947767,13.34680109],[-14.2208004,-16.78784204,13.34680109],[-13.7056999,-16.78620642,13.34680109],[-13.7014999,-16.78457079,13.34680109],[-13.5333996,-16.78293516,13.34680109],[-13.5303001,-16.78129953,13.34680109],[-13.5117998,-16.77966391,13.34680109],[-13.3596001,-16.77802828,13.34680109],[-13.1731005,-16.77639265,13.34680109],[-13.2553997,-16.77475702,13.34680109],[-13.4688997,-16.77312139,13.34680109],[-13.4898996,-16.77148577,13.34680109],[-13.6752005,-16.76985014,13.34680109],[-14.0389004,-16.76821451,13.34680109],[-14.5403004,-16.76657888,13.34680109],[-14.1850996,-16.76494326,13.34680109],[-14.2886,-16.76330763,13.34680109],[-14.4323997,-16.761672,13.34680109],[-14.2103996,-16.76003637,13.34680109],[-14.2115002,-16.75840074,13.34680109],[-14.2391996,-16.75676512,13.34680109],[-14.3057003,-16.75512949,13.34680109],[-14.0871,-16.75349386,13.34680109],[-14.2166996,-16.75185823,13.34680109],[-15.2399998,-16.75022261,13.34680109],[-16.3945999,-16.74858698,13.34680109],[-16.1933994,-16.74695135,13.34680109],[-15.9629002,-16.74531572,13.34680109],[-16.3216,-16.7436801,13.34680109],[-16.1018009,-16.74204447,13.34680109],[-16.2681007,-16.74040884,13.34680109],[-16.6602001,-16.73877321,13.34680109],[-15.8889999,-16.73713758,13.34680109],[-15.2720003,-16.73550196,13.34680109],[-15.1018,-16.73386633,13.34680109],[-15.0548,-16.7322307,13.34680109],[-15.3564997,-16.73059507,13.34680109],[-15.2701998,-16.72895945,13.34680109],[-14.2814999,-16.72732382,13.34680109],[-13.7628002,-16.72568819,13.34680109],[-13.5532999,-16.72405256,13.34680109],[-13.3865995,-16.72241693,13.34680109],[-13.0437002,-16.72078131,13.34680109],[-13.3339996,-16.71914568,13.34680109],[-13.6752005,-16.71751005,13.34680109],[-13.5571003,-16.71587442,13.34680109],[-13.7382002,-16.7142388,13.34680109],[-13.6466999,-16.71260317,13.34680109],[-13.5058002,-16.71096754,13.34680109],[-13.4544001,-16.70933191,13.34680109],[-12.7868004,-16.70769628,13.34680109],[-12.5278997,-16.70606066,13.34680109],[-13.2223997,-16.70442503,13.34680109],[-13.6122999,-16.7027894,13.34680109],[-13.5893002,-16.70115377,13.34680109],[-13.2983999,-16.69951815,13.34680109],[-13.1267004,-16.69788252,13.34680109],[-13.0894003,-16.69624689,13.34680109],[-13.3364,-16.69461126,13.34680109],[-13.6387997,-16.69297564,13.34680109],[-13.3664999,-16.69134001,13.34680109],[-12.3121004,-16.68970438,13.34680109],[-11.3181,-16.68806875,13.34680109],[-12.6724005,-16.68643312,13.34680109],[-13.9846001,-16.6847975,13.34680109],[-14.3084002,-16.68316187,13.34680109],[-14.2699003,-16.68152624,13.34680109],[-14.1491003,-16.67989061,13.34680109],[-14.2180004,-16.67825499,13.34680109],[-14.3231001,-16.67661936,13.34680109],[-13.7518997,-16.67498373,13.34680109],[-14.2164001,-16.6733481,13.34680109],[-15.9995003,-16.67171247,13.34680109],[-17.4043007,-16.67007685,13.34680109],[-17.6550007,-16.66844122,13.34680109],[-18.1623001,-16.66680559,13.34680109],[-18.9496994,-16.66516996,13.34680109],[-19.0912991,-16.66353434,13.34680109],[-19.3504009,-16.66189871,13.34680109],[-19.6539001,-16.66026308,13.34680109],[-19.5986996,-16.65862745,13.34680109],[-19.7882996,-16.65699182,13.34680109],[-19.8645992,-16.6553562,13.34680109],[-19.7262001,-16.65372057,13.34680109],[-19.6373005,-16.65208494,13.34680109],[-19.6832008,-16.65044931,13.34680109],[-19.9589005,-16.64881369,13.34680109],[-20.0792999,-16.64717806,13.34680109],[-20.1068001,-16.64554243,13.34680109],[-19.9274998,-16.6439068,13.34680109],[-19.5727997,-16.64227118,13.34680109],[-19.4997997,-16.64063555,13.34680109],[-19.5620003,-16.63899992,13.34680109],[-19.4615002,-16.63736429,13.34680109],[-18.9146004,-16.63572866,13.34680109],[-18.3302994,-16.63409304,13.34680109],[-17.9463005,-16.63245741,13.34680109],[-17.7985992,-16.63082178,13.34680109],[-17.1741009,-16.62918615,13.34680109],[-16.9015007,-16.62755053,13.34680109],[-17.4925995,-16.6259149,13.34680109],[-17.7929001,-16.62427927,13.34680109],[-17.7161007,-16.62264364,13.34680109],[-17.4361,-16.62100801,13.34680109],[-17.1581993,-16.61937239,13.34680109],[-17.0904007,-16.61773676,13.34680109],[-16.9748993,-16.61610113,13.34680109],[-16.7401009,-16.6144655,13.34680109],[-16.1685009,-16.61282988,13.34680109],[-15.2510996,-16.61119425,13.34680109],[-14.427,-16.60955862,13.34680109],[-13.5614996,-16.60792299,13.34680109],[-12.6019001,-16.60628736,13.34680109],[-11.9005003,-16.60465174,13.34680109],[-7.0901198,-16.80910521,13.34516546],[-7.8105898,-16.80746958,13.34516546],[-9.7092199,-16.80583395,13.34516546],[-11.3808002,-16.80419832,13.34516546],[-12.2565002,-16.80256269,13.34516546],[-13.1601,-16.80092707,13.34516546],[-14.2173004,-16.79929144,13.34516546],[-14.1869001,-16.79765581,13.34516546],[-13.4848003,-16.79602018,13.34516546],[-13.0593996,-16.79438456,13.34516546],[-13.3403997,-16.79274893,13.34516546],[-13.9342003,-16.7911133,13.34516546],[-14.1230001,-16.78947767,13.34516546],[-13.9947996,-16.78784204,13.34516546],[-13.8951998,-16.78620642,13.34516546],[-13.8525,-16.78457079,13.34516546],[-13.6311998,-16.78293516,13.34516546],[-13.3992004,-16.78129953,13.34516546],[-13.3119001,-16.77966391,13.34516546],[-13.4265003,-16.77802828,13.34516546],[-13.4708004,-16.77639265,13.34516546],[-13.6211004,-16.77475702,13.34516546],[-13.7796001,-16.77312139,13.34516546],[-13.7958002,-16.77148577,13.34516546],[-13.8389997,-16.76985014,13.34516546],[-14.0225,-16.76821451,13.34516546],[-14.2142,-16.76657888,13.34516546],[-14.0025997,-16.76494326,13.34516546],[-13.6414003,-16.76330763,13.34516546],[-13.5724001,-16.761672,13.34516546],[-14.0092001,-16.76003637,13.34516546],[-14.3045998,-16.75840074,13.34516546],[-14.3704996,-16.75676512,13.34516546],[-14.4934998,-16.75512949,13.34516546],[-14.5777998,-16.75349386,13.34516546],[-14.7377996,-16.75185823,13.34516546],[-15.1097002,-16.75022261,13.34516546],[-15.4153004,-16.74858698,13.34516546],[-15.7257996,-16.74695135,13.34516546],[-16.0727005,-16.74531572,13.34516546],[-16.4528008,-16.7436801,13.34516546],[-16.4067993,-16.74204447,13.34516546],[-16.3395996,-16.74040884,13.34516546],[-16.2884007,-16.73877321,13.34516546],[-15.8504,-16.73713758,13.34516546],[-14.9305,-16.73550196,13.34516546],[-14.4834995,-16.73386633,13.34516546],[-14.7700005,-16.7322307,13.34516546],[-15.1974001,-16.73059507,13.34516546],[-15.0532999,-16.72895945,13.34516546],[-13.7802,-16.72732382,13.34516546],[-12.2765999,-16.72568819,13.34516546],[-12.3469,-16.72405256,13.34516546],[-13.3908997,-16.72241693,13.34516546],[-14.0896997,-16.72078131,13.34516546],[-14.2342997,-16.71914568,13.34516546],[-14.5733995,-16.71751005,13.34516546],[-15.1487999,-16.71587442,13.34516546],[-14.7838001,-16.7142388,13.34516546],[-14.3692999,-16.71260317,13.34516546],[-14.2292004,-16.71096754,13.34516546],[-14.0354004,-16.70933191,13.34516546],[-14.0709,-16.70769628,13.34516546],[-14.0387001,-16.70606066,13.34516546],[-13.7066002,-16.70442503,13.34516546],[-13.5150003,-16.7027894,13.34516546],[-13.4140997,-16.70115377,13.34516546],[-13.2045002,-16.69951815,13.34516546],[-12.9968004,-16.69788252,13.34516546],[-13.0798998,-16.69624689,13.34516546],[-13.1575003,-16.69461126,13.34516546],[-13.3175001,-16.69297564,13.34516546],[-13.4313002,-16.69134001,13.34516546],[-13.5488997,-16.68970438,13.34516546],[-13.9527998,-16.68806875,13.34516546],[-13.8874998,-16.68643312,13.34516546],[-13.9575005,-16.6847975,13.34516546],[-14.0035,-16.68316187,13.34516546],[-14.2952995,-16.68152624,13.34516546],[-14.8431997,-16.67989061,13.34516546],[-14.9885998,-16.67825499,13.34516546],[-15.0813999,-16.67661936,13.34516546],[-15.6006002,-16.67498373,13.34516546],[-15.8332005,-16.6733481,13.34516546],[-16.3446007,-16.67171247,13.34516546],[-17.0359001,-16.67007685,13.34516546],[-17.3069,-16.66844122,13.34516546],[-17.4006004,-16.66680559,13.34516546],[-17.3784008,-16.66516996,13.34516546],[-18.1247997,-16.66353434,13.34516546],[-18.9640999,-16.66189871,13.34516546],[-19.3813,-16.66026308,13.34516546],[-19.2584991,-16.65862745,13.34516546],[-18.8514004,-16.65699182,13.34516546],[-18.7593994,-16.6553562,13.34516546],[-19.3955994,-16.65372057,13.34516546],[-19.8871994,-16.65208494,13.34516546],[-20.0391006,-16.65044931,13.34516546],[-20.0058994,-16.64881369,13.34516546],[-19.9920006,-16.64717806,13.34516546],[-20.0205002,-16.64554243,13.34516546],[-20.2143993,-16.6439068,13.34516546],[-20.4591999,-16.64227118,13.34516546],[-20.1226006,-16.64063555,13.34516546],[-19.6986008,-16.63899992,13.34516546],[-19.5757008,-16.63736429,13.34516546],[-19.1102009,-16.63572866,13.34516546],[-18.7651005,-16.63409304,13.34516546],[-18.6837997,-16.63245741,13.34516546],[-18.3556004,-16.63082178,13.34516546],[-18.0259991,-16.62918615,13.34516546],[-18.0396996,-16.62755053,13.34516546],[-18.2819996,-16.6259149,13.34516546],[-19.4953003,-16.62427927,13.34516546],[-19.4528999,-16.62264364,13.34516546],[-18.1352005,-16.62100801,13.34516546],[-18.1837997,-16.61937239,13.34516546],[-17.8633003,-16.61773676,13.34516546],[-17.1396008,-16.61610113,13.34516546],[-16.7443008,-16.6144655,13.34516546],[-16.2579002,-16.61282988,13.34516546],[-15.3943996,-16.61119425,13.34516546],[-14.6766005,-16.60955862,13.34516546],[-14.1197996,-16.60792299,13.34516546],[-12.6616001,-16.60628736,13.34516546],[-11.9867001,-16.60465174,13.34516546],[-7.6537399,-16.81074083,13.34352983],[-10.5901003,-16.80910521,13.34352983],[-11.6456003,-16.80746958,13.34352983],[-12.1127996,-16.80583395,13.34352983],[-15.7495003,-16.80419832,13.34352983],[-15.8909998,-16.80256269,13.34352983],[-14.2727003,-16.80092707,13.34352983],[-14.2060003,-16.79929144,13.34352983],[-14.1360998,-16.79765581,13.34352983],[-13.5775003,-16.79602018,13.34352983],[-13.1847,-16.79438456,13.34352983],[-13.4776001,-16.79274893,13.34352983],[-13.8456001,-16.7911133,13.34352983],[-13.8767004,-16.78947767,13.34352983],[-14.0018997,-16.78784204,13.34352983],[-14.1879997,-16.78620642,13.34352983],[-14.3409996,-16.78457079,13.34352983],[-13.7594995,-16.78293516,13.34352983],[-13.1150999,-16.78129953,13.34352983],[-13.0056,-16.77966391,13.34352983],[-13.5408001,-16.77802828,13.34352983],[-13.7124004,-16.77639265,13.34352983],[-13.7897997,-16.77475702,13.34352983],[-13.9294004,-16.77312139,13.34352983],[-14.2543001,-16.77148577,13.34352983],[-14.0972004,-16.76985014,13.34352983],[-14.2180996,-16.76821451,13.34352983],[-14.8907003,-16.76657888,13.34352983],[-14.0695,-16.76494326,13.34352983],[-13.0424004,-16.76330763,13.34352983],[-12.3848,-16.761672,13.34352983],[-13.5167999,-16.76003637,13.34352983],[-14.5103998,-16.75840074,13.34352983],[-14.6680002,-16.75676512,13.34352983],[-14.6780996,-16.75512949,13.34352983],[-14.8238001,-16.75349386,13.34352983],[-14.9056997,-16.75185823,13.34352983],[-15.1827002,-16.75022261,13.34352983],[-15.0992002,-16.74858698,13.34352983],[-15.3927002,-16.74695135,13.34352983],[-16.4302998,-16.74531572,13.34352983],[-17.1884995,-16.7436801,13.34352983],[-16.7845993,-16.74204447,13.34352983],[-16.6518002,-16.74040884,13.34352983],[-16.8474998,-16.73877321,13.34352983],[-16.0585995,-16.73713758,13.34352983],[-14.0574999,-16.73550196,13.34352983],[-12.8704004,-16.73386633,13.34352983],[-14.5678997,-16.7322307,13.34352983],[-15.7917995,-16.73059507,13.34352983],[-15.9595003,-16.72895945,13.34352983],[-13.5170002,-16.72732382,13.34352983],[-9.7020302,-16.72568819,13.34352983],[-10.2723999,-16.72405256,13.34352983],[-13.5425997,-16.72241693,13.34352983],[-15.1758003,-16.72078131,13.34352983],[-14.9204998,-16.71914568,13.34352983],[-15.4580002,-16.71751005,13.34352983],[-16.6683006,-16.71587442,13.34352983],[-15.7066002,-16.7142388,13.34352983],[-14.7816,-16.71260317,13.34352983],[-14.4913998,-16.71096754,13.34352983],[-14.6000004,-16.70933191,13.34352983],[-14.7398005,-16.70769628,13.34352983],[-14.8815002,-16.70606066,13.34352983],[-14.1450996,-16.70442503,13.34352983],[-13.4495001,-16.7027894,13.34352983],[-13.3633003,-16.70115377,13.34352983],[-13.2452002,-16.69951815,13.34352983],[-12.6212997,-16.69788252,13.34352983],[-12.7896996,-16.69624689,13.34352983],[-13.2289,-16.69461126,13.34352983],[-13.2082996,-16.69297564,13.34352983],[-13.5265999,-16.69134001,13.34352983],[-14.2493,-16.68970438,13.34352983],[-14.9116001,-16.68806875,13.34352983],[-14.4953003,-16.68643312,13.34352983],[-13.9898005,-16.6847975,13.34352983],[-13.5857,-16.68316187,13.34352983],[-14.4500999,-16.68152624,13.34352983],[-15.1765003,-16.67989061,13.34352983],[-15.323,-16.67825499,13.34352983],[-15.5239,-16.67661936,13.34352983],[-16.4813004,-16.67498373,13.34352983],[-16.5076008,-16.6733481,13.34352983],[-16.5426006,-16.67171247,13.34352983],[-17.3960991,-16.67007685,13.34352983],[-17.2064991,-16.66844122,13.34352983],[-16.9344006,-16.66680559,13.34352983],[-16.5417995,-16.66516996,13.34352983],[-17.2817001,-16.66353434,13.34352983],[-18.6753998,-16.66189871,13.34352983],[-19.6478996,-16.66026308,13.34352983],[-18.9309998,-16.65862745,13.34352983],[-18.3465004,-16.65699182,13.34352983],[-18.1313,-16.6553562,13.34352983],[-19.0126991,-16.65372057,13.34352983],[-19.9787006,-16.65208494,13.34352983],[-20.1802998,-16.65044931,13.34352983],[-19.8624992,-16.64881369,13.34352983],[-19.9335995,-16.64717806,13.34352983],[-19.9566002,-16.64554243,13.34352983],[-20.2101002,-16.6439068,13.34352983],[-20.7812996,-16.64227118,13.34352983],[-20.3808002,-16.64063555,13.34352983],[-19.7856998,-16.63899992,13.34352983],[-19.7467003,-16.63736429,13.34352983],[-19.4717999,-16.63572866,13.34352983],[-18.9878006,-16.63409304,13.34352983],[-18.8992004,-16.63245741,13.34352983],[-18.6744995,-16.63082178,13.34352983],[-18.3006992,-16.62918615,13.34352983],[-18.2154007,-16.62755053,13.34352983],[-18.6368008,-16.6259149,13.34352983],[-20.2187004,-16.62427927,13.34352983],[-20.1713009,-16.62264364,13.34352983],[-18.4608994,-16.62100801,13.34352983],[-18.4318008,-16.61937239,13.34352983],[-18.0417995,-16.61773676,13.34352983],[-17.2012005,-16.61610113,13.34352983],[-16.7198009,-16.6144655,13.34352983],[-16.5352993,-16.61282988,13.34352983],[-15.4884996,-16.61119425,13.34352983],[-14.8007002,-16.60955862,13.34352983],[-14.3625002,-16.60792299,13.34352983],[-12.9160995,-16.60628736,13.34352983],[-12.0797997,-16.60465174,13.34352983],[-8.5199003,-16.81074083,13.34189421],[-11.1431999,-16.80910521,13.34189421],[-11.9470997,-16.80746958,13.34189421],[-13.0700998,-16.80583395,13.34189421],[-15.9034996,-16.80419832,13.34189421],[-16.0615997,-16.80256269,13.34189421],[-14.7944002,-16.80092707,13.34189421],[-14.2413998,-16.79929144,13.34189421],[-14.0627003,-16.79765581,13.34189421],[-13.8458004,-16.79602018,13.34189421],[-13.3325996,-16.79438456,13.34189421],[-13.6190996,-16.79274893,13.34189421],[-13.8527002,-16.7911133,13.34189421],[-13.8990002,-16.78947767,13.34189421],[-14.0103998,-16.78784204,13.34189421],[-14.1708002,-16.78620642,13.34189421],[-14.2452002,-16.78457079,13.34189421],[-13.7687998,-16.78293516,13.34189421],[-13.1918001,-16.78129953,13.34189421],[-13.1989002,-16.77966391,13.34189421],[-13.7054996,-16.77802828,13.34189421],[-13.8641996,-16.77639265,13.34189421],[-14.0201998,-16.77475702,13.34189421],[-14.1265001,-16.77312139,13.34189421],[-14.2474003,-16.77148577,13.34189421],[-13.9884005,-16.76985014,13.34189421],[-13.7941999,-16.76821451,13.34189421],[-14.1290998,-16.76657888,13.34189421],[-13.5408001,-16.76494326,13.34189421],[-13.0165997,-16.76330763,13.34189421],[-12.8767996,-16.761672,13.34189421],[-13.6515999,-16.76003637,13.34189421],[-14.4989004,-16.75840074,13.34189421],[-14.7279997,-16.75676512,13.34189421],[-14.7897997,-16.75512949,13.34189421],[-14.8708,-16.75349386,13.34189421],[-14.9319,-16.75185823,13.34189421],[-15.1429996,-16.75022261,13.34189421],[-15.2347002,-16.74858698,13.34189421],[-15.4968996,-16.74695135,13.34189421],[-16.2560005,-16.74531572,13.34189421],[-16.8460007,-16.7436801,13.34189421],[-16.7779007,-16.74204447,13.34189421],[-16.6664009,-16.74040884,13.34189421],[-16.6222992,-16.73877321,13.34189421],[-16.0573997,-16.73713758,13.34189421],[-14.8579998,-16.73550196,13.34189421],[-14.1448002,-16.73386633,13.34189421],[-14.8887997,-16.7322307,13.34189421],[-15.4146996,-16.73059507,13.34189421],[-15.3390999,-16.72895945,13.34189421],[-13.9826002,-16.72732382,13.34189421],[-11.9448004,-16.72568819,13.34189421],[-12.1644001,-16.72405256,13.34189421],[-13.8463001,-16.72241693,13.34189421],[-14.7094002,-16.72078131,13.34189421],[-14.8993998,-16.71914568,13.34189421],[-15.4637003,-16.71751005,13.34189421],[-15.9870005,-16.71587442,13.34189421],[-15.7112999,-16.7142388,13.34189421],[-15.2111998,-16.71260317,13.34189421],[-14.9077997,-16.71096754,13.34189421],[-14.9439001,-16.70933191,13.34189421],[-14.8530998,-16.70769628,13.34189421],[-14.7962999,-16.70606066,13.34189421],[-14.4857998,-16.70442503,13.34189421],[-13.9820995,-16.7027894,13.34189421],[-13.7479,-16.70115377,13.34189421],[-13.5207005,-16.69951815,13.34189421],[-13.0499001,-16.69788252,13.34189421],[-13.1168003,-16.69624689,13.34189421],[-13.5317001,-16.69461126,13.34189421],[-13.5964003,-16.69297564,13.34189421],[-14.0017004,-16.69134001,13.34189421],[-14.5766001,-16.68970438,13.34189421],[-14.934,-16.68806875,13.34189421],[-14.9277,-16.68643312,13.34189421],[-14.8176003,-16.6847975,13.34189421],[-14.7321997,-16.68316187,13.34189421],[-15.0611,-16.68152624,13.34189421],[-14.9666004,-16.67989061,13.34189421],[-15.1836996,-16.67825499,13.34189421],[-15.5404997,-16.67661936,13.34189421],[-16.0855007,-16.67498373,13.34189421],[-16.2947998,-16.6733481,13.34189421],[-16.2896004,-16.67171247,13.34189421],[-16.5781994,-16.67007685,13.34189421],[-16.7189007,-16.66844122,13.34189421],[-16.7740002,-16.66680559,13.34189421],[-16.8901997,-16.66516996,13.34189421],[-17.2259007,-16.66353434,13.34189421],[-17.8474007,-16.66189871,13.34189421],[-18.3773994,-16.66026308,13.34189421],[-18.3323002,-16.65862745,13.34189421],[-18.3089008,-16.65699182,13.34189421],[-18.4708004,-16.6553562,13.34189421],[-18.9113007,-16.65372057,13.34189421],[-19.4403,-16.65208494,13.34189421],[-19.6571999,-16.65044931,13.34189421],[-19.7952003,-16.64881369,13.34189421],[-19.9902992,-16.64717806,13.34189421],[-20.0953007,-16.64554243,13.34189421],[-20.1592007,-16.6439068,13.34189421],[-20.2709999,-16.64227118,13.34189421],[-20.0545006,-16.64063555,13.34189421],[-19.6678009,-16.63899992,13.34189421],[-19.3449993,-16.63736429,13.34189421],[-19.2593994,-16.63572866,13.34189421],[-19.1903992,-16.63409304,13.34189421],[-18.9533997,-16.63245741,13.34189421],[-18.7735004,-16.63082178,13.34189421],[-18.7532005,-16.62918615,13.34189421],[-18.5795994,-16.62755053,13.34189421],[-18.2092991,-16.6259149,13.34189421],[-17.8994007,-16.62427927,13.34189421],[-17.5799999,-16.62264364,13.34189421],[-17.3768005,-16.62100801,13.34189421],[-17.2063007,-16.61937239,13.34189421],[-17.1900997,-16.61773676,13.34189421],[-17.2952995,-16.61610113,13.34189421],[-17.2826996,-16.6144655,13.34189421],[-16.9689999,-16.61282988,13.34189421],[-16.2644005,-16.61119425,13.34189421],[-15.6299,-16.60955862,13.34189421],[-14.8533001,-16.60792299,13.34189421],[-14.2229996,-16.60628736,13.34189421],[-13.5768003,-16.60465174,13.34189421],[-9.3394899,-16.81074083,13.34025858],[-11.2112999,-16.80910521,13.34025858],[-12.1164999,-16.80746958,13.34025858],[-13.2056999,-16.80583395,13.34025858],[-14.6780005,-16.80419832,13.34025858],[-15.2263002,-16.80256269,13.34025858],[-14.6285,-16.80092707,13.34025858],[-14.0067997,-16.79929144,13.34025858],[-14.0088997,-16.79765581,13.34025858],[-13.9623003,-16.79602018,13.34025858],[-13.8106003,-16.79438456,13.34025858],[-13.8655996,-16.79274893,13.34025858],[-14.0935001,-16.7911133,13.34025858],[-14.2630997,-16.78947767,13.34025858],[-14.1494999,-16.78784204,13.34025858],[-14.0667,-16.78620642,13.34025858],[-13.9858999,-16.78457079,13.34025858],[-13.7247,-16.78293516,13.34025858],[-13.4450998,-16.78129953,13.34025858],[-13.4459,-16.77966391,13.34025858],[-13.9500999,-16.77802828,13.34025858],[-14.4231997,-16.77639265,13.34025858],[-14.4042997,-16.77475702,13.34025858],[-14.4534998,-16.77312139,13.34025858],[-14.6169004,-16.77148577,13.34025858],[-13.9668999,-16.76985014,13.34025858],[-12.5044003,-16.76821451,13.34025858],[-11.2079,-16.76657888,13.34025858],[-12.0816002,-16.76494326,13.34025858],[-13.1774998,-16.76330763,13.34025858],[-13.7131996,-16.761672,13.34025858],[-14.0597,-16.76003637,13.34025858],[-14.7552004,-16.75840074,13.34025858],[-15.1321001,-16.75676512,13.34025858],[-14.9659996,-16.75512949,13.34025858],[-14.7341995,-16.75349386,13.34025858],[-14.8076,-16.75185823,13.34025858],[-15.1039,-16.75022261,13.34025858],[-15.3080997,-16.74858698,13.34025858],[-15.5862999,-16.74695135,13.34025858],[-16.1179008,-16.74531572,13.34025858],[-16.6105003,-16.7436801,13.34025858],[-16.6613007,-16.74204447,13.34025858],[-16.7159996,-16.74040884,13.34025858],[-16.7686996,-16.73877321,13.34025858],[-16.3574009,-16.73713758,13.34025858],[-15.9889002,-16.73550196,13.34025858],[-15.9420996,-16.73386633,13.34025858],[-15.4991999,-16.7322307,13.34025858],[-15.3978004,-16.73059507,13.34025858],[-15.2297001,-16.72895945,13.34025858],[-14.7161999,-16.72732382,13.34025858],[-14.5616999,-16.72568819,13.34025858],[-14.4101,-16.72405256,13.34025858],[-14.3725996,-16.72241693,13.34025858],[-14.4790001,-16.72078131,13.34025858],[-14.802,-16.71914568,13.34025858],[-15.5141001,-16.71751005,13.34025858],[-16.1110001,-16.71587442,13.34025858],[-15.8652,-16.7142388,13.34025858],[-15.7091999,-16.71260317,13.34025858],[-15.8446999,-16.71096754,13.34025858],[-15.4118996,-16.70933191,13.34025858],[-15.1974001,-16.70769628,13.34025858],[-15.1578999,-16.70606066,13.34025858],[-14.8830996,-16.70442503,13.34025858],[-14.9013004,-16.7027894,13.34025858],[-14.7538004,-16.70115377,13.34025858],[-13.7737999,-16.69951815,13.34025858],[-12.9505997,-16.69788252,13.34025858],[-13.0834999,-16.69624689,13.34025858],[-13.7346001,-16.69461126,13.34025858],[-14.1449003,-16.69297564,13.34025858],[-14.4119997,-16.69134001,13.34025858],[-15.1879997,-16.68970438,13.34025858],[-15.9387999,-16.68806875,13.34025858],[-15.6645002,-16.68643312,13.34025858],[-16.2443008,-16.6847975,13.34025858],[-16.9648991,-16.68316187,13.34025858],[-15.7063999,-16.68152624,13.34025858],[-14.5763998,-16.67989061,13.34025858],[-14.2523003,-16.67825499,13.34025858],[-15.4294004,-16.67661936,13.34025858],[-16.4493008,-16.67498373,13.34025858],[-16.5263996,-16.6733481,13.34025858],[-15.8971996,-16.67171247,13.34025858],[-14.9513998,-16.67007685,13.34025858],[-15.5024996,-16.66844122,13.34025858],[-16.4188995,-16.66680559,13.34025858],[-16.4715996,-16.66516996,13.34025858],[-16.8031998,-16.66353434,13.34025858],[-17.0925007,-16.66189871,13.34025858],[-16.9493008,-16.66026308,13.34025858],[-17.6221008,-16.65862745,13.34025858],[-18.1422005,-16.65699182,13.34025858],[-18.3027992,-16.6553562,13.34025858],[-18.7381001,-16.65372057,13.34025858],[-18.9412003,-16.65208494,13.34025858],[-19.0519009,-16.65044931,13.34025858],[-19.7113991,-16.64881369,13.34025858],[-20.3129997,-16.64717806,13.34025858],[-20.3096008,-16.64554243,13.34025858],[-20.1623001,-16.6439068,13.34025858],[-20.2148991,-16.64227118,13.34025858],[-20.0055008,-16.64063555,13.34025858],[-19.2954006,-16.63899992,13.34025858],[-18.6345997,-16.63736429,13.34025858],[-18.9937992,-16.63572866,13.34025858],[-19.2014999,-16.63409304,13.34025858],[-19.3194008,-16.63245741,13.34025858],[-19.1334991,-16.63082178,13.34025858],[-19.5566006,-16.62918615,13.34025858],[-19.8766003,-16.62755053,13.34025858],[-17.8743,-16.6259149,13.34025858],[-15.3095999,-16.62427927,13.34025858],[-15.0976,-16.62264364,13.34025858],[-16.2318001,-16.62100801,13.34025858],[-16.0834999,-16.61937239,13.34025858],[-16.3155003,-16.61773676,13.34025858],[-17.5191002,-16.61610113,13.34025858],[-19.1385994,-16.6144655,13.34025858],[-17.9902,-16.61282988,13.34025858],[-16.6788006,-16.61119425,13.34025858],[-16.6352997,-16.60955862,13.34025858],[-15.7763996,-16.60792299,13.34025858],[-15.4392996,-16.60628736,13.34025858],[-15.9546003,-16.60465174,13.34025858],[-8.4656296,-16.81237646,13.33862295],[-9.6546402,-16.81074083,13.33862295],[-12.4679003,-16.80910521,13.33862295],[-13.3514004,-16.80746958,13.33862295],[-13.5186005,-16.80583395,13.33862295],[-15.9637003,-16.80419832,13.33862295],[-15.9579,-16.80256269,13.33862295],[-14.3430004,-16.80092707,13.33862295],[-13.4526997,-16.79929144,13.33862295],[-13.6695004,-16.79765581,13.33862295],[-13.9616003,-16.79602018,13.33862295],[-14.1897001,-16.79438456,13.33862295],[-14.0080996,-16.79274893,13.33862295],[-14.3912001,-16.7911133,13.33862295],[-14.9946003,-16.78947767,13.33862295],[-14.2433004,-16.78784204,13.33862295],[-14.0634003,-16.78620642,13.33862295],[-14.2222996,-16.78457079,13.33862295],[-13.7341003,-16.78293516,13.33862295],[-13.1677999,-16.78129953,13.33862295],[-13.0834999,-16.77966391,13.33862295],[-14.099,-16.77802828,13.33862295],[-15.0354004,-16.77639265,13.33862295],[-14.9531002,-16.77475702,13.33862295],[-14.7559004,-16.77312139,13.33862295],[-15.566,-16.77148577,13.33862295],[-14.5523996,-16.76985014,13.33862295],[-11.3164997,-16.76821451,13.33862295],[-7.8366299,-16.76657888,13.33862295],[-10.7110004,-16.76494326,13.33862295],[-13.4202995,-16.76330763,13.33862295],[-14.3506002,-16.761672,13.33862295],[-14.2564001,-16.76003637,13.33862295],[-15.2969999,-16.75840074,13.33862295],[-15.7536001,-16.75676512,13.33862295],[-15.0644999,-16.75512949,13.33862295],[-14.4806004,-16.75349386,13.33862295],[-14.4624004,-16.75185823,13.33862295],[-15.0843,-16.75022261,13.33862295],[-15.2730999,-16.74858698,13.33862295],[-15.3929996,-16.74695135,13.33862295],[-16.0948009,-16.74531572,13.33862295],[-16.7964993,-16.7436801,13.33862295],[-16.6257,-16.74204447,13.33862295],[-16.7075996,-16.74040884,13.33862295],[-17.1963005,-16.73877321,13.33862295],[-16.6210003,-16.73713758,13.33862295],[-16.3631001,-16.73550196,13.33862295],[-16.6084995,-16.73386633,13.33862295],[-15.8518,-16.7322307,13.33862295],[-15.5600004,-16.73059507,13.33862295],[-15.5194998,-16.72895945,13.33862295],[-15.1664,-16.72732382,13.33862295],[-15.2205,-16.72568819,13.33862295],[-15.1450005,-16.72405256,13.33862295],[-14.7925997,-16.72241693,13.33862295],[-14.3105001,-16.72078131,13.33862295],[-14.6822004,-16.71914568,13.33862295],[-15.6812,-16.71751005,13.33862295],[-16.6459007,-16.71587442,13.33862295],[-16.0946007,-16.7142388,13.33862295],[-15.9598999,-16.71260317,13.33862295],[-16.4249001,-16.71096754,13.33862295],[-15.6786003,-16.70933191,13.33862295],[-15.4102001,-16.70769628,13.33862295],[-15.4181995,-16.70606066,13.33862295],[-15.1107998,-16.70442503,13.33862295],[-15.3024998,-16.7027894,13.33862295],[-15.2637997,-16.70115377,13.33862295],[-14.0445995,-16.69951815,13.33862295],[-12.5892,-16.69788252,13.33862295],[-12.9245996,-16.69624689,13.33862295],[-14.0024996,-16.69461126,13.33862295],[-14.2068005,-16.69297564,13.33862295],[-14.6157999,-16.69134001,13.33862295],[-15.6431999,-16.68970438,13.33862295],[-16.4220009,-16.68806875,13.33862295],[-16.0970993,-16.68643312,13.33862295],[-16.7549992,-16.6847975,13.33862295],[-17.7705994,-16.68316187,13.33862295],[-15.9518995,-16.68152624,13.33862295],[-14.3963003,-16.67989061,13.33862295],[-13.8999004,-16.67825499,13.33862295],[-15.5436001,-16.67661936,13.33862295],[-16.7404003,-16.67498373,13.33862295],[-16.7276001,-16.6733481,13.33862295],[-15.9974003,-16.67171247,13.33862295],[-14.5356998,-16.67007685,13.33862295],[-15.1653004,-16.66844122,13.33862295],[-16.3370991,-16.66680559,13.33862295],[-16.3577995,-16.66516996,13.33862295],[-16.6996002,-16.66353434,13.33862295],[-16.8633003,-16.66189871,13.33862295],[-16.6427994,-16.66026308,13.33862295],[-17.3486004,-16.65862745,13.33862295],[-18.1093006,-16.65699182,13.33862295],[-18.2462006,-16.6553562,13.33862295],[-18.6252995,-16.65372057,13.33862295],[-18.8827,-16.65208494,13.33862295],[-18.9887009,-16.65044931,13.33862295],[-19.7126999,-16.64881369,13.33862295],[-20.3638,-16.64717806,13.33862295],[-20.3136005,-16.64554243,13.33862295],[-20.0613003,-16.6439068,13.33862295],[-20.1907997,-16.64227118,13.33862295],[-19.9209003,-16.64063555,13.33862295],[-19.2068996,-16.63899992,13.33862295],[-18.5869999,-16.63736429,13.33862295],[-18.8623009,-16.63572866,13.33862295],[-19.1054001,-16.63409304,13.33862295],[-19.2675991,-16.63245741,13.33862295],[-18.8617992,-16.63082178,13.33862295],[-19.3621006,-16.62918615,13.33862295],[-19.6495991,-16.62755053,13.33862295],[-17.2926998,-16.6259149,13.33862295],[-15.1573,-16.62427927,13.33862295],[-14.8741999,-16.62264364,13.33862295],[-15.5632,-16.62100801,13.33862295],[-15.8025999,-16.61937239,13.33862295],[-15.9473,-16.61773676,13.33862295],[-16.9983997,-16.61610113,13.33862295],[-18.6767998,-16.6144655,13.33862295],[-17.7415009,-16.61282988,13.33862295],[-16.4265995,-16.61119425,13.33862295],[-16.4442005,-16.60955862,13.33862295],[-15.7786999,-16.60792299,13.33862295],[-15.4153004,-16.60628736,13.33862295],[-15.5809002,-16.60465174,13.33862295],[-9.6128902,-16.81074083,13.33698732],[-11.5093002,-16.80910521,13.33698732],[-12.3711996,-16.80746958,13.33698732],[-12.7791004,-16.80583395,13.33698732],[-14.6883001,-16.80419832,13.33698732],[-15.0488005,-16.80256269,13.33698732],[-14.0922003,-16.80092707,13.33698732],[-13.6823997,-16.79929144,13.33698732],[-13.7173996,-16.79765581,13.33698732],[-13.7978001,-16.79602018,13.33698732],[-13.9089003,-16.79438456,13.33698732],[-13.7769003,-16.79274893,13.33698732],[-13.8578997,-16.7911133,13.33698732],[-14.1447001,-16.78947767,13.33698732],[-13.7194004,-16.78784204,13.33698732],[-13.6115999,-16.78620642,13.33698732],[-13.7601995,-16.78457079,13.33698732],[-13.5489998,-16.78293516,13.33698732],[-13.3794003,-16.78129953,13.33698732],[-13.5937004,-16.77966391,13.33698732],[-14.3662996,-16.77802828,13.33698732],[-15.0302,-16.77639265,13.33698732],[-15.0086002,-16.77475702,13.33698732],[-14.8139,-16.77312139,13.33698732],[-14.8266001,-16.77148577,13.33698732],[-14.0768003,-16.76985014,13.33698732],[-12.1917,-16.76821451,13.33698732],[-10.5274,-16.76657888,13.33698732],[-11.5374002,-16.76494326,13.33698732],[-12.9153004,-16.76330763,13.33698732],[-13.5674,-16.761672,13.33698732],[-13.9357996,-16.76003637,13.33698732],[-14.8078003,-16.75840074,13.33698732],[-15.3037004,-16.75676512,13.33698732],[-15.1477003,-16.75512949,13.33698732],[-15.0043001,-16.75349386,13.33698732],[-15.0004997,-16.75185823,13.33698732],[-15.0339003,-16.75022261,13.33698732],[-15.0355997,-16.74858698,13.33698732],[-15.2542,-16.74695135,13.33698732],[-15.8143997,-16.74531572,13.33698732],[-16.3486996,-16.7436801,13.33698732],[-16.4694004,-16.74204447,13.33698732],[-16.5990009,-16.74040884,13.33698732],[-16.6662998,-16.73877321,13.33698732],[-16.3826008,-16.73713758,13.33698732],[-16.1189995,-16.73550196,13.33698732],[-16.0814991,-16.73386633,13.33698732],[-15.9181004,-16.7322307,13.33698732],[-15.7472,-16.73059507,13.33698732],[-15.6763,-16.72895945,13.33698732],[-15.5640001,-16.72732382,13.33698732],[-15.3871002,-16.72568819,13.33698732],[-15.2672997,-16.72405256,13.33698732],[-15.1304998,-16.72241693,13.33698732],[-15.0204,-16.72078131,13.33698732],[-15.2744999,-16.71914568,13.33698732],[-15.5633001,-16.71751005,13.33698732],[-15.7325001,-16.71587442,13.33698732],[-15.5469999,-16.7142388,13.33698732],[-15.3094997,-16.71260317,13.33698732],[-15.2889004,-16.71096754,13.33698732],[-15.2468996,-16.70933191,13.33698732],[-15.3776999,-16.70769628,13.33698732],[-15.4097004,-16.70606066,13.33698732],[-15.2692003,-16.70442503,13.33698732],[-15.2025003,-16.7027894,13.33698732],[-14.9601002,-16.70115377,13.33698732],[-14.4540005,-16.69951815,13.33698732],[-13.8663998,-16.69788252,13.33698732],[-14.0106001,-16.69624689,13.33698732],[-14.5646,-16.69461126,13.33698732],[-14.9392996,-16.69297564,13.33698732],[-15.2803001,-16.69134001,13.33698732],[-15.6617002,-16.68970438,13.33698732],[-15.8874998,-16.68806875,13.33698732],[-15.7617998,-16.68643312,13.33698732],[-15.6331997,-16.6847975,13.33698732],[-15.6792002,-16.68316187,13.33698732],[-15.5415001,-16.68152624,13.33698732],[-15.3304996,-16.67989061,13.33698732],[-15.3899002,-16.67825499,13.33698732],[-16.0594997,-16.67661936,13.33698732],[-16.7087994,-16.67498373,13.33698732],[-16.6851006,-16.6733481,13.33698732],[-16.4769001,-16.67171247,13.33698732],[-16.2931004,-16.67007685,13.33698732],[-16.4157009,-16.66844122,13.33698732],[-16.7653999,-16.66680559,13.33698732],[-16.9937,-16.66516996,13.33698732],[-17.0643005,-16.66353434,13.33698732],[-17.0193005,-16.66189871,13.33698732],[-17.1280003,-16.66026308,13.33698732],[-17.5634995,-16.65862745,13.33698732],[-18.0820007,-16.65699182,13.33698732],[-18.4799995,-16.6553562,13.33698732],[-18.8122997,-16.65372057,13.33698732],[-19.0457001,-16.65208494,13.33698732],[-19.3505001,-16.65044931,13.33698732],[-19.7443008,-16.64881369,13.33698732],[-20.0524006,-16.64717806,13.33698732],[-20.0317001,-16.64554243,13.33698732],[-19.8850994,-16.6439068,13.33698732],[-19.7380009,-16.64227118,13.33698732],[-19.5496998,-16.64063555,13.33698732],[-19.3801994,-16.63899992,13.33698732],[-19.2045002,-16.63736429,13.33698732],[-18.9755993,-16.63572866,13.33698732],[-18.6863003,-16.63409304,13.33698732],[-18.3850002,-16.63245741,13.33698732],[-18.0384007,-16.63082178,13.33698732],[-17.6900997,-16.62918615,13.33698732],[-17.344101,-16.62755053,13.33698732],[-16.5881004,-16.6259149,13.33698732],[-15.6408997,-16.62427927,13.33698732],[-15.2819996,-16.62264364,13.33698732],[-15.0234003,-16.62100801,13.33698732],[-14.3526001,-16.61937239,13.33698732],[-14.6269999,-16.61773676,13.33698732],[-15.8348999,-16.61610113,13.33698732],[-16.5181999,-16.6144655,13.33698732],[-16.3523006,-16.61282988,13.33698732],[-15.7226,-16.61119425,13.33698732],[-15.2601004,-16.60955862,13.33698732],[-14.9816999,-16.60792299,13.33698732],[-14.7156,-16.60628736,13.33698732],[-14.1174002,-16.60465174,13.33698732],[-8.5306997,-16.80910521,13.33535169],[-8.5801802,-16.80746958,13.33535169],[-11.2235003,-16.80583395,13.33535169],[-13.0664997,-16.80419832,13.33535169],[-13.5735998,-16.80256269,13.33535169],[-13.6042995,-16.80092707,13.33535169],[-13.2790003,-16.79929144,13.33535169],[-13.3548002,-16.79765581,13.33535169],[-13.6489,-16.79602018,13.33535169],[-13.6372995,-16.79438456,13.33535169],[-13.4555998,-16.79274893,13.33535169],[-12.9963999,-16.7911133,13.33535169],[-12.5319004,-16.78947767,13.33535169],[-12.8113003,-16.78784204,13.33535169],[-12.9201002,-16.78620642,13.33535169],[-12.9067001,-16.78457079,13.33535169],[-13.2378998,-16.78293516,13.33535169],[-13.3726997,-16.78129953,13.33535169],[-13.5844002,-16.77966391,13.33535169],[-14.6858997,-16.77802828,13.33535169],[-15.8790998,-16.77639265,13.33535169],[-15.8803997,-16.77475702,13.33535169],[-14.8387003,-16.77312139,13.33535169],[-14.2635002,-16.77148577,13.33535169],[-13.8839998,-16.76985014,13.33535169],[-12.9288998,-16.76821451,13.33535169],[-12.2757998,-16.76657888,13.33535169],[-12.3246002,-16.76494326,13.33535169],[-12.4254999,-16.76330763,13.33535169],[-12.4343004,-16.761672,13.33535169],[-13.4387999,-16.76003637,13.33535169],[-14.8577003,-16.75840074,13.33535169],[-15.3547001,-16.75676512,13.33535169],[-15.3751001,-16.75512949,13.33535169],[-15.9520998,-16.75349386,13.33535169],[-15.9819002,-16.75185823,13.33535169],[-15.0144997,-16.75022261,13.33535169],[-14.0523996,-16.74858698,13.33535169],[-14.3864002,-16.74695135,13.33535169],[-15.5355997,-16.74531572,13.33535169],[-16.0955009,-16.7436801,13.33535169],[-16.2198009,-16.74204447,13.33535169],[-16.3542004,-16.74040884,13.33535169],[-16.405899,-16.73877321,13.33535169],[-16.2584,-16.73713758,13.33535169],[-15.5691996,-16.73550196,13.33535169],[-15.1639996,-16.73386633,13.33535169],[-15.7459002,-16.7322307,13.33535169],[-16.4137001,-16.73059507,13.33535169],[-16.5365009,-16.72895945,13.33535169],[-15.9272003,-16.72732382,13.33535169],[-15.6459999,-16.72568819,13.33535169],[-15.5749998,-16.72405256,13.33535169],[-15.5375004,-16.72241693,13.33535169],[-15.8479996,-16.72078131,13.33535169],[-15.7161999,-16.71914568,13.33535169],[-15.3607998,-16.71751005,13.33535169],[-15.0553999,-16.71587442,13.33535169],[-15.0333004,-16.7142388,13.33535169],[-14.2743998,-16.71260317,13.33535169],[-13.3976002,-16.71096754,13.33535169],[-14.5355997,-16.70933191,13.33535169],[-15.4586,-16.70769628,13.33535169],[-15.6408005,-16.70606066,13.33535169],[-15.3886003,-16.70442503,13.33535169],[-15.3111,-16.7027894,13.33535169],[-15.2662001,-16.70115377,13.33535169],[-14.7565002,-16.69951815,13.33535169],[-14.3806,-16.69788252,13.33535169],[-14.4712,-16.69624689,13.33535169],[-15.2638998,-16.69461126,13.33535169],[-16.1089993,-16.69297564,13.33535169],[-15.9284,-16.69134001,13.33535169],[-15.8304996,-16.68970438,13.33535169],[-16.0135002,-16.68806875,13.33535169],[-15.6196003,-16.68643312,13.33535169],[-14.5289001,-16.6847975,13.33535169],[-13.6292,-16.68316187,13.33535169],[-14.9875002,-16.68152624,13.33535169],[-15.9322004,-16.67989061,13.33535169],[-16.1790009,-16.67825499,13.33535169],[-16.4083004,-16.67661936,13.33535169],[-17.3206005,-16.67498373,13.33535169],[-17.4297009,-16.6733481,13.33535169],[-16.9608994,-16.67171247,13.33535169],[-17.3670006,-16.67007685,13.33535169],[-17.2357006,-16.66844122,13.33535169],[-17.3071003,-16.66680559,13.33535169],[-18.1028996,-16.66516996,13.33535169],[-17.5482998,-16.66353434,13.33535169],[-17.1259995,-16.66189871,13.33535169],[-17.0422001,-16.66026308,13.33535169],[-17.4790001,-16.65862745,13.33535169],[-18.4710007,-16.65699182,13.33535169],[-18.9715004,-16.6553562,13.33535169],[-18.8577003,-16.65372057,13.33535169],[-19.3264008,-16.65208494,13.33535169],[-19.4517994,-16.65044931,13.33535169],[-19.6821003,-16.64881369,13.33535169],[-20.1263008,-16.64717806,13.33535169],[-20.0746002,-16.64554243,13.33535169],[-19.6401997,-16.6439068,13.33535169],[-19.4295006,-16.64227118,13.33535169],[-19.4085007,-16.64063555,13.33535169],[-19.4410992,-16.63899992,13.33535169],[-20.031601,-16.63736429,13.33535169],[-19.2229996,-16.63572866,13.33535169],[-18.1732998,-16.63409304,13.33535169],[-17.7474003,-16.63245741,13.33535169],[-17.4992008,-16.63082178,13.33535169],[-16.4073009,-16.62918615,13.33535169],[-15.8639002,-16.62755053,13.33535169],[-15.8760996,-16.6259149,13.33535169],[-15.5635996,-16.62427927,13.33535169],[-15.3723001,-16.62264364,13.33535169],[-14.2020998,-16.62100801,13.33535169],[-11.993,-16.61937239,13.33535169],[-12.7439003,-16.61773676,13.33535169],[-15.0752001,-16.61610113,13.33535169],[-16.5646992,-16.6144655,13.33535169],[-15.9934998,-16.61282988,13.33535169],[-14.9523001,-16.61119425,13.33535169],[-14.3135004,-16.60955862,13.33535169],[-14.4864998,-16.60792299,13.33535169],[-14.1287003,-16.60628736,13.33535169],[-13.9060001,-16.60465174,13.33535169],[-5.02249,-16.80746958,13.33371607],[-9.8234797,-16.80583395,13.33371607],[-13.2507,-16.80419832,13.33371607],[-13.4766998,-16.80256269,13.33371607],[-13.0548,-16.80092707,13.33371607],[-12.8424997,-16.79929144,13.33371607],[-13.1027002,-16.79765581,13.33371607],[-13.5171003,-16.79602018,13.33371607],[-13.7487001,-16.79438456,13.33371607],[-13.3210001,-16.79274893,13.33371607],[-12.4238997,-16.7911133,13.33371607],[-11.5916004,-16.78947767,13.33371607],[-12.2873001,-16.78784204,13.33371607],[-12.5417004,-16.78620642,13.33371607],[-12.5045996,-16.78457079,13.33371607],[-13.0635004,-16.78293516,13.33371607],[-13.1942997,-16.78129953,13.33371607],[-13.2074003,-16.77966391,13.33371607],[-14.8603001,-16.77802828,13.33371607],[-16.7796001,-16.77639265,13.33371607],[-16.6051998,-16.77475702,13.33371607],[-14.9701996,-16.77312139,13.33371607],[-14.0669003,-16.77148577,13.33371607],[-13.9475002,-16.76985014,13.33371607],[-13.1104002,-16.76821451,13.33371607],[-12.3568001,-16.76657888,13.33371607],[-12.5246,-16.76494326,13.33371607],[-12.3122997,-16.76330763,13.33371607],[-11.8486996,-16.761672,13.33371607],[-13.1410999,-16.76003637,13.33371607],[-15.0249996,-16.75840074,13.33371607],[-15.6545,-16.75676512,13.33371607],[-15.3021002,-16.75512949,13.33371607],[-16.4146996,-16.75349386,13.33371607],[-16.5365009,-16.75185823,13.33371607],[-14.9510002,-16.75022261,13.33371607],[-13.4794998,-16.74858698,13.33371607],[-13.9350004,-16.74695135,13.33371607],[-15.5359001,-16.74531572,13.33371607],[-16.1308994,-16.7436801,13.33371607],[-16.1648006,-16.74204447,13.33371607],[-16.3227005,-16.74040884,13.33371607],[-16.4134007,-16.73877321,13.33371607],[-16.2441998,-16.73713758,13.33371607],[-15.4576998,-16.73550196,13.33371607],[-14.8469,-16.73386633,13.33371607],[-15.8645,-16.7322307,13.33371607],[-16.6700001,-16.73059507,13.33371607],[-16.8491001,-16.72895945,13.33371607],[-16.1944008,-16.72732382,13.33371607],[-15.7678003,-16.72568819,13.33371607],[-15.7447996,-16.72405256,13.33371607],[-15.8688002,-16.72241693,13.33371607],[-16.0606995,-16.72078131,13.33371607],[-15.8318996,-16.71914568,13.33371607],[-15.2764997,-16.71751005,13.33371607],[-14.9488001,-16.71587442,13.33371607],[-14.8926001,-16.7142388,13.33371607],[-14.1496,-16.71260317,13.33371607],[-13.1178999,-16.71096754,13.33371607],[-14.4724998,-16.70933191,13.33371607],[-15.5122995,-16.70769628,13.33371607],[-15.7142,-16.70606066,13.33371607],[-15.6436996,-16.70442503,13.33371607],[-15.4099998,-16.7027894,13.33371607],[-15.4152002,-16.70115377,13.33371607],[-15.1826,-16.69951815,13.33371607],[-14.5691004,-16.69788252,13.33371607],[-14.7714996,-16.69624689,13.33371607],[-15.5608997,-16.69461126,13.33371607],[-16.2679005,-16.69297564,13.33371607],[-16.0226002,-16.69134001,13.33371607],[-15.9507999,-16.68970438,13.33371607],[-15.9994001,-16.68806875,13.33371607],[-15.6531,-16.68643312,13.33371607],[-14.4949999,-16.6847975,13.33371607],[-13.6945,-16.68316187,13.33371607],[-14.9853001,-16.68152624,13.33371607],[-16.0030994,-16.67989061,13.33371607],[-16.2957001,-16.67825499,13.33371607],[-16.5946999,-16.67661936,13.33371607],[-17.2404995,-16.67498373,13.33371607],[-17.3556004,-16.6733481,13.33371607],[-17.1527996,-16.67171247,13.33371607],[-17.3257008,-16.67007685,13.33371607],[-17.2628002,-16.66844122,13.33371607],[-17.2971001,-16.66680559,13.33371607],[-17.8607006,-16.66516996,13.33371607],[-17.4445,-16.66353434,13.33371607],[-17.0583992,-16.66189871,13.33371607],[-17.0007992,-16.66026308,13.33371607],[-17.3868008,-16.65862745,13.33371607],[-18.2637997,-16.65699182,13.33371607],[-18.7390995,-16.6553562,13.33371607],[-18.7898006,-16.65372057,13.33371607],[-19.2546005,-16.65208494,13.33371607],[-19.4661999,-16.65044931,13.33371607],[-19.6625996,-16.64881369,13.33371607],[-19.9979,-16.64717806,13.33371607],[-19.9323997,-16.64554243,13.33371607],[-19.4668007,-16.6439068,13.33371607],[-19.2695007,-16.64227118,13.33371607],[-19.0681,-16.64063555,13.33371607],[-19.0083008,-16.63899992,13.33371607],[-19.3992004,-16.63736429,13.33371607],[-18.7042999,-16.63572866,13.33371607],[-17.9592991,-16.63409304,13.33371607],[-17.6306992,-16.63245741,13.33371607],[-17.1532993,-16.63082178,13.33371607],[-16.3558998,-16.62918615,13.33371607],[-15.8528996,-16.62755053,13.33371607],[-15.4863005,-16.6259149,13.33371607],[-15.2599001,-16.62427927,13.33371607],[-14.9191999,-16.62264364,13.33371607],[-13.7103996,-16.62100801,13.33371607],[-12.6913996,-16.61937239,13.33371607],[-13.0348997,-16.61773676,13.33371607],[-14.3964996,-16.61610113,13.33371607],[-15.5580997,-16.6144655,13.33371607],[-15.2219,-16.61282988,13.33371607],[-14.4540997,-16.61119425,13.33371607],[-14.2945995,-16.60955862,13.33371607],[-13.9895,-16.60792299,13.33371607],[-13.8868999,-16.60628736,13.33371607],[-13.6311998,-16.60465174,13.33371607],[-9.7728004,-16.80583395,13.33208044],[-12.0872002,-16.80419832,13.33208044],[-12.6925001,-16.80256269,13.33208044],[-12.8220997,-16.80092707,13.33208044],[-13.1661997,-16.79929144,13.33208044],[-13.3993998,-16.79765581,13.33208044],[-13.3473997,-16.79602018,13.33208044],[-13.4140997,-16.79438456,13.33208044],[-13.0162001,-16.79274893,13.33208044],[-12.4063997,-16.7911133,13.33208044],[-12.0538998,-16.78947767,13.33208044],[-12.2226,-16.78784204,13.33208044],[-12.3257999,-16.78620642,13.33208044],[-12.4292002,-16.78457079,13.33208044],[-13.0354004,-16.78293516,13.33208044],[-13.6922998,-16.78129953,13.33208044],[-14.2194996,-16.77966391,13.33208044],[-15.1331997,-16.77802828,13.33208044],[-16.1093998,-16.77639265,13.33208044],[-16.1047001,-16.77475702,13.33208044],[-15.4441996,-16.77312139,13.33208044],[-14.6891003,-16.77148577,13.33208044],[-14.1729002,-16.76985014,13.33208044],[-13.6645002,-16.76821451,13.33208044],[-13.1526003,-16.76657888,13.33208044],[-12.9287004,-16.76494326,13.33208044],[-12.5647001,-16.76330763,13.33208044],[-12.4160004,-16.761672,13.33208044],[-13.1813002,-16.76003637,13.33208044],[-14.0448999,-16.75840074,13.33208044],[-14.4900999,-16.75676512,13.33208044],[-14.6016998,-16.75512949,13.33208044],[-15.0014,-16.75349386,13.33208044],[-15.1149998,-16.75185823,13.33208044],[-14.7848997,-16.75022261,13.33208044],[-14.6382999,-16.74858698,13.33208044],[-14.9271002,-16.74695135,13.33208044],[-15.5483999,-16.74531572,13.33208044],[-16.0275993,-16.7436801,13.33208044],[-16.2469997,-16.74204447,13.33208044],[-16.4929008,-16.74040884,13.33208044],[-16.7322998,-16.73877321,13.33208044],[-16.4564991,-16.73713758,13.33208044],[-15.9259996,-16.73550196,13.33208044],[-15.7018995,-16.73386633,13.33208044],[-16.0711002,-16.7322307,13.33208044],[-16.5856991,-16.73059507,13.33208044],[-16.6222992,-16.72895945,13.33208044],[-16.2502003,-16.72732382,13.33208044],[-16.0044003,-16.72568819,13.33208044],[-15.8724003,-16.72405256,13.33208044],[-15.8514996,-16.72241693,13.33208044],[-15.7728004,-16.72078131,13.33208044],[-15.6224003,-16.71914568,13.33208044],[-15.3331003,-16.71751005,13.33208044],[-15.1375999,-16.71587442,13.33208044],[-15.0431004,-16.7142388,13.33208044],[-14.8592997,-16.71260317,13.33208044],[-14.8255997,-16.71096754,13.33208044],[-15.1613998,-16.70933191,13.33208044],[-15.6111002,-16.70769628,13.33208044],[-15.7679005,-16.70606066,13.33208044],[-15.7048998,-16.70442503,13.33208044],[-15.7250004,-16.7027894,13.33208044],[-15.7564001,-16.70115377,13.33208044],[-15.5372,-16.69951815,13.33208044],[-15.3254995,-16.69788252,13.33208044],[-15.4980001,-16.69624689,13.33208044],[-15.8807001,-16.69461126,13.33208044],[-16.2024002,-16.69297564,13.33208044],[-16.0734997,-16.69134001,13.33208044],[-15.9659996,-16.68970438,13.33208044],[-15.9568005,-16.68806875,13.33208044],[-15.6448002,-16.68643312,13.33208044],[-14.8827,-16.6847975,13.33208044],[-14.467,-16.68316187,13.33208044],[-15.2791004,-16.68152624,13.33208044],[-16.5230007,-16.67989061,13.33208044],[-17.0569992,-16.67825499,13.33208044],[-16.7476006,-16.67661936,13.33208044],[-16.5228996,-16.67498373,13.33208044],[-16.5585003,-16.6733481,13.33208044],[-16.8887005,-16.67171247,13.33208044],[-16.9955006,-16.67007685,13.33208044],[-16.9598007,-16.66844122,13.33208044],[-16.9377995,-16.66680559,13.33208044],[-16.9067001,-16.66516996,13.33208044],[-16.9375,-16.66353434,13.33208044],[-16.6072998,-16.66189871,13.33208044],[-16.3132992,-16.66026308,13.33208044],[-16.9442997,-16.65862745,13.33208044],[-17.6807003,-16.65699182,13.33208044],[-18.0540009,-16.6553562,13.33208044],[-18.5804996,-16.65372057,13.33208044],[-19.2126007,-16.65208494,13.33208044],[-19.5372009,-16.65044931,13.33208044],[-19.7133007,-16.64881369,13.33208044],[-19.8925991,-16.64717806,13.33208044],[-19.7535,-16.64554243,13.33208044],[-19.1119003,-16.6439068,13.33208044],[-18.3377991,-16.64227118,13.33208044],[-18.2031994,-16.64063555,13.33208044],[-18.2000008,-16.63899992,13.33208044],[-17.9109993,-16.63736429,13.33208044],[-17.7766991,-16.63572866,13.33208044],[-17.5221004,-16.63409304,13.33208044],[-17.2607002,-16.63245741,13.33208044],[-16.8654995,-16.63082178,13.33208044],[-16.0603008,-16.62918615,13.33208044],[-15.5914001,-16.62755053,13.33208044],[-15.2594995,-16.6259149,13.33208044],[-14.8225002,-16.62427927,13.33208044],[-14.4087,-16.62264364,13.33208044],[-13.6176004,-16.62100801,13.33208044],[-12.8534002,-16.61937239,13.33208044],[-13.0143003,-16.61773676,13.33208044],[-13.7727003,-16.61610113,13.33208044],[-14.1232004,-16.6144655,13.33208044],[-14.1794004,-16.61282988,13.33208044],[-13.6808996,-16.61119425,13.33208044],[-13.1796999,-16.60955862,13.33208044],[-13.3747997,-16.60792299,13.33208044],[-13.6353998,-16.60628736,13.33208044],[-13.5572996,-16.60465174,13.33208044],[-9.3006802,-16.80583395,13.33044481],[-11.8000002,-16.80419832,13.33044481],[-12.3361998,-16.80256269,13.33044481],[-12.8507996,-16.80092707,13.33044481],[-13.7763996,-16.79929144,13.33044481],[-13.7055998,-16.79765581,13.33044481],[-13.3979998,-16.79602018,13.33044481],[-13.3271999,-16.79438456,13.33044481],[-12.9491997,-16.79274893,13.33044481],[-12.1598997,-16.7911133,13.33044481],[-11.6587,-16.78947767,13.33044481],[-11.8738003,-16.78784204,13.33044481],[-11.7399998,-16.78620642,13.33044481],[-11.4448996,-16.78457079,13.33044481],[-12.8789997,-16.78293516,13.33044481],[-14.5368996,-16.78129953,13.33044481],[-15.0614004,-16.77966391,13.33044481],[-15.5202999,-16.77802828,13.33044481],[-16.6252003,-16.77639265,13.33044481],[-16.6354008,-16.77475702,13.33044481],[-15.6655998,-16.77312139,13.33044481],[-15.1609001,-16.77148577,13.33044481],[-14.7917004,-16.76985014,13.33044481],[-14.2052002,-16.76821451,13.33044481],[-14.3318005,-16.76657888,13.33044481],[-13.6098003,-16.76494326,13.33044481],[-12.5157003,-16.76330763,13.33044481],[-11.7423,-16.761672,13.33044481],[-12.6932001,-16.76003637,13.33044481],[-13.4282999,-16.75840074,13.33044481],[-13.5292997,-16.75676512,13.33044481],[-13.9033003,-16.75512949,13.33044481],[-13.7706003,-16.75349386,13.33044481],[-13.7978001,-16.75185823,13.33044481],[-14.6117001,-16.75022261,13.33044481],[-15.0804996,-16.74858698,13.33044481],[-15.2503004,-16.74695135,13.33044481],[-15.7473001,-16.74531572,13.33044481],[-16.0799007,-16.7436801,13.33044481],[-16.2399998,-16.74204447,13.33044481],[-16.9449997,-16.74040884,13.33044481],[-17.6473999,-16.73877321,13.33044481],[-16.9321003,-16.73713758,13.33044481],[-15.8076,-16.73550196,13.33044481],[-15.2363997,-16.73386633,13.33044481],[-16.1089001,-16.7322307,13.33044481],[-16.9713993,-16.73059507,13.33044481],[-17.1814995,-16.72895945,13.33044481],[-16.4487991,-16.72732382,13.33044481],[-15.9716997,-16.72568819,13.33044481],[-15.9165001,-16.72405256,13.33044481],[-15.8431997,-16.72241693,13.33044481],[-15.8118,-16.72078131,13.33044481],[-15.6683998,-16.71914568,13.33044481],[-15.3576002,-16.71751005,13.33044481],[-15.1218004,-16.71587442,13.33044481],[-15.1541004,-16.7142388,13.33044481],[-15.3263998,-16.71260317,13.33044481],[-15.5528002,-16.71096754,13.33044481],[-15.5480003,-16.70933191,13.33044481],[-15.8871002,-16.70769628,13.33044481],[-16.0953007,-16.70606066,13.33044481],[-15.8957005,-16.70442503,13.33044481],[-16.2404003,-16.7027894,13.33044481],[-16.3085995,-16.70115377,13.33044481],[-15.9575005,-16.69951815,13.33044481],[-15.5207005,-16.69788252,13.33044481],[-15.6236,-16.69624689,13.33044481],[-16.2198009,-16.69461126,13.33044481],[-16.6217003,-16.69297564,13.33044481],[-16.4050007,-16.69134001,13.33044481],[-16.1473999,-16.68970438,13.33044481],[-16.4918995,-16.68806875,13.33044481],[-15.8217001,-16.68643312,13.33044481],[-14.3987999,-16.6847975,13.33044481],[-13.3848,-16.68316187,13.33044481],[-15.2047997,-16.68152624,13.33044481],[-17.9085007,-16.67989061,13.33044481],[-18.9540997,-16.67825499,13.33044481],[-17,-16.67661936,13.33044481],[-15.7047005,-16.67498373,13.33044481],[-15.6927996,-16.6733481,13.33044481],[-16.6902008,-16.67171247,13.33044481],[-16.9848003,-16.67007685,13.33044481],[-16.9382992,-16.66844122,13.33044481],[-16.8353004,-16.66680559,13.33044481],[-16.4939995,-16.66516996,13.33044481],[-16.6187,-16.66353434,13.33044481],[-16.0389996,-16.66189871,13.33044481],[-14.9970999,-16.66026308,13.33044481],[-16.3462009,-16.65862745,13.33044481],[-17.5853004,-16.65699182,13.33044481],[-17.9190998,-16.6553562,13.33044481],[-18.3691998,-16.65372057,13.33044481],[-19.6051006,-16.65208494,13.33044481],[-19.9274006,-16.65044931,13.33044481],[-19.5956993,-16.64881369,13.33044481],[-20.4008999,-16.64717806,13.33044481],[-20.2175999,-16.64554243,13.33044481],[-18.6436005,-16.6439068,13.33044481],[-17.3029995,-16.64227118,13.33044481],[-17.5877991,-16.64063555,13.33044481],[-17.6191998,-16.63899992,13.33044481],[-17.1590004,-16.63736429,13.33044481],[-17.2586994,-16.63572866,13.33044481],[-17.1483994,-16.63409304,13.33044481],[-17.0997009,-16.63245741,13.33044481],[-16.5284004,-16.63082178,13.33044481],[-15.6408997,-16.62918615,13.33044481],[-15.4108,-16.62755053,13.33044481],[-14.9366999,-16.6259149,13.33044481],[-14.8142996,-16.62427927,13.33044481],[-14.7813997,-16.62264364,13.33044481],[-13.3954,-16.62100801,13.33044481],[-12.3478003,-16.61937239,13.33044481],[-12.4545002,-16.61773676,13.33044481],[-13.2687998,-16.61610113,13.33044481],[-13.9099998,-16.6144655,13.33044481],[-13.5831003,-16.61282988,13.33044481],[-12.8949003,-16.61119425,13.33044481],[-11.9420004,-16.60955862,13.33044481],[-12.8106003,-16.60792299,13.33044481],[-13.3975,-16.60628736,13.33044481],[-13.6711998,-16.60465174,13.33044481],[-9.0575199,-16.80583395,13.32880918],[-11.9415998,-16.80419832,13.32880918],[-12.2198,-16.80256269,13.32880918],[-12.6733999,-16.80092707,13.32880918],[-14.0753002,-16.79929144,13.32880918],[-13.9099998,-16.79765581,13.32880918],[-13.1569004,-16.79602018,13.32880918],[-13.3781004,-16.79438456,13.32880918],[-12.8930998,-16.79274893,13.32880918],[-12.0748997,-16.7911133,13.32880918],[-11.4287996,-16.78947767,13.32880918],[-11.8449001,-16.78784204,13.32880918],[-11.5248003,-16.78620642,13.32880918],[-11.0354996,-16.78457079,13.32880918],[-12.8717003,-16.78293516,13.32880918],[-14.7961998,-16.78129953,13.32880918],[-15.2449999,-16.77966391,13.32880918],[-15.6491003,-16.77802828,13.32880918],[-16.8929005,-16.77639265,13.32880918],[-16.8509007,-16.77475702,13.32880918],[-15.7996998,-16.77312139,13.32880918],[-15.1913004,-16.77148577,13.32880918],[-15.0254002,-16.76985014,13.32880918],[-14.5437002,-16.76821451,13.32880918],[-14.5351,-16.76657888,13.32880918],[-13.8943005,-16.76494326,13.32880918],[-12.6631002,-16.76330763,13.32880918],[-11.6597004,-16.761672,13.32880918],[-12.6773005,-16.76003637,13.32880918],[-13.3511,-16.75840074,13.32880918],[-13.4385996,-16.75676512,13.32880918],[-13.7384005,-16.75512949,13.32880918],[-13.6975002,-16.75349386,13.32880918],[-13.7739,-16.75185823,13.32880918],[-14.6576004,-16.75022261,13.32880918],[-15.1559,-16.74858698,13.32880918],[-15.3571997,-16.74695135,13.32880918],[-15.8266001,-16.74531572,13.32880918],[-16.1602001,-16.7436801,13.32880918],[-16.4127007,-16.74204447,13.32880918],[-16.9874001,-16.74040884,13.32880918],[-17.5697002,-16.73877321,13.32880918],[-16.9794998,-16.73713758,13.32880918],[-16.1077003,-16.73550196,13.32880918],[-15.5179996,-16.73386633,13.32880918],[-16.3097,-16.7322307,13.32880918],[-17.0037003,-16.73059507,13.32880918],[-17.1116009,-16.72895945,13.32880918],[-16.5604,-16.72732382,13.32880918],[-16.0443001,-16.72568819,13.32880918],[-15.9568996,-16.72405256,13.32880918],[-15.9174995,-16.72241693,13.32880918],[-15.8506002,-16.72078131,13.32880918],[-15.7487001,-16.71914568,13.32880918],[-15.4428997,-16.71751005,13.32880918],[-15.1568003,-16.71587442,13.32880918],[-15.2453003,-16.7142388,13.32880918],[-15.3636999,-16.71260317,13.32880918],[-15.5325003,-16.71096754,13.32880918],[-15.6254997,-16.70933191,13.32880918],[-15.9540005,-16.70769628,13.32880918],[-16.0562,-16.70606066,13.32880918],[-16.0666008,-16.70442503,13.32880918],[-16.0743008,-16.7027894,13.32880918],[-16.1501007,-16.70115377,13.32880918],[-16.0802002,-16.69951815,13.32880918],[-15.9271002,-16.69788252,13.32880918],[-16.1075993,-16.69624689,13.32880918],[-16.4468994,-16.69461126,13.32880918],[-16.5809002,-16.69297564,13.32880918],[-16.4403,-16.69134001,13.32880918],[-16.2838993,-16.68970438,13.32880918],[-16.2003994,-16.68806875,13.32880918],[-15.7266998,-16.68643312,13.32880918],[-14.7723999,-16.6847975,13.32880918],[-14.1919003,-16.68316187,13.32880918],[-15.3276997,-16.68152624,13.32880918],[-17.0732994,-16.67989061,13.32880918],[-17.7318993,-16.67825499,13.32880918],[-16.8523006,-16.67661936,13.32880918],[-16.2276001,-16.67498373,13.32880918],[-16.2464008,-16.6733481,13.32880918],[-16.7420006,-16.67171247,13.32880918],[-16.9724007,-16.67007685,13.32880918],[-16.8773003,-16.66844122,13.32880918],[-16.8031998,-16.66680559,13.32880918],[-16.6625996,-16.66516996,13.32880918],[-16.6669998,-16.66353434,13.32880918],[-16.2681999,-16.66189871,13.32880918],[-15.8872004,-16.66026308,13.32880918],[-16.4641991,-16.65862745,13.32880918],[-17.1452007,-16.65699182,13.32880918],[-17.5737,-16.6553562,13.32880918],[-17.9540997,-16.65372057,13.32880918],[-18.8358994,-16.65208494,13.32880918],[-19.2593002,-16.65044931,13.32880918],[-19.2199993,-16.64881369,13.32880918],[-19.719101,-16.64717806,13.32880918],[-19.4747009,-16.64554243,13.32880918],[-18.4251995,-16.6439068,13.32880918],[-17.7311001,-16.64227118,13.32880918],[-17.5298004,-16.64063555,13.32880918],[-17.3899002,-16.63899992,13.32880918],[-17.1672993,-16.63736429,13.32880918],[-17.0223007,-16.63572866,13.32880918],[-16.9466991,-16.63409304,13.32880918],[-16.7880993,-16.63245741,13.32880918],[-16.1464005,-16.63082178,13.32880918],[-15.5569,-16.62918615,13.32880918],[-15.1677999,-16.62755053,13.32880918],[-14.4962997,-16.6259149,13.32880918],[-14.0085001,-16.62427927,13.32880918],[-13.6021996,-16.62264364,13.32880918],[-12.7012997,-16.62100801,13.32880918],[-12.2234001,-16.61937239,13.32880918],[-12.1198997,-16.61773676,13.32880918],[-12.6136999,-16.61610113,13.32880918],[-13.1641998,-16.6144655,13.32880918],[-13.2379999,-16.61282988,13.32880918],[-12.9896002,-16.61119425,13.32880918],[-12.8800001,-16.60955862,13.32880918],[-13.0599003,-16.60792299,13.32880918],[-13.2750998,-16.60628736,13.32880918],[-13.2849998,-16.60465174,13.32880918],[-10.1995001,-16.80419832,13.32717356],[-10.8172998,-16.80256269,13.32717356],[-12.0676003,-16.80092707,13.32717356],[-13.2607002,-16.79929144,13.32717356],[-13.4140997,-16.79765581,13.32717356],[-12.7617998,-16.79602018,13.32717356],[-12.4268999,-16.79438456,13.32717356],[-12.2769003,-16.79274893,13.32717356],[-12.2879,-16.7911133,13.32717356],[-12.2228003,-16.78947767,13.32717356],[-12.3690996,-16.78784204,13.32717356],[-12.3396997,-16.78620642,13.32717356],[-12.5235996,-16.78457079,13.32717356],[-13.4268999,-16.78293516,13.32717356],[-14.2861996,-16.78129953,13.32717356],[-14.9355001,-16.77966391,13.32717356],[-15.6722002,-16.77802828,13.32717356],[-16.5543995,-16.77639265,13.32717356],[-16.5562,-16.77475702,13.32717356],[-15.9378996,-16.77312139,13.32717356],[-15.3789997,-16.77148577,13.32717356],[-14.9990997,-16.76985014,13.32717356],[-14.7178001,-16.76821451,13.32717356],[-14.3691998,-16.76657888,13.32717356],[-13.9974003,-16.76494326,13.32717356],[-13.5712996,-16.76330763,13.32717356],[-13.4205999,-16.761672,13.32717356],[-13.4048996,-16.76003637,13.32717356],[-13.2792997,-16.75840074,13.32717356],[-13.3858995,-16.75676512,13.32717356],[-13.8813,-16.75512949,13.32717356],[-14.4694996,-16.75349386,13.32717356],[-14.6489,-16.75185823,13.32717356],[-14.8175001,-16.75022261,13.32717356],[-15.0869999,-16.74858698,13.32717356],[-15.3659,-16.74695135,13.32717356],[-16.1406002,-16.74531572,13.32717356],[-16.8654995,-16.7436801,13.32717356],[-16.9356995,-16.74204447,13.32717356],[-16.8075008,-16.74040884,13.32717356],[-16.7964993,-16.73877321,13.32717356],[-16.8715992,-16.73713758,13.32717356],[-17.0531998,-16.73550196,13.32717356],[-17.2360992,-16.73386633,13.32717356],[-16.9857998,-16.7322307,13.32717356],[-16.7826996,-16.73059507,13.32717356],[-16.6406994,-16.72895945,13.32717356],[-16.4109993,-16.72732382,13.32717356],[-16.0391006,-16.72568819,13.32717356],[-15.8695002,-16.72405256,13.32717356],[-15.9778996,-16.72241693,13.32717356],[-16.1170998,-16.72078131,13.32717356],[-15.9252996,-16.71914568,13.32717356],[-15.4317999,-16.71751005,13.32717356],[-14.9513998,-16.71587442,13.32717356],[-15.1077995,-16.7142388,13.32717356],[-15.4153004,-16.71260317,13.32717356],[-15.6033001,-16.71096754,13.32717356],[-15.7677002,-16.70933191,13.32717356],[-16.2665997,-16.70769628,13.32717356],[-16.4533997,-16.70606066,13.32717356],[-16.0244007,-16.70442503,13.32717356],[-15.2805996,-16.7027894,13.32717356],[-15.2020998,-16.70115377,13.32717356],[-16.2896996,-16.69951815,13.32717356],[-17.5608997,-16.69788252,13.32717356],[-17.5548992,-16.69624689,13.32717356],[-16.8313999,-16.69461126,13.32717356],[-16.5065002,-16.69297564,13.32717356],[-16.3229008,-16.69134001,13.32717356],[-16.1149006,-16.68970438,13.32717356],[-15.8067999,-16.68806875,13.32717356],[-15.6410999,-16.68643312,13.32717356],[-15.2469997,-16.6847975,13.32717356],[-15.0682001,-16.68316187,13.32717356],[-15.3332996,-16.68152624,13.32717356],[-15.5174999,-16.67989061,13.32717356],[-15.6438999,-16.67825499,13.32717356],[-16.3906002,-16.67661936,13.32717356],[-17.1504002,-16.67498373,13.32717356],[-17.2971001,-16.6733481,13.32717356],[-16.9473991,-16.67171247,13.32717356],[-16.6273994,-16.67007685,13.32717356],[-16.7406006,-16.66844122,13.32717356],[-16.8966999,-16.66680559,13.32717356],[-17.0967007,-16.66516996,13.32717356],[-16.9403992,-16.66353434,13.32717356],[-16.8348999,-16.66189871,13.32717356],[-16.9712009,-16.66026308,13.32717356],[-16.7865009,-16.65862745,13.32717356],[-16.4442997,-16.65699182,13.32717356],[-16.2737999,-16.6553562,13.32717356],[-17.1823997,-16.65372057,13.32717356],[-17.7838001,-16.65208494,13.32717356],[-17.9535007,-16.65044931,13.32717356],[-18.6578999,-16.64881369,13.32717356],[-19.0648994,-16.64717806,13.32717356],[-18.9754009,-16.64554243,13.32717356],[-18.1541996,-16.6439068,13.32717356],[-17.2779007,-16.64227118,13.32717356],[-17.2273998,-16.64063555,13.32717356],[-17.1709995,-16.63899992,13.32717356],[-16.8992996,-16.63736429,13.32717356],[-16.8269997,-16.63572866,13.32717356],[-16.7826996,-16.63409304,13.32717356],[-16.6529007,-16.63245741,13.32717356],[-16.0200005,-16.63082178,13.32717356],[-15.3031998,-16.62918615,13.32717356],[-14.9131002,-16.62755053,13.32717356],[-14.0264997,-16.6259149,13.32717356],[-12.5067997,-16.62427927,13.32717356],[-11.9870005,-16.62264364,13.32717356],[-11.8380003,-16.62100801,13.32717356],[-10.6772003,-16.61937239,13.32717356],[-10.9259996,-16.61773676,13.32717356],[-12.1429005,-16.61610113,13.32717356],[-12.8919001,-16.6144655,13.32717356],[-12.9638996,-16.61282988,13.32717356],[-13.2621002,-16.61119425,13.32717356],[-13.7779999,-16.60955862,13.32717356],[-13.3442001,-16.60792299,13.32717356],[-13.2077999,-16.60628736,13.32717356],[-13.1035004,-16.60465174,13.32717356],[-8.2006702,-16.80419832,13.32553793],[-8.5701303,-16.80256269,13.32553793],[-11.5085001,-16.80092707,13.32553793],[-14.2945995,-16.79929144,13.32553793],[-13.9027004,-16.79765581,13.32553793],[-12.1901999,-16.79602018,13.32553793],[-10.5593996,-16.79438456,13.32553793],[-11.3705997,-16.79274893,13.32553793],[-12.5506001,-16.7911133,13.32553793],[-13.2854004,-16.78947767,13.32553793],[-12.8775997,-16.78784204,13.32553793],[-12.9904003,-16.78620642,13.32553793],[-13.1550999,-16.78457079,13.32553793],[-13.6492996,-16.78293516,13.32553793],[-14.3374004,-16.78129953,13.32553793],[-14.5464001,-16.77966391,13.32553793],[-15.6711998,-16.77802828,13.32553793],[-17.2772007,-16.77639265,13.32553793],[-17.2399998,-16.77475702,13.32553793],[-15.9298,-16.77312139,13.32553793],[-15.0733995,-16.77148577,13.32553793],[-15.0536003,-16.76985014,13.32553793],[-14.7845001,-16.76821451,13.32553793],[-14.3506002,-16.76657888,13.32553793],[-14.3403997,-16.76494326,13.32553793],[-14.2716999,-16.76330763,13.32553793],[-14.3880997,-16.761672,13.32553793],[-13.9049997,-16.76003637,13.32553793],[-12.941,-16.75840074,13.32553793],[-12.2786999,-16.75676512,13.32553793],[-13.8762999,-16.75512949,13.32553793],[-14.9612999,-16.75349386,13.32553793],[-15.1416998,-16.75185823,13.32553793],[-15.0445004,-16.75022261,13.32553793],[-14.4132996,-16.74858698,13.32553793],[-14.8029003,-16.74695135,13.32553793],[-16.6065998,-16.74531572,13.32553793],[-18.2047997,-16.7436801,13.32553793],[-17.6063004,-16.74204447,13.32553793],[-16.6749001,-16.74040884,13.32553793],[-16.0983009,-16.73877321,13.32553793],[-16.7551994,-16.73713758,13.32553793],[-17.9293003,-16.73550196,13.32553793],[-18.8188,-16.73386633,13.32553793],[-17.5844994,-16.7322307,13.32553793],[-16.6341,-16.73059507,13.32553793],[-16.3731003,-16.72895945,13.32553793],[-16.3416004,-16.72732382,13.32553793],[-15.5105,-16.72568819,13.32553793],[-15.4587002,-16.72405256,13.32553793],[-16.1382008,-16.72241693,13.32553793],[-16.7101002,-16.72078131,13.32553793],[-16.4074993,-16.71914568,13.32553793],[-15.309,-16.71751005,13.32553793],[-14.2606001,-16.71587442,13.32553793],[-14.8683004,-16.7142388,13.32553793],[-15.5408001,-16.71260317,13.32553793],[-15.7318001,-16.71096754,13.32553793],[-15.8571997,-16.70933191,13.32553793],[-16.8841,-16.70769628,13.32553793],[-17.7304001,-16.70606066,13.32553793],[-16.0636005,-16.70442503,13.32553793],[-14.1175003,-16.7027894,13.32553793],[-13.7356997,-16.70115377,13.32553793],[-16.4099998,-16.69951815,13.32553793],[-19.6294994,-16.69788252,13.32553793],[-19.2763004,-16.69624689,13.32553793],[-17.0524006,-16.69461126,13.32553793],[-16.2350006,-16.69297564,13.32553793],[-16.3346996,-16.69134001,13.32553793],[-16.0594997,-16.68970438,13.32553793],[-15.6434002,-16.68806875,13.32553793],[-15.7393999,-16.68643312,13.32553793],[-15.3435001,-16.6847975,13.32553793],[-14.8759003,-16.68316187,13.32553793],[-15.3597002,-16.68152624,13.32553793],[-14.7965002,-16.67989061,13.32553793],[-14.2608995,-16.67825499,13.32553793],[-16.1539001,-16.67661936,13.32553793],[-17.8491993,-16.67498373,13.32553793],[-17.9871998,-16.6733481,13.32553793],[-17.0009995,-16.67171247,13.32553793],[-16.3920002,-16.67007685,13.32553793],[-16.5590992,-16.66844122,13.32553793],[-16.9370003,-16.66680559,13.32553793],[-17.4550991,-16.66516996,13.32553793],[-17.1315994,-16.66353434,13.32553793],[-17.0484009,-16.66189871,13.32553793],[-17.4986992,-16.66026308,13.32553793],[-16.9073009,-16.65862745,13.32553793],[-15.9666004,-16.65699182,13.32553793],[-15.2350998,-16.6553562,13.32553793],[-16.6744995,-16.65372057,13.32553793],[-17.3071995,-16.65208494,13.32553793],[-17.2994995,-16.65044931,13.32553793],[-18.2469006,-16.64881369,13.32553793],[-19.1713009,-16.64717806,13.32553793],[-19.0974007,-16.64554243,13.32553793],[-17.8801994,-16.6439068,13.32553793],[-16.8376999,-16.64227118,13.32553793],[-16.9316006,-16.64063555,13.32553793],[-16.9139004,-16.63899992,13.32553793],[-16.7868004,-16.63736429,13.32553793],[-16.6511993,-16.63572866,13.32553793],[-16.5221996,-16.63409304,13.32553793],[-16.7968998,-16.63245741,13.32553793],[-15.9148998,-16.63082178,13.32553793],[-15.1283998,-16.62918615,13.32553793],[-15.0689001,-16.62755053,13.32553793],[-13.6941004,-16.6259149,13.32553793],[-11.8042002,-16.62427927,13.32553793],[-11.4152002,-16.62264364,13.32553793],[-11.3255997,-16.62100801,13.32553793],[-9.9374504,-16.61937239,13.32553793],[-10.2348003,-16.61773676,13.32553793],[-11.7740002,-16.61610113,13.32553793],[-13.0874996,-16.6144655,13.32553793],[-12.7213001,-16.61282988,13.32553793],[-13.0543003,-16.61119425,13.32553793],[-14.0644999,-16.60955862,13.32553793],[-13.3787003,-16.60792299,13.32553793],[-13.0443001,-16.60628736,13.32553793],[-13.1126003,-16.60465174,13.32553793],[-7.9071999,-16.80419832,13.3239023],[-8.2526598,-16.80256269,13.3239023],[-10.9315004,-16.80092707,13.3239023],[-14.0511999,-16.79929144,13.3239023],[-13.7706003,-16.79765581,13.3239023],[-11.8408003,-16.79602018,13.3239023],[-10.6808004,-16.79438456,13.3239023],[-11.3947001,-16.79274893,13.3239023],[-12.5143995,-16.7911133,13.3239023],[-13.2163,-16.78947767,13.3239023],[-13.0024996,-16.78784204,13.3239023],[-13.0861998,-16.78620642,13.3239023],[-13.2734003,-16.78457079,13.3239023],[-13.8395004,-16.78293516,13.3239023],[-14.4317999,-16.78129953,13.3239023],[-14.6506004,-16.77966391,13.3239023],[-15.7030001,-16.77802828,13.3239023],[-16.9522991,-16.77639265,13.3239023],[-16.9409008,-16.77475702,13.3239023],[-15.9841003,-16.77312139,13.3239023],[-15.2735004,-16.77148577,13.3239023],[-15.3139,-16.76985014,13.3239023],[-15.1393995,-16.76821451,13.3239023],[-14.6253996,-16.76657888,13.3239023],[-14.7594995,-16.76494326,13.3239023],[-14.7747002,-16.76330763,13.3239023],[-14.6134996,-16.761672,13.3239023],[-14.5797005,-16.76003637,13.3239023],[-13.7046003,-16.75840074,13.3239023],[-13.1625004,-16.75676512,13.3239023],[-14.5159998,-16.75512949,13.3239023],[-15.1476002,-16.75349386,13.3239023],[-15.3457003,-16.75185823,13.3239023],[-15.5173998,-16.75022261,13.3239023],[-15.0895004,-16.74858698,13.3239023],[-15.4808998,-16.74695135,13.3239023],[-16.7341003,-16.74531572,13.3239023],[-17.6359005,-16.7436801,13.3239023],[-17.3785,-16.74204447,13.3239023],[-16.8225002,-16.74040884,13.3239023],[-16.4825993,-16.73877321,13.3239023],[-16.9284992,-16.73713758,13.3239023],[-17.7581997,-16.73550196,13.3239023],[-18.1956005,-16.73386633,13.3239023],[-17.6305008,-16.7322307,13.3239023],[-17.0126991,-16.73059507,13.3239023],[-16.7628002,-16.72895945,13.3239023],[-16.6947994,-16.72732382,13.3239023],[-16.0921001,-16.72568819,13.3239023],[-15.9556999,-16.72405256,13.3239023],[-16.2681007,-16.72241693,13.3239023],[-16.3976994,-16.72078131,13.3239023],[-16.1851006,-16.71914568,13.3239023],[-15.5804005,-16.71751005,13.3239023],[-15.0415001,-16.71587442,13.3239023],[-15.2505999,-16.7142388,13.3239023],[-15.4728003,-16.71260317,13.3239023],[-15.6141996,-16.71096754,13.3239023],[-15.7522001,-16.70933191,13.3239023],[-16.3351002,-16.70769628,13.3239023],[-16.6126995,-16.70606066,13.3239023],[-15.8128004,-16.70442503,13.3239023],[-14.7995005,-16.7027894,13.3239023],[-14.7734003,-16.70115377,13.3239023],[-16.2488995,-16.69951815,13.3239023],[-17.9592991,-16.69788252,13.3239023],[-18.0233994,-16.69624689,13.3239023],[-17.0596008,-16.69461126,13.3239023],[-16.5613003,-16.69297564,13.3239023],[-16.4867001,-16.69134001,13.3239023],[-16.4659004,-16.68970438,13.3239023],[-16.1201,-16.68806875,13.3239023],[-16.0296993,-16.68643312,13.3239023],[-15.8122997,-16.6847975,13.3239023],[-15.6507998,-16.68316187,13.3239023],[-15.7678003,-16.68152624,13.3239023],[-15.5003004,-16.67989061,13.3239023],[-15.5080996,-16.67825499,13.3239023],[-16.4426003,-16.67661936,13.3239023],[-17.2577,-16.67498373,13.3239023],[-17.5554008,-16.6733481,13.3239023],[-17.1709995,-16.67171247,13.3239023],[-16.8759995,-16.67007685,13.3239023],[-16.9186001,-16.66844122,13.3239023],[-17.0473995,-16.66680559,13.3239023],[-17.0081997,-16.66516996,13.3239023],[-16.8302994,-16.66353434,13.3239023],[-16.8518009,-16.66189871,13.3239023],[-17.0004997,-16.66026308,13.3239023],[-16.7854996,-16.65862745,13.3239023],[-16.3432999,-16.65699182,13.3239023],[-16.2306995,-16.6553562,13.3239023],[-16.9356003,-16.65372057,13.3239023],[-17.5727005,-16.65208494,13.3239023],[-17.8581009,-16.65044931,13.3239023],[-18.1970005,-16.64881369,13.3239023],[-18.6257,-16.64717806,13.3239023],[-18.6172009,-16.64554243,13.3239023],[-17.8609009,-16.6439068,13.3239023],[-17.2581997,-16.64227118,13.3239023],[-16.9722996,-16.64063555,13.3239023],[-16.9037991,-16.63899992,13.3239023],[-16.7091007,-16.63736429,13.3239023],[-16.4417,-16.63572866,13.3239023],[-16.2362003,-16.63409304,13.3239023],[-16.0196991,-16.63245741,13.3239023],[-15.3303003,-16.63082178,13.3239023],[-14.7441998,-16.62918615,13.3239023],[-14.2786999,-16.62755053,13.3239023],[-13.3546,-16.6259149,13.3239023],[-12.5087996,-16.62427927,13.3239023],[-12.0403996,-16.62264364,13.3239023],[-11.3687,-16.62100801,13.3239023],[-10.6417999,-16.61937239,13.3239023],[-10.5981998,-16.61773676,13.3239023],[-11.0023003,-16.61610113,13.3239023],[-11.2862997,-16.6144655,13.3239023],[-11.5480003,-16.61282988,13.3239023],[-12.0761995,-16.61119425,13.3239023],[-12.5993004,-16.60955862,13.3239023],[-12.6914997,-16.60792299,13.3239023],[-12.7757998,-16.60628736,13.3239023],[-12.8199997,-16.60465174,13.3239023],[-7.7286601,-16.80256269,13.32226667],[-10.2383003,-16.80092707,13.32226667],[-12.0855999,-16.79929144,13.32226667],[-12.5544996,-16.79765581,13.32226667],[-11.8863001,-16.79602018,13.32226667],[-11.5234003,-16.79438456,13.32226667],[-11.6838999,-16.79274893,13.32226667],[-12.46,-16.7911133,13.32226667],[-12.8129997,-16.78947767,13.32226667],[-12.9679003,-16.78784204,13.32226667],[-13.1457996,-16.78620642,13.32226667],[-13.4848003,-16.78457079,13.32226667],[-14.0459995,-16.78293516,13.32226667],[-14.6238003,-16.78129953,13.32226667],[-15.0731001,-16.77966391,13.32226667],[-15.5816002,-16.77802828,13.32226667],[-15.9692001,-16.77639265,13.32226667],[-16.0748005,-16.77475702,13.32226667],[-16.0347996,-16.77312139,13.32226667],[-16.1595993,-16.77148577,13.32226667],[-15.9503002,-16.76985014,13.32226667],[-15.5909004,-16.76821451,13.32226667],[-15.3930998,-16.76657888,13.32226667],[-15.4694004,-16.76494326,13.32226667],[-15.7079,-16.76330763,13.32226667],[-15.8605003,-16.761672,13.32226667],[-15.5565004,-16.76003637,13.32226667],[-15.4832001,-16.75840074,13.32226667],[-15.6232004,-16.75676512,13.32226667],[-15.5654001,-16.75512949,13.32226667],[-15.9098997,-16.75349386,13.32226667],[-16.0969009,-16.75185823,13.32226667],[-16.2803001,-16.75022261,13.32226667],[-16.8829002,-16.74858698,13.32226667],[-16.9810009,-16.74695135,13.32226667],[-16.9041004,-16.74531572,13.32226667],[-17.0060005,-16.7436801,13.32226667],[-17.0289993,-16.74204447,13.32226667],[-16.7945995,-16.74040884,13.32226667],[-16.6599007,-16.73877321,13.32226667],[-16.9554005,-16.73713758,13.32226667],[-17.4645004,-16.73550196,13.32226667],[-17.6741009,-16.73386633,13.32226667],[-17.655899,-16.7322307,13.32226667],[-17.8071003,-16.73059507,13.32226667],[-17.8316994,-16.72895945,13.32226667],[-17.2653999,-16.72732382,13.32226667],[-16.9706993,-16.72568819,13.32226667],[-16.8209991,-16.72405256,13.32226667],[-16.4034996,-16.72241693,13.32226667],[-16.0305996,-16.72078131,13.32226667],[-15.9301004,-16.71914568,13.32226667],[-16.0028,-16.71751005,13.32226667],[-16.2768002,-16.71587442,13.32226667],[-15.9108,-16.7142388,13.32226667],[-15.2173996,-16.71260317,13.32226667],[-14.7607002,-16.71096754,13.32226667],[-15.2685003,-16.70933191,13.32226667],[-15.7996998,-16.70769628,13.32226667],[-15.8423996,-16.70606066,13.32226667],[-15.4748001,-16.70442503,13.32226667],[-14.6247997,-16.7027894,13.32226667],[-14.5277996,-16.70115377,13.32226667],[-15.8815002,-16.69951815,13.32226667],[-16.9524994,-16.69788252,13.32226667],[-17.1278992,-16.69624689,13.32226667],[-16.8145008,-16.69461126,13.32226667],[-16.3946991,-16.69297564,13.32226667],[-16.5821991,-16.69134001,13.32226667],[-16.8293991,-16.68970438,13.32226667],[-16.9794006,-16.68806875,13.32226667],[-16.6604996,-16.68643312,13.32226667],[-16.5781994,-16.6847975,13.32226667],[-16.8292999,-16.68316187,13.32226667],[-16.4090004,-16.68152624,13.32226667],[-16.2572002,-16.67989061,13.32226667],[-16.3367004,-16.67825499,13.32226667],[-16.6877995,-16.67661936,13.32226667],[-17.3871002,-16.67498373,13.32226667],[-17.4559002,-16.6733481,13.32226667],[-17.3458004,-16.67171247,13.32226667],[-17.3155994,-16.67007685,13.32226667],[-17.2558002,-16.66844122,13.32226667],[-16.9113007,-16.66680559,13.32226667],[-16.3029003,-16.66516996,13.32226667],[-16.5126991,-16.66353434,13.32226667],[-16.7707005,-16.66189871,13.32226667],[-16.8540993,-16.66026308,13.32226667],[-16.7763004,-16.65862745,13.32226667],[-16.4731998,-16.65699182,13.32226667],[-16.3251991,-16.6553562,13.32226667],[-17.0708008,-16.65372057,13.32226667],[-18.0209007,-16.65208494,13.32226667],[-18.3619995,-16.65044931,13.32226667],[-18.2849007,-16.64881369,13.32226667],[-18.7693005,-16.64717806,13.32226667],[-18.6560001,-16.64554243,13.32226667],[-17.7689991,-16.6439068,13.32226667],[-16.8278008,-16.64227118,13.32226667],[-16.8171997,-16.64063555,13.32226667],[-16.8094997,-16.63899992,13.32226667],[-16.5163994,-16.63736429,13.32226667],[-16.3614998,-16.63572866,13.32226667],[-15.7233,-16.63409304,13.32226667],[-15.1636,-16.63245741,13.32226667],[-14.9820995,-16.63082178,13.32226667],[-13.8592997,-16.62918615,13.32226667],[-13.2584,-16.62755053,13.32226667],[-13.1808996,-16.6259149,13.32226667],[-12.7655001,-16.62427927,13.32226667],[-12.5307999,-16.62264364,13.32226667],[-11.4962997,-16.62100801,13.32226667],[-10.3200998,-16.61937239,13.32226667],[-10.2646999,-16.61773676,13.32226667],[-10.2010002,-16.61610113,13.32226667],[-9.1127005,-16.6144655,13.32226667],[-9.9754295,-16.61282988,13.32226667],[-11.2875996,-16.61119425,13.32226667],[-11.6723003,-16.60955862,13.32226667],[-12.0173998,-16.60792299,13.32226667],[-12.5671997,-16.60628736,13.32226667],[-12.9027996,-16.60465174,13.32226667],[-4.53826,-16.80256269,13.32063104],[-9.5861101,-16.80092707,13.32063104],[-12.6485004,-16.79929144,13.32063104],[-12.5368004,-16.79765581,13.32063104],[-11.4709997,-16.79602018,13.32063104],[-10.2316999,-16.79438456,13.32063104],[-11.2613001,-16.79274893,13.32063104],[-12.5741997,-16.7911133,13.32063104],[-13.0833998,-16.78947767,13.32063104],[-13.0993996,-16.78784204,13.32063104],[-13.3366003,-16.78620642,13.32063104],[-13.4745998,-16.78457079,13.32063104],[-14.1155996,-16.78293516,13.32063104],[-15.1391001,-16.78129953,13.32063104],[-15.4446001,-16.77966391,13.32063104],[-15.3857002,-16.77802828,13.32063104],[-15.7252998,-16.77639265,13.32063104],[-15.7741003,-16.77475702,13.32063104],[-16.0881996,-16.77312139,13.32063104],[-16.9235992,-16.77148577,13.32063104],[-16.5741997,-16.76985014,13.32063104],[-15.9320002,-16.76821451,13.32063104],[-15.4635,-16.76657888,13.32063104],[-15.7981005,-16.76494326,13.32063104],[-16.4533005,-16.76330763,13.32063104],[-16.9057007,-16.761672,13.32063104],[-16.5328999,-16.76003637,13.32063104],[-16.5667992,-16.75840074,13.32063104],[-16.9550991,-16.75676512,13.32063104],[-16.4225006,-16.75512949,13.32063104],[-16.5233994,-16.75349386,13.32063104],[-16.6049004,-16.75185823,13.32063104],[-16.8857994,-16.75022261,13.32063104],[-17.9972992,-16.74858698,13.32063104],[-17.8236008,-16.74695135,13.32063104],[-17.0937004,-16.74531572,13.32063104],[-16.9587002,-16.7436801,13.32063104],[-16.9085007,-16.74204447,13.32063104],[-16.7028008,-16.74040884,13.32063104],[-16.3279991,-16.73877321,13.32063104],[-16.8173008,-16.73713758,13.32063104],[-17.5181999,-16.73550196,13.32063104],[-17.7532997,-16.73386633,13.32063104],[-17.7465992,-16.7322307,13.32063104],[-18.3031998,-16.73059507,13.32063104],[-18.5888996,-16.72895945,13.32063104],[-17.6532001,-16.72732382,13.32063104],[-17.3029995,-16.72568819,13.32063104],[-17.2493,-16.72405256,13.32063104],[-16.5116997,-16.72241693,13.32063104],[-15.6736002,-16.72078131,13.32063104],[-15.8167,-16.71914568,13.32063104],[-16.3183002,-16.71751005,13.32063104],[-17.0333004,-16.71587442,13.32063104],[-16.3556995,-16.7142388,13.32063104],[-15.0763998,-16.71260317,13.32063104],[-13.8139,-16.71096754,13.32063104],[-14.9624004,-16.70933191,13.32063104],[-15.7529001,-16.70769628,13.32063104],[-15.8636999,-16.70606066,13.32063104],[-15.4949999,-16.70442503,13.32063104],[-14.0255003,-16.7027894,13.32063104],[-13.6269999,-16.70115377,13.32063104],[-15.8205996,-16.69951815,13.32063104],[-17.0578003,-16.69788252,13.32063104],[-17.1422997,-16.69624689,13.32063104],[-16.7933998,-16.69461126,13.32063104],[-16.0340004,-16.69297564,13.32063104],[-16.4449997,-16.69134001,13.32063104],[-17.0140991,-16.68970438,13.32063104],[-17.3533993,-16.68806875,13.32063104],[-17.0937996,-16.68643312,13.32063104],[-17.0098,-16.6847975,13.32063104],[-17.2924995,-16.68316187,13.32063104],[-16.7516003,-16.68152624,13.32063104],[-16.4328003,-16.67989061,13.32063104],[-16.3768005,-16.67825499,13.32063104],[-16.8370991,-16.67661936,13.32063104],[-17.5034008,-16.67498373,13.32063104],[-17.6103001,-16.6733481,13.32063104],[-17.5466003,-16.67171247,13.32063104],[-17.4134998,-16.67007685,13.32063104],[-17.4235992,-16.66844122,13.32063104],[-17.0538006,-16.66680559,13.32063104],[-16.0256996,-16.66516996,13.32063104],[-16.5305004,-16.66353434,13.32063104],[-16.9757996,-16.66189871,13.32063104],[-16.9025993,-16.66026308,13.32063104],[-16.9386005,-16.65862745,13.32063104],[-16.5263004,-16.65699182,13.32063104],[-16.1569996,-16.6553562,13.32063104],[-17.0312996,-16.65372057,13.32063104],[-18.0764008,-16.65208494,13.32063104],[-18.4279003,-16.65044931,13.32063104],[-18.1853008,-16.64881369,13.32063104],[-18.7777004,-16.64717806,13.32063104],[-18.7544003,-16.64554243,13.32063104],[-17.7798004,-16.6439068,13.32063104],[-16.7376995,-16.64227118,13.32063104],[-16.8782005,-16.64063555,13.32063104],[-16.9102001,-16.63899992,13.32063104],[-16.5256996,-16.63736429,13.32063104],[-16.4305,-16.63572866,13.32063104],[-15.7431002,-16.63409304,13.32063104],[-15.1073999,-16.63245741,13.32063104],[-14.9435997,-16.63082178,13.32063104],[-13.8225002,-16.62918615,13.32063104],[-13.1842003,-16.62755053,13.32063104],[-13.2344999,-16.6259149,13.32063104],[-12.7498999,-16.62427927,13.32063104],[-12.5546999,-16.62264364,13.32063104],[-11.4629002,-16.62100801,13.32063104],[-10.3789997,-16.61937239,13.32063104],[-10.3618002,-16.61773676,13.32063104],[-10.2042999,-16.61610113,13.32063104],[-9.1368599,-16.6144655,13.32063104],[-9.8295803,-16.61282988,13.32063104],[-11.0865002,-16.61119425,13.32063104],[-11.5888996,-16.60955862,13.32063104],[-11.7214003,-16.60792299,13.32063104],[-12.2410002,-16.60628736,13.32063104],[-12.7290001,-16.60465174,13.32063104],[-5.79074,-16.80256269,13.31899542],[-9.3950005,-16.80092707,13.31899542],[-12.0277996,-16.79929144,13.31899542],[-12.4638996,-16.79765581,13.31899542],[-12.0535002,-16.79602018,13.31899542],[-11.3353004,-16.79438456,13.31899542],[-11.9660997,-16.79274893,13.31899542],[-12.7397003,-16.7911133,13.31899542],[-12.9713001,-16.78947767,13.31899542],[-13.2083998,-16.78784204,13.31899542],[-13.4025002,-16.78620642,13.31899542],[-13.6287003,-16.78457079,13.31899542],[-14.0494003,-16.78293516,13.31899542],[-14.7954998,-16.78129953,13.31899542],[-15.1469002,-16.77966391,13.31899542],[-15.2426996,-16.77802828,13.31899542],[-15.5233002,-16.77639265,13.31899542],[-15.6089001,-16.77475702,13.31899542],[-15.8198004,-16.77312139,13.31899542],[-16.2091007,-16.77148577,13.31899542],[-16.1578007,-16.76985014,13.31899542],[-16.0998001,-16.76821451,13.31899542],[-16.0319004,-16.76657888,13.31899542],[-16.4241009,-16.76494326,13.31899542],[-16.8556004,-16.76330763,13.31899542],[-16.9270992,-16.761672,13.31899542],[-16.8953991,-16.76003637,13.31899542],[-16.6516991,-16.75840074,13.31899542],[-16.7000999,-16.75676512,13.31899542],[-16.7108994,-16.75512949,13.31899542],[-16.6301003,-16.75349386,13.31899542],[-16.6844006,-16.75185823,13.31899542],[-17.0077,-16.75022261,13.31899542],[-17.4244995,-16.74858698,13.31899542],[-17.3729992,-16.74695135,13.31899542],[-17.1215992,-16.74531572,13.31899542],[-17.0077991,-16.7436801,13.31899542],[-17.0340996,-16.74204447,13.31899542],[-16.7490997,-16.74040884,13.31899542],[-16.5452995,-16.73877321,13.31899542],[-16.8101997,-16.73713758,13.31899542],[-17.3785992,-16.73550196,13.31899542],[-17.6499004,-16.73386633,13.31899542],[-17.7259007,-16.7322307,13.31899542],[-17.8411007,-16.73059507,13.31899542],[-17.9132996,-16.72895945,13.31899542],[-17.6142998,-16.72732382,13.31899542],[-17.4034004,-16.72568819,13.31899542],[-17.2481995,-16.72405256,13.31899542],[-16.8588009,-16.72241693,13.31899542],[-16.3710995,-16.72078131,13.31899542],[-16.1485996,-16.71914568,13.31899542],[-16.2381001,-16.71751005,13.31899542],[-16.2472,-16.71587442,13.31899542],[-16.0354996,-16.7142388,13.31899542],[-15.6341,-16.71260317,13.31899542],[-15.3965998,-16.71096754,13.31899542],[-15.7138996,-16.70933191,13.31899542],[-16.0356998,-16.70769628,13.31899542],[-15.9251003,-16.70606066,13.31899542],[-15.6099997,-16.70442503,13.31899542],[-15.0221004,-16.7027894,13.31899542],[-15.0707998,-16.70115377,13.31899542],[-16.0867004,-16.69951815,13.31899542],[-16.9887009,-16.69788252,13.31899542],[-17.2842999,-16.69624689,13.31899542],[-17.2567005,-16.69461126,13.31899542],[-17.1301003,-16.69297564,13.31899542],[-17.0785999,-16.69134001,13.31899542],[-17.2541008,-16.68970438,13.31899542],[-17.2919006,-16.68806875,13.31899542],[-17.1881008,-16.68643312,13.31899542],[-16.9815006,-16.6847975,13.31899542],[-16.8183002,-16.68316187,13.31899542],[-16.7098999,-16.68152624,13.31899542],[-16.5109997,-16.67989061,13.31899542],[-16.5053005,-16.67825499,13.31899542],[-16.9799004,-16.67661936,13.31899542],[-17.4349003,-16.67498373,13.31899542],[-17.7133007,-16.6733481,13.31899542],[-18.0219002,-16.67171247,13.31899542],[-18.4051991,-16.67007685,13.31899542],[-18.2779007,-16.66844122,13.31899542],[-17.7740993,-16.66680559,13.31899542],[-17.3843994,-16.66516996,13.31899542],[-17.3539009,-16.66353434,13.31899542],[-17.3476009,-16.66189871,13.31899542],[-17.1394997,-16.66026308,13.31899542],[-17.1707001,-16.65862745,13.31899542],[-17.3630009,-16.65699182,13.31899542],[-17.4223003,-16.6553562,13.31899542],[-17.3264008,-16.65372057,13.31899542],[-17.2663002,-16.65208494,13.31899542],[-17.4521999,-16.65044931,13.31899542],[-17.8726997,-16.64881369,13.31899542],[-18.2586994,-16.64717806,13.31899542],[-18.3495007,-16.64554243,13.31899542],[-18.1417007,-16.6439068,13.31899542],[-17.9342995,-16.64227118,13.31899542],[-17.6744003,-16.64063555,13.31899542],[-17.5685005,-16.63899992,13.31899542],[-17.4214001,-16.63736429,13.31899542],[-16.9179993,-16.63572866,13.31899542],[-16.2896004,-16.63409304,13.31899542],[-15.7925997,-16.63245741,13.31899542],[-15.1822996,-16.63082178,13.31899542],[-14.5657997,-16.62918615,13.31899542],[-13.9636002,-16.62755053,13.31899542],[-13.2838001,-16.6259149,13.31899542],[-12.7304001,-16.62427927,13.31899542],[-12.2809,-16.62264364,13.31899542],[-11.6864004,-16.62100801,13.31899542],[-11.4401999,-16.61937239,13.31899542],[-11.2124004,-16.61773676,13.31899542],[-10.6921997,-16.61610113,13.31899542],[-10.2641001,-16.6144655,13.31899542],[-10.4897003,-16.61282988,13.31899542],[-10.9818001,-16.61119425,13.31899542],[-11.2369003,-16.60955862,13.31899542],[-11.3365002,-16.60792299,13.31899542],[-11.5924997,-16.60628736,13.31899542],[-11.7212,-16.60465174,13.31899542],[-6.3477001,-16.80256269,13.31735979],[-9.7743797,-16.80092707,13.31735979],[-12.9261999,-16.79929144,13.31735979],[-13.4364996,-16.79765581,13.31735979],[-13.1247997,-16.79602018,13.31735979],[-13.6393995,-16.79438456,13.31735979],[-13.2993002,-16.79274893,13.31735979],[-13.0507002,-16.7911133,13.31735979],[-12.9565001,-16.78947767,13.31735979],[-13.2044001,-16.78784204,13.31735979],[-13.4519997,-16.78620642,13.31735979],[-13.6915998,-16.78457079,13.31735979],[-13.9687004,-16.78293516,13.31735979],[-14.2138004,-16.78129953,13.31735979],[-14.4112997,-16.77966391,13.31735979],[-14.9456997,-16.77802828,13.31735979],[-15.3311005,-16.77639265,13.31735979],[-15.4598999,-16.77475702,13.31735979],[-15.2868996,-16.77312139,13.31735979],[-14.8212004,-16.77148577,13.31735979],[-15.2095003,-16.76985014,13.31735979],[-16.4391003,-16.76821451,13.31735979],[-17.4636002,-16.76657888,13.31735979],[-17.3785992,-16.76494326,13.31735979],[-17.6476002,-16.76330763,13.31735979],[-18.2024002,-16.761672,13.31735979],[-17.4867992,-16.76003637,13.31735979],[-16.7742004,-16.75840074,13.31735979],[-16.5023994,-16.75676512,13.31735979],[-16.7602005,-16.75512949,13.31735979],[-16.9790993,-16.75349386,13.31735979],[-17.0580997,-16.75185823,13.31735979],[-16.9783001,-16.75022261,13.31735979],[-16.9069996,-16.74858698,13.31735979],[-16.9752007,-16.74695135,13.31735979],[-17.1100998,-16.74531572,13.31735979],[-17.3834991,-16.7436801,13.31735979],[-17.1886997,-16.74204447,13.31735979],[-16.5564003,-16.74040884,13.31735979],[-15.8908005,-16.73877321,13.31735979],[-16.4680996,-16.73713758,13.31735979],[-17.6303997,-16.73550196,13.31735979],[-18.2364998,-16.73386633,13.31735979],[-17.7647991,-16.7322307,13.31735979],[-17.3579998,-16.73059507,13.31735979],[-17.1702003,-16.72895945,13.31735979],[-17.5077991,-16.72732382,13.31735979],[-17.7353001,-16.72568819,13.31735979],[-17.6630993,-16.72405256,13.31735979],[-17.1583996,-16.72241693,13.31735979],[-16.9046001,-16.72078131,13.31735979],[-16.7201004,-16.71914568,13.31735979],[-16.0962009,-16.71751005,13.31735979],[-15.6216002,-16.71587442,13.31735979],[-15.8039999,-16.7142388,13.31735979],[-16.2905006,-16.71260317,13.31735979],[-16.7738991,-16.71096754,13.31735979],[-16.4102993,-16.70933191,13.31735979],[-16.6662998,-16.70769628,13.31735979],[-17.0219994,-16.70606066,13.31735979],[-16.0627995,-16.70442503,13.31735979],[-15.2834997,-16.7027894,13.31735979],[-15.2236996,-16.70115377,13.31735979],[-16.4263,-16.69951815,13.31735979],[-18.1324997,-16.69788252,13.31735979],[-18.2642002,-16.69624689,13.31735979],[-17.7590008,-16.69461126,13.31735979],[-18.0984001,-16.69297564,13.31735979],[-17.8523006,-16.69134001,13.31735979],[-17.6459007,-16.68970438,13.31735979],[-17.9347992,-16.68806875,13.31735979],[-17.4964008,-16.68643312,13.31735979],[-16.8880997,-16.6847975,13.31735979],[-16.5100994,-16.68316187,13.31735979],[-16.6634007,-16.68152624,13.31735979],[-16.3586998,-16.67989061,13.31735979],[-16.1723003,-16.67825499,13.31735979],[-16.9253998,-16.67661936,13.31735979],[-17.6872005,-16.67498373,13.31735979],[-17.9148998,-16.6733481,13.31735979],[-18.5221996,-16.67171247,13.31735979],[-20.1375999,-16.67007685,13.31735979],[-19.8201008,-16.66844122,13.31735979],[-18.5135994,-16.66680559,13.31735979],[-17.9050007,-16.66516996,13.31735979],[-17.8759995,-16.66353434,13.31735979],[-17.4589996,-16.66189871,13.31735979],[-16.8535995,-16.66026308,13.31735979],[-17.4221992,-16.65862745,13.31735979],[-18.2814999,-16.65699182,13.31735979],[-19.1096001,-16.6553562,13.31735979],[-17.8099003,-16.65372057,13.31735979],[-16.4475002,-16.65208494,13.31735979],[-16.0433006,-16.65044931,13.31735979],[-17.3684006,-16.64881369,13.31735979],[-18.2266006,-16.64717806,13.31735979],[-18.3013992,-16.64554243,13.31735979],[-18.3612995,-16.6439068,13.31735979],[-18.7924004,-16.64227118,13.31735979],[-18.5475998,-16.64063555,13.31735979],[-18.1651001,-16.63899992,13.31735979],[-18.7383003,-16.63736429,13.31735979],[-17.8136997,-16.63572866,13.31735979],[-16.5223007,-16.63409304,13.31735979],[-16.2660999,-16.63245741,13.31735979],[-15.6216002,-16.63082178,13.31735979],[-14.6976004,-16.62918615,13.31735979],[-14.5118999,-16.62755053,13.31735979],[-13.5527,-16.6259149,13.31735979],[-12.2432003,-16.62427927,13.31735979],[-11.9254999,-16.62264364,13.31735979],[-12.1181002,-16.62100801,13.31735979],[-12.2504997,-16.61937239,13.31735979],[-12.0521002,-16.61773676,13.31735979],[-11.0339003,-16.61610113,13.31735979],[-9.7566795,-16.6144655,13.31735979],[-10.2784996,-16.61282988,13.31735979],[-10.8950005,-16.61119425,13.31735979],[-10.5452003,-16.60955862,13.31735979],[-11.0487003,-16.60792299,13.31735979],[-11.1822996,-16.60628736,13.31735979],[-11.0506001,-16.60465174,13.31735979],[-4.2241302,-16.80256269,13.31572416],[-9.9835501,-16.80092707,13.31572416],[-15.5265999,-16.79929144,13.31572416],[-15.1466999,-16.79765581,13.31572416],[-13.6444998,-16.79602018,13.31572416],[-14.6247997,-16.79438456,13.31572416],[-14.0869999,-16.79274893,13.31572416],[-13.2634001,-16.7911133,13.31572416],[-12.9243002,-16.78947767,13.31572416],[-13.1680002,-16.78784204,13.31572416],[-13.5872002,-16.78620642,13.31572416],[-13.7290001,-16.78457079,13.31572416],[-13.8745003,-16.78293516,13.31572416],[-14.0207996,-16.78129953,13.31572416],[-13.9812002,-16.77966391,13.31572416],[-14.6582003,-16.77802828,13.31572416],[-15.4069004,-16.77639265,13.31572416],[-15.4513998,-16.77475702,13.31572416],[-14.9215002,-16.77312139,13.31572416],[-13.9073,-16.77148577,13.31572416],[-14.5156002,-16.76985014,13.31572416],[-16.6322994,-16.76821451,13.31572416],[-18.5911007,-16.76657888,13.31572416],[-17.8297997,-16.76494326,13.31572416],[-18.0536003,-16.76330763,13.31572416],[-19.3868008,-16.761672,13.31572416],[-17.8966999,-16.76003637,13.31572416],[-16.6473007,-16.75840074,13.31572416],[-16.2390995,-16.75676512,13.31572416],[-16.8500004,-16.75512949,13.31572416],[-17.1919994,-16.75349386,13.31572416],[-17.2171001,-16.75185823,13.31572416],[-17.0596008,-16.75022261,13.31572416],[-16.7735004,-16.74858698,13.31572416],[-16.8185997,-16.74695135,13.31572416],[-17.1637993,-16.74531572,13.31572416],[-17.6739006,-16.7436801,13.31572416],[-17.3325996,-16.74204447,13.31572416],[-16.3703995,-16.74040884,13.31572416],[-15.3378,-16.73877321,13.31572416],[-16.2861996,-16.73713758,13.31572416],[-17.7070999,-16.73550196,13.31572416],[-18.6819,-16.73386633,13.31572416],[-17.7429008,-16.7322307,13.31572416],[-17.1711006,-16.73059507,13.31572416],[-16.9631004,-16.72895945,13.31572416],[-17.4731007,-16.72732382,13.31572416],[-17.9008999,-16.72568819,13.31572416],[-17.8967991,-16.72405256,13.31572416],[-17.2982998,-16.72241693,13.31572416],[-17.0342007,-16.72078131,13.31572416],[-16.8642006,-16.71914568,13.31572416],[-16.1317997,-16.71751005,13.31572416],[-15.4540997,-16.71587442,13.31572416],[-15.7782001,-16.7142388,13.31572416],[-16.4783993,-16.71260317,13.31572416],[-17.0412998,-16.71096754,13.31572416],[-16.6417999,-16.70933191,13.31572416],[-16.8160992,-16.70769628,13.31572416],[-17.3134003,-16.70606066,13.31572416],[-16.2462997,-16.70442503,13.31572416],[-15.2880001,-16.7027894,13.31572416],[-15.1450005,-16.70115377,13.31572416],[-16.4389,-16.69951815,13.31572416],[-18.3442001,-16.69788252,13.31572416],[-18.3950005,-16.69624689,13.31572416],[-17.7285004,-16.69461126,13.31572416],[-18.1602001,-16.69297564,13.31572416],[-17.9025993,-16.69134001,13.31572416],[-17.7474003,-16.68970438,13.31572416],[-18.0039005,-16.68806875,13.31572416],[-17.6282997,-16.68643312,13.31572416],[-16.9880009,-16.6847975,13.31572416],[-16.5779991,-16.68316187,13.31572416],[-16.8003998,-16.68152624,13.31572416],[-16.4654007,-16.67989061,13.31572416],[-16.2425003,-16.67825499,13.31572416],[-17.0722008,-16.67661936,13.31572416],[-17.7155991,-16.67498373,13.31572416],[-17.8931007,-16.6733481,13.31572416],[-18.6658993,-16.67171247,13.31572416],[-20.0468006,-16.67007685,13.31572416],[-19.7950001,-16.66844122,13.31572416],[-18.7085991,-16.66680559,13.31572416],[-18.0771999,-16.66516996,13.31572416],[-18.1968002,-16.66353434,13.31572416],[-17.8773994,-16.66189871,13.31572416],[-17.1443996,-16.66026308,13.31572416],[-17.6424007,-16.65862745,13.31572416],[-18.4244995,-16.65699182,13.31572416],[-18.8938007,-16.6553562,13.31572416],[-17.8069992,-16.65372057,13.31572416],[-16.6373997,-16.65208494,13.31572416],[-16.3386993,-16.65044931,13.31572416],[-17.5732002,-16.64881369,13.31572416],[-18.2562008,-16.64717806,13.31572416],[-18.3649006,-16.64554243,13.31572416],[-18.5167999,-16.6439068,13.31572416],[-18.7516003,-16.64227118,13.31572416],[-18.566,-16.64063555,13.31572416],[-18.2268009,-16.63899992,13.31572416],[-18.3939991,-16.63736429,13.31572416],[-17.6438007,-16.63572866,13.31572416],[-16.5814991,-16.63409304,13.31572416],[-16.0811005,-16.63245741,13.31572416],[-15.3795996,-16.63082178,13.31572416],[-14.6035004,-16.62918615,13.31572416],[-14.3460999,-16.62755053,13.31572416],[-13.5607996,-16.6259149,13.31572416],[-12.4617004,-16.62427927,13.31572416],[-12.2241001,-16.62264364,13.31572416],[-12.4846001,-16.62100801,13.31572416],[-12.3684998,-16.61937239,13.31572416],[-12.1864996,-16.61773676,13.31572416],[-11.6883001,-16.61610113,13.31572416],[-10.7697001,-16.6144655,13.31572416],[-11.0087004,-16.61282988,13.31572416],[-11.3231001,-16.61119425,13.31572416],[-11.0410995,-16.60955862,13.31572416],[-11.2986002,-16.60792299,13.31572416],[-11.3699999,-16.60628736,13.31572416],[-11.2439003,-16.60465174,13.31572416],[-6.21701,-16.80256269,13.31408853],[-9.7178202,-16.80092707,13.31408853],[-13.0298004,-16.79929144,13.31408853],[-13.7289,-16.79765581,13.31408853],[-13.5188999,-16.79602018,13.31408853],[-13.9518995,-16.79438456,13.31408853],[-13.6955004,-16.79274893,13.31408853],[-13.3175001,-16.7911133,13.31408853],[-13.0810003,-16.78947767,13.31408853],[-13.2495003,-16.78784204,13.31408853],[-13.3397999,-16.78620642,13.31408853],[-13.4856997,-16.78457079,13.31408853],[-13.7700996,-16.78293516,13.31408853],[-14.1257,-16.78129953,13.31408853],[-14.2904997,-16.77966391,13.31408853],[-14.5404997,-16.77802828,13.31408853],[-14.8849001,-16.77639265,13.31408853],[-15.0045996,-16.77475702,13.31408853],[-14.8301001,-16.77312139,13.31408853],[-14.6815996,-16.77148577,13.31408853],[-15.0846004,-16.76985014,13.31408853],[-16.0049992,-16.76821451,13.31408853],[-16.7870007,-16.76657888,13.31408853],[-16.8419991,-16.76494326,13.31408853],[-17.0928993,-16.76330763,13.31408853],[-17.4284,-16.761672,13.31408853],[-17.0928001,-16.76003637,13.31408853],[-16.6431007,-16.75840074,13.31408853],[-16.5415993,-16.75676512,13.31408853],[-16.8253002,-16.75512949,13.31408853],[-17.2268009,-16.75349386,13.31408853],[-17.2231007,-16.75185823,13.31408853],[-17.0405998,-16.75022261,13.31408853],[-16.7231998,-16.74858698,13.31408853],[-16.7315998,-16.74695135,13.31408853],[-17.0266991,-16.74531572,13.31408853],[-17.2518005,-16.7436801,13.31408853],[-17.1448994,-16.74204447,13.31408853],[-16.7963009,-16.74040884,13.31408853],[-16.5788994,-16.73877321,13.31408853],[-16.6977997,-16.73713758,13.31408853],[-16.9333992,-16.73550196,13.31408853],[-17.1336002,-16.73386633,13.31408853],[-17.2359009,-16.7322307,13.31408853],[-17.3722992,-16.73059507,13.31408853],[-17.5445995,-16.72895945,13.31408853],[-17.7500992,-16.72732382,13.31408853],[-17.9892998,-16.72568819,13.31408853],[-17.9060001,-16.72405256,13.31408853],[-17.3460999,-16.72241693,13.31408853],[-16.9710007,-16.72078131,13.31408853],[-16.6825008,-16.71914568,13.31408853],[-16.2830009,-16.71751005,13.31408853],[-15.8285999,-16.71587442,13.31408853],[-15.9678001,-16.7142388,13.31408853],[-16.3358002,-16.71260317,13.31408853],[-16.5699997,-16.71096754,13.31408853],[-16.4512997,-16.70933191,13.31408853],[-16.4225006,-16.70769628,13.31408853],[-16.3117008,-16.70606066,13.31408853],[-16.0326996,-16.70442503,13.31408853],[-15.4731998,-16.7027894,13.31408853],[-15.5016003,-16.70115377,13.31408853],[-16.3134003,-16.69951815,13.31408853],[-17.1326008,-16.69788252,13.31408853],[-17.3966007,-16.69624689,13.31408853],[-17.2560005,-16.69461126,13.31408853],[-17.2926006,-16.69297564,13.31408853],[-17.2588997,-16.69134001,13.31408853],[-17.3451996,-16.68970438,13.31408853],[-17.3516006,-16.68806875,13.31408853],[-17.4449997,-16.68643312,13.31408853],[-17.4834995,-16.6847975,13.31408853],[-17.4505997,-16.68316187,13.31408853],[-17.2465992,-16.68152624,13.31408853],[-17.1086998,-16.67989061,13.31408853],[-17.1182003,-16.67825499,13.31408853],[-17.3320999,-16.67661936,13.31408853],[-17.4423008,-16.67498373,13.31408853],[-17.7091007,-16.6733481,13.31408853],[-18.3199997,-16.67171247,13.31408853],[-18.9430008,-16.67007685,13.31408853],[-19.0774002,-16.66844122,13.31408853],[-19.0016994,-16.66680559,13.31408853],[-19.1784992,-16.66516996,13.31408853],[-19.1219006,-16.66353434,13.31408853],[-18.9622993,-16.66189871,13.31408853],[-18.9909,-16.66026308,13.31408853],[-18.5442009,-16.65862745,13.31408853],[-17.9491005,-16.65699182,13.31408853],[-17.6632004,-16.6553562,13.31408853],[-17.5571995,-16.65372057,13.31408853],[-17.0946007,-16.65208494,13.31408853],[-17.0209999,-16.65044931,13.31408853],[-17.8453999,-16.64881369,13.31408853],[-18.6319008,-16.64717806,13.31408853],[-18.8052998,-16.64554243,13.31408853],[-18.6828995,-16.6439068,13.31408853],[-18.7059002,-16.64227118,13.31408853],[-18.4650993,-16.64063555,13.31408853],[-17.9253998,-16.63899992,13.31408853],[-17.3698997,-16.63736429,13.31408853],[-16.9657001,-16.63572866,13.31408853],[-16.4838009,-16.63409304,13.31408853],[-15.8776999,-16.63245741,13.31408853],[-15.2536001,-16.63082178,13.31408853],[-14.6936998,-16.62918615,13.31408853],[-14.3198996,-16.62755053,13.31408853],[-13.5882998,-16.6259149,13.31408853],[-12.7974005,-16.62427927,13.31408853],[-12.5404997,-16.62264364,13.31408853],[-12.7178001,-16.62100801,13.31408853],[-12.7196999,-16.61937239,13.31408853],[-12.6624002,-16.61773676,13.31408853],[-12.8287001,-16.61610113,13.31408853],[-13.5402002,-16.6144655,13.31408853],[-13.1469002,-16.61282988,13.31408853],[-12.2608995,-16.61119425,13.31408853],[-12.1351004,-16.60955862,13.31408853],[-11.9265003,-16.60792299,13.31408853],[-11.8443003,-16.60628736,13.31408853],[-11.8924999,-16.60465174,13.31408853],[-5.6675301,-16.80256269,13.31245291],[-9.4722004,-16.80092707,13.31245291],[-12.9533997,-16.79929144,13.31245291],[-13.4853001,-16.79765581,13.31245291],[-13.1359997,-16.79602018,13.31245291],[-12.9754,-16.79438456,13.31245291],[-13.1364002,-16.79274893,13.31245291],[-13.3070002,-16.7911133,13.31245291],[-13.3429003,-16.78947767,13.31245291],[-13.2679005,-16.78784204,13.31245291],[-12.9840002,-16.78620642,13.31245291],[-12.7515001,-16.78457079,13.31245291],[-13.5359001,-16.78293516,13.31245291],[-14.4617004,-16.78129953,13.31245291],[-14.8135996,-16.77966391,13.31245291],[-14.5183001,-16.77802828,13.31245291],[-14.2959995,-16.77639265,13.31245291],[-14.3339996,-16.77475702,13.31245291],[-14.7208004,-16.77312139,13.31245291],[-14.8445997,-16.77148577,13.31245291],[-14.9778004,-16.76985014,13.31245291],[-15.4251003,-16.76821451,13.31245291],[-15.2215996,-16.76657888,13.31245291],[-15.6705999,-16.76494326,13.31245291],[-16.1145992,-16.76330763,13.31245291],[-16.1823997,-16.761672,13.31245291],[-16.3187008,-16.76003637,13.31245291],[-16.4020004,-16.75840074,13.31245291],[-16.4554005,-16.75676512,13.31245291],[-16.8673,-16.75512949,13.31245291],[-17.8490009,-16.75349386,13.31245291],[-18.1686001,-16.75185823,13.31245291],[-17.0764008,-16.75022261,13.31245291],[-15.9742002,-16.74858698,13.31245291],[-16.0440998,-16.74695135,13.31245291],[-16.8775005,-16.74531572,13.31245291],[-17.3283997,-16.7436801,13.31245291],[-17.2584,-16.74204447,13.31245291],[-17.1457005,-16.74040884,13.31245291],[-17.2087994,-16.73877321,13.31245291],[-16.9563999,-16.73713758,13.31245291],[-16.1324005,-16.73550196,13.31245291],[-15.1738005,-16.73386633,13.31245291],[-16.5323009,-16.7322307,13.31245291],[-17.5811996,-16.73059507,13.31245291],[-17.8477001,-16.72895945,13.31245291],[-17.9524994,-16.72732382,13.31245291],[-18.3609009,-16.72568819,13.31245291],[-18.3609009,-16.72405256,13.31245291],[-17.4295998,-16.72241693,13.31245291],[-16.7858009,-16.72078131,13.31245291],[-16.6709995,-16.71914568,13.31245291],[-16.2056007,-16.71751005,13.31245291],[-15.4376001,-16.71587442,13.31245291],[-15.8104,-16.7142388,13.31245291],[-16.3395004,-16.71260317,13.31245291],[-16.5126991,-16.71096754,13.31245291],[-16.4179993,-16.70933191,13.31245291],[-16.2057991,-16.70769628,13.31245291],[-15.9924002,-16.70606066,13.31245291],[-15.9205999,-16.70442503,13.31245291],[-14.8432999,-16.7027894,13.31245291],[-14.4261999,-16.70115377,13.31245291],[-16.1222,-16.69951815,13.31245291],[-17.0237007,-16.69788252,13.31245291],[-17.1371002,-16.69624689,13.31245291],[-16.9267006,-16.69461126,13.31245291],[-16.0967999,-16.69297564,13.31245291],[-16.4834003,-16.69134001,13.31245291],[-17.0643997,-16.68970438,13.31245291],[-16.6310997,-16.68806875,13.31245291],[-17.1641998,-16.68643312,13.31245291],[-17.8306999,-16.6847975,13.31245291],[-18.1896992,-16.68316187,13.31245291],[-17.7858009,-16.68152624,13.31245291],[-17.5231991,-16.67989061,13.31245291],[-17.6266994,-16.67825499,13.31245291],[-17.4302998,-16.67661936,13.31245291],[-17.1243,-16.67498373,13.31245291],[-17.1280994,-16.6733481,13.31245291],[-18.0042,-16.67171247,13.31245291],[-19.0102005,-16.67007685,13.31245291],[-19.0093002,-16.66844122,13.31245291],[-19.2833004,-16.66680559,13.31245291],[-20.7877007,-16.66516996,13.31245291],[-20.0233002,-16.66353434,13.31245291],[-19.8505993,-16.66189871,13.31245291],[-21.2348003,-16.66026308,13.31245291],[-19.4570999,-16.65862745,13.31245291],[-17.6625996,-16.65699182,13.31245291],[-16.8595009,-16.6553562,13.31245291],[-17.3481007,-16.65372057,13.31245291],[-16.7768993,-16.65208494,13.31245291],[-16.3269005,-16.65044931,13.31245291],[-17.9242992,-16.64881369,13.31245291],[-19.3743,-16.64717806,13.31245291],[-19.4890003,-16.64554243,13.31245291],[-18.8544006,-16.6439068,13.31245291],[-19.0520992,-16.64227118,13.31245291],[-18.7502003,-16.64063555,13.31245291],[-17.6354008,-16.63899992,13.31245291],[-17.0783997,-16.63736429,13.31245291],[-16.8469009,-16.63572866,13.31245291],[-16.1800003,-16.63409304,13.31245291],[-16.3087997,-16.63245741,13.31245291],[-15.3381996,-16.63082178,13.31245291],[-14.6866999,-16.62918615,13.31245291],[-14.9011002,-16.62755053,13.31245291],[-13.7188997,-16.6259149,13.31245291],[-12.4888,-16.62427927,13.31245291],[-12.2320004,-16.62264364,13.31245291],[-12.8278999,-16.62100801,13.31245291],[-12.7652998,-16.61937239,13.31245291],[-12.8429003,-16.61773676,13.31245291],[-13.7643995,-16.61610113,13.31245291],[-15.7979002,-16.6144655,13.31245291],[-14.6616001,-16.61282988,13.31245291],[-12.8729,-16.61119425,13.31245291],[-12.6329002,-16.60955862,13.31245291],[-12.2896996,-16.60792299,13.31245291],[-12.1557999,-16.60628736,13.31245291],[-12.4252996,-16.60465174,13.31245291],[-4.3081002,-16.80256269,13.31081728],[-9.1091805,-16.80092707,13.31081728],[-14.0047998,-16.79929144,13.31081728],[-13.9757004,-16.79765581,13.31081728],[-12.7504997,-16.79602018,13.31081728],[-12.7222996,-16.79438456,13.31081728],[-12.9549999,-16.79274893,13.31081728],[-13.2075996,-16.7911133,13.31081728],[-13.5051003,-16.78947767,13.31081728],[-13.2491999,-16.78784204,13.31081728],[-12.8469,-16.78620642,13.31081728],[-12.3804998,-16.78457079,13.31081728],[-13.3738003,-16.78293516,13.31081728],[-14.5551996,-16.78129953,13.31081728],[-14.9982996,-16.77966391,13.31081728],[-14.4210997,-16.77802828,13.31081728],[-14.1280003,-16.77639265,13.31081728],[-14.1534996,-16.77475702,13.31081728],[-14.5951004,-16.77312139,13.31081728],[-14.8045998,-16.77148577,13.31081728],[-14.8711004,-16.76985014,13.31081728],[-15.1427002,-16.76821451,13.31081728],[-14.9586,-16.76657888,13.31081728],[-15.2720003,-16.76494326,13.31081728],[-15.7662001,-16.76330763,13.31081728],[-15.9913998,-16.761672,13.31081728],[-15.9233999,-16.76003637,13.31081728],[-16.1000004,-16.75840074,13.31081728],[-16.3826008,-16.75676512,13.31081728],[-16.5890007,-16.75512949,13.31081728],[-17.8712006,-16.75349386,13.31081728],[-18.2973995,-16.75185823,13.31081728],[-16.9514008,-16.75022261,13.31081728],[-15.8748999,-16.74858698,13.31081728],[-15.9434996,-16.74695135,13.31081728],[-16.9169006,-16.74531572,13.31081728],[-17.3509007,-16.7436801,13.31081728],[-17.3297997,-16.74204447,13.31081728],[-17.3495998,-16.74040884,13.31081728],[-17.3080006,-16.73877321,13.31081728],[-17.1735001,-16.73713758,13.31081728],[-16.1986008,-16.73550196,13.31081728],[-15.2108002,-16.73386633,13.31081728],[-16.5783997,-16.7322307,13.31081728],[-17.6555004,-16.73059507,13.31081728],[-17.8729,-16.72895945,13.31081728],[-17.9757004,-16.72732382,13.31081728],[-18.3428993,-16.72568819,13.31081728],[-18.3689003,-16.72405256,13.31081728],[-17.6509991,-16.72241693,13.31081728],[-16.8883991,-16.72078131,13.31081728],[-16.7378006,-16.71914568,13.31081728],[-16.3295994,-16.71751005,13.31081728],[-15.6433001,-16.71587442,13.31081728],[-15.9359999,-16.7142388,13.31081728],[-16.4741001,-16.71260317,13.31081728],[-16.5578995,-16.71096754,13.31081728],[-16.5625,-16.70933191,13.31081728],[-16.3097,-16.70769628,13.31081728],[-16.0527,-16.70606066,13.31081728],[-15.8737001,-16.70442503,13.31081728],[-15.1021004,-16.7027894,13.31081728],[-14.8688002,-16.70115377,13.31081728],[-16.0750999,-16.69951815,13.31081728],[-16.9328995,-16.69788252,13.31081728],[-17.0916996,-16.69624689,13.31081728],[-16.9342003,-16.69461126,13.31081728],[-16.3896008,-16.69297564,13.31081728],[-16.6720009,-16.69134001,13.31081728],[-17.2182999,-16.68970438,13.31081728],[-17.0480995,-16.68806875,13.31081728],[-17.6009998,-16.68643312,13.31081728],[-18.0125999,-16.6847975,13.31081728],[-18.2068996,-16.68316187,13.31081728],[-18.0692005,-16.68152624,13.31081728],[-17.7430992,-16.67989061,13.31081728],[-17.7057991,-16.67825499,13.31081728],[-17.6485004,-16.67661936,13.31081728],[-17.4575005,-16.67498373,13.31081728],[-17.4305,-16.6733481,13.31081728],[-17.8997002,-16.67171247,13.31081728],[-18.4346008,-16.67007685,13.31081728],[-18.5473995,-16.66844122,13.31081728],[-18.8241997,-16.66680559,13.31081728],[-19.7222004,-16.66516996,13.31081728],[-19.3680992,-16.66353434,13.31081728],[-19.1805992,-16.66189871,13.31081728],[-19.9666004,-16.66026308,13.31081728],[-19.0816994,-16.65862745,13.31081728],[-18.0042992,-16.65699182,13.31081728],[-17.4762993,-16.6553562,13.31081728],[-17.8659,-16.65372057,13.31081728],[-17.7031994,-16.65208494,13.31081728],[-17.3980007,-16.65044931,13.31081728],[-18.2290001,-16.64881369,13.31081728],[-18.9619999,-16.64717806,13.31081728],[-19.0594006,-16.64554243,13.31081728],[-18.7483997,-16.6439068,13.31081728],[-18.7015991,-16.64227118,13.31081728],[-18.3761997,-16.64063555,13.31081728],[-17.3691998,-16.63899992,13.31081728],[-16.7269993,-16.63736429,13.31081728],[-16.0400009,-16.63572866,13.31081728],[-15.5654001,-16.63409304,13.31081728],[-15.3411999,-16.63245741,13.31081728],[-14.5117998,-16.63082178,13.31081728],[-13.8964005,-16.62918615,13.31081728],[-13.7313004,-16.62755053,13.31081728],[-13.3198004,-16.6259149,13.31081728],[-13.0959997,-16.62427927,13.31081728],[-13.0788002,-16.62264364,13.31081728],[-13.3683996,-16.62100801,13.31081728],[-13.3851995,-16.61937239,13.31081728],[-13.3851004,-16.61773676,13.31081728],[-13.7343998,-16.61610113,13.31081728],[-14.1752996,-16.6144655,13.31081728],[-13.6500998,-16.61282988,13.31081728],[-12.7237997,-16.61119425,13.31081728],[-12.2952995,-16.60955862,13.31081728],[-12.1941004,-16.60792299,13.31081728],[-12.1683998,-16.60628736,13.31081728],[-12.0212002,-16.60465174,13.31081728],[-5.9500599,-16.80256269,13.30918165],[-8.8309202,-16.80092707,13.30918165],[-11.4175997,-16.79929144,13.30918165],[-12.3572998,-16.79765581,13.30918165],[-12.5948,-16.79602018,13.30918165],[-13.0358,-16.79438456,13.30918165],[-12.8871002,-16.79274893,13.30918165],[-12.9422998,-16.7911133,13.30918165],[-13.0576,-16.78947767,13.30918165],[-13.1152,-16.78784204,13.30918165],[-13.1283998,-16.78620642,13.30918165],[-13.1715002,-16.78457079,13.30918165],[-13.5507002,-16.78293516,13.30918165],[-13.9819002,-16.78129953,13.30918165],[-14.2251997,-16.77966391,13.30918165],[-14.1651001,-16.77802828,13.30918165],[-14.1306,-16.77639265,13.30918165],[-14.2292004,-16.77475702,13.30918165],[-14.5341997,-16.77312139,13.30918165],[-14.8537998,-16.77148577,13.30918165],[-14.9554996,-16.76985014,13.30918165],[-15.1080999,-16.76821451,13.30918165],[-15.3864002,-16.76657888,13.30918165],[-15.3919001,-16.76494326,13.30918165],[-15.2328997,-16.76330763,13.30918165],[-15.1190004,-16.761672,13.30918165],[-15.1809998,-16.76003637,13.30918165],[-15.1442003,-16.75840074,13.30918165],[-15.2747002,-16.75676512,13.30918165],[-15.8663998,-16.75512949,13.30918165],[-16.6977005,-16.75349386,13.30918165],[-16.9831009,-16.75185823,13.30918165],[-16.7663002,-16.75022261,13.30918165],[-16.4927998,-16.74858698,13.30918165],[-16.6823997,-16.74695135,13.30918165],[-17.1149006,-16.74531572,13.30918165],[-17.4664001,-16.7436801,13.30918165],[-17.5729008,-16.74204447,13.30918165],[-17.7063999,-16.74040884,13.30918165],[-17.9498997,-16.73877321,13.30918165],[-17.6646996,-16.73713758,13.30918165],[-17.1021004,-16.73550196,13.30918165],[-16.8332996,-16.73386633,13.30918165],[-17.2607994,-16.7322307,13.30918165],[-17.8960991,-16.73059507,13.30918165],[-18.1951008,-16.72895945,13.30918165],[-18.1165009,-16.72732382,13.30918165],[-18.2721004,-16.72568819,13.30918165],[-18.1924992,-16.72405256,13.30918165],[-17.7343006,-16.72241693,13.30918165],[-17.2623005,-16.72078131,13.30918165],[-16.9724007,-16.71914568,13.30918165],[-16.7283001,-16.71751005,13.30918165],[-16.5944004,-16.71587442,13.30918165],[-16.5531006,-16.7142388,13.30918165],[-16.6165009,-16.71260317,13.30918165],[-16.6714993,-16.71096754,13.30918165],[-16.7275009,-16.70933191,13.30918165],[-16.8841991,-16.70769628,13.30918165],[-16.7887993,-16.70606066,13.30918165],[-16.3188992,-16.70442503,13.30918165],[-15.9954996,-16.7027894,13.30918165],[-16.0865993,-16.70115377,13.30918165],[-16.5230999,-16.69951815,13.30918165],[-17.2801991,-16.69788252,13.30918165],[-17.5039997,-16.69624689,13.30918165],[-17.1483994,-16.69461126,13.30918165],[-16.8237991,-16.69297564,13.30918165],[-17.0442009,-16.69134001,13.30918165],[-17.941,-16.68970438,13.30918165],[-18.8771,-16.68806875,13.30918165],[-18.7054005,-16.68643312,13.30918165],[-18.4272003,-16.6847975,13.30918165],[-18.5238991,-16.68316187,13.30918165],[-18.3022995,-16.68152624,13.30918165],[-17.8642998,-16.67989061,13.30918165],[-17.6930008,-16.67825499,13.30918165],[-17.8192005,-16.67661936,13.30918165],[-18.0093994,-16.67498373,13.30918165],[-18.0088997,-16.6733481,13.30918165],[-17.4831009,-16.67171247,13.30918165],[-16.5765991,-16.67007685,13.30918165],[-16.6987991,-16.66844122,13.30918165],[-17.6033993,-16.66680559,13.30918165],[-17.5930004,-16.66516996,13.30918165],[-17.7996998,-16.66353434,13.30918165],[-17.9074001,-16.66189871,13.30918165],[-17.7563,-16.66026308,13.30918165],[-18.0149002,-16.65862745,13.30918165],[-18.1121998,-16.65699182,13.30918165],[-18.0690002,-16.6553562,13.30918165],[-18.5272007,-16.65372057,13.30918165],[-19.2035999,-16.65208494,13.30918165],[-19.6009998,-16.65044931,13.30918165],[-18.8656006,-16.64881369,13.30918165],[-18.6364994,-16.64717806,13.30918165],[-18.5900002,-16.64554243,13.30918165],[-18.5328999,-16.6439068,13.30918165],[-18.5112,-16.64227118,13.30918165],[-18.0300999,-16.64063555,13.30918165],[-16.7632999,-16.63899992,13.30918165],[-15.3506002,-16.63736429,13.30918165],[-15.1090002,-16.63572866,13.30918165],[-14.592,-16.63409304,13.30918165],[-13.8453999,-16.63245741,13.30918165],[-13.4188004,-16.63082178,13.30918165],[-11.8261003,-16.62918615,13.30918165],[-10.7322998,-16.62755053,13.30918165],[-12.5065002,-16.6259149,13.30918165],[-14.1648998,-16.62427927,13.30918165],[-14.6188002,-16.62264364,13.30918165],[-14.1676998,-16.62100801,13.30918165],[-14.4259005,-16.61937239,13.30918165],[-14.3341999,-16.61773676,13.30918165],[-13.5534,-16.61610113,13.30918165],[-12.9328003,-16.6144655,13.30918165],[-12.7255001,-16.61282988,13.30918165],[-12.2187004,-16.61119425,13.30918165],[-11.6613998,-16.60955862,13.30918165],[-11.8213997,-16.60792299,13.30918165],[-12.1287003,-16.60628736,13.30918165],[-12.1900997,-16.60465174,13.30918165],[-7.9011698,-16.80092707,13.30754602],[-10.9898996,-16.79929144,13.30754602],[-11.5290003,-16.79765581,13.30754602],[-12.2328997,-16.79602018,13.30754602],[-12.7518997,-16.79438456,13.30754602],[-12.8327999,-16.79274893,13.30754602],[-12.7286997,-16.7911133,13.30754602],[-12.4800997,-16.78947767,13.30754602],[-12.8652,-16.78784204,13.30754602],[-13.3167,-16.78620642,13.30754602],[-13.4797001,-16.78457079,13.30754602],[-13.5819998,-16.78293516,13.30754602],[-13.7656002,-16.78129953,13.30754602],[-13.8035002,-16.77966391,13.30754602],[-13.9616003,-16.77802828,13.30754602],[-14.0359001,-16.77639265,13.30754602],[-14.0852003,-16.77475702,13.30754602],[-14.5574999,-16.77312139,13.30754602],[-14.8476,-16.77148577,13.30754602],[-14.9013996,-16.76985014,13.30754602],[-15.3205004,-16.76821451,13.30754602],[-15.5706997,-16.76657888,13.30754602],[-15.3695002,-16.76494326,13.30754602],[-14.5658998,-16.76330763,13.30754602],[-13.3964996,-16.761672,13.30754602],[-14.3399,-16.76003637,13.30754602],[-13.8250999,-16.75840074,13.30754602],[-12.7291002,-16.75676512,13.30754602],[-15.0163002,-16.75512949,13.30754602],[-16.3946991,-16.75349386,13.30754602],[-16.6012001,-16.75185823,13.30754602],[-16.6718998,-16.75022261,13.30754602],[-16.5058002,-16.74858698,13.30754602],[-16.6182003,-16.74695135,13.30754602],[-17.3199005,-16.74531572,13.30754602],[-18.0091991,-16.7436801,13.30754602],[-17.9267006,-16.74204447,13.30754602],[-18.2057991,-16.74040884,13.30754602],[-19.2425003,-16.73877321,13.30754602],[-18.3785,-16.73713758,13.30754602],[-17.4503002,-16.73550196,13.30754602],[-17.1835995,-16.73386633,13.30754602],[-17.5324993,-16.7322307,13.30754602],[-18.4845009,-16.73059507,13.30754602],[-19.0459003,-16.72895945,13.30754602],[-18.3292007,-16.72732382,13.30754602],[-18.4459991,-16.72568819,13.30754602],[-18.493,-16.72405256,13.30754602],[-17.7313995,-16.72241693,13.30754602],[-17.2185001,-16.72078131,13.30754602],[-17.1422997,-16.71914568,13.30754602],[-17.0429993,-16.71751005,13.30754602],[-17.1296997,-16.71587442,13.30754602],[-16.9463997,-16.7142388,13.30754602],[-16.7744999,-16.71260317,13.30754602],[-16.7450008,-16.71096754,13.30754602],[-16.8055992,-16.70933191,13.30754602],[-17.2633991,-16.70769628,13.30754602],[-18.0580006,-16.70606066,13.30754602],[-16.7763996,-16.70442503,13.30754602],[-16.3064995,-16.7027894,13.30754602],[-16.4573994,-16.70115377,13.30754602],[-16.6639996,-16.69951815,13.30754602],[-18.3729,-16.69788252,13.30754602],[-18.4402008,-16.69624689,13.30754602],[-17.0167007,-16.69461126,13.30754602],[-16.3945999,-16.69297564,13.30754602],[-16.7724991,-16.69134001,13.30754602],[-18.5867004,-16.68970438,13.30754602],[-20.9283009,-16.68806875,13.30754602],[-19.6474991,-16.68643312,13.30754602],[-18.8020992,-16.6847975,13.30754602],[-18.7747993,-16.68316187,13.30754602],[-18.6594009,-16.68152624,13.30754602],[-17.7810993,-16.67989061,13.30754602],[-17.0692997,-16.67825499,13.30754602],[-18.1142998,-16.67661936,13.30754602],[-18.4211006,-16.67498373,13.30754602],[-18.3857002,-16.6733481,13.30754602],[-17.4183006,-16.67171247,13.30754602],[-14.6567001,-16.67007685,13.30754602],[-15.0405998,-16.66844122,13.30754602],[-16.9916,-16.66680559,13.30754602],[-16.3369999,-16.66516996,13.30754602],[-17.0781994,-16.66353434,13.30754602],[-17.4389992,-16.66189871,13.30754602],[-16.4578991,-16.66026308,13.30754602],[-17.5491009,-16.65862745,13.30754602],[-18.1819992,-16.65699182,13.30754602],[-17.8624992,-16.6553562,13.30754602],[-18.7805004,-16.65372057,13.30754602],[-20.3188,-16.65208494,13.30754602],[-21.0301991,-16.65044931,13.30754602],[-19.4001007,-16.64881369,13.30754602],[-18.4981995,-16.64717806,13.30754602],[-18.4069004,-16.64554243,13.30754602],[-18.3766003,-16.6439068,13.30754602],[-18.7292004,-16.64227118,13.30754602],[-18.2856998,-16.64063555,13.30754602],[-16.1781998,-16.63899992,13.30754602],[-14.2358999,-16.63736429,13.30754602],[-14.5129995,-16.63572866,13.30754602],[-14.0506001,-16.63409304,13.30754602],[-13.3416996,-16.63245741,13.30754602],[-13.1267996,-16.63082178,13.30754602],[-10.6938,-16.62918615,13.30754602],[-8.6071901,-16.62755053,13.30754602],[-12.0641003,-16.6259149,13.30754602],[-14.9218998,-16.62427927,13.30754602],[-15.5731001,-16.62264364,13.30754602],[-14.5312996,-16.62100801,13.30754602],[-14.9804001,-16.61937239,13.30754602],[-14.8469,-16.61773676,13.30754602],[-13.4666996,-16.61610113,13.30754602],[-12.5608997,-16.6144655,13.30754602],[-12.4906998,-16.61282988,13.30754602],[-11.9615002,-16.61119425,13.30754602],[-11.3099003,-16.60955862,13.30754602],[-11.5930996,-16.60792299,13.30754602],[-11.9278002,-16.60628736,13.30754602],[-12.4404001,-16.60465174,13.30754602],[-3.50734,-16.80256269,13.30591039],[-7.76685,-16.80092707,13.30591039],[-10.9673996,-16.79929144,13.30591039],[-11.5024004,-16.79765581,13.30591039],[-12.1682997,-16.79602018,13.30591039],[-12.7271004,-16.79438456,13.30591039],[-12.8478003,-16.79274893,13.30591039],[-12.6506004,-16.7911133,13.30591039],[-12.4649,-16.78947767,13.30591039],[-12.8010998,-16.78784204,13.30591039],[-13.3931999,-16.78620642,13.30591039],[-13.5117998,-16.78457079,13.30591039],[-13.6287003,-16.78293516,13.30591039],[-13.6435003,-16.78129953,13.30591039],[-13.6924,-16.77966391,13.30591039],[-13.8002996,-16.77802828,13.30591039],[-13.9300003,-16.77639265,13.30591039],[-14.0612001,-16.77475702,13.30591039],[-14.4294996,-16.77312139,13.30591039],[-14.8099003,-16.77148577,13.30591039],[-14.9447002,-16.76985014,13.30591039],[-15.3037996,-16.76821451,13.30591039],[-15.5514002,-16.76657888,13.30591039],[-15.4483004,-16.76494326,13.30591039],[-14.8326998,-16.76330763,13.30591039],[-13.9393997,-16.761672,13.30591039],[-14.6184998,-16.76003637,13.30591039],[-14.3411999,-16.75840074,13.30591039],[-13.6170998,-16.75676512,13.30591039],[-15.4068003,-16.75512949,13.30591039],[-16.4510002,-16.75349386,13.30591039],[-16.6581001,-16.75185823,13.30591039],[-16.7187996,-16.75022261,13.30591039],[-16.5827999,-16.74858698,13.30591039],[-16.7094002,-16.74695135,13.30591039],[-17.1972008,-16.74531572,13.30591039],[-17.7618008,-16.7436801,13.30591039],[-17.8617992,-16.74204447,13.30591039],[-18.1879005,-16.74040884,13.30591039],[-18.6982002,-16.73877321,13.30591039],[-18.2528,-16.73713758,13.30591039],[-17.5517998,-16.73550196,13.30591039],[-17.3143005,-16.73386633,13.30591039],[-17.5398998,-16.7322307,13.30591039],[-18.1277008,-16.73059507,13.30591039],[-18.4386005,-16.72895945,13.30591039],[-18.1634998,-16.72732382,13.30591039],[-18.2315006,-16.72568819,13.30591039],[-18.2593994,-16.72405256,13.30591039],[-17.8153,-16.72241693,13.30591039],[-17.4200993,-16.72078131,13.30591039],[-17.2542992,-16.71914568,13.30591039],[-17.0772991,-16.71751005,13.30591039],[-16.9895992,-16.71587442,13.30591039],[-16.9062004,-16.7142388,13.30591039],[-16.8792992,-16.71260317,13.30591039],[-16.8854008,-16.71096754,13.30591039],[-16.8694992,-16.70933191,13.30591039],[-16.9974003,-16.70769628,13.30591039],[-17.1327991,-16.70606066,13.30591039],[-16.4174995,-16.70442503,13.30591039],[-15.8976002,-16.7027894,13.30591039],[-15.9727001,-16.70115377,13.30591039],[-16.4575996,-16.69951815,13.30591039],[-17.5562,-16.69788252,13.30591039],[-17.7539997,-16.69624689,13.30591039],[-17.1627998,-16.69461126,13.30591039],[-16.7945004,-16.69297564,13.30591039],[-17.0252991,-16.69134001,13.30591039],[-18.1854,-16.68970438,13.30591039],[-19.3330994,-16.68806875,13.30591039],[-19.2282009,-16.68643312,13.30591039],[-19.0639992,-16.6847975,13.30591039],[-19.1765003,-16.68316187,13.30591039],[-19.3253994,-16.68152624,13.30591039],[-19.0081005,-16.67989061,13.30591039],[-18.7101002,-16.67825499,13.30591039],[-19.0294991,-16.67661936,13.30591039],[-18.9997005,-16.67498373,13.30591039],[-18.7978001,-16.6733481,13.30591039],[-18.2882004,-16.67171247,13.30591039],[-17.0286007,-16.67007685,13.30591039],[-17.1245003,-16.66844122,13.30591039],[-17.9255009,-16.66680559,13.30591039],[-17.9475994,-16.66516996,13.30591039],[-18.1373005,-16.66353434,13.30591039],[-18.1567993,-16.66189871,13.30591039],[-17.9127007,-16.66026308,13.30591039],[-18.4239006,-16.65862745,13.30591039],[-19.1343002,-16.65699182,13.30591039],[-19.3176003,-16.6553562,13.30591039],[-19.5454006,-16.65372057,13.30591039],[-20.0056992,-16.65208494,13.30591039],[-20.1625004,-16.65044931,13.30591039],[-19.3575993,-16.64881369,13.30591039],[-18.4953003,-16.64717806,13.30591039],[-18.2922993,-16.64554243,13.30591039],[-18.4619007,-16.6439068,13.30591039],[-18.5307999,-16.64227118,13.30591039],[-17.8948002,-16.64063555,13.30591039],[-16.4552002,-16.63899992,13.30591039],[-15.3675003,-16.63736429,13.30591039],[-14.6731997,-16.63572866,13.30591039],[-14.2077999,-16.63409304,13.30591039],[-13.6686001,-16.63245741,13.30591039],[-13.3411999,-16.63082178,13.30591039],[-12.5537004,-16.62918615,13.30591039],[-12.0855999,-16.62755053,13.30591039],[-13.0008001,-16.6259149,13.30591039],[-14.1009998,-16.62427927,13.30591039],[-14.4216003,-16.62264364,13.30591039],[-14.1105003,-16.62100801,13.30591039],[-14.2052002,-16.61937239,13.30591039],[-13.9764996,-16.61773676,13.30591039],[-13.2075005,-16.61610113,13.30591039],[-12.5190001,-16.6144655,13.30591039],[-12.2018995,-16.61282988,13.30591039],[-11.7700996,-16.61119425,13.30591039],[-11.2444,-16.60955862,13.30591039],[-11.1885996,-16.60792299,13.30591039],[-11.4089003,-16.60628736,13.30591039],[-11.5581999,-16.60465174,13.30591039],[-5.4810901,-16.80256269,13.30427477],[-8.4033804,-16.80092707,13.30427477],[-11.2130003,-16.79929144,13.30427477],[-12.2060003,-16.79765581,13.30427477],[-12.4371996,-16.79602018,13.30427477],[-12.8191004,-16.79438456,13.30427477],[-12.7168999,-16.79274893,13.30427477],[-12.698,-16.7911133,13.30427477],[-12.6441002,-16.78947767,13.30427477],[-12.9535999,-16.78784204,13.30427477],[-13.6723003,-16.78620642,13.30427477],[-14.1255999,-16.78457079,13.30427477],[-13.8175001,-16.78293516,13.30427477],[-13.2903004,-16.78129953,13.30427477],[-13.1373997,-16.77966391,13.30427477],[-13.5699997,-16.77802828,13.30427477],[-13.9407997,-16.77639265,13.30427477],[-14.118,-16.77475702,13.30427477],[-14.4509001,-16.77312139,13.30427477],[-14.8217001,-16.77148577,13.30427477],[-15.1202002,-16.76985014,13.30427477],[-15.4577999,-16.76821451,13.30427477],[-15.8799,-16.76657888,13.30427477],[-15.9181004,-16.76494326,13.30427477],[-15.9252005,-16.76330763,13.30427477],[-16.1786003,-16.761672,13.30427477],[-16.0613003,-16.76003637,13.30427477],[-16.0398998,-16.75840074,13.30427477],[-16.3442001,-16.75676512,13.30427477],[-16.5485001,-16.75512949,13.30427477],[-17.1637001,-16.75349386,13.30427477],[-17.3071003,-16.75185823,13.30427477],[-16.9512997,-16.75022261,13.30427477],[-16.7404003,-16.74858698,13.30427477],[-16.7057991,-16.74695135,13.30427477],[-17.0711002,-16.74531572,13.30427477],[-17.4216003,-16.7436801,13.30427477],[-17.5827999,-16.74204447,13.30427477],[-17.7964001,-16.74040884,13.30427477],[-17.8458004,-16.73877321,13.30427477],[-17.7987003,-16.73713758,13.30427477],[-17.5837002,-16.73550196,13.30427477],[-17.4657993,-16.73386633,13.30427477],[-17.4300995,-16.7322307,13.30427477],[-17.2276001,-16.73059507,13.30427477],[-17.0750008,-16.72895945,13.30427477],[-17.5723991,-16.72732382,13.30427477],[-17.9020004,-16.72568819,13.30427477],[-17.8985004,-16.72405256,13.30427477],[-17.8435001,-16.72241693,13.30427477],[-17.7759991,-16.72078131,13.30427477],[-17.5762005,-16.71914568,13.30427477],[-16.9962006,-16.71751005,13.30427477],[-16.4375,-16.71587442,13.30427477],[-16.5641994,-16.7142388,13.30427477],[-17.0625,-16.71260317,13.30427477],[-17.4766998,-16.71096754,13.30427477],[-17.0543995,-16.70933191,13.30427477],[-16.3516998,-16.70769628,13.30427477],[-15.8498001,-16.70606066,13.30427477],[-15.5417995,-16.70442503,13.30427477],[-14.0796003,-16.7027894,13.30427477],[-13.4561996,-16.70115377,13.30427477],[-15.5780001,-16.69951815,13.30427477],[-17.2271996,-16.69788252,13.30427477],[-17.5093994,-16.69624689,13.30427477],[-16.9789009,-16.69461126,13.30427477],[-16.2143993,-16.69297564,13.30427477],[-16.6257,-16.69134001,13.30427477],[-17.4594002,-16.68970438,13.30427477],[-17.5951004,-16.68806875,13.30427477],[-18.3642998,-16.68643312,13.30427477],[-19.3490009,-16.6847975,13.30427477],[-20.1198006,-16.68316187,13.30427477],[-20.1513996,-16.68152624,13.30427477],[-20.6872005,-16.67989061,13.30427477],[-21.2178993,-16.67825499,13.30427477],[-20.3278008,-16.67661936,13.30427477],[-20.3843994,-16.67498373,13.30427477],[-20.4057007,-16.6733481,13.30427477],[-19.4948997,-16.67171247,13.30427477],[-19.4384995,-16.67007685,13.30427477],[-19.3640003,-16.66844122,13.30427477],[-19.2917995,-16.66680559,13.30427477],[-20.0578003,-16.66516996,13.30427477],[-19.7581997,-16.66353434,13.30427477],[-18.6987991,-16.66189871,13.30427477],[-18.0613003,-16.66026308,13.30427477],[-18.9888,-16.65862745,13.30427477],[-20.5365009,-16.65699182,13.30427477],[-21.5415001,-16.6553562,13.30427477],[-20.5946999,-16.65372057,13.30427477],[-20.2726994,-16.65208494,13.30427477],[-20.1900997,-16.65044931,13.30427477],[-19.1587009,-16.64881369,13.30427477],[-17.4668999,-16.64717806,13.30427477],[-17.1502991,-16.64554243,13.30427477],[-18.3456001,-16.6439068,13.30427477],[-19.0491009,-16.64227118,13.30427477],[-18.5347996,-16.64063555,13.30427477],[-16.5611,-16.63899992,13.30427477],[-15.2156,-16.63736429,13.30427477],[-14.9375,-16.63572866,13.30427477],[-14.2004995,-16.63409304,13.30427477],[-13.5574999,-16.63245741,13.30427477],[-13.6983995,-16.63082178,13.30427477],[-13.8340998,-16.62918615,13.30427477],[-13.9844999,-16.62755053,13.30427477],[-13.9097004,-16.6259149,13.30427477],[-13.7814999,-16.62427927,13.30427477],[-13.7318001,-16.62264364,13.30427477],[-13.7873001,-16.62100801,13.30427477],[-13.8371,-16.61937239,13.30427477],[-13.6988001,-16.61773676,13.30427477],[-12.8690004,-16.61610113,13.30427477],[-11.9962997,-16.6144655,13.30427477],[-11.8704996,-16.61282988,13.30427477],[-11.1472998,-16.61119425,13.30427477],[-10.415,-16.60955862,13.30427477],[-10.6625996,-16.60792299,13.30427477],[-10.9519997,-16.60628736,13.30427477],[-10.9431,-16.60465174,13.30427477],[-3.11689,-16.80256269,13.30263914],[-8.4008102,-16.80092707,13.30263914],[-14.0261002,-16.79929144,13.30263914],[-14.1934004,-16.79765581,13.30263914],[-12.4742002,-16.79602018,13.30263914],[-12.4371996,-16.79438456,13.30263914],[-12.6035004,-16.79274893,13.30263914],[-12.5770998,-16.7911133,13.30263914],[-12.3634996,-16.78947767,13.30263914],[-12.8446999,-16.78784204,13.30263914],[-14.3872004,-16.78620642,13.30263914],[-16.0344009,-16.78457079,13.30263914],[-14.158,-16.78293516,13.30263914],[-12.7124996,-16.78129953,13.30263914],[-12.2518997,-16.77966391,13.30263914],[-13.1736002,-16.77802828,13.30263914],[-14.1708002,-16.77639265,13.30263914],[-14.3241997,-16.77475702,13.30263914],[-14.4204998,-16.77312139,13.30263914],[-15.0650997,-16.77148577,13.30263914],[-15.1365995,-16.76985014,13.30263914],[-15.6426001,-16.76821451,13.30263914],[-16.4477005,-16.76657888,13.30263914],[-16.2796993,-16.76494326,13.30263914],[-16.7444,-16.76330763,13.30263914],[-17.7640991,-16.761672,13.30263914],[-17.0643005,-16.76003637,13.30263914],[-17.1126995,-16.75840074,13.30263914],[-17.5881996,-16.75676512,13.30263914],[-17.1888008,-16.75512949,13.30263914],[-17.8971004,-16.75349386,13.30263914],[-18.2563,-16.75185823,13.30263914],[-17.1459999,-16.75022261,13.30263914],[-16.4650993,-16.74858698,13.30263914],[-16.4514008,-16.74695135,13.30263914],[-17.0393009,-16.74531572,13.30263914],[-17.4689999,-16.7436801,13.30263914],[-17.4228992,-16.74204447,13.30263914],[-17.5690994,-16.74040884,13.30263914],[-17.6861992,-16.73877321,13.30263914],[-17.6884003,-16.73713758,13.30263914],[-17.5708008,-16.73550196,13.30263914],[-17.4922009,-16.73386633,13.30263914],[-17.3868999,-16.7322307,13.30263914],[-16.6424007,-16.73059507,13.30263914],[-16.0851994,-16.72895945,13.30263914],[-17.1982994,-16.72732382,13.30263914],[-17.8048,-16.72568819,13.30263914],[-17.8631001,-16.72405256,13.30263914],[-17.8362999,-16.72241693,13.30263914],[-18.0872993,-16.72078131,13.30263914],[-17.9514008,-16.71914568,13.30263914],[-16.9596004,-16.71751005,13.30263914],[-15.7258997,-16.71587442,13.30263914],[-16.2726994,-16.7142388,13.30263914],[-17.3778992,-16.71260317,13.30263914],[-18.1399002,-16.71096754,13.30263914],[-17.3717003,-16.70933191,13.30263914],[-16.1226997,-16.70769628,13.30263914],[-15.2245998,-16.70606066,13.30263914],[-15.4462004,-16.70442503,13.30263914],[-12.6166,-16.7027894,13.30263914],[-10.8399,-16.70115377,13.30263914],[-15.3667002,-16.69951815,13.30263914],[-17.7045002,-16.69788252,13.30263914],[-17.8649998,-16.69624689,13.30263914],[-17.1140995,-16.69461126,13.30263914],[-15.4157,-16.69297564,13.30263914],[-16.1208992,-16.69134001,13.30263914],[-17.4524002,-16.68970438,13.30263914],[-16.8651009,-16.68806875,13.30263914],[-18.0361004,-16.68643312,13.30263914],[-19.8404007,-16.6847975,13.30263914],[-20.5956001,-16.68316187,13.30263914],[-20.6695004,-16.68152624,13.30263914],[-21.5429993,-16.67989061,13.30263914],[-22.2544003,-16.67825499,13.30263914],[-21.1835003,-16.67661936,13.30263914],[-21.0375004,-16.67498373,13.30263914],[-21.0608006,-16.6733481,13.30263914],[-20.3565998,-16.67171247,13.30263914],[-20.0382004,-16.67007685,13.30263914],[-20.0368004,-16.66844122,13.30263914],[-20.2061996,-16.66680559,13.30263914],[-20.7982998,-16.66516996,13.30263914],[-20.5867004,-16.66353434,13.30263914],[-19.3062992,-16.66189871,13.30263914],[-17.4829006,-16.66026308,13.30263914],[-19.1443996,-16.65862745,13.30263914],[-21.4764996,-16.65699182,13.30263914],[-22.3920994,-16.6553562,13.30263914],[-21.4680004,-16.65372057,13.30263914],[-20.4493008,-16.65208494,13.30263914],[-20.3122997,-16.65044931,13.30263914],[-19.3033009,-16.64881369,13.30263914],[-17.1546993,-16.64717806,13.30263914],[-16.6585007,-16.64554243,13.30263914],[-18.4540997,-16.6439068,13.30263914],[-19.3558006,-16.64227118,13.30263914],[-18.8383999,-16.64063555,13.30263914],[-16.8990993,-16.63899992,13.30263914],[-15.0604,-16.63736429,13.30263914],[-15.3196001,-16.63572866,13.30263914],[-14.4455004,-16.63409304,13.30263914],[-13.4722004,-16.63245741,13.30263914],[-14.0459995,-16.63082178,13.30263914],[-14.335,-16.62918615,13.30263914],[-14.2589998,-16.62755053,13.30263914],[-14.2424002,-16.6259149,13.30263914],[-13.9361,-16.62427927,13.30263914],[-13.7161999,-16.62264364,13.30263914],[-13.8322001,-16.62100801,13.30263914],[-13.7636003,-16.61937239,13.30263914],[-13.6019001,-16.61773676,13.30263914],[-12.6687002,-16.61610113,13.30263914],[-11.9138002,-16.6144655,13.30263914],[-11.7221003,-16.61282988,13.30263914],[-11.0445004,-16.61119425,13.30263914],[-10.382,-16.60955862,13.30263914],[-10.5746002,-16.60792299,13.30263914],[-10.7491999,-16.60628736,13.30263914],[-10.8507004,-16.60465174,13.30263914],[-4.21668,-16.80256269,13.30100351],[-8.5127602,-16.80092707,13.30100351],[-12.9886999,-16.79929144,13.30100351],[-13.6392002,-16.79765581,13.30100351],[-12.9399004,-16.79602018,13.30100351],[-12.6884003,-16.79438456,13.30100351],[-12.7777004,-16.79274893,13.30100351],[-12.6457996,-16.7911133,13.30100351],[-12.4513998,-16.78947767,13.30100351],[-12.6672001,-16.78784204,13.30100351],[-13.7194004,-16.78620642,13.30100351],[-14.6829004,-16.78457079,13.30100351],[-13.5510998,-16.78293516,13.30100351],[-12.6358004,-16.78129953,13.30100351],[-12.4326,-16.77966391,13.30100351],[-12.8409996,-16.77802828,13.30100351],[-13.6044998,-16.77639265,13.30100351],[-13.8360996,-16.77475702,13.30100351],[-13.9913998,-16.77312139,13.30100351],[-14.6231003,-16.77148577,13.30100351],[-14.9336996,-16.76985014,13.30100351],[-15.4918003,-16.76821451,13.30100351],[-16.0891991,-16.76657888,13.30100351],[-16.3283005,-16.76494326,13.30100351],[-16.7992992,-16.76330763,13.30100351],[-17.1849995,-16.761672,13.30100351],[-17.1145,-16.76003637,13.30100351],[-17.1576004,-16.75840074,13.30100351],[-17.3185997,-16.75676512,13.30100351],[-17.3456993,-16.75512949,13.30100351],[-17.6054993,-16.75349386,13.30100351],[-17.6550007,-16.75185823,13.30100351],[-17.0634995,-16.75022261,13.30100351],[-16.5086002,-16.74858698,13.30100351],[-16.3808994,-16.74695135,13.30100351],[-16.6350994,-16.74531572,13.30100351],[-17.0249004,-16.7436801,13.30100351],[-17.1928005,-16.74204447,13.30100351],[-17.3936005,-16.74040884,13.30100351],[-17.5781002,-16.73877321,13.30100351],[-17.5779991,-16.73713758,13.30100351],[-17.4813004,-16.73550196,13.30100351],[-17.4703999,-16.73386633,13.30100351],[-17.2511997,-16.7322307,13.30100351],[-16.9472008,-16.73059507,13.30100351],[-16.8113003,-16.72895945,13.30100351],[-17.2866001,-16.72732382,13.30100351],[-17.5888996,-16.72568819,13.30100351],[-17.6504002,-16.72405256,13.30100351],[-17.7064991,-16.72241693,13.30100351],[-17.9062004,-16.72078131,13.30100351],[-17.7970009,-16.71914568,13.30100351],[-17.0937004,-16.71751005,13.30100351],[-16.4748993,-16.71587442,13.30100351],[-16.6667004,-16.7142388,13.30100351],[-17.2388,-16.71260317,13.30100351],[-17.5923996,-16.71096754,13.30100351],[-17.3465996,-16.70933191,13.30100351],[-16.9193001,-16.70769628,13.30100351],[-16.6469994,-16.70606066,13.30100351],[-16.5144005,-16.70442503,13.30100351],[-15.4841003,-16.7027894,13.30100351],[-15.2053003,-16.70115377,13.30100351],[-16.7336006,-16.69951815,13.30100351],[-17.8187008,-16.69788252,13.30100351],[-18.0767994,-16.69624689,13.30100351],[-17.8724995,-16.69461126,13.30100351],[-17.6580009,-16.69297564,13.30100351],[-17.7747993,-16.69134001,13.30100351],[-18.2208996,-16.68970438,13.30100351],[-18.2810993,-16.68806875,13.30100351],[-19.0335007,-16.68643312,13.30100351],[-20.0473003,-16.6847975,13.30100351],[-20.6884003,-16.68316187,13.30100351],[-20.9750004,-16.68152624,13.30100351],[-21.4190998,-16.67989061,13.30100351],[-21.7119999,-16.67825499,13.30100351],[-21.5620003,-16.67661936,13.30100351],[-21.3609009,-16.67498373,13.30100351],[-21.2075996,-16.6733481,13.30100351],[-21.2233009,-16.67171247,13.30100351],[-21.0252991,-16.67007685,13.30100351],[-21.1042995,-16.66844122,13.30100351],[-21.4542007,-16.66680559,13.30100351],[-21.4030991,-16.66516996,13.30100351],[-21.4412994,-16.66353434,13.30100351],[-21.0984993,-16.66189871,13.30100351],[-20.8132,-16.66026308,13.30100351],[-21.1299,-16.65862745,13.30100351],[-21.7865009,-16.65699182,13.30100351],[-21.8362007,-16.6553562,13.30100351],[-21.4493999,-16.65372057,13.30100351],[-20.9132004,-16.65208494,13.30100351],[-20.6324005,-16.65044931,13.30100351],[-20.0042992,-16.64881369,13.30100351],[-19.2457008,-16.64717806,13.30100351],[-18.8621998,-16.64554243,13.30100351],[-19.2483997,-16.6439068,13.30100351],[-19.5758991,-16.64227118,13.30100351],[-18.9043007,-16.64063555,13.30100351],[-17.3703003,-16.63899992,13.30100351],[-15.9841995,-16.63736429,13.30100351],[-15.8402996,-16.63572866,13.30100351],[-15.9604998,-16.63409304,13.30100351],[-15.6061001,-16.63245741,13.30100351],[-15.2831001,-16.63082178,13.30100351],[-15.2531004,-16.62918615,13.30100351],[-15.3063002,-16.62755053,13.30100351],[-14.9414997,-16.6259149,13.30100351],[-14.5955,-16.62427927,13.30100351],[-14.3351002,-16.62264364,13.30100351],[-13.9356003,-16.62100801,13.30100351],[-13.4968004,-16.61937239,13.30100351],[-13.0635004,-16.61773676,13.30100351],[-12.5408001,-16.61610113,13.30100351],[-11.9878998,-16.6144655,13.30100351],[-11.6360998,-16.61282988,13.30100351],[-11.4049997,-16.61119425,13.30100351],[-11.1852999,-16.60955862,13.30100351],[-10.8416996,-16.60792299,13.30100351],[-10.2827997,-16.60628736,13.30100351],[-9.9708099,-16.60465174,13.30100351],[-4.7253499,-16.80256269,13.29936788],[-8.6930504,-16.80092707,13.29936788],[-12.3849001,-16.79929144,13.29936788],[-13.3957996,-16.79765581,13.29936788],[-13.1982002,-16.79602018,13.29936788],[-13.2938995,-16.79438456,13.29936788],[-13.1477003,-16.79274893,13.29936788],[-12.4628,-16.7911133,13.29936788],[-11.7150002,-16.78947767,13.29936788],[-11.9830999,-16.78784204,13.29936788],[-12.507,-16.78620642,13.29936788],[-12.5372,-16.78457079,13.29936788],[-12.5145998,-16.78293516,13.29936788],[-12.0347004,-16.78129953,13.29936788],[-11.8415003,-16.77966391,13.29936788],[-12.3214998,-16.77802828,13.29936788],[-12.3781004,-16.77639265,13.29936788],[-12.6061001,-16.77475702,13.29936788],[-13.3472996,-16.77312139,13.29936788],[-13.7468004,-16.77148577,13.29936788],[-14.2060003,-16.76985014,13.29936788],[-15.217,-16.76821451,13.29936788],[-15.9256001,-16.76657888,13.29936788],[-16.1958008,-16.76494326,13.29936788],[-16.7374992,-16.76330763,13.29936788],[-17.0534,-16.761672,13.29936788],[-17.1179008,-16.76003637,13.29936788],[-17.2504997,-16.75840074,13.29936788],[-17.4276009,-16.75676512,13.29936788],[-17.3952007,-16.75512949,13.29936788],[-17.5834999,-16.75349386,13.29936788],[-17.6777992,-16.75185823,13.29936788],[-16.8764,-16.75022261,13.29936788],[-15.7927999,-16.74858698,13.29936788],[-15.6872997,-16.74695135,13.29936788],[-16.1993999,-16.74531572,13.29936788],[-16.4092999,-16.7436801,13.29936788],[-16.6688995,-16.74204447,13.29936788],[-17.2395992,-16.74040884,13.29936788],[-17.5382004,-16.73877321,13.29936788],[-17.5175991,-16.73713758,13.29936788],[-17.4482994,-16.73550196,13.29936788],[-17.4354,-16.73386633,13.29936788],[-17.2922001,-16.7322307,13.29936788],[-17.2826996,-16.73059507,13.29936788],[-17.4004002,-16.72895945,13.29936788],[-17.3857994,-16.72732382,13.29936788],[-17.2227993,-16.72568819,13.29936788],[-17.1973,-16.72405256,13.29936788],[-17.7012005,-16.72241693,13.29936788],[-18.5617008,-16.72078131,13.29936788],[-18.3565006,-16.71914568,13.29936788],[-17.1863003,-16.71751005,13.29936788],[-16.3006992,-16.71587442,13.29936788],[-16.5757999,-16.7142388,13.29936788],[-17.2292995,-16.71260317,13.29936788],[-17.5807991,-16.71096754,13.29936788],[-17.5503998,-16.70933191,13.29936788],[-18.1240997,-16.70769628,13.29936788],[-18.7672997,-16.70606066,13.29936788],[-18.0431004,-16.70442503,13.29936788],[-18.1522007,-16.7027894,13.29936788],[-18.5755997,-16.70115377,13.29936788],[-18.2773991,-16.69951815,13.29936788],[-19.3157005,-16.69788252,13.29936788],[-19.4797993,-16.69624689,13.29936788],[-18.8943996,-16.69461126,13.29936788],[-19.6406002,-16.69297564,13.29936788],[-19.4703007,-16.69134001,13.29936788],[-19.0237999,-16.68970438,13.29936788],[-19.0354996,-16.68806875,13.29936788],[-19.4978008,-16.68643312,13.29936788],[-20.6114006,-16.6847975,13.29936788],[-21.4372997,-16.68316187,13.29936788],[-21.4228992,-16.68152624,13.29936788],[-21.7633991,-16.67989061,13.29936788],[-22.0653,-16.67825499,13.29936788],[-21.8255005,-16.67661936,13.29936788],[-21.6382008,-16.67498373,13.29936788],[-21.5832996,-16.6733481,13.29936788],[-21.7893009,-16.67171247,13.29936788],[-22.5142002,-16.67007685,13.29936788],[-22.5828991,-16.66844122,13.29936788],[-22.5478992,-16.66680559,13.29936788],[-23.0093002,-16.66516996,13.29936788],[-22.8659,-16.66353434,13.29936788],[-22.8540993,-16.66189871,13.29936788],[-24.1035004,-16.66026308,13.29936788],[-23.1249008,-16.65862745,13.29936788],[-22.5389996,-16.65699182,13.29936788],[-23.3227005,-16.6553562,13.29936788],[-21.8925991,-16.65372057,13.29936788],[-21.6371002,-16.65208494,13.29936788],[-21.9080009,-16.65044931,13.29936788],[-20.7360001,-16.64881369,13.29936788],[-20.2436008,-16.64717806,13.29936788],[-20.2175999,-16.64554243,13.29936788],[-20.0466003,-16.6439068,13.29936788],[-21.6163006,-16.64227118,13.29936788],[-20.8859997,-16.64063555,13.29936788],[-17.4172993,-16.63899992,13.29936788],[-15.0135002,-16.63736429,13.29936788],[-15.7047997,-16.63572866,13.29936788],[-17.0548,-16.63409304,13.29936788],[-18.1928005,-16.63245741,13.29936788],[-16.9995003,-16.63082178,13.29936788],[-16.405899,-16.62918615,13.29936788],[-17.1023006,-16.62755053,13.29936788],[-15.6943998,-16.6259149,13.29936788],[-15.1631002,-16.62427927,13.29936788],[-15.1139002,-16.62264364,13.29936788],[-13.9799004,-16.62100801,13.29936788],[-12.8282003,-16.61937239,13.29936788],[-12.6239996,-16.61773676,13.29936788],[-12.3738003,-16.61610113,13.29936788],[-11.4495001,-16.6144655,13.29936788],[-11.5229998,-16.61282988,13.29936788],[-11.6795998,-16.61119425,13.29936788],[-11.5733995,-16.60955862,13.29936788],[-11.2174997,-16.60792299,13.29936788],[-9.4939699,-16.60628736,13.29936788],[-7.2806501,-16.60465174,13.29936788],[-1.46257,-16.80256269,13.29773226],[-8.2507601,-16.80092707,13.29773226],[-14.5525999,-16.79929144,13.29773226],[-14.8260002,-16.79765581,13.29773226],[-13.3718004,-16.79602018,13.29773226],[-13.7358999,-16.79438456,13.29773226],[-13.5135002,-16.79274893,13.29773226],[-12.1996002,-16.7911133,13.29773226],[-10.4703999,-16.78947767,13.29773226],[-11.3740997,-16.78784204,13.29773226],[-12.0240002,-16.78620642,13.29773226],[-11.8975,-16.78457079,13.29773226],[-11.9811001,-16.78293516,13.29773226],[-11.4133997,-16.78129953,13.29773226],[-11.0401001,-16.77966391,13.29773226],[-11.8402996,-16.77802828,13.29773226],[-11.8268003,-16.77639265,13.29773226],[-11.8104,-16.77475702,13.29773226],[-12.9043999,-16.77312139,13.29773226],[-13.3601999,-16.77148577,13.29773226],[-13.6056995,-16.76985014,13.29773226],[-15.0466995,-16.76821451,13.29773226],[-16.1970997,-16.76657888,13.29773226],[-16.1704006,-16.76494326,13.29773226],[-16.7331009,-16.76330763,13.29773226],[-17.3819008,-16.761672,13.29773226],[-17.1699009,-16.76003637,13.29773226],[-17.3964996,-16.75840074,13.29773226],[-17.7241001,-16.75676512,13.29773226],[-17.4048996,-16.75512949,13.29773226],[-17.8586006,-16.75349386,13.29773226],[-18.1963005,-16.75185823,13.29773226],[-16.6651001,-16.75022261,13.29773226],[-15.2108002,-16.74858698,13.29773226],[-15.1222,-16.74695135,13.29773226],[-15.9426003,-16.74531572,13.29773226],[-16.2133999,-16.7436801,13.29773226],[-16.3155994,-16.74204447,13.29773226],[-17.0363007,-16.74040884,13.29773226],[-17.6966991,-16.73877321,13.29773226],[-17.5212994,-16.73713758,13.29773226],[-17.3271008,-16.73550196,13.29773226],[-17.4295998,-16.73386633,13.29773226],[-17.2922993,-16.7322307,13.29773226],[-17.3885994,-16.73059507,13.29773226],[-17.5445004,-16.72895945,13.29773226],[-17.2546997,-16.72732382,13.29773226],[-16.9985008,-16.72568819,13.29773226],[-16.9682007,-16.72405256,13.29773226],[-17.6186008,-16.72241693,13.29773226],[-18.9710007,-16.72078131,13.29773226],[-18.7581997,-16.71914568,13.29773226],[-17.1665993,-16.71751005,13.29773226],[-15.9926004,-16.71587442,13.29773226],[-16.4701996,-16.7142388,13.29773226],[-17.3031006,-16.71260317,13.29773226],[-17.6534004,-16.71096754,13.29773226],[-17.8759995,-16.70933191,13.29773226],[-18.5657005,-16.70769628,13.29773226],[-19.3129005,-16.70606066,13.29773226],[-18.7222996,-16.70442503,13.29773226],[-18.8432999,-16.7027894,13.29773226],[-19.1580009,-16.70115377,13.29773226],[-18.9913006,-16.69951815,13.29773226],[-19.757,-16.69788252,13.29773226],[-19.8642006,-16.69624689,13.29773226],[-19.4552002,-16.69461126,13.29773226],[-20.0305004,-16.69297564,13.29773226],[-19.9036999,-16.69134001,13.29773226],[-19.4676991,-16.68970438,13.29773226],[-19.1154003,-16.68806875,13.29773226],[-19.6497993,-16.68643312,13.29773226],[-20.9078007,-16.6847975,13.29773226],[-21.5487995,-16.68316187,13.29773226],[-21.5403004,-16.68152624,13.29773226],[-22.0440006,-16.67989061,13.29773226],[-22.2119999,-16.67825499,13.29773226],[-22.1870003,-16.67661936,13.29773226],[-21.8777008,-16.67498373,13.29773226],[-21.8083992,-16.6733481,13.29773226],[-22.6361008,-16.67171247,13.29773226],[-22.9487,-16.67007685,13.29773226],[-23.0748005,-16.66844122,13.29773226],[-23.3512993,-16.66680559,13.29773226],[-23.3614006,-16.66516996,13.29773226],[-23.2793999,-16.66353434,13.29773226],[-23.1685009,-16.66189871,13.29773226],[-24.0573997,-16.66026308,13.29773226],[-22.9188004,-16.65862745,13.29773226],[-22.6175995,-16.65699182,13.29773226],[-23.0834007,-16.6553562,13.29773226],[-21.7842007,-16.65372057,13.29773226],[-21.0653992,-16.65208494,13.29773226],[-21.4150009,-16.65044931,13.29773226],[-20.1439991,-16.64881369,13.29773226],[-20.2600002,-16.64717806,13.29773226],[-20.2956009,-16.64554243,13.29773226],[-20.1403999,-16.6439068,13.29773226],[-21.1492004,-16.64227118,13.29773226],[-20.5403996,-16.64063555,13.29773226],[-18.2383003,-16.63899992,13.29773226],[-15.8792,-16.63736429,13.29773226],[-16.5270004,-16.63572866,13.29773226],[-17.2455997,-16.63409304,13.29773226],[-17.9071999,-16.63245741,13.29773226],[-17.0494995,-16.63082178,13.29773226],[-16.4731007,-16.62918615,13.29773226],[-16.6452007,-16.62755053,13.29773226],[-15.6443996,-16.6259149,13.29773226],[-15.0740004,-16.62427927,13.29773226],[-14.9233999,-16.62264364,13.29773226],[-14.0981998,-16.62100801,13.29773226],[-13.0623999,-16.61937239,13.29773226],[-12.8326998,-16.61773676,13.29773226],[-12.8174,-16.61610113,13.29773226],[-12.0677004,-16.6144655,13.29773226],[-12.1119003,-16.61282988,13.29773226],[-12.2693996,-16.61119425,13.29773226],[-11.8852997,-16.60955862,13.29773226],[-11.7618999,-16.60792299,13.29773226],[-10.6906996,-16.60628736,13.29773226],[-9.1928501,-16.60465174,13.29773226],[-4.6637301,-16.80256269,13.29609663],[-9.0022497,-16.80092707,13.29609663],[-12.8109999,-16.79929144,13.29609663],[-13.7887001,-16.79765581,13.29609663],[-13.7426004,-16.79602018,13.29609663],[-13.8045998,-16.79438456,13.29609663],[-13.5178003,-16.79274893,13.29609663],[-12.4794998,-16.7911133,13.29609663],[-11.6225996,-16.78947767,13.29609663],[-11.7290001,-16.78784204,13.29609663],[-11.9394999,-16.78620642,13.29609663],[-11.8191996,-16.78457079,13.29609663],[-11.7414999,-16.78293516,13.29609663],[-11.5256004,-16.78129953,13.29609663],[-11.5059996,-16.77966391,13.29609663],[-11.6604996,-16.77802828,13.29609663],[-11.9007998,-16.77639265,13.29609663],[-12.1373997,-16.77475702,13.29609663],[-12.6400003,-16.77312139,13.29609663],[-13.1332998,-16.77148577,13.29609663],[-13.6324997,-16.76985014,13.29609663],[-14.5543003,-16.76821451,13.29609663],[-15.5496998,-16.76657888,13.29609663],[-15.9244003,-16.76494326,13.29609663],[-16.3192005,-16.76330763,13.29609663],[-16.8076,-16.761672,13.29609663],[-16.8155994,-16.76003637,13.29609663],[-16.7975006,-16.75840074,13.29609663],[-16.9417992,-16.75676512,13.29609663],[-16.8493996,-16.75512949,13.29609663],[-17.0384007,-16.75349386,13.29609663],[-17.0098,-16.75185823,13.29609663],[-16.2775002,-16.75022261,13.29609663],[-15.6547003,-16.74858698,13.29609663],[-15.4484997,-16.74695135,13.29609663],[-15.6134005,-16.74531572,13.29609663],[-15.7470999,-16.7436801,13.29609663],[-16.0643997,-16.74204447,13.29609663],[-16.8561993,-16.74040884,13.29609663],[-17.5538006,-16.73877321,13.29609663],[-17.5163002,-16.73713758,13.29609663],[-17.1352005,-16.73550196,13.29609663],[-17.0123997,-16.73386633,13.29609663],[-17.0389996,-16.7322307,13.29609663],[-17.2318993,-16.73059507,13.29609663],[-17.2600994,-16.72895945,13.29609663],[-17.1604004,-16.72732382,13.29609663],[-17.0494003,-16.72568819,13.29609663],[-17.1142998,-16.72405256,13.29609663],[-17.2812996,-16.72241693,13.29609663],[-17.4675007,-16.72078131,13.29609663],[-17.4433002,-16.71914568,13.29609663],[-17.1289997,-16.71751005,13.29609663],[-16.9706993,-16.71587442,13.29609663],[-17.1205997,-16.7142388,13.29609663],[-17.4148998,-16.71260317,13.29609663],[-17.5890999,-16.71096754,13.29609663],[-18.0214005,-16.70933191,13.29609663],[-18.5372009,-16.70769628,13.29609663],[-18.6693993,-16.70606066,13.29609663],[-18.7805004,-16.70442503,13.29609663],[-19.0617008,-16.7027894,13.29609663],[-19.2458992,-16.70115377,13.29609663],[-19.2584,-16.69951815,13.29609663],[-19.3169994,-16.69788252,13.29609663],[-19.2600994,-16.69624689,13.29609663],[-19.6040001,-16.69461126,13.29609663],[-19.6023998,-16.69297564,13.29609663],[-19.7668991,-16.69134001,13.29609663],[-19.8675995,-16.68970438,13.29609663],[-20.0944996,-16.68806875,13.29609663],[-20.4733009,-16.68643312,13.29609663],[-20.7714005,-16.6847975,13.29609663],[-21.1793995,-16.68316187,13.29609663],[-21.6662006,-16.68152624,13.29609663],[-22.1341,-16.67989061,13.29609663],[-22.4820004,-16.67825499,13.29609663],[-22.5877991,-16.67661936,13.29609663],[-22.448,-16.67498373,13.29609663],[-22.5294991,-16.6733481,13.29609663],[-23.1823006,-16.67171247,13.29609663],[-23.8419991,-16.67007685,13.29609663],[-23.9636002,-16.66844122,13.29609663],[-24.1396999,-16.66680559,13.29609663],[-24.3246994,-16.66516996,13.29609663],[-23.8141994,-16.66353434,13.29609663],[-22.3710003,-16.66189871,13.29609663],[-21.2667999,-16.66026308,13.29609663],[-21.1966,-16.65862745,13.29609663],[-21.7192001,-16.65699182,13.29609663],[-21.5904007,-16.6553562,13.29609663],[-20.5207996,-16.65372057,13.29609663],[-18.0984001,-16.65208494,13.29609663],[-16.9587002,-16.65044931,13.29609663],[-18.6679993,-16.64881369,13.29609663],[-20.6961002,-16.64717806,13.29609663],[-21.1054001,-16.64554243,13.29609663],[-19.5447006,-16.6439068,13.29609663],[-17.8155994,-16.64227118,13.29609663],[-17.8859005,-16.64063555,13.29609663],[-19.0830002,-16.63899992,13.29609663],[-19.906601,-16.63736429,13.29609663],[-19.0263004,-16.63572866,13.29609663],[-17.4027996,-16.63409304,13.29609663],[-16.2248001,-16.63245741,13.29609663],[-16.0060997,-16.63082178,13.29609663],[-15.7677002,-16.62918615,13.29609663],[-15.3696003,-16.62755053,13.29609663],[-15.0467997,-16.6259149,13.29609663],[-14.7237997,-16.62427927,13.29609663],[-14.5331001,-16.62264364,13.29609663],[-14.0565004,-16.62100801,13.29609663],[-13.2828999,-16.61937239,13.29609663],[-13.1328001,-16.61773676,13.29609663],[-13.4996004,-16.61610113,13.29609663],[-14.0572996,-16.6144655,13.29609663],[-13.8775997,-16.61282988,13.29609663],[-13.1952,-16.61119425,13.29609663],[-13.1691999,-16.60955862,13.29609663],[-12.9250002,-16.60792299,13.29609663],[-12.8079004,-16.60628736,13.29609663],[-13.0600004,-16.60465174,13.29609663],[-5.88062,-16.80256269,13.294461],[-9.4153996,-16.80092707,13.294461],[-13.0516996,-16.79929144,13.294461],[-13.9886999,-16.79765581,13.294461],[-14.0269003,-16.79602018,13.294461],[-14.5914001,-16.79438456,13.294461],[-14.1806002,-16.79274893,13.294461],[-12.8900003,-16.7911133,13.294461],[-12.2638998,-16.78947767,13.294461],[-12.1295996,-16.78784204,13.294461],[-11.8751001,-16.78620642,13.294461],[-11.6042004,-16.78457079,13.294461],[-11.6246004,-16.78293516,13.294461],[-11.6274004,-16.78129953,13.294461],[-11.5945997,-16.77966391,13.294461],[-11.6997995,-16.77802828,13.294461],[-11.8783998,-16.77639265,13.294461],[-12.0537004,-16.77475702,13.294461],[-12.4209003,-16.77312139,13.294461],[-12.4687996,-16.77148577,13.294461],[-12.8698997,-16.76985014,13.294461],[-14.2236004,-16.76821451,13.294461],[-15.1092997,-16.76657888,13.294461],[-15.4120998,-16.76494326,13.294461],[-16.0522003,-16.76330763,13.294461],[-16.3808994,-16.761672,13.294461],[-16.3614006,-16.76003637,13.294461],[-15.9442997,-16.75840074,13.294461],[-15.4792995,-16.75676512,13.294461],[-16.1042004,-16.75512949,13.294461],[-16.2731991,-16.75349386,13.294461],[-16.1422997,-16.75185823,13.294461],[-15.9457998,-16.75022261,13.294461],[-15.3099003,-16.74858698,13.294461],[-15.2231998,-16.74695135,13.294461],[-15.2116003,-16.74531572,13.294461],[-14.3856001,-16.7436801,13.294461],[-14.9568005,-16.74204447,13.294461],[-17.0049992,-16.74040884,13.294461],[-18.7035007,-16.73877321,13.294461],[-18.0028992,-16.73713758,13.294461],[-16.6508999,-16.73550196,13.294461],[-15.6403999,-16.73386633,13.294461],[-16.5351009,-16.7322307,13.294461],[-17.1863995,-16.73059507,13.294461],[-17.3414001,-16.72895945,13.294461],[-17.1508999,-16.72732382,13.294461],[-16.9552002,-16.72568819,13.294461],[-16.9458008,-16.72405256,13.294461],[-16.8514996,-16.72241693,13.294461],[-16.1835003,-16.72078131,13.294461],[-16.2464008,-16.71914568,13.294461],[-17.0573006,-16.71751005,13.294461],[-17.5111008,-16.71587442,13.294461],[-17.4909992,-16.7142388,13.294461],[-17.5531998,-16.71260317,13.294461],[-17.4288006,-16.71096754,13.294461],[-17.9104004,-16.70933191,13.294461],[-18.5471001,-16.70769628,13.294461],[-18.9181004,-16.70606066,13.294461],[-19.0925007,-16.70442503,13.294461],[-19.9034996,-16.7027894,13.294461],[-20.5195999,-16.70115377,13.294461],[-19.5091,-16.69951815,13.294461],[-19.2609005,-16.69788252,13.294461],[-19.2236004,-16.69624689,13.294461],[-19.5177002,-16.69461126,13.294461],[-19.7310009,-16.69297564,13.294461],[-19.8078995,-16.69134001,13.294461],[-20.3836994,-16.68970438,13.294461],[-21.5356998,-16.68806875,13.294461],[-21.0897999,-16.68643312,13.294461],[-20.9738007,-16.6847975,13.294461],[-21.0723,-16.68316187,13.294461],[-21.4400005,-16.68152624,13.294461],[-22.6914005,-16.67989061,13.294461],[-23.3691006,-16.67825499,13.294461],[-22.8673,-16.67661936,13.294461],[-22.5839996,-16.67498373,13.294461],[-22.5072002,-16.6733481,13.294461],[-23.6636009,-16.67171247,13.294461],[-25.1138992,-16.67007685,13.294461],[-25.1814003,-16.66844122,13.294461],[-24.9626007,-16.66680559,13.294461],[-27.0200996,-16.66516996,13.294461],[-25.6718998,-16.66353434,13.294461],[-21.3111,-16.66189871,13.294461],[-18.0086994,-16.66026308,13.294461],[-19.5112991,-16.65862745,13.294461],[-21.6145,-16.65699182,13.294461],[-23.2502995,-16.6553562,13.294461],[-20.1168003,-16.65372057,13.294461],[-13.8429003,-16.65208494,13.294461],[-10.0705996,-16.65044931,13.294461],[-17.1105995,-16.64881369,13.294461],[-23.1096992,-16.64717806,13.294461],[-24.0555992,-16.64554243,13.294461],[-19.2010994,-16.6439068,13.294461],[-13.7948999,-16.64227118,13.294461],[-14.7044001,-16.64063555,13.294461],[-19.8743,-16.63899992,13.294461],[-24.6811008,-16.63736429,13.294461],[-22.0674992,-16.63572866,13.294461],[-17.1954994,-16.63409304,13.294461],[-14.5734997,-16.63245741,13.294461],[-15.3957996,-16.63082178,13.294461],[-15.2075005,-16.62918615,13.294461],[-14.8677998,-16.62755053,13.294461],[-14.8318996,-16.6259149,13.294461],[-14.6782999,-16.62427927,13.294461],[-14.6745005,-16.62264364,13.294461],[-14.0501003,-16.62100801,13.294461],[-12.6604004,-16.61937239,13.294461],[-12.5864,-16.61773676,13.294461],[-14.1243,-16.61610113,13.294461],[-15.5295,-16.6144655,13.294461],[-15.1745005,-16.61282988,13.294461],[-14.0820999,-16.61119425,13.294461],[-13.7335997,-16.60955862,13.294461],[-13.7529001,-16.60792299,13.294461],[-14.1744003,-16.60628736,13.294461],[-14.7608004,-16.60465174,13.294461],[-4.9289198,-16.80419832,13.29282537],[-4.53193,-16.80256269,13.29282537],[-9.3029099,-16.80092707,13.29282537],[-14.2888002,-16.79929144,13.29282537],[-14.6892996,-16.79765581,13.29282537],[-13.9716997,-16.79602018,13.29282537],[-15.1541004,-16.79438456,13.29282537],[-14.6752996,-16.79274893,13.29282537],[-13.0452995,-16.7911133,13.29282537],[-12.2581997,-16.78947767,13.29282537],[-12.0937996,-16.78784204,13.29282537],[-11.7194004,-16.78620642,13.29282537],[-11.5293999,-16.78457079,13.29282537],[-11.5144997,-16.78293516,13.29282537],[-11.4980001,-16.78129953,13.29282537],[-11.5969,-16.77966391,13.29282537],[-11.6009998,-16.77802828,13.29282537],[-11.8976002,-16.77639265,13.29282537],[-11.9884005,-16.77475702,13.29282537],[-12.1906996,-16.77312139,13.29282537],[-12.1779003,-16.77148577,13.29282537],[-12.4649,-16.76985014,13.29282537],[-14.0493002,-16.76821451,13.29282537],[-15.1271,-16.76657888,13.29282537],[-15.2185001,-16.76494326,13.29282537],[-15.7565002,-16.76330763,13.29282537],[-16.3766003,-16.761672,13.29282537],[-16.0750008,-16.76003637,13.29282537],[-15.6196003,-16.75840074,13.29282537],[-15.0908003,-16.75676512,13.29282537],[-15.7896996,-16.75512949,13.29282537],[-16.0216999,-16.75349386,13.29282537],[-16.0130005,-16.75185823,13.29282537],[-15.7434998,-16.75022261,13.29282537],[-15.1893997,-16.74858698,13.29282537],[-15.1475,-16.74695135,13.29282537],[-15.0911999,-16.74531572,13.29282537],[-14.1274004,-16.7436801,13.29282537],[-14.7137003,-16.74204447,13.29282537],[-16.9843998,-16.74040884,13.29282537],[-18.8626995,-16.73877321,13.29282537],[-18.0429993,-16.73713758,13.29282537],[-16.5848007,-16.73550196,13.29282537],[-15.5267,-16.73386633,13.29282537],[-16.4831009,-16.7322307,13.29282537],[-17.2045002,-16.73059507,13.29282537],[-17.3565006,-16.72895945,13.29282537],[-17.1081009,-16.72732382,13.29282537],[-16.9263992,-16.72568819,13.29282537],[-16.9228001,-16.72405256,13.29282537],[-16.8339996,-16.72241693,13.29282537],[-16.1737995,-16.72078131,13.29282537],[-16.2558002,-16.71914568,13.29282537],[-17.1044998,-16.71751005,13.29282537],[-17.5387001,-16.71587442,13.29282537],[-17.5550003,-16.7142388,13.29282537],[-17.6289005,-16.71260317,13.29282537],[-17.4871006,-16.71096754,13.29282537],[-17.9349003,-16.70933191,13.29282537],[-18.5832996,-16.70769628,13.29282537],[-18.8943005,-16.70606066,13.29282537],[-18.9601994,-16.70442503,13.29282537],[-19.7301998,-16.7027894,13.29282537],[-20.2406006,-16.70115377,13.29282537],[-19.4092007,-16.69951815,13.29282537],[-19.1805,-16.69788252,13.29282537],[-19.2212009,-16.69624689,13.29282537],[-19.3808002,-16.69461126,13.29282537],[-19.6798992,-16.69297564,13.29282537],[-19.7098999,-16.69134001,13.29282537],[-20.0641003,-16.68970438,13.29282537],[-21.0515003,-16.68806875,13.29282537],[-20.6723995,-16.68643312,13.29282537],[-20.6326008,-16.6847975,13.29282537],[-20.8306007,-16.68316187,13.29282537],[-21.3138008,-16.68152624,13.29282537],[-22.3148994,-16.67989061,13.29282537],[-23.0400009,-16.67825499,13.29282537],[-22.8442001,-16.67661936,13.29282537],[-22.7929001,-16.67498373,13.29282537],[-22.9228992,-16.6733481,13.29282537],[-23.7500992,-16.67171247,13.29282537],[-24.7385006,-16.67007685,13.29282537],[-24.6161003,-16.66844122,13.29282537],[-24.2208996,-16.66680559,13.29282537],[-25.4057007,-16.66516996,13.29282537],[-24.1467991,-16.66353434,13.29282537],[-20.8054008,-16.66189871,13.29282537],[-18.8952007,-16.66026308,13.29282537],[-19.2719994,-16.65862745,13.29282537],[-20.4675999,-16.65699182,13.29282537],[-21.3827991,-16.6553562,13.29282537],[-19.1693001,-16.65372057,13.29282537],[-15.3787003,-16.65208494,13.29282537],[-13.4528999,-16.65044931,13.29282537],[-17.0960999,-16.64881369,13.29282537],[-21.0506001,-16.64717806,13.29282537],[-21.6180992,-16.64554243,13.29282537],[-18.8094006,-16.6439068,13.29282537],[-16.0825996,-16.64227118,13.29282537],[-16.4596996,-16.64063555,13.29282537],[-19.1578007,-16.63899992,13.29282537],[-21.6826,-16.63736429,13.29282537],[-20.4188004,-16.63572866,13.29282537],[-17.3048992,-16.63409304,13.29282537],[-15.7855997,-16.63245741,13.29282537],[-15.7279997,-16.63082178,13.29282537],[-15.1371002,-16.62918615,13.29282537],[-14.5584002,-16.62755053,13.29282537],[-14.4165001,-16.6259149,13.29282537],[-14.5144997,-16.62427927,13.29282537],[-14.5349998,-16.62264364,13.29282537],[-14.2112999,-16.62100801,13.29282537],[-13.6398001,-16.61937239,13.29282537],[-13.7526999,-16.61773676,13.29282537],[-14.6512003,-16.61610113,13.29282537],[-15.1819,-16.6144655,13.29282537],[-15.1641998,-16.61282988,13.29282537],[-14.8835001,-16.61119425,13.29282537],[-14.4539003,-16.60955862,13.29282537],[-14.6464996,-16.60792299,13.29282537],[-14.9462996,-16.60628736,13.29282537],[-14.8815002,-16.60465174,13.29282537],[-5.87115,-16.80419832,13.29118975],[-6.6506,-16.80256269,13.29118975],[-9.6117001,-16.80092707,13.29118975],[-12.9623003,-16.79929144,13.29118975],[-13.9726,-16.79765581,13.29118975],[-14.0922003,-16.79602018,13.29118975],[-14.3900003,-16.79438456,13.29118975],[-13.8788004,-16.79274893,13.29118975],[-12.9984999,-16.7911133,13.29118975],[-12.2665997,-16.78947767,13.29118975],[-11.9532003,-16.78784204,13.29118975],[-11.8507996,-16.78620642,13.29118975],[-11.6178999,-16.78457079,13.29118975],[-11.4904003,-16.78293516,13.29118975],[-11.2166996,-16.78129953,13.29118975],[-11.1850996,-16.77966391,13.29118975],[-11.3907003,-16.77802828,13.29118975],[-11.7472,-16.77639265,13.29118975],[-11.9162998,-16.77475702,13.29118975],[-12.1435003,-16.77312139,13.29118975],[-12.3563995,-16.77148577,13.29118975],[-12.7776003,-16.76985014,13.29118975],[-13.6785002,-16.76821451,13.29118975],[-14.4990997,-16.76657888,13.29118975],[-14.9063997,-16.76494326,13.29118975],[-15.2788,-16.76330763,13.29118975],[-15.7467003,-16.761672,13.29118975],[-15.7516003,-16.76003637,13.29118975],[-15.6562996,-16.75840074,13.29118975],[-15.6725998,-16.75676512,13.29118975],[-15.8525,-16.75512949,13.29118975],[-16.0062008,-16.75349386,13.29118975],[-16.0070992,-16.75185823,13.29118975],[-15.7798004,-16.75022261,13.29118975],[-15.6248999,-16.74858698,13.29118975],[-15.5024996,-16.74695135,13.29118975],[-15.4294996,-16.74531572,13.29118975],[-15.2863998,-16.7436801,13.29118975],[-15.6455002,-16.74204447,13.29118975],[-16.5501995,-16.74040884,13.29118975],[-17.2702007,-16.73877321,13.29118975],[-17.3292999,-16.73713758,13.29118975],[-17.0482998,-16.73550196,13.29118975],[-17.0352993,-16.73386633,13.29118975],[-17.0781994,-16.7322307,13.29118975],[-17.2595997,-16.73059507,13.29118975],[-17.2931004,-16.72895945,13.29118975],[-17.0902996,-16.72732382,13.29118975],[-16.8246002,-16.72568819,13.29118975],[-16.8677006,-16.72405256,13.29118975],[-16.9729996,-16.72241693,13.29118975],[-16.9638004,-16.72078131,13.29118975],[-17.0298004,-16.71914568,13.29118975],[-17.2537003,-16.71751005,13.29118975],[-17.5301991,-16.71587442,13.29118975],[-17.5963001,-16.7142388,13.29118975],[-17.7982006,-16.71260317,13.29118975],[-18.0867004,-16.71096754,13.29118975],[-18.3078995,-16.70933191,13.29118975],[-18.5282993,-16.70769628,13.29118975],[-18.7203007,-16.70606066,13.29118975],[-18.6142006,-16.70442503,13.29118975],[-18.2623997,-16.7027894,13.29118975],[-18.155899,-16.70115377,13.29118975],[-18.594101,-16.69951815,13.29118975],[-18.7959995,-16.69788252,13.29118975],[-18.8696003,-16.69624689,13.29118975],[-19.1149006,-16.69461126,13.29118975],[-19.1196003,-16.69297564,13.29118975],[-19.1966991,-16.69134001,13.29118975],[-19.2700005,-16.68970438,13.29118975],[-19.1243,-16.68806875,13.29118975],[-19.4445992,-16.68643312,13.29118975],[-19.7516994,-16.6847975,13.29118975],[-19.7914009,-16.68316187,13.29118975],[-20.6093006,-16.68152624,13.29118975],[-21.7036991,-16.67989061,13.29118975],[-22.4456997,-16.67825499,13.29118975],[-22.8600998,-16.67661936,13.29118975],[-23.3260994,-16.67498373,13.29118975],[-23.6730003,-16.6733481,13.29118975],[-23.9097996,-16.67171247,13.29118975],[-23.8882008,-16.67007685,13.29118975],[-23.7388992,-16.66844122,13.29118975],[-23.0410995,-16.66680559,13.29118975],[-22.4064999,-16.66516996,13.29118975],[-21.6180992,-16.66353434,13.29118975],[-19.8446007,-16.66189871,13.29118975],[-18.0723,-16.66026308,13.29118975],[-18.3397999,-16.65862745,13.29118975],[-19.1126003,-16.65699182,13.29118975],[-19.0862007,-16.6553562,13.29118975],[-18.5438004,-16.65372057,13.29118975],[-17.2702999,-16.65208494,13.29118975],[-16.8885002,-16.65044931,13.29118975],[-17.6264992,-16.64881369,13.29118975],[-18.5268993,-16.64717806,13.29118975],[-18.8036003,-16.64554243,13.29118975],[-18.7271004,-16.6439068,13.29118975],[-19.0625992,-16.64227118,13.29118975],[-18.8913002,-16.64063555,13.29118975],[-18.7019005,-16.63899992,13.29118975],[-18.7726994,-16.63736429,13.29118975],[-18.2863998,-16.63572866,13.29118975],[-17.5251007,-16.63409304,13.29118975],[-17.2619991,-16.63245741,13.29118975],[-16.2679005,-16.63082178,13.29118975],[-14.0542002,-16.62918615,13.29118975],[-12.3146,-16.62755053,13.29118975],[-13.5335999,-16.6259149,13.29118975],[-14.7637997,-16.62427927,13.29118975],[-15.0307999,-16.62264364,13.29118975],[-14.6819,-16.62100801,13.29118975],[-14.9961004,-16.61937239,13.29118975],[-15.1522999,-16.61773676,13.29118975],[-15.3010998,-16.61610113,13.29118975],[-15.8484001,-16.6144655,13.29118975],[-15.7953997,-16.61282988,13.29118975],[-15.5059004,-16.61119425,13.29118975],[-15.7076998,-16.60955862,13.29118975],[-15.6183004,-16.60792299,13.29118975],[-15.9748001,-16.60628736,13.29118975],[-16.5081997,-16.60465174,13.29118975],[-4.9243698,-16.80419832,13.28955412],[-4.9602098,-16.80256269,13.28955412],[-9.55408,-16.80092707,13.28955412],[-14.7088003,-16.79929144,13.28955412],[-15.4765997,-16.79765581,13.28955412],[-14.1143999,-16.79602018,13.28955412],[-13.6758003,-16.79438456,13.28955412],[-13.5127001,-16.79274893,13.28955412],[-12.6378002,-16.7911133,13.28955412],[-11.5201998,-16.78947767,13.28955412],[-11.7316999,-16.78784204,13.28955412],[-11.9554996,-16.78620642,13.28955412],[-12.0508003,-16.78457079,13.28955412],[-11.5831003,-16.78293516,13.28955412],[-10.5508003,-16.78129953,13.28955412],[-9.8891602,-16.77966391,13.28955412],[-11.0796003,-16.77802828,13.28955412],[-11.9750004,-16.77639265,13.28955412],[-12.1948004,-16.77475702,13.28955412],[-12.0986004,-16.77312139,13.28955412],[-11.6934004,-16.77148577,13.28955412],[-12.0163002,-16.76985014,13.28955412],[-13.4614,-16.76821451,13.28955412],[-14.4734001,-16.76657888,13.28955412],[-14.5705004,-16.76494326,13.28955412],[-15.0642004,-16.76330763,13.28955412],[-15.6657,-16.761672,13.28955412],[-15.5198002,-16.76003637,13.28955412],[-15.6820002,-16.75840074,13.28955412],[-16.0489998,-16.75676512,13.28955412],[-15.7748003,-16.75512949,13.28955412],[-16.1252003,-16.75349386,13.28955412],[-16.3169003,-16.75185823,13.28955412],[-15.9137001,-16.75022261,13.28955412],[-16.0410004,-16.74858698,13.28955412],[-16.0783005,-16.74695135,13.28955412],[-15.6459999,-16.74531572,13.28955412],[-15.4561996,-16.7436801,13.28955412],[-15.6182003,-16.74204447,13.28955412],[-16.4615993,-16.74040884,13.28955412],[-17.1271992,-16.73877321,13.28955412],[-17.0897999,-16.73713758,13.28955412],[-17.3444996,-16.73550196,13.28955412],[-17.8971996,-16.73386633,13.28955412],[-17.4629993,-16.7322307,13.28955412],[-17.493,-16.73059507,13.28955412],[-17.7133007,-16.72895945,13.28955412],[-17.1557007,-16.72732382,13.28955412],[-16.6166992,-16.72568819,13.28955412],[-16.4521999,-16.72405256,13.28955412],[-16.9759007,-16.72241693,13.28955412],[-17.2992001,-16.72078131,13.28955412],[-17.3323002,-16.71914568,13.28955412],[-17.4393005,-16.71751005,13.28955412],[-17.5641994,-16.71587442,13.28955412],[-17.6686001,-16.7142388,13.28955412],[-18.1037998,-16.71260317,13.28955412],[-18.5559006,-16.71096754,13.28955412],[-18.4232998,-16.70933191,13.28955412],[-18.6604996,-16.70769628,13.28955412],[-18.8971004,-16.70606066,13.28955412],[-18.4195004,-16.70442503,13.28955412],[-16.9964008,-16.7027894,13.28955412],[-16.0097008,-16.70115377,13.28955412],[-17.8757,-16.69951815,13.28955412],[-18.4901009,-16.69788252,13.28955412],[-18.5004005,-16.69624689,13.28955412],[-18.8544998,-16.69461126,13.28955412],[-18.8071003,-16.69297564,13.28955412],[-18.8402996,-16.69134001,13.28955412],[-18.6511002,-16.68970438,13.28955412],[-17.7943001,-16.68806875,13.28955412],[-18.4037991,-16.68643312,13.28955412],[-19.0014,-16.6847975,13.28955412],[-18.9333,-16.68316187,13.28955412],[-19.8041992,-16.68152624,13.28955412],[-21.8589001,-16.67989061,13.28955412],[-23.1457996,-16.67825499,13.28955412],[-22.6294003,-16.67661936,13.28955412],[-24.0195007,-16.67498373,13.28955412],[-24.7014999,-16.6733481,13.28955412],[-23.5606995,-16.67171247,13.28955412],[-24.0335999,-16.67007685,13.28955412],[-23.9171009,-16.66844122,13.28955412],[-22.1079998,-16.66680559,13.28955412],[-21.8862991,-16.66516996,13.28955412],[-21.1800003,-16.66353434,13.28955412],[-18.4929008,-16.66189871,13.28955412],[-15.9401999,-16.66026308,13.28955412],[-17.0212994,-16.65862745,13.28955412],[-18.3978004,-16.65699182,13.28955412],[-19.0093002,-16.6553562,13.28955412],[-18.2289009,-16.65372057,13.28955412],[-17.1366997,-16.65208494,13.28955412],[-16.7371006,-16.65044931,13.28955412],[-17.3521996,-16.64881369,13.28955412],[-18.3313007,-16.64717806,13.28955412],[-18.5909996,-16.64554243,13.28955412],[-18.2528992,-16.6439068,13.28955412],[-20.4078999,-16.64227118,13.28955412],[-20.0639,-16.64063555,13.28955412],[-18.1693993,-16.63899992,13.28955412],[-18.6872005,-16.63736429,13.28955412],[-18.0639992,-16.63572866,13.28955412],[-17.3927002,-16.63409304,13.28955412],[-18.2285004,-16.63245741,13.28955412],[-16.5160007,-16.63082178,13.28955412],[-12.7981005,-16.62918615,13.28955412],[-9.9209995,-16.62755053,13.28955412],[-12.9254999,-16.6259149,13.28955412],[-15.0022001,-16.62427927,13.28955412],[-15.6458998,-16.62264364,13.28955412],[-15.0546999,-16.62100801,13.28955412],[-15.5340004,-16.61937239,13.28955412],[-15.6925001,-16.61773676,13.28955412],[-15.6999998,-16.61610113,13.28955412],[-16.3684998,-16.6144655,13.28955412],[-16.3362007,-16.61282988,13.28955412],[-16.0205994,-16.61119425,13.28955412],[-15.9568996,-16.60955862,13.28955412],[-16.1046009,-16.60792299,13.28955412],[-16.6812992,-16.60628736,13.28955412],[-17.5592003,-16.60465174,13.28955412],[-5.4931598,-16.80583395,13.28791849],[-4.7129598,-16.80419832,13.28791849],[-4.40207,-16.80256269,13.28791849],[-9.53193,-16.80092707,13.28791849],[-14.9784002,-16.79929144,13.28791849],[-15.7062998,-16.79765581,13.28791849],[-14.0353003,-16.79602018,13.28791849],[-13.6077003,-16.79438456,13.28791849],[-13.5354996,-16.79274893,13.28791849],[-12.5988998,-16.7911133,13.28791849],[-11.4720001,-16.78947767,13.28791849],[-11.7776003,-16.78784204,13.28791849],[-12.0635996,-16.78620642,13.28791849],[-12.1066999,-16.78457079,13.28791849],[-11.7163,-16.78293516,13.28791849],[-10.5657997,-16.78129953,13.28791849],[-9.9177103,-16.77966391,13.28791849],[-11.1059999,-16.77802828,13.28791849],[-12.0432997,-16.77639265,13.28791849],[-12.2540998,-16.77475702,13.28791849],[-12.1590004,-16.77312139,13.28791849],[-11.7870998,-16.77148577,13.28791849],[-12.0158005,-16.76985014,13.28791849],[-13.2025995,-16.76821451,13.28791849],[-14.2709999,-16.76657888,13.28791849],[-14.3035002,-16.76494326,13.28791849],[-14.6807003,-16.76330763,13.28791849],[-15.3277998,-16.761672,13.28791849],[-15.1021996,-16.76003637,13.28791849],[-15.3147001,-16.75840074,13.28791849],[-15.8027,-16.75676512,13.28791849],[-15.4931002,-16.75512949,13.28791849],[-15.7666998,-16.75349386,13.28791849],[-16.0373001,-16.75185823,13.28791849],[-15.7145004,-16.75022261,13.28791849],[-15.9146004,-16.74858698,13.28791849],[-15.9482002,-16.74695135,13.28791849],[-15.5504999,-16.74531572,13.28791849],[-15.5098,-16.7436801,13.28791849],[-15.6339998,-16.74204447,13.28791849],[-16.2478008,-16.74040884,13.28791849],[-16.8390999,-16.73877321,13.28791849],[-16.8467999,-16.73713758,13.28791849],[-17.1142998,-16.73550196,13.28791849],[-17.5771999,-16.73386633,13.28791849],[-17.3309994,-16.7322307,13.28791849],[-17.3180008,-16.73059507,13.28791849],[-17.4752007,-16.72895945,13.28791849],[-17.2535992,-16.72732382,13.28791849],[-16.8603001,-16.72568819,13.28791849],[-16.7593002,-16.72405256,13.28791849],[-17.1797009,-16.72241693,13.28791849],[-17.4281998,-16.72078131,13.28791849],[-17.3680992,-16.71914568,13.28791849],[-17.3644009,-16.71751005,13.28791849],[-17.4214001,-16.71587442,13.28791849],[-17.5447998,-16.7142388,13.28791849],[-17.9599991,-16.71260317,13.28791849],[-18.3582993,-16.71096754,13.28791849],[-18.4036007,-16.70933191,13.28791849],[-18.4675999,-16.70769628,13.28791849],[-18.5974007,-16.70606066,13.28791849],[-18.2793007,-16.70442503,13.28791849],[-17.5132008,-16.7027894,13.28791849],[-17.1418991,-16.70115377,13.28791849],[-18.0615005,-16.69951815,13.28791849],[-18.5932007,-16.69788252,13.28791849],[-18.7031002,-16.69624689,13.28791849],[-18.7772999,-16.69461126,13.28791849],[-18.8448009,-16.69297564,13.28791849],[-18.7947998,-16.69134001,13.28791849],[-18.4438992,-16.68970438,13.28791849],[-18.1196003,-16.68806875,13.28791849],[-18.3449001,-16.68643312,13.28791849],[-18.4622993,-16.6847975,13.28791849],[-18.7600002,-16.68316187,13.28791849],[-19.2584,-16.68152624,13.28791849],[-20.3314991,-16.67989061,13.28791849],[-21.3491001,-16.67825499,13.28791849],[-21.5879993,-16.67661936,13.28791849],[-22.9876995,-16.67498373,13.28791849],[-23.4871998,-16.6733481,13.28791849],[-22.5580006,-16.67171247,13.28791849],[-22.6973991,-16.67007685,13.28791849],[-22.1972008,-16.66844122,13.28791849],[-20.7621994,-16.66680559,13.28791849],[-20.1341,-16.66516996,13.28791849],[-19.2735004,-16.66353434,13.28791849],[-17.7684994,-16.66189871,13.28791849],[-16.9144001,-16.66026308,13.28791849],[-17.0834999,-16.65862745,13.28791849],[-17.9773998,-16.65699182,13.28791849],[-18.2544994,-16.6553562,13.28791849],[-17.9430008,-16.65372057,13.28791849],[-17.5132008,-16.65208494,13.28791849],[-17.5342007,-16.65044931,13.28791849],[-17.3393002,-16.64881369,13.28791849],[-17.2283993,-16.64717806,13.28791849],[-17.1959991,-16.64554243,13.28791849],[-16.9489994,-16.6439068,13.28791849],[-17.4419994,-16.64227118,13.28791849],[-17.2642002,-16.64063555,13.28791849],[-16.5011997,-16.63899992,13.28791849],[-16.6308002,-16.63736429,13.28791849],[-16.5445004,-16.63572866,13.28791849],[-16.6523991,-16.63409304,13.28791849],[-17.0104008,-16.63245741,13.28791849],[-16.0678997,-16.63082178,13.28791849],[-14.7010002,-16.62918615,13.28791849],[-13.6844997,-16.62755053,13.28791849],[-14.1647997,-16.6259149,13.28791849],[-14.4692001,-16.62427927,13.28791849],[-14.4646997,-16.62264364,13.28791849],[-14.5121002,-16.62100801,13.28791849],[-14.8786001,-16.61937239,13.28791849],[-15.4247999,-16.61773676,13.28791849],[-15.8774004,-16.61610113,13.28791849],[-16.4482994,-16.6144655,13.28791849],[-16.4811993,-16.61282988,13.28791849],[-16.4246998,-16.61119425,13.28791849],[-16.2560005,-16.60955862,13.28791849],[-16.2933998,-16.60792299,13.28791849],[-16.7581005,-16.60628736,13.28791849],[-16.8798008,-16.60465174,13.28791849],[-5.1455402,-16.80583395,13.28628286],[-6.4297099,-16.80419832,13.28628286],[-7.2449598,-16.80256269,13.28628286],[-9.3874998,-16.80092707,13.28628286],[-11.9763002,-16.79929144,13.28628286],[-13.0735998,-16.79765581,13.28628286],[-13.6155005,-16.79602018,13.28628286],[-14.1639004,-16.79438456,13.28628286],[-13.8114004,-16.79274893,13.28628286],[-13.0661001,-16.7911133,13.28628286],[-12.4350996,-16.78947767,13.28628286],[-12.2241001,-16.78784204,13.28628286],[-12.3922005,-16.78620642,13.28628286],[-12.3277998,-16.78457079,13.28628286],[-11.9305,-16.78293516,13.28628286],[-11.2588997,-16.78129953,13.28628286],[-11.0985003,-16.77966391,13.28628286],[-11.5788002,-16.77802828,13.28628286],[-12.3065996,-16.77639265,13.28628286],[-12.5237999,-16.77475702,13.28628286],[-12.4533997,-16.77312139,13.28628286],[-12.3051004,-16.77148577,13.28628286],[-12.4695997,-16.76985014,13.28628286],[-13.0528002,-16.76821451,13.28628286],[-13.6452999,-16.76657888,13.28628286],[-13.8058004,-16.76494326,13.28628286],[-13.5605001,-16.76330763,13.28628286],[-13.2997999,-16.761672,13.28628286],[-13.8396997,-16.76003637,13.28628286],[-14.5223999,-16.75840074,13.28628286],[-14.8006001,-16.75676512,13.28628286],[-14.7996998,-16.75512949,13.28628286],[-14.6217003,-16.75349386,13.28628286],[-14.6384001,-16.75185823,13.28628286],[-15.1463003,-16.75022261,13.28628286],[-15.4846001,-16.74858698,13.28628286],[-15.5221004,-16.74695135,13.28628286],[-15.4358997,-16.74531572,13.28628286],[-15.2470999,-16.7436801,13.28628286],[-15.4833002,-16.74204447,13.28628286],[-15.9247999,-16.74040884,13.28628286],[-16.1807995,-16.73877321,13.28628286],[-16.4507008,-16.73713758,13.28628286],[-16.5909004,-16.73550196,13.28628286],[-16.6861,-16.73386633,13.28628286],[-16.8250999,-16.7322307,13.28628286],[-16.9106007,-16.73059507,13.28628286],[-16.9228992,-16.72895945,13.28628286],[-17.1425991,-16.72732382,13.28628286],[-17.2241993,-16.72568819,13.28628286],[-17.2942009,-16.72405256,13.28628286],[-17.6000996,-16.72241693,13.28628286],[-18.0781002,-16.72078131,13.28628286],[-18.0863991,-16.71914568,13.28628286],[-17.3383007,-16.71751005,13.28628286],[-16.8813992,-16.71587442,13.28628286],[-17.0965004,-16.7142388,13.28628286],[-17.8871002,-16.71260317,13.28628286],[-18.5275002,-16.71096754,13.28628286],[-18.5652008,-16.70933191,13.28628286],[-18.2502995,-16.70769628,13.28628286],[-18.0529995,-16.70606066,13.28628286],[-18.2026005,-16.70442503,13.28628286],[-18.4862003,-16.7027894,13.28628286],[-18.718399,-16.70115377,13.28628286],[-18.6993999,-16.69951815,13.28628286],[-19.0585003,-16.69788252,13.28628286],[-19.1863003,-16.69624689,13.28628286],[-19.0196991,-16.69461126,13.28628286],[-19.0923996,-16.69297564,13.28628286],[-18.9321003,-16.69134001,13.28628286],[-18.3836002,-16.68970438,13.28628286],[-17.9717007,-16.68806875,13.28628286],[-17.8542995,-16.68643312,13.28628286],[-17.8456993,-16.6847975,13.28628286],[-17.5361996,-16.68316187,13.28628286],[-18.1247997,-16.68152624,13.28628286],[-17.8945007,-16.67989061,13.28628286],[-17.2500992,-16.67825499,13.28628286],[-19.7243996,-16.67661936,13.28628286],[-22.1324997,-16.67498373,13.28628286],[-22.7318993,-16.6733481,13.28628286],[-21.5979996,-16.67171247,13.28628286],[-19.9090996,-16.67007685,13.28628286],[-19.4993,-16.66844122,13.28628286],[-18.6606998,-16.66680559,13.28628286],[-16.0060005,-16.66516996,13.28628286],[-16.0464001,-16.66353434,13.28628286],[-16.7714996,-16.66189871,13.28628286],[-16.2199001,-16.66026308,13.28628286],[-16.7555008,-16.65862745,13.28628286],[-17.7457008,-16.65699182,13.28628286],[-18.1462002,-16.6553562,13.28628286],[-18.0471001,-16.65372057,13.28628286],[-18.4680996,-16.65208494,13.28628286],[-18.7908993,-16.65044931,13.28628286],[-17.4321995,-16.64881369,13.28628286],[-15.4699001,-16.64717806,13.28628286],[-14.7812004,-16.64554243,13.28628286],[-14.9970999,-16.6439068,13.28628286],[-12.9497004,-16.64227118,13.28628286],[-12.9918003,-16.64063555,13.28628286],[-14.1906996,-16.63899992,13.28628286],[-12.7966003,-16.63736429,13.28628286],[-13.9717999,-16.63572866,13.28628286],[-15.7370005,-16.63409304,13.28628286],[-16.3467007,-16.63245741,13.28628286],[-16.2912998,-16.63082178,13.28628286],[-16.4799995,-16.62918615,13.28628286],[-17.1590004,-16.62755053,13.28628286],[-15.4951,-16.6259149,13.28628286],[-13.3754997,-16.62427927,13.28628286],[-12.5595999,-16.62264364,13.28628286],[-13.7521,-16.62100801,13.28628286],[-14.5101995,-16.61937239,13.28628286],[-14.7089996,-16.61773676,13.28628286],[-15.9997997,-16.61610113,13.28628286],[-17.3768005,-16.6144655,13.28628286],[-17.3437996,-16.61282988,13.28628286],[-16.5536003,-16.61119425,13.28628286],[-15.8811998,-16.60955862,13.28628286],[-16.2430992,-16.60792299,13.28628286],[-17.2467003,-16.60628736,13.28628286],[-18.2539997,-16.60465174,13.28628286],[-4.33916,-16.80583395,13.28464723],[-6.796,-16.80419832,13.28464723],[-7.4751201,-16.80256269,13.28464723],[-9.1922503,-16.80092707,13.28464723],[-11.3521996,-16.79929144,13.28464723],[-11.8690996,-16.79765581,13.28464723],[-13.1817999,-16.79602018,13.28464723],[-15.0496998,-16.79438456,13.28464723],[-14.6962996,-16.79274893,13.28464723],[-13.1778002,-16.7911133,13.28464723],[-12.2919998,-16.78947767,13.28464723],[-12.4452,-16.78784204,13.28464723],[-12.7897997,-16.78620642,13.28464723],[-13.4106998,-16.78457079,13.28464723],[-12.4572001,-16.78293516,13.28464723],[-11.2837,-16.78129953,13.28464723],[-10.7629004,-16.77966391,13.28464723],[-11.7666998,-16.77802828,13.28464723],[-13.1299,-16.77639265,13.28464723],[-13.5249004,-16.77475702,13.28464723],[-12.6779003,-16.77312139,13.28464723],[-12.2407999,-16.77148577,13.28464723],[-12.3199997,-16.76985014,13.28464723],[-13.0496998,-16.76821451,13.28464723],[-13.7962999,-16.76657888,13.28464723],[-13.5925999,-16.76494326,13.28464723],[-12.5346003,-16.76330763,13.28464723],[-10.7672005,-16.761672,13.28464723],[-12.4394999,-16.76003637,13.28464723],[-14.1480999,-16.75840074,13.28464723],[-14.5804005,-16.75676512,13.28464723],[-14.4158001,-16.75512949,13.28464723],[-13.7322998,-16.75349386,13.28464723],[-13.2003002,-16.75185823,13.28464723],[-14.5902004,-16.75022261,13.28464723],[-15.5065002,-16.74858698,13.28464723],[-15.6203003,-16.74695135,13.28464723],[-15.3414001,-16.74531572,13.28464723],[-14.9806004,-16.7436801,13.28464723],[-15.0771999,-16.74204447,13.28464723],[-15.7133999,-16.74040884,13.28464723],[-16.0373001,-16.73877321,13.28464723],[-16.1222992,-16.73713758,13.28464723],[-16.2462006,-16.73550196,13.28464723],[-16.1378994,-16.73386633,13.28464723],[-16.4993992,-16.7322307,13.28464723],[-16.7420006,-16.73059507,13.28464723],[-16.5988007,-16.72895945,13.28464723],[-17.0373993,-16.72732382,13.28464723],[-17.3486004,-16.72568819,13.28464723],[-17.4249992,-16.72405256,13.28464723],[-17.7441998,-16.72241693,13.28464723],[-19.1763,-16.72078131,13.28464723],[-19.1354008,-16.71914568,13.28464723],[-17.2768002,-16.71751005,13.28464723],[-16.2091007,-16.71587442,13.28464723],[-16.5093002,-16.7142388,13.28464723],[-17.9312992,-16.71260317,13.28464723],[-19.2758007,-16.71096754,13.28464723],[-18.6054993,-16.70933191,13.28464723],[-17.9209995,-16.70769628,13.28464723],[-17.6254005,-16.70606066,13.28464723],[-18.0893002,-16.70442503,13.28464723],[-18.8896008,-16.7027894,13.28464723],[-19.4585991,-16.70115377,13.28464723],[-18.8647995,-16.69951815,13.28464723],[-19.5039997,-16.69788252,13.28464723],[-19.7164001,-16.69624689,13.28464723],[-19.0021,-16.69461126,13.28464723],[-19.3596992,-16.69297564,13.28464723],[-19.1595993,-16.69134001,13.28464723],[-18.2105007,-16.68970438,13.28464723],[-17.7075996,-16.68806875,13.28464723],[-17.6702995,-16.68643312,13.28464723],[-17.4104996,-16.6847975,13.28464723],[-16.6690998,-16.68316187,13.28464723],[-17.2439003,-16.68152624,13.28464723],[-16.5785007,-16.67989061,13.28464723],[-14.5271997,-16.67825499,13.28464723],[-18.4804993,-16.67661936,13.28464723],[-22.2681007,-16.67498373,13.28464723],[-23.4570007,-16.6733481,13.28464723],[-20.9888,-16.67171247,13.28464723],[-18.7572002,-16.67007685,13.28464723],[-18.4913998,-16.66844122,13.28464723],[-17.3799992,-16.66680559,13.28464723],[-13.7923002,-16.66516996,13.28464723],[-14.4771004,-16.66353434,13.28464723],[-16.1562004,-16.66189871,13.28464723],[-15.6184998,-16.66026308,13.28464723],[-16.2877007,-16.65862745,13.28464723],[-17.5097008,-16.65699182,13.28464723],[-18.3533993,-16.6553562,13.28464723],[-18.0527992,-16.65372057,13.28464723],[-18.7810001,-16.65208494,13.28464723],[-19.5862999,-16.65044931,13.28464723],[-17.3701,-16.64881369,13.28464723],[-14.7445002,-16.64717806,13.28464723],[-13.9391003,-16.64554243,13.28464723],[-14.3444996,-16.6439068,13.28464723],[-11.5395002,-16.64227118,13.28464723],[-11.7124004,-16.64063555,13.28464723],[-13.4357004,-16.63899992,13.28464723],[-11.5916004,-16.63736429,13.28464723],[-13.1018,-16.63572866,13.28464723],[-15.4815998,-16.63409304,13.28464723],[-16.3015003,-16.63245741,13.28464723],[-16.4165993,-16.63082178,13.28464723],[-17.1574993,-16.62918615,13.28464723],[-17.9358997,-16.62755053,13.28464723],[-16.1415005,-16.6259149,13.28464723],[-13.2635002,-16.62427927,13.28464723],[-12.1288996,-16.62264364,13.28464723],[-13.9785004,-16.62100801,13.28464723],[-14.5893002,-16.61937239,13.28464723],[-14.7289,-16.61773676,13.28464723],[-16.2679996,-16.61610113,13.28464723],[-17.7341995,-16.6144655,13.28464723],[-17.655899,-16.61282988,13.28464723],[-16.8803997,-16.61119425,13.28464723],[-15.9352999,-16.60955862,13.28464723],[-16.405899,-16.60792299,13.28464723],[-17.4367008,-16.60628736,13.28464723],[-18.4666004,-16.60465174,13.28464723],[-4.4762402,-16.80583395,13.28301161],[-6.7172298,-16.80419832,13.28301161],[-7.6884298,-16.80256269,13.28301161],[-9.3323698,-16.80092707,13.28301161],[-11.2923002,-16.79929144,13.28301161],[-12.0528002,-16.79765581,13.28301161],[-13.4671001,-16.79602018,13.28301161],[-14.6527996,-16.79438456,13.28301161],[-14.4399004,-16.79274893,13.28301161],[-13.3069,-16.7911133,13.28301161],[-12.5883999,-16.78947767,13.28301161],[-12.6827002,-16.78784204,13.28301161],[-12.9223003,-16.78620642,13.28301161],[-13.0718002,-16.78457079,13.28301161],[-12.5669003,-16.78293516,13.28301161],[-11.6398001,-16.78129953,13.28301161],[-11.2655001,-16.77966391,13.28301161],[-12.0769997,-16.77802828,13.28301161],[-12.9933996,-16.77639265,13.28301161],[-13.1763,-16.77475702,13.28301161],[-12.7347002,-16.77312139,13.28301161],[-12.4397001,-16.77148577,13.28301161],[-12.3813,-16.76985014,13.28301161],[-12.7306004,-16.76821451,13.28301161],[-13.2365999,-16.76657888,13.28301161],[-13.1077995,-16.76494326,13.28301161],[-12.6122999,-16.76330763,13.28301161],[-12.0094004,-16.761672,13.28301161],[-12.7377996,-16.76003637,13.28301161],[-13.6777,-16.75840074,13.28301161],[-14.1809998,-16.75676512,13.28301161],[-14.1276999,-16.75512949,13.28301161],[-13.882,-16.75349386,13.28301161],[-13.8367004,-16.75185823,13.28301161],[-14.5030003,-16.75022261,13.28301161],[-15.2272997,-16.74858698,13.28301161],[-15.3513002,-16.74695135,13.28301161],[-15.0647001,-16.74531572,13.28301161],[-14.9849997,-16.7436801,13.28301161],[-15.1190996,-16.74204447,13.28301161],[-15.3875999,-16.74040884,13.28301161],[-15.7203999,-16.73877321,13.28301161],[-15.8438997,-16.73713758,13.28301161],[-16.0837994,-16.73550196,13.28301161],[-16.2940998,-16.73386633,13.28301161],[-16.5070992,-16.7322307,13.28301161],[-16.7173996,-16.73059507,13.28301161],[-16.8085003,-16.72895945,13.28301161],[-17.073,-16.72732382,13.28301161],[-17.3139992,-16.72568819,13.28301161],[-17.4197006,-16.72405256,13.28301161],[-17.4724998,-16.72241693,13.28301161],[-17.9934998,-16.72078131,13.28301161],[-17.8442001,-16.71914568,13.28301161],[-16.7187004,-16.71751005,13.28301161],[-16.0380993,-16.71587442,13.28301161],[-16.3197002,-16.7142388,13.28301161],[-17.4578991,-16.71260317,13.28301161],[-18.3766003,-16.71096754,13.28301161],[-18.3813992,-16.70933191,13.28301161],[-18.1553993,-16.70769628,13.28301161],[-18.1100006,-16.70606066,13.28301161],[-18.1385994,-16.70442503,13.28301161],[-18.2266006,-16.7027894,13.28301161],[-18.3411999,-16.70115377,13.28301161],[-18.4379005,-16.69951815,13.28301161],[-18.9647007,-16.69788252,13.28301161],[-19.0674992,-16.69624689,13.28301161],[-18.7068996,-16.69461126,13.28301161],[-18.5587006,-16.69297564,13.28301161],[-18.3327999,-16.69134001,13.28301161],[-18,-16.68970438,13.28301161],[-17.7315006,-16.68806875,13.28301161],[-17.6245995,-16.68643312,13.28301161],[-17.4636002,-16.6847975,13.28301161],[-17.4578991,-16.68316187,13.28301161],[-17.7569008,-16.68152624,13.28301161],[-17.7332001,-16.67989061,13.28301161],[-17.7630997,-16.67825499,13.28301161],[-18.9911003,-16.67661936,13.28301161],[-20.4051991,-16.67498373,13.28301161],[-21.0252991,-16.6733481,13.28301161],[-20.0289001,-16.67171247,13.28301161],[-19.2786999,-16.67007685,13.28301161],[-18.7847996,-16.66844122,13.28301161],[-17.7229004,-16.66680559,13.28301161],[-16.3418999,-16.66516996,13.28301161],[-16.0333004,-16.66353434,13.28301161],[-16.2185993,-16.66189871,13.28301161],[-16.1714993,-16.66026308,13.28301161],[-16.4839001,-16.65862745,13.28301161],[-17.0587006,-16.65699182,13.28301161],[-17.4251995,-16.6553562,13.28301161],[-17.5340996,-16.65372057,13.28301161],[-17.7625008,-16.65208494,13.28301161],[-17.9307995,-16.65044931,13.28301161],[-17.0969009,-16.64881369,13.28301161],[-16.2479,-16.64717806,13.28301161],[-15.9495001,-16.64554243,13.28301161],[-15.4466,-16.6439068,13.28301161],[-14.6659002,-16.64227118,13.28301161],[-14.4898996,-16.64063555,13.28301161],[-14.6736002,-16.63899992,13.28301161],[-14.6122999,-16.63736429,13.28301161],[-15.0239,-16.63572866,13.28301161],[-15.8655005,-16.63409304,13.28301161],[-16.3852005,-16.63245741,13.28301161],[-16.6413002,-16.63082178,13.28301161],[-17.6800003,-16.62918615,13.28301161],[-18.3271008,-16.62755053,13.28301161],[-16.7723999,-16.6259149,13.28301161],[-14.3972998,-16.62427927,13.28301161],[-13.5946999,-16.62264364,13.28301161],[-14.6681995,-16.62100801,13.28301161],[-15.5718002,-16.61937239,13.28301161],[-16.0538998,-16.61773676,13.28301161],[-16.6480999,-16.61610113,13.28301161],[-17.5547009,-16.6144655,13.28301161],[-17.6464996,-16.61282988,13.28301161],[-17.6413994,-16.61119425,13.28301161],[-17.7716007,-16.60955862,13.28301161],[-17.3962002,-16.60792299,13.28301161],[-17.1543007,-16.60628736,13.28301161],[-16.7856998,-16.60465174,13.28301161],[-4.66822,-16.80583395,13.28137598],[-6.6824899,-16.80419832,13.28137598],[-7.6624799,-16.80256269,13.28137598],[-9.5497503,-16.80092707,13.28137598],[-11.8260002,-16.79929144,13.28137598],[-12.9509001,-16.79765581,13.28137598],[-13.5221004,-16.79602018,13.28137598],[-14.0278997,-16.79438456,13.28137598],[-13.9226999,-16.79274893,13.28137598],[-13.4060001,-16.7911133,13.28137598],[-13.0705996,-16.78947767,13.28137598],[-12.8732996,-16.78784204,13.28137598],[-12.9271002,-16.78620642,13.28137598],[-12.8775997,-16.78457079,13.28137598],[-12.5710001,-16.78293516,13.28137598],[-11.8816996,-16.78129953,13.28137598],[-11.6444998,-16.77966391,13.28137598],[-12.2580996,-16.77802828,13.28137598],[-12.9464998,-16.77639265,13.28137598],[-13.1576004,-16.77475702,13.28137598],[-12.8055,-16.77312139,13.28137598],[-12.6618996,-16.77148577,13.28137598],[-12.6754999,-16.76985014,13.28137598],[-12.3388996,-16.76821451,13.28137598],[-11.8842001,-16.76657888,13.28137598],[-12.2082005,-16.76494326,13.28137598],[-13.1451998,-16.76330763,13.28137598],[-13.9989996,-16.761672,13.28137598],[-13.7285004,-16.76003637,13.28137598],[-13.4476995,-16.75840074,13.28137598],[-13.4476004,-16.75676512,13.28137598],[-13.8421001,-16.75512949,13.28137598],[-14.1097002,-16.75349386,13.28137598],[-14.1919003,-16.75185823,13.28137598],[-14.5844002,-16.75022261,13.28137598],[-15.1477003,-16.74858698,13.28137598],[-15.2716999,-16.74695135,13.28137598],[-14.9273996,-16.74531572,13.28137598],[-14.6953001,-16.7436801,13.28137598],[-14.7679005,-16.74204447,13.28137598],[-15.0502996,-16.74040884,13.28137598],[-14.9816999,-16.73877321,13.28137598],[-15.3437996,-16.73713758,13.28137598],[-16.0020008,-16.73550196,13.28137598],[-16.3988991,-16.73386633,13.28137598],[-16.5631008,-16.7322307,13.28137598],[-16.9008999,-16.73059507,13.28137598],[-17.1555004,-16.72895945,13.28137598],[-17.1938,-16.72732382,13.28137598],[-17.3069992,-16.72568819,13.28137598],[-17.2938995,-16.72405256,13.28137598],[-17.1828003,-16.72241693,13.28137598],[-17.1203003,-16.72078131,13.28137598],[-16.9074001,-16.71914568,13.28137598],[-15.7104998,-16.71751005,13.28137598],[-13.6119003,-16.71587442,13.28137598],[-14.4406996,-16.7142388,13.28137598],[-17.0231991,-16.71260317,13.28137598],[-18.2985992,-16.71096754,13.28137598],[-18.2978001,-16.70933191,13.28137598],[-18.4165001,-16.70769628,13.28137598],[-18.6693001,-16.70606066,13.28137598],[-18.1592999,-16.70442503,13.28137598],[-16.9302006,-16.7027894,13.28137598],[-16.1728992,-16.70115377,13.28137598],[-17.6938992,-16.69951815,13.28137598],[-19.0466995,-16.69788252,13.28137598],[-19.3052006,-16.69624689,13.28137598],[-18.3064995,-16.69461126,13.28137598],[-17.1025009,-16.69297564,13.28137598],[-17.1345005,-16.69134001,13.28137598],[-17.6919994,-16.68970438,13.28137598],[-17.7194004,-16.68806875,13.28137598],[-17.7381001,-16.68643312,13.28137598],[-17.7490005,-16.6847975,13.28137598],[-17.8973007,-16.68316187,13.28137598],[-18.1214008,-16.68152624,13.28137598],[-19.0412006,-16.67989061,13.28137598],[-20.0195007,-16.67825499,13.28137598],[-19.3341007,-16.67661936,13.28137598],[-19.3328991,-16.67498373,13.28137598],[-19.1989002,-16.6733481,13.28137598],[-19.3960991,-16.67171247,13.28137598],[-19.4661007,-16.67007685,13.28137598],[-19.2572994,-16.66844122,13.28137598],[-18.3120003,-16.66680559,13.28137598],[-18.1037006,-16.66516996,13.28137598],[-17.5837994,-16.66353434,13.28137598],[-16.4804001,-16.66189871,13.28137598],[-16.3964996,-16.66026308,13.28137598],[-16.3959007,-16.65862745,13.28137598],[-16.7495003,-16.65699182,13.28137598],[-16.8588009,-16.6553562,13.28137598],[-16.9783993,-16.65372057,13.28137598],[-17.1068993,-16.65208494,13.28137598],[-17.1072006,-16.65044931,13.28137598],[-17.0298004,-16.64881369,13.28137598],[-17.5629997,-16.64717806,13.28137598],[-17.7908993,-16.64554243,13.28137598],[-16.4883995,-16.6439068,13.28137598],[-16.4955006,-16.64227118,13.28137598],[-16.3812008,-16.64063555,13.28137598],[-15.8339005,-16.63899992,13.28137598],[-16.4920998,-16.63736429,13.28137598],[-16.3190002,-16.63572866,13.28137598],[-16.1212997,-16.63409304,13.28137598],[-15.9235001,-16.63245741,13.28137598],[-16.8006001,-16.63082178,13.28137598],[-19.5813999,-16.62918615,13.28137598],[-22.4902,-16.62755053,13.28137598],[-18.3722992,-16.6259149,13.28137598],[-13.4684,-16.62427927,13.28137598],[-11.3506002,-16.62264364,13.28137598],[-14.6773005,-16.62100801,13.28137598],[-16.6959,-16.61937239,13.28137598],[-16.9487,-16.61773676,13.28137598],[-17.3334007,-16.61610113,13.28137598],[-17.4424,-16.6144655,13.28137598],[-17.6809998,-16.61282988,13.28137598],[-18.3824005,-16.61119425,13.28137598],[-18.9496994,-16.60955862,13.28137598],[-18.4193001,-16.60792299,13.28137598],[-16.8908005,-16.60628736,13.28137598],[-15.4561996,-16.60465174,13.28137598],[-1.67362,-16.60301611,13.4711088],[-1.94452,-16.60301611,13.46947317],[-2.16557,-16.60301611,13.46783754],[-3.94328,-16.60301611,13.46456629],[-2.6468301,-16.60138048,13.46456629],[-2.72364,-16.59974485,13.46456629],[-2.6176801,-16.59810923,13.46456629],[-2.1752901,-16.5964736,13.46456629],[-6.0103798,-16.60301611,13.46293066],[-5.35111,-16.60138048,13.46293066],[-4.4330602,-16.59974485,13.46293066],[-3.3506,-16.59810923,13.46293066],[-2.6544399,-16.5964736,13.46293066],[-2.72247,-16.59483797,13.46293066],[-3.04773,-16.59320234,13.46293066],[-2.75563,-16.59156672,13.46293066],[-2.5671899,-16.58993109,13.46293066],[-2.07427,-16.58829546,13.46293066],[-2.1365399,-16.58665983,13.46293066],[-3.7815499,-16.5850242,13.46293066],[-7.1215401,-16.60301611,13.46129503],[-5.9459701,-16.60138048,13.46129503],[-5.4244499,-16.59974485,13.46129503],[-3.8092999,-16.59810923,13.46129503],[-2.44221,-16.5964736,13.46129503],[-3.1154399,-16.59483797,13.46129503],[-3.0815201,-16.59320234,13.46129503],[-2.9737301,-16.59156672,13.46129503],[-2.6102901,-16.58993109,13.46129503],[-1.89657,-16.58829546,13.46129503],[-1.84167,-16.58665983,13.46129503],[-3.7370601,-16.5850242,13.46129503],[-6.4650102,-16.58338858,13.46129503],[-6.05022,-16.58175295,13.46129503],[-7.8726501,-16.60301611,13.4596594],[-6.6303401,-16.60138048,13.4596594],[-5.91675,-16.59974485,13.4596594],[-5.1350899,-16.59810923,13.4596594],[-4.1977,-16.5964736,13.4596594],[-3.95486,-16.59483797,13.4596594],[-3.14819,-16.59320234,13.4596594],[-2.76284,-16.59156672,13.4596594],[-2.70733,-16.58993109,13.4596594],[-2.58184,-16.58829546,13.4596594],[-2.74578,-16.58665983,13.4596594],[-3.43325,-16.5850242,13.4596594],[-4.1623001,-16.58338858,13.4596594],[-4.0213299,-16.58175295,13.4596594],[-3.0564799,-16.58011732,13.4596594],[-2.3022299,-16.57848169,13.4596594],[-8.2453899,-16.60301611,13.45802378],[-7.5727201,-16.60138048,13.45802378],[-7.0048399,-16.59974485,13.45802378],[-6.1307602,-16.59810923,13.45802378],[-6.0823898,-16.5964736,13.45802378],[-4.8700199,-16.59483797,13.45802378],[-2.8447599,-16.59320234,13.45802378],[-1.84197,-16.59156672,13.45802378],[-2.61306,-16.58993109,13.45802378],[-2.8882,-16.58829546,13.45802378],[-2.88269,-16.58665983,13.45802378],[-3.15414,-16.5850242,13.45802378],[-3.3166201,-16.58338858,13.45802378],[-3.2851501,-16.58175295,13.45802378],[-3.01281,-16.58011732,13.45802378],[-2.93485,-16.57848169,13.45802378],[-2.65325,-16.57684607,13.45802378],[-1.8360699,-16.57521044,13.45802378],[-8.5886698,-16.60301611,13.45638815],[-7.8552198,-16.60138048,13.45638815],[-7.5961099,-16.59974485,13.45638815],[-6.7720799,-16.59810923,13.45638815],[-6.2764201,-16.5964736,13.45638815],[-5.2856302,-16.59483797,13.45638815],[-3.1444099,-16.59320234,13.45638815],[-1.97628,-16.59156672,13.45638815],[-2.72948,-16.58993109,13.45638815],[-2.9461901,-16.58829546,13.45638815],[-2.8621399,-16.58665983,13.45638815],[-3.04372,-16.5850242,13.45638815],[-3.2309799,-16.58338858,13.45638815],[-3.1507001,-16.58175295,13.45638815],[-2.89431,-16.58011732,13.45638815],[-2.9170699,-16.57848169,13.45638815],[-2.6475,-16.57684607,13.45638815],[-1.99808,-16.57521044,13.45638815],[-1.25846,-16.57357481,13.45638815],[-1.41435,-16.57193918,13.45638815],[-9.6101999,-16.60301611,13.45475252],[-9.2263203,-16.60138048,13.45475252],[-8.2939997,-16.59974485,13.45475252],[-7.2866101,-16.59810923,13.45475252],[-6.3611202,-16.5964736,13.45475252],[-5.63451,-16.59483797,13.45475252],[-4.6275401,-16.59320234,13.45475252],[-3.93646,-16.59156672,13.45475252],[-3.5274799,-16.58993109,13.45475252],[-3.0634799,-16.58829546,13.45475252],[-2.8076601,-16.58665983,13.45475252],[-2.9595101,-16.5850242,13.45475252],[-3.0139799,-16.58338858,13.45475252],[-2.9224999,-16.58175295,13.45475252],[-2.6664801,-16.58011732,13.45475252],[-2.39428,-16.57848169,13.45475252],[-2.3377399,-16.57684607,13.45475252],[-2.3806601,-16.57521044,13.45475252],[-2.55813,-16.57357481,13.45475252],[-2.1443901,-16.57193918,13.45475252],[-10.2735004,-16.60301611,13.45311689],[-11.0042,-16.60138048,13.45311689],[-9.7853203,-16.59974485,13.45311689],[-7.4159799,-16.59810923,13.45311689],[-6.60567,-16.5964736,13.45311689],[-6.0813398,-16.59483797,13.45311689],[-5.3285398,-16.59320234,13.45311689],[-5.48172,-16.59156672,13.45311689],[-4.0840998,-16.58993109,13.45311689],[-2.7153299,-16.58829546,13.45311689],[-2.3564899,-16.58665983,13.45311689],[-2.74843,-16.5850242,13.45311689],[-2.8908801,-16.58338858,13.45311689],[-2.8387401,-16.58175295,13.45311689],[-2.36093,-16.58011732,13.45311689],[-1.5733401,-16.57848169,13.45311689],[-1.86362,-16.57684607,13.45311689],[-2.87027,-16.57521044,13.45311689],[-4.1353502,-16.57357481,13.45311689],[-2.93332,-16.57193918,13.45311689],[-1.2003599,-16.57030355,13.45311689],[-10.3060999,-16.60301611,13.45148126],[-10.5573997,-16.60138048,13.45148126],[-9.6060305,-16.59974485,13.45148126],[-7.7936001,-16.59810923,13.45148126],[-6.6659198,-16.5964736,13.45148126],[-6.15167,-16.59483797,13.45148126],[-5.3010302,-16.59320234,13.45148126],[-5.0190902,-16.59156672,13.45148126],[-4.0685301,-16.58993109,13.45148126],[-3.1416199,-16.58829546,13.45148126],[-2.73544,-16.58665983,13.45148126],[-2.8927901,-16.5850242,13.45148126],[-2.8927901,-16.58338858,13.45148126],[-2.7595699,-16.58175295,13.45148126],[-2.42033,-16.58011732,13.45148126],[-1.98421,-16.57848169,13.45148126],[-2.13907,-16.57684607,13.45148126],[-2.7867899,-16.57521044,13.45148126],[-3.3534801,-16.57357481,13.45148126],[-2.6826899,-16.57193918,13.45148126],[-1.45996,-16.57030355,13.45148126],[-10.2588997,-16.60301611,13.44984564],[-10.0015001,-16.60138048,13.44984564],[-9.2175303,-16.59974485,13.44984564],[-8.0832396,-16.59810923,13.44984564],[-7.42946,-16.5964736,13.44984564],[-6.1755199,-16.59483797,13.44984564],[-4.5728502,-16.59320234,13.44984564],[-3.6129,-16.59156672,13.44984564],[-3.7348399,-16.58993109,13.44984564],[-3.9220099,-16.58829546,13.44984564],[-3.96032,-16.58665983,13.44984564],[-3.3297601,-16.5850242,13.44984564],[-3.0142,-16.58338858,13.44984564],[-2.74615,-16.58175295,13.44984564],[-2.5049801,-16.58011732,13.44984564],[-2.4045501,-16.57848169,13.44984564],[-2.4135001,-16.57684607,13.44984564],[-2.75687,-16.57521044,13.44984564],[-3.0936899,-16.57357481,13.44984564],[-2.5731699,-16.57193918,13.44984564],[-10.1042995,-16.60301611,13.44821001],[-10.9911003,-16.60138048,13.44821001],[-9.6282101,-16.59974485,13.44821001],[-8.0292997,-16.59810923,13.44821001],[-8.4700804,-16.5964736,13.44821001],[-6.5420399,-16.59483797,13.44821001],[-3.5791099,-16.59320234,13.44821001],[-2.11603,-16.59156672,13.44821001],[-3.52051,-16.58993109,13.44821001],[-4.49613,-16.58829546,13.44821001],[-4.7549601,-16.58665983,13.44821001],[-3.84289,-16.5850242,13.44821001],[-3.1399,-16.58338858,13.44821001],[-2.72717,-16.58175295,13.44821001],[-2.47932,-16.58011732,13.44821001],[-2.3556099,-16.57848169,13.44821001],[-2.3638599,-16.57684607,13.44821001],[-2.8234701,-16.57521044,13.44821001],[-3.8446,-16.57357481,13.44821001],[-2.83992,-16.57193918,13.44821001],[-8.99119,-16.60301611,13.44657438],[-9.0089903,-16.60138048,13.44657438],[-8.1070404,-16.59974485,13.44657438],[-7.0383401,-16.59810923,13.44657438],[-6.82833,-16.5964736,13.44657438],[-5.8017201,-16.59483797,13.44657438],[-2.5817699,-16.58175295,13.44657438],[-2.3857,-16.58011732,13.44657438],[-2.2273901,-16.57848169,13.44657438],[-2.25437,-16.57684607,13.44657438],[-2.4633999,-16.57521044,13.44657438],[-2.77195,-16.57357481,13.44657438],[-2.2799799,-16.57193918,13.44657438],[-6.78827,-16.60301611,13.44493875],[-5.3379402,-16.60138048,13.44493875],[-5.57657,-16.59974485,13.44493875],[-4.8625998,-16.59810923,13.44493875],[-1.73103,-16.57848169,13.44493875],[-1.8408099,-16.57684607,13.44493875],[-2.1628699,-16.57521044,13.44493875],[-2.2802701,-16.57357481,13.44493875],[-1.97104,-16.57193918,13.44493875],[-5.6056399,-16.60301611,13.44330313],[-1.6308,-16.57684607,13.44330313],[-1.99915,-16.57521044,13.44330313],[-2.3483601,-16.57357481,13.44330313],[-1.58324,-16.57357481,13.4416675],[-9.2686996,-16.60301611,13.4122262],[-9.9721699,-16.60301611,13.41059057],[-8.0277004,-16.60138048,13.41059057],[-10.9617996,-16.60301611,13.40895494],[-10.4336004,-16.60138048,13.40895494],[-10.2003002,-16.59974485,13.40895494],[-11.4407997,-16.60301611,13.40731932],[-11.0028,-16.60138048,13.40731932],[-10.8372002,-16.59974485,13.40731932],[-9.9625101,-16.59810923,13.40731932],[-11.3846998,-16.60301611,13.40568369],[-11.0532999,-16.60138048,13.40568369],[-10.8958998,-16.59974485,13.40568369],[-10.4847002,-16.59810923,13.40568369],[-10.1176996,-16.5964736,13.40568369],[-11.2483997,-16.60301611,13.40404806],[-11.0705996,-16.60138048,13.40404806],[-10.9705,-16.59974485,13.40404806],[-11.1136999,-16.59810923,13.40404806],[-11.6231003,-16.5964736,13.40404806],[-11.3009005,-16.60301611,13.40241243],[-11.0459995,-16.60138048,13.40241243],[-11.0901003,-16.59974485,13.40241243],[-11.4323997,-16.59810923,13.40241243],[-11.9959002,-16.5964736,13.40241243],[-11.4699001,-16.59483797,13.40241243],[-11.2081003,-16.60301611,13.4007768],[-11.2053003,-16.60138048,13.4007768],[-11.2282,-16.59974485,13.4007768],[-11.3425999,-16.59810923,13.4007768],[-11.5374002,-16.5964736,13.4007768],[-10.9857998,-16.59483797,13.4007768],[-11.1133003,-16.60301611,13.39914118],[-11.1255999,-16.60138048,13.39914118],[-11.118,-16.59974485,13.39914118],[-11.5897999,-16.59810923,13.39914118],[-12.5973997,-16.5964736,13.39914118],[-11.4921999,-16.59483797,13.39914118],[-10.9251003,-16.60301611,13.39750555],[-11.0831003,-16.60138048,13.39750555],[-11.1487999,-16.59974485,13.39750555],[-11.5389004,-16.59810923,13.39750555],[-12.4219999,-16.5964736,13.39750555],[-11.3568001,-16.59483797,13.39750555],[-8.2115498,-16.59320234,13.39750555],[-10.5417995,-16.60301611,13.39586992],[-10.9598999,-16.60138048,13.39586992],[-11.1339998,-16.59974485,13.39586992],[-11.3599005,-16.59810923,13.39586992],[-11.6595001,-16.5964736,13.39586992],[-10.9827995,-16.59483797,13.39586992],[-9.2194595,-16.59320234,13.39586992],[-7.9867301,-16.59156672,13.39586992],[-10.1852999,-16.60301611,13.39423429],[-10.7559996,-16.60138048,13.39423429],[-10.8338003,-16.59974485,13.39423429],[-11.4721003,-16.59810923,13.39423429],[-12.6140003,-16.5964736,13.39423429],[-11.6822996,-16.59483797,13.39423429],[-9.2360401,-16.59320234,13.39423429],[-7.4327798,-16.59156672,13.39423429],[-10.2165003,-16.60301611,13.39259867],[-10.8057003,-16.60138048,13.39259867],[-10.9856005,-16.59974485,13.39259867],[-11.4337997,-16.59810923,13.39259867],[-11.8519001,-16.5964736,13.39259867],[-11.2605,-16.59483797,13.39259867],[-9.783,-16.59320234,13.39259867],[-8.5887804,-16.59156672,13.39259867],[-10.6311998,-16.60301611,13.39096304],[-11.2819004,-16.60138048,13.39096304],[-11.4399004,-16.59974485,13.39096304],[-11.2628002,-16.59810923,13.39096304],[-11.2138004,-16.5964736,13.39096304],[-10.9300003,-16.59483797,13.39096304],[-10.6294003,-16.59320234,13.39096304],[-10.7789001,-16.59156672,13.39096304],[-10.7775002,-16.60301611,13.38932741],[-11.9959002,-16.60138048,13.38932741],[-11.8589001,-16.59974485,13.38932741],[-11.0237999,-16.59810923,13.38932741],[-11.1141996,-16.5964736,13.38932741],[-10.9257002,-16.59483797,13.38932741],[-10.8775997,-16.59320234,13.38932741],[-12.0316,-16.59156672,13.38932741],[-10.7823,-16.58993109,13.38932741],[-10.2474003,-16.60301611,13.38769178],[-10.8204002,-16.60138048,13.38769178],[-10.7990999,-16.59974485,13.38769178],[-10.5300999,-16.59810923,13.38769178],[-10.4632998,-16.5964736,13.38769178],[-10.3044004,-16.59483797,13.38769178],[-10.0862999,-16.59320234,13.38769178],[-10.3176003,-16.59156672,13.38769178],[-9.7128201,-16.58993109,13.38769178],[-9.5906801,-16.60301611,13.38605615],[-9.3630104,-16.60138048,13.38605615],[-9.4614697,-16.59974485,13.38605615],[-9.8724203,-16.59810923,13.38605615],[-9.91327,-16.5964736,13.38605615],[-9.6861897,-16.59483797,13.38605615],[-9.0727701,-16.59320234,13.38605615],[-8.4995003,-16.59156672,13.38605615],[-8.5494604,-16.58993109,13.38605615],[-8.3522997,-16.58829546,13.38605615],[-8.3046999,-16.58665983,13.38605615],[-9.0083904,-16.60301611,13.38442053],[-9.0065403,-16.60138048,13.38442053],[-9.0129099,-16.59974485,13.38442053],[-9.2079201,-16.59810923,13.38442053],[-9.9126902,-16.5964736,13.38442053],[-9.4355097,-16.59483797,13.38442053],[-8.53055,-16.59320234,13.38442053],[-8.0844898,-16.59156672,13.38442053],[-7.9966302,-16.58993109,13.38442053],[-8.0971603,-16.58829546,13.38442053],[-8.44629,-16.58665983,13.38442053],[-8.9098301,-16.60301611,13.3827849],[-9.0206203,-16.60138048,13.3827849],[-8.9060297,-16.59974485,13.3827849],[-8.6116695,-16.59810923,13.3827849],[-8.5338297,-16.5964736,13.3827849],[-8.16675,-16.59483797,13.3827849],[-7.9630699,-16.59320234,13.3827849],[-7.6447601,-16.59156672,13.3827849],[-7.4879899,-16.58993109,13.3827849],[-7.2621498,-16.58829546,13.3827849],[-7.0941401,-16.58665983,13.3827849],[-8.7254696,-16.60301611,13.38114927],[-8.5161104,-16.60138048,13.38114927],[-8.4788504,-16.59974485,13.38114927],[-7.84828,-16.59810923,13.38114927],[-5.8207502,-16.5964736,13.38114927],[-6.5030098,-16.59483797,13.38114927],[-6.9995198,-16.59320234,13.38114927],[-6.0485501,-16.59156672,13.38114927],[-6.5785499,-16.58993109,13.38114927],[-6.56286,-16.58829546,13.38114927],[-6.0834799,-16.58665983,13.38114927],[-5.6940598,-16.5850242,13.38114927],[-9.1277599,-16.60301611,13.37951364],[-8.7462301,-16.60138048,13.37951364],[-8.6806202,-16.59974485,13.37951364],[-8.3582897,-16.59810923,13.37951364],[-6.0398698,-16.5964736,13.37951364],[-6.7060299,-16.59483797,13.37951364],[-7.3838801,-16.59320234,13.37951364],[-6.2615399,-16.59156672,13.37951364],[-6.7223301,-16.58993109,13.37951364],[-6.4991398,-16.58829546,13.37951364],[-6.0209398,-16.58665983,13.37951364],[-5.5158801,-16.5850242,13.37951364],[-10.4439001,-16.60301611,13.37787802],[-10.8008003,-16.60138048,13.37787802],[-10.7976999,-16.59974485,13.37787802],[-10.0894003,-16.59810923,13.37787802],[-9.8205204,-16.5964736,13.37787802],[-9.4187498,-16.59483797,13.37787802],[-9.2385302,-16.59320234,13.37787802],[-9.2376699,-16.59156672,13.37787802],[-8.2068005,-16.58993109,13.37787802],[-6.80056,-16.58829546,13.37787802],[-5.7842999,-16.58665983,13.37787802],[-5.4528899,-16.5850242,13.37787802],[-11.8518,-16.60301611,13.37624239],[-12.9060001,-16.60138048,13.37624239],[-12.8375998,-16.59974485,13.37624239],[-11.5930996,-16.59810923,13.37624239],[-12.5764999,-16.5964736,13.37624239],[-11.7335997,-16.59483797,13.37624239],[-10.8123999,-16.59320234,13.37624239],[-12.5326996,-16.59156672,13.37624239],[-10.1391001,-16.58993109,13.37624239],[-6.51899,-16.58829546,13.37624239],[-4.6654801,-16.58665983,13.37624239],[-5.2786198,-16.5850242,13.37624239],[-4.8393202,-16.58338858,13.37624239],[-12.3514996,-16.60301611,13.37460676],[-12.5778999,-16.60138048,13.37460676],[-12.4785004,-16.59974485,13.37460676],[-11.8122997,-16.59810923,13.37460676],[-11.9452,-16.5964736,13.37460676],[-11.4116001,-16.59483797,13.37460676],[-10.9488001,-16.59320234,13.37460676],[-11.3759003,-16.59156672,13.37460676],[-9.89606,-16.58993109,13.37460676],[-7.47052,-16.58829546,13.37460676],[-5.7518802,-16.58665983,13.37460676],[-5.7514601,-16.5850242,13.37460676],[-5.26298,-16.58338858,13.37460676],[-12.2804003,-16.60301611,13.37297113],[-12.1576996,-16.60138048,13.37297113],[-11.8423004,-16.59974485,13.37297113],[-11.3175001,-16.59810923,13.37297113],[-10.7261,-16.5964736,13.37297113],[-10.5522003,-16.59483797,13.37297113],[-10.3711004,-16.59320234,13.37297113],[-10.0770998,-16.59156672,13.37297113],[-9.4787197,-16.58993109,13.37297113],[-8.4658098,-16.58829546,13.37297113],[-7.7743001,-16.58665983,13.37297113],[-6.7968302,-16.5850242,13.37297113],[-5.8828902,-16.58338858,13.37297113],[-5.6389699,-16.58175295,13.37297113],[-12.4258003,-16.60301611,13.3713355],[-12.0703001,-16.60138048,13.3713355],[-11.9554005,-16.59974485,13.3713355],[-11.1025,-16.59810923,13.3713355],[-9.9702396,-16.5964736,13.3713355],[-10.0901003,-16.59483797,13.3713355],[-10.2299004,-16.59320234,13.3713355],[-10.2895002,-16.59156672,13.3713355],[-9.6916399,-16.58993109,13.3713355],[-8.7940702,-16.58829546,13.3713355],[-8.8481998,-16.58665983,13.3713355],[-7.5966201,-16.5850242,13.3713355],[-6.3322401,-16.58338858,13.3713355],[-6.29567,-16.58175295,13.3713355],[-5.11304,-16.58011732,13.3713355],[-12.1107998,-16.60301611,13.36969988],[-11.6679001,-16.60138048,13.36969988],[-11.3095999,-16.59974485,13.36969988],[-10.5960999,-16.59810923,13.36969988],[-10.1461,-16.5964736,13.36969988],[-9.9864502,-16.59483797,13.36969988],[-9.8879299,-16.59320234,13.36969988],[-9.7093601,-16.59156672,13.36969988],[-9.1503601,-16.58993109,13.36969988],[-8.6567297,-16.58829546,13.36969988],[-8.2613401,-16.58665983,13.36969988],[-7.2951698,-16.5850242,13.36969988],[-6.3672199,-16.58338858,13.36969988],[-5.73739,-16.58175295,13.36969988],[-5.1052098,-16.58011732,13.36969988],[-4.4159698,-16.57848169,13.36969988],[-11.6637001,-16.60301611,13.36806425],[-10.5320997,-16.60138048,13.36806425],[-10.1934996,-16.59974485,13.36806425],[-10.0483999,-16.59810923,13.36806425],[-9.4076204,-16.5964736,13.36806425],[-9.3666496,-16.59483797,13.36806425],[-9.4249697,-16.59320234,13.36806425],[-9.1123695,-16.59156672,13.36806425],[-8.8357601,-16.58993109,13.36806425],[-8.5191803,-16.58829546,13.36806425],[-8.3511801,-16.58665983,13.36806425],[-7.2891598,-16.5850242,13.36806425],[-5.6785598,-16.58338858,13.36806425],[-4.9004998,-16.58175295,13.36806425],[-5.0936198,-16.58011732,13.36806425],[-5.2010999,-16.57848169,13.36806425],[-5.2206101,-16.57684607,13.36806425],[-11.4109001,-16.60301611,13.36642862],[-9.92589,-16.60138048,13.36642862],[-9.6889801,-16.59974485,13.36642862],[-9.6064901,-16.59810923,13.36642862],[-9.0038996,-16.5964736,13.36642862],[-8.9823599,-16.59483797,13.36642862],[-8.9636898,-16.59320234,13.36642862],[-8.9060001,-16.59156672,13.36642862],[-8.6308498,-16.58993109,13.36642862],[-8.3807096,-16.58829546,13.36642862],[-8.6842499,-16.58665983,13.36642862],[-7.5285902,-16.5850242,13.36642862],[-5.4870501,-16.58338858,13.36642862],[-4.5402699,-16.58175295,13.36642862],[-5.2237101,-16.58011732,13.36642862],[-5.5750599,-16.57848169,13.36642862],[-5.5525198,-16.57684607,13.36642862],[-11.3221998,-16.60301611,13.36479299],[-10.2605,-16.60138048,13.36479299],[-9.6763802,-16.59974485,13.36479299],[-9.4380598,-16.59810923,13.36479299],[-9.1546402,-16.5964736,13.36479299],[-8.8908195,-16.59483797,13.36479299],[-8.6322603,-16.59320234,13.36479299],[-8.4652395,-16.59156672,13.36479299],[-8.1647997,-16.58993109,13.36479299],[-7.91956,-16.58829546,13.36479299],[-7.68543,-16.58665983,13.36479299],[-7.0824399,-16.5850242,13.36479299],[-6.3165202,-16.58338858,13.36479299],[-5.8930502,-16.58175295,13.36479299],[-5.6282902,-16.58011732,13.36479299],[-5.4948301,-16.57848169,13.36479299],[-5.2917299,-16.57684607,13.36479299],[-4.7844601,-16.57521044,13.36479299],[-11.2094002,-16.60301611,13.36315737],[-9.4565296,-16.60138048,13.36315737],[-9.0728798,-16.59974485,13.36315737],[-9.34021,-16.59810923,13.36315737],[-9.4509001,-16.5964736,13.36315737],[-9.1674004,-16.59483797,13.36315737],[-8.3376398,-16.59320234,13.36315737],[-7.6268802,-16.59156672,13.36315737],[-7.6595302,-16.58993109,13.36315737],[-7.3113799,-16.58829546,13.36315737],[-6.5967302,-16.58665983,13.36315737],[-6.8407698,-16.5850242,13.36315737],[-6.5697999,-16.58338858,13.36315737],[-6.20049,-16.58175295,13.36315737],[-6.1286502,-16.58011732,13.36315737],[-5.23599,-16.57848169,13.36315737],[-4.9588599,-16.57684607,13.36315737],[-5.1276302,-16.57521044,13.36315737],[-11.3781996,-16.60301611,13.36152174],[-9.3421602,-16.60138048,13.36152174],[-8.9859896,-16.59974485,13.36152174],[-9.31738,-16.59810923,13.36152174],[-9.4251604,-16.5964736,13.36152174],[-9.1292,-16.59483797,13.36152174],[-8.3411598,-16.59320234,13.36152174],[-7.5907102,-16.59156672,13.36152174],[-7.7702198,-16.58993109,13.36152174],[-7.3825598,-16.58829546,13.36152174],[-6.6601901,-16.58665983,13.36152174],[-7.2112999,-16.5850242,13.36152174],[-6.88059,-16.58338858,13.36152174],[-6.4591599,-16.58175295,13.36152174],[-6.6826901,-16.58011732,13.36152174],[-5.7512298,-16.57848169,13.36152174],[-5.3267298,-16.57684607,13.36152174],[-5.6088901,-16.57521044,13.36152174],[-4.7790298,-16.57357481,13.36152174],[-11.8971004,-16.60301611,13.35988611],[-10.5169001,-16.60138048,13.35988611],[-9.9186296,-16.59974485,13.35988611],[-9.3632002,-16.59810923,13.35988611],[-8.8510103,-16.5964736,13.35988611],[-8.6490297,-16.59483797,13.35988611],[-8.3951197,-16.59320234,13.35988611],[-8.1255503,-16.59156672,13.35988611],[-8.1963301,-16.58993109,13.35988611],[-8.4541302,-16.58829546,13.35988611],[-8.47616,-16.58665983,13.35988611],[-8.2404299,-16.5850242,13.35988611],[-8.19524,-16.58338858,13.35988611],[-8.3067703,-16.58175295,13.35988611],[-8.0300798,-16.58011732,13.35988611],[-8.2601299,-16.57848169,13.35988611],[-8.0226402,-16.57684607,13.35988611],[-6.8947401,-16.57521044,13.35988611],[-5.82724,-16.57357481,13.35988611],[-12.7896004,-16.60301611,13.35825048],[-10.6843004,-16.60138048,13.35825048],[-10.2995996,-16.59974485,13.35825048],[-9.4580698,-16.59810923,13.35825048],[-8.1654797,-16.5964736,13.35825048],[-8.2217703,-16.59483797,13.35825048],[-8.3673697,-16.59320234,13.35825048],[-7.6704898,-16.59156672,13.35825048],[-8.2101402,-16.58993109,13.35825048],[-9.2253799,-16.58829546,13.35825048],[-10.1171999,-16.58665983,13.35825048],[-9.4030199,-16.5850242,13.35825048],[-9.2659101,-16.58338858,13.35825048],[-9.7869701,-16.58175295,13.35825048],[-9.2869501,-16.58011732,13.35825048],[-10.7006998,-16.57848169,13.35825048],[-11.4705,-16.57684607,13.35825048],[-8.0156698,-16.57521044,13.35825048],[-5.5575199,-16.57357481,13.35825048],[-12.5365,-16.60301611,13.35661486],[-10.8515997,-16.60138048,13.35661486],[-10.2768002,-16.59974485,13.35661486],[-9.5750303,-16.59810923,13.35661486],[-8.5670996,-16.5964736,13.35661486],[-8.5251303,-16.59483797,13.35661486],[-8.87255,-16.59320234,13.35661486],[-8.3592997,-16.59156672,13.35661486],[-8.9078598,-16.58993109,13.35661486],[-9.5636101,-16.58829546,13.35661486],[-9.8302498,-16.58665983,13.35661486],[-9.59021,-16.5850242,13.35661486],[-9.2604799,-16.58338858,13.35661486],[-9.4451799,-16.58175295,13.35661486],[-9.4238701,-16.58011732,13.35661486],[-10.1826,-16.57848169,13.35661486],[-10.3297005,-16.57684607,13.35661486],[-8.2256403,-16.57521044,13.35661486],[-6.2412701,-16.57357481,13.35661486],[-11.7153997,-16.60301611,13.35497923],[-10.7651997,-16.60138048,13.35497923],[-10.3044996,-16.59974485,13.35497923],[-9.7434902,-16.59810923,13.35497923],[-9.1923304,-16.5964736,13.35497923],[-9.2684603,-16.59483797,13.35497923],[-9.9040003,-16.59320234,13.35497923],[-10.7546997,-16.59156672,13.35497923],[-10.5214996,-16.58993109,13.35497923],[-10.0337,-16.58829546,13.35497923],[-9.8908997,-16.58665983,13.35497923],[-9.5486698,-16.5850242,13.35497923],[-8.9425097,-16.58338858,13.35497923],[-8.5276804,-16.58175295,13.35497923],[-8.9978399,-16.58011732,13.35497923],[-9.65872,-16.57848169,13.35497923],[-9.6206598,-16.57684607,13.35497923],[-8.2157602,-16.57521044,13.35497923],[-6.80547,-16.57357481,13.35497923],[-11.1799002,-16.60301611,13.3533436],[-10.4117002,-16.60138048,13.3533436],[-10.2649002,-16.59974485,13.3533436],[-9.8857002,-16.59810923,13.3533436],[-9.02073,-16.5964736,13.3533436],[-9.2058401,-16.59483797,13.3533436],[-10.7321997,-16.59320234,13.3533436],[-13.2523003,-16.59156672,13.3533436],[-11.8780003,-16.58993109,13.3533436],[-10.3299999,-16.58829546,13.3533436],[-10.4765997,-16.58665983,13.3533436],[-9.7824097,-16.5850242,13.3533436],[-8.4668999,-16.58338858,13.3533436],[-7.5805101,-16.58175295,13.3533436],[-8.6417599,-16.58011732,13.3533436],[-10.2130003,-16.57848169,13.3533436],[-10.8613997,-16.57684607,13.3533436],[-8.3426199,-16.57521044,13.3533436],[-6.3525,-16.57357481,13.3533436],[-11.1823997,-16.60301611,13.35170797],[-10.8378,-16.60138048,13.35170797],[-10.5033998,-16.59974485,13.35170797],[-9.7761602,-16.59810923,13.35170797],[-9.0666199,-16.5964736,13.35170797],[-9.3236303,-16.59483797,13.35170797],[-10.3837996,-16.59320234,13.35170797],[-11.5724001,-16.59156672,13.35170797],[-11.1394997,-16.58993109,13.35170797],[-10.1697998,-16.58829546,13.35170797],[-9.9526501,-16.58665983,13.35170797],[-9.448,-16.5850242,13.35170797],[-8.6787205,-16.58338858,13.35170797],[-8.30019,-16.58175295,13.35170797],[-8.5627298,-16.58011732,13.35170797],[-9.21099,-16.57848169,13.35170797],[-9.2991896,-16.57684607,13.35170797],[-8.0246296,-16.57521044,13.35170797],[-6.8016801,-16.57357481,13.35170797],[-11.5262003,-16.60301611,13.35007234],[-12.1292,-16.60138048,13.35007234],[-11.9102001,-16.59974485,13.35007234],[-9.7884398,-16.59810923,13.35007234],[-7.73915,-16.5964736,13.35007234],[-7.9109001,-16.59483797,13.35007234],[-9.9050102,-16.59320234,13.35007234],[-11.0735998,-16.59156672,13.35007234],[-10.7384005,-16.58993109,13.35007234],[-9.5615702,-16.58829546,13.35007234],[-8.7253103,-16.58665983,13.35007234],[-8.8265495,-16.5850242,13.35007234],[-8.2715302,-16.58338858,13.35007234],[-7.73353,-16.58175295,13.35007234],[-8.1431303,-16.58011732,13.35007234],[-8.2124901,-16.57848169,13.35007234],[-7.93747,-16.57684607,13.35007234],[-7.42591,-16.57521044,13.35007234],[-6.0002699,-16.57357481,13.35007234],[-11.54,-16.60301611,13.34843672],[-13.1714001,-16.60138048,13.34843672],[-13.5139999,-16.59974485,13.34843672],[-9.8204498,-16.59810923,13.34843672],[-6.2114201,-16.5964736,13.34843672],[-6.7718501,-16.59483797,13.34843672],[-9.82903,-16.59320234,13.34843672],[-11.5795002,-16.59156672,13.34843672],[-10.9784002,-16.58993109,13.34843672],[-9.4070702,-16.58829546,13.34843672],[-7.9093199,-16.58665983,13.34843672],[-8.6636801,-16.5850242,13.34843672],[-8.1378498,-16.58338858,13.34843672],[-7.1335101,-16.58175295,13.34843672],[-8.0721102,-16.58011732,13.34843672],[-7.9187498,-16.57848169,13.34843672],[-7.6994801,-16.57684607,13.34843672],[-7.2870698,-16.57521044,13.34843672],[-11.2937002,-16.60301611,13.34680109],[-11.0332003,-16.60138048,13.34680109],[-10.6338997,-16.59974485,13.34680109],[-9.6139097,-16.59810923,13.34680109],[-8.6508598,-16.5964736,13.34680109],[-8.7210102,-16.59483797,13.34680109],[-9.9196301,-16.59320234,13.34680109],[-10.7384996,-16.59156672,13.34680109],[-10.6379995,-16.58993109,13.34680109],[-10.0778999,-16.58829546,13.34680109],[-9.6716604,-16.58665983,13.34680109],[-9.5055199,-16.5850242,13.34680109],[-9.2991104,-16.58338858,13.34680109],[-8.9672098,-16.58175295,13.34680109],[-8.8409901,-16.58011732,13.34680109],[-8.5552197,-16.57848169,13.34680109],[-8.3310404,-16.57684607,13.34680109],[-7.7756,-16.57521044,13.34680109],[-10.8613005,-16.60301611,13.34516546],[-8.1940699,-16.60138048,13.34516546],[-7.41991,-16.59974485,13.34516546],[-9.1567001,-16.59810923,13.34516546],[-9.7993698,-16.5964736,13.34516546],[-9.9500303,-16.59483797,13.34516546],[-10.2749004,-16.59320234,13.34516546],[-10.9453001,-16.59156672,13.34516546],[-10.8527002,-16.58993109,13.34516546],[-10.6463003,-16.58829546,13.34516546],[-11.0855999,-16.58665983,13.34516546],[-10.6105003,-16.5850242,13.34516546],[-10.4685001,-16.58338858,13.34516546],[-11.0002003,-16.58175295,13.34516546],[-9.8682899,-16.58011732,13.34516546],[-9.44594,-16.57848169,13.34516546],[-9.4729099,-16.57684607,13.34516546],[-11.3821001,-16.60301611,13.34352983],[-7.7867098,-16.60138048,13.34352983],[-6.8003998,-16.59974485,13.34352983],[-9.4375801,-16.59810923,13.34352983],[-9.9895697,-16.5964736,13.34352983],[-10.0860996,-16.59483797,13.34352983],[-10.4254999,-16.59320234,13.34352983],[-11.0207996,-16.59156672,13.34352983],[-10.9441996,-16.58993109,13.34352983],[-10.9639997,-16.58829546,13.34352983],[-11.2268,-16.58665983,13.34352983],[-10.8872995,-16.5850242,13.34352983],[-10.8134003,-16.58338858,13.34352983],[-11.2014999,-16.58175295,13.34352983],[-10.0880003,-16.58011732,13.34352983],[-9.4986401,-16.57848169,13.34352983],[-9.57512,-16.57684607,13.34352983],[-12.5102997,-16.60301611,13.34189421],[-11.3304996,-16.60138048,13.34189421],[-10.5193005,-16.59974485,13.34189421],[-10.4239998,-16.59810923,13.34189421],[-10.3397999,-16.5964736,13.34189421],[-10.3264999,-16.59483797,13.34189421],[-10.3785,-16.59320234,13.34189421],[-10.5094004,-16.59156672,13.34189421],[-10.8213997,-16.58993109,13.34189421],[-10.9675999,-16.58829546,13.34189421],[-11.0169001,-16.58665983,13.34189421],[-10.8552999,-16.5850242,13.34189421],[-10.8402996,-16.58338858,13.34189421],[-10.6052999,-16.58175295,13.34189421],[-9.9101696,-16.58011732,13.34189421],[-8.7785301,-16.57848169,13.34189421],[-8.1251698,-16.57684607,13.34189421],[-13.9090996,-16.60301611,13.34025858],[-13.3462,-16.60138048,13.34025858],[-13.3593998,-16.59974485,13.34025858],[-11.5156002,-16.59810923,13.34025858],[-11.0374002,-16.5964736,13.34025858],[-10.8542004,-16.59483797,13.34025858],[-10.5110998,-16.59320234,13.34025858],[-10.2146997,-16.59156672,13.34025858],[-10.4584999,-16.58993109,13.34025858],[-10.9431,-16.58829546,13.34025858],[-11.0532999,-16.58665983,13.34025858],[-11.0222998,-16.5850242,13.34025858],[-11.0052996,-16.58338858,13.34025858],[-11.3322001,-16.58175295,13.34025858],[-10.0171003,-16.58011732,13.34025858],[-7.3867002,-16.57848169,13.34025858],[-13.9341002,-16.60301611,13.33862295],[-13.2547998,-16.60138048,13.33862295],[-13.0325003,-16.59974485,13.33862295],[-11.4960003,-16.59810923,13.33862295],[-10.9053001,-16.5964736,13.33862295],[-10.6531,-16.59483797,13.33862295],[-10.4727001,-16.59320234,13.33862295],[-10.3309002,-16.59156672,13.33862295],[-10.5278997,-16.58993109,13.33862295],[-10.9975004,-16.58829546,13.33862295],[-11.1775999,-16.58665983,13.33862295],[-11.1066999,-16.5850242,13.33862295],[-11.0541,-16.58338858,13.33862295],[-11.0025997,-16.58175295,13.33862295],[-9.8756504,-16.58011732,13.33862295],[-7.80301,-16.57848169,13.33862295],[-13.2839003,-16.60301611,13.33698732],[-12.1964998,-16.60138048,13.33698732],[-11.5813999,-16.59974485,13.33698732],[-10.7698002,-16.59810923,13.33698732],[-9.56705,-16.5964736,13.33698732],[-9.58006,-16.59483797,13.33698732],[-10.1798,-16.59320234,13.33698732],[-10.5459995,-16.59156672,13.33698732],[-10.8190002,-16.58993109,13.33698732],[-11.2318001,-16.58829546,13.33698732],[-11.6861,-16.58665983,13.33698732],[-11.4173002,-16.5850242,13.33698732],[-11.2328997,-16.58338858,13.33698732],[-10.8788004,-16.58175295,13.33698732],[-9.82903,-16.58011732,13.33698732],[-8.1425896,-16.57848169,13.33698732],[-13.1153002,-16.60301611,13.33535169],[-11.3913002,-16.60138048,13.33535169],[-10.9013996,-16.59974485,13.33535169],[-10.4271002,-16.59810923,13.33535169],[-7.80653,-16.5964736,13.33535169],[-7.9345002,-16.59483797,13.33535169],[-10.0472002,-16.59320234,13.33535169],[-10.7630997,-16.59156672,13.33535169],[-10.8591995,-16.58993109,13.33535169],[-11.5044003,-16.58829546,13.33535169],[-12.2544003,-16.58665983,13.33535169],[-11.7658997,-16.5850242,13.33535169],[-11.2859001,-16.58338858,13.33535169],[-11.7840004,-16.58175295,13.33535169],[-10.0943003,-16.58011732,13.33535169],[-7.4768801,-16.57848169,13.33535169],[-12.8977003,-16.60301611,13.33371607],[-11.8884001,-16.60138048,13.33371607],[-11.3459997,-16.59974485,13.33371607],[-10.6435003,-16.59810923,13.33371607],[-9.2156696,-16.5964736,13.33371607],[-9.0951004,-16.59483797,13.33371607],[-10.0724001,-16.59320234,13.33371607],[-10.5823002,-16.59156672,13.33371607],[-10.6646004,-16.58993109,13.33371607],[-11.1653004,-16.58829546,13.33371607],[-11.7853003,-16.58665983,13.33371607],[-11.4560003,-16.5850242,13.33371607],[-11.1753998,-16.58338858,13.33371607],[-10.9614,-16.58175295,13.33371607],[-9.7859802,-16.58011732,13.33371607],[-7.80478,-16.57848169,13.33371607],[-12.9464998,-16.60301611,13.33208044],[-12.4995003,-16.60138048,13.33208044],[-12.1659002,-16.59974485,13.33208044],[-11.3081999,-16.59810923,13.33208044],[-10.5567999,-16.5964736,13.33208044],[-10.3423996,-16.59483797,13.33208044],[-10.3649998,-16.59320234,13.33208044],[-10.3537998,-16.59156672,13.33208044],[-10.5051003,-16.58993109,13.33208044],[-11.0826998,-16.58829546,13.33208044],[-11.9007998,-16.58665983,13.33208044],[-11.4882002,-16.5850242,13.33208044],[-11.1948004,-16.58338858,13.33208044],[-11.1644001,-16.58175295,13.33208044],[-9.5915699,-16.58011732,13.33208044],[-6.7021899,-16.57848169,13.33208044],[-12.9967003,-16.60301611,13.33044481],[-12.7322998,-16.60138048,13.33044481],[-12.7828999,-16.59974485,13.33044481],[-11.5936003,-16.59810923,13.33044481],[-10.7566996,-16.5964736,13.33044481],[-10.6787996,-16.59483797,13.33044481],[-10.3697996,-16.59320234,13.33044481],[-10.3598003,-16.59156672,13.33044481],[-10.4053001,-16.58993109,13.33044481],[-11.0705004,-16.58829546,13.33044481],[-12.5418997,-16.58665983,13.33044481],[-11.5565996,-16.5850242,13.33044481],[-11.2765999,-16.58338858,13.33044481],[-11.9782,-16.58175295,13.33044481],[-9.95014,-16.58011732,13.33044481],[-5.6529698,-16.57848169,13.33044481],[-12.9898005,-16.60301611,13.32880918],[-12.5752001,-16.60138048,13.32880918],[-12.3641996,-16.59974485,13.32880918],[-11.7716999,-16.59810923,13.32880918],[-11.2643003,-16.5964736,13.32880918],[-11.0164003,-16.59483797,13.32880918],[-10.4238005,-16.59320234,13.32880918],[-9.9332304,-16.59156672,13.32880918],[-9.9399405,-16.58993109,13.32880918],[-9.9967098,-16.58829546,13.32880918],[-10.2817001,-16.58665983,13.32880918],[-10.2259998,-16.5850242,13.32880918],[-10.7957001,-16.58338858,13.32880918],[-11.1071997,-16.58175295,13.32880918],[-10.1485004,-16.58011732,13.32880918],[-8.4744396,-16.57848169,13.32880918],[-7.7561402,-16.57684607,13.32880918],[-12.9111004,-16.60301611,13.32717356],[-12.4954004,-16.60138048,13.32717356],[-12.1615,-16.59974485,13.32717356],[-11.9875002,-16.59810923,13.32717356],[-12.0900002,-16.5964736,13.32717356],[-11.7768002,-16.59483797,13.32717356],[-10.3371,-16.59320234,13.32717356],[-8.7080097,-16.59156672,13.32717356],[-8.8226805,-16.58993109,13.32717356],[-8.3245096,-16.58829546,13.32717356],[-6.2924099,-16.58665983,13.32717356],[-8.0708799,-16.5850242,13.32717356],[-10.7887001,-16.58338858,13.32717356],[-12.1475,-16.58175295,13.32717356],[-11.1810999,-16.58011732,13.32717356],[-10.8302002,-16.57848169,13.32717356],[-11.2444,-16.57684607,13.32717356],[-9.5242996,-16.57521044,13.32717356],[-12.9005003,-16.60301611,13.32553793],[-12.3737001,-16.60138048,13.32553793],[-12.1715002,-16.59974485,13.32553793],[-12.3155003,-16.59810923,13.32553793],[-12.3434,-16.5964736,13.32553793],[-12.1705999,-16.59483797,13.32553793],[-10.5361996,-16.59320234,13.32553793],[-8.45189,-16.59156672,13.32553793],[-8.6826801,-16.58993109,13.32553793],[-7.9856,-16.58829546,13.32553793],[-5.3846898,-16.58665983,13.32553793],[-7.6382899,-16.5850242,13.32553793],[-10.8825998,-16.58338858,13.32553793],[-12.4989996,-16.58175295,13.32553793],[-11.5775995,-16.58011732,13.32553793],[-11.3948002,-16.57848169,13.32553793],[-11.7959995,-16.57684607,13.32553793],[-10.2201004,-16.57521044,13.32553793],[-12.8038998,-16.60301611,13.3239023],[-12.7943001,-16.60138048,13.3239023],[-12.7060003,-16.59974485,13.3239023],[-12.3873997,-16.59810923,13.3239023],[-12.0979996,-16.5964736,13.3239023],[-11.9293003,-16.59483797,13.3239023],[-11.2765999,-16.59320234,13.3239023],[-10.7419004,-16.59156672,13.3239023],[-10.2782001,-16.58993109,13.3239023],[-9.19135,-16.58829546,13.3239023],[-8.3555698,-16.58665983,13.3239023],[-9.0756502,-16.5850242,13.3239023],[-10.6464005,-16.58338858,13.3239023],[-11.3725004,-16.58175295,13.3239023],[-11.3768997,-16.58011732,13.3239023],[-11.4288998,-16.57848169,13.3239023],[-11.5440998,-16.57684607,13.3239023],[-10.6385002,-16.57521044,13.3239023],[-9.7660799,-16.57357481,13.3239023],[-12.7681999,-16.60301611,13.32226667],[-13.4280005,-16.60138048,13.32226667],[-13.8205996,-16.59974485,13.32226667],[-12.6059999,-16.59810923,13.32226667],[-11.948,-16.5964736,13.32226667],[-11.8395004,-16.59483797,13.32226667],[-12.0220003,-16.59320234,13.32226667],[-13.4161997,-16.59156672,13.32226667],[-12.5179996,-16.58993109,13.32226667],[-9.8443804,-16.58829546,13.32226667],[-8.2397404,-16.58665983,13.32226667],[-9.1164799,-16.5850242,13.32226667],[-10.9132004,-16.58338858,13.32226667],[-11.9386997,-16.58175295,13.32226667],[-11.6564999,-16.58011732,13.32226667],[-11.9000998,-16.57848169,13.32226667],[-12.3156996,-16.57684607,13.32226667],[-11.2420998,-16.57521044,13.32226667],[-10.9710999,-16.57357481,13.32226667],[-12.4701004,-16.60301611,13.32063104],[-13.0310001,-16.60138048,13.32063104],[-13.4343004,-16.59974485,13.32063104],[-12.3797998,-16.59810923,13.32063104],[-11.9291,-16.5964736,13.32063104],[-11.8803997,-16.59483797,13.32063104],[-12.1708002,-16.59320234,13.32063104],[-13.1022997,-16.59156672,13.32063104],[-12.4018002,-16.58993109,13.32063104],[-10.1683998,-16.58829546,13.32063104],[-8.7177401,-16.58665983,13.32063104],[-9.4411402,-16.5850242,13.32063104],[-10.967,-16.58338858,13.32063104],[-11.7159004,-16.58175295,13.32063104],[-11.6973,-16.58011732,13.32063104],[-12.0705004,-16.57848169,13.32063104],[-12.1639004,-16.57684607,13.32063104],[-11.4555998,-16.57521044,13.32063104],[-11.0997,-16.57357481,13.32063104],[-10.6295004,-16.57193918,13.32063104],[-11.5754995,-16.60301611,13.31899542],[-11.1496,-16.60138048,13.31899542],[-10.9490995,-16.59974485,13.31899542],[-11.5573997,-16.59810923,13.31899542],[-12.0255003,-16.5964736,13.31899542],[-12.0584002,-16.59483797,13.31899542],[-11.9698,-16.59320234,13.31899542],[-11.9646997,-16.59156672,13.31899542],[-11.5337,-16.58993109,13.31899542],[-10.4603996,-16.58829546,13.31899542],[-9.6713305,-16.58665983,13.31899542],[-10.0685997,-16.5850242,13.31899542],[-10.9239998,-16.58338858,13.31899542],[-11.3587999,-16.58175295,13.31899542],[-11.6820002,-16.58011732,13.31899542],[-11.9007998,-16.57848169,13.31899542],[-12.0288,-16.57684607,13.31899542],[-11.4786997,-16.57521044,13.31899542],[-11.0761003,-16.57357481,13.31899542],[-10.6520996,-16.57193918,13.31899542],[-10.9490004,-16.60301611,13.31735979],[-9.3247995,-16.60138048,13.31735979],[-8.3442202,-16.59974485,13.31735979],[-10.8006001,-16.59810923,13.31735979],[-12.3943005,-16.5964736,13.31735979],[-12.533,-16.59483797,13.31735979],[-11.9953003,-16.59320234,13.31735979],[-12.2219,-16.59156672,13.31735979],[-11.9447002,-16.58993109,13.31735979],[-10.5836,-16.58829546,13.31735979],[-8.8487997,-16.58665983,13.31735979],[-9.7517204,-16.5850242,13.31735979],[-11.1822004,-16.58338858,13.31735979],[-11.6042995,-16.58175295,13.31735979],[-11.6267996,-16.58011732,13.31735979],[-11.9018002,-16.57848169,13.31735979],[-12.0809002,-16.57684607,13.31735979],[-11.4961996,-16.57521044,13.31735979],[-11.8411999,-16.57357481,13.31735979],[-12.1560001,-16.57193918,13.31735979],[-9.2004299,-16.57030355,13.31735979],[-11.0348997,-16.60301611,13.31572416],[-10.0274,-16.60138048,13.31572416],[-9.6079903,-16.59974485,13.31572416],[-10.7833004,-16.59810923,13.31572416],[-11.8034,-16.5964736,13.31572416],[-11.9787998,-16.59483797,13.31572416],[-11.7952003,-16.59320234,13.31572416],[-11.8874998,-16.59156672,13.31572416],[-11.7160997,-16.58993109,13.31572416],[-10.9685001,-16.58829546,13.31572416],[-10.1469002,-16.58665983,13.31572416],[-10.6449003,-16.5850242,13.31572416],[-11.3241997,-16.58338858,13.31572416],[-11.5841999,-16.58175295,13.31572416],[-11.7748003,-16.58011732,13.31572416],[-11.8589001,-16.57848169,13.31572416],[-11.9644003,-16.57684607,13.31572416],[-11.4792004,-16.57521044,13.31572416],[-11.2954998,-16.57357481,13.31572416],[-10.9883003,-16.57193918,13.31572416],[-8.8917799,-16.57030355,13.31572416],[-11.5117998,-16.60301611,13.31408853],[-11.2004004,-16.60138048,13.31408853],[-11.0733995,-16.59974485,13.31408853],[-10.9793997,-16.59810923,13.31408853],[-10.7491999,-16.5964736,13.31408853],[-10.7981005,-16.59483797,13.31408853],[-11.3318996,-16.59320234,13.31408853],[-11.5866003,-16.59156672,13.31408853],[-11.5558996,-16.58993109,13.31408853],[-11.5763998,-16.58829546,13.31408853],[-11.8864002,-16.58665983,13.31408853],[-11.7545004,-16.5850242,13.31408853],[-11.7823,-16.58338858,13.31408853],[-11.9491997,-16.58175295,13.31408853],[-11.8838997,-16.58011732,13.31408853],[-11.6711998,-16.57848169,13.31408853],[-11.4394999,-16.57684607,13.31408853],[-11.2200003,-16.57521044,13.31408853],[-11.3593998,-16.57357481,13.31408853],[-10.9101,-16.57193918,13.31408853],[-11.8231001,-16.60301611,13.31245291],[-11.4525995,-16.60138048,13.31245291],[-11.4531002,-16.59974485,13.31245291],[-11.0928001,-16.59810923,13.31245291],[-10.0047998,-16.5964736,13.31245291],[-9.86339,-16.59483797,13.31245291],[-11.1215,-16.59320234,13.31245291],[-11.4144001,-16.59156672,13.31245291],[-11.5279999,-16.58993109,13.31245291],[-12.0101004,-16.58829546,13.31245291],[-12.6176996,-16.58665983,13.31245291],[-12.3136997,-16.5850242,13.31245291],[-12.1408005,-16.58338858,13.31245291],[-12.2473001,-16.58175295,13.31245291],[-11.9987001,-16.58011732,13.31245291],[-11.4333,-16.57848169,13.31245291],[-10.9460001,-16.57684607,13.31245291],[-11.1924,-16.57521044,13.31245291],[-11.6822004,-16.57357481,13.31245291],[-11.8306999,-16.60301611,13.31081728],[-11.5878,-16.60138048,13.31081728],[-11.5101995,-16.59974485,13.31081728],[-11.4244003,-16.59810923,13.31081728],[-11.0911999,-16.5964736,13.31081728],[-11.1220999,-16.59483797,13.31081728],[-11.658,-16.59320234,13.31081728],[-11.7287998,-16.59156672,13.31081728],[-11.8086996,-16.58993109,13.31081728],[-12.0290003,-16.58829546,13.31081728],[-12.2264996,-16.58665983,13.31081728],[-12.2068005,-16.5850242,13.31081728],[-12.3171997,-16.58338858,13.31081728],[-12.3769999,-16.58175295,13.31081728],[-12.2263002,-16.58011732,13.31081728],[-11.6807003,-16.57848169,13.31081728],[-11.2335997,-16.57684607,13.31081728],[-11.3270998,-16.57521044,13.31081728],[-11.3842001,-16.57357481,13.31081728],[-11.9554996,-16.60301611,13.30918165],[-11.8114996,-16.60138048,13.30918165],[-11.8930998,-16.59974485,13.30918165],[-11.9034996,-16.59810923,13.30918165],[-12.4238005,-16.5964736,13.30918165],[-12.6036997,-16.59483797,13.30918165],[-12.2397003,-16.59320234,13.30918165],[-12.4112997,-16.59156672,13.30918165],[-12.3218002,-16.58993109,13.30918165],[-12.0650997,-16.58829546,13.30918165],[-11.9426003,-16.58665983,13.30918165],[-12.1113005,-16.5850242,13.30918165],[-12.8719997,-16.58338858,13.30918165],[-13.6630001,-16.58175295,13.30918165],[-12.7693996,-16.58011732,13.30918165],[-11.5615997,-16.57848169,13.30918165],[-11.0179996,-16.57684607,13.30918165],[-11.3238001,-16.57521044,13.30918165],[-11.9695997,-16.60301611,13.30754602],[-11.9196997,-16.60138048,13.30754602],[-11.9976997,-16.59974485,13.30754602],[-12.0873003,-16.59810923,13.30754602],[-12.8386002,-16.5964736,13.30754602],[-12.9895,-16.59483797,13.30754602],[-12.3788996,-16.59320234,13.30754602],[-12.5584002,-16.59156672,13.30754602],[-12.4701996,-16.58993109,13.30754602],[-12.1429996,-16.58829546,13.30754602],[-11.8283997,-16.58665983,13.30754602],[-12.0619001,-16.5850242,13.30754602],[-12.9608002,-16.58338858,13.30754602],[-14.1400003,-16.58175295,13.30754602],[-12.9198999,-16.58011732,13.30754602],[-11.4686003,-16.57848169,13.30754602],[-10.8009996,-16.57684607,13.30754602],[-11.5486002,-16.60301611,13.30591039],[-11.5767002,-16.60138048,13.30591039],[-11.6056995,-16.59974485,13.30591039],[-11.8760996,-16.59810923,13.30591039],[-12.1632004,-16.5964736,13.30591039],[-12.1809998,-16.59483797,13.30591039],[-12.0432997,-16.59320234,13.30591039],[-12.0743999,-16.59156672,13.30591039],[-12.1402998,-16.58993109,13.30591039],[-11.9782,-16.58829546,13.30591039],[-11.8566999,-16.58665983,13.30591039],[-12.0096998,-16.5850242,13.30591039],[-12.3259001,-16.58338858,13.30591039],[-12.4954996,-16.58175295,13.30591039],[-12.2370996,-16.58011732,13.30591039],[-11.7754002,-16.57848169,13.30591039],[-11.1236,-16.60301611,13.30427477],[-11.1541996,-16.60138048,13.30427477],[-11.1091995,-16.59974485,13.30427477],[-11.5445995,-16.59810923,13.30427477],[-11.7940998,-16.5964736,13.30427477],[-11.8318996,-16.59483797,13.30427477],[-11.8008003,-16.59320234,13.30427477],[-11.8872995,-16.59156672,13.30427477],[-11.8793001,-16.58993109,13.30427477],[-11.7805004,-16.58829546,13.30427477],[-11.5482998,-16.58665983,13.30427477],[-11.6634998,-16.5850242,13.30427477],[-11.8794003,-16.58338858,13.30427477],[-11.7337999,-16.58175295,13.30427477],[-11.8393002,-16.58011732,13.30427477],[-10.8900995,-16.60301611,13.30263914],[-11.1271,-16.60138048,13.30263914],[-11.1426001,-16.59974485,13.30263914],[-11.4448996,-16.59810923,13.30263914],[-11.7456999,-16.5964736,13.30263914],[-11.7139997,-16.59483797,13.30263914],[-11.5637999,-16.59320234,13.30263914],[-11.7255001,-16.59156672,13.30263914],[-11.6683998,-16.58993109,13.30263914],[-11.4171,-16.58829546,13.30263914],[-11.4931002,-16.58665983,13.30263914],[-11.5558004,-16.5850242,13.30263914],[-11.6552,-16.58338858,13.30263914],[-11.6798,-16.58175295,13.30263914],[-11.7145004,-16.58011732,13.30263914],[-10.5423002,-16.60301611,13.30100351],[-11.3520002,-16.60138048,13.30100351],[-11.7096996,-16.59974485,13.30100351],[-11.4876003,-16.59810923,13.30100351],[-11.2504997,-16.5964736,13.30100351],[-11.2406998,-16.59483797,13.30100351],[-11.0864,-16.59320234,13.30100351],[-10.8788004,-16.59156672,13.30100351],[-10.8566999,-16.58993109,13.30100351],[-11.1244001,-16.58829546,13.30100351],[-11.3346004,-16.58665983,13.30100351],[-11.4251003,-16.5850242,13.30100351],[-11.4467001,-16.58338858,13.30100351],[-11.4673996,-16.58175295,13.30100351],[-9.8193703,-16.60301611,13.29936788],[-11.8493004,-16.60138048,13.29936788],[-12.4554005,-16.59974485,13.29936788],[-11.6506996,-16.59810923,13.29936788],[-10.7944002,-16.5964736,13.29936788],[-10.6223001,-16.59483797,13.29936788],[-10.6756001,-16.59320234,13.29936788],[-9.8957701,-16.59156672,13.29936788],[-10.0337,-16.58993109,13.29936788],[-10.8726997,-16.58829546,13.29936788],[-11.3185997,-16.58665983,13.29936788],[-11.3041,-16.5850242,13.29936788],[-11.3254995,-16.58338858,13.29936788],[-10.8761997,-16.60301611,13.29773226],[-12.1943998,-16.60138048,13.29773226],[-12.3302002,-16.59974485,13.29773226],[-11.8514996,-16.59810923,13.29773226],[-11.0447998,-16.5964736,13.29773226],[-10.7623997,-16.59483797,13.29773226],[-10.5822001,-16.59320234,13.29773226],[-10.0951996,-16.59156672,13.29773226],[-10.1524,-16.58993109,13.29773226],[-10.6567001,-16.58829546,13.29773226],[-11.0704002,-16.58665983,13.29773226],[-11.1153002,-16.5850242,13.29773226],[-12.8500004,-16.60301611,13.29609663],[-13.2410002,-16.60138048,13.29609663],[-13.3994999,-16.59974485,13.29609663],[-12.3261003,-16.59810923,13.29609663],[-11.5240002,-16.5964736,13.29609663],[-11.1120996,-16.59483797,13.29609663],[-10.6033001,-16.59320234,13.29609663],[-10.0720997,-16.59156672,13.29609663],[-10.0365,-16.58993109,13.29609663],[-10.4563999,-16.58829546,13.29609663],[-10.7856998,-16.58665983,13.29609663],[-14.0578003,-16.60301611,13.294461],[-14.1933002,-16.60138048,13.294461],[-14.7349997,-16.59974485,13.294461],[-12.9083996,-16.59810923,13.294461],[-11.4136,-16.5964736,13.294461],[-11.1983004,-16.59483797,13.294461],[-10.5971003,-16.59320234,13.294461],[-9.6490602,-16.59156672,13.294461],[-9.6858101,-16.58993109,13.294461],[-10.3471003,-16.58829546,13.294461],[-10.8332005,-16.58665983,13.294461],[-14.6278,-16.60301611,13.29282537],[-14.3788996,-16.60138048,13.29282537],[-13.9868002,-16.59974485,13.29282537],[-12.8093004,-16.59810923,13.29282537],[-11.4431,-16.5964736,13.29282537],[-10.9294996,-16.59483797,13.29282537],[-10.4221001,-16.59320234,13.29282537],[-9.9236202,-16.59156672,13.29282537],[-9.9245901,-16.58993109,13.29282537],[-10.1925001,-16.58829546,13.29282537],[-15.5004997,-16.60301611,13.29118975],[-14.5836,-16.60138048,13.29118975],[-14.3386002,-16.59974485,13.29118975],[-12.7391996,-16.59810923,13.29118975],[-10.8831997,-16.5964736,13.29118975],[-10.1993999,-16.59483797,13.29118975],[-10.1897001,-16.59320234,13.29118975],[-9.8352699,-16.59156672,13.29118975],[-9.7996101,-16.58993109,13.29118975],[-16.1530991,-16.60301611,13.28955412],[-14.8428001,-16.60138048,13.28955412],[-14.8632002,-16.59974485,13.28955412],[-12.8663998,-16.59810923,13.28955412],[-10.4659996,-16.5964736,13.28955412],[-9.8408899,-16.59483797,13.28955412],[-10.1267996,-16.59320234,13.28955412],[-9.6406498,-16.59156672,13.28955412],[-15.7887001,-16.60301611,13.28791849],[-14.4525995,-16.60138048,13.28791849],[-13.5268002,-16.59974485,13.28791849],[-12.2819996,-16.59810923,13.28791849],[-10.9699001,-16.5964736,13.28791849],[-10.1709995,-16.59483797,13.28791849],[-10.1843004,-16.59320234,13.28791849],[-16.3241997,-16.60301611,13.28628286],[-13.3115997,-16.60138048,13.28628286],[-11.8308001,-16.59974485,13.28628286],[-11.7601995,-16.59810923,13.28628286],[-10.0092001,-16.5964736,13.28628286],[-9.2189503,-16.59483797,13.28628286],[-16.5041008,-16.60301611,13.28464723],[-13.3088999,-16.60138048,13.28464723],[-11.7929001,-16.59974485,13.28464723],[-11.8606005,-16.59810923,13.28464723],[-10.1583004,-16.5964736,13.28464723],[-9.3490295,-16.59483797,13.28464723],[-15.7917995,-16.60301611,13.28301161],[-14.5669003,-16.60138048,13.28301161],[-13.5240002,-16.59974485,13.28301161],[-12.9240999,-16.59810923,13.28301161],[-11.9118996,-16.5964736,13.28301161],[-15.7476997,-16.60301611,13.28137598],[-14.7894001,-16.60138048,13.28137598],[-14.2369003,-16.59974485,13.28137598],[-13.6777,-16.59810923,13.28137598],[-4.0834899,-16.80583395,13.27974035],[-6.6185002,-16.80419832,13.27974035],[-7.0861902,-16.80256269,13.27974035],[-9.5412903,-16.80092707,13.27974035],[-13.0935001,-16.79929144,13.27974035],[-13.6020002,-16.79765581,13.27974035],[-13.4582996,-16.79602018,13.27974035],[-14.0513,-16.79438456,13.27974035],[-13.9736004,-16.79274893,13.27974035],[-13.5016003,-16.7911133,13.27974035],[-12.9551001,-16.78947767,13.27974035],[-12.9977999,-16.78784204,13.27974035],[-13.1507998,-16.78620642,13.27974035],[-13.3170004,-16.78457079,13.27974035],[-12.8806,-16.78293516,13.27974035],[-11.7475004,-16.78129953,13.27974035],[-10.8144999,-16.77966391,13.27974035],[-12.2469997,-16.77802828,13.27974035],[-13.4071999,-16.77639265,13.27974035],[-13.6894999,-16.77475702,13.27974035],[-12.9678001,-16.77312139,13.27974035],[-12.8034,-16.77148577,13.27974035],[-12.7631998,-16.76985014,13.27974035],[-12.0254002,-16.76821451,13.27974035],[-10.9798002,-16.76657888,13.27974035],[-11.4681997,-16.76494326,13.27974035],[-13.3045998,-16.76330763,13.27974035],[-15.4429998,-16.761672,13.27974035],[-14.2424002,-16.76003637,13.27974035],[-13.2397003,-16.75840074,13.27974035],[-12.9681997,-16.75676512,13.27974035],[-13.4447002,-16.75512949,13.27974035],[-14.0088997,-16.75349386,13.27974035],[-14.1527004,-16.75185823,13.27974035],[-14.4294996,-16.75022261,13.27974035],[-15.4301996,-16.74858698,13.27974035],[-15.6409998,-16.74695135,13.27974035],[-14.7735004,-16.74531572,13.27974035],[-14.4475002,-16.7436801,13.27974035],[-14.5009003,-16.74204447,13.27974035],[-14.7638998,-16.74040884,13.27974035],[-14.5995998,-16.73877321,13.27974035],[-14.9772997,-16.73713758,13.27974035],[-15.8968,-16.73550196,13.27974035],[-16.4944992,-16.73386633,13.27974035],[-16.4144993,-16.7322307,13.27974035],[-16.9183998,-16.73059507,13.27974035],[-17.3831005,-16.72895945,13.27974035],[-17.1343994,-16.72732382,13.27974035],[-17.2656994,-16.72568819,13.27974035],[-17.3799,-16.72405256,13.27974035],[-17.0093002,-16.72241693,13.27974035],[-17.0125008,-16.72078131,13.27974035],[-16.9242992,-16.71914568,13.27974035],[-15.3256998,-16.71751005,13.27974035],[-11.9786997,-16.71587442,13.27974035],[-13.2770996,-16.7142388,13.27974035],[-16.9568005,-16.71260317,13.27974035],[-18.6557999,-16.71096754,13.27974035],[-18.4274998,-16.70933191,13.27974035],[-18.5911007,-16.70769628,13.27974035],[-18.8974991,-16.70606066,13.27974035],[-18.2994003,-16.70442503,13.27974035],[-16.5533009,-16.7027894,13.27974035],[-15.2985001,-16.70115377,13.27974035],[-17.4377995,-16.69951815,13.27974035],[-19.2115002,-16.69788252,13.27974035],[-19.5536995,-16.69624689,13.27974035],[-18.1212997,-16.69461126,13.27974035],[-16.6746006,-16.69297564,13.27974035],[-16.7735004,-16.69134001,13.27974035],[-17.4496994,-16.68970438,13.27974035],[-17.7245007,-16.68806875,13.27974035],[-17.7294998,-16.68643312,13.27974035],[-17.7255993,-16.6847975,13.27974035],[-17.9799004,-16.68316187,13.27974035],[-18.0660992,-16.68152624,13.27974035],[-19.2775002,-16.67989061,13.27974035],[-20.3110008,-16.67825499,13.27974035],[-19.3258991,-16.67661936,13.27974035],[-18.8754997,-16.67498373,13.27974035],[-18.8661995,-16.6733481,13.27974035],[-18.8819008,-16.67171247,13.27974035],[-19.3188992,-16.67007685,13.27974035],[-19.2336998,-16.66844122,13.27974035],[-17.8292007,-16.66680559,13.27974035],[-18.1068001,-16.66516996,13.27974035],[-17.6009998,-16.66353434,13.27974035],[-16.4706001,-16.66189871,13.27974035],[-16.3388996,-16.66026308,13.27974035],[-16.2245007,-16.65862745,13.27974035],[-16.4832001,-16.65699182,13.27974035],[-16.7388992,-16.6553562,13.27974035],[-16.7112007,-16.65372057,13.27974035],[-16.8398991,-16.65208494,13.27974035],[-16.9627991,-16.65044931,13.27974035],[-17.1035004,-16.64881369,13.27974035],[-17.5489998,-16.64717806,13.27974035],[-17.7908993,-16.64554243,13.27974035],[-16.9188004,-16.6439068,13.27974035],[-16.6797009,-16.64227118,13.27974035],[-16.6201992,-16.64063555,13.27974035],[-16.4512005,-16.63899992,13.27974035],[-16.5872993,-16.63736429,13.27974035],[-16.5398998,-16.63572866,13.27974035],[-16.4818001,-16.63409304,13.27974035],[-16.1219997,-16.63245741,13.27974035],[-17.0494995,-16.63082178,13.27974035],[-19.4988003,-16.62918615,13.27974035],[-21.5956993,-16.62755053,13.27974035],[-18.6424007,-16.6259149,13.27974035],[-14.4321003,-16.62427927,13.27974035],[-12.6575003,-16.62264364,13.27974035],[-15.5298004,-16.62100801,13.27974035],[-16.9340992,-16.61937239,13.27974035],[-17.3017998,-16.61773676,13.27974035],[-18.1326008,-16.61610113,13.27974035],[-17.9570007,-16.6144655,13.27974035],[-18.3428993,-16.61282988,13.27974035],[-19.1798992,-16.61119425,13.27974035],[-19.1818008,-16.60955862,13.27974035],[-19.0167999,-16.60792299,13.27974035],[-17.9801006,-16.60628736,13.27974035],[-16.4025993,-16.60465174,13.27974035],[-4.4467001,-16.80583395,13.27810472],[-6.2737498,-16.80419832,13.27810472],[-7.3098502,-16.80256269,13.27810472],[-9.4026098,-16.80092707,13.27810472],[-12.1433001,-16.79929144,13.27810472],[-13.1436005,-16.79765581,13.27810472],[-13.3281002,-16.79602018,13.27810472],[-13.7389002,-16.79438456,13.27810472],[-13.7433996,-16.79274893,13.27810472],[-13.2883997,-16.7911133,13.27810472],[-12.8948002,-16.78947767,13.27810472],[-12.8849001,-16.78784204,13.27810472],[-12.9118996,-16.78620642,13.27810472],[-12.9303999,-16.78457079,13.27810472],[-12.8860998,-16.78293516,13.27810472],[-12.4454002,-16.78129953,13.27810472],[-12.1732998,-16.77966391,13.27810472],[-12.7615004,-16.77802828,13.27810472],[-13.2921,-16.77639265,13.27810472],[-13.2860003,-16.77475702,13.27810472],[-12.7657003,-16.77312139,13.27810472],[-12.2959995,-16.77148577,13.27810472],[-12.1918001,-16.76985014,13.27810472],[-11.9102001,-16.76821451,13.27810472],[-11.6422997,-16.76657888,13.27810472],[-11.8982,-16.76494326,13.27810472],[-12.6237001,-16.76330763,13.27810472],[-13.4362001,-16.761672,13.27810472],[-13.3202,-16.76003637,13.27810472],[-13.1998997,-16.75840074,13.27810472],[-13.2943001,-16.75676512,13.27810472],[-13.5854998,-16.75512949,13.27810472],[-13.8799,-16.75349386,13.27810472],[-14.1145,-16.75185823,13.27810472],[-14.2074003,-16.75022261,13.27810472],[-14.4821997,-16.74858698,13.27810472],[-14.5690002,-16.74695135,13.27810472],[-14.3929996,-16.74531572,13.27810472],[-14.3261003,-16.7436801,13.27810472],[-14.4434004,-16.74204447,13.27810472],[-14.7187996,-16.74040884,13.27810472],[-14.9575005,-16.73877321,13.27810472],[-15.2382002,-16.73713758,13.27810472],[-15.5854998,-16.73550196,13.27810472],[-15.9161997,-16.73386633,13.27810472],[-16.1130009,-16.7322307,13.27810472],[-16.4594002,-16.73059507,13.27810472],[-16.7250996,-16.72895945,13.27810472],[-16.7171993,-16.72732382,13.27810472],[-16.7285004,-16.72568819,13.27810472],[-16.8218994,-16.72405256,13.27810472],[-16.5923996,-16.72241693,13.27810472],[-16.4610996,-16.72078131,13.27810472],[-16.3127995,-16.71914568,13.27810472],[-15.7521,-16.71751005,13.27810472],[-15.1007004,-16.71587442,13.27810472],[-15.6485996,-16.7142388,13.27810472],[-17.2520008,-16.71260317,13.27810472],[-18.4172993,-16.71096754,13.27810472],[-18.6103992,-16.70933191,13.27810472],[-18.5569,-16.70769628,13.27810472],[-18.7038994,-16.70606066,13.27810472],[-18.3934002,-16.70442503,13.27810472],[-17.8504009,-16.7027894,13.27810472],[-17.5827007,-16.70115377,13.27810472],[-17.8400993,-16.69951815,13.27810472],[-18.2066994,-16.69788252,13.27810472],[-18.3066998,-16.69624689,13.27810472],[-17.9377003,-16.69461126,13.27810472],[-17.5729008,-16.69297564,13.27810472],[-17.4675007,-16.69134001,13.27810472],[-17.6429996,-16.68970438,13.27810472],[-17.6620998,-16.68806875,13.27810472],[-17.6340008,-16.68643312,13.27810472],[-17.552,-16.6847975,13.27810472],[-17.5251999,-16.68316187,13.27810472],[-17.8721008,-16.68152624,13.27810472],[-18.5984001,-16.67989061,13.27810472],[-19.1431007,-16.67825499,13.27810472],[-18.8929996,-16.67661936,13.27810472],[-18.2637005,-16.67498373,13.27810472],[-18.1282005,-16.6733481,13.27810472],[-18.4680996,-16.67171247,13.27810472],[-18.8052998,-16.67007685,13.27810472],[-18.4358006,-16.66844122,13.27810472],[-17.2577,-16.66680559,13.27810472],[-16.2497997,-16.66516996,13.27810472],[-15.8951998,-16.66353434,13.27810472],[-15.8626003,-16.66189871,13.27810472],[-15.6348,-16.66026308,13.27810472],[-15.7874002,-16.65862745,13.27810472],[-16.0361004,-16.65699182,13.27810472],[-16.2793007,-16.6553562,13.27810472],[-16.3430996,-16.65372057,13.27810472],[-16.1427994,-16.65208494,13.27810472],[-15.9737997,-16.65044931,13.27810472],[-16.5527,-16.64881369,13.27810472],[-17.2145996,-16.64717806,13.27810472],[-17.2791996,-16.64554243,13.27810472],[-17.0827999,-16.6439068,13.27810472],[-17.1497002,-16.64227118,13.27810472],[-17.0846996,-16.64063555,13.27810472],[-16.9134007,-16.63899992,13.27810472],[-16.9099998,-16.63736429,13.27810472],[-17.0522003,-16.63572866,13.27810472],[-16.7182999,-16.63409304,13.27810472],[-16.5025005,-16.63245741,13.27810472],[-17.1082001,-16.63082178,13.27810472],[-18.1019993,-16.62918615,13.27810472],[-18.3103008,-16.62755053,13.27810472],[-18.0307007,-16.6259149,13.27810472],[-17.8159008,-16.62427927,13.27810472],[-17.9036999,-16.62264364,13.27810472],[-17.6735992,-16.62100801,13.27810472],[-17.9876995,-16.61937239,13.27810472],[-18.5699005,-16.61773676,13.27810472],[-19.2665005,-16.61610113,13.27810472],[-20.5130005,-16.6144655,13.27810472],[-20.6212006,-16.61282988,13.27810472],[-20.2856007,-16.61119425,13.27810472],[-20.5641003,-16.60955862,13.27810472],[-20.1107998,-16.60792299,13.27810472],[-19.6961002,-16.60628736,13.27810472],[-19.6224003,-16.60465174,13.27810472],[-4.9703598,-16.80583395,13.2764691],[-6.1694999,-16.80419832,13.2764691],[-6.8629599,-16.80256269,13.2764691],[-9.2625904,-16.80092707,13.2764691],[-12.6657,-16.79929144,13.2764691],[-13.8122997,-16.79765581,13.2764691],[-13.5036001,-16.79602018,13.2764691],[-13.9706001,-16.79438456,13.2764691],[-13.8380003,-16.79274893,13.2764691],[-13.1647997,-16.7911133,13.2764691],[-12.7309999,-16.78947767,13.2764691],[-12.6209002,-16.78784204,13.2764691],[-12.7845001,-16.78620642,13.2764691],[-12.9073,-16.78457079,13.2764691],[-13.0658998,-16.78293516,13.2764691],[-13.3929996,-16.78129953,13.2764691],[-13.7789001,-16.77966391,13.2764691],[-13.5215998,-16.77802828,13.2764691],[-13.8203001,-16.77639265,13.2764691],[-13.9314003,-16.77475702,13.2764691],[-12.5342999,-16.77312139,13.2764691],[-10.7914,-16.77148577,13.2764691],[-10.5593996,-16.76985014,13.2764691],[-11.7016001,-16.76821451,13.2764691],[-12.3690996,-16.76657888,13.2764691],[-12.2753,-16.76494326,13.2764691],[-11.7869997,-16.76330763,13.2764691],[-10.9188004,-16.761672,13.2764691],[-11.8577003,-16.76003637,13.2764691],[-13.1660995,-16.75840074,13.2764691],[-13.5618,-16.75676512,13.2764691],[-13.6719999,-16.75512949,13.2764691],[-13.9464998,-16.75349386,13.2764691],[-14.1603003,-16.75185823,13.2764691],[-13.9453001,-16.75022261,13.2764691],[-13.368,-16.74858698,13.2764691],[-13.2360001,-16.74695135,13.2764691],[-13.8368998,-16.74531572,13.2764691],[-13.6782999,-16.7436801,13.2764691],[-13.8640003,-16.74204447,13.2764691],[-14.7736998,-16.74040884,13.2764691],[-15.4705,-16.73877321,13.2764691],[-15.4343004,-16.73713758,13.2764691],[-15.3116999,-16.73550196,13.2764691],[-15.2129002,-16.73386633,13.2764691],[-15.6112003,-16.7322307,13.2764691],[-16.2091999,-16.73059507,13.2764691],[-16.5249996,-16.72895945,13.2764691],[-16.3614006,-16.72732382,13.2764691],[-16.2479992,-16.72568819,13.2764691],[-16.2196007,-16.72405256,13.2764691],[-16.2231998,-16.72241693,13.2764691],[-16.0172005,-16.72078131,13.2764691],[-15.9886999,-16.71914568,13.2764691],[-16.1763,-16.71751005,13.2764691],[-16.4386005,-16.71587442,13.2764691],[-16.6644001,-16.7142388,13.2764691],[-18.1173992,-16.71260317,13.2764691],[-19.6886005,-16.71096754,13.2764691],[-19.2185001,-16.70933191,13.2764691],[-18.6816998,-16.70769628,13.2764691],[-18.6028996,-16.70606066,13.2764691],[-18.6135006,-16.70442503,13.2764691],[-18.6786995,-16.7027894,13.2764691],[-18.8694,-16.70115377,13.2764691],[-18.1987991,-16.69951815,13.2764691],[-17.5592995,-16.69788252,13.2764691],[-17.3778,-16.69624689,13.2764691],[-17.7588997,-16.69461126,13.2764691],[-17.7810001,-16.69297564,13.2764691],[-17.7311993,-16.69134001,13.2764691],[-17.7318001,-16.68970438,13.2764691],[-17.8843002,-16.68806875,13.2764691],[-17.7775993,-16.68643312,13.2764691],[-17.2220993,-16.6847975,13.2764691],[-16.4832001,-16.68316187,13.2764691],[-17.3465996,-16.68152624,13.2764691],[-18.7490997,-16.67989061,13.2764691],[-19.5440998,-16.67825499,13.2764691],[-18.5984001,-16.67661936,13.2764691],[-17.0790997,-16.67498373,13.2764691],[-16.0953999,-16.6733481,13.2764691],[-17.8829002,-16.67171247,13.2764691],[-18.7556992,-16.67007685,13.2764691],[-18.6905994,-16.66844122,13.2764691],[-16.7563992,-16.66680559,13.2764691],[-13.7608004,-16.66516996,13.2764691],[-14.1300001,-16.66353434,13.2764691],[-15.2538996,-16.66189871,13.2764691],[-14.9329004,-16.66026308,13.2764691],[-15.2346001,-16.65862745,13.2764691],[-15.8804998,-16.65699182,13.2764691],[-16.2800007,-16.6553562,13.2764691],[-15.9892998,-16.65372057,13.2764691],[-15.1726999,-16.65208494,13.2764691],[-14.3842001,-16.65044931,13.2764691],[-15.8924999,-16.64881369,13.2764691],[-17.4104004,-16.64717806,13.2764691],[-17.8334999,-16.64554243,13.2764691],[-17.4699001,-16.6439068,13.2764691],[-17.9151993,-16.64227118,13.2764691],[-17.9076996,-16.64063555,13.2764691],[-17.5146999,-16.63899992,13.2764691],[-17.8411007,-16.63736429,13.2764691],[-17.5648994,-16.63572866,13.2764691],[-16.7528,-16.63409304,13.2764691],[-15.9358997,-16.63245741,13.2764691],[-16.5748997,-16.63082178,13.2764691],[-17.5072994,-16.62918615,13.2764691],[-17.9396,-16.62755053,13.2764691],[-18.0265999,-16.6259149,13.2764691],[-20.0492001,-16.62427927,13.2764691],[-22.0352993,-16.62264364,13.2764691],[-19.2700005,-16.62100801,13.2764691],[-19.1229,-16.61937239,13.2764691],[-19.3792,-16.61773676,13.2764691],[-20.0970001,-16.61610113,13.2764691],[-22.8546009,-16.6144655,13.2764691],[-22.5606995,-16.61282988,13.2764691],[-21.2563992,-16.61119425,13.2764691],[-21.7448006,-16.60955862,13.2764691],[-21.2063999,-16.60792299,13.2764691],[-20.9729996,-16.60628736,13.2764691],[-21.9323997,-16.60465174,13.2764691],[-5.9769301,-16.80419832,13.27483347],[-6.1498799,-16.80256269,13.27483347],[-8.7107897,-16.80092707,13.27483347],[-14.1331997,-16.79929144,13.27483347],[-15.2379999,-16.79765581,13.27483347],[-12.9448004,-16.79602018,13.27483347],[-14.6052999,-16.79438456,13.27483347],[-14.1007996,-16.79274893,13.27483347],[-12.5710001,-16.7911133,13.27483347],[-12.6690998,-16.78947767,13.27483347],[-12.3511,-16.78784204,13.27483347],[-12.3874998,-16.78620642,13.27483347],[-13.1297998,-16.78457079,13.27483347],[-12.8343,-16.78293516,13.27483347],[-13.6501999,-16.78129953,13.27483347],[-14.4857998,-16.77966391,13.27483347],[-13.7488003,-16.77802828,13.27483347],[-14.1355,-16.77639265,13.27483347],[-14.5423002,-16.77475702,13.27483347],[-12.4511995,-16.77312139,13.27483347],[-9.9155798,-16.77148577,13.27483347],[-9.7787399,-16.76985014,13.27483347],[-11.6190996,-16.76821451,13.27483347],[-12.6272001,-16.76657888,13.27483347],[-12.4146004,-16.76494326,13.27483347],[-11.6108999,-16.76330763,13.27483347],[-10.0825996,-16.761672,13.27483347],[-11.4647999,-16.76003637,13.27483347],[-13.1604996,-16.75840074,13.27483347],[-13.6664,-16.75676512,13.27483347],[-13.6857996,-16.75512949,13.27483347],[-14.0065002,-16.75349386,13.27483347],[-14.2199001,-16.75185823,13.27483347],[-13.8466997,-16.75022261,13.27483347],[-13.0355997,-16.74858698,13.27483347],[-12.8163996,-16.74695135,13.27483347],[-13.6674004,-16.74531572,13.27483347],[-13.4417,-16.7436801,13.27483347],[-13.6317997,-16.74204447,13.27483347],[-14.7074003,-16.74040884,13.27483347],[-15.5839005,-16.73877321,13.27483347],[-15.4110003,-16.73713758,13.27483347],[-15.1935997,-16.73550196,13.27483347],[-15.0942001,-16.73386633,13.27483347],[-15.3519001,-16.7322307,13.27483347],[-16.0083008,-16.73059507,13.27483347],[-16.4775009,-16.72895945,13.27483347],[-16.0725002,-16.72732382,13.27483347],[-16.0037003,-16.72568819,13.27483347],[-16.0636005,-16.72405256,13.27483347],[-16.0128994,-16.72241693,13.27483347],[-15.8718004,-16.72078131,13.27483347],[-15.9487,-16.71914568,13.27483347],[-16.2397003,-16.71751005,13.27483347],[-16.5846996,-16.71587442,13.27483347],[-16.8852997,-16.7142388,13.27483347],[-18.2217007,-16.71260317,13.27483347],[-19.7063007,-16.71096754,13.27483347],[-19.3187008,-16.70933191,13.27483347],[-18.9575005,-16.70769628,13.27483347],[-18.6910992,-16.70606066,13.27483347],[-18.7926998,-16.70442503,13.27483347],[-18.8661003,-16.7027894,13.27483347],[-18.9071007,-16.70115377,13.27483347],[-18.4090996,-16.69951815,13.27483347],[-17.6126995,-16.69788252,13.27483347],[-17.4305,-16.69624689,13.27483347],[-17.9071007,-16.69461126,13.27483347],[-17.9027996,-16.69297564,13.27483347],[-17.8780003,-16.69134001,13.27483347],[-17.8148003,-16.68970438,13.27483347],[-17.8430004,-16.68806875,13.27483347],[-17.7147999,-16.68643312,13.27483347],[-17.3537006,-16.6847975,13.27483347],[-16.7623997,-16.68316187,13.27483347],[-17.4410992,-16.68152624,13.27483347],[-18.618,-16.67989061,13.27483347],[-19.2924004,-16.67825499,13.27483347],[-18.5900993,-16.67661936,13.27483347],[-17.3934994,-16.67498373,13.27483347],[-16.6075001,-16.6733481,13.27483347],[-17.6352005,-16.67171247,13.27483347],[-18.4431992,-16.67007685,13.27483347],[-18.2731991,-16.66844122,13.27483347],[-16.5774994,-16.66680559,13.27483347],[-14.5050001,-16.66516996,13.27483347],[-14.698,-16.66353434,13.27483347],[-15.2856998,-16.66189871,13.27483347],[-15.1241999,-16.66026308,13.27483347],[-15.2442999,-16.65862745,13.27483347],[-15.5447998,-16.65699182,13.27483347],[-15.9223003,-16.6553562,13.27483347],[-15.6122999,-16.65372057,13.27483347],[-15.2379999,-16.65208494,13.27483347],[-14.9784002,-16.65044931,13.27483347],[-15.8206997,-16.64881369,13.27483347],[-16.9006996,-16.64717806,13.27483347],[-17.2784996,-16.64554243,13.27483347],[-17.1044998,-16.6439068,13.27483347],[-17.5233994,-16.64227118,13.27483347],[-17.5795994,-16.64063555,13.27483347],[-17.3204002,-16.63899992,13.27483347],[-17.5198002,-16.63736429,13.27483347],[-17.25,-16.63572866,13.27483347],[-16.5702,-16.63409304,13.27483347],[-16.2744007,-16.63245741,13.27483347],[-16.5986996,-16.63082178,13.27483347],[-16.9500999,-16.62918615,13.27483347],[-17.2112999,-16.62755053,13.27483347],[-17.3610001,-16.6259149,13.27483347],[-18.5664005,-16.62427927,13.27483347],[-19.6233006,-16.62264364,13.27483347],[-18.4438,-16.62100801,13.27483347],[-18.5849991,-16.61937239,13.27483347],[-19.0552998,-16.61773676,13.27483347],[-20.1550007,-16.61610113,13.27483347],[-21.7574005,-16.6144655,13.27483347],[-21.9790993,-16.61282988,13.27483347],[-21.6553001,-16.61119425,13.27483347],[-21.5541992,-16.60955862,13.27483347],[-21.4713001,-16.60792299,13.27483347],[-21.4990997,-16.60628736,13.27483347],[-21.6012001,-16.60465174,13.27483347],[-5.2030401,-16.80419832,13.27319784],[-5.8709798,-16.80256269,13.27319784],[-7.4227099,-16.80092707,13.27319784],[-10.1229,-16.79929144,13.27319784],[-10.9804001,-16.79765581,13.27319784],[-10.6639996,-16.79602018,13.27319784],[-11.3855,-16.79438456,13.27319784],[-11.3288002,-16.79274893,13.27319784],[-10.7385998,-16.7911133,13.27319784],[-10.7755003,-16.78947767,13.27319784],[-11.0152998,-16.78784204,13.27319784],[-11.2818003,-16.78620642,13.27319784],[-11.6433001,-16.78457079,13.27319784],[-12.0881004,-16.78293516,13.27319784],[-12.8017998,-16.78129953,13.27319784],[-13.3563995,-16.77966391,13.27319784],[-13.1917,-16.77802828,13.27319784],[-13.0670004,-16.77639265,13.27319784],[-12.9167995,-16.77475702,13.27319784],[-12.2911997,-16.77312139,13.27319784],[-11.4330997,-16.77148577,13.27319784],[-11.1907997,-16.76985014,13.27319784],[-11.5106001,-16.76821451,13.27319784],[-11.8317003,-16.76657888,13.27319784],[-12.0341997,-16.76494326,13.27319784],[-12.1595001,-16.76330763,13.27319784],[-12.3104,-16.761672,13.27319784],[-12.7596998,-16.76003637,13.27319784],[-13.2341003,-16.75840074,13.27319784],[-13.5465002,-16.75676512,13.27319784],[-13.6068001,-16.75512949,13.27319784],[-13.7807999,-16.75349386,13.27319784],[-13.9092999,-16.75185823,13.27319784],[-13.8323002,-16.75022261,13.27319784],[-13.7019997,-16.74858698,13.27319784],[-13.6150999,-16.74695135,13.27319784],[-13.7917995,-16.74531572,13.27319784],[-13.9554996,-16.7436801,13.27319784],[-14.1311998,-16.74204447,13.27319784],[-14.4417,-16.74040884,13.27319784],[-14.8607998,-16.73877321,13.27319784],[-15.0236998,-16.73713758,13.27319784],[-14.9188995,-16.73550196,13.27319784],[-14.9265003,-16.73386633,13.27319784],[-15.1057997,-16.7322307,13.27319784],[-15.3263998,-16.73059507,13.27319784],[-15.4507999,-16.72895945,13.27319784],[-15.4849005,-16.72732382,13.27319784],[-15.4933996,-16.72568819,13.27319784],[-15.5717001,-16.72405256,13.27319784],[-15.7157001,-16.72241693,13.27319784],[-15.8192997,-16.72078131,13.27319784],[-15.8593998,-16.71914568,13.27319784],[-16.3481007,-16.71751005,13.27319784],[-16.8565998,-16.71587442,13.27319784],[-17.3064003,-16.7142388,13.27319784],[-17.9869003,-16.71260317,13.27319784],[-18.7073994,-16.71096754,13.27319784],[-19.0865993,-16.70933191,13.27319784],[-19.3323002,-16.70769628,13.27319784],[-19.5526009,-16.70606066,13.27319784],[-19.2952995,-16.70442503,13.27319784],[-19.0147991,-16.7027894,13.27319784],[-18.8624001,-16.70115377,13.27319784],[-18.4965,-16.69951815,13.27319784],[-18.0048008,-16.69788252,13.27319784],[-17.8479004,-16.69624689,13.27319784],[-18.2245007,-16.69461126,13.27319784],[-18.6991997,-16.69297564,13.27319784],[-18.5902996,-16.69134001,13.27319784],[-17.9407997,-16.68970438,13.27319784],[-17.5170994,-16.68806875,13.27319784],[-17.4860001,-16.68643312,13.27319784],[-17.4759007,-16.6847975,13.27319784],[-17.4424,-16.68316187,13.27319784],[-17.7439995,-16.68152624,13.27319784],[-18.3539009,-16.67989061,13.27319784],[-18.7234993,-16.67825499,13.27319784],[-18.6560001,-16.67661936,13.27319784],[-18.5135002,-16.67498373,13.27319784],[-18.3995991,-16.6733481,13.27319784],[-18.1292992,-16.67171247,13.27319784],[-18.2684002,-16.67007685,13.27319784],[-18.0676994,-16.66844122,13.27319784],[-16.9228001,-16.66680559,13.27319784],[-16.2534008,-16.66516996,13.27319784],[-15.8242998,-16.66353434,13.27319784],[-15.6985998,-16.66189871,13.27319784],[-15.4354,-16.66026308,13.27319784],[-15.2985001,-16.65862745,13.27319784],[-15.0223999,-16.65699182,13.27319784],[-14.7107,-16.6553562,13.27319784],[-15.0691996,-16.65372057,13.27319784],[-15.5837002,-16.65208494,13.27319784],[-15.9186001,-16.65044931,13.27319784],[-15.8766003,-16.64881369,13.27319784],[-15.6668997,-16.64717806,13.27319784],[-15.6710997,-16.64554243,13.27319784],[-16.3554001,-16.6439068,13.27319784],[-16.7082005,-16.64227118,13.27319784],[-16.7886009,-16.64063555,13.27319784],[-16.9421005,-16.63899992,13.27319784],[-16.8976002,-16.63736429,13.27319784],[-16.7770004,-16.63572866,13.27319784],[-16.6222,-16.63409304,13.27319784],[-16.6534996,-16.63245741,13.27319784],[-16.4391003,-16.63082178,13.27319784],[-15.8268003,-16.62918615,13.27319784],[-15.1382999,-16.62755053,13.27319784],[-15.8111,-16.6259149,13.27319784],[-15.7902002,-16.62427927,13.27319784],[-15.3751001,-16.62264364,13.27319784],[-16.6884995,-16.62100801,13.27319784],[-17.0893993,-16.61937239,13.27319784],[-17.5863991,-16.61773676,13.27319784],[-19.5841999,-16.61610113,13.27319784],[-21.3365993,-16.6144655,13.27319784],[-21.7798004,-16.61282988,13.27319784],[-21.5072994,-16.61119425,13.27319784],[-21.0930996,-16.60955862,13.27319784],[-21.3985996,-16.60792299,13.27319784],[-22.2591,-16.60628736,13.27319784],[-22.9001007,-16.60465174,13.27319784],[-2.29404,-16.80256269,13.27156221],[-5.1584501,-16.80092707,13.27156221],[-6.2818499,-16.79929144,13.27156221],[-6.4916501,-16.79765581,13.27156221],[-8.0165997,-16.79602018,13.27156221],[-7.6894302,-16.79438456,13.27156221],[-8.09062,-16.79274893,13.27156221],[-8.9000502,-16.7911133,13.27156221],[-8.3654604,-16.78947767,13.27156221],[-8.9715004,-16.78784204,13.27156221],[-9.99335,-16.78620642,13.27156221],[-10.0136995,-16.78457079,13.27156221],[-10.9026003,-16.78293516,13.27156221],[-12.5783997,-16.78129953,13.27156221],[-13.5509996,-16.77966391,13.27156221],[-12.7184,-16.77802828,13.27156221],[-12.1133003,-16.77639265,13.27156221],[-11.8295002,-16.77475702,13.27156221],[-12.1301003,-16.77312139,13.27156221],[-12.3219004,-16.77148577,13.27156221],[-12.2756996,-16.76985014,13.27156221],[-11.5732002,-16.76821451,13.27156221],[-11.0349998,-16.76657888,13.27156221],[-11.3781996,-16.76494326,13.27156221],[-12.8662004,-16.76330763,13.27156221],[-14.1913004,-16.761672,13.27156221],[-13.7665005,-16.76003637,13.27156221],[-13.4321003,-16.75840074,13.27156221],[-13.4306002,-16.75676512,13.27156221],[-13.5795002,-16.75512949,13.27156221],[-13.7365999,-16.75349386,13.27156221],[-13.8535995,-16.75185823,13.27156221],[-13.8446999,-16.75022261,13.27156221],[-14.1641998,-16.74858698,13.27156221],[-14.3339005,-16.74695135,13.27156221],[-14.0114002,-16.74531572,13.27156221],[-14.5181999,-16.7436801,13.27156221],[-14.5057001,-16.74204447,13.27156221],[-14.4368,-16.74040884,13.27156221],[-14.6555004,-16.73877321,13.27156221],[-14.6625004,-16.73713758,13.27156221],[-14.6483002,-16.73550196,13.27156221],[-14.2063999,-16.73386633,13.27156221],[-14.6120005,-16.7322307,13.27156221],[-14.7740002,-16.73059507,13.27156221],[-14.4647999,-16.72895945,13.27156221],[-14.9469995,-16.72732382,13.27156221],[-15.0066996,-16.72568819,13.27156221],[-14.9015999,-16.72405256,13.27156221],[-15.4057999,-16.72241693,13.27156221],[-15.5089998,-16.72078131,13.27156221],[-15.5368004,-16.71914568,13.27156221],[-16.5156994,-16.71751005,13.27156221],[-17.0771999,-16.71587442,13.27156221],[-17.2618008,-16.7142388,13.27156221],[-18.0986996,-16.71260317,13.27156221],[-18.5221004,-16.71096754,13.27156221],[-18.8076992,-16.70933191,13.27156221],[-19.7623997,-16.70769628,13.27156221],[-20.7140999,-16.70606066,13.27156221],[-19.8960991,-16.70442503,13.27156221],[-19.1772003,-16.7027894,13.27156221],[-19.0685005,-16.70115377,13.27156221],[-18.7388992,-16.69951815,13.27156221],[-17.7308006,-16.69788252,13.27156221],[-17.3703995,-16.69624689,13.27156221],[-18.5153008,-16.69461126,13.27156221],[-19.8349991,-16.69297564,13.27156221],[-19.7528,-16.69134001,13.27156221],[-18.1506996,-16.68970438,13.27156221],[-16.7416,-16.68806875,13.27156221],[-17.0951004,-16.68643312,13.27156221],[-17.5296001,-16.6847975,13.27156221],[-17.1345005,-16.68316187,13.27156221],[-17.6201,-16.68152624,13.27156221],[-18.4876995,-16.67989061,13.27156221],[-18.8216,-16.67825499,13.27156221],[-18.6124992,-16.67661936,13.27156221],[-18.8929996,-16.67498373,13.27156221],[-19.2758999,-16.6733481,13.27156221],[-18.3437996,-16.67171247,13.27156221],[-18.8465004,-16.67007685,13.27156221],[-19.0426006,-16.66844122,13.27156221],[-17.0785999,-16.66680559,13.27156221],[-16.7306004,-16.66516996,13.27156221],[-16.5093994,-16.66353434,13.27156221],[-15.7418003,-16.66189871,13.27156221],[-15.4996996,-16.66026308,13.27156221],[-15.3884001,-16.65862745,13.27156221],[-14.6000996,-16.65699182,13.27156221],[-13.3465004,-16.6553562,13.27156221],[-14.5788002,-16.65372057,13.27156221],[-15.8987999,-16.65208494,13.27156221],[-16.5356007,-16.65044931,13.27156221],[-15.8529997,-16.64881369,13.27156221],[-14.8659,-16.64717806,13.27156221],[-14.4046001,-16.64554243,13.27156221],[-15.8073997,-16.6439068,13.27156221],[-16.3693008,-16.64227118,13.27156221],[-16.4221992,-16.64063555,13.27156221],[-16.6277008,-16.63899992,13.27156221],[-16.8801003,-16.63736429,13.27156221],[-16.7441006,-16.63572866,13.27156221],[-16.5333996,-16.63409304,13.27156221],[-17.0382004,-16.63245741,13.27156221],[-16.2287006,-16.63082178,13.27156221],[-14.9509001,-16.62918615,13.27156221],[-13.6815996,-16.62755053,13.27156221],[-14.8225002,-16.6259149,13.27156221],[-14.3460999,-16.62427927,13.27156221],[-13.1701002,-16.62264364,13.27156221],[-15.9294004,-16.62100801,13.27156221],[-16.2537003,-16.61937239,13.27156221],[-16.0809002,-16.61773676,13.27156221],[-19.4972,-16.61610113,13.27156221],[-22.0174999,-16.6144655,13.27156221],[-22.1184006,-16.61282988,13.27156221],[-21.6023998,-16.61119425,13.27156221],[-20.4179001,-16.60955862,13.27156221],[-21.2119007,-16.60792299,13.27156221],[-22.7591991,-16.60628736,13.27156221],[-4.08255,-16.80092707,13.26992658],[-5.3284898,-16.79929144,13.26992658],[-6.8064799,-16.79602018,13.26992658],[-6.8450098,-16.79438456,13.26992658],[-6.9896302,-16.79274893,13.26992658],[-7.52527,-16.7911133,13.26992658],[-7.86097,-16.78947767,13.26992658],[-8.0729103,-16.78784204,13.26992658],[-8.8575802,-16.78620642,13.26992658],[-9.6720505,-16.78457079,13.26992658],[-10.0838003,-16.78293516,13.26992658],[-12.0077,-16.78129953,13.26992658],[-13.4756002,-16.77966391,13.26992658],[-12.3203001,-16.77802828,13.26992658],[-11.7160997,-16.77639265,13.26992658],[-11.6576004,-16.77475702,13.26992658],[-11.7930002,-16.77312139,13.26992658],[-12.2491999,-16.77148577,13.26992658],[-12.2446003,-16.76985014,13.26992658],[-11.5299997,-16.76821451,13.26992658],[-11.0134001,-16.76657888,13.26992658],[-11.3385,-16.76494326,13.26992658],[-12.8827,-16.76330763,13.26992658],[-14.1399002,-16.761672,13.26992658],[-13.8004999,-16.76003637,13.26992658],[-13.5172005,-16.75840074,13.26992658],[-13.4658003,-16.75676512,13.26992658],[-13.5789003,-16.75512949,13.26992658],[-13.6862001,-16.75349386,13.26992658],[-13.7339001,-16.75185823,13.26992658],[-13.5248003,-16.75022261,13.26992658],[-13.8586998,-16.74858698,13.26992658],[-14.1058998,-16.74695135,13.26992658],[-13.7048998,-16.74531572,13.26992658],[-14.2070999,-16.7436801,13.26992658],[-14.2861996,-16.74204447,13.26992658],[-14.2962999,-16.74040884,13.26992658],[-14.6093998,-16.73877321,13.26992658],[-14.6417999,-16.73713758,13.26992658],[-14.6139002,-16.73550196,13.26992658],[-14.4308004,-16.73386633,13.26992658],[-14.6766996,-16.7322307,13.26992658],[-14.7549,-16.73059507,13.26992658],[-14.6505003,-16.72895945,13.26992658],[-14.9868002,-16.72732382,13.26992658],[-15.0710001,-16.72568819,13.26992658],[-15.0481005,-16.72405256,13.26992658],[-15.4369001,-16.72241693,13.26992658],[-15.6106005,-16.72078131,13.26992658],[-15.7639999,-16.71914568,13.26992658],[-16.4944,-16.71751005,13.26992658],[-17.1156998,-16.71587442,13.26992658],[-17.4323006,-16.7142388,13.26992658],[-18.0191994,-16.71260317,13.26992658],[-18.4309006,-16.71096754,13.26992658],[-18.7343006,-16.70933191,13.26992658],[-19.5429001,-16.70769628,13.26992658],[-20.1907997,-16.70606066,13.26992658],[-19.7784004,-16.70442503,13.26992658],[-19.3330994,-16.7027894,13.26992658],[-19.1807995,-16.70115377,13.26992658],[-18.9598007,-16.69951815,13.26992658],[-18.2437992,-16.69788252,13.26992658],[-18.0228004,-16.69624689,13.26992658],[-18.7777996,-16.69461126,13.26992658],[-19.4542007,-16.69297564,13.26992658],[-19.3547001,-16.69134001,13.26992658],[-18.4972992,-16.68970438,13.26992658],[-17.5258007,-16.68806875,13.26992658],[-17.5827007,-16.68643312,13.26992658],[-17.8278008,-16.6847975,13.26992658],[-17.6310005,-16.68316187,13.26992658],[-18.0025997,-16.68152624,13.26992658],[-18.4708996,-16.67989061,13.26992658],[-18.6641006,-16.67825499,13.26992658],[-18.6093998,-16.67661936,13.26992658],[-18.7460995,-16.67498373,13.26992658],[-18.684,-16.6733481,13.26992658],[-17.8155003,-16.67171247,13.26992658],[-17.4073009,-16.67007685,13.26992658],[-17.1805,-16.66844122,13.26992658],[-16.3887005,-16.66680559,13.26992658],[-16.2474003,-16.66516996,13.26992658],[-16.1753998,-16.66353434,13.26992658],[-15.8466997,-16.66189871,13.26992658],[-15.7975998,-16.66026308,13.26992658],[-15.5773001,-16.65862745,13.26992658],[-15.1695004,-16.65699182,13.26992658],[-14.6035004,-16.6553562,13.26992658],[-15.0106001,-16.65372057,13.26992658],[-15.6182003,-16.65208494,13.26992658],[-15.9296999,-16.65044931,13.26992658],[-15.7363997,-16.64881369,13.26992658],[-15.3952999,-16.64717806,13.26992658],[-15.3435001,-16.64554243,13.26992658],[-15.8839998,-16.6439068,13.26992658],[-16.2616005,-16.64227118,13.26992658],[-16.3565998,-16.64063555,13.26992658],[-16.3342991,-16.63899992,13.26992658],[-16.4491997,-16.63736429,13.26992658],[-16.2509003,-16.63572866,13.26992658],[-15.8348999,-16.63409304,13.26992658],[-15.8681002,-16.63245741,13.26992658],[-15.4382,-16.63082178,13.26992658],[-14.8582001,-16.62918615,13.26992658],[-14.6690998,-16.62755053,13.26992658],[-15.0965004,-16.6259149,13.26992658],[-15.2117004,-16.62427927,13.26992658],[-15.3226004,-16.62264364,13.26992658],[-16.4244003,-16.62100801,13.26992658],[-17.1769009,-16.61937239,13.26992658],[-17.9073009,-16.61773676,13.26992658],[-19.7033005,-16.61610113,13.26992658],[-21.3565998,-16.6144655,13.26992658],[-22.0536995,-16.61282988,13.26992658],[-22.2737007,-16.61119425,13.26992658],[-22.2987003,-16.60955862,13.26992658],[-22.5603008,-16.60792299,13.26992658],[-5.3401699,-16.79274893,13.26829096],[-5.9897199,-16.7911133,13.26829096],[-6.36939,-16.78947767,13.26829096],[-6.7326598,-16.78784204,13.26829096],[-7.30514,-16.78620642,13.26829096],[-7.9828401,-16.78457079,13.26829096],[-8.8256903,-16.78293516,13.26829096],[-9.9058599,-16.78129953,13.26829096],[-10.7147999,-16.77966391,13.26829096],[-11.1381998,-16.77802828,13.26829096],[-11.3809004,-16.77639265,13.26829096],[-11.5166998,-16.77475702,13.26829096],[-11.3992004,-16.77312139,13.26829096],[-11.1386003,-16.77148577,13.26829096],[-11.1496,-16.76985014,13.26829096],[-11.3394003,-16.76821451,13.26829096],[-11.3382998,-16.76657888,13.26829096],[-11.8025999,-16.76494326,13.26829096],[-12.6564999,-16.76330763,13.26829096],[-13.4626999,-16.761672,13.26829096],[-13.5881004,-16.76003637,13.26829096],[-13.5254002,-16.75840074,13.26829096],[-13.6091003,-16.75676512,13.26829096],[-13.6197996,-16.75512949,13.26829096],[-13.4933004,-16.75349386,13.26829096],[-13.3305998,-16.75185823,13.26829096],[-13.1191998,-16.75022261,13.26829096],[-12.9168997,-16.74858698,13.26829096],[-12.7838001,-16.74695135,13.26829096],[-12.8938999,-16.74531572,13.26829096],[-12.6133003,-16.7436801,13.26829096],[-12.9188004,-16.74204447,13.26829096],[-13.8719997,-16.74040884,13.26829096],[-14.5068998,-16.73877321,13.26829096],[-14.6935997,-16.73713758,13.26829096],[-14.9345999,-16.73550196,13.26829096],[-15.2957001,-16.73386633,13.26829096],[-15.1636,-16.7322307,13.26829096],[-15.0071001,-16.73059507,13.26829096],[-15.0472002,-16.72895945,13.26829096],[-15.1687002,-16.72732382,13.26829096],[-15.2712002,-16.72568819,13.26829096],[-15.3243999,-16.72405256,13.26829096],[-15.6018,-16.72241693,13.26829096],[-15.9049997,-16.72078131,13.26829096],[-16.1562004,-16.71914568,13.26829096],[-16.7057991,-16.71751005,13.26829096],[-17.4424992,-16.71587442,13.26829096],[-17.7476006,-16.7142388,13.26829096],[-17.9543991,-16.71260317,13.26829096],[-18.1632996,-16.71096754,13.26829096],[-18.5830994,-16.70933191,13.26829096],[-19.2131996,-16.70769628,13.26829096],[-19.6168995,-16.70606066,13.26829096],[-19.6009007,-16.70442503,13.26829096],[-19.6362,-16.7027894,13.26829096],[-19.7187996,-16.70115377,13.26829096],[-19.3771992,-16.69951815,13.26829096],[-19.0601006,-16.69788252,13.26829096],[-19.0184002,-16.69624689,13.26829096],[-19.1012993,-16.69461126,13.26829096],[-19.3715992,-16.69297564,13.26829096],[-19.3351994,-16.69134001,13.26829096],[-18.8540001,-16.68970438,13.26829096],[-18.6413994,-16.68806875,13.26829096],[-18.4790001,-16.68643312,13.26829096],[-18.4643993,-16.6847975,13.26829096],[-18.7033997,-16.68316187,13.26829096],[-18.594101,-16.68152624,13.26829096],[-18.5412006,-16.67989061,13.26829096],[-18.6110992,-16.67825499,13.26829096],[-18.6047993,-16.67661936,13.26829096],[-18.8271008,-16.67498373,13.26829096],[-18.8307991,-16.6733481,13.26829096],[-17.0345993,-16.67171247,13.26829096],[-14.1322002,-16.67007685,13.26829096],[-13.3691998,-16.66844122,13.26829096],[-15.0332003,-16.66680559,13.26829096],[-15.7042999,-16.66516996,13.26829096],[-15.7754002,-16.66353434,13.26829096],[-16.0566998,-16.66189871,13.26829096],[-16.3283997,-16.66026308,13.26829096],[-16.2047997,-16.65862745,13.26829096],[-15.8198996,-16.65699182,13.26829096],[-15.8449001,-16.6553562,13.26829096],[-15.5977001,-16.65372057,13.26829096],[-15.5468998,-16.65208494,13.26829096],[-15.5768003,-16.65044931,13.26829096],[-15.7327995,-16.64881369,13.26829096],[-15.9605999,-16.64717806,13.26829096],[-16.1072998,-16.64554243,13.26829096],[-16.0625992,-16.6439068,13.26829096],[-16.0893993,-16.64227118,13.26829096],[-16.0821991,-16.64063555,13.26829096],[-16.0993004,-16.63899992,13.26829096],[-16.0223007,-16.63736429,13.26829096],[-15.7957001,-16.63572866,13.26829096],[-15.0079002,-16.63409304,13.26829096],[-14.0389004,-16.63245741,13.26829096],[-14.4562998,-16.63082178,13.26829096],[-14.7293997,-16.62918615,13.26829096],[-14.7047005,-16.62755053,13.26829096],[-15.1400003,-16.6259149,13.26829096],[-16.3798008,-16.62427927,13.26829096],[-17.0881996,-16.62264364,13.26829096],[-17.2057991,-16.62100801,13.26829096],[-17.9790993,-16.61937239,13.26829096],[-18.4880009,-16.61773676,13.26829096],[-20.0713997,-16.61610113,13.26829096],[-22.0168991,-16.6144655,13.26829096],[-22.4340992,-16.61282988,13.26829096],[-23.2070999,-16.61119425,13.26829096],[-24.9060993,-16.60955862,13.26829096],[-24.3418999,-16.60792299,13.26829096],[-4.5083098,-16.7911133,13.26665533],[-4.7171402,-16.78947767,13.26665533],[-5.3280902,-16.78784204,13.26665533],[-6.0506902,-16.78620642,13.26665533],[-5.7726598,-16.78457079,13.26665533],[-7.0332398,-16.78293516,13.26665533],[-8.71766,-16.78129953,13.26665533],[-8.8453197,-16.77966391,13.26665533],[-9.9044704,-16.77802828,13.26665533],[-11.2257004,-16.77639265,13.26665533],[-11.5658998,-16.77475702,13.26665533],[-11.0207996,-16.77312139,13.26665533],[-10.2873001,-16.77148577,13.26665533],[-10.2504997,-16.76985014,13.26665533],[-11.0465002,-16.76821451,13.26665533],[-11.3267002,-16.76657888,13.26665533],[-11.5653,-16.76494326,13.26665533],[-12.7551003,-16.76330763,13.26665533],[-14.3177996,-16.761672,13.26665533],[-13.7616997,-16.76003637,13.26665533],[-13.6479998,-16.75840074,13.26665533],[-14.2382002,-16.75676512,13.26665533],[-13.5948,-16.75512949,13.26665533],[-13.3313999,-16.75349386,13.26665533],[-13.4619999,-16.75185823,13.26665533],[-12.8596001,-16.75022261,13.26665533],[-12.1189003,-16.74858698,13.26665533],[-11.8844004,-16.74695135,13.26665533],[-12.2504997,-16.74531572,13.26665533],[-10.8280001,-16.7436801,13.26665533],[-11.0700998,-16.74204447,13.26665533],[-13.6073999,-16.74040884,13.26665533],[-14.5796003,-16.73877321,13.26665533],[-14.7214003,-16.73713758,13.26665533],[-15.2887001,-16.73550196,13.26665533],[-15.8943005,-16.73386633,13.26665533],[-15.5488005,-16.7322307,13.26665533],[-15.1742001,-16.73059507,13.26665533],[-14.8452997,-16.72895945,13.26665533],[-15.2237997,-16.72732382,13.26665533],[-15.3106003,-16.72568819,13.26665533],[-15.2073002,-16.72405256,13.26665533],[-15.7124996,-16.72241693,13.26665533],[-15.9934998,-16.72078131,13.26665533],[-16.0720997,-16.71914568,13.26665533],[-16.8936005,-16.71751005,13.26665533],[-18.2208004,-16.71587442,13.26665533],[-18.1233997,-16.7142388,13.26665533],[-17.8176003,-16.71260317,13.26665533],[-17.8435001,-16.71096754,13.26665533],[-18.1788006,-16.70933191,13.26665533],[-19.0860996,-16.70769628,13.26665533],[-19.8491001,-16.70606066,13.26665533],[-19.5550003,-16.70442503,13.26665533],[-19.8656006,-16.7027894,13.26665533],[-20.4220009,-16.70115377,13.26665533],[-19.6791992,-16.69951815,13.26665533],[-19.2583008,-16.69788252,13.26665533],[-19.2765999,-16.69624689,13.26665533],[-19.3271999,-16.69461126,13.26665533],[-19.6130009,-16.69297564,13.26665533],[-19.5907001,-16.69134001,13.26665533],[-19.0625,-16.68970438,13.26665533],[-18.9629002,-16.68806875,13.26665533],[-18.8596992,-16.68643312,13.26665533],[-18.8188,-16.6847975,13.26665533],[-19.4522991,-16.68316187,13.26665533],[-18.9202003,-16.68152624,13.26665533],[-18.5701008,-16.67989061,13.26665533],[-18.6546993,-16.67825499,13.26665533],[-18.4563007,-16.67661936,13.26665533],[-19.1849995,-16.67498373,13.26665533],[-19.9918995,-16.6733481,13.26665533],[-16.7525005,-16.67171247,13.26665533],[-11.8298998,-16.67007685,13.26665533],[-10.7996998,-16.66844122,13.26665533],[-14.4052,-16.66680559,13.26665533],[-15.6316004,-16.66516996,13.26665533],[-15.7397003,-16.66353434,13.26665533],[-16.1380005,-16.66189871,13.26665533],[-16.8764,-16.66026308,13.26665533],[-16.5100994,-16.65862745,13.26665533],[-16.0323009,-16.65699182,13.26665533],[-16.2439995,-16.6553562,13.26665533],[-15.8641996,-16.65372057,13.26665533],[-15.5416002,-16.65208494,13.26665533],[-15.5092001,-16.65044931,13.26665533],[-15.6063004,-16.64881369,13.26665533],[-16.1193008,-16.64717806,13.26665533],[-16.2959003,-16.64554243,13.26665533],[-16.0056992,-16.6439068,13.26665533],[-16.0223999,-16.64227118,13.26665533],[-15.9927998,-16.64063555,13.26665533],[-15.8139,-16.63899992,13.26665533],[-15.9387999,-16.63736429,13.26665533],[-15.7233,-16.63572866,13.26665533],[-14.6310997,-16.63409304,13.26665533],[-13.3837004,-16.63245741,13.26665533],[-14.0740004,-16.63082178,13.26665533],[-14.7142,-16.62918615,13.26665533],[-14.5234003,-16.62755053,13.26665533],[-15.3800001,-16.6259149,13.26665533],[-16.6665993,-16.62427927,13.26665533],[-17.4262009,-16.62264364,13.26665533],[-17.4211998,-16.62100801,13.26665533],[-18.1091003,-16.61937239,13.26665533],[-18.3715992,-16.61773676,13.26665533],[-20.1336002,-16.61610113,13.26665533],[-22.2338009,-16.6144655,13.26665533],[-22.5053005,-16.61282988,13.26665533],[-23.1858006,-16.61119425,13.26665533],[-25.4878998,-16.60955862,13.26665533],[-4.5187602,-16.78947767,13.2650197],[-4.6526299,-16.78784204,13.2650197],[-5.2684999,-16.78620642,13.2650197],[-5.6129799,-16.78457079,13.2650197],[-6.5295701,-16.78293516,13.2650197],[-7.99826,-16.78129953,13.2650197],[-8.7481098,-16.77966391,13.2650197],[-9.3417902,-16.77802828,13.2650197],[-10.6696997,-16.77639265,13.2650197],[-11.1871996,-16.77475702,13.2650197],[-10.6644001,-16.77312139,13.2650197],[-10.3403997,-16.77148577,13.2650197],[-10.4187002,-16.76985014,13.2650197],[-10.7708998,-16.76821451,13.2650197],[-11.1617002,-16.76657888,13.2650197],[-11.3933001,-16.76494326,13.2650197],[-12.1212997,-16.76330763,13.2650197],[-13.2971001,-16.761672,13.2650197],[-13.1028996,-16.76003637,13.2650197],[-13.0351,-16.75840074,13.2650197],[-13.5221996,-16.75676512,13.2650197],[-12.9344997,-16.75512949,13.2650197],[-12.7453003,-16.75349386,13.2650197],[-12.7739,-16.75185823,13.2650197],[-12.3324003,-16.75022261,13.2650197],[-12.0939999,-16.74858698,13.2650197],[-12.1075001,-16.74695135,13.2650197],[-12.4007998,-16.74531572,13.2650197],[-12.0719995,-16.7436801,13.2650197],[-12.4796,-16.74204447,13.2650197],[-14.0066996,-16.74040884,13.2650197],[-14.7082996,-16.73877321,13.2650197],[-15.1264,-16.73713758,13.2650197],[-15.5970001,-16.73550196,13.2650197],[-15.8863001,-16.73386633,13.2650197],[-15.8905001,-16.7322307,13.2650197],[-15.6787996,-16.73059507,13.2650197],[-15.4615002,-16.72895945,13.2650197],[-15.7147999,-16.72732382,13.2650197],[-15.8163996,-16.72568819,13.2650197],[-15.7434998,-16.72405256,13.2650197],[-15.9350004,-16.72241693,13.2650197],[-15.9608002,-16.72078131,13.2650197],[-16.1704006,-16.71914568,13.2650197],[-16.7357006,-16.71751005,13.2650197],[-17.4475994,-16.71587442,13.2650197],[-17.7091007,-16.7142388,13.2650197],[-17.6870003,-16.71260317,13.2650197],[-17.8896008,-16.71096754,13.2650197],[-18.1389008,-16.70933191,13.2650197],[-18.7126007,-16.70769628,13.2650197],[-19.1889,-16.70606066,13.2650197],[-19.2066002,-16.70442503,13.2650197],[-19.3799992,-16.7027894,13.2650197],[-19.5235996,-16.70115377,13.2650197],[-19.2735996,-16.69951815,13.2650197],[-19.2553997,-16.69788252,13.2650197],[-19.2038002,-16.69624689,13.2650197],[-19.2150993,-16.69461126,13.2650197],[-19.3272991,-16.69297564,13.2650197],[-19.3717003,-16.69134001,13.2650197],[-19.0905991,-16.68970438,13.2650197],[-18.8577003,-16.68806875,13.2650197],[-18.8313007,-16.68643312,13.2650197],[-18.6296005,-16.6847975,13.2650197],[-18.6268005,-16.68316187,13.2650197],[-18.4962997,-16.68152624,13.2650197],[-18.3383007,-16.67989061,13.2650197],[-18.3435993,-16.67825499,13.2650197],[-18.094101,-16.67661936,13.2650197],[-18.3106003,-16.67498373,13.2650197],[-18.2082005,-16.6733481,13.2650197],[-16.3906994,-16.67171247,13.2650197],[-14.0377998,-16.67007685,13.2650197],[-13.4394999,-16.66844122,13.2650197],[-14.7020998,-16.66680559,13.2650197],[-15.5935001,-16.66516996,13.2650197],[-15.7861004,-16.66353434,13.2650197],[-16.0062008,-16.66189871,13.2650197],[-16.4743004,-16.66026308,13.2650197],[-16.2015991,-16.65862745,13.2650197],[-15.6733999,-16.65699182,13.2650197],[-15.3908997,-16.6553562,13.2650197],[-15.4184999,-16.65372057,13.2650197],[-15.5172005,-16.65208494,13.2650197],[-15.5612001,-16.65044931,13.2650197],[-15.7031002,-16.64881369,13.2650197],[-15.8459997,-16.64717806,13.2650197],[-15.9091997,-16.64554243,13.2650197],[-15.8509998,-16.6439068,13.2650197],[-15.8121996,-16.64227118,13.2650197],[-15.6996002,-16.64063555,13.2650197],[-15.5448999,-16.63899992,13.2650197],[-15.4743996,-16.63736429,13.2650197],[-15.2833996,-16.63572866,13.2650197],[-14.7437,-16.63409304,13.2650197],[-14.3217001,-16.63245741,13.2650197],[-14.6224003,-16.63082178,13.2650197],[-15.2735996,-16.62918615,13.2650197],[-15.6449003,-16.62755053,13.2650197],[-16.0641994,-16.6259149,13.2650197],[-16.5443001,-16.62427927,13.2650197],[-16.9820995,-16.62264364,13.2650197],[-17.6410999,-16.62100801,13.2650197],[-18.198,-16.61937239,13.2650197],[-18.781601,-16.61773676,13.2650197],[-20.2241993,-16.61610113,13.2650197],[-21.6247997,-16.6144655,13.2650197],[-22.1420994,-16.61282988,13.2650197],[-22.4596004,-16.61119425,13.2650197],[-3.6542001,-16.78947767,13.26338407],[-3.92659,-16.78784204,13.26338407],[-4.2620301,-16.78620642,13.26338407],[-4.5421801,-16.78457079,13.26338407],[-5.7421198,-16.78293516,13.26338407],[-7.1941199,-16.78129953,13.26338407],[-8.1238899,-16.77966391,13.26338407],[-8.9206495,-16.77802828,13.26338407],[-9.8039799,-16.77639265,13.26338407],[-10.3872995,-16.77475702,13.26338407],[-10.4375,-16.77312139,13.26338407],[-10.5158997,-16.77148577,13.26338407],[-10.5225,-16.76985014,13.26338407],[-10.6121998,-16.76821451,13.26338407],[-10.4715004,-16.76657888,13.26338407],[-10.6538,-16.76494326,13.26338407],[-11.0723,-16.76330763,13.26338407],[-11.0136003,-16.761672,13.26338407],[-11.4972,-16.76003637,13.26338407],[-12.0602999,-16.75840074,13.26338407],[-12.1815996,-16.75676512,13.26338407],[-12.0146999,-16.75512949,13.26338407],[-11.3263998,-16.75349386,13.26338407],[-10.8569002,-16.75185823,13.26338407],[-11.4835997,-16.75022261,13.26338407],[-11.7424002,-16.74858698,13.26338407],[-11.9807997,-16.74695135,13.26338407],[-12.9443998,-16.74531572,13.26338407],[-14.2699003,-16.7436801,13.26338407],[-14.6970997,-16.74204447,13.26338407],[-14.8824997,-16.74040884,13.26338407],[-15.6365004,-16.73877321,13.26338407],[-15.8086004,-16.73713758,13.26338407],[-15.9616003,-16.73550196,13.26338407],[-16.2402,-16.73386633,13.26338407],[-16.2376995,-16.7322307,13.26338407],[-16.2292004,-16.73059507,13.26338407],[-16.3113995,-16.72895945,13.26338407],[-16.3369999,-16.72732382,13.26338407],[-16.8747997,-16.72568819,13.26338407],[-17.2476997,-16.72405256,13.26338407],[-16.3661995,-16.72241693,13.26338407],[-15.7222996,-16.72078131,13.26338407],[-15.6829004,-16.71914568,13.26338407],[-16.4155006,-16.71751005,13.26338407],[-16.8882999,-16.71587442,13.26338407],[-17.0825005,-16.7142388,13.26338407],[-17.3731995,-16.71260317,13.26338407],[-17.1833,-16.71096754,13.26338407],[-17.6292,-16.70933191,13.26338407],[-18.2717991,-16.70769628,13.26338407],[-18.4284992,-16.70606066,13.26338407],[-18.6539001,-16.70442503,13.26338407],[-18.6387005,-16.7027894,13.26338407],[-18.4752998,-16.70115377,13.26338407],[-18.8460007,-16.69951815,13.26338407],[-19.1623993,-16.69788252,13.26338407],[-19.3551998,-16.69624689,13.26338407],[-19.1842003,-16.69461126,13.26338407],[-19.4363995,-16.69297564,13.26338407],[-19.4104004,-16.69134001,13.26338407],[-19.0477009,-16.68970438,13.26338407],[-18.7959003,-16.68806875,13.26338407],[-18.6177998,-16.68643312,13.26338407],[-18.2630997,-16.6847975,13.26338407],[-17.5799007,-16.68316187,13.26338407],[-17.8612003,-16.68152624,13.26338407],[-17.7947998,-16.67989061,13.26338407],[-17.3384991,-16.67825499,13.26338407],[-17.5972996,-16.67661936,13.26338407],[-17.9463005,-16.67498373,13.26338407],[-18.0006008,-16.6733481,13.26338407],[-16.3906002,-16.67171247,13.26338407],[-13.9061003,-16.67007685,13.26338407],[-13.3427,-16.66844122,13.26338407],[-14.9435997,-16.66680559,13.26338407],[-15.9970999,-16.66516996,13.26338407],[-16.0594997,-16.66353434,13.26338407],[-16.1706009,-16.66189871,13.26338407],[-17.0270996,-16.66026308,13.26338407],[-16.5449009,-16.65862745,13.26338407],[-15.0541,-16.65699182,13.26338407],[-13.9553003,-16.6553562,13.26338407],[-14.6168003,-16.65372057,13.26338407],[-15.5937004,-16.65208494,13.26338407],[-15.8807001,-16.65044931,13.26338407],[-15.7650995,-16.64881369,13.26338407],[-15.7154999,-16.64717806,13.26338407],[-15.7630997,-16.64554243,13.26338407],[-15.7390003,-16.6439068,13.26338407],[-15.5437002,-16.64227118,13.26338407],[-15.4895,-16.64063555,13.26338407],[-15.3174,-16.63899992,13.26338407],[-15.0794001,-16.63736429,13.26338407],[-15.0372,-16.63572866,13.26338407],[-14.6323004,-16.63409304,13.26338407],[-13.6370001,-16.63245741,13.26338407],[-14.4633999,-16.63082178,13.26338407],[-15.9984999,-16.62918615,13.26338407],[-16.8666992,-16.62755053,13.26338407],[-16.7252007,-16.6259149,13.26338407],[-16.6809998,-16.62427927,13.26338407],[-16.5744991,-16.62264364,13.26338407],[-17.6634998,-16.62100801,13.26338407],[-18.4246998,-16.61937239,13.26338407],[-18.7252007,-16.61773676,13.26338407],[-20.1671009,-16.61610113,13.26338407],[-22.6005001,-16.6144655,13.26338407],[-22.7721996,-16.61282988,13.26338407],[-3.12252,-16.78784204,13.26174845],[-3.6050899,-16.78620642,13.26174845],[-2.81041,-16.78457079,13.26174845],[-4.3990102,-16.78293516,13.26174845],[-6.8204298,-16.78129953,13.26174845],[-7.9481101,-16.77966391,13.26174845],[-8.2752399,-16.77802828,13.26174845],[-9.8260803,-16.77639265,13.26174845],[-10.4871998,-16.77475702,13.26174845],[-10.099,-16.77312139,13.26174845],[-10.7152004,-16.77148577,13.26174845],[-10.7820997,-16.76985014,13.26174845],[-10.3348999,-16.76821451,13.26174845],[-10.0116997,-16.76657888,13.26174845],[-10.1316004,-16.76494326,13.26174845],[-10.3599997,-16.76330763,13.26174845],[-9.5292797,-16.761672,13.26174845],[-10.3452997,-16.76003637,13.26174845],[-11.4804001,-16.75840074,13.26174845],[-11.8199997,-16.75676512,13.26174845],[-11.5598001,-16.75512949,13.26174845],[-10.3367996,-16.75349386,13.26174845],[-9.2197399,-16.75185823,13.26174845],[-10.8803997,-16.75022261,13.26174845],[-11.4982996,-16.74858698,13.26174845],[-11.4455996,-16.74695135,13.26174845],[-13.1694002,-16.74531572,13.26174845],[-15.6458998,-16.7436801,13.26174845],[-15.8072996,-16.74204447,13.26174845],[-15.4819002,-16.74040884,13.26174845],[-16.1958008,-16.73877321,13.26174845],[-16.2394009,-16.73713758,13.26174845],[-16.3332996,-16.73550196,13.26174845],[-16.3924007,-16.73386633,13.26174845],[-16.6114006,-16.7322307,13.26174845],[-16.6525002,-16.73059507,13.26174845],[-16.4846001,-16.72895945,13.26174845],[-16.7008991,-16.72732382,13.26174845],[-17.6522007,-16.72568819,13.26174845],[-18.3325996,-16.72405256,13.26174845],[-16.7346992,-16.72241693,13.26174845],[-15.4052,-16.72078131,13.26174845],[-15.1724997,-16.71914568,13.26174845],[-16.3493004,-16.71751005,13.26174845],[-16.7777996,-16.71587442,13.26174845],[-16.9097004,-16.7142388,13.26174845],[-17.2432995,-16.71260317,13.26174845],[-16.7521992,-16.71096754,13.26174845],[-17.3169994,-16.70933191,13.26174845],[-18.1546993,-16.70769628,13.26174845],[-18.2252998,-16.70606066,13.26174845],[-18.3645992,-16.70442503,13.26174845],[-18.3246994,-16.7027894,13.26174845],[-18.1396008,-16.70115377,13.26174845],[-18.4976006,-16.69951815,13.26174845],[-19.1665993,-16.69788252,13.26174845],[-19.5151005,-16.69624689,13.26174845],[-19.0139999,-16.69461126,13.26174845],[-19.4932003,-16.69297564,13.26174845],[-19.5340004,-16.69134001,13.26174845],[-18.9319992,-16.68970438,13.26174845],[-18.7569008,-16.68806875,13.26174845],[-18.7122993,-16.68643312,13.26174845],[-18.2073994,-16.6847975,13.26174845],[-17.2514,-16.68316187,13.26174845],[-17.7112007,-16.68152624,13.26174845],[-17.6744003,-16.67989061,13.26174845],[-16.9792004,-16.67825499,13.26174845],[-17.6079006,-16.67661936,13.26174845],[-17.8806,-16.67498373,13.26174845],[-18.1763992,-16.6733481,13.26174845],[-16.4948997,-16.67171247,13.26174845],[-13.7339001,-16.67007685,13.26174845],[-13.0783005,-16.66844122,13.26174845],[-15.0558996,-16.66680559,13.26174845],[-16.1443996,-16.66516996,13.26174845],[-16.1902008,-16.66353434,13.26174845],[-16.2957001,-16.66189871,13.26174845],[-17.1389008,-16.66026308,13.26174845],[-16.4810009,-16.65862745,13.26174845],[-14.7888002,-16.65699182,13.26174845],[-13.7271996,-16.6553562,13.26174845],[-14.3929996,-16.65372057,13.26174845],[-15.3978004,-16.65208494,13.26174845],[-15.8884001,-16.65044931,13.26174845],[-15.6348,-16.64881369,13.26174845],[-15.7364998,-16.64717806,13.26174845],[-15.7365999,-16.64554243,13.26174845],[-15.6743002,-16.6439068,13.26174845],[-15.4184999,-16.64227118,13.26174845],[-15.3360996,-16.64063555,13.26174845],[-15.1901999,-16.63899992,13.26174845],[-15.0106001,-16.63736429,13.26174845],[-15.0949001,-16.63572866,13.26174845],[-14.8268995,-16.63409304,13.26174845],[-13.8580999,-16.63245741,13.26174845],[-14.8439999,-16.63082178,13.26174845],[-16.3987999,-16.62918615,13.26174845],[-16.9972992,-16.62755053,13.26174845],[-17.1427994,-16.6259149,13.26174845],[-17.1107006,-16.62427927,13.26174845],[-16.8773994,-16.62264364,13.26174845],[-17.8045998,-16.62100801,13.26174845],[-18.5450001,-16.61937239,13.26174845],[-18.7646008,-16.61773676,13.26174845],[-19.8973999,-16.61610113,13.26174845],[-21.9706001,-16.6144655,13.26174845],[-3.0251801,-16.78784204,13.26011282],[-3.4065199,-16.78620642,13.26011282],[-3.6412101,-16.78457079,13.26011282],[-4.52841,-16.78293516,13.26011282],[-6.0157199,-16.78129953,13.26011282],[-7.2737002,-16.77966391,13.26011282],[-7.9050798,-16.77802828,13.26011282],[-8.9744101,-16.77639265,13.26011282],[-9.7622204,-16.77475702,13.26011282],[-9.8673697,-16.77312139,13.26011282],[-10.3303003,-16.77148577,13.26011282],[-10.4660997,-16.76985014,13.26011282],[-10.3182001,-16.76821451,13.26011282],[-10.3225002,-16.76657888,13.26011282],[-10.3796997,-16.76494326,13.26011282],[-10.5444002,-16.76330763,13.26011282],[-10.4951,-16.761672,13.26011282],[-10.7664003,-16.76003637,13.26011282],[-11.3718996,-16.75840074,13.26011282],[-11.7364998,-16.75676512,13.26011282],[-11.4581003,-16.75512949,13.26011282],[-10.8986998,-16.75349386,13.26011282],[-10.6506004,-16.75185823,13.26011282],[-11.3667002,-16.75022261,13.26011282],[-11.8648005,-16.74858698,13.26011282],[-12.2756996,-16.74695135,13.26011282],[-13.3472004,-16.74531572,13.26011282],[-14.5962,-16.7436801,13.26011282],[-15.1962996,-16.74204447,13.26011282],[-15.6988001,-16.74040884,13.26011282],[-16.3458004,-16.73877321,13.26011282],[-16.5825005,-16.73713758,13.26011282],[-17.0580997,-16.73550196,13.26011282],[-17.2047005,-16.73386633,13.26011282],[-17.2840996,-16.7322307,13.26011282],[-17.1564007,-16.73059507,13.26011282],[-17.0382004,-16.72895945,13.26011282],[-16.9962006,-16.72732382,13.26011282],[-17.1574993,-16.72568819,13.26011282],[-17.1550007,-16.72405256,13.26011282],[-16.6075993,-16.72241693,13.26011282],[-15.8830004,-16.72078131,13.26011282],[-15.7819996,-16.71914568,13.26011282],[-16.6494999,-16.71751005,13.26011282],[-17.3397999,-16.71587442,13.26011282],[-17.5720997,-16.7142388,13.26011282],[-17.7336006,-16.71260317,13.26011282],[-17.9199009,-16.71096754,13.26011282],[-18.0869999,-16.70933191,13.26011282],[-18.3181992,-16.70769628,13.26011282],[-18.4356995,-16.70606066,13.26011282],[-18.4097996,-16.70442503,13.26011282],[-18.3376007,-16.7027894,13.26011282],[-18.2653999,-16.70115377,13.26011282],[-18.1345997,-16.69951815,13.26011282],[-18.1135998,-16.69788252,13.26011282],[-18.1254005,-16.69624689,13.26011282],[-18.0680008,-16.69461126,13.26011282],[-18.1000996,-16.69297564,13.26011282],[-18.2444,-16.69134001,13.26011282],[-18.6436996,-16.68970438,13.26011282],[-19.0979996,-16.68806875,13.26011282],[-19.0403996,-16.68643312,13.26011282],[-18.7306004,-16.6847975,13.26011282],[-18.4857006,-16.68316187,13.26011282],[-18.3682003,-16.68152624,13.26011282],[-18.2402992,-16.67989061,13.26011282],[-18.0459003,-16.67825499,13.26011282],[-17.8306007,-16.67661936,13.26011282],[-17.7705002,-16.67498373,13.26011282],[-17.3481998,-16.6733481,13.26011282],[-16.6072998,-16.67171247,13.26011282],[-15.8322001,-16.67007685,13.26011282],[-15.5846004,-16.66844122,13.26011282],[-15.6819,-16.66680559,13.26011282],[-15.9491997,-16.66516996,13.26011282],[-16.0792999,-16.66353434,13.26011282],[-15.7227001,-16.66189871,13.26011282],[-15.2250004,-16.66026308,13.26011282],[-14.993,-16.65862745,13.26011282],[-14.8715,-16.65699182,13.26011282],[-14.7575998,-16.6553562,13.26011282],[-14.6724005,-16.65372057,13.26011282],[-14.6286001,-16.65208494,13.26011282],[-14.7194004,-16.65044931,13.26011282],[-15.2693996,-16.64881369,13.26011282],[-15.8922005,-16.64717806,13.26011282],[-15.9672003,-16.64554243,13.26011282],[-15.4983997,-16.6439068,13.26011282],[-15.0218,-16.64227118,13.26011282],[-14.9825001,-16.64063555,13.26011282],[-15.0913,-16.63899992,13.26011282],[-15.2868996,-16.63736429,13.26011282],[-15.5998001,-16.63572866,13.26011282],[-15.6414003,-16.63409304,13.26011282],[-15.7959995,-16.63245741,13.26011282],[-16.2425995,-16.63082178,13.26011282],[-17.1942997,-16.62918615,13.26011282],[-18.0375004,-16.62755053,13.26011282],[-18.0834999,-16.6259149,13.26011282],[-18.0863991,-16.62427927,13.26011282],[-18.3292999,-16.62264364,13.26011282],[-18.5091,-16.62100801,13.26011282],[-18.7154999,-16.61937239,13.26011282],[-18.9528008,-16.61773676,13.26011282],[-18.8931007,-16.61610113,13.26011282],[-18.6872997,-16.6144655,13.26011282],[-2.2737,-16.78784204,13.25847719],[-3.5093601,-16.78620642,13.25847719],[-4.1665101,-16.78457079,13.25847719],[-4.6559501,-16.78293516,13.25847719],[-5.41751,-16.78129953,13.25847719],[-6.0985999,-16.77966391,13.25847719],[-7.1040502,-16.77802828,13.25847719],[-7.97614,-16.77639265,13.25847719],[-8.1115198,-16.77475702,13.25847719],[-9.2321196,-16.77312139,13.25847719],[-9.7654495,-16.77148577,13.25847719],[-9.9091196,-16.76985014,13.25847719],[-10.2341995,-16.76821451,13.25847719],[-10.2410002,-16.76657888,13.25847719],[-10.4789,-16.76494326,13.25847719],[-10.7344999,-16.76330763,13.25847719],[-10.7431002,-16.761672,13.25847719],[-11.0755997,-16.76003637,13.25847719],[-11.4576998,-16.75840074,13.25847719],[-11.7924995,-16.75676512,13.25847719],[-11.6149998,-16.75512949,13.25847719],[-11.3409004,-16.75349386,13.25847719],[-11.1450996,-16.75185823,13.25847719],[-11.7440996,-16.75022261,13.25847719],[-12.5261002,-16.74858698,13.25847719],[-12.8360996,-16.74695135,13.25847719],[-13.4439001,-16.74531572,13.25847719],[-14.2468996,-16.7436801,13.25847719],[-14.6884003,-16.74204447,13.25847719],[-15.7966995,-16.74040884,13.25847719],[-16.8656006,-16.73877321,13.25847719],[-17.1791,-16.73713758,13.25847719],[-17.8449001,-16.73550196,13.25847719],[-18.8987999,-16.73386633,13.25847719],[-18.3957005,-16.7322307,13.25847719],[-17.7015991,-16.73059507,13.25847719],[-17.5209007,-16.72895945,13.25847719],[-17.2964993,-16.72732382,13.25847719],[-16.9041996,-16.72568819,13.25847719],[-16.6098003,-16.72405256,13.25847719],[-16.3672009,-16.72241693,13.25847719],[-15.1859999,-16.72078131,13.25847719],[-14.9962997,-16.71914568,13.25847719],[-16.8675003,-16.71751005,13.25847719],[-18.8073006,-16.71587442,13.25847719],[-18.8967991,-16.7142388,13.25847719],[-18.3859005,-16.71260317,13.25847719],[-18.8367004,-16.71096754,13.25847719],[-18.7070007,-16.70933191,13.25847719],[-18.6032009,-16.70769628,13.25847719],[-18.593399,-16.70606066,13.25847719],[-18.4834995,-16.70442503,13.25847719],[-18.2106991,-16.7027894,13.25847719],[-18.0792007,-16.70115377,13.25847719],[-17.8236008,-16.69951815,13.25847719],[-16.8715992,-16.69788252,13.25847719],[-16.4214993,-16.69624689,13.25847719],[-17.0277996,-16.69461126,13.25847719],[-16.1534996,-16.69297564,13.25847719],[-16.1786995,-16.69134001,13.25847719],[-18.4048004,-16.68970438,13.25847719],[-20.1338005,-16.68806875,13.25847719],[-19.9144001,-16.68643312,13.25847719],[-19.2059994,-16.6847975,13.25847719],[-19.3840008,-16.68316187,13.25847719],[-19.0473003,-16.68152624,13.25847719],[-18.656601,-16.67989061,13.25847719],[-18.9459991,-16.67825499,13.25847719],[-18.2052994,-16.67661936,13.25847719],[-17.6187,-16.67498373,13.25847719],[-17.5562992,-16.6733481,13.25847719],[-17.1420994,-16.67171247,13.25847719],[-17.2070999,-16.67007685,13.25847719],[-17.4087009,-16.66844122,13.25847719],[-16.5335999,-16.66680559,13.25847719],[-16.3836994,-16.66516996,13.25847719],[-16.2777004,-16.66353434,13.25847719],[-15.0012999,-16.66189871,13.25847719],[-12.9357004,-16.66026308,13.25847719],[-13.5988998,-16.65862745,13.25847719],[-14.8177996,-16.65699182,13.25847719],[-15.6264,-16.6553562,13.25847719],[-14.9863997,-16.65372057,13.25847719],[-13.9205999,-16.65208494,13.25847719],[-12.9453001,-16.65044931,13.25847719],[-14.5790997,-16.64881369,13.25847719],[-16.4288006,-16.64717806,13.25847719],[-17.1511002,-16.64554243,13.25847719],[-15.5902996,-16.6439068,13.25847719],[-14.3636999,-16.64227118,13.25847719],[-14.2412996,-16.64063555,13.25847719],[-15.0541,-16.63899992,13.25847719],[-15.8095999,-16.63736429,13.25847719],[-15.8631001,-16.63572866,13.25847719],[-16.1434002,-16.63409304,13.25847719],[-16.6392994,-16.63245741,13.25847719],[-16.8654003,-16.63082178,13.25847719],[-18.3267002,-16.62918615,13.25847719],[-20.0272007,-16.62755053,13.25847719],[-18.9794998,-16.6259149,13.25847719],[-18.9461994,-16.62427927,13.25847719],[-19.4645004,-16.62264364,13.25847719],[-18.9099007,-16.62100801,13.25847719],[-19.0667,-16.61937239,13.25847719],[-19.2451,-16.61773676,13.25847719],[-18.2397995,-16.61610113,13.25847719],[-1.5987,-16.78784204,13.25684156],[-3.4639299,-16.78620642,13.25684156],[-4.3613901,-16.78457079,13.25684156],[-4.5490298,-16.78293516,13.25684156],[-5.3119302,-16.78129953,13.25684156],[-5.5516601,-16.77966391,13.25684156],[-6.6184802,-16.77802828,13.25684156],[-7.4776001,-16.77639265,13.25684156],[-7.1774502,-16.77475702,13.25684156],[-9.0193701,-16.77312139,13.25684156],[-9.5703001,-16.77148577,13.25684156],[-9.5694904,-16.76985014,13.25684156],[-10.5446997,-16.76821451,13.25684156],[-10.1261997,-16.76657888,13.25684156],[-10.3872995,-16.76494326,13.25684156],[-11.0393,-16.76330763,13.25684156],[-10.6352997,-16.761672,13.25684156],[-11.1581001,-16.76003637,13.25684156],[-11.7605,-16.75840074,13.25684156],[-11.8392,-16.75676512,13.25684156],[-11.8647003,-16.75512949,13.25684156],[-11.4821997,-16.75349386,13.25684156],[-10.9694004,-16.75185823,13.25684156],[-11.9665003,-16.75022261,13.25684156],[-12.7650003,-16.74858698,13.25684156],[-12.9115,-16.74695135,13.25684156],[-13.7777996,-16.74531572,13.25684156],[-14.2686005,-16.7436801,13.25684156],[-14.5438995,-16.74204447,13.25684156],[-16.0799007,-16.74040884,13.25684156],[-17.1292992,-16.73877321,13.25684156],[-17.3848,-16.73713758,13.25684156],[-18.2719002,-16.73550196,13.25684156],[-19.4136009,-16.73386633,13.25684156],[-18.7800999,-16.7322307,13.25684156],[-17.9673004,-16.73059507,13.25684156],[-17.6203003,-16.72895945,13.25684156],[-17.5781002,-16.72732382,13.25684156],[-17.0193996,-16.72568819,13.25684156],[-16.5902004,-16.72405256,13.25684156],[-16.6390991,-16.72241693,13.25684156],[-15.2105999,-16.72078131,13.25684156],[-14.7944002,-16.71914568,13.25684156],[-17.1760998,-16.71751005,13.25684156],[-19.0144997,-16.71587442,13.25684156],[-19.0111008,-16.7142388,13.25684156],[-18.6975002,-16.71260317,13.25684156],[-18.9295998,-16.71096754,13.25684156],[-18.8798008,-16.70933191,13.25684156],[-18.7306004,-16.70769628,13.25684156],[-18.6182003,-16.70606066,13.25684156],[-18.4881001,-16.70442503,13.25684156],[-18.2360001,-16.7027894,13.25684156],[-18.0337009,-16.70115377,13.25684156],[-17.6583004,-16.69951815,13.25684156],[-16.7504005,-16.69788252,13.25684156],[-16.3306007,-16.69624689,13.25684156],[-16.8367996,-16.69461126,13.25684156],[-16.1205997,-16.69297564,13.25684156],[-16.1261005,-16.69134001,13.25684156],[-18.1035995,-16.68970438,13.25684156],[-19.8873005,-16.68806875,13.25684156],[-19.7178993,-16.68643312,13.25684156],[-19.1994991,-16.6847975,13.25684156],[-19.2607002,-16.68316187,13.25684156],[-18.9969997,-16.68152624,13.25684156],[-18.6100006,-16.67989061,13.25684156],[-18.7842007,-16.67825499,13.25684156],[-18.0636997,-16.67661936,13.25684156],[-17.4001999,-16.67498373,13.25684156],[-17.3474998,-16.6733481,13.25684156],[-16.8882999,-16.67171247,13.25684156],[-17.0960007,-16.67007685,13.25684156],[-17.2196999,-16.66844122,13.25684156],[-16.5331993,-16.66680559,13.25684156],[-16.4780998,-16.66516996,13.25684156],[-16.3379993,-16.66353434,13.25684156],[-15.3552999,-16.66189871,13.25684156],[-13.6750002,-16.66026308,13.25684156],[-13.9126997,-16.65862745,13.25684156],[-14.6054001,-16.65699182,13.25684156],[-15.1117001,-16.6553562,13.25684156],[-14.6553001,-16.65372057,13.25684156],[-14.0864,-16.65208494,13.25684156],[-13.6030998,-16.65044931,13.25684156],[-14.6687002,-16.64881369,13.25684156],[-16.1226006,-16.64717806,13.25684156],[-16.4981003,-16.64554243,13.25684156],[-15.2325001,-16.6439068,13.25684156],[-14.2027998,-16.64227118,13.25684156],[-14.1643,-16.64063555,13.25684156],[-14.8519001,-16.63899992,13.25684156],[-15.5740995,-16.63736429,13.25684156],[-15.8741999,-16.63572866,13.25684156],[-16.3211002,-16.63409304,13.25684156],[-16.7838001,-16.63245741,13.25684156],[-17.2329006,-16.63082178,13.25684156],[-18.2318993,-16.62918615,13.25684156],[-19.1121006,-16.62755053,13.25684156],[-18.8621998,-16.6259149,13.25684156],[-18.8386002,-16.62427927,13.25684156],[-19.0235996,-16.62264364,13.25684156],[-18.8003998,-16.62100801,13.25684156],[-18.7975006,-16.61937239,13.25684156],[-18.7931995,-16.61773676,13.25684156],[-3.32057,-16.78620642,13.25520593],[-3.89097,-16.78457079,13.25520593],[-4.2439399,-16.78293516,13.25520593],[-5.0308499,-16.78129953,13.25520593],[-5.7067599,-16.77966391,13.25520593],[-6.9739299,-16.77802828,13.25520593],[-8.1529198,-16.77639265,13.25520593],[-9.0837698,-16.77475702,13.25520593],[-10.2420998,-16.77312139,13.25520593],[-11.0946999,-16.77148577,13.25520593],[-11.4877996,-16.76985014,13.25520593],[-11.8013,-16.76821451,13.25520593],[-11.6775999,-16.76657888,13.25520593],[-11.9632998,-16.76494326,13.25520593],[-12.2692003,-16.76330763,13.25520593],[-12.3522997,-16.761672,13.25520593],[-12.4463997,-16.76003637,13.25520593],[-12.4408998,-16.75840074,13.25520593],[-12.3231001,-16.75676512,13.25520593],[-12.3781004,-16.75512949,13.25520593],[-12.4415998,-16.75349386,13.25520593],[-12.4581003,-16.75185823,13.25520593],[-12.7575998,-16.75022261,13.25520593],[-13.0606003,-16.74858698,13.25520593],[-13.4005003,-16.74695135,13.25520593],[-14.1712999,-16.74531572,13.25520593],[-14.7563,-16.7436801,13.25520593],[-15.4186001,-16.74204447,13.25520593],[-16.4349003,-16.74040884,13.25520593],[-17.3801994,-16.73877321,13.25520593],[-17.8223991,-16.73713758,13.25520593],[-18.2317009,-16.73550196,13.25520593],[-18.6588993,-16.73386633,13.25520593],[-18.5345001,-16.7322307,13.25520593],[-18.1828003,-16.73059507,13.25520593],[-18.0373001,-16.72895945,13.25520593],[-17.9335003,-16.72732382,13.25520593],[-17.8258991,-16.72568819,13.25520593],[-17.6352005,-16.72405256,13.25520593],[-17.5256004,-16.72241693,13.25520593],[-17.3556004,-16.72078131,13.25520593],[-17.2103996,-16.71914568,13.25520593],[-17.4283009,-16.71751005,13.25520593],[-17.6653004,-16.71587442,13.25520593],[-17.9698009,-16.7142388,13.25520593],[-18.3631001,-16.71260317,13.25520593],[-18.8637009,-16.71096754,13.25520593],[-19.0337009,-16.70933191,13.25520593],[-18.9535999,-16.70769628,13.25520593],[-18.9479008,-16.70606066,13.25520593],[-18.698,-16.70442503,13.25520593],[-18.3220997,-16.7027894,13.25520593],[-18.0484009,-16.70115377,13.25520593],[-17.6394005,-16.69951815,13.25520593],[-17.1280003,-16.69788252,13.25520593],[-16.9489994,-16.69624689,13.25520593],[-17.2521,-16.69461126,13.25520593],[-17.3239994,-16.69297564,13.25520593],[-17.5312004,-16.69134001,13.25520593],[-18.0800991,-16.68970438,13.25520593],[-18.6921997,-16.68806875,13.25520593],[-18.7495995,-16.68643312,13.25520593],[-18.7117004,-16.6847975,13.25520593],[-18.7660999,-16.68316187,13.25520593],[-18.6413002,-16.68152624,13.25520593],[-18.2049007,-16.67989061,13.25520593],[-17.7928009,-16.67825499,13.25520593],[-17.3827,-16.67661936,13.25520593],[-16.7124004,-16.67498373,13.25520593],[-16.1249008,-16.6733481,13.25520593],[-16.1760006,-16.67171247,13.25520593],[-15.9772997,-16.67007685,13.25520593],[-15.9452,-16.66844122,13.25520593],[-16.2817001,-16.66680559,13.25520593],[-16.6348,-16.66516996,13.25520593],[-16.6201,-16.66353434,13.25520593],[-16.2220001,-16.66189871,13.25520593],[-16.0459995,-16.66026308,13.25520593],[-15.3682003,-16.65862745,13.25520593],[-14.0158005,-16.65699182,13.25520593],[-12.8306999,-16.6553562,13.25520593],[-13.4649,-16.65372057,13.25520593],[-14.6154003,-16.65208494,13.25520593],[-15.2482996,-16.65044931,13.25520593],[-15.2832003,-16.64881369,13.25520593],[-15.7124004,-16.64717806,13.25520593],[-15.8198996,-16.64554243,13.25520593],[-14.6494999,-16.6439068,13.25520593],[-12.9335003,-16.64227118,13.25520593],[-12.6893997,-16.64063555,13.25520593],[-14.3470001,-16.63899992,13.25520593],[-15.5465002,-16.63736429,13.25520593],[-15.9224005,-16.63572866,13.25520593],[-16.6870995,-16.63409304,13.25520593],[-17.7084007,-16.63245741,13.25520593],[-17.8448009,-16.63082178,13.25520593],[-17.7560997,-16.62918615,13.25520593],[-17.7007008,-16.62755053,13.25520593],[-18.1359005,-16.6259149,13.25520593],[-18.4941006,-16.62427927,13.25520593],[-18.6065998,-16.62264364,13.25520593],[-18.4339008,-16.62100801,13.25520593],[-18.3043003,-16.61937239,13.25520593],[-3.11766,-16.78620642,13.25357031],[-2.8069501,-16.78457079,13.25357031],[-3.7042699,-16.78293516,13.25357031],[-4.7119799,-16.78129953,13.25357031],[-5.0531301,-16.77966391,13.25357031],[-6.6971002,-16.77802828,13.25357031],[-9.87117,-16.77639265,13.25357031],[-11.4461002,-16.77475702,13.25357031],[-11.5917997,-16.77312139,13.25357031],[-13.6883001,-16.77148577,13.25357031],[-14.3341999,-16.76985014,13.25357031],[-13.1704998,-16.76821451,13.25357031],[-13.6647997,-16.76657888,13.25357031],[-13.6000996,-16.76494326,13.25357031],[-13.6524,-16.76330763,13.25357031],[-14.4782,-16.761672,13.25357031],[-13.9775,-16.76003637,13.25357031],[-13.0628004,-16.75840074,13.25357031],[-12.5656004,-16.75676512,13.25357031],[-12.9109001,-16.75512949,13.25357031],[-13.4644003,-16.75349386,13.25357031],[-14.0705996,-16.75185823,13.25357031],[-13.6049995,-16.75022261,13.25357031],[-13.6465998,-16.74858698,13.25357031],[-13.849,-16.74695135,13.25357031],[-14.3845997,-16.74531572,13.25357031],[-15.5325003,-16.7436801,13.25357031],[-15.8583002,-16.74204447,13.25357031],[-16.8327999,-16.74040884,13.25357031],[-18.2572002,-16.73877321,13.25357031],[-18.2698002,-16.73713758,13.25357031],[-18.4113998,-16.73550196,13.25357031],[-18.868,-16.73386633,13.25357031],[-18.6546993,-16.7322307,13.25357031],[-18.3549004,-16.73059507,13.25357031],[-18.3304005,-16.72895945,13.25357031],[-18.2303009,-16.72732382,13.25357031],[-18.5366001,-16.72568819,13.25357031],[-18.8435001,-16.72405256,13.25357031],[-18.4263,-16.72241693,13.25357031],[-18.9948006,-16.72078131,13.25357031],[-19.3521004,-16.71914568,13.25357031],[-17.8323994,-16.71751005,13.25357031],[-16.8134995,-16.71587442,13.25357031],[-16.9698009,-16.7142388,13.25357031],[-18.2964001,-16.71260317,13.25357031],[-19.6938992,-16.71096754,13.25357031],[-19.3533993,-16.70933191,13.25357031],[-19.2329998,-16.70769628,13.25357031],[-19.7308998,-16.70606066,13.25357031],[-19.0622005,-16.70442503,13.25357031],[-18.3400993,-16.7027894,13.25357031],[-18.2528,-16.70115377,13.25357031],[-17.7276993,-16.69951815,13.25357031],[-17.0412006,-16.69788252,13.25357031],[-16.7854004,-16.69624689,13.25357031],[-17.2210007,-16.69461126,13.25357031],[-18.2259007,-16.69297564,13.25357031],[-18.3726997,-16.69134001,13.25357031],[-17.9818001,-16.68970438,13.25357031],[-18.7047997,-16.68806875,13.25357031],[-18.5991001,-16.68643312,13.25357031],[-18.4333992,-16.6847975,13.25357031],[-19.1613007,-16.68316187,13.25357031],[-18.5879993,-16.68152624,13.25357031],[-17.8250999,-16.67989061,13.25357031],[-17.5692005,-16.67825499,13.25357031],[-17.0674,-16.67661936,13.25357031],[-15.8276997,-16.67498373,13.25357031],[-15.0116997,-16.6733481,13.25357031],[-15.6323004,-16.67171247,13.25357031],[-15.0773001,-16.67007685,13.25357031],[-14.7591,-16.66844122,13.25357031],[-16.1660004,-16.66680559,13.25357031],[-17.2605991,-16.66516996,13.25357031],[-17.2348003,-16.66353434,13.25357031],[-16.7861996,-16.66189871,13.25357031],[-17.8773003,-16.66026308,13.25357031],[-16.8628006,-16.65862745,13.25357031],[-13.3858004,-16.65699182,13.25357031],[-9.6926203,-16.6553562,13.25357031],[-12.1646996,-16.65372057,13.25357031],[-15.1393995,-16.65208494,13.25357031],[-16.4755993,-16.65044931,13.25357031],[-15.6254997,-16.64881369,13.25357031],[-16.0835991,-16.64717806,13.25357031],[-16.7416,-16.64554243,13.25357031],[-14.4418001,-16.6439068,13.25357031],[-10.7040997,-16.64227118,13.25357031],[-10.1097002,-16.64063555,13.25357031],[-13.9372997,-16.63899992,13.25357031],[-16.1030998,-16.63736429,13.25357031],[-16.1784992,-16.63572866,13.25357031],[-17.0564995,-16.63409304,13.25357031],[-18.7859001,-16.63245741,13.25357031],[-18.2359009,-16.63082178,13.25357031],[-17.5216999,-16.62918615,13.25357031],[-17.0077991,-16.62755053,13.25357031],[-17.6497993,-16.6259149,13.25357031],[-18.3985004,-16.62427927,13.25357031],[-18.8078003,-16.62264364,13.25357031],[-18.3019009,-16.62100801,13.25357031],[-3.0035,-16.78620642,13.25193468],[-2.57358,-16.78457079,13.25193468],[-3.4295001,-16.78293516,13.25193468],[-4.5465102,-16.78129953,13.25193468],[-4.7374001,-16.77966391,13.25193468],[-6.6498399,-16.77802828,13.25193468],[-10.1603003,-16.77639265,13.25193468],[-11.7629995,-16.77475702,13.25193468],[-11.8500004,-16.77312139,13.25193468],[-14.0363998,-16.77148577,13.25193468],[-14.7336998,-16.76985014,13.25193468],[-13.8687,-16.76821451,13.25193468],[-13.9400997,-16.76657888,13.25193468],[-13.9663,-16.76494326,13.25193468],[-14.2965002,-16.76330763,13.25193468],[-14.7610998,-16.761672,13.25193468],[-14.4622002,-16.76003637,13.25193468],[-13.5795002,-16.75840074,13.25193468],[-12.6865997,-16.75676512,13.25193468],[-13.2262001,-16.75512949,13.25193468],[-13.8795004,-16.75349386,13.25193468],[-14.1702995,-16.75185823,13.25193468],[-13.8606005,-16.75022261,13.25193468],[-13.8218002,-16.74858698,13.25193468],[-13.9140997,-16.74695135,13.25193468],[-14.5902996,-16.74531572,13.25193468],[-15.4909,-16.7436801,13.25193468],[-15.8466997,-16.74204447,13.25193468],[-16.7556,-16.74040884,13.25193468],[-18.1119003,-16.73877321,13.25193468],[-18.2527008,-16.73713758,13.25193468],[-18.4092999,-16.73550196,13.25193468],[-18.7922001,-16.73386633,13.25193468],[-18.6807003,-16.7322307,13.25193468],[-18.3675995,-16.73059507,13.25193468],[-18.3362007,-16.72895945,13.25193468],[-18.3766003,-16.72732382,13.25193468],[-18.5391006,-16.72568819,13.25193468],[-18.7280006,-16.72405256,13.25193468],[-18.3715,-16.72241693,13.25193468],[-18.8374996,-16.72078131,13.25193468],[-18.9568996,-16.71914568,13.25193468],[-17.6389008,-16.71751005,13.25193468],[-16.8054008,-16.71587442,13.25193468],[-16.9368,-16.7142388,13.25193468],[-18.0321999,-16.71260317,13.25193468],[-19.1888008,-16.71096754,13.25193468],[-19.0835991,-16.70933191,13.25193468],[-18.9528999,-16.70769628,13.25193468],[-19.3834,-16.70606066,13.25193468],[-18.8798008,-16.70442503,13.25193468],[-18.1580009,-16.7027894,13.25193468],[-18.0524006,-16.70115377,13.25193468],[-17.6441994,-16.69951815,13.25193468],[-17.1028996,-16.69788252,13.25193468],[-16.9747009,-16.69624689,13.25193468],[-17.1793003,-16.69461126,13.25193468],[-17.8631992,-16.69297564,13.25193468],[-17.9037991,-16.69134001,13.25193468],[-17.3904991,-16.68970438,13.25193468],[-17.7294998,-16.68806875,13.25193468],[-17.6606998,-16.68643312,13.25193468],[-17.7268009,-16.6847975,13.25193468],[-18.4006004,-16.68316187,13.25193468],[-17.9039993,-16.68152624,13.25193468],[-17.1403999,-16.67989061,13.25193468],[-17.0993004,-16.67825499,13.25193468],[-16.4036007,-16.67661936,13.25193468],[-15.6430998,-16.67498373,13.25193468],[-15.3021002,-16.6733481,13.25193468],[-15.5407,-16.67171247,13.25193468],[-15.4653997,-16.67007685,13.25193468],[-15.5436001,-16.66844122,13.25193468],[-16.4232998,-16.66680559,13.25193468],[-17.0648003,-16.66516996,13.25193468],[-17.0384998,-16.66353434,13.25193468],[-16.8048992,-16.66189871,13.25193468],[-16.9993,-16.66026308,13.25193468],[-16.3320999,-16.65862745,13.25193468],[-14.3106003,-16.65699182,13.25193468],[-12.4078999,-16.6553562,13.25193468],[-13.4680996,-16.65372057,13.25193468],[-15.0716,-16.65208494,13.25193468],[-15.7862997,-16.65044931,13.25193468],[-15.4519997,-16.64881369,13.25193468],[-15.4862003,-16.64717806,13.25193468],[-15.3590002,-16.64554243,13.25193468],[-14.0771999,-16.6439068,13.25193468],[-12.3613005,-16.64227118,13.25193468],[-12.1838999,-16.64063555,13.25193468],[-13.8016005,-16.63899992,13.25193468],[-15.2357998,-16.63736429,13.25193468],[-15.9122,-16.63572866,13.25193468],[-16.6373997,-16.63409304,13.25193468],[-17.6884995,-16.63245741,13.25193468],[-17.6550007,-16.63082178,13.25193468],[-17.4197006,-16.62918615,13.25193468],[-17.3955002,-16.62755053,13.25193468],[-17.5643997,-16.6259149,13.25193468],[-17.9207993,-16.62427927,13.25193468],[-18.1130009,-16.62264364,13.25193468],[-17.9102001,-16.62100801,13.25193468],[-3.4389,-16.78457079,13.25029905],[-3.9083099,-16.78293516,13.25029905],[-4.6785102,-16.78129953,13.25029905],[-5.17769,-16.77966391,13.25029905],[-6.9563198,-16.77802828,13.25029905],[-9.1114902,-16.77639265,13.25029905],[-10.5243998,-16.77475702,13.25029905],[-11.6057997,-16.77312139,13.25029905],[-12.5857,-16.77148577,13.25029905],[-13.1746998,-16.76985014,13.25029905],[-13.7114,-16.76821451,13.25029905],[-14.0152998,-16.76657888,13.25029905],[-14.3109999,-16.76494326,13.25029905],[-14.6609001,-16.76330763,13.25029905],[-15.0578003,-16.761672,13.25029905],[-15.0021,-16.76003637,13.25029905],[-14.4341002,-16.75840074,13.25029905],[-14.1345997,-16.75676512,13.25029905],[-14.0698996,-16.75512949,13.25029905],[-13.9442997,-16.75349386,13.25029905],[-13.8063002,-16.75185823,13.25029905],[-13.8613997,-16.75022261,13.25029905],[-13.8404999,-16.74858698,13.25029905],[-13.9341002,-16.74695135,13.25029905],[-14.4798002,-16.74531572,13.25029905],[-14.8309002,-16.7436801,13.25029905],[-15.3417997,-16.74204447,13.25029905],[-16.4232998,-16.74040884,13.25029905],[-17.5310001,-16.73877321,13.25029905],[-17.8848,-16.73713758,13.25029905],[-18.1741009,-16.73550196,13.25029905],[-18.4132996,-16.73386633,13.25029905],[-18.4577999,-16.7322307,13.25029905],[-18.3211994,-16.73059507,13.25029905],[-18.1618004,-16.72895945,13.25029905],[-18.2423,-16.72732382,13.25029905],[-18.4787998,-16.72568819,13.25029905],[-18.4554996,-16.72405256,13.25029905],[-18.1742001,-16.72241693,13.25029905],[-18.0053997,-16.72078131,13.25029905],[-17.8211994,-16.71914568,13.25029905],[-17.0279007,-16.71751005,13.25029905],[-15.8906002,-16.71587442,13.25029905],[-16.0408993,-16.7142388,13.25029905],[-17.2590008,-16.71260317,13.25029905],[-17.8108006,-16.71096754,13.25029905],[-18.0844994,-16.70933191,13.25029905],[-18.4235001,-16.70769628,13.25029905],[-18.5209999,-16.70606066,13.25029905],[-18.2555008,-16.70442503,13.25029905],[-17.8834,-16.7027894,13.25029905],[-17.5604,-16.70115377,13.25029905],[-17.4269009,-16.69951815,13.25029905],[-17.2250996,-16.69788252,13.25029905],[-17.0541992,-16.69624689,13.25029905],[-17.1798992,-16.69461126,13.25029905],[-17.4894009,-16.69297564,13.25029905],[-17.4354992,-16.69134001,13.25029905],[-16.2252007,-16.68970438,13.25029905],[-14.3717003,-16.68806875,13.25029905],[-14.7381001,-16.68643312,13.25029905],[-16.4801998,-16.6847975,13.25029905],[-17.0132999,-16.68316187,13.25029905],[-16.8500004,-16.68152624,13.25029905],[-16.3472996,-16.67989061,13.25029905],[-15.9092999,-16.67825499,13.25029905],[-15.6974001,-16.67661936,13.25029905],[-15.3367996,-16.67498373,13.25029905],[-15.1355,-16.6733481,13.25029905],[-15.5671997,-16.67171247,13.25029905],[-15.9350996,-16.67007685,13.25029905],[-16.1504002,-16.66844122,13.25029905],[-16.6965008,-16.66680559,13.25029905],[-17.3050995,-16.66516996,13.25029905],[-17.2943993,-16.66353434,13.25029905],[-16.7879009,-16.66189871,13.25029905],[-16.7112007,-16.66026308,13.25029905],[-16.2814007,-16.65862745,13.25029905],[-15.2198,-16.65699182,13.25029905],[-14.6054001,-16.6553562,13.25029905],[-14.7364998,-16.65372057,13.25029905],[-15.2847996,-16.65208494,13.25029905],[-15.5973997,-16.65044931,13.25029905],[-15.2309999,-16.64881369,13.25029905],[-14.5932999,-16.64717806,13.25029905],[-14.1892996,-16.64554243,13.25029905],[-13.8732004,-16.6439068,13.25029905],[-13.5452995,-16.64227118,13.25029905],[-13.5600004,-16.64063555,13.25029905],[-14.0023003,-16.63899992,13.25029905],[-14.7369003,-16.63736429,13.25029905],[-15.1971998,-16.63572866,13.25029905],[-16.1536007,-16.63409304,13.25029905],[-16.5084,-16.63245741,13.25029905],[-16.8581009,-16.63082178,13.25029905],[-17.2947998,-16.62918615,13.25029905],[-17.5055008,-16.62755053,13.25029905],[-17.4624996,-16.6259149,13.25029905],[-17.2528992,-16.62427927,13.25029905],[-17.0382004,-16.62264364,13.25029905],[-3.4767499,-16.78457079,13.24866342],[-3.8368499,-16.78293516,13.24866342],[-4.5248699,-16.78129953,13.24866342],[-4.5253301,-16.77966391,13.24866342],[-6.3103499,-16.77802828,13.24866342],[-9.6424999,-16.77639265,13.24866342],[-11.1006002,-16.77475702,13.24866342],[-11.1925001,-16.77312139,13.24866342],[-12.5705996,-16.77148577,13.24866342],[-13.0160999,-16.76985014,13.24866342],[-13.5284996,-16.76821451,13.24866342],[-14.6999998,-16.76657888,13.24866342],[-14.7914,-16.76494326,13.24866342],[-15.1550999,-16.76330763,13.24866342],[-16.9983006,-16.761672,13.24866342],[-16.1245995,-16.76003637,13.24866342],[-15.0817003,-16.75840074,13.24866342],[-15.5949001,-16.75676512,13.24866342],[-14.7480001,-16.75512949,13.24866342],[-14.0460997,-16.75349386,13.24866342],[-13.9484997,-16.75185823,13.24866342],[-13.8441,-16.75022261,13.24866342],[-13.9146004,-16.74858698,13.24866342],[-13.9013004,-16.74695135,13.24866342],[-14.3614998,-16.74531572,13.24866342],[-14.2207003,-16.7436801,13.24866342],[-14.2888002,-16.74204447,13.24866342],[-16.2567005,-16.74040884,13.24866342],[-17.6427002,-16.73877321,13.24866342],[-17.7404995,-16.73713758,13.24866342],[-18.0226994,-16.73550196,13.24866342],[-18.2282009,-16.73386633,13.24866342],[-18.3194008,-16.7322307,13.24866342],[-18.1189003,-16.73059507,13.24866342],[-17.7422009,-16.72895945,13.24866342],[-18.1511993,-16.72732382,13.24866342],[-18.4880009,-16.72568819,13.24866342],[-18.6895008,-16.72405256,13.24866342],[-18.2334995,-16.72241693,13.24866342],[-17.8731003,-16.72078131,13.24866342],[-17.8341999,-16.71914568,13.24866342],[-16.7283993,-16.71751005,13.24866342],[-13.9455996,-16.71587442,13.24866342],[-14.1034002,-16.7142388,13.24866342],[-16.7390003,-16.71260317,13.24866342],[-17.1462002,-16.71096754,13.24866342],[-17.5140991,-16.70933191,13.24866342],[-18.0998001,-16.70769628,13.24866342],[-18.2073002,-16.70606066,13.24866342],[-18.1205006,-16.70442503,13.24866342],[-17.6093006,-16.7027894,13.24866342],[-17.2710991,-16.70115377,13.24866342],[-17.3062,-16.69951815,13.24866342],[-16.9661007,-16.69788252,13.24866342],[-16.8679008,-16.69624689,13.24866342],[-17.1583996,-16.69461126,13.24866342],[-17.9143009,-16.69297564,13.24866342],[-18.0070992,-16.69134001,13.24866342],[-15.5087004,-16.68970438,13.24866342],[-11.1018,-16.68806875,13.24866342],[-12.0032997,-16.68643312,13.24866342],[-15.6141996,-16.6847975,13.24866342],[-17.0095997,-16.68316187,13.24866342],[-16.5261002,-16.68152624,13.24866342],[-15.6718998,-16.67989061,13.24866342],[-15.2354002,-16.67825499,13.24866342],[-15.2966995,-16.67661936,13.24866342],[-14.8850002,-16.67498373,13.24866342],[-14.6863003,-16.6733481,13.24866342],[-15.3913002,-16.67171247,13.24866342],[-15.9973001,-16.67007685,13.24866342],[-16.1714001,-16.66844122,13.24866342],[-16.7819996,-16.66680559,13.24866342],[-17.6061993,-16.66516996,13.24866342],[-17.6259003,-16.66353434,13.24866342],[-17.0228004,-16.66189871,13.24866342],[-16.8423004,-16.66026308,13.24866342],[-16.5909004,-16.65862745,13.24866342],[-15.6774998,-16.65699182,13.24866342],[-14.7200003,-16.6553562,13.24866342],[-15.1479998,-16.65372057,13.24866342],[-15.6359997,-16.65208494,13.24866342],[-15.7554998,-16.65044931,13.24866342],[-15.3344002,-16.64881369,13.24866342],[-14.3491001,-16.64717806,13.24866342],[-13.8535004,-16.64554243,13.24866342],[-13.7901001,-16.6439068,13.24866342],[-13.7103004,-16.64227118,13.24866342],[-13.79,-16.64063555,13.24866342],[-14.0384998,-16.63899992,13.24866342],[-14.7687998,-16.63736429,13.24866342],[-14.9914999,-16.63572866,13.24866342],[-15.7954998,-16.63409304,13.24866342],[-16.2278004,-16.63245741,13.24866342],[-16.4484005,-16.63082178,13.24866342],[-17.1301003,-16.62918615,13.24866342],[-17.5543995,-16.62755053,13.24866342],[-17.2994995,-16.6259149,13.24866342],[-16.9018002,-16.62427927,13.24866342],[-3.4486699,-16.78457079,13.2470278],[-3.8001001,-16.78293516,13.2470278],[-4.4257798,-16.78129953,13.2470278],[-4.6272898,-16.77966391,13.2470278],[-6.0729699,-16.77802828,13.2470278],[-9.0870504,-16.77639265,13.2470278],[-10.5781002,-16.77475702,13.2470278],[-10.8116999,-16.77312139,13.2470278],[-12.1141996,-16.77148577,13.2470278],[-12.6737003,-16.76985014,13.2470278],[-12.901,-16.76821451,13.2470278],[-14.0960999,-16.76657888,13.2470278],[-14.2854004,-16.76494326,13.2470278],[-14.4665003,-16.76330763,13.2470278],[-15.8807001,-16.761672,13.2470278],[-15.4102001,-16.76003637,13.2470278],[-14.6611004,-16.75840074,13.2470278],[-15.0065002,-16.75676512,13.2470278],[-14.4396,-16.75512949,13.2470278],[-13.8830004,-16.75349386,13.2470278],[-13.7735996,-16.75185823,13.2470278],[-13.717,-16.75022261,13.2470278],[-13.8081999,-16.74858698,13.2470278],[-13.9198999,-16.74695135,13.2470278],[-14.2039003,-16.74531572,13.2470278],[-14.4604998,-16.7436801,13.2470278],[-14.8297997,-16.74204447,13.2470278],[-16.1727009,-16.74040884,13.2470278],[-17.2942009,-16.73877321,13.2470278],[-17.5715008,-16.73713758,13.2470278],[-17.9193001,-16.73550196,13.2470278],[-18.2148991,-16.73386633,13.2470278],[-18.1924,-16.7322307,13.2470278],[-17.9568996,-16.73059507,13.2470278],[-17.8320007,-16.72895945,13.2470278],[-17.9389992,-16.72732382,13.2470278],[-18.1730003,-16.72568819,13.2470278],[-18.2959003,-16.72405256,13.2470278],[-17.9293003,-16.72241693,13.2470278],[-17.6282005,-16.72078131,13.2470278],[-17.4193001,-16.71914568,13.2470278],[-16.6611004,-16.71751005,13.2470278],[-15.4791002,-16.71587442,13.2470278],[-15.6380997,-16.7142388,13.2470278],[-17.0006008,-16.71260317,13.2470278],[-17.6394005,-16.71096754,13.2470278],[-17.9866009,-16.70933191,13.2470278],[-18.2212009,-16.70769628,13.2470278],[-18.2668991,-16.70606066,13.2470278],[-17.9557991,-16.70442503,13.2470278],[-17.4375,-16.7027894,13.2470278],[-17.0723991,-16.70115377,13.2470278],[-16.9372997,-16.69951815,13.2470278],[-16.9745007,-16.69788252,13.2470278],[-16.9733009,-16.69624689,13.2470278],[-16.8293991,-16.69461126,13.2470278],[-17.0919991,-16.69297564,13.2470278],[-16.8623009,-16.69134001,13.2470278],[-15.5272999,-16.68970438,13.2470278],[-13.8851004,-16.68806875,13.2470278],[-14.0609999,-16.68643312,13.2470278],[-15.3962002,-16.6847975,13.2470278],[-16.2229996,-16.68316187,13.2470278],[-15.9440002,-16.68152624,13.2470278],[-15.2285004,-16.67989061,13.2470278],[-14.8486004,-16.67825499,13.2470278],[-14.7740002,-16.67661936,13.2470278],[-14.8087997,-16.67498373,13.2470278],[-14.7649002,-16.6733481,13.2470278],[-15.2484999,-16.67171247,13.2470278],[-16.0771999,-16.67007685,13.2470278],[-16.4388008,-16.66844122,13.2470278],[-16.9037991,-16.66680559,13.2470278],[-17.3537006,-16.66516996,13.2470278],[-17.3281994,-16.66353434,13.2470278],[-17.0550995,-16.66189871,13.2470278],[-16.6145,-16.66026308,13.2470278],[-16.3770008,-16.65862745,13.2470278],[-16.0748997,-16.65699182,13.2470278],[-15.8177996,-16.6553562,13.2470278],[-15.9282999,-16.65372057,13.2470278],[-16.0268002,-16.65208494,13.2470278],[-16.0438995,-16.65044931,13.2470278],[-15.6894999,-16.64881369,13.2470278],[-15.1422005,-16.64717806,13.2470278],[-14.5123997,-16.64554243,13.2470278],[-13.6329002,-16.6439068,13.2470278],[-12.5263004,-16.64227118,13.2470278],[-12.4087,-16.64063555,13.2470278],[-13.4792995,-16.63899992,13.2470278],[-14.7431002,-16.63736429,13.2470278],[-15.1880999,-16.63572866,13.2470278],[-15.8148003,-16.63409304,13.2470278],[-16.4699001,-16.63245741,13.2470278],[-16.5779991,-16.63082178,13.2470278],[-16.7157993,-16.62918615,13.2470278],[-16.8894997,-16.62755053,13.2470278],[-16.8027992,-16.6259149,13.2470278],[-3.1377001,-16.78457079,13.24539217],[-3.64045,-16.78293516,13.24539217],[-4.1797099,-16.78129953,13.24539217],[-4.4807701,-16.77966391,13.24539217],[-5.8939099,-16.77802828,13.24539217],[-7.2430301,-16.77639265,13.24539217],[-8.28197,-16.77475702,13.24539217],[-9.6565704,-16.77312139,13.24539217],[-10.5923996,-16.77148577,13.24539217],[-11.0430002,-16.76985014,13.24539217],[-11.8218002,-16.76821451,13.24539217],[-12.0762997,-16.76657888,13.24539217],[-12.3916998,-16.76494326,13.24539217],[-13.0155001,-16.76330763,13.24539217],[-13.0951004,-16.761672,13.24539217],[-13.2932997,-16.76003637,13.24539217],[-13.5831003,-16.75840074,13.24539217],[-13.3985004,-16.75676512,13.24539217],[-13.4729996,-16.75512949,13.24539217],[-13.4363003,-16.75349386,13.24539217],[-13.2508001,-16.75185823,13.24539217],[-13.4017,-16.75022261,13.24539217],[-13.4268999,-16.74858698,13.24539217],[-13.6105003,-16.74695135,13.24539217],[-14.2076998,-16.74531572,13.24539217],[-14.9081001,-16.7436801,13.24539217],[-15.4554996,-16.74204447,13.24539217],[-16.2303009,-16.74040884,13.24539217],[-16.9043007,-16.73877321,13.24539217],[-17.3355999,-16.73713758,13.24539217],[-18.0669994,-16.73550196,13.24539217],[-18.8908997,-16.73386633,13.24539217],[-18.5193005,-16.7322307,13.24539217],[-17.9676991,-16.73059507,13.24539217],[-17.7989006,-16.72895945,13.24539217],[-17.8283005,-16.72732382,13.24539217],[-17.9396,-16.72568819,13.24539217],[-17.9575996,-16.72405256,13.24539217],[-17.6532001,-16.72241693,13.24539217],[-17.1462002,-16.72078131,13.24539217],[-16.9517994,-16.71914568,13.24539217],[-16.9256001,-16.71751005,13.24539217],[-17.0489006,-16.71587442,13.24539217],[-17.2252998,-16.7142388,13.24539217],[-17.9267006,-16.71260317,13.24539217],[-19.1695004,-16.71096754,13.24539217],[-19.0517998,-16.70933191,13.24539217],[-18.6313992,-16.70769628,13.24539217],[-18.7250996,-16.70606066,13.24539217],[-18.1233997,-16.70442503,13.24539217],[-16.9102993,-16.7027894,13.24539217],[-15.9926004,-16.70115377,13.24539217],[-16.4771996,-16.69951815,13.24539217],[-17.0746994,-16.69788252,13.24539217],[-17.3386993,-16.69624689,13.24539217],[-16.7085991,-16.69461126,13.24539217],[-16.1567993,-16.69297564,13.24539217],[-16.0212994,-16.69134001,13.24539217],[-15.8120003,-16.68970438,13.24539217],[-15.6645002,-16.68806875,13.24539217],[-15.5534,-16.68643312,13.24539217],[-15.7929001,-16.6847975,13.24539217],[-16.5382004,-16.68316187,13.24539217],[-15.9619999,-16.68152624,13.24539217],[-14.4413004,-16.67989061,13.24539217],[-13.0727997,-16.67825499,13.24539217],[-13.8148003,-16.67661936,13.24539217],[-14.3746004,-16.67498373,13.24539217],[-14.5051003,-16.6733481,13.24539217],[-15.2037001,-16.67171247,13.24539217],[-16.7800999,-16.67007685,13.24539217],[-17.5286007,-16.66844122,13.24539217],[-17.2348995,-16.66680559,13.24539217],[-17.5872002,-16.66516996,13.24539217],[-17.6511993,-16.66353434,13.24539217],[-16.9437008,-16.66189871,13.24539217],[-16.4631004,-16.66026308,13.24539217],[-16.3400002,-16.65862745,13.24539217],[-16.6585007,-16.65699182,13.24539217],[-17.5291004,-16.6553562,13.24539217],[-16.9223003,-16.65372057,13.24539217],[-16.7894001,-16.65208494,13.24539217],[-16.7856998,-16.65044931,13.24539217],[-16.2217999,-16.64881369,13.24539217],[-16.0207005,-16.64717806,13.24539217],[-16.0869007,-16.64554243,13.24539217],[-13.5700998,-16.6439068,13.24539217],[-9.0021801,-16.64227118,13.24539217],[-7.9182501,-16.64063555,13.24539217],[-12.6675997,-16.63899992,13.24539217],[-15.776,-16.63736429,13.24539217],[-16.1198006,-16.63572866,13.24539217],[-16.0622997,-16.63409304,13.24539217],[-17.007,-16.63245741,13.24539217],[-16.8232002,-16.63082178,13.24539217],[-16.566,-16.62918615,13.24539217],[-16.7106991,-16.62755053,13.24539217],[-2.42729,-16.78457079,13.24375654],[-2.9502499,-16.78293516,13.24375654],[-3.78284,-16.78129953,13.24375654],[-3.52953,-16.77966391,13.24375654],[-5.0899,-16.77802828,13.24375654],[-6.7691002,-16.77639265,13.24375654],[-6.5952902,-16.77475702,13.24375654],[-8.5106096,-16.77312139,13.24375654],[-9.8926001,-16.77148577,13.24375654],[-9.8710299,-16.76985014,13.24375654],[-10.9285002,-16.76821451,13.24375654],[-10.8986998,-16.76657888,13.24375654],[-11.0591002,-16.76494326,13.24375654],[-12.0427999,-16.76330763,13.24375654],[-11.5309,-16.761672,13.24375654],[-12.0922003,-16.76003637,13.24375654],[-12.8114004,-16.75840074,13.24375654],[-12.4537001,-16.75676512,13.24375654],[-12.8921003,-16.75512949,13.24375654],[-13.0670004,-16.75349386,13.24375654],[-12.9493999,-16.75185823,13.24375654],[-13.1407003,-16.75022261,13.24375654],[-13.2219,-16.74858698,13.24375654],[-13.2636003,-16.74695135,13.24375654],[-14.0648003,-16.74531572,13.24375654],[-15.3072004,-16.7436801,13.24375654],[-15.5583,-16.74204447,13.24375654],[-16.0247993,-16.74040884,13.24375654],[-17.0737991,-16.73877321,13.24375654],[-17.1546993,-16.73713758,13.24375654],[-17.9549999,-16.73550196,13.24375654],[-20.0830002,-16.73386633,13.24375654],[-18.8553009,-16.7322307,13.24375654],[-17.7064991,-16.73059507,13.24375654],[-17.8472004,-16.72895945,13.24375654],[-17.5067005,-16.72732382,13.24375654],[-17.6648998,-16.72568819,13.24375654],[-18.1772003,-16.72405256,13.24375654],[-17.309,-16.72241693,13.24375654],[-16.7814007,-16.72078131,13.24375654],[-16.7663002,-16.71914568,13.24375654],[-16.9221992,-16.71751005,13.24375654],[-17.5076008,-16.71587442,13.24375654],[-17.5995007,-16.7142388,13.24375654],[-18.2735004,-16.71260317,13.24375654],[-20.3637009,-16.71096754,13.24375654],[-19.6721992,-16.70933191,13.24375654],[-18.6336994,-16.70769628,13.24375654],[-19.1581001,-16.70606066,13.24375654],[-18.1702003,-16.70442503,13.24375654],[-16.3887997,-16.7027894,13.24375654],[-15.1908998,-16.70115377,13.24375654],[-16.0716,-16.69951815,13.24375654],[-17.1581001,-16.69788252,13.24375654],[-17.7817993,-16.69624689,13.24375654],[-16.4706001,-16.69461126,13.24375654],[-15.8839998,-16.69297564,13.24375654],[-15.8603001,-16.69134001,13.24375654],[-15.5915003,-16.68970438,13.24375654],[-15.9722996,-16.68806875,13.24375654],[-15.8077002,-16.68643312,13.24375654],[-15.7256002,-16.6847975,13.24375654],[-17.0317001,-16.68316187,13.24375654],[-15.9602003,-16.68152624,13.24375654],[-13.9357004,-16.67989061,13.24375654],[-12.2173996,-16.67825499,13.24375654],[-13.3262997,-16.67661936,13.24375654],[-14.1800003,-16.67498373,13.24375654],[-14.3948002,-16.6733481,13.24375654],[-15.0363998,-16.67171247,13.24375654],[-16.9885998,-16.67007685,13.24375654],[-17.9046993,-16.66844122,13.24375654],[-16.9333992,-16.66680559,13.24375654],[-17.6658993,-16.66516996,13.24375654],[-17.7402992,-16.66353434,13.24375654],[-16.5921993,-16.66189871,13.24375654],[-16.2723999,-16.66026308,13.24375654],[-16.2752991,-16.65862745,13.24375654],[-16.8544998,-16.65699182,13.24375654],[-17.9300995,-16.6553562,13.24375654],[-17.3829994,-16.65372057,13.24375654],[-16.9062004,-16.65208494,13.24375654],[-16.9657001,-16.65044931,13.24375654],[-16.5597,-16.64881369,13.24375654],[-16.2742004,-16.64717806,13.24375654],[-16.4528999,-16.64554243,13.24375654],[-13.9790001,-16.6439068,13.24375654],[-8.8050003,-16.64227118,13.24375654],[-7.4621201,-16.64063555,13.24375654],[-12.7523003,-16.63899992,13.24375654],[-15.9538002,-16.63736429,13.24375654],[-16.0435009,-16.63572866,13.24375654],[-15.7618999,-16.63409304,13.24375654],[-16.8395004,-16.63245741,13.24375654],[-16.4726009,-16.63082178,13.24375654],[-16.1382008,-16.62918615,13.24375654],[-3.02301,-16.78293516,13.24212091],[-3.91626,-16.78129953,13.24212091],[-4.1933398,-16.77966391,13.24212091],[-5.5269299,-16.77802828,13.24212091],[-6.7554498,-16.77639265,13.24212091],[-7.6020799,-16.77475702,13.24212091],[-8.9924803,-16.77312139,13.24212091],[-10.1183004,-16.77148577,13.24212091],[-10.4205999,-16.76985014,13.24212091],[-10.7988997,-16.76821451,13.24212091],[-11.0071001,-16.76657888,13.24212091],[-11.2188997,-16.76494326,13.24212091],[-11.7479,-16.76330763,13.24212091],[-12.0080004,-16.761672,13.24212091],[-12.3617001,-16.76003637,13.24212091],[-12.6625004,-16.75840074,13.24212091],[-12.7994003,-16.75676512,13.24212091],[-12.7437,-16.75512949,13.24212091],[-12.7579002,-16.75349386,13.24212091],[-12.7856998,-16.75185823,13.24212091],[-12.8114004,-16.75022261,13.24212091],[-12.8846998,-16.74858698,13.24212091],[-13.0513,-16.74695135,13.24212091],[-13.7035999,-16.74531572,13.24212091],[-14.6562004,-16.7436801,13.24212091],[-15.1998997,-16.74204447,13.24212091],[-15.6386003,-16.74040884,13.24212091],[-16.4188004,-16.73877321,13.24212091],[-16.6418991,-16.73713758,13.24212091],[-16.8890991,-16.73550196,13.24212091],[-17.5100994,-16.73386633,13.24212091],[-17.1026001,-16.7322307,13.24212091],[-16.5424995,-16.73059507,13.24212091],[-16.5545998,-16.72895945,13.24212091],[-16.4986,-16.72732382,13.24212091],[-16.7406006,-16.72568819,13.24212091],[-16.9759998,-16.72405256,13.24212091],[-16.7572002,-16.72241693,13.24212091],[-16.5431004,-16.72078131,13.24212091],[-16.4116001,-16.71914568,13.24212091],[-16.5788994,-16.71751005,13.24212091],[-16.8339996,-16.71587442,13.24212091],[-17.0767994,-16.7142388,13.24212091],[-17.6865005,-16.71260317,13.24212091],[-18.5580997,-16.71096754,13.24212091],[-18.5636997,-16.70933191,13.24212091],[-18.1595001,-16.70769628,13.24212091],[-18.0767994,-16.70606066,13.24212091],[-17.5195999,-16.70442503,13.24212091],[-16.5853996,-16.7027894,13.24212091],[-15.9397001,-16.70115377,13.24212091],[-15.9715004,-16.69951815,13.24212091],[-16.1683006,-16.69788252,13.24212091],[-16.1938,-16.69624689,13.24212091],[-15.8429003,-16.69461126,13.24212091],[-15.6306,-16.69297564,13.24212091],[-15.3465004,-16.69134001,13.24212091],[-15.1009998,-16.68970438,13.24212091],[-14.9864998,-16.68806875,13.24212091],[-14.8492002,-16.68643312,13.24212091],[-14.7344999,-16.6847975,13.24212091],[-14.8423996,-16.68316187,13.24212091],[-14.7184,-16.68152624,13.24212091],[-14.3261003,-16.67989061,13.24212091],[-14.0914001,-16.67825499,13.24212091],[-14.0244999,-16.67661936,13.24212091],[-13.7826004,-16.67498373,13.24212091],[-13.6746998,-16.6733481,13.24212091],[-14.2855997,-16.67171247,13.24212091],[-15.0398998,-16.67007685,13.24212091],[-15.5339003,-16.66844122,13.24212091],[-15.8556004,-16.66680559,13.24212091],[-16.5860996,-16.66516996,13.24212091],[-16.5683002,-16.66353434,13.24212091],[-15.9174004,-16.66189871,13.24212091],[-15.2510004,-16.66026308,13.24212091],[-15.4300003,-16.65862745,13.24212091],[-16.2796993,-16.65699182,13.24212091],[-16.8715,-16.6553562,13.24212091],[-17.0032005,-16.65372057,13.24212091],[-17.0433998,-16.65208494,13.24212091],[-17.0795994,-16.65044931,13.24212091],[-16.6345997,-16.64881369,13.24212091],[-16.344101,-16.64717806,13.24212091],[-15.9259005,-16.64554243,13.24212091],[-14.8388996,-16.6439068,13.24212091],[-13.5923004,-16.64227118,13.24212091],[-13.2941999,-16.64063555,13.24212091],[-14.0464001,-16.63899992,13.24212091],[-14.7849998,-16.63736429,13.24212091],[-14.9502001,-16.63572866,13.24212091],[-14.5706997,-16.63409304,13.24212091],[-14.4013996,-16.63245741,13.24212091],[-14.5755997,-16.63082178,13.24212091],[-15.2844,-16.62918615,13.24212091],[-2.5278299,-16.78293516,13.24048529],[-4.1160598,-16.78129953,13.24048529],[-4.8872299,-16.77966391,13.24048529],[-6.0345802,-16.77802828,13.24048529],[-7.8400798,-16.77639265,13.24048529],[-8.8838902,-16.77475702,13.24048529],[-9.7197399,-16.77312139,13.24048529],[-11.0731001,-16.77148577,13.24048529],[-11.6219997,-16.76985014,13.24048529],[-11.0138998,-16.76821451,13.24048529],[-10.4934998,-16.76657888,13.24048529],[-10.7132998,-16.76494326,13.24048529],[-11.7282,-16.76330763,13.24048529],[-12.5608997,-16.761672,13.24048529],[-12.6401997,-16.76003637,13.24048529],[-12.8409004,-16.75840074,13.24048529],[-13.1257,-16.75676512,13.24048529],[-12.8634005,-16.75512949,13.24048529],[-12.5186996,-16.75349386,13.24048529],[-12.3281002,-16.75185823,13.24048529],[-12.4441996,-16.75022261,13.24048529],[-12.1921997,-16.74858698,13.24048529],[-12.0398998,-16.74695135,13.24048529],[-13.1837997,-16.74531572,13.24048529],[-14.0892,-16.7436801,13.24048529],[-14.4466,-16.74204447,13.24048529],[-15.2577,-16.74040884,13.24048529],[-15.8486004,-16.73877321,13.24048529],[-15.9470997,-16.73713758,13.24048529],[-15.6275997,-16.73550196,13.24048529],[-14.6609001,-16.73386633,13.24048529],[-14.9619999,-16.7322307,13.24048529],[-15.0314999,-16.73059507,13.24048529],[-14.3086996,-16.72895945,13.24048529],[-15.0002003,-16.72732382,13.24048529],[-15.8010998,-16.72568819,13.24048529],[-15.8850002,-16.72405256,13.24048529],[-16.1378994,-16.72241693,13.24048529],[-15.9315996,-16.72078131,13.24048529],[-15.8063002,-16.71914568,13.24048529],[-16.1247005,-16.71751005,13.24048529],[-15.7524996,-16.71587442,13.24048529],[-15.8871002,-16.7142388,13.24048529],[-17.1058998,-16.71260317,13.24048529],[-17.7964001,-16.71096754,13.24048529],[-17.8630009,-16.70933191,13.24048529],[-17.6252995,-16.70769628,13.24048529],[-17.4657993,-16.70606066,13.24048529],[-17.1625996,-16.70442503,13.24048529],[-16.3031006,-16.7027894,13.24048529],[-15.7150002,-16.70115377,13.24048529],[-15.6775999,-16.69951815,13.24048529],[-15.0501003,-16.69788252,13.24048529],[-14.4754,-16.69624689,13.24048529],[-15.0618,-16.69461126,13.24048529],[-14.9888,-16.69297564,13.24048529],[-14.7875004,-16.69134001,13.24048529],[-14.6471996,-16.68970438,13.24048529],[-13.9570999,-16.68806875,13.24048529],[-13.9562998,-16.68643312,13.24048529],[-13.8950005,-16.6847975,13.24048529],[-12.7762003,-16.68316187,13.24048529],[-13.3838997,-16.68152624,13.24048529],[-14.7341003,-16.67989061,13.24048529],[-15.8204002,-16.67825499,13.24048529],[-14.7861996,-16.67661936,13.24048529],[-12.9021997,-16.67498373,13.24048529],[-11.5169001,-16.6733481,13.24048529],[-13.1351995,-16.67171247,13.24048529],[-13.2946997,-16.67007685,13.24048529],[-12.8871002,-16.66844122,13.24048529],[-14.8575001,-16.66680559,13.24048529],[-16.5237999,-16.66516996,13.24048529],[-16.6530991,-16.66353434,13.24048529],[-15.1545,-16.66189871,13.24048529],[-12.4708004,-16.66026308,13.24048529],[-13.3205996,-16.65862745,13.24048529],[-15.9070997,-16.65699182,13.24048529],[-16.6634998,-16.6553562,13.24048529],[-16.8465004,-16.65372057,13.24048529],[-17.1636009,-16.65208494,13.24048529],[-17.3285007,-16.65044931,13.24048529],[-16.9943008,-16.64881369,13.24048529],[-16.6165009,-16.64717806,13.24048529],[-16.7112007,-16.64554243,13.24048529],[-15.9741001,-16.6439068,13.24048529],[-16.2898998,-16.64227118,13.24048529],[-16.6205006,-16.64063555,13.24048529],[-15.1050997,-16.63899992,13.24048529],[-15.0320997,-16.63736429,13.24048529],[-14.9090004,-16.63572866,13.24048529],[-13.5713997,-16.63409304,13.24048529],[-11.0932999,-16.63245741,13.24048529],[-12.2881002,-16.63082178,13.24048529],[-1.81862,-16.78293516,13.23884966],[-4.1040401,-16.78129953,13.23884966],[-5.0597401,-16.77966391,13.23884966],[-6.0307398,-16.77802828,13.23884966],[-8.4222698,-16.77639265,13.23884966],[-9.3150902,-16.77475702,13.23884966],[-9.8842001,-16.77312139,13.23884966],[-11.8254004,-16.77148577,13.23884966],[-12.4221001,-16.76985014,13.23884966],[-11.1083002,-16.76821451,13.23884966],[-9.9275799,-16.76657888,13.23884966],[-10.0074997,-16.76494326,13.23884966],[-11.5636997,-16.76330763,13.23884966],[-12.9691,-16.761672,13.23884966],[-12.7228003,-16.76003637,13.23884966],[-12.6696997,-16.75840074,13.23884966],[-13.4338999,-16.75676512,13.23884966],[-12.8699999,-16.75512949,13.23884966],[-12.3149996,-16.75349386,13.23884966],[-12.1436005,-16.75185823,13.23884966],[-12.1457996,-16.75022261,13.23884966],[-11.8111,-16.74858698,13.23884966],[-11.4179001,-16.74695135,13.23884966],[-12.8457003,-16.74531572,13.23884966],[-14.0174999,-16.7436801,13.23884966],[-14.2463999,-16.74204447,13.23884966],[-14.8381996,-16.74040884,13.23884966],[-15.8816004,-16.73877321,13.23884966],[-15.7231998,-16.73713758,13.23884966],[-14.7854004,-16.73550196,13.23884966],[-13.8950996,-16.73386633,13.23884966],[-14.1099005,-16.7322307,13.23884966],[-14.0790005,-16.73059507,13.23884966],[-13.6140003,-16.72895945,13.23884966],[-14.2882004,-16.72732382,13.23884966],[-15.2427998,-16.72568819,13.23884966],[-15.6998997,-16.72405256,13.23884966],[-15.5927,-16.72241693,13.23884966],[-15.5642004,-16.72078131,13.23884966],[-15.6072998,-16.71914568,13.23884966],[-15.7041998,-16.71751005,13.23884966],[-15.4193001,-16.71587442,13.23884966],[-15.5665998,-16.7142388,13.23884966],[-16.8318005,-16.71260317,13.23884966],[-17.7269001,-16.71096754,13.23884966],[-17.6310997,-16.70933191,13.23884966],[-17.1557007,-16.70769628,13.23884966],[-17.3530998,-16.70606066,13.23884966],[-16.8775997,-16.70442503,13.23884966],[-16.1156006,-16.7027894,13.23884966],[-15.6745996,-16.70115377,13.23884966],[-15.6056995,-16.69951815,13.23884966],[-14.7068005,-16.69788252,13.23884966],[-14.2388,-16.69624689,13.23884966],[-14.677,-16.69461126,13.23884966],[-14.7438002,-16.69297564,13.23884966],[-14.7304001,-16.69134001,13.23884966],[-14.3507004,-16.68970438,13.23884966],[-13.8657999,-16.68806875,13.23884966],[-13.8170996,-16.68643312,13.23884966],[-13.5209999,-16.6847975,13.23884966],[-12.7030001,-16.68316187,13.23884966],[-13.2417002,-16.68152624,13.23884966],[-14.6606998,-16.67989061,13.23884966],[-15.7649002,-16.67825499,13.23884966],[-14.8291998,-16.67661936,13.23884966],[-13.1499004,-16.67498373,13.23884966],[-11.8282003,-16.6733481,13.23884966],[-13.2009001,-16.67171247,13.23884966],[-13.2356997,-16.67007685,13.23884966],[-12.9195995,-16.66844122,13.23884966],[-14.4764996,-16.66680559,13.23884966],[-16.0629005,-16.66516996,13.23884966],[-16.3383999,-16.66353434,13.23884966],[-14.9642,-16.66189871,13.23884966],[-13.0523005,-16.66026308,13.23884966],[-13.8253002,-16.65862745,13.23884966],[-16.0384007,-16.65699182,13.23884966],[-16.7681999,-16.6553562,13.23884966],[-17.0277004,-16.65372057,13.23884966],[-17.3089008,-16.65208494,13.23884966],[-17.4321995,-16.65044931,13.23884966],[-17.2947998,-16.64881369,13.23884966],[-16.6937008,-16.64717806,13.23884966],[-16.5790997,-16.64554243,13.23884966],[-16.1284008,-16.6439068,13.23884966],[-16.2922001,-16.64227118,13.23884966],[-16.3094997,-16.64063555,13.23884966],[-15.2042999,-16.63899992,13.23884966],[-14.9337997,-16.63736429,13.23884966],[-14.6498003,-16.63572866,13.23884966],[-13.4851999,-16.63409304,13.23884966],[-12.0162001,-16.63245741,13.23884966],[-2.5795701,-16.78293516,13.23721403],[-4.0794702,-16.78129953,13.23721403],[-5.0157499,-16.77966391,13.23721403],[-6.5547099,-16.77802828,13.23721403],[-8.2678699,-16.77639265,13.23721403],[-9.6585598,-16.77475702,13.23721403],[-10.6540003,-16.77312139,13.23721403],[-11.5499001,-16.77148577,13.23721403],[-11.9233999,-16.76985014,13.23721403],[-11.4188995,-16.76821451,13.23721403],[-10.6596003,-16.76657888,13.23721403],[-10.6900997,-16.76494326,13.23721403],[-11.4885998,-16.76330763,13.23721403],[-12.1701002,-16.761672,13.23721403],[-12.3497,-16.76003637,13.23721403],[-12.3108997,-16.75840074,13.23721403],[-12.5127001,-16.75676512,13.23721403],[-12.3641996,-16.75512949,13.23721403],[-12.1634998,-16.75349386,13.23721403],[-12.1122999,-16.75185823,13.23721403],[-12.1654997,-16.75022261,13.23721403],[-12.1293001,-16.74858698,13.23721403],[-12.2983999,-16.74695135,13.23721403],[-12.9414997,-16.74531572,13.23721403],[-13.5282001,-16.7436801,13.23721403],[-13.9995003,-16.74204447,13.23721403],[-14.3491001,-16.74040884,13.23721403],[-14.9713001,-16.73877321,13.23721403],[-14.7672005,-16.73713758,13.23721403],[-14.1693001,-16.73550196,13.23721403],[-13.6749001,-16.73386633,13.23721403],[-13.5295,-16.7322307,13.23721403],[-13.5007,-16.73059507,13.23721403],[-13.4778004,-16.72895945,13.23721403],[-13.8101997,-16.72732382,13.23721403],[-14.441,-16.72568819,13.23721403],[-14.8051996,-16.72405256,13.23721403],[-15.0459003,-16.72241693,13.23721403],[-15.3499002,-16.72078131,13.23721403],[-15.5510998,-16.71914568,13.23721403],[-15.5384998,-16.71751005,13.23721403],[-15.5253,-16.71587442,13.23721403],[-15.8445997,-16.7142388,13.23721403],[-16.3759003,-16.71260317,13.23721403],[-16.7390003,-16.71096754,13.23721403],[-16.7852001,-16.70933191,13.23721403],[-16.5312996,-16.70769628,13.23721403],[-16.2852001,-16.70606066,13.23721403],[-16.0683994,-16.70442503,13.23721403],[-16.1044998,-16.7027894,13.23721403],[-15.9523001,-16.70115377,13.23721403],[-15.5614004,-16.69951815,13.23721403],[-15.0838003,-16.69788252,13.23721403],[-14.8620996,-16.69624689,13.23721403],[-14.7502003,-16.69461126,13.23721403],[-14.7802,-16.69297564,13.23721403],[-14.7255001,-16.69134001,13.23721403],[-14.3455,-16.68970438,13.23721403],[-13.9017,-16.68806875,13.23721403],[-13.7603998,-16.68643312,13.23721403],[-13.6548004,-16.6847975,13.23721403],[-13.3965998,-16.68316187,13.23721403],[-13.6008997,-16.68152624,13.23721403],[-14.3141003,-16.67989061,13.23721403],[-14.8569002,-16.67825499,13.23721403],[-14.7560997,-16.67661936,13.23721403],[-14.7061996,-16.67498373,13.23721403],[-14.8189001,-16.6733481,13.23721403],[-14.3940001,-16.67171247,13.23721403],[-13.8281002,-16.67007685,13.23721403],[-13.8083,-16.66844122,13.23721403],[-14.3126001,-16.66680559,13.23721403],[-15.0430002,-16.66516996,13.23721403],[-15.1763,-16.66353434,13.23721403],[-15.3621998,-16.66189871,13.23721403],[-15.5537996,-16.66026308,13.23721403],[-15.9167004,-16.65862745,13.23721403],[-16.7924004,-16.65699182,13.23721403],[-17.6208,-16.6553562,13.23721403],[-17.6833,-16.65372057,13.23721403],[-17.8096008,-16.65208494,13.23721403],[-18.0912991,-16.65044931,13.23721403],[-17.5207005,-16.64881369,13.23721403],[-16.7439995,-16.64717806,13.23721403],[-16.0536003,-16.64554243,13.23721403],[-15.9373999,-16.6439068,13.23721403],[-15.8971996,-16.64227118,13.23721403],[-15.6967001,-16.64063555,13.23721403],[-15.0740004,-16.63899992,13.23721403],[-14.5925999,-16.63736429,13.23721403],[-14.2985001,-16.63572866,13.23721403],[-13.8105001,-16.63409304,13.23721403],[-4.0894899,-16.78129953,13.2355784],[-4.9758601,-16.77966391,13.2355784],[-6.3984299,-16.77802828,13.2355784],[-9.4066496,-16.77639265,13.2355784],[-10.9862003,-16.77475702,13.2355784],[-11.2837,-16.77312139,13.2355784],[-12.4948997,-16.77148577,13.2355784],[-12.9791002,-16.76985014,13.2355784],[-11.6822996,-16.76821451,13.2355784],[-10.3862,-16.76657888,13.2355784],[-10.3396997,-16.76494326,13.2355784],[-11.4088001,-16.76330763,13.2355784],[-12.2177,-16.761672,13.2355784],[-12.1962996,-16.76003637,13.2355784],[-11.9181995,-16.75840074,13.2355784],[-11.3290005,-16.75676512,13.2355784],[-11.7178001,-16.75512949,13.2355784],[-11.9183998,-16.75349386,13.2355784],[-11.6410999,-16.75185823,13.2355784],[-12.0562,-16.75022261,13.2355784],[-12.2982998,-16.74858698,13.2355784],[-12.3147001,-16.74695135,13.2355784],[-12.8661003,-16.74531572,13.2355784],[-13.2480001,-16.7436801,13.2355784],[-13.3430004,-16.74204447,13.2355784],[-14.0093002,-16.74040884,13.2355784],[-14.4132996,-16.73877321,13.2355784],[-14.3722,-16.73713758,13.2355784],[-13.4204998,-16.73550196,13.2355784],[-12.1973,-16.73386633,13.2355784],[-12.5389004,-16.7322307,13.2355784],[-12.6885004,-16.73059507,13.2355784],[-12.1849003,-16.72895945,13.2355784],[-12.9617004,-16.72732382,13.2355784],[-13.8079996,-16.72568819,13.2355784],[-14.0198002,-16.72405256,13.2355784],[-14.5148001,-16.72241693,13.2355784],[-15.4898996,-16.72078131,13.2355784],[-15.9813995,-16.71914568,13.2355784],[-15.4123001,-16.71751005,13.2355784],[-15.6044998,-16.71587442,13.2355784],[-15.7063999,-16.7142388,13.2355784],[-15.8059998,-16.71260317,13.2355784],[-16.2527008,-16.71096754,13.2355784],[-16.2031994,-16.70933191,13.2355784],[-15.7327003,-16.70769628,13.2355784],[-14.7693005,-16.70606066,13.2355784],[-15.3570004,-16.70442503,13.2355784],[-16.0594006,-16.7027894,13.2355784],[-16.9046001,-16.70115377,13.2355784],[-15.8374004,-16.69951815,13.2355784],[-15.1341,-16.69788252,13.2355784],[-15.1049004,-16.69624689,13.2355784],[-14.7870998,-16.69461126,13.2355784],[-14.9442997,-16.69297564,13.2355784],[-15.0321999,-16.69134001,13.2355784],[-14.1629,-16.68970438,13.2355784],[-13.5642996,-16.68806875,13.2355784],[-13.5386,-16.68643312,13.2355784],[-13.4931002,-16.6847975,13.2355784],[-13.0496998,-16.68316187,13.2355784],[-13.4112997,-16.68152624,13.2355784],[-14.3192997,-16.67989061,13.2355784],[-14.9053001,-16.67825499,13.2355784],[-14.948,-16.67661936,13.2355784],[-16.0226002,-16.67498373,13.2355784],[-17.5608006,-16.6733481,13.2355784],[-15.3842001,-16.67171247,13.2355784],[-13.7722998,-16.67007685,13.2355784],[-13.3472004,-16.66844122,13.2355784],[-14.0429001,-16.66680559,13.2355784],[-14.5551996,-16.66516996,13.2355784],[-14.6787996,-16.66353434,13.2355784],[-15.5235004,-16.66189871,13.2355784],[-16.5545006,-16.66026308,13.2355784],[-16.6504993,-16.65862745,13.2355784],[-17.4608994,-16.65699182,13.2355784],[-18.8232994,-16.6553562,13.2355784],[-18.3484993,-16.65372057,13.2355784],[-18.3195,-16.65208494,13.2355784],[-19.2124004,-16.65044931,13.2355784],[-17.9612999,-16.64881369,13.2355784],[-16.2402992,-16.64717806,13.2355784],[-15.4078999,-16.64554243,13.2355784],[-16.0037003,-16.6439068,13.2355784],[-15.8980999,-16.64227118,13.2355784],[-15.9108,-16.64063555,13.2355784],[-15.1054001,-16.63899992,13.2355784],[-14.4893999,-16.63736429,13.2355784],[-14.3783998,-16.63572866,13.2355784],[-3.97697,-16.78129953,13.23394277],[-4.9520702,-16.77966391,13.23394277],[-6.3183098,-16.77802828,13.23394277],[-9.8555002,-16.77639265,13.23394277],[-11.3218002,-16.77475702,13.23394277],[-11.5459995,-16.77312139,13.23394277],[-12.8525,-16.77148577,13.23394277],[-13.3733997,-16.76985014,13.23394277],[-11.9905005,-16.76821451,13.23394277],[-10.3448,-16.76657888,13.23394277],[-10.2642002,-16.76494326,13.23394277],[-11.5853004,-16.76330763,13.23394277],[-12.3209,-16.761672,13.23394277],[-12.2629995,-16.76003637,13.23394277],[-11.8992996,-16.75840074,13.23394277],[-11.2453003,-16.75676512,13.23394277],[-11.7567997,-16.75512949,13.23394277],[-11.9832001,-16.75349386,13.23394277],[-11.6477003,-16.75185823,13.23394277],[-12.2271996,-16.75022261,13.23394277],[-12.4961004,-16.74858698,13.23394277],[-12.4118004,-16.74695135,13.23394277],[-13.0347004,-16.74531572,13.23394277],[-13.3415003,-16.7436801,13.23394277],[-13.3252001,-16.74204447,13.23394277],[-13.9359999,-16.74040884,13.23394277],[-14.2947998,-16.73877321,13.23394277],[-14.1334,-16.73713758,13.23394277],[-13.1657,-16.73550196,13.23394277],[-12.1553001,-16.73386633,13.23394277],[-12.3577003,-16.7322307,13.23394277],[-12.5588999,-16.73059507,13.23394277],[-12.2189999,-16.72895945,13.23394277],[-12.7678003,-16.72732382,13.23394277],[-13.5991001,-16.72568819,13.23394277],[-13.9728003,-16.72405256,13.23394277],[-14.1809998,-16.72241693,13.23394277],[-15.1106005,-16.72078131,13.23394277],[-15.5155001,-16.71914568,13.23394277],[-14.8859997,-16.71751005,13.23394277],[-15.2545004,-16.71587442,13.23394277],[-15.4174004,-16.7142388,13.23394277],[-15.5172997,-16.71260317,13.23394277],[-16.0662003,-16.71096754,13.23394277],[-16.0778999,-16.70933191,13.23394277],[-15.5732002,-16.70769628,13.23394277],[-14.9881001,-16.70606066,13.23394277],[-15.2070999,-16.70442503,13.23394277],[-15.9090004,-16.7027894,13.23394277],[-16.5142002,-16.70115377,13.23394277],[-15.6384001,-16.69951815,13.23394277],[-14.9132996,-16.69788252,13.23394277],[-14.7886,-16.69624689,13.23394277],[-14.5937996,-16.69461126,13.23394277],[-14.8093996,-16.69297564,13.23394277],[-14.8261003,-16.69134001,13.23394277],[-14.3694,-16.68970438,13.23394277],[-13.8874998,-16.68806875,13.23394277],[-13.7096004,-16.68643312,13.23394277],[-13.5802002,-16.6847975,13.23394277],[-13.2887001,-16.68316187,13.23394277],[-13.6205997,-16.68152624,13.23394277],[-14.4860001,-16.67989061,13.23394277],[-14.9088001,-16.67825499,13.23394277],[-15.2392998,-16.67661936,13.23394277],[-15.9692001,-16.67498373,13.23394277],[-16.4958,-16.6733481,13.23394277],[-15.1068001,-16.67171247,13.23394277],[-13.7825003,-16.67007685,13.23394277],[-13.4703999,-16.66844122,13.23394277],[-14.0969,-16.66680559,13.23394277],[-14.5439997,-16.66516996,13.23394277],[-14.96,-16.66353434,13.23394277],[-15.8491001,-16.66189871,13.23394277],[-16.5834999,-16.66026308,13.23394277],[-16.9706001,-16.65862745,13.23394277],[-17.6032009,-16.65699182,13.23394277],[-18.2845001,-16.6553562,13.23394277],[-18.2206993,-16.65372057,13.23394277],[-18.2604008,-16.65208494,13.23394277],[-18.4008007,-16.65044931,13.23394277],[-17.6611996,-16.64881369,13.23394277],[-16.6571007,-16.64717806,13.23394277],[-16.0937996,-16.64554243,13.23394277],[-16.1131992,-16.6439068,13.23394277],[-16.0002003,-16.64227118,13.23394277],[-15.7981005,-16.64063555,13.23394277],[-15.3529997,-16.63899992,13.23394277],[-14.8649998,-16.63736429,13.23394277],[-14.6034002,-16.63572866,13.23394277],[-2.42642,-16.78293516,13.23230715],[-3.79127,-16.78129953,13.23230715],[-4.73107,-16.77966391,13.23230715],[-6.78719,-16.77802828,13.23230715],[-9.2405901,-16.77639265,13.23230715],[-11.1724005,-16.77475702,13.23230715],[-12.0332003,-16.77312139,13.23230715],[-12.7699003,-16.77148577,13.23230715],[-13.1636,-16.76985014,13.23230715],[-12.3638,-16.76821451,13.23230715],[-11.4231005,-16.76657888,13.23230715],[-11.2851,-16.76494326,13.23230715],[-11.7877998,-16.76330763,13.23230715],[-12.1913996,-16.761672,13.23230715],[-12.3512001,-16.76003637,13.23230715],[-12.3534002,-16.75840074,13.23230715],[-12.4754,-16.75676512,13.23230715],[-12.4958,-16.75512949,13.23230715],[-12.6131001,-16.75349386,13.23230715],[-12.7470999,-16.75185823,13.23230715],[-12.9476995,-16.75022261,13.23230715],[-13.2700005,-16.74858698,13.23230715],[-13.6035995,-16.74695135,13.23230715],[-13.7630997,-16.74531572,13.23230715],[-13.9411001,-16.7436801,13.23230715],[-14.0952997,-16.74204447,13.23230715],[-14.0888004,-16.74040884,13.23230715],[-14.1533003,-16.73877321,13.23230715],[-13.9202003,-16.73713758,13.23230715],[-13.3100996,-16.73550196,13.23230715],[-12.9775,-16.73386633,13.23230715],[-12.8301001,-16.7322307,13.23230715],[-12.6206999,-16.73059507,13.23230715],[-12.5002003,-16.72895945,13.23230715],[-12.9133997,-16.72732382,13.23230715],[-13.5223999,-16.72568819,13.23230715],[-13.8704004,-16.72405256,13.23230715],[-13.7840004,-16.72241693,13.23230715],[-13.4229002,-16.72078131,13.23230715],[-13.2531996,-16.71914568,13.23230715],[-13.7737999,-16.71751005,13.23230715],[-14.0671997,-16.71587442,13.23230715],[-14.3654003,-16.7142388,13.23230715],[-15.1878996,-16.71260317,13.23230715],[-15.9884005,-16.71096754,13.23230715],[-16.0701008,-16.70933191,13.23230715],[-15.5145998,-16.70769628,13.23230715],[-15.0108995,-16.70606066,13.23230715],[-15.0827999,-16.70442503,13.23230715],[-15.6665001,-16.7027894,13.23230715],[-15.8078003,-16.70115377,13.23230715],[-15.1097002,-16.69951815,13.23230715],[-13.6648998,-16.69788252,13.23230715],[-12.9090996,-16.69624689,13.23230715],[-13.7667999,-16.69461126,13.23230715],[-14.4996004,-16.69297564,13.23230715],[-14.6393003,-16.69134001,13.23230715],[-14.5448999,-16.68970438,13.23230715],[-14.5824003,-16.68806875,13.23230715],[-14.4545002,-16.68643312,13.23230715],[-13.7876997,-16.6847975,13.23230715],[-13.3343,-16.68316187,13.23230715],[-13.6618996,-16.68152624,13.23230715],[-14.4944,-16.67989061,13.23230715],[-14.9919004,-16.67825499,13.23230715],[-15.2655001,-16.67661936,13.23230715],[-15.7435999,-16.67498373,13.23230715],[-15.8411999,-16.6733481,13.23230715],[-14.7412996,-16.67171247,13.23230715],[-13.0628996,-16.67007685,13.23230715],[-12.5578003,-16.66844122,13.23230715],[-13.7578001,-16.66680559,13.23230715],[-14.9309998,-16.66516996,13.23230715],[-15.4236002,-16.66353434,13.23230715],[-16.2210999,-16.66189871,13.23230715],[-17.1919003,-16.66026308,13.23230715],[-17.4743996,-16.65862745,13.23230715],[-17.7740993,-16.65699182,13.23230715],[-18.2376995,-16.6553562,13.23230715],[-18.2609005,-16.65372057,13.23230715],[-17.8185997,-16.65208494,13.23230715],[-17.4115009,-16.65044931,13.23230715],[-17.2644005,-16.64881369,13.23230715],[-17.0007992,-16.64717806,13.23230715],[-16.8097,-16.64554243,13.23230715],[-16.3504009,-16.6439068,13.23230715],[-15.9085999,-16.64227118,13.23230715],[-15.6190996,-16.64063555,13.23230715],[-15.5944004,-16.63899992,13.23230715],[-15.5174999,-16.63736429,13.23230715],[-1.51363,-16.78293516,13.23067152],[-3.36622,-16.78129953,13.23067152],[-3.58969,-16.77966391,13.23067152],[-5.8018799,-16.77802828,13.23067152],[-10.3248997,-16.77639265,13.23067152],[-12.4354,-16.77475702,13.23067152],[-12.2502003,-16.77312139,13.23067152],[-13.8386002,-16.77148577,13.23067152],[-14.5089998,-16.76985014,13.23067152],[-12.8380003,-16.76821451,13.23067152],[-10.9702997,-16.76657888,13.23067152],[-10.8456001,-16.76494326,13.23067152],[-12.0570002,-16.76330763,13.23067152],[-12.5200005,-16.761672,13.23067152],[-12.5599003,-16.76003637,13.23067152],[-12.7540998,-16.75840074,13.23067152],[-13.2088003,-16.75676512,13.23067152],[-13.0727997,-16.75512949,13.23067152],[-13.1652002,-16.75349386,13.23067152],[-13.4844999,-16.75185823,13.23067152],[-13.4892998,-16.75022261,13.23067152],[-14.1896,-16.74858698,13.23067152],[-14.6967001,-16.74695135,13.23067152],[-14.3310003,-16.74531572,13.23067152],[-14.5390997,-16.7436801,13.23067152],[-14.6576004,-16.74204447,13.23067152],[-14.2189999,-16.74040884,13.23067152],[-14.29,-16.73877321,13.23067152],[-14.1498003,-16.73713758,13.23067152],[-13.4630003,-16.73550196,13.23067152],[-13.0682001,-16.73386633,13.23067152],[-13.0191002,-16.7322307,13.23067152],[-12.6145,-16.73059507,13.23067152],[-11.4595003,-16.72895945,13.23067152],[-12.5552998,-16.72732382,13.23067152],[-13.6819,-16.72568819,13.23067152],[-13.8069,-16.72405256,13.23067152],[-13.5284996,-16.72241693,13.23067152],[-11.8449001,-16.72078131,13.23067152],[-10.8477001,-16.71914568,13.23067152],[-12.9357996,-16.71751005,13.23067152],[-13.0604,-16.71587442,13.23067152],[-13.0979996,-16.7142388,13.23067152],[-15.0235996,-16.71260317,13.23067152],[-16.9433002,-16.71096754,13.23067152],[-16.6791,-16.70933191,13.23067152],[-15.2567997,-16.70769628,13.23067152],[-13.5509005,-16.70606066,13.23067152],[-14.5592003,-16.70442503,13.23067152],[-15.7867002,-16.7027894,13.23067152],[-16.0869007,-16.70115377,13.23067152],[-15.2946997,-16.69951815,13.23067152],[-12.1766005,-16.69788252,13.23067152],[-9.6658401,-16.69624689,13.23067152],[-13.1933002,-16.69461126,13.23067152],[-14.5721998,-16.69297564,13.23067152],[-14.6500998,-16.69134001,13.23067152],[-14.8240995,-16.68970438,13.23067152],[-15.2098999,-16.68806875,13.23067152],[-15.1422005,-16.68643312,13.23067152],[-14.0552998,-16.6847975,13.23067152],[-12.6508999,-16.68316187,13.23067152],[-13.1836996,-16.68152624,13.23067152],[-14.6985998,-16.67989061,13.23067152],[-15.0566998,-16.67825499,13.23067152],[-15.2306995,-16.67661936,13.23067152],[-15.9052,-16.67498373,13.23067152],[-16.6364002,-16.6733481,13.23067152],[-15.0946999,-16.67171247,13.23067152],[-12.0986996,-16.67007685,13.23067152],[-10.6039,-16.66844122,13.23067152],[-13.4938002,-16.66680559,13.23067152],[-15.3372002,-16.66516996,13.23067152],[-15.651,-16.66353434,13.23067152],[-16.4703999,-16.66189871,13.23067152],[-17.8437996,-16.66026308,13.23067152],[-17.8250008,-16.65862745,13.23067152],[-18.0755997,-16.65699182,13.23067152],[-18.5839996,-16.6553562,13.23067152],[-18.3588009,-16.65372057,13.23067152],[-17.5960999,-16.65208494,13.23067152],[-16.9346008,-16.65044931,13.23067152],[-17.2014008,-16.64881369,13.23067152],[-17.0699997,-16.64717806,13.23067152],[-17.0842991,-16.64554243,13.23067152],[-16.5405998,-16.6439068,13.23067152],[-15.7579002,-16.64227118,13.23067152],[-15.4938002,-16.64063555,13.23067152],[-15.6914997,-16.63899992,13.23067152],[-1.61392,-16.78293516,13.22903589],[-3.3057201,-16.78129953,13.22903589],[-3.77053,-16.77966391,13.22903589],[-5.8973098,-16.77802828,13.22903589],[-10.2146997,-16.77639265,13.22903589],[-12.2866001,-16.77475702,13.22903589],[-12.4822998,-16.77312139,13.22903589],[-13.8634996,-16.77148577,13.22903589],[-14.2957001,-16.76985014,13.22903589],[-13.1501999,-16.76821451,13.22903589],[-11.5801001,-16.76657888,13.22903589],[-11.4441004,-16.76494326,13.22903589],[-12.4473,-16.76330763,13.22903589],[-12.6747999,-16.761672,13.22903589],[-12.7973003,-16.76003637,13.22903589],[-13.0951996,-16.75840074,13.22903589],[-13.1721001,-16.75676512,13.22903589],[-13.2151003,-16.75512949,13.22903589],[-13.3573999,-16.75349386,13.22903589],[-13.5183001,-16.75185823,13.22903589],[-13.8295002,-16.75022261,13.22903589],[-14.3224001,-16.74858698,13.22903589],[-14.6266003,-16.74695135,13.22903589],[-14.6079998,-16.74531572,13.22903589],[-14.6773996,-16.7436801,13.22903589],[-14.6563997,-16.74204447,13.22903589],[-14.3859997,-16.74040884,13.22903589],[-14.1213999,-16.73877321,13.22903589],[-13.8577003,-16.73713758,13.22903589],[-13.5249004,-16.73550196,13.22903589],[-13.1912003,-16.73386633,13.22903589],[-13.2426004,-16.7322307,13.22903589],[-13.2268,-16.73059507,13.22903589],[-12.7108002,-16.72895945,13.22903589],[-13.5116997,-16.72732382,13.22903589],[-14.1254997,-16.72568819,13.22903589],[-14.1793003,-16.72405256,13.22903589],[-13.9301996,-16.72241693,13.22903589],[-12.7953997,-16.72078131,13.22903589],[-12.2574997,-16.71914568,13.22903589],[-13.1302996,-16.71751005,13.22903589],[-13.2442999,-16.71587442,13.22903589],[-13.4794998,-16.7142388,13.22903589],[-14.8119001,-16.71260317,13.22903589],[-16.1268997,-16.71096754,13.22903589],[-16.2859993,-16.70933191,13.22903589],[-15.6995001,-16.70769628,13.22903589],[-15.0290003,-16.70606066,13.22903589],[-15.5312004,-16.70442503,13.22903589],[-16.2966995,-16.7027894,13.22903589],[-16.3162003,-16.70115377,13.22903589],[-15.8796997,-16.69951815,13.22903589],[-14.2019997,-16.69788252,13.22903589],[-13.0579004,-16.69624689,13.22903589],[-14.4069996,-16.69461126,13.22903589],[-15.0298004,-16.69297564,13.22903589],[-15.1077003,-16.69134001,13.22903589],[-15.2222996,-16.68970438,13.22903589],[-15.1302996,-16.68806875,13.22903589],[-14.9489002,-16.68643312,13.22903589],[-14.2969999,-16.6847975,13.22903589],[-13.5579004,-16.68316187,13.22903589],[-13.8815002,-16.68152624,13.22903589],[-14.8997002,-16.67989061,13.22903589],[-15.4436998,-16.67825499,13.22903589],[-15.6765003,-16.67661936,13.22903589],[-15.9823999,-16.67498373,13.22903589],[-16.0512009,-16.6733481,13.22903589],[-15.0359001,-16.67171247,13.22903589],[-13.2065001,-16.67007685,13.22903589],[-12.3687,-16.66844122,13.22903589],[-13.6072998,-16.66680559,13.22903589],[-14.9500999,-16.66516996,13.22903589],[-15.5302,-16.66353434,13.22903589],[-16.2205009,-16.66189871,13.22903589],[-17.1436996,-16.66026308,13.22903589],[-17.6639004,-16.65862745,13.22903589],[-17.9932995,-16.65699182,13.22903589],[-18.3505001,-16.6553562,13.22903589],[-18.2999001,-16.65372057,13.22903589],[-17.9493008,-16.65208494,13.22903589],[-17.5965004,-16.65044931,13.22903589],[-17.3766003,-16.64881369,13.22903589],[-17.1567001,-16.64717806,13.22903589],[-16.8866005,-16.64554243,13.22903589],[-16.6196003,-16.6439068,13.22903589],[-16.1387997,-16.64227118,13.22903589],[-15.8710003,-16.64063555,13.22903589],[-3.47785,-16.78129953,13.22740026],[-4.1709399,-16.77966391,13.22740026],[-6.5324998,-16.77802828,13.22740026],[-9.6063099,-16.77639265,13.22740026],[-11.8157997,-16.77475702,13.22740026],[-12.6815004,-16.77312139,13.22740026],[-13.4182997,-16.77148577,13.22740026],[-13.9194002,-16.76985014,13.22740026],[-13.4998999,-16.76821451,13.22740026],[-13.1997995,-16.76657888,13.22740026],[-13.1098003,-16.76494326,13.22740026],[-13.1941004,-16.76330763,13.22740026],[-13.5366001,-16.761672,13.22740026],[-13.5352001,-16.76003637,13.22740026],[-13.302,-16.75840074,13.22740026],[-13.1750002,-16.75676512,13.22740026],[-13.3149004,-16.75512949,13.22740026],[-13.5693998,-16.75349386,13.22740026],[-13.7586002,-16.75185823,13.22740026],[-14.0235004,-16.75022261,13.22740026],[-14.4245996,-16.74858698,13.22740026],[-14.7444,-16.74695135,13.22740026],[-14.8311996,-16.74531572,13.22740026],[-15.1255999,-16.7436801,13.22740026],[-15.1448002,-16.74204447,13.22740026],[-14.3549995,-16.74040884,13.22740026],[-13.4118996,-16.73877321,13.22740026],[-13.2826004,-16.73713758,13.22740026],[-13.3855,-16.73550196,13.22740026],[-13.4379997,-16.73386633,13.22740026],[-13.6740999,-16.7322307,13.22740026],[-14.5286999,-16.73059507,13.22740026],[-15.6181002,-16.72895945,13.22740026],[-15.3318005,-16.72732382,13.22740026],[-15.3022003,-16.72568819,13.22740026],[-15.6963997,-16.72405256,13.22740026],[-14.9193001,-16.72241693,13.22740026],[-14.4738998,-16.72078131,13.22740026],[-14.3667002,-16.71914568,13.22740026],[-13.71,-16.71751005,13.22740026],[-12.9076004,-16.71587442,13.22740026],[-13.0228004,-16.7142388,13.22740026],[-14.6358995,-16.71260317,13.22740026],[-16.2759991,-16.71096754,13.22740026],[-16.4962997,-16.70933191,13.22740026],[-16.4743996,-16.70769628,13.22740026],[-17.0000992,-16.70606066,13.22740026],[-17.1201992,-16.70442503,13.22740026],[-17.4347,-16.7027894,13.22740026],[-18.1408997,-16.70115377,13.22740026],[-17.3031998,-16.69951815,13.22740026],[-16.7852001,-16.69788252,13.22740026],[-16.8948994,-16.69624689,13.22740026],[-16.2131996,-16.69461126,13.22740026],[-16.3962994,-16.69297564,13.22740026],[-16.4447994,-16.69134001,13.22740026],[-15.7776003,-16.68970438,13.22740026],[-15.6805,-16.68806875,13.22740026],[-15.4021997,-16.68643312,13.22740026],[-14.5170002,-16.6847975,13.22740026],[-13.8448,-16.68316187,13.22740026],[-14.1823997,-16.68152624,13.22740026],[-15.4548998,-16.67989061,13.22740026],[-16.6201992,-16.67825499,13.22740026],[-16.4465008,-16.67661936,13.22740026],[-16.4776001,-16.67498373,13.22740026],[-16.9153004,-16.6733481,13.22740026],[-15.4359999,-16.67171247,13.22740026],[-12.8835001,-16.67007685,13.22740026],[-11.8549004,-16.66844122,13.22740026],[-13.5929003,-16.66680559,13.22740026],[-15.5165997,-16.66516996,13.22740026],[-16.1142006,-16.66353434,13.22740026],[-16.1779003,-16.66189871,13.22740026],[-16.9456005,-16.66026308,13.22740026],[-17.2971001,-16.65862745,13.22740026],[-17.9741993,-16.65699182,13.22740026],[-18.5324001,-16.6553562,13.22740026],[-18.4309006,-16.65372057,13.22740026],[-18.1861992,-16.65208494,13.22740026],[-18.1886997,-16.65044931,13.22740026],[-17.7875996,-16.64881369,13.22740026],[-17.1040993,-16.64717806,13.22740026],[-16.7572002,-16.64554243,13.22740026],[-16.6240005,-16.6439068,13.22740026],[-16.2968006,-16.64227118,13.22740026],[-3.2204001,-16.78129953,13.22576464],[-2.83166,-16.77966391,13.22576464],[-5.4071898,-16.77802828,13.22576464],[-10.6693001,-16.77639265,13.22576464],[-13.0459995,-16.77475702,13.22576464],[-12.6878996,-16.77312139,13.22576464],[-13.9294996,-16.77148577,13.22576464],[-14.5220003,-16.76985014,13.22576464],[-13.9221001,-16.76821451,13.22576464],[-13.9265003,-16.76657888,13.22576464],[-13.9639997,-16.76494326,13.22576464],[-13.8423996,-16.76330763,13.22576464],[-14.4523001,-16.761672,13.22576464],[-14.2480001,-16.76003637,13.22576464],[-13.4968996,-16.75840074,13.22576464],[-12.9392996,-16.75676512,13.22576464],[-13.2698002,-16.75512949,13.22576464],[-13.8185997,-16.75349386,13.22576464],[-14.0072002,-16.75185823,13.22576464],[-14.2052002,-16.75022261,13.22576464],[-14.7479,-16.74858698,13.22576464],[-15.0917997,-16.74695135,13.22576464],[-15.0514002,-16.74531572,13.22576464],[-15.7332001,-16.7436801,13.22576464],[-15.9663,-16.74204447,13.22576464],[-14.3915997,-16.74040884,13.22576464],[-12.4858999,-16.73877321,13.22576464],[-12.5284004,-16.73713758,13.22576464],[-13.4263,-16.73550196,13.22576464],[-13.2272997,-16.73386633,13.22576464],[-13.6861,-16.7322307,13.22576464],[-15.5248003,-16.73059507,13.22576464],[-17.7008991,-16.72895945,13.22576464],[-16.4888,-16.72732382,13.22576464],[-16.1403008,-16.72568819,13.22576464],[-16.9116001,-16.72405256,13.22576464],[-15.6399002,-16.72241693,13.22576464],[-15.1415997,-16.72078131,13.22576464],[-15.3285999,-16.71914568,13.22576464],[-14.0093002,-16.71751005,13.22576464],[-12.0669003,-16.71587442,13.22576464],[-11.8308001,-16.7142388,13.22576464],[-14.5782003,-16.71260317,13.22576464],[-17.0422993,-16.71096754,13.22576464],[-16.9321003,-16.70933191,13.22576464],[-16.8733997,-16.70769628,13.22576464],[-17.7830009,-16.70606066,13.22576464],[-17.6331997,-16.70442503,13.22576464],[-18.1564007,-16.7027894,13.22576464],[-19.5410995,-16.70115377,13.22576464],[-18.2555008,-16.69951815,13.22576464],[-17.7157993,-16.69788252,13.22576464],[-18.1723995,-16.69624689,13.22576464],[-17.1336002,-16.69461126,13.22576464],[-17.0393009,-16.69297564,13.22576464],[-17.1609993,-16.69134001,13.22576464],[-16.1485004,-16.68970438,13.22576464],[-15.9372997,-16.68806875,13.22576464],[-15.7952995,-16.68643312,13.22576464],[-14.7413998,-16.6847975,13.22576464],[-13.4775,-16.68316187,13.22576464],[-13.9951,-16.68152624,13.22576464],[-15.7378998,-16.67989061,13.22576464],[-17.3199997,-16.67825499,13.22576464],[-16.6730995,-16.67661936,13.22576464],[-16.7758007,-16.67498373,13.22576464],[-17.6795998,-16.6733481,13.22576464],[-15.6952,-16.67171247,13.22576464],[-12.5501003,-16.67007685,13.22576464],[-10.9545002,-16.66844122,13.22576464],[-13.5699997,-16.66680559,13.22576464],[-15.9020996,-16.66516996,13.22576464],[-16.3672009,-16.66353434,13.22576464],[-16.0655994,-16.66189871,13.22576464],[-16.9365997,-16.66026308,13.22576464],[-17.1075993,-16.65862745,13.22576464],[-17.7830009,-16.65699182,13.22576464],[-18.6632004,-16.6553562,13.22576464],[-18.4768009,-16.65372057,13.22576464],[-18.0268002,-16.65208494,13.22576464],[-18.2465992,-16.65044931,13.22576464],[-17.7623997,-16.64881369,13.22576464],[-16.9993,-16.64717806,13.22576464],[-16.6702003,-16.64554243,13.22576464],[-16.7234993,-16.6439068,13.22576464],[-16.3745995,-16.64227118,13.22576464],[-3.7255499,-16.78129953,13.22412901],[-4.1430101,-16.77966391,13.22412901],[-6.45576,-16.77802828,13.22412901],[-10.0117998,-16.77639265,13.22412901],[-12.2367001,-16.77475702,13.22412901],[-12.9006996,-16.77312139,13.22412901],[-13.6892004,-16.77148577,13.22412901],[-14.0832005,-16.76985014,13.22412901],[-13.8395004,-16.76821451,13.22412901],[-13.7802,-16.76657888,13.22412901],[-13.8397999,-16.76494326,13.22412901],[-13.8891001,-16.76330763,13.22412901],[-14.1575003,-16.761672,13.22412901],[-14.1013002,-16.76003637,13.22412901],[-13.8250999,-16.75840074,13.22412901],[-13.5107002,-16.75676512,13.22412901],[-13.6583004,-16.75512949,13.22412901],[-13.8502998,-16.75349386,13.22412901],[-13.9542999,-16.75185823,13.22412901],[-14.2311001,-16.75022261,13.22412901],[-14.6098003,-16.74858698,13.22412901],[-14.9085999,-16.74695135,13.22412901],[-15.0493002,-16.74531572,13.22412901],[-15.4383001,-16.7436801,13.22412901],[-15.4789,-16.74204447,13.22412901],[-14.6887999,-16.74040884,13.22412901],[-13.6608,-16.73877321,13.22412901],[-13.6026001,-16.73713758,13.22412901],[-13.9581003,-16.73550196,13.22412901],[-13.7938995,-16.73386633,13.22412901],[-14.2722998,-16.7322307,13.22412901],[-15.5290003,-16.73059507,13.22412901],[-16.5312004,-16.72895945,13.22412901],[-16.3843002,-16.72732382,13.22412901],[-16.1945,-16.72568819,13.22412901],[-16.1608009,-16.72405256,13.22412901],[-15.6609001,-16.72241693,13.22412901],[-15.2449999,-16.72078131,13.22412901],[-14.8605003,-16.71914568,13.22412901],[-14.1866999,-16.71751005,13.22412901],[-13.3146,-16.71587442,13.22412901],[-13.3259001,-16.7142388,13.22412901],[-14.6602001,-16.71260317,13.22412901],[-15.7315998,-16.71096754,13.22412901],[-16.1105995,-16.70933191,13.22412901],[-16.5704994,-16.70769628,13.22412901],[-17.2042999,-16.70606066,13.22412901],[-17.4708004,-16.70442503,13.22412901],[-17.9449997,-16.7027894,13.22412901],[-18.2290993,-16.70115377,13.22412901],[-18.0354004,-16.69951815,13.22412901],[-17.6846008,-16.69788252,13.22412901],[-17.4981003,-16.69624689,13.22412901],[-17.1525002,-16.69461126,13.22412901],[-16.9419994,-16.69297564,13.22412901],[-16.7346992,-16.69134001,13.22412901],[-16.3782997,-16.68970438,13.22412901],[-15.9036999,-16.68806875,13.22412901],[-15.5404997,-16.68643312,13.22412901],[-14.9159002,-16.6847975,13.22412901],[-14.1343002,-16.68316187,13.22412901],[-14.3971996,-16.68152624,13.22412901],[-15.3663998,-16.67989061,13.22412901],[-16.1427994,-16.67825499,13.22412901],[-16.2320004,-16.67661936,13.22412901],[-16.2740002,-16.67498373,13.22412901],[-16.3034,-16.6733481,13.22412901],[-15.5613003,-16.67171247,13.22412901],[-14.3999996,-16.67007685,13.22412901],[-13.8002996,-16.66844122,13.22412901],[-13.9257002,-16.66680559,13.22412901],[-13.9715004,-16.66516996,13.22412901],[-14.0606003,-16.66353434,13.22412901],[-15.0249996,-16.66189871,13.22412901],[-16.0410004,-16.66026308,13.22412901],[-16.6000996,-16.65862745,13.22412901],[-17.3008003,-16.65699182,13.22412901],[-17.9298992,-16.6553562,13.22412901],[-18.0256996,-16.65372057,13.22412901],[-17.8607998,-16.65208494,13.22412901],[-17.8645,-16.65044931,13.22412901],[-17.6159992,-16.64881369,13.22412901],[-17.2752991,-16.64717806,13.22412901],[-17.1643009,-16.64554243,13.22412901],[-16.9214001,-16.6439068,13.22412901],[-4.22438,-16.78129953,13.22249338],[-5.22929,-16.77966391,13.22249338],[-7.0886898,-16.77802828,13.22249338],[-10.2188997,-16.77639265,13.22249338],[-12.4681997,-16.77475702,13.22249338],[-12.9406004,-16.77312139,13.22249338],[-13.4573002,-16.77148577,13.22249338],[-13.6030998,-16.76985014,13.22249338],[-13.5799999,-16.76821451,13.22249338],[-13.4784002,-16.76657888,13.22249338],[-13.4715004,-16.76494326,13.22249338],[-13.8235998,-16.76330763,13.22249338],[-14.0991001,-16.761672,13.22249338],[-14.1629,-16.76003637,13.22249338],[-14.1421003,-16.75840074,13.22249338],[-14.3062,-16.75676512,13.22249338],[-14.1521997,-16.75512949,13.22249338],[-13.8295002,-16.75349386,13.22249338],[-13.6302996,-16.75185823,13.22249338],[-14.0303001,-16.75022261,13.22249338],[-14.4347,-16.74858698,13.22249338],[-14.5200996,-16.74695135,13.22249338],[-14.9057999,-16.74531572,13.22249338],[-15.5323,-16.7436801,13.22249338],[-15.6342001,-16.74204447,13.22249338],[-15.0630999,-16.74040884,13.22249338],[-14.7714005,-16.73877321,13.22249338],[-14.6368999,-16.73713758,13.22249338],[-14.3163996,-16.73550196,13.22249338],[-13.7658997,-16.73386633,13.22249338],[-14.2150002,-16.7322307,13.22249338],[-15.6138,-16.73059507,13.22249338],[-16.5744991,-16.72895945,13.22249338],[-16.4743996,-16.72732382,13.22249338],[-16.0482006,-16.72568819,13.22249338],[-15.7202997,-16.72405256,13.22249338],[-15.5537004,-16.72241693,13.22249338],[-15.3399,-16.72078131,13.22249338],[-15.2679996,-16.71914568,13.22249338],[-14.5171003,-16.71751005,13.22249338],[-13.7781,-16.71587442,13.22249338],[-13.8296003,-16.7142388,13.22249338],[-14.5577002,-16.71260317,13.22249338],[-14.9352999,-16.71096754,13.22249338],[-15.2655001,-16.70933191,13.22249338],[-16.2331009,-16.70769628,13.22249338],[-16.9253998,-16.70606066,13.22249338],[-17.1355991,-16.70442503,13.22249338],[-17.8868008,-16.7027894,13.22249338],[-18.3903999,-16.70115377,13.22249338],[-18.1163006,-16.69951815,13.22249338],[-17.6273994,-16.69788252,13.22249338],[-17.5422001,-16.69624689,13.22249338],[-17.2290001,-16.69461126,13.22249338],[-16.8841991,-16.69297564,13.22249338],[-16.8512993,-16.69134001,13.22249338],[-16.4186001,-16.68970438,13.22249338],[-16.0748997,-16.68806875,13.22249338],[-15.8551998,-16.68643312,13.22249338],[-14.8931999,-16.6847975,13.22249338],[-13.6257,-16.68316187,13.22249338],[-13.934,-16.68152624,13.22249338],[-15.3177996,-16.67989061,13.22249338],[-16.3579998,-16.67825499,13.22249338],[-16.0494995,-16.67661936,13.22249338],[-16.0466995,-16.67498373,13.22249338],[-16.2364998,-16.6733481,13.22249338],[-15.8361998,-16.67171247,13.22249338],[-15.7754002,-16.67007685,13.22249338],[-16.1504002,-16.66844122,13.22249338],[-14.2449999,-16.66680559,13.22249338],[-11.2177,-16.66516996,13.22249338],[-10.6556997,-16.66353434,13.22249338],[-13.8494997,-16.66189871,13.22249338],[-15.4385996,-16.66026308,13.22249338],[-15.809,-16.65862745,13.22249338],[-16.9111004,-16.65699182,13.22249338],[-18.4218006,-16.6553562,13.22249338],[-18.0739002,-16.65372057,13.22249338],[-17.7499008,-16.65208494,13.22249338],[-18.2189007,-16.65044931,13.22249338],[-17.6637001,-16.64881369,13.22249338],[-17.5648003,-16.64717806,13.22249338],[-17.9365997,-16.64554243,13.22249338],[-4.2774601,-16.78129953,13.22085775],[-4.7975302,-16.77966391,13.22085775],[-6.7246099,-16.77802828,13.22085775],[-11.2684002,-16.77639265,13.22085775],[-13.7671003,-16.77475702,13.22085775],[-12.8975,-16.77312139,13.22085775],[-13.3137999,-16.77148577,13.22085775],[-13.4925003,-16.76985014,13.22085775],[-13.5270996,-16.76821451,13.22085775],[-13.2257004,-16.76657888,13.22085775],[-13.1974001,-16.76494326,13.22085775],[-13.8769999,-16.76330763,13.22085775],[-14.2788,-16.761672,13.22085775],[-14.3100996,-16.76003637,13.22085775],[-14.3534002,-16.75840074,13.22085775],[-14.6934004,-16.75676512,13.22085775],[-14.4572001,-16.75512949,13.22085775],[-13.9373999,-16.75349386,13.22085775],[-13.2973003,-16.75185823,13.22085775],[-13.9611998,-16.75022261,13.22085775],[-14.3971996,-16.74858698,13.22085775],[-14.2432003,-16.74695135,13.22085775],[-14.9024,-16.74531572,13.22085775],[-15.7065001,-16.7436801,13.22085775],[-15.9366999,-16.74204447,13.22085775],[-15.4315004,-16.74040884,13.22085775],[-15.0096998,-16.73877321,13.22085775],[-15.0004997,-16.73713758,13.22085775],[-14.7691002,-16.73550196,13.22085775],[-13.3227997,-16.73386633,13.22085775],[-14.1726999,-16.7322307,13.22085775],[-16.1168003,-16.73059507,13.22085775],[-16.8971004,-16.72895945,13.22085775],[-16.6362991,-16.72732382,13.22085775],[-16.1019001,-16.72568819,13.22085775],[-15.6091995,-16.72405256,13.22085775],[-15.7691002,-16.72241693,13.22085775],[-15.5066004,-16.72078131,13.22085775],[-15.5324001,-16.71914568,13.22085775],[-14.7477999,-16.71751005,13.22085775],[-13.8734999,-16.71587442,13.22085775],[-13.7223997,-16.7142388,13.22085775],[-14.4983997,-16.71260317,13.22085775],[-14.7667999,-16.71096754,13.22085775],[-14.9940996,-16.70933191,13.22085775],[-16.1058006,-16.70769628,13.22085775],[-16.906601,-16.70606066,13.22085775],[-16.9752007,-16.70442503,13.22085775],[-17.6443996,-16.7027894,13.22085775],[-18.5193005,-16.70115377,13.22085775],[-17.9493008,-16.69951815,13.22085775],[-17.5415001,-16.69788252,13.22085775],[-17.6042995,-16.69624689,13.22085775],[-17.2509995,-16.69461126,13.22085775],[-16.9675999,-16.69297564,13.22085775],[-16.8845997,-16.69134001,13.22085775],[-16.4939995,-16.68970438,13.22085775],[-16.1431999,-16.68806875,13.22085775],[-15.9816999,-16.68643312,13.22085775],[-14.8759003,-16.6847975,13.22085775],[-13.6006002,-16.68316187,13.22085775],[-13.8834,-16.68152624,13.22085775],[-15.0417995,-16.67989061,13.22085775],[-16.2665997,-16.67825499,13.22085775],[-15.8076,-16.67661936,13.22085775],[-15.7606001,-16.67498373,13.22085775],[-16.1527996,-16.6733481,13.22085775],[-15.7444,-16.67171247,13.22085775],[-15.8886003,-16.67007685,13.22085775],[-16.2038002,-16.66844122,13.22085775],[-14.3945999,-16.66680559,13.22085775],[-11.3757,-16.66516996,13.22085775],[-10.7612,-16.66353434,13.22085775],[-13.5576,-16.66189871,13.22085775],[-15.1237001,-16.66026308,13.22085775],[-15.5311003,-16.65862745,13.22085775],[-16.3906994,-16.65699182,13.22085775],[-18.0238991,-16.6553562,13.22085775],[-17.6446991,-16.65372057,13.22085775],[-17.0690002,-16.65208494,13.22085775],[-17.7352009,-16.65044931,13.22085775],[-17.1175995,-16.64881369,13.22085775],[-17.2696991,-16.64717806,13.22085775],[-4.8136201,-16.78129953,13.21922212],[-5.73526,-16.77966391,13.21922212],[-7.5381098,-16.77802828,13.21922212],[-10.6126003,-16.77639265,13.21922212],[-12.4333,-16.77475702,13.21922212],[-12.9926996,-16.77312139,13.21922212],[-13.1049995,-16.77148577,13.21922212],[-13.4996996,-16.76985014,13.21922212],[-13.5840998,-16.76821451,13.21922212],[-13.5384998,-16.76657888,13.21922212],[-13.6548996,-16.76494326,13.21922212],[-14.0901003,-16.76330763,13.21922212],[-14.4315004,-16.761672,13.21922212],[-14.5101995,-16.76003637,13.21922212],[-14.4724998,-16.75840074,13.21922212],[-14.5337,-16.75676512,13.21922212],[-14.4469004,-16.75512949,13.21922212],[-14.3486996,-16.75349386,13.21922212],[-14.2905998,-16.75185823,13.21922212],[-14.5532999,-16.75022261,13.21922212],[-14.7143002,-16.74858698,13.21922212],[-14.7763004,-16.74695135,13.21922212],[-15.1344004,-16.74531572,13.21922212],[-15.5932999,-16.7436801,13.21922212],[-15.7983999,-16.74204447,13.21922212],[-15.7554998,-16.74040884,13.21922212],[-15.6990995,-16.73877321,13.21922212],[-15.9195995,-16.73713758,13.21922212],[-15.9786997,-16.73550196,13.21922212],[-15.8656998,-16.73386633,13.21922212],[-16.1401005,-16.7322307,13.21922212],[-16.6198006,-16.73059507,13.21922212],[-16.8603001,-16.72895945,13.21922212],[-16.7106991,-16.72732382,13.21922212],[-16.4365997,-16.72568819,13.21922212],[-16.1686001,-16.72405256,13.21922212],[-15.7869997,-16.72241693,13.21922212],[-15.3860998,-16.72078131,13.21922212],[-14.9509001,-16.71914568,13.21922212],[-14.6016998,-16.71751005,13.21922212],[-14.3108997,-16.71587442,13.21922212],[-14.2192001,-16.7142388,13.21922212],[-14.4300003,-16.71260317,13.21922212],[-14.6566,-16.71096754,13.21922212],[-15.0674,-16.70933191,13.21922212],[-15.4775,-16.70769628,13.21922212],[-15.9505997,-16.70606066,13.21922212],[-16.3118,-16.70442503,13.21922212],[-16.8402004,-16.7027894,13.21922212],[-17.2492008,-16.70115377,13.21922212],[-17.1921997,-16.69951815,13.21922212],[-17.0079002,-16.69788252,13.21922212],[-16.9521999,-16.69624689,13.21922212],[-16.8246002,-16.69461126,13.21922212],[-16.7115993,-16.69297564,13.21922212],[-16.5904999,-16.69134001,13.21922212],[-16.3617992,-16.68970438,13.21922212],[-16.2168999,-16.68806875,13.21922212],[-15.7884998,-16.68643312,13.21922212],[-15.0937004,-16.6847975,13.21922212],[-14.4275999,-16.68316187,13.21922212],[-14.2445002,-16.68152624,13.21922212],[-14.1533003,-16.67989061,13.21922212],[-13.9459,-16.67825499,13.21922212],[-14.3803997,-16.67661936,13.21922212],[-15.0180998,-16.67498373,13.21922212],[-15.2608004,-16.6733481,13.21922212],[-15.2677002,-16.67171247,13.21922212],[-15.4890003,-16.67007685,13.21922212],[-15.4457998,-16.66844122,13.21922212],[-14.5177002,-16.66680559,13.21922212],[-13.6658001,-16.66516996,13.21922212],[-13.4989996,-16.66353434,13.21922212],[-13.8127003,-16.66189871,13.21922212],[-13.8136997,-16.66026308,13.21922212],[-14.1627998,-16.65862745,13.21922212],[-15.5646,-16.65699182,13.21922212],[-16.6117001,-16.6553562,13.21922212],[-16.3985996,-16.65372057,13.21922212],[-15.2255001,-16.65208494,13.21922212],[-14.0987997,-16.65044931,13.21922212],[-15.0001001,-16.64881369,13.21922212],[-5.217,-16.78129953,13.2175865],[-5.6192799,-16.77966391,13.2175865],[-7.35499,-16.77802828,13.2175865],[-11.0239,-16.77639265,13.2175865],[-13.1767998,-16.77475702,13.2175865],[-13.0978003,-16.77312139,13.2175865],[-13.1801004,-16.77148577,13.2175865],[-13.1763,-16.76985014,13.2175865],[-13.5177002,-16.76821451,13.2175865],[-13.5223999,-16.76657888,13.2175865],[-13.5629997,-16.76494326,13.2175865],[-14.2952003,-16.76330763,13.2175865],[-15.1638002,-16.761672,13.2175865],[-15.1268997,-16.76003637,13.2175865],[-14.5053997,-16.75840074,13.2175865],[-14.0395002,-16.75676512,13.2175865],[-14.3268003,-16.75512949,13.2175865],[-14.8667002,-16.75349386,13.2175865],[-15.0663996,-16.75185823,13.2175865],[-15.0670996,-16.75022261,13.2175865],[-14.9183998,-16.74858698,13.2175865],[-14.8660002,-16.74695135,13.2175865],[-15.2425003,-16.74531572,13.2175865],[-15.8906002,-16.7436801,13.2175865],[-16.1068001,-16.74204447,13.2175865],[-16.0976009,-16.74040884,13.2175865],[-16.8626003,-16.73877321,13.2175865],[-16.9750996,-16.73713758,13.2175865],[-17.218399,-16.73550196,13.2175865],[-18.4272995,-16.73386633,13.2175865],[-18.0634003,-16.7322307,13.2175865],[-17.3248005,-16.73059507,13.2175865],[-17.4845009,-16.72895945,13.2175865],[-17.1166,-16.72732382,13.2175865],[-16.6881008,-16.72568819,13.2175865],[-17.0210991,-16.72405256,13.2175865],[-16.0690994,-16.72241693,13.2175865],[-14.9257002,-16.72078131,13.2175865],[-14.4923,-16.71914568,13.2175865],[-14.6046,-16.71751005,13.2175865],[-14.5677004,-16.71587442,13.2175865],[-14.6013002,-16.7142388,13.2175865],[-14.3778,-16.71260317,13.2175865],[-14.4525995,-16.71096754,13.2175865],[-14.6083002,-16.70933191,13.2175865],[-14.9786997,-16.70769628,13.2175865],[-14.7747002,-16.70606066,13.2175865],[-15.2678003,-16.70442503,13.2175865],[-16.2945995,-16.7027894,13.2175865],[-16.6212997,-16.70115377,13.2175865],[-16.6294003,-16.69951815,13.2175865],[-16.427,-16.69788252,13.2175865],[-16.1707001,-16.69624689,13.2175865],[-16.4321003,-16.69461126,13.2175865],[-16.3460007,-16.69297564,13.2175865],[-16.2119007,-16.69134001,13.2175865],[-16.2957001,-16.68970438,13.2175865],[-16.4631004,-16.68806875,13.2175865],[-16.3232002,-16.68643312,13.2175865],[-15.3125,-16.6847975,13.2175865],[-14.3555002,-16.68316187,13.2175865],[-14.2475004,-16.68152624,13.2175865],[-13.3162003,-16.67989061,13.2175865],[-11.0402002,-16.67825499,13.2175865],[-12.6351004,-16.67661936,13.2175865],[-14.4076996,-16.67498373,13.2175865],[-14.6297998,-16.6733481,13.2175865],[-15.0341997,-16.67171247,13.2175865],[-15.5670004,-16.67007685,13.2175865],[-16.1303005,-16.66844122,13.2175865],[-15.0546999,-16.66680559,13.2175865],[-14.8725004,-16.66516996,13.2175865],[-14.9944,-16.66353434,13.2175865],[-13.8142996,-16.66189871,13.2175865],[-12.0969,-16.66026308,13.2175865],[-12.4277,-16.65862745,13.2175865],[-15.0054998,-16.65699182,13.2175865],[-16.8540993,-16.6553562,13.2175865],[-16.2595997,-16.65372057,13.2175865],[-13.3487997,-16.65208494,13.2175865],[-9.04245,-16.65044931,13.2175865],[-12.4653997,-16.64881369,13.2175865],[-5.22998,-16.78129953,13.21595087],[-5.2367702,-16.77966391,13.21595087],[-7.0583901,-16.77802828,13.21595087],[-11.3676004,-16.77639265,13.21595087],[-13.7354002,-16.77475702,13.21595087],[-13.0441999,-16.77312139,13.21595087],[-13.0606003,-16.77148577,13.21595087],[-13.0197001,-16.76985014,13.21595087],[-13.6587,-16.76821451,13.21595087],[-13.5439997,-16.76657888,13.21595087],[-13.5186005,-16.76494326,13.21595087],[-14.5389996,-16.76330763,13.21595087],[-15.4334002,-16.761672,13.21595087],[-15.4186001,-16.76003637,13.21595087],[-14.7912998,-16.75840074,13.21595087],[-13.9453001,-16.75676512,13.21595087],[-14.4637003,-16.75512949,13.21595087],[-15.1744003,-16.75349386,13.21595087],[-15.2145996,-16.75185823,13.21595087],[-15.2910004,-16.75022261,13.21595087],[-15.1900997,-16.74858698,13.21595087],[-14.8823004,-16.74695135,13.21595087],[-15.4271002,-16.74531572,13.21595087],[-15.8842001,-16.7436801,13.21595087],[-16.1252995,-16.74204447,13.21595087],[-16.4027996,-16.74040884,13.21595087],[-17.0888004,-16.73877321,13.21595087],[-17.3141003,-16.73713758,13.21595087],[-17.7647991,-16.73550196,13.21595087],[-18.7618008,-16.73386633,13.21595087],[-18.405899,-16.7322307,13.21595087],[-17.4064007,-16.73059507,13.21595087],[-17.4400997,-16.72895945,13.21595087],[-16.8868008,-16.72732382,13.21595087],[-16.6569996,-16.72568819,13.21595087],[-16.8927002,-16.72405256,13.21595087],[-15.8690004,-16.72241693,13.21595087],[-14.7770004,-16.72078131,13.21595087],[-14.4355001,-16.71914568,13.21595087],[-14.4161997,-16.71751005,13.21595087],[-14.4729996,-16.71587442,13.21595087],[-14.5160999,-16.7142388,13.21595087],[-14.2566004,-16.71260317,13.21595087],[-14.3737001,-16.71096754,13.21595087],[-14.4830999,-16.70933191,13.21595087],[-14.7217999,-16.70769628,13.21595087],[-14.7943001,-16.70606066,13.21595087],[-15.1168003,-16.70442503,13.21595087],[-15.9210997,-16.7027894,13.21595087],[-16.4204006,-16.70115377,13.21595087],[-16.3143997,-16.69951815,13.21595087],[-16.1858997,-16.69788252,13.21595087],[-16.1774006,-16.69624689,13.21595087],[-16.2520008,-16.69461126,13.21595087],[-16.3258991,-16.69297564,13.21595087],[-16.2952995,-16.69134001,13.21595087],[-16.4030991,-16.68970438,13.21595087],[-16.4326992,-16.68806875,13.21595087],[-16.1683006,-16.68643312,13.21595087],[-15.3423996,-16.6847975,13.21595087],[-14.6131001,-16.68316187,13.21595087],[-14.408,-16.68152624,13.21595087],[-13.5344,-16.67989061,13.21595087],[-12.1134996,-16.67825499,13.21595087],[-12.9848003,-16.67661936,13.21595087],[-14.2719002,-16.67498373,13.21595087],[-14.6625004,-16.6733481,13.21595087],[-14.7917995,-16.67171247,13.21595087],[-15.2171001,-16.67007685,13.21595087],[-15.5607004,-16.66844122,13.21595087],[-14.7428999,-16.66680559,13.21595087],[-14.4252996,-16.66516996,13.21595087],[-14.3261995,-16.66353434,13.21595087],[-13.5774002,-16.66189871,13.21595087],[-12.9373999,-16.66026308,13.21595087],[-13.1936998,-16.65862745,13.21595087],[-14.8851004,-16.65699182,13.21595087],[-16.0991993,-16.6553562,13.21595087],[-15.6837997,-16.65372057,13.21595087],[-13.9886999,-16.65208494,13.21595087],[-11.882,-16.65044931,13.21595087],[-5.08848,-16.78129953,13.21431524],[-5.9917898,-16.77966391,13.21431524],[-7.55195,-16.77802828,13.21431524],[-10.5418997,-16.77639265,13.21431524],[-12.4202995,-16.77475702,13.21431524],[-13.2305002,-16.77312139,13.21431524],[-13.6136999,-16.77148577,13.21431524],[-14.1871004,-16.76985014,13.21431524],[-14.3669004,-16.76821451,13.21431524],[-14.4165001,-16.76657888,13.21431524],[-14.6111002,-16.76494326,13.21431524],[-15.0388002,-16.76330763,13.21431524],[-15.4052,-16.761672,13.21431524],[-15.5114002,-16.76003637,13.21431524],[-15.3580999,-16.75840074,13.21431524],[-15.2370996,-16.75676512,13.21431524],[-15.3821001,-16.75512949,13.21431524],[-15.7930002,-16.75349386,13.21431524],[-16.1329994,-16.75185823,13.21431524],[-16.0575008,-16.75022261,13.21431524],[-15.9404001,-16.74858698,13.21431524],[-15.9090004,-16.74695135,13.21431524],[-15.7405996,-16.74531572,13.21431524],[-15.1964998,-16.7436801,13.21431524],[-15.1437998,-16.74204447,13.21431524],[-16.2614002,-16.74040884,13.21431524],[-17.3934002,-16.73877321,13.21431524],[-17.6903992,-16.73713758,13.21431524],[-18.0277004,-16.73550196,13.21431524],[-18.4144993,-16.73386633,13.21431524],[-18.0790005,-16.7322307,13.21431524],[-17.1660995,-16.73059507,13.21431524],[-16.4272995,-16.72895945,13.21431524],[-16.1137009,-16.72732382,13.21431524],[-15.7952995,-16.72568819,13.21431524],[-15.3554001,-16.72405256,13.21431524],[-15.0681,-16.72241693,13.21431524],[-14.5031996,-16.72078131,13.21431524],[-14.0579996,-16.71914568,13.21431524],[-14.0227003,-16.71751005,13.21431524],[-13.9548998,-16.71587442,13.21431524],[-13.9516001,-16.7142388,13.21431524],[-13.9689999,-16.71260317,13.21431524],[-13.9112997,-16.71096754,13.21431524],[-14.1402998,-16.70933191,13.21431524],[-14.6484003,-16.70769628,13.21431524],[-14.9903002,-16.70606066,13.21431524],[-15.2102003,-16.70442503,13.21431524],[-15.5678997,-16.7027894,13.21431524],[-15.8656998,-16.70115377,13.21431524],[-15.8989,-16.69951815,13.21431524],[-15.7961998,-16.69788252,13.21431524],[-15.8216,-16.69624689,13.21431524],[-16.1408005,-16.69461126,13.21431524],[-16.5380993,-16.69297564,13.21431524],[-16.6993008,-16.69134001,13.21431524],[-16.5419998,-16.68970438,13.21431524],[-16.3157005,-16.68806875,13.21431524],[-16.1058998,-16.68643312,13.21431524],[-15.6358004,-16.6847975,13.21431524],[-15.6259003,-16.68316187,13.21431524],[-15.2600002,-16.68152624,13.21431524],[-14.4238005,-16.67989061,13.21431524],[-13.9143,-16.67825499,13.21431524],[-14.1141996,-16.67661936,13.21431524],[-14.4968996,-16.67498373,13.21431524],[-14.8273001,-16.6733481,13.21431524],[-14.7110004,-16.67171247,13.21431524],[-14.8569002,-16.67007685,13.21431524],[-14.7665997,-16.66844122,13.21431524],[-14.1735001,-16.66680559,13.21431524],[-12.9119997,-16.66516996,13.21431524],[-12.5476999,-16.66353434,13.21431524],[-13.4820004,-16.66189871,13.21431524],[-14.5026999,-16.66026308,13.21431524],[-15.0054998,-16.65862745,13.21431524],[-15.0859003,-16.65699182,13.21431524],[-15.5766001,-16.6553562,13.21431524],[-15.5717001,-16.65372057,13.21431524],[-15.3095999,-16.65208494,13.21431524],[-4.2783198,-16.78129953,13.21267961],[-4.37181,-16.77966391,13.21267961],[-6.70997,-16.77802828,13.21267961],[-10.9848003,-16.77639265,13.21267961],[-13.3185997,-16.77475702,13.21267961],[-13.2896996,-16.77312139,13.21267961],[-14.6636,-16.77148577,13.21267961],[-15.5361996,-16.76985014,13.21267961],[-15.0276003,-16.76821451,13.21267961],[-15.1988001,-16.76657888,13.21267961],[-15.3150997,-16.76494326,13.21267961],[-15.4674997,-16.76330763,13.21267961],[-15.9566002,-16.761672,13.21267961],[-15.9610996,-16.76003637,13.21267961],[-15.7641001,-16.75840074,13.21267961],[-16.2210999,-16.75676512,13.21267961],[-16.1012993,-16.75512949,13.21267961],[-16.6438999,-16.75349386,13.21267961],[-18.0233994,-16.75185823,13.21267961],[-16.9871006,-16.75022261,13.21267961],[-16.8535004,-16.74858698,13.21267961],[-17.5408001,-16.74695135,13.21267961],[-16.0314999,-16.74531572,13.21267961],[-13.8566999,-16.7436801,13.21267961],[-12.8846998,-16.74204447,13.21267961],[-15.9263,-16.74040884,13.21267961],[-18.3089008,-16.73877321,13.21267961],[-18.5930996,-16.73713758,13.21267961],[-18.3619995,-16.73550196,13.21267961],[-19.4853992,-16.73386633,13.21267961],[-18.8936996,-16.7322307,13.21267961],[-16.7745991,-16.73059507,13.21267961],[-15.5471001,-16.72895945,13.21267961],[-15.5627003,-16.72732382,13.21267961],[-15.0571003,-16.72568819,13.21267961],[-14.6829996,-16.72405256,13.21267961],[-14.5342999,-16.72241693,13.21267961],[-13.8601999,-16.72078131,13.21267961],[-13.3871002,-16.71914568,13.21267961],[-13.7180996,-16.71751005,13.21267961],[-13.6532001,-16.71587442,13.21267961],[-13.5841999,-16.7142388,13.21267961],[-13.7475004,-16.71260317,13.21267961],[-13.3604002,-16.71096754,13.21267961],[-13.526,-16.70933191,13.21267961],[-14.4806995,-16.70769628,13.21267961],[-14.9745998,-16.70606066,13.21267961],[-15.0644999,-16.70442503,13.21267961],[-15.3711004,-16.7027894,13.21267961],[-15.7328997,-16.70115377,13.21267961],[-15.6493998,-16.69951815,13.21267961],[-15.4524002,-16.69788252,13.21267961],[-15.118,-16.69624689,13.21267961],[-15.8660002,-16.69461126,13.21267961],[-16.8486996,-16.69297564,13.21267961],[-17.1611996,-16.69134001,13.21267961],[-16.5410995,-16.68970438,13.21267961],[-16.3257999,-16.68806875,13.21267961],[-16.2873993,-16.68643312,13.21267961],[-15.9716997,-16.6847975,13.21267961],[-16.6070004,-16.68316187,13.21267961],[-16.1599007,-16.68152624,13.21267961],[-14.7412996,-16.67989061,13.21267961],[-14.3204002,-16.67825499,13.21267961],[-14.3318996,-16.67661936,13.21267961],[-14.5888004,-16.67498373,13.21267961],[-15.1554003,-16.6733481,13.21267961],[-14.6582003,-16.67171247,13.21267961],[-14.7378998,-16.67007685,13.21267961],[-15.0452003,-16.66844122,13.21267961],[-13.8409996,-16.66680559,13.21267961],[-11.5523996,-16.66516996,13.21267961],[-10.8762999,-16.66353434,13.21267961],[-13.4177999,-16.66189871,13.21267961],[-15.8074999,-16.66026308,13.21267961],[-15.8404999,-16.65862745,13.21267961],[-15.0906,-16.65699182,13.21267961],[-15.9518003,-16.6553562,13.21267961],[-15.7673998,-16.65372057,13.21267961],[-4.3729801,-16.78129953,13.21104399],[-4.54076,-16.77966391,13.21104399],[-6.9239502,-16.77802828,13.21104399],[-11.0108995,-16.77639265,13.21104399],[-13.1736002,-16.77475702,13.21104399],[-13.4548998,-16.77312139,13.21104399],[-14.6126003,-16.77148577,13.21104399],[-15.4689999,-16.76985014,13.21104399],[-15.2214003,-16.76821451,13.21104399],[-15.3422003,-16.76657888,13.21104399],[-15.4441996,-16.76494326,13.21104399],[-15.6868,-16.76330763,13.21104399],[-15.9542999,-16.761672,13.21104399],[-15.9357996,-16.76003637,13.21104399],[-15.7659998,-16.75840074,13.21104399],[-16.0084,-16.75676512,13.21104399],[-15.9703999,-16.75512949,13.21104399],[-16.4734001,-16.75349386,13.21104399],[-17.4447994,-16.75185823,13.21104399],[-16.7667999,-16.75022261,13.21104399],[-16.7567005,-16.74858698,13.21104399],[-17.1315002,-16.74695135,13.21104399],[-16.0872993,-16.74531572,13.21104399],[-14.4168997,-16.7436801,13.21104399],[-13.8259001,-16.74204447,13.21104399],[-16.0004997,-16.74040884,13.21104399],[-17.9337006,-16.73877321,13.21104399],[-18.2740993,-16.73713758,13.21104399],[-18.0765991,-16.73550196,13.21104399],[-18.7838993,-16.73386633,13.21104399],[-18.191,-16.7322307,13.21104399],[-16.3031998,-16.73059507,13.21104399],[-15.4286003,-16.72895945,13.21104399],[-15.0242996,-16.72732382,13.21104399],[-14.6421003,-16.72568819,13.21104399],[-14.4448004,-16.72405256,13.21104399],[-14.0278997,-16.72241693,13.21104399],[-13.7081003,-16.72078131,13.21104399],[-13.4680996,-16.71914568,13.21104399],[-13.4214001,-16.71751005,13.21104399],[-13.4414997,-16.71587442,13.21104399],[-13.5270996,-16.7142388,13.21104399],[-13.6900997,-16.71260317,13.21104399],[-13.7119999,-16.71096754,13.21104399],[-13.9343996,-16.70933191,13.21104399],[-14.4727001,-16.70769628,13.21104399],[-14.8827,-16.70606066,13.21104399],[-14.9460001,-16.70442503,13.21104399],[-15.0903997,-16.7027894,13.21104399],[-15.2868004,-16.70115377,13.21104399],[-15.2919998,-16.69951815,13.21104399],[-15.2495003,-16.69788252,13.21104399],[-15.3042002,-16.69624689,13.21104399],[-15.7553997,-16.69461126,13.21104399],[-16.5093002,-16.69297564,13.21104399],[-16.8547001,-16.69134001,13.21104399],[-16.4909992,-16.68970438,13.21104399],[-16.2544003,-16.68806875,13.21104399],[-16.0564003,-16.68643312,13.21104399],[-15.6943998,-16.6847975,13.21104399],[-15.5489998,-16.68316187,13.21104399],[-15.2882004,-16.68152624,13.21104399],[-14.7608995,-16.67989061,13.21104399],[-14.5753002,-16.67825499,13.21104399],[-14.4839001,-16.67661936,13.21104399],[-14.1857004,-16.67498373,13.21104399],[-14.2437,-16.6733481,13.21104399],[-14.1434002,-16.67171247,13.21104399],[-14.4034004,-16.67007685,13.21104399],[-14.4273005,-16.66844122,13.21104399],[-13.6526003,-16.66680559,13.21104399],[-12.5143003,-16.66516996,13.21104399],[-12.2121,-16.66353434,13.21104399],[-13.0565996,-16.66189871,13.21104399],[-14.1267004,-16.66026308,13.21104399],[-14.4551001,-16.65862745,13.21104399],[-14.6026001,-16.65699182,13.21104399],[-15.184,-16.6553562,13.21104399],[-5.4039402,-16.78129953,13.20940836],[-6.1342402,-16.77966391,13.20940836],[-7.6982598,-16.77802828,13.20940836],[-10.6827002,-16.77639265,13.20940836],[-12.4898005,-16.77475702,13.20940836],[-13.5108995,-16.77312139,13.20940836],[-14.2431002,-16.77148577,13.20940836],[-14.9471998,-16.76985014,13.20940836],[-15.1835003,-16.76821451,13.20940836],[-15.5801001,-16.76657888,13.20940836],[-15.8057003,-16.76494326,13.20940836],[-15.8831997,-16.76330763,13.20940836],[-16.0268002,-16.761672,13.20940836],[-15.8792,-16.76003637,13.20940836],[-15.3948002,-16.75840074,13.20940836],[-14.8928003,-16.75676512,13.20940836],[-15.1084995,-16.75512949,13.20940836],[-15.3732996,-16.75349386,13.20940836],[-15.3105001,-16.75185823,13.20940836],[-15.7299004,-16.75022261,13.20940836],[-16.2474003,-16.74858698,13.20940836],[-16.4129009,-16.74695135,13.20940836],[-16.0636005,-16.74531572,13.20940836],[-15.4004002,-16.7436801,13.20940836],[-15.3552999,-16.74204447,13.20940836],[-16.3561993,-16.74040884,13.20940836],[-17.4291992,-16.73877321,13.20940836],[-17.7254009,-16.73713758,13.20940836],[-17.6131992,-16.73550196,13.20940836],[-17.6205997,-16.73386633,13.20940836],[-17.0480003,-16.7322307,13.20940836],[-15.2799997,-16.73059507,13.20940836],[-13.3938999,-16.72895945,13.20940836],[-13.5355997,-16.72732382,13.20940836],[-14.0422001,-16.72568819,13.20940836],[-13.8859997,-16.72405256,13.20940836],[-13.6873999,-16.72241693,13.20940836],[-13.5052004,-16.72078131,13.20940836],[-13.3983002,-16.71914568,13.20940836],[-13.2406998,-16.71751005,13.20940836],[-12.9264002,-16.71587442,13.20940836],[-12.9460001,-16.7142388,13.20940836],[-13.7433996,-16.71260317,13.20940836],[-14.5719995,-16.71096754,13.20940836],[-14.7236004,-16.70933191,13.20940836],[-14.7271996,-16.70769628,13.20940836],[-14.9273996,-16.70606066,13.20940836],[-14.9413004,-16.70442503,13.20940836],[-14.7268,-16.7027894,13.20940836],[-14.4462004,-16.70115377,13.20940836],[-14.7744999,-16.69951815,13.20940836],[-15.0876999,-16.69788252,13.20940836],[-15.2873001,-16.69624689,13.20940836],[-15.7026997,-16.69461126,13.20940836],[-16.4874001,-16.69297564,13.20940836],[-16.8202,-16.69134001,13.20940836],[-16.5216999,-16.68970438,13.20940836],[-16.3115997,-16.68806875,13.20940836],[-16.0956993,-16.68643312,13.20940836],[-14.9856997,-16.6847975,13.20940836],[-13.2625999,-16.68316187,13.20940836],[-13.3242998,-16.68152624,13.20940836],[-14.8957996,-16.67989061,13.20940836],[-16.2297001,-16.67825499,13.20940836],[-15.3260002,-16.67661936,13.20940836],[-13.2751999,-16.67498373,13.20940836],[-11.7403002,-16.6733481,13.20940836],[-12.9181004,-16.67171247,13.20940836],[-14.2730999,-16.67007685,13.20940836],[-14.7178001,-16.66844122,13.20940836],[-13.7905998,-16.66680559,13.20940836],[-12.7772999,-16.66516996,13.20940836],[-12.5233002,-16.66353434,13.20940836],[-12.6004,-16.66189871,13.20940836],[-11.8887997,-16.66026308,13.20940836],[-12.1695004,-16.65862745,13.20940836],[-13.8427,-16.65699182,13.20940836],[-5.5872402,-16.78129953,13.20777273],[-5.0297499,-16.77966391,13.20777273],[-6.9804401,-16.77802828,13.20777273],[-11.2567997,-16.77639265,13.20777273],[-13.2684002,-16.77475702,13.20777273],[-13.4097996,-16.77312139,13.20777273],[-14.3929996,-16.77148577,13.20777273],[-14.8135996,-16.76985014,13.20777273],[-15.2516003,-16.76821451,13.20777273],[-16.1501007,-16.76657888,13.20777273],[-16.4480991,-16.76494326,13.20777273],[-15.9937,-16.76330763,13.20777273],[-16.6464996,-16.761672,13.20777273],[-16.4536991,-16.76003637,13.20777273],[-15.0812998,-16.75840074,13.20777273],[-13.6745005,-16.75676512,13.20777273],[-14.1779003,-16.75512949,13.20777273],[-14.6492996,-16.75349386,13.20777273],[-13.6683998,-16.75185823,13.20777273],[-14.8514996,-16.75022261,13.20777273],[-16.2401009,-16.74858698,13.20777273],[-16.8535004,-16.74695135,13.20777273],[-16.2390003,-16.74531572,13.20777273],[-15.4253998,-16.7436801,13.20777273],[-15.1360998,-16.74204447,13.20777273],[-16.3460007,-16.74040884,13.20777273],[-17.9755001,-16.73877321,13.20777273],[-18.1369991,-16.73713758,13.20777273],[-17.2632008,-16.73550196,13.20777273],[-17.7462006,-16.73386633,13.20777273],[-17.2094994,-16.7322307,13.20777273],[-14.1631002,-16.73059507,13.20777273],[-10.7234001,-16.72895945,13.20777273],[-12.1209002,-16.72732382,13.20777273],[-13.5269003,-16.72568819,13.20777273],[-13.8478003,-16.72405256,13.20777273],[-13.4630003,-16.72241693,13.20777273],[-13.3065004,-16.72078131,13.20777273],[-13.4389,-16.71914568,13.20777273],[-13.0462999,-16.71751005,13.20777273],[-12.4233999,-16.71587442,13.20777273],[-12.2322998,-16.7142388,13.20777273],[-13.6126003,-16.71260317,13.20777273],[-15.3759003,-16.71096754,13.20777273],[-15.3720999,-16.70933191,13.20777273],[-14.7790003,-16.70769628,13.20777273],[-15.2542,-16.70606066,13.20777273],[-14.9597998,-16.70442503,13.20777273],[-14.3484001,-16.7027894,13.20777273],[-14.0139999,-16.70115377,13.20777273],[-14.2511997,-16.69951815,13.20777273],[-14.8186998,-16.69788252,13.20777273],[-15.3016005,-16.69624689,13.20777273],[-15.4278002,-16.69461126,13.20777273],[-16.6434994,-16.69297564,13.20777273],[-17.4470997,-16.69134001,13.20777273],[-16.3432007,-16.68970438,13.20777273],[-16.3889008,-16.68806875,13.20777273],[-16.4269009,-16.68643312,13.20777273],[-14.5619001,-16.6847975,13.20777273],[-11.6104002,-16.68316187,13.20777273],[-12.1604996,-16.68152624,13.20777273],[-15.0607996,-16.67989061,13.20777273],[-17.7110004,-16.67825499,13.20777273],[-16.0394001,-16.67661936,13.20777273],[-12.6658001,-16.67498373,13.20777273],[-9.9871101,-16.6733481,13.20777273],[-12.1884003,-16.67171247,13.20777273],[-14.2811003,-16.67007685,13.20777273],[-15.4359999,-16.66844122,13.20777273],[-13.8219004,-16.66680559,13.20777273],[-12.6042004,-16.66516996,13.20777273],[-12.4188995,-16.66353434,13.20777273],[-12.3829002,-16.66189871,13.20777273],[-10.9898996,-16.66026308,13.20777273],[-11.1445999,-16.65862745,13.20777273],[-13.6223001,-16.65699182,13.20777273],[-5.9801798,-16.78129953,13.2061371],[-6.1305299,-16.77966391,13.2061371],[-8.00319,-16.77802828,13.2061371],[-11.5159998,-16.77639265,13.2061371],[-13.1671,-16.77475702,13.2061371],[-13.9621,-16.77312139,13.2061371],[-14.5158005,-16.77148577,13.2061371],[-14.8121996,-16.76985014,13.2061371],[-15.1217003,-16.76821451,13.2061371],[-15.7277002,-16.76657888,13.2061371],[-15.9232998,-16.76494326,13.2061371],[-15.6135998,-16.76330763,13.2061371],[-15.9350996,-16.761672,13.2061371],[-15.7047005,-16.76003637,13.2061371],[-14.8467999,-16.75840074,13.2061371],[-14.2549,-16.75676512,13.2061371],[-14.4015999,-16.75512949,13.2061371],[-14.7048998,-16.75349386,13.2061371],[-14.5719995,-16.75185823,13.2061371],[-15.1552,-16.75022261,13.2061371],[-15.9909,-16.74858698,13.2061371],[-16.3141994,-16.74695135,13.2061371],[-15.9504995,-16.74531572,13.2061371],[-15.5628004,-16.7436801,13.2061371],[-15.6035004,-16.74204447,13.2061371],[-16.1371002,-16.74040884,13.2061371],[-17.0997009,-16.73877321,13.2061371],[-17.1802006,-16.73713758,13.2061371],[-16.7656002,-16.73550196,13.2061371],[-16.7210999,-16.73386633,13.2061371],[-16.1427002,-16.7322307,13.2061371],[-14.3835001,-16.73059507,13.2061371],[-12.7783003,-16.72895945,13.2061371],[-12.79,-16.72732382,13.2061371],[-13.2203999,-16.72568819,13.2061371],[-13.2531996,-16.72405256,13.2061371],[-12.9553003,-16.72241693,13.2061371],[-12.8628998,-16.72078131,13.2061371],[-12.8881998,-16.71914568,13.2061371],[-12.7389002,-16.71751005,13.2061371],[-12.5588999,-16.71587442,13.2061371],[-12.7105999,-16.7142388,13.2061371],[-13.4684,-16.71260317,13.2061371],[-14.4530001,-16.71096754,13.2061371],[-14.6546001,-16.70933191,13.2061371],[-14.4371004,-16.70769628,13.2061371],[-14.5733995,-16.70606066,13.2061371],[-14.4000998,-16.70442503,13.2061371],[-14.1442003,-16.7027894,13.2061371],[-13.9668999,-16.70115377,13.2061371],[-13.9712,-16.69951815,13.2061371],[-14.0046997,-16.69788252,13.2061371],[-14.1581001,-16.69624689,13.2061371],[-14.5019999,-16.69461126,13.2061371],[-15.3514004,-16.69297564,13.2061371],[-15.8635998,-16.69134001,13.2061371],[-15.5424004,-16.68970438,13.2061371],[-15.6422005,-16.68806875,13.2061371],[-15.4850998,-16.68643312,13.2061371],[-14.5071001,-16.6847975,13.2061371],[-13.5242004,-16.68316187,13.2061371],[-13.4338999,-16.68152624,13.2061371],[-14.3051996,-16.67989061,13.2061371],[-15.0177002,-16.67825499,13.2061371],[-14.5415001,-16.67661936,13.2061371],[-13.3171997,-16.67498373,13.2061371],[-12.5155001,-16.6733481,13.2061371],[-12.8276997,-16.67171247,13.2061371],[-13.4731998,-16.67007685,13.2061371],[-13.5657997,-16.66844122,13.2061371],[-12.9896002,-16.66680559,13.2061371],[-12.4735003,-16.66516996,13.2061371],[-12.4688997,-16.66353434,13.2061371],[-12.6469002,-16.66189871,13.2061371],[-12.5445995,-16.66026308,13.2061371],[-12.7550001,-16.65862745,13.2061371],[-6.3225598,-16.78129953,13.20450147],[-7.6882601,-16.77966391,13.20450147],[-9.3303804,-16.77802828,13.20450147],[-12.6230001,-16.77639265,13.20450147],[-15.0762997,-16.77475702,13.20450147],[-14.8620996,-16.77312139,13.20450147],[-14.0530996,-16.77148577,13.20450147],[-14.0067997,-16.76985014,13.20450147],[-14.6632004,-16.76821451,13.20450147],[-15.1629,-16.76657888,13.20450147],[-15.1774998,-16.76494326,13.20450147],[-14.9900999,-16.76330763,13.20450147],[-14.5215998,-16.761672,13.20450147],[-14.5138998,-16.76003637,13.20450147],[-14.5516005,-16.75840074,13.20450147],[-14.3058004,-16.75676512,13.20450147],[-14.5269003,-16.75512949,13.20450147],[-15.1239004,-16.75349386,13.20450147],[-15.6033001,-16.75185823,13.20450147],[-15.6458998,-16.75022261,13.20450147],[-16.0049992,-16.74858698,13.20450147],[-16.2971992,-16.74695135,13.20450147],[-15.927,-16.74531572,13.20450147],[-15.5295,-16.7436801,13.20450147],[-15.4125004,-16.74204447,13.20450147],[-15.9013996,-16.74040884,13.20450147],[-16.2101994,-16.73877321,13.20450147],[-16.3393993,-16.73713758,13.20450147],[-15.9658003,-16.73550196,13.20450147],[-15.2082005,-16.73386633,13.20450147],[-14.9542999,-16.7322307,13.20450147],[-14.6281004,-16.73059507,13.20450147],[-14.2686996,-16.72895945,13.20450147],[-13.7371998,-16.72732382,13.20450147],[-12.9769001,-16.72568819,13.20450147],[-12.3499002,-16.72405256,13.20450147],[-12.3972998,-16.72241693,13.20450147],[-12.3402004,-16.72078131,13.20450147],[-12.1149998,-16.71914568,13.20450147],[-12.3704004,-16.71751005,13.20450147],[-12.2449999,-16.71587442,13.20450147],[-12.2526999,-16.7142388,13.20450147],[-13.2398005,-16.71260317,13.20450147],[-14.0840998,-16.71096754,13.20450147],[-14.2353001,-16.70933191,13.20450147],[-13.9783001,-16.70769628,13.20450147],[-13.4243002,-16.70606066,13.20450147],[-13.5780001,-16.70442503,13.20450147],[-13.8373003,-16.7027894,13.20450147],[-13.7275,-16.70115377,13.20450147],[-13.5896997,-16.69951815,13.20450147],[-12.6253004,-16.69788252,13.20450147],[-11.7129002,-16.69624689,13.20450147],[-13.0798998,-16.69461126,13.20450147],[-14.4273996,-16.69297564,13.20450147],[-14.7508001,-16.69134001,13.20450147],[-14.8620996,-16.68970438,13.20450147],[-14.8669004,-16.68806875,13.20450147],[-14.8366003,-16.68643312,13.20450147],[-14.5214005,-16.6847975,13.20450147],[-14.0833998,-16.68316187,13.20450147],[-13.9981003,-16.68152624,13.20450147],[-13.8661003,-16.67989061,13.20450147],[-13.7421999,-16.67825499,13.20450147],[-13.6987,-16.67661936,13.20450147],[-13.5157003,-16.67498373,13.20450147],[-13.7159996,-16.6733481,13.20450147],[-13.2283001,-16.67171247,13.20450147],[-12.8711004,-16.67007685,13.20450147],[-12.6745005,-16.66844122,13.20450147],[-12.5642996,-16.66680559,13.20450147],[-12.1401997,-16.66516996,13.20450147],[-12.085,-16.66353434,13.20450147],[-12.6215,-16.66189871,13.20450147],[-13.6671,-16.66026308,13.20450147],[-6.3115602,-16.78129953,13.20286585],[-7.8836699,-16.77966391,13.20286585],[-9.24788,-16.77802828,13.20286585],[-14.0188999,-16.77639265,13.20286585],[-18.0981998,-16.77475702,13.20286585],[-15.6282997,-16.77312139,13.20286585],[-13.7622004,-16.77148577,13.20286585],[-12.7648001,-16.76985014,13.20286585],[-14.3257999,-16.76821451,13.20286585],[-15.0063,-16.76657888,13.20286585],[-15.0164003,-16.76494326,13.20286585],[-14.6961002,-16.76330763,13.20286585],[-13.7507,-16.761672,13.20286585],[-13.8008003,-16.76003637,13.20286585],[-14.3219995,-16.75840074,13.20286585],[-14.0705004,-16.75676512,13.20286585],[-14.3116999,-16.75512949,13.20286585],[-15.1955996,-16.75349386,13.20286585],[-16.1131992,-16.75185823,13.20286585],[-15.7089996,-16.75022261,13.20286585],[-16.0405998,-16.74858698,13.20286585],[-16.7943993,-16.74695135,13.20286585],[-15.9331999,-16.74531572,13.20286585],[-15.3387003,-16.7436801,13.20286585],[-15.1657,-16.74204447,13.20286585],[-15.6492996,-16.74040884,13.20286585],[-16.0384007,-16.73877321,13.20286585],[-16.1026993,-16.73713758,13.20286585],[-15.4375,-16.73550196,13.20286585],[-14.5323,-16.73386633,13.20286585],[-14.4951,-16.7322307,13.20286585],[-14.5191002,-16.73059507,13.20286585],[-14.5763998,-16.72895945,13.20286585],[-14.0142002,-16.72732382,13.20286585],[-12.599,-16.72568819,13.20286585],[-11.9221001,-16.72405256,13.20286585],[-12.0935001,-16.72241693,13.20286585],[-12.0761995,-16.72078131,13.20286585],[-11.8491001,-16.71914568,13.20286585],[-12.1079998,-16.71751005,13.20286585],[-11.9612999,-16.71587442,13.20286585],[-11.8632002,-16.7142388,13.20286585],[-13.1324997,-16.71260317,13.20286585],[-14.1395998,-16.71096754,13.20286585],[-14.2128,-16.70933191,13.20286585],[-13.7847996,-16.70769628,13.20286585],[-13.0665998,-16.70606066,13.20286585],[-13.2965002,-16.70442503,13.20286585],[-13.5682001,-16.7027894,13.20286585],[-13.6962004,-16.70115377,13.20286585],[-13.2856998,-16.69951815,13.20286585],[-12.0035,-16.69788252,13.20286585],[-10.9251003,-16.69624689,13.20286585],[-12.2856998,-16.69461126,13.20286585],[-14.0056,-16.69297564,13.20286585],[-14.5502996,-16.69134001,13.20286585],[-14.2816,-16.68970438,13.20286585],[-14.6332998,-16.68806875,13.20286585],[-14.7285004,-16.68643312,13.20286585],[-14.1422005,-16.6847975,13.20286585],[-13.9933004,-16.68316187,13.20286585],[-13.8702002,-16.68152624,13.20286585],[-13.4906998,-16.67989061,13.20286585],[-13.5643997,-16.67825499,13.20286585],[-13.3875999,-16.67661936,13.20286585],[-13.4672003,-16.67498373,13.20286585],[-13.7805004,-16.6733481,13.20286585],[-13.1935997,-16.67171247,13.20286585],[-12.4566002,-16.67007685,13.20286585],[-12.5101995,-16.66844122,13.20286585],[-12.2082005,-16.66680559,13.20286585],[-12.0397997,-16.66516996,13.20286585],[-11.9754,-16.66353434,13.20286585],[-12.6468,-16.66189871,13.20286585],[-6.77706,-16.78129953,13.20123022],[-8.2474403,-16.77966391,13.20123022],[-9.9187403,-16.77802828,13.20123022],[-12.8987999,-16.77639265,13.20123022],[-15.3811998,-16.77475702,13.20123022],[-15.2608995,-16.77312139,13.20123022],[-14.4666004,-16.77148577,13.20123022],[-14.3948002,-16.76985014,13.20123022],[-14.8052998,-16.76821451,13.20123022],[-15.0423002,-16.76657888,13.20123022],[-14.9085999,-16.76494326,13.20123022],[-14.6943998,-16.76330763,13.20123022],[-14.2855997,-16.761672,13.20123022],[-14.3046999,-16.76003637,13.20123022],[-14.4014997,-16.75840074,13.20123022],[-14.3879004,-16.75676512,13.20123022],[-14.5682001,-16.75512949,13.20123022],[-14.9649,-16.75349386,13.20123022],[-15.3841,-16.75185823,13.20123022],[-15.3525,-16.75022261,13.20123022],[-15.3408003,-16.74858698,13.20123022],[-15.4294004,-16.74695135,13.20123022],[-15.2989998,-16.74531572,13.20123022],[-15.2010002,-16.7436801,13.20123022],[-15.2417002,-16.74204447,13.20123022],[-15.3318996,-16.74040884,13.20123022],[-15.6815996,-16.73877321,13.20123022],[-15.6213999,-16.73713758,13.20123022],[-15.3243999,-16.73550196,13.20123022],[-14.9124002,-16.73386633,13.20123022],[-14.7200003,-16.7322307,13.20123022],[-14.4130001,-16.73059507,13.20123022],[-14.0867996,-16.72895945,13.20123022],[-13.5110998,-16.72732382,13.20123022],[-12.6729002,-16.72568819,13.20123022],[-12.1035995,-16.72405256,13.20123022],[-12.0334997,-16.72241693,13.20123022],[-11.9933996,-16.72078131,13.20123022],[-11.79,-16.71914568,13.20123022],[-12.0038996,-16.71751005,13.20123022],[-12.1042995,-16.71587442,13.20123022],[-12.3317003,-16.7142388,13.20123022],[-12.9110003,-16.71260317,13.20123022],[-13.6205997,-16.71096754,13.20123022],[-13.9826002,-16.70933191,13.20123022],[-13.8955002,-16.70769628,13.20123022],[-13.7960997,-16.70606066,13.20123022],[-13.6697998,-16.70442503,13.20123022],[-13.5681,-16.7027894,13.20123022],[-13.2494001,-16.70115377,13.20123022],[-12.7721004,-16.69951815,13.20123022],[-12.1873999,-16.69788252,13.20123022],[-11.9811001,-16.69624689,13.20123022],[-12.2156,-16.69461126,13.20123022],[-12.4483995,-16.69297564,13.20123022],[-12.7110004,-16.69134001,13.20123022],[-13.4057999,-16.68970438,13.20123022],[-14.0548,-16.68806875,13.20123022],[-14.0939999,-16.68643312,13.20123022],[-13.4390001,-16.6847975,13.20123022],[-13.0594997,-16.68316187,13.20123022],[-12.8990002,-16.68152624,13.20123022],[-13.0172997,-16.67989061,13.20123022],[-12.9491997,-16.67825499,13.20123022],[-13.0056,-16.67661936,13.20123022],[-13.1023998,-16.67498373,13.20123022],[-13.1204004,-16.6733481,13.20123022],[-12.5376997,-16.67171247,13.20123022],[-11.6646004,-16.67007685,13.20123022],[-11.1317997,-16.66844122,13.20123022],[-11.6330004,-16.66680559,13.20123022],[-12.0685997,-16.66516996,13.20123022],[-12.3041,-16.66353434,13.20123022],[-5.5300698,-16.78293516,13.19959459],[-7.2183499,-16.78129953,13.19959459],[-8.2336903,-16.77966391,13.19959459],[-9.5428495,-16.77802828,13.19959459],[-12.7047997,-16.77639265,13.19959459],[-14.9464998,-16.77475702,13.19959459],[-15.1143999,-16.77312139,13.19959459],[-15.5160999,-16.77148577,13.19959459],[-15.9542999,-16.76985014,13.19959459],[-15.4324999,-16.76821451,13.19959459],[-15.0625,-16.76657888,13.19959459],[-15.0459003,-16.76494326,13.19959459],[-14.8004999,-16.76330763,13.19959459],[-14.8011999,-16.761672,13.19959459],[-14.6945,-16.76003637,13.19959459],[-14.5801001,-16.75840074,13.19959459],[-14.6616001,-16.75676512,13.19959459],[-14.6283998,-16.75512949,13.19959459],[-14.8555002,-16.75349386,13.19959459],[-14.9020004,-16.75185823,13.19959459],[-14.8942003,-16.75022261,13.19959459],[-14.3618002,-16.74858698,13.19959459],[-13.6015997,-16.74695135,13.19959459],[-14.4750004,-16.74531572,13.19959459],[-14.8973999,-16.7436801,13.19959459],[-15.0229998,-16.74204447,13.19959459],[-15.1420002,-16.74040884,13.19959459],[-15.3319998,-16.73877321,13.19959459],[-15.4309998,-16.73713758,13.19959459],[-15.2133999,-16.73550196,13.19959459],[-15.1408005,-16.73386633,13.19959459],[-14.9001999,-16.7322307,13.19959459],[-14.2705002,-16.73059507,13.19959459],[-14.5430002,-16.72895945,13.19959459],[-13.7945995,-16.72732382,13.19959459],[-12.4724998,-16.72568819,13.19959459],[-11.7756004,-16.72405256,13.19959459],[-11.8059998,-16.72241693,13.19959459],[-11.7854004,-16.72078131,13.19959459],[-11.8875999,-16.71914568,13.19959459],[-11.8716002,-16.71751005,13.19959459],[-12.2417002,-16.71587442,13.19959459],[-12.4989004,-16.7142388,13.19959459],[-12.7721004,-16.71260317,13.19959459],[-13.9405003,-16.71096754,13.19959459],[-14.1080999,-16.70933191,13.19959459],[-13.9590998,-16.70769628,13.19959459],[-14.3414001,-16.70606066,13.19959459],[-14.0894003,-16.70442503,13.19959459],[-13.3674002,-16.7027894,13.19959459],[-13.3392,-16.70115377,13.19959459],[-12.8172998,-16.69951815,13.19959459],[-12.2173004,-16.69788252,13.19959459],[-12.3801003,-16.69624689,13.19959459],[-11.8423004,-16.69461126,13.19959459],[-10.8837996,-16.69297564,13.19959459],[-10.0782003,-16.69134001,13.19959459],[-12.2045002,-16.68970438,13.19959459],[-14.1527004,-16.68806875,13.19959459],[-14.4231005,-16.68643312,13.19959459],[-13.0309,-16.6847975,13.19959459],[-11.4230003,-16.68316187,13.19959459],[-11.5516996,-16.68152624,13.19959459],[-12.5588999,-16.67989061,13.19959459],[-12.2480001,-16.67825499,13.19959459],[-12.5374002,-16.67661936,13.19959459],[-12.8527002,-16.67498373,13.19959459],[-13.1637001,-16.6733481,13.19959459],[-12.4313002,-16.67171247,13.19959459],[-10.3014002,-16.67007685,13.19959459],[-8.4089298,-16.66844122,13.19959459],[-10.7130003,-16.66680559,13.19959459],[-12.3899002,-16.66516996,13.19959459],[-12.7854996,-16.66353434,13.19959459],[-5.4208698,-16.78293516,13.19795896],[-7.2583599,-16.78129953,13.19795896],[-7.92765,-16.77966391,13.19795896],[-9.2265596,-16.77802828,13.19795896],[-13.1872997,-16.77639265,13.19795896],[-15.5545998,-16.77475702,13.19795896],[-15.0407,-16.77312139,13.19795896],[-15.6721001,-16.77148577,13.19795896],[-16.3637009,-16.76985014,13.19795896],[-15.5355997,-16.76821451,13.19795896],[-15.1033001,-16.76657888,13.19795896],[-15.0888004,-16.76494326,13.19795896],[-14.7454996,-16.76330763,13.19795896],[-14.7865,-16.761672,13.19795896],[-14.7491999,-16.76003637,13.19795896],[-14.6245003,-16.75840074,13.19795896],[-14.6891003,-16.75676512,13.19795896],[-14.7391005,-16.75512949,13.19795896],[-14.8958998,-16.75349386,13.19795896],[-14.8646002,-16.75185823,13.19795896],[-14.8210001,-16.75022261,13.19795896],[-14.1775999,-16.74858698,13.19795896],[-13.1819,-16.74695135,13.19795896],[-14.2054005,-16.74531572,13.19795896],[-14.7818003,-16.7436801,13.19795896],[-14.9014997,-16.74204447,13.19795896],[-14.8559999,-16.74040884,13.19795896],[-15.1187,-16.73877321,13.19795896],[-15.2119999,-16.73713758,13.19795896],[-14.5848999,-16.73550196,13.19795896],[-14.934,-16.73386633,13.19795896],[-14.7925997,-16.7322307,13.19795896],[-14.1174002,-16.73059507,13.19795896],[-14.5257998,-16.72895945,13.19795896],[-13.7231998,-16.72732382,13.19795896],[-12.1750002,-16.72568819,13.19795896],[-11.6570997,-16.72405256,13.19795896],[-11.4948997,-16.72241693,13.19795896],[-11.5497999,-16.72078131,13.19795896],[-11.7784996,-16.71914568,13.19795896],[-11.5493002,-16.71751005,13.19795896],[-11.9007998,-16.71587442,13.19795896],[-12.2550001,-16.7142388,13.19795896],[-12.3841,-16.71260317,13.19795896],[-13.5972996,-16.71096754,13.19795896],[-13.8238001,-16.70933191,13.19795896],[-13.6077995,-16.70769628,13.19795896],[-14.2098999,-16.70606066,13.19795896],[-14.0103998,-16.70442503,13.19795896],[-13.1484003,-16.7027894,13.19795896],[-13.1391001,-16.70115377,13.19795896],[-12.4604998,-16.69951815,13.19795896],[-11.8326998,-16.69788252,13.19795896],[-12.0230999,-16.69624689,13.19795896],[-11.3824997,-16.69461126,13.19795896],[-10.7749996,-16.69297564,13.19795896],[-10.3965998,-16.69134001,13.19795896],[-12.0423002,-16.68970438,13.19795896],[-13.8190002,-16.68806875,13.19795896],[-14.0437002,-16.68643312,13.19795896],[-12.8320999,-16.6847975,13.19795896],[-11.6633997,-16.68316187,13.19795896],[-11.7247,-16.68152624,13.19795896],[-12.3443003,-16.67989061,13.19795896],[-12.3873997,-16.67825499,13.19795896],[-12.5124998,-16.67661936,13.19795896],[-12.8284998,-16.67498373,13.19795896],[-13.0214996,-16.6733481,13.19795896],[-12.3931999,-16.67171247,13.19795896],[-10.5262003,-16.67007685,13.19795896],[-9.3279696,-16.66844122,13.19795896],[-10.6056995,-16.66680559,13.19795896],[-11.9091997,-16.66516996,13.19795896],[-7.61133,-16.78129953,13.19632334],[-8.5201502,-16.77966391,13.19632334],[-10.2425003,-16.77802828,13.19632334],[-12.3877001,-16.77639265,13.19632334],[-14.0973997,-16.77475702,13.19632334],[-14.7111998,-16.77312139,13.19632334],[-15.0479002,-16.77148577,13.19632334],[-15.4653997,-16.76985014,13.19632334],[-15.1657,-16.76821451,13.19632334],[-15.0502005,-16.76657888,13.19632334],[-14.8330002,-16.76494326,13.19632334],[-14.4708004,-16.76330763,13.19632334],[-13.9965,-16.761672,13.19632334],[-13.9673004,-16.76003637,13.19632334],[-14.3927002,-16.75840074,13.19632334],[-14.8027,-16.75676512,13.19632334],[-14.9796,-16.75512949,13.19632334],[-14.9995003,-16.75349386,13.19632334],[-15.1639004,-16.75185823,13.19632334],[-15.0882998,-16.75022261,13.19632334],[-14.901,-16.74858698,13.19632334],[-14.7286997,-16.74695135,13.19632334],[-14.6498003,-16.74531572,13.19632334],[-14.5387001,-16.7436801,13.19632334],[-14.3156004,-16.74204447,13.19632334],[-14.1492004,-16.74040884,13.19632334],[-14.1385002,-16.73877321,13.19632334],[-14.0291004,-16.73713758,13.19632334],[-13.8500996,-16.73550196,13.19632334],[-13.7072001,-16.73386633,13.19632334],[-13.5752001,-16.7322307,13.19632334],[-13.4719,-16.73059507,13.19632334],[-13.2594004,-16.72895945,13.19632334],[-12.7010002,-16.72732382,13.19632334],[-11.5227003,-16.72568819,13.19632334],[-10.5418997,-16.72405256,13.19632334],[-10.6205997,-16.72241693,13.19632334],[-11.0692997,-16.72078131,13.19632334],[-11.0236998,-16.71914568,13.19632334],[-10.8283005,-16.71751005,13.19632334],[-10.4455996,-16.71587442,13.19632334],[-10.4898005,-16.7142388,13.19632334],[-11.3432999,-16.71260317,13.19632334],[-11.9417,-16.71096754,13.19632334],[-12.3437004,-16.70933191,13.19632334],[-13.1444998,-16.70769628,13.19632334],[-13.8744001,-16.70606066,13.19632334],[-13.5552998,-16.70442503,13.19632334],[-12.7813997,-16.7027894,13.19632334],[-12.1903,-16.70115377,13.19632334],[-11.5654001,-16.69951815,13.19632334],[-10.1956997,-16.69788252,13.19632334],[-9.1206999,-16.69624689,13.19632334],[-10.1538,-16.69461126,13.19632334],[-11.4092999,-16.69297564,13.19632334],[-12.0911999,-16.69134001,13.19632334],[-12.3867998,-16.68970438,13.19632334],[-12.8330002,-16.68806875,13.19632334],[-13.0277996,-16.68643312,13.19632334],[-12.6541996,-16.6847975,13.19632334],[-12.2199001,-16.68316187,13.19632334],[-12.191,-16.68152624,13.19632334],[-12.5670004,-16.67989061,13.19632334],[-12.8436003,-16.67825499,13.19632334],[-12.8237,-16.67661936,13.19632334],[-13.0902996,-16.67498373,13.19632334],[-13.2983999,-16.6733481,13.19632334],[-12.5095997,-16.67171247,13.19632334],[-11.3963003,-16.67007685,13.19632334],[-10.9813004,-16.66844122,13.19632334],[-10.9759998,-16.66680559,13.19632334],[-7.5826302,-16.78129953,13.19468771],[-8.6386204,-16.77966391,13.19468771],[-9.6376495,-16.77802828,13.19468771],[-12.5764999,-16.77639265,13.19468771],[-14.2048998,-16.77475702,13.19468771],[-14.3246002,-16.77312139,13.19468771],[-14.6584997,-16.77148577,13.19468771],[-14.8881998,-16.76985014,13.19468771],[-14.9457998,-16.76821451,13.19468771],[-15.2061005,-16.76657888,13.19468771],[-15.2985001,-16.76494326,13.19468771],[-14.1868,-16.76330763,13.19468771],[-12.4231997,-16.761672,13.19468771],[-12.4097996,-16.76003637,13.19468771],[-14.2503004,-16.75840074,13.19468771],[-15.5256004,-16.75676512,13.19468771],[-15.3822002,-16.75512949,13.19468771],[-15.2681999,-16.75349386,13.19468771],[-15.4631004,-16.75185823,13.19468771],[-15.3500004,-16.75022261,13.19468771],[-15.4549999,-16.74858698,13.19468771],[-15.9029999,-16.74695135,13.19468771],[-15.1164999,-16.74531572,13.19468771],[-14.0040998,-16.7436801,13.19468771],[-13.6450996,-16.74204447,13.19468771],[-13.6728001,-16.74040884,13.19468771],[-13.3446999,-16.73877321,13.19468771],[-13.2638998,-16.73713758,13.19468771],[-13.0735998,-16.73550196,13.19468771],[-12.6110001,-16.73386633,13.19468771],[-12.592,-16.7322307,13.19468771],[-12.9513998,-16.73059507,13.19468771],[-12.9109001,-16.72895945,13.19468771],[-12.4811001,-16.72732382,13.19468771],[-10.3238001,-16.72568819,13.19468771],[-7.6542702,-16.72405256,13.19468771],[-9.4783001,-16.72241693,13.19468771],[-10.7525997,-16.72078131,13.19468771],[-11.0719995,-16.71914568,13.19468771],[-10.4575005,-16.71751005,13.19468771],[-8.8901796,-16.71587442,13.19468771],[-8.2011805,-16.7142388,13.19468771],[-10.2244997,-16.71260317,13.19468771],[-10.9787998,-16.71096754,13.19468771],[-11.1524,-16.70933191,13.19468771],[-12.6814003,-16.70769628,13.19468771],[-14.7199001,-16.70606066,13.19468771],[-14.1470003,-16.70442503,13.19468771],[-12.4344997,-16.7027894,13.19468771],[-11.6892004,-16.70115377,13.19468771],[-11.2528,-16.69951815,13.19468771],[-8.3334303,-16.69788252,13.19468771],[-4.4580202,-16.69624689,13.19468771],[-8.5588102,-16.69461126,13.19468771],[-12.1896,-16.69297564,13.19468771],[-13.2005997,-16.69134001,13.19468771],[-12.6183004,-16.68970438,13.19468771],[-12.7145996,-16.68806875,13.19468771],[-12.7739,-16.68643312,13.19468771],[-12.4933996,-16.6847975,13.19468771],[-11.8248997,-16.68316187,13.19468771],[-11.9085999,-16.68152624,13.19468771],[-12.6444998,-16.67989061,13.19468771],[-13.2753,-16.67825499,13.19468771],[-13.0950003,-16.67661936,13.19468771],[-13.2891998,-16.67498373,13.19468771],[-14.7726002,-16.6733481,13.19468771],[-13.1442003,-16.67171247,13.19468771],[-11.4793997,-16.67007685,13.19468771],[-11.3385,-16.66844122,13.19468771],[-7.6575699,-16.78129953,13.19305208],[-8.6413803,-16.77966391,13.19305208],[-9.5681295,-16.77802828,13.19305208],[-12.4237003,-16.77639265,13.19305208],[-14.1304998,-16.77475702,13.19305208],[-14.1077003,-16.77312139,13.19305208],[-14.4476004,-16.77148577,13.19305208],[-14.7496996,-16.76985014,13.19305208],[-14.6531,-16.76821451,13.19305208],[-14.8895998,-16.76657888,13.19305208],[-15.1141996,-16.76494326,13.19305208],[-13.8938999,-16.76330763,13.19305208],[-12.4645996,-16.761672,13.19305208],[-12.5391998,-16.76003637,13.19305208],[-14.1527004,-16.75840074,13.19305208],[-15.3842001,-16.75676512,13.19305208],[-15.2898998,-16.75512949,13.19305208],[-15.0871,-16.75349386,13.19305208],[-15.3589001,-16.75185823,13.19305208],[-15.2565002,-16.75022261,13.19305208],[-15.5333004,-16.74858698,13.19305208],[-15.7453003,-16.74695135,13.19305208],[-15.0007,-16.74531572,13.19305208],[-14.0270996,-16.7436801,13.19305208],[-13.6008997,-16.74204447,13.19305208],[-13.2568998,-16.74040884,13.19305208],[-12.9428997,-16.73877321,13.19305208],[-12.8648005,-16.73713758,13.19305208],[-12.5441999,-16.73550196,13.19305208],[-12.4993,-16.73386633,13.19305208],[-12.4364996,-16.7322307,13.19305208],[-12.5265999,-16.73059507,13.19305208],[-12.7293997,-16.72895945,13.19305208],[-12.2719002,-16.72732382,13.19305208],[-10.6416998,-16.72568819,13.19305208],[-8.9581499,-16.72405256,13.19305208],[-9.8577099,-16.72241693,13.19305208],[-10.6485996,-16.72078131,13.19305208],[-10.7638998,-16.71914568,13.19305208],[-10.1033001,-16.71751005,13.19305208],[-9.0509501,-16.71587442,13.19305208],[-8.7926502,-16.7142388,13.19305208],[-9.8488503,-16.71260317,13.19305208],[-10.7487001,-16.71096754,13.19305208],[-11.1448002,-16.70933191,13.19305208],[-12.1047001,-16.70769628,13.19305208],[-13.5789003,-16.70606066,13.19305208],[-13.2014999,-16.70442503,13.19305208],[-12.0684996,-16.7027894,13.19305208],[-11.6212997,-16.70115377,13.19305208],[-11.1428003,-16.69951815,13.19305208],[-9.4377804,-16.69788252,13.19305208],[-7.5734301,-16.69624689,13.19305208],[-9.73211,-16.69461126,13.19305208],[-11.9879999,-16.69297564,13.19305208],[-12.7355003,-16.69134001,13.19305208],[-12.7048998,-16.68970438,13.19305208],[-12.7079,-16.68806875,13.19305208],[-12.8267002,-16.68643312,13.19305208],[-12.6877003,-16.6847975,13.19305208],[-12.2531996,-16.68316187,13.19305208],[-12.3018999,-16.68152624,13.19305208],[-12.5802002,-16.67989061,13.19305208],[-12.9011002,-16.67825499,13.19305208],[-12.8797998,-16.67661936,13.19305208],[-12.8572998,-16.67498373,13.19305208],[-13.1613998,-16.6733481,13.19305208],[-12.2080002,-16.67171247,13.19305208],[-11.0274,-16.67007685,13.19305208],[-6.4095602,-16.78293516,13.19141645],[-7.68713,-16.78129953,13.19141645],[-8.6519804,-16.77966391,13.19141645],[-10.0697002,-16.77802828,13.19141645],[-11.8882999,-16.77639265,13.19141645],[-13.4173002,-16.77475702,13.19141645],[-13.8986998,-16.77312139,13.19141645],[-13.9840002,-16.77148577,13.19141645],[-14.1765003,-16.76985014,13.19141645],[-14.0494003,-16.76821451,13.19141645],[-14.0829,-16.76657888,13.19141645],[-13.9960003,-16.76494326,13.19141645],[-13.7012997,-16.76330763,13.19141645],[-13.2321997,-16.761672,13.19141645],[-13.3069,-16.76003637,13.19141645],[-14.1434002,-16.75840074,13.19141645],[-14.6775999,-16.75676512,13.19141645],[-14.8816996,-16.75512949,13.19141645],[-14.8625002,-16.75349386,13.19141645],[-14.9672003,-16.75185823,13.19141645],[-15.0506001,-16.75022261,13.19141645],[-15.4096003,-16.74858698,13.19141645],[-15.5713997,-16.74695135,13.19141645],[-14.9449997,-16.74531572,13.19141645],[-14.1239996,-16.7436801,13.19141645],[-13.6408005,-16.74204447,13.19141645],[-12.7692003,-16.74040884,13.19141645],[-11.3888998,-16.73877321,13.19141645],[-10.9813004,-16.73713758,13.19141645],[-11.7810001,-16.73550196,13.19141645],[-12.0745001,-16.73386633,13.19141645],[-12.2334003,-16.7322307,13.19141645],[-12.3599997,-16.73059507,13.19141645],[-12.5923996,-16.72895945,13.19141645],[-12.2482004,-16.72732382,13.19141645],[-11.7944002,-16.72568819,13.19141645],[-11.7396002,-16.72405256,13.19141645],[-11.1597004,-16.72241693,13.19141645],[-10.7860003,-16.72078131,13.19141645],[-10.5094004,-16.71914568,13.19141645],[-9.9493704,-16.71751005,13.19141645],[-9.0776997,-16.71587442,13.19141645],[-8.7631397,-16.7142388,13.19141645],[-9.6526203,-16.71260317,13.19141645],[-10.3810997,-16.71096754,13.19141645],[-10.7735996,-16.70933191,13.19141645],[-11.3764,-16.70769628,13.19141645],[-11.6430998,-16.70606066,13.19141645],[-11.8249998,-16.70442503,13.19141645],[-11.6049995,-16.7027894,13.19141645],[-11.4250002,-16.70115377,13.19141645],[-11.3467999,-16.69951815,13.19141645],[-11.4933996,-16.69788252,13.19141645],[-11.9920998,-16.69624689,13.19141645],[-11.8523998,-16.69461126,13.19141645],[-12.3549995,-16.69297564,13.19141645],[-12.849,-16.69134001,13.19141645],[-12.8664999,-16.68970438,13.19141645],[-13.2844,-16.68806875,13.19141645],[-13.3109999,-16.68643312,13.19141645],[-12.9705,-16.6847975,13.19141645],[-12.8456001,-16.68316187,13.19141645],[-12.6941996,-16.68152624,13.19141645],[-12.5824003,-16.67989061,13.19141645],[-12.4650002,-16.67825499,13.19141645],[-12.3347998,-16.67661936,13.19141645],[-12.0038996,-16.67498373,13.19141645],[-11.4321003,-16.6733481,13.19141645],[-11.0275002,-16.67171247,13.19141645],[-9.5120201,-16.67007685,13.19141645],[-5.28336,-16.78293516,13.18978083],[-7.46102,-16.78129953,13.18978083],[-8.4467697,-16.77966391,13.18978083],[-9.2846699,-16.77802828,13.18978083],[-12.2691002,-16.77639265,13.18978083],[-14.3845997,-16.77475702,13.18978083],[-13.7686005,-16.77312139,13.18978083],[-13.6244001,-16.77148577,13.18978083],[-13.7746,-16.76985014,13.18978083],[-13.6393995,-16.76821451,13.18978083],[-13.7411003,-16.76657888,13.18978083],[-13.8617001,-16.76494326,13.18978083],[-13.4219999,-16.76330763,13.18978083],[-13.007,-16.761672,13.18978083],[-13.007,-16.76003637,13.18978083],[-13.9748001,-16.75840074,13.18978083],[-14.9059,-16.75676512,13.18978083],[-14.8473997,-16.75512949,13.18978083],[-14.6539001,-16.75349386,13.18978083],[-14.5798998,-16.75185823,13.18978083],[-14.8203001,-16.75022261,13.18978083],[-15.5784998,-16.74858698,13.18978083],[-16.5533009,-16.74695135,13.18978083],[-15.2257996,-16.74531572,13.18978083],[-14.0431995,-16.7436801,13.18978083],[-13.8039999,-16.74204447,13.18978083],[-12.5024004,-16.74040884,13.18978083],[-9.36269,-16.73877321,13.18978083],[-8.4847202,-16.73713758,13.18978083],[-11.0382004,-16.73550196,13.18978083],[-11.8175001,-16.73386633,13.18978083],[-11.9216995,-16.7322307,13.18978083],[-12.2298002,-16.73059507,13.18978083],[-12.9295998,-16.72895945,13.18978083],[-12.6261997,-16.72732382,13.18978083],[-12.349,-16.72568819,13.18978083],[-13.1918001,-16.72405256,13.18978083],[-11.9907999,-16.72241693,13.18978083],[-10.8550997,-16.72078131,13.18978083],[-10.6812,-16.71914568,13.18978083],[-9.9662905,-16.71751005,13.18978083],[-8.3973503,-16.71587442,13.18978083],[-7.6522198,-16.7142388,13.18978083],[-9.3061895,-16.71260317,13.18978083],[-10.3519001,-16.71096754,13.18978083],[-10.4790001,-16.70933191,13.18978083],[-10.7772999,-16.70769628,13.18978083],[-10.9776001,-16.70606066,13.18978083],[-11.1106005,-16.70442503,13.18978083],[-11.2037001,-16.7027894,13.18978083],[-11.2671003,-16.70115377,13.18978083],[-11.3865995,-16.69951815,13.18978083],[-12.3944998,-16.69788252,13.18978083],[-13.9769001,-16.69624689,13.18978083],[-12.7901001,-16.69461126,13.18978083],[-12.8360996,-16.69297564,13.18978083],[-13.2955999,-16.69134001,13.18978083],[-12.9631996,-16.68970438,13.18978083],[-13.4414997,-16.68806875,13.18978083],[-13.7130003,-16.68643312,13.18978083],[-13.0635004,-16.6847975,13.18978083],[-13.0439997,-16.68316187,13.18978083],[-12.9667997,-16.68152624,13.18978083],[-12.5695,-16.67989061,13.18978083],[-12.3339005,-16.67825499,13.18978083],[-12.1985998,-16.67661936,13.18978083],[-11.5734997,-16.67498373,13.18978083],[-10.9306002,-16.6733481,13.18978083],[-10.6826,-16.67171247,13.18978083],[-7.4653902,-16.78129953,13.1881452],[-8.4738398,-16.77966391,13.1881452],[-9.4693003,-16.77802828,13.1881452],[-11.7575998,-16.77639265,13.1881452],[-13.6437998,-16.77475702,13.1881452],[-13.3105001,-16.77312139,13.1881452],[-13.2356997,-16.77148577,13.1881452],[-13.2905998,-16.76985014,13.1881452],[-12.9492998,-16.76821451,13.1881452],[-13.0677004,-16.76657888,13.1881452],[-13.2657003,-16.76494326,13.1881452],[-12.9611998,-16.76330763,13.1881452],[-13.0663996,-16.761672,13.1881452],[-13.2714996,-16.76003637,13.1881452],[-13.8226004,-16.75840074,13.1881452],[-14.5550003,-16.75676512,13.1881452],[-14.6125002,-16.75512949,13.1881452],[-14.4238005,-16.75349386,13.1881452],[-14.4169998,-16.75185823,13.1881452],[-14.6020002,-16.75022261,13.1881452],[-15.2192001,-16.74858698,13.1881452],[-15.7247,-16.74695135,13.1881452],[-14.8341999,-16.74531572,13.1881452],[-13.9597998,-16.7436801,13.1881452],[-13.5227003,-16.74204447,13.1881452],[-12.5785999,-16.74040884,13.1881452],[-10.8739004,-16.73877321,13.1881452],[-10.3992996,-16.73713758,13.1881452],[-11.5105,-16.73550196,13.1881452],[-11.9715004,-16.73386633,13.1881452],[-12.0733995,-16.7322307,13.1881452],[-12.2587004,-16.73059507,13.1881452],[-12.3674002,-16.72895945,13.1881452],[-12.2650995,-16.72732382,13.1881452],[-12.191,-16.72568819,13.1881452],[-12.3135996,-16.72405256,13.1881452],[-11.6554003,-16.72241693,13.1881452],[-10.9960003,-16.72078131,13.1881452],[-10.5487003,-16.71914568,13.1881452],[-10.0205002,-16.71751005,13.1881452],[-9.0484896,-16.71587442,13.1881452],[-8.7295103,-16.7142388,13.1881452],[-9.3781204,-16.71260317,13.1881452],[-10.0657997,-16.71096754,13.1881452],[-10.2742996,-16.70933191,13.1881452],[-10.5574999,-16.70769628,13.1881452],[-10.8486996,-16.70606066,13.1881452],[-11.0349998,-16.70442503,13.1881452],[-11.0820999,-16.7027894,13.1881452],[-11.0389996,-16.70115377,13.1881452],[-11.2720003,-16.69951815,13.1881452],[-11.9221001,-16.69788252,13.1881452],[-12.5747995,-16.69624689,13.1881452],[-12.4573002,-16.69461126,13.1881452],[-12.5056,-16.69297564,13.1881452],[-12.4941998,-16.69134001,13.1881452],[-12.5309,-16.68970438,13.1881452],[-12.6747999,-16.68806875,13.1881452],[-12.6863003,-16.68643312,13.1881452],[-12.3507996,-16.6847975,13.1881452],[-12.3667002,-16.68316187,13.1881452],[-12.5162001,-16.68152624,13.1881452],[-12.3757,-16.67989061,13.1881452],[-12.3926001,-16.67825499,13.1881452],[-12.1051998,-16.67661936,13.1881452],[-11.6323996,-16.67498373,13.1881452],[-11.2282,-16.6733481,13.1881452],[-7.2997198,-16.78129953,13.18650957],[-8.2405901,-16.77966391,13.18650957],[-9.5064297,-16.77802828,13.18650957],[-11.4919004,-16.77639265,13.18650957],[-13.1430998,-16.77475702,13.18650957],[-12.9540005,-16.77312139,13.18650957],[-11.9403,-16.77148577,13.18650957],[-11.3474998,-16.76985014,13.18650957],[-11.7442999,-16.76821451,13.18650957],[-11.7152996,-16.76657888,13.18650957],[-11.6278,-16.76494326,13.18650957],[-12.4181004,-16.76330763,13.18650957],[-13.0862999,-16.761672,13.18650957],[-13.3936005,-16.76003637,13.18650957],[-13.8863001,-16.75840074,13.18650957],[-14.5250998,-16.75676512,13.18650957],[-14.5440998,-16.75512949,13.18650957],[-13.8212996,-16.75349386,13.18650957],[-12.8811998,-16.75185823,13.18650957],[-13.5298996,-16.75022261,13.18650957],[-14.8301001,-16.74858698,13.18650957],[-15.4073,-16.74695135,13.18650957],[-14.6107998,-16.74531572,13.18650957],[-13.5345001,-16.7436801,13.18650957],[-13.026,-16.74204447,13.18650957],[-12.8676004,-16.74040884,13.18650957],[-12.7489004,-16.73877321,13.18650957],[-12.6830997,-16.73713758,13.18650957],[-12.3834,-16.73550196,13.18650957],[-12.4568005,-16.73386633,13.18650957],[-12.4179001,-16.7322307,13.18650957],[-12.0820999,-16.73059507,13.18650957],[-11.6693001,-16.72895945,13.18650957],[-11.6931,-16.72732382,13.18650957],[-11.8474998,-16.72568819,13.18650957],[-11.7479,-16.72405256,13.18650957],[-11.4177999,-16.72241693,13.18650957],[-11.1415997,-16.72078131,13.18650957],[-11.0060997,-16.71914568,13.18650957],[-10.2888002,-16.71751005,13.18650957],[-9.4169302,-16.71587442,13.18650957],[-9.2013702,-16.7142388,13.18650957],[-9.5466995,-16.71260317,13.18650957],[-9.7586498,-16.71096754,13.18650957],[-9.9685097,-16.70933191,13.18650957],[-10.4028997,-16.70769628,13.18650957],[-10.9502001,-16.70606066,13.18650957],[-10.96,-16.70442503,13.18650957],[-10.7014999,-16.7027894,13.18650957],[-10.2554998,-16.70115377,13.18650957],[-10.6016998,-16.69951815,13.18650957],[-11.5658998,-16.69788252,13.18650957],[-11.8722,-16.69624689,13.18650957],[-12.0389996,-16.69461126,13.18650957],[-11.9088001,-16.69297564,13.18650957],[-12.0319996,-16.69134001,13.18650957],[-11.9761,-16.68970438,13.18650957],[-12.0031004,-16.68806875,13.18650957],[-12.0459995,-16.68643312,13.18650957],[-11.7781,-16.6847975,13.18650957],[-11.5663996,-16.68316187,13.18650957],[-11.6328001,-16.68152624,13.18650957],[-12.2657003,-16.67989061,13.18650957],[-12.6414003,-16.67825499,13.18650957],[-12.3624001,-16.67661936,13.18650957],[-11.6758003,-16.67498373,13.18650957],[-7.1326199,-16.78129953,13.18487394],[-7.82652,-16.77966391,13.18487394],[-8.6488104,-16.77802828,13.18487394],[-11.7314997,-16.77639265,13.18487394],[-14.3606005,-16.77475702,13.18487394],[-12.9775,-16.77312139,13.18487394],[-10.8213997,-16.77148577,13.18487394],[-9.3358898,-16.76985014,13.18487394],[-10.8070002,-16.76821451,13.18487394],[-10.8666,-16.76657888,13.18487394],[-10.4730997,-16.76494326,13.18487394],[-11.9461002,-16.76330763,13.18487394],[-13.3962002,-16.761672,13.18487394],[-13.5938997,-16.76003637,13.18487394],[-13.8850002,-16.75840074,13.18487394],[-15.1942997,-16.75676512,13.18487394],[-14.8815002,-16.75512949,13.18487394],[-13.2459002,-16.75349386,13.18487394],[-11.0401001,-16.75185823,13.18487394],[-12.5393,-16.75022261,13.18487394],[-14.7930002,-16.74858698,13.18487394],[-16.1805992,-16.74695135,13.18487394],[-14.7959995,-16.74531572,13.18487394],[-13.1906004,-16.7436801,13.18487394],[-12.4947004,-16.74204447,13.18487394],[-13.0535002,-16.74040884,13.18487394],[-13.3558998,-16.73877321,13.18487394],[-13.4875002,-16.73713758,13.18487394],[-12.9123001,-16.73550196,13.18487394],[-12.6969004,-16.73386633,13.18487394],[-12.6368999,-16.7322307,13.18487394],[-12.0853004,-16.73059507,13.18487394],[-11.0424004,-16.72895945,13.18487394],[-11.3444996,-16.72732382,13.18487394],[-11.7679005,-16.72568819,13.18487394],[-11.7264996,-16.72405256,13.18487394],[-11.5237999,-16.72241693,13.18487394],[-11.165,-16.72078131,13.18487394],[-11.4722004,-16.71914568,13.18487394],[-10.4942999,-16.71751005,13.18487394],[-9.4194002,-16.71587442,13.18487394],[-9.0955296,-16.7142388,13.18487394],[-9.5181904,-16.71260317,13.18487394],[-9.7792997,-16.71096754,13.18487394],[-9.8316298,-16.70933191,13.18487394],[-10.2091999,-16.70769628,13.18487394],[-11.0091,-16.70606066,13.18487394],[-10.8577995,-16.70442503,13.18487394],[-10.4680004,-16.7027894,13.18487394],[-9.7669897,-16.70115377,13.18487394],[-10.4926996,-16.69951815,13.18487394],[-11.5960999,-16.69788252,13.18487394],[-11.8290005,-16.69624689,13.18487394],[-11.8191004,-16.69461126,13.18487394],[-11.7117004,-16.69297564,13.18487394],[-11.8870001,-16.69134001,13.18487394],[-11.2854004,-16.68970438,13.18487394],[-11.6314001,-16.68806875,13.18487394],[-11.9204998,-16.68643312,13.18487394],[-11.2125998,-16.6847975,13.18487394],[-11.3456001,-16.68316187,13.18487394],[-11.4315004,-16.68152624,13.18487394],[-11.8584995,-16.67989061,13.18487394],[-12.6644001,-16.67825499,13.18487394],[-12.4361,-16.67661936,13.18487394],[-7.34519,-16.78129953,13.18323831],[-8.28582,-16.77966391,13.18323831],[-9.4060097,-16.77802828,13.18323831],[-11.5588999,-16.77639265,13.18323831],[-13.1912003,-16.77475702,13.18323831],[-12.7315998,-16.77312139,13.18323831],[-11.5270004,-16.77148577,13.18323831],[-10.9801998,-16.76985014,13.18323831],[-11.1501999,-16.76821451,13.18323831],[-11.0495005,-16.76657888,13.18323831],[-11.0763998,-16.76494326,13.18323831],[-11.8773003,-16.76330763,13.18323831],[-12.8071003,-16.761672,13.18323831],[-13.1209002,-16.76003637,13.18323831],[-13.5228996,-16.75840074,13.18323831],[-14.1950998,-16.75676512,13.18323831],[-14.2344999,-16.75512949,13.18323831],[-13.7027998,-16.75349386,13.18323831],[-13.1871996,-16.75185823,13.18323831],[-13.5473003,-16.75022261,13.18323831],[-14.2983999,-16.74858698,13.18323831],[-14.6891003,-16.74695135,13.18323831],[-14.2609997,-16.74531572,13.18323831],[-13.6948004,-16.7436801,13.18323831],[-13.2462997,-16.74204447,13.18323831],[-13.3106003,-16.74040884,13.18323831],[-13.4483004,-16.73877321,13.18323831],[-13.3217001,-16.73713758,13.18323831],[-13.0748997,-16.73550196,13.18323831],[-12.9085999,-16.73386633,13.18323831],[-12.7525997,-16.7322307,13.18323831],[-12.4348001,-16.73059507,13.18323831],[-11.9288998,-16.72895945,13.18323831],[-11.8210001,-16.72732382,13.18323831],[-11.7810001,-16.72568819,13.18323831],[-11.5600996,-16.72405256,13.18323831],[-11.2082005,-16.72241693,13.18323831],[-10.7746,-16.72078131,13.18323831],[-10.4097004,-16.71914568,13.18323831],[-9.9974899,-16.71751005,13.18323831],[-9.6261501,-16.71587442,13.18323831],[-9.4987602,-16.7142388,13.18323831],[-9.6788902,-16.71260317,13.18323831],[-9.9956999,-16.71096754,13.18323831],[-9.8328199,-16.70933191,13.18323831],[-9.7206097,-16.70769628,13.18323831],[-9.6992502,-16.70606066,13.18323831],[-9.8451996,-16.70442503,13.18323831],[-10.2995005,-16.7027894,13.18323831],[-10.8123999,-16.70115377,13.18323831],[-11.3352003,-16.69951815,13.18323831],[-11.7624998,-16.69788252,13.18323831],[-11.9184999,-16.69624689,13.18323831],[-11.5445995,-16.69461126,13.18323831],[-11.3064003,-16.69297564,13.18323831],[-11.1381998,-16.69134001,13.18323831],[-10.1664,-16.68970438,13.18323831],[-8.9277897,-16.68806875,13.18323831],[-8.6917105,-16.68643312,13.18323831],[-9.9182997,-16.6847975,13.18323831],[-11.0155001,-16.68316187,13.18323831],[-11.3937998,-16.68152624,13.18323831],[-11.5422001,-16.67989061,13.18323831],[-11.7023001,-16.67825499,13.18323831],[-11.5648003,-16.67661936,13.18323831],[-7.5995798,-16.78129953,13.18160269],[-8.7342796,-16.77966391,13.18160269],[-9.6796999,-16.77802828,13.18160269],[-11.7725,-16.77639265,13.18160269],[-13.4546003,-16.77475702,13.18160269],[-13.0115995,-16.77312139,13.18160269],[-12.0738001,-16.77148577,13.18160269],[-11.8983002,-16.76985014,13.18160269],[-11.5527,-16.76821451,13.18160269],[-10.8495998,-16.76657888,13.18160269],[-10.4750996,-16.76494326,13.18160269],[-11.5840998,-16.76330763,13.18160269],[-12.1610003,-16.761672,13.18160269],[-12.4019003,-16.76003637,13.18160269],[-13.0564003,-16.75840074,13.18160269],[-13.3905001,-16.75676512,13.18160269],[-13.6428003,-16.75512949,13.18160269],[-14.2839003,-16.75349386,13.18160269],[-15.0663996,-16.75185823,13.18160269],[-14.6815004,-16.75022261,13.18160269],[-13.8889999,-16.74858698,13.18160269],[-13.3653002,-16.74695135,13.18160269],[-13.7039003,-16.74531572,13.18160269],[-13.7910004,-16.7436801,13.18160269],[-13.9036999,-16.74204447,13.18160269],[-13.6964998,-16.74040884,13.18160269],[-13.9181004,-16.73877321,13.18160269],[-14.0839005,-16.73713758,13.18160269],[-13.4399996,-16.73550196,13.18160269],[-13.592,-16.73386633,13.18160269],[-13.5082998,-16.7322307,13.18160269],[-12.8126001,-16.73059507,13.18160269],[-12.7476997,-16.72895945,13.18160269],[-12.4091997,-16.72732382,13.18160269],[-11.7875004,-16.72568819,13.18160269],[-11.6969004,-16.72405256,13.18160269],[-11.1526003,-16.72241693,13.18160269],[-9.9561396,-16.72078131,13.18160269],[-9.0342398,-16.71914568,13.18160269],[-9.5602703,-16.71751005,13.18160269],[-9.5120602,-16.71587442,13.18160269],[-9.3646803,-16.7142388,13.18160269],[-9.8092003,-16.71260317,13.18160269],[-10.4699001,-16.71096754,13.18160269],[-10.625,-16.70933191,13.18160269],[-9.2396097,-16.70769628,13.18160269],[-7.5136499,-16.70606066,13.18160269],[-7.9903698,-16.70442503,13.18160269],[-10.3744001,-16.7027894,13.18160269],[-12.1997004,-16.70115377,13.18160269],[-11.9301996,-16.69951815,13.18160269],[-11.9660997,-16.69788252,13.18160269],[-12.4317999,-16.69624689,13.18160269],[-11.7047005,-16.69461126,13.18160269],[-11.2463999,-16.69297564,13.18160269],[-11.5853996,-16.69134001,13.18160269],[-9.30443,-16.68970438,13.18160269],[-4.44487,-16.68806875,13.18160269],[-2.52931,-16.68643312,13.18160269],[-8.0920496,-16.6847975,13.18160269],[-11.5045996,-16.68316187,13.18160269],[-11.7595997,-16.68152624,13.18160269],[-11.3021002,-16.67989061,13.18160269],[-11.0785999,-16.67825499,13.18160269],[-7.8053198,-16.78129953,13.17996706],[-8.8295603,-16.77966391,13.17996706],[-9.6372995,-16.77802828,13.17996706],[-12.0393,-16.77639265,13.17996706],[-14.1791,-16.77475702,13.17996706],[-13.4390001,-16.77312139,13.17996706],[-12.3774004,-16.77148577,13.17996706],[-11.8425999,-16.76985014,13.17996706],[-11.9048004,-16.76821451,13.17996706],[-10.7103004,-16.76657888,13.17996706],[-9.8101301,-16.76494326,13.17996706],[-11.6513004,-16.76330763,13.17996706],[-11.9879999,-16.761672,13.17996706],[-12.0080996,-16.76003637,13.17996706],[-13.0745001,-16.75840074,13.17996706],[-13.1871004,-16.75676512,13.17996706],[-13.4159002,-16.75512949,13.17996706],[-14.3979998,-16.75349386,13.17996706],[-15.6281004,-16.75185823,13.17996706],[-14.9259005,-16.75022261,13.17996706],[-13.6922998,-16.74858698,13.17996706],[-13.0098,-16.74695135,13.17996706],[-13.3994999,-16.74531572,13.17996706],[-13.9126997,-16.7436801,13.17996706],[-14.1100998,-16.74204447,13.17996706],[-13.8044004,-16.74040884,13.17996706],[-14.0509996,-16.73877321,13.17996706],[-14.3210001,-16.73713758,13.17996706],[-13.5008001,-16.73550196,13.17996706],[-13.7574997,-16.73386633,13.17996706],[-13.6257,-16.7322307,13.17996706],[-12.6435003,-16.73059507,13.17996706],[-12.8240995,-16.72895945,13.17996706],[-12.3792,-16.72732382,13.17996706],[-11.6834002,-16.72568819,13.17996706],[-11.6932001,-16.72405256,13.17996706],[-11.1115999,-16.72241693,13.17996706],[-9.8004799,-16.72078131,13.17996706],[-8.9067497,-16.71914568,13.17996706],[-9.5037899,-16.71751005,13.17996706],[-9.5335503,-16.71587442,13.17996706],[-9.3952398,-16.7142388,13.17996706],[-9.7366104,-16.71260317,13.17996706],[-10.5517998,-16.71096754,13.17996706],[-10.6599998,-16.70933191,13.17996706],[-9.19561,-16.70769628,13.17996706],[-7.37046,-16.70606066,13.17996706],[-7.7567801,-16.70442503,13.17996706],[-10.1809998,-16.7027894,13.17996706],[-12.1355,-16.70115377,13.17996706],[-11.7600002,-16.69951815,13.17996706],[-11.7495003,-16.69788252,13.17996706],[-12.3360004,-16.69624689,13.17996706],[-11.3912001,-16.69461126,13.17996706],[-10.8183002,-16.69297564,13.17996706],[-11.1154003,-16.69134001,13.17996706],[-8.8796902,-16.68970438,13.17996706],[-4.8343501,-16.68806875,13.17996706],[-3.3432901,-16.68643312,13.17996706],[-8.0083303,-16.6847975,13.17996706],[-11.0774002,-16.68316187,13.17996706],[-11.5656004,-16.68152624,13.17996706],[-11.1996002,-16.67989061,13.17996706],[-6.1889801,-16.78293516,13.17833143],[-8.2069597,-16.78129953,13.17833143],[-9.7005396,-16.77966391,13.17833143],[-11.0678997,-16.77802828,13.17833143],[-12.5649996,-16.77639265,13.17833143],[-13.7945995,-16.77475702,13.17833143],[-13.6329002,-16.77312139,13.17833143],[-13.0501003,-16.77148577,13.17833143],[-12.7477999,-16.76985014,13.17833143],[-12.6379004,-16.76821451,13.17833143],[-12.4916,-16.76657888,13.17833143],[-12.3537998,-16.76494326,13.17833143],[-12.7853003,-16.76330763,13.17833143],[-13.0381002,-16.761672,13.17833143],[-13.1391001,-16.76003637,13.17833143],[-13.493,-16.75840074,13.17833143],[-13.5250998,-16.75676512,13.17833143],[-13.7096004,-16.75512949,13.17833143],[-14.1627998,-16.75349386,13.17833143],[-14.6563997,-16.75185823,13.17833143],[-14.3922997,-16.75022261,13.17833143],[-13.6842003,-16.74858698,13.17833143],[-13.3093004,-16.74695135,13.17833143],[-13.5033998,-16.74531572,13.17833143],[-13.7341003,-16.7436801,13.17833143],[-13.6801996,-16.74204447,13.17833143],[-13.3543997,-16.74040884,13.17833143],[-13.0218,-16.73877321,13.17833143],[-12.8837996,-16.73713758,13.17833143],[-12.7584,-16.73550196,13.17833143],[-12.5880003,-16.73386633,13.17833143],[-12.4200001,-16.7322307,13.17833143],[-12.0641003,-16.73059507,13.17833143],[-11.7231998,-16.72895945,13.17833143],[-11.4565001,-16.72732382,13.17833143],[-11.3172998,-16.72568819,13.17833143],[-11.1139002,-16.72405256,13.17833143],[-10.7947998,-16.72241693,13.17833143],[-10.2322998,-16.72078131,13.17833143],[-9.7817097,-16.71914568,13.17833143],[-9.7783699,-16.71751005,13.17833143],[-9.8846302,-16.71587442,13.17833143],[-9.9806404,-16.7142388,13.17833143],[-9.8673401,-16.71260317,13.17833143],[-10.0692997,-16.71096754,13.17833143],[-9.9508495,-16.70933191,13.17833143],[-9.0063496,-16.70769628,13.17833143],[-7.62602,-16.70606066,13.17833143],[-7.9474301,-16.70442503,13.17833143],[-9.8258305,-16.7027894,13.17833143],[-11.2511997,-16.70115377,13.17833143],[-11.3027,-16.69951815,13.17833143],[-11.2872,-16.69788252,13.17833143],[-11.5684996,-16.69624689,13.17833143],[-10.6230001,-16.69461126,13.17833143],[-8.8143797,-16.69297564,13.17833143],[-7.6052299,-16.69134001,13.17833143],[-8.0925903,-16.68970438,13.17833143],[-8.5360603,-16.68806875,13.17833143],[-8.8507404,-16.68643312,13.17833143],[-9.4689198,-16.6847975,13.17833143],[-10.5389996,-16.68316187,13.17833143],[-10.8940001,-16.68152624,13.17833143],[-4.1532202,-16.78293516,13.1766958],[-8.5894098,-16.78129953,13.1766958],[-11.5527,-16.77966391,13.1766958],[-12.0110998,-16.77802828,13.1766958],[-13.5464001,-16.77639265,13.1766958],[-15.1626997,-16.77475702,13.1766958],[-14.5733995,-16.77312139,13.1766958],[-13.5232,-16.77148577,13.1766958],[-13.4587002,-16.76985014,13.1766958],[-13.5319996,-16.76821451,13.1766958],[-14.4941998,-16.76657888,13.1766958],[-15.2909002,-16.76494326,13.1766958],[-14.0446997,-16.76330763,13.1766958],[-14.4317999,-16.761672,13.1766958],[-14.6479998,-16.76003637,13.1766958],[-13.8936005,-16.75840074,13.1766958],[-13.8443003,-16.75676512,13.1766958],[-13.8091002,-16.75512949,13.1766958],[-14.1900997,-16.75349386,13.1766958],[-15.2118998,-16.75185823,13.1766958],[-14.5588999,-16.75022261,13.1766958],[-13.4842997,-16.74858698,13.1766958],[-12.6393995,-16.74695135,13.1766958],[-13.1759005,-16.74531572,13.1766958],[-13.6469002,-16.7436801,13.1766958],[-13.7931004,-16.74204447,13.1766958],[-13.1316996,-16.74040884,13.1766958],[-11.6796999,-16.73877321,13.1766958],[-11.059,-16.73713758,13.1766958],[-12.0405998,-16.73550196,13.1766958],[-11.7484999,-16.73386633,13.1766958],[-11.6540003,-16.7322307,13.1766958],[-11.4342003,-16.73059507,13.1766958],[-10.4157,-16.72895945,13.1766958],[-10.6339998,-16.72732382,13.1766958],[-10.9947996,-16.72568819,13.1766958],[-10.8720999,-16.72405256,13.1766958],[-10.7414999,-16.72241693,13.1766958],[-10.1794996,-16.72078131,13.1766958],[-9.8166399,-16.71914568,13.1766958],[-9.9869499,-16.71751005,13.1766958],[-10.1399002,-16.71587442,13.1766958],[-10.2254,-16.7142388,13.1766958],[-10.1302004,-16.71260317,13.1766958],[-10.5195999,-16.71096754,13.1766958],[-10.5894003,-16.70933191,13.1766958],[-8.6609898,-16.70769628,13.1766958],[-5.13831,-16.70606066,13.1766958],[-5.81147,-16.70442503,13.1766958],[-9.7908802,-16.7027894,13.1766958],[-12.3271999,-16.70115377,13.1766958],[-11.6936998,-16.69951815,13.1766958],[-11.3682003,-16.69788252,13.1766958],[-12.1145,-16.69624689,13.1766958],[-10.5339003,-16.69461126,13.1766958],[-6.3475599,-16.69297564,13.1766958],[-2.7632999,-16.69134001,13.1766958],[-7.0975299,-16.68970438,13.1766958],[-10.7482996,-16.68806875,13.1766958],[-11.8934002,-16.68643312,13.1766958],[-10.5141001,-16.6847975,13.1766958],[-11.1461,-16.68316187,13.1766958],[-3.8055401,-16.78293516,13.17506018],[-8.9925098,-16.78129953,13.17506018],[-12.0388002,-16.77966391,13.17506018],[-12.4748001,-16.77802828,13.17506018],[-13.8174,-16.77639265,13.17506018],[-15.4224005,-16.77475702,13.17506018],[-14.7629004,-16.77312139,13.17506018],[-13.8347998,-16.77148577,13.17506018],[-13.5398998,-16.76985014,13.17506018],[-13.7470999,-16.76821451,13.17506018],[-14.7644997,-16.76657888,13.17506018],[-15.4545002,-16.76494326,13.17506018],[-14.2630997,-16.76330763,13.17506018],[-14.4800997,-16.761672,13.17506018],[-14.6139002,-16.76003637,13.17506018],[-13.7814999,-16.75840074,13.17506018],[-13.7644997,-16.75676512,13.17506018],[-13.7131004,-16.75512949,13.17506018],[-13.9383001,-16.75349386,13.17506018],[-14.9623003,-16.75185823,13.17506018],[-14.3259001,-16.75022261,13.17506018],[-13.2367001,-16.74858698,13.17506018],[-12.7131996,-16.74695135,13.17506018],[-13.0503998,-16.74531572,13.17506018],[-13.6005001,-16.7436801,13.17506018],[-13.7372999,-16.74204447,13.17506018],[-13.1190996,-16.74040884,13.17506018],[-11.8181,-16.73877321,13.17506018],[-11.2722998,-16.73713758,13.17506018],[-11.8507004,-16.73550196,13.17506018],[-11.7587004,-16.73386633,13.17506018],[-11.6550999,-16.7322307,13.17506018],[-11.3369999,-16.73059507,13.17506018],[-10.6302004,-16.72895945,13.17506018],[-10.7582998,-16.72732382,13.17506018],[-11.0251999,-16.72568819,13.17506018],[-10.9203997,-16.72405256,13.17506018],[-10.7774,-16.72241693,13.17506018],[-10.3048,-16.72078131,13.17506018],[-10.0045004,-16.71914568,13.17506018],[-10.1166,-16.71751005,13.17506018],[-10.1775999,-16.71587442,13.17506018],[-10.1489,-16.7142388,13.17506018],[-10.2982998,-16.71260317,13.17506018],[-10.4835997,-16.71096754,13.17506018],[-10.4295998,-16.70933191,13.17506018],[-9.1027699,-16.70769628,13.17506018],[-6.8238401,-16.70606066,13.17506018],[-7.20682,-16.70442503,13.17506018],[-9.6536102,-16.7027894,13.17506018],[-11.3455,-16.70115377,13.17506018],[-10.9799004,-16.69951815,13.17506018],[-10.9440002,-16.69788252,13.17506018],[-11.3704004,-16.69624689,13.17506018],[-10.2505999,-16.69461126,13.17506018],[-7.51125,-16.69297564,13.17506018],[-5.6001601,-16.69134001,13.17506018],[-7.8856502,-16.68970438,13.17506018],[-10.1405001,-16.68806875,13.17506018],[-10.8736,-16.68643312,13.17506018],[-10.3458004,-16.6847975,13.17506018],[-6.8008299,-16.78293516,13.17342455],[-9.94454,-16.78129953,13.17342455],[-12.6011,-16.77966391,13.17342455],[-13.6492004,-16.77802828,13.17342455],[-13.9127998,-16.77639265,13.17342455],[-14.5291996,-16.77475702,13.17342455],[-14.3458004,-16.77312139,13.17342455],[-13.8304996,-16.77148577,13.17342455],[-13.4459,-16.76985014,13.17342455],[-13.5764999,-16.76821451,13.17342455],[-13.8992004,-16.76657888,13.17342455],[-13.8928003,-16.76494326,13.17342455],[-13.6237001,-16.76330763,13.17342455],[-13.1821003,-16.761672,13.17342455],[-13.0735998,-16.76003637,13.17342455],[-13.1617002,-16.75840074,13.17342455],[-12.9867001,-16.75676512,13.17342455],[-13.0832996,-16.75512949,13.17342455],[-13.0557003,-16.75349386,13.17342455],[-12.7271004,-16.75185823,13.17342455],[-12.8333998,-16.75022261,13.17342455],[-13.066,-16.74858698,13.17342455],[-13.2441998,-16.74695135,13.17342455],[-13.2733002,-16.74531572,13.17342455],[-13.6555004,-16.7436801,13.17342455],[-13.8645,-16.74204447,13.17342455],[-13.3306999,-16.74040884,13.17342455],[-12.5607996,-16.73877321,13.17342455],[-12.2904997,-16.73713758,13.17342455],[-12.1735001,-16.73550196,13.17342455],[-12.2102003,-16.73386633,13.17342455],[-12.0403996,-16.7322307,13.17342455],[-11.5493002,-16.73059507,13.17342455],[-11.1461,-16.72895945,13.17342455],[-11.0795002,-16.72732382,13.17342455],[-11.2483997,-16.72568819,13.17342455],[-11.3636999,-16.72405256,13.17342455],[-11.0628996,-16.72241693,13.17342455],[-10.6957998,-16.72078131,13.17342455],[-10.5165005,-16.71914568,13.17342455],[-10.3277998,-16.71751005,13.17342455],[-10.0194998,-16.71587442,13.17342455],[-9.8832703,-16.7142388,13.17342455],[-10.2669001,-16.71260317,13.17342455],[-10.9042997,-16.71096754,13.17342455],[-10.8591003,-16.70933191,13.17342455],[-10.2510996,-16.70769628,13.17342455],[-10.1660004,-16.70606066,13.17342455],[-10.0556002,-16.70442503,13.17342455],[-9.6739302,-16.7027894,13.17342455],[-9.2511101,-16.70115377,13.17342455],[-9.7768402,-16.69951815,13.17342455],[-10.2187996,-16.69788252,13.17342455],[-10.4733,-16.69624689,13.17342455],[-10.2152996,-16.69461126,13.17342455],[-10.0281,-16.69297564,13.17342455],[-10.1314001,-16.69134001,13.17342455],[-9.6301098,-16.68970438,13.17342455],[-9.6965904,-16.68806875,13.17342455],[-9.8227196,-16.68643312,13.17342455],[-9.8970003,-16.6847975,13.17342455],[-5.1125498,-16.78457079,13.17178892],[-5.6653399,-16.78293516,13.17178892],[-10.8471003,-16.78129953,13.17178892],[-16.2003994,-16.77966391,13.17178892],[-15.5179996,-16.77802828,13.17178892],[-14.3290005,-16.77639265,13.17178892],[-14.5430002,-16.77475702,13.17178892],[-14.3143997,-16.77312139,13.17178892],[-13.4785995,-16.77148577,13.17178892],[-12.9663,-16.76985014,13.17178892],[-13.3395004,-16.76821451,13.17178892],[-13.5917997,-16.76657888,13.17178892],[-13.6094999,-16.76494326,13.17178892],[-13.3030996,-16.76330763,13.17178892],[-11.9703999,-16.761672,13.17178892],[-11.5979004,-16.76003637,13.17178892],[-12.6701002,-16.75840074,13.17178892],[-12.2535,-16.75676512,13.17178892],[-12.3311005,-16.75512949,13.17178892],[-12.1682997,-16.75349386,13.17178892],[-10.6493998,-16.75185823,13.17178892],[-11.5663004,-16.75022261,13.17178892],[-12.8787003,-16.74858698,13.17178892],[-13.5010996,-16.74695135,13.17178892],[-13.3845997,-16.74531572,13.17178892],[-14.1176004,-16.7436801,13.17178892],[-14.9820004,-16.74204447,13.17178892],[-13.5887003,-16.74040884,13.17178892],[-12.5157003,-16.73877321,13.17178892],[-12.2378998,-16.73713758,13.17178892],[-12.3088999,-16.73550196,13.17178892],[-12.6584997,-16.73386633,13.17178892],[-12.6329002,-16.7322307,13.17178892],[-11.6028004,-16.73059507,13.17178892],[-10.8577995,-16.72895945,13.17178892],[-10.9750004,-16.72732382,13.17178892],[-11.4427996,-16.72568819,13.17178892],[-12.0188999,-16.72405256,13.17178892],[-11.5423002,-16.72241693,13.17178892],[-10.9126997,-16.72078131,13.17178892],[-10.7342997,-16.71914568,13.17178892],[-10.5608997,-16.71751005,13.17178892],[-9.69771,-16.71587442,13.17178892],[-9.0589304,-16.7142388,13.17178892],[-10.2517004,-16.71260317,13.17178892],[-11.6363001,-16.71096754,13.17178892],[-11.9383001,-16.70933191,13.17178892],[-11.0639,-16.70769628,13.17178892],[-11.8952999,-16.70606066,13.17178892],[-11.6068001,-16.70442503,13.17178892],[-9.6552401,-16.7027894,13.17178892],[-7.7332301,-16.70115377,13.17178892],[-8.5919199,-16.69951815,13.17178892],[-9.8340998,-16.69788252,13.17178892],[-10.5797997,-16.69624689,13.17178892],[-10.2706003,-16.69461126,13.17178892],[-10.9813995,-16.69297564,13.17178892],[-12.4174004,-16.69134001,13.17178892],[-10.5087004,-16.68970438,13.17178892],[-9.68153,-16.68806875,13.17178892],[-9.6628103,-16.68643312,13.17178892],[-5.6904998,-16.78457079,13.17015329],[-6.5083599,-16.78293516,13.17015329],[-10.9656,-16.78129953,13.17015329],[-15.1456003,-16.77966391,13.17015329],[-15.0450001,-16.77802828,13.17015329],[-14.2131996,-16.77639265,13.17015329],[-14.2908001,-16.77475702,13.17015329],[-14.0185003,-16.77312139,13.17015329],[-13.4006996,-16.77148577,13.17015329],[-13.0682001,-16.76985014,13.17015329],[-13.1163998,-16.76821451,13.17015329],[-13.4500999,-16.76657888,13.17015329],[-13.526,-16.76494326,13.17015329],[-13.2421999,-16.76330763,13.17015329],[-12.4490995,-16.761672,13.17015329],[-12.1616001,-16.76003637,13.17015329],[-12.7018995,-16.75840074,13.17015329],[-12.6525002,-16.75676512,13.17015329],[-12.6774998,-16.75512949,13.17015329],[-12.3723001,-16.75349386,13.17015329],[-11.5129004,-16.75185823,13.17015329],[-11.9559002,-16.75022261,13.17015329],[-12.6959,-16.74858698,13.17015329],[-13.1203003,-16.74695135,13.17015329],[-13.1338997,-16.74531572,13.17015329],[-13.7674999,-16.7436801,13.17015329],[-14.2013998,-16.74204447,13.17015329],[-13.4652004,-16.74040884,13.17015329],[-12.7243996,-16.73877321,13.17015329],[-12.3568001,-16.73713758,13.17015329],[-12.2951002,-16.73550196,13.17015329],[-12.3395996,-16.73386633,13.17015329],[-12.1921997,-16.7322307,13.17015329],[-11.6336002,-16.73059507,13.17015329],[-11.1629,-16.72895945,13.17015329],[-11.1862001,-16.72732382,13.17015329],[-11.441,-16.72568819,13.17015329],[-11.5733995,-16.72405256,13.17015329],[-11.3919001,-16.72241693,13.17015329],[-11.0720997,-16.72078131,13.17015329],[-10.8418999,-16.71914568,13.17015329],[-10.6645002,-16.71751005,13.17015329],[-10.1947002,-16.71587442,13.17015329],[-9.9496803,-16.7142388,13.17015329],[-10.6044998,-16.71260317,13.17015329],[-11.0669003,-16.71096754,13.17015329],[-11.1740999,-16.70933191,13.17015329],[-10.9011002,-16.70769628,13.17015329],[-11.1373997,-16.70606066,13.17015329],[-10.8451996,-16.70442503,13.17015329],[-9.7588997,-16.7027894,13.17015329],[-8.9564104,-16.70115377,13.17015329],[-9.1428204,-16.69951815,13.17015329],[-9.6331902,-16.69788252,13.17015329],[-9.81633,-16.69624689,13.17015329],[-9.7149897,-16.69461126,13.17015329],[-10.0149002,-16.69297564,13.17015329],[-10.4308004,-16.69134001,13.17015329],[-9.9282703,-16.68970438,13.17015329],[-9.6036196,-16.68806875,13.17015329],[-6.9707799,-16.78457079,13.16851766],[-7.8235202,-16.78293516,13.16851766],[-10.6892996,-16.78129953,13.16851766],[-13.5813999,-16.77966391,13.16851766],[-14.1259003,-16.77802828,13.16851766],[-13.6852999,-16.77639265,13.16851766],[-13.4778004,-16.77475702,13.16851766],[-13.4403,-16.77312139,13.16851766],[-13.0664997,-16.77148577,13.16851766],[-12.6941004,-16.76985014,13.16851766],[-12.8566999,-16.76821451,13.16851766],[-13.2712002,-16.76657888,13.16851766],[-13.4469004,-16.76494326,13.16851766],[-13.3900995,-16.76330763,13.16851766],[-13.1976995,-16.761672,13.16851766],[-13.1836996,-16.76003637,13.16851766],[-13.3278999,-16.75840074,13.16851766],[-13.9003,-16.75676512,13.16851766],[-13.7622995,-16.75512949,13.16851766],[-13.1232004,-16.75349386,13.16851766],[-12.9757996,-16.75185823,13.16851766],[-12.7142,-16.75022261,13.16851766],[-12.2649002,-16.74858698,13.16851766],[-11.7070999,-16.74695135,13.16851766],[-12.3311996,-16.74531572,13.16851766],[-13.3311996,-16.7436801,13.16851766],[-13.6754999,-16.74204447,13.16851766],[-13.2896996,-16.74040884,13.16851766],[-12.6993999,-16.73877321,13.16851766],[-12.4905996,-16.73713758,13.16851766],[-12.2518997,-16.73550196,13.16851766],[-12.0165997,-16.73386633,13.16851766],[-11.882,-16.7322307,13.16851766],[-11.6382999,-16.73059507,13.16851766],[-11.5190001,-16.72895945,13.16851766],[-11.4436998,-16.72732382,13.16851766],[-11.3964996,-16.72568819,13.16851766],[-11.3034,-16.72405256,13.16851766],[-11.2905998,-16.72241693,13.16851766],[-11.3137999,-16.72078131,13.16851766],[-11.4295998,-16.71914568,13.16851766],[-11.0544004,-16.71751005,13.16851766],[-10.8238001,-16.71587442,13.16851766],[-10.8986998,-16.7142388,13.16851766],[-10.8137999,-16.71260317,13.16851766],[-10.6521997,-16.71096754,13.16851766],[-10.5052996,-16.70933191,13.16851766],[-10.6120005,-16.70769628,13.16851766],[-10.6808996,-16.70606066,13.16851766],[-10.5193996,-16.70442503,13.16851766],[-9.9613104,-16.7027894,13.16851766],[-9.79109,-16.70115377,13.16851766],[-9.7223701,-16.69951815,13.16851766],[-9.3093596,-16.69788252,13.16851766],[-8.7613697,-16.69624689,13.16851766],[-8.8640804,-16.69461126,13.16851766],[-8.8517504,-16.69297564,13.16851766],[-8.6921501,-16.69134001,13.16851766],[-9.0658998,-16.68970438,13.16851766],[-6.60497,-16.78620642,13.16688204],[-6.1919298,-16.78457079,13.16688204],[-6.4832802,-16.78293516,13.16688204],[-10.6987,-16.78129953,13.16688204],[-15.3571997,-16.77966391,13.16688204],[-14.7223997,-16.77802828,13.16688204],[-13.1199999,-16.77639265,13.16688204],[-12.5663004,-16.77475702,13.16688204],[-12.9033003,-16.77312139,13.16688204],[-12.5457001,-16.77148577,13.16688204],[-11.8126001,-16.76985014,13.16688204],[-12.5600004,-16.76821451,13.16688204],[-13.3731003,-16.76657888,13.16688204],[-13.6667995,-16.76494326,13.16688204],[-13.3575001,-16.76330763,13.16688204],[-13.3699999,-16.761672,13.16688204],[-13.3831997,-16.76003637,13.16688204],[-13.6882,-16.75840074,13.16688204],[-15.0665998,-16.75676512,13.16688204],[-14.8463001,-16.75512949,13.16688204],[-13.4954004,-16.75349386,13.16688204],[-13.5164003,-16.75185823,13.16688204],[-13.1687002,-16.75022261,13.16688204],[-11.8823004,-16.74858698,13.16688204],[-10.1008997,-16.74695135,13.16688204],[-11.6422997,-16.74531572,13.16688204],[-13.3727999,-16.7436801,13.16688204],[-14.0970001,-16.74204447,13.16688204],[-13.3023996,-16.74040884,13.16688204],[-12.5887003,-16.73877321,13.16688204],[-12.5158997,-16.73713758,13.16688204],[-12.2165003,-16.73550196,13.16688204],[-11.9631004,-16.73386633,13.16688204],[-11.9331999,-16.7322307,13.16688204],[-11.6052999,-16.73059507,13.16688204],[-11.6464996,-16.72895945,13.16688204],[-11.5444002,-16.72732382,13.16688204],[-11.3062,-16.72568819,13.16688204],[-11.2594995,-16.72405256,13.16688204],[-11.2342997,-16.72241693,13.16688204],[-11.3713999,-16.72078131,13.16688204],[-11.9517002,-16.71914568,13.16688204],[-11.2553997,-16.71751005,13.16688204],[-11.0228004,-16.71587442,13.16688204],[-11.2290001,-16.7142388,13.16688204],[-10.8065004,-16.71260317,13.16688204],[-10.4327002,-16.71096754,13.16688204],[-10.3139,-16.70933191,13.16688204],[-10.5279999,-16.70769628,13.16688204],[-10.7126999,-16.70606066,13.16688204],[-10.5880003,-16.70442503,13.16688204],[-10.0064001,-16.7027894,13.16688204],[-9.9875402,-16.70115377,13.16688204],[-9.6669502,-16.69951815,13.16688204],[-8.9187098,-16.69788252,13.16688204],[-8.4102497,-16.69624689,13.16688204],[-8.5178299,-16.69461126,13.16688204],[-8.39466,-16.69297564,13.16688204],[-8.2300396,-16.69134001,13.16688204],[-6.3365302,-16.78620642,13.16524641],[-6.6371398,-16.78457079,13.16524641],[-7.48771,-16.78293516,13.16524641],[-10.2679005,-16.78129953,13.16524641],[-12.9292002,-16.77966391,13.16524641],[-13.1947002,-16.77802828,13.16524641],[-12.9293003,-16.77639265,13.16524641],[-13.0496998,-16.77475702,13.16524641],[-12.9653997,-16.77312139,13.16524641],[-12.5118999,-16.77148577,13.16524641],[-12.2475996,-16.76985014,13.16524641],[-12.6457996,-16.76821451,13.16524641],[-13.3079996,-16.76657888,13.16524641],[-13.5058002,-16.76494326,13.16524641],[-13.5183001,-16.76330763,13.16524641],[-13.4660997,-16.761672,13.16524641],[-13.4361,-16.76003637,13.16524641],[-13.6122999,-16.75840074,13.16524641],[-13.9806004,-16.75676512,13.16524641],[-13.8369999,-16.75512949,13.16524641],[-13.4105997,-16.75349386,13.16524641],[-13.2690001,-16.75185823,13.16524641],[-13.0483999,-16.75022261,13.16524641],[-12.4390001,-16.74858698,13.16524641],[-11.8718996,-16.74695135,13.16524641],[-12.4336004,-16.74531572,13.16524641],[-13.1946001,-16.7436801,13.16524641],[-13.3663998,-16.74204447,13.16524641],[-12.9094,-16.74040884,13.16524641],[-12.4588003,-16.73877321,13.16524641],[-12.2236004,-16.73713758,13.16524641],[-11.7362003,-16.73550196,13.16524641],[-11.4200001,-16.73386633,13.16524641],[-11.3247995,-16.7322307,13.16524641],[-11.1892996,-16.73059507,13.16524641],[-11.2290001,-16.72895945,13.16524641],[-11.2316999,-16.72732382,13.16524641],[-11.1322002,-16.72568819,13.16524641],[-11.1299,-16.72405256,13.16524641],[-11.0528002,-16.72241693,13.16524641],[-10.9695997,-16.72078131,13.16524641],[-10.9125996,-16.71914568,13.16524641],[-10.6907997,-16.71751005,13.16524641],[-10.5690002,-16.71587442,13.16524641],[-10.6098003,-16.7142388,13.16524641],[-10.6120005,-16.71260317,13.16524641],[-10.6926003,-16.71096754,13.16524641],[-10.6661997,-16.70933191,13.16524641],[-10.4575996,-16.70769628,13.16524641],[-10.1731997,-16.70606066,13.16524641],[-9.8556805,-16.70442503,13.16524641],[-9.5278797,-16.7027894,13.16524641],[-9.3832798,-16.70115377,13.16524641],[-9.0586395,-16.69951815,13.16524641],[-8.8472004,-16.69788252,13.16524641],[-8.5290003,-16.69624689,13.16524641],[-8.3262396,-16.69461126,13.16524641],[-7.7966099,-16.69297564,13.16524641],[-7.6627002,-16.69134001,13.16524641],[-5.8645902,-16.78620642,13.16361078],[-6.76297,-16.78457079,13.16361078],[-7.3489699,-16.78293516,13.16361078],[-9.2950497,-16.78129953,13.16361078],[-10.1211996,-16.77966391,13.16361078],[-11.1468,-16.77802828,13.16361078],[-12.7918997,-16.77639265,13.16361078],[-14.3381996,-16.77475702,13.16361078],[-13.6707001,-16.77312139,13.16361078],[-12.3604002,-16.77148577,13.16361078],[-11.5941,-16.76985014,13.16361078],[-12.4066,-16.76821451,13.16361078],[-13.6164999,-16.76657888,13.16361078],[-14.0663004,-16.76494326,13.16361078],[-13.7578001,-16.76330763,13.16361078],[-13.5332003,-16.761672,13.16361078],[-13.4837999,-16.76003637,13.16361078],[-13.3162003,-16.75840074,13.16361078],[-12.9070997,-16.75676512,13.16361078],[-12.9116001,-16.75512949,13.16361078],[-13.2044001,-16.75349386,13.16361078],[-13.4665003,-16.75185823,13.16361078],[-13.3135996,-16.75022261,13.16361078],[-13.0859003,-16.74858698,13.16361078],[-13.2282,-16.74695135,13.16361078],[-13.0897999,-16.74531572,13.16361078],[-13.1429005,-16.7436801,13.16361078],[-13.2572002,-16.74204447,13.16361078],[-12.7559996,-16.74040884,13.16361078],[-12.1295004,-16.73877321,13.16361078],[-11.8139,-16.73713758,13.16361078],[-11.3056002,-16.73550196,13.16361078],[-10.3718996,-16.73386633,13.16361078],[-10.1803999,-16.7322307,13.16361078],[-10.6878996,-16.73059507,13.16361078],[-10.5798998,-16.72895945,13.16361078],[-10.6394997,-16.72732382,13.16361078],[-10.9877996,-16.72568819,13.16361078],[-11.1338997,-16.72405256,13.16361078],[-10.9497995,-16.72241693,13.16361078],[-10.3249998,-16.72078131,13.16361078],[-9.7655497,-16.71914568,13.16361078],[-10.0752001,-16.71751005,13.16361078],[-9.9475298,-16.71587442,13.16361078],[-9.6867504,-16.7142388,13.16361078],[-10.3355999,-16.71260317,13.16361078],[-11.2594004,-16.71096754,13.16361078],[-11.5458002,-16.70933191,13.16361078],[-10.3912001,-16.70769628,13.16361078],[-9.1619701,-16.70606066,13.16361078],[-8.9729404,-16.70442503,13.16361078],[-9.0039301,-16.7027894,13.16361078],[-8.5533199,-16.70115377,13.16361078],[-8.4612198,-16.69951815,13.16361078],[-8.4250202,-16.69788252,13.16361078],[-8.3491096,-16.69624689,13.16361078],[-7.83494,-16.69461126,13.16361078],[-6.6801801,-16.69297564,13.16361078],[-5.6992402,-16.69134001,13.16361078],[-5.3379402,-16.78620642,13.16197515],[-6.3094602,-16.78457079,13.16197515],[-6.4124298,-16.78293516,13.16197515],[-8.5856504,-16.78129953,13.16197515],[-9.2315798,-16.77966391,13.16197515],[-9.7992001,-16.77802828,13.16197515],[-12.6791,-16.77639265,13.16197515],[-15.8542004,-16.77475702,13.16197515],[-14.3287001,-16.77312139,13.16197515],[-11.9503002,-16.77148577,13.16197515],[-10.6218996,-16.76985014,13.16197515],[-12.0768995,-16.76821451,13.16197515],[-13.8898001,-16.76657888,13.16197515],[-14.6660004,-16.76494326,13.16197515],[-13.8802004,-16.76330763,13.16197515],[-13.5304003,-16.761672,13.16197515],[-13.4920998,-16.76003637,13.16197515],[-13.2539997,-16.75840074,13.16197515],[-12.5180998,-16.75676512,13.16197515],[-12.5474997,-16.75512949,13.16197515],[-13.1611004,-16.75349386,13.16197515],[-13.6815004,-16.75185823,13.16197515],[-13.4621,-16.75022261,13.16197515],[-13.1482,-16.74858698,13.16197515],[-13.5537996,-16.74695135,13.16197515],[-13.1285,-16.74531572,13.16197515],[-13.1513996,-16.7436801,13.16197515],[-13.4736996,-16.74204447,13.16197515],[-12.6056004,-16.74040884,13.16197515],[-11.8688002,-16.73877321,13.16197515],[-11.7630997,-16.73713758,13.16197515],[-11.0136003,-16.73550196,13.16197515],[-9.9633999,-16.73386633,13.16197515],[-9.8051596,-16.7322307,13.16197515],[-10.3844004,-16.73059507,13.16197515],[-10.4001999,-16.72895945,13.16197515],[-10.4726,-16.72732382,13.16197515],[-10.7720003,-16.72568819,13.16197515],[-11.1624002,-16.72405256,13.16197515],[-10.8371,-16.72241693,13.16197515],[-10.0811996,-16.72078131,13.16197515],[-9.5279703,-16.71914568,13.16197515],[-9.8418798,-16.71751005,13.16197515],[-9.7820797,-16.71587442,13.16197515],[-9.5009203,-16.7142388,13.16197515],[-10.1978998,-16.71260317,13.16197515],[-11.2812996,-16.71096754,13.16197515],[-11.6057997,-16.70933191,13.16197515],[-10.085,-16.70769628,13.16197515],[-8.8842297,-16.70606066,13.16197515],[-8.7837095,-16.70442503,13.16197515],[-8.6743898,-16.7027894,13.16197515],[-7.98736,-16.69624689,13.16197515],[-7.5393901,-16.69461126,13.16197515],[-6.42589,-16.69297564,13.16197515],[-5.5925999,-16.69134001,13.16197515],[-4.1406398,-16.78784204,13.16033953],[-6.0914102,-16.78620642,13.16033953],[-7.7119899,-16.78457079,13.16033953],[-8.4222603,-16.78293516,13.16033953],[-8.9888296,-16.78129953,13.16033953],[-9.4830503,-16.77966391,13.16033953],[-10.1367998,-16.77802828,13.16033953],[-11.7003002,-16.77639265,13.16033953],[-13.0270996,-16.77475702,13.16033953],[-12.9544001,-16.77312139,13.16033953],[-12.1686001,-16.77148577,13.16033953],[-11.9757004,-16.76985014,13.16033953],[-12.5383997,-16.76821451,13.16033953],[-13.4830999,-16.76657888,13.16033953],[-13.8786001,-16.76494326,13.16033953],[-13.7086,-16.76330763,13.16033953],[-13.5049,-16.761672,13.16033953],[-13.5102997,-16.76003637,13.16033953],[-13.2229996,-16.75840074,13.16033953],[-12.8535995,-16.75676512,13.16033953],[-12.7683001,-16.75512949,13.16033953],[-12.9682999,-16.75349386,13.16033953],[-12.9637003,-16.75185823,13.16033953],[-12.8459997,-16.75022261,13.16033953],[-12.7497997,-16.74858698,13.16033953],[-12.8648996,-16.74695135,13.16033953],[-12.7467003,-16.74531572,13.16033953],[-12.7601995,-16.7436801,13.16033953],[-12.6934004,-16.74204447,13.16033953],[-12.1611996,-16.74040884,13.16033953],[-11.2995005,-16.73877321,13.16033953],[-10.7702999,-16.73713758,13.16033953],[-10.4382,-16.73550196,13.16033953],[-10.2086,-16.73386633,13.16033953],[-10.1054001,-16.7322307,13.16033953],[-10.2719002,-16.73059507,13.16033953],[-10.4439001,-16.72895945,13.16033953],[-10.4867001,-16.72732382,13.16033953],[-10.5841999,-16.72568819,13.16033953],[-10.6912003,-16.72405256,13.16033953],[-10.4497995,-16.72241693,13.16033953],[-10.0355997,-16.72078131,13.16033953],[-9.7741804,-16.71914568,13.16033953],[-9.8422699,-16.71751005,13.16033953],[-9.8832197,-16.71587442,13.16033953],[-9.8555899,-16.7142388,13.16033953],[-10.0319004,-16.71260317,13.16033953],[-10.4244003,-16.71096754,13.16033953],[-10.3971004,-16.70933191,13.16033953],[-9.5991001,-16.70769628,13.16033953],[-8.8570099,-16.70606066,13.16033953],[-8.6009502,-16.70442503,13.16033953],[-8.3793402,-16.7027894,13.16033953],[-7.6387401,-16.69461126,13.16033953],[-7.0514002,-16.69297564,13.16033953],[-6.7264099,-16.69134001,13.16033953],[-6.77069,-16.78620642,13.1587039],[-11.3910999,-16.78457079,13.1587039],[-12.0972004,-16.78293516,13.1587039],[-9.7287302,-16.78129953,13.1587039],[-8.6935902,-16.77966391,13.1587039],[-9.3312197,-16.77802828,13.1587039],[-10.8959999,-16.77639265,13.1587039],[-11.7053003,-16.77475702,13.1587039],[-11.8670998,-16.77312139,13.1587039],[-12.0516996,-16.77148577,13.1587039],[-11.8245001,-16.76985014,13.1587039],[-12.5303001,-16.76821451,13.1587039],[-13.6434002,-16.76657888,13.1587039],[-14.1489,-16.76494326,13.1587039],[-13.7237997,-16.76330763,13.1587039],[-13.6498003,-16.761672,13.1587039],[-13.6400995,-16.76003637,13.1587039],[-13.2065001,-16.75840074,13.1587039],[-12.5318003,-16.75676512,13.1587039],[-12.4783001,-16.75512949,13.1587039],[-12.7420998,-16.75349386,13.1587039],[-12.6745996,-16.75185823,13.1587039],[-12.6078997,-16.75022261,13.1587039],[-12.3954,-16.74858698,13.1587039],[-12.3782997,-16.74695135,13.1587039],[-12.3533001,-16.74531572,13.1587039],[-12.6574001,-16.7436801,13.1587039],[-12.8683996,-16.74204447,13.1587039],[-11.8936005,-16.74040884,13.1587039],[-9.8980503,-16.73877321,13.1587039],[-8.8833504,-16.73713758,13.1587039],[-9.8973904,-16.73550196,13.1587039],[-10.0030003,-16.73386633,13.1587039],[-9.9986601,-16.7322307,13.1587039],[-10.1863003,-16.73059507,13.1587039],[-10.5395002,-16.72895945,13.1587039],[-10.5197001,-16.72732382,13.1587039],[-10.4646997,-16.72568819,13.1587039],[-10.6549997,-16.72405256,13.1587039],[-10.4003,-16.72241693,13.1587039],[-9.8316603,-16.72078131,13.1587039],[-9.4614601,-16.71914568,13.1587039],[-9.6695604,-16.71751005,13.1587039],[-9.7526197,-16.71587442,13.1587039],[-9.7294302,-16.7142388,13.1587039],[-9.8781204,-16.71260317,13.1587039],[-10.2524004,-16.71096754,13.1587039],[-10.4120998,-16.70933191,13.1587039],[-9.2884903,-16.70769628,13.1587039],[-8.2770996,-16.70606066,13.1587039],[-8.14048,-16.70442503,13.1587039],[-8.0181103,-16.7027894,13.1587039],[-7.0166402,-16.78620642,13.15706827],[-12.6107998,-16.78457079,13.15706827],[-13.2423,-16.78293516,13.15706827],[-9.7810497,-16.78129953,13.15706827],[-8.4194803,-16.77966391,13.15706827],[-8.7127199,-16.77802828,13.15706827],[-10.3209,-16.77639265,13.15706827],[-11.5395002,-16.77475702,13.15706827],[-11.5482998,-16.77312139,13.15706827],[-11.8641005,-16.77148577,13.15706827],[-11.7353001,-16.76985014,13.15706827],[-12.4609003,-16.76821451,13.15706827],[-13.5881004,-16.76657888,13.15706827],[-14.1998997,-16.76494326,13.15706827],[-13.6591997,-16.76330763,13.15706827],[-13.5937996,-16.761672,13.15706827],[-13.6240997,-16.76003637,13.15706827],[-13.0783005,-16.75840074,13.15706827],[-12.5089998,-16.75676512,13.15706827],[-12.4418001,-16.75512949,13.15706827],[-12.4390001,-16.75349386,13.15706827],[-12.5574999,-16.75185823,13.15706827],[-12.3951998,-16.75022261,13.15706827],[-12.1339998,-16.74858698,13.15706827],[-12.2504997,-16.74695135,13.15706827],[-12.1155005,-16.74531572,13.15706827],[-12.4118996,-16.7436801,13.15706827],[-12.7754002,-16.74204447,13.15706827],[-11.7842999,-16.74040884,13.15706827],[-9.9119902,-16.73877321,13.15706827],[-9.0645304,-16.73713758,13.15706827],[-9.8669596,-16.73550196,13.15706827],[-9.9861202,-16.73386633,13.15706827],[-9.9946804,-16.7322307,13.15706827],[-10.1683998,-16.73059507,13.15706827],[-10.4916,-16.72895945,13.15706827],[-10.5071001,-16.72732382,13.15706827],[-10.4258003,-16.72568819,13.15706827],[-10.5454998,-16.72405256,13.15706827],[-10.2800999,-16.72241693,13.15706827],[-9.7701302,-16.72078131,13.15706827],[-9.5339203,-16.71914568,13.15706827],[-9.5756998,-16.71751005,13.15706827],[-9.6786299,-16.71587442,13.15706827],[-9.6864595,-16.7142388,13.15706827],[-9.6510496,-16.71260317,13.15706827],[-9.9057398,-16.71096754,13.15706827],[-9.92103,-16.70933191,13.15706827],[-8.9196796,-16.70769628,13.15706827],[-8.1941605,-16.70606066,13.15706827],[-8.04671,-16.70442503,13.15706827],[-7.9379601,-16.7027894,13.15706827],[-7.5659699,-16.70115377,13.15706827],[-9.7302799,-16.78457079,13.15543264],[-9.9731503,-16.78293516,13.15543264],[-8.50597,-16.78129953,13.15543264],[-7.4703202,-16.77966391,13.15543264],[-7.89362,-16.77802828,13.15543264],[-9.9321699,-16.77639265,13.15543264],[-11.2910995,-16.77475702,13.15543264],[-11.6342001,-16.77312139,13.15543264],[-11.7062998,-16.77148577,13.15543264],[-12.1946001,-16.76985014,13.15543264],[-12.5895004,-16.76821451,13.15543264],[-13.0594997,-16.76657888,13.15543264],[-13.3323002,-16.76494326,13.15543264],[-13.3622999,-16.76330763,13.15543264],[-13.1887999,-16.761672,13.15543264],[-13.1378002,-16.76003637,13.15543264],[-13.0307999,-16.75840074,13.15543264],[-12.9688997,-16.75676512,13.15543264],[-12.7622995,-16.75512949,13.15543264],[-12.2966003,-16.75349386,13.15543264],[-11.8037996,-16.75185823,13.15543264],[-11.6443005,-16.75022261,13.15543264],[-11.3751001,-16.74858698,13.15543264],[-11.0349998,-16.74695135,13.15543264],[-11.2957001,-16.74531572,13.15543264],[-12.0556002,-16.7436801,13.15543264],[-12.4161997,-16.74204447,13.15543264],[-11.8077002,-16.74040884,13.15543264],[-11.007,-16.73877321,13.15543264],[-10.6499996,-16.73713758,13.15543264],[-10.2882004,-16.73550196,13.15543264],[-9.91506,-16.73386633,13.15543264],[-9.7712803,-16.7322307,13.15543264],[-10.0753002,-16.73059507,13.15543264],[-10.3929005,-16.72895945,13.15543264],[-10.4147997,-16.72732382,13.15543264],[-10.1878996,-16.72568819,13.15543264],[-9.9625196,-16.72405256,13.15543264],[-9.8582296,-16.72241693,13.15543264],[-9.76546,-16.72078131,13.15543264],[-9.5822802,-16.71914568,13.15543264],[-9.5494499,-16.71751005,13.15543264],[-9.6667805,-16.71587442,13.15543264],[-9.70257,-16.7142388,13.15543264],[-9.3974304,-16.71260317,13.15543264],[-8.9376497,-16.71096754,13.15543264],[-8.6682196,-16.70933191,13.15543264],[-8.3233995,-16.70769628,13.15543264],[-7.9758501,-16.70115377,13.15543264],[-7.9379501,-16.69951815,13.15543264],[-4.8629599,-16.77802828,13.15379701],[-9.7273998,-16.77639265,13.15379701],[-13.1403999,-16.77475702,13.15379701],[-12.3394003,-16.77312139,13.15379701],[-11.7852001,-16.77148577,13.15379701],[-12.4638004,-16.76985014,13.15379701],[-12.3555002,-16.76821451,13.15379701],[-13.0347004,-16.76657888,13.15379701],[-13.2910004,-16.76494326,13.15379701],[-13.0556002,-16.76330763,13.15379701],[-12.7097998,-16.761672,13.15379701],[-12.5254002,-16.76003637,13.15379701],[-13.0003996,-16.75840074,13.15379701],[-13.5388002,-16.75676512,13.15379701],[-13.4266996,-16.75512949,13.15379701],[-12.1356001,-16.75349386,13.15379701],[-10.7446003,-16.75185823,13.15379701],[-10.9218998,-16.75022261,13.15379701],[-10.5213003,-16.74858698,13.15379701],[-8.7596903,-16.74695135,13.15379701],[-10.1745996,-16.74531572,13.15379701],[-12.1816998,-16.7436801,13.15379701],[-13.2215004,-16.74204447,13.15379701],[-12.2110004,-16.74040884,13.15379701],[-11.3334999,-16.73877321,13.15379701],[-11.1855001,-16.73713758,13.15379701],[-10.6716995,-16.73550196,13.15379701],[-9.3372297,-16.73386633,13.15379701],[-9.0291204,-16.7322307,13.15379701],[-10.1457996,-16.73059507,13.15379701],[-10.4004002,-16.72895945,13.15379701],[-10.3785,-16.72732382,13.15379701],[-10.0745001,-16.72568819,13.15379701],[-9.1527901,-16.72405256,13.15379701],[-9.5395298,-16.72241693,13.15379701],[-9.68013,-16.72078131,13.15379701],[-9.2136002,-16.71914568,13.15379701],[-9.5459805,-16.71751005,13.15379701],[-9.7131701,-16.71587442,13.15379701],[-9.8514996,-16.7142388,13.15379701],[-9.2309303,-16.71260317,13.15379701],[-8.2734804,-16.71096754,13.15379701],[-7.9155698,-16.70933191,13.15379701],[-8.3281403,-16.70115377,13.15379701],[-8.2043695,-16.69951815,13.15379701],[-5.1315198,-16.77802828,13.15216139],[-9.1697598,-16.77639265,13.15216139],[-12.1231003,-16.77475702,13.15216139],[-11.5118999,-16.77312139,13.15216139],[-11.3044996,-16.77148577,13.15216139],[-12.0820999,-16.76985014,13.15216139],[-12.0732002,-16.76821451,13.15216139],[-12.6183004,-16.76657888,13.15216139],[-13.0970001,-16.76494326,13.15216139],[-12.9826002,-16.76330763,13.15216139],[-12.8287001,-16.761672,13.15216139],[-12.7384005,-16.76003637,13.15216139],[-13.0976,-16.75840074,13.15216139],[-13.4547005,-16.75676512,13.15216139],[-13.2943001,-16.75512949,13.15216139],[-12.3627005,-16.75349386,13.15216139],[-11.2974997,-16.75185823,13.15216139],[-11.2315998,-16.75022261,13.15216139],[-10.8622999,-16.74858698,13.15216139],[-9.8373804,-16.74695135,13.15216139],[-10.6673002,-16.74531572,13.15216139],[-12.1039,-16.7436801,13.15216139],[-12.6922998,-16.74204447,13.15216139],[-12.1395998,-16.74040884,13.15216139],[-11.5506001,-16.73877321,13.15216139],[-11.3380003,-16.73713758,13.15216139],[-11.0079002,-16.73550196,13.15216139],[-10.1300001,-16.73386633,13.15216139],[-9.9203997,-16.7322307,13.15216139],[-10.6774998,-16.73059507,13.15216139],[-10.7251997,-16.72895945,13.15216139],[-10.7083998,-16.72732382,13.15216139],[-10.5646,-16.72568819,13.15216139],[-9.9403296,-16.72405256,13.15216139],[-10.0792999,-16.72241693,13.15216139],[-10.0948,-16.72078131,13.15216139],[-9.7137403,-16.71914568,13.15216139],[-9.7101097,-16.71751005,13.15216139],[-9.7340498,-16.71587442,13.15216139],[-9.6464701,-16.7142388,13.15216139],[-9.0493603,-16.71260317,13.15216139],[-8.3210602,-16.71096754,13.15216139],[-7.9942899,-16.70933191,13.15216139],[-7.52389,-16.77639265,13.15052576],[-7.40483,-16.77475702,13.15052576],[-8.5054998,-16.77312139,13.15052576],[-10.0825996,-16.77148577,13.15052576],[-10.8196001,-16.76985014,13.15052576],[-11.3603001,-16.76821451,13.15052576],[-11.9510002,-16.76657888,13.15052576],[-12.3915997,-16.76494326,13.15052576],[-12.7763996,-16.76330763,13.15052576],[-13.0888996,-16.761672,13.15052576],[-13.2173004,-16.76003637,13.15052576],[-13.2596998,-16.75840074,13.15052576],[-13.4074001,-16.75676512,13.15052576],[-13.3158998,-16.75512949,13.15052576],[-12.7910004,-16.75349386,13.15052576],[-12.5606003,-16.75185823,13.15052576],[-12.2504997,-16.75022261,13.15052576],[-11.6420002,-16.74858698,13.15052576],[-11.2904997,-16.74695135,13.15052576],[-11.4684,-16.74531572,13.15052576],[-12.1052999,-16.7436801,13.15052576],[-12.3856001,-16.74204447,13.15052576],[-12.1434002,-16.74040884,13.15052576],[-12.0644999,-16.73877321,13.15052576],[-12.1309996,-16.73713758,13.15052576],[-11.6850996,-16.73550196,13.15052576],[-11.5760002,-16.73386633,13.15052576],[-11.6465998,-16.7322307,13.15052576],[-11.4955997,-16.73059507,13.15052576],[-11.7687998,-16.72895945,13.15052576],[-11.7054996,-16.72732382,13.15052576],[-11.3297005,-16.72568819,13.15052576],[-11.4757004,-16.72405256,13.15052576],[-11.1712999,-16.72241693,13.15052576],[-10.7526999,-16.72078131,13.15052576],[-10.6246996,-16.71914568,13.15052576],[-10.1917,-16.71751005,13.15052576],[-9.8573198,-16.71587442,13.15052576],[-9.6836395,-16.7142388,13.15052576],[-9.01964,-16.71260317,13.15052576],[-8.3053904,-16.71096754,13.15052576],[-6.0364699,-16.77639265,13.14889013],[-3.51051,-16.77475702,13.14889013],[-5.5572701,-16.77312139,13.14889013],[-9.3332396,-16.77148577,13.14889013],[-9.86691,-16.76985014,13.14889013],[-10.7178001,-16.76821451,13.14889013],[-11.7967997,-16.76657888,13.14889013],[-11.9041004,-16.76494326,13.14889013],[-12.5662003,-16.76330763,13.14889013],[-13.2248001,-16.761672,13.14889013],[-13.3452997,-16.76003637,13.14889013],[-13.4380999,-16.75840074,13.14889013],[-13.5768995,-16.75676512,13.14889013],[-13.5663996,-16.75512949,13.14889013],[-13.1723003,-16.75349386,13.14889013],[-13.1400995,-16.75185823,13.14889013],[-12.9062996,-16.75022261,13.14889013],[-12.0219002,-16.74858698,13.14889013],[-11.2774,-16.74695135,13.14889013],[-11.6020002,-16.74531572,13.14889013],[-12.2810001,-16.7436801,13.14889013],[-12.8083,-16.74204447,13.14889013],[-12.3709002,-16.74040884,13.14889013],[-12.5405998,-16.73877321,13.14889013],[-12.8491001,-16.73713758,13.14889013],[-12.2054005,-16.73550196,13.14889013],[-12.2638998,-16.73386633,13.14889013],[-12.3893995,-16.7322307,13.14889013],[-12.0103998,-16.73059507,13.14889013],[-12.4202995,-16.72895945,13.14889013],[-12.3234997,-16.72732382,13.14889013],[-11.8296003,-16.72568819,13.14889013],[-12.1393995,-16.72405256,13.14889013],[-11.743,-16.72241693,13.14889013],[-11.0689001,-16.72078131,13.14889013],[-11.0853004,-16.71914568,13.14889013],[-10.5017996,-16.71751005,13.14889013],[-9.8657999,-16.71587442,13.14889013],[-9.94491,-16.7142388,13.14889013],[-9.0195103,-16.71260317,13.14889013],[-8.1806202,-16.71096754,13.14889013],[-8.0428305,-16.70933191,13.14889013],[-5.2328801,-16.77475702,13.1472545],[-6.7084699,-16.77312139,13.1472545],[-9.1578102,-16.77148577,13.1472545],[-10.1327,-16.76985014,13.1472545],[-11.0045996,-16.76821451,13.1472545],[-11.8239002,-16.76657888,13.1472545],[-12.3100004,-16.76494326,13.1472545],[-12.8109999,-16.76330763,13.1472545],[-13.3112001,-16.761672,13.1472545],[-13.5221004,-16.76003637,13.1472545],[-13.7192001,-16.75840074,13.1472545],[-13.7545996,-16.75676512,13.1472545],[-13.6849003,-16.75512949,13.1472545],[-13.5043001,-16.75349386,13.1472545],[-13.1648998,-16.75185823,13.1472545],[-12.9074001,-16.75022261,13.1472545],[-12.3782997,-16.74858698,13.1472545],[-11.9370003,-16.74695135,13.1472545],[-12.0500002,-16.74531572,13.1472545],[-12.2404003,-16.7436801,13.1472545],[-12.3273001,-16.74204447,13.1472545],[-12.3121004,-16.74040884,13.1472545],[-12.2566996,-16.73877321,13.1472545],[-12.2069998,-16.73713758,13.1472545],[-12.0871,-16.73550196,13.1472545],[-12.1691999,-16.73386633,13.1472545],[-12.1872997,-16.7322307,13.1472545],[-12.1778002,-16.73059507,13.1472545],[-12.2460003,-16.72895945,13.1472545],[-12.1555996,-16.72732382,13.1472545],[-12.0190001,-16.72568819,13.1472545],[-11.7725,-16.72405256,13.1472545],[-11.4764996,-16.72241693,13.1472545],[-11.1057997,-16.72078131,13.1472545],[-10.7617998,-16.71914568,13.1472545],[-10.2168999,-16.71751005,13.1472545],[-9.5386295,-16.71587442,13.1472545],[-9.0927801,-16.7142388,13.1472545],[-8.5633402,-16.71260317,13.1472545],[-8.1004896,-16.71096754,13.1472545],[-7.7536001,-16.70933191,13.1472545],[-7.11058,-16.77475702,13.14561888],[-8.0953598,-16.77312139,13.14561888],[-9.8762197,-16.77148577,13.14561888],[-10.5144997,-16.76985014,13.14561888],[-11.0579996,-16.76821451,13.14561888],[-12.3767996,-16.76657888,13.14561888],[-13.1391001,-16.76494326,13.14561888],[-13.2280998,-16.76330763,13.14561888],[-13.6789999,-16.761672,13.14561888],[-13.9330997,-16.76003637,13.14561888],[-14.0444002,-16.75840074,13.14561888],[-14.4990997,-16.75676512,13.14561888],[-14.4773998,-16.75512949,13.14561888],[-13.8179998,-16.75349386,13.14561888],[-13.5811005,-16.75185823,13.14561888],[-13.2601995,-16.75022261,13.14561888],[-12.8815002,-16.74858698,13.14561888],[-12.9972,-16.74695135,13.14561888],[-12.6285,-16.74531572,13.14561888],[-12.1334,-16.7436801,13.14561888],[-11.8352003,-16.74204447,13.14561888],[-11.9459,-16.74040884,13.14561888],[-11.5573997,-16.73877321,13.14561888],[-11.1044998,-16.73713758,13.14561888],[-11.7384996,-16.73550196,13.14561888],[-12.2048998,-16.73386633,13.14561888],[-12.3177996,-16.7322307,13.14561888],[-12.2587996,-16.73059507,13.14561888],[-12.4280005,-16.72895945,13.14561888],[-12.4041996,-16.72732382,13.14561888],[-12.0602999,-16.72568819,13.14561888],[-11.8297997,-16.72405256,13.14561888],[-11.5594997,-16.72241693,13.14561888],[-11.2094002,-16.72078131,13.14561888],[-11.2740002,-16.71914568,13.14561888],[-10.3437996,-16.71751005,13.14561888],[-8.7846098,-16.71587442,13.14561888],[-7.8201699,-16.7142388,13.14561888],[-7.9952998,-16.71260317,13.14561888],[-7.7620602,-16.71096754,13.14561888],[-7.5096402,-16.70933191,13.14561888],[-7.1378298,-16.70769628,13.14561888],[-6.4231601,-16.70606066,13.14561888],[-8.7738199,-16.77312139,13.14398325],[-9.9751301,-16.77148577,13.14398325],[-10.5558996,-16.76985014,13.14398325],[-11.1138,-16.76821451,13.14398325],[-12.6779003,-16.76657888,13.14398325],[-13.6760998,-16.76494326,13.14398325],[-13.4407997,-16.76330763,13.14398325],[-13.9190998,-16.761672,13.14398325],[-14.1332998,-16.76003637,13.14398325],[-14.1529999,-16.75840074,13.14398325],[-14.9390001,-16.75676512,13.14398325],[-15.0087004,-16.75512949,13.14398325],[-13.9495001,-16.75349386,13.14398325],[-13.7448997,-16.75185823,13.14398325],[-13.5810003,-16.75022261,13.14398325],[-13.1715002,-16.74858698,13.14398325],[-13.4389,-16.74695135,13.14398325],[-12.9352999,-16.74531572,13.14398325],[-12.1601,-16.7436801,13.14398325],[-11.6562004,-16.74204447,13.14398325],[-11.8483,-16.74040884,13.14398325],[-11.2800999,-16.73877321,13.14398325],[-10.5855999,-16.73713758,13.14398325],[-11.7247,-16.73550196,13.14398325],[-12.3193998,-16.73386633,13.14398325],[-12.4183998,-16.7322307,13.14398325],[-12.3860998,-16.73059507,13.14398325],[-12.5663996,-16.72895945,13.14398325],[-12.4923,-16.72732382,13.14398325],[-12.0001001,-16.72568819,13.14398325],[-11.8674002,-16.72405256,13.14398325],[-11.5270004,-16.72241693,13.14398325],[-11.0176001,-16.72078131,13.14398325],[-11.5352001,-16.71914568,13.14398325],[-10.2990999,-16.71751005,13.14398325],[-8.4175196,-16.71587442,13.14398325],[-7.5148201,-16.7142388,13.14398325],[-7.8341298,-16.71260317,13.14398325],[-7.6139202,-16.71096754,13.14398325],[-7.4746599,-16.70933191,13.14398325],[-7.1804199,-16.70769628,13.14398325],[-6.3337402,-16.70606066,13.14398325],[-6.1704898,-16.70442503,13.14398325],[-7.9852099,-16.77312139,13.14234762],[-9.8124504,-16.77148577,13.14234762],[-10.8142004,-16.76985014,13.14234762],[-11.6314001,-16.76821451,13.14234762],[-12.5640001,-16.76657888,13.14234762],[-13.1626997,-16.76494326,13.14234762],[-13.4816999,-16.76330763,13.14234762],[-13.8021002,-16.761672,13.14234762],[-14.0485001,-16.76003637,13.14234762],[-14.1016998,-16.75840074,13.14234762],[-14.2791004,-16.75676512,13.14234762],[-14.2412996,-16.75512949,13.14234762],[-13.8011999,-16.75349386,13.14234762],[-13.3862,-16.75185823,13.14234762],[-13.1225996,-16.75022261,13.14234762],[-12.8619003,-16.74858698,13.14234762],[-12.6812,-16.74695135,13.14234762],[-12.4769001,-16.74531572,13.14234762],[-12.3092003,-16.7436801,13.14234762],[-12.2010002,-16.74204447,13.14234762],[-12.2296,-16.74040884,13.14234762],[-12.1078997,-16.73877321,13.14234762],[-11.9847002,-16.73713758,13.14234762],[-12.0949001,-16.73550196,13.14234762],[-12.2025003,-16.73386633,13.14234762],[-12.224,-16.7322307,13.14234762],[-12.1690998,-16.73059507,13.14234762],[-12.1701002,-16.72895945,13.14234762],[-12.0904999,-16.72732382,13.14234762],[-11.7002001,-16.72568819,13.14234762],[-11.4151001,-16.72405256,13.14234762],[-10.8802004,-16.72241693,13.14234762],[-10.1712999,-16.72078131,13.14234762],[-9.5743399,-16.71914568,13.14234762],[-9.0520096,-16.71751005,13.14234762],[-8.3821001,-16.71587442,13.14234762],[-7.8499699,-16.7142388,13.14234762],[-7.8632698,-16.71260317,13.14234762],[-7.8593202,-16.71096754,13.14234762],[-7.7642002,-16.70933191,13.14234762],[-7.5534902,-16.70769628,13.14234762],[-7.0310102,-16.70606066,13.14234762],[-6.78897,-16.70442503,13.14234762],[-5.7270002,-16.77312139,13.14071199],[-9.9462099,-16.77148577,13.14071199],[-12.2988997,-16.76985014,13.14071199],[-12.2035999,-16.76821451,13.14071199],[-12.5448999,-16.76657888,13.14071199],[-12.7257996,-16.76494326,13.14071199],[-13.2849998,-16.76330763,13.14071199],[-13.9722004,-16.761672,13.14071199],[-14.1500998,-16.76003637,13.14071199],[-13.9801998,-16.75840074,13.14071199],[-13.7791996,-16.75676512,13.14071199],[-13.6844997,-16.75512949,13.14071199],[-13.4823999,-16.75349386,13.14071199],[-12.8004999,-16.75185823,13.14071199],[-12.7249002,-16.75022261,13.14071199],[-12.4209003,-16.74858698,13.14071199],[-11.7208996,-16.74695135,13.14071199],[-12.0101995,-16.74531572,13.14071199],[-12.4854002,-16.7436801,13.14071199],[-12.7442999,-16.74204447,13.14071199],[-12.6187,-16.74040884,13.14071199],[-12.8694,-16.73877321,13.14071199],[-13.2571001,-16.73713758,13.14071199],[-12.559,-16.73550196,13.14071199],[-12.1128998,-16.73386633,13.14071199],[-12.0439997,-16.7322307,13.14071199],[-12.0136003,-16.73059507,13.14071199],[-11.9099998,-16.72895945,13.14071199],[-11.7854996,-16.72732382,13.14071199],[-11.4105997,-16.72568819,13.14071199],[-11.3470001,-16.72405256,13.14071199],[-10.8315001,-16.72241693,13.14071199],[-9.10462,-16.72078131,13.14071199],[-7.2927599,-16.71914568,13.14071199],[-7.9226899,-16.71751005,13.14071199],[-7.77633,-16.71587442,13.14071199],[-7.13275,-16.7142388,13.14071199],[-7.7036099,-16.71260317,13.14071199],[-8.2375498,-16.71096754,13.14071199],[-8.4313297,-16.70933191,13.14071199],[-7.9798298,-16.70769628,13.14071199],[-7.6073799,-16.70606066,13.14071199],[-7.3427501,-16.70442503,13.14071199],[-5.0230999,-16.77312139,13.13907637],[-10.0193005,-16.77148577,13.13907637],[-12.8641996,-16.76985014,13.13907637],[-12.4673004,-16.76821451,13.13907637],[-12.5559998,-16.76657888,13.13907637],[-12.5818996,-16.76494326,13.13907637],[-13.3526001,-16.76330763,13.13907637],[-14.0156002,-16.761672,13.13907637],[-14.1929998,-16.76003637,13.13907637],[-13.9973001,-16.75840074,13.13907637],[-13.7449999,-16.75676512,13.13907637],[-13.6830997,-16.75512949,13.13907637],[-13.4462996,-16.75349386,13.13907637],[-12.7788,-16.75185823,13.13907637],[-12.7435999,-16.75022261,13.13907637],[-12.4266996,-16.74858698,13.13907637],[-11.6764002,-16.74695135,13.13907637],[-12.0525999,-16.74531572,13.13907637],[-12.5430002,-16.7436801,13.13907637],[-12.7929001,-16.74204447,13.13907637],[-12.7157001,-16.74040884,13.13907637],[-12.9524002,-16.73877321,13.13907637],[-13.2817001,-16.73713758,13.13907637],[-12.5830002,-16.73550196,13.13907637],[-12.0566998,-16.73386633,13.13907637],[-11.9379997,-16.7322307,13.13907637],[-11.7360001,-16.73059507,13.13907637],[-11.7503996,-16.72895945,13.13907637],[-11.5665998,-16.72732382,13.13907637],[-10.9905005,-16.72568819,13.13907637],[-11.0984001,-16.72405256,13.13907637],[-10.5229998,-16.72241693,13.13907637],[-8.9017496,-16.72078131,13.13907637],[-7.4775801,-16.71914568,13.13907637],[-7.9009299,-16.71751005,13.13907637],[-7.8194499,-16.71587442,13.13907637],[-7.3507199,-16.7142388,13.13907637],[-7.9033899,-16.71260317,13.13907637],[-8.2313604,-16.71096754,13.13907637],[-8.3824396,-16.70933191,13.13907637],[-8.0774403,-16.70769628,13.13907637],[-7.82974,-16.70606066,13.13907637],[-7.6957998,-16.70442503,13.13907637],[-6.3998599,-16.77312139,13.13744074],[-9.7968798,-16.77148577,13.13744074],[-11.7313004,-16.76985014,13.13744074],[-12.3378,-16.76821451,13.13744074],[-12.9259996,-16.76657888,13.13744074],[-13.7341995,-16.76494326,13.13744074],[-13.8898001,-16.76330763,13.13744074],[-13.9064999,-16.761672,13.13744074],[-14.0340996,-16.76003637,13.13744074],[-14.0606003,-16.75840074,13.13744074],[-14.1183996,-16.75676512,13.13744074],[-14.1395998,-16.75512949,13.13744074],[-13.8606997,-16.75349386,13.13744074],[-13.6666002,-16.75185823,13.13744074],[-13.3365002,-16.75022261,13.13744074],[-12.8446999,-16.74858698,13.13744074],[-12.3296003,-16.74695135,13.13744074],[-12.3677998,-16.74531572,13.13744074],[-12.7320995,-16.7436801,13.13744074],[-12.8565998,-16.74204447,13.13744074],[-12.7327995,-16.74040884,13.13744074],[-12.7308998,-16.73877321,13.13744074],[-12.6657,-16.73713758,13.13744074],[-12.2810001,-16.73550196,13.13744074],[-11.8066998,-16.73386633,13.13744074],[-11.5254002,-16.7322307,13.13744074],[-11.4371996,-16.73059507,13.13744074],[-11.2747002,-16.72895945,13.13744074],[-11.0541,-16.72732382,13.13744074],[-10.4547997,-16.72568819,13.13744074],[-9.8677502,-16.72405256,13.13744074],[-9.5148296,-16.72241693,13.13744074],[-9.0807199,-16.72078131,13.13744074],[-8.6226196,-16.71914568,13.13744074],[-8.5016603,-16.71751005,13.13744074],[-8.5354004,-16.71587442,13.13744074],[-8.5579205,-16.7142388,13.13744074],[-8.3587904,-16.71260317,13.13744074],[-8.1943102,-16.71096754,13.13744074],[-8.1338301,-16.70933191,13.13744074],[-8.1009798,-16.70769628,13.13744074],[-7.8837099,-16.70606066,13.13744074],[-7.8024201,-16.70442503,13.13744074],[-4.7016101,-16.77312139,13.13580511],[-10.0636997,-16.77148577,13.13580511],[-12.5878,-16.76985014,13.13580511],[-12.5979004,-16.76821451,13.13580511],[-13.8225002,-16.76657888,13.13580511],[-15.1029997,-16.76494326,13.13580511],[-14.3494997,-16.76330763,13.13580511],[-13.8613005,-16.761672,13.13580511],[-13.6956997,-16.76003637,13.13580511],[-14.0695,-16.75840074,13.13580511],[-14.5192003,-16.75676512,13.13580511],[-14.5664997,-16.75512949,13.13580511],[-14.2245998,-16.75349386,13.13580511],[-14.3638,-16.75185823,13.13580511],[-14.1358004,-16.75022261,13.13580511],[-12.9778004,-16.74858698,13.13580511],[-11.8381996,-16.74695135,13.13580511],[-12.2841997,-16.74531572,13.13580511],[-12.8915997,-16.7436801,13.13580511],[-13.2179003,-16.74204447,13.13580511],[-12.9790001,-16.74040884,13.13580511],[-12.6728001,-16.73877321,13.13580511],[-12.7350998,-16.73713758,13.13580511],[-12.198,-16.73550196,13.13580511],[-11.2503996,-16.73386633,13.13580511],[-10.9492998,-16.7322307,13.13580511],[-11.059,-16.73059507,13.13580511],[-11.2823,-16.72895945,13.13580511],[-11.1313,-16.72732382,13.13580511],[-9.8776503,-16.72568819,13.13580511],[-8.79533,-16.72405256,13.13580511],[-8.8917999,-16.72241693,13.13580511],[-8.9209499,-16.72078131,13.13580511],[-8.9752998,-16.71914568,13.13580511],[-8.8524799,-16.71751005,13.13580511],[-9.00455,-16.71587442,13.13580511],[-9.4851303,-16.7142388,13.13580511],[-8.8041096,-16.71260317,13.13580511],[-8.22651,-16.71096754,13.13580511],[-7.98314,-16.70933191,13.13580511],[-8.0957899,-16.70769628,13.13580511],[-7.8050199,-16.70606066,13.13580511],[-7.7308202,-16.70442503,13.13580511],[-7.84409,-16.7027894,13.13580511],[-5.2383399,-16.77312139,13.13416948],[-10.2216997,-16.77148577,13.13416948],[-12.4125004,-16.76985014,13.13416948],[-12.7580996,-16.76821451,13.13416948],[-13.8753996,-16.76657888,13.13416948],[-14.9681997,-16.76494326,13.13416948],[-14.4994001,-16.76330763,13.13416948],[-14.0003004,-16.761672,13.13416948],[-13.8154001,-16.76003637,13.13416948],[-14.2755003,-16.75840074,13.13416948],[-14.5818996,-16.75676512,13.13416948],[-14.6325998,-16.75512949,13.13416948],[-14.5661001,-16.75349386,13.13416948],[-14.4475002,-16.75185823,13.13416948],[-14.2728996,-16.75022261,13.13416948],[-13.5242996,-16.74858698,13.13416948],[-12.4745998,-16.74695135,13.13416948],[-12.7496996,-16.74531572,13.13416948],[-13.1754999,-16.7436801,13.13416948],[-13.2075005,-16.74204447,13.13416948],[-12.9717999,-16.74040884,13.13416948],[-12.7323999,-16.73877321,13.13416948],[-12.5930996,-16.73713758,13.13416948],[-12.0186005,-16.73550196,13.13416948],[-11.2730999,-16.73386633,13.13416948],[-10.8100996,-16.7322307,13.13416948],[-10.4977999,-16.73059507,13.13416948],[-10.6396999,-16.72895945,13.13416948],[-10.3802996,-16.72732382,13.13416948],[-9.3617601,-16.72568819,13.13416948],[-8.77215,-16.72405256,13.13416948],[-8.7698097,-16.72241693,13.13416948],[-8.7719498,-16.72078131,13.13416948],[-8.8362999,-16.71914568,13.13416948],[-8.7817898,-16.71751005,13.13416948],[-8.9147902,-16.71587442,13.13416948],[-9.15732,-16.7142388,13.13416948],[-8.8919601,-16.71260317,13.13416948],[-8.5193195,-16.71096754,13.13416948],[-8.3261604,-16.70933191,13.13416948],[-7.9193501,-16.70442503,13.13416948],[-8.0450802,-16.7027894,13.13416948],[-8.1403599,-16.70115377,13.13416948],[-8.4014196,-16.77312139,13.13253385],[-10.8060999,-16.77148577,13.13253385],[-12.0665998,-16.76985014,13.13253385],[-12.7446003,-16.76821451,13.13253385],[-13.9188004,-16.76657888,13.13253385],[-14.6445999,-16.76494326,13.13253385],[-14.4562998,-16.76330763,13.13253385],[-14.0269003,-16.761672,13.13253385],[-13.9605999,-16.76003637,13.13253385],[-14.3851004,-16.75840074,13.13253385],[-14.974,-16.75676512,13.13253385],[-15.1184998,-16.75512949,13.13253385],[-14.9034004,-16.75349386,13.13253385],[-14.9326,-16.75185823,13.13253385],[-14.7353001,-16.75022261,13.13253385],[-14.2945004,-16.74858698,13.13253385],[-14.1357002,-16.74695135,13.13253385],[-13.8353004,-16.74531572,13.13253385],[-13.4857998,-16.7436801,13.13253385],[-13.2694998,-16.74204447,13.13253385],[-13.0281,-16.74040884,13.13253385],[-12.7964001,-16.73877321,13.13253385],[-12.5299997,-16.73713758,13.13253385],[-11.8855,-16.73550196,13.13253385],[-10.8069,-16.73386633,13.13253385],[-10.2952003,-16.7322307,13.13253385],[-9.9289999,-16.73059507,13.13253385],[-9.4046202,-16.72895945,13.13253385],[-9.1267996,-16.72732382,13.13253385],[-8.7269096,-16.72568819,13.13253385],[-8.1875896,-16.72405256,13.13253385],[-8.1304798,-16.72241693,13.13253385],[-8.5585499,-16.72078131,13.13253385],[-8.5721502,-16.71914568,13.13253385],[-8.6466398,-16.71751005,13.13253385],[-8.8703899,-16.71587442,13.13253385],[-9.0752296,-16.7142388,13.13253385],[-9.0109396,-16.71260317,13.13253385],[-9.0412397,-16.71096754,13.13253385],[-11.5121002,-16.77148577,13.13089823],[-12.1865997,-16.76985014,13.13089823],[-12.6588001,-16.76821451,13.13089823],[-14.1118002,-16.76657888,13.13089823],[-15.1420002,-16.76494326,13.13089823],[-14.6514997,-16.76330763,13.13089823],[-13.7981997,-16.761672,13.13089823],[-13.2924995,-16.76003637,13.13089823],[-14.4682999,-16.75840074,13.13089823],[-15.5749998,-16.75676512,13.13089823],[-15.8025999,-16.75512949,13.13089823],[-15.2700996,-16.75349386,13.13089823],[-15.3502998,-16.75185823,13.13089823],[-15.2588997,-16.75022261,13.13089823],[-14.9060001,-16.74858698,13.13089823],[-15.1039,-16.74695135,13.13089823],[-14.6391001,-16.74531572,13.13089823],[-13.7488003,-16.7436801,13.13089823],[-13.2000999,-16.74204447,13.13089823],[-13.1325998,-16.74040884,13.13089823],[-12.7924995,-16.73877321,13.13089823],[-12.6767998,-16.73713758,13.13089823],[-11.7645998,-16.73550196,13.13089823],[-10.3327999,-16.73386633,13.13089823],[-9.9587097,-16.7322307,13.13089823],[-9.47789,-16.73059507,13.13089823],[-8.8321304,-16.72895945,13.13089823],[-8.7302103,-16.72732382,13.13089823],[-8.1374798,-16.72568819,13.13089823],[-7.5747399,-16.72405256,13.13089823],[-7.7606502,-16.72241693,13.13089823],[-8.2575102,-16.72078131,13.13089823],[-8.5502796,-16.71914568,13.13089823],[-8.6281796,-16.71751005,13.13089823],[-8.9750204,-16.71587442,13.13089823],[-9.2945299,-16.7142388,13.13089823],[-9.0705204,-16.71260317,13.13089823],[-9.3620195,-16.71096754,13.13089823],[-11.7075996,-16.77148577,13.1292626],[-12.2117004,-16.76985014,13.1292626],[-12.9007998,-16.76821451,13.1292626],[-14.0559998,-16.76657888,13.1292626],[-14.8107004,-16.76494326,13.1292626],[-14.4636002,-16.76330763,13.1292626],[-13.9266005,-16.761672,13.1292626],[-13.9762001,-16.76003637,13.1292626],[-14.6085997,-16.75840074,13.1292626],[-15.2610998,-16.75676512,13.1292626],[-15.4675999,-16.75512949,13.1292626],[-15.3802996,-16.75349386,13.1292626],[-15.3245001,-16.75185823,13.1292626],[-15.2818003,-16.75022261,13.1292626],[-15.1091003,-16.74858698,13.1292626],[-14.9850998,-16.74695135,13.1292626],[-14.7019997,-16.74531572,13.1292626],[-14.1199999,-16.7436801,13.1292626],[-13.6042004,-16.74204447,13.1292626],[-13.3618002,-16.74040884,13.1292626],[-13.0450001,-16.73877321,13.1292626],[-12.6218004,-16.73713758,13.1292626],[-11.6882,-16.73550196,13.1292626],[-10.6410999,-16.73386633,13.1292626],[-9.9419203,-16.7322307,13.1292626],[-9.00278,-16.73059507,13.1292626],[-8.0606098,-16.72895945,13.1292626],[-7.7454,-16.72732382,13.1292626],[-7.6366701,-16.72568819,13.1292626],[-7.6860299,-16.72405256,13.1292626],[-7.8235302,-16.72241693,13.1292626],[-8.0518398,-16.72078131,13.1292626],[-8.3701897,-16.71914568,13.1292626],[-8.4703102,-16.71751005,13.1292626],[-8.7039804,-16.71587442,13.1292626],[-8.9420404,-16.7142388,13.1292626],[-8.9817305,-16.71260317,13.1292626],[-9.1336603,-16.71096754,13.1292626],[-13.1258001,-16.76821451,13.12762697],[-14.4539003,-16.76657888,13.12762697],[-15.7072001,-16.76494326,13.12762697],[-14.8500996,-16.76330763,13.12762697],[-14.0909996,-16.761672,13.12762697],[-14.0216999,-16.76003637,13.12762697],[-14.7032003,-16.75840074,13.12762697],[-15.2179003,-16.75676512,13.12762697],[-15.3783998,-16.75512949,13.12762697],[-15.3992996,-16.75349386,13.12762697],[-15.6219997,-16.75185823,13.12762697],[-15.5439997,-16.75022261,13.12762697],[-15.2931995,-16.74858698,13.12762697],[-15.2768002,-16.74695135,13.12762697],[-14.9891005,-16.74531572,13.12762697],[-14.4679003,-16.7436801,13.12762697],[-14.2045002,-16.74204447,13.12762697],[-13.7292004,-16.74040884,13.12762697],[-13.2219,-16.73877321,13.12762697],[-13.0705996,-16.73713758,13.12762697],[-11.9417,-16.73550196,13.12762697],[-10.8752003,-16.73386633,13.12762697],[-10.3221998,-16.7322307,13.12762697],[-8.4321203,-16.73059507,13.12762697],[-5.31531,-16.72895945,13.12762697],[-4.84168,-16.72732382,13.12762697],[-6.8748899,-16.72568819,13.12762697],[-7.6694002,-16.72405256,13.12762697],[-7.76689,-16.72241693,13.12762697],[-7.9305501,-16.72078131,13.12762697],[-7.90554,-16.71914568,13.12762697],[-8.1764803,-16.71751005,13.12762697],[-8.4633102,-16.71587442,13.12762697],[-8.5605297,-16.7142388,13.12762697],[-8.7523499,-16.71260317,13.12762697],[-9.0373898,-16.71096754,13.12762697],[-15.0759001,-16.76657888,13.12599134],[-17.3876991,-16.76494326,13.12599134],[-14.8746996,-16.76330763,13.12599134],[-13.8948002,-16.761672,13.12599134],[-13.8486996,-16.76003637,13.12599134],[-14.3648996,-16.75840074,13.12599134],[-15.2831001,-16.75676512,13.12599134],[-15.5333004,-16.75512949,13.12599134],[-15.4171,-16.75349386,13.12599134],[-15.7880001,-16.75185823,13.12599134],[-15.7364998,-16.75022261,13.12599134],[-15.4334002,-16.74858698,13.12599134],[-15.5312996,-16.74695135,13.12599134],[-15.2716999,-16.74531572,13.12599134],[-14.6072998,-16.7436801,13.12599134],[-14.4369001,-16.74204447,13.12599134],[-14.0102997,-16.74040884,13.12599134],[-13.3497,-16.73877321,13.12599134],[-13.4205999,-16.73713758,13.12599134],[-12.1711998,-16.73550196,13.12599134],[-10.8989,-16.73386633,13.12599134],[-10.7508001,-16.7322307,13.12599134],[-8.3566399,-16.73059507,13.12599134],[-3.6965001,-16.72895945,13.12599134],[-3.21668,-16.72732382,13.12599134],[-6.6738701,-16.72568819,13.12599134],[-7.7420301,-16.72405256,13.12599134],[-7.8008699,-16.72241693,13.12599134],[-7.8706598,-16.72078131,13.12599134],[-7.8146,-16.71914568,13.12599134],[-8.03543,-16.71751005,13.12599134],[-8.3573799,-16.71587442,13.12599134],[-8.4681702,-16.7142388,13.12599134],[-8.6054096,-16.71260317,13.12599134],[-9.0354004,-16.71096754,13.12599134],[-12.3769999,-16.76657888,13.12435572],[-13.0234003,-16.76494326,13.12435572],[-12.724,-16.76330763,13.12435572],[-13.1952,-16.761672,13.12435572],[-13.6184998,-16.76003637,13.12435572],[-14.2174997,-16.75840074,13.12435572],[-15.0784998,-16.75676512,13.12435572],[-15.2024002,-16.75512949,13.12435572],[-15.1983995,-16.75349386,13.12435572],[-15.2346001,-16.75185823,13.12435572],[-15.2537003,-16.75022261,13.12435572],[-15.3029003,-16.74858698,13.12435572],[-15.3409996,-16.74695135,13.12435572],[-15.0969,-16.74531572,13.12435572],[-14.5986004,-16.7436801,13.12435572],[-14.1548996,-16.74204447,13.12435572],[-13.6660004,-16.74040884,13.12435572],[-13.2488003,-16.73877321,13.12435572],[-12.6848001,-16.73713758,13.12435572],[-11.6786003,-16.73550196,13.12435572],[-10.8352003,-16.73386633,13.12435572],[-10.0337,-16.7322307,13.12435572],[-8.6288795,-16.73059507,13.12435572],[-6.8677902,-16.72895945,13.12435572],[-6.5854502,-16.72732382,13.12435572],[-7.4897499,-16.72568819,13.12435572],[-8.0207701,-16.72405256,13.12435572],[-8.1405697,-16.72241693,13.12435572],[-8.0693502,-16.72078131,13.12435572],[-8.0171299,-16.71914568,13.12435572],[-8.1257401,-16.71751005,13.12435572],[-8.1133804,-16.71587442,13.12435572],[-8.1002703,-16.7142388,13.12435572],[-8.3865499,-16.71260317,13.12435572],[-8.9137897,-16.71096754,13.12435572],[-5.5055299,-16.76494326,13.12272009],[-9.1788797,-16.76330763,13.12272009],[-12.6015997,-16.761672,13.12272009],[-13.5929003,-16.76003637,13.12272009],[-14.1093998,-16.75840074,13.12272009],[-14.8015003,-16.75676512,13.12272009],[-15.1961002,-16.75512949,13.12272009],[-14.9068003,-16.75349386,13.12272009],[-14.2797003,-16.75185823,13.12272009],[-14.3566999,-16.75022261,13.12272009],[-15.2124004,-16.74858698,13.12272009],[-15.9622002,-16.74695135,13.12272009],[-15.5109997,-16.74531572,13.12272009],[-14.3830996,-16.7436801,13.12272009],[-13.8852997,-16.74204447,13.12272009],[-13.5691004,-16.74040884,13.12272009],[-12.8455,-16.73877321,13.12272009],[-12.5555,-16.73713758,13.12272009],[-11.6672001,-16.73550196,13.12272009],[-10.6197996,-16.73386633,13.12272009],[-10.3367996,-16.7322307,13.12272009],[-9.2004995,-16.73059507,13.12272009],[-8.5423298,-16.72895945,13.12272009],[-8.4435596,-16.72732382,13.12272009],[-8.4420996,-16.72568819,13.12272009],[-9.28158,-16.72405256,13.12272009],[-9.0453501,-16.72241693,13.12272009],[-8.3502598,-16.72078131,13.12272009],[-8.32547,-16.71914568,13.12272009],[-8.2087297,-16.71751005,13.12272009],[-7.6565199,-16.71587442,13.12272009],[-6.9368701,-16.7142388,13.12272009],[-7.8612199,-16.71260317,13.12272009],[-3.45926,-16.76494326,13.12108446],[-7.7803898,-16.76330763,13.12108446],[-12.2805004,-16.761672,13.12108446],[-13.7179003,-16.76003637,13.12108446],[-13.6977997,-16.75840074,13.12108446],[-14.7489004,-16.75676512,13.12108446],[-15.2160997,-16.75512949,13.12108446],[-14.6988001,-16.75349386,13.12108446],[-14.0038004,-16.75185823,13.12108446],[-14.0677004,-16.75022261,13.12108446],[-14.9742002,-16.74858698,13.12108446],[-16.0604992,-16.74695135,13.12108446],[-15.4717999,-16.74531572,13.12108446],[-14.1323996,-16.7436801,13.12108446],[-13.7700005,-16.74204447,13.12108446],[-13.2805996,-16.74040884,13.12108446],[-12.5649996,-16.73877321,13.12108446],[-12.5347996,-16.73713758,13.12108446],[-11.4933004,-16.73550196,13.12108446],[-10.3971004,-16.73386633,13.12108446],[-10.3003998,-16.7322307,13.12108446],[-9.2828102,-16.73059507,13.12108446],[-8.7263603,-16.72895945,13.12108446],[-8.6218395,-16.72732382,13.12108446],[-8.5254698,-16.72078131,13.12108446],[-8.3214397,-16.71914568,13.12108446],[-8.1863804,-16.71751005,13.12108446],[-6.7811599,-16.76494326,13.11944883],[-8.7674103,-16.76330763,13.11944883],[-11.3642998,-16.761672,13.11944883],[-12.5908003,-16.76003637,13.11944883],[-13.3086004,-16.75840074,13.11944883],[-14.1007996,-16.75676512,13.11944883],[-14.7233,-16.75512949,13.11944883],[-14.5529003,-16.75349386,13.11944883],[-14.3022003,-16.75185823,13.11944883],[-14.2588997,-16.75022261,13.11944883],[-14.5874004,-16.74858698,13.11944883],[-14.7102003,-16.74695135,13.11944883],[-14.3748999,-16.74531572,13.11944883],[-13.7306004,-16.7436801,13.11944883],[-13.1833,-16.74204447,13.11944883],[-12.5479002,-16.74040884,13.11944883],[-11.9048996,-16.73877321,13.11944883],[-11.2334995,-16.73713758,13.11944883],[-10.5031004,-16.73550196,13.11944883],[-9.5505896,-16.73386633,13.11944883],[-8.7509203,-16.7322307,13.11944883],[-8.6254396,-16.73059507,13.11944883],[-8.5119896,-16.72895945,13.11944883],[-8.3840904,-16.72732382,13.11944883],[-5.3958802,-16.76494326,13.1178132],[-8.0051098,-16.76330763,13.1178132],[-11.4448004,-16.761672,13.1178132],[-12.4882002,-16.76003637,13.1178132],[-12.9568005,-16.75840074,13.1178132],[-14.4518003,-16.75676512,13.1178132],[-14.9884996,-16.75512949,13.1178132],[-14.4378996,-16.75349386,13.1178132],[-14.0015001,-16.75185823,13.1178132],[-14.0022001,-16.75022261,13.1178132],[-14.1625004,-16.74858698,13.1178132],[-14.5300999,-16.74695135,13.1178132],[-14.1684999,-16.74531572,13.1178132],[-13.1299,-16.7436801,13.1178132],[-12.7584,-16.74204447,13.1178132],[-12.2482004,-16.74040884,13.1178132],[-11.0774002,-16.73877321,13.1178132],[-10.5232,-16.73713758,13.1178132],[-9.9063702,-16.73550196,13.1178132],[-7.9853201,-16.73386633,13.1178132],[-6.8187699,-16.7322307,13.1178132],[-8.1336403,-16.73059507,13.1178132],[-8.2567196,-16.72895945,13.1178132],[-8.2078304,-16.72732382,13.1178132],[-8.57798,-16.72568819,13.1178132],[-5.85287,-16.76494326,13.11617758],[-8.2573605,-16.76330763,13.11617758],[-11.2091999,-16.761672,13.11617758],[-12.3862,-16.76003637,13.11617758],[-13.0995998,-16.75840074,13.11617758],[-14.3212996,-16.75676512,13.11617758],[-14.7077999,-16.75512949,13.11617758],[-14.0656996,-16.75349386,13.11617758],[-13.8621998,-16.75185823,13.11617758],[-13.7902002,-16.75022261,13.11617758],[-13.6526003,-16.74858698,13.11617758],[-14.0797005,-16.74695135,13.11617758],[-13.5709,-16.74531572,13.11617758],[-12.5002003,-16.7436801,13.11617758],[-12.3830996,-16.74204447,13.11617758],[-11.6083002,-16.74040884,13.11617758],[-10.6117001,-16.73877321,13.11617758],[-10.2308998,-16.73713758,13.11617758],[-9.5248203,-16.73550196,13.11617758],[-8.1406803,-16.73386633,13.11617758],[-7.3916602,-16.7322307,13.11617758],[-8.0660896,-16.73059507,13.11617758],[-8.3254499,-16.72895945,13.11617758],[-8.3010101,-16.72732382,13.11617758],[-8.4473104,-16.72568819,13.11617758],[-8.7005396,-16.72405256,13.11617758],[-7.9000401,-16.76494326,13.11454195],[-9.2374201,-16.76330763,13.11454195],[-11.2371998,-16.761672,13.11454195],[-12.3129997,-16.76003637,13.11454195],[-13.0822001,-16.75840074,13.11454195],[-13.5949001,-16.75676512,13.11454195],[-13.9191999,-16.75512949,13.11454195],[-13.7145004,-16.75349386,13.11454195],[-13.4137001,-16.75185823,13.11454195],[-13.2330999,-16.75022261,13.11454195],[-13.0630999,-16.74858698,13.11454195],[-12.6781998,-16.74695135,13.11454195],[-12.3023996,-16.74531572,13.11454195],[-11.4647999,-16.7436801,13.11454195],[-10.5038004,-16.74204447,13.11454195],[-10.1793003,-16.74040884,13.11454195],[-9.8367796,-16.73877321,13.11454195],[-9.38554,-16.73713758,13.11454195],[-9.1353397,-16.73550196,13.11454195],[-8.2449703,-16.72732382,13.11454195],[-8.1057701,-16.72568819,13.11454195],[-7.7880402,-16.72405256,13.11454195],[-7.5169601,-16.76494326,13.11290632],[-8.9820805,-16.76330763,13.11290632],[-11.9727001,-16.761672,13.11290632],[-13.4547997,-16.76003637,13.11290632],[-12.8900003,-16.75840074,13.11290632],[-13.6002998,-16.75676512,13.11290632],[-13.8705997,-16.75512949,13.11290632],[-13.3327999,-16.75349386,13.11290632],[-13.0911999,-16.75185823,13.11290632],[-13.0002003,-16.75022261,13.11290632],[-12.4174004,-16.74858698,13.11290632],[-12.191,-16.74695135,13.11290632],[-11.9038,-16.74531572,13.11290632],[-10.3256998,-16.7436801,13.11290632],[-8.8028803,-16.74204447,13.11290632],[-9.2887001,-16.74040884,13.11290632],[-9.1626997,-16.73877321,13.11290632],[-8.7067404,-16.73713758,13.11290632],[-7.8296599,-16.72568819,13.11290632],[-6.9776402,-16.72405256,13.11290632],[-7.1457,-16.72241693,13.11290632],[-7.8894601,-16.76494326,13.11127069],[-9.1736603,-16.76330763,13.11127069],[-11.4338999,-16.761672,13.11127069],[-12.5352001,-16.76003637,13.11127069],[-12.6767998,-16.75840074,13.11127069],[-13.1721001,-16.75676512,13.11127069],[-13.2622995,-16.75512949,13.11127069],[-12.6645002,-16.75349386,13.11127069],[-12.5438995,-16.75185823,13.11127069],[-12.2553997,-16.75022261,13.11127069],[-11.5550003,-16.74858698,13.11127069],[-11.5145998,-16.74695135,13.11127069],[-11.0361996,-16.74531572,13.11127069],[-9.8677502,-16.7436801,13.11127069],[-9.1350698,-16.74204447,13.11127069],[-9.1352901,-16.74040884,13.11127069],[-8.8833504,-16.73877321,13.11127069],[-8.7458296,-16.73713758,13.11127069],[-8.0248003,-16.72568819,13.11127069],[-7.70403,-16.72405256,13.11127069],[-7.80896,-16.72241693,13.11127069],[-7.3101501,-16.76657888,13.10963507],[-7.5580902,-16.76494326,13.10963507],[-8.7927799,-16.76330763,13.10963507],[-11.0232,-16.761672,13.10963507],[-11.9473,-16.76003637,13.10963507],[-12.2704,-16.75840074,13.10963507],[-12.3916998,-16.75676512,13.10963507],[-12.4158001,-16.75512949,13.10963507],[-11.9510002,-16.75349386,13.10963507],[-11.0572004,-16.75185823,13.10963507],[-10.7777996,-16.75022261,13.10963507],[-10.6730003,-16.74858698,13.10963507],[-10.2264004,-16.74695135,13.10963507],[-9.9360399,-16.74531572,13.10963507],[-9.3436203,-16.7436801,13.10963507],[-8.6263905,-16.74204447,13.10963507],[-8.6123695,-16.74040884,13.10963507],[-8.68223,-16.73877321,13.10963507],[-8.4751301,-16.73713758,13.10963507],[-8.9853001,-16.72405256,13.10963507],[-6.7835698,-16.76657888,13.10799944],[-6.53897,-16.76494326,13.10799944],[-8.0398102,-16.76330763,13.10799944],[-11.0882998,-16.761672,13.10799944],[-12.5665998,-16.76003637,13.10799944],[-11.7823,-16.75840074,13.10799944],[-12.0682001,-16.75676512,13.10799944],[-12.4617996,-16.75512949,13.10799944],[-11.2346001,-16.75349386,13.10799944],[-10.2697001,-16.75185823,13.10799944],[-10.1477003,-16.75022261,13.10799944],[-9.8330202,-16.74858698,13.10799944],[-9.89849,-16.74695135,13.10799944],[-9.5879297,-16.74531572,13.10799944],[-8.6970396,-16.7436801,13.10799944],[-8.06217,-16.74204447,13.10799944],[-8.2266903,-16.74040884,13.10799944],[-8.4280396,-16.73877321,13.10799944],[-8.3151999,-16.73713758,13.10799944],[-6.35215,-16.76657888,13.10636381],[-7.0029302,-16.76494326,13.10636381],[-8.0383596,-16.76330763,13.10636381],[-10.0655003,-16.761672,13.10636381],[-11.0775995,-16.76003637,13.10636381],[-10.9302998,-16.75840074,13.10636381],[-10.9343004,-16.75676512,13.10636381],[-10.9942999,-16.75512949,13.10636381],[-10.0552998,-16.75349386,13.10636381],[-9.4755602,-16.75185823,13.10636381],[-9.2514696,-16.75022261,13.10636381],[-8.8549204,-16.74858698,13.10636381],[-8.7960501,-16.74695135,13.10636381],[-8.58251,-16.74531572,13.10636381],[-8.2414999,-16.7436801,13.10636381],[-8.18151,-16.74204447,13.10636381],[-8.2653799,-16.74040884,13.10636381],[-8.40662,-16.73877321,13.10636381],[-5.5171399,-16.76657888,13.10472818],[-6.4784799,-16.76494326,13.10472818],[-7.5536098,-16.76330763,13.10472818],[-9.4985399,-16.761672,13.10472818],[-10.5861998,-16.76003637,13.10472818],[-10.2593002,-16.75840074,13.10472818],[-9.7518301,-16.75676512,13.10472818],[-9.4710398,-16.75512949,13.10472818],[-8.9825401,-16.75349386,13.10472818],[-7.59197,-16.75185823,13.10472818],[-7.2997198,-16.75022261,13.10472818],[-7.7381501,-16.74858698,13.10472818],[-6.82024,-16.74695135,13.10472818],[-7.0314298,-16.74531572,13.10472818],[-7.7308898,-16.7436801,13.10472818],[-7.7160401,-16.74204447,13.10472818],[-7.9963102,-16.74040884,13.10472818],[-8.5775003,-16.73877321,13.10472818],[-9.0367098,-16.73713758,13.10472818],[-5.2157502,-16.76657888,13.10309255],[-6.1489,-16.76494326,13.10309255],[-6.90061,-16.76330763,13.10309255],[-9.2739801,-16.761672,13.10309255],[-10.8141003,-16.76003637,13.10309255],[-9.5440502,-16.75840074,13.10309255],[-9.1098404,-16.75676512,13.10309255],[-9.1895599,-16.75512949,13.10309255],[-8.1891804,-16.75349386,13.10309255],[-6.8674202,-16.75185823,13.10309255],[-6.73455,-16.75022261,13.10309255],[-7.0324898,-16.74858698,13.10309255],[-6.3177099,-16.74695135,13.10309255],[-6.6914902,-16.74531572,13.10309255],[-7.5160398,-16.7436801,13.10309255],[-7.6075702,-16.74204447,13.10309255],[-7.9256601,-16.74040884,13.10309255],[-8.7401695,-16.73877321,13.10309255],[-9.2312098,-16.73713758,13.10309255],[-8.7781601,-16.73550196,13.10309255],[-3.4743199,-16.76821451,13.10145693],[-5.12606,-16.76657888,13.10145693],[-6.13413,-16.76494326,13.10145693],[-6.8736401,-16.76330763,13.10145693],[-7.8972702,-16.761672,13.10145693],[-8.7926702,-16.76003637,13.10145693],[-8.4723396,-16.75840074,13.10145693],[-7.8392601,-16.75676512,13.10145693],[-7.6202798,-16.75512949,13.10145693],[-7.30444,-16.75349386,13.10145693],[-7.0201001,-16.75185823,13.10145693],[-7.1055799,-16.75022261,13.10145693],[-7.2624602,-16.74858698,13.10145693],[-7.5056801,-16.74695135,13.10145693],[-7.64925,-16.74531572,13.10145693],[-7.7983999,-16.7436801,13.10145693],[-7.9688201,-16.74204447,13.10145693],[-8.1391802,-16.74040884,13.10145693],[-8.8408298,-16.73877321,13.10145693],[-9.2556896,-16.73713758,13.10145693],[-8.8677597,-16.73550196,13.10145693],[-8.0762396,-16.73386633,13.10145693],[-3.0681801,-16.76821451,13.0998213],[-5.14363,-16.76657888,13.0998213],[-6.4296999,-16.76494326,13.0998213],[-6.4868498,-16.76330763,13.0998213],[-7.3989201,-16.761672,13.0998213],[-7.71909,-16.76003637,13.0998213],[-7.4050498,-16.75840074,13.0998213],[-5.8871799,-16.75676512,13.0998213],[-4.9542298,-16.75512949,13.0998213],[-6.4110999,-16.75349386,13.0998213],[-6.5559402,-16.75185823,13.0998213],[-6.5547199,-16.75022261,13.0998213],[-7.5309,-16.74858698,13.0998213],[-8.3056898,-16.74695135,13.0998213],[-8.3220501,-16.74531572,13.0998213],[-7.9762101,-16.7436801,13.0998213],[-7.17662,-16.74204447,13.0998213],[-7.93361,-16.74040884,13.0998213],[-9.3910198,-16.73877321,13.0998213],[-10.5169001,-16.73713758,13.0998213],[-9.3727303,-16.73550196,13.0998213],[-7.42519,-16.73386633,13.0998213],[-6.2863898,-16.7322307,13.0998213],[-3.1157701,-16.76821451,13.09818567],[-5.0555,-16.76657888,13.09818567],[-6.2920299,-16.76494326,13.09818567],[-6.2649798,-16.76330763,13.09818567],[-7.0741301,-16.761672,13.09818567],[-7.6059299,-16.76003637,13.09818567],[-7.1171598,-16.75840074,13.09818567],[-5.8532,-16.75676512,13.09818567],[-5.1772599,-16.75512949,13.09818567],[-6.5601802,-16.75349386,13.09818567],[-6.7003198,-16.75185823,13.09818567],[-6.83881,-16.75022261,13.09818567],[-7.9965601,-16.74858698,13.09818567],[-8.53162,-16.74695135,13.09818567],[-8.69312,-16.74531572,13.09818567],[-8.5989599,-16.7436801,13.09818567],[-7.71176,-16.74204447,13.09818567],[-8.4215803,-16.74040884,13.09818567],[-9.7354403,-16.73877321,13.09818567],[-10.3322001,-16.73713758,13.09818567],[-9.5312204,-16.73550196,13.09818567],[-7.9232302,-16.73386633,13.09818567],[-6.9465098,-16.7322307,13.09818567],[-8.1065502,-16.73059507,13.09818567],[-8.8625803,-16.72895945,13.09818567],[-3.71473,-16.76821451,13.09655004],[-4.5297399,-16.76657888,13.09655004],[-4.96315,-16.76494326,13.09655004],[-5.6675901,-16.76330763,13.09655004],[-6.6599798,-16.761672,13.09655004],[-7.4453201,-16.76003637,13.09655004],[-7.3297701,-16.75840074,13.09655004],[-7.0633998,-16.75676512,13.09655004],[-7.1687698,-16.75512949,13.09655004],[-7.42592,-16.75349386,13.09655004],[-7.74722,-16.75185823,13.09655004],[-8.0260696,-16.75022261,13.09655004],[-8.8278599,-16.74858698,13.09655004],[-9.9693899,-16.74695135,13.09655004],[-10.1071997,-16.74531572,13.09655004],[-9.7416697,-16.7436801,13.09655004],[-9.8902302,-16.74204447,13.09655004],[-9.8888798,-16.74040884,13.09655004],[-10.2444,-16.73877321,13.09655004],[-10.4441996,-16.73713758,13.09655004],[-9.8647604,-16.73550196,13.09655004],[-8.9744501,-16.73386633,13.09655004],[-8.6552896,-16.7322307,13.09655004],[-8.7550001,-16.73059507,13.09655004],[-9.05301,-16.72895945,13.09655004],[-9.1942396,-16.72732382,13.09655004],[-2.81903,-16.76985014,13.09491442],[-3.30406,-16.76821451,13.09491442],[-4.1146402,-16.76657888,13.09491442],[-3.55073,-16.76494326,13.09491442],[-4.7408299,-16.76330763,13.09491442],[-6.95962,-16.761672,13.09491442],[-8.2434998,-16.76003637,13.09491442],[-7.5613799,-16.75840074,13.09491442],[-7.7804599,-16.75676512,13.09491442],[-8.0931597,-16.75512949,13.09491442],[-8.0235205,-16.75349386,13.09491442],[-8.0530701,-16.75185823,13.09491442],[-8.11409,-16.75022261,13.09491442],[-9.71035,-16.74858698,13.09491442],[-11.8991003,-16.74695135,13.09491442],[-11.6606998,-16.74531572,13.09491442],[-10.7609997,-16.7436801,13.09491442],[-10.8963003,-16.74204447,13.09491442],[-10.691,-16.74040884,13.09491442],[-10.9028997,-16.73877321,13.09491442],[-11.6576004,-16.73713758,13.09491442],[-10.5571003,-16.73550196,13.09491442],[-9.2641897,-16.73386633,13.09491442],[-8.9231396,-16.7322307,13.09491442],[-9.0408201,-16.73059507,13.09491442],[-9.3059502,-16.72895945,13.09491442],[-3.60905,-16.76985014,13.09327879],[-4.0116301,-16.76821451,13.09327879],[-4.5978899,-16.76657888,13.09327879],[-4.2546201,-16.76494326,13.09327879],[-5.0690598,-16.76330763,13.09327879],[-6.6385798,-16.761672,13.09327879],[-7.4855099,-16.76003637,13.09327879],[-7.4022002,-16.75840074,13.09327879],[-7.7214298,-16.75676512,13.09327879],[-8.0598497,-16.75512949,13.09327879],[-8.3273802,-16.75349386,13.09327879],[-8.5519104,-16.75185823,13.09327879],[-8.7627802,-16.75022261,13.09327879],[-10.0172005,-16.74858698,13.09327879],[-11.1753998,-16.74695135,13.09327879],[-11.2614002,-16.74531572,13.09327879],[-10.8865004,-16.7436801,13.09327879],[-10.8025999,-16.74204447,13.09327879],[-10.7964001,-16.74040884,13.09327879],[-10.9141998,-16.73877321,13.09327879],[-10.9672003,-16.73713758,13.09327879],[-10.3371,-16.73550196,13.09327879],[-9.4881897,-16.73386633,13.09327879],[-6.24998,-16.76985014,13.09164316],[-5.9759202,-16.76821451,13.09164316],[-5.4734802,-16.76657888,13.09164316],[-5.36339,-16.76494326,13.09164316],[-5.6625199,-16.76330763,13.09164316],[-5.9079499,-16.761672,13.09164316],[-5.8978901,-16.76003637,13.09164316],[-6.7686801,-16.75840074,13.09164316],[-7.8178802,-16.75676512,13.09164316],[-8.2500296,-16.75512949,13.09164316],[-8.7798996,-16.75349386,13.09164316],[-9.6286697,-16.75185823,13.09164316],[-10.1871004,-16.75022261,13.09164316],[-10.3875999,-16.74858698,13.09164316],[-11.1815996,-16.74695135,13.09164316],[-11.2306995,-16.74531572,13.09164316],[-10.9125004,-16.7436801,13.09164316],[-10.7996998,-16.74204447,13.09164316],[-10.7337999,-16.74040884,13.09164316],[-10.9073,-16.73877321,13.09164316],[-11.0029001,-16.73713758,13.09164316],[-10.4091997,-16.73550196,13.09164316],[-7.8734102,-16.76985014,13.09000753],[-7.27704,-16.76821451,13.09000753],[-5.9410901,-16.76657888,13.09000753],[-5.5019598,-16.76494326,13.09000753],[-5.69947,-16.76330763,13.09000753],[-5.5075102,-16.761672,13.09000753],[-4.6616998,-16.76003637,13.09000753],[-6.2874899,-16.75840074,13.09000753],[-8.0820799,-16.75676512,13.09000753],[-8.6869497,-16.75512949,13.09000753],[-8.9541597,-16.75349386,13.09000753],[-10.6647997,-16.75185823,13.09000753],[-11.1492004,-16.75022261,13.09000753],[-10.5284996,-16.74858698,13.09000753],[-11.9497004,-16.74695135,13.09000753],[-11.7158003,-16.74531572,13.09000753],[-10.7358999,-16.7436801,13.09000753],[-10.9695997,-16.74204447,13.09000753],[-10.7489996,-16.74040884,13.09000753],[-10.8346004,-16.73877321,13.09000753],[-11.8283997,-16.73713758,13.09000753],[-10.6455002,-16.73550196,13.09000753],[-9.2038603,-16.73386633,13.09000753],[-7.0822701,-16.76985014,13.08837191],[-6.8235302,-16.76821451,13.08837191],[-6.2138,-16.76657888,13.08837191],[-5.8906102,-16.76494326,13.08837191],[-6.0184002,-16.76330763,13.08837191],[-5.9119701,-16.761672,13.08837191],[-5.73877,-16.76003637,13.08837191],[-6.52033,-16.75840074,13.08837191],[-7.41922,-16.75676512,13.08837191],[-7.9010401,-16.75512949,13.08837191],[-8.2617798,-16.75349386,13.08837191],[-9.14569,-16.75185823,13.08837191],[-9.5802002,-16.75022261,13.08837191],[-9.4154196,-16.74858698,13.08837191],[-9.9172001,-16.74695135,13.08837191],[-10.0829,-16.74531572,13.08837191],[-10.0052996,-16.7436801,13.08837191],[-10.3556004,-16.74204447,13.08837191],[-10.1674004,-16.74040884,13.08837191],[-9.9339504,-16.73877321,13.08837191],[-9.9980602,-16.73713758,13.08837191],[-9.6638803,-16.73550196,13.08837191],[-9.2439203,-16.73386633,13.08837191],[-6.6068201,-16.76985014,13.08673628],[-6.5392799,-16.76821451,13.08673628],[-6.4565701,-16.76657888,13.08673628],[-6.5497899,-16.76494326,13.08673628],[-6.4252601,-16.76330763,13.08673628],[-6.4702902,-16.761672,13.08673628],[-6.7303801,-16.76003637,13.08673628],[-6.7339401,-16.75840074,13.08673628],[-6.9351101,-16.75676512,13.08673628],[-7.01266,-16.75512949,13.08673628],[-7.4728098,-16.75349386,13.08673628],[-7.53089,-16.75185823,13.08673628],[-7.5509501,-16.75022261,13.08673628],[-7.88412,-16.74858698,13.08673628],[-6.7182498,-16.74695135,13.08673628],[-7.0976,-16.74531572,13.08673628],[-9.1003704,-16.7436801,13.08673628],[-9.9053602,-16.74204447,13.08673628],[-9.7378998,-16.74040884,13.08673628],[-8.5921202,-16.73877321,13.08673628],[-7.00598,-16.73713758,13.08673628],[-8.1285295,-16.73550196,13.08673628],[-9.1350203,-16.73386633,13.08673628],[-9.4071398,-16.7322307,13.08673628],[-6.63412,-16.76985014,13.08510065],[-6.5742502,-16.76821451,13.08510065],[-6.5222502,-16.76657888,13.08510065],[-6.8252101,-16.76494326,13.08510065],[-6.54039,-16.76330763,13.08510065],[-6.4541502,-16.761672,13.08510065],[-7.0919099,-16.76003637,13.08510065],[-6.4099698,-16.75840074,13.08510065],[-6.62819,-16.75676512,13.08510065],[-6.8524299,-16.75512949,13.08510065],[-6.9302802,-16.75349386,13.08510065],[-6.9479198,-16.75185823,13.08510065],[-6.9844298,-16.75022261,13.08510065],[-7.1511798,-16.74858698,13.08510065],[-5.6361198,-16.74695135,13.08510065],[-6.0940299,-16.74531572,13.08510065],[-8.5837402,-16.7436801,13.08510065],[-9.9948997,-16.74204447,13.08510065],[-9.62819,-16.74040884,13.08510065],[-8.0698605,-16.73877321,13.08510065],[-6.1012101,-16.73713758,13.08510065],[-7.7337198,-16.73550196,13.08510065],[-9.1167002,-16.73386633,13.08510065],[-9.4876204,-16.7322307,13.08510065],[-9.1679201,-16.73059507,13.08510065],[-6.44664,-16.76985014,13.08346502],[-6.41783,-16.76821451,13.08346502],[-6.4124699,-16.76657888,13.08346502],[-6.4608798,-16.76494326,13.08346502],[-6.1041298,-16.76330763,13.08346502],[-5.5353098,-16.761672,13.08346502],[-5.2934098,-16.76003637,13.08346502],[-5.3814702,-16.75840074,13.08346502],[-5.6794,-16.75676512,13.08346502],[-5.9559999,-16.75512949,13.08346502],[-6.2125602,-16.75349386,13.08346502],[-6.33074,-16.75185823,13.08346502],[-6.7355399,-16.75022261,13.08346502],[-7.2201099,-16.74858698,13.08346502],[-7.5031199,-16.74695135,13.08346502],[-7.8231902,-16.74531572,13.08346502],[-8.6164503,-16.7436801,13.08346502],[-9.30089,-16.74204447,13.08346502],[-9.1969299,-16.74040884,13.08346502],[-8.9196196,-16.73877321,13.08346502],[-8.8369303,-16.73713758,13.08346502],[-8.9507399,-16.73550196,13.08346502],[-9.2166004,-16.73386633,13.08346502],[-9.2827597,-16.7322307,13.08346502],[-8.9572001,-16.73059507,13.08346502],[-6.2171898,-16.77148577,13.08182939],[-6.4719,-16.76985014,13.08182939],[-6.4194002,-16.76821451,13.08182939],[-6.4809299,-16.76657888,13.08182939],[-7.1640601,-16.76494326,13.08182939],[-6.2725701,-16.76330763,13.08182939],[-4.2206502,-16.761672,13.08182939],[-2.6607201,-16.76003637,13.08182939],[-3.8901801,-16.75840074,13.08182939],[-5.0235801,-16.75676512,13.08182939],[-5.27496,-16.75512949,13.08182939],[-5.4261398,-16.75349386,13.08182939],[-5.82515,-16.75185823,13.08182939],[-5.9492998,-16.75022261,13.08182939],[-7.3453698,-16.74858698,13.08182939],[-8.6694603,-16.74695135,13.08182939],[-8.8345203,-16.74531572,13.08182939],[-8.7735004,-16.7436801,13.08182939],[-9.15872,-16.74204447,13.08182939],[-9.19491,-16.74040884,13.08182939],[-9.68783,-16.73877321,13.08182939],[-10.7643003,-16.73713758,13.08182939],[-9.9494896,-16.73550196,13.08182939],[-9.5275698,-16.73386633,13.08182939],[-9.5701799,-16.7322307,13.08182939],[-8.9477997,-16.73059507,13.08182939],[-6.0583801,-16.77148577,13.08019377],[-6.4391398,-16.76985014,13.08019377],[-6.3052502,-16.76821451,13.08019377],[-6.25488,-16.76657888,13.08019377],[-7.1110401,-16.76494326,13.08019377],[-5.9826698,-16.76330763,13.08019377],[-3.8276501,-16.761672,13.08019377],[-2.4530301,-16.76003637,13.08019377],[-3.4647901,-16.75840074,13.08019377],[-4.5767102,-16.75676512,13.08019377],[-5.0995402,-16.75512949,13.08019377],[-5.17415,-16.75349386,13.08019377],[-5.5465202,-16.75185823,13.08019377],[-5.82409,-16.75022261,13.08019377],[-7.1372399,-16.74858698,13.08019377],[-8.6346598,-16.74695135,13.08019377],[-8.8414001,-16.74531572,13.08019377],[-8.7573099,-16.7436801,13.08019377],[-9.0576601,-16.74204447,13.08019377],[-9.1790504,-16.74040884,13.08019377],[-9.6452999,-16.73877321,13.08019377],[-10.5338001,-16.73713758,13.08019377],[-9.9921398,-16.73550196,13.08019377],[-9.57833,-16.73386633,13.08019377],[-9.5602798,-16.7322307,13.08019377],[-9.1011696,-16.73059507,13.08019377],[-5.5999398,-16.77148577,13.07855814],[-5.5529599,-16.76985014,13.07855814],[-5.46982,-16.76821451,13.07855814],[-5.2131,-16.76657888,13.07855814],[-4.9303899,-16.76494326,13.07855814],[-4.5330501,-16.76330763,13.07855814],[-3.59694,-16.761672,13.07855814],[-2.9093399,-16.76003637,13.07855814],[-3.2246499,-16.75840074,13.07855814],[-3.6319799,-16.75676512,13.07855814],[-3.9120901,-16.75512949,13.07855814],[-4.6024299,-16.75349386,13.07855814],[-5.2721801,-16.75185823,13.07855814],[-5.8977299,-16.75022261,13.07855814],[-7.2284498,-16.74858698,13.07855814],[-8.5922098,-16.74695135,13.07855814],[-9.00212,-16.74531572,13.07855814],[-8.7880898,-16.7436801,13.07855814],[-8.7154303,-16.74204447,13.07855814],[-8.8285103,-16.74040884,13.07855814],[-9.0187798,-16.73877321,13.07855814],[-9.1061897,-16.73713758,13.07855814],[-9.3138704,-16.73550196,13.07855814],[-9.7609196,-16.73386633,13.07855814],[-10.0368996,-16.7322307,13.07855814],[-4.3674998,-16.76657888,13.07692251],[-3.33395,-16.76494326,13.07692251],[-3.5613101,-16.76330763,13.07692251],[-2.74928,-16.761672,13.07692251],[-1.46732,-16.76003637,13.07692251],[-2.44928,-16.75840074,13.07692251],[-2.7464299,-16.75676512,13.07692251],[-2.1682,-16.75512949,13.07692251],[-3.8487501,-16.75349386,13.07692251],[-4.9732399,-16.75185823,13.07692251],[-5.1168299,-16.75022261,13.07692251],[-7.2747898,-16.74858698,13.07692251],[-10.0677004,-16.74695135,13.07692251],[-10.1341,-16.74531572,13.07692251],[-8.8779697,-16.7436801,13.07692251],[-8.35569,-16.74204447,13.07692251],[-8.48351,-16.74040884,13.07692251],[-8.5900898,-16.73877321,13.07692251],[-7.8152699,-16.73713758,13.07692251],[-8.67138,-16.73550196,13.07692251],[-10.2251997,-16.73386633,13.07692251],[-11.1578999,-16.7322307,13.07692251],[-2.5050099,-16.75840074,13.07528688],[-2.8262801,-16.75676512,13.07528688],[-2.6877999,-16.75512949,13.07528688],[-3.88781,-16.75349386,13.07528688],[-4.9678302,-16.75185823,13.07528688],[-5.4026098,-16.75022261,13.07528688],[-7.1300502,-16.74858698,13.07528688],[-9.3730497,-16.74695135,13.07528688],[-9.6006699,-16.74531572,13.07528688],[-8.8554897,-16.7436801,13.07528688],[-8.5246201,-16.74204447,13.07528688],[-8.5286102,-16.74040884,13.07528688],[-8.5672197,-16.73877321,13.07528688],[-8.2731504,-16.73713758,13.07528688],[-8.8446398,-16.73550196,13.07528688],[-10.0099001,-16.73386633,13.07528688],[-3.61799,-16.75512949,13.07365126],[-4.2877798,-16.75349386,13.07365126],[-5.1886201,-16.75185823,13.07365126],[-5.8343,-16.75022261,13.07365126],[-6.98136,-16.74858698,13.07365126],[-8.2339401,-16.74695135,13.07365126],[-8.6539698,-16.74531572,13.07365126],[-8.6674604,-16.7436801,13.07365126],[-5.2497401,-16.75185823,13.07201563],[-6.02106,-16.75022261,13.07201563],[-6.8002601,-16.74858698,13.07201563],[-7.5511599,-16.74695135,13.07201563],[-8.1890497,-16.74531572,13.07201563],[-16.4713993,-16.60301611,13.27974035],[-15.6610003,-16.60138048,13.27974035],[-14.8274002,-16.59974485,13.27974035],[-18.5512009,-16.60301611,13.27810472],[-17.2966003,-16.60138048,13.27810472],[-20.2658997,-16.60301611,13.2764691],[-18.2558994,-16.60138048,13.2764691],[-20.7535992,-16.60301611,13.27483347],[-6.0407801,-16.75022261,13.07038],[-6.6571202,-16.74858698,13.07038],[-7.2558198,-16.74695135,13.07038],[-7.9376702,-16.74531572,13.07038],[-5.88449,-16.75022261,13.06874437],[-6.6075301,-16.74858698,13.06874437],[-7.3378701,-16.74695135,13.06874437],[-6.54107,-16.74858698,13.06710874],[-7.2548399,-16.74695135,13.06710874]],"fields":[{"name":"Groundwater Level (m)","type":"real","format":"","analyzerType":"FLOAT"},{"name":"Longitude","type":"real","format":"","analyzerType":"FLOAT"},{"name":"Latitude","type":"real","format":"","analyzerType":"FLOAT"}]}}];
const config = {"version":"v1","config":{"visState":{"filters":[],"layers":[{"id":"cs3wetb","type":"grid","config":{"dataId":"qg9h4e","label":"3D Grid Layer","color":[18,147,154],"highlightColor":[252,242,26,255],"columns":{"lat":"Latitude","lng":"Longitude"},"isVisible":true,"visConfig":{"opacity":0.85,"worldUnitSize":0.182,"colorRange":{"name":"ColorBrewer RdYlGn-10","type":"diverging","category":"ColorBrewer","colors":["#a50026","#d73027","#f46d43","#fdae61","#fee08b","#d9ef8b","#a6d96a","#66bd63","#1a9850","#006837"]},"coverage":1,"sizeRange":[0,500],"percentile":[0,100],"elevationPercentile":[0,100],"elevationScale":20,"enableElevationZoomFactor":true,"colorAggregation":"average","sizeAggregation":"average","enable3d":true},"hidden":false,"textLabel":[{"field":null,"color":[255,255,255],"size":4,"offset":[0,0],"anchor":"start","alignment":"center","outlineWidth":0,"outlineColor":[255,0,0,255],"background":false,"backgroundColor":[0,0,200,255]}]},"visualChannels":{"colorField":{"name":"Groundwater Level (m)","type":"real"},"colorScale":"quantile","sizeField":{"name":"Groundwater Level (m)","type":"real"},"sizeScale":"linear"}},{"id":"0xhrsg9","type":"grid","config":{"dataId":"qg9h4e","label":"Grid Layer","color":[18,147,154],"highlightColor":[252,242,26,255],"columns":{"lat":"Latitude","lng":"Longitude"},"isVisible":true,"visConfig":{"opacity":0.3,"worldUnitSize":0.182,"colorRange":{"name":"ColorBrewer RdYlGn-10","type":"diverging","category":"ColorBrewer","colors":["#a50026","#d73027","#f46d43","#fdae61","#fee08b","#d9ef8b","#a6d96a","#66bd63","#1a9850","#006837"]},"coverage":1,"sizeRange":[0,500],"percentile":[0,100],"elevationPercentile":[0,100],"elevationScale":1,"enableElevationZoomFactor":true,"colorAggregation":"average","sizeAggregation":"count","enable3d":false},"hidden":false,"textLabel":[{"field":null,"color":[255,255,255],"size":4,"offset":[0,0],"anchor":"start","alignment":"center","outlineWidth":0,"outlineColor":[255,0,0,255],"background":false,"backgroundColor":[0,0,200,255]}]},"visualChannels":{"colorField":{"name":"Groundwater Level (m)","type":"real"},"colorScale":"quantile","sizeField":null,"sizeScale":"linear"}},{"id":"vhopcbo","type":"point","config":{"dataId":"qg9h4e","label":"Point Layer","color":[18,147,154],"highlightColor":[252,242,26,255],"columns":{"lat":"Latitude","lng":"Longitude"},"isVisible":true,"visConfig":{"radius":10,"fixedRadius":false,"opacity":0.8,"outline":false,"thickness":2,"strokeColor":null,"colorRange":{"name":"ColorBrewer RdYlGn-10","type":"diverging","category":"ColorBrewer","colors":["#a50026","#d73027","#f46d43","#fdae61","#fee08b","#d9ef8b","#a6d96a","#66bd63","#1a9850","#006837"]},"strokeColorRange":{"name":"Global Warming","type":"sequential","category":"Uber","colors":["#5A1846","#900C3F","#C70039","#E3611C","#F1920E","#FFC300"]},"radiusRange":[0,50],"filled":true},"hidden":false,"textLabel":[{"field":null,"color":[255,255,255],"size":4,"offset":[0,0],"anchor":"start","alignment":"center","outlineWidth":0,"outlineColor":[255,0,0,255],"background":false,"backgroundColor":[0,0,200,255]}]},"visualChannels":{"colorField":{"name":"Groundwater Level (m)","type":"real"},"colorScale":"quantile","strokeColorField":null,"strokeColorScale":"quantile","sizeField":null,"sizeScale":"linear"}}],"effects":[],"interactionConfig":{"tooltip":{"fieldsToShow":{"qg9h4e":[{"name":"Groundwater Level (m)","format":null}]},"compareMode":true,"compareType":"absolute","enabled":true},"brush":{"size":25.7,"enabled":false},"geocoder":{"enabled":true},"coordinate":{"enabled":true}},"layerBlending":"normal","overlayBlending":"normal","splitMaps":[],"animationConfig":{"currentTime":null,"speed":1},"editor":{"features":[],"visible":true}},"mapState":{"bearing":-22.406250000000007,"dragRotate":true,"latitude":13.303910694676452,"longitude":-16.781505236493523,"pitch":40.582706998662694,"zoom":9.892530043154999,"isSplit":false,"isViewportSynced":true,"isZoomLocked":false,"splitMapViewports":[]},"mapStyle":{"styleType":"dark-matter","topLayerGroups":{},"visibleLayerGroups":{"label":true,"road":true,"border":true,"building":true,"water":true,"land":true,"3d building":false},"threeDBuildingColor":[15.035172933000911,15.035172933000911,15.035172933000911],"backgroundColor":[0,0,0],"mapStyles":{}}}};
const loadedData = keplerGl.KeplerGlSchema.load(
datasets,
config
);
store.dispatch(keplerGl.addDataToMap({
datasets: loadedData.datasets,
config: loadedData.config,
options: {
centerMap: false
}
}));
}(KeplerGl, store))
</script>
</body>
</html>