-
Notifications
You must be signed in to change notification settings - Fork 73
/
poleRot.py
executable file
·212 lines (202 loc) · 651 KB
/
poleRot.py
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
import numpy as np
def get_pole(continent,age):
"""
Returns the finite pole of rotation for a given continent and age
Pole rotations from Torsvik (2008).
"""
age=int(age)
if continent=='af':return [0,0,0]
if continent=='aus':
cont= [[5,9.7,54.3,-3.3],[10,10.4,52.8,-6.2],[15,11.5,49.8,-9.0],[20,12.4,48.0,-11.8],[25,12.9,48.3,-15.0],[30,12.8,49.9,-18.1],[35,13.5,50.8,-20.9],[40,14.1,52.7,-22.1],[45,14.4,54.7,-22.9],[50,14.7,56.5,-23.6],[55,14.0,57.3,-24.7],[60,12.9,57.9,-25.7],[65,13.6,58.8,-26.3],[70,17.3,60.2,-26.3],[75,19.8,63.3,-26.7],[80,20.5,68.5,-26.6],[85,19.8,74.6,-26.9],[90,17.7,80.9,-28.9],[95,15.9,86.2,-31.1],[100,18.4,89.3,-30.7],[105,17.9,95.6,-32.6],[110,17.3,101.0,-34.8],[115,16.8,105.6,-37.4],[120,16.4,109.4,-40.3],[125,15.7,110.3,-42.3],[130,15.9,111.6,-44.4],[135,15.9,113.1,-46.6],[140,15.6,113.7,-48.3],[145,15.0,113.1,-50.5],[150,15.5,113.5,-52.5],[155,17.6,115.7,-54.3],[160,19.5,117.8,-56.2],[165,19.5,117.8,-56.2],[170,19.5,117.8,-56.2],[175,19.5,117.8,-56.2],[180,19.5,117.8,-56.2],[185,19.5,117.8,-56.2],[190,19.5,117.8,-56.2],[195,19.5,117.8,-56.2],[200,19.5,117.8,-56.2],[205,19.5,117.8,-56.2],[210,19.5,117.8,-56.2],[215,19.5,117.8,-56.2],[220,19.5,117.8,-56.2],[225,19.5,117.8,-56.2],[230,19.5,117.8,-56.2],[235,19.5,117.8,-56.2],[240,19.5,117.8,-56.2],[245,19.5,117.8,-56.2],[250,19.5,117.8,-56.2],[255,19.5,117.8,-56.2],[260,19.5,117.8,-56.2],[265,19.5,117.8,-56.2],[270,19.5,117.8,-56.2],[275,19.5,117.8,-56.2],[280,19.5,117.8,-56.2],[285,19.5,117.8,-56.2],[290,19.5,117.8,-56.2],[295,19.5,117.8,-56.2],[300,19.5,117.8,-56.2],[305,19.5,117.8,-56.2],[310,19.5,117.8,-56.2],[315,19.5,117.8,-56.2],[320,19.5,117.8,-56.2]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='eur':
cont= [[5,17.9,-27.1,0.6],[10,18.4,-26.3,1.2],[15,18.9,-24.6,1.8],[20,17.2,-22.7,2.4],[25,20.7,-19.0,3.0],[30,24.9,-19.5,4.3],[35,27.2,-19.3,5.8],[40,28.7,-18.5,7.5],[45,30.3,-18.2,9.0],[50,30.8,-16.7,10.0],[55,32.7,-15.4,11.3],[60,34.8,-15.7,12.6],[65,36.0,-15.8,13.6],[70,35.4,-16.1,14.9],[75,35.5,-15.7,15.5],[80,36.1,-15.2,16.9],[85,37.0,-14.2,18.8],[90,39.6,-13.7,21.9],[95,39.8,-13.7,25.2],[100,40.2,-12.5,28.5],[105,41.6,-11.2,31.7],[110,42.6,-9.8,34.5],[115,43.4,-8.5,37.3],[120,44.5,-6.9,40.3],[125,45.3,-6.3,42.0],[130,45.9,-5.7,43.0],[135,46.6,-5.3,44.0],[140,47.3,-4.9,45.2],[145,47.8,-4.8,46.4],[150,48.6,-4.0,47.9],[155,49.8,-2.2,50.0],[160,50.6,-1.2,52.1],[165,51.4,-0.3,54.2],[170,52.1,0.6,56.3],[175,52.9,1.9,59.6],[180,53.0,2.0,60.0],[185,53.0,2.0,60.4],[190,53.1,2.1,60.8],[195,53.2,2.2,61.1],[200,53.3,2.2,61.5],[205,53.2,2.6,59.7],[210,53.1,2.9,57.8],[215,53.1,3.3,55.9],[220,52.9,3.6,53.6],[225,52.7,4.0,51.4],[230,52.4,4.4,49.1],[235,52.2,4.8,46.8],[240,51.9,5.3,44.5],[245,51.9,5.3,44.5],[250,51.9,5.3,44.5],[255,51.9,5.3,44.5],[260,51.9,5.3,44.5],[265,51.9,5.3,44.5],[270,51.9,5.3,44.5],[275,51.9,5.3,44.5],[280,51.9,5.3,44.5],[285,51.9,5.3,44.5],[290,51.9,5.3,44.5],[295,51.9,5.3,44.5],[300,51.9,5.3,44.5],[305,51.9,5.3,44.5],[310,51.9,5.3,44.5],[315,51.9,5.3,44.5],[320,51.9,5.3,44.5]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='mad':
cont= [[5,90.0,0.0,0.0],[10,90.0,0.0,0.0],[15,90.0,0.0,0.0],[20,90.0,0.0,0.0],[25,90.0,0.0,0.0],[30,90.0,0.0,0.0],[35,90.0,0.0,0.0],[40,90.0,0.0,0.0],[45,90.0,0.0,0.0],[50,90.0,0.0,0.0],[55,90.0,0.0,0.0],[60,90.0,0.0,0.0],[65,90.0,0.0,0.0],[70,90.0,0.0,0.0],[75,90.0,0.0,0.0],[80,90.0,0.0,0.0],[85,90.0,0.0,0.0],[90,90.0,0.0,0.0],[95,90.0,0.0,0.0],[100,90.0,0.0,0.0],[105,90.0,0.0,0.0],[110,90.0,0.0,0.0],[115,90.0,0.0,0.0],[120,90.0,0.0,0.0],[125,2.6,-63.3,1.8],[130,2.6,-63.3,3.9],[135,1.5,-57.6,5.7],[140,1.0,-55.9,7.2],[145,0.6,118.3,-8.9],[150,4.5,119.8,-10.9],[155,10.6,130.1,-13.0],[160,14.8,137.5,-15.4],[165,14.8,137.5,-15.4],[170,14.8,137.5,-15.4],[175,14.8,137.5,-15.4],[180,14.8,137.5,-15.4],[185,14.8,137.5,-15.4],[190,14.8,137.5,-15.4],[195,14.8,137.5,-15.4],[200,14.8,137.5,-15.4],[205,14.8,137.5,-15.4],[210,14.8,137.5,-15.4],[215,14.8,137.5,-15.4],[220,14.8,137.5,-15.4],[225,14.8,137.5,-15.4],[230,14.8,137.5,-15.4],[235,14.8,137.5,-15.4],[240,14.8,137.5,-15.4],[245,14.8,137.5,-15.4],[250,14.8,137.5,-15.4],[255,14.8,137.5,-15.4],[260,14.8,137.5,-15.4],[265,14.8,137.5,-15.4],[270,14.8,137.5,-15.4],[275,14.8,137.5,-15.4],[280,14.8,137.5,-15.4],[285,14.8,137.5,-15.4],[290,14.8,137.5,-15.4],[295,14.8,137.5,-15.4],[300,14.8,137.5,-15.4],[305,14.8,137.5,-15.4],[310,14.8,137.5,-15.4],[315,14.8,137.5,-15.4],[320,14.8,137.5,-15.4]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='nwaf':
cont= [[5,90.0,0.0,0.0],[10,90.0,0.0,0.0],[15,90.0,0.0,0.0],[20,90.0,0.0,0.0],[25,90.0,0.0,0.0],[30,90.0,0.0,0.0],[35,90.0,0.0,0.0],[40,90.0,0.0,0.0],[45,90.0,0.0,0.0],[50,90.0,0.0,0.0],[55,90.0,0.0,0.0],[60,90.0,0.0,0.0],[65,90.0,0.0,0.0],[70,90.0,0.0,0.0],[75,90.0,0.0,0.0],[80,90.0,0.0,0.0],[85,19.6,6.7,0.0],[90,16.6,6.7,-0.2],[95,16.5,6.7,-0.4],[100,16.5,6.7,-0.5],[105,16.5,6.7,-0.7],[110,16.5,6.7,-0.8],[115,16.5,6.7,-1.0],[120,16.5,6.7,-1.1],[125,16.5,6.7,-1.2],[130,16.5,6.7,-1.2],[135,16.5,6.7,-1.2],[140,16.5,6.7,-1.2],[145,16.5,6.7,-1.2],[150,16.5,6.7,-1.2],[155,16.5,6.7,-1.2],[160,16.5,6.7,-1.2],[165,16.5,6.7,-1.2],[170,16.5,6.7,-1.2],[175,16.5,6.7,-1.2],[180,16.5,6.7,-1.2],[185,16.5,6.7,-1.2],[190,16.5,6.7,-1.2],[195,16.5,6.7,-1.2],[200,16.5,6.7,-1.2],[205,16.5,6.7,-1.2],[210,16.5,6.7,-1.2],[215,16.5,6.7,-1.2],[220,16.5,6.7,-1.2],[225,16.5,6.7,-1.2],[230,16.5,6.7,-1.2],[235,16.5,6.7,-1.2],[240,16.5,6.7,-1.2],[245,16.5,6.7,-1.2],[250,16.5,6.7,-1.2],[255,16.5,6.7,-1.2],[260,16.5,6.7,-1.2],[265,16.5,6.7,-1.2],[270,16.5,6.7,-1.2],[275,16.5,6.7,-1.2],[280,16.5,6.7,-1.2],[285,16.5,6.7,-1.2],[290,16.5,6.7,-1.2],[295,16.5,6.7,-1.2],[300,16.5,6.7,-1.2],[305,16.5,6.7,-1.2],[310,16.5,6.7,-1.2],[315,16.5,6.7,-1.2],[320,16.5,6.7,-1.2]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='col':
cont= [[5,62.1,-40.2,1.6],[10,61.8,-40.3,3.3],[15,59.6,-38.1,5.4],[20,58.5,-37.1,7.5],[25,57.7,-36.4,9.6],[30,56.7,-34.5,11.9],[35,56.5,-33.4,14.3],[40,57.1,-32.6,16.6],[45,57.0,-31.4,18.6],[50,58.2,-31.2,20.5],[55,60.7,-31.9,22.0],[60,62.5,-32.8,23.3],[65,63.7,-33.5,24.6],[70,63.5,-33.4,26.1],[75,63.2,-33.9,28.6],[80,62.7,-34.3,31.5],[85,61.2,-34.3,34.4],[90,59.1,-34.5,37.3],[95,57.2,-34.7,40.3],[100,55.7,-34.8,43.3],[105,54.3,-34.9,46.4],[110,53.1,-35.0,49.5],[115,52.2,-35.0,51.7],[120,51.6,-35.0,52.8],[125,50.7,-33.9,54.0],[130,48.5,-33.4,55.4],[135,47.5,-33.3,56.0],[140,47.5,-33.3,56.1],[145,47.5,-33.3,56.1],[150,47.5,-33.3,56.2],[155,47.5,-33.3,56.2],[160,47.5,-33.3,56.2],[165,47.5,-33.3,56.2],[170,47.5,-33.3,56.2],[175,47.5,-33.3,56.2],[180,47.5,-33.3,56.2],[185,47.5,-33.3,56.2],[190,47.5,-33.3,56.2],[195,47.5,-33.3,56.2],[200,47.5,-33.3,56.2],[205,47.5,-33.3,56.2],[210,47.5,-33.3,56.2],[215,47.5,-33.3,56.2],[220,47.5,-33.3,56.2],[225,47.5,-33.3,56.2],[230,47.5,-33.3,56.2],[235,47.5,-33.3,56.2],[240,47.5,-33.3,56.2],[245,47.5,-33.3,56.2],[250,47.5,-33.3,56.2],[255,47.5,-33.3,56.2],[260,47.5,-33.3,56.2],[265,47.5,-33.3,56.2],[270,47.5,-33.3,56.2],[275,47.5,-33.3,56.2],[280,47.5,-33.3,56.2],[285,47.5,-33.3,56.2],[290,47.5,-33.3,56.2],[295,47.5,-33.3,56.2],[300,47.5,-33.3,56.2],[305,47.5,-33.3,56.2],[310,47.5,-33.3,56.2],[315,47.5,-33.3,56.2],[320,47.5,-33.3,56.2]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='grn':
cont= [[5,80.9,22.8,1.3],[10,80.9,22.9,2.6],[15,80.9,23.2,4.1],[20,80.6,24.4,5.5],[25,79.5,28.1,6.8],[30,77.3,12.5,8.6],[35,74.8,7.2,10.2],[40,72.6,9.5,11.5],[45,71.4,11.4,12.7],[50,71.0,20.7,14.2],[55,71.8,29.6,16.8],[60,71.9,30.5,17.5],[65,71.3,32.9,17.6],[70,69.8,29.0,17.9],[75,69.0,26.6,18.5],[80,67.6,21.0,19.8],[85,66.3,16.4,21.5],[90,65.9,11.5,24.2],[95,64.2,5.5,26.9],[100,62.7,2.8,30.1],[105,62.4,1.6,33.3],[110,62.1,0.9,36.5],[115,61.8,0.5,39.7],[120,61.8,0.8,43.1],[125,61.9,1.0,44.9],[130,62.2,1.3,46.0],[135,62.4,1.6,47.1],[140,62.7,1.6,48.4],[145,62.9,1.3,49.7],[150,63.2,1.8,51.4],[155,63.7,3.6,53.8],[160,64.1,4.2,56.0],[165,64.4,4.8,58.3],[170,64.7,5.3,60.6],[175,64.8,6.0,64.1],[180,64.9,6.0,64.5],[185,64.9,5.9,64.9],[190,65.0,5.9,65.4],[195,65.0,5.8,65.8],[200,65.1,5.8,66.2],[205,65.1,5.7,66.7],[210,65.2,5.7,67.1],[215,65.2,5.6,67.5],[220,65.2,5.6,67.5],[225,65.2,5.6,67.5],[230,65.2,5.6,67.5],[235,65.2,5.6,67.5],[240,65.2,5.6,67.5],[245,65.2,5.6,67.5],[250,65.2,5.6,67.5],[255,65.2,5.6,67.5],[260,65.2,5.6,67.5],[265,65.2,5.6,67.5],[270,65.2,5.6,67.5],[275,65.2,5.6,67.5],[280,65.2,5.6,67.5],[285,65.2,5.6,67.5],[290,65.2,5.6,67.5],[295,65.2,5.6,67.5],[300,65.2,5.6,67.5],[305,65.2,5.6,67.5],[310,65.2,5.6,67.5],[315,65.2,5.6,67.5],[320,65.2,5.6,67.5]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='nam':
cont= [[5,80.9,22.8,1.3],[10,80.9,22.9,2.6],[15,80.9,23.2,4.1],[20,80.6,24.4,5.5],[25,79.5,28.1,6.8],[30,77.3,12.5,8.6],[35,75.4,3.5,10.5],[40,74.5,-1.1,12.6],[45,74.3,-4.3,14.6],[50,75.9,-3.5,16.2],[55,79.8,4.1,17.6],[60,81.6,5.1,19.1],[65,82.6,3.2,20.7],[70,81.6,-6.5,22.4],[75,80.4,-13.1,24.6],[80,78.2,-18.8,27.5],[85,76.2,-21.3,30.5],[90,74.6,-23.0,33.8],[95,72.0,-24.7,36.9],[100,70.0,-24.0,40.2],[105,69.1,-23.3,43.6],[110,68.3,-22.6,47.0],[115,67.6,-21.8,50.4],[120,67.1,-20.4,53.9],[125,67.0,-19.7,55.6],[130,67.0,-19.1,56.7],[135,67.1,-18.7,57.9],[140,67.2,-18.4,59.2],[145,67.1,-18.3,60.5],[150,67.3,-17.6,62.2],[155,67.6,-15.5,64.6],[160,67.6,-14.5,66.8],[165,67.7,-13.6,69.1],[170,67.8,-12.8,71.4],[175,67.7,-11.5,74.8],[180,67.7,-11.5,75.3],[185,67.7,-11.5,75.7],[190,67.7,-11.5,76.1],[195,67.7,-11.5,76.6],[200,67.7,-11.5,77.0],[205,67.7,-11.5,77.4],[210,67.7,-11.5,77.9],[215,67.7,-11.5,78.3],[220,67.7,-11.5,78.3],[225,67.7,-11.5,78.3],[230,67.7,-11.5,78.3],[235,67.7,-11.5,78.3],[240,67.7,-11.5,78.3],[245,67.7,-11.5,78.3],[250,67.7,-11.5,78.3],[255,67.7,-11.5,78.3],[260,67.7,-11.5,78.3],[265,67.7,-11.5,78.3],[270,67.7,-11.5,78.3],[275,67.7,-11.5,78.3],[280,67.7,-11.5,78.3],[285,67.7,-11.5,78.3],[290,67.7,-11.5,78.3],[295,67.7,-11.5,78.3],[300,67.7,-11.5,78.3],[305,67.7,-11.5,78.3],[310,67.7,-11.5,78.3],[315,67.7,-11.5,78.3],[320,67.7,-11.5,78.3]]
for rec in cont:
if int(age)==int(rec[0]):
pole= [rec[1],rec[2],rec[3]]
return pole
if continent=='par':
cont= [[5,62.1,-40.2,1.6],[10,61.8,-40.3,3.3],[15,59.6,-38.1,5.4],[20,58.5,-37.1,7.5],[25,57.7,-36.4,9.6],[30,56.7,-34.5,11.9],[35,56.5,-33.4,14.3],[40,57.1,-32.6,16.6],[45,57.0,-31.4,18.6],[50,58.2,-31.2,20.5],[55,60.7,-31.9,22.0],[60,62.5,-32.8,23.3],[65,63.7,-33.5,24.6],[70,63.5,-33.4,26.1],[75,63.2,-33.9,28.6],[80,62.7,-34.3,31.5],[85,61.2,-34.3,34.4],[90,59.1,-34.5,37.3],[95,57.2,-34.7,40.3],[100,55.7,-34.8,43.3],[105,54.3,-34.9,46.4],[110,53.1,-35.0,49.5],[115,52.2,-35.0,51.7],[120,51.6,-35.0,52.8],[125,50.7,-33.9,54.0],[130,48.5,-33.4,55.4],[135,47.5,-33.3,56.0],[140,47.5,-33.3,56.1],[145,47.5,-33.3,56.1],[150,47.5,-33.3,56.2],[155,47.5,-33.3,56.2],[160,47.5,-33.3,56.2],[165,47.5,-33.3,56.2],[170,47.5,-33.3,56.2],[175,47.5,-33.3,56.2],[180,47.5,-33.3,56.2],[185,47.5,-33.3,56.2],[190,47.5,-33.3,56.2],[195,47.5,-33.3,56.2],[200,47.5,-33.3,56.2],[205,47.5,-33.3,56.2],[210,47.5,-33.3,56.2],[215,47.5,-33.3,56.2],[220,47.5,-33.3,56.2],[225,47.5,-33.3,56.2],[230,47.5,-33.3,56.2],[235,47.5,-33.3,56.2],[240,47.5,-33.3,56.2],[245,47.5,-33.3,56.2],[250,47.5,-33.3,56.2],[255,47.5,-33.3,56.2],[260,47.5,-33.3,56.2],[265,47.5,-33.3,56.2],[270,47.5,-33.3,56.2],[275,47.5,-33.3,56.2],[280,47.5,-33.3,56.2],[285,47.5,-33.3,56.2],[290,47.5,-33.3,56.2],[295,47.5,-33.3,56.2],[300,47.5,-33.3,56.2],[305,47.5,-33.3,56.2],[310,47.5,-33.3,56.2],[315,47.5,-33.3,56.2],[320,47.5,-33.3,56.2]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='eant':
cont= [[5,8.2,-49.4,0.8],[10,8.2,-49.4,1.5],[15,9.8,-48.4,2.1],[20,10.7,-47.9,2.8],[25,11.4,-48.2,3.8],[30,11.8,-48.3,4.8],[35,12.5,-46.1,6.0],[40,13.6,-41.5,7.4],[45,11.1,-41.1,8.5],[50,9.1,-40.9,9.6],[55,9.4,-43.5,10.3],[60,10.6,-47.4,10.8],[65,8.1,-47.7,11.3],[70,0.4,-43.3,12.2],[75,3.7,138.9,-13.8],[80,2.7,142.7,-16.1],[85,0.6,144.7,-18.8],[90,1.4,-37.0,22.3],[95,2.9,-38.3,25.8],[100,3.1,146.5,-26.8],[105,5.5,148.9,-30.3],[110,7.4,150.7,-33.9],[115,9.0,152.3,-37.6],[120,10.3,153.6,-41.3],[125,9.4,152.4,-43.0],[130,9.1,151.5,-45.3],[135,8.6,150.9,-47.6],[140,8.0,150.1,-49.2],[145,7.3,148.1,-50.7],[150,7.4,147.1,-52.6],[155,9.0,148.0,-55.4],[160,10.5,148.8,-58.2],[165,10.5,148.8,-58.2],[170,10.5,148.8,-58.2],[175,10.5,148.8,-58.2],[180,10.5,148.8,-58.2],[185,10.5,148.8,-58.2],[190,10.5,148.8,-58.2],[195,10.5,148.8,-58.2],[200,10.5,148.8,-58.2],[205,10.5,148.8,-58.2],[210,10.5,148.8,-58.2],[215,10.5,148.8,-58.2],[220,10.5,148.8,-58.2],[225,10.5,148.8,-58.2],[230,10.5,148.8,-58.2],[235,10.5,148.8,-58.2],[240,10.5,148.8,-58.2],[245,10.5,148.8,-58.2],[250,10.5,148.8,-58.2],[255,10.5,148.8,-58.2],[260,10.5,148.8,-58.2],[265,10.5,148.8,-58.2],[270,10.5,148.8,-58.2],[275,10.5,148.8,-58.2],[280,10.4,148.8,-58.2],[285,10.5,148.8,-58.2],[290,10.5,148.8,-58.2],[295,10.5,148.8,-58.2],[300,10.5,148.8,-58.2],[305,10.4,148.8,-58.2],[310,10.5,148.8,-58.2],[315,10.5,148.8,-58.2],[320,10.5,148.8,-58.2]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='ind':
cont= [[5,22.7,32.9,-2.3],[10,23.8,33.1,-4.6],[15,27.1,27.4,-6.0],[20,29.6,23.9,-7.5],[25,25.1,33.2,-10.3],[30,22.5,38.5,-13.3],[35,22.6,41.3,-15.9],[40,25.5,42.7,-17.4],[45,24.2,40.1,-19.7],[50,24.0,34.2,-23.5],[55,22.1,29.2,-28.3],[60,19.5,25.2,-34.4],[65,19.0,21.9,-40.2],[70,20.5,18.9,-44.4],[75,21.8,18.2,-47.3],[80,22.3,18.2,-49.1],[85,21.8,22.1,-53.8],[90,20.0,27.5,-58.8],[95,20.7,28.1,-57.8],[100,21.3,28.8,-56.8],[105,21.9,29.6,-55.9],[110,22.6,30.3,-54.9],[115,23.3,31.1,-54.0],[120,24.0,32.0,-53.1],[125,23.4,34.8,-55.2],[130,21.2,36.2,-60.1],[135,21.2,36.2,-61.6],[140,21.9,37.5,-61.5],[145,22.6,39.0,-62.5],[150,24.1,40.4,-62.9],[155,26.9,41.2,-61.6],[160,29.8,42.1,-60.5],[165,29.8,42.1,-60.5],[170,29.8,42.1,-60.5],[175,29.8,42.1,-60.5],[180,29.8,42.1,-60.5],[185,29.8,42.1,-60.5],[190,29.8,42.1,-60.5],[195,29.8,42.1,-60.5],[200,29.8,42.1,-60.5],[205,29.8,42.1,-60.5],[210,29.8,42.1,-60.5],[215,29.8,42.1,-60.5],[220,29.8,42.1,-60.5],[225,29.8,42.1,-60.5],[230,29.8,42.1,-60.5],[235,29.8,42.1,-60.5],[240,29.8,42.1,-60.5],[245,29.8,42.1,-60.5],[250,29.8,42.1,-60.5],[255,29.8,42.1,-60.5],[260,29.8,42.1,-60.5],[265,29.8,42.1,-60.5],[270,29.8,42.1,-60.5],[275,29.8,42.1,-60.5],[280,29.8,42.1,-60.5],[285,29.8,42.1,-60.5],[290,29.8,42.1,-60.5],[295,29.8,42.1,-60.5],[300,29.8,42.1,-60.5],[305,29.8,42.1,-60.5],[310,29.8,42.1,-60.5],[315,29.8,42.1,-60.5],[320,29.8,42.1,-60.5]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='neaf':
cont= [[5,90.0,0.0,0.0],[10,90.0,0.0,0.0],[15,90.0,0.0,0.0],[20,90.0,0.0,0.0],[25,90.0,0.0,0.0],[30,90.0,0.0,0.0],[35,90.0,0.0,0.0],[40,90.0,0.0,0.0],[45,90.0,0.0,0.0],[50,90.0,0.0,0.0],[55,90.0,0.0,0.0],[60,90.0,0.0,0.0],[65,90.0,0.0,0.0],[70,90.0,0.0,0.0],[75,90.0,0.0,0.0],[80,90.0,0.0,0.0],[85,27.9,-61.4,0.0],[90,39.8,-61.4,-0.1],[95,40.8,-61.4,-0.2],[100,40.3,-61.4,-0.3],[105,40.6,-61.4,-0.4],[110,40.6,-61.4,-0.5],[115,40.5,-61.4,-0.6],[120,40.5,-61.4,-0.7],[125,40.5,-61.4,-0.7],[130,40.5,-61.4,-0.7],[135,40.5,-61.4,-0.7],[140,40.5,-61.4,-0.7],[145,40.5,-61.4,-0.7],[150,40.5,-61.4,-0.7],[155,40.5,-61.4,-0.7],[160,40.5,-61.4,-0.7],[165,40.5,-61.4,-0.7],[170,40.5,-61.4,-0.7],[175,40.5,-61.4,-0.7],[180,40.5,-61.4,-0.7],[185,40.5,-61.4,-0.7],[190,40.5,-61.4,-0.7],[195,40.5,-61.4,-0.7],[200,40.5,-61.4,-0.7],[205,40.5,-61.4,-0.7],[210,40.5,-61.4,-0.7],[215,40.5,-61.4,-0.7],[220,40.5,-61.4,-0.7],[225,40.5,-61.4,-0.7],[230,40.5,-61.4,-0.7],[235,40.5,-61.4,-0.7],[240,40.5,-61.4,-0.7],[245,40.4,-61.4,-0.7],[250,40.4,-61.4,-0.7],[255,40.4,-61.4,-0.7],[260,40.4,-61.4,-0.7],[265,40.4,-61.4,-0.7],[270,40.4,-61.4,-0.7],[275,40.4,-61.4,-0.7],[280,40.4,-61.4,-0.7],[285,40.4,-61.4,-0.7],[290,40.4,-61.4,-0.7],[295,40.4,-61.4,-0.7],[300,40.4,-61.4,-0.7],[305,40.4,-61.4,-0.7],[310,40.4,-61.4,-0.7],[315,40.4,-61.4,-0.7],[320,40.4,-61.4,-0.7]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='sac':
cont= [[5,62.1,-40.2,1.6],[10,61.8,-40.3,3.3],[15,59.6,-38.1,5.4],[20,58.5,-37.1,7.5],[25,57.7,-36.4,9.6],[30,56.7,-34.5,11.9],[35,56.5,-33.4,14.3],[40,57.1,-32.6,16.6],[45,57.0,-31.4,18.6],[50,58.2,-31.2,20.5],[55,60.7,-31.9,22.0],[60,62.5,-32.8,23.3],[65,63.7,-33.5,24.6],[70,63.5,-33.4,26.1],[75,63.2,-33.9,28.6],[80,62.7,-34.3,31.5],[85,61.2,-34.3,34.4],[90,59.1,-34.5,37.3],[95,57.2,-34.7,40.3],[100,55.7,-34.8,43.3],[105,54.3,-34.9,46.4],[110,53.1,-35.0,49.5],[115,52.2,-35.0,51.7],[120,51.6,-35.0,52.8],[125,50.7,-33.9,54.0],[130,50.1,-32.8,54.9],[135,50.0,-32.5,55.1],[140,50.0,-32.5,55.1],[145,50.0,-32.5,55.1],[150,50.0,-32.5,55.1],[155,50.0,-32.5,55.1],[160,50.0,-32.5,55.1],[165,50.0,-32.5,55.1],[170,50.0,-32.5,55.1],[175,50.0,-32.5,55.1],[180,50.0,-32.5,55.1],[185,50.0,-32.5,55.1],[190,50.0,-32.5,55.1],[195,50.0,-32.5,55.1],[200,50.0,-32.5,55.1],[205,50.0,-32.5,55.1],[210,50.0,-32.5,55.1],[215,50.0,-32.5,55.1],[220,50.0,-32.5,55.1],[225,50.0,-32.5,55.1],[230,50.0,-32.5,55.1],[235,50.0,-32.5,55.1],[240,50.0,-32.5,55.1],[245,50.0,-32.5,55.1],[250,50.0,-32.5,55.1],[255,50.0,-32.5,55.1],[260,50.0,-32.5,55.1],[265,50.0,-32.5,55.1],[270,50.0,-32.5,55.1],[275,50.0,-32.5,55.1],[280,50.0,-32.5,55.1],[285,50.0,-32.5,55.1],[290,50.0,-32.5,55.1],[295,50.0,-32.5,55.1],[300,50.0,-32.5,55.1],[305,50.0,-32.5,55.1],[310,50.0,-32.5,55.1],[315,50.0,-32.5,55.1],[320,50.0,-32.5,55.1]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='ib':
cont= [[5,0,0,0],[10,0,0,0],[15,77.93,59.14,.12],[20,77.93,59.14,.24],[25,77.93,59.14,.24],[30,-31.21,166.79,1.73],[35,-31.21,166.79,1.73],[40,-27,160,1.73],[45,-23.85,157.12,1.72],[50,-20.6,157.88,2.1],[55,-20.72,162.4,2.61],[60,-16,164,3],[65,-12.95,165.77,3.1],[70,-16.45,167.49,3.1],[75,-16.45,167.49,3.1],[80,-37.17,169,8.04],[85,-38.86,169.85,10.28],[90,-42.64,173.2,16.56],[95,-43.,174.,20],[100,-43.,174.,25],[105,-43.,174.,30],[110,-43.,174.,35],[115,-43.,174.,35],[120,-43.,174.,44.77],[120,-43.86,174.17,44.77],[125,-43.86,174.17,44.77],[130,-46.19,177.47,45.91],[135,-46.19,177.47,45.91],[140,-46.19,177.47,45.91],[145,-46.19,177.47,45.91],[150,-46.19,177.47,45.91],[155,-47.12,179.45,46.29],[160,-47.12,179.45,46.29],[165,-47.12,179.45,46.29],[170,-47.55,180.35,50.62],[175,-46.8,181.1,50.33],[180,-46.8,181.1,50.33],[185,-46.8,181.1,50.33],[190,-46.8,181.1,50.33],[195,-46.8,181.1,50.33],[200,-46.8,181.1,50.33],[205,-46.8,181.1,50.33],[210,-46.8,181.1,50.33],[215,-46.8,181.1,50.33],[220,-46.8,181.1,50.33],[225,-46.8,181.1,50.33],[230,-46.8,181.1,50.33],[235,-46.8,181.1,50.33],[240,-46.8,181.1,50.33],[245,-46.8,181.1,50.33],[250,-46.8,181.1,50.33],[255,-46.8,181.1,50.33],[260,-46.8,181.1,50.33],[265,-46.8,181.1,50.33],[270,-46.8,181.1,50.33],[275,-46.8,181.1,50.33],[280,-46.8,181.1,50.33],[285,-46.8,181.1,50.33],[290,-46.8,181.1,50.33],[295,-46.8,181.1,50.33],[300,-46.8,181.1,50.33],[305,-46.8,181.1,50.33],[310,-46.8,181.1,50.33],[315,-46.8,181.1,50.33],[320,-46.8,181.1,50.33]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
if continent=='saf':
cont= [[0,0,56.0,2.2],[5,0,57.6,2.5],[10,0,53.9,2.5],[15,0,66.5,3.0],[20,0,75.5,4.7],[25,0,84.1,6.8],[30,0,95.8,7.9],[35,0,98.8,8.7],[40,0,107.5,9.2],[45,0,110.9,10.3],[50,0,111.6,13.2],[55,0,115.7,13.9],[60,0,123.5,15.7],[65,0,127.8,17.5],[70,0,137.2,17.5],[75,0,140.3,19.2],[80,0,138.1,19.3],[85,0,142.9,19.6],[90,0,144.7,20.5],[95,0,144.3,20.8],[100,0,150.8,22.3],[105,0,160.2,26.9],[110,0,169.2,32.1],[115,0,170.3,35.6],[120,0,171.3,36.2],[125,0,172.1,37.5],[130,0,170.0,39.4],[135,0,172.6,42.1],[140,0,163.1,40.8],[145,0,155.2,38.1],[150,0,155.0,34.8],[155,0,155.0,33.2],[160,0,157.0,30.7],[165,0,159.5,32.5],[170,0,167.6,28.8],[175,0,167.8,27.7],[180,0,167.4,25.9],[185,0,168.4,21.6],[190,0,158.8,18.2],[195,0,147.9,17.8],[200,0,144.4,19.2],[205,0,137.4,20.7],[210,0,133.6,23.1],[215,0,129.9,26.4],[220,0,127.2,27.2],[225,0,128.0,29.4],[230,0,130.0,31.4],[235,0,133.6,35.3],[240,0,137.4,36.5],[245,0,143.1,39.6],[250,0,145.4,40.4],[255,0,145.6,41.8],[260,0,144.8,41.9],[265,0,141.6,47.1],[270,0,140.3,46.8],[275,0,138.2,51.1],[280,0,138.6,51.6],[285,0,136.5,51.8],[290,0,135.8,52.8],[295,0,136.8,53.5],[300,0,136.9,55.4],[305,0,138.9,56.3],[310,0,139.9,59.5],[315,0,138.9,60.8],[320,0,132.5,61.6]]
for rec in cont:
if age==int(rec[0]): return [rec[1],rec[2],rec[3]]
return 'NONE'
def PTrot(EP,Lats,Lons):
""" Does rotation of points on a globe by finite rotations, using method of Cox and Hart 1986, box 7-3. """
# gets user input of Rotation pole lat,long, omega for plate and converts to radians
E=dir2cart([EP[1],EP[0],1.]) # EP is pole lat,lon omega
omega=EP[2]*np.pi/180. # convert to radians
RLats,RLons=[],[]
for k in range(len(Lats)):
if Lats[k]<=90.: # peel off delimiters
# converts to rotation pole to cartesian coordinates
A=dir2cart([Lons[k],Lats[k],1.])
# defines cartesian coordinates of the pole A
R=[[0.,0.,0.],[0.,0.,0.],[0.,0.,0.]]
R[0][0]=E[0]*E[0]*(1-np.cos(omega)) + np.cos(omega)
R[0][1]=E[0]*E[1]*(1-np.cos(omega)) - E[2]*np.sin(omega)
R[0][2]=E[0]*E[2]*(1-np.cos(omega)) + E[1]*np.sin(omega)
R[1][0]=E[1]*E[0]*(1-np.cos(omega)) + E[2]*np.sin(omega)
R[1][1]=E[1]*E[1]*(1-np.cos(omega)) + np.cos(omega)
R[1][2]=E[1]*E[2]*(1-np.cos(omega)) - E[0]*np.sin(omega)
R[2][0]=E[2]*E[0]*(1-np.cos(omega)) - E[1]*np.sin(omega)
R[2][1]=E[2]*E[1]*(1-np.cos(omega)) + E[0]*np.sin(omega)
R[2][2]=E[2]*E[2]*(1-np.cos(omega)) + np.cos(omega)
# sets up rotation matrix
Ap=[0,0,0]
for i in range(3):
for j in range(3):
Ap[i]+=R[i][j]*A[j]
# does the rotation
Prot=cart2dir(Ap)
RLats.append(Prot[1])
RLons.append(Prot[0])
else: # preserve delimiters
RLats.append(Lats[k])
RLons.append(Lons[k])
return RLats,RLons
def dir2cart(d):
"""
Converts a list or array of vector directions in degrees (declination,
inclination) to an array of the direction in cartesian coordinates (x,y,z)
Parameters
----------
d : list or array of [dec,inc] or [dec,inc,intensity]
Returns
-------
cart : array of [x,y,z]
"""
ints=np.ones(len(d)).transpose() # get an array of ones to plug into dec,inc pairs
d=np.array(d)
rad=np.pi/180.
if len(d.shape)>1: # array of vectors
decs,incs=d[:,0]*rad,d[:,1]*rad
if d.shape[1]==3: ints=d[:,2] # take the given lengths
else: # single vector
decs,incs=np.array(float(d[0]))*rad,np.array(float(d[1]))*rad
if len(d)==3:
ints=np.array(d[2])
else:
ints=np.array([1.])
cart= np.array([ints*np.cos(decs)*np.cos(incs),ints*np.sin(decs)*np.cos(incs),ints*np.sin(incs)]).transpose()
return cart
def cart2dir(cart):
"""
Converts a direction in cartesian coordinates into declination, inclinations
Parameters
----------
cart : input list of [x,y,z]
Returns
-------
direction_array : returns an array of [declination, inclination, intensity]
"""
cart=np.array(cart)
rad=np.pi/180. # constant to convert degrees to radians
if len(cart.shape)>1:
Xs,Ys,Zs=cart[:,0],cart[:,1],cart[:,2]
else: #single vector
Xs,Ys,Zs=cart[0],cart[1],cart[2]
if np.iscomplexobj(Xs): Xs = Xs.real
if np.iscomplexobj(Ys): Ys = Ys.real
if np.iscomplexobj(Zs): Zs = Zs.real
Rs=np.sqrt(Xs**2+Ys**2+Zs**2) # calculate resultant vector length
Decs=(np.arctan2(Ys,Xs)/rad)%360. # calculate declination taking care of correct quadrants (arctan2) and making modulo 360.
try:
Incs=np.arcsin(Zs/Rs)/rad # calculate inclination (converting to degrees) #
except:
print ('trouble in cart2dir') # most likely division by zero somewhere
return np.zeros(3)
return np.array([Decs,Incs,Rs]).transpose() # return the directions list
def get_continent(continent):
"""
Returns the continental outlines (latitudes and longitudes) for
these continents:
af=Africa
aus=Australia
balt=Baltica
congo=Congo
eur=Europe
ind=India
sam=South America
ant=Antarctica
grn=Greenland
lau=Laurentia
nam=North America
waf=West Africa
gond=Gondwana
kala=Kalahari
"""
if continent=='af':
return [[-17.300000,11.600000],[-16.800000,11.600000],[-16.800000,11.700000],[-16.300000,11.700000],[-15.800000,11.800000],[-15.200000,12.000000],[-14.500000,12.100000],[-14.100000,12.300000],[-13.700000,12.400000],[-13.300000,12.500000],[-12.900000,12.800000],[-12.700000,13.200000],[-12.200000,13.500000],[-11.800000,13.700000],[-11.700000,13.700000],[-11.400000,13.700000],[-11.100000,13.700000],[-10.900000,13.800000],[-10.400000,13.500000],[-9.700000,13.200000],[-9.100000,13.100000],[-8.700000,13.300000],[-8.200000,13.200000],[-7.600000,12.900000],[-7.000000,12.800000],[-6.600000,12.500000],[-6.200000,12.300000],[-5.900000,12.300000],[-5.600000,12.100000],[-5.100000,12.000000],[-4.600000,11.800000],[-4.200000,11.400000],[-3.900000,11.000000],[-3.300000,10.500000],[-2.700000,9.900000],[-2.000000,9.400000],[-1.500000,9.100000],[-0.900000,8.800000],[-0.700000,9.000000],[-0.200000,9.200000],[0.100000,9.400000],[0.100000,9.800000],[0.300000,9.500000],[0.600000,9.300000],[0.900000,9.500000],[1.000000,9.600000],[1.300000,9.300000],[1.800000,9.600000],[2.200000,9.700000],[2.800000,9.800000],[3.200000,9.900000],[3.600000,9.600000],[3.800000,9.600000],[4.000000,9.600000],[3.900000,9.300000],[4.300000,8.900000],[4.500000,8.700000],[4.600000,8.400000],[4.900000,8.200000],[4.500000,7.900000],[4.600000,7.200000],[4.500000,7.000000],[4.400000,6.800000],[4.300000,6.600000],[4.200000,6.200000],[4.400000,5.800000],[4.800000,5.500000],[5.400000,5.500000],[5.600000,5.200000],[5.900000,5.000000],[6.300000,4.400000],[6.400000,3.900000],[6.300000,3.000000],[6.300000,2.700000],[6.300000,2.100000],[6.200000,1.600000],[6.000000,1.200000],[5.700000,0.800000],[5.700000,0.400000],[5.400000,-0.400000],[5.100000,-1.300000],[4.800000,-1.700000],[4.900000,-2.400000],[5.000000,-2.900000],[5.100000,-3.600000],[5.100000,-4.700000],[5.000000,-5.400000],[4.800000,-6.100000],[4.600000,-6.600000],[4.400000,-7.100000],[4.200000,-7.500000],[4.600000,-8.500000],[5.300000,-9.500000],[6.000000,-10.200000],[6.300000,-10.600000],[6.400000,-11.000000],[6.600000,-11.200000],[6.600000,-11.100000],[6.800000,-11.400000],[7.200000,-12.100000],[7.500000,-12.400000],[7.800000,-12.800000],[8.100000,-13.000000],[8.500000,-13.000000],[8.700000,-13.100000],[8.900000,-13.200000],[9.200000,-13.200000],[9.500000,-13.500000],[9.800000,-13.800000],[10.100000,-14.200000],[10.400000,-14.500000],[10.700000,-14.600000],[10.900000,-14.700000],[10.900000,-14.800000],[10.800000,-15.100000],[11.100000,-15.000000],[11.200000,-15.400000],[11.500000,-15.300000],[11.800000,-15.300000],[11.900000,-14.900000],[11.900000,-15.300000],[11.700000,-15.800000],[11.900000,-16.000000],[12.100000,-16.300000],[12.300000,-16.600000],[12.800000,-16.700000],[13.100000,-16.700000],[13.400000,-16.600000],[13.200000,-16.300000],[13.500000,-16.400000],[13.800000,-16.500000],[14.400000,-16.900000],[14.700000,-17.200000],[15.000000,-17.000000],[15.900000,-16.400000],[16.100000,-16.400000],[17.400000,-16.100000],[18.400000,-16.000000],[19.100000,-16.200000],[19.500000,-16.500000],[19.700000,-16.300000],[20.200000,-16.200000],[20.400000,-16.200000],[20.600000,-16.400000],[20.900000,-16.600000],[21.100000,-16.800000],[21.100000,-16.900000],[21.600000,-16.900000],[22.300000,-16.600000],[22.800000,-16.200000],[23.300000,-16.000000],[23.900000,-15.700000],[24.200000,-15.400000],[24.900000,-14.900000],[25.800000,-14.500000],[26.400000,-14.100000],[27.100000,-13.300000],[27.700000,-12.900000],[28.000000,-12.700000],[28.100000,-11.800000],[28.600000,-11.200000],[29.000000,-10.400000],[29.300000,-10.100000],[29.600000,-9.900000],[29.800000,-9.700000],[30.200000,-9.600000],[30.700000,-9.800000],[31.300000,-9.800000],[31.700000,-9.500000],[32.000000,-9.200000],[32.500000,-9.100000],[33.100000,-8.500000],[33.500000,-7.700000],[33.800000,-7.000000],[34.400000,-6.500000],[35.100000,-6.100000],[35.800000,-5.800000],[35.900000,-5.300000],[35.500000,-5.000000],[35.300000,-4.600000],[35.200000,-4.100000],[35.300000,-3.600000],[35.300000,-3.100000],[35.200000,-2.700000],[35.200000,-1.600000],[35.700000,-1.000000],[35.800000,-0.500000],[35.800000,-0.100000],[36.200000,0.400000],[36.300000,0.800000],[36.500000,1.300000],[36.600000,2.200000],[36.700000,2.900000],[36.800000,3.300000],[36.800000,3.500000],[36.900000,3.900000],[36.900000,4.300000],[36.900000,4.700000],[36.800000,5.100000],[36.800000,5.600000],[37.000000,6.200000],[37.000000,6.800000],[37.000000,7.200000],[37.000000,7.700000],[37.000000,8.200000],[37.000000,8.600000],[37.100000,8.800000],[37.300000,9.400000],[37.300000,10.000000],[37.100000,10.200000],[36.800000,10.300000],[36.900000,10.700000],[37.100000,11.000000],[36.600000,10.900000],[36.200000,10.500000],[35.800000,10.800000],[35.500000,11.100000],[35.100000,11.100000],[34.700000,10.700000],[34.500000,10.400000],[34.200000,10.100000],[34.100000,9.900000],[34.000000,9.900000],[33.700000,10.000000],[33.600000,10.300000],[33.500000,10.600000],[33.500000,10.900000],[33.200000,11.000000],[33.200000,11.300000],[32.900000,12.000000],[32.900000,13.000000],[32.800000,13.700000],[32.500000,14.600000],[32.200000,15.200000],[31.600000,15.400000],[31.200000,16.300000],[31.100000,17.300000],[30.800000,17.800000],[30.600000,18.200000],[30.300000,18.600000],[30.300000,19.200000],[30.700000,19.800000],[31.100000,20.000000],[31.600000,19.800000],[32.000000,19.800000],[32.300000,20.100000],[32.600000,20.600000],[32.900000,21.400000],[32.800000,22.200000],[32.700000,22.700000],[32.400000,22.900000],[32.200000,23.100000],[32.200000,23.500000],[32.000000,24.000000],[31.900000,24.800000],[31.700000,25.000000],[31.600000,25.500000],[31.500000,26.200000],[31.400000,27.100000],[31.200000,27.800000],[31.000000,28.500000],[30.900000,29.200000],[31.300000,29.900000],[31.500000,30.500000],[31.400000,30.500000],[31.400000,30.600000],[31.500000,31.000000],[31.500000,31.500000],[31.300000,32.100000],[31.400000,31.700000],[31.200000,31.600000],[31.100000,31.800000],[30.900000,32.000000],[30.500000,32.200000],[30.400000,32.200000],[30.200000,32.400000],[29.700000,32.400000],[29.200000,32.500000],[28.600000,32.800000],[28.100000,33.300000],[27.900000,33.500000],[27.500000,33.500000],[27.000000,33.900000],[26.300000,34.100000],[25.700000,34.500000],[25.000000,34.800000],[24.500000,35.100000],[24.100000,35.600000],[23.900000,35.700000],[23.900000,35.700000],[23.700000,35.500000],[23.100000,35.600000],[22.700000,36.100000],[22.300000,36.600000],[22.000000,36.800000],[21.500000,36.900000],[21.100000,37.200000],[20.400000,37.200000],[19.700000,37.200000],[18.900000,37.300000],[18.700000,37.700000],[18.500000,38.100000],[18.300000,38.300000],[18.200000,38.400000],[18.000000,38.600000],[17.300000,38.900000],[16.400000,39.200000],[15.700000,39.400000],[15.100000,39.800000],[15.500000,39.900000],[15.000000,40.200000],[14.900000,40.700000],[14.700000,41.100000],[14.200000,41.500000],[13.800000,41.900000],[13.500000,42.300000],[13.100000,42.600000],[12.800000,43.000000],[12.500000,43.200000],[12.100000,43.400000],[11.700000,42.800000],[11.400000,42.600000],[11.500000,43.100000],[11.500000,43.200000],[11.000000,43.700000],[10.400000,44.300000],[10.500000,45.200000],[10.900000,45.800000],[10.700000,46.700000],[11.200000,47.400000],[11.100000,48.200000],[11.200000,48.700000],[11.400000,49.400000],[11.500000,50.100000],[11.900000,50.600000],[11.900000,50.800000],[11.800000,51.100000],[11.300000,51.000000],[10.800000,51.100000],[10.500000,51.200000],[10.300000,50.900000],[9.600000,50.700000],[9.000000,50.600000],[8.500000,50.200000],[8.000000,49.900000],[7.500000,49.700000],[6.800000,49.300000],[6.500000,49.100000],[5.800000,48.900000],[5.200000,48.400000],[4.500000,48.000000],[3.900000,47.400000],[3.300000,46.900000],[3.000000,46.600000],[2.600000,46.200000],[2.200000,45.700000],[1.900000,45.100000],[1.600000,44.600000],[1.200000,44.200000],[0.700000,43.600000],[0.300000,43.200000],[-0.200000,42.800000],[-0.200000,42.600000],[-0.600000,42.500000],[-1.100000,42.000000],[-1.600000,41.700000],[-2.000000,41.200000],[-2.200000,40.900000],[-2.600000,40.400000],[-3.500000,40.100000],[-4.500000,39.600000],[-4.700000,39.300000],[-5.300000,39.200000],[-5.900000,38.900000],[-6.400000,38.900000],[-6.700000,39.300000],[-7.200000,39.600000],[-7.600000,39.500000],[-7.900000,39.500000],[-8.200000,39.400000],[-8.700000,39.500000],[-8.900000,39.500000],[-9.100000,39.600000],[-9.500000,39.700000],[-9.800000,39.900000],[-10.100000,40.000000],[-10.300000,40.300000],[-10.500000,40.600000],[-10.700000,40.600000],[-11.100000,40.600000],[-11.400000,40.500000],[-12.000000,40.400000],[-12.800000,40.400000],[-13.100000,40.400000],[-13.800000,40.400000],[-14.100000,40.400000],[-14.200000,40.500000],[-14.500000,40.600000],[-14.800000,40.600000],[-15.300000,40.500000],[-15.600000,40.300000],[-15.800000,40.100000],[-16.300000,39.600000],[-16.500000,39.600000],[-16.800000,39.100000],[-17.100000,38.600000],[-17.400000,37.900000],[-17.800000,37.100000],[-18.200000,36.700000],[-18.300000,36.500000],[-18.500000,36.500000],[-18.900000,36.200000],[-18.800000,36.000000],[-19.100000,35.700000],[-19.600000,35.200000],[-19.900000,34.600000],[-20.400000,34.600000],[-20.800000,34.900000],[-21.100000,35.000000],[-21.600000,35.200000],[-22.200000,35.300000],[-22.400000,35.500000],[-23.000000,35.400000],[-23.700000,35.300000],[-24.000000,35.300000],[-24.200000,35.300000],[-24.700000,35.000000],[-25.000000,34.200000],[-25.300000,33.300000],[-25.500000,32.900000],[-26.000000,32.500000],[-26.300000,32.700000],[-26.300000,32.900000],[-26.700000,32.800000],[-26.900000,32.800000],[-27.500000,32.600000],[-28.200000,32.400000],[-28.800000,32.000000],[-29.100000,31.500000],[-29.500000,31.200000],[-29.800000,31.000000],[-30.400000,30.700000],[-31.000000,30.300000],[-31.500000,29.600000],[-32.000000,29.200000],[-32.600000,28.500000],[-33.000000,28.000000],[-33.400000,27.500000],[-33.700000,26.900000],[-33.800000,26.300000],[-33.800000,25.800000],[-34.000000,25.700000],[-34.000000,25.200000],[-34.200000,24.600000],[-34.100000,23.900000],[-34.200000,23.200000],[-34.100000,22.700000],[-34.100000,22.200000],[-34.300000,21.800000],[-34.400000,21.500000],[-34.400000,21.100000],[-34.500000,20.700000],[-34.500000,20.300000],[-34.700000,20.000000],[-34.700000,19.700000],[-34.700000,19.400000],[-34.500000,19.300000],[-34.400000,18.800000],[-34.100000,18.800000],[-34.200000,18.400000],[-34.400000,18.400000],[-34.000000,18.300000],[-33.800000,18.400000],[-33.400000,18.100000],[-33.100000,18.000000],[-32.800000,17.800000],[-32.700000,18.200000],[-31.900000,18.200000],[-31.300000,17.800000],[-30.800000,17.500000],[-30.300000,17.200000],[-29.700000,17.000000],[-29.100000,16.700000],[-28.700000,16.500000],[-28.600000,16.400000],[-28.400000,16.000000],[-28.200000,15.800000],[-27.800000,15.500000],[-27.500000,15.300000],[-27.000000,15.100000],[-26.500000,15.000000],[-26.300000,14.900000],[-25.900000,14.800000],[-25.400000,14.700000],[-25.000000,14.700000],[-24.600000,14.500000],[-24.100000,14.400000],[-23.700000,14.400000],[-23.200000,14.400000],[-22.800000,14.400000],[-22.200000,14.200000],[-21.800000,13.800000],[-21.400000,13.600000],[-21.000000,13.400000],[-20.600000,13.200000],[-20.200000,13.000000],[-19.800000,12.800000],[-19.500000,12.600000],[-19.200000,12.400000],[-18.900000,12.200000],[-18.600000,12.000000],[-18.500000,11.800000],[-18.000000,11.700000],[-17.700000,11.600000],[-17.300000,11.600000]]
if continent=='aus':
return [[-40.800000,145.000000],[-40.800000,145.300000],[-41.000000,145.800000],[-41.200000,146.400000],[-41.100000,146.800000],[-41.000000,147.300000],[-40.900000,147.800000],[-40.800000,148.100000],[-41.300000,148.300000],[-41.700000,148.300000],[-42.100000,148.400000],[-42.200000,148.400000],[-42.100000,148.300000],[-42.500000,148.100000],[-42.800000,148.000000],[-42.800000,147.600000],[-43.100000,147.500000],[-43.200000,147.200000],[-43.400000,147.000000],[-43.600000,146.800000],[-43.600000,146.500000],[-43.400000,146.000000],[-43.300000,146.100000],[-42.900000,145.700000],[-42.700000,145.400000],[-42.300000,145.300000],[-42.300000,145.300000],[-42.200000,145.400000],[-41.800000,145.100000],[-41.400000,144.900000],[-40.800000,144.800000],[0.000000,0.000000],[-21.200000,164.600000],[-20.900000,164.300000],[-20.400000,164.000000],[-20.300000,164.200000],[-20.500000,164.500000],[-20.700000,164.800000],[-20.800000,165.000000],[-21.000000,165.200000],[-21.100000,165.300000],[-21.200000,165.400000],[-21.400000,165.600000],[-21.600000,165.800000],[-21.700000,166.200000],[-22.000000,166.500000],[-22.200000,166.800000],[-22.400000,166.700000],[-22.500000,166.700000],[-22.300000,166.400000],[-22.200000,166.000000],[-22.000000,165.900000],[-21.900000,165.700000],[-21.800000,165.500000],[-21.600000,165.100000],[-21.400000,165.000000],[0.000000,0.000000],[-41.100000,172.100000],[-41.000000,172.100000],[-40.800000,172.300000],[-40.600000,172.500000],[-40.600000,172.600000],[-40.900000,172.700000],[-41.000000,173.000000],[-41.300000,173.000000],[-41.200000,173.300000],[-41.100000,173.500000],[-41.000000,173.600000],[-41.000000,173.800000],[-41.100000,173.800000],[-41.300000,173.800000],[-41.200000,173.900000],[-41.200000,173.900000],[-41.000000,174.000000],[-41.100000,174.100000],[-41.200000,174.100000],[-41.400000,174.100000],[-41.600000,174.100000],[-41.900000,174.100000],[-42.100000,173.900000],[-42.300000,173.700000],[-42.600000,173.400000],[-42.900000,173.200000],[-43.000000,173.100000],[-43.100000,172.900000],[-43.100000,172.900000],[-43.100000,172.800000],[-43.200000,172.800000],[-43.200000,172.800000],[-43.400000,172.700000],[-43.700000,172.700000],[-43.800000,173.000000],[-43.800000,172.900000],[-43.800000,172.500000],[-43.900000,172.300000],[-43.900000,172.100000],[-44.000000,171.800000],[-44.100000,171.600000],[-44.000000,171.500000],[-44.300000,171.400000],[-44.800000,171.200000],[-45.000000,171.100000],[-45.200000,171.000000],[-45.500000,170.900000],[-45.700000,170.700000],[-45.800000,170.700000],[-45.900000,170.600000],[-46.000000,170.500000],[-46.300000,170.200000],[-46.400000,169.800000],[-46.500000,169.700000],[-46.600000,169.600000],[-46.700000,169.200000],[-46.700000,169.000000],[-46.500000,168.700000],[-46.600000,168.500000],[-46.500000,168.300000],[-46.500000,168.200000],[-46.400000,167.900000],[-46.200000,167.600000],[-46.300000,167.300000],[-46.200000,166.800000],[-46.000000,166.800000],[-46.100000,166.700000],[-45.900000,166.700000],[-46.000000,166.500000],[-45.800000,166.600000],[-45.700000,166.800000],[-45.600000,166.900000],[-45.500000,166.700000],[-45.400000,166.800000],[-45.300000,167.000000],[-45.300000,167.100000],[-45.300000,167.100000],[-45.100000,167.000000],[-45.000000,167.100000],[-44.900000,167.300000],[-45.000000,167.400000],[-44.800000,167.400000],[-44.600000,167.700000],[-44.300000,167.900000],[-44.100000,168.200000],[-44.000000,168.600000],[-43.900000,169.000000],[-43.700000,169.400000],[-43.400000,169.900000],[-43.200000,170.100000],[-43.000000,170.400000],[-42.800000,170.900000],[-42.600000,171.100000],[-42.300000,171.200000],[-42.000000,171.300000],[-41.700000,171.600000],[-41.600000,171.900000],[-41.100000,172.100000],[0.000000,0.000000],[-34.500000,172.800000],[-34.500000,172.900000],[-34.800000,173.000000],[-35.000000,173.100000],[-34.900000,173.300000],[-35.000000,173.500000],[-35.000000,173.800000],[-35.200000,174.000000],[-35.300000,174.100000],[-35.400000,174.200000],[-35.600000,174.400000],[-35.900000,174.500000],[-35.800000,174.200000],[-35.900000,174.300000],[-36.200000,174.500000],[-36.500000,174.800000],[-36.700000,174.700000],[-36.800000,174.700000],[-36.900000,174.700000],[-37.000000,174.800000],[-36.900000,175.100000],[-37.200000,175.200000],[-37.000000,175.400000],[-36.600000,175.300000],[-36.600000,175.400000],[-36.800000,175.700000],[-37.000000,175.700000],[-37.200000,175.700000],[-37.400000,175.800000],[-37.600000,175.900000],[-37.800000,176.400000],[-38.000000,177.000000],[-37.900000,177.300000],[-37.800000,177.500000],[-37.600000,177.800000],[-37.500000,178.000000],[-37.700000,178.400000],[-38.000000,178.300000],[-38.200000,178.300000],[-38.500000,178.300000],[-38.700000,177.900000],[-39.000000,177.800000],[-39.200000,177.900000],[-39.100000,177.800000],[-39.100000,177.400000],[-39.200000,177.100000],[-39.500000,176.800000],[-39.700000,176.900000],[-40.000000,176.900000],[-40.300000,176.600000],[-40.600000,176.400000],[-41.200000,176.000000],[-41.500000,175.500000],[-41.400000,175.100000],[-41.200000,174.600000],[-41.100000,174.800000],[-40.700000,175.100000],[-40.200000,175.200000],[-39.900000,174.900000],[-39.700000,174.300000],[-39.400000,173.700000],[-39.000000,174.100000],[-38.600000,174.600000],[-38.100000,174.600000],[-38.100000,174.800000],[-37.800000,174.900000],[-37.400000,174.800000],[-37.200000,174.500000],[-37.000000,174.700000],[-37.000000,174.400000],[-36.500000,174.200000],[-36.600000,174.200000],[-36.400000,174.300000],[-36.400000,174.200000],[-36.200000,174.200000],[-36.300000,174.000000],[-36.100000,173.800000],[-35.600000,173.300000],[-35.300000,173.500000],[-35.500000,173.300000],[-35.100000,173.100000],[-35.000000,173.000000],[-34.700000,172.800000],[-34.500000,172.700000],[0.000000,0.000000],[-22.000000,114.000000],[-22.400000,114.000000],[-22.000000,114.400000],[-21.600000,115.000000],[-21.200000,115.700000],[-20.800000,116.300000],[-20.600000,116.900000],[-20.600000,117.700000],[-20.300000,118.600000],[-19.900000,119.600000],[-19.700000,120.700000],[-19.300000,121.300000],[-18.700000,121.700000],[-18.100000,122.200000],[-17.500000,122.100000],[-16.900000,122.500000],[-16.500000,122.800000],[-17.000000,123.000000],[-17.400000,123.500000],[-16.700000,123.500000],[-16.200000,123.500000],[-16.500000,124.200000],[-16.000000,124.400000],[-15.400000,124.500000],[-15.200000,124.800000],[-15.100000,125.200000],[-14.600000,125.500000],[-14.500000,125.900000],[-14.100000,126.000000],[-14.200000,126.300000],[-13.900000,126.600000],[-13.900000,127.200000],[-14.700000,128.000000],[-15.400000,128.000000],[-15.300000,128.000000],[-15.100000,128.100000],[-15.000000,128.400000],[-14.900000,129.100000],[-15.200000,129.600000],[-14.600000,129.400000],[-14.000000,129.600000],[-13.600000,129.900000],[-13.100000,130.100000],[-12.500000,130.500000],[-12.500000,130.800000],[-12.300000,131.200000],[-12.300000,132.000000],[-11.900000,132.500000],[-11.500000,131.900000],[-11.300000,131.800000],[-11.500000,132.000000],[-11.300000,132.200000],[-11.600000,132.600000],[-11.800000,133.000000],[-11.900000,133.500000],[-11.900000,133.800000],[-12.100000,134.400000],[-12.200000,135.000000],[-12.100000,135.400000],[-12.000000,135.800000],[-12.300000,135.800000],[-12.500000,135.900000],[-12.300000,136.200000],[-12.400000,136.500000],[-12.600000,136.700000],[-12.900000,136.500000],[-13.300000,136.300000],[-13.400000,136.100000],[-13.500000,135.900000],[-13.900000,136.000000],[-14.700000,135.700000],[-15.200000,135.900000],[-15.400000,136.300000],[-15.900000,136.800000],[-16.300000,137.700000],[-16.800000,138.400000],[-17.300000,139.200000],[-17.700000,139.900000],[-17.400000,140.900000],[-16.500000,141.200000],[-15.100000,141.600000],[-13.700000,141.400000],[-12.800000,141.700000],[-12.100000,141.700000],[-11.000000,142.200000],[-11.000000,142.700000],[-11.800000,142.800000],[-12.300000,143.000000],[-12.900000,143.300000],[-13.800000,143.500000],[-14.500000,144.000000],[-14.400000,144.600000],[-15.000000,145.300000],[-15.800000,145.300000],[-16.600000,145.500000],[-17.300000,146.000000],[-18.100000,146.100000],[-18.700000,146.300000],[-18.900000,146.300000],[-19.300000,147.100000],[-19.700000,147.600000],[-19.900000,148.100000],[-20.200000,148.700000],[-20.500000,148.800000],[-21.100000,149.200000],[-21.600000,149.500000],[-22.200000,149.500000],[-22.500000,149.800000],[-22.400000,150.200000],[-22.400000,150.700000],[-23.300000,150.800000],[-24.000000,151.400000],[-24.500000,152.000000],[-25.100000,152.600000],[-25.700000,152.900000],[-26.300000,153.000000],[-27.100000,153.200000],[-27.400000,153.200000],[-28.100000,153.500000],[-28.600000,153.600000],[-29.700000,153.300000],[-30.600000,153.100000],[-31.100000,153.100000],[-31.900000,152.700000],[-32.500000,152.500000],[-32.800000,152.100000],[-33.200000,151.700000],[-33.700000,151.200000],[-34.200000,151.200000],[-35.100000,150.800000],[-35.400000,150.500000],[-36.000000,150.200000],[-36.600000,150.100000],[-37.100000,150.000000],[-37.500000,149.800000],[-37.800000,149.100000],[-38.000000,147.900000],[-38.400000,147.300000],[-38.600000,146.800000],[-38.800000,146.300000],[-38.900000,146.500000],[-38.900000,146.100000],[-38.600000,145.500000],[-38.400000,145.200000],[-38.100000,145.100000],[-38.100000,144.400000],[-38.300000,144.300000],[-38.800000,143.600000],[-38.400000,142.400000],[-38.400000,141.500000],[-38.000000,140.700000],[-37.200000,139.800000],[-36.400000,139.700000],[-35.900000,139.400000],[-35.400000,139.300000],[-35.600000,138.800000],[-35.600000,138.200000],[-34.500000,138.400000],[-34.800000,137.900000],[-35.200000,137.400000],[-34.900000,136.900000],[-34.400000,137.400000],[-34.000000,137.600000],[-33.200000,137.900000],[-32.900000,137.900000],[-32.600000,137.700000],[-33.300000,137.400000],[-33.700000,136.900000],[-34.300000,136.300000],[-34.800000,135.900000],[-34.800000,135.600000],[-34.500000,135.200000],[-34.200000,135.300000],[-33.300000,134.800000],[-32.900000,134.100000],[-32.500000,133.800000],[-32.200000,133.200000],[-32.000000,132.400000],[-31.600000,131.700000],[1000.000000,1000.000000],[-22.000000,114.000000],[-22.400000,114.000000],[-22.000000,114.400000],[-21.600000,115.000000],[-21.200000,115.700000],[-20.800000,116.300000],[-20.600000,116.900000],[-20.600000,117.700000],[-20.300000,118.600000],[-19.900000,119.600000],[-19.700000,120.700000],[-19.300000,121.300000],[-18.700000,121.700000],[-18.100000,122.200000],[-17.500000,122.100000],[-16.900000,122.500000],[-16.500000,122.800000],[-17.000000,123.000000],[-17.400000,123.500000],[-16.700000,123.500000],[-16.200000,123.500000],[-16.500000,124.200000],[-16.000000,124.400000],[-15.400000,124.500000],[-15.200000,124.800000],[-15.100000,125.200000],[-14.600000,125.500000],[-14.500000,125.900000],[-14.100000,126.000000],[-14.200000,126.300000],[-13.900000,126.600000],[-13.900000,127.200000],[-14.700000,128.000000],[-15.400000,128.000000],[-15.300000,128.000000],[-15.100000,128.100000],[-15.000000,128.400000],[-14.900000,129.100000],[-15.200000,129.600000],[-14.600000,129.400000],[-14.000000,129.600000],[-13.600000,129.900000],[-13.100000,130.100000],[-12.500000,130.500000],[-12.500000,130.800000],[-12.300000,131.200000],[-12.300000,132.000000],[-11.900000,132.500000],[-11.500000,131.900000],[-11.300000,131.800000],[-11.500000,132.000000],[-11.300000,132.200000],[-11.600000,132.600000],[-11.800000,133.000000],[-11.900000,133.500000],[-11.900000,133.800000],[-12.100000,134.400000],[-12.200000,135.000000],[-12.100000,135.400000],[-12.000000,135.800000],[-12.300000,135.800000],[-12.500000,135.900000],[-12.300000,136.200000],[-12.400000,136.500000],[-12.600000,136.700000],[-12.900000,136.500000],[-13.300000,136.300000],[-13.400000,136.100000],[-13.500000,135.900000],[-13.900000,136.000000],[-14.700000,135.700000],[-15.200000,135.900000],[-15.400000,136.300000],[-15.900000,136.800000],[-16.300000,137.700000],[-16.800000,138.400000],[-17.300000,139.200000],[-17.700000,139.900000],[-17.400000,140.900000],[-16.500000,141.200000],[-15.100000,141.600000],[-13.700000,141.400000],[-12.800000,141.700000],[-12.100000,141.700000],[-11.000000,142.200000],[-11.000000,142.700000],[-11.800000,142.800000],[-12.300000,143.000000],[-12.900000,143.300000],[-13.800000,143.500000],[-14.500000,144.000000],[-14.400000,144.600000],[-15.000000,145.300000],[-15.800000,145.300000],[-16.600000,145.500000],[-17.300000,146.000000],[-18.100000,146.100000],[-18.700000,146.300000],[-18.900000,146.300000],[-19.300000,147.100000],[-19.700000,147.600000],[-19.900000,148.100000],[-20.200000,148.700000],[-20.500000,148.800000],[-21.100000,149.200000],[-21.600000,149.500000],[-22.200000,149.500000],[-22.500000,149.800000],[-22.400000,150.200000],[-22.400000,150.700000],[-23.300000,150.800000],[-24.000000,151.400000],[-24.500000,152.000000],[-25.100000,152.600000],[-25.700000,152.900000],[-26.300000,153.000000],[-27.100000,153.200000],[-27.400000,153.200000],[-28.100000,153.500000],[-28.600000,153.600000],[-29.700000,153.300000],[-30.600000,153.100000],[-31.100000,153.100000],[-31.900000,152.700000],[-32.500000,152.500000],[-32.800000,152.100000],[-33.200000,151.700000],[-33.700000,151.200000],[-34.200000,151.200000],[-35.100000,150.800000],[-35.400000,150.500000],[-36.000000,150.200000],[-36.600000,150.100000],[-37.100000,150.000000],[-37.500000,149.800000],[-37.800000,149.100000],[-38.000000,147.900000],[-38.400000,147.300000],[-38.600000,146.800000],[-38.800000,146.300000],[-38.900000,146.500000],[-38.900000,146.100000],[-38.600000,145.500000],[-38.400000,145.200000],[-38.100000,145.100000],[-38.100000,144.400000],[-38.300000,144.300000],[-38.800000,143.600000],[-38.400000,142.400000],[-38.400000,141.500000],[-38.000000,140.700000],[-37.200000,139.800000],[-36.400000,139.700000],[-35.900000,139.400000],[-35.400000,139.300000],[-35.600000,138.800000],[-35.600000,138.200000],[-34.500000,138.400000],[-34.800000,137.900000],[-35.200000,137.400000],[-34.900000,136.900000],[-34.400000,137.400000],[-34.000000,137.600000],[-33.200000,137.900000],[-32.900000,137.900000],[-32.600000,137.700000],[-33.300000,137.400000],[-33.700000,136.900000],[-34.300000,136.300000],[-34.800000,135.900000],[-34.800000,135.600000],[-34.500000,135.200000],[-34.200000,135.300000],[-33.300000,134.800000],[-32.900000,134.100000],[-32.500000,133.800000],[-32.200000,133.200000],[-32.000000,132.400000],[-31.600000,131.700000],[-31.600000,130.600000],[-31.700000,128.800000],[-32.200000,127.300000],[-32.200000,126.100000],[-32.700000,124.800000],[-33.200000,124.000000],[-33.800000,123.500000],[-33.800000,122.600000],[-33.800000,121.900000],[-33.900000,120.500000],[-34.000000,119.800000],[-34.400000,119.400000],[-34.800000,118.500000],[-35.100000,117.900000],[-35.000000,117.100000],[-34.900000,116.400000],[-34.600000,115.800000],[-34.000000,115.100000],[-33.500000,115.100000],[-33.100000,115.700000],[-32.500000,115.700000],[-31.500000,115.600000],[-30.600000,115.100000],[-29.600000,114.900000],[-28.800000,114.600000],[-27.400000,114.000000],[-26.500000,113.300000],[-26.200000,113.200000],[-26.500000,113.500000],[-26.200000,113.600000],[-25.800000,113.500000],[-26.400000,113.800000],[-25.700000,114.000000],[-25.200000,113.700000],[-23.900000,113.300000],[-23.200000,113.600000],[-22.500000,113.600000],[-21.900000,113.900000]]
if continent=='balt':
return [[100.000000,1000.000000],[56.650000,1.289335],[56.350000,2.121560],[56.050000,3.105099],[55.900000,4.315609],[55.600000,5.374804],[55.500000,6.282686],[55.300000,7.644509],[55.200000,8.703705],[55.050000,10.065530],[55.000000,10.973410],[54.750000,12.335230],[54.450000,13.697050],[54.150000,14.907560],[53.700000,15.966760],[53.250000,17.177270],[52.850000,17.858180],[52.450000,18.690410],[52.150000,19.144350],[51.900000,19.598290],[51.600000,19.900920],[51.300000,20.354860],[50.750000,20.430510],[50.200000,20.430510],[49.900000,20.506170],[49.900000,20.581830],[50.050000,20.960110],[50.200000,21.187080],[50.200000,21.489710],[50.150000,21.943650],[50.050000,22.321930],[49.750000,22.927190],[49.450000,23.456790],[49.050000,24.062040],[48.700000,24.515980],[48.150000,25.121240],[47.700000,25.499520],[47.350000,25.802150],[46.850000,26.180430],[46.450000,26.483060],[46.150000,26.861340],[45.750000,27.239630],[45.500000,27.769230],[45.150000,28.223170],[44.850000,28.677110],[44.750000,29.131050],[44.850000,29.963270],[44.900000,30.871160],[45.150000,31.627720],[45.400000,32.081670],[45.550000,32.611260],[45.700000,33.519150],[45.700000,34.200060],[45.850000,35.032280],[46.050000,35.940160],[46.200000,36.848050],[46.450000,37.755930],[46.500000,38.512500],[46.600000,39.269070],[46.650000,39.874320],[46.650000,40.706540],[47.100000,40.706540],[47.300000,40.403920],[47.400000,40.025630],[47.350000,39.723000],[47.400000,39.269070],[47.400000,38.890780],[47.550000,38.663810],[47.700000,38.966440],[47.700000,39.420380],[47.700000,40.025630],[47.550000,40.933510],[47.400000,41.614430],[47.200000,41.917050],[47.150000,42.370990],[47.150000,42.824940],[46.950000,43.657160],[46.800000,44.565040],[46.600000,45.775550],[46.450000,46.683430],[46.300000,47.515660],[46.150000,48.423540],[45.950000,49.104450],[45.950000,49.558390],[45.650000,50.239300],[45.350000,51.601130],[44.950000,52.584670],[44.700000,54.097800],[44.450000,54.778710],[44.300000,55.686600],[44.200000,56.443160],[44.850000,56.821450],[46.000000,57.351050],[47.450000,58.031960],[48.500000,58.637210],[49.600000,58.864180],[50.400000,59.091150],[51.350000,59.242470],[52.100000,59.318120],[52.950000,59.318120],[53.600000,59.772060],[54.400000,60.301660],[54.800000,60.982570],[55.400000,61.739140],[56.050000,62.268740],[57.000000,62.722680],[57.950000,62.647030],[58.700000,62.722680],[59.700000,62.495710],[60.250000,62.268740],[61.100000,62.268740],[61.800000,62.344400],[62.600000,62.495710],[63.250000,62.722680],[63.950000,63.025310],[64.650000,63.630560],[65.150000,64.614110],[65.600000,65.219360],[65.950000,65.975920],[66.150000,66.808150],[66.350000,67.564720],[67.000000,68.169980],[67.500000,68.396940],[67.950000,68.623920],[68.450000,68.548260],[68.700000,68.169980],[69.000000,67.489060],[69.350000,66.732490],[69.650000,66.127240],[69.900000,65.219360],[70.250000,63.554900],[70.450000,62.495710],[70.750000,60.679950],[71.000000,59.469440],[71.200000,58.410240],[71.600000,57.729330],[72.000000,57.048420],[72.450000,56.821450],[73.000000,57.048420],[73.300000,57.956300],[73.650000,58.712870],[74.000000,59.545090],[74.400000,60.301660],[74.750000,61.663490],[75.050000,63.176620],[75.300000,64.765420],[75.450000,66.429860],[75.700000,67.791690],[75.900000,68.850880],[76.200000,69.758770],[76.550000,69.985740],[76.950000,69.834430],[77.250000,69.456140],[77.650000,68.850880],[77.900000,67.943000],[77.900000,67.035120],[78.000000,65.673300],[78.100000,64.916730],[78.150000,64.084500],[78.150000,63.100970],[78.150000,62.647030],[78.200000,61.285200],[78.350000,60.679950],[78.500000,59.923380],[78.400000,59.469440],[78.200000,58.864180],[78.200000,58.107620],[78.200000,57.653680],[78.050000,56.745790],[77.900000,55.610940],[77.750000,54.551740],[77.600000,54.022140],[77.400000,53.114270],[77.100000,52.433350],[76.800000,51.828100],[76.350000,50.617590],[76.000000,50.012330],[75.750000,48.801830],[75.350000,47.440000],[74.800000,46.380810],[74.400000,44.943330],[74.000000,43.808480],[73.650000,42.900590],[73.400000,42.068370],[73.250000,40.630890],[73.200000,39.420380],[73.200000,38.588150],[73.050000,37.528960],[72.950000,36.394100],[72.800000,35.713190],[72.800000,34.729650],[72.650000,33.216520],[72.550000,32.006010],[72.350000,30.644190],[72.200000,29.358020],[71.950000,27.996200],[71.800000,26.634370],[71.650000,24.969920],[71.400000,23.381130],[71.300000,22.246280],[71.100000,21.792340],[70.950000,20.657480],[70.850000,19.598290],[70.450000,18.236470],[70.050000,17.252930],[69.650000,16.345050],[69.300000,15.437160],[68.850000,14.907560],[68.500000,14.907560],[68.150000,14.756250],[67.600000,14.756250],[67.100000,14.604940],[66.600000,14.604940],[66.100000,14.151000],[65.400000,13.394430],[64.850000,12.486550],[64.500000,11.805630],[64.200000,11.124720],[63.800000,10.292500],[63.700000,9.762900],[63.550000,8.855018],[63.500000,8.174107],[63.400000,7.493195],[63.250000,6.812284],[62.850000,5.980059],[62.450000,5.072176],[62.050000,4.769549],[61.600000,4.315609],[60.800000,3.937324],[60.300000,3.483383],[59.450000,3.029442],[58.750000,2.499844],[57.950000,2.045903],[57.350000,1.667619],[56.750000,1.213678],[100.000000,1000.000000],[71.579000,68.372000],[71.542000,68.285000],[71.395000,67.705000],[71.377000,67.672000],[71.343000,67.568000],[71.247000,67.350000],[71.209000,67.279000],[71.144000,67.207000],[71.084000,67.207000],[70.987000,67.224000],[70.932000,67.169000],[70.856000,67.125000],[70.818000,67.142000],[70.751000,67.197000],[70.714000,67.235000],[70.667000,67.246000],[70.578000,67.213000],[70.557000,67.229000],[70.445000,67.257000],[70.333000,67.257000],[70.311000,67.284000],[70.265000,67.273000],[70.225000,67.246000],[70.200000,67.240000],[70.157000,67.246000],[70.097000,67.229000],[70.051000,67.169000],[70.015000,67.104000],[69.994000,67.082000],[69.953000,67.005000],[69.917000,66.967000],[69.899000,66.967000],[69.878000,66.923000],[69.851000,66.929000],[69.793000,66.972000],[69.742000,66.934000],[69.684000,66.918000],[69.621000,66.896000],[69.588000,66.923000],[69.578000,66.989000],[69.639000,67.065000],[69.687000,67.114000],[69.682000,67.186000],[69.670000,67.218000],[69.650000,67.251000],[69.576000,67.361000],[69.533000,67.399000],[69.505000,67.459000],[69.501000,67.486000],[69.493000,67.503000],[69.483000,67.525000],[69.470000,67.541000],[69.456000,67.579000],[69.438000,67.607000],[69.404000,67.601000],[69.385000,67.585000],[69.355000,67.612000],[69.325000,67.667000],[69.270000,67.716000],[69.254000,67.743000],[69.198000,67.798000],[69.160000,67.842000],[69.134000,67.918000],[69.092000,67.968000],[69.086000,67.989000],[69.066000,68.033000],[69.041000,68.033000],[69.041000,68.071000],[69.019000,68.121000],[68.979000,68.164000],[68.955000,68.236000],[68.937000,68.328000],[68.042000,68.394000],[68.077000,68.372000],[68.092000,68.361000],[68.117000,68.350000],[68.224000,68.367000],[68.247000,68.345000],[68.291000,68.241000],[68.316000,68.153000],[68.326000,68.093000],[68.374000,68.022000],[68.434000,68.017000],[68.461000,67.989000],[68.510000,67.869000],[68.516000,67.836000],[68.537000,67.836000],[68.537000,67.787000],[68.584000,67.650000],[68.594000,67.607000],[68.609000,67.579000],[68.644000,67.486000],[68.680000,67.426000],[68.731000,67.295000],[68.742000,67.224000],[68.758000,67.147000],[68.772000,67.104000],[68.778000,67.054000],[68.805000,66.945000],[68.811000,66.896000],[68.825000,66.830000],[68.829000,66.792000],[68.858000,66.606000],[68.884000,66.491000],[68.910000,66.404000],[68.941000,66.404000],[68.941000,66.349000],[68.985000,66.229000],[69.013000,66.108000],[69.053000,65.879000],[69.082000,65.780000],[69.132000,65.654000],[69.178000,65.567000],[69.196000,65.474000],[69.228000,65.261000],[69.240000,65.201000],[69.236000,65.168000],[69.210000,65.129000],[69.142000,65.053000],[69.066000,65.004000],[69.057000,64.927000],[69.059000,64.834000],[69.074000,64.752000],[69.078000,64.654000],[69.156000,64.539000],[69.180000,64.495000],[69.224000,64.490000],[69.242000,64.511000],[69.268000,64.533000],[69.268000,64.555000],[69.331000,64.632000],[69.343000,64.654000],[69.365000,64.670000],[69.430000,64.692000],[69.460000,64.665000],[69.541000,64.462000],[69.562000,64.364000],[69.576000,64.271000],[69.582000,64.238000],[69.597000,64.189000],[69.605000,64.134000],[69.666000,63.812000],[69.687000,63.691000],[69.728000,63.494000],[69.744000,63.336000],[69.761000,63.101000],[69.758000,63.019000],[69.769000,62.898000],[69.773000,62.871000],[69.769000,62.783000],[69.761000,62.707000],[69.765000,62.532000],[69.775000,62.291000],[69.800000,61.991000],[69.806000,61.947000],[69.812000,61.821000],[69.824000,61.690000],[69.828000,61.608000],[69.841000,61.416000],[69.859000,61.356000],[69.874000,61.280000],[69.872000,61.252000],[69.876000,61.203000],[69.860000,61.176000],[69.824000,61.083000],[69.810000,61.066000],[69.703000,60.946000],[69.682000,60.924000],[69.666000,60.924000],[69.644000,60.864000],[69.621000,60.733000],[69.617000,60.662000],[69.594000,60.612000],[69.572000,60.558000],[69.572000,60.574000],[69.556000,60.585000],[69.550000,60.607000],[69.533000,60.634000],[69.509000,60.689000],[69.432000,60.787000],[69.412000,60.787000],[69.377000,60.793000],[69.357000,60.787000],[69.339000,60.820000],[69.293000,60.864000],[69.277000,60.902000],[69.244000,60.935000],[69.150000,61.083000],[69.104000,61.148000],[69.055000,61.192000],[69.029000,61.225000],[68.949000,61.269000],[68.918000,61.285000],[68.831000,61.258000],[68.788000,61.219000],[68.766000,61.121000],[68.764000,61.094000],[68.748000,61.039000],[68.736000,60.935000],[68.723000,60.891000],[68.711000,60.815000],[68.703000,60.766000],[68.699000,60.651000],[68.697000,60.525000],[68.687000,60.470000],[68.650000,60.361000],[68.633000,60.345000],[68.621000,60.317000],[68.559000,60.263000],[68.500000,60.224000],[68.423000,60.153000],[68.394000,60.131000],[68.330000,60.071000],[68.286000,59.956000],[68.241000,59.727000],[68.245000,59.573000],[68.257000,59.541000],[68.257000,59.502000],[68.266000,59.459000],[68.291000,59.382000],[68.311000,59.382000],[68.363000,59.338000],[68.378000,59.344000],[68.399000,59.322000],[68.458000,59.300000],[68.512000,59.333000],[68.553000,59.360000],[68.646000,59.453000],[68.691000,59.617000],[68.711000,59.655000],[68.719000,59.639000],[68.740000,59.628000],[68.776000,59.497000],[68.793000,59.459000],[68.831000,59.393000],[68.829000,59.371000],[68.845000,59.322000],[68.858000,59.278000],[68.874000,59.218000],[68.888000,59.223000],[68.908000,59.251000],[68.967000,59.311000],[68.983000,59.322000],[68.983000,59.349000],[69.009000,59.398000],[68.991000,59.377000],[68.961000,59.333000],[68.949000,59.300000],[68.754000,58.387000],[68.689000,58.217000],[68.670000,58.179000],[68.658000,58.135000],[68.652000,58.119000],[68.627000,58.031000],[68.607000,57.927000],[68.594000,57.829000],[68.586000,57.769000],[68.572000,57.698000],[68.559000,57.577000],[68.551000,57.501000],[68.535000,57.446000],[68.496000,57.184000],[68.494000,57.096000],[68.496000,57.047000],[68.491000,56.998000],[68.494000,56.954000],[68.496000,56.670000],[68.494000,56.582000],[68.506000,56.478000],[68.504000,56.052000],[68.475000,55.882000],[68.461000,55.844000],[68.434000,55.806000],[68.399000,55.696000],[68.363000,55.620000],[68.338000,55.609000],[68.338000,55.581000],[68.307000,55.510000],[68.284000,55.494000],[68.266000,55.461000],[68.182000,55.346000],[68.092000,55.259000],[68.088000,55.171000],[68.197000,55.046000],[68.213000,54.947000],[68.207000,54.925000],[68.186000,54.860000],[68.155000,54.810000],[68.126000,54.767000],[68.107000,54.750000],[68.071000,54.685000],[68.016000,54.570000],[67.987000,54.570000],[67.987000,54.521000],[67.972000,54.471000],[67.941000,54.406000],[67.919000,54.346000],[67.905000,54.313000],[67.888000,54.313000],[67.875000,54.269000],[67.839000,54.176000],[67.750000,53.935000],[67.688000,53.750000],[67.549000,53.241000],[67.527000,53.071000],[67.499000,52.886000],[67.476000,52.683000],[67.398000,52.557000],[67.213000,52.295000],[67.218000,51.956000],[67.409000,51.847000],[67.430000,51.857000],[67.469000,51.863000],[67.546000,51.929000],[67.570000,51.978000],[67.598000,52.060000],[67.617000,52.093000],[67.641000,52.158000],[67.664000,52.235000],[67.711000,52.399000],[67.733000,52.426000],[67.767000,52.574000],[67.775000,52.711000],[67.830000,52.962000],[67.852000,53.000000],[67.877000,53.039000],[67.902000,53.011000],[67.938000,52.984000],[67.966000,53.011000],[68.010000,53.039000],[68.128000,53.203000],[68.153000,53.203000],[68.165000,53.257000],[68.249000,53.350000],[68.303000,53.460000],[68.340000,53.542000],[68.376000,53.673000],[68.386000,53.733000],[68.405000,53.733000],[68.405000,53.782000],[68.417000,53.815000],[68.425000,53.897000],[68.469000,53.996000],[68.489000,54.012000],[68.518000,54.023000],[68.535000,54.039000],[68.570000,53.979000],[68.598000,53.935000],[68.627000,53.914000],[68.709000,53.968000],[68.738000,54.007000],[68.805000,54.078000],[68.831000,54.089000],[68.870000,54.285000],[68.894000,54.253000],[68.892000,54.182000],[68.896000,54.105000],[68.902000,54.083000],[68.900000,54.061000],[68.914000,53.919000],[68.947000,53.804000],[68.878000,53.722000],[68.849000,53.706000],[68.825000,53.673000],[68.797000,53.629000],[68.793000,53.607000],[68.764000,53.542000],[68.758000,53.460000],[68.768000,53.416000],[68.772000,53.318000],[68.768000,53.203000],[68.766000,53.175000],[68.750000,53.164000],[68.750000,53.137000],[68.715000,53.055000],[68.672000,52.989000],[68.621000,52.896000],[68.557000,52.929000],[68.537000,52.951000],[68.518000,52.951000],[68.473000,52.940000],[68.442000,52.946000],[68.409000,52.935000],[68.334000,52.891000],[68.318000,52.875000],[68.297000,52.858000],[68.259000,52.836000],[68.228000,52.814000],[68.186000,52.793000],[68.197000,52.705000],[68.234000,52.727000],[68.251000,52.727000],[68.274000,52.743000],[68.446000,52.765000],[68.475000,52.727000],[68.496000,52.716000],[68.527000,52.650000],[68.529000,52.607000],[68.537000,52.590000],[68.531000,52.448000],[68.516000,52.415000],[68.516000,52.382000],[68.514000,52.191000],[68.522000,52.164000],[68.520000,52.098000],[68.516000,51.972000],[68.510000,51.929000],[68.510000,51.890000],[68.504000,51.863000],[68.491000,51.743000],[68.467000,51.644000],[68.409000,51.518000],[68.372000,51.409000],[68.367000,51.311000],[68.363000,51.218000],[68.345000,51.065000],[68.307000,50.982000],[68.282000,50.955000],[68.251000,50.900000],[68.193000,50.742000],[68.128000,50.611000],[68.092000,50.518000],[68.056000,50.397000],[68.052000,50.359000],[68.033000,50.321000],[67.915000,49.982000],[67.911000,49.922000],[67.873000,49.736000],[67.864000,49.697000],[67.837000,49.402000],[67.835000,49.336000],[67.773000,49.233000],[67.739000,49.205000],[67.707000,49.200000],[67.675000,49.167000],[67.647000,49.096000],[67.617000,49.003000],[67.624000,48.751000],[67.602000,48.544000],[67.572000,48.522000],[67.542000,48.505000],[67.514000,48.478000],[67.447000,48.434000],[67.430000,48.434000],[67.415000,48.418000],[67.270000,48.385000],[67.185000,48.374000],[66.962000,48.319000],[66.931000,48.237000],[66.898000,48.051000],[66.898000,47.997000],[66.880000,47.887000],[66.862000,47.570000],[66.856000,47.532000],[66.849000,47.455000],[66.823000,47.302000],[66.792000,47.062000],[66.780000,46.969000],[66.785000,46.717000],[66.794000,46.695000],[66.814000,46.608000],[66.851000,46.509000],[66.878000,46.438000],[66.893000,46.416000],[66.911000,46.356000],[66.942000,46.318000],[66.986000,46.258000],[67.010000,46.209000],[67.021000,46.187000],[67.034000,46.165000],[67.056000,46.165000],[67.067000,46.116000],[67.100000,46.088000],[67.128000,46.006000],[67.155000,45.897000],[67.165000,45.869000],[67.207000,45.733000],[67.226000,45.689000],[67.244000,45.629000],[67.257000,45.552000],[67.363000,45.295000],[67.406000,45.257000],[67.437000,45.191000],[67.501000,45.186000],[67.587000,45.246000],[67.679000,45.339000],[67.713000,45.443000],[67.733000,45.563000],[67.775000,45.727000],[67.790000,45.848000],[67.833000,46.061000],[67.864000,46.159000],[67.936000,46.291000],[67.981000,46.329000],[68.044000,46.312000],[68.080000,46.291000],[68.147000,46.291000],[68.186000,46.258000],[68.245000,46.143000],[68.303000,46.077000],[68.347000,46.012000],[68.390000,45.984000],[68.419000,45.957000],[68.423000,45.935000],[68.463000,45.853000],[68.471000,45.766000],[68.465000,45.689000],[68.481000,45.459000],[68.522000,45.284000],[68.522000,45.230000],[68.529000,45.191000],[68.531000,44.907000],[68.543000,44.732000],[68.551000,44.650000],[68.582000,44.437000],[68.670000,44.081000],[68.713000,43.939000],[68.711000,43.917000],[68.693000,43.879000],[68.658000,43.868000],[68.637000,43.868000],[68.637000,43.895000],[68.600000,43.983000],[68.598000,44.016000],[68.555000,44.081000],[68.516000,44.191000],[68.500000,44.262000],[68.481000,44.289000],[68.471000,44.316000],[68.425000,44.388000],[68.374000,44.459000],[68.311000,44.464000],[68.236000,44.475000],[68.071000,44.415000],[67.981000,44.409000],[67.964000,44.393000],[67.943000,44.393000],[67.811000,44.349000],[67.792000,44.327000],[67.762000,44.316000],[67.701000,44.306000],[67.669000,44.289000],[67.527000,44.229000],[67.413000,44.152000],[67.383000,44.103000],[67.311000,44.158000],[67.270000,44.229000],[67.226000,44.338000],[67.187000,44.497000],[67.172000,44.524000],[67.150000,44.606000],[67.095000,44.650000],[67.039000,44.666000],[66.940000,44.699000],[66.807000,44.666000],[66.732000,44.650000],[66.654000,44.623000],[66.611000,44.617000],[66.569000,44.584000],[66.560000,44.535000],[66.547000,44.464000],[66.508000,44.415000],[66.443000,44.382000],[66.156000,44.333000],[66.111000,44.273000],[66.102000,44.196000],[66.136000,44.120000],[66.140000,44.087000],[66.156000,44.032000],[66.174000,43.863000],[66.165000,43.742000],[66.161000,43.633000],[66.170000,43.606000],[66.301000,43.616000],[66.333000,43.595000],[66.358000,43.458000],[66.365000,43.343000],[66.380000,43.272000],[66.389000,43.212000],[66.396000,43.174000],[66.389000,43.086000],[66.396000,42.966000],[66.394000,42.878000],[66.412000,42.643000],[66.430000,42.627000],[66.482000,42.577000],[66.526000,42.479000],[66.520000,42.435000],[66.508000,42.419000],[66.488000,42.359000],[66.475000,42.342000],[66.461000,42.310000],[66.432000,42.288000],[66.405000,42.238000],[66.342000,42.058000],[66.274000,41.949000],[66.258000,41.861000],[66.231000,41.768000],[66.227000,41.713000],[66.199000,41.615000],[66.188000,41.533000],[66.188000,41.495000],[66.152000,41.336000],[66.152000,41.276000],[66.074000,40.931000],[66.047000,40.724000],[66.022000,40.658000],[66.015000,40.620000],[65.990000,40.549000],[65.834000,40.221000],[65.815000,40.133000],[65.806000,40.111000],[65.806000,40.084000],[65.730000,39.843000],[65.714000,39.838000],[65.714000,39.816000],[65.684000,39.717000],[65.651000,39.679000],[65.640000,39.690000],[65.623000,39.674000],[65.602000,39.685000],[65.591000,39.707000],[65.549000,39.734000],[65.537000,39.750000],[65.488000,39.789000],[65.467000,39.810000],[65.430000,39.816000],[65.393000,39.865000],[65.386000,39.882000],[65.371000,39.898000],[65.348000,39.920000],[65.327000,39.942000],[65.306000,39.942000],[65.306000,39.980000],[65.273000,40.018000],[65.190000,40.149000],[65.117000,40.308000],[65.077000,40.368000],[64.851000,40.538000],[64.793000,40.603000],[64.726000,40.778000],[64.517000,41.046000],[64.487000,41.150000],[64.463000,41.281000],[64.449000,41.407000],[64.429000,41.560000],[64.415000,41.670000],[64.398000,41.697000],[64.378000,41.730000],[64.349000,41.763000],[64.139000,41.746000],[64.124000,41.735000],[64.085000,41.730000],[64.046000,41.719000],[64.021000,41.719000],[63.984000,41.686000],[63.935000,41.610000],[63.947000,41.566000],[64.009000,41.522000],[64.173000,41.533000],[64.193000,41.533000],[64.239000,41.522000],[64.254000,41.517000],[64.283000,41.467000],[64.303000,41.429000],[64.300000,41.276000],[64.308000,41.079000],[64.322000,40.931000],[64.364000,40.817000],[64.393000,40.702000],[64.417000,40.620000],[64.444000,40.527000],[64.490000,40.406000],[64.507000,40.335000],[64.521000,40.281000],[64.543000,40.204000],[64.579000,40.002000],[64.591000,39.871000],[64.601000,39.723000],[64.601000,39.603000],[64.628000,39.466000],[64.690000,39.296000],[64.757000,39.001000],[64.777000,38.870000],[64.774000,38.782000],[64.769000,38.706000],[64.791000,38.449000],[64.899000,38.345000],[64.932000,38.301000],[64.932000,38.263000],[64.949000,38.219000],[65.006000,38.000000],[65.046000,37.858000],[65.063000,37.743000],[65.067000,37.645000],[65.077000,37.607000],[65.084000,37.530000],[65.146000,37.344000],[65.214000,36.978000],[65.209000,36.918000],[65.195000,36.890000],[65.122000,36.901000],[65.037000,36.923000],[65.015000,36.912000],[64.980000,36.868000],[64.987000,36.808000],[64.980000,36.732000],[64.991000,36.688000],[65.003000,36.644000],[64.982000,36.628000],[64.982000,36.573000],[64.965000,36.546000],[64.918000,36.546000],[64.872000,36.562000],[64.846000,36.661000],[64.834000,36.726000],[64.824000,36.775000],[64.762000,36.868000],[64.683000,36.912000],[64.623000,37.000000],[64.546000,37.175000],[64.529000,37.191000],[64.497000,37.350000],[64.483000,37.426000],[64.504000,37.585000],[64.536000,37.672000],[64.533000,37.798000],[64.458000,37.951000],[64.446000,38.115000],[64.422000,38.148000],[64.386000,38.197000],[64.288000,38.208000],[64.156000,38.164000],[64.122000,38.137000],[64.075000,38.071000],[64.026000,37.957000],[64.021000,37.880000],[64.011000,37.825000],[63.989000,37.771000],[63.947000,37.705000],[63.892000,37.525000],[63.897000,37.448000],[63.912000,37.415000],[63.925000,37.388000],[63.967000,37.251000],[63.999000,37.098000],[63.996000,36.972000],[64.006000,36.743000],[64.016000,36.682000],[64.055000,36.371000],[64.102000,36.272000],[64.127000,36.185000],[64.203000,36.212000],[64.239000,36.147000],[64.254000,36.081000],[64.269000,36.010000],[64.273000,35.895000],[64.325000,35.840000],[64.339000,35.813000],[64.386000,35.818000],[64.422000,35.808000],[64.383000,35.518000],[64.403000,35.359000],[64.451000,35.184000],[64.466000,35.184000],[64.485000,35.080000],[64.478000,34.905000],[64.495000,34.812000],[64.531000,34.697000],[64.546000,34.692000],[64.562000,34.703000],[64.628000,34.747000],[64.671000,34.790000],[64.690000,34.801000],[64.729000,34.807000],[64.750000,34.752000],[64.765000,34.719000],[64.796000,34.730000],[64.810000,34.758000],[64.832000,34.763000],[64.870000,34.823000],[64.896000,34.845000],[64.939000,34.856000],[64.960000,34.840000],[64.996000,34.818000],[65.041000,34.801000],[65.053000,34.779000],[65.115000,34.758000],[65.155000,34.730000],[65.444000,34.665000],[65.514000,34.714000],[65.535000,34.747000],[65.577000,34.758000],[65.609000,34.796000],[65.642000,34.807000],[65.735000,34.812000],[65.760000,34.812000],[65.767000,34.829000],[65.785000,34.856000],[65.811000,34.872000],[65.811000,34.894000],[65.838000,34.911000],[65.868000,34.933000],[65.891000,34.933000],[65.949000,34.894000],[66.122000,34.752000],[66.122000,34.725000],[66.134000,34.692000],[66.136000,34.665000],[66.163000,34.572000],[66.218000,34.429000],[66.227000,34.397000],[66.224000,34.380000],[66.238000,34.227000],[66.238000,34.172000],[66.247000,34.079000],[66.279000,33.959000],[66.279000,33.910000],[66.288000,33.833000],[66.290000,33.790000],[66.297000,33.768000],[66.322000,33.609000],[66.322000,33.095000],[66.353000,33.122000],[66.362000,33.144000],[66.376000,33.194000],[66.383000,33.243000],[66.380000,33.352000],[66.403000,33.451000],[66.421000,33.544000],[66.446000,33.544000],[66.488000,33.434000],[66.495000,33.396000],[66.526000,33.303000],[66.609000,33.095000],[66.707000,33.150000],[66.712000,33.128000],[66.769000,33.013000],[66.814000,32.876000],[66.842000,32.838000],[66.889000,32.827000],[66.935000,32.778000],[66.940000,32.745000],[66.981000,32.652000],[67.008000,32.619000],[67.041000,32.614000],[67.065000,32.619000],[67.089000,32.614000],[67.130000,32.554000],[67.141000,32.515000],[67.155000,32.455000],[67.168000,32.428000],[67.179000,32.357000],[67.213000,32.280000],[67.248000,32.215000],[67.257000,32.346000],[67.263000,32.455000],[67.246000,32.576000],[67.233000,32.603000],[67.211000,32.685000],[67.194000,32.734000],[67.172000,32.805000],[67.130000,32.898000],[67.054000,33.073000],[67.039000,33.106000],[67.019000,33.144000],[66.953000,33.297000],[66.895000,33.451000],[66.851000,33.598000],[66.838000,33.664000],[66.816000,33.833000],[66.818000,33.937000],[66.809000,34.058000],[66.745000,34.342000],[66.738000,34.402000],[66.714000,34.528000],[66.689000,34.583000],[66.647000,34.621000],[66.620000,34.632000],[66.609000,34.654000],[66.594000,34.670000],[66.591000,34.692000],[66.594000,34.758000],[66.609000,34.818000],[66.609000,34.922000],[66.594000,35.031000],[66.571000,35.135000],[66.571000,35.162000],[66.567000,35.228000],[66.558000,35.250000],[66.542000,35.354000],[66.482000,35.824000],[66.443000,36.015000],[66.387000,36.349000],[66.383000,36.409000],[66.344000,36.650000],[66.367000,37.027000],[66.371000,37.076000],[66.369000,37.196000],[66.360000,37.289000],[66.326000,37.448000],[66.313000,37.481000],[66.267000,37.727000],[66.238000,37.820000],[66.204000,38.011000],[66.197000,38.028000],[66.165000,38.175000],[66.138000,38.531000],[66.143000,38.629000],[66.165000,38.864000],[66.186000,39.045000],[66.211000,39.225000],[66.218000,39.269000],[66.240000,39.335000],[66.276000,39.526000],[66.279000,39.581000],[66.288000,39.696000],[66.324000,39.903000],[66.331000,39.980000],[66.349000,40.095000],[66.344000,40.133000],[66.338000,40.232000],[66.342000,40.292000],[66.338000,40.308000],[66.344000,40.352000],[66.365000,40.368000],[66.376000,40.406000],[66.394000,40.439000],[66.437000,40.565000],[66.506000,40.680000],[66.596000,40.806000],[66.634000,40.817000],[66.634000,40.838000],[66.678000,40.899000],[66.778000,40.997000],[66.845000,41.079000],[66.865000,41.128000],[67.120000,41.473000],[67.148000,41.500000],[67.220000,41.549000],[67.333000,41.566000],[67.376000,41.533000],[67.422000,41.517000],[67.534000,41.517000],[67.570000,41.467000],[67.589000,41.391000],[67.613000,41.260000],[67.654000,41.227000],[67.701000,41.249000],[67.722000,41.276000],[67.741000,41.287000],[67.769000,41.265000],[67.805000,41.178000],[67.845000,41.063000],[67.850000,41.013000],[67.860000,40.948000],[67.843000,40.866000],[67.835000,40.691000],[67.875000,40.554000],[67.917000,40.445000],[67.974000,40.357000],[68.090000,40.095000],[68.117000,40.073000],[68.161000,39.920000],[68.172000,39.832000],[68.176000,39.767000],[68.209000,39.614000],[68.247000,39.526000],[68.278000,39.488000],[68.438000,39.242000],[68.454000,39.192000],[68.475000,39.149000],[68.498000,39.061000],[68.506000,39.007000],[68.516000,38.892000],[68.551000,38.706000],[68.617000,38.487000],[68.639000,38.427000],[68.654000,38.400000],[68.766000,38.137000],[68.827000,37.940000],[68.868000,37.803000],[68.918000,37.694000],[68.941000,37.694000],[68.941000,37.661000],[68.995000,37.536000],[69.023000,37.432000],[69.047000,37.289000],[69.068000,37.224000],[69.088000,37.224000],[69.088000,37.180000],[69.122000,37.049000],[69.190000,36.808000],[69.232000,36.617000],[69.232000,36.590000],[69.273000,36.218000],[69.301000,35.961000],[69.329000,35.589000],[69.329000,35.501000],[69.337000,35.452000],[69.331000,35.386000],[69.327000,35.277000],[69.329000,35.140000],[69.353000,34.621000],[69.365000,34.566000],[69.391000,34.386000],[69.399000,34.265000],[69.408000,34.069000],[69.400000,34.052000],[69.393000,34.030000],[69.393000,34.008000],[69.395000,33.970000],[69.375000,33.937000],[69.369000,33.921000],[69.349000,33.904000],[69.331000,33.921000],[69.323000,33.937000],[69.309000,33.948000],[69.226000,33.883000],[69.150000,33.790000],[69.142000,33.757000],[69.100000,33.653000],[69.096000,33.626000],[69.072000,33.576000],[69.061000,33.549000],[69.041000,33.500000],[69.025000,33.456000],[69.007000,33.418000],[68.987000,33.363000],[68.975000,33.347000],[68.957000,33.308000],[68.951000,33.270000],[68.939000,33.248000],[68.930000,33.221000],[68.920000,33.210000],[68.912000,33.177000],[68.878000,33.079000],[68.858000,32.997000],[68.862000,32.975000],[68.849000,32.855000],[68.849000,32.822000],[68.843000,32.800000],[68.847000,32.767000],[68.839000,32.630000],[68.841000,32.554000],[68.851000,32.494000],[68.900000,32.548000],[68.977000,32.887000],[69.051000,33.035000],[69.063000,33.062000],[69.074000,33.095000],[69.086000,33.112000],[69.100000,33.139000],[69.128000,33.194000],[69.132000,33.215000],[69.242000,33.462000],[69.273000,33.505000],[69.305000,33.522000],[69.329000,33.511000],[69.351000,33.527000],[69.385000,33.565000],[69.399000,33.593000],[69.434000,33.647000],[69.454000,33.647000],[69.454000,33.675000],[69.511000,33.757000],[69.537000,33.768000],[69.548000,33.751000],[69.572000,33.686000],[69.574000,33.658000],[69.550000,33.549000],[69.529000,33.451000],[69.503000,33.237000],[69.503000,33.008000],[69.529000,32.816000],[69.542000,32.729000],[69.548000,32.598000],[69.562000,32.494000],[69.584000,32.472000],[69.607000,32.466000],[69.627000,32.450000],[69.637000,32.384000],[69.619000,32.220000],[69.625000,32.078000],[69.652000,32.029000],[69.680000,32.018000],[69.709000,32.045000],[69.713000,32.105000],[69.711000,32.193000],[69.707000,32.614000],[69.699000,32.729000],[69.707000,32.756000],[69.746000,32.953000],[69.795000,33.051000],[69.820000,33.084000],[69.843000,33.079000],[69.860000,33.057000],[69.878000,32.997000],[69.893000,32.942000],[69.934000,32.800000],[69.944000,32.751000],[69.959000,32.701000],[69.974000,32.701000],[69.994000,32.532000],[70.026000,32.450000],[70.034000,32.406000],[70.047000,32.357000],[70.057000,32.302000],[70.080000,32.171000],[70.072000,32.144000],[70.034000,32.094000],[70.003000,32.116000],[69.986000,32.155000],[69.992000,32.023000],[70.005000,31.969000],[70.007000,31.914000],[69.955000,31.843000],[69.911000,31.903000],[69.866000,31.908000],[69.814000,31.881000],[69.793000,31.903000],[69.798000,31.859000],[69.802000,31.783000],[69.796000,31.761000],[69.796000,31.739000],[69.789000,31.624000],[69.789000,31.537000],[69.833000,31.378000],[69.888000,31.225000],[69.895000,31.170000],[69.924000,31.088000],[69.959000,31.001000],[69.959000,30.952000],[69.972000,30.869000],[69.971000,30.673000],[69.944000,30.607000],[69.924000,30.607000],[69.888000,30.569000],[69.909000,30.487000],[69.930000,30.448000],[69.959000,30.416000],[69.955000,30.279000],[69.913000,30.208000],[69.857000,30.142000],[69.866000,30.060000],[69.868000,29.984000],[69.901000,29.913000],[69.909000,29.847000],[69.860000,29.650000],[69.872000,29.595000],[69.882000,29.568000],[69.911000,29.508000],[69.963000,29.535000],[70.003000,29.535000],[70.032000,29.480000],[70.044000,29.300000],[70.063000,29.284000],[70.078000,29.289000],[70.099000,29.289000],[70.115000,29.251000],[70.126000,29.202000],[70.137000,29.147000],[70.155000,29.043000],[70.157000,28.994000],[70.164000,28.961000],[70.170000,28.901000],[70.179000,28.830000],[70.202000,28.764000],[70.227000,28.699000],[70.254000,28.655000],[70.265000,28.720000],[70.263000,28.797000],[70.265000,28.852000],[70.261000,28.977000],[70.256000,29.021000],[70.257000,29.070000],[70.250000,29.147000],[70.252000,29.196000],[70.246000,29.322000],[70.254000,29.388000],[70.254000,29.459000],[70.248000,29.541000],[70.252000,29.781000],[70.259000,29.885000],[70.276000,30.044000],[70.290000,30.098000],[70.307000,30.306000],[70.328000,30.470000],[70.352000,30.602000],[70.367000,30.711000],[70.405000,30.935000],[70.456000,31.132000],[70.488000,31.236000],[70.512000,31.323000],[70.540000,31.362000],[70.584000,31.362000],[70.610000,31.318000],[70.625000,31.307000],[70.641000,31.110000],[70.643000,30.629000],[70.613000,30.361000],[70.626000,30.252000],[70.651000,30.131000],[70.710000,29.934000],[70.740000,29.645000],[70.786000,29.524000],[70.799000,29.426000],[70.820000,29.278000],[70.855000,29.256000],[70.886000,29.223000],[70.901000,29.196000],[70.912000,29.147000],[70.923000,29.054000],[70.925000,28.901000],[70.919000,28.824000],[70.899000,28.791000],[70.866000,28.715000],[70.836000,28.699000],[70.636000,28.420000],[70.606000,28.343000],[70.634000,28.174000],[70.716000,28.261000],[70.675000,28.037000],[70.641000,27.736000],[70.658000,27.676000],[70.677000,27.703000],[70.751000,27.895000],[70.768000,27.955000],[70.792000,27.971000],[70.849000,27.780000],[70.899000,27.824000],[70.937000,27.938000],[70.992000,28.250000],[71.027000,28.299000],[71.058000,28.392000],[71.091000,28.458000],[71.108000,28.414000],[71.126000,28.381000],[71.168000,28.141000],[71.187000,27.971000],[71.195000,27.938000],[71.207000,27.840000],[71.206000,27.785000],[71.216000,27.583000],[71.218000,27.517000],[71.224000,27.463000],[71.222000,27.430000],[71.191000,27.370000],[71.155000,27.348000],[71.108000,27.392000],[71.093000,27.419000],[71.086000,27.463000],[71.069000,27.495000],[71.046000,27.517000],[71.025000,27.528000],[70.981000,27.485000],[70.947000,27.441000],[70.925000,27.320000],[70.886000,27.167000],[70.862000,27.124000],[70.781000,27.058000],[70.753000,27.047000],[70.736000,27.025000],[70.682000,26.910000],[70.628000,26.785000],[70.587000,26.631000],[70.598000,26.445000],[70.638000,26.462000],[70.725000,26.555000],[70.784000,26.555000],[70.805000,26.506000],[70.832000,26.522000],[70.853000,26.549000],[70.980000,26.730000],[71.024000,26.779000],[71.044000,26.779000],[71.067000,26.806000],[71.100000,26.812000],[71.124000,26.774000],[71.075000,26.615000],[71.036000,26.511000],[70.987000,26.413000],[70.893000,26.210000],[70.875000,26.183000],[70.641000,25.674000],[70.542000,25.505000],[70.512000,25.434000],[70.482000,25.385000],[70.318000,25.204000],[70.280000,25.144000],[70.212000,25.007000],[70.212000,24.953000],[70.248000,24.783000],[70.265000,24.712000],[70.267000,24.663000],[70.352000,24.723000],[70.392000,24.778000],[70.503000,24.920000],[70.617000,25.095000],[70.708000,25.264000],[70.762000,25.374000],[70.796000,25.434000],[70.818000,25.483000],[70.842000,25.516000],[71.042000,25.882000],[71.067000,25.871000],[71.071000,25.811000],[71.042000,25.664000],[71.044000,25.587000],[71.069000,25.521000],[71.111000,25.494000],[71.102000,25.417000],[71.049000,25.286000],[71.067000,25.117000],[71.098000,25.057000],[71.113000,24.996000],[71.153000,24.920000],[71.175000,24.854000],[71.186000,24.805000],[71.195000,24.663000],[71.158000,24.603000],[71.102000,24.592000],[71.031000,24.575000],[71.044000,24.378000],[71.055000,24.329000],[71.058000,24.275000],[71.016000,24.198000],[71.002000,24.231000],[70.969000,24.275000],[70.956000,24.307000],[70.925000,24.439000],[70.858000,24.526000],[70.864000,24.406000],[70.868000,24.307000],[70.796000,24.176000],[70.734000,24.100000],[70.714000,23.777000],[70.682000,23.689000],[70.602000,23.509000],[70.552000,23.410000],[70.529000,23.345000],[70.507000,23.285000],[70.477000,23.236000],[70.418000,23.225000],[70.394000,23.252000],[70.341000,23.257000],[70.288000,23.263000],[70.261000,23.367000],[70.223000,23.460000],[70.199000,23.449000],[70.178000,23.410000],[70.166000,23.389000],[70.134000,23.230000],[70.126000,23.126000],[70.130000,23.093000],[70.155000,23.033000],[70.212000,22.995000],[70.257000,22.973000],[70.275000,22.940000],[70.284000,22.886000],[70.242000,22.634000],[70.227000,22.541000],[70.210000,22.377000],[70.214000,22.339000],[70.259000,22.350000],[70.297000,22.421000],[70.382000,22.711000],[70.420000,22.700000],[70.452000,22.634000],[70.450000,22.497000],[70.415000,22.399000],[70.398000,22.371000],[70.405000,22.295000],[70.432000,22.158000],[70.450000,22.158000],[70.520000,22.060000],[70.539000,21.972000],[70.542000,21.759000],[70.524000,21.693000],[70.428000,21.568000],[70.439000,21.491000],[70.452000,21.305000],[70.486000,21.065000],[70.388000,20.890000],[70.333000,21.021000],[70.322000,21.108000],[70.313000,21.343000],[70.314000,21.387000],[70.240000,21.633000],[70.218000,21.650000],[70.200000,21.639000],[70.166000,21.584000],[70.141000,21.590000],[70.105000,21.672000],[70.088000,21.693000],[70.057000,21.650000],[70.051000,21.617000],[70.080000,21.486000],[70.097000,21.453000],[70.143000,21.343000],[70.197000,21.168000],[70.216000,21.075000],[70.237000,21.043000],[70.218000,20.977000],[70.195000,20.955000],[70.153000,20.950000],[70.107000,20.933000],[70.088000,20.928000],[70.038000,20.911000],[70.005000,20.857000],[69.994000,20.775000],[69.980000,20.731000],[70.001000,20.682000],[70.070000,20.698000],[70.078000,20.660000],[70.072000,20.627000],[70.034000,20.501000],[70.022000,20.463000],[70.011000,20.403000],[70.005000,20.365000],[69.988000,20.321000],[69.949000,20.233000],[69.924000,20.228000],[69.907000,20.255000],[69.891000,20.266000],[69.862000,20.244000],[69.847000,20.217000],[69.783000,20.097000],[69.773000,20.075000],[69.728000,19.954000],[69.730000,19.883000],[69.738000,19.856000],[69.736000,19.829000],[69.754000,19.807000],[69.810000,19.785000],[69.843000,19.807000],[69.857000,19.818000],[69.872000,19.845000],[69.893000,19.867000],[69.967000,19.965000],[69.999000,19.987000],[70.015000,20.009000],[70.065000,20.069000],[70.080000,20.075000],[70.097000,20.064000],[70.103000,20.036000],[70.111000,20.009000],[70.120000,19.965000],[70.126000,19.872000],[70.101000,19.829000],[70.013000,19.703000],[69.978000,19.725000],[69.984000,19.637000],[69.994000,19.583000],[69.988000,19.550000],[69.982000,19.495000],[69.932000,19.446000],[69.920000,19.468000],[69.899000,19.506000],[69.882000,19.533000],[69.841000,19.572000],[69.802000,19.561000],[69.813000,19.948000],[69.822000,19.862000],[69.826000,19.814000],[69.872000,19.664000],[69.905000,19.599000],[69.941000,19.562000],[69.961000,19.519000],[69.997000,19.508000],[70.006000,19.428000],[70.010000,19.283000],[70.001000,19.245000],[69.968000,19.202000],[69.953000,19.165000],[69.924000,19.154000],[69.901000,19.154000],[69.886000,19.159000],[69.861000,19.132000],[69.846000,19.175000],[69.842000,19.213000],[69.822000,19.245000],[69.813000,19.288000],[69.786000,19.320000],[69.769000,19.315000],[69.745000,19.283000],[69.715000,19.250000],[69.693000,19.256000],[69.656000,19.288000],[69.643000,19.331000],[69.606000,19.401000],[69.552000,19.460000],[69.489000,19.572000],[69.487000,19.599000],[69.450000,19.701000],[69.432000,19.717000],[69.430000,19.739000],[69.407000,19.814000],[69.399000,19.857000],[69.381000,19.841000],[69.377000,19.755000],[69.374000,19.648000],[69.362000,19.583000],[69.362000,19.556000],[69.366000,19.519000],[69.362000,19.503000],[69.385000,19.460000],[69.413000,19.363000],[69.473000,19.309000],[69.489000,19.234000],[69.548000,19.046000],[69.579000,19.004000],[69.631000,18.945000],[69.637000,18.928000],[69.658000,18.886000],[69.666000,18.864000],[69.670000,18.805000],[69.680000,18.789000],[69.691000,18.751000],[69.705000,18.725000],[69.720000,18.660000],[69.713000,18.580000],[69.713000,18.558000],[69.695000,18.526000],[69.655000,18.553000],[69.639000,18.606000],[69.637000,18.628000],[69.620000,18.687000],[69.608000,18.714000],[69.583000,18.725000],[69.577000,18.708000],[69.559000,18.746000],[69.538000,18.810000],[69.534000,18.859000],[69.514000,18.886000],[69.503000,18.902000],[69.481000,18.869000],[69.466000,18.569000],[69.475000,18.504000],[69.489000,18.456000],[69.509000,18.424000],[69.530000,18.429000],[69.552000,18.386000],[69.555000,18.343000],[69.546000,18.268000],[69.555000,18.252000],[69.571000,18.263000],[69.604000,18.274000],[69.639000,18.236000],[69.643000,18.188000],[69.637000,18.145000],[69.610000,18.113000],[69.577000,18.156000],[69.518000,18.145000],[69.505000,18.166000],[69.479000,18.161000],[69.432000,18.209000],[69.399000,18.182000],[69.393000,18.140000],[69.399000,18.075000],[69.387000,18.027000],[69.379000,17.989000],[69.362000,17.925000],[69.315000,17.785000],[69.301000,17.737000],[69.244000,17.651000],[69.224000,17.630000],[69.210000,17.614000],[69.200000,17.603000],[69.162000,17.635000],[69.135000,17.630000],[69.113000,17.597000],[69.109000,17.581000],[69.091000,17.565000],[69.063000,17.533000],[69.033000,17.555000],[69.021000,17.581000],[69.021000,17.608000],[69.025000,17.635000],[69.023000,17.662000],[69.009000,17.716000],[68.973000,17.705000],[68.965000,17.678000],[68.947000,17.614000],[68.939000,17.544000],[68.931000,17.522000],[68.929000,17.501000],[68.905000,17.463000],[68.831000,17.453000],[68.833000,17.436000],[68.827000,17.420000],[68.827000,17.399000],[68.821000,17.367000],[68.808000,17.335000],[68.808000,17.286000],[68.808000,17.259000],[68.788000,17.115000],[68.788000,17.023000],[68.784000,16.862000],[68.762000,16.825000],[68.748000,16.819000],[68.722000,16.873000],[68.718000,16.943000],[68.716000,17.104000],[68.714000,17.136000],[68.705000,17.190000],[68.707000,17.206000],[68.695000,17.243000],[68.677000,17.372000],[68.655000,17.367000],[68.647000,17.340000],[68.622000,17.292000],[68.620000,17.243000],[68.578000,17.200000],[68.563000,17.184000],[68.520000,17.163000],[68.529000,17.120000],[68.531000,17.082000],[68.553000,16.986000],[68.573000,16.884000],[68.576000,16.830000],[68.596000,16.744000],[68.598000,16.696000],[68.594000,16.594000],[68.596000,16.497000],[68.590000,16.460000],[68.561000,16.406000],[68.531000,16.422000],[68.498000,16.599000],[68.463000,16.669000],[68.408000,16.621000],[68.396000,16.680000],[68.367000,16.696000],[68.342000,16.717000],[68.311000,16.674000],[68.231000,16.605000],[68.164000,16.524000],[68.167000,16.497000],[68.173000,16.465000],[68.183000,16.390000],[68.191000,16.347000],[68.196000,16.299000],[68.206000,16.267000],[68.220000,16.256000],[68.282000,16.283000],[68.315000,16.277000],[68.334000,16.283000],[68.381000,16.191000],[68.471000,16.057000],[68.527000,16.095000],[68.561000,16.073000],[68.563000,16.052000],[68.588000,16.009000],[68.582000,15.971000],[68.545000,15.902000],[68.527000,15.880000],[68.514000,15.891000],[68.506000,15.869000],[68.457000,15.826000],[68.451000,15.751000],[68.449000,15.708000],[68.412000,15.606000],[68.396000,15.596000],[68.354000,15.537000],[68.336000,15.563000],[68.317000,15.623000],[68.317000,15.671000],[68.330000,15.757000],[68.338000,15.880000],[68.338000,15.934000],[68.303000,16.014000],[68.291000,16.047000],[68.274000,16.052000],[68.249000,16.063000],[68.210000,16.057000],[68.169000,16.052000],[68.158000,15.987000],[68.160000,15.945000],[68.167000,15.912000],[68.171000,15.843000],[68.189000,15.725000],[68.189000,15.617000],[68.175000,15.574000],[68.171000,15.499000],[68.162000,15.478000],[68.158000,15.445000],[68.150000,15.424000],[68.146000,15.365000],[68.125000,15.290000],[68.119000,15.252000],[68.100000,15.172000],[68.096000,15.129000],[68.098000,15.054000],[68.092000,14.952000],[68.088000,14.903000],[68.090000,14.855000],[68.069000,14.753000],[68.036000,14.721000],[68.011000,14.764000],[68.000000,14.812000],[68.002000,14.920000],[68.006000,15.000000],[68.013000,15.048000],[68.017000,15.263000],[68.044000,15.354000],[68.056000,15.424000],[68.069000,15.472000],[68.075000,15.537000],[68.033000,15.762000],[68.013000,15.843000],[67.996000,15.945000],[67.981000,15.993000],[67.967000,16.020000],[67.929000,16.052000],[67.902000,15.998000],[67.895000,15.961000],[67.891000,15.902000],[67.902000,15.837000],[67.921000,15.773000],[67.927000,15.730000],[67.918000,15.698000],[67.916000,15.649000],[67.923000,15.606000],[67.931000,15.542000],[67.923000,15.494000],[67.898000,15.478000],[67.881000,15.504000],[67.805000,15.494000],[67.786000,15.478000],[67.782000,15.419000],[67.782000,15.268000],[67.813000,15.097000],[67.824000,15.005000],[67.832000,14.930000],[67.826000,14.877000],[67.792000,14.850000],[67.771000,14.855000],[67.757000,14.893000],[67.740000,14.887000],[67.687000,14.952000],[67.617000,15.027000],[67.581000,15.134000],[67.559000,15.258000],[67.530000,15.333000],[67.510000,15.531000],[67.489000,15.665000],[67.444000,15.692000],[67.451000,15.521000],[67.453000,15.301000],[67.474000,15.107000],[67.453000,14.737000],[67.440000,14.646000],[67.423000,14.496000],[67.434000,14.377000],[67.446000,14.297000],[67.393000,14.216000],[67.365000,14.195000],[67.331000,14.152000],[67.305000,14.061000],[67.281000,13.970000],[67.253000,13.916000],[67.225000,13.932000],[67.195000,13.970000],[67.134000,13.959000],[67.115000,13.964000],[67.089000,13.943000],[67.074000,13.878000],[67.058000,13.841000],[67.013000,13.776000],[66.991000,13.674000],[67.013000,13.551000],[67.017000,13.481000],[66.952000,13.406000],[66.949000,13.460000],[66.945000,13.492000],[66.949000,13.583000],[66.954000,13.664000],[66.947000,13.712000],[66.917000,13.771000],[66.897000,13.771000],[66.871000,13.637000],[66.864000,13.605000],[66.866000,13.519000],[66.833000,13.470000],[66.801000,13.454000],[66.805000,13.433000],[66.805000,13.342000],[66.794000,13.224000],[66.768000,13.202000],[66.770000,13.229000],[66.761000,13.250000],[66.701000,13.320000],[66.677000,13.428000],[66.668000,13.524000],[66.666000,13.594000],[66.653000,13.674000],[66.580000,13.766000],[66.540000,13.739000],[66.529000,13.642000],[66.520000,13.621000],[66.520000,13.589000],[66.511000,13.529000],[66.513000,13.476000],[66.491000,13.347000],[66.487000,13.304000],[66.451000,13.224000],[66.447000,13.181000],[66.431000,13.127000],[66.389000,13.111000],[66.360000,13.170000],[66.351000,13.191000],[66.286000,13.186000],[66.265000,13.143000],[66.130000,12.998000],[66.079000,12.939000],[65.965000,12.864000],[65.947000,12.784000],[65.929000,12.719000],[65.892000,12.708000],[65.872000,12.746000],[65.845000,12.778000],[65.790000,12.800000],[65.758000,12.757000],[65.760000,12.708000],[65.774000,12.585000],[65.813000,12.499000],[65.787000,12.413000],[65.767000,12.370000],[65.636000,12.392000],[65.629000,12.478000],[65.636000,12.521000],[65.632000,12.574000],[65.599000,12.590000],[65.542000,12.580000],[65.516000,12.569000],[65.502000,12.596000],[65.516000,12.741000],[65.537000,12.778000],[65.544000,12.875000],[65.526000,12.907000],[65.512000,12.912000],[65.484000,12.886000],[65.454000,12.843000],[65.421000,12.773000],[65.407000,12.724000],[65.380000,12.665000],[65.324000,12.563000],[65.303000,12.472000],[65.319000,12.462000],[65.389000,12.419000],[65.410000,12.370000],[65.363000,12.225000],[65.310000,12.102000],[65.254000,11.989000],[65.247000,11.946000],[65.228000,11.898000],[65.177000,11.710000],[65.149000,11.651000],[65.146000,11.619000],[65.116000,11.560000],[65.067000,11.506000],[65.012000,11.469000],[65.005000,11.496000],[65.017000,11.576000],[65.045000,11.662000],[65.071000,11.673000],[65.097000,11.758000],[65.151000,11.898000],[65.158000,11.936000],[65.149000,11.957000],[65.135000,12.064000],[65.067000,11.995000],[65.029000,11.903000],[64.982000,11.807000],[64.965000,11.737000],[64.892000,11.608000],[64.864000,11.565000],[64.828000,11.512000],[64.797000,11.442000],[64.804000,11.345000],[64.776000,11.190000],[64.740000,11.120000],[64.719000,11.055000],[64.697000,11.029000],[64.662000,10.970000],[64.597000,10.852000],[64.583000,10.798000],[64.554000,10.733000],[64.475000,10.487000],[64.432000,10.449000],[64.388000,10.369000],[64.345000,10.342000],[64.321000,10.293000],[64.275000,10.240000],[64.248000,10.272000],[64.236000,10.331000],[64.212000,10.454000],[64.195000,10.470000],[64.146000,10.481000],[64.132000,10.481000],[64.097000,10.460000],[64.071000,10.369000],[64.061000,10.326000],[64.063000,10.272000],[64.049000,10.057000],[64.005000,9.843000],[63.990000,9.826000],[63.978000,9.800000],[63.953000,9.789000],[63.944000,9.762000],[64.000000,9.869000],[63.983000,9.837000],[63.956000,9.821000],[63.926000,9.810000],[63.899000,9.762000],[63.875000,9.730000],[63.858000,9.719000],[63.821000,9.676000],[63.794000,9.676000],[63.754000,9.639000],[63.735000,9.628000],[63.693000,9.580000],[63.648000,9.521000],[63.633000,9.521000],[63.616000,9.483000],[63.584000,9.397000],[63.601000,9.166000],[63.606000,8.952000],[63.604000,8.898000],[63.566000,8.710000],[63.554000,8.678000],[63.537000,8.710000],[63.537000,8.737000],[63.527000,8.780000],[63.507000,8.850000],[63.442000,8.903000],[63.420000,8.887000],[63.412000,8.844000],[63.412000,8.812000],[63.422000,8.791000],[63.420000,8.753000],[63.395000,8.533000],[63.385000,8.485000],[63.360000,8.485000],[63.337000,8.538000],[63.320000,8.555000],[63.280000,8.571000],[63.202000,8.597000],[63.126000,8.576000],[63.114000,8.549000],[63.124000,8.501000],[63.146000,8.442000],[63.151000,8.420000],[63.222000,8.335000],[63.249000,8.275000],[63.287000,8.200000],[63.285000,8.184000],[63.287000,8.157000],[63.269000,8.109000],[63.237000,8.098000],[63.219000,8.104000],[63.204000,8.131000],[63.129000,8.200000],[63.114000,8.249000],[63.071000,8.340000],[63.061000,8.372000],[63.028000,8.442000],[63.010000,8.490000],[62.990000,8.512000],[62.962000,8.560000],[62.931000,8.581000],[62.931000,8.501000],[62.982000,8.404000],[63.013000,8.324000],[63.040000,8.163000],[63.061000,8.131000],[63.091000,8.050000],[63.151000,7.862000],[63.177000,7.830000],[63.197000,7.819000],[63.214000,7.787000],[63.262000,7.771000],[63.302000,7.755000],[63.320000,7.744000],[63.345000,7.707000],[63.360000,7.621000],[63.350000,7.508000],[63.330000,7.481000],[63.307000,7.465000],[63.227000,7.454000],[63.184000,7.460000],[63.214000,7.401000],[63.239000,7.309000],[63.247000,7.245000],[63.249000,7.143000],[63.232000,7.084000],[63.197000,7.030000],[63.161000,7.009000],[63.109000,7.004000],[63.096000,7.057000],[63.101000,7.079000],[63.088000,7.100000],[63.088000,7.122000],[63.030000,7.132000],[63.007000,7.138000],[63.007000,7.165000],[63.023000,7.208000],[63.018000,7.369000],[62.997000,7.454000],[62.929000,7.497000],[62.937000,7.524000],[62.942000,7.599000],[62.954000,7.782000],[62.944000,7.819000],[62.942000,7.868000],[62.926000,7.948000],[62.878000,7.991000],[62.865000,8.002000],[62.853000,7.948000],[62.850000,7.905000],[62.860000,7.857000],[62.853000,7.771000],[62.837000,7.707000],[62.830000,7.648000],[62.794000,7.626000],[62.771000,7.572000],[62.748000,7.487000],[62.753000,7.460000],[62.761000,7.352000],[62.774000,7.299000],[62.809000,7.095000],[62.817000,6.961000],[62.830000,6.923000],[62.832000,6.886000],[62.853000,6.751000],[62.845000,6.719000],[62.835000,6.574000],[62.822000,6.510000],[62.764000,6.504000],[62.738000,6.526000],[62.720000,6.564000],[62.687000,6.676000],[62.682000,6.773000],[62.641000,6.902000],[62.628000,6.934000],[62.584000,7.175000],[62.533000,7.224000],[62.440000,7.213000],[62.407000,7.181000],[62.376000,7.181000],[62.371000,7.159000],[62.316000,7.079000],[62.303000,7.052000],[62.306000,7.030000],[62.347000,6.971000],[62.500000,6.923000],[62.530000,6.875000],[62.528000,6.853000],[62.541000,6.789000],[62.523000,6.714000],[62.507000,6.649000],[62.471000,6.580000],[62.445000,6.521000],[62.510000,6.338000],[62.494000,6.274000],[62.448000,6.263000],[62.435000,6.247000],[62.399000,6.258000],[62.327000,6.247000],[62.365000,6.145000],[62.371000,6.097000],[62.389000,6.016000],[62.404000,5.995000],[62.427000,5.758000],[62.420000,5.683000],[62.404000,5.614000],[62.414000,5.565000],[62.417000,5.517000],[62.453000,5.410000],[62.469000,5.394000],[62.474000,5.329000],[62.352000,5.313000],[62.306000,5.324000],[62.285000,5.340000],[62.233000,5.404000],[62.218000,5.399000],[62.220000,5.447000],[62.199000,5.635000],[62.186000,5.678000],[62.181000,5.893000],[62.147000,5.995000],[62.145000,6.043000],[62.127000,6.097000],[62.074000,6.376000],[62.082000,6.413000],[62.087000,6.531000],[62.064000,6.547000],[62.038000,6.553000],[62.014000,6.521000],[62.004000,6.413000],[62.017000,6.301000],[62.061000,5.984000],[62.082000,5.898000],[62.087000,5.866000],[62.093000,5.748000],[62.082000,5.710000],[62.087000,5.630000],[62.072000,5.394000],[62.040000,5.270000],[61.959000,5.190000],[61.928000,5.238000],[61.925000,5.324000],[61.928000,5.351000],[61.923000,5.404000],[61.925000,5.474000],[61.870000,5.474000],[61.852000,5.469000],[61.833000,5.453000],[61.759000,5.426000],[61.744000,5.436000],[61.725000,5.549000],[61.670000,5.576000],[61.648000,5.544000],[61.635000,5.415000],[61.603000,5.329000],[61.566000,5.297000],[61.455000,5.302000],[61.428000,5.442000],[61.449000,5.555000],[61.449000,5.662000],[61.476000,5.984000],[61.465000,6.107000],[61.460000,6.193000],[61.465000,6.301000],[61.478000,6.408000],[61.463000,6.649000],[61.441000,6.751000],[61.433000,6.880000],[61.439000,6.966000],[61.455000,7.009000],[61.619000,7.122000],[61.638000,7.148000],[61.701000,7.299000],[61.699000,7.347000],[61.691000,7.379000],[61.675000,7.395000],[61.625000,7.406000],[61.595000,7.395000],[61.558000,7.331000],[61.526000,7.309000],[61.486000,7.320000],[61.463000,7.433000],[61.478000,7.497000],[61.452000,7.594000],[61.423000,7.599000],[61.391000,7.481000],[61.366000,7.476000],[61.318000,7.497000],[61.278000,7.503000],[61.235000,7.530000],[61.273000,7.352000],[61.305000,7.283000],[61.332000,7.208000],[61.334000,6.993000],[61.308000,6.939000],[61.289000,6.918000],[61.308000,6.483000],[61.334000,6.370000],[61.284000,6.000000],[61.259000,5.839000],[61.281000,5.549000],[61.302000,5.313000],[61.251000,5.216000],[61.211000,5.259000],[61.144000,5.302000],[61.106000,5.286000],[61.085000,5.356000],[61.098000,5.458000],[61.082000,5.447000],[61.066000,5.490000],[61.042000,5.474000],[61.017000,5.426000],[61.001000,5.399000],[60.977000,5.383000],[60.874000,5.410000],[60.874000,5.485000],[60.901000,5.506000],[60.901000,5.549000],[60.871000,5.576000],[60.833000,5.581000],[60.798000,5.603000],[60.784000,5.624000],[60.754000,5.635000],[60.757000,5.737000],[60.770000,5.801000],[60.792000,5.812000],[60.809000,5.812000],[60.841000,5.834000],[60.887000,5.866000],[60.871000,5.903000],[60.795000,5.925000],[60.779000,5.909000],[60.749000,5.914000],[60.667000,5.877000],[60.629000,5.726000],[60.639000,5.614000],[60.642000,5.581000],[60.629000,5.544000],[60.618000,5.522000],[60.557000,5.533000],[60.538000,5.544000],[60.519000,5.651000],[60.489000,5.689000],[60.459000,5.748000],[60.428000,5.775000],[60.304000,5.839000],[60.313000,5.871000],[60.335000,5.871000],[60.354000,5.898000],[60.426000,6.011000],[60.439000,6.021000],[60.629000,6.247000],[60.713000,6.499000],[60.713000,6.537000],[60.740000,6.714000],[60.730000,6.757000],[60.713000,6.880000],[60.705000,6.907000],[60.700000,6.961000],[60.702000,7.009000],[60.697000,7.068000],[60.705000,7.106000],[60.683000,7.159000],[60.648000,7.165000],[60.634000,7.138000],[60.609000,6.987000],[60.541000,6.875000],[60.513000,6.848000],[60.442000,6.805000],[60.406000,6.784000],[60.376000,6.778000],[60.362000,6.757000],[60.315000,6.730000],[60.304000,6.687000],[60.304000,6.633000],[60.335000,6.585000],[60.373000,6.590000],[60.390000,6.580000],[60.412000,6.580000],[60.516000,6.574000],[60.544000,6.553000],[60.541000,6.478000],[60.530000,6.462000],[60.362000,6.322000],[60.321000,6.274000],[60.310000,6.252000],[60.268000,6.215000],[60.230000,6.150000],[60.196000,6.134000],[60.171000,6.156000],[60.169000,6.182000],[60.160000,6.204000],[60.144000,6.247000],[60.121000,6.263000],[60.110000,6.274000],[60.055000,6.290000],[60.019000,6.279000],[59.999000,6.247000],[60.005000,6.215000],[59.996000,6.172000],[60.002000,6.156000],[59.991000,6.123000],[59.968000,6.027000],[59.949000,5.968000],[59.915000,5.893000],[59.912000,5.855000],[59.904000,5.801000],[59.845000,5.694000],[59.826000,5.673000],[59.823000,5.651000],[59.806000,5.630000],[59.803000,5.603000],[59.795000,5.587000],[59.694000,5.436000],[59.643000,5.426000],[59.621000,5.410000],[59.601000,5.415000],[59.553000,5.442000],[59.558000,5.479000],[59.550000,5.501000],[59.615000,5.555000],[59.649000,5.614000],[59.660000,5.699000],[59.637000,5.855000],[59.629000,5.898000],[59.635000,6.016000],[59.654000,6.064000],[59.666000,6.188000],[59.713000,6.258000],[59.736000,6.279000],[59.756000,6.279000],[59.764000,6.301000],[59.744000,6.386000],[59.697000,6.408000],[59.666000,6.392000],[59.637000,6.381000],[59.601000,6.419000],[59.589000,6.478000],[59.584000,6.537000],[59.553000,6.542000],[59.536000,6.521000],[59.527000,6.472000],[59.505000,6.429000],[59.505000,6.376000],[59.491000,6.343000],[59.468000,6.317000],[59.423000,6.301000],[59.411000,6.279000],[59.352000,6.306000],[59.349000,6.327000],[59.329000,6.365000],[59.312000,6.413000],[59.303000,6.483000],[59.283000,6.564000],[59.255000,6.521000],[59.235000,6.467000],[59.218000,6.343000],[59.192000,6.252000],[59.195000,6.231000],[59.195000,6.156000],[59.232000,5.995000],[59.229000,5.946000],[59.232000,5.882000],[59.212000,5.796000],[59.186000,5.780000],[59.083000,5.780000],[59.063000,5.801000],[58.966000,5.957000],[58.862000,6.145000],[58.784000,6.236000],[58.749000,6.295000],[58.715000,6.322000],[58.683000,6.349000],[58.642000,6.365000],[58.584000,6.408000],[58.564000,6.445000],[58.532000,6.467000],[58.427000,6.633000],[58.401000,6.682000],[58.377000,6.703000],[58.357000,6.757000],[58.342000,6.773000],[58.339000,6.902000],[58.345000,7.004000],[58.281000,7.148000],[58.263000,7.261000],[58.263000,7.428000],[58.287000,7.470000],[58.316000,7.626000],[58.295000,7.744000],[58.292000,7.835000],[58.307000,7.857000],[58.325000,7.927000],[58.339000,7.959000],[58.401000,7.959000],[58.430000,7.927000],[58.450000,7.932000],[58.468000,7.970000],[58.450000,8.007000],[58.421000,8.179000],[58.421000,8.249000],[58.436000,8.265000],[58.477000,8.367000],[58.500000,8.426000],[58.552000,8.458000],[58.610000,8.501000],[58.622000,8.533000],[58.645000,8.571000],[58.683000,8.651000],[58.706000,8.683000],[58.706000,8.710000],[58.755000,8.860000],[58.770000,8.893000],[58.807000,8.930000],[58.862000,9.021000],[58.891000,9.081000],[58.908000,9.134000],[58.946000,9.188000],[58.954000,9.215000],[58.980000,9.274000],[59.012000,9.311000],[59.029000,9.424000],[59.049000,9.483000],[59.081000,9.494000],[59.118000,9.526000],[59.141000,9.526000],[59.149000,9.547000],[59.235000,9.612000],[59.246000,9.644000],[59.232000,9.671000],[59.221000,9.735000],[59.241000,9.767000],[59.278000,9.789000],[59.320000,9.800000],[59.335000,9.784000],[59.369000,9.784000],[59.346000,9.945000],[59.349000,10.063000],[59.357000,10.116000],[59.354000,10.197000],[59.374000,10.309000],[59.377000,10.422000],[59.389000,10.492000],[59.437000,10.626000],[59.434000,10.642000],[59.423000,10.733000],[59.420000,10.760000],[59.428000,10.841000],[59.448000,10.884000],[59.496000,10.916000],[59.476000,10.996000],[59.457000,11.088000],[59.445000,11.104000],[59.423000,11.227000],[59.442000,11.313000],[59.386000,11.361000],[59.249000,11.372000],[59.223000,11.372000],[59.043000,11.479000],[59.006000,11.496000],[58.980000,11.533000],[58.790000,11.603000],[58.773000,11.592000],[58.758000,11.603000],[58.651000,11.646000],[58.605000,11.662000],[58.567000,11.667000],[58.546000,11.699000],[58.511000,11.737000],[58.462000,11.801000],[58.424000,11.834000],[58.398000,11.898000],[58.330000,11.952000],[58.287000,11.989000],[58.187000,12.054000],[58.160000,12.054000],[58.078000,12.075000],[57.957000,12.086000],[57.815000,12.145000],[57.725000,12.215000],[57.633000,12.343000],[57.573000,12.424000],[57.471000,12.472000],[57.384000,12.494000],[57.324000,12.483000],[57.188000,12.537000],[57.101000,12.580000],[57.001000,12.649000],[56.922000,12.730000],[56.763000,12.864000],[56.723000,12.880000],[56.619000,12.875000],[56.598000,12.859000],[56.348000,12.848000],[56.286000,12.853000],[56.283000,12.837000],[56.302000,12.757000],[56.320000,12.708000],[56.231000,12.757000],[56.190000,12.789000],[56.035000,13.009000],[55.991000,13.036000],[55.941000,13.047000],[55.888000,13.047000],[55.841000,13.063000],[55.779000,13.057000],[55.766000,13.068000],[55.738000,13.068000],[55.688000,13.084000],[55.596000,13.063000],[55.565000,13.084000],[55.521000,13.079000],[55.429000,13.208000],[55.442000,13.320000],[55.499000,13.556000],[55.492000,13.631000],[55.473000,13.766000],[55.426000,14.168000],[55.410000,14.453000],[55.420000,14.501000],[55.439000,14.512000],[55.445000,14.555000],[55.486000,14.603000],[55.546000,14.651000],[55.571000,14.689000],[55.577000,14.721000],[55.587000,14.850000],[55.603000,14.920000],[55.647000,15.011000],[55.684000,15.043000],[55.807000,15.027000],[55.938000,15.070000],[56.004000,15.075000],[56.054000,15.054000],[56.209000,15.182000],[56.240000,15.209000],[56.262000,15.290000],[56.280000,15.349000],[56.280000,15.397000],[56.271000,15.483000],[56.255000,15.499000],[56.243000,15.574000],[56.249000,15.655000],[56.302000,15.746000],[56.336000,15.767000],[56.348000,15.794000],[56.358000,15.853000],[56.379000,15.961000],[56.410000,16.014000],[56.432000,16.052000],[56.459000,16.041000],[56.533000,16.111000],[56.567000,16.132000],[56.989000,16.272000],[57.040000,16.304000],[57.092000,16.315000],[57.122000,16.342000],[57.222000,16.406000],[57.246000,16.449000],[57.336000,16.530000],[57.435000,16.567000],[57.453000,16.546000],[57.537000,16.524000],[57.633000,16.556000],[57.681000,16.653000],[57.728000,16.685000],[57.767000,16.728000],[57.880000,16.803000],[57.912000,16.825000],[57.957000,16.868000],[58.007000,16.900000],[58.034000,16.905000],[58.243000,16.835000],[58.345000,16.830000],[58.479000,16.878000],[58.564000,16.932000],[58.573000,16.970000],[58.607000,17.013000],[58.631000,17.120000],[58.668000,17.190000],[58.700000,17.265000],[58.744000,17.410000],[58.810000,17.716000],[58.848000,17.780000],[58.891000,17.812000],[58.920000,17.882000],[58.971000,17.930000],[59.081000,17.989000],[59.135000,17.973000],[59.146000,17.995000],[59.420000,18.075000],[59.454000,18.064000],[59.476000,18.011000],[59.479000,17.995000],[59.496000,17.957000],[59.547000,17.936000],[59.604000,17.941000],[59.626000,17.962000],[59.674000,18.102000],[59.688000,18.172000],[59.722000,18.247000],[59.767000,18.370000],[59.823000,18.467000],[59.871000,18.510000],[59.915000,18.590000],[59.954000,18.644000],[59.996000,18.682000],[60.030000,18.692000],[60.083000,18.725000],[60.194000,18.730000],[60.257000,18.708000],[60.288000,18.655000],[60.313000,18.590000],[60.370000,18.499000],[60.409000,18.478000],[60.420000,18.440000],[60.557000,18.263000],[60.607000,18.166000],[60.626000,18.118000],[60.629000,18.086000],[60.675000,17.962000],[60.691000,17.909000],[60.724000,17.877000],[60.765000,17.801000],[60.841000,17.710000],[60.879000,17.662000],[60.893000,17.630000],[60.990000,17.528000],[61.117000,17.415000],[61.179000,17.356000],[61.420000,17.286000],[61.460000,17.292000],[61.521000,17.259000],[61.670000,17.233000],[61.802000,17.184000],[61.941000,17.195000],[61.944000,17.243000],[61.933000,17.270000],[61.836000,17.351000],[61.912000,17.394000],[61.972000,17.383000],[62.019000,17.394000],[62.059000,17.372000],[62.391000,17.410000],[62.412000,17.399000],[62.541000,17.404000],[62.561000,17.426000],[62.607000,17.436000],[62.674000,17.404000],[62.679000,17.496000],[62.689000,17.512000],[62.692000,17.560000],[62.707000,17.597000],[62.817000,17.748000],[62.837000,17.759000],[62.878000,17.801000],[62.883000,17.823000],[62.947000,17.839000],[62.964000,17.823000],[63.000000,17.818000],[63.088000,17.764000],[63.114000,17.759000],[63.161000,17.726000],[63.164000,17.753000],[63.106000,17.925000],[63.086000,17.962000],[63.091000,18.075000],[63.109000,18.177000],[63.109000,18.204000],[63.124000,18.247000],[63.174000,18.317000],[63.202000,18.333000],[63.315000,18.327000],[63.345000,18.354000],[63.370000,18.402000],[63.395000,18.472000],[63.447000,18.574000],[63.457000,18.601000],[63.499000,18.628000],[63.512000,18.655000],[63.532000,18.784000],[63.532000,18.859000],[63.586000,19.063000],[63.641000,19.159000],[63.651000,19.191000],[63.705000,19.261000],[63.722000,19.256000],[63.737000,19.261000],[63.777000,19.315000],[63.786000,19.358000],[63.786000,19.385000],[63.744000,19.540000],[63.735000,19.578000],[63.779000,19.626000],[63.811000,19.744000],[63.853000,19.873000],[63.875000,19.916000],[63.882000,19.959000],[63.914000,20.050000],[63.924000,20.131000],[63.939000,20.174000],[63.961000,20.216000],[63.983000,20.243000],[63.995000,20.302000],[63.980000,20.351000],[63.975000,20.463000],[64.014000,20.635000],[64.083000,20.823000],[64.173000,20.887000],[64.282000,20.887000],[64.432000,21.118000],[64.576000,21.349000],[64.621000,21.376000],[64.659000,21.386000],[64.731000,21.424000],[64.750000,21.397000],[64.781000,21.306000],[64.790000,21.247000],[64.809000,21.204000],[64.854000,21.177000],[64.906000,21.247000],[64.939000,21.268000],[64.946000,21.129000],[64.958000,21.075000],[64.975000,21.038000],[65.029000,20.984000],[65.043000,20.995000],[65.081000,21.070000],[65.106000,21.107000],[65.149000,21.107000],[65.184000,21.086000],[65.207000,21.086000],[65.217000,21.113000],[65.240000,21.263000],[65.242000,21.365000],[65.261000,21.424000],[65.273000,21.440000],[65.356000,21.456000],[65.414000,21.397000],[65.440000,21.354000],[65.458000,21.343000],[65.461000,21.322000],[65.514000,21.306000],[65.583000,21.279000],[65.627000,21.279000],[65.638000,21.306000],[65.650000,21.381000],[65.673000,21.472000],[65.694000,21.633000],[65.684000,21.676000],[65.687000,21.735000],[65.751000,22.014000],[65.778000,22.063000],[65.799000,22.073000],[65.813000,22.068000],[65.829000,22.095000],[65.838000,22.208000],[65.838000,22.277000],[65.815000,22.358000],[65.817000,22.395000],[65.856000,22.487000],[65.911000,22.508000],[65.956000,22.497000],[66.017000,22.444000],[66.031000,22.417000],[66.060000,22.379000],[66.110000,22.363000],[66.142000,22.369000],[66.209000,22.417000],[66.216000,22.438000],[66.225000,22.492000],[66.203000,22.535000],[66.189000,22.546000],[66.110000,22.632000],[66.092000,22.680000],[66.076000,22.750000],[66.076000,22.782000],[66.088000,22.825000],[66.130000,22.873000],[66.135000,22.900000],[66.135000,22.932000],[66.117000,23.002000],[66.085000,23.072000],[66.069000,23.125000],[66.060000,23.259000],[66.065000,23.340000],[66.081000,23.377000],[66.088000,23.474000],[66.076000,23.598000],[66.069000,23.726000],[66.074000,23.748000],[66.067000,23.818000],[66.067000,24.204000],[66.060000,24.268000],[66.056000,24.601000],[66.045000,24.665000],[65.995000,24.708000],[65.956000,24.735000],[65.920000,24.741000],[65.911000,24.762000],[65.890000,24.794000],[65.854000,24.880000],[65.845000,24.987000],[65.835000,25.036000],[65.826000,25.057000],[65.815000,25.132000],[65.824000,25.165000],[65.826000,25.229000],[65.833000,25.245000],[65.826000,25.277000],[65.822000,25.304000],[65.787000,25.326000],[65.758000,25.369000],[65.719000,25.395000],[65.664000,25.406000],[65.400000,25.503000],[65.298000,25.599000],[65.247000,25.691000],[65.242000,25.728000],[65.205000,25.782000],[65.186000,25.782000],[65.158000,25.766000],[65.144000,25.744000],[65.135000,25.723000],[65.102000,25.680000],[65.097000,25.642000],[65.099000,25.567000],[65.092000,25.540000],[65.029000,25.546000],[65.027000,25.605000],[65.017000,25.513000],[65.010000,25.438000],[65.015000,25.390000],[65.027000,25.331000],[65.031000,25.250000],[65.029000,25.073000],[65.003000,24.939000],[64.989000,24.875000],[64.949000,24.751000],[64.932000,24.703000],[64.906000,24.649000],[64.883000,24.590000],[64.854000,24.569000],[64.840000,24.531000],[64.783000,24.494000],[64.716000,24.413000],[64.681000,24.274000],[64.652000,24.215000],[64.604000,24.161000],[64.590000,24.150000],[64.444000,24.075000],[64.357000,23.973000],[64.342000,23.930000],[64.313000,23.893000],[64.282000,23.834000],[64.250000,23.726000],[64.250000,23.608000],[64.214000,23.496000],[64.185000,23.490000],[64.114000,23.426000],[64.090000,23.415000],[64.071000,23.351000],[64.054000,23.292000],[64.032000,23.200000],[63.968000,23.104000],[63.953000,23.098000],[63.872000,23.034000],[63.865000,23.007000],[63.828000,22.905000],[63.804000,22.825000],[63.789000,22.792000],[63.772000,22.733000],[63.703000,22.691000],[63.690000,22.664000],[63.668000,22.438000],[63.658000,22.406000],[63.631000,22.358000],[63.571000,22.347000],[63.512000,22.363000],[63.432000,22.342000],[63.387000,22.256000],[63.380000,22.234000],[63.365000,22.213000],[63.337000,22.202000],[63.335000,22.148000],[63.332000,22.084000],[63.322000,21.934000],[63.342000,21.896000],[63.362000,21.885000],[63.400000,21.869000],[63.435000,21.821000],[63.437000,21.741000],[63.427000,21.719000],[63.355000,21.730000],[63.322000,21.730000],[63.272000,21.698000],[63.244000,21.671000],[63.232000,21.644000],[63.151000,21.558000],[63.116000,21.537000],[63.088000,21.451000],[63.025000,21.338000],[63.000000,21.279000],[62.964000,21.252000],[62.952000,21.263000],[62.916000,21.268000],[62.904000,21.301000],[62.901000,21.338000],[62.886000,21.349000],[62.873000,21.370000],[62.787000,21.311000],[62.753000,21.268000],[62.677000,21.225000],[62.607000,21.258000],[62.584000,21.290000],[62.574000,21.322000],[62.556000,21.333000],[62.543000,21.360000],[62.489000,21.419000],[62.474000,21.413000],[62.458000,21.440000],[62.381000,21.435000],[62.360000,21.403000],[62.340000,21.354000],[62.285000,21.338000],[62.231000,21.349000],[62.142000,21.397000],[62.106000,21.397000],[62.051000,21.445000],[62.043000,21.472000],[61.985000,21.553000],[61.928000,21.612000],[61.886000,21.633000],[61.865000,21.676000],[61.754000,21.730000],[61.654000,21.714000],[61.582000,21.671000],[61.556000,21.623000],[61.540000,21.601000],[61.510000,21.521000],[61.478000,21.526000],[61.460000,21.542000],[61.433000,21.547000],[61.407000,21.569000],[61.388000,21.590000],[61.366000,21.671000],[61.313000,21.655000],[61.225000,21.617000],[61.122000,21.606000],[61.036000,21.564000],[60.963000,21.590000],[60.914000,21.612000],[60.762000,21.692000],[60.743000,21.725000],[60.719000,21.735000],[60.710000,21.762000],[60.631000,21.859000],[60.563000,21.998000],[60.557000,22.079000],[60.546000,22.132000],[60.522000,22.213000],[60.437000,22.315000],[60.431000,22.342000],[60.434000,22.363000],[60.420000,22.417000],[60.406000,22.497000],[60.417000,22.589000],[60.415000,22.648000],[60.417000,22.717000],[60.428000,22.733000],[60.434000,22.798000],[60.453000,22.830000],[60.461000,22.900000],[60.497000,22.959000],[60.505000,23.023000],[60.522000,23.061000],[60.516000,23.114000],[60.500000,23.136000],[60.445000,23.184000],[60.415000,23.174000],[60.379000,23.168000],[60.243000,23.302000],[60.238000,23.324000],[60.171000,23.399000],[60.144000,23.318000],[60.096000,23.233000],[60.044000,23.216000],[60.021000,23.238000],[60.002000,23.270000],[60.005000,23.302000],[60.005000,23.377000],[60.019000,23.474000],[60.032000,23.501000],[60.038000,23.528000],[60.116000,23.683000],[60.141000,23.812000],[60.185000,23.898000],[60.185000,23.952000],[60.177000,24.016000],[60.158000,24.070000],[60.152000,24.107000],[60.124000,24.161000],[60.069000,24.252000],[60.071000,24.268000],[60.069000,24.295000],[60.071000,24.360000],[60.066000,24.403000],[60.049000,24.429000],[60.060000,24.467000],[60.035000,24.655000],[60.030000,24.719000],[60.044000,24.692000],[60.080000,24.606000],[60.096000,24.590000],[60.108000,24.553000],[60.146000,24.510000],[60.180000,24.494000],[60.210000,24.542000],[60.230000,24.633000],[60.227000,24.708000],[60.252000,24.826000],[60.288000,24.902000],[60.313000,24.939000],[60.335000,25.030000],[60.351000,25.052000],[60.359000,25.089000],[60.401000,25.218000],[60.406000,25.342000],[60.406000,25.465000],[60.412000,25.551000],[60.426000,25.599000],[60.486000,25.712000],[60.505000,25.782000],[60.508000,25.841000],[60.505000,26.098000],[60.508000,26.168000],[60.522000,26.206000],[60.541000,26.238000],[60.587000,26.276000],[60.549000,26.324000],[60.546000,26.367000],[60.544000,26.501000],[60.557000,26.597000],[60.557000,26.657000],[60.642000,27.086000],[60.629000,27.134000],[60.623000,27.263000],[60.686000,27.574000],[60.710000,27.649000],[60.727000,27.762000],[60.680000,27.869000],[60.686000,27.934000],[60.702000,27.993000],[60.732000,28.175000],[60.740000,28.272000],[60.779000,28.358000],[60.800000,28.465000],[60.800000,28.540000],[60.768000,28.599000],[60.751000,28.648000],[60.746000,28.685000],[60.751000,28.766000],[60.702000,28.803000],[60.656000,28.776000],[60.598000,28.739000],[60.587000,28.717000],[60.393000,28.841000],[60.365000,28.857000],[60.318000,28.911000],[60.304000,28.964000],[60.301000,29.072000],[60.301000,29.206000],[60.282000,29.238000],[60.282000,29.265000],[60.277000,29.286000],[60.268000,29.324000],[60.257000,29.415000],[60.246000,29.447000],[60.243000,29.517000],[60.235000,29.576000],[60.224000,29.716000],[60.224000,29.801000],[60.216000,29.834000],[60.171000,29.893000],[60.138000,29.914000],[60.099000,29.936000],[60.083000,29.962000],[60.055000,29.979000],[60.010000,30.016000],[60.007000,30.032000],[59.991000,30.054000],[59.988000,29.979000],[59.993000,29.946000],[59.991000,29.925000],[59.993000,29.877000],[59.999000,29.823000],[59.996000,29.737000],[60.002000,29.560000],[60.007000,29.431000],[60.016000,29.410000],[60.013000,29.394000],[60.063000,29.238000],[60.066000,29.206000],[60.085000,29.131000],[60.083000,29.082000],[60.080000,29.002000],[60.046000,28.841000],[59.971000,28.562000],[59.963000,28.428000],[59.966000,28.374000],[59.960000,28.347000],[59.949000,28.245000],[59.910000,28.143000],[59.890000,28.111000],[59.843000,28.079000],[59.730000,27.966000],[59.654000,27.923000],[59.606000,27.902000],[59.609000,27.880000],[59.544000,27.826000],[59.519000,27.767000],[59.502000,27.708000],[59.499000,27.682000],[59.488000,27.671000],[59.482000,27.628000],[59.465000,27.612000],[59.462000,27.526000],[59.474000,27.424000],[59.488000,27.376000],[59.491000,27.242000],[59.496000,27.220000],[59.502000,27.166000],[59.493000,27.070000],[59.479000,27.011000],[59.474000,26.925000],[59.510000,26.608000],[59.536000,26.490000],[59.539000,26.216000],[59.561000,26.136000],[59.567000,26.098000],[59.589000,26.061000],[59.637000,26.023000],[59.643000,25.932000],[59.643000,25.889000],[59.621000,25.819000],[59.584000,25.766000],[59.578000,25.696000],[59.558000,25.615000],[59.544000,25.524000],[59.547000,25.487000],[59.544000,25.422000],[59.556000,25.326000],[59.570000,25.315000],[59.598000,25.175000],[59.612000,25.148000],[59.629000,25.138000],[59.635000,25.116000],[59.668000,25.089000],[59.671000,25.057000],[59.671000,25.020000],[59.640000,24.907000],[59.606000,24.880000],[59.581000,24.880000],[59.544000,24.880000],[59.544000,24.853000],[59.536000,24.816000],[59.519000,24.784000],[59.474000,24.526000],[59.476000,24.504000],[59.468000,24.488000],[59.471000,24.413000],[59.448000,24.327000],[59.442000,24.279000],[59.423000,24.215000],[59.406000,24.172000],[59.389000,24.107000],[59.354000,24.027000],[59.329000,23.909000],[59.292000,23.823000],[59.221000,23.769000],[59.146000,23.689000],[59.072000,23.640000],[58.827000,23.646000],[58.622000,23.699000],[58.573000,23.732000],[58.552000,23.726000],[58.538000,23.764000],[58.491000,23.877000],[58.465000,23.946000],[58.439000,23.989000],[58.415000,23.984000],[58.401000,24.064000],[58.374000,24.145000],[58.366000,24.220000],[58.363000,24.317000],[58.319000,24.365000],[58.231000,24.451000],[58.196000,24.440000],[58.140000,24.392000],[58.125000,24.386000],[58.069000,24.354000],[57.898000,24.354000],[57.850000,24.370000],[57.764000,24.381000],[57.728000,24.408000],[57.701000,24.413000],[57.639000,24.462000],[57.615000,24.467000],[57.456000,24.440000],[57.426000,24.419000],[57.303000,24.274000],[57.219000,24.177000],[57.182000,24.102000],[57.134000,23.962000],[57.104000,23.882000],[57.107000,23.860000],[57.095000,23.716000],[57.101000,23.673000],[57.128000,23.485000],[57.131000,23.404000],[57.179000,23.292000],[57.207000,23.259000],[57.312000,23.168000],[57.456000,23.039000],[57.471000,23.029000],[57.537000,22.943000],[57.561000,22.884000],[57.567000,22.835000],[57.582000,22.814000],[57.633000,22.723000],[57.648000,22.707000],[57.707000,22.589000],[57.716000,22.540000],[57.731000,22.449000],[57.719000,22.363000],[57.707000,22.326000],[57.684000,22.283000],[57.636000,22.229000],[57.639000,22.127000],[57.618000,22.057000],[57.615000,22.020000],[57.612000,21.955000],[57.597000,21.923000],[57.585000,21.880000],[57.501000,21.665000],[57.477000,21.601000],[57.456000,21.553000],[57.387000,21.478000],[57.354000,21.392000],[57.333000,21.354000],[57.270000,21.306000],[57.234000,21.301000],[57.143000,21.258000],[57.098000,21.247000],[57.016000,21.209000],[56.940000,21.193000],[56.656000,21.080000],[56.613000,21.048000],[56.592000,21.048000],[56.527000,21.016000],[56.438000,21.000000],[56.339000,20.962000],[56.283000,20.962000],[55.976000,21.032000],[55.860000,21.021000],[55.590000,21.113000],[55.467000,21.166000],[55.197000,21.236000],[55.009000,21.225000],[54.881000,21.140000],[54.827000,21.075000],[54.791000,20.673000],[54.804000,20.603000],[54.849000,20.522000],[54.865000,20.474000],[54.891000,20.431000],[54.904000,20.351000],[54.875000,20.227000],[54.749000,19.948000],[54.727000,19.921000],[54.682000,19.921000],[54.653000,19.905000],[54.621000,19.932000],[54.591000,19.953000],[54.582000,19.991000],[54.559000,20.125000],[54.514000,20.131000],[54.478000,20.098000],[54.456000,20.061000],[54.417000,19.970000],[54.339000,19.846000],[54.306000,19.755000],[54.212000,19.621000],[54.098000,19.401000],[54.130000,19.363000],[54.238000,19.277000],[54.254000,19.250000],[54.267000,19.159000],[54.231000,18.934000],[54.241000,18.843000],[54.248000,18.762000],[54.257000,18.746000],[54.270000,18.687000],[54.300000,18.601000],[54.348000,18.521000],[54.384000,18.499000],[54.417000,18.445000],[54.543000,18.301000],[54.588000,18.252000],[54.630000,18.182000],[54.659000,18.043000],[54.669000,17.501000],[54.662000,17.420000],[54.669000,17.335000],[54.666000,17.265000],[54.646000,17.157000],[54.608000,17.088000],[54.524000,16.900000],[54.498000,16.825000],[54.478000,16.712000],[54.446000,16.599000],[54.374000,16.175000],[54.287000,15.966000],[54.270000,15.896000],[54.264000,15.837000],[54.241000,15.751000],[54.176000,15.623000],[54.150000,15.392000],[54.124000,15.360000],[54.098000,15.301000],[53.970000,15.091000],[53.950000,15.043000],[53.799000,14.839000],[53.773000,14.834000],[53.713000,14.732000],[53.693000,14.683000],[53.657000,14.506000],[53.670000,14.329000],[53.684000,14.034000],[53.710000,13.970000],[53.720000,13.900000],[53.733000,13.857000],[53.763000,13.830000],[53.802000,13.733000],[53.838000,13.674000],[53.891000,13.605000],[53.963000,13.449000],[54.012000,13.417000],[54.022000,13.401000],[54.052000,13.379000],[54.078000,13.347000],[54.094000,13.326000],[54.117000,13.272000],[54.133000,13.261000],[54.140000,13.234000],[54.186000,13.165000],[54.199000,13.127000],[54.202000,13.036000],[54.189000,12.982000],[54.107000,12.907000],[54.078000,12.751000],[54.075000,12.692000],[54.101000,12.649000],[54.107000,12.590000],[54.133000,12.547000],[54.140000,12.435000],[54.081000,12.193000],[54.042000,12.048000],[54.003000,11.979000],[53.967000,11.866000],[53.861000,11.683000],[53.822000,11.533000],[53.815000,11.292000],[53.881000,11.125000],[53.924000,10.916000],[53.944000,10.911000],[54.019000,10.873000],[54.026000,10.889000],[54.065000,10.970000],[54.098000,10.986000],[54.143000,11.039000],[54.173000,11.104000],[54.202000,11.125000],[54.218000,11.120000],[54.264000,11.147000],[54.293000,11.136000],[54.313000,11.125000],[54.313000,11.055000],[54.319000,11.018000],[54.313000,10.943000],[54.332000,10.862000],[54.335000,10.825000],[54.352000,10.798000],[54.355000,10.766000],[54.443000,10.589000],[54.475000,10.551000],[54.507000,10.476000],[54.514000,10.417000],[54.546000,10.342000],[54.556000,10.299000],[54.591000,10.261000],[54.624000,10.213000],[54.646000,10.159000],[54.740000,10.030000],[54.766000,9.977000],[54.782000,9.955000],[54.798000,9.928000],[54.814000,9.880000],[54.839000,9.816000],[54.875000,9.800000],[54.891000,9.789000],[54.945000,9.826000],[54.993000,9.891000],[55.038000,10.009000],[55.073000,10.047000],[55.099000,10.089000],[55.127000,10.250000],[55.121000,10.358000],[55.105000,10.771000],[55.124000,10.830000],[55.156000,10.873000],[55.197000,10.889000],[55.299000,10.894000],[55.340000,10.873000],[55.483000,10.916000],[55.518000,10.905000],[55.618000,10.894000],[55.609000,10.862000],[55.587000,10.803000],[55.574000,10.782000],[55.574000,10.750000],[55.590000,10.739000],[55.606000,10.717000],[55.634000,10.696000],[55.662000,10.626000],[55.659000,10.540000],[55.653000,10.503000],[55.634000,10.438000],[55.609000,10.358000],[55.568000,10.250000],[55.540000,10.186000],[55.489000,10.095000],[55.473000,10.095000],[55.454000,10.084000],[55.435000,10.089000],[55.388000,10.079000],[55.369000,10.036000],[55.356000,9.998000],[55.347000,9.945000],[55.344000,9.853000],[55.359000,9.816000],[55.397000,9.789000],[55.439000,9.848000],[55.486000,9.896000],[55.505000,9.934000],[55.549000,9.977000],[55.584000,10.014000],[55.684000,10.057000],[55.713000,10.084000],[55.760000,10.111000],[55.782000,10.116000],[55.879000,10.208000],[55.901000,10.283000],[55.923000,10.331000],[55.954000,10.379000],[55.966000,10.422000],[56.038000,10.492000],[56.066000,10.513000],[56.075000,10.535000],[56.178000,10.605000],[56.190000,10.621000],[56.262000,10.653000],[56.280000,10.648000],[56.274000,10.664000],[56.268000,10.691000],[56.234000,10.717000],[56.215000,10.771000],[56.206000,10.803000],[56.246000,10.991000],[56.255000,11.023000],[56.317000,11.023000],[56.391000,11.029000],[56.425000,11.045000],[56.521000,10.991000],[56.515000,10.937000],[56.502000,10.814000],[56.515000,10.771000],[56.533000,10.658000],[56.585000,10.481000],[56.604000,10.476000],[56.631000,10.438000],[56.653000,10.401000],[56.662000,10.374000],[56.671000,10.352000],[56.680000,10.288000],[56.690000,10.304000],[56.690000,10.326000],[56.711000,10.347000],[56.742000,10.369000],[56.882000,10.417000],[56.998000,10.449000],[57.077000,10.438000],[57.083000,10.417000],[57.080000,10.395000],[57.089000,10.374000],[57.083000,10.320000],[57.113000,10.309000],[57.134000,10.352000],[57.140000,10.417000],[57.146000,10.444000],[57.164000,10.470000],[57.219000,10.513000],[57.378000,10.562000],[57.438000,10.658000],[57.489000,10.674000],[57.504000,10.691000],[57.672000,10.680000],[57.740000,10.691000],[57.755000,10.717000],[57.776000,10.739000],[57.800000,10.744000],[57.826000,10.792000],[57.865000,10.830000],[57.895000,10.809000],[57.800000,10.605000],[57.767000,10.460000],[57.734000,10.369000],[57.704000,10.347000],[57.684000,10.299000],[57.666000,10.293000],[57.654000,10.240000],[57.654000,10.191000],[57.633000,10.122000],[57.630000,10.030000],[57.588000,9.945000],[57.543000,9.896000],[57.504000,9.859000],[57.492000,9.821000],[57.492000,9.789000],[57.504000,9.719000],[57.498000,9.676000],[57.522000,9.386000],[57.510000,9.311000],[57.516000,9.215000],[57.552000,9.091000],[57.540000,9.000000],[57.402000,8.758000],[57.384000,8.742000],[57.327000,8.716000],[57.246000,8.673000],[57.185000,8.662000],[57.173000,8.640000],[57.140000,8.624000],[57.092000,8.592000],[57.080000,8.581000],[56.976000,8.512000],[56.928000,8.512000],[56.882000,8.533000],[56.873000,8.565000],[56.861000,8.603000],[56.867000,8.630000],[56.858000,8.651000],[56.882000,8.699000],[56.885000,8.732000],[56.900000,8.753000],[56.900000,8.780000],[56.989000,8.973000],[57.025000,9.118000],[57.043000,9.177000],[57.046000,9.215000],[57.028000,9.258000],[57.022000,9.419000],[57.028000,9.521000],[57.034000,9.542000],[57.046000,9.639000],[57.058000,9.773000],[57.043000,9.837000],[57.025000,9.837000],[57.025000,9.869000],[57.007000,9.880000],[56.985000,9.902000],[56.961000,9.912000],[56.940000,9.853000],[56.940000,9.784000],[56.931000,9.762000],[56.913000,9.617000],[56.925000,9.553000],[56.913000,9.488000],[56.894000,9.462000],[56.897000,9.445000],[56.839000,9.392000],[56.791000,9.397000],[56.656000,9.451000],[56.625000,9.419000],[56.567000,9.397000],[56.536000,9.376000],[56.493000,9.295000],[56.481000,9.252000],[56.478000,9.199000],[56.472000,9.070000],[56.478000,8.995000],[56.469000,8.962000],[56.435000,8.544000],[56.441000,8.512000],[56.410000,8.383000],[56.407000,8.361000],[56.379000,8.297000],[56.351000,8.270000],[56.252000,8.233000],[56.203000,8.233000],[56.091000,8.308000],[56.063000,8.356000],[56.060000,8.372000],[55.926000,8.410000],[55.873000,8.404000],[55.841000,8.415000],[55.785000,8.404000],[55.732000,8.356000],[55.697000,8.335000],[55.606000,8.361000],[55.565000,8.420000],[55.559000,8.458000],[55.552000,8.560000],[55.527000,8.592000],[55.505000,8.689000],[55.483000,8.748000],[55.439000,8.844000],[55.410000,8.855000],[55.391000,8.882000],[55.337000,8.914000],[55.220000,8.979000],[55.121000,9.011000],[54.984000,9.000000],[54.916000,8.989000],[54.704000,9.048000],[54.604000,9.075000],[54.588000,8.877000],[54.575000,8.839000],[54.501000,8.807000],[54.361000,8.791000],[54.322000,8.801000],[54.228000,8.898000],[54.218000,8.914000],[54.218000,9.011000],[54.205000,9.027000],[54.179000,9.102000],[54.137000,9.140000],[54.120000,9.102000],[54.124000,9.081000],[54.124000,9.032000],[54.107000,8.995000],[54.026000,9.000000],[53.973000,9.038000],[53.947000,9.097000],[53.924000,9.172000],[53.934000,9.188000],[53.914000,9.258000],[53.878000,9.381000],[53.858000,9.408000],[53.845000,9.424000],[53.690000,9.617000],[53.674000,9.623000],[53.677000,9.606000],[53.677000,9.569000],[53.697000,9.504000],[53.710000,9.483000],[53.756000,9.424000],[53.773000,9.376000],[53.786000,9.306000],[53.789000,9.252000],[53.802000,9.188000],[53.806000,9.166000],[53.799000,9.140000],[53.822000,9.091000],[53.838000,9.038000],[53.881000,8.839000],[53.894000,8.818000],[53.907000,8.753000],[53.812000,8.737000],[53.740000,8.726000],[53.617000,8.737000],[53.581000,8.753000],[53.245000,8.758000],[53.222000,8.769000],[53.139000,8.775000],[53.108000,8.791000],[53.102000,8.775000],[53.118000,8.737000],[53.118000,8.716000],[53.215000,8.646000],[53.259000,8.581000],[53.289000,8.576000],[53.342000,8.538000],[53.428000,7.293000],[53.409000,7.347000],[53.392000,7.358000],[53.352000,7.395000],[53.282000,7.438000],[53.299000,6.955000],[53.329000,6.928000],[53.428000,6.612000],[53.428000,6.542000],[53.448000,6.435000],[53.445000,6.333000],[53.445000,6.199000],[53.448000,6.129000],[53.438000,6.054000],[53.425000,6.027000],[53.279000,5.834000],[53.232000,5.689000],[53.229000,5.619000],[53.215000,5.581000],[53.212000,5.522000],[53.199000,5.501000],[53.192000,5.474000],[53.152000,5.436000],[53.128000,5.404000],[53.125000,5.383000],[53.085000,5.313000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[76.983000,68.785000],[76.965000,68.678000],[76.997000,68.397000],[76.973000,68.025000],[76.935000,67.751000],[76.912000,67.562000],[76.933000,67.487000],[76.979000,67.384000],[76.938000,67.109000],[76.919000,67.061000],[76.890000,67.018000],[76.870000,66.948000],[76.840000,66.899000],[76.795000,66.570000],[76.768000,66.495000],[76.739000,66.446000],[76.708000,66.414000],[76.692000,66.387000],[76.666000,66.317000],[76.584000,66.047000],[76.519000,65.740000],[76.499000,65.713000],[76.490000,65.562000],[76.410000,65.061000],[76.404000,64.980000],[76.389000,64.722000],[76.387000,64.560000],[76.391000,64.387000],[76.397000,64.220000],[76.417000,63.962000],[76.441000,63.746000],[76.457000,63.665000],[76.472000,63.547000],[76.483000,63.406000],[76.479000,63.353000],[76.476000,63.245000],[76.444000,63.067000],[76.418000,62.927000],[76.398000,62.781000],[76.319000,62.393000],[76.293000,62.221000],[76.289000,62.129000],[76.302000,62.054000],[76.320000,62.000000],[76.341000,61.978000],[76.371000,61.973000],[76.387000,61.919000],[76.382000,61.892000],[76.365000,61.773000],[76.344000,61.687000],[76.310000,61.622000],[76.271000,61.525000],[76.229000,61.407000],[76.223000,61.374000],[75.969000,60.383000],[75.935000,60.210000],[75.882000,59.887000],[75.849000,59.811000],[75.835000,59.666000],[75.816000,59.574000],[75.785000,59.445000],[75.753000,59.294000],[75.732000,59.208000],[75.702000,59.057000],[75.653000,58.874000],[75.636000,58.836000],[75.613000,58.755000],[75.594000,58.663000],[75.579000,58.653000],[75.552000,58.437000],[75.540000,58.378000],[75.510000,58.259000],[75.488000,58.151000],[75.446000,58.076000],[75.409000,58.065000],[75.390000,58.049000],[75.353000,58.027000],[75.329000,58.027000],[75.310000,58.006000],[75.245000,57.839000],[75.220000,57.623000],[75.213000,57.531000],[75.218000,57.445000],[75.218000,57.402000],[75.213000,57.332000],[75.200000,57.284000],[75.189000,57.219000],[75.142000,57.116000],[75.118000,57.100000],[75.110000,57.036000],[75.083000,56.928000],[75.050000,56.766000],[75.060000,56.718000],[75.066000,56.642000],[75.100000,56.394000],[75.071000,56.270000],[75.009000,56.087000],[74.991000,56.065000],[74.973000,56.071000],[74.973000,56.098000],[74.973000,56.125000],[74.983000,56.270000],[74.987000,56.297000],[74.987000,56.340000],[74.974000,56.453000],[74.940000,56.432000],[74.908000,56.362000],[74.888000,56.346000],[74.867000,56.346000],[74.825000,56.405000],[74.760000,56.561000],[74.742000,56.631000],[74.706000,56.723000],[74.636000,56.798000],[74.617000,56.777000],[74.615000,56.712000],[74.621000,56.658000],[74.613000,56.583000],[74.593000,56.459000],[74.582000,56.432000],[74.552000,56.265000],[74.538000,56.082000],[74.536000,56.022000],[74.541000,55.844000],[74.523000,55.769000],[74.455000,55.898000],[74.448000,55.941000],[74.409000,55.974000],[74.380000,55.871000],[74.393000,55.704000],[74.391000,55.629000],[74.397000,55.553000],[74.393000,55.510000],[74.377000,55.478000],[74.356000,55.505000],[74.344000,55.559000],[74.326000,55.672000],[74.314000,55.710000],[74.299000,55.720000],[74.275000,55.726000],[74.260000,55.704000],[74.221000,55.510000],[74.229000,55.365000],[74.230000,55.305000],[74.214000,55.289000],[74.175000,55.311000],[74.173000,55.381000],[74.163000,55.489000],[74.148000,55.607000],[74.116000,55.747000],[74.099000,55.801000],[74.068000,55.941000],[74.045000,55.968000],[74.025000,55.914000],[74.019000,55.817000],[74.017000,55.720000],[74.025000,55.623000],[74.077000,55.408000],[74.080000,55.343000],[74.019000,55.004000],[73.981000,54.880000],[73.955000,54.847000],[73.923000,54.788000],[73.908000,54.739000],[73.892000,54.637000],[73.859000,54.314000],[73.837000,54.249000],[73.779000,54.050000],[73.748000,53.990000],[73.729000,54.066000],[73.732000,54.427000],[73.709000,54.599000],[73.677000,54.680000],[73.643000,54.642000],[73.593000,54.556000],[73.579000,54.529000],[73.527000,54.621000],[73.515000,54.734000],[73.502000,54.777000],[73.490000,54.842000],[73.465000,54.810000],[73.438000,54.756000],[73.433000,54.718000],[73.425000,54.626000],[73.410000,54.545000],[73.394000,54.513000],[73.368000,54.567000],[73.384000,54.793000],[73.397000,55.122000],[73.403000,55.316000],[73.403000,55.435000],[73.394000,55.672000],[73.380000,55.801000],[73.342000,55.963000],[73.321000,56.092000],[73.316000,56.162000],[73.318000,56.265000],[73.323000,56.389000],[73.291000,56.556000],[73.269000,56.648000],[73.250000,56.804000],[73.235000,56.955000],[73.302000,57.079000],[73.357000,57.203000],[73.394000,57.289000],[73.417000,57.375000],[73.444000,57.445000],[73.461000,57.456000],[73.496000,57.531000],[73.543000,57.596000],[73.590000,57.628000],[73.601000,57.537000],[73.621000,57.380000],[73.629000,57.278000],[73.644000,57.213000],[73.671000,57.203000],[73.702000,57.219000],[73.729000,57.251000],[73.720000,57.397000],[73.702000,57.499000],[73.692000,57.661000],[73.646000,57.801000],[73.641000,57.946000],[73.686000,57.995000],[73.723000,58.006000],[73.780000,58.006000],[73.810000,58.017000],[73.831000,58.054000],[73.802000,58.108000],[73.830000,58.302000],[73.888000,58.329000],[73.920000,58.324000],[73.941000,58.308000],[73.970000,58.318000],[74.036000,58.394000],[74.051000,58.529000],[74.074000,58.658000],[74.095000,58.712000],[74.113000,58.706000],[74.128000,58.626000],[74.119000,58.550000],[74.140000,58.502000],[74.160000,58.518000],[74.167000,58.566000],[74.185000,58.717000],[74.212000,58.857000],[74.223000,58.949000],[74.235000,59.014000],[74.254000,59.062000],[74.323000,59.159000],[74.380000,59.197000],[74.411000,59.191000],[74.424000,59.218000],[74.440000,59.213000],[74.445000,59.256000],[74.439000,59.369000],[74.425000,59.520000],[74.437000,59.682000],[74.442000,59.720000],[74.491000,59.682000],[74.517000,59.580000],[74.533000,59.499000],[74.533000,59.450000],[74.544000,59.402000],[74.580000,59.143000],[74.629000,59.245000],[74.637000,59.310000],[74.634000,59.386000],[74.623000,59.466000],[74.620000,59.531000],[74.618000,59.666000],[74.624000,59.693000],[74.665000,59.671000],[74.691000,59.569000],[74.691000,59.526000],[74.697000,59.499000],[74.729000,59.499000],[74.750000,59.531000],[74.745000,59.650000],[74.750000,59.698000],[74.745000,59.801000],[74.706000,60.049000],[74.693000,60.162000],[74.678000,60.253000],[74.659000,60.329000],[74.651000,60.431000],[74.664000,60.512000],[74.715000,60.582000],[74.736000,60.604000],[74.755000,60.587000],[74.799000,60.490000],[74.825000,60.399000],[74.867000,60.280000],[74.927000,60.264000],[74.938000,60.280000],[74.936000,60.372000],[74.927000,60.420000],[74.913000,60.453000],[74.890000,60.534000],[74.870000,60.631000],[74.864000,60.690000],[74.859000,60.771000],[74.862000,60.835000],[74.874000,60.916000],[74.916000,61.056000],[74.949000,61.121000],[74.966000,61.164000],[74.987000,61.240000],[75.011000,61.391000],[74.989000,61.633000],[74.979000,61.698000],[74.979000,61.752000],[74.993000,61.806000],[75.027000,61.886000],[75.128000,62.075000],[75.156000,62.140000],[75.163000,62.199000],[75.163000,62.242000],[75.146000,62.275000],[75.134000,62.323000],[75.142000,62.372000],[75.200000,62.506000],[75.214000,62.566000],[75.217000,62.609000],[75.224000,62.657000],[75.244000,62.743000],[75.266000,62.787000],[75.325000,62.873000],[75.349000,62.927000],[75.349000,62.948000],[75.340000,62.975000],[75.332000,63.029000],[75.308000,63.067000],[75.338000,63.121000],[75.414000,63.255000],[75.429000,63.288000],[75.435000,63.358000],[75.438000,63.444000],[75.482000,63.773000],[75.496000,64.059000],[75.494000,64.242000],[75.499000,64.393000],[75.497000,64.522000],[75.504000,64.662000],[75.546000,65.029000],[75.572000,65.282000],[75.592000,65.487000],[75.642000,65.875000],[75.658000,65.940000],[75.662000,66.064000],[75.677000,66.171000],[75.702000,66.382000],[75.740000,67.023000],[75.775000,67.341000],[75.826000,67.589000],[75.851000,67.664000],[75.856000,67.729000],[75.879000,67.778000],[75.919000,67.918000],[75.946000,68.047000],[75.957000,68.117000],[75.966000,68.155000],[75.978000,68.268000],[75.997000,68.376000],[76.034000,68.624000],[76.050000,68.683000],[76.084000,68.759000],[76.105000,68.845000],[76.130000,68.807000],[76.154000,68.796000],[76.164000,68.780000],[76.187000,68.785000],[76.241000,68.953000],[76.244000,68.990000],[76.255000,69.044000],[76.276000,69.114000],[76.303000,69.125000],[76.337000,69.066000],[76.354000,69.028000],[76.393000,68.969000],[76.415000,68.958000],[76.432000,69.001000],[76.461000,69.006000],[76.472000,69.060000],[76.492000,69.082000],[76.517000,69.098000],[76.534000,69.082000],[76.561000,69.087000],[76.589000,69.125000],[76.615000,69.179000],[76.649000,69.206000],[76.682000,69.211000],[76.716000,69.206000],[76.737000,69.174000],[76.770000,69.087000],[76.834000,68.990000],[76.875000,68.980000],[76.905000,68.953000],[76.929000,68.936000],[76.971000,68.888000],[76.988000,68.742000],[100.000000,1000.000000],[72.787000,52.422000],[72.791000,52.470000],[72.758000,52.659000],[72.738000,52.826000],[72.725000,52.891000],[72.702000,53.085000],[72.692000,53.112000],[72.673000,53.133000],[72.668000,53.106000],[72.628000,53.020000],[72.622000,52.999000],[72.575000,52.988000],[72.503000,52.945000],[72.501000,52.896000],[72.484000,52.805000],[72.478000,52.788000],[72.468000,52.751000],[72.434000,52.681000],[72.413000,52.643000],[72.386000,52.616000],[72.324000,52.535000],[72.276000,52.508000],[72.217000,52.503000],[72.191000,52.470000],[72.166000,52.330000],[72.151000,52.287000],[72.124000,52.185000],[72.107000,52.152000],[72.047000,52.109000],[71.978000,52.104000],[71.870000,52.066000],[71.735000,51.958000],[71.680000,51.974000],[71.663000,51.996000],[71.643000,52.045000],[71.614000,52.174000],[71.586000,52.454000],[71.579000,52.627000],[71.563000,52.767000],[71.558000,52.999000],[71.555000,53.036000],[71.528000,53.106000],[71.509000,53.144000],[71.472000,53.182000],[71.469000,53.209000],[71.425000,53.311000],[71.360000,53.419000],[71.326000,53.500000],[71.309000,53.591000],[71.289000,53.618000],[71.188000,53.597000],[71.144000,53.564000],[71.108000,53.564000],[71.076000,53.554000],[71.017000,53.511000],[70.995000,53.467000],[70.966000,53.435000],[70.928000,53.403000],[70.925000,53.484000],[70.930000,53.554000],[70.919000,53.769000],[70.905000,53.942000],[70.891000,54.028000],[70.874000,54.077000],[70.842000,54.233000],[70.811000,54.351000],[70.791000,54.438000],[70.775000,54.535000],[70.807000,54.696000],[70.798000,54.874000],[70.764000,54.971000],[70.722000,55.031000],[70.689000,55.052000],[70.645000,55.138000],[70.614000,55.300000],[70.629000,55.354000],[70.662000,55.494000],[70.684000,55.548000],[70.720000,55.672000],[70.704000,55.931000],[70.665000,56.006000],[70.643000,56.060000],[70.574000,56.184000],[70.581000,56.453000],[70.587000,56.745000],[70.607000,56.798000],[70.627000,56.928000],[70.616000,57.095000],[70.581000,57.203000],[70.554000,57.391000],[70.550000,57.553000],[70.579000,57.666000],[70.592000,57.445000],[70.610000,57.332000],[70.649000,57.235000],[70.665000,57.230000],[70.684000,57.273000],[70.704000,57.903000],[70.722000,57.898000],[70.824000,57.769000],[70.916000,57.526000],[70.966000,57.424000],[71.002000,57.284000],[71.081000,57.036000],[71.113000,56.955000],[71.414000,56.324000],[71.483000,56.211000],[71.530000,56.195000],[71.535000,56.162000],[71.617000,56.049000],[71.649000,55.952000],[71.682000,55.898000],[71.725000,55.844000],[71.844000,55.737000],[71.933000,55.720000],[71.993000,55.726000],[72.029000,55.737000],[72.095000,55.731000],[72.120000,55.742000],[72.151000,55.742000],[72.205000,55.796000],[72.274000,55.871000],[72.381000,55.947000],[72.426000,55.979000],[72.471000,55.990000],[72.605000,56.114000],[72.638000,56.173000],[72.678000,56.292000],[72.696000,56.324000],[72.709000,56.297000],[72.733000,56.227000],[72.740000,56.184000],[72.776000,56.238000],[72.830000,56.389000],[72.865000,56.470000],[73.034000,56.400000],[73.055000,56.486000],[73.066000,56.583000],[73.077000,56.637000],[73.093000,56.669000],[73.125000,56.626000],[73.149000,56.545000],[73.157000,56.394000],[73.148000,56.254000],[73.188000,56.028000],[73.213000,55.866000],[73.224000,55.823000],[73.243000,55.731000],[73.264000,55.564000],[73.278000,55.483000],[73.283000,55.419000],[73.277000,55.375000],[73.273000,55.316000],[73.278000,55.241000],[73.281000,55.063000],[73.285000,54.923000],[73.288000,54.858000],[73.285000,54.723000],[73.275000,54.653000],[73.273000,54.589000],[73.269000,54.540000],[73.269000,54.497000],[73.254000,54.319000],[73.243000,54.174000],[73.242000,54.077000],[73.231000,53.974000],[73.200000,53.823000],[73.188000,53.785000],[73.151000,53.721000],[73.135000,53.699000],[73.098000,53.591000],[73.088000,53.500000],[73.085000,53.424000],[73.067000,53.360000],[73.005000,53.198000],[72.984000,53.166000],[72.963000,53.101000],[72.945000,53.069000],[72.935000,53.009000],[72.898000,52.858000],[72.872000,52.697000],[72.859000,52.637000],[72.828000,52.503000],[72.805000,52.433000],[72.791000,52.422000],[100.000000,1000.000000],[70.478000,58.787000],[70.449000,58.841000],[70.415000,58.884000],[70.384000,58.911000],[70.319000,58.987000],[70.241000,59.030000],[70.179000,59.057000],[70.067000,59.159000],[70.035000,59.197000],[70.006000,59.256000],[70.035000,60.701000],[70.061000,60.625000],[70.104000,60.447000],[70.119000,60.340000],[70.138000,60.259000],[70.259000,59.914000],[70.289000,59.801000],[70.395000,59.466000],[70.447000,59.353000],[70.450000,59.289000],[70.449000,59.218000],[70.436000,59.100000],[70.434000,59.003000],[70.441000,58.857000],[70.460000,58.820000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[44.850000,29.099510],[45.200000,29.250820],[45.550000,29.326480],[45.750000,29.402140],[45.600000,29.780420],[45.900000,30.234360],[46.250000,30.234360],[46.650000,30.612640],[46.850000,30.915270],[46.750000,31.369210],[46.650000,31.520530],[46.850000,31.823150],[46.650000,32.352750],[46.350000,31.823150],[46.250000,32.277100],[46.350000,32.579720],[46.350000,33.033660],[46.350000,33.487610],[46.350000,33.638920],[46.200000,33.638920],[45.850000,33.336290],[45.750000,32.958010],[45.450000,32.504070],[45.600000,33.411950],[45.700000,34.017200],[45.800000,34.546800],[46.100000,34.395480],[46.200000,33.941550],[46.400000,33.790230],[46.400000,34.092860],[46.350000,34.546800],[46.500000,34.925080],[46.700000,35.076400],[46.650000,35.530340],[46.700000,36.135590],[46.800000,36.589530],[46.900000,37.043480],[47.200000,37.573070],[47.300000,38.027020],[47.300000,38.632270],[47.250000,38.859240],[46.800000,38.102670],[46.650000,37.724390],[46.800000,37.497420],[46.650000,37.421760],[46.500000,37.800050],[100.000000,1000.000000],[100.000000,1000.000000],[46.150000,48.618970],[46.450000,48.921600],[46.500000,49.299880],[46.750000,50.283420],[47.000000,51.115650],[47.050000,51.872220],[46.900000,52.250500],[46.750000,52.477470],[46.750000,52.931410],[46.450000,53.385350],[46.150000,53.309700],[45.800000,53.158380],[45.450000,53.158380],[45.150000,53.234040],[45.000000,52.931410],[45.150000,52.174840],[45.350000,51.493930],[45.550000,50.661710],[45.850000,49.753820],[46.100000,49.224220],[46.200000,48.770280]]
if continent=='congo':
return [[-12.700000,13.500000],[-11.500000,14.100000],[-11.500000,14.100000],[-10.000000,14.100000],[-8.900000,13.000000],[-5.600000,11.900000],[-3.500000,10.000000],[-1.200000,7.800000],[-1.000000,8.000000],[-0.700000,8.300000],[-0.400000,8.600000],[0.000000,8.800000],[1.500000,8.800000],[1.900000,10.300000],[2.700000,11.300000],[2.900000,13.100000],[3.300000,15.700000],[4.400000,18.100000],[6.400000,20.000000],[6.400000,20.800000],[6.400000,22.900000],[5.400000,24.600000],[3.500000,26.200000],[1.500000,32.600000],[1.300000,32.800000],[1.100000,33.100000],[0.900000,33.500000],[0.700000,33.800000],[0.500000,34.400000],[0.300000,34.600000],[0.000000,34.800000],[-1.500000,35.000000],[-2.500000,35.200000],[-4.600000,35.200000],[-6.700000,36.500000],[-8.100000,35.500000],[-9.400000,34.800000],[-10.000000,33.300000],[-12.700000,29.200000],[-12.300000,28.000000],[-10.800000,26.600000],[-10.600000,26.300000],[-10.400000,25.700000],[-10.200000,25.400000],[-10.400000,24.900000],[-10.600000,24.400000],[-10.800000,23.900000],[-10.900000,23.500000],[-13.300000,21.000000],[-13.800000,20.500000],[-14.300000,20.000000],[-14.800000,19.500000],[-15.500000,19.000000],[-16.200000,18.600000],[-16.600000,18.200000],[-16.800000,18.000000],[-17.100000,17.800000],[-17.300000,17.400000],[-18.100000,17.400000],[-18.100000,17.400000],[-18.200000,17.300000],[-18.200000,16.900000],[-18.300000,16.600000],[-18.100000,16.200000],[-17.900000,15.800000],[-17.600000,15.100000],[-17.300000,14.600000],[-17.100000,13.700000],[-16.700000,13.300000],[-16.200000,12.800000],[-15.600000,12.000000],[-15.200000,11.400000],[-14.600000,11.500000],[-14.000000,11.700000],[-13.000000,12.400000],[-12.700000,13.000000]]
if continent=='eur':
return [[100.000000,1000.000000],[63.000000,7.600000],[63.000000,7.600000],[63.300000,8.300000],[63.400000,9.400000],[63.500000,10.600000],[63.800000,11.300000],[63.600000,10.300000],[64.100000,10.100000],[64.500000,10.600000],[64.800000,11.400000],[65.200000,12.100000],[65.700000,12.500000],[65.700000,12.500000],[66.000000,13.000000],[66.500000,13.200000],[66.500000,13.200000],[66.900000,13.700000],[67.300000,14.400000],[67.500000,15.500000],[68.000000,15.500000],[68.300000,16.200000],[68.500000,17.400000],[68.900000,17.700000],[69.400000,18.100000],[69.200000,19.300000],[69.700000,19.100000],[69.900000,20.300000],[69.500000,20.300000],[69.900000,20.900000],[70.300000,21.500000],[70.200000,22.900000],[70.200000,22.900000],[70.500000,24.100000],[70.900000,24.600000],[70.500000,25.200000],[70.000000,24.900000],[70.500000,25.700000],[70.900000,26.400000],[70.400000,26.600000],[70.800000,27.400000],[70.400000,28.300000],[70.800000,28.900000],[70.600000,30.200000],[70.200000,30.400000],[70.200000,28.900000],[69.800000,29.900000],[69.800000,30.900000],[100.000000,1000.000000],[63.000000,18.200000],[63.000000,18.300000],[63.300000,19.000000],[63.600000,19.900000],[63.900000,20.700000],[64.300000,21.200000],[64.800000,21.100000],[65.200000,21.500000],[65.700000,22.000000],[65.800000,23.100000],[65.900000,24.000000],[100.000000,1000.000000],[65.900000,24.000000],[65.900000,24.200000],[65.500000,25.100000],[65.000000,25.400000],[64.700000,24.600000],[64.200000,23.900000],[63.800000,23.100000],[63.500000,22.600000],[63.200000,21.600000],[63.000000,21.700000],[100.000000,1000.000000],[68.900000,15.600000],[68.900000,15.700000],[68.900000,15.700000],[68.600000,16.400000],[68.300000,15.200000],[68.800000,15.500000],[68.900000,15.600000],[100.000000,1000.000000],[68.700000,14.500000],[68.700000,14.500000],[100.000000,1000.000000],[69.200000,15.800000],[69.200000,15.900000],[69.200000,15.800000],[100.000000,1000.000000],[67.800000,14.900000],[67.800000,14.900000],[67.800000,14.900000],[100.000000,1000.000000],[69.200000,16.900000],[69.200000,16.900000],[69.600000,17.700000],[69.100000,17.300000],[69.200000,16.900000],[100.000000,1000.000000],[69.700000,18.300000],[69.700000,18.300000],[69.700000,18.400000],[69.700000,18.300000],[100.000000,1000.000000],[70.000000,18.900000],[70.000000,19.400000],[70.000000,18.900000],[100.000000,1000.000000],[70.200000,19.800000],[70.200000,19.800000],[100.000000,1000.000000],[70.200000,20.700000],[70.200000,20.700000],[70.200000,20.800000],[70.200000,20.700000],[100.000000,1000.000000],[70.200000,22.700000],[70.200000,22.700000],[70.200000,22.700000],[100.000000,1000.000000],[70.700000,22.400000],[70.700000,22.400000],[70.700000,22.400000],[70.700000,22.500000],[70.700000,22.400000],[100.000000,1000.000000],[70.300000,23.400000],[70.300000,23.300000],[70.300000,23.400000],[100.000000,1000.000000],[70.500000,23.900000],[70.500000,23.900000],[100.000000,1000.000000],[71.100000,25.800000],[71.000000,25.900000],[71.100000,25.800000],[100.000000,1000.000000],[63.600000,8.500000],[63.600000,8.500000],[63.600000,8.500000],[100.000000,1000.000000],[61.100000,4.900000],[61.100000,4.900000],[61.100000,4.900000],[100.000000,1000.000000],[60.700000,5.000000],[60.700000,5.000000],[60.700000,5.000000],[60.700000,5.000000],[60.700000,5.000000],[100.000000,1000.000000],[60.600000,-1.200000],[60.600000,-1.300000],[60.600000,-1.300000],[60.200000,-1.500000],[60.600000,-1.200000],[60.600000,-1.200000],[100.000000,1000.000000],[58.500000,-6.200000],[58.500000,-6.200000],[58.200000,-6.900000],[57.800000,-6.900000],[58.100000,-6.300000],[58.500000,-6.200000],[100.000000,1000.000000],[57.600000,-7.000000],[57.600000,-7.000000],[57.600000,-7.000000],[100.000000,1000.000000],[59.000000,-2.600000],[59.000000,-2.600000],[59.000000,-2.600000],[100.000000,1000.000000],[58.800000,-3.100000],[58.800000,-3.100000],[100.000000,1000.000000],[58.200000,-5.300000],[58.200000,-5.200000],[57.800000,-5.700000],[57.300000,-5.400000],[56.900000,-5.700000],[56.500000,-5.600000],[56.500000,-5.600000],[56.000000,-5.500000],[55.500000,-5.600000],[56.000000,-5.300000],[55.600000,-4.700000],[55.100000,-4.900000],[54.600000,-4.900000],[54.800000,-4.100000],[54.900000,-3.300000],[54.500000,-3.500000],[54.100000,-3.000000],[53.600000,-2.900000],[53.300000,-3.400000],[53.100000,-4.200000],[52.600000,-4.000000],[52.100000,-4.400000],[51.900000,-5.200000],[51.800000,-4.400000],[51.600000,-3.700000],[51.600000,-2.900000],[51.200000,-3.500000],[51.000000,-4.300000],[50.500000,-4.900000],[50.100000,-5.500000],[50.200000,-4.700000],[50.300000,-3.900000],[50.600000,-3.400000],[50.700000,-2.600000],[50.500000,-2.400000],[100.000000,1000.000000],[50.500000,-2.400000],[50.600000,-1.900000],[50.900000,-1.300000],[50.800000,-0.600000],[50.800000,0.200000],[50.900000,0.900000],[51.300000,1.500000],[51.300000,0.800000],[51.800000,1.000000],[52.100000,1.700000],[52.700000,1.800000],[53.000000,1.000000],[52.800000,0.200000],[53.300000,0.500000],[53.600000,-0.100000],[54.100000,-0.100000],[54.500000,-0.700000],[55.000000,-1.400000],[55.500000,-1.500000],[55.900000,-2.100000],[56.000000,-3.100000],[56.500000,-2.900000],[56.800000,-2.300000],[57.200000,-2.000000],[57.600000,-2.400000],[57.700000,-3.400000],[58.100000,-3.500000],[58.600000,-3.000000],[58.500000,-4.000000],[58.500000,-4.900000],[58.200000,-5.300000],[100.000000,1000.000000],[50.700000,-1.100000],[50.700000,-1.100000],[50.700000,-1.100000],[100.000000,1000.000000],[53.200000,-4.100000],[53.300000,-4.000000],[53.400000,-4.400000],[100.000000,1000.000000],[54.400000,-4.300000],[54.400000,-4.300000],[54.400000,-4.300000],[100.000000,1000.000000],[55.700000,-5.200000],[55.700000,-5.200000],[55.700000,-5.200000],[55.700000,-5.200000],[55.700000,-5.200000],[55.700000,-5.200000],[100.000000,1000.000000],[55.900000,-6.100000],[55.900000,-6.100000],[55.900000,-6.100000],[100.000000,1000.000000],[56.100000,-5.700000],[56.100000,-5.700000],[100.000000,1000.000000],[56.300000,-6.300000],[56.300000,-5.800000],[56.300000,-6.300000],[100.000000,1000.000000],[57.700000,-6.300000],[57.700000,-6.300000],[57.700000,-6.300000],[57.200000,-6.300000],[57.700000,-6.200000],[57.700000,-6.300000],[100.000000,1000.000000],[54.900000,-7.500000],[55.000000,-7.500000],[55.000000,-7.400000],[55.000000,-8.300000],[54.600000,-8.100000],[54.200000,-8.700000],[54.300000,-9.600000],[53.900000,-9.900000],[53.400000,-9.800000],[53.200000,-9.000000],[52.700000,-9.400000],[52.600000,-8.600000],[52.500000,-9.500000],[52.200000,-10.100000],[51.800000,-10.000000],[51.800000,-10.000000],[51.500000,-9.300000],[51.600000,-8.500000],[51.800000,-7.800000],[52.100000,-7.300000],[52.100000,-6.400000],[52.700000,-6.200000],[53.200000,-6.100000],[53.700000,-6.200000],[54.000000,-6.100000],[100.000000,1000.000000],[54.000000,-6.100000],[54.200000,-5.800000],[54.600000,-5.500000],[55.000000,-5.900000],[55.100000,-6.800000],[54.900000,-7.500000],[100.000000,1000.000000],[53.200000,5.000000],[53.200000,5.100000],[53.200000,5.000000],[100.000000,1000.000000],[51.400000,3.500000],[51.400000,3.600000],[51.400000,4.300000],[51.700000,4.900000],[51.900000,4.200000],[52.500000,4.700000],[52.900000,5.000000],[52.900000,5.000000],[100.000000,1000.000000],[51.800000,4.100000],[51.800000,4.000000],[51.800000,4.000000],[51.800000,4.100000],[100.000000,1000.000000],[51.700000,3.800000],[51.700000,3.800000],[100.000000,1000.000000],[51.500000,3.700000],[51.500000,3.700000],[100.000000,1000.000000],[51.100000,2.800000],[51.100000,2.800000],[51.400000,3.500000],[51.400000,3.500000],[51.400000,3.500000],[100.000000,1000.000000],[43.400000,5.100000],[43.400000,5.100000],[43.500000,4.400000],[43.400000,3.800000],[43.000000,3.200000],[42.400000,3.200000],[100.000000,1000.000000],[43.400000,-1.500000],[43.800000,-1.200000],[44.400000,-1.100000],[45.000000,-1.000000],[45.400000,-0.900000],[45.900000,-0.900000],[46.300000,-1.200000],[46.600000,-1.800000],[47.100000,-1.900000],[47.500000,-2.300000],[47.600000,-3.100000],[47.800000,-3.700000],[48.000000,-4.500000],[48.500000,-4.600000],[48.700000,-3.900000],[48.800000,-3.100000],[48.600000,-2.500000],[48.700000,-1.700000],[49.100000,-1.500000],[49.600000,-1.800000],[49.500000,-1.100000],[49.300000,-0.300000],[49.400000,0.500000],[49.900000,0.900000],[50.200000,1.700000],[50.700000,1.700000],[51.000000,2.300000],[51.100000,2.800000],[100.000000,1000.000000],[59.100000,11.100000],[59.200000,11.100000],[59.600000,10.600000],[59.200000,10.200000],[58.900000,9.400000],[58.600000,8.800000],[58.200000,8.100000],[58.100000,7.100000],[58.300000,6.300000],[58.700000,5.500000],[59.100000,6.000000],[59.400000,5.200000],[59.800000,6.000000],[60.200000,6.200000],[60.500000,7.000000],[60.400000,6.100000],[59.900000,5.500000],[60.400000,5.200000],[60.800000,5.100000],[61.100000,5.900000],[61.000000,6.800000],[61.500000,7.500000],[61.200000,6.800000],[61.200000,5.800000],[61.600000,5.300000],[61.800000,6.200000],[61.900000,5.200000],[62.200000,6.000000],[62.600000,6.600000],[62.700000,7.600000],[63.000000,7.600000],[100.000000,1000.000000],[62.200000,5.900000],[62.200000,5.900000],[62.200000,5.900000],[100.000000,1000.000000],[61.800000,5.000000],[61.800000,5.000000],[61.800000,5.000000],[61.800000,5.000000],[100.000000,1000.000000],[59.700000,5.400000],[59.800000,5.500000],[59.800000,5.400000],[100.000000,1000.000000],[59.200000,5.300000],[59.200000,5.300000],[59.200000,5.200000],[100.000000,1000.000000],[63.000000,18.100000],[63.000000,18.100000],[63.000000,18.100000],[62.600000,17.700000],[62.100000,17.300000],[61.600000,17.000000],[61.100000,17.100000],[60.600000,17.200000],[60.200000,16.500000],[60.500000,17.300000],[60.300000,18.400000],[59.800000,18.700000],[59.400000,17.900000],[59.600000,16.900000],[59.600000,16.900000],[59.300000,17.800000],[58.900000,17.300000],[58.700000,16.500000],[58.200000,16.600000],[57.700000,16.500000],[57.200000,16.300000],[56.800000,16.200000],[56.200000,15.800000],[56.200000,14.800000],[55.800000,14.100000],[55.500000,13.500000],[55.800000,12.800000],[56.200000,12.400000],[56.700000,12.700000],[57.100000,12.100000],[57.600000,11.800000],[58.100000,11.600000],[58.500000,11.100000],[59.000000,11.000000],[59.100000,11.100000],[100.000000,1000.000000],[56.300000,16.300000],[56.300000,16.300000],[56.900000,16.600000],[57.300000,16.900000],[56.900000,16.500000],[56.300000,16.300000],[56.300000,16.300000],[100.000000,1000.000000],[57.000000,18.000000],[57.000000,18.100000],[57.400000,18.700000],[57.900000,18.900000],[57.600000,18.100000],[57.100000,18.000000],[57.000000,18.000000],[100.000000,1000.000000],[60.600000,27.600000],[60.600000,27.600000],[60.500000,26.600000],[60.400000,25.700000],[60.200000,24.800000],[60.100000,23.900000],[59.900000,22.900000],[60.300000,22.800000],[60.500000,21.800000],[60.900000,21.300000],[61.400000,21.400000],[61.900000,21.300000],[62.400000,21.100000],[62.900000,21.100000],[63.000000,21.700000],[100.000000,1000.000000],[60.400000,20.000000],[60.400000,19.800000],[60.400000,20.000000],[100.000000,1000.000000],[60.200000,21.800000],[60.200000,21.700000],[60.200000,21.800000],[100.000000,1000.000000],[60.000000,22.600000],[60.100000,22.600000],[60.000000,22.600000],[100.000000,1000.000000],[55.000000,15.000000],[55.000000,15.000000],[55.000000,15.000000],[100.000000,1000.000000],[56.000000,11.400000],[56.000000,11.400000],[55.700000,12.100000],[56.100000,12.300000],[56.100000,12.300000],[56.100000,12.300000],[55.700000,12.700000],[55.700000,12.700000],[55.300000,12.500000],[55.300000,12.400000],[55.100000,11.700000],[55.100000,11.700000],[55.100000,11.700000],[55.100000,11.700000],[55.100000,11.800000],[55.100000,11.800000],[55.400000,11.200000],[55.800000,11.400000],[56.000000,11.400000],[100.000000,1000.000000],[55.000000,11.800000],[55.000000,11.900000],[55.000000,11.900000],[55.000000,11.800000],[100.000000,1000.000000],[55.000000,11.300000],[54.800000,11.200000],[54.800000,11.100000],[55.000000,11.300000],[100.000000,1000.000000],[55.500000,10.000000],[55.500000,10.100000],[55.400000,10.800000],[55.100000,10.100000],[55.500000,9.800000],[55.500000,9.800000],[55.500000,10.000000],[100.000000,1000.000000],[55.100000,10.900000],[55.100000,10.900000],[55.100000,10.900000],[55.100000,10.900000],[55.100000,10.900000],[55.100000,10.900000],[100.000000,1000.000000],[54.900000,8.700000],[55.000000,8.600000],[55.500000,8.400000],[56.000000,8.100000],[56.500000,8.100000],[57.000000,8.400000],[57.200000,9.300000],[57.600000,9.900000],[57.100000,10.300000],[56.700000,10.000000],[56.500000,10.800000],[56.100000,10.200000],[55.800000,9.700000],[55.300000,9.500000],[54.900000,9.500000],[100.000000,1000.000000],[54.900000,8.700000],[54.900000,8.700000],[54.500000,9.000000],[54.000000,8.800000],[53.500000,8.500000],[53.700000,7.700000],[53.400000,7.100000],[53.400000,7.100000],[53.300000,7.100000],[100.000000,1000.000000],[54.900000,9.500000],[54.900000,9.400000],[54.500000,9.800000],[54.300000,10.600000],[54.000000,10.700000],[100.000000,1000.000000],[52.900000,5.100000],[52.900000,5.100000],[52.900000,5.100000],[52.900000,5.100000],[52.900000,5.100000],[52.900000,5.100000],[52.800000,5.100000],[52.800000,5.100000],[52.800000,5.100000],[52.800000,5.100000],[52.400000,5.100000],[52.700000,5.600000],[53.200000,5.500000],[53.200000,5.500000],[53.200000,5.500000],[53.200000,5.500000],[53.200000,5.500000],[53.200000,5.500000],[53.400000,6.200000],[53.400000,6.200000],[53.300000,7.000000],[53.200000,7.100000],[100.000000,1000.000000],[54.000000,10.700000],[53.900000,10.700000],[54.200000,11.600000],[54.500000,12.400000],[54.300000,13.100000],[53.900000,13.700000],[53.700000,14.400000],[53.900000,14.200000],[100.000000,1000.000000],[54.500000,13.500000],[54.500000,13.500000],[54.500000,13.500000],[100.000000,1000.000000],[53.900000,14.200000],[54.000000,14.400000],[54.200000,15.400000],[54.400000,16.200000],[54.700000,17.000000],[54.900000,18.000000],[54.700000,18.700000],[54.400000,19.400000],[54.500000,19.600000],[100.000000,1000.000000],[45.400000,29.600000],[45.300000,29.700000],[44.800000,29.500000],[44.500000,28.900000],[100.000000,1000.000000],[44.500000,28.900000],[45.000000,29.100000],[44.500000,28.800000],[100.000000,1000.000000],[43.800000,7.600000],[43.800000,7.500000],[43.500000,7.000000],[43.200000,6.500000],[43.100000,5.900000],[43.400000,5.200000],[43.400000,5.100000],[100.000000,1000.000000],[43.800000,7.600000],[43.800000,7.700000],[100.000000,1000.000000],[80.800000,79.900000],[80.800000,79.900000],[80.900000,80.000000],[80.800000,79.900000],[80.800000,79.900000],[80.800000,79.900000],[100.000000,1000.000000],[80.000000,91.300000],[80.000000,91.300000],[80.000000,91.300000],[80.000000,91.300000],[100.000000,1000.000000],[81.200000,90.900000],[81.200000,90.900000],[81.200000,90.900000],[81.200000,90.900000],[81.200000,90.900000],[100.000000,1000.000000],[81.100000,94.900000],[81.100000,94.900000],[80.800000,97.200000],[80.800000,97.300000],[80.300000,97.200000],[80.100000,94.900000],[80.200000,92.100000],[80.600000,92.700000],[81.000000,94.600000],[81.100000,94.900000],[100.000000,1000.000000],[80.000000,94.900000],[80.000000,94.900000],[80.200000,97.400000],[80.100000,97.500000],[80.100000,97.500000],[79.900000,99.700000],[79.400000,99.700000],[78.900000,99.700000],[78.900000,97.300000],[79.000000,95.000000],[79.500000,94.100000],[79.900000,94.200000],[80.000000,94.900000],[100.000000,1000.000000],[78.400000,99.900000],[78.400000,100.000000],[78.400000,100.000000],[78.900000,100.800000],[79.300000,101.700000],[79.200000,104.000000],[78.800000,105.400000],[78.300000,104.900000],[78.200000,102.800000],[78.000000,100.500000],[78.400000,99.900000],[100.000000,1000.000000],[78.200000,107.000000],[78.200000,107.000000],[78.200000,107.000000],[100.000000,1000.000000],[73.200000,80.300000],[73.200000,80.500000],[73.600000,81.300000],[73.600000,82.900000],[73.700000,84.500000],[73.900000,86.200000],[74.300000,85.900000],[74.800000,85.900000],[75.000000,87.600000],[75.300000,88.700000],[75.600000,90.300000],[75.700000,92.200000],[76.000000,93.700000],[76.000000,93.800000],[76.100000,95.700000],[76.000000,97.600000],[76.100000,99.400000],[76.500000,98.800000],[100.000000,1000.000000],[76.500000,98.800000],[76.500000,100.600000],[76.900000,101.000000],[77.300000,102.100000],[77.300000,102.100000],[77.600000,103.600000],[77.600000,103.600000],[77.500000,105.700000],[77.100000,104.800000],[77.000000,106.800000],[77.000000,106.900000],[76.500000,106.500000],[76.500000,106.400000],[76.700000,108.100000],[76.700000,110.200000],[76.500000,111.900000],[76.100000,112.800000],[75.600000,113.600000],[75.200000,113.300000],[74.800000,112.100000],[74.500000,110.700000],[74.200000,109.700000],[73.800000,108.500000],[73.600000,107.100000],[73.200000,106.000000],[72.800000,105.200000],[72.800000,106.800000],[73.200000,108.000000],[73.500000,109.300000],[73.700000,110.900000],[73.700000,112.700000],[73.300000,113.500000],[73.600000,114.900000],[73.600000,116.600000],[73.500000,118.200000],[73.500000,118.900000],[100.000000,1000.000000],[77.300000,89.500000],[77.300000,89.500000],[77.300000,89.500000],[77.300000,89.500000],[77.300000,89.500000],[100.000000,1000.000000],[76.300000,96.300000],[76.300000,96.300000],[76.200000,96.300000],[76.300000,96.300000],[76.300000,96.300000],[100.000000,1000.000000],[77.000000,96.300000],[77.000000,96.300000],[77.000000,96.300000],[77.000000,96.300000],[77.000000,96.300000],[77.000000,96.300000],[100.000000,1000.000000],[74.500000,113.000000],[74.500000,113.100000],[74.200000,111.600000],[74.500000,113.000000],[74.500000,113.000000],[100.000000,1000.000000],[73.500000,118.900000],[73.500000,118.900000],[73.000000,119.500000],[72.900000,121.100000],[73.000000,122.600000],[73.400000,123.200000],[73.800000,123.900000],[73.600000,125.300000],[73.500000,126.900000],[73.400000,128.500000],[73.000000,129.500000],[72.500000,129.400000],[72.100000,129.200000],[71.600000,128.800000],[71.200000,129.700000],[70.900000,130.600000],[71.100000,131.900000],[71.600000,132.200000],[71.500000,133.600000],[100.000000,1000.000000],[69.800000,30.900000],[69.800000,30.900000],[69.800000,30.900000],[69.900000,32.200000],[69.400000,32.300000],[69.200000,33.700000],[69.200000,35.000000],[69.100000,36.300000],[68.800000,37.300000],[68.400000,38.300000],[68.100000,39.300000],[67.900000,40.400000],[67.500000,41.100000],[67.000000,41.300000],[66.500000,40.800000],[66.200000,39.800000],[66.100000,38.700000],[66.100000,37.600000],[66.300000,36.500000],[66.500000,35.200000],[66.700000,34.300000],[66.900000,33.100000],[67.100000,32.000000],[66.700000,32.800000],[66.400000,33.600000],[66.100000,34.500000],[65.600000,34.800000],[65.000000,34.700000],[64.600000,34.900000],[64.300000,35.800000],[64.000000,36.600000],[63.800000,37.600000],[64.200000,38.100000],[64.500000,37.100000],[64.900000,36.600000],[65.000000,37.800000],[64.800000,38.700000],[64.600000,39.700000],[64.500000,40.800000],[64.900000,40.500000],[65.300000,39.900000],[65.800000,40.500000],[66.000000,41.500000],[66.500000,42.200000],[66.400000,43.300000],[66.000000,44.000000],[66.500000,44.300000],[67.000000,44.600000],[67.400000,43.900000],[67.800000,44.100000],[67.900000,44.100000],[68.300000,44.200000],[68.700000,43.300000],[68.500000,44.700000],[68.400000,46.000000],[67.900000,46.500000],[67.700000,45.400000],[67.200000,45.500000],[66.800000,46.300000],[66.900000,47.500000],[67.400000,47.900000],[67.700000,48.900000],[68.000000,49.800000],[68.300000,50.800000],[68.500000,52.100000],[68.800000,53.200000],[69.000000,54.400000],[69.000000,54.500000],[100.000000,1000.000000],[69.500000,48.700000],[69.500000,48.700000],[69.500000,48.700000],[69.300000,49.900000],[68.800000,49.600000],[68.800000,48.300000],[69.300000,48.400000],[69.500000,48.700000],[100.000000,1000.000000],[73.300000,53.800000],[73.300000,53.800000],[73.300000,55.500000],[72.900000,56.300000],[72.400000,55.600000],[71.900000,55.400000],[71.400000,55.900000],[71.000000,56.500000],[70.700000,57.600000],[70.700000,56.200000],[70.700000,54.800000],[71.000000,53.700000],[71.500000,54.000000],[71.600000,52.700000],[71.900000,51.500000],[72.200000,52.500000],[72.700000,52.400000],[73.100000,53.200000],[73.300000,53.800000],[100.000000,1000.000000],[73.800000,53.700000],[73.800000,53.700000],[74.100000,55.000000],[74.500000,55.500000],[75.000000,55.700000],[75.300000,57.200000],[75.600000,58.500000],[76.000000,59.900000],[76.300000,61.400000],[76.200000,63.400000],[76.400000,65.200000],[76.800000,66.500000],[76.900000,68.500000],[76.500000,69.000000],[76.100000,67.600000],[75.900000,65.900000],[75.700000,64.200000],[75.400000,62.500000],[75.000000,61.200000],[74.700000,60.200000],[74.400000,58.900000],[74.000000,58.100000],[73.600000,57.400000],[73.300000,56.100000],[73.400000,54.600000],[73.800000,53.700000],[73.800000,53.700000],[73.800000,53.700000],[100.000000,1000.000000],[71.300000,52.300000],[71.300000,52.300000],[70.900000,53.200000],[71.300000,52.300000],[71.300000,52.300000],[100.000000,1000.000000],[70.000000,58.800000],[70.000000,58.800000],[70.400000,59.000000],[70.000000,60.000000],[70.000000,58.800000],[100.000000,1000.000000],[73.000000,70.200000],[73.000000,70.100000],[73.500000,70.800000],[73.000000,70.300000],[73.000000,70.200000],[100.000000,1000.000000],[73.000000,74.200000],[73.100000,74.300000],[73.000000,74.200000],[100.000000,1000.000000],[73.000000,79.300000],[73.000000,79.300000],[73.000000,79.300000],[100.000000,1000.000000],[72.500000,77.400000],[72.500000,77.500000],[72.500000,77.400000],[100.000000,1000.000000],[75.400000,82.200000],[75.400000,82.300000],[75.400000,82.200000],[75.400000,82.200000],[100.000000,1000.000000],[66.600000,70.300000],[66.700000,70.500000],[66.600000,70.300000],[100.000000,1000.000000],[70.400000,82.300000],[70.400000,82.300000],[70.400000,82.300000],[100.000000,1000.000000],[69.000000,54.500000],[69.000000,54.600000],[68.600000,53.900000],[68.200000,54.600000],[68.500000,55.500000],[68.600000,56.800000],[68.800000,58.000000],[68.800000,59.400000],[68.800000,60.800000],[69.300000,60.700000],[69.800000,60.800000],[69.700000,62.100000],[69.600000,63.500000],[69.300000,64.700000],[69.000000,65.800000],[68.800000,67.100000],[68.400000,68.000000],[68.800000,69.100000],[69.200000,68.200000],[69.600000,67.400000],[70.000000,66.900000],[70.500000,67.300000],[70.900000,66.600000],[71.300000,67.300000],[71.800000,68.400000],[72.200000,68.700000],[72.800000,69.200000],[72.900000,70.800000],[72.800000,72.400000],[72.700000,72.600000],[100.000000,1000.000000],[72.700000,72.600000],[72.200000,72.600000],[71.800000,72.300000],[71.300000,72.200000],[70.800000,72.800000],[70.400000,72.700000],[70.000000,72.600000],[69.500000,72.600000],[69.000000,72.500000],[68.600000,73.400000],[68.100000,73.100000],[67.600000,73.000000],[67.300000,72.200000],[66.900000,71.400000],[66.700000,70.300000],[66.400000,71.400000],[66.600000,72.400000],[66.900000,73.500000],[67.300000,73.900000],[67.700000,74.700000],[68.200000,74.600000],[68.700000,74.400000],[68.900000,75.600000],[68.700000,76.900000],[68.200000,77.200000],[67.700000,77.200000],[67.500000,78.300000],[67.900000,77.500000],[68.300000,78.100000],[68.800000,77.700000],[69.100000,76.700000],[69.200000,75.400000],[69.100000,74.100000],[69.600000,73.800000],[70.100000,73.800000],[70.600000,74.300000],[71.100000,73.800000],[71.500000,73.000000],[71.900000,73.700000],[72.200000,74.800000],[72.600000,74.900000],[72.200000,75.600000],[71.700000,75.300000],[71.200000,75.800000],[71.200000,77.200000],[70.900000,78.400000],[71.400000,77.900000],[71.500000,76.400000],[71.800000,77.800000],[72.300000,77.900000],[72.300000,79.600000],[72.000000,80.800000],[71.700000,81.800000],[71.700000,83.300000],[71.200000,82.400000],[70.800000,82.300000],[70.300000,82.200000],[70.300000,83.600000],[70.800000,83.600000],[71.300000,83.400000],[71.800000,83.500000],[72.200000,82.300000],[72.400000,81.000000],[72.900000,81.000000],[73.200000,80.300000],[100.000000,1000.000000],[55.700000,109.600000],[55.700000,109.600000],[55.100000,109.700000],[54.600000,109.600000],[53.900000,109.400000],[53.500000,108.600000],[52.900000,108.200000],[52.600000,107.500000],[52.300000,106.700000],[51.800000,106.100000],[51.500000,105.200000],[51.400000,104.400000],[51.800000,104.900000],[52.100000,105.700000],[52.600000,106.400000],[53.000000,107.100000],[53.300000,107.800000],[53.000000,106.900000],[53.500000,107.600000],[53.900000,108.100000],[54.400000,108.600000],[54.900000,108.900000],[55.300000,109.200000],[55.700000,109.600000],[100.000000,1000.000000],[46.800000,74.900000],[46.800000,75.000000],[46.800000,75.700000],[46.700000,76.400000],[46.600000,77.300000],[46.600000,78.100000],[46.800000,78.800000],[46.400000,78.300000],[46.400000,77.600000],[46.500000,76.700000],[46.500000,75.900000],[46.500000,75.200000],[46.100000,74.700000],[45.800000,74.200000],[45.200000,74.100000],[44.800000,74.300000],[45.300000,73.700000],[45.900000,73.400000],[46.300000,73.900000],[46.700000,74.600000],[46.800000,74.900000],[100.000000,1000.000000],[59.500000,150.700000],[59.700000,149.700000],[59.500000,148.900000],[59.400000,148.000000],[59.400000,146.900000],[59.200000,146.000000],[59.400000,145.200000],[59.400000,144.200000],[59.300000,143.200000],[59.100000,142.300000],[58.600000,141.600000],[58.300000,140.900000],[57.800000,140.400000],[57.500000,139.800000],[57.100000,139.100000],[56.800000,138.600000],[56.400000,138.100000],[56.000000,137.500000],[55.700000,136.900000],[55.300000,136.100000],[54.900000,135.300000],[54.500000,135.800000],[54.600000,136.600000],[54.100000,136.800000],[54.300000,137.700000],[53.700000,137.600000],[100.000000,1000.000000],[54.800000,137.400000],[54.900000,137.500000],[54.900000,137.500000],[54.800000,137.400000],[100.000000,1000.000000],[54.500000,19.600000],[54.500000,19.600000],[54.900000,19.900000],[55.100000,20.700000],[55.600000,21.000000],[55.100000,20.700000],[55.500000,21.200000],[56.000000,21.000000],[56.500000,21.000000],[57.000000,21.300000],[57.600000,21.700000],[57.800000,22.500000],[57.300000,23.000000],[57.000000,23.700000],[57.400000,24.300000],[57.900000,24.300000],[58.400000,24.500000],[58.500000,23.600000],[59.000000,23.500000],[59.400000,24.000000],[59.600000,24.800000],[59.600000,25.800000],[59.500000,26.700000],[59.500000,27.800000],[59.800000,28.400000],[60.000000,29.300000],[60.000000,30.200000],[60.200000,29.400000],[60.400000,28.500000],[60.600000,27.600000],[60.600000,27.600000],[100.000000,1000.000000],[58.600000,22.900000],[58.600000,22.800000],[58.500000,22.000000],[58.000000,22.000000],[58.300000,22.700000],[58.600000,22.900000],[100.000000,1000.000000],[59.000000,22.300000],[59.000000,22.700000],[59.000000,22.700000],[59.000000,22.300000],[100.000000,1000.000000],[61.700000,30.900000],[61.700000,31.000000],[61.400000,31.700000],[61.100000,32.500000],[60.600000,32.800000],[60.200000,32.200000],[59.900000,31.400000],[60.400000,30.900000],[60.800000,30.500000],[61.300000,30.000000],[61.700000,30.700000],[61.700000,30.900000],[100.000000,1000.000000],[43.300000,40.300000],[43.700000,39.700000],[44.100000,39.100000],[44.400000,38.500000],[44.600000,37.900000],[44.900000,37.200000],[45.200000,36.700000],[45.400000,37.400000],[45.800000,37.800000],[46.200000,38.200000],[46.600000,37.800000],[46.700000,38.500000],[47.100000,39.000000],[47.200000,38.200000],[47.000000,37.400000],[46.800000,36.800000],[46.700000,36.000000],[46.300000,35.400000],[45.900000,35.000000],[45.900000,35.000000],[45.900000,35.000000],[46.200000,34.400000],[45.800000,34.800000],[45.400000,35.100000],[45.500000,35.900000],[45.500000,36.700000],[45.100000,36.300000],[45.200000,35.600000],[44.800000,35.100000],[100.000000,1000.000000],[44.500000,33.800000],[44.900000,33.600000],[45.300000,33.100000],[45.800000,33.200000],[46.100000,32.700000],[46.300000,32.000000],[46.800000,32.000000],[46.600000,31.300000],[46.400000,30.700000],[45.900000,30.300000],[45.700000,29.700000],[45.400000,29.600000],[100.000000,1000.000000],[40.200000,52.800000],[40.700000,52.900000],[40.800000,53.600000],[40.700000,54.300000],[41.100000,54.800000],[41.600000,54.100000],[42.000000,53.800000],[41.900000,52.900000],[41.400000,52.800000],[41.900000,52.500000],[42.400000,52.500000],[42.900000,52.400000],[43.200000,51.700000],[43.700000,51.300000],[44.300000,50.800000],[44.600000,50.200000],[44.600000,50.900000],[45.000000,51.300000],[45.200000,52.000000],[45.300000,52.800000],[45.400000,53.600000],[45.200000,54.300000],[45.600000,54.700000],[46.000000,54.200000],[46.500000,53.700000],[46.900000,53.300000],[47.200000,52.700000],[47.100000,51.900000],[47.300000,51.200000],[46.900000,50.300000],[46.800000,49.500000],[46.600000,48.600000],[46.100000,48.500000],[46.300000,47.900000],[45.800000,47.600000],[45.400000,47.300000],[45.000000,46.900000],[44.400000,46.800000],[44.000000,47.400000],[43.400000,47.500000],[43.000000,47.600000],[42.400000,48.100000],[41.900000,48.500000],[41.500000,49.000000],[41.000000,49.300000],[100.000000,1000.000000],[43.600000,60.000000],[43.600000,60.200000],[44.100000,60.700000],[44.700000,61.200000],[45.000000,61.700000],[45.500000,61.500000],[45.800000,61.100000],[46.400000,61.300000],[46.800000,61.600000],[46.600000,61.100000],[46.600000,60.400000],[46.200000,60.800000],[46.200000,60.000000],[45.900000,59.300000],[45.600000,58.700000],[45.000000,58.200000],[44.500000,58.200000],[43.900000,58.400000],[43.800000,59.000000],[43.700000,59.600000],[43.600000,60.000000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[71.600000,132.300000],[71.500000,132.400000],[71.400000,132.300000],[71.200000,132.400000],[71.100000,132.400000],[71.000000,132.400000],[70.800000,132.500000],[70.600000,132.500000],[70.400000,132.400000],[70.200000,132.400000],[70.100000,132.400000],[70.000000,132.300000],[69.900000,132.100000],[69.900000,132.100000],[69.800000,132.100000],[69.700000,132.000000],[69.600000,131.900000],[69.400000,131.800000],[69.200000,131.700000],[69.000000,131.500000],[68.800000,131.300000],[68.700000,131.200000],[68.500000,131.000000],[68.400000,130.900000],[68.300000,130.900000],[68.200000,130.900000],[68.200000,131.000000],[68.000000,131.300000],[68.000000,131.400000],[67.900000,131.800000],[67.800000,132.500000],[67.700000,133.100000],[67.600000,133.700000],[67.500000,134.200000],[67.400000,134.900000],[67.300000,135.500000],[67.100000,136.000000],[67.000000,136.500000],[66.800000,137.300000],[66.700000,137.900000],[66.500000,138.800000],[66.400000,139.400000],[66.300000,140.100000],[66.200000,140.700000],[66.000000,141.200000],[65.900000,141.800000],[65.800000,142.300000],[65.600000,142.900000],[65.400000,143.500000],[65.200000,144.300000],[65.100000,144.800000],[64.900000,145.400000],[64.700000,145.900000],[64.500000,146.300000],[64.300000,146.900000],[64.100000,147.600000],[63.800000,148.100000],[63.700000,148.400000],[63.500000,148.800000],[63.200000,149.100000],[62.900000,149.400000],[62.700000,149.700000],[62.500000,149.900000],[62.300000,150.200000],[62.000000,150.500000],[61.700000,150.600000],[61.400000,150.700000],[61.300000,150.700000],[61.100000,150.700000],[60.900000,150.700000],[60.700000,150.700000],[60.400000,150.600000],[60.200000,150.600000],[59.900000,150.600000],[59.700000,150.600000],[59.600000,150.600000],[59.400000,150.600000],[59.400000,150.500000],[59.300000,150.500000],[59.200000,150.400000],[59.000000,150.400000],[58.700000,150.400000],[58.400000,150.200000],[58.200000,150.000000],[58.100000,149.900000],[58.000000,149.700000],[58.000000,149.600000],[58.000000,149.500000],[57.900000,149.400000],[57.900000,149.300000],[57.800000,149.200000],[57.800000,149.100000],[57.700000,149.000000],[57.700000,149.000000],[57.600000,149.000000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[42.500000,3.800000],[42.500000,3.800000],[42.600000,3.600000],[42.600000,3.300000],[42.700000,3.100000],[42.700000,3.000000],[42.800000,2.700000],[42.900000,1.900000],[43.000000,1.200000],[43.200000,0.400000],[43.300000,0.000000],[43.300000,-0.100000],[43.400000,-0.300000],[43.400000,-0.500000],[43.500000,-0.700000],[43.500000,-0.900000],[43.500000,-1.100000],[43.500000,-1.300000],[43.600000,-1.500000],[43.600000,-1.500000],[43.600000,-1.700000],[43.700000,-1.800000],[43.700000,-2.000000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[56.000000,142.100000],[55.900000,142.000000],[55.800000,141.800000],[55.700000,141.600000],[55.600000,141.400000],[55.500000,141.100000],[55.500000,141.000000],[55.400000,140.900000],[55.300000,140.400000],[55.100000,140.000000],[54.900000,139.400000],[54.700000,139.000000],[54.500000,138.500000],[54.300000,138.000000],[54.200000,137.600000],[54.000000,137.400000],[54.000000,137.200000],[53.900000,136.900000],[53.800000,136.500000],[53.700000,135.800000],[53.600000,135.500000],[53.500000,134.900000],[53.500000,134.300000],[53.500000,133.800000],[53.500000,133.300000],[53.500000,132.500000],[53.400000,132.000000],[53.400000,131.200000],[53.400000,130.600000],[53.400000,130.200000],[53.400000,129.600000],[53.400000,128.900000],[53.500000,128.100000],[53.700000,127.400000],[53.800000,126.600000],[53.800000,126.000000],[53.900000,125.300000],[54.000000,124.600000],[54.000000,124.000000],[54.000000,123.400000],[54.000000,122.700000],[53.800000,122.200000],[53.700000,121.800000],[53.400000,121.200000],[53.300000,120.800000],[52.900000,120.300000],[52.600000,119.900000],[52.300000,119.400000],[51.900000,119.000000],[51.400000,118.600000],[51.000000,118.100000],[50.500000,117.600000],[50.200000,117.200000],[50.000000,116.900000],[49.900000,116.700000],[49.700000,116.300000],[49.700000,115.900000],[49.600000,115.500000],[49.600000,114.800000],[49.500000,114.000000],[49.300000,113.200000],[49.100000,112.200000],[48.900000,111.700000],[48.600000,111.100000],[48.400000,110.700000],[48.000000,110.300000],[47.700000,110.000000],[47.500000,109.600000],[47.400000,109.200000],[47.200000,108.600000],[47.100000,108.000000],[47.000000,107.300000],[46.800000,106.500000],[46.800000,105.900000],[46.600000,105.400000],[46.400000,104.800000],[46.100000,104.200000],[45.900000,103.800000],[45.600000,103.200000],[45.300000,102.600000],[45.100000,102.100000],[44.800000,101.300000],[44.600000,100.500000],[44.500000,99.900000],[44.300000,99.100000],[44.200000,98.500000],[44.100000,97.800000],[44.100000,97.100000],[44.000000,96.400000],[44.000000,95.500000],[43.900000,94.700000],[43.900000,93.800000],[43.900000,93.000000],[44.000000,92.400000],[44.100000,92.000000],[44.200000,91.300000],[44.300000,90.900000],[44.500000,90.500000],[44.700000,90.300000],[44.600000,90.100000],[44.600000,90.000000],[44.600000,89.700000],[44.500000,89.300000],[44.400000,89.000000],[44.300000,88.700000],[44.300000,88.400000],[44.200000,87.900000],[44.100000,87.400000],[44.000000,87.000000],[43.900000,86.500000],[43.700000,86.000000],[43.700000,85.600000],[43.500000,85.100000],[43.500000,84.700000],[43.400000,84.200000],[43.200000,83.700000],[43.100000,83.400000],[43.000000,82.800000],[42.900000,82.500000],[42.900000,82.200000],[42.800000,82.100000],[42.800000,81.900000],[42.700000,81.600000],[42.600000,81.300000],[42.500000,80.900000],[42.400000,80.600000],[42.200000,80.100000],[42.000000,79.700000],[41.900000,79.300000],[41.700000,78.800000],[41.600000,78.400000],[41.400000,78.000000],[41.300000,77.500000],[41.100000,77.200000],[40.900000,76.900000],[40.700000,76.500000],[40.500000,76.200000],[40.300000,75.700000],[40.200000,75.500000],[40.000000,75.100000],[39.800000,74.700000],[39.600000,74.400000],[39.500000,74.100000],[39.300000,73.800000],[39.100000,73.600000],[39.000000,73.300000],[38.900000,72.900000],[38.700000,72.400000],[38.500000,72.200000],[38.400000,72.000000],[38.200000,71.900000],[38.100000,71.700000],[37.900000,71.500000],[37.700000,71.200000],[37.400000,70.700000],[37.000000,70.200000],[36.700000,69.700000],[36.500000,69.200000],[36.400000,68.900000],[36.300000,68.400000],[36.400000,67.900000],[36.300000,67.200000],[36.300000,66.400000],[36.300000,65.600000],[36.300000,65.000000],[36.300000,64.300000],[36.300000,63.400000],[36.400000,62.400000],[36.400000,61.600000],[36.500000,60.800000],[36.600000,60.100000],[36.900000,59.600000],[37.100000,59.200000],[37.300000,58.900000],[37.300000,58.900000],[37.400000,58.800000],[37.600000,58.400000],[37.900000,57.900000],[38.100000,57.400000],[38.300000,56.700000],[38.500000,56.300000],[38.700000,55.800000],[39.000000,55.400000],[39.200000,55.000000],[39.500000,54.600000],[39.700000,54.200000],[39.900000,53.700000],[40.200000,53.000000],[40.200000,52.800000],[40.400000,52.400000],[40.700000,51.800000],[40.900000,51.000000],[41.100000,50.300000],[41.200000,49.900000],[41.300000,49.500000],[41.400000,49.000000],[41.400000,49.000000],[41.500000,48.900000],[41.600000,48.600000],[41.700000,48.300000],[41.900000,47.800000],[42.100000,47.200000],[42.300000,46.500000],[42.500000,45.900000],[42.600000,45.400000],[42.800000,44.800000],[42.900000,44.200000],[43.100000,43.600000],[43.200000,43.100000],[43.200000,42.800000],[43.200000,42.700000],[43.200000,42.300000],[43.300000,41.900000],[43.300000,41.500000],[43.400000,41.100000],[43.400000,40.700000],[43.500000,40.500000],[43.500000,40.400000],[43.600000,40.100000],[43.600000,39.900000],[43.700000,39.700000],[43.700000,39.400000],[43.900000,39.200000],[44.000000,38.900000],[44.200000,38.600000],[44.400000,38.200000],[44.600000,37.900000],[44.800000,37.300000],[44.900000,36.800000],[45.100000,36.400000],[45.100000,36.300000],[45.100000,36.000000],[45.100000,35.700000],[45.000000,35.300000],[44.900000,34.800000],[44.900000,34.400000],[44.800000,34.100000],[44.700000,33.800000],[44.600000,33.400000],[44.600000,33.300000],[44.600000,33.200000],[44.500000,32.700000],[44.400000,32.300000],[44.400000,31.600000],[44.400000,31.000000],[44.500000,30.400000],[44.500000,29.900000],[44.600000,29.400000],[44.700000,29.100000],[44.800000,29.100000],[44.900000,28.800000],[45.000000,28.400000],[45.200000,28.000000],[45.600000,27.500000],[45.900000,27.000000],[46.300000,26.700000],[46.400000,26.500000],[46.600000,26.400000],[47.000000,26.100000],[47.800000,25.600000],[48.200000,25.300000],[48.400000,25.100000],[48.700000,24.700000],[49.000000,24.300000],[49.300000,23.700000],[49.600000,23.300000],[49.600000,23.100000],[49.600000,22.700000],[49.600000,22.200000],[49.500000,21.600000],[49.500000,21.100000],[49.500000,20.500000],[49.400000,20.000000],[49.300000,19.400000],[49.200000,18.700000],[48.900000,18.200000],[48.700000,17.800000],[48.500000,17.300000],[48.300000,16.800000],[48.300000,16.700000],[48.300000,16.400000],[48.200000,16.100000],[48.100000,15.700000],[48.000000,15.000000],[48.000000,14.500000],[47.900000,13.800000],[47.900000,13.200000],[47.900000,12.500000],[47.900000,11.900000],[47.800000,11.100000],[47.700000,10.500000],[47.500000,9.900000],[47.400000,9.400000],[47.100000,8.600000],[46.900000,8.100000],[46.600000,7.600000],[46.300000,7.100000],[46.100000,6.700000],[45.800000,6.400000],[45.700000,6.400000],[45.500000,6.400000],[45.200000,6.400000],[44.900000,6.500000],[44.600000,6.600000],[44.300000,6.800000],[44.100000,7.000000],[44.000000,7.200000],[43.900000,7.400000],[43.800000,7.600000],[43.800000,7.900000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[43.700000,-2.100000],[43.800000,-2.100000],[43.900000,-2.100000],[44.100000,-2.000000],[44.300000,-1.900000],[44.500000,-1.900000],[44.700000,-2.000000],[44.800000,-2.100000],[44.900000,-2.300000],[45.000000,-2.600000],[45.100000,-2.800000],[45.400000,-3.100000],[45.500000,-3.400000],[45.800000,-3.800000],[46.000000,-4.200000],[46.300000,-4.600000],[46.600000,-5.200000],[46.700000,-5.500000],[46.800000,-5.600000],[47.000000,-5.700000],[47.100000,-5.700000],[47.200000,-5.800000],[47.400000,-6.000000],[47.500000,-6.100000],[47.600000,-6.400000],[47.600000,-6.800000],[47.800000,-7.400000],[47.900000,-7.800000],[48.000000,-8.200000],[48.200000,-8.700000],[48.300000,-9.400000],[48.500000,-10.000000],[48.600000,-10.300000],[48.700000,-10.500000],[48.900000,-10.800000],[49.200000,-11.000000],[49.300000,-11.000000],[49.600000,-11.000000],[49.800000,-10.900000],[50.100000,-10.900000],[50.400000,-10.900000],[50.700000,-10.900000],[51.100000,-11.100000],[51.500000,-11.200000],[51.900000,-11.400000],[52.100000,-11.600000],[52.200000,-11.700000],[52.400000,-11.900000],[52.500000,-12.100000],[52.700000,-12.200000],[52.900000,-12.200000],[53.100000,-12.200000],[53.400000,-12.300000],[53.700000,-12.300000],[53.900000,-12.400000],[54.100000,-12.300000],[54.300000,-12.200000],[54.300000,-12.100000],[54.400000,-11.900000],[54.500000,-11.700000],[54.600000,-11.500000],[54.700000,-11.500000],[54.700000,-11.300000],[54.900000,-10.800000],[55.100000,-10.400000],[55.400000,-9.900000],[55.700000,-9.600000],[56.100000,-9.200000],[56.300000,-9.000000],[56.500000,-8.900000],[56.700000,-9.000000],[57.000000,-9.100000],[57.300000,-9.200000],[57.600000,-9.300000],[57.800000,-9.300000],[58.000000,-9.300000],[58.100000,-9.200000],[58.200000,-9.000000],[58.300000,-8.800000],[58.500000,-8.400000],[58.600000,-8.100000],[58.700000,-7.700000],[58.800000,-7.500000],[59.000000,-7.200000],[59.200000,-6.800000],[59.400000,-6.500000],[59.600000,-6.200000],[59.700000,-5.900000],[59.800000,-5.700000],[59.800000,-5.600000],[59.800000,-5.400000],[59.900000,-5.100000],[60.000000,-4.800000],[60.100000,-4.300000],[60.300000,-3.800000],[60.400000,-3.400000],[60.400000,-3.200000],[60.500000,-3.000000],[60.600000,-2.900000],[60.800000,-2.600000],[60.900000,-2.300000],[61.000000,-2.100000],[61.200000,-1.800000],[61.200000,-1.500000],[61.300000,-1.200000],[61.300000,-0.900000],[61.400000,-0.600000],[61.500000,-0.500000],[61.500000,-0.400000],[61.800000,0.200000],[61.800000,0.600000],[62.000000,1.100000],[62.200000,1.700000],[62.400000,2.400000],[62.500000,2.900000],[62.600000,3.200000],[62.700000,3.500000],[62.800000,3.600000],[62.800000,3.800000],[62.900000,4.100000],[63.000000,4.200000],[63.000000,4.400000],[63.100000,4.600000],[63.100000,4.700000],[63.200000,4.900000],[63.300000,5.000000],[63.300000,5.000000],[63.400000,5.100000],[63.600000,5.400000],[63.900000,5.600000],[64.300000,5.700000],[64.600000,5.700000],[65.000000,5.700000],[65.400000,5.800000],[65.700000,6.000000],[66.000000,6.200000],[66.200000,6.600000],[66.500000,7.100000],[66.700000,7.600000],[66.900000,8.000000],[67.000000,8.300000],[67.200000,8.700000],[67.400000,9.200000],[67.700000,9.700000],[67.900000,10.300000],[68.200000,10.900000],[68.400000,11.500000],[68.600000,12.100000],[68.700000,12.500000],[68.900000,13.000000],[69.000000,13.600000],[69.100000,14.100000],[69.300000,14.700000],[69.500000,15.400000],[69.700000,16.200000],[69.800000,16.700000],[69.900000,16.900000],[70.000000,17.100000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[82.200000,76.600000],[82.200000,77.700000],[82.200000,79.200000],[82.200000,80.300000],[82.200000,81.200000],[82.200000,81.900000],[82.200000,82.900000],[82.200000,83.700000],[82.100000,85.100000],[82.100000,85.800000],[82.100000,86.800000],[82.200000,87.700000],[82.200000,88.500000],[82.200000,89.300000],[82.200000,90.200000],[82.100000,90.900000],[82.100000,92.300000],[82.000000,93.700000],[81.900000,94.900000],[81.800000,96.000000],[81.700000,96.900000],[81.600000,97.900000],[81.500000,99.000000],[81.300000,99.700000],[81.200000,100.500000],[81.100000,101.400000],[81.000000,102.200000],[80.900000,103.000000],[80.800000,103.700000],[80.700000,104.300000],[80.600000,104.900000],[80.400000,105.500000],[80.300000,106.200000],[80.200000,106.800000],[80.100000,107.300000],[80.000000,107.800000],[79.900000,108.400000],[79.700000,109.200000],[79.600000,109.600000],[79.500000,110.300000],[79.300000,111.000000],[79.200000,111.800000],[79.000000,112.400000],[78.900000,113.200000],[78.700000,114.000000],[78.600000,114.800000],[78.400000,115.700000],[78.300000,116.700000],[78.100000,117.600000],[78.100000,118.300000],[78.000000,119.000000],[77.800000,119.800000],[77.800000,120.500000],[77.800000,120.500000],[77.700000,121.100000],[77.600000,121.500000],[77.600000,121.800000],[77.500000,122.300000],[77.500000,122.800000],[77.400000,123.200000],[100.000000,1000.000000],[99.000000,99.000000]]
if continent=='ind':
return [[7.299944,77.199350],[7.299944,77.199350],[7.699944,77.599340],[8.299944,78.299330],[8.699945,78.799320],[9.199947,79.099320],[9.699949,79.499310],[10.399950,79.799310],[10.699950,79.999310],[11.299960,79.999310],[11.799960,80.099300],[12.299960,80.299300],[12.799960,80.399300],[13.399960,80.399300],[14.099970,80.399300],[14.699970,80.399300],[15.199970,80.699300],[15.799970,81.299290],[16.599980,82.299270],[17.199980,82.999260],[17.899980,83.799250],[18.199980,84.199240],[18.699980,84.999230],[19.399990,85.799220],[20.099990,86.799200],[20.999990,87.999180],[21.599990,88.699170],[22.200000,89.299160],[23.400000,90.799140],[24.300000,91.699130],[24.900010,92.299120],[25.500010,92.999110],[26.100010,93.799100],[26.600010,94.399090],[27.200020,95.299070],[27.800020,96.199060],[28.300020,95.299070],[28.600020,94.499080],[28.600020,93.899090],[28.600020,92.499110],[28.800020,90.799140],[28.900020,89.299160],[29.000020,87.799190],[29.000020,86.399210],[29.100020,85.699220],[29.300020,84.599240],[29.700030,83.599250],[30.100030,82.699260],[30.500030,81.599280],[30.800030,80.899290],[31.200030,80.099300],[31.700030,79.299320],[32.200030,78.699330],[32.800020,77.999340],[33.600010,76.999350],[34.100000,76.399360],[34.699990,75.499370],[35.099990,75.099380],[35.499980,74.699390],[35.999970,74.499390],[36.199970,73.899400],[36.299970,73.199410],[36.299970,72.499420],[35.999970,72.199420],[35.499980,71.499440],[34.999990,71.099440],[34.300000,70.399450],[33.800010,69.899460],[33.500010,69.399470],[33.100020,68.999470],[32.700020,68.699480],[32.200030,68.299480],[31.900030,67.999490],[31.600030,67.699490],[31.300030,67.199500],[30.700030,66.799510],[30.200030,66.499510],[29.400020,66.199520],[28.500020,66.199520],[27.700020,65.999520],[26.900010,65.999520],[26.400010,65.899520],[25.700010,65.799520],[25.300010,65.799520],[24.800010,65.899520],[24.100000,65.999520],[23.600000,66.299510],[23.300000,66.599510],[23.300000,66.799510],[22.800000,67.199500],[22.100000,67.599490],[21.399990,68.199490],[20.899990,68.599480],[20.099990,69.399470],[19.399990,69.699460],[18.799980,70.199460],[18.099980,70.599450],[17.499980,71.199440],[16.799980,71.899430],[16.399970,72.099430],[15.899970,72.299420],[15.399970,72.599420],[14.799970,72.799420],[14.299970,73.099410],[13.599960,73.399410],[12.899960,73.899400],[11.999960,74.499390],[11.299960,74.799390],[10.699950,74.999380],[9.999950,75.299380],[9.399948,75.599370],[8.899946,75.799370],[8.399944,76.199360],[7.899943,76.599360],[7.699944,76.599360],[7.399944,76.999350]]
if continent=='sam':
return [[8.900000,-81.500000],[9.100000,-80.500000],[9.100000,-80.000000],[9.600000,-79.500000],[9.500000,-78.700000],[9.000000,-77.800000],[8.800000,-77.600000],[8.300000,-77.100000],[8.000000,-76.800000],[8.500000,-76.800000],[9.000000,-76.300000],[9.500000,-75.700000],[10.200000,-75.600000],[10.900000,-75.200000],[11.000000,-74.500000],[11.300000,-74.000000],[11.400000,-73.200000],[11.600000,-72.800000],[12.100000,-72.200000],[12.400000,-71.900000],[12.400000,-71.500000],[12.100000,-71.200000],[11.800000,-71.300000],[11.600000,-71.800000],[10.900000,-71.600000],[10.400000,-71.700000],[9.600000,-71.900000],[9.100000,-71.300000],[9.900000,-71.200000],[10.800000,-71.400000],[11.300000,-70.500000],[11.700000,-69.900000],[11.900000,-70.300000],[11.900000,-69.800000],[11.600000,-69.600000],[11.500000,-69.300000],[11.400000,-69.000000],[11.200000,-68.400000],[10.800000,-68.300000],[10.500000,-67.600000],[10.700000,-66.200000],[10.500000,-66.000000],[10.200000,-65.400000],[10.300000,-64.500000],[10.500000,-63.700000],[10.600000,-64.200000],[10.700000,-63.600000],[10.700000,-62.600000],[10.700000,-62.000000],[10.500000,-62.500000],[10.400000,-62.900000],[10.200000,-62.500000],[9.800000,-61.900000],[9.800000,-61.600000],[9.500000,-61.200000],[8.800000,-60.600000],[8.500000,-60.800000],[8.600000,-60.000000],[8.300000,-59.700000],[8.300000,-59.500000],[7.600000,-58.600000],[6.900000,-58.500000],[6.800000,-58.000000],[6.300000,-57.300000],[5.800000,-57.100000],[5.900000,-56.500000],[5.900000,-55.600000],[6.000000,-54.800000],[5.500000,-54.000000],[5.500000,-53.500000],[4.900000,-52.200000],[4.300000,-51.600000],[4.100000,-51.600000],[4.200000,-51.300000],[3.300000,-50.900000],[1.900000,-50.400000],[1.300000,-50.000000],[0.700000,-50.300000],[-0.100000,-51.000000],[-0.900000,-51.300000],[-1.000000,-50.800000],[-0.800000,-50.300000],[-0.200000,-50.000000],[-0.300000,-49.500000],[-0.200000,-48.900000],[-0.800000,-48.500000],[-1.700000,-49.200000],[-1.900000,-49.300000],[-2.500000,-49.300000],[-1.800000,-49.000000],[-1.600000,-48.500000],[-1.100000,-48.100000],[-0.700000,-48.000000],[-0.600000,-47.300000],[-0.900000,-46.600000],[-1.100000,-45.800000],[-1.700000,-45.300000],[-1.500000,-44.700000],[-2.100000,-44.700000],[-2.300000,-44.300000],[-2.800000,-44.400000],[-2.700000,-44.000000],[-2.500000,-43.500000],[-2.600000,-42.900000],[-3.000000,-41.200000],[-3.000000,-39.700000],[-4.000000,-38.300000],[-4.800000,-37.300000],[-5.200000,-36.200000],[-6.000000,-35.100000],[-7.800000,-34.800000],[-8.900000,-35.200000],[-9.900000,-35.900000],[-10.700000,-36.600000],[-11.100000,-37.200000],[-11.200000,-37.300000],[-11.900000,-37.700000],[-12.700000,-38.200000],[-12.900000,-38.700000],[-13.700000,-39.000000],[-14.600000,-39.200000],[-15.100000,-39.100000],[-15.800000,-39.000000],[-16.400000,-39.100000],[-17.200000,-39.300000],[-18.000000,-39.500000],[-19.000000,-39.700000],[-19.800000,-40.100000],[-20.600000,-40.500000],[-21.300000,-41.100000],[-22.100000,-41.200000],[-22.600000,-42.100000],[-22.900000,-42.200000],[-23.000000,-42.900000],[-23.000000,-43.600000],[-23.000000,-44.200000],[-23.000000,-44.600000],[-23.300000,-44.600000],[-23.500000,-45.200000],[-23.800000,-45.600000],[-23.900000,-46.400000],[-24.500000,-47.200000],[-25.000000,-47.800000],[-25.500000,-48.400000],[-26.100000,-48.700000],[-26.700000,-48.700000],[-27.200000,-48.400000],[-27.600000,-48.600000],[-28.500000,-48.800000],[-28.900000,-49.300000],[-29.400000,-49.800000],[-30.100000,-50.200000],[-30.700000,-50.500000],[-31.500000,-51.100000],[-31.900000,-51.800000],[-32.600000,-52.400000],[-33.200000,-52.700000],[-33.600000,-53.300000],[-33.800000,-53.500000],[-34.400000,-53.900000],[-34.900000,-54.900000],[-34.900000,-56.000000],[-34.700000,-56.800000],[-34.500000,-57.800000],[-34.000000,-58.300000],[-34.300000,-58.500000],[-34.800000,-58.000000],[-35.400000,-57.200000],[-36.300000,-57.200000],[-36.900000,-56.700000],[-37.800000,-57.500000],[-38.500000,-58.300000],[-38.700000,-59.000000],[-38.800000,-60.000000],[-39.000000,-61.100000],[-38.800000,-62.200000],[-39.400000,-62.200000],[-40.000000,-62.400000],[-40.900000,-62.400000],[-41.200000,-63.300000],[-41.000000,-64.400000],[-40.900000,-65.200000],[-42.100000,-65.000000],[-42.400000,-64.300000],[-42.100000,-63.800000],[-42.800000,-63.700000],[-42.600000,-64.400000],[-42.700000,-65.000000],[-43.000000,-64.400000],[-43.100000,-64.500000],[-43.500000,-65.000000],[-44.400000,-65.200000],[-44.900000,-65.500000],[-45.100000,-66.000000],[-45.300000,-66.900000],[-45.800000,-67.300000],[-46.300000,-67.500000],[-47.000000,-66.700000],[-47.200000,-65.700000],[-47.900000,-65.800000],[-48.200000,-66.200000],[-48.700000,-67.000000],[-49.300000,-67.700000],[-49.800000,-67.700000],[-50.100000,-68.400000],[-50.000000,-68.600000],[-50.300000,-68.700000],[-51.100000,-69.400000],[-51.500000,-69.000000],[-51.700000,-69.100000],[-52.100000,-68.600000],[-52.300000,-68.400000],[-52.300000,-69.000000],[-52.400000,-69.500000],[-52.600000,-70.200000],[-52.800000,-70.800000],[-53.100000,-70.900000],[-53.700000,-71.000000],[-53.800000,-71.500000],[-53.500000,-72.300000],[-53.400000,-72.000000],[-53.100000,-71.200000],[-52.600000,-71.500000],[-52.700000,-72.500000],[-52.500000,-72.800000],[-52.100000,-72.500000],[-52.000000,-72.500000],[-51.500000,-72.900000],[-51.700000,-72.600000],[-51.700000,-73.100000],[-52.000000,-73.200000],[-51.800000,-73.300000],[-51.900000,-73.500000],[-51.300000,-73.700000],[-50.900000,-73.900000],[-50.800000,-73.900000],[-50.500000,-73.900000],[-50.300000,-74.500000],[-49.900000,-74.300000],[-49.600000,-74.100000],[-49.500000,-73.900000],[-49.200000,-73.900000],[-49.300000,-74.300000],[-48.800000,-74.300000],[-48.500000,-74.100000],[-48.400000,-73.900000],[-48.300000,-74.400000],[-48.100000,-74.200000],[-48.000000,-73.900000],[-48.200000,-73.400000],[-47.800000,-73.800000],[-47.700000,-74.200000],[-47.400000,-74.500000],[-47.100000,-74.200000],[-46.700000,-74.300000],[-46.700000,-74.900000],[-46.800000,-75.300000],[-46.700000,-75.500000],[-46.300000,-74.900000],[-46.100000,-75.000000],[-45.900000,-74.600000],[-46.000000,-74.100000],[-46.300000,-74.200000],[-46.300000,-73.800000],[-46.400000,-73.700000],[-46.100000,-73.400000],[-46.100000,-73.500000],[-46.000000,-73.600000],[-45.800000,-73.300000],[-45.600000,-73.300000],[-45.600000,-73.500000],[-45.400000,-73.300000],[-45.400000,-72.800000],[-45.200000,-73.300000],[-44.900000,-72.800000],[-44.500000,-72.800000],[-44.200000,-73.200000],[-44.100000,-73.100000],[-43.700000,-72.900000],[-43.400000,-73.000000],[-42.900000,-72.800000],[-42.400000,-72.700000],[-42.200000,-72.400000],[-41.800000,-72.500000],[-41.700000,-72.500000],[-41.600000,-73.100000],[-41.800000,-73.600000],[-41.400000,-73.900000],[-40.600000,-73.700000],[-39.900000,-73.700000],[-39.500000,-73.300000],[-38.800000,-73.400000],[-38.600000,-73.600000],[-37.700000,-73.700000],[-37.200000,-73.300000],[-36.700000,-73.200000],[-36.400000,-72.900000],[-35.700000,-72.600000],[-35.000000,-72.200000],[-34.300000,-72.000000],[-33.600000,-71.700000],[-32.600000,-71.500000],[-31.800000,-71.600000],[-30.900000,-71.800000],[-30.200000,-71.500000],[-29.600000,-71.400000],[-29.100000,-71.600000],[-28.900000,-71.500000],[-28.200000,-71.200000],[-27.400000,-71.000000],[-27.100000,-70.900000],[-26.200000,-70.700000],[-25.600000,-70.700000],[-25.000000,-70.500000],[-24.200000,-70.600000],[-23.400000,-70.600000],[-22.900000,-70.300000],[-21.700000,-70.200000],[-20.600000,-70.300000],[-19.700000,-70.300000],[-18.700000,-70.400000],[-18.200000,-70.600000],[-17.600000,-71.400000],[-16.900000,-72.400000],[-16.300000,-73.500000],[-16.100000,-74.100000],[-15.600000,-75.000000],[-14.800000,-75.800000],[-14.200000,-76.400000],[-13.200000,-76.400000],[-12.500000,-76.900000],[-11.600000,-77.500000],[-11.300000,-77.700000],[-11.100000,-77.800000],[-10.500000,-78.000000],[-9.800000,-78.300000],[-9.200000,-78.500000],[-8.500000,-78.800000],[-7.700000,-79.500000],[-6.800000,-80.000000],[-6.100000,-81.000000],[-5.500000,-81.000000],[-4.900000,-81.200000],[-4.100000,-81.000000],[-3.500000,-80.300000],[-3.300000,-80.100000],[-2.900000,-79.800000],[-2.600000,-79.900000],[-2.200000,-79.900000],[-2.600000,-80.200000],[-2.500000,-80.500000],[-2.200000,-80.900000],[-1.600000,-80.800000],[-0.700000,-80.500000],[0.000000,-80.100000],[0.800000,-79.800000],[1.200000,-79.000000],[1.400000,-78.900000],[1.700000,-78.800000],[2.100000,-78.700000],[2.600000,-78.200000],[3.100000,-77.600000],[3.700000,-77.100000],[3.900000,-77.400000],[4.600000,-77.400000],[6.100000,-77.500000],[6.700000,-77.600000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[3.500000,282.500000],[3.500000,282.500000],[9.500000,282.500000]]
if continent=='ant':
return [[-77.000000,-31.200000],[-76.700000,-30.200000],[-76.400000,-28.800000],[-76.200000,-27.500000],[-75.900000,-26.700000],[-75.600000,-26.700000],[-75.300000,-25.000000],[-75.100000,-24.400000],[-74.500000,-23.600000],[-74.200000,-22.400000],[-74.200000,-21.600000],[-73.900000,-20.700000],[-73.500000,-20.100000],[-73.100000,-19.500000],[-72.900000,-19.000000],[-72.600000,-18.500000],[-72.600000,-17.100000],[-72.500000,-16.400000],[-72.200000,-15.500000],[-72.000000,-14.100000],[-72.100000,-13.300000],[-72.000000,-13.000000],[-71.800000,-12.500000],[-71.400000,-12.100000],[-71.100000,-11.400000],[-71.000000,-10.400000],[-70.700000,-9.700000],[-70.600000,-9.000000],[-70.700000,-8.300000],[-70.500000,-7.400000],[-70.500000,-6.500000],[-70.500000,-5.600000],[-70.400000,-4.600000],[-70.400000,-3.700000],[-70.300000,-2.800000],[-70.100000,-1.800000],[-69.900000,-1.400000],[-69.700000,-0.900000],[-69.500000,-1.000000],[-69.200000,-1.200000],[-69.100000,-0.400000],[-69.100000,-0.100000],[-69.200000,-0.100000],[-69.700000,0.400000],[-70.100000,1.300000],[-70.100000,2.500000],[-70.100000,3.600000],[-70.000000,5.100000],[-70.200000,5.600000],[-70.200000,5.900000],[-70.300000,6.300000],[-70.000000,6.500000],[-70.000000,7.500000],[-70.000000,8.800000],[-70.000000,9.200000],[-70.000000,9.900000],[-70.000000,10.500000],[-70.100000,11.400000],[-70.100000,12.600000],[-69.800000,12.900000],[-69.500000,13.500000],[-69.400000,14.600000],[-69.400000,14.800000],[-69.700000,15.300000],[-69.800000,16.300000],[-69.900000,17.800000],[-70.000000,18.800000],[-70.000000,20.000000],[-70.200000,21.400000],[-70.200000,21.000000],[-70.200000,23.000000],[-70.300000,24.400000],[-70.200000,24.800000],[-70.200000,25.300000],[-70.100000,26.100000],[-70.000000,26.600000],[-70.000000,27.600000],[-69.800000,28.900000],[-69.500000,29.400000],[-69.200000,30.400000],[-69.200000,31.200000],[-69.400000,32.200000],[-69.500000,33.100000],[-69.200000,33.000000],[-68.700000,33.700000],[-69.100000,34.500000],[-69.500000,35.600000],[-69.700000,36.600000],[-69.700000,37.300000],[-70.100000,38.200000],[-69.800000,38.900000],[-69.600000,39.200000],[-69.300000,39.300000],[-69.000000,39.500000],[-69.000000,39.900000],[-68.700000,41.000000],[-68.400000,42.200000],[-68.100000,42.800000],[-67.800000,44.300000],[-67.700000,45.100000],[-67.300000,46.300000],[-67.600000,47.200000],[-67.700000,47.100000],[-67.800000,47.500000],[-67.600000,48.400000],[-67.500000,49.000000],[-67.500000,48.600000],[-67.100000,48.300000],[-67.100000,49.000000],[-67.300000,49.800000],[-67.300000,50.300000],[-67.100000,50.100000],[-66.900000,50.000000],[-66.400000,50.500000],[-66.200000,51.600000],[-66.000000,52.800000],[-66.100000,54.200000],[-66.100000,55.200000],[-66.400000,56.100000],[-66.600000,56.400000],[-66.800000,57.200000],[-66.900000,56.500000],[-67.200000,56.600000],[-67.200000,57.200000],[-67.200000,57.800000],[-67.300000,58.300000],[-67.400000,58.700000],[-67.500000,58.900000],[-67.400000,59.400000],[-67.500000,59.700000],[-67.600000,61.200000],[-67.700000,61.300000],[-67.700000,61.900000],[-67.700000,62.900000],[-67.700000,64.200000],[-67.900000,65.600000],[-68.000000,67.900000],[-67.900000,69.600000],[-68.400000,70.200000],[-68.700000,70.800000],[-68.600000,72.000000],[-68.500000,73.200000],[-68.900000,73.300000],[-69.000000,74.600000],[-69.400000,74.800000],[-69.800000,73.800000],[-69.600000,75.000000],[-69.500000,75.400000],[-69.500000,76.000000],[-69.200000,77.600000],[-68.600000,77.900000],[-68.200000,79.000000],[-67.900000,81.100000],[-67.500000,81.400000],[-67.100000,82.300000],[-66.400000,81.400000],[-65.800000,82.100000],[-66.300000,82.800000],[-66.500000,83.800000],[-66.700000,84.900000],[-66.300000,86.200000],[-66.100000,87.700000],[-66.700000,88.900000],[-66.700000,90.900000],[-66.700000,92.700000],[-66.600000,94.000000],[-66.600000,94.300000],[-66.400000,94.800000],[-66.500000,95.200000],[-66.300000,95.500000],[-65.600000,95.500000],[-65.200000,96.100000],[-65.400000,97.300000],[-65.800000,98.400000],[-65.900000,99.500000],[-65.600000,100.400000],[-65.500000,101.300000],[-65.800000,102.300000],[-65.400000,102.900000],[-65.300000,103.300000],[-65.500000,104.500000],[-66.100000,105.300000],[-65.900000,104.100000],[-66.100000,104.400000],[-66.300000,105.800000],[-66.600000,107.600000],[-66.700000,108.200000],[-67.000000,108.700000],[-66.700000,109.300000],[-66.700000,110.000000],[-66.500000,110.500000],[-66.300000,110.500000],[-65.900000,111.900000],[-65.800000,112.900000],[-66.000000,113.900000],[-66.400000,114.500000],[-66.500000,115.000000],[-66.400000,115.900000],[-66.700000,116.700000],[-67.000000,117.700000],[-66.900000,118.500000],[-66.900000,120.000000],[-66.600000,121.300000],[-66.100000,120.800000],[-65.700000,121.400000],[-66.400000,122.200000],[-66.700000,122.800000],[-66.700000,123.600000],[-66.600000,123.700000],[-66.500000,123.300000],[-66.200000,124.300000],[-66.300000,125.900000],[-66.600000,126.800000],[-66.700000,127.400000],[-67.000000,128.200000],[-67.000000,129.400000],[-66.400000,129.700000],[-66.000000,129.900000],[-66.200000,130.900000],[-66.200000,132.100000],[-66.100000,133.500000],[-65.900000,134.500000],[-65.300000,134.900000],[-65.200000,135.600000],[-66.000000,135.200000],[-66.100000,135.200000],[-66.300000,136.000000],[-66.500000,137.600000],[-66.700000,139.400000],[-66.800000,141.400000],[-67.000000,142.100000],[-66.900000,143.100000],[-67.100000,144.200000],[-67.000000,145.500000],[-67.500000,145.100000],[-67.700000,146.000000],[-67.900000,146.600000],[-68.100000,148.000000],[-68.400000,147.700000],[-68.400000,148.600000],[-68.500000,149.100000],[-68.500000,149.500000],[-68.500000,149.800000],[-68.400000,150.600000],[-68.500000,152.200000],[-68.600000,154.200000],[-68.700000,154.400000],[-69.000000,154.900000],[-69.200000,156.900000],[-69.100000,157.100000],[-69.300000,158.200000],[-69.500000,159.100000],[-70.000000,160.300000],[-70.300000,160.700000],[-70.400000,161.500000],[-70.700000,162.300000],[-70.700000,163.000000],[-70.800000,164.300000],[-70.600000,165.900000],[-70.800000,166.300000],[-71.000000,167.000000],[-71.200000,168.100000],[-71.600000,169.300000],[-71.600000,169.900000],[-71.600000,170.200000],[-72.000000,170.300000],[-72.300000,169.900000],[-72.900000,169.600000],[-73.200000,168.800000],[-73.500000,167.600000],[-74.100000,166.600000],[-74.300000,165.000000],[-74.600000,165.300000],[-74.800000,164.100000],[-75.300000,163.500000],[-75.600000,164.200000],[-75.600000,162.700000],[-76.000000,162.600000],[-76.300000,163.200000],[-76.600000,162.700000],[-76.900000,162.400000],[-77.100000,163.100000],[-77.500000,163.500000],[-77.800000,164.400000],[-77.900000,165.200000],[-77.700000,166.100000],[-77.300000,166.200000],[-77.100000,166.600000],[-77.300000,167.200000],[-77.400000,168.700000],[-77.500000,169.900000],[-77.700000,172.300000],[-77.900000,175.300000],[-78.200000,178.500000],[-78.500000,-177.700000],[-78.500000,-174.000000],[-78.600000,-171.800000],[-78.600000,-168.400000],[-78.600000,-165.000000],[-78.200000,-163.500000],[-78.000000,-160.500000],[-77.700000,-158.600000],[-77.200000,-158.500000],[-77.100000,-154.900000],[-77.300000,-153.300000],[-77.100000,-151.400000],[-76.700000,-150.200000],[-76.500000,-149.500000],[-76.500000,-146.600000],[-76.300000,-146.100000],[-75.800000,-146.000000],[-75.300000,-142.900000],[-75.200000,-141.500000],[-74.700000,-137.500000],[-74.800000,-134.800000],[-74.700000,-133.900000],[-74.600000,-132.800000],[-74.300000,-131.400000],[-74.200000,-130.200000],[-74.100000,-128.400000],[-73.900000,-127.000000],[-73.600000,-125.700000],[-73.300000,-124.900000],[-73.600000,-123.800000],[-73.700000,-122.500000],[-73.900000,-120.800000],[-73.900000,-120.100000],[-74.000000,-119.000000],[-74.200000,-117.200000],[-74.200000,-115.400000],[-74.100000,-114.000000],[-74.200000,-113.500000],[-74.400000,-112.000000],[-74.300000,-111.000000],[-74.400000,-109.700000],[-74.900000,-108.300000],[-74.900000,-107.200000],[-74.300000,-107.200000],[-74.400000,-104.800000],[-74.800000,-105.500000],[-74.800000,-104.600000],[-75.100000,-102.100000],[-74.800000,-101.300000],[-74.500000,-101.800000],[-74.100000,-101.900000],[-73.700000,-102.300000],[-73.800000,-101.100000],[-73.500000,-101.300000],[-73.500000,-102.300000],[-73.400000,-103.100000],[-73.100000,-103.500000],[-73.000000,-103.100000],[-72.900000,-102.800000],[-72.600000,-103.300000],[-72.400000,-103.200000],[-72.200000,-102.200000],[-72.100000,-100.700000],[-72.100000,-100.000000],[-72.200000,-99.500000],[-72.200000,-99.000000],[-72.300000,-98.300000],[-72.200000,-98.500000],[-72.100000,-98.000000],[-72.300000,-97.600000],[-72.200000,-97.300000],[-72.000000,-96.800000],[-72.300000,-96.600000],[-72.300000,-95.900000],[-72.400000,-95.800000],[-72.600000,-95.900000],[-72.700000,-95.200000],[-72.700000,-94.900000],[-72.700000,-93.700000],[-72.700000,-92.400000],[-72.500000,-90.900000],[-72.500000,-89.400000],[-72.600000,-87.800000],[-72.800000,-86.200000],[-72.900000,-84.500000],[-73.000000,-82.300000],[-73.100000,-80.500000],[-73.100000,-79.000000],[-73.500000,-78.000000],[-73.000000,-78.600000],[-72.800000,-77.800000],[-72.600000,-78.000000],[-72.600000,-76.900000],[-72.700000,-76.600000],[-72.700000,-76.100000],[-73.100000,-75.800000],[-72.900000,-75.100000],[-73.000000,-73.900000],[-73.300000,-73.800000],[-73.500000,-72.900000],[-73.300000,-72.300000],[-73.100000,-72.400000],[-72.900000,-72.200000],[-72.500000,-72.500000],[-72.300000,-72.400000],[-72.200000,-73.200000],[-72.100000,-74.500000],[-71.700000,-75.500000],[-71.500000,-74.900000],[-71.400000,-74.000000],[-71.100000,-73.300000],[-70.900000,-74.200000],[-70.900000,-75.400000],[-70.800000,-74.700000],[-70.700000,-74.300000],[-70.200000,-74.600000],[-70.000000,-74.600000],[-69.900000,-74.200000],[-69.800000,-73.300000],[-69.700000,-72.600000],[-69.600000,-72.800000],[-69.400000,-72.500000],[-69.600000,-71.800000],[-69.300000,-71.900000],[-69.100000,-71.600000],[-68.900000,-70.600000],[-69.100000,-70.100000],[-69.200000,-70.100000],[-69.400000,-69.700000],[-69.600000,-69.500000],[-70.000000,-69.200000],[-69.900000,-68.700000],[-69.500000,-68.700000],[-69.200000,-68.400000],[-69.100000,-67.500000],[-68.800000,-67.100000],[-68.500000,-66.900000],[-68.300000,-66.700000],[-68.100000,-67.000000],[-67.900000,-66.900000],[-67.800000,-66.800000],[-67.600000,-66.600000],[-67.600000,-67.100000],[-67.500000,-67.500000],[-67.400000,-67.600000],[-67.200000,-67.400000],[-67.000000,-67.000000],[-67.300000,-66.900000],[-67.400000,-66.600000],[-67.100000,-66.300000],[-66.900000,-66.000000],[-66.500000,-65.600000],[-66.200000,-65.600000],[-66.200000,-65.300000],[-66.100000,-65.100000],[-66.000000,-65.000000],[-66.100000,-64.400000],[-65.900000,-64.600000],[-65.700000,-64.500000],[-65.700000,-64.100000],[-65.600000,-63.900000],[-65.500000,-64.000000],[-65.200000,-64.100000],[-65.200000,-63.100000],[-65.000000,-63.100000],[-64.900000,-62.500000],[-64.700000,-62.400000],[-64.700000,-61.900000],[-64.500000,-61.500000],[-64.200000,-61.000000],[-64.000000,-60.100000],[-63.900000,-59.600000],[-63.700000,-59.200000],[-63.500000,-58.400000],[-63.400000,-57.700000],[-63.400000,-57.000000],[-63.700000,-57.200000],[-63.600000,-57.500000],[-63.700000,-57.700000],[-63.900000,-58.400000],[-64.200000,-58.800000],[-64.800000,-58.900000],[-65.300000,-59.300000],[-65.700000,-59.600000],[-66.400000,-60.400000],[-67.000000,-60.800000],[-67.100000,-60.700000],[-68.000000,-60.800000],[-68.800000,-60.600000],[-69.400000,-60.300000],[-70.100000,-60.800000],[-70.700000,-60.600000],[-71.400000,-60.300000],[-71.900000,-60.500000],[-72.000000,-60.500000],[-72.500000,-60.200000],[-73.000000,-59.700000],[-73.400000,-60.000000],[-73.800000,-60.900000],[-74.100000,-61.000000],[-74.400000,-60.600000],[-74.900000,-61.800000],[-75.400000,-59.600000],[-76.000000,-57.200000],[-76.500000,-54.900000],[-76.900000,-53.000000],[-77.100000,-50.800000],[-77.300000,-50.400000],[-77.700000,-50.300000],[-77.700000,-48.000000],[-78.100000,-45.900000],[-78.200000,-44.400000],[-77.800000,-42.400000],[-78.000000,-39.500000],[-78.000000,-36.200000],[-77.600000,-35.000000],[-77.100000,-32.000000],[0.000000,0.000000],[77.000000,-88.500000]]
if continent=='grn':
return [[77.100000,-71.000000],[77.200000,-70.000000],[77.200000,-68.600000],[77.200000,-68.000000],[77.100000,-66.300000],[77.200000,-65.700000],[77.400000,-66.400000],[77.600000,-65.800000],[77.600000,-66.500000],[77.700000,-66.600000],[77.500000,-67.900000],[77.600000,-68.600000],[77.600000,-70.000000],[77.700000,-70.000000],[77.900000,-70.100000],[77.900000,-71.300000],[77.900000,-72.200000],[78.100000,-72.600000],[78.200000,-72.700000],[78.300000,-72.800000],[78.500000,-72.300000],[78.600000,-71.300000],[78.700000,-70.900000],[78.800000,-70.100000],[78.900000,-69.300000],[79.000000,-69.300000],[79.100000,-68.100000],[79.100000,-67.500000],[79.100000,-66.800000],[79.100000,-66.200000],[79.300000,-65.600000],[79.500000,-65.000000],[79.700000,-65.100000],[79.800000,-64.600000],[79.900000,-65.100000],[80.100000,-64.200000],[80.200000,-64.200000],[80.100000,-64.500000],[80.100000,-65.400000],[80.000000,-66.200000],[80.100000,-67.200000],[80.200000,-67.600000],[80.300000,-67.700000],[80.400000,-67.000000],[80.600000,-66.700000],[80.600000,-65.800000],[80.700000,-65.700000],[80.800000,-65.200000],[81.000000,-64.500000],[81.100000,-64.200000],[81.200000,-63.400000],[81.100000,-62.300000],[81.200000,-61.600000],[81.400000,-61.600000],[81.600000,-61.600000],[81.600000,-61.900000],[81.800000,-61.500000],[81.900000,-60.700000],[81.800000,-59.600000],[81.600000,-59.100000],[81.500000,-58.100000],[81.400000,-57.600000],[81.600000,-58.300000],[81.800000,-58.900000],[81.900000,-59.800000],[82.100000,-59.100000],[82.200000,-57.700000],[82.200000,-56.900000],[82.200000,-55.900000],[82.300000,-55.700000],[82.200000,-54.700000],[82.000000,-54.200000],[81.700000,-54.200000],[81.600000,-53.900000],[81.900000,-53.500000],[81.900000,-52.800000],[81.800000,-51.900000],[81.700000,-50.600000],[81.900000,-51.500000],[81.900000,-50.400000],[82.100000,-51.000000],[82.300000,-51.500000],[82.500000,-51.900000],[82.500000,-51.800000],[82.500000,-50.600000],[82.400000,-49.700000],[82.200000,-48.400000],[82.000000,-46.800000],[81.800000,-45.700000],[81.800000,-45.100000],[82.000000,-45.700000],[82.100000,-45.000000],[82.100000,-45.200000],[82.200000,-45.600000],[82.300000,-44.300000],[82.200000,-43.500000],[82.300000,-44.700000],[82.500000,-45.300000],[82.600000,-46.000000],[82.800000,-46.200000],[82.800000,-44.300000],[82.600000,-42.900000],[82.500000,-42.700000],[82.700000,-42.800000],[82.600000,-41.600000],[82.400000,-40.900000],[82.600000,-41.000000],[82.700000,-41.500000],[82.800000,-42.300000],[82.800000,-43.800000],[82.800000,-45.400000],[82.900000,-45.000000],[82.900000,-44.900000],[83.000000,-46.000000],[83.100000,-46.500000],[83.100000,-45.900000],[83.200000,-45.600000],[83.100000,-44.600000],[83.200000,-44.700000],[83.200000,-44.200000],[83.200000,-43.300000],[83.100000,-43.000000],[83.000000,-41.800000],[82.900000,-40.500000],[82.800000,-39.600000],[83.000000,-40.200000],[83.000000,-38.600000],[83.000000,-39.800000],[83.100000,-38.300000],[83.200000,-39.100000],[83.200000,-40.000000],[83.300000,-40.000000],[83.400000,-39.800000],[83.400000,-39.300000],[83.500000,-38.700000],[83.300000,-37.600000],[83.400000,-37.800000],[83.600000,-37.500000],[83.500000,-36.500000],[83.600000,-35.800000],[83.500000,-35.300000],[83.600000,-34.300000],[83.600000,-33.400000],[83.600000,-32.300000],[83.500000,-30.700000],[83.500000,-30.000000],[83.400000,-30.200000],[83.400000,-29.500000],[83.500000,-28.400000],[83.300000,-26.900000],[83.100000,-28.900000],[83.200000,-31.200000],[83.100000,-32.800000],[83.100000,-34.200000],[83.100000,-34.200000],[83.000000,-34.900000],[82.900000,-36.600000],[82.800000,-36.400000],[82.900000,-35.500000],[82.800000,-35.000000],[82.900000,-34.100000],[82.900000,-33.000000],[83.100000,-31.900000],[83.100000,-29.900000],[83.100000,-29.300000],[83.100000,-27.400000],[83.100000,-25.800000],[82.900000,-25.800000],[82.800000,-26.200000],[82.700000,-27.000000],[82.900000,-25.400000],[82.800000,-24.800000],[82.800000,-24.200000],[82.800000,-23.300000],[82.700000,-22.400000],[82.500000,-22.100000],[82.400000,-23.000000],[82.300000,-24.400000],[82.100000,-26.200000],[82.100000,-27.100000],[82.200000,-28.800000],[82.100000,-31.200000],[82.200000,-32.400000],[82.100000,-31.600000],[82.000000,-32.600000],[81.800000,-34.000000],[81.700000,-33.500000],[81.900000,-31.400000],[81.900000,-30.500000],[82.000000,-28.500000],[81.900000,-26.600000],[81.600000,-27.300000],[81.400000,-28.000000],[81.700000,-25.700000],[81.800000,-24.800000],[82.000000,-24.400000],[82.000000,-22.900000],[81.800000,-22.500000],[81.500000,-22.600000],[81.300000,-23.400000],[81.200000,-23.400000],[80.800000,-24.100000],[80.500000,-24.900000],[80.600000,-24.500000],[80.800000,-23.800000],[80.900000,-23.400000],[81.200000,-22.400000],[81.400000,-21.500000],[81.600000,-20.300000],[81.400000,-20.400000],[81.500000,-19.600000],[81.500000,-18.700000],[81.600000,-18.200000],[81.600000,-18.100000],[81.700000,-17.800000],[81.800000,-17.500000],[81.900000,-16.700000],[81.900000,-15.500000],[81.800000,-14.200000],[81.700000,-13.000000],[81.500000,-12.600000],[81.300000,-13.700000],[81.100000,-14.200000],[81.100000,-15.100000],[80.900000,-14.900000],[80.800000,-16.000000],[80.700000,-17.400000],[80.700000,-18.300000],[80.600000,-19.500000],[80.600000,-21.500000],[80.600000,-20.400000],[80.600000,-19.300000],[80.600000,-17.700000],[80.500000,-16.200000],[80.300000,-16.700000],[80.200000,-18.000000],[80.300000,-19.500000],[80.100000,-20.400000],[79.800000,-20.400000],[79.800000,-20.100000],[80.000000,-19.400000],[80.100000,-18.300000],[80.000000,-17.600000],[79.800000,-18.100000],[79.700000,-19.300000],[79.500000,-19.700000],[79.200000,-19.900000],[79.300000,-19.100000],[79.200000,-19.600000],[79.100000,-20.000000],[78.800000,-20.500000],[78.700000,-21.100000],[78.600000,-21.000000],[78.100000,-21.400000],[77.900000,-21.800000],[77.700000,-21.500000],[77.900000,-20.600000],[77.700000,-19.200000],[77.700000,-19.900000],[77.600000,-20.700000],[77.500000,-20.500000],[77.400000,-20.300000],[77.200000,-19.100000],[77.300000,-18.500000],[77.100000,-18.200000],[76.900000,-18.300000],[76.800000,-19.200000],[76.900000,-20.900000],[76.900000,-21.100000],[76.900000,-21.600000],[76.800000,-21.100000],[76.700000,-21.900000],[76.600000,-22.600000],[76.500000,-22.100000],[76.400000,-22.500000],[76.400000,-21.700000],[76.200000,-21.600000],[76.200000,-21.100000],[76.200000,-20.900000],[76.100000,-19.800000],[76.000000,-20.600000],[75.900000,-20.300000],[75.700000,-19.600000],[75.100000,-19.700000],[75.500000,-21.900000],[75.500000,-21.900000],[75.200000,-21.000000],[75.000000,-21.600000],[74.900000,-20.800000],[74.700000,-21.100000],[74.600000,-20.200000],[74.500000,-19.200000],[74.300000,-20.300000],[74.500000,-21.700000],[74.300000,-22.200000],[74.100000,-22.400000],[74.000000,-21.700000],[73.900000,-20.900000],[73.600000,-20.600000],[73.500000,-21.500000],[73.200000,-22.500000],[73.600000,-24.000000],[73.700000,-24.500000],[73.500000,-25.000000],[73.300000,-25.700000],[73.300000,-27.000000],[73.100000,-26.600000],[73.000000,-25.100000],[72.800000,-26.200000],[72.700000,-26.900000],[72.800000,-25.800000],[72.500000,-24.800000],[72.300000,-25.500000],[72.400000,-25.200000],[72.300000,-24.100000],[72.100000,-23.600000],[71.900000,-22.600000],[71.600000,-23.100000],[71.800000,-22.500000],[71.700000,-22.300000],[71.300000,-22.600000],[71.500000,-21.800000],[71.200000,-21.900000],[71.000000,-21.900000],[70.700000,-21.800000],[70.500000,-22.100000],[70.700000,-22.700000],[70.600000,-23.900000],[71.300000,-24.600000],[71.600000,-26.100000],[71.800000,-27.700000],[71.500000,-27.300000],[71.500000,-25.900000],[71.100000,-26.000000],[71.000000,-27.700000],[70.800000,-28.100000],[70.500000,-28.700000],[70.400000,-26.700000],[70.100000,-27.700000],[70.000000,-28.000000],[70.200000,-26.400000],[70.300000,-25.200000],[70.200000,-24.100000],[70.100000,-22.600000],[70.100000,-22.200000],[69.900000,-22.800000],[69.900000,-23.300000],[69.800000,-23.300000],[69.700000,-23.900000],[69.500000,-23.800000],[69.600000,-24.400000],[69.400000,-24.200000],[69.400000,-24.500000],[69.300000,-24.900000],[69.200000,-25.400000],[69.100000,-25.100000],[69.000000,-25.400000],[69.000000,-25.500000],[68.900000,-25.900000],[68.700000,-26.400000],[68.700000,-26.700000],[68.600000,-27.100000],[68.500000,-27.400000],[68.500000,-27.800000],[68.500000,-28.100000],[68.400000,-28.600000],[68.300000,-29.200000],[68.200000,-29.500000],[68.400000,-29.900000],[68.200000,-30.300000],[68.200000,-30.700000],[68.100000,-30.700000],[68.100000,-31.100000],[68.100000,-31.200000],[68.100000,-31.700000],[68.200000,-31.800000],[68.400000,-32.100000],[68.400000,-32.400000],[68.600000,-32.600000],[68.500000,-32.800000],[68.200000,-32.500000],[68.000000,-32.200000],[67.900000,-32.500000],[67.700000,-33.100000],[67.500000,-33.400000],[67.200000,-33.500000],[67.000000,-33.800000],[66.800000,-33.900000],[66.700000,-34.200000],[66.600000,-34.500000],[66.400000,-34.700000],[66.300000,-35.200000],[66.400000,-35.800000],[66.200000,-35.800000],[66.000000,-36.000000],[65.900000,-36.400000],[65.900000,-36.600000],[66.100000,-37.100000],[65.900000,-37.200000],[65.900000,-37.700000],[66.100000,-37.600000],[66.300000,-37.400000],[66.300000,-37.900000],[66.200000,-38.000000],[65.900000,-38.100000],[66.000000,-38.400000],[65.800000,-38.200000],[65.700000,-38.500000],[65.600000,-38.700000],[65.700000,-39.300000],[65.600000,-39.600000],[65.500000,-40.100000],[65.300000,-39.900000],[65.100000,-40.100000],[65.100000,-40.700000],[65.000000,-41.200000],[64.700000,-40.800000],[64.400000,-40.400000],[64.300000,-41.300000],[64.200000,-40.700000],[63.800000,-40.600000],[63.800000,-41.400000],[63.500000,-40.800000],[63.400000,-41.200000],[63.200000,-41.200000],[63.200000,-41.500000],[63.100000,-41.600000],[63.100000,-41.900000],[63.000000,-41.700000],[62.900000,-41.500000],[62.800000,-41.900000],[62.800000,-42.200000],[62.700000,-42.500000],[62.600000,-42.500000],[62.300000,-42.300000],[61.900000,-42.200000],[61.600000,-42.400000],[61.300000,-42.700000],[61.100000,-42.700000],[60.900000,-42.800000],[60.700000,-42.900000],[60.600000,-43.100000],[60.500000,-43.600000],[60.300000,-43.100000],[60.100000,-43.100000],[60.200000,-43.900000],[60.200000,-44.200000],[60.100000,-45.000000],[60.200000,-45.200000],[60.500000,-44.900000],[60.400000,-45.200000],[60.700000,-45.300000],[60.600000,-45.600000],[60.700000,-45.700000],[61.000000,-45.400000],[60.700000,-46.100000],[60.900000,-45.800000],[61.000000,-46.000000],[61.100000,-46.300000],[61.000000,-47.100000],[61.000000,-47.400000],[60.800000,-47.500000],[60.900000,-47.900000],[61.000000,-47.700000],[61.100000,-47.700000],[61.100000,-48.100000],[61.200000,-48.500000],[61.400000,-48.700000],[61.500000,-48.700000],[61.500000,-48.800000],[61.600000,-49.000000],[61.900000,-49.300000],[62.100000,-49.000000],[62.000000,-49.600000],[62.100000,-49.600000],[62.300000,-49.800000],[62.500000,-50.200000],[62.800000,-50.100000],[62.900000,-50.400000],[63.000000,-50.700000],[63.300000,-51.100000],[63.700000,-51.300000],[64.200000,-51.500000],[64.400000,-50.500000],[64.700000,-50.600000],[64.800000,-50.700000],[64.300000,-51.700000],[64.500000,-52.100000],[64.800000,-51.900000],[65.000000,-52.300000],[65.200000,-52.400000],[65.500000,-52.400000],[65.700000,-52.900000],[65.900000,-52.800000],[66.100000,-53.200000],[66.200000,-53.300000],[66.400000,-53.600000],[66.700000,-53.200000],[66.900000,-53.600000],[67.300000,-53.900000],[67.500000,-53.500000],[67.900000,-53.500000],[68.000000,-52.900000],[68.200000,-53.200000],[68.100000,-52.400000],[68.100000,-51.200000],[68.200000,-51.100000],[68.400000,-51.100000],[68.300000,-51.600000],[68.200000,-52.800000],[68.600000,-52.500000],[68.700000,-51.100000],[68.900000,-51.200000],[69.200000,-51.000000],[69.200000,-50.300000],[69.400000,-51.000000],[69.800000,-50.700000],[70.000000,-51.100000],[70.200000,-52.800000],[70.800000,-54.300000],[70.700000,-52.400000],[70.400000,-50.600000],[70.500000,-51.000000],[70.700000,-50.700000],[71.100000,-51.900000],[71.100000,-51.800000],[71.200000,-52.500000],[71.400000,-53.000000],[71.600000,-52.800000],[71.900000,-52.900000],[71.800000,-53.900000],[71.600000,-54.000000],[71.400000,-55.400000],[71.900000,-55.000000],[72.200000,-55.000000],[72.500000,-54.600000],[72.900000,-54.600000],[73.100000,-55.500000],[73.400000,-55.300000],[73.400000,-55.500000],[73.600000,-56.000000],[73.800000,-55.800000],[74.000000,-56.300000],[74.300000,-56.400000],[74.400000,-56.800000],[74.700000,-56.800000],[74.900000,-56.900000],[75.100000,-58.100000],[75.300000,-58.500000],[75.600000,-58.400000],[75.700000,-59.000000],[75.900000,-59.700000],[76.000000,-60.700000],[76.100000,-60.900000],[76.200000,-61.700000],[76.200000,-62.700000],[76.200000,-63.900000],[76.100000,-64.500000],[76.000000,-65.600000],[76.200000,-66.100000],[76.200000,-66.900000],[75.900000,-66.800000],[76.100000,-68.500000],[76.500000,-69.300000],[76.600000,-68.600000],[76.700000,-69.900000],[76.900000,-69.900000],[76.900000,-70.900000],[77.000000,-71.300000],[0.000000,0.000000],[76.500000,290.500000],[76.500000,290.500000],[77.500000,290.500000]]
if continent=='lau':
return [[100.000000,1000.000000],[27.500000,260.000000],[27.500000,260.000000],[28.500000,262.000000],[29.500000,263.000000],[30.500000,264.500000],[31.000000,266.000000],[31.000000,267.000000],[31.000000,268.500000],[31.500000,270.500000],[32.000000,272.000000],[32.500000,274.000000],[33.500000,276.000000],[35.000000,278.500000],[36.500000,280.000000],[38.000000,281.500000],[39.500000,283.500000],[40.500000,285.500000],[41.500000,287.000000],[42.500000,288.500000],[44.000000,289.500000],[45.500000,291.500000],[46.500000,293.500000],[47.500000,295.500000],[47.500000,298.500000],[48.000000,300.500000],[48.500000,303.000000],[49.000000,304.500000],[50.000000,306.000000],[50.500000,307.500000],[51.000000,309.000000],[52.000000,311.000000],[53.500000,313.000000],[54.500000,315.000000],[55.000000,317.000000],[55.500000,318.500000],[56.500000,320.000000],[57.500000,322.000000],[59.000000,323.500000],[60.000000,324.500000],[61.500000,325.500000],[63.000000,326.000000],[65.500000,327.500000],[67.000000,328.000000],[68.500000,328.500000],[70.000000,329.500000],[71.500000,329.500000],[74.000000,330.500000],[76.000000,331.500000],[77.500000,331.500000],[78.000000,330.000000],[78.500000,326.500000],[78.500000,324.500000],[79.000000,322.500000],[79.500000,320.000000],[79.500000,317.000000],[79.500000,314.000000],[79.000000,309.500000],[78.500000,306.500000],[78.500000,302.500000],[78.000000,297.500000],[77.000000,293.000000],[76.000000,287.500000],[75.500000,281.500000],[75.500000,276.500000],[75.500000,271.500000],[75.500000,265.000000],[75.500000,260.500000],[75.500000,256.500000],[75.500000,251.000000],[75.500000,246.000000],[75.500000,243.500000],[75.500000,241.000000],[75.500000,238.500000],[75.500000,236.000000],[75.500000,234.000000],[74.000000,231.500000],[73.000000,229.500000],[72.500000,229.000000],[72.000000,228.500000],[71.000000,226.000000],[71.000000,224.000000],[70.500000,222.000000],[69.000000,222.000000],[68.000000,223.500000],[66.500000,225.000000],[65.500000,226.000000],[65.000000,228.000000],[64.500000,230.500000],[63.500000,232.500000],[62.000000,233.500000],[60.500000,233.500000],[59.000000,234.000000],[58.000000,235.500000],[56.500000,236.500000],[54.500000,239.000000],[54.000000,240.500000],[53.000000,242.500000],[51.500000,244.000000],[50.000000,245.000000],[48.500000,246.000000],[47.000000,247.500000],[45.500000,248.500000],[43.500000,250.000000],[42.000000,251.000000],[40.500000,251.500000],[39.500000,252.500000],[37.500000,252.500000],[35.000000,252.500000],[33.500000,252.000000],[32.500000,252.500000],[31.500000,253.000000],[31.000000,254.000000],[30.000000,255.000000],[28.500000,255.000000],[27.000000,255.500000],[26.000000,256.000000],[26.000000,257.000000],[26.500000,259.000000],[27.500000,259.500000],[0.000000,0.000000],[73.200000,289.600000],[73.200000,290.500000],[73.100000,291.500000],[73.100000,291.900000],[72.900000,293.100000],[73.000000,293.600000],[73.200000,293.300000],[73.400000,293.900000],[73.400000,293.400000],[73.500000,293.400000],[73.400000,292.300000],[73.500000,291.800000],[73.600000,290.800000],[73.700000,290.900000],[73.900000,291.000000],[74.000000,290.100000],[74.000000,289.400000],[74.200000,289.300000],[74.300000,289.300000],[74.400000,289.400000],[74.600000,289.900000],[74.600000,290.800000],[74.700000,291.100000],[74.800000,291.800000],[74.800000,292.500000],[74.900000,292.600000],[75.000000,293.500000],[74.900000,294.000000],[74.900000,294.400000],[74.900000,294.900000],[75.000000,295.500000],[75.200000,296.100000],[75.400000,296.200000],[75.500000,296.600000],[75.600000,296.400000],[75.800000,297.200000],[75.900000,297.300000],[75.800000,297.000000],[75.800000,296.400000],[75.700000,295.800000],[75.900000,295.200000],[76.000000,295.000000],[76.100000,295.100000],[76.200000,295.700000],[76.300000,296.100000],[76.300000,296.700000],[76.400000,296.900000],[76.500000,297.300000],[76.600000,298.000000],[76.700000,298.300000],[76.800000,298.900000],[76.600000,299.500000],[76.700000,300.100000],[76.900000,300.300000],[77.100000,300.600000],[77.100000,300.400000],[77.300000,300.900000],[77.400000,301.500000],[77.200000,302.000000],[77.000000,302.100000],[76.900000,302.700000],[76.800000,302.900000],[77.000000,302.600000],[77.200000,302.500000],[77.300000,302.000000],[77.500000,302.700000],[77.500000,303.700000],[77.500000,304.200000],[77.500000,304.800000],[77.600000,305.000000],[77.400000,305.500000],[77.200000,305.600000],[76.900000,305.300000],[76.800000,305.400000],[77.100000,305.900000],[77.100000,306.400000],[77.000000,306.800000],[76.800000,307.600000],[77.100000,307.200000],[77.000000,307.800000],[77.200000,307.700000],[77.400000,307.500000],[77.700000,307.500000],[77.700000,307.600000],[77.600000,308.300000],[77.500000,308.700000],[77.300000,309.300000],[77.000000,310.100000],[76.800000,310.700000],[76.800000,311.000000],[77.000000,310.800000],[77.100000,311.300000],[77.100000,311.200000],[77.200000,311.000000],[77.300000,311.900000],[77.200000,312.300000],[77.300000,311.600000],[77.500000,311.400000],[77.600000,311.100000],[77.800000,311.100000],[77.800000,312.200000],[77.500000,312.900000],[77.400000,313.000000],[77.600000,313.000000],[77.500000,313.700000],[77.300000,314.000000],[77.500000,314.000000],[77.600000,313.800000],[77.700000,313.400000],[77.800000,312.500000],[77.800000,311.600000],[77.900000,311.900000],[77.900000,312.000000],[78.000000,311.400000],[78.100000,311.200000],[78.100000,311.600000],[78.200000,311.800000],[78.100000,312.300000],[78.200000,312.300000],[78.200000,312.600000],[78.100000,313.100000],[78.000000,313.200000],[77.900000,313.800000],[77.800000,314.500000],[77.700000,315.000000],[77.900000,314.800000],[77.900000,315.700000],[77.900000,315.000000],[78.000000,315.900000],[78.100000,315.500000],[78.100000,315.000000],[78.200000,315.100000],[78.300000,315.300000],[78.300000,315.500000],[78.400000,315.900000],[78.100000,316.400000],[78.200000,316.400000],[78.400000,316.700000],[78.300000,317.200000],[78.400000,317.600000],[78.300000,317.800000],[78.400000,318.400000],[78.400000,318.900000],[78.400000,319.500000],[78.300000,320.400000],[78.300000,320.800000],[78.200000,320.600000],[78.200000,321.000000],[78.300000,321.700000],[78.000000,322.500000],[77.900000,321.300000],[78.000000,320.000000],[77.900000,319.100000],[77.900000,318.300000],[77.900000,318.300000],[77.800000,317.800000],[77.700000,316.800000],[77.600000,316.800000],[77.700000,317.400000],[77.600000,317.700000],[77.700000,318.200000],[77.700000,318.900000],[77.900000,319.600000],[77.900000,320.700000],[77.900000,321.000000],[77.900000,322.100000],[77.800000,323.000000],[77.600000,323.000000],[77.500000,322.800000],[77.400000,322.300000],[77.600000,323.300000],[77.500000,323.600000],[77.500000,323.900000],[77.500000,324.500000],[77.400000,325.000000],[77.200000,325.200000],[77.100000,324.600000],[77.000000,323.800000],[76.800000,322.700000],[76.800000,322.100000],[77.000000,321.100000],[76.900000,319.700000],[77.000000,319.000000],[76.900000,319.400000],[76.800000,318.800000],[76.600000,317.900000],[76.500000,318.100000],[76.700000,319.500000],[76.700000,320.000000],[76.800000,321.300000],[76.600000,322.400000],[76.400000,321.900000],[76.200000,321.500000],[76.400000,322.900000],[76.500000,323.500000],[76.700000,323.800000],[76.700000,324.700000],[76.500000,324.900000],[76.200000,324.800000],[76.000000,324.300000],[75.900000,324.300000],[75.500000,323.900000],[75.200000,323.300000],[75.300000,323.600000],[75.500000,324.100000],[75.600000,324.300000],[75.900000,325.000000],[76.100000,325.500000],[76.300000,326.300000],[76.100000,326.200000],[76.200000,326.700000],[76.200000,327.300000],[76.300000,327.600000],[76.300000,327.600000],[76.400000,327.800000],[76.500000,328.000000],[76.700000,328.400000],[76.700000,329.200000],[76.600000,330.000000],[76.500000,330.800000],[76.300000,331.100000],[76.100000,330.400000],[75.900000,330.200000],[75.900000,329.600000],[75.700000,329.700000],[75.600000,329.100000],[75.400000,328.200000],[75.400000,327.600000],[75.300000,326.800000],[75.300000,325.500000],[75.300000,326.300000],[75.300000,327.000000],[75.300000,328.000000],[75.300000,329.000000],[75.100000,328.700000],[74.900000,327.800000],[75.000000,326.900000],[74.800000,326.300000],[74.500000,326.300000],[74.500000,326.500000],[74.700000,326.900000],[74.800000,327.700000],[74.700000,328.100000],[74.500000,327.800000],[74.400000,327.000000],[74.200000,326.800000],[73.900000,326.600000],[74.000000,327.200000],[73.900000,326.800000],[73.800000,326.600000],[73.500000,326.300000],[73.400000,325.800000],[73.300000,325.900000],[72.800000,325.600000],[72.600000,325.400000],[72.400000,325.600000],[72.600000,326.200000],[72.400000,327.200000],[72.400000,326.700000],[72.300000,326.100000],[72.200000,326.300000],[72.100000,326.400000],[71.900000,327.300000],[72.000000,327.700000],[71.800000,328.000000],[71.600000,327.900000],[71.500000,327.200000],[71.600000,326.000000],[71.600000,325.900000],[71.600000,325.500000],[71.500000,325.900000],[71.400000,325.300000],[71.300000,324.800000],[71.200000,325.200000],[71.100000,324.900000],[71.100000,325.400000],[70.900000,325.500000],[70.900000,325.900000],[70.900000,326.000000],[70.800000,326.800000],[70.700000,326.300000],[70.600000,326.500000],[70.400000,327.000000],[69.800000,326.900000],[70.200000,325.300000],[70.200000,325.300000],[69.900000,326.000000],[69.700000,325.500000],[69.600000,326.100000],[69.400000,325.900000],[69.300000,326.600000],[69.200000,327.300000],[69.000000,326.500000],[69.200000,325.500000],[69.000000,325.100000],[68.800000,324.900000],[68.700000,325.500000],[68.600000,326.100000],[68.300000,326.300000],[68.200000,325.600000],[67.900000,324.800000],[68.300000,323.700000],[68.400000,323.300000],[68.200000,322.900000],[68.000000,322.400000],[68.100000,321.400000],[67.800000,321.700000],[67.700000,322.800000],[67.500000,322.000000],[67.500000,321.400000],[67.500000,322.300000],[67.200000,323.100000],[67.000000,322.500000],[67.100000,322.700000],[67.000000,323.600000],[66.800000,324.000000],[66.600000,324.800000],[66.300000,324.400000],[66.500000,324.800000],[66.400000,325.000000],[66.000000,324.800000],[66.200000,325.400000],[65.900000,325.300000],[65.700000,325.300000],[65.400000,325.400000],[65.200000,325.200000],[65.400000,324.700000],[65.300000,323.700000],[66.000000,323.200000],[66.300000,322.000000],[66.600000,320.800000],[66.300000,321.100000],[66.200000,322.200000],[65.800000,322.100000],[65.800000,320.700000],[65.600000,320.400000],[65.300000,319.900000],[65.200000,321.500000],[64.900000,320.700000],[64.800000,320.400000],[64.900000,321.700000],[65.000000,322.700000],[64.900000,323.600000],[64.800000,324.800000],[64.800000,325.100000],[64.600000,324.600000],[64.600000,324.200000],[64.500000,324.200000],[64.400000,323.700000],[64.200000,323.800000],[64.300000,323.300000],[64.100000,323.500000],[64.100000,323.200000],[64.000000,322.900000],[63.900000,322.500000],[63.800000,322.700000],[63.700000,322.500000],[63.700000,322.400000],[63.600000,322.100000],[63.400000,321.700000],[63.500000,321.400000],[63.400000,321.100000],[63.300000,320.800000],[63.300000,320.500000],[63.300000,320.300000],[63.200000,319.900000],[63.100000,319.400000],[63.000000,319.100000],[63.200000,318.800000],[63.000000,318.500000],[63.000000,318.100000],[62.900000,318.100000],[62.900000,317.800000],[62.900000,317.700000],[62.900000,317.300000],[63.000000,317.200000],[63.200000,317.000000],[63.200000,316.800000],[63.400000,316.600000],[63.300000,316.400000],[63.000000,316.700000],[62.800000,316.900000],[62.700000,316.600000],[62.500000,316.100000],[62.300000,315.900000],[62.000000,315.800000],[61.800000,315.500000],[61.600000,315.400000],[61.500000,315.100000],[61.400000,314.900000],[61.200000,314.700000],[61.200000,314.300000],[61.300000,313.800000],[61.100000,313.800000],[60.900000,313.600000],[60.800000,313.200000],[60.800000,313.100000],[61.000000,312.700000],[60.800000,312.600000],[60.800000,312.200000],[61.000000,312.300000],[61.200000,312.400000],[61.200000,312.000000],[61.100000,311.900000],[60.800000,311.800000],[60.900000,311.600000],[60.700000,311.700000],[60.600000,311.500000],[60.500000,311.300000],[60.600000,310.800000],[60.500000,310.500000],[60.500000,310.100000],[60.200000,310.200000],[60.100000,310.100000],[60.100000,309.500000],[60.000000,309.100000],[59.700000,309.400000],[59.400000,309.700000],[59.300000,308.900000],[59.200000,309.400000],[58.800000,309.500000],[58.800000,308.800000],[58.500000,309.300000],[58.400000,308.900000],[58.200000,308.900000],[58.200000,308.700000],[58.100000,308.600000],[58.100000,308.300000],[58.000000,308.500000],[57.900000,308.600000],[57.800000,308.300000],[57.800000,308.000000],[57.700000,307.700000],[57.600000,307.700000],[57.300000,307.900000],[56.900000,307.900000],[56.600000,307.700000],[56.300000,307.400000],[56.100000,307.400000],[55.900000,307.300000],[55.700000,307.200000],[55.600000,307.000000],[55.600000,306.600000],[55.300000,307.000000],[55.100000,306.900000],[55.300000,306.300000],[55.300000,306.000000],[55.200000,305.300000],[55.300000,305.100000],[55.600000,305.400000],[55.500000,305.100000],[55.800000,305.100000],[55.700000,304.800000],[55.800000,304.700000],[56.100000,305.000000],[55.800000,304.400000],[56.000000,304.700000],[56.100000,304.500000],[56.200000,304.300000],[56.200000,303.600000],[56.200000,303.300000],[56.000000,303.200000],[56.100000,302.900000],[56.200000,303.000000],[56.300000,303.100000],[56.300000,302.700000],[56.400000,302.400000],[56.600000,302.200000],[56.700000,302.200000],[56.700000,302.200000],[56.800000,302.000000],[57.100000,301.800000],[57.300000,302.100000],[57.200000,301.500000],[57.300000,301.600000],[57.600000,301.400000],[57.800000,301.100000],[58.100000,301.200000],[58.200000,301.000000],[58.300000,300.700000],[58.600000,300.400000],[59.000000,300.300000],[59.500000,300.300000],[59.700000,301.100000],[60.000000,301.100000],[60.100000,301.000000],[59.600000,300.100000],[59.800000,299.800000],[60.100000,300.000000],[60.300000,299.700000],[60.500000,299.700000],[60.800000,299.700000],[61.100000,299.300000],[61.300000,299.500000],[61.500000,299.200000],[61.600000,299.100000],[61.800000,298.900000],[62.100000,299.300000],[62.300000,299.000000],[62.700000,298.800000],[62.900000,299.200000],[63.300000,299.300000],[63.300000,299.800000],[63.600000,299.600000],[63.400000,300.300000],[63.400000,301.300000],[63.500000,301.400000],[63.700000,301.400000],[63.600000,301.000000],[63.500000,300.000000],[63.900000,300.300000],[64.000000,301.500000],[64.200000,301.500000],[64.500000,301.700000],[64.400000,302.300000],[64.700000,301.700000],[65.100000,302.100000],[65.300000,301.800000],[65.500000,300.500000],[66.200000,299.400000],[66.000000,300.900000],[65.700000,302.300000],[65.800000,302.000000],[66.000000,302.300000],[66.400000,301.500000],[66.400000,301.500000],[66.500000,301.000000],[66.700000,300.700000],[66.900000,300.900000],[67.200000,300.900000],[67.200000,300.100000],[67.000000,299.900000],[66.800000,298.700000],[67.300000,299.200000],[67.600000,299.300000],[67.900000,299.700000],[68.300000,299.900000],[68.500000,299.200000],[68.800000,299.500000],[68.800000,299.400000],[69.000000,299.100000],[69.200000,299.300000],[69.400000,299.000000],[69.700000,299.000000],[69.900000,298.800000],[70.200000,298.900000],[70.400000,298.900000],[70.600000,298.100000],[70.800000,297.900000],[71.100000,298.100000],[71.200000,297.700000],[71.500000,297.300000],[71.600000,296.600000],[71.700000,296.500000],[71.800000,296.000000],[71.900000,295.200000],[71.900000,294.300000],[71.900000,293.800000],[71.800000,292.900000],[72.000000,292.600000],[72.100000,292.000000],[71.800000,291.900000],[72.100000,290.800000],[72.500000,290.400000],[72.600000,291.000000],[72.700000,290.100000],[72.900000,290.300000],[73.000000,289.500000],[73.100000,289.300000],[0.000000,0.000000],[72.500000,290.300000],[72.500000,290.300000],[73.500000,291.100000],[100.000000,1000.000000],[68.900000,-136.200000],[68.900000,-134.800000],[69.300000,-134.000000],[69.500000,-133.000000],[69.800000,-131.900000],[70.100000,-130.800000],[69.600000,-130.900000],[69.500000,-132.100000],[69.100000,-133.000000],[69.300000,-131.800000],[69.500000,-130.600000],[69.800000,-129.500000],[70.100000,-128.300000],[70.000000,-127.000000],[69.500000,-126.400000],[69.700000,-125.200000],[70.100000,-124.600000],[69.700000,-124.100000],[69.800000,-122.700000],[69.800000,-121.400000],[69.400000,-120.500000],[69.300000,-119.200000],[69.000000,-117.900000],[68.900000,-117.000000],[100.000000,1000.000000],[69.400000,-135.100000],[69.400000,-135.000000],[69.400000,-135.100000],[69.400000,-135.100000],[69.400000,-135.100000],[100.000000,1000.000000],[69.300000,-136.000000],[68.900000,-135.200000],[69.300000,-136.000000],[100.000000,1000.000000],[67.000000,-120.000000],[67.000000,-120.000000],[66.800000,-121.000000],[66.500000,-122.100000],[66.400000,-123.300000],[66.300000,-124.400000],[65.900000,-125.000000],[66.100000,-123.900000],[66.200000,-122.800000],[66.000000,-121.700000],[65.700000,-122.300000],[65.200000,-122.900000],[64.900000,-122.100000],[65.300000,-121.500000],[64.900000,-121.500000],[65.000000,-120.400000],[65.300000,-119.500000],[65.700000,-119.600000],[65.600000,-118.500000],[66.000000,-117.900000],[66.000000,-117.900000],[66.500000,-117.500000],[66.300000,-118.600000],[66.300000,-119.700000],[66.700000,-119.400000],[67.000000,-120.000000],[100.000000,1000.000000],[74.000000,-124.300000],[74.000000,-124.200000],[74.000000,-124.100000],[73.500000,-124.500000],[73.000000,-124.700000],[72.600000,-125.200000],[72.100000,-125.800000],[71.800000,-124.800000],[71.500000,-123.700000],[71.300000,-122.500000],[71.500000,-121.200000],[71.900000,-120.500000],[72.300000,-119.700000],[72.700000,-118.900000],[73.000000,-117.600000],[73.300000,-116.200000],[73.800000,-116.100000],[74.100000,-117.100000],[74.200000,-118.900000],[74.400000,-120.600000],[74.500000,-122.300000],[74.500000,-124.100000],[74.000000,-124.300000],[74.000000,-124.300000],[100.000000,1000.000000],[69.300000,-114.900000],[69.300000,-114.900000],[69.400000,-116.200000],[69.800000,-117.200000],[70.200000,-116.300000],[70.300000,-114.800000],[70.300000,-113.300000],[70.700000,-113.900000],[70.500000,-115.400000],[70.600000,-116.900000],[70.900000,-118.100000],[71.200000,-117.200000],[71.300000,-115.800000],[71.400000,-117.300000],[71.700000,-118.600000],[72.200000,-118.500000],[72.600000,-118.200000],[72.900000,-117.100000],[73.200000,-115.800000],[73.200000,-114.200000],[72.700000,-114.500000],[72.700000,-114.400000],[73.000000,-113.300000],[72.800000,-111.900000],[72.400000,-111.900000],[72.600000,-110.500000],[72.700000,-109.000000],[72.200000,-108.600000],[71.700000,-108.400000],[72.100000,-107.700000],[72.600000,-107.900000],[73.100000,-108.100000],[73.200000,-106.600000],[73.200000,-106.600000],[72.800000,-105.500000],[72.400000,-105.200000],[71.900000,-105.000000],[71.500000,-104.400000],[71.000000,-104.400000],[70.700000,-103.500000],[70.400000,-102.200000],[70.200000,-101.000000],[69.700000,-101.000000],[69.900000,-102.200000],[69.500000,-103.200000],[69.200000,-102.200000],[68.800000,-102.900000],[68.900000,-104.200000],[69.100000,-105.400000],[69.400000,-106.400000],[69.100000,-107.300000],[69.000000,-108.600000],[68.700000,-109.600000],[68.600000,-111.000000],[68.500000,-112.400000],[68.700000,-113.500000],[69.200000,-113.900000],[69.300000,-114.900000],[100.000000,1000.000000],[73.100000,-105.000000],[73.100000,-105.000000],[73.600000,-104.500000],[73.700000,-106.200000],[73.200000,-106.200000],[73.100000,-105.000000],[100.000000,1000.000000],[71.900000,-100.000000],[71.900000,-100.000000],[72.200000,-101.200000],[72.500000,-102.300000],[72.600000,-100.700000],[73.100000,-100.400000],[73.500000,-101.400000],[73.900000,-100.300000],[73.700000,-98.700000],[73.700000,-97.100000],[73.300000,-97.600000],[72.900000,-98.400000],[72.700000,-97.100000],[72.200000,-96.600000],[71.800000,-96.800000],[71.600000,-98.100000],[71.800000,-99.600000],[71.900000,-100.000000],[100.000000,1000.000000],[73.000000,-96.700000],[72.900000,-96.700000],[72.900000,-96.700000],[72.900000,-96.700000],[73.000000,-96.700000],[73.000000,-96.700000],[73.000000,-96.700000],[100.000000,1000.000000],[73.800000,-98.700000],[73.800000,-98.600000],[73.800000,-98.600000],[73.800000,-98.500000],[73.800000,-98.700000],[100.000000,1000.000000],[69.500000,-96.900000],[69.500000,-97.000000],[69.900000,-97.900000],[69.400000,-98.600000],[69.100000,-99.500000],[68.800000,-98.500000],[68.500000,-97.300000],[68.600000,-96.100000],[69.100000,-96.000000],[69.500000,-96.900000],[69.500000,-96.900000],[100.000000,1000.000000],[68.900000,-117.000000],[68.900000,-116.800000],[69.000000,-115.300000],[68.600000,-114.300000],[68.200000,-115.000000],[67.800000,-114.400000],[67.800000,-113.100000],[67.800000,-111.900000],[67.900000,-110.600000],[67.700000,-109.500000],[67.400000,-108.500000],[66.900000,-108.200000],[67.400000,-107.700000],[67.800000,-108.100000],[68.100000,-107.300000],[68.100000,-107.200000],[68.400000,-106.300000],[68.400000,-107.600000],[68.300000,-108.800000],[68.700000,-108.100000],[68.900000,-106.700000],[68.700000,-105.600000],[68.300000,-104.800000],[68.100000,-103.700000],[68.100000,-103.700000],[67.800000,-102.800000],[67.700000,-101.600000],[67.900000,-100.400000],[67.800000,-99.100000],[67.700000,-97.700000],[68.100000,-98.400000],[68.500000,-98.000000],[68.400000,-96.900000],[68.000000,-96.100000],[67.500000,-96.300000],[67.900000,-95.600000],[68.200000,-94.500000],[68.500000,-93.700000],[69.000000,-94.100000],[69.500000,-93.700000],[69.600000,-95.000000],[69.800000,-96.100000],[70.300000,-96.600000],[70.800000,-96.300000],[71.200000,-96.300000],[71.700000,-95.700000],[72.000000,-95.000000],[100.000000,1000.000000],[74.100000,-95.100000],[74.000000,-95.000000],[74.100000,-93.200000],[74.000000,-91.600000],[73.600000,-90.700000],[73.200000,-91.500000],[72.800000,-92.100000],[72.800000,-93.600000],[72.300000,-93.800000],[72.000000,-94.800000],[72.500000,-95.200000],[72.900000,-95.700000],[73.400000,-95.700000],[73.800000,-95.000000],[73.800000,-95.000000],[73.800000,-95.100000],[74.100000,-95.100000],[100.000000,1000.000000],[71.900000,-95.000000],[72.000000,-95.000000],[71.800000,-93.700000],[71.300000,-93.100000],[70.800000,-93.000000],[70.400000,-92.100000],[69.900000,-92.000000],[69.500000,-91.500000],[69.100000,-90.800000],[68.600000,-90.500000],[69.000000,-89.900000],[68.900000,-88.400000],[68.400000,-87.900000],[68.000000,-88.500000],[67.500000,-87.900000],[67.400000,-86.700000],[67.900000,-86.400000],[68.300000,-85.800000],[68.800000,-85.300000],[69.300000,-85.500000],[69.700000,-85.500000],[69.800000,-84.100000],[69.700000,-82.800000],[69.200000,-82.300000],[68.800000,-81.700000],[68.500000,-82.500000],[68.000000,-82.100000],[67.600000,-81.400000],[67.100000,-81.400000],[66.700000,-82.300000],[66.400000,-83.100000],[66.700000,-84.100000],[66.700000,-84.200000],[66.200000,-83.800000],[66.200000,-84.900000],[66.500000,-85.900000],[66.000000,-86.100000],[66.000000,-86.100000],[65.600000,-86.700000],[65.400000,-87.800000],[65.700000,-88.700000],[65.900000,-89.800000],[65.400000,-89.200000],[65.200000,-88.100000],[65.200000,-87.000000],[64.700000,-87.300000],[64.300000,-87.900000],[64.000000,-88.700000],[64.100000,-89.700000],[63.700000,-90.100000],[63.700000,-91.200000],[63.800000,-92.200000],[64.000000,-93.300000],[63.800000,-92.400000],[63.600000,-91.400000],[63.200000,-90.700000],[63.000000,-90.600000],[100.000000,1000.000000],[68.300000,-86.700000],[68.300000,-86.600000],[67.800000,-86.600000],[68.200000,-87.000000],[68.300000,-86.700000],[100.000000,1000.000000],[65.800000,-85.800000],[65.800000,-85.800000],[65.800000,-85.700000],[65.400000,-85.100000],[65.200000,-84.000000],[64.900000,-83.000000],[64.700000,-82.000000],[64.700000,-82.000000],[64.200000,-81.600000],[64.000000,-80.600000],[63.500000,-80.900000],[63.700000,-81.900000],[64.000000,-82.800000],[63.800000,-83.700000],[63.400000,-84.500000],[63.200000,-85.300000],[63.600000,-85.600000],[63.600000,-86.700000],[64.200000,-86.300000],[64.600000,-86.400000],[65.200000,-86.200000],[65.700000,-86.000000],[65.800000,-85.800000],[100.000000,1000.000000],[66.000000,-83.900000],[66.000000,-83.900000],[66.000000,-83.900000],[100.000000,1000.000000],[68.300000,-76.400000],[68.300000,-76.300000],[68.100000,-75.200000],[67.700000,-75.100000],[67.300000,-75.700000],[67.300000,-77.000000],[67.700000,-77.300000],[68.100000,-77.000000],[68.300000,-76.400000],[100.000000,1000.000000],[68.000000,-74.800000],[68.000000,-74.700000],[67.800000,-73.600000],[67.900000,-74.800000],[68.000000,-74.800000],[100.000000,1000.000000],[69.200000,-78.600000],[69.200000,-78.600000],[69.200000,-78.600000],[100.000000,1000.000000],[69.800000,-80.300000],[69.800000,-80.200000],[69.800000,-80.300000],[100.000000,1000.000000],[63.400000,-78.500000],[63.400000,-78.600000],[63.200000,-77.600000],[63.400000,-78.500000],[63.400000,-78.500000],[100.000000,1000.000000],[63.700000,-77.500000],[63.700000,-77.300000],[63.700000,-77.500000],[100.000000,1000.000000],[63.000000,-71.300000],[63.000000,-71.300000],[63.400000,-72.000000],[63.900000,-72.400000],[64.200000,-73.100000],[64.600000,-73.500000],[64.700000,-74.600000],[64.600000,-75.700000],[64.300000,-76.600000],[64.400000,-77.600000],[64.900000,-78.200000],[65.300000,-77.500000],[65.300000,-76.200000],[65.400000,-75.100000],[65.500000,-74.000000],[66.100000,-74.400000],[66.500000,-73.700000],[67.000000,-73.000000],[67.400000,-72.600000],[67.900000,-72.900000],[68.300000,-73.300000],[68.700000,-74.300000],[68.900000,-75.600000],[68.700000,-76.700000],[69.100000,-75.700000],[69.500000,-76.500000],[69.800000,-77.400000],[70.200000,-78.200000],[70.400000,-79.600000],[70.000000,-78.800000],[70.000000,-80.200000],[70.100000,-81.700000],[69.700000,-81.000000],[69.800000,-82.300000],[69.900000,-83.600000],[70.000000,-85.400000],[70.300000,-86.600000],[70.300000,-88.300000],[70.800000,-89.300000],[70.900000,-87.800000],[71.200000,-89.000000],[71.700000,-90.100000],[72.100000,-89.900000],[72.600000,-89.900000],[73.000000,-89.400000],[73.500000,-88.400000],[73.800000,-86.700000],[73.700000,-85.100000],[73.700000,-85.100000],[100.000000,1000.000000],[73.700000,-85.100000],[73.300000,-86.100000],[72.800000,-86.800000],[72.200000,-86.600000],[71.800000,-86.200000],[71.400000,-85.100000],[71.100000,-86.300000],[71.200000,-84.900000],[71.700000,-85.500000],[72.200000,-85.600000],[72.700000,-85.800000],[72.800000,-84.100000],[73.000000,-85.400000],[73.400000,-84.600000],[73.700000,-83.100000],[73.600000,-81.400000],[73.100000,-80.900000],[72.600000,-80.600000],[72.200000,-81.000000],[72.500000,-79.900000],[72.300000,-78.400000],[72.700000,-77.700000],[72.600000,-76.100000],[72.200000,-75.000000],[71.700000,-74.900000],[71.400000,-73.700000],[71.700000,-72.600000],[71.300000,-71.200000],[70.900000,-70.600000],[70.700000,-69.300000],[70.200000,-69.400000],[70.200000,-67.800000],[69.800000,-67.100000],[69.600000,-68.300000],[69.400000,-67.000000],[69.200000,-68.200000],[68.700000,-67.900000],[68.400000,-66.900000],[68.000000,-66.300000],[68.000000,-65.000000],[67.600000,-64.200000],[67.200000,-63.900000],[67.000000,-62.900000],[66.800000,-61.700000],[66.300000,-61.600000],[66.100000,-62.600000],[65.600000,-62.700000],[65.200000,-63.500000],[65.200000,-64.600000],[65.600000,-65.200000],[66.000000,-65.900000],[66.300000,-66.700000],[66.500000,-67.900000],[66.100000,-67.300000],[65.600000,-67.900000],[65.300000,-67.200000],[64.800000,-66.700000],[64.800000,-65.600000],[64.300000,-65.000000],[63.800000,-64.600000],[63.300000,-64.500000],[63.000000,-64.600000],[100.000000,1000.000000],[63.000000,-67.700000],[63.100000,-67.700000],[63.500000,-68.500000],[63.400000,-67.500000],[63.000000,-66.700000],[63.000000,-66.700000],[100.000000,1000.000000],[73.600000,-79.000000],[73.600000,-78.700000],[73.400000,-77.200000],[73.000000,-76.400000],[72.900000,-77.900000],[72.700000,-79.400000],[73.200000,-80.300000],[73.600000,-80.900000],[73.600000,-79.100000],[73.600000,-79.000000],[100.000000,1000.000000],[63.000000,-115.800000],[63.000000,-115.700000],[62.600000,-115.300000],[62.800000,-114.300000],[62.300000,-114.000000],[62.000000,-113.200000],[62.300000,-112.100000],[62.700000,-111.600000],[62.900000,-110.500000],[62.800000,-109.600000],[62.700000,-110.500000],[62.300000,-111.000000],[62.000000,-111.800000],[61.600000,-112.300000],[61.500000,-113.300000],[61.100000,-113.800000],[60.900000,-114.800000],[60.900000,-115.800000],[61.000000,-116.700000],[61.200000,-117.600000],[61.300000,-118.600000],[61.500000,-117.700000],[61.300000,-116.700000],[61.300000,-115.700000],[61.800000,-115.200000],[62.200000,-114.900000],[62.500000,-115.700000],[62.900000,-116.300000],[63.000000,-115.800000],[100.000000,1000.000000],[61.800000,-113.100000],[61.900000,-113.100000],[61.800000,-113.100000],[61.800000,-113.100000],[100.000000,1000.000000],[61.200000,-116.400000],[61.200000,-116.500000],[61.200000,-116.500000],[61.200000,-116.400000],[100.000000,1000.000000],[62.700000,-111.300000],[62.700000,-111.200000],[62.700000,-111.300000],[100.000000,1000.000000],[58.700000,-111.200000],[58.700000,-111.200000],[58.700000,-111.200000],[59.100000,-110.600000],[59.400000,-110.000000],[59.700000,-109.300000],[59.400000,-108.700000],[59.500000,-107.700000],[59.400000,-106.800000],[59.300000,-107.700000],[59.100000,-108.600000],[59.100000,-109.500000],[58.700000,-110.200000],[58.700000,-111.100000],[58.700000,-111.200000],[100.000000,1000.000000],[54.300000,-98.000000],[54.300000,-98.000000],[53.800000,-97.800000],[53.300000,-97.600000],[52.800000,-97.300000],[52.300000,-97.000000],[51.900000,-96.800000],[51.400000,-96.300000],[50.900000,-96.200000],[50.400000,-96.600000],[50.900000,-96.900000],[51.400000,-96.800000],[51.800000,-97.300000],[51.900000,-98.100000],[52.400000,-98.400000],[52.900000,-98.800000],[53.400000,-99.200000],[53.800000,-98.900000],[53.700000,-98.100000],[54.200000,-98.100000],[54.400000,-98.000000],[100.000000,1000.000000],[41.700000,-113.100000],[41.700000,-113.100000],[41.700000,-113.100000],[41.400000,-112.600000],[41.400000,-112.000000],[41.000000,-111.900000],[40.900000,-112.400000],[41.300000,-112.800000],[41.700000,-113.100000],[41.700000,-113.100000],[100.000000,1000.000000],[32.000000,-114.900000],[31.900000,-114.800000],[31.400000,-114.800000],[100.000000,1000.000000],[32.000000,-114.900000],[32.000000,-114.900000],[32.000000,-114.900000],[31.700000,-114.500000],[100.000000,1000.000000],[31.500000,-113.900000],[31.200000,-113.400000],[30.900000,-113.000000],[30.400000,-112.800000],[100.000000,1000.000000],[63.000000,-90.600000],[62.900000,-90.700000],[62.800000,-91.600000],[62.600000,-92.600000],[62.100000,-92.600000],[61.900000,-93.500000],[61.500000,-93.900000],[60.900000,-94.300000],[60.500000,-94.700000],[60.000000,-94.800000],[59.500000,-94.800000],[58.900000,-94.800000],[58.500000,-94.300000],[58.800000,-93.600000],[58.300000,-93.000000],[57.800000,-92.800000],[57.300000,-92.500000],[57.100000,-91.700000],[57.200000,-90.800000],[56.900000,-90.000000],[56.800000,-89.200000],[56.500000,-88.400000],[56.100000,-87.800000],[55.900000,-87.100000],[55.700000,-86.300000],[55.400000,-85.500000],[54.900000,-85.700000],[55.300000,-85.000000],[55.200000,-84.100000],[55.200000,-83.300000],[55.100000,-82.500000],[54.500000,-82.300000],[54.000000,-82.300000],[53.400000,-82.200000],[52.900000,-82.300000],[52.500000,-81.700000],[52.100000,-82.100000],[52.100000,-81.200000],[51.800000,-80.700000],[51.300000,-80.700000],[51.100000,-79.900000],[51.500000,-79.600000],[51.200000,-79.000000],[51.800000,-79.000000],[52.200000,-78.500000],[52.600000,-78.800000],[53.100000,-78.900000],[53.600000,-79.000000],[54.200000,-79.200000],[54.500000,-79.600000],[54.500000,-79.600000],[100.000000,1000.000000],[54.500000,-79.600000],[54.800000,-78.900000],[55.100000,-78.100000],[55.500000,-77.400000],[55.500000,-77.400000],[56.000000,-77.000000],[56.200000,-76.200000],[56.600000,-76.800000],[57.100000,-77.000000],[57.500000,-77.200000],[58.100000,-77.400000],[58.400000,-78.100000],[58.700000,-78.800000],[59.200000,-78.400000],[59.500000,-77.800000],[59.900000,-77.200000],[60.400000,-77.800000],[60.800000,-78.200000],[61.300000,-77.800000],[61.700000,-77.500000],[62.100000,-78.300000],[62.600000,-77.700000],[62.500000,-76.600000],[62.300000,-75.600000],[62.300000,-74.500000],[62.400000,-73.500000],[62.100000,-72.600000],[61.700000,-72.100000],[61.200000,-71.600000],[61.000000,-70.700000],[60.900000,-69.800000],[60.500000,-69.700000],[60.000000,-69.800000],[60.000000,-70.800000],[59.900000,-69.800000],[59.500000,-69.600000],[59.000000,-69.200000],[58.800000,-70.100000],[58.500000,-70.800000],[58.700000,-70.000000],[58.900000,-69.100000],[58.600000,-68.300000],[58.000000,-68.600000],[58.500000,-68.100000],[58.500000,-67.100000],[58.900000,-66.400000],[59.200000,-65.600000],[59.700000,-65.500000],[60.100000,-65.100000],[59.900000,-64.200000],[59.500000,-63.800000],[59.000000,-64.200000],[59.100000,-63.300000],[58.600000,-62.800000],[58.200000,-63.000000],[57.900000,-62.200000],[57.400000,-62.400000],[57.200000,-61.600000],[56.700000,-61.700000],[56.700000,-62.700000],[56.600000,-61.800000],[56.100000,-61.300000],[55.800000,-60.600000],[55.300000,-60.400000],[55.200000,-59.600000],[54.900000,-58.900000],[55.000000,-58.000000],[54.600000,-57.400000],[54.400000,-58.200000],[54.200000,-59.100000],[53.900000,-59.800000],[53.800000,-60.800000],[53.500000,-60.300000],[53.700000,-59.300000],[54.000000,-58.600000],[54.100000,-57.800000],[53.800000,-57.200000],[53.700000,-56.400000],[53.400000,-55.800000],[52.900000,-55.800000],[52.600000,-55.700000],[100.000000,1000.000000],[52.600000,-55.700000],[52.400000,-55.600000],[51.900000,-56.000000],[51.500000,-56.600000],[51.500000,-57.500000],[51.300000,-58.400000],[50.900000,-59.000000],[50.500000,-59.600000],[50.300000,-60.300000],[50.200000,-61.100000],[50.300000,-61.800000],[50.300000,-62.700000],[50.300000,-63.500000],[50.400000,-64.400000],[50.300000,-65.300000],[50.300000,-66.000000],[50.100000,-66.700000],[49.600000,-67.100000],[49.300000,-67.800000],[49.000000,-68.500000],[48.700000,-69.100000],[48.200000,-69.600000],[47.800000,-69.900000],[47.400000,-70.400000],[47.000000,-71.000000],[47.300000,-70.300000],[47.700000,-69.800000],[48.100000,-69.400000],[48.400000,-68.900000],[48.700000,-68.100000],[48.900000,-67.500000],[49.100000,-66.700000],[49.300000,-66.000000],[49.300000,-65.300000],[49.100000,-64.600000],[48.600000,-64.200000],[48.200000,-64.900000],[48.200000,-65.800000],[48.100000,-66.500000],[47.900000,-65.800000],[47.900000,-65.100000],[47.500000,-64.900000],[47.000000,-64.800000],[100.000000,1000.000000],[62.900000,-82.500000],[62.900000,-82.600000],[62.600000,-83.500000],[62.100000,-83.900000],[62.300000,-83.000000],[62.600000,-82.300000],[62.900000,-82.500000],[100.000000,1000.000000],[62.400000,-80.100000],[62.300000,-80.100000],[62.300000,-80.100000],[61.900000,-80.400000],[62.100000,-79.500000],[62.400000,-80.100000],[100.000000,1000.000000],[53.100000,-82.000000],[53.100000,-81.900000],[53.100000,-81.100000],[52.700000,-80.800000],[52.900000,-81.500000],[53.100000,-82.000000],[100.000000,1000.000000],[45.900000,-82.100000],[45.900000,-82.200000],[45.900000,-83.000000],[45.600000,-82.400000],[45.700000,-81.700000],[45.900000,-82.100000],[100.000000,1000.000000],[50.000000,-64.000000],[49.900000,-64.000000],[49.800000,-63.300000],[49.600000,-62.600000],[49.400000,-61.900000],[49.200000,-62.500000],[49.400000,-63.400000],[49.700000,-63.900000],[50.000000,-64.000000],[100.000000,1000.000000],[51.500000,-56.200000],[51.500000,-56.300000],[51.500000,-56.300000],[51.100000,-56.900000],[50.800000,-57.300000],[50.300000,-57.400000],[49.900000,-57.800000],[49.400000,-58.100000],[48.900000,-58.500000],[48.600000,-59.000000],[48.100000,-59.000000],[47.700000,-59.300000],[100.000000,1000.000000],[49.300000,-55.100000],[49.500000,-55.900000],[49.900000,-55.500000],[50.100000,-56.200000],[49.600000,-56.700000],[50.200000,-56.500000],[50.700000,-56.200000],[51.200000,-55.800000],[51.600000,-55.500000],[51.500000,-56.200000],[100.000000,1000.000000],[60.500000,-68.200000],[60.500000,-68.300000],[60.500000,-68.200000],[100.000000,1000.000000],[61.700000,-65.100000],[61.700000,-65.100000],[61.700000,-65.100000],[100.000000,1000.000000],[63.000000,-64.600000],[63.000000,-64.500000],[62.500000,-64.900000],[63.000000,-65.400000],[63.000000,-66.400000],[63.000000,-66.700000],[100.000000,1000.000000],[63.000000,-67.500000],[62.900000,-67.400000],[62.600000,-66.600000],[62.100000,-66.100000],[62.000000,-67.100000],[62.200000,-68.100000],[62.400000,-69.100000],[62.800000,-69.700000],[62.900000,-70.800000],[63.000000,-71.300000],[100.000000,1000.000000],[62.800000,-71.000000],[62.800000,-71.000000],[100.000000,1000.000000],[62.700000,-74.100000],[62.700000,-74.100000],[62.700000,-74.100000],[100.000000,1000.000000],[41.300000,-72.100000],[41.300000,-72.700000],[41.300000,-72.700000],[41.300000,-72.800000],[41.100000,-73.300000],[41.100000,-73.300000],[40.900000,-73.900000],[40.900000,-73.900000],[40.500000,-74.200000],[40.500000,-74.200000],[40.100000,-74.000000],[100.000000,1000.000000],[44.500000,-75.700000],[44.600000,-75.700000],[44.600000,-75.600000],[44.300000,-76.200000],[44.100000,-76.900000],[44.000000,-77.700000],[43.900000,-78.400000],[43.800000,-79.200000],[43.400000,-79.700000],[43.300000,-79.000000],[43.400000,-78.200000],[43.300000,-77.600000],[43.300000,-76.900000],[43.500000,-76.300000],[43.500000,-76.300000],[44.000000,-76.100000],[44.500000,-75.800000],[44.500000,-75.700000],[100.000000,1000.000000],[42.900000,-78.900000],[42.800000,-78.900000],[42.800000,-78.900000],[42.900000,-79.700000],[42.700000,-80.400000],[42.700000,-81.100000],[42.400000,-81.800000],[42.100000,-82.400000],[42.000000,-83.100000],[41.500000,-83.000000],[41.500000,-82.300000],[41.600000,-81.700000],[41.800000,-81.200000],[42.000000,-80.500000],[42.300000,-79.800000],[42.600000,-79.300000],[42.900000,-78.900000],[100.000000,1000.000000],[42.600000,-82.600000],[42.600000,-82.700000],[42.600000,-82.600000],[100.000000,1000.000000],[43.100000,-82.500000],[43.100000,-82.400000],[43.100000,-82.400000],[43.100000,-82.400000],[43.400000,-81.800000],[44.000000,-81.800000],[44.400000,-81.600000],[44.900000,-81.400000],[44.700000,-80.800000],[44.500000,-80.200000],[44.800000,-79.700000],[45.300000,-80.100000],[45.600000,-80.600000],[46.000000,-81.000000],[46.100000,-81.700000],[46.100000,-82.400000],[46.100000,-83.100000],[46.300000,-83.800000],[46.600000,-84.400000],[46.600000,-84.400000],[46.100000,-84.200000],[45.900000,-84.800000],[46.000000,-85.600000],[45.900000,-86.300000],[45.700000,-86.900000],[45.200000,-87.500000],[44.800000,-87.900000],[45.200000,-87.300000],[44.700000,-87.400000],[44.200000,-87.600000],[43.700000,-87.700000],[43.200000,-87.900000],[42.800000,-87.800000],[42.300000,-87.800000],[41.800000,-87.600000],[41.800000,-86.900000],[42.300000,-86.500000],[42.900000,-86.300000],[43.400000,-86.400000],[44.000000,-86.500000],[44.500000,-86.300000],[45.000000,-86.100000],[45.200000,-85.500000],[45.600000,-85.100000],[45.700000,-84.400000],[45.400000,-83.900000],[45.400000,-83.900000],[45.100000,-83.400000],[44.600000,-83.300000],[44.100000,-83.600000],[43.700000,-84.000000],[44.000000,-83.400000],[43.800000,-82.700000],[43.200000,-82.600000],[43.100000,-82.500000],[100.000000,1000.000000],[46.500000,-84.500000],[46.500000,-84.500000],[47.000000,-84.700000],[47.600000,-85.000000],[47.900000,-85.400000],[48.300000,-86.200000],[48.700000,-86.400000],[48.300000,-87.100000],[48.900000,-87.500000],[49.000000,-88.200000],[48.500000,-88.500000],[48.400000,-89.200000],[48.000000,-89.600000],[48.000000,-89.600000],[48.000000,-89.600000],[47.700000,-90.200000],[47.500000,-90.800000],[47.100000,-91.500000],[46.800000,-92.000000],[46.800000,-91.300000],[46.600000,-90.700000],[46.800000,-89.900000],[47.000000,-89.200000],[47.400000,-88.500000],[47.500000,-87.800000],[47.100000,-88.300000],[46.800000,-87.800000],[46.500000,-87.200000],[46.600000,-86.500000],[46.700000,-85.800000],[46.700000,-85.100000],[46.500000,-84.500000],[100.000000,1000.000000],[41.100000,-72.300000],[41.000000,-73.000000],[40.900000,-73.500000],[40.800000,-72.900000],[41.000000,-72.200000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[31.300000,-92.100000],[31.200000,-92.200000],[31.200000,-92.400000],[31.200000,-92.500000],[31.300000,-92.700000],[31.300000,-92.900000],[31.200000,-93.100000],[31.300000,-93.300000],[31.300000,-93.600000],[31.300000,-94.000000],[31.300000,-94.300000],[31.200000,-94.600000],[31.100000,-95.000000],[31.000000,-95.400000],[30.800000,-95.700000],[30.700000,-95.900000],[30.500000,-96.200000],[30.200000,-96.500000],[30.000000,-96.800000],[29.700000,-97.100000],[29.500000,-97.400000],[29.100000,-97.800000],[28.800000,-98.300000],[28.500000,-98.900000],[28.300000,-99.400000],[28.000000,-100.000000],[27.900000,-100.400000],[27.800000,-100.500000],[27.600000,-100.500000],[27.400000,-100.600000],[27.100000,-100.600000],[26.900000,-100.500000],[26.600000,-100.400000],[26.300000,-100.300000],[26.000000,-100.200000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[25.900000,-103.600000],[26.000000,-103.600000],[26.200000,-103.700000],[26.300000,-103.800000],[26.500000,-103.900000],[26.800000,-104.000000],[27.000000,-104.000000],[27.200000,-104.100000],[27.500000,-104.200000],[27.800000,-104.200000],[28.200000,-104.300000],[29.300000,-104.300000],[29.700000,-104.300000],[30.200000,-104.500000],[30.500000,-104.500000],[30.700000,-104.700000],[31.000000,-104.900000],[31.300000,-105.200000],[31.300000,-105.400000],[31.400000,-105.800000],[31.500000,-106.200000],[31.600000,-106.400000],[31.700000,-106.600000],[31.700000,-106.700000],[31.900000,-107.000000],[32.100000,-107.200000],[32.300000,-107.300000],[32.500000,-107.400000],[32.700000,-107.400000],[33.000000,-107.400000],[33.200000,-107.400000],[33.500000,-107.400000],[33.700000,-107.500000],[33.900000,-107.400000],[34.100000,-107.300000],[34.400000,-107.100000],[34.800000,-106.900000],[35.100000,-106.600000],[35.800000,-106.300000],[35.900000,-106.100000],[36.300000,-106.000000],[36.500000,-106.000000],[36.800000,-105.900000],[37.000000,-106.000000],[37.600000,-106.000000],[38.100000,-106.100000],[38.500000,-106.200000],[39.000000,-106.300000],[39.600000,-106.400000],[40.100000,-106.600000],[40.400000,-106.800000],[40.800000,-107.000000],[41.300000,-107.300000],[41.700000,-107.500000],[42.200000,-107.800000],[42.600000,-108.100000],[42.900000,-108.400000],[43.200000,-108.700000],[43.500000,-109.000000],[43.800000,-109.300000],[44.100000,-109.700000],[44.200000,-109.900000],[44.500000,-110.200000],[44.900000,-110.600000],[45.200000,-110.800000],[45.600000,-111.100000],[46.000000,-111.300000],[46.300000,-111.400000],[46.400000,-111.500000],[46.600000,-111.600000],[46.800000,-111.700000],[46.900000,-111.800000],[47.000000,-112.000000],[47.100000,-112.100000],[47.300000,-112.200000],[47.400000,-112.500000],[47.600000,-112.600000],[47.900000,-112.800000],[48.300000,-113.100000],[48.500000,-113.300000],[48.800000,-113.600000],[49.100000,-113.800000],[49.400000,-114.000000],[49.600000,-114.200000],[49.900000,-114.400000],[50.100000,-114.600000],[50.400000,-114.800000],[50.700000,-114.900000],[51.100000,-115.200000],[51.200000,-115.300000],[51.400000,-115.400000],[51.600000,-115.500000],[51.800000,-115.700000],[52.100000,-115.900000],[52.300000,-116.100000],[52.600000,-116.600000],[52.800000,-117.000000],[52.900000,-117.200000],[53.100000,-117.600000],[53.300000,-117.900000],[53.500000,-118.300000],[53.600000,-118.600000],[53.800000,-118.900000],[53.900000,-119.300000],[54.200000,-119.800000],[54.400000,-120.300000],[54.600000,-120.700000],[54.800000,-121.200000],[55.000000,-121.600000],[55.300000,-122.000000],[55.500000,-122.200000],[55.700000,-122.400000],[55.900000,-122.700000],[56.100000,-122.800000],[56.200000,-123.000000],[56.400000,-123.200000],[56.600000,-123.300000],[56.800000,-123.400000],[57.000000,-123.600000],[57.200000,-123.800000],[57.500000,-124.000000],[57.800000,-124.300000],[58.100000,-124.600000],[58.300000,-124.700000],[58.400000,-124.900000],[58.600000,-125.000000],[58.800000,-125.300000],[58.900000,-125.400000],[59.100000,-125.700000],[59.300000,-126.000000],[59.400000,-126.100000],[59.500000,-126.200000],[59.600000,-126.200000],[59.700000,-126.200000],[59.800000,-126.200000],[59.900000,-126.100000],[60.000000,-126.000000],[60.100000,-125.800000],[60.200000,-125.700000],[60.300000,-125.700000],[60.500000,-125.700000],[60.600000,-125.700000],[60.900000,-125.700000],[61.000000,-125.600000],[61.300000,-125.500000],[61.600000,-125.500000],[61.800000,-125.600000],[62.000000,-125.600000],[62.000000,-125.600000],[62.100000,-125.800000],[62.200000,-125.900000],[62.200000,-125.900000],[62.300000,-126.000000],[62.400000,-126.000000],[62.500000,-126.100000],[62.700000,-126.200000],[62.800000,-126.200000],[63.000000,-126.300000],[63.100000,-126.400000],[63.300000,-126.600000],[63.500000,-126.800000],[63.600000,-126.900000],[63.600000,-127.000000],[63.800000,-127.400000],[64.000000,-127.800000],[64.100000,-128.200000],[64.200000,-128.600000],[64.400000,-129.100000],[64.600000,-129.700000],[64.700000,-130.100000],[64.900000,-130.800000],[65.000000,-131.300000],[65.100000,-132.000000],[65.200000,-132.500000],[65.300000,-132.900000],[65.300000,-133.200000],[65.300000,-133.500000],[65.300000,-133.700000],[65.400000,-133.800000],[65.400000,-134.000000],[65.500000,-134.100000],[65.600000,-134.200000],[65.600000,-134.300000],[65.800000,-134.400000],[66.100000,-134.700000],[66.200000,-134.800000],[66.400000,-135.000000],[66.600000,-135.200000],[66.800000,-135.300000],[66.900000,-135.400000],[67.000000,-135.500000],[67.200000,-135.700000],[67.300000,-135.800000],[67.500000,-135.800000],[67.600000,-135.800000],[67.700000,-135.700000],[67.800000,-135.600000],[67.900000,-135.500000],[68.000000,-135.400000],[68.100000,-135.400000],[68.200000,-135.500000],[68.300000,-135.600000],[68.400000,-135.800000],[68.500000,-135.900000],[68.500000,-136.200000],[68.600000,-136.400000],[68.700000,-136.800000],[68.700000,-137.000000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[25.700000,-100.100000],[25.600000,-100.400000],[25.600000,-101.000000],[25.600000,-101.600000],[25.600000,-102.100000],[25.700000,-102.600000],[25.800000,-103.100000],[25.900000,-103.400000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[50.900000,-50.400000],[50.900000,-50.500000],[50.900000,-50.900000],[50.900000,-51.000000],[50.900000,-51.100000],[50.900000,-51.400000],[50.800000,-51.700000],[50.700000,-52.000000],[50.700000,-52.200000],[50.500000,-52.600000],[50.500000,-52.900000],[50.400000,-53.200000],[50.400000,-53.400000],[50.300000,-53.600000],[50.200000,-53.800000],[50.000000,-54.000000],[49.900000,-54.300000],[49.600000,-54.600000],[49.500000,-54.900000],[49.200000,-55.300000],[49.200000,-55.300000],[49.100000,-55.400000],[49.100000,-55.600000],[48.900000,-55.800000],[48.800000,-56.100000],[48.700000,-56.400000],[48.600000,-56.700000],[48.500000,-57.000000],[48.500000,-57.300000],[48.300000,-57.700000],[48.100000,-58.100000],[48.000000,-58.400000],[47.900000,-58.800000],[47.800000,-59.200000],[47.700000,-59.300000],[47.700000,-59.400000],[47.700000,-59.700000],[47.600000,-60.000000],[47.600000,-60.300000],[47.600000,-60.700000],[47.600000,-61.400000],[47.600000,-61.600000],[47.600000,-61.900000],[47.500000,-62.200000],[47.500000,-62.600000],[47.400000,-63.100000],[47.400000,-63.600000],[47.300000,-64.200000],[47.200000,-64.600000],[47.200000,-64.800000],[47.100000,-65.100000],[46.900000,-65.400000],[46.700000,-65.900000],[46.400000,-66.300000],[46.100000,-66.800000],[45.800000,-67.300000],[45.600000,-67.800000],[45.300000,-68.500000],[45.000000,-69.000000],[44.600000,-69.700000],[44.300000,-70.000000],[44.000000,-70.300000],[43.500000,-70.600000],[43.000000,-70.900000],[42.500000,-71.300000],[42.100000,-71.700000],[41.700000,-72.200000],[41.300000,-72.500000],[40.900000,-72.700000],[40.700000,-72.800000],[40.700000,-72.900000],[40.700000,-73.100000],[40.700000,-73.400000],[40.700000,-73.600000],[40.700000,-73.800000],[40.600000,-73.900000],[40.500000,-73.900000],[40.400000,-74.000000],[40.300000,-74.000000],[40.300000,-74.100000],[40.300000,-74.300000],[40.200000,-74.700000],[40.200000,-74.900000],[40.000000,-75.300000],[39.900000,-75.600000],[39.600000,-76.000000],[39.300000,-76.500000],[39.100000,-77.000000],[38.800000,-77.300000],[38.300000,-77.800000],[38.100000,-78.100000],[37.800000,-78.500000],[37.300000,-78.900000],[36.900000,-79.400000],[36.700000,-79.600000],[36.500000,-79.800000],[36.200000,-79.900000],[35.900000,-80.200000],[35.600000,-80.600000],[35.400000,-80.900000],[35.100000,-81.100000],[34.800000,-81.600000],[34.400000,-82.100000],[34.000000,-82.700000],[33.600000,-83.400000],[33.300000,-84.000000],[33.000000,-84.700000],[32.700000,-85.400000],[32.500000,-86.100000],[32.200000,-86.800000],[32.000000,-87.600000],[31.800000,-88.400000],[31.700000,-89.100000],[31.600000,-89.500000],[31.500000,-90.200000],[31.400000,-91.000000],[31.300000,-91.700000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[73.900000,-79.700000],[73.900000,-79.200000],[73.900000,-78.700000],[73.800000,-78.100000],[73.800000,-77.500000],[73.800000,-77.000000],[73.700000,-76.700000],[73.600000,-76.500000],[73.600000,-76.300000],[73.600000,-76.200000],[73.500000,-76.100000],[73.300000,-75.800000],[73.200000,-75.300000],[73.100000,-75.000000],[72.900000,-74.600000],[72.800000,-74.000000],[72.700000,-73.700000],[72.500000,-73.100000],[72.400000,-72.700000],[72.200000,-72.200000],[72.100000,-71.600000],[71.900000,-71.100000],[71.800000,-70.500000],[71.600000,-70.000000],[71.600000,-69.600000],[71.500000,-69.100000],[71.400000,-68.600000],[71.400000,-68.200000],[71.300000,-67.900000],[71.200000,-67.600000],[71.100000,-67.100000],[71.000000,-66.900000],[70.800000,-66.600000],[70.700000,-66.400000],[70.500000,-66.000000],[70.400000,-65.800000],[70.200000,-65.600000],[70.100000,-65.400000],[70.100000,-65.300000],[70.000000,-65.100000],[69.900000,-65.000000],[69.800000,-65.000000],[69.700000,-65.000000],[69.600000,-65.000000],[69.500000,-65.100000],[69.500000,-65.000000],[69.400000,-64.900000],[69.400000,-64.600000],[69.300000,-64.400000],[69.300000,-64.200000],[69.200000,-64.100000],[69.000000,-64.100000],[68.900000,-64.200000],[68.700000,-64.200000],[68.600000,-64.300000],[68.500000,-64.300000],[68.400000,-64.200000],[68.400000,-64.100000],[68.300000,-63.800000],[68.200000,-63.600000],[68.100000,-63.100000],[68.000000,-62.900000],[67.800000,-62.500000],[67.700000,-62.200000],[67.600000,-61.800000],[67.400000,-61.600000],[67.300000,-61.400000],[67.200000,-61.300000],[67.000000,-61.200000],[66.800000,-61.100000],[66.500000,-61.000000],[66.300000,-61.100000],[66.000000,-61.100000],[65.700000,-61.200000],[65.400000,-61.300000],[65.200000,-61.400000],[65.000000,-61.500000],[64.700000,-61.600000],[64.500000,-61.800000],[64.400000,-61.800000],[64.300000,-61.900000],[64.200000,-62.000000],[64.000000,-62.100000],[63.900000,-62.200000],[63.800000,-62.400000],[63.700000,-62.600000],[63.500000,-62.800000],[63.500000,-62.800000],[63.400000,-62.700000],[63.300000,-62.700000],[63.200000,-62.600000],[63.100000,-62.600000],[62.900000,-62.800000],[62.800000,-63.100000],[62.700000,-63.300000],[62.500000,-63.500000],[62.300000,-63.700000],[62.100000,-63.800000],[62.000000,-64.000000],[61.900000,-64.100000],[61.700000,-64.100000],[61.500000,-64.100000],[61.300000,-64.100000],[61.200000,-64.000000],[61.000000,-63.900000],[60.900000,-63.700000],[60.700000,-63.400000],[60.600000,-63.100000],[60.400000,-62.700000],[60.400000,-62.500000],[60.200000,-62.200000],[60.100000,-62.000000],[59.900000,-61.800000],[59.700000,-61.500000],[59.500000,-61.200000],[59.200000,-60.900000],[59.000000,-60.600000],[58.800000,-60.500000],[58.500000,-60.300000],[58.300000,-60.200000],[58.100000,-60.100000],[57.900000,-59.800000],[57.600000,-59.700000],[57.300000,-59.500000],[57.000000,-59.300000],[56.700000,-59.100000],[56.500000,-58.900000],[56.300000,-58.600000],[56.100000,-58.300000],[55.800000,-58.000000],[55.700000,-57.700000],[55.500000,-57.400000],[55.400000,-57.100000],[55.300000,-56.700000],[55.300000,-56.200000],[55.200000,-55.700000],[55.100000,-55.300000],[55.000000,-54.900000],[55.000000,-54.600000],[54.900000,-54.200000],[54.800000,-54.000000],[54.600000,-53.700000],[54.400000,-53.400000],[54.200000,-53.200000],[53.900000,-52.900000],[53.600000,-52.600000],[53.300000,-52.300000],[53.000000,-52.000000],[52.800000,-51.800000],[52.600000,-51.600000],[52.400000,-51.300000],[52.200000,-51.100000],[52.000000,-50.900000],[51.800000,-50.600000],[51.600000,-50.500000],[51.500000,-50.500000],[51.400000,-50.400000],[51.200000,-50.300000],[51.100000,-50.400000],[51.000000,-50.400000],[50.900000,-50.400000],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[70.500000,-138.400000],[70.600000,-137.800000],[70.600000,-137.100000],[70.700000,-136.500000],[70.800000,-135.900000],[70.900000,-135.200000],[71.000000,-134.600000],[71.100000,-134.100000],[71.200000,-133.500000],[71.300000,-132.900000],[71.300000,-132.400000],[71.400000,-132.000000],[71.500000,-131.800000],[71.700000,-131.300000],[71.800000,-130.900000],[59.100000,319.100000],[59.000000,319.000000],[58.900000,319.200000],[58.900000,319.000000],[58.800000,318.800000],[58.700000,318.700000],[58.500000,318.700000],[58.500000,318.600000],[58.400000,318.600000],[58.300000,318.600000],[58.400000,318.900000],[58.300000,318.800000],[58.200000,318.800000],[58.100000,318.800000],[58.000000,318.700000],[57.900000,318.600000],[57.800000,318.600000],[57.700000,318.400000],[57.600000,318.300000],[57.600000,318.400000],[57.500000,318.500000],[57.400000,318.700000],[57.500000,318.800000],[57.600000,319.000000],[57.600000,319.100000],[57.400000,319.000000],[57.300000,318.900000],[57.100000,318.800000],[56.900000,318.700000],[56.800000,318.700000],[56.700000,318.800000],[56.500000,318.600000],[56.300000,318.500000],[56.500000,318.800000],[56.700000,319.000000],[56.900000,319.000000],[57.000000,319.000000],[57.200000,319.200000],[57.100000,319.200000],[56.900000,319.100000],[56.900000,319.200000],[56.900000,319.200000],[56.900000,319.300000],[56.900000,319.400000],[57.000000,319.400000],[56.900000,319.700000],[56.800000,319.500000],[56.700000,319.500000],[56.500000,319.600000],[56.200000,319.500000],[55.900000,319.300000],[55.800000,319.200000],[55.600000,319.400000],[0.000000,0.000000],[56.500000,322.700000],[56.800000,322.200000],[57.000000,321.700000],[56.900000,321.400000],[57.000000,321.100000],[57.100000,321.400000],[57.200000,321.700000],[57.400000,321.500000],[57.500000,321.900000],[57.700000,322.100000],[57.800000,322.200000],[58.000000,322.300000],[58.200000,322.500000],[58.400000,322.700000],[58.600000,322.500000],[58.600000,321.800000],[58.600000,321.200000],[58.500000,320.500000],[58.600000,320.300000],[58.600000,320.200000],[58.800000,320.600000],[58.800000,320.400000],[59.200000,321.100000],[59.500000,321.400000],[59.600000,321.100000],[59.500000,320.400000],[59.500000,320.100000],[59.500000,319.900000],[59.500000,319.500000],[59.300000,319.300000],[59.200000,319.200000],[0.000000,0.000000],[56.000000,316.700000],[56.200000,316.700000],[56.200000,316.400000],[56.100000,315.900000],[55.900000,315.800000],[55.700000,315.500000],[55.600000,315.500000],[55.600000,315.900000],[55.500000,316.000000],[55.400000,315.600000],[55.300000,315.600000],[55.200000,315.000000],[55.300000,314.500000],[55.100000,314.300000],[55.000000,314.100000],[54.900000,314.600000],[54.700000,314.300000],[54.500000,314.100000],[54.300000,314.300000],[54.300000,314.600000],[54.300000,315.200000],[0.000000,0.000000],[54.500000,318.100000],[54.800000,317.900000],[55.000000,317.900000],[55.000000,318.100000],[55.200000,318.400000],[55.300000,318.700000],[55.500000,318.600000],[55.600000,318.700000],[55.700000,318.400000],[56.100000,318.100000],[56.200000,317.600000],[56.000000,317.100000],[56.200000,317.300000],[56.300000,317.000000],[56.300000,316.900000],[56.100000,316.800000],[56.000000,316.700000],[0.000000,0.000000],[61.600000,323.400000],[61.500000,323.300000],[61.500000,323.200000],[61.400000,323.200000],[61.300000,323.300000],[61.200000,323.000000],[61.100000,323.200000],[61.100000,323.400000],[60.900000,323.300000],[60.800000,323.300000],[60.900000,323.500000],[61.100000,323.500000],[61.100000,323.500000],[61.200000,323.600000],[61.300000,323.600000],[61.400000,323.600000],[61.400000,323.400000],[61.500000,323.400000],[0.000000,0.000000],[58.600000,317.300000],[0.000000,0.000000],[59.900000,321.800000],[59.900000,321.600000],[60.000000,321.500000],[60.100000,321.400000],[60.000000,321.200000],[59.900000,321.300000],[59.900000,321.600000],[59.900000,321.700000],[59.900000,321.800000],[59.800000,321.400000],[59.800000,321.300000],[59.900000,321.200000],[59.800000,321.200000],[59.800000,321.400000]]
if continent=='nam':
return [[63.000000,-163.800000],[63.100000,-163.400000],[63.300000,-162.600000],[63.500000,-162.100000],[63.400000,-161.900000],[63.500000,-161.100000],[63.900000,-160.800000],[64.100000,-160.900000],[64.400000,-161.400000],[64.500000,-161.100000],[64.800000,-160.800000],[64.800000,-161.400000],[64.700000,-161.900000],[64.300000,-162.700000],[64.600000,-163.100000],[64.500000,-163.100000],[64.600000,-163.600000],[64.500000,-163.900000],[64.400000,-164.900000],[64.500000,-165.900000],[64.600000,-166.300000],[65.000000,-166.700000],[65.200000,-166.800000],[65.300000,-166.400000],[65.400000,-167.100000],[65.600000,-168.100000],[65.600000,-168.000000],[65.800000,-167.500000],[65.900000,-167.000000],[66.100000,-166.500000],[66.100000,-165.800000],[66.400000,-165.700000],[66.400000,-165.100000],[66.600000,-164.400000],[66.600000,-163.700000],[66.400000,-163.800000],[66.200000,-163.900000],[66.100000,-163.200000],[66.100000,-162.700000],[66.000000,-162.300000],[66.000000,-161.800000],[66.300000,-161.500000],[66.200000,-161.100000],[66.400000,-161.300000],[66.300000,-162.000000],[66.600000,-162.000000],[66.500000,-161.300000],[66.400000,-160.900000],[66.400000,-160.200000],[66.600000,-159.500000],[66.500000,-160.200000],[66.700000,-159.600000],[66.600000,-160.200000],[66.600000,-160.700000],[66.600000,-161.300000],[66.600000,-161.500000],[66.900000,-161.800000],[67.000000,-161.900000],[67.000000,-162.600000],[67.200000,-162.500000],[67.100000,-162.800000],[67.000000,-163.300000],[67.300000,-163.700000],[67.600000,-164.100000],[67.800000,-164.800000],[68.100000,-165.800000],[68.300000,-166.600000],[68.500000,-166.600000],[68.400000,-166.600000],[68.500000,-166.300000],[68.800000,-166.300000],[68.900000,-166.100000],[68.900000,-165.600000],[69.000000,-164.500000],[69.100000,-163.600000],[69.400000,-163.200000],[69.600000,-162.900000],[69.700000,-163.000000],[69.800000,-162.500000],[69.900000,-162.700000],[70.000000,-162.100000],[70.000000,-162.000000],[70.300000,-161.900000],[70.200000,-161.900000],[70.200000,-161.500000],[70.400000,-160.600000],[70.600000,-160.400000],[70.500000,-160.100000],[70.200000,-160.000000],[70.500000,-159.700000],[70.600000,-159.900000],[70.700000,-159.900000],[70.900000,-159.100000],[70.700000,-159.500000],[70.800000,-159.100000],[70.800000,-158.300000],[70.900000,-157.700000],[71.100000,-157.300000],[71.100000,-157.000000],[71.300000,-156.900000],[71.300000,-156.600000],[71.200000,-156.100000],[71.100000,-155.600000],[71.000000,-155.900000],[70.800000,-156.300000],[70.800000,-155.800000],[70.700000,-155.500000],[71.000000,-155.400000],[71.100000,-155.100000],[70.900000,-154.600000],[70.900000,-154.000000],[70.900000,-153.600000],[70.800000,-152.900000],[70.900000,-152.700000],[70.700000,-152.300000],[70.600000,-152.400000],[70.500000,-151.600000],[70.500000,-150.900000],[70.400000,-150.200000],[70.500000,-149.700000],[70.400000,-148.700000],[70.300000,-148.100000],[70.200000,-147.600000],[70.200000,-146.700000],[70.100000,-145.700000],[70.000000,-145.300000],[70.000000,-144.600000],[70.100000,-144.400000],[70.100000,-143.700000],[70.100000,-143.300000],[70.000000,-142.600000],[69.800000,-142.100000],[69.700000,-141.500000],[69.700000,-141.200000],[69.700000,-141.000000],[69.700000,-140.600000],[69.600000,-139.700000],[69.500000,-139.000000],[69.200000,-138.400000],[69.000000,-137.800000],[68.900000,-137.100000],[68.900000,-136.700000],[68.900000,-136.400000],[68.700000,-135.600000],[68.700000,-135.200000],[68.900000,-135.600000],[68.900000,-134.800000],[68.600000,-134.300000],[68.800000,-134.300000],[69.100000,-134.700000],[69.300000,-134.000000],[69.400000,-133.300000],[69.700000,-132.900000],[69.700000,-132.500000],[69.800000,-132.100000],[69.900000,-131.500000],[70.000000,-131.000000],[70.200000,-130.600000],[70.100000,-130.000000],[70.100000,-129.600000],[69.900000,-129.900000],[69.700000,-130.600000],[69.600000,-131.300000],[69.400000,-132.200000],[69.300000,-132.500000],[69.100000,-133.000000],[69.200000,-132.400000],[69.400000,-131.800000],[69.300000,-131.600000],[69.400000,-131.400000],[69.300000,-131.000000],[69.400000,-130.700000],[69.700000,-130.000000],[69.900000,-129.100000],[69.800000,-129.200000],[69.900000,-128.600000],[70.100000,-128.100000],[70.300000,-128.000000],[70.400000,-128.300000],[70.400000,-127.700000],[70.000000,-127.200000],[69.600000,-126.700000],[69.500000,-126.400000],[69.400000,-125.500000],[69.500000,-125.400000],[69.500000,-125.400000],[69.700000,-125.400000],[69.800000,-125.200000],[70.000000,-125.000000],[70.000000,-125.100000],[70.000000,-124.600000],[70.100000,-124.700000],[70.000000,-124.400000],[69.800000,-124.500000],[69.700000,-124.100000],[69.400000,-124.400000],[69.400000,-124.400000],[69.400000,-124.000000],[69.500000,-123.400000],[69.700000,-123.100000],[69.800000,-122.500000],[69.800000,-122.000000],[69.800000,-121.400000],[69.500000,-120.700000],[69.400000,-120.100000],[69.300000,-119.400000],[69.200000,-118.600000],[69.000000,-117.700000],[68.900000,-117.100000],[68.900000,-117.000000],[68.900000,-116.000000],[69.000000,-116.000000],[69.000000,-115.300000],[68.800000,-114.900000],[68.600000,-114.300000],[68.300000,-114.100000],[68.300000,-114.400000],[68.200000,-115.000000],[68.100000,-115.300000],[67.900000,-115.300000],[67.800000,-114.500000],[67.800000,-113.600000],[67.700000,-112.400000],[67.700000,-111.900000],[67.800000,-111.600000],[67.800000,-111.200000],[68.000000,-110.200000],[67.900000,-109.900000],[67.800000,-109.800000],[67.800000,-109.100000],[67.600000,-109.000000],[67.500000,-108.900000],[67.600000,-108.600000],[67.400000,-108.300000],[67.100000,-108.000000],[66.900000,-108.200000],[66.900000,-107.600000],[67.100000,-107.300000],[67.400000,-107.800000],[67.700000,-108.000000],[68.000000,-107.700000],[68.100000,-107.300000],[68.300000,-106.700000],[68.400000,-106.300000],[68.600000,-105.900000],[68.600000,-106.700000],[68.500000,-106.700000],[68.400000,-106.800000],[68.400000,-107.200000],[68.400000,-107.600000],[68.300000,-107.900000],[68.200000,-108.000000],[68.200000,-108.400000],[68.300000,-108.800000],[68.600000,-108.500000],[68.700000,-107.600000],[69.000000,-106.700000],[68.900000,-105.900000],[68.700000,-105.700000],[68.500000,-105.600000],[68.400000,-105.300000],[68.300000,-104.700000],[68.100000,-104.400000],[68.100000,-103.900000],[68.200000,-103.300000],[67.800000,-102.600000],[67.800000,-102.000000],[67.800000,-101.400000],[67.900000,-100.400000],[67.800000,-99.400000],[67.800000,-98.900000],[67.900000,-98.600000],[68.100000,-98.500000],[67.800000,-98.000000],[67.700000,-97.200000],[67.900000,-97.500000],[67.900000,-98.000000],[68.100000,-98.400000],[68.300000,-98.500000],[68.400000,-98.500000],[68.400000,-98.100000],[68.500000,-98.000000],[68.400000,-97.000000],[68.300000,-96.600000],[68.000000,-96.700000],[68.300000,-96.000000],[67.800000,-96.200000],[67.500000,-96.100000],[67.400000,-95.700000],[67.200000,-95.400000],[67.700000,-95.400000],[68.000000,-95.600000],[68.100000,-95.300000],[68.100000,-94.900000],[68.200000,-94.400000],[68.500000,-94.000000],[68.800000,-93.700000],[69.000000,-94.100000],[68.900000,-94.000000],[68.700000,-94.700000],[69.000000,-94.600000],[69.100000,-94.400000],[69.400000,-93.900000],[69.300000,-93.700000],[69.500000,-94.100000],[69.600000,-94.800000],[69.800000,-95.300000],[69.900000,-96.100000],[70.100000,-96.600000],[70.400000,-96.500000],[70.600000,-96.200000],[70.700000,-96.200000],[71.000000,-96.400000],[71.200000,-96.300000],[71.300000,-96.100000],[71.200000,-95.600000],[71.500000,-95.800000],[71.800000,-95.400000],[72.000000,-95.000000],[71.900000,-95.000000],[71.900000,-94.600000],[71.700000,-94.600000],[71.800000,-94.200000],[71.600000,-93.800000],[71.300000,-93.000000],[70.800000,-92.900000],[70.700000,-92.700000],[70.500000,-92.300000],[70.300000,-92.100000],[70.200000,-91.800000],[70.100000,-91.700000],[70.200000,-92.300000],[70.100000,-92.500000],[69.900000,-92.200000],[69.800000,-92.600000],[69.700000,-92.400000],[69.500000,-91.700000],[69.500000,-91.500000],[69.500000,-91.100000],[69.400000,-90.900000],[69.300000,-91.400000],[68.900000,-90.600000],[68.500000,-90.600000],[68.300000,-90.200000],[68.700000,-90.000000],[69.000000,-89.900000],[69.200000,-89.000000],[68.800000,-88.100000],[68.200000,-88.000000],[68.300000,-88.400000],[67.700000,-88.200000],[67.300000,-87.500000],[67.400000,-86.900000],[67.600000,-86.600000],[68.000000,-86.200000],[68.300000,-85.900000],[68.700000,-85.800000],[68.800000,-85.300000],[68.800000,-84.900000],[68.900000,-85.000000],[69.000000,-84.900000],[69.300000,-85.500000],[69.600000,-85.400000],[69.800000,-85.300000],[69.800000,-84.200000],[69.700000,-83.400000],[69.600000,-82.600000],[69.400000,-82.600000],[69.200000,-82.000000],[69.100000,-81.400000],[68.800000,-81.700000],[68.600000,-81.400000],[68.400000,-81.900000],[68.500000,-82.500000],[68.300000,-82.400000],[68.200000,-82.100000],[67.800000,-81.900000],[67.400000,-81.300000],[67.100000,-81.400000],[66.900000,-82.000000],[66.600000,-82.600000],[66.400000,-83.200000],[66.600000,-83.800000],[66.700000,-84.100000],[66.200000,-83.800000],[66.300000,-84.200000],[66.200000,-84.500000],[66.300000,-85.200000],[66.500000,-85.700000],[66.500000,-86.200000],[66.500000,-86.700000],[66.300000,-86.300000],[66.000000,-86.100000],[65.900000,-86.400000],[65.600000,-86.800000],[65.400000,-87.300000],[65.500000,-88.200000],[65.700000,-88.800000],[65.900000,-89.500000],[65.700000,-89.800000],[65.300000,-88.800000],[65.300000,-87.800000],[65.200000,-86.900000],[64.700000,-87.300000],[64.500000,-87.800000],[64.200000,-88.000000],[64.100000,-88.500000],[64.000000,-89.300000],[64.100000,-89.600000],[64.100000,-89.800000],[64.000000,-89.800000],[63.900000,-90.100000],[63.600000,-90.300000],[63.600000,-90.700000],[63.700000,-91.300000],[63.800000,-91.800000],[63.800000,-92.100000],[63.900000,-92.800000],[64.000000,-93.600000],[63.900000,-93.300000],[63.800000,-92.600000],[63.700000,-92.100000],[63.600000,-92.100000],[63.600000,-91.400000],[63.500000,-90.900000],[63.200000,-90.700000],[63.000000,-90.600000],[63.000000,-90.600000],[62.900000,-91.200000],[62.800000,-92.100000],[62.600000,-92.200000],[62.600000,-92.600000],[62.100000,-92.600000],[62.100000,-93.200000],[61.900000,-93.400000],[61.600000,-93.600000],[61.400000,-94.500000],[61.100000,-94.200000],[60.700000,-94.500000],[60.400000,-94.700000],[59.900000,-94.800000],[59.300000,-94.800000],[58.900000,-94.800000],[58.800000,-94.400000],[58.600000,-94.300000],[58.800000,-93.900000],[58.700000,-93.300000],[58.700000,-93.200000],[58.100000,-92.800000],[57.500000,-92.500000],[57.000000,-92.700000],[57.000000,-92.600000],[56.900000,-92.400000],[57.100000,-91.600000],[57.100000,-90.700000],[56.900000,-89.800000],[56.700000,-88.900000],[56.400000,-88.200000],[56.000000,-87.700000],[55.900000,-87.200000],[55.800000,-86.600000],[55.700000,-86.000000],[55.400000,-85.400000],[54.800000,-85.700000],[55.300000,-85.000000],[55.200000,-84.000000],[55.300000,-83.200000],[55.100000,-82.500000],[54.900000,-82.300000],[54.000000,-82.300000],[53.200000,-82.300000],[52.700000,-82.000000],[52.300000,-81.400000],[52.000000,-82.100000],[52.100000,-81.500000],[51.800000,-80.800000],[51.400000,-80.600000],[51.100000,-81.000000],[51.300000,-80.400000],[51.100000,-79.800000],[51.500000,-79.600000],[51.600000,-79.300000],[51.300000,-78.700000],[51.700000,-78.900000],[51.900000,-78.800000],[52.200000,-78.400000],[52.300000,-78.000000],[52.400000,-78.500000],[52.700000,-78.800000],[53.100000,-78.900000],[53.600000,-79.000000],[54.100000,-79.000000],[54.500000,-79.500000],[54.600000,-79.400000],[55.100000,-78.100000],[55.500000,-77.400000],[56.000000,-77.000000],[56.100000,-76.400000],[56.400000,-76.400000],[56.300000,-76.600000],[56.500000,-76.800000],[57.000000,-77.000000],[57.500000,-77.100000],[58.100000,-77.400000],[58.300000,-77.700000],[58.500000,-78.400000],[58.800000,-78.800000],[59.100000,-78.700000],[59.300000,-78.000000],[59.400000,-77.800000],[59.600000,-77.500000],[59.600000,-77.400000],[59.900000,-77.200000],[60.000000,-77.700000],[60.200000,-77.600000],[60.500000,-77.800000],[60.700000,-77.500000],[60.800000,-78.100000],[61.300000,-77.800000],[61.600000,-77.600000],[61.600000,-77.700000],[62.000000,-78.300000],[62.300000,-78.000000],[62.600000,-77.600000],[62.500000,-76.900000],[62.400000,-76.300000],[62.300000,-75.600000],[62.300000,-75.200000],[62.200000,-74.800000],[62.400000,-74.100000],[62.200000,-73.100000],[62.000000,-72.600000],[61.800000,-72.600000],[61.900000,-72.300000],[61.500000,-72.200000],[61.600000,-71.600000],[61.400000,-71.900000],[61.200000,-71.600000],[61.000000,-71.000000],[61.000000,-70.600000],[60.900000,-70.200000],[61.000000,-69.800000],[60.800000,-69.500000],[60.500000,-69.700000],[60.200000,-69.500000],[60.000000,-69.800000],[60.000000,-70.500000],[60.000000,-71.200000],[59.900000,-70.300000],[59.900000,-69.600000],[59.600000,-69.400000],[59.300000,-69.600000],[59.200000,-69.500000],[59.000000,-69.200000],[59.000000,-69.500000],[59.000000,-70.000000],[58.700000,-70.500000],[58.700000,-70.200000],[58.800000,-69.500000],[58.900000,-68.500000],[58.300000,-68.300000],[57.900000,-69.000000],[58.600000,-67.900000],[58.300000,-67.800000],[58.400000,-67.300000],[58.800000,-66.500000],[58.400000,-66.100000],[58.900000,-66.100000],[59.000000,-65.800000],[59.200000,-65.600000],[59.400000,-65.400000],[59.900000,-65.500000],[60.200000,-64.900000],[60.300000,-64.700000],[60.100000,-64.400000],[59.900000,-64.200000],[59.600000,-64.100000],[59.400000,-63.800000],[59.300000,-63.400000],[59.100000,-64.000000],[59.000000,-63.800000],[59.100000,-63.200000],[58.800000,-63.200000],[58.700000,-62.900000],[58.600000,-63.400000],[58.500000,-63.400000],[58.500000,-62.600000],[58.300000,-62.600000],[58.100000,-62.900000],[58.000000,-62.300000],[57.900000,-62.400000],[57.600000,-61.800000],[57.400000,-62.200000],[57.200000,-61.600000],[56.700000,-61.700000],[56.700000,-62.100000],[56.600000,-62.600000],[56.500000,-61.900000],[56.300000,-61.700000],[56.200000,-61.500000],[55.900000,-61.300000],[55.700000,-60.600000],[55.500000,-60.300000],[55.400000,-60.200000],[55.300000,-59.700000],[54.900000,-59.700000],[55.100000,-59.100000],[54.800000,-58.500000],[54.900000,-58.100000],[54.800000,-57.800000],[54.500000,-57.500000],[54.400000,-57.900000],[54.300000,-58.200000],[54.100000,-59.400000],[54.100000,-58.700000],[53.700000,-60.000000],[53.800000,-61.100000],[53.500000,-60.300000],[53.500000,-59.800000],[54.000000,-58.600000],[54.100000,-57.900000],[54.200000,-57.900000],[54.000000,-57.200000],[53.500000,-57.300000],[53.800000,-56.900000],[53.600000,-56.200000],[53.500000,-55.900000],[53.300000,-55.700000],[53.200000,-56.300000],[52.900000,-55.800000],[52.600000,-55.700000],[52.500000,-55.900000],[52.300000,-55.900000],[51.800000,-56.300000],[51.500000,-57.200000],[51.200000,-58.600000],[50.700000,-59.300000],[50.300000,-60.100000],[50.300000,-60.300000],[50.100000,-61.500000],[50.300000,-62.500000],[50.300000,-63.700000],[50.300000,-64.200000],[50.300000,-65.300000],[50.300000,-66.300000],[50.000000,-66.900000],[49.400000,-67.300000],[49.200000,-68.200000],[48.900000,-68.800000],[48.200000,-69.600000],[47.500000,-70.100000],[47.000000,-71.000000],[47.000000,-70.700000],[47.400000,-70.100000],[48.100000,-69.400000],[48.400000,-68.700000],[48.900000,-67.700000],[49.200000,-66.500000],[49.300000,-65.300000],[48.900000,-64.200000],[48.800000,-64.200000],[48.100000,-65.200000],[48.100000,-66.500000],[47.800000,-65.700000],[47.800000,-65.000000],[47.300000,-64.900000],[47.100000,-64.900000],[46.600000,-64.700000],[46.300000,-64.400000],[46.000000,-63.900000],[45.800000,-63.100000],[45.700000,-62.500000],[45.700000,-61.800000],[45.400000,-61.000000],[45.300000,-61.500000],[44.900000,-62.300000],[44.800000,-62.800000],[44.700000,-63.200000],[44.700000,-63.500000],[44.700000,-63.900000],[44.400000,-64.200000],[44.100000,-64.500000],[43.700000,-65.000000],[43.600000,-65.300000],[43.800000,-65.800000],[44.500000,-65.900000],[44.700000,-65.800000],[45.000000,-65.100000],[45.200000,-64.300000],[45.300000,-63.500000],[45.400000,-64.100000],[45.600000,-64.500000],[45.800000,-64.600000],[45.600000,-65.000000],[45.300000,-66.000000],[45.100000,-66.600000],[45.200000,-67.000000],[45.000000,-67.000000],[44.900000,-67.000000],[44.700000,-67.200000],[44.600000,-67.700000],[44.400000,-68.000000],[44.300000,-68.200000],[44.300000,-68.500000],[44.500000,-68.800000],[44.100000,-69.100000],[44.000000,-69.300000],[43.900000,-69.600000],[43.700000,-69.800000],[43.800000,-70.100000],[43.500000,-70.300000],[43.300000,-70.500000],[43.000000,-70.700000],[42.700000,-70.800000],[42.600000,-70.800000],[42.300000,-70.900000],[42.100000,-70.700000],[41.900000,-70.500000],[41.700000,-70.100000],[41.900000,-70.000000],[41.700000,-69.900000],[41.600000,-70.200000],[41.600000,-70.600000],[41.600000,-70.900000],[41.600000,-71.100000],[41.600000,-71.400000],[41.400000,-71.700000],[41.300000,-72.500000],[41.200000,-73.200000],[40.900000,-73.700000],[40.900000,-73.900000],[40.600000,-74.200000],[40.300000,-74.000000],[40.000000,-74.100000],[39.700000,-74.200000],[39.500000,-74.400000],[39.200000,-74.700000],[39.200000,-74.900000],[39.400000,-75.300000],[39.600000,-75.500000],[39.200000,-75.400000],[38.700000,-75.100000],[38.400000,-75.100000],[38.100000,-75.300000],[37.700000,-75.600000],[37.200000,-75.700000],[37.400000,-76.000000],[37.700000,-75.800000],[37.900000,-75.700000],[38.100000,-75.800000],[38.300000,-76.100000],[38.500000,-76.300000],[38.800000,-76.100000],[38.900000,-76.300000],[39.100000,-76.100000],[39.400000,-76.100000],[39.600000,-76.000000],[39.400000,-76.300000],[39.200000,-76.500000],[38.800000,-76.500000],[38.400000,-76.400000],[38.300000,-76.400000],[38.200000,-76.400000],[38.300000,-76.700000],[38.300000,-77.000000],[38.100000,-76.400000],[37.700000,-76.300000],[37.500000,-76.400000],[37.300000,-76.400000],[37.100000,-76.200000],[37.000000,-76.500000],[36.900000,-76.300000],[36.900000,-76.000000],[36.500000,-75.900000],[36.400000,-75.900000],[36.100000,-75.800000],[36.200000,-76.100000],[36.100000,-76.400000],[36.300000,-76.700000],[36.000000,-76.200000],[36.000000,-75.800000],[35.500000,-75.900000],[35.400000,-76.400000],[35.400000,-76.800000],[35.200000,-76.500000],[35.000000,-76.700000],[34.800000,-76.500000],[34.500000,-77.400000],[34.200000,-77.800000],[33.900000,-78.500000],[33.500000,-79.100000],[33.200000,-79.200000],[32.900000,-79.600000],[32.600000,-80.000000],[32.600000,-80.500000],[32.500000,-80.700000],[32.200000,-80.800000],[32.100000,-81.000000],[31.600000,-81.300000],[31.100000,-81.500000],[30.600000,-81.600000],[29.800000,-81.400000],[28.900000,-80.900000],[28.000000,-80.600000],[27.000000,-80.200000],[26.000000,-80.200000],[25.400000,-80.400000],[25.200000,-81.200000],[25.800000,-81.400000],[26.500000,-82.000000],[26.800000,-82.100000],[27.000000,-82.400000],[27.700000,-82.700000],[27.900000,-82.800000],[29.000000,-82.800000],[29.600000,-83.400000],[30.000000,-83.700000],[30.100000,-84.400000],[29.800000,-84.800000],[29.900000,-85.500000],[30.200000,-85.900000],[30.500000,-86.300000],[30.500000,-87.100000],[30.400000,-87.400000],[30.500000,-88.000000],[30.500000,-88.200000],[30.400000,-88.800000],[30.300000,-89.600000],[30.400000,-90.200000],[30.200000,-90.000000],[30.100000,-89.600000],[29.800000,-89.500000],[29.400000,-89.500000],[29.000000,-89.400000],[29.500000,-90.000000],[29.200000,-90.400000],[29.200000,-91.000000],[29.600000,-91.600000],[29.800000,-92.200000],[29.600000,-92.500000],[29.800000,-93.500000],[29.600000,-94.600000],[29.600000,-94.700000],[29.600000,-95.000000],[29.200000,-95.000000],[29.000000,-95.100000],[28.700000,-95.500000],[28.500000,-95.800000],[28.400000,-96.100000],[28.700000,-95.700000],[28.600000,-95.900000],[28.700000,-96.100000],[28.700000,-96.100000],[28.700000,-96.200000],[28.600000,-96.400000],[28.500000,-96.400000],[28.400000,-96.600000],[28.200000,-96.800000],[28.100000,-97.100000],[28.000000,-97.000000],[27.800000,-97.100000],[27.700000,-97.200000],[27.300000,-97.200000],[27.300000,-97.400000],[27.200000,-97.400000],[26.900000,-97.400000],[26.600000,-97.400000],[26.400000,-97.300000],[26.000000,-97.200000],[25.900000,-97.100000],[25.600000,-97.200000],[25.700000,-97.000000],[25.300000,-97.200000],[25.300000,-97.500000],[24.900000,-97.600000],[24.700000,-97.800000],[24.100000,-97.700000],[23.800000,-97.700000],[22.900000,-97.600000],[22.300000,-97.700000],[21.800000,-97.500000],[21.400000,-97.200000],[21.100000,-97.300000],[20.800000,-97.100000],[20.200000,-96.700000],[19.700000,-96.300000],[19.300000,-96.100000],[19.200000,-96.000000],[18.900000,-95.700000],[18.700000,-95.100000],[18.600000,-95.000000],[18.200000,-94.200000],[18.500000,-93.200000],[18.700000,-92.000000],[18.600000,-91.400000],[19.300000,-90.900000],[20.400000,-90.500000],[21.300000,-90.200000],[21.400000,-89.200000],[21.700000,-88.100000],[21.500000,-87.000000],[20.800000,-87.000000],[20.000000,-87.500000],[19.400000,-87.700000],[18.700000,-87.800000],[18.200000,-88.000000],[18.600000,-88.100000],[18.400000,-88.400000],[17.800000,-88.300000],[16.500000,-88.500000],[15.800000,-88.500000],[15.700000,-88.300000],[15.700000,-88.300000],[18.600000,-103.600000],[18.900000,-104.000000],[19.200000,-104.600000],[19.700000,-105.100000],[20.100000,-105.400000],[20.500000,-105.300000],[20.800000,-105.300000],[21.200000,-105.100000],[21.800000,-105.300000],[22.400000,-105.600000],[22.800000,-105.900000],[23.200000,-106.400000],[23.500000,-106.700000],[23.800000,-106.800000],[24.100000,-107.200000],[24.500000,-107.800000],[25.000000,-107.900000],[25.200000,-108.400000],[25.500000,-108.800000],[25.600000,-109.000000],[25.900000,-109.300000],[26.300000,-109.100000],[26.600000,-109.400000],[26.700000,-109.700000],[27.100000,-110.000000],[27.300000,-110.400000],[27.600000,-110.500000],[27.900000,-110.600000],[28.000000,-111.100000],[28.400000,-111.400000],[28.600000,-111.800000],[29.000000,-112.000000],[29.400000,-112.400000],[29.800000,-112.600000],[30.300000,-112.800000],[30.800000,-113.000000],[31.200000,-113.300000],[31.400000,-113.600000],[31.500000,-114.100000],[31.600000,-114.400000],[31.800000,-114.700000],[31.600000,-114.700000],[30.900000,-114.600000],[30.100000,-114.500000],[29.700000,-114.200000],[29.500000,-113.900000],[29.200000,-113.500000],[28.900000,-113.300000],[28.600000,-113.000000],[28.300000,-112.700000],[27.900000,-112.600000],[27.300000,-112.100000],[27.100000,-111.900000],[26.600000,-111.700000],[26.800000,-111.700000],[26.500000,-111.400000],[26.100000,-111.200000],[25.600000,-111.000000],[25.200000,-110.900000],[24.800000,-110.600000],[24.200000,-110.500000],[24.100000,-109.900000],[23.700000,-109.600000],[23.100000,-109.400000],[23.000000,-110.000000],[23.600000,-110.500000],[24.100000,-111.100000],[24.500000,-111.500000],[24.600000,-111.700000],[24.800000,-112.000000],[25.100000,-112.000000],[25.700000,-112.000000],[26.200000,-112.500000],[26.600000,-112.900000],[26.800000,-113.100000],[26.800000,-113.600000],[27.000000,-113.900000],[27.200000,-114.200000],[27.500000,-114.500000],[27.700000,-114.800000],[27.700000,-114.500000],[27.800000,-114.100000],[28.100000,-113.900000],[28.500000,-114.000000],[28.900000,-114.400000],[29.200000,-114.700000],[29.400000,-115.000000],[29.700000,-115.500000],[30.100000,-115.700000],[30.400000,-115.900000],[30.900000,-116.100000],[31.300000,-116.400000],[31.800000,-116.500000],[32.000000,-116.800000],[32.400000,-116.900000],[32.500000,-117.100000],[33.000000,-117.200000],[33.500000,-117.600000],[33.700000,-118.200000],[34.100000,-118.600000],[34.100000,-118.900000],[34.300000,-119.300000],[34.400000,-119.800000],[34.500000,-120.300000],[34.800000,-120.500000],[35.000000,-120.500000],[35.000000,-120.500000],[35.200000,-120.700000],[35.400000,-120.800000],[35.700000,-121.200000],[36.400000,-121.800000],[37.000000,-121.800000],[37.300000,-122.300000],[37.800000,-122.300000],[37.800000,-122.200000],[38.200000,-122.100000],[37.900000,-122.400000],[38.000000,-122.700000],[38.200000,-122.900000],[38.600000,-123.300000],[39.100000,-123.600000],[39.600000,-123.600000],[40.000000,-124.000000],[40.400000,-124.300000],[40.900000,-124.000000],[41.300000,-124.000000],[42.100000,-124.200000],[42.800000,-124.400000],[43.400000,-124.100000],[43.800000,-124.100000],[44.400000,-124.000000],[45.000000,-123.900000],[45.500000,-123.800000],[45.900000,-123.900000],[46.200000,-123.600000],[46.200000,-123.200000],[46.300000,-123.700000],[46.600000,-124.000000],[46.500000,-123.900000],[46.700000,-123.800000],[47.000000,-123.900000],[47.100000,-124.100000],[47.500000,-124.300000],[48.000000,-124.600000],[48.400000,-124.500000],[48.300000,-124.000000],[48.200000,-123.400000],[48.100000,-122.900000],[47.800000,-122.800000],[47.500000,-122.800000],[47.800000,-122.600000],[47.800000,-122.300000],[48.100000,-122.200000],[48.300000,-122.400000],[48.400000,-122.500000],[48.500000,-122.500000],[48.700000,-122.300000],[48.800000,-122.500000],[49.000000,-122.800000],[49.000000,-122.800000],[49.100000,-123.000000],[49.200000,-122.600000],[49.300000,-122.800000],[49.300000,-123.200000],[49.400000,-123.200000],[49.700000,-123.300000],[49.500000,-123.600000],[49.700000,-123.700000],[49.800000,-123.800000],[49.900000,-123.900000],[49.900000,-124.100000],[49.800000,-124.400000],[50.100000,-124.800000],[50.300000,-124.700000],[50.400000,-124.800000],[50.600000,-125.000000],[50.500000,-125.300000],[50.600000,-125.700000],[50.500000,-126.000000],[50.600000,-126.300000],[50.700000,-126.000000],[50.900000,-126.300000],[0.000000,0.000000],[35.700000,-121.200000],[36.400000,-121.800000],[37.000000,-121.800000],[37.300000,-122.300000],[37.800000,-122.300000],[37.800000,-122.200000],[38.200000,-122.100000],[37.900000,-122.400000],[38.000000,-122.700000],[38.200000,-122.900000],[38.600000,-123.300000],[39.100000,-123.600000],[39.600000,-123.600000],[40.000000,-124.000000],[40.400000,-124.300000],[40.900000,-124.000000],[41.300000,-124.000000],[42.100000,-124.200000],[42.800000,-124.400000],[43.400000,-124.100000],[43.800000,-124.100000],[44.400000,-124.000000],[45.000000,-123.900000],[45.500000,-123.800000],[45.900000,-123.900000],[46.200000,-123.600000],[46.200000,-123.200000],[46.300000,-123.700000],[46.600000,-124.000000],[46.500000,-123.900000],[46.700000,-123.800000],[47.000000,-123.900000],[47.100000,-124.100000],[47.500000,-124.300000],[48.000000,-124.600000],[48.400000,-124.500000],[48.300000,-124.000000],[48.200000,-123.400000],[48.100000,-122.900000],[47.800000,-122.800000],[47.500000,-122.800000],[47.800000,-122.600000],[47.800000,-122.300000],[48.100000,-122.200000],[48.300000,-122.400000],[48.400000,-122.500000],[48.500000,-122.500000],[48.700000,-122.300000],[48.800000,-122.500000],[49.000000,-122.800000],[49.000000,-122.800000],[49.100000,-123.000000],[49.200000,-122.600000],[49.300000,-122.800000],[49.300000,-123.200000],[49.400000,-123.200000],[49.700000,-123.300000],[49.500000,-123.600000],[49.700000,-123.700000],[49.800000,-123.800000],[49.900000,-123.900000],[49.900000,-124.100000],[49.800000,-124.400000],[50.100000,-124.800000],[50.300000,-124.700000],[50.400000,-124.800000],[50.600000,-125.000000],[50.500000,-125.300000],[50.600000,-125.700000],[50.500000,-126.000000],[50.600000,-126.300000],[50.700000,-126.000000],[50.900000,-126.300000],[51.000000,-126.300000],[51.000000,-126.800000],[50.900000,-127.000000],[51.000000,-127.500000],[51.300000,-127.700000],[51.400000,-127.500000],[51.400000,-127.700000],[51.500000,-127.300000],[51.600000,-127.400000],[51.700000,-127.600000],[51.700000,-127.800000],[52.000000,-127.800000],[52.200000,-127.800000],[52.400000,-128.000000],[52.400000,-128.300000],[52.500000,-128.500000],[52.600000,-128.800000],[52.800000,-129.000000],[53.100000,-129.100000],[53.300000,-129.000000],[53.500000,-129.100000],[53.400000,-129.300000],[53.500000,-129.400000],[53.800000,-129.700000],[53.900000,-130.000000],[54.200000,-129.900000],[54.200000,-130.300000],[54.500000,-130.500000],[54.700000,-130.300000],[54.800000,-130.200000],[55.000000,-130.000000],[55.100000,-130.100000],[54.900000,-130.500000],[54.900000,-130.800000],[55.000000,-131.000000],[55.100000,-130.700000],[55.400000,-130.700000],[55.400000,-130.900000],[55.800000,-131.000000],[56.000000,-131.100000],[56.000000,-131.300000],[55.900000,-131.700000],[55.800000,-131.900000],[55.500000,-132.100000],[55.800000,-132.200000],[56.000000,-132.000000],[56.200000,-131.800000],[56.300000,-131.900000],[56.400000,-132.200000],[56.700000,-132.300000],[56.800000,-132.500000],[56.900000,-132.800000],[57.000000,-133.000000],[57.000000,-132.800000],[57.100000,-133.200000],[57.100000,-133.400000],[57.300000,-133.200000],[57.400000,-133.500000],[57.600000,-133.400000],[57.700000,-133.700000],[57.600000,-133.200000],[57.500000,-133.100000],[57.700000,-133.300000],[57.900000,-133.500000],[57.900000,-133.600000],[57.900000,-133.800000],[58.100000,-133.600000],[58.100000,-133.700000],[58.000000,-134.000000],[58.200000,-134.100000],[58.300000,-134.500000],[58.500000,-134.900000],[58.800000,-135.100000],[59.300000,-135.500000],[59.200000,-135.500000],[59.000000,-135.500000],[58.300000,-135.400000],[58.400000,-135.700000],[58.600000,-135.900000],[58.900000,-136.200000],[58.900000,-136.600000],[59.000000,-136.900000],[58.900000,-137.100000],[58.800000,-136.700000],[58.600000,-136.500000],[58.500000,-136.200000],[58.400000,-136.600000],[58.300000,-136.800000],[58.500000,-137.400000],[58.700000,-137.700000],[58.900000,-138.100000],[59.300000,-138.200000],[59.500000,-137.900000],[59.500000,-137.900000],[59.400000,-138.300000],[59.200000,-138.400000],[59.200000,-138.800000],[59.400000,-139.300000],[59.400000,-139.600000],[59.600000,-139.800000],[59.800000,-139.700000],[60.000000,-139.500000],[59.600000,-139.400000],[59.800000,-139.300000],[59.900000,-139.300000],[60.000000,-139.800000],[59.700000,-140.400000],[59.800000,-141.300000],[60.000000,-141.400000],[60.000000,-142.100000],[60.100000,-142.800000],[60.100000,-143.100000],[60.000000,-143.900000],[60.100000,-144.200000],[60.200000,-144.600000],[60.300000,-144.900000],[60.500000,-145.100000],[60.500000,-145.200000],[60.300000,-145.300000],[60.500000,-145.800000],[60.600000,-145.900000],[60.700000,-146.100000],[60.800000,-146.200000],[60.700000,-146.800000],[60.900000,-146.400000],[61.000000,-146.800000],[61.100000,-146.700000],[61.000000,-147.400000],[61.200000,-147.800000],[60.900000,-148.100000],[61.100000,-148.200000],[61.100000,-148.400000],[60.900000,-148.700000],[60.700000,-148.500000],[60.600000,-148.700000],[60.500000,-148.100000],[60.400000,-148.400000],[60.200000,-148.300000],[60.000000,-148.600000],[60.000000,-149.300000],[60.000000,-149.600000],[59.900000,-149.900000],[59.700000,-150.200000],[59.500000,-150.400000],[59.400000,-150.800000],[59.300000,-151.300000],[59.200000,-151.900000],[59.500000,-151.900000],[59.500000,-151.500000],[59.600000,-151.200000],[59.700000,-151.500000],[59.900000,-151.900000],[60.300000,-151.500000],[60.800000,-151.400000],[61.000000,-150.600000],[61.000000,-149.900000],[60.900000,-149.200000],[61.000000,-150.000000],[61.300000,-149.900000],[61.400000,-149.900000],[61.300000,-150.700000],[61.800000,-150.300000],[62.300000,-150.300000],[61.800000,-150.600000],[61.400000,-150.800000],[61.000000,-151.500000],[60.700000,-152.100000],[60.300000,-152.600000],[60.300000,-153.200000],[60.000000,-152.800000],[59.900000,-153.300000],[59.800000,-153.500000],[59.600000,-153.700000],[59.400000,-154.200000],[59.100000,-154.000000],[58.900000,-153.500000],[58.700000,-153.600000],[58.500000,-154.100000],[58.300000,-154.300000],[58.200000,-154.400000],[58.100000,-154.800000],[57.900000,-155.200000],[57.700000,-155.500000],[57.700000,-155.800000],[57.500000,-156.200000],[57.300000,-156.600000],[57.100000,-156.600000],[57.000000,-156.900000],[56.800000,-157.300000],[56.700000,-157.600000],[56.600000,-158.100000],[56.500000,-158.100000],[56.300000,-158.800000],[56.400000,-159.200000],[56.100000,-158.700000],[56.000000,-159.000000],[55.900000,-159.400000],[55.800000,-159.600000],[55.700000,-159.700000],[55.800000,-160.000000],[55.700000,-160.400000],[55.600000,-160.700000],[55.500000,-161.000000],[55.400000,-161.600000],[55.600000,-161.800000],[55.300000,-162.000000],[55.100000,-162.400000],[55.200000,-162.500000],[55.200000,-162.700000],[55.000000,-163.000000],[55.000000,-163.200000],[55.000000,-163.400000],[55.200000,-163.400000],[55.300000,-163.100000],[55.400000,-162.700000],[55.700000,-162.500000],[55.900000,-161.900000],[56.000000,-161.400000],[56.100000,-161.000000],[55.900000,-160.900000],[55.900000,-160.500000],[55.900000,-160.400000],[56.100000,-160.600000],[56.500000,-160.000000],[56.700000,-159.500000],[56.800000,-159.000000],[57.100000,-158.600000],[57.400000,-158.300000],[57.700000,-157.800000],[58.200000,-157.600000],[58.300000,-157.600000],[58.800000,-157.100000],[59.100000,-156.800000],[58.900000,-157.300000],[58.700000,-157.800000],[58.700000,-158.300000],[58.900000,-158.600000],[58.900000,-158.700000],[58.700000,-158.900000],[58.400000,-159.100000],[58.800000,-159.600000],[58.900000,-159.800000],[58.900000,-160.300000],[59.100000,-160.300000],[59.100000,-160.600000],[58.900000,-161.200000],[58.700000,-161.600000],[58.700000,-162.100000],[58.900000,-161.800000],[59.100000,-161.900000],[59.400000,-162.000000],[59.700000,-161.900000],[60.100000,-162.300000],[60.400000,-162.300000],[60.800000,-161.600000],[60.800000,-161.900000],[60.400000,-162.600000],[60.100000,-162.500000],[59.800000,-162.900000],[59.700000,-163.500000],[59.800000,-164.000000],[60.000000,-163.800000],[60.100000,-164.100000],[60.200000,-164.600000],[60.600000,-164.200000],[60.800000,-163.700000],[60.800000,-164.300000],[61.000000,-164.700000],[61.100000,-165.000000],[61.100000,-165.400000],[61.300000,-165.500000],[61.300000,-165.800000],[61.600000,-165.500000],[61.700000,-165.500000],[61.500000,-166.100000],[61.700000,-166.100000],[61.800000,-166.200000],[61.800000,-165.800000],[62.100000,-165.800000],[62.300000,-165.600000],[62.500000,-165.300000],[62.600000,-164.900000],[62.800000,-164.500000],[62.800000,-164.100000],[63.000000,-163.800000]]
if continent=='waf':
return [[7.700000,-12.900000],[8.700000,-13.000000],[9.700000,-13.400000],[10.700000,-13.600000],[12.700000,-13.400000],[14.700000,-13.000000],[16.100000,-12.900000],[17.600000,-12.800000],[19.200000,-12.700000],[19.700000,-13.100000],[20.000000,-13.400000],[20.200000,-13.700000],[20.400000,-13.100000],[20.700000,-14.500000],[20.700000,-15.000000],[21.500000,-15.000000],[22.500000,-15.500000],[23.100000,-15.000000],[23.600000,-14.000000],[24.200000,-13.400000],[25.100000,-12.000000],[26.000000,-11.500000],[26.600000,-10.700000],[27.500000,-10.000000],[28.000000,-9.000000],[28.500000,-8.000000],[29.000000,-7.000000],[29.200000,-5.300000],[29.400000,-4.900000],[29.900000,-4.000000],[28.600000,-3.000000],[28.400000,-2.000000],[27.900000,-1.000000],[27.400000,0.000000],[26.900000,1.000000],[26.400000,2.000000],[26.000000,3.000000],[24.800000,3.800000],[23.800000,3.900000],[23.500000,3.500000],[23.100000,3.200000],[22.700000,3.000000],[22.700000,3.000000],[22.300000,2.500000],[21.700000,2.100000],[20.800000,1.700000],[20.000000,1.200000],[19.800000,0.600000],[19.400000,0.100000],[18.900000,0.000000],[18.400000,-0.100000],[17.900000,-0.200000],[17.400000,-0.300000],[16.900000,0.000000],[16.400000,0.300000],[15.900000,0.600000],[15.500000,1.200000],[15.100000,2.200000],[14.700000,3.000000],[14.100000,3.600000],[13.500000,4.300000],[13.000000,4.000000],[12.100000,3.500000],[11.500000,3.000000],[10.700000,2.600000],[10.000000,2.200000],[9.500000,1.800000],[9.300000,1.400000],[6.100000,1.200000],[5.500000,-1.500000],[6.100000,-4.400000],[5.300000,-7.000000],[6.400000,-10.500000],[7.700000,-12.600000]]
if continent=='plates':
return [[39.386600,330.094000],[39.313400,330.665000],[39.257100,330.703000],[39.251800,330.739000],[39.277300,330.815000],[39.292100,330.853000],[39.322900,330.912000],[39.336500,330.949000],[39.365400,331.017000],[39.380200,331.048000],[39.413300,331.106000],[39.372500,331.147000],[39.301000,331.218000],[39.264200,331.256000],[39.215700,331.312000],[39.180100,331.336000],[39.119600,331.380000],[39.128500,331.432000],[39.157000,331.515000],[39.132700,331.550000],[39.091100,331.579000],[39.056700,331.604000],[39.019300,331.634000],[38.993700,331.656000],[38.938400,331.710000],[38.952100,331.787000],[38.967500,331.878000],[38.983000,331.940000],[39.005600,332.045000],[39.001400,332.206000],[38.942000,332.279000],[38.913400,332.323000],[38.865200,332.394000],[38.834200,332.439000],[38.783000,332.513000],[38.777600,332.760000],[38.701800,332.798000],[38.666000,332.827000],[38.609200,332.873000],[38.569200,332.911000],[38.492000,332.969000],[38.464500,332.994000],[38.399100,333.057000],[38.359000,333.098000],[38.279800,333.171000],[38.420100,333.283000],[38.357200,333.352000],[38.322400,333.385000],[38.255700,333.465000],[38.222100,333.504000],[38.148100,333.584000],[38.118000,333.620000],[38.047000,333.697000],[38.037400,333.828000],[37.965600,333.923000],[37.935500,333.957000],[37.840100,334.082000],[37.878700,334.190000],[37.815300,334.264000],[37.788700,334.300000],[37.723400,334.366000],[37.818300,334.462000],[37.750600,334.538000],[37.718000,334.572000],[37.662300,334.646000],[37.768800,334.732000],[37.648300,334.900000],[37.643500,335.016000],[37.607700,335.067000],[37.584700,335.110000],[37.552000,335.156000],[37.533800,335.185000],[37.498600,335.224000],[37.467600,335.266000],[37.410500,335.336000],[37.353400,335.299000],[37.273100,335.263000],[37.217100,335.252000],[37.128100,335.321000],[37.096300,335.368000],[37.017000,335.446000],[36.972400,335.501000],[36.908800,335.568000],[36.865300,335.616000],[36.790600,335.687000],[36.781400,335.745000],[36.787600,335.852000],[36.792500,335.918000],[36.799800,336.018000],[36.809000,336.081000],[36.821300,336.191000],[36.830400,336.258000],[36.844500,336.344000],[36.856800,336.443000],[36.868400,336.554000],[36.870800,336.642000],[36.883700,336.746000],[36.888000,336.836000],[36.894700,336.947000],[36.991300,337.081000],[37.038600,337.864000],[37.058800,338.394000],[37.173400,339.194000],[37.234000,339.657000],[37.308000,340.153000],[37.442300,340.700000],[37.529500,341.045000],[37.609900,341.567000],[37.716900,342.198000],[37.710200,342.602000],[37.696900,343.006000],[37.636600,343.536000],[37.569700,344.100000],[37.415400,344.622000],[37.240700,345.119000],[37.556300,345.918000],[37.085800,346.793000],[36.612300,347.543000],[36.360800,347.980000],[37.294500,349.697000],[36.747900,350.236000],[36.374500,350.598000],[36.012900,350.909000],[35.732000,351.136000],[35.353700,351.406000],[34.980500,351.717000],[35.181200,352.289000],[35.464000,352.962000],[35.711500,353.518000],[36.088100,354.570000],[36.265500,355.151000],[35.738900,355.714000],[36.340400,357.162000],[36.088100,357.423000],[36.673300,359.039000],[36.673300,359.039000],[37.254400,2.961400],[37.317400,5.561200],[37.662900,8.187300],[37.884400,10.895600],[39.201000,12.318900],[37.184900,16.279000],[39.133900,18.182200],[34.123400,25.377400],[34.774100,26.902700],[34.110000,33.985300],[34.056900,33.894500],[32.649700,32.271400],[30.375200,32.232100],[27.013200,34.413300],[24.588500,35.864700],[24.397500,36.065100],[24.006300,36.411500],[23.772600,36.603000],[23.547100,36.885300],[23.538700,36.894400],[23.446700,37.003700],[23.228900,37.222400],[23.035900,37.404700],[22.766800,37.623500],[22.505500,37.769600],[22.209700,37.870300],[21.947100,37.943700],[21.548000,37.999200],[21.207500,38.090900],[20.840600,38.173600],[20.541300,38.256200],[20.052600,38.393700],[19.777800,38.576200],[19.519900,38.822200],[19.209800,39.077500],[18.890700,39.405500],[18.570700,39.660800],[18.310700,39.834100],[17.876500,40.053300],[17.589300,40.217600],[17.109700,40.518700],[16.672700,40.847000],[16.261300,41.238800],[15.901500,41.548700],[15.356000,41.904500],[14.861800,42.114700],[14.384100,42.252200],[13.985200,42.407700],[13.426000,42.781700],[13.061400,43.055200],[12.740800,43.246800],[12.437700,43.492900],[12.010000,43.650000],[12.010000,43.650000],[12.010000,44.050000],[12.010000,44.510000],[12.020000,44.780000],[12.020000,44.880000],[12.010000,44.910000],[12.000000,45.100000],[12.000000,45.280000],[12.050000,45.330000],[12.020000,45.430000],[11.980000,45.520000],[12.070000,45.600000],[12.160000,45.640000],[12.150000,45.650000],[12.100000,45.850000],[12.060000,46.110000],[12.110000,46.150000],[12.170000,46.200000],[12.140000,46.310000],[12.090000,46.430000],[12.200000,46.510000],[12.290000,46.580000],[12.250000,46.720000],[12.210000,46.850000],[12.300000,46.930000],[12.400000,46.990000],[12.390000,47.050000],[12.360000,47.130000],[12.460000,47.160000],[12.430000,47.320000],[12.370000,47.540000],[12.440000,47.590000],[12.520000,47.650000],[12.490000,47.790000],[12.460000,47.900000],[12.580000,47.990000],[12.670000,48.050000],[12.640000,48.140000],[12.600000,48.270000],[12.570000,48.350000],[12.730000,48.450000],[12.690000,48.570000],[12.660000,48.700000],[12.770000,48.800000],[12.910000,48.880000],[12.850000,49.070000],[12.800000,49.280000],[12.900000,49.350000],[13.040000,49.430000],[13.010000,49.470000],[13.170000,49.590000],[13.310000,49.680000],[13.250000,49.850000],[13.170000,50.060000],[13.120000,50.170000],[13.230000,50.250000],[13.310000,50.310000],[13.270000,50.430000],[13.220000,50.570000],[13.360000,50.660000],[13.280000,50.840000],[13.190000,51.080000],[13.120000,51.250000],[13.270000,51.340000],[13.460000,51.450000],[13.670000,51.570000],[14.030000,51.760000],[14.350000,51.940000],[14.690000,52.140000],[14.660000,52.300000],[14.600000,52.550000],[14.560000,52.670000],[14.680000,52.740000],[14.620000,52.910000],[14.560000,53.120000],[14.540000,53.210000],[14.560000,53.220000],[14.510000,53.360000],[14.440000,53.580000],[14.360000,53.820000],[14.350000,53.860000],[14.490000,53.930000],[14.660000,54.020000],[14.770000,54.070000],[14.730000,54.150000],[14.710000,54.190000],[14.690000,54.250000],[14.680000,54.290000],[14.670000,54.330000],[14.640000,54.390000],[14.620000,54.450000],[14.760000,54.510000],[14.870000,54.550000],[14.800000,54.730000],[14.730000,54.960000],[14.710000,55.050000],[14.850000,55.110000],[14.790000,55.280000],[14.730000,55.480000],[14.680000,55.630000],[14.720000,55.670000],[14.690000,55.820000],[14.640000,56.060000],[14.620000,56.180000],[14.640000,56.210000],[14.530000,56.410000],[14.420000,56.600000],[14.300000,56.820000],[14.210000,56.760000],[14.140000,56.900000],[14.070000,57.040000],[13.940000,56.970000],[13.850000,57.140000],[13.770000,57.300000],[13.740000,57.300000],[13.640000,57.480000],[13.520000,57.690000],[13.450000,57.810000],[13.310000,57.730000],[13.140000,57.640000],[13.000000,57.870000],[12.830000,58.130000],[12.830000,58.130000],[9.970000,56.920000],[9.860000,56.980000],[9.860000,57.030000],[9.680000,57.260000],[9.940000,57.490000],[9.530000,58.060000],[9.450000,58.020000],[9.290000,58.260000],[9.090000,58.150000],[8.860000,58.430000],[8.650000,58.250000],[8.400000,58.610000],[8.170000,58.920000],[8.100000,58.880000],[7.770000,59.310000],[7.670000,59.220000],[6.950000,60.180000],[6.770000,60.040000],[6.310000,60.670000],[5.910000,61.140000],[5.490000,61.660000],[5.260000,61.530000],[4.910000,62.000000],[4.520000,62.460000],[4.110000,63.000000],[3.890000,62.870000],[3.630000,63.330000],[3.700000,63.390000],[3.480000,63.820000],[3.600000,63.890000],[3.220000,64.620000],[3.300000,64.680000],[2.920000,65.210000],[3.300000,65.490000],[2.970000,65.960000],[2.750000,66.380000],[2.390000,66.180000],[2.050000,65.990000],[1.860000,66.330000],[1.620000,66.670000],[1.330000,66.490000],[1.070000,66.870000],[0.720000,66.660000],[0.340000,67.160000],[-0.040000,66.840000],[-0.340000,67.210000],[-0.580000,67.020000],[-1.040000,67.660000],[-1.440000,67.370000],[-1.910000,67.930000],[-2.090000,67.790000],[-2.540000,68.250000],[-2.890000,67.890000],[-3.350000,68.270000],[-3.770000,68.670000],[-4.120000,68.350000],[-4.550000,68.750000],[-5.040000,68.200000],[-5.470000,68.610000],[-5.890000,68.220000],[-6.260000,67.780000],[-6.820000,68.290000],[-6.820000,68.290000],[-7.250000,67.810000],[-7.650000,68.070000],[-8.030000,67.640000],[-8.490000,68.040000],[-9.270000,67.090000],[-9.630000,67.380000],[-10.350000,66.460000],[-10.760000,66.790000],[-11.210000,66.170000],[-11.560000,66.420000],[-12.020000,65.700000],[-12.830000,66.370000],[-13.270000,65.820000],[-13.780000,66.210000],[-13.980000,65.930000],[-14.700000,66.490000],[-15.270000,66.890000],[-15.820000,67.290000],[-15.940000,67.380000],[-16.140000,67.030000],[-16.660000,67.410000],[-17.090000,66.710000],[-17.450000,66.140000],[-17.780000,65.540000],[-18.060000,65.010000],[-18.830000,65.520000],[-19.580000,66.030000],[-20.080000,66.430000],[-19.870000,66.750000],[-20.220000,67.040000],[-20.070000,67.310000],[-20.370000,67.590000],[-20.280000,67.770000],[-20.470000,67.900000],[-20.290000,68.210000],[-20.710000,68.560000],[-20.880000,68.280000],[-21.450000,68.650000],[-22.090000,69.200000],[-22.390000,68.800000],[-22.830000,69.160000],[-23.370000,69.560000],[-23.710000,69.850000],[-24.040000,69.400000],[-24.370000,69.680000],[-24.680000,69.940000],[-24.970000,69.590000],[-25.480000,70.090000],[-25.644900,69.962000],[-25.644900,69.962000],[-25.670000,69.490000],[-25.780000,69.460000],[-25.790000,69.140000],[-25.990000,69.150000],[-26.010000,68.830000],[-26.140000,68.820000],[-26.120000,68.600000],[-26.260000,68.620000],[-26.290000,67.980000],[-26.580000,67.960000],[-26.570000,67.430000],[-26.870000,67.420000],[-26.870000,67.150000],[-27.270000,67.130000],[-27.280000,66.370000],[-27.520000,66.360000],[-27.510000,65.350000],[-27.810000,65.330000],[-27.820000,64.470000],[-27.830000,63.610000],[-28.040000,63.620000],[-28.020000,63.190000],[-28.160000,63.210000],[-28.150000,62.700000],[-28.460000,62.740000],[-28.490000,62.130000],[-28.810000,62.160000],[-28.780000,61.520000],[-28.920000,61.530000],[-28.930000,60.810000],[-30.000000,60.760000],[-30.010000,60.750000],[-30.530000,60.760000],[-30.560000,60.010000],[-30.570000,59.190000],[-31.050000,59.170000],[-31.050000,58.530000],[-31.690000,58.460000],[-31.720000,57.800000],[-31.770000,57.150000],[-32.830000,57.090000],[-33.560000,57.060000],[-33.620000,56.400000],[-33.650000,55.740000],[-34.230000,55.700000],[-34.290000,55.300000],[-34.560000,55.280000],[-34.540000,54.260000],[-35.300000,54.220000],[-35.510000,53.470000],[-36.140000,53.460000],[-36.160000,52.340000],[-37.430000,52.280000],[-37.450000,50.830000],[-37.580000,50.830000],[-37.600000,49.960000],[-37.790000,49.950000],[-37.790000,49.030000],[-38.000000,49.030000],[-38.010000,48.630000],[-38.480000,48.020000],[-38.650000,48.020000],[-38.870000,46.240000],[-40.120000,46.070000],[-40.110000,45.330000],[-40.370000,45.300000],[-40.370000,44.720000],[-40.690000,44.680000],[-40.670000,44.030000],[-40.910000,44.010000],[-40.850000,42.880000],[-42.730000,42.470000],[-42.660000,41.810000],[-43.580000,41.560000],[-43.290000,39.460000],[-44.160000,39.070000],[-44.050000,38.340000],[-44.400000,38.190000],[-44.790000,36.590000],[-44.940000,36.510000],[-44.720000,35.570000],[-46.190000,34.890000],[-46.000000,34.060000],[-47.140000,33.490000],[-46.940000,32.660000],[-48.210000,31.890000],[-49.170000,31.210000],[-49.040000,30.770000],[-50.970000,29.520000],[-50.870000,29.140000],[-52.940000,27.820000],[-52.380000,26.000000],[-53.470000,25.240000],[-53.420000,24.680000],[-53.310000,23.880000],[-53.200000,23.030000],[-53.100000,23.080000],[-53.050000,22.510000],[-52.910000,21.260000],[-52.820000,19.990000],[-52.820000,19.990000],[-52.550000,18.710000],[-52.730000,18.540000],[-52.470000,17.810000],[-52.170000,16.900000],[-51.790000,15.820000],[-52.080000,15.430000],[-52.310000,15.110000],[-52.000000,14.460000],[-52.480000,13.790000],[-52.140000,13.210000],[-51.960000,12.900000],[-52.380000,12.300000],[-52.780000,11.710000],[-53.330000,10.980000],[-53.070000,10.540000],[-52.790000,10.000000],[-53.230000,9.420000],[-53.670000,8.800000],[-54.400000,7.770000],[-54.100000,7.230000],[-53.810000,6.630000],[-54.110000,6.180000],[-54.540000,5.500000],[-54.310000,5.090000],[-54.160000,4.830000],[-54.430000,4.410000],[-54.130000,3.950000],[-53.830000,3.370000],[-53.650000,3.020000],[-54.040000,2.360000],[-54.400000,1.700000],[-54.830000,0.960000],[-54.450000,0.450000],[-54.680000,359.960000],[-54.860000,359.530000],[-54.844400,359.580000],[-54.844400,359.580000],[-54.055900,358.613000],[-54.329600,357.633000],[-51.981900,356.047000],[-52.047800,355.753000],[-50.214900,354.820000],[-50.606900,352.840000],[-50.000600,352.573000],[-50.060700,352.353000],[-49.268800,352.040000],[-49.286200,351.973000],[-48.962400,351.860000],[-49.216400,350.293000],[-47.125300,349.507000],[-47.578300,346.673000],[-45.793800,346.193000],[-45.901000,345.280000],[-45.367800,345.100000],[-45.471100,344.407000],[-43.689600,343.753000],[-43.384100,343.673000],[-40.268600,343.087000],[-40.207200,343.513000],[-39.817600,343.400000],[-39.791900,343.560000],[-39.508500,343.460000],[-39.503300,343.500000],[-38.431200,343.167000],[-38.499400,342.753000],[-35.647400,342.100000],[-35.183500,344.900000],[-34.236600,344.720000],[-34.048100,345.487000],[-33.469000,345.293000],[-33.396300,345.633000],[-32.400800,345.473000],[-32.140300,346.753000],[-31.176600,346.500000],[-31.153700,346.627000],[-29.825800,346.280000],[-29.854800,346.180000],[-29.248600,346.013000],[-28.938300,347.467000],[-28.214400,347.260000],[-28.320600,346.727000],[-26.566100,346.313000],[-26.584100,346.187000],[-25.741800,345.953000],[-25.651200,346.333000],[-24.887400,346.187000],[-24.771800,346.720000],[-23.517700,346.433000],[-23.548400,346.333000],[-22.833500,346.173000],[-22.629400,347.147000],[-22.381700,347.087000],[-22.152100,348.180000],[-21.754000,348.060000],[-21.735300,348.153000],[-21.211200,347.993000],[-21.173700,348.233000],[-20.301900,348.027000],[-20.283000,348.147000],[-19.829500,348.053000],[-19.930400,347.740000],[-18.747000,347.520000],[-18.785100,347.240000],[-17.791600,347.040000],[-17.995900,345.920000],[-16.779600,345.633000],[-16.766800,345.760000],[-16.432500,345.700000],[-16.207200,346.760000],[-15.691200,346.613000],[-15.658900,346.773000],[-14.037700,346.353000],[-14.206900,345.527000],[-13.268400,345.400000],[-13.216200,345.593000],[-12.581800,345.447000],[-12.653800,345.213000],[-12.319200,345.133000],[-12.339400,345.093000],[-11.886200,345.000000],[-11.426200,346.967000],[-9.823700,346.687000],[-9.797300,346.833000],[-9.274500,346.747000],[-9.221500,346.980000],[-8.372700,346.807000],[-8.412500,346.640000],[-7.362300,346.380000],[-6.756200,348.820000],[-6.022100,348.735000],[-6.022100,348.735000],[-5.932200,348.975000],[-5.380500,348.837000],[-5.416500,348.484000],[-4.942300,348.394000],[-5.026300,347.987000],[-4.611900,347.855000],[-4.581900,347.963000],[-4.107100,347.903000],[-3.968800,348.232000],[-3.018300,347.969000],[-3.065900,347.907000],[-2.855800,348.166000],[-1.940400,347.837000],[-2.097100,347.298000],[-0.910100,346.843000],[-1.494600,344.592000],[-1.072800,344.437000],[-1.145100,344.155000],[-0.518300,343.957000],[-0.554500,343.748000],[0.301400,343.497000],[0.301400,343.497000],[0.272000,343.245000],[0.035800,342.113000],[-0.179000,341.154000],[-0.329300,340.324000],[-0.494000,339.507000],[-0.680100,338.455000],[-0.801800,337.617000],[-0.966500,336.508000],[-1.102500,335.384000],[0.615700,334.969000],[0.501100,333.709000],[1.159700,333.529000],[1.059500,332.685000],[0.952100,331.654000],[0.851900,330.795000],[0.794600,330.086000],[1.610600,329.971000],[1.639200,329.263000],[4.063000,329.034000],[3.955900,327.136000],[5.646000,327.027000],[5.646000,327.027000],[5.652500,326.493000],[6.076400,326.486000],[6.111700,326.394000],[6.791900,326.379000],[6.787800,324.651000],[7.099700,324.640000],[7.117300,323.963000],[7.415500,323.948000],[7.441200,323.160000],[7.693100,323.141000],[7.740500,321.799000],[8.145100,321.792000],[8.218100,319.903000],[8.858500,319.874000],[8.897600,319.355000],[9.434400,319.361000],[9.454600,319.127000],[10.125100,319.134000],[10.138500,318.933000],[10.810200,318.919000],[10.936300,316.096000],[12.145000,316.123000],[12.173100,315.724000],[12.633400,315.748000],[12.682900,314.966000],[13.996600,314.940000],[14.022000,314.855000],[15.264800,314.875000],[15.264800,314.875000],[15.441300,313.249000],[16.589500,313.471000],[16.604900,313.413000],[17.568500,313.594000],[17.588200,313.477000],[18.420000,313.610000],[18.420000,313.681000],[18.936600,313.772000],[18.930100,313.816000],[19.824500,314.001000],[19.800700,314.058000],[20.621200,314.228000],[20.593200,314.440000],[21.223000,314.580000],[21.248700,314.486000],[21.824400,314.612000],[21.805200,314.754000],[22.675400,315.016000],[22.675400,315.016000],[22.701900,315.019000],[22.712500,315.018000],[22.762300,315.027000],[22.812800,315.035000],[22.858400,315.043000],[22.868700,315.044000],[22.927100,315.055000],[22.941500,315.058000],[22.954200,315.060000],[22.973700,315.062000],[23.018500,315.068000],[23.075100,315.078000],[23.124200,315.084000],[23.139600,315.084000],[23.196700,315.091000],[23.233200,315.098000],[23.247700,315.047000],[23.247700,315.047000],[23.256900,315.050000],[23.282400,315.059000],[23.295500,315.063000],[23.356100,315.079000],[23.430300,315.108000],[23.447000,315.114000],[23.462100,315.116000],[23.474100,315.119000],[23.524900,315.129000],[23.576200,315.135000],[23.584600,315.135000],[23.596700,315.132000],[23.606100,315.129000],[23.613600,315.126000],[23.625800,315.121000],[23.631000,315.118000],[23.635100,315.114000],[23.636100,315.111000],[23.635000,315.107000],[23.627800,315.100000],[23.623200,315.092000],[23.624100,315.038000],[23.628200,315.029000],[23.634800,315.018000],[23.639700,315.001000],[23.643100,314.945000],[23.645800,314.882000],[23.644500,314.868000],[23.646700,314.817000],[23.647400,314.803000],[23.649900,314.788000],[23.667700,314.729000],[23.681700,314.674000],[23.685700,314.649000],[23.686600,315.021000],[23.686600,315.021000],[23.686600,315.017000],[23.686800,315.011000],[23.688600,315.000000],[23.691100,314.984000],[23.692900,314.973000],[23.695400,314.960000],[23.700100,314.901000],[23.704300,314.844000],[23.707400,314.827000],[23.721500,314.761000],[23.733200,314.710000],[23.733700,314.696000],[23.736100,314.634000],[23.740300,314.587000],[23.743400,314.575000],[23.747200,314.562000],[23.751000,314.543000],[23.761100,314.478000],[23.761300,314.474000],[23.763600,314.456000],[23.763500,314.437000],[23.762000,314.421000],[23.762400,314.407000],[23.762900,314.391000],[23.770700,314.331000],[23.770300,314.279000],[23.765200,314.265000],[23.761100,314.253000],[23.757700,314.237000],[23.755600,314.223000],[23.755900,314.211000],[23.756600,314.197000],[23.758400,314.183000],[23.759100,314.173000],[23.758600,314.160000],[23.754600,314.108000],[23.761100,314.039000],[23.754900,314.028000],[23.747700,314.017000],[23.741300,314.000000],[23.735900,313.987000],[23.738300,313.928000],[23.741100,313.916000],[23.744100,313.902000],[23.747200,313.894000],[23.756000,313.827000],[23.757300,313.821000],[23.774000,313.773000],[23.777400,313.769000],[23.779100,313.763000],[23.781200,313.756000],[23.783200,313.752000],[23.789600,313.747000],[23.795700,313.743000],[23.803100,313.741000],[23.814400,313.736000],[23.822500,313.733000],[23.835300,313.726000],[23.840700,313.717000],[23.843200,313.701000],[23.842400,313.691000],[23.843100,313.684000],[23.844600,313.669000],[23.851300,313.670000],[23.903000,313.676000],[23.959900,313.680000],[24.027600,313.685000],[24.082300,313.693000],[24.138700,313.699000],[24.158600,313.702000],[24.217300,313.714000],[24.278000,313.727000],[24.297100,313.733000],[24.347600,313.755000],[24.364500,313.766000],[24.382300,313.776000],[24.424200,313.807000],[24.443500,313.819000],[24.451200,313.826000],[24.460900,313.833000],[24.509500,313.849000],[24.563500,313.877000],[24.599700,313.913000],[24.632400,313.966000],[24.666600,314.030000],[24.696900,314.062000],[24.713500,314.080000],[24.746100,314.116000],[24.778700,314.163000],[24.820200,314.222000],[24.861000,314.290000],[24.868200,314.308000],[24.879000,314.378000],[24.894600,314.453000],[24.900200,314.464000],[24.933100,314.505000],[24.984100,314.521000],[25.026900,314.526000],[25.072300,314.533000],[25.124800,314.546000],[25.181000,314.558000],[25.236300,314.575000],[25.277800,314.612000],[25.281100,314.620000],[25.287700,314.629000],[25.327300,314.662000],[25.385500,314.674000],[25.402900,314.680000],[25.419100,314.684000],[25.430700,314.689000],[25.453200,314.695000],[25.502000,314.689000],[25.511600,314.685000],[25.518400,314.683000],[25.521700,314.683000],[25.564700,314.709000],[25.570200,314.716000],[25.621300,314.750000],[25.673300,314.774000],[25.673600,314.774000],[25.652300,314.859000],[25.652300,314.859000],[25.663900,314.864000],[25.677600,314.871000],[25.737100,314.891000],[25.757800,314.895000],[25.776500,314.900000],[25.796600,314.902000],[25.816800,314.907000],[25.876300,314.926000],[25.925500,314.957000],[25.981600,314.982000],[25.981600,314.982000],[26.026500,315.007000],[26.003800,315.096000],[26.278600,315.207000],[26.256800,315.309000],[26.686800,315.422000],[26.680300,315.458000],[27.152200,315.580000],[27.123900,315.702000],[27.734700,315.908000],[27.725100,315.946000],[28.183100,316.104000],[28.164000,316.181000],[28.683600,316.391000],[28.657200,316.483000],[28.877900,316.576000],[28.842300,316.705000],[29.403400,316.930000],[29.363900,317.083000],[29.801900,317.250000],[29.812800,317.213000],[30.136100,317.331000],[30.013600,318.002000],[30.513200,318.102000],[30.508300,318.147000],[30.721700,318.193000],[30.721700,318.193000],[31.236400,318.572000],[31.197100,318.819000],[31.814500,319.292000],[31.800800,319.450000],[33.082900,320.301000],[33.065600,320.415000],[33.765700,320.598000],[33.501700,322.199000],[33.735200,322.321000],[33.704600,322.469000],[34.139400,322.664000],[34.124100,322.755000],[34.566200,322.952000],[34.556800,323.139000],[34.711800,323.213000],[34.691000,323.375000],[35.280300,323.627000],[35.009700,325.253000],[35.626500,325.541000],[35.615300,325.665000],[36.077200,325.859000],[36.071600,325.946000],[36.220000,326.015000],[36.184800,326.228000],[36.741000,326.406000],[36.693100,326.683000],[36.943200,326.776000],[36.917500,326.996000],[37.064300,327.053000],[37.034900,327.293000],[37.176000,327.355000],[37.139400,327.609000],[37.411800,327.703000],[37.375000,327.730000],[37.283700,328.485000],[37.704800,328.632000],[37.679300,328.927000],[38.399600,329.394000],[38.387000,329.572000],[39.386600,330.094000],[100.000000,1000.000000],[-60.576100,333.300000],[-60.810000,340.420000],[-60.290000,340.630000],[-60.250000,341.350000],[-59.940000,341.450000],[-59.540000,341.570000],[-59.510000,341.880000],[-59.150000,341.940000],[-59.130000,342.330000],[-59.100000,343.080000],[-59.100000,343.590000],[-58.770000,343.780000],[-58.460000,344.000000],[-58.440000,344.030000],[-58.390000,344.930000],[-58.320000,346.050000],[-58.240000,347.350000],[-58.160000,348.810000],[-58.090000,350.110000],[-57.990000,351.390000],[-57.920000,352.470000],[-57.870000,352.990000],[-57.620000,352.990000],[-57.320000,353.000000],[-57.270000,353.460000],[-57.240000,353.870000],[-56.980000,353.900000],[-56.670000,353.940000],[-56.630000,354.550000],[-56.590000,355.300000],[-56.210000,355.320000],[-55.810000,355.310000],[-55.770000,355.950000],[-55.740000,356.280000],[-55.710000,357.100000],[-55.660000,357.920000],[-55.650000,358.390000],[-55.130000,358.390000],[-55.020000,358.960000],[-54.870000,359.560000],[-54.870000,359.560000],[-54.844400,359.580000],[-54.860000,359.530000],[-54.680000,359.960000],[-54.450000,0.450000],[-54.830000,0.960000],[-54.400000,1.700000],[-54.040000,2.360000],[-53.650000,3.020000],[-53.830000,3.370000],[-54.130000,3.950000],[-54.430000,4.410000],[-54.160000,4.830000],[-54.310000,5.090000],[-54.540000,5.500000],[-54.110000,6.180000],[-53.810000,6.630000],[-54.100000,7.230000],[-54.400000,7.770000],[-53.670000,8.800000],[-53.230000,9.420000],[-52.790000,10.000000],[-53.070000,10.540000],[-53.330000,10.980000],[-52.780000,11.710000],[-52.380000,12.300000],[-51.960000,12.900000],[-52.140000,13.210000],[-52.480000,13.790000],[-52.000000,14.460000],[-52.310000,15.110000],[-52.080000,15.430000],[-51.790000,15.820000],[-52.170000,16.900000],[-52.470000,17.810000],[-52.730000,18.540000],[-52.550000,18.710000],[-52.820000,19.990000],[-52.820000,19.990000],[-52.910000,21.260000],[-53.050000,22.510000],[-53.100000,23.080000],[-53.200000,23.030000],[-53.310000,23.880000],[-53.420000,24.680000],[-53.470000,25.240000],[-52.380000,26.000000],[-52.940000,27.820000],[-50.870000,29.140000],[-50.970000,29.520000],[-49.040000,30.770000],[-49.170000,31.210000],[-48.210000,31.890000],[-46.940000,32.660000],[-47.140000,33.490000],[-46.000000,34.060000],[-46.190000,34.890000],[-44.720000,35.570000],[-44.940000,36.510000],[-44.790000,36.590000],[-44.400000,38.190000],[-44.050000,38.340000],[-44.160000,39.070000],[-43.290000,39.460000],[-43.580000,41.560000],[-42.660000,41.810000],[-42.730000,42.470000],[-40.850000,42.880000],[-40.910000,44.010000],[-40.670000,44.030000],[-40.690000,44.680000],[-40.370000,44.720000],[-40.370000,45.300000],[-40.110000,45.330000],[-40.120000,46.070000],[-38.870000,46.240000],[-38.650000,48.020000],[-38.480000,48.020000],[-38.010000,48.630000],[-38.000000,49.030000],[-37.790000,49.030000],[-37.790000,49.950000],[-37.600000,49.960000],[-37.580000,50.830000],[-37.450000,50.830000],[-37.430000,52.280000],[-36.160000,52.340000],[-36.140000,53.460000],[-35.510000,53.470000],[-35.300000,54.220000],[-34.540000,54.260000],[-34.560000,55.280000],[-34.290000,55.300000],[-34.230000,55.700000],[-33.650000,55.740000],[-33.620000,56.400000],[-33.560000,57.060000],[-32.830000,57.090000],[-31.770000,57.150000],[-31.720000,57.800000],[-31.690000,58.460000],[-31.050000,58.530000],[-31.050000,59.170000],[-30.570000,59.190000],[-30.560000,60.010000],[-30.530000,60.760000],[-30.010000,60.750000],[-30.000000,60.760000],[-28.930000,60.810000],[-28.920000,61.530000],[-28.780000,61.520000],[-28.810000,62.160000],[-28.490000,62.130000],[-28.460000,62.740000],[-28.150000,62.700000],[-28.160000,63.210000],[-28.020000,63.190000],[-28.040000,63.620000],[-27.830000,63.610000],[-27.820000,64.470000],[-27.810000,65.330000],[-27.510000,65.350000],[-27.520000,66.360000],[-27.280000,66.370000],[-27.270000,67.130000],[-26.870000,67.150000],[-26.870000,67.420000],[-26.570000,67.430000],[-26.580000,67.960000],[-26.290000,67.980000],[-26.260000,68.620000],[-26.120000,68.600000],[-26.140000,68.820000],[-26.010000,68.830000],[-25.990000,69.150000],[-25.790000,69.140000],[-25.780000,69.460000],[-25.670000,69.490000],[-25.644900,69.962000],[-6.820000,68.290000],[-7.250000,67.810000],[-7.650000,68.070000],[-8.030000,67.640000],[-8.490000,68.040000],[-9.270000,67.090000],[-9.630000,67.380000],[-10.350000,66.460000],[-10.760000,66.790000],[-11.210000,66.170000],[-11.560000,66.420000],[-12.020000,65.700000],[-12.830000,66.370000],[-13.270000,65.820000],[-13.780000,66.210000],[-13.980000,65.930000],[-14.700000,66.490000],[-15.270000,66.890000],[-15.820000,67.290000],[-15.940000,67.380000],[-16.140000,67.030000],[-16.660000,67.410000],[-17.090000,66.710000],[-17.450000,66.140000],[-17.780000,65.540000],[-18.060000,65.010000],[-18.830000,65.520000],[-19.580000,66.030000],[-20.080000,66.430000],[-19.870000,66.750000],[-20.220000,67.040000],[-20.070000,67.310000],[-20.370000,67.590000],[-20.280000,67.770000],[-20.470000,67.900000],[-20.290000,68.210000],[-20.710000,68.560000],[-20.880000,68.280000],[-21.450000,68.650000],[-22.090000,69.200000],[-22.390000,68.800000],[-22.830000,69.160000],[-23.370000,69.560000],[-23.710000,69.850000],[-24.040000,69.400000],[-24.370000,69.680000],[-24.680000,69.940000],[-24.970000,69.590000],[-25.480000,70.090000],[-25.644900,69.962000],[-25.644900,69.962000],[-26.060100,70.405900],[-25.913700,70.669800],[-26.190100,70.990800],[-26.087200,71.134700],[-26.455000,71.575600],[-26.379300,71.716600],[-26.654600,72.061500],[-26.719200,72.001500],[-27.575200,72.925300],[-27.441400,73.123200],[-27.658000,73.399100],[-27.569800,73.540100],[-28.315600,74.400900],[-28.543600,74.188000],[-29.266800,74.988800],[-29.327200,74.937800],[-29.841100,75.549600],[-30.010900,75.366700],[-30.115200,75.510600],[-30.240300,75.390700],[-30.902100,76.200400],[-30.974500,76.146500],[-31.466800,76.686300],[-31.715900,76.395400],[-33.193300,78.090000],[-33.841400,77.349200],[-34.809400,78.491900],[-34.841500,78.440900],[-35.162400,78.800800],[-35.685300,78.201000],[-36.510400,79.181700],[-37.482300,78.015000],[-38.001600,78.707800],[-38.396800,78.183000],[-38.663000,78.527900],[-39.003200,78.069000],[-39.260200,78.380900],[-39.541700,77.997000],[-39.905300,78.425900],[-40.329000,77.826000],[-40.868600,78.482900],[-40.866200,78.658400],[-41.894400,79.987700],[-41.126200,80.931200],[-42.895700,83.439900],[-40.833700,85.862800],[-42.001100,88.064100],[-41.685800,88.485800],[-44.620200,95.032700],[-44.808800,94.925500],[-45.471400,96.690800],[-46.522500,95.840300],[-47.972700,99.621200],[-47.262300,100.200100],[-49.102400,106.546900],[-48.838800,106.697000],[-49.182100,108.283600],[-49.257000,108.247900],[-50.027400,111.600000],[-50.549100,114.214300],[-49.801400,114.578600],[-50.133200,116.421400],[-49.159200,116.750000],[-49.532500,118.642900],[-49.796800,118.542900],[-50.068800,120.192900],[-48.900800,120.678600],[-49.056000,121.757100],[-49.520000,121.380000],[-49.580000,121.480000],[-49.700000,121.880000],[-49.790000,122.300000],[-49.810000,122.560000],[-49.730000,122.800000],[-49.630000,122.930000],[-49.480000,122.980000],[-49.480000,123.210000],[-49.490000,123.380000],[-49.320000,123.440000],[-49.120000,123.520000],[-49.120000,123.770000],[-48.860000,123.910000],[-48.850000,124.210000],[-48.860000,124.600000],[-49.010000,124.540000],[-49.100000,124.830000],[-49.150000,124.990000],[-49.420000,124.850000],[-49.480000,125.310000],[-49.540000,125.840000],[-49.440000,125.890000],[-49.490000,126.130000],[-49.050000,126.260000],[-48.630000,126.430000],[-48.700000,126.860000],[-48.660000,126.870000],[-48.760000,127.310000],[-48.820000,127.580000],[-49.270000,127.440000],[-49.610000,127.290000],[-49.940000,127.160000],[-50.170000,127.090000],[-50.190000,127.810000],[-50.020000,127.600000],[-50.080000,128.270000],[-50.170000,128.770000],[-50.170000,129.110000],[-50.220000,129.730000],[-50.310000,130.560000],[-50.330000,131.200000],[-50.100000,130.930000],[-50.110000,131.500000],[-50.130000,132.200000],[-50.130000,132.710000],[-50.030000,132.690000],[-50.040000,133.410000],[-50.060000,134.560000],[-50.090000,136.170000],[-50.130000,137.640000],[-50.180000,139.090000],[-50.188200,139.600000],[-51.974200,139.785700],[-51.983000,140.428600],[-54.259800,140.742900],[-54.159300,143.750000],[-54.799900,143.928600],[-54.696600,146.885700],[-57.563200,147.900000],[-57.530000,148.080000],[-57.430000,148.810000],[-58.100000,149.150000],[-59.000000,149.660000],[-59.570000,150.000000],[-59.479700,150.735700],[-60.411300,151.278600],[-59.934400,153.635700],[-62.915700,156.464300],[-61.577400,160.828300],[-61.577400,160.828300],[-62.027500,161.703700],[-61.825500,162.583600],[-62.453200,163.660300],[-62.092400,164.775300],[-62.826800,165.961800],[-62.617700,166.732700],[-63.241400,167.682200],[-63.018800,168.434800],[-63.277200,168.745600],[-62.967500,170.115500],[-63.704600,171.402100],[-63.448200,172.936100],[-64.448800,174.370100],[-64.243400,175.159200],[-64.689300,175.980400],[-64.470200,176.587700],[-64.955000,177.163800],[-64.749700,177.789400],[-65.050300,177.991500],[-66.681900,180.000000],[-66.681900,180.000000],[-66.160200,181.201000],[-65.864500,182.078000],[-65.602000,182.924000],[-65.179000,184.267000],[-65.400000,184.500000],[-65.550000,184.940000],[-64.990000,186.530000],[-65.070000,186.780000],[-64.090000,188.890000],[-64.720000,190.010000],[-63.120000,192.640000],[-63.500000,192.840000],[-62.460000,195.220000],[-63.100000,196.310000],[-62.180000,198.050000],[-62.670000,199.260000],[-62.510000,199.670000],[-62.700000,200.140000],[-62.300000,201.140000],[-62.980000,202.750000],[-61.790000,204.650000],[-61.970000,205.320000],[-60.010000,207.850000],[-59.470000,208.670000],[-59.720000,209.610000],[-59.320000,210.180000],[-58.820000,210.740000],[-58.130000,211.720000],[-57.550000,212.310000],[-57.640000,212.830000],[-57.310000,213.320000],[-56.670000,214.020000],[-55.780000,215.140000],[-55.910000,215.520000],[-56.270000,216.670000],[-56.620000,217.910000],[-57.050000,219.680000],[-56.770000,219.950000],[-56.270000,220.460000],[-55.720000,220.810000],[-55.620000,220.430000],[-55.260000,220.750000],[-54.710000,221.210000],[-53.570000,222.110000],[-53.690000,222.470000],[-53.900000,223.410000],[-53.390000,223.820000],[-53.640000,224.700000],[-53.890000,225.790000],[-54.240000,227.120000],[-54.620000,228.630000],[-54.930000,229.950000],[-55.320000,231.380000],[-55.560000,232.770000],[-55.060000,233.210000],[-55.140000,233.800000],[-55.450000,234.920000],[-55.720000,236.560000],[-55.740000,236.900000],[-55.850000,237.400000],[-55.940000,237.940000],[-55.970000,238.210000],[-55.960000,238.300000],[-55.940000,238.340000],[-55.560000,238.600000],[-55.130000,238.840000],[-55.000000,238.940000],[-54.880000,238.990000],[-54.700000,239.100000],[-54.600000,239.130000],[-54.530000,239.140000],[-54.550000,239.120000],[-54.520000,239.120000],[-54.430000,239.150000],[-54.310000,239.220000],[-54.230000,239.290000],[-54.200000,239.330000],[-54.200000,239.420000],[-54.270000,239.680000],[-54.360000,240.070000],[-54.460000,240.550000],[-54.410000,240.680000],[-54.490000,241.120000],[-54.540000,241.390000],[-54.530000,241.490000],[-54.350000,241.650000],[-53.980000,241.870000],[-53.620000,242.060000],[-53.290000,242.220000],[-53.160000,242.240000],[-53.090000,242.220000],[-53.020000,241.780000],[-52.940000,241.830000],[-52.830000,241.860000],[-52.790000,241.840000],[-53.030000,241.640000],[-52.910000,241.580000],[-52.800000,241.570000],[-52.660000,241.580000],[-52.470000,241.680000],[-52.250000,241.780000],[-51.910000,241.970000],[-51.540000,242.180000],[-51.210000,242.360000],[-51.010000,242.480000],[-50.940000,242.550000],[-51.030000,242.550000],[-50.920000,242.660000],[-50.810000,242.730000],[-50.580000,242.850000],[-50.420000,242.920000],[-50.370000,242.940000],[-50.390000,242.900000],[-50.290000,242.920000],[-50.140000,242.970000],[-49.870000,243.080000],[-49.520000,243.220000],[-49.360000,243.330000],[-49.320000,243.400000],[-49.330000,243.460000],[-49.820000,245.990000],[-49.810000,246.100000],[-49.790000,246.190000],[-49.470000,246.320000],[-49.050000,246.490000],[-48.760000,246.620000],[-48.590000,246.660000],[-48.470000,246.660000],[-48.540000,246.590000],[-48.440000,246.590000],[-48.000000,246.720000],[-47.700000,246.780000],[-47.770000,246.710000],[-47.580000,246.750000],[-46.880000,246.960000],[-46.090000,247.220000],[-45.590000,247.410000],[-45.500000,247.460000],[-45.620000,247.460000],[-45.490000,247.520000],[-45.030000,247.700000],[-45.000000,247.720000],[-44.450000,247.890000],[-44.070000,248.030000],[-44.010000,248.060000],[-44.090000,248.060000],[-43.990000,248.120000],[-43.580000,248.260000],[-42.910000,248.470000],[-42.300000,248.670000],[-42.170000,248.690000],[-42.180000,248.660000],[-42.120000,248.660000],[-41.780000,248.730000],[-41.530000,248.750000],[-41.370000,248.710000],[-41.610000,248.570000],[-41.440000,248.540000],[-41.250000,248.540000],[-41.150000,248.560000],[-41.060000,248.540000],[-41.230000,248.480000],[-41.090000,248.470000],[-40.930000,248.490000],[-40.710000,248.530000],[-40.660000,248.540000],[-40.640000,248.540000],[-40.540000,248.550000],[-40.530000,248.530000],[-40.440000,248.550000],[-40.430000,248.530000],[-40.250000,248.570000],[-40.250000,248.540000],[-40.100000,248.550000],[-39.890000,248.580000],[-39.900000,248.550000],[-39.730000,248.590000],[-39.520000,248.650000],[-39.430000,248.670000],[-39.430000,248.700000],[-39.280000,248.730000],[-38.970000,248.790000],[-38.600000,248.870000],[-38.300000,248.940000],[-38.090000,248.980000],[-38.090000,249.000000],[-37.960000,249.030000],[-37.750000,249.090000],[-37.590000,249.140000],[-37.620000,249.150000],[-37.570000,249.180000],[-37.360000,249.240000],[-37.150000,249.270000],[-37.060000,249.300000],[-37.110000,249.330000],[-37.020000,249.360000],[-36.860000,249.390000],[-36.650000,249.460000],[-36.490000,249.460000],[-36.390000,249.440000],[-36.450000,249.100000],[-36.280000,249.070000],[-36.040000,249.040000],[-35.830000,249.050000],[-35.550000,249.110000],[-35.330000,249.170000],[-35.200000,249.200000],[-35.068700,249.156000],[-35.027900,249.510000],[-35.027900,249.510000],[-34.984000,249.578000],[-34.945200,249.660000],[-34.896000,249.747000],[-34.839600,249.834000],[-34.781500,249.923000],[-34.672100,250.100000],[-34.516500,250.382000],[-34.516500,250.382000],[-34.515900,250.733000],[-34.903600,257.228000],[-35.586200,257.319000],[-35.827800,257.408000],[-36.064600,259.355000],[-36.192000,261.587000],[-36.291300,262.599000],[-36.869200,262.584000],[-36.964500,264.311000],[-37.001400,265.874000],[-37.714100,265.904000],[-38.480200,266.000000],[-38.428900,266.928000],[-38.969500,266.974000],[-38.867700,268.340000],[-39.834700,268.455000],[-40.730000,268.525000],[-41.102200,268.606000],[-41.055800,269.914000],[-41.434800,269.948000],[-41.319300,271.557000],[-41.275900,272.580000],[-41.521300,272.665000],[-41.255700,274.855000],[-41.125400,276.171000],[-42.220400,276.398000],[-42.875300,276.544000],[-42.979500,276.555000],[-42.861200,277.490000],[-43.637500,277.648000],[-44.401200,277.860000],[-44.962100,278.068000],[-44.779400,279.722000],[-44.544000,281.107000],[-44.412200,281.796000],[-45.089900,282.008000],[-45.587600,282.239000],[-45.762300,282.339000],[-45.641400,283.324000],[-45.574100,284.147000],[-46.072800,284.297000],[-46.577700,284.459000],[-46.606000,284.294000],[-46.606000,284.294000],[-46.973400,284.161000],[-47.418700,284.054000],[-47.719600,283.986000],[-48.091600,283.871000],[-48.419100,283.829000],[-48.702400,283.789000],[-49.007700,283.711000],[-49.317200,283.633000],[-49.560200,283.629000],[-49.861000,283.661000],[-50.212500,283.701000],[-50.538400,283.768000],[-50.873600,283.835000],[-51.149200,283.894000],[-51.434500,283.944000],[-51.667100,283.985000],[-52.050200,284.052000],[-52.240900,284.130000],[-52.458200,284.181000],[-52.506200,284.487000],[-52.506200,284.487000],[-52.919300,285.387000],[-53.254600,286.314000],[-53.671400,287.738000],[-53.960600,288.943000],[-54.134700,290.166000],[-54.312600,291.629000],[-54.439000,292.836000],[-54.494200,294.841000],[-54.462000,296.326000],[-54.454800,297.385000],[-54.355700,298.815000],[-54.276600,299.736000],[-54.198600,300.829000],[-54.052600,302.192000],[-53.816700,303.790000],[-53.618400,305.361000],[-53.373100,306.652000],[-53.210600,307.831000],[-52.969500,309.232000],[-52.827300,310.228000],[-52.701300,311.291000],[-52.656200,312.313000],[-52.608200,313.344000],[-52.618800,314.320000],[-52.678800,315.722000],[-52.684000,316.907000],[-52.751600,318.001000],[-52.775800,318.999000],[-52.842200,320.246000],[-52.945000,321.475000],[-53.076800,322.399000],[-53.321800,323.248000],[-53.586300,323.741000],[-53.966900,324.377000],[-54.362300,325.006000],[-54.631200,325.748000],[-54.850000,327.004000],[-55.000900,328.241000],[-55.076900,329.776000],[-55.150700,330.816000],[-55.200400,331.817000],[-55.278100,332.886000],[-55.408200,333.741000],[-55.589100,334.356000],[-55.589100,334.356000],[-55.591800,334.342000],[-55.966600,335.033000],[-56.655400,335.728000],[-57.558100,336.163000],[-58.249100,336.176000],[-58.947500,335.883000],[-59.589200,335.267000],[-60.092400,334.473000],[-60.330500,333.897000],[-60.545100,333.488000],[-60.576100,333.300000],[100.000000,1000.000000],[12.830000,58.130000],[13.000000,57.870000],[13.140000,57.640000],[13.310000,57.730000],[13.450000,57.810000],[13.520000,57.690000],[13.640000,57.480000],[13.740000,57.300000],[13.770000,57.300000],[13.850000,57.140000],[13.940000,56.970000],[14.070000,57.040000],[14.140000,56.900000],[14.210000,56.760000],[14.300000,56.820000],[14.420000,56.600000],[14.530000,56.410000],[14.640000,56.210000],[14.620000,56.180000],[14.640000,56.060000],[14.690000,55.820000],[14.720000,55.670000],[14.680000,55.630000],[14.730000,55.480000],[14.790000,55.280000],[14.850000,55.110000],[14.710000,55.050000],[14.730000,54.960000],[14.800000,54.730000],[14.870000,54.550000],[14.760000,54.510000],[14.620000,54.450000],[14.640000,54.390000],[14.670000,54.330000],[14.680000,54.290000],[14.690000,54.250000],[14.710000,54.190000],[14.730000,54.150000],[14.770000,54.070000],[14.660000,54.020000],[14.490000,53.930000],[14.350000,53.860000],[14.360000,53.820000],[14.440000,53.580000],[14.510000,53.360000],[14.560000,53.220000],[14.540000,53.210000],[14.560000,53.120000],[14.620000,52.910000],[14.680000,52.740000],[14.560000,52.670000],[14.600000,52.550000],[14.660000,52.300000],[14.690000,52.140000],[14.350000,51.940000],[14.030000,51.760000],[13.670000,51.570000],[13.460000,51.450000],[13.270000,51.340000],[13.120000,51.250000],[13.190000,51.080000],[13.280000,50.840000],[13.360000,50.660000],[13.220000,50.570000],[13.270000,50.430000],[13.310000,50.310000],[13.230000,50.250000],[13.120000,50.170000],[13.170000,50.060000],[13.250000,49.850000],[13.310000,49.680000],[13.170000,49.590000],[13.010000,49.470000],[13.040000,49.430000],[12.900000,49.350000],[12.800000,49.280000],[12.850000,49.070000],[12.910000,48.880000],[12.770000,48.800000],[12.660000,48.700000],[12.690000,48.570000],[12.730000,48.450000],[12.570000,48.350000],[12.600000,48.270000],[12.640000,48.140000],[12.670000,48.050000],[12.580000,47.990000],[12.460000,47.900000],[12.490000,47.790000],[12.520000,47.650000],[12.440000,47.590000],[12.370000,47.540000],[12.430000,47.320000],[12.460000,47.160000],[12.360000,47.130000],[12.390000,47.050000],[12.400000,46.990000],[12.300000,46.930000],[12.210000,46.850000],[12.250000,46.720000],[12.290000,46.580000],[12.200000,46.510000],[12.090000,46.430000],[12.140000,46.310000],[12.170000,46.200000],[12.110000,46.150000],[12.060000,46.110000],[12.100000,45.850000],[12.150000,45.650000],[12.160000,45.640000],[12.070000,45.600000],[11.980000,45.520000],[12.020000,45.430000],[12.050000,45.330000],[12.000000,45.280000],[12.000000,45.100000],[12.010000,44.910000],[12.020000,44.880000],[12.020000,44.780000],[12.010000,44.510000],[12.010000,44.050000],[12.010000,43.650000],[12.080100,43.575600],[12.437700,43.492900],[12.740800,43.246800],[13.061400,43.055200],[13.426000,42.781700],[13.985200,42.407700],[14.384100,42.252200],[14.861800,42.114700],[15.356000,41.904500],[15.901500,41.548700],[16.261300,41.238800],[16.672700,40.847000],[17.109700,40.518700],[17.589300,40.217600],[17.876500,40.053300],[18.310700,39.834100],[18.570700,39.660800],[18.890700,39.405500],[19.209800,39.077500],[19.519900,38.822200],[19.777800,38.576200],[20.052600,38.393700],[20.541300,38.256200],[20.840600,38.173600],[21.207500,38.090900],[21.548000,37.999200],[21.947100,37.943700],[22.209700,37.870300],[22.505500,37.769600],[22.766800,37.623500],[23.035900,37.404700],[23.228900,37.222400],[23.446700,37.003700],[23.538700,36.894400],[23.547100,36.885300],[23.772600,36.603000],[24.006300,36.411500],[24.397500,36.065100],[24.588500,35.864700],[27.013200,34.413300],[30.375200,32.232100],[32.649700,32.271400],[34.056900,33.894500],[34.110000,33.985300],[36.169100,36.715300],[37.774700,37.110600],[38.363200,40.453700],[37.664800,43.982200],[37.070700,44.465600],[36.669400,44.757600],[36.244100,45.113300],[35.927400,45.423300],[35.557600,45.887800],[35.349900,46.179300],[35.111700,46.470800],[34.835300,46.735100],[34.377600,47.200000],[34.227000,47.345800],[33.879300,47.546700],[33.629000,47.738300],[33.530300,47.838600],[33.189400,49.075600],[32.945800,49.767000],[32.685800,50.313000],[32.432700,50.804500],[32.163200,51.177900],[32.016500,51.369100],[31.177700,52.171200],[30.739700,52.590500],[30.386200,52.864100],[30.126200,53.110200],[29.984200,53.274200],[29.097000,54.848900],[28.730300,55.467900],[28.530700,55.904600],[28.466900,56.141100],[28.146700,56.941700],[27.881000,57.224200],[27.566100,57.524900],[27.363900,57.789000],[27.234500,58.016600],[27.121100,58.244100],[27.024300,58.644200],[27.040900,58.807800],[27.009200,59.225900],[26.920300,59.544200],[26.815000,59.862600],[26.701300,60.135500],[26.660800,60.281100],[24.690200,63.412500],[24.690200,63.412500],[12.812200,58.297900],[12.830000,58.130000],[100.000000,1000.000000],[20.027800,88.024800],[21.516100,89.606600],[21.443900,89.536400],[21.579200,89.737200],[21.697600,89.865100],[21.765200,89.965500],[21.832300,90.156800],[21.805700,90.420500],[21.796200,90.666100],[21.573800,91.019800],[21.445300,91.228500],[21.222800,91.491200],[20.991300,91.763100],[20.261400,92.342000],[19.830600,92.658400],[19.502400,92.884300],[19.061100,93.109700],[18.688300,93.271800],[18.228000,93.388000],[17.862700,93.413600],[17.461900,93.393600],[17.077600,93.391900],[16.858900,93.372700],[16.561200,93.335000],[16.193100,93.224100],[15.657200,93.058000],[15.296400,92.901700],[15.023300,92.764100],[14.697000,92.562500],[14.299300,92.360600],[13.909500,92.213300],[13.545500,92.120700],[13.234600,91.992000],[12.780500,91.862600],[12.477400,91.761200],[12.084200,91.714000],[11.788800,91.712700],[11.331800,91.656100],[10.999900,91.609200],[10.676500,91.571300],[10.379700,91.542800],[10.109800,91.505200],[9.983600,91.513700],[9.667900,91.530500],[9.451300,91.529600],[9.216400,91.565000],[8.927000,91.609200],[8.573900,91.680400],[8.383700,91.716000],[7.984500,91.850700],[7.448100,92.148600],[6.802100,92.418700],[6.165000,92.552400],[5.827800,92.632900],[5.545100,92.722600],[5.262000,92.848800],[4.933300,92.956500],[4.540300,93.136800],[4.448900,93.181900],[4.082300,93.498700],[3.862500,93.652400],[3.569700,93.760300],[3.313100,93.941200],[3.157200,94.058800],[3.001100,94.212800],[2.854300,94.348600],[2.450100,94.756300],[2.358000,94.910600],[2.110000,95.146000],[1.953400,95.381900],[1.714400,95.626500],[1.457200,95.861900],[1.291800,96.015900],[1.034800,96.178500],[0.685900,96.422700],[0.447300,96.567300],[0.272900,96.666600],[-0.011600,96.820000],[-0.259400,96.964500],[-0.433800,97.091200],[-0.727600,97.280900],[-0.902000,97.380300],[-0.948000,97.434700],[-1.617700,97.813900],[-1.810300,97.904100],[-2.259400,98.111400],[-2.737100,98.573300],[-2.865800,98.745600],[-3.177700,98.980900],[-3.471200,99.216200],[-3.755600,99.487900],[-4.177200,99.831800],[-4.424400,100.012700],[-4.762900,100.211400],[-5.000800,100.374100],[-5.284400,100.591300],[-5.677900,100.989900],[-5.915700,101.216300],[-6.207900,101.415300],[-6.427100,101.605400],[-6.683000,101.904500],[-6.929700,102.194600],[-7.167100,102.466500],[-7.477400,102.838200],[-7.660500,103.192200],[-7.797900,103.510100],[-7.971800,103.873200],[-8.090900,104.154800],[-8.328100,104.526800],[-8.410600,104.744800],[-8.484100,105.008300],[-8.876200,105.670800],[-9.049200,105.952100],[-9.276800,106.342300],[-9.404200,106.560100],[-9.640500,106.932100],[-9.813600,107.313500],[-9.977700,107.722200],[-10.105500,108.076400],[-10.215200,108.449000],[-10.307800,109.021800],[-10.318600,109.431100],[-10.347300,109.822200],[-10.349400,110.304400],[-10.360100,110.677400],[-10.370900,111.095800],[-10.408400,111.432300],[-10.628400,112.332000],[-10.765600,112.859100],[-10.940600,113.822800],[-10.997100,114.423000],[-11.080800,115.068600],[-11.145900,115.577800],[-11.221800,116.496300],[-11.241700,116.951100],[-11.217000,117.460700],[-11.246100,117.951900],[-11.369000,119.361500],[-11.326400,119.880300],[-11.390900,120.271200],[-11.419300,120.616800],[-11.395000,121.217300],[-11.333900,121.590600],[-11.183700,122.155300],[-10.874500,123.339300],[-10.706100,123.876800],[-10.519400,124.387000],[-10.430500,124.623900],[-10.225300,125.052400],[-9.948400,125.626700],[-9.885700,125.718000],[-9.706700,126.028000],[-9.341300,127.075700],[-9.252500,127.421800],[-9.173300,127.904300],[-9.084900,128.350500],[-9.041100,128.660000],[-8.979500,129.051400],[-8.926700,129.379200],[-8.892000,129.715900],[-8.812200,130.071000],[-8.740800,130.289700],[-8.687500,130.508200],[-8.535300,130.881900],[-8.472500,131.009500],[-8.373700,131.191900],[-8.283800,131.328700],[-8.238800,131.392500],[-7.697300,131.922400],[-7.534800,132.105100],[-7.290600,132.297100],[-7.046100,132.471000],[-6.810700,132.663000],[-6.656900,132.818300],[-6.484700,132.937300],[-6.230800,133.138500],[-6.085800,133.257300],[-5.704800,133.577300],[-5.632200,133.641300],[-5.396100,133.806000],[-5.331400,134.422900],[-5.331400,134.422900],[-5.194100,134.494800],[-5.084400,134.548600],[-4.974700,134.584300],[-4.901600,134.602000],[-4.682600,134.591600],[-4.554900,134.554400],[-4.454700,134.517400],[-4.345000,134.534900],[-4.264000,134.334400],[-4.191400,134.243000],[-4.183100,134.097500],[-4.165800,133.924600],[-4.221800,133.725000],[-4.323100,133.580100],[-4.378900,133.416900],[-4.361300,133.289500],[-4.298100,133.170900],[-4.235100,132.997800],[-4.144700,132.833500],[-4.036000,132.687400],[-3.890600,132.541000],[-3.799300,132.513200],[-3.635300,132.430300],[-3.562400,132.384400],[-3.082200,131.626800],[-2.801300,131.152300],[-2.475300,130.559300],[-2.376000,130.331400],[-2.322500,130.076500],[-2.250600,129.848800],[-2.215000,129.675900],[-2.169700,129.602800],[-2.124300,129.529800],[-2.069400,129.529500],[-1.922700,129.574000],[-1.720200,129.754600],[-1.591200,129.899200],[-1.424700,130.180000],[-1.360200,130.252400],[-1.268200,130.324500],[-1.003500,130.168300],[-0.711400,129.993700],[-0.583800,129.892900],[-0.346200,129.791500],[-0.135800,129.744700],[0.148300,129.770200],[0.285800,129.787500],[0.469400,129.859100],[0.469700,129.913600],[0.489000,130.077100],[0.335000,130.369000],[0.253900,130.596800],[0.172700,130.815500],[0.045800,131.052700],[-0.081600,131.189900],[-0.209300,131.290700],[-0.346400,131.346100],[-0.511100,131.365300],[-0.575100,131.393000],[-0.537300,131.592700],[-0.508900,131.756200],[-0.461200,132.074100],[-0.442000,132.237600],[-0.468700,132.365000],[-0.519800,133.038100],[-0.655200,133.366300],[-0.727000,133.630400],[-0.817100,133.885500],[-0.925400,134.168000],[-0.915100,134.368000],[-0.914100,134.531600],[-0.922400,134.677100],[-0.958500,134.768200],[-1.040600,134.832400],[-1.113500,134.896500],[-1.168100,134.951400],[-1.395800,135.180100],[-1.522000,135.508200],[-1.638800,135.908900],[-1.664700,136.172800],[-1.625800,136.572500],[-1.569200,136.854000],[-1.522000,137.099200],[-1.446500,137.489700],[-1.445000,137.744200],[-1.461900,137.989800],[-1.622900,138.645400],[-1.867600,139.083300],[-1.994300,139.329600],[-2.221300,139.658300],[-2.374500,140.059300],[-2.427900,140.332400],[-2.445200,140.496200],[-2.686900,141.425000],[-2.893900,142.017300],[-3.057000,142.291000],[-3.219500,142.664800],[-3.317800,143.056400],[-3.352700,143.356600],[-3.433000,143.702600],[-3.504800,143.921300],[-3.531400,144.076000],[-3.802500,144.614100],[-4.074700,144.961300],[-4.283100,145.253500],[-4.418900,145.463500],[-4.518400,145.627800],[-4.645800,145.701300],[-4.800500,145.784100],[-5.010100,145.840000],[-5.165100,145.859100],[-5.256100,145.896100],[-5.446900,146.024600],[-5.600600,146.252800],[-5.661800,146.707800],[-6.913900,146.849300],[-6.913900,146.849300],[-6.964700,146.885800],[-6.992200,146.937000],[-7.030000,147.017400],[-7.064800,147.074400],[-7.085100,147.148900],[-7.127100,147.229300],[-7.167700,147.277500],[-7.182200,147.338900],[-7.206900,147.410500],[-7.212700,147.476200],[-7.241700,147.534700],[-7.266300,147.623800],[-7.299600,147.694000],[-7.321400,147.761200],[-7.350400,147.832800],[-7.375000,147.935100],[-7.383700,148.000900],[-7.399600,148.068100],[-7.415600,148.182100],[-7.430100,148.255100],[-7.430100,148.342800],[-7.430100,148.394000],[-7.417000,148.478700],[-7.402500,148.537200],[-7.390900,148.600000],[-7.388000,148.652600],[-7.383700,148.702300],[-7.376500,148.781200],[-7.373600,148.858700],[-7.367800,148.959500],[-7.335900,149.017900],[-7.314100,149.111500],[-7.312700,149.200600],[-7.282200,149.273700],[-7.253300,149.355500],[-7.259000,149.443200],[-7.233000,149.522100],[-7.199600,149.601000],[-7.190900,149.687300],[-7.163400,149.786600],[-7.137300,149.865500],[-7.112600,150.001400],[-7.074900,150.083300],[-7.059000,150.149000],[-7.011100,150.232300],[-6.974800,150.306900],[-6.934200,150.451500],[-6.883400,150.527500],[-6.834100,150.602100],[-6.805100,150.705800],[-6.745600,150.805200],[-6.686100,150.892900],[-6.648400,150.996600],[-6.601900,151.112100],[-6.558300,151.173400],[-6.498800,151.316700],[-6.456700,151.417500],[-6.423300,151.497900],[-6.371000,151.572400],[-6.317300,151.664500],[-6.282400,151.752100],[-6.238900,151.817900],[-6.199600,151.864700],[-6.160400,151.929000],[-6.128400,152.006400],[-6.102300,152.085300],[-6.064500,152.184700],[-6.019400,152.262100],[-5.990400,152.389300],[-5.975900,152.534000],[-5.991800,152.690300],[-6.016500,152.801400],[-6.073200,152.962100],[-6.108100,153.042500],[-6.145900,153.133100],[-6.209800,153.266100],[-6.256300,153.345000],[-6.308600,153.432700],[-6.352100,153.517400],[-6.433500,153.613900],[-6.497400,153.663600],[-6.577200,153.798000],[-6.681700,153.900300],[-6.774600,154.023100],[-6.860200,154.123900],[-6.942900,154.183800],[-7.014000,154.255400],[-7.077800,154.319700],[-7.175000,154.394300],[-7.237300,154.467300],[-7.327200,154.569600],[-7.401100,154.674800],[-7.508300,154.790300],[-7.569200,154.901300],[-7.631500,154.991900],[-7.722700,155.072300],[-7.822600,155.227200],[-7.822600,155.227200],[-7.838500,155.276900],[-7.871800,155.319300],[-7.893500,155.376300],[-7.913800,155.442000],[-7.948500,155.525300],[-7.997700,155.634900],[-8.038300,155.735800],[-8.106200,155.868700],[-8.161200,155.982700],[-8.220500,156.095300],[-8.288500,156.194600],[-8.356500,156.323200],[-8.389700,156.394800],[-8.440300,156.469400],[-8.440300,156.469400],[-8.495200,156.543900],[-8.521300,156.606700],[-8.563200,156.704600],[-8.597800,156.787900],[-8.618100,156.855200],[-8.647000,156.937000],[-8.706200,157.048100],[-8.751000,157.175200],[-8.782700,157.238000],[-8.829000,157.311100],[-8.893900,157.413400],[-8.969000,157.568300],[-9.008000,157.653000],[-9.062800,157.727600],[-9.110400,157.828400],[-9.153700,157.910200],[-9.210000,157.995000],[-9.247500,158.056400],[-9.313800,158.139700],[-9.387400,158.271200],[-9.440700,158.382300],[-9.478200,158.474300],[-9.511300,158.578100],[-9.545900,158.708100],[-9.564700,158.778300],[-9.586300,158.851400],[-9.623700,158.924400],[-9.654000,158.999000],[-9.688600,159.069100],[-9.724600,159.123200],[-9.770700,159.168500],[-9.823900,159.226900],[-9.877200,159.289800],[-9.926200,159.365800],[-9.965000,159.440300],[-10.025500,159.497300],[-10.080100,159.574700],[-10.119000,159.642000],[-10.170800,159.704800],[-10.199500,159.772000],[-10.245600,159.834800],[-10.271400,159.912300],[-10.310300,159.978100],[-10.373500,160.064300],[-10.415200,160.137300],[-10.471300,160.209000],[-10.514400,160.287900],[-10.566100,160.369700],[-10.633600,160.486600],[-10.670900,160.548000],[-10.724100,160.622500],[-10.784400,160.730700],[-10.838900,160.781800],[-10.912100,160.865100],[-10.962300,160.936700],[-11.024000,160.998100],[-11.059900,161.059400],[-11.124400,161.125200],[-11.170300,161.201200],[-11.194600,161.303500],[-11.229000,161.383900],[-11.250600,161.459900],[-11.287800,161.556300],[-11.319300,161.717100],[-11.358000,161.801800],[-11.391000,161.907000],[-11.425400,162.022500],[-11.435400,162.111600],[-11.418200,162.225600],[-11.421100,162.354200],[-11.415300,162.482800],[-11.388100,162.621600],[-11.362300,162.832100],[-11.330800,162.966500],[-9.782200,162.256300],[-9.782200,162.256300],[-9.724600,162.336700],[-9.674200,162.444800],[-9.567500,162.680100],[-9.476700,162.911000],[-9.393100,163.184200],[-9.274900,163.499900],[-9.171000,163.812600],[-9.075800,164.106400],[-8.951700,164.426400],[-8.841900,164.670400],[-8.742300,164.949600],[-8.658500,165.221400],[-8.580500,165.455200],[-8.583400,165.452300],[-8.583400,165.452300],[-8.558800,165.522400],[-8.516900,165.633500],[-8.508200,165.798600],[-8.519800,166.066000],[-8.560300,166.263300],[-8.642600,166.447400],[-8.723500,166.646200],[-8.743700,166.877100],[-8.761100,167.090400],[-8.743700,167.255600],[-8.714900,167.464500],[-8.733600,167.764100],[-8.778400,167.978900],[-8.873700,168.224400],[-8.943000,168.376400],[-9.067100,168.589800],[-9.192700,168.788500],[-9.312400,168.971200],[-9.434900,169.091000],[-9.618000,169.228400],[-9.819600,169.421300],[-9.986600,169.602500],[-10.119000,169.843600],[-10.280100,170.026300],[-10.494200,170.236700],[-10.670900,170.562600],[-10.724100,170.755500],[-10.805900,170.983500],[-10.919300,171.207000],[-11.114400,171.439400],[-11.246300,171.676100],[-11.452600,171.966900],[-11.611500,172.253400],[-11.753200,172.517900],[-11.884800,172.704900],[-12.044900,172.931400],[-12.284900,173.311400],[-12.354800,173.593400],[-12.393400,173.803900],[-12.416200,174.008500],[-12.397700,174.047900],[-12.360500,174.151700],[-12.322000,174.350400],[-12.297700,174.652900],[-12.290600,174.986100],[-12.282000,175.469800],[-12.282000,175.849700],[-12.264900,176.256000],[-12.286300,176.536600],[-12.306300,176.789400],[-12.333400,177.075800],[-12.392000,177.241000],[-12.501800,177.505500],[-12.591700,177.717300],[-12.694400,177.933600],[-12.799800,178.078300],[-12.946600,178.268300],[-13.051900,178.413000],[-13.134500,178.505000],[-13.330800,178.733000],[-13.433200,178.873300],[-13.484300,179.042800],[-13.474400,179.142200],[-13.448800,179.281000],[-13.379200,179.545500],[-13.256900,179.937100],[-13.212800,180.164000],[-13.165800,180.354000],[-13.165800,180.579000],[-13.209900,180.744000],[-13.276800,181.013000],[-13.316600,181.194000],[-13.352100,181.431000],[-13.406200,181.669000],[-13.453100,181.894000],[-13.488600,182.052000],[-13.481500,182.281000],[-13.453100,182.381000],[-13.363500,182.535000],[-13.261100,182.736000],[-13.161500,182.902000],[-13.074700,183.022000],[-12.945200,183.098000],[-13.070400,183.121000],[-13.234100,183.187000],[-13.328000,183.232000],[-13.393400,183.266000],[-13.410400,183.276000],[-13.561100,183.393000],[-13.617900,183.501000],[-13.664700,183.553000],[-13.779700,183.684000],[-13.822300,183.807000],[-13.856400,183.858000],[-13.904600,183.918000],[-13.952800,184.017000],[-13.985400,184.083000],[-14.049200,184.187000],[-14.101700,184.269000],[-14.141400,184.337000],[-14.223500,184.511000],[-14.253300,184.564000],[-14.318400,184.689000],[-14.345300,184.903000],[-14.349600,185.043000],[-14.334000,185.236000],[-14.322700,185.389000],[-14.343900,185.553000],[-14.355200,185.609000],[-14.587800,186.597000],[-14.587800,186.597000],[-14.702100,186.724000],[-14.789500,186.867000],[-14.862800,187.065000],[-15.037500,187.233000],[-15.148700,187.399000],[-15.375200,187.567000],[-15.560700,187.640000],[-15.736200,187.665000],[-16.039200,187.700000],[-16.327700,187.695000],[-16.712100,187.685000],[-16.963300,187.666000],[-17.267200,187.620000],[-17.678900,187.554000],[-17.931600,187.461000],[-18.150600,187.404000],[-18.478700,187.308000],[-18.780000,187.213000],[-19.073800,187.130000],[-19.464700,187.029000],[-19.773700,186.947000],[-20.198600,186.783000],[-20.590800,186.599000],[-20.894900,186.446000],[-21.241900,186.300000],[-21.525700,186.183000],[-21.915800,186.043000],[-22.286000,185.865000],[-22.621600,185.680000],[-22.904000,185.510000],[-23.215200,185.342000],[-23.507100,185.161000],[-23.751600,185.027000],[-24.070200,184.901000],[-24.467600,184.788000],[-24.836100,184.776000],[-25.145300,184.744000],[-25.431400,184.699000],[-25.730000,184.623000],[-26.023900,184.581000],[-26.439900,184.581000],[-26.855600,184.597000],[-27.313900,184.448000],[-27.781900,184.210000],[-28.262100,184.110000],[-28.697900,183.999000],[-29.061800,183.914000],[-29.470100,183.847000],[-29.884400,183.661000],[-30.322200,183.453000],[-30.681500,183.310000],[-31.030700,183.086000],[-31.457100,182.891000],[-31.789900,182.691000],[-32.102900,182.523000],[-32.237500,182.458000],[-32.698800,182.337000],[-33.185900,182.189000],[-33.580400,182.014000],[-33.964600,181.854000],[-34.239900,181.712000],[-34.480700,181.585000],[-34.710000,181.457000],[-35.018600,181.364000],[-38.040000,179.720000],[-38.040000,179.720000],[-38.110000,179.660000],[-38.200000,179.570000],[-38.540000,179.370000],[-38.890000,179.210000],[-39.230000,179.120000],[-39.680000,178.950000],[-40.090000,178.790000],[-40.420000,178.560000],[-40.800000,178.290000],[-41.190000,178.020000],[-41.500000,177.600000],[-41.660000,177.120000],[-41.750000,176.680000],[-41.910000,176.080000],[-42.060000,175.500000],[-42.120000,174.980000],[-42.200000,174.310000],[-42.290000,173.720000],[-42.390000,173.130000],[-42.480000,172.600000],[-42.610000,171.860000],[-42.680000,171.470000],[-42.740000,171.280000],[-42.730000,171.270000],[-42.730000,171.270000],[-42.930000,170.990000],[-43.090000,170.640000],[-43.360000,170.110000],[-43.600000,169.640000],[-43.840000,169.130000],[-44.020000,168.770000],[-44.160000,168.490000],[-44.330000,168.090000],[-44.470000,167.690000],[-44.650000,167.370000],[-44.820000,167.100000],[-45.060000,166.770000],[-45.310000,166.440000],[-45.590000,166.050000],[-45.810000,165.780000],[-46.150000,165.430000],[-46.370000,165.220000],[-46.610000,165.040000],[-46.620000,165.040000],[-46.670000,164.980000],[-46.760000,164.930000],[-47.010000,164.790000],[-47.290000,164.670000],[-47.560000,164.690000],[-46.747500,164.979900],[-46.747500,164.979900],[-47.108800,164.865800],[-47.228800,164.758400],[-47.762600,164.678500],[-47.960900,164.514100],[-48.222500,164.340600],[-48.485800,164.233300],[-48.640400,164.144200],[-48.872900,163.947800],[-49.041300,163.840500],[-49.379400,163.717200],[-49.395800,163.685200],[-49.470200,163.395300],[-49.598100,163.100700],[-49.735900,163.148700],[-50.113300,162.845000],[-50.503700,162.602900],[-50.781000,162.529900],[-51.065400,162.274100],[-51.234800,162.166800],[-51.550500,162.075500],[-51.878200,161.762700],[-51.786200,161.527500],[-51.965700,161.447500],[-52.037600,161.411000],[-52.152900,161.338000],[-52.351900,161.239800],[-52.421800,161.022800],[-52.643200,160.787700],[-52.975300,160.342400],[-53.104700,160.168900],[-53.523100,159.917700],[-53.949600,159.588900],[-54.160500,159.538700],[-54.747200,159.324000],[-55.149400,159.301200],[-55.488000,159.139100],[-55.719400,158.849100],[-55.795300,158.559100],[-55.941700,158.319300],[-56.010800,158.043100],[-56.010800,157.823900],[-56.362300,157.750800],[-56.575900,157.705100],[-57.021900,157.593200],[-57.220600,157.406000],[-57.474900,157.353500],[-57.837200,157.472200],[-58.037600,157.524700],[-58.444600,157.716500],[-58.794800,157.988300],[-58.915500,158.068200],[-59.085100,158.330800],[-59.394000,158.782900],[-59.627300,159.442800],[-59.671200,159.652800],[-59.783000,159.753300],[-59.959800,159.917700],[-61.050900,160.737400],[-61.556300,160.871400],[-61.556300,160.871400],[-62.915700,156.464300],[-59.934400,153.635700],[-60.411300,151.278600],[-59.479700,150.735700],[-59.570000,150.000000],[-59.000000,149.660000],[-58.100000,149.150000],[-57.430000,148.810000],[-57.530000,148.080000],[-57.563200,147.900000],[-54.696600,146.885700],[-54.799900,143.928600],[-54.159300,143.750000],[-54.259800,140.742900],[-51.983000,140.428600],[-51.974200,139.785700],[-50.188200,139.600000],[-50.180000,139.090000],[-50.130000,137.640000],[-50.090000,136.170000],[-50.060000,134.560000],[-50.040000,133.410000],[-50.030000,132.690000],[-50.130000,132.710000],[-50.130000,132.200000],[-50.110000,131.500000],[-50.100000,130.930000],[-50.330000,131.200000],[-50.310000,130.560000],[-50.220000,129.730000],[-50.170000,129.110000],[-50.170000,128.770000],[-50.080000,128.270000],[-50.020000,127.600000],[-50.190000,127.810000],[-50.170000,127.090000],[-49.940000,127.160000],[-49.610000,127.290000],[-49.270000,127.440000],[-48.820000,127.580000],[-48.760000,127.310000],[-48.660000,126.870000],[-48.700000,126.860000],[-48.630000,126.430000],[-49.050000,126.260000],[-49.490000,126.130000],[-49.440000,125.890000],[-49.540000,125.840000],[-49.480000,125.310000],[-49.420000,124.850000],[-49.150000,124.990000],[-49.100000,124.830000],[-49.010000,124.540000],[-48.860000,124.600000],[-48.850000,124.210000],[-48.860000,123.910000],[-49.120000,123.770000],[-49.120000,123.520000],[-49.320000,123.440000],[-49.490000,123.380000],[-49.480000,123.210000],[-49.480000,122.980000],[-49.630000,122.930000],[-49.730000,122.800000],[-49.810000,122.560000],[-49.790000,122.300000],[-49.700000,121.880000],[-49.580000,121.480000],[-49.520000,121.380000],[-49.056000,121.757100],[-48.900800,120.678600],[-50.068800,120.192900],[-49.796800,118.542900],[-49.532500,118.642900],[-49.159200,116.750000],[-50.133200,116.421400],[-49.801400,114.578600],[-50.549100,114.214300],[-50.027400,111.600000],[-49.257000,108.247900],[-49.182100,108.283600],[-48.838800,106.697000],[-49.102400,106.546900],[-47.262300,100.200100],[-47.972700,99.621200],[-46.522500,95.840300],[-45.471400,96.690800],[-44.808800,94.925500],[-44.620200,95.032700],[-41.685800,88.485800],[-42.001100,88.064100],[-40.833700,85.862800],[-42.895700,83.439900],[-41.126200,80.931200],[-41.894400,79.987700],[-40.866200,78.658400],[-40.868600,78.482900],[-40.329000,77.826000],[-39.905300,78.425900],[-39.541700,77.997000],[-39.260200,78.380900],[-39.003200,78.069000],[-38.663000,78.527900],[-38.396800,78.183000],[-38.001600,78.707800],[-37.482300,78.015000],[-36.510400,79.181700],[-35.685300,78.201000],[-35.162400,78.800800],[-34.841500,78.440900],[-34.809400,78.491900],[-33.841400,77.349200],[-33.193300,78.090000],[-31.715900,76.395400],[-31.466800,76.686300],[-30.974500,76.146500],[-30.902100,76.200400],[-30.240300,75.390700],[-30.115200,75.510600],[-30.010900,75.366700],[-29.841100,75.549600],[-29.327200,74.937800],[-29.266800,74.988800],[-28.543600,74.188000],[-28.315600,74.400900],[-27.569800,73.540100],[-27.658000,73.399100],[-27.441400,73.123200],[-27.575200,72.925300],[-26.719200,72.001500],[-26.654600,72.061500],[-26.379300,71.716600],[-26.455000,71.575600],[-26.087200,71.134700],[-26.190100,70.990800],[-25.913700,70.669800],[-26.060100,70.405900],[-25.644900,69.962000],[-25.644900,69.962000],[-25.480000,70.090000],[-24.970000,69.590000],[-24.680000,69.940000],[-24.370000,69.680000],[-24.040000,69.400000],[-23.710000,69.850000],[-23.370000,69.560000],[-22.830000,69.160000],[-22.390000,68.800000],[-22.090000,69.200000],[-21.450000,68.650000],[-20.880000,68.280000],[-20.710000,68.560000],[-20.290000,68.210000],[-20.470000,67.900000],[-20.280000,67.770000],[-20.370000,67.590000],[-20.070000,67.310000],[-20.220000,67.040000],[-19.870000,66.750000],[-20.080000,66.430000],[-19.580000,66.030000],[-18.830000,65.520000],[-18.060000,65.010000],[-17.780000,65.540000],[-17.450000,66.140000],[-17.090000,66.710000],[-16.660000,67.410000],[-16.140000,67.030000],[-15.940000,67.380000],[-15.820000,67.290000],[-15.270000,66.890000],[-14.700000,66.490000],[-13.980000,65.930000],[-13.780000,66.210000],[-13.270000,65.820000],[-12.830000,66.370000],[-12.020000,65.700000],[-11.560000,66.420000],[-11.210000,66.170000],[-10.760000,66.790000],[-10.350000,66.460000],[-9.630000,67.380000],[-9.270000,67.090000],[-8.490000,68.040000],[-8.030000,67.640000],[-7.650000,68.070000],[-7.250000,67.810000],[-6.820000,68.290000],[-6.820000,68.290000],[-5.435400,68.556300],[-2.995600,73.276400],[-1.523400,84.196600],[7.281600,88.346800],[20.027800,88.024800],[100.000000,1000.000000],[15.156900,264.203000],[14.702000,270.125000],[15.145000,270.442000],[16.197800,272.204000],[16.732400,275.641000],[16.858700,277.205000],[17.386300,278.432000],[18.150600,281.113000],[19.021900,282.839000],[19.390300,285.221000],[20.727200,287.346000],[19.627000,290.713000],[19.732100,295.232000],[19.544200,295.979000],[19.321300,296.606000],[19.081000,297.353000],[18.554500,298.136000],[18.156600,298.819000],[17.783400,299.302000],[17.444100,299.657000],[17.086700,300.031000],[17.095400,300.031000],[16.500500,300.405000],[15.912500,300.725000],[15.339900,300.835000],[14.889500,300.936000],[14.367100,300.983000],[13.950000,300.984000],[13.629900,300.939000],[13.211300,300.876000],[12.899100,300.859000],[12.532900,300.814000],[12.228900,300.778000],[12.005000,300.724000],[11.825800,300.707000],[11.592700,300.698000],[11.368600,300.744000],[11.133700,292.642000],[12.603200,289.019000],[11.583300,285.511000],[9.931100,282.823000],[7.157800,281.565000],[7.192600,280.313000],[7.212500,280.140000],[7.317800,279.614000],[7.356800,279.350000],[7.452600,278.851000],[7.499700,278.688000],[7.574900,278.434000],[7.688600,277.953000],[7.718000,277.745000],[7.831200,277.309000],[7.888400,277.037000],[8.159200,276.258000],[8.306600,276.014000],[8.453200,275.843000],[8.681200,275.663000],[8.772700,275.564000],[8.837100,275.456000],[8.975700,275.157000],[9.123400,274.849000],[9.224300,274.705000],[9.399000,274.398000],[9.647400,273.927000],[9.820600,273.747000],[10.066500,273.495000],[10.284600,273.298000],[10.575900,272.973000],[10.776000,272.748000],[10.931400,272.486000],[11.196000,272.071000],[11.305300,271.908000],[11.497200,271.565000],[11.607300,271.311000],[11.745100,270.976000],[11.837800,270.668000],[12.047600,270.279000],[12.158000,269.971000],[12.395600,269.464000],[12.488000,269.156000],[12.688800,268.731000],[12.953300,268.152000],[13.289900,267.464000],[13.362100,267.365000],[13.470600,267.193000],[13.949700,266.389000],[14.084900,266.182000],[14.264700,265.947000],[14.409000,265.694000],[14.724100,265.170000],[15.192100,264.329000],[100.000000,1000.000000],[-0.104000,278.927000],[-0.104000,277.196000],[3.118200,277.196000],[3.164100,276.625000],[3.114300,275.531000],[2.531900,275.435000],[1.600300,275.424000],[1.642500,274.653000],[1.351000,274.564000],[1.738300,269.305000],[1.815000,268.442000],[2.010600,268.464000],[1.991400,267.881000],[2.198400,267.912000],[2.229100,267.755000],[2.370900,266.389000],[2.505100,264.801000],[2.221400,264.774000],[2.236800,263.880000],[1.772800,263.826000],[1.899400,262.414000],[2.087200,262.449000],[2.075700,262.154000],[2.213800,261.110000],[2.114100,261.083000],[2.209900,260.143000],[2.068100,260.147000],[2.071900,259.246000],[2.102600,258.041000],[2.146700,258.265000],[2.896300,258.600000],[3.748300,257.740000],[3.748300,257.740000],[3.776800,257.818000],[5.528000,257.542000],[7.182700,257.343000],[8.399000,257.040000],[8.342100,255.770000],[8.455900,255.743000],[9.172400,255.705000],[10.016000,255.705000],[10.121700,256.403000],[10.276500,256.372000],[10.936400,256.261000],[11.872800,256.123000],[11.891600,256.230000],[12.585200,256.073000],[14.070900,255.563000],[15.273300,255.310000],[15.106700,254.680000],[15.558100,254.642000],[16.262700,254.604000],[17.030900,254.630000],[17.012600,254.466000],[17.766800,254.600000],[19.010200,254.714000],[19.010200,254.714000],[18.975300,254.750000],[18.704000,255.056000],[18.467700,255.290000],[18.222400,255.515000],[18.081700,255.686000],[17.797900,256.228000],[17.637900,256.554000],[17.371100,257.069000],[17.148200,257.540000],[16.942400,258.010000],[16.771000,258.527000],[16.698500,258.762000],[16.364000,259.786000],[16.175100,260.239000],[16.048700,260.574000],[15.904600,260.918000],[15.813700,261.208000],[15.668100,261.688000],[15.550000,262.051000],[15.450300,262.322000],[15.386300,262.549000],[15.349500,262.703000],[15.292700,263.085000],[15.264000,263.312000],[15.262000,263.512000],[15.250600,263.766000],[15.239900,263.957000],[15.220800,264.102000],[15.192700,264.266000],[15.192100,264.329000],[14.724100,265.170000],[14.409000,265.694000],[14.264700,265.947000],[14.084900,266.182000],[13.949700,266.389000],[13.470600,267.193000],[13.362100,267.365000],[13.289900,267.464000],[12.953300,268.152000],[12.688800,268.731000],[12.488000,269.156000],[12.395600,269.464000],[12.158000,269.971000],[12.047600,270.279000],[11.837800,270.668000],[11.745100,270.976000],[11.607300,271.311000],[11.497200,271.565000],[11.305300,271.908000],[11.196000,272.071000],[10.931400,272.486000],[10.776000,272.748000],[10.575900,272.973000],[10.284600,273.298000],[10.066500,273.495000],[9.820600,273.747000],[9.647400,273.927000],[9.399000,274.398000],[9.224300,274.705000],[9.123400,274.849000],[8.975700,275.157000],[8.837100,275.456000],[8.772700,275.564000],[8.681200,275.663000],[8.453200,275.843000],[8.306600,276.014000],[8.159200,276.258000],[7.888400,277.037000],[7.831200,277.309000],[7.718000,277.745000],[7.688600,277.953000],[7.574900,278.434000],[7.499700,278.688000],[7.452600,278.851000],[7.356800,279.350000],[7.317800,279.614000],[7.212500,280.140000],[7.192600,280.313000],[7.157800,281.565000],[7.099200,280.566000],[7.043000,280.729000],[6.995400,280.938000],[7.039000,281.120000],[7.011100,281.184000],[6.716200,281.590000],[6.469600,281.705000],[6.341200,281.804000],[6.039500,281.956000],[5.820300,282.026000],[5.573900,282.078000],[5.373500,282.076000],[5.173100,282.074000],[5.100500,282.046000],[5.100500,282.046000],[5.091400,282.036000],[4.348300,281.583000],[4.056700,281.544000],[3.894100,281.378000],[3.576700,281.166000],[3.368900,280.936000],[3.042800,280.669000],[2.661800,280.392000],[2.317000,280.143000],[2.108200,279.995000],[1.771900,279.792000],[1.426600,279.570000],[1.016700,279.393000],[0.698000,279.244000],[0.342500,279.113000],[-0.104000,278.927000],[100.000000,1000.000000],[-23.095600,245.438000],[-23.132100,244.937000],[-23.452600,245.043000],[-23.645300,244.574000],[-23.961000,244.669000],[-24.351700,243.647000],[-24.478100,243.687000],[-24.705300,243.734000],[-24.928400,243.805000],[-25.126000,243.868000],[-25.334100,243.979000],[-25.538100,244.101000],[-25.702600,244.231000],[-25.863200,244.353000],[-26.016600,244.487000],[-26.180300,244.649000],[-26.319000,244.783000],[-26.393600,244.890000],[-26.631300,245.375000],[-26.649000,246.660000],[-26.649000,246.660000],[-26.688000,247.362000],[-26.624200,247.417000],[-26.567500,247.429000],[-26.471700,247.425000],[-26.400700,247.409000],[-26.319000,247.386000],[-26.244400,247.386000],[-26.123400,247.390000],[-26.055700,247.390000],[-26.183900,247.551000],[-26.134100,247.559000],[-26.102000,247.559000],[-25.998700,247.539000],[-25.956000,247.512000],[-25.906100,247.484000],[-25.827600,247.492000],[-25.713300,247.500000],[-25.624000,247.531000],[-25.756200,247.658000],[-25.674000,247.701000],[-25.584600,247.713000],[-25.495200,247.685000],[-25.276700,247.634000],[-25.452300,247.819000],[-25.352000,247.811000],[-25.283900,247.792000],[-25.194200,247.764000],[-25.115200,247.725000],[-25.075700,247.717000],[-25.000300,247.713000],[-24.896000,247.721000],[-24.719700,247.697000],[-24.611600,247.725000],[-25.215700,248.123000],[-25.129600,248.139000],[-25.039800,248.170000],[-24.903200,248.202000],[-24.788100,248.222000],[-24.687300,248.194000],[-24.604400,248.170000],[-24.496200,248.155000],[-24.373400,248.151000],[-24.268600,248.147000],[-24.185400,248.162000],[-24.069600,248.194000],[-23.881200,248.230000],[-23.790500,248.269000],[-24.076900,248.584000],[-24.037000,248.596000],[-23.975500,248.608000],[-23.870300,248.620000],[-23.707100,248.628000],[-23.532700,248.624000],[-23.398100,248.600000],[-23.285200,248.537000],[-23.186800,248.431000],[-23.070100,248.304000],[-22.946000,248.178000],[-22.876600,248.084000],[-22.785200,248.013000],[-23.033600,246.672000],[-23.095600,245.438000],[100.000000,1000.000000],[77.680000,125.550000],[75.504600,127.410100],[74.077900,128.626600],[72.474900,129.588300],[71.219100,130.511300],[70.061400,131.244400],[69.132100,132.304100],[68.282000,133.425500],[67.418800,134.933200],[66.371000,137.791300],[64.924000,141.503700],[63.835200,144.349200],[62.777300,146.749300],[61.937300,148.632600],[61.246600,149.705800],[60.660300,150.698300],[60.115400,151.486800],[59.780000,151.776600],[59.483300,151.875900],[59.097800,151.665300],[58.648300,151.199300],[58.320300,150.630400],[58.046000,149.739400],[57.795100,148.808500],[57.532900,148.009500],[57.295000,147.284700],[56.551500,145.673200],[56.130900,144.690200],[55.888800,144.124800],[55.764200,143.792800],[47.115900,145.137500],[42.703400,148.029200],[42.703400,148.029200],[42.577300,147.820400],[42.459600,147.600000],[42.349200,147.402900],[42.228900,147.197100],[42.133400,147.051100],[42.010400,146.855500],[41.951600,146.670100],[41.836000,146.446700],[41.728900,146.238000],[41.674200,146.081800],[41.548200,145.884700],[41.427500,145.694900],[41.329600,145.402900],[41.234900,145.189800],[41.164300,144.992700],[41.130100,144.910900],[41.091500,144.781000],[41.057200,144.697800],[41.008600,144.640900],[41.008600,144.640900],[40.940000,144.627700],[40.835800,144.611700],[40.720400,144.611700],[40.550300,144.480300],[40.367400,144.398500],[40.204200,144.328500],[40.068600,144.281800],[39.928200,144.254000],[39.767300,144.226300],[39.557500,144.238000],[39.374100,144.204400],[39.123300,144.186900],[38.909200,144.119700],[38.709300,144.062800],[38.535200,144.016100],[38.359500,143.973700],[38.166200,143.929900],[37.929500,143.889100],[37.710600,143.843800],[37.478300,143.744500],[37.288400,143.635000],[37.058300,143.518200],[36.861500,143.407300],[36.647700,143.277400],[36.519300,143.153300],[36.340000,143.017500],[36.211200,142.981000],[36.135400,142.816100],[36.064300,142.680300],[36.000300,142.604400],[35.943300,142.554700],[34.309800,141.991800],[34.309800,141.991800],[34.303700,141.964100],[34.290500,141.613300],[34.401500,141.011300],[34.655500,140.153400],[34.936300,139.516300],[35.265100,138.828000],[33.880200,138.170400],[33.880200,138.170400],[33.608000,137.838700],[33.283600,137.353500],[32.998500,136.574600],[32.852600,136.219500],[32.541400,135.205300],[32.252700,134.565200],[31.642600,133.516000],[30.924500,132.588000],[30.391500,132.037100],[29.789700,131.478900],[29.505200,131.334200],[28.608400,130.884100],[27.742800,130.505600],[27.733700,130.510000],[27.264500,130.244000],[26.685000,129.776400],[25.791000,128.978500],[24.975100,127.980400],[24.325600,127.213200],[23.703600,126.405100],[23.229100,125.333900],[23.018100,124.299300],[22.923900,123.070300],[22.923900,123.070300],[24.757400,121.744400],[24.566700,121.652600],[24.400600,121.588100],[23.917500,121.440400],[23.633400,121.357200],[23.181000,121.209600],[22.937500,121.099400],[22.668300,120.989000],[22.204100,120.841400],[21.907700,120.794600],[21.525800,120.729200],[21.032000,120.636000],[20.485300,120.506200],[19.901900,120.467200],[19.867300,120.521700],[19.772000,120.685000],[19.650400,120.930000],[19.519800,121.247800],[19.389500,121.465600],[19.181000,121.792100],[18.981400,121.991400],[18.859700,122.127300],[18.659900,122.262800],[18.434000,122.371000],[18.182100,122.406300],[17.537800,122.430800],[17.371800,122.484600],[17.188000,122.565700],[17.091600,122.628900],[16.811500,122.664100],[16.662500,122.663500],[16.478800,122.589900],[16.224700,122.470500],[15.926500,122.332800],[15.698200,122.204500],[15.328700,122.039100],[15.275800,122.029800],[15.222300,122.147800],[15.115600,122.320200],[14.937800,122.583300],[14.821700,122.846500],[14.731500,123.246400],[14.703800,123.519200],[14.754700,124.019700],[14.814800,124.438400],[14.805200,124.611200],[14.716500,124.665400],[14.539000,124.773800],[14.352400,124.891300],[14.183600,124.972400],[13.943400,125.107800],[13.711900,125.243300],[13.489000,125.369700],[13.212200,125.568600],[12.944000,125.758500],[12.568300,125.957100],[12.371300,126.074500],[12.021600,126.282200],[11.653700,126.435300],[11.465300,126.480000],[11.159500,126.642500],[10.799800,126.731900],[10.557000,126.730900],[10.349900,126.766400],[10.169700,126.792900],[9.763800,126.864000],[9.384600,126.917000],[8.941600,127.006100],[8.561200,127.104600],[8.153600,127.157500],[7.836100,127.228900],[7.318700,127.281300],[6.964400,127.325300],[6.536900,127.405400],[6.200000,127.485900],[5.789800,127.611600],[5.579900,127.701600],[5.260400,127.845900],[5.041200,127.954100],[4.611200,128.252500],[4.190300,128.487300],[3.925100,128.604500],[3.595500,128.785000],[3.366400,128.929600],[2.981800,129.110000],[2.624700,129.226800],[2.487300,129.280800],[2.057000,129.388200],[1.828100,129.423600],[1.388500,129.521900],[1.150100,129.630100],[1.067400,129.702500],[0.783200,129.810500],[0.645600,129.873600],[0.499100,129.882100],[0.279500,129.872100],[0.133100,129.871500],[0.014000,129.880100],[-0.196700,129.933800],[-0.370800,129.978600],[-0.517500,130.023500],[-0.618500,130.095800],[-0.756300,130.204400],[-0.884800,130.285800],[-1.022400,130.367100],[-1.077500,130.394200],[-1.205700,130.411800],[-1.342400,130.283900],[-1.497200,130.119500],[-1.560700,130.001000],[-1.669900,129.873200],[-1.761100,129.800000],[-1.797600,129.781700],[-1.943900,129.753800],[-1.980500,129.753600],[-2.099700,129.816800],[-2.127500,129.916800],[-2.155500,130.025800],[-2.202100,130.225800],[-2.257800,130.398400],[-2.359400,130.625400],[-2.451600,130.788800],[-2.525400,130.934000],[-2.608400,131.088300],[-2.682300,131.270000],[-2.783800,131.469700],[-2.912400,131.605600],[-3.022800,131.768900],[-3.151600,131.959400],[-3.307900,132.168000],[-3.409300,132.349500],[-3.482900,132.467500],[-3.684400,132.584900],[-3.894900,132.693200],[-4.096300,132.801600],[-4.224900,132.983000],[-4.326500,133.255500],[-4.345900,133.491900],[-4.328100,133.610200],[-4.256000,133.810700],[-4.211100,133.974600],[-4.293400,134.019800],[-4.412200,134.037500],[-4.612700,133.991200],[-4.858900,133.953800],[-5.050200,133.925700],[-5.114000,133.907200],[-5.396100,133.806000],[-5.396100,133.806000],[-5.632200,133.641300],[-5.704800,133.577300],[-6.085800,133.257300],[-6.230800,133.138500],[-6.484700,132.937300],[-6.656900,132.818300],[-6.810700,132.663000],[-7.046100,132.471000],[-7.290600,132.297100],[-7.534800,132.105100],[-7.697300,131.922400],[-8.238800,131.392500],[-8.283800,131.328700],[-8.373700,131.191900],[-8.472500,131.009500],[-8.535300,130.881900],[-8.687500,130.508200],[-8.740800,130.289700],[-8.812200,130.071000],[-8.892000,129.715900],[-8.926700,129.379200],[-8.979500,129.051400],[-9.041100,128.660000],[-9.084900,128.350500],[-9.173300,127.904300],[-9.252500,127.421800],[-9.341300,127.075700],[-9.706700,126.028000],[-9.885700,125.718000],[-9.948400,125.626700],[-10.225300,125.052400],[-10.430500,124.623900],[-10.519400,124.387000],[-10.706100,123.876800],[-10.874500,123.339300],[-11.183700,122.155300],[-11.333900,121.590600],[-11.395000,121.217300],[-11.419300,120.616800],[-11.390900,120.271200],[-11.326400,119.880300],[-11.369000,119.361500],[-11.246100,117.951900],[-11.217000,117.460700],[-11.241700,116.951100],[-11.221800,116.496300],[-11.145900,115.577800],[-11.080800,115.068600],[-10.997100,114.423000],[-10.940600,113.822800],[-10.765600,112.859100],[-10.628400,112.332000],[-10.408400,111.432300],[-10.370900,111.095800],[-10.360100,110.677400],[-10.349400,110.304400],[-10.347300,109.822200],[-10.318600,109.431100],[-10.307800,109.021800],[-10.215200,108.449000],[-10.105500,108.076400],[-9.977700,107.722200],[-9.813600,107.313500],[-9.640500,106.932100],[-9.404200,106.560100],[-9.276800,106.342300],[-9.049200,105.952100],[-8.876200,105.670800],[-8.484100,105.008300],[-8.410600,104.744800],[-8.328100,104.526800],[-8.090900,104.154800],[-7.971800,103.873200],[-7.797900,103.510100],[-7.660500,103.192200],[-7.477400,102.838200],[-7.167100,102.466500],[-6.929700,102.194600],[-6.683000,101.904500],[-6.427100,101.605400],[-6.207900,101.415300],[-5.915700,101.216300],[-5.677900,100.989900],[-5.284400,100.591300],[-5.000800,100.374100],[-4.762900,100.211400],[-4.424400,100.012700],[-4.177200,99.831800],[-3.755600,99.487900],[-3.471200,99.216200],[-3.177700,98.980900],[-2.865800,98.745600],[-2.737100,98.573300],[-2.259400,98.111400],[-1.810300,97.904100],[-1.617700,97.813900],[-0.948000,97.434700],[-0.902000,97.380300],[-0.727600,97.280900],[-0.433800,97.091200],[-0.259400,96.964500],[-0.011600,96.820000],[0.272900,96.666600],[0.447300,96.567300],[0.685900,96.422700],[1.034800,96.178500],[1.291800,96.015900],[1.457200,95.861900],[1.714400,95.626500],[1.953400,95.381900],[2.110000,95.146000],[2.358000,94.910600],[2.450100,94.756300],[2.854300,94.348600],[3.001100,94.212800],[3.157200,94.058800],[3.313100,93.941200],[3.569700,93.760300],[3.862500,93.652400],[4.082300,93.498700],[4.448900,93.181900],[4.540300,93.136800],[4.933300,92.956500],[5.262000,92.848800],[5.545100,92.722600],[5.827800,92.632900],[6.165000,92.552400],[6.802100,92.418700],[7.448100,92.148600],[7.984500,91.850700],[8.383700,91.716000],[8.573900,91.680400],[8.927000,91.609200],[9.216400,91.565000],[9.451300,91.529600],[9.667900,91.530500],[9.983600,91.513700],[10.109800,91.505200],[10.379700,91.542800],[10.676500,91.571300],[10.999900,91.609200],[11.331800,91.656100],[11.788800,91.712700],[12.084200,91.714000],[12.477400,91.761200],[12.780500,91.862600],[13.234600,91.992000],[13.545500,92.120700],[13.909500,92.213300],[14.299300,92.360600],[14.697000,92.562500],[15.023300,92.764100],[15.296400,92.901700],[15.657200,93.058000],[16.193100,93.224100],[16.561200,93.335000],[16.858900,93.372700],[17.077600,93.391900],[17.461900,93.393600],[17.862700,93.413600],[18.228000,93.388000],[18.688300,93.271800],[19.061100,93.109700],[19.502400,92.884300],[19.830600,92.658400],[20.261400,92.342000],[20.991300,91.763100],[21.222800,91.491200],[21.445300,91.228500],[21.573800,91.019800],[21.796200,90.666100],[21.805700,90.420500],[21.832300,90.156800],[21.765200,89.965500],[21.697600,89.865100],[21.579200,89.737200],[21.443900,89.536400],[21.516100,89.606600],[21.516100,89.606600],[29.074200,97.442400],[30.063200,95.277100],[29.058000,93.489700],[29.407100,84.983300],[30.900000,81.017200],[36.351200,74.195200],[36.265000,71.478300],[24.690200,63.412500],[24.690200,63.412500],[26.660800,60.281100],[26.701300,60.135500],[26.815000,59.862600],[26.920300,59.544200],[27.009200,59.225900],[27.040900,58.807800],[27.024300,58.644200],[27.121100,58.244100],[27.234500,58.016600],[27.363900,57.789000],[27.566100,57.524900],[27.881000,57.224200],[28.146700,56.941700],[28.466900,56.141100],[28.530700,55.904600],[28.730300,55.467900],[29.097000,54.848900],[29.984200,53.274200],[30.126200,53.110200],[30.386200,52.864100],[30.739700,52.590500],[31.177700,52.171200],[32.016500,51.369100],[32.163200,51.177900],[32.432700,50.804500],[32.685800,50.313000],[32.945800,49.767000],[33.189400,49.075600],[33.530300,47.838600],[33.629000,47.738300],[33.879300,47.546700],[34.227000,47.345800],[34.377600,47.200000],[34.835300,46.735100],[35.111700,46.470800],[35.349900,46.179300],[35.557600,45.887800],[35.927400,45.423300],[36.244100,45.113300],[36.669400,44.757600],[37.070700,44.465600],[37.664800,43.982200],[38.363200,40.453700],[37.774700,37.110600],[36.169100,36.715300],[34.110000,33.985300],[34.110000,33.985300],[34.774100,26.902700],[34.123400,25.377400],[39.133900,18.182200],[37.184900,16.279000],[39.201000,12.318900],[37.884400,10.895600],[37.662900,8.187300],[37.317400,5.561200],[37.254400,2.961400],[36.673300,359.039000],[36.673300,359.039000],[36.088100,357.423000],[36.340400,357.162000],[35.738900,355.714000],[36.265500,355.151000],[36.088100,354.570000],[35.711500,353.518000],[35.464000,352.962000],[35.181200,352.289000],[34.980500,351.717000],[35.353700,351.406000],[35.732000,351.136000],[36.012900,350.909000],[36.374500,350.598000],[36.747900,350.236000],[37.294500,349.697000],[36.360800,347.980000],[36.612300,347.543000],[37.085800,346.793000],[37.556300,345.918000],[37.240700,345.119000],[37.415400,344.622000],[37.569700,344.100000],[37.636600,343.536000],[37.696900,343.006000],[37.710200,342.602000],[37.716900,342.198000],[37.609900,341.567000],[37.529500,341.045000],[37.442300,340.700000],[37.308000,340.153000],[37.234000,339.657000],[37.173400,339.194000],[37.058800,338.394000],[37.038600,337.864000],[36.991300,337.081000],[36.894700,336.947000],[36.888000,336.836000],[36.883700,336.746000],[36.870800,336.642000],[36.868400,336.554000],[36.856800,336.443000],[36.844500,336.344000],[36.830400,336.258000],[36.821300,336.191000],[36.809000,336.081000],[36.799800,336.018000],[36.792500,335.918000],[36.787600,335.852000],[36.781400,335.745000],[36.790600,335.687000],[36.865300,335.616000],[36.908800,335.568000],[36.972400,335.501000],[37.017000,335.446000],[37.096300,335.368000],[37.128100,335.321000],[37.217100,335.252000],[37.273100,335.263000],[37.353400,335.299000],[37.410500,335.336000],[37.467600,335.266000],[37.498600,335.224000],[37.533800,335.185000],[37.552000,335.156000],[37.584700,335.110000],[37.607700,335.067000],[37.643500,335.016000],[37.648300,334.900000],[37.768800,334.732000],[37.662300,334.646000],[37.718000,334.572000],[37.750600,334.538000],[37.818300,334.462000],[37.723400,334.366000],[37.788700,334.300000],[37.815300,334.264000],[37.878700,334.190000],[37.840100,334.082000],[37.935500,333.957000],[37.965600,333.923000],[38.037400,333.828000],[38.047000,333.697000],[38.118000,333.620000],[38.148100,333.584000],[38.222100,333.504000],[38.255700,333.465000],[38.322400,333.385000],[38.357200,333.352000],[38.420100,333.283000],[38.279800,333.171000],[38.359000,333.098000],[38.399100,333.057000],[38.464500,332.994000],[38.492000,332.969000],[38.569200,332.911000],[38.609200,332.873000],[38.666000,332.827000],[38.701800,332.798000],[38.777600,332.760000],[38.783000,332.513000],[38.834200,332.439000],[38.865200,332.394000],[38.913400,332.323000],[38.942000,332.279000],[39.001400,332.206000],[39.005600,332.045000],[38.983000,331.940000],[38.967500,331.878000],[38.952100,331.787000],[38.938400,331.710000],[38.993700,331.656000],[39.019300,331.634000],[39.056700,331.604000],[39.091100,331.579000],[39.132700,331.550000],[39.157000,331.515000],[39.128500,331.432000],[39.119600,331.380000],[39.180100,331.336000],[39.215700,331.312000],[39.264200,331.256000],[39.301000,331.218000],[39.372500,331.147000],[39.413300,331.106000],[39.380200,331.048000],[39.365400,331.017000],[39.336500,330.949000],[39.322900,330.912000],[39.292100,330.853000],[39.277300,330.815000],[39.251800,330.739000],[39.257100,330.703000],[39.313400,330.665000],[39.386600,330.094000],[39.397300,330.238000],[39.992900,330.391000],[40.034200,330.390000],[40.073900,330.412000],[40.105100,330.420000],[40.106800,330.346000],[40.205900,330.362000],[40.290800,330.372000],[40.380900,330.405000],[40.467400,330.425000],[40.552900,330.429000],[40.599100,330.433000],[40.565900,330.660000],[40.702700,330.692000],[40.869000,330.722000],[40.982500,330.741000],[41.122800,330.761000],[41.209800,330.775000],[41.245700,330.680000],[41.384500,330.716000],[41.525700,330.753000],[41.679600,330.786000],[41.803000,330.803000],[41.912300,330.842000],[41.926900,330.739000],[42.082400,330.755000],[42.180500,330.756000],[42.233000,330.772000],[42.288800,330.778000],[42.286100,330.572000],[42.415000,330.610000],[42.530000,330.640000],[42.606700,330.660000],[42.673700,330.678000],[42.714800,330.685000],[42.727800,330.624000],[42.835900,330.649000],[42.953900,330.674000],[43.023700,330.689000],[43.084900,330.690000],[43.077000,330.826000],[43.209700,330.901000],[43.387400,330.994000],[43.491100,331.064000],[43.626000,331.116000],[43.697100,331.167000],[43.771900,331.204000],[43.762400,331.471000],[43.839200,331.490000],[43.932700,331.511000],[44.026900,331.526000],[44.095400,331.554000],[44.144300,331.557000],[44.199000,331.574000],[44.181100,331.629000],[44.301400,331.677000],[44.301400,331.677000],[44.403800,331.708000],[44.513200,331.744000],[44.624100,331.788000],[44.746700,331.837000],[44.813700,331.855000],[44.861800,331.865000],[44.907800,331.895000],[44.919000,331.835000],[44.968100,331.859000],[45.031900,331.883000],[45.065200,331.894000],[45.123200,331.927000],[45.100400,332.002000],[45.168400,332.010000],[45.214100,332.019000],[45.284900,332.024000],[45.344500,332.019000],[45.333200,332.055000],[45.394100,332.062000],[45.428100,332.065000],[45.466200,332.077000],[45.451800,332.120000],[45.479800,332.133000],[45.523100,332.142000],[45.539700,332.125000],[45.531400,332.179000],[45.598300,332.197000],[45.703600,332.224000],[45.824800,332.241000],[45.880100,332.253000],[45.884000,332.307000],[45.935300,332.311000],[45.980400,332.325000],[45.982100,332.400000],[46.074500,332.410000],[46.143700,332.430000],[46.209300,332.438000],[46.207900,332.494000],[46.299900,332.509000],[46.353300,332.514000],[46.482500,332.526000],[46.636800,332.555000],[46.695600,332.558000],[46.757100,332.558000],[46.754000,332.630000],[46.852300,332.632000],[46.924600,332.645000],[46.997800,332.674000],[47.109600,332.621000],[47.204200,332.568000],[47.267300,332.532000],[47.343100,332.536000],[47.400000,332.535000],[47.471400,332.534000],[47.525500,332.558000],[47.597700,332.550000],[47.661300,332.533000],[47.655100,332.433000],[47.780900,332.408000],[47.885200,332.378000],[47.995100,332.365000],[48.090700,332.348000],[48.204900,332.294000],[48.324500,332.283000],[48.424400,332.270000],[48.517200,332.255000],[48.589200,332.251000],[48.608700,332.114000],[48.607100,331.990000],[48.687000,331.958000],[48.807600,331.912000],[48.908400,331.842000],[48.999900,331.793000],[49.094000,331.740000],[49.166600,331.682000],[49.217600,331.642000],[49.283300,331.578000],[49.372400,331.550000],[49.479800,331.511000],[49.578400,331.463000],[49.637900,331.435000],[49.650600,331.282000],[49.650400,331.183000],[49.736200,331.138000],[49.811600,331.098000],[49.901800,331.031000],[49.986700,331.020000],[50.064800,331.004000],[50.148000,330.985000],[50.190000,330.879000],[50.224800,330.798000],[50.325100,330.674000],[50.415600,330.575000],[50.467400,330.494000],[50.495000,330.461000],[50.602000,330.341000],[50.693000,330.233000],[50.748400,330.164000],[50.786300,330.125000],[50.860500,330.095000],[50.932200,330.064000],[50.992800,330.018000],[51.101400,330.018000],[51.256000,329.997000],[51.419100,329.993000],[51.626100,329.996000],[51.762200,329.990000],[51.854500,329.979000],[51.949500,329.964000],[52.027200,329.978000],[52.058800,329.632000],[52.089000,329.193000],[52.101100,328.943000],[52.104700,328.731000],[52.258900,328.745000],[52.345400,328.742000],[52.421800,328.741000],[52.469700,328.423000],[52.504800,328.135000],[52.523000,327.939000],[52.556900,327.650000],[52.583100,327.354000],[52.598800,327.138000],[52.617400,326.991000],[52.617400,326.991000],[52.630900,326.673000],[52.642300,326.285000],[52.668100,325.830000],[52.679600,325.434000],[52.703200,325.067000],[52.698300,325.124000],[52.699400,324.982000],[52.712000,324.857000],[52.860200,324.841000],[52.990900,324.836000],[53.131500,324.823000],[53.205600,324.819000],[53.240700,324.679000],[53.381900,324.715000],[53.469400,324.741000],[53.511000,324.746000],[53.545800,324.547000],[53.671300,324.610000],[53.830900,324.682000],[53.954000,324.742000],[54.111800,324.793000],[54.220500,324.844000],[54.304800,324.888000],[54.322400,324.696000],[54.334300,324.512000],[54.516000,324.587000],[54.673900,324.639000],[54.789400,324.707000],[54.906400,324.734000],[54.970300,324.797000],[54.997400,324.672000],[55.147100,324.745000],[55.325800,324.832000],[55.489600,324.921000],[55.684300,325.033000],[55.777500,325.102000],[55.850200,325.129000],[55.812900,325.369000],[55.935300,325.382000],[56.061000,325.435000],[56.061000,325.435000],[56.211400,325.487000],[56.343700,325.502000],[56.440700,325.534000],[56.501100,325.560000],[56.496500,325.662000],[56.579000,325.688000],[56.660100,325.745000],[56.744700,325.781000],[56.698500,325.926000],[56.776000,325.952000],[56.832800,326.001000],[56.900300,326.030000],[56.880000,326.194000],[56.876400,326.315000],[56.868900,326.413000],[56.995900,326.435000],[57.088500,326.456000],[57.163500,326.482000],[57.258700,326.499000],[57.269600,326.620000],[57.282400,326.795000],[57.450700,326.918000],[57.548000,326.987000],[57.609900,327.027000],[57.665700,327.088000],[57.645300,327.186000],[57.774500,327.299000],[57.880700,327.381000],[57.954900,327.504000],[58.009600,327.538000],[58.000300,327.732000],[58.141800,327.880000],[58.253600,328.027000],[58.335500,328.135000],[58.398500,328.192000],[58.465800,328.260000],[58.443900,328.443000],[58.571100,328.574000],[58.683800,328.697000],[58.798900,328.821000],[58.888200,328.959000],[58.972000,329.033000],[58.945400,329.199000],[59.094600,329.360000],[59.234700,329.539000],[59.386200,329.698000],[59.527100,329.832000],[59.624000,329.959000],[59.747600,330.153000],[59.873000,330.355000],[59.966400,330.488000],[60.081100,330.634000],[60.173800,330.774000],[60.266300,330.885000],[60.335400,330.979000],[60.303900,331.088000],[60.422700,331.179000],[60.558600,331.363000],[60.705400,331.588000],[60.849400,331.815000],[60.959900,331.969000],[61.067600,332.154000],[61.254200,332.424000],[61.391700,332.605000],[61.533300,332.767000],[61.660700,332.973000],[61.831100,333.247000],[61.941300,333.471000],[62.102400,333.683000],[62.238900,333.891000],[62.378600,334.113000],[62.509700,334.345000],[62.621800,334.563000],[62.617600,334.697000],[62.715000,334.840000],[62.804500,334.963000],[62.920700,335.117000],[62.996900,335.268000],[63.115100,335.471000],[63.099800,335.562000],[63.234100,335.754000],[63.347900,335.992000],[63.474600,336.267000],[63.568500,336.521000],[63.653000,336.679000],[63.697300,336.837000],[63.651300,336.946000],[63.771300,337.123000],[63.795300,337.195000],[63.814200,337.350000],[63.839400,337.453000],[63.894400,337.540000],[63.946700,337.648000],[63.971100,337.716000],[63.814500,337.752000],[63.860200,337.851000],[63.918600,337.930000],[63.981500,338.053000],[64.034000,338.157000],[63.867000,338.075000],[63.913600,338.146000],[63.964200,338.226000],[63.998100,338.278000],[64.017700,338.303000],[63.816200,338.271000],[63.878600,338.376000],[63.922400,338.429000],[64.013800,338.584000],[64.069500,338.681000],[64.143400,338.738000],[64.211400,338.839000],[64.302000,338.979000],[64.124600,339.104000],[64.192400,339.206000],[64.328200,339.386000],[64.431400,339.545000],[64.512700,339.641000],[64.627900,339.823000],[64.707500,339.968000],[64.787600,340.090000],[64.849100,340.198000],[66.160000,342.000000],[66.160000,342.000000],[67.480000,341.480000],[67.740000,341.680000],[68.060000,341.980000],[68.400000,342.300000],[68.700000,342.670000],[68.860000,342.860000],[68.810000,343.510000],[69.040000,343.740000],[69.260000,343.980000],[69.550000,344.270000],[69.840000,344.590000],[70.170000,344.990000],[70.390000,345.260000],[70.520000,345.760000],[70.350000,345.540000],[70.730000,345.980000],[70.820000,346.120000],[70.770000,346.600000],[70.700000,347.090000],[70.570000,347.740000],[70.710000,348.000000],[70.870000,348.330000],[71.050000,348.650000],[71.150000,348.150000],[71.250000,347.650000],[71.250000,347.650000],[71.390000,347.900000],[71.590000,348.270000],[71.780000,348.640000],[71.610000,349.640000],[71.460000,350.600000],[71.220000,352.050000],[71.120000,352.620000],[71.280000,353.100000],[71.390000,353.670000],[71.460000,354.070000],[71.540000,354.310000],[71.430000,354.820000],[71.330000,355.250000],[71.430000,355.640000],[71.490000,355.910000],[71.400000,356.320000],[71.500000,357.060000],[71.590000,357.600000],[71.690000,358.260000],[71.810000,359.030000],[71.910000,359.620000],[72.020000,0.290000],[72.130000,0.910000],[72.320000,1.990000],[72.440000,2.780000],[72.580000,3.620000],[72.700000,4.280000],[72.820000,4.970000],[72.930000,5.590000],[73.020000,6.080000],[73.140000,6.770000],[73.210000,7.080000],[73.250000,7.380000],[73.370000,7.790000],[73.430000,8.140000],[73.490000,8.400000],[73.530000,8.640000],[73.630000,8.820000],[73.710000,8.960000],[73.760000,9.050000],[73.880000,9.140000],[73.980000,9.180000],[74.100000,9.220000],[74.240000,9.160000],[74.380000,9.120000],[74.540000,8.980000],[74.760000,8.800000],[74.940000,8.640000],[75.070000,8.460000],[75.190000,8.210000],[75.380000,7.950000],[75.530000,7.840000],[75.730000,7.630000],[75.980000,7.570000],[76.120000,7.530000],[76.280000,7.470000],[76.430000,7.550000],[76.600000,7.550000],[76.800000,7.620000],[76.970000,7.620000],[77.150000,7.670000],[77.480000,7.800000],[77.710000,7.860000],[77.910000,7.810000],[78.090000,7.840000],[78.240000,7.800000],[78.440000,6.780000],[78.640000,5.630000],[78.810000,4.690000],[78.950000,3.860000],[79.030000,3.420000],[79.230000,3.870000],[79.530000,4.410000],[79.660000,3.270000],[79.780000,2.390000],[79.910000,1.480000],[80.030000,0.610000],[80.150000,359.750000],[80.220000,359.020000],[80.310000,358.240000],[80.370000,357.680000],[80.630000,358.300000],[80.750000,357.080000],[80.790000,356.600000],[80.990000,357.180000],[81.130000,357.580000],[81.250000,356.520000],[81.370000,355.330000],[81.550000,355.860000],[81.620000,356.140000],[81.910000,354.970000],[82.050000,355.490000],[82.290000,356.150000],[82.330000,356.270000],[82.520000,355.000000],[82.690000,354.130000],[82.690000,354.130000],[82.870000,352.790000],[83.000000,353.740000],[83.250000,354.790000],[83.430000,355.890000],[83.570000,356.820000],[83.690000,357.630000],[83.870000,358.790000],[83.990000,359.540000],[84.100000,0.460000],[84.220000,1.350000],[84.350000,2.250000],[84.460000,2.980000],[84.560000,3.850000],[84.590000,4.050000],[84.570000,4.460000],[84.630000,5.150000],[84.760000,6.640000],[84.900000,8.080000],[85.010000,8.930000],[84.960000,9.780000],[85.070000,10.660000],[85.140000,11.700000],[85.280000,13.320000],[85.380000,14.580000],[85.480000,16.100000],[85.590000,17.940000],[85.690000,19.280000],[85.800000,21.340000],[85.820000,23.420000],[85.860000,25.300000],[85.870000,27.330000],[85.880000,28.130000],[85.810000,29.200000],[85.910000,30.930000],[86.050000,33.410000],[86.160000,35.520000],[86.290000,38.340000],[86.430000,41.680000],[86.490000,43.420000],[86.560000,46.240000],[86.600000,45.960000],[86.640000,47.600000],[86.700000,50.830000],[86.750000,54.510000],[86.790000,58.090000],[86.800000,61.520000],[86.760000,62.410000],[86.650000,66.460000],[86.600000,66.350000],[86.470000,69.680000],[86.310000,68.300000],[86.200000,70.970000],[86.100000,73.010000],[85.990000,75.030000],[85.910000,76.360000],[85.770000,78.450000],[85.640000,81.030000],[85.560000,83.140000],[85.500000,84.770000],[85.500000,84.750000],[85.420000,86.830000],[85.350000,88.440000],[85.300000,89.950000],[85.230000,92.400000],[85.160000,94.170000],[85.100000,95.770000],[85.030000,97.280000],[84.960000,98.600000],[84.910000,99.470000],[84.660000,102.870000],[84.580000,103.870000],[84.480000,105.270000],[84.370000,106.730000],[84.300000,107.690000],[84.190000,108.940000],[84.110000,109.720000],[83.970000,111.000000],[83.820000,112.020000],[83.670000,112.830000],[83.510000,113.700000],[83.320000,114.520000],[83.150000,115.210000],[83.010000,115.800000],[82.740000,116.570000],[82.540000,117.160000],[82.300000,117.710000],[82.040000,118.270000],[81.850000,118.600000],[81.550000,119.150000],[81.340000,119.710000],[81.070000,120.210000],[80.870000,120.590000],[80.600000,121.150000],[80.520000,121.290000],[80.170000,121.950000],[79.720000,122.700000],[79.460000,123.200000],[78.910000,123.910000],[78.480000,124.670000],[78.020000,125.260000],[77.680000,125.550000],[100.000000,1000.000000],[12.830000,58.130000],[12.812200,58.297900],[24.690200,63.412500],[24.748300,63.403300],[36.265000,71.478300],[36.351200,74.195200],[30.900000,81.017200],[29.407100,84.983300],[29.058000,93.489700],[30.063200,95.277100],[29.074200,97.442400],[29.026300,97.442500],[20.027800,88.024800],[7.281600,88.346800],[-1.523400,84.196600],[-2.995600,73.276400],[-5.435400,68.556300],[-6.820000,68.290000],[-6.820000,68.290000],[-6.260000,67.780000],[-5.890000,68.220000],[-5.470000,68.610000],[-5.040000,68.200000],[-4.550000,68.750000],[-4.120000,68.350000],[-3.770000,68.670000],[-3.350000,68.270000],[-2.890000,67.890000],[-2.540000,68.250000],[-2.090000,67.790000],[-1.910000,67.930000],[-1.440000,67.370000],[-1.040000,67.660000],[-0.580000,67.020000],[-0.340000,67.210000],[-0.040000,66.840000],[0.340000,67.160000],[0.720000,66.660000],[1.070000,66.870000],[1.330000,66.490000],[1.620000,66.670000],[1.860000,66.330000],[2.050000,65.990000],[2.390000,66.180000],[2.750000,66.380000],[2.970000,65.960000],[3.300000,65.490000],[2.920000,65.210000],[3.300000,64.680000],[3.220000,64.620000],[3.600000,63.890000],[3.480000,63.820000],[3.700000,63.390000],[3.630000,63.330000],[3.890000,62.870000],[4.110000,63.000000],[4.520000,62.460000],[4.910000,62.000000],[5.260000,61.530000],[5.490000,61.660000],[5.910000,61.140000],[6.310000,60.670000],[6.770000,60.040000],[6.950000,60.180000],[7.670000,59.220000],[7.770000,59.310000],[8.100000,58.880000],[8.170000,58.920000],[8.400000,58.610000],[8.650000,58.250000],[8.860000,58.430000],[9.090000,58.150000],[9.290000,58.260000],[9.450000,58.020000],[9.530000,58.060000],[9.940000,57.490000],[9.680000,57.260000],[9.860000,57.030000],[9.860000,56.980000],[9.970000,56.920000],[12.830000,58.130000],[100.000000,1000.000000],[-35.027900,249.510000],[-35.068700,249.156000],[-34.880200,248.551000],[-34.687800,247.884000],[-34.631700,247.752000],[-34.579000,247.667000],[-34.510300,247.588000],[-34.441600,247.515000],[-34.330500,247.421000],[-34.212100,247.369000],[-34.113000,247.347000],[-34.010100,247.331000],[-33.882300,247.324000],[-33.754300,247.316000],[-33.670500,247.333000],[-33.590300,247.349000],[-33.554600,247.357000],[-33.497500,247.382000],[-33.722000,247.458000],[-33.722000,247.458000],[-33.488300,247.497000],[-33.304200,247.500000],[-33.130400,247.530000],[-32.929300,247.543000],[-32.823200,247.547000],[-32.671900,247.548000],[-32.561900,247.562000],[-32.466100,247.584000],[-32.366600,247.624000],[-32.276100,247.666000],[-32.210800,247.697000],[-32.154500,247.726000],[-32.116400,247.743000],[-32.080100,247.749000],[-32.462100,247.786000],[-32.462100,247.786000],[-32.462100,247.784000],[-32.344500,247.819000],[-32.235800,247.867000],[-32.137800,247.909000],[-31.996200,247.927000],[-31.894400,247.928000],[-31.799700,247.949000],[-31.692300,247.954000],[-31.604700,247.958000],[-31.500600,247.970000],[-31.489700,247.976000],[-31.514600,248.246000],[-31.514600,248.246000],[-31.525100,248.454000],[-31.539400,248.556000],[-31.551900,248.686000],[-31.559000,248.775000],[-31.575200,248.869000],[-31.598700,248.967000],[-31.629500,249.058000],[-31.660300,249.127000],[-31.682000,249.233000],[-31.703600,249.352000],[-31.727000,249.471000],[-31.757800,249.540000],[-31.806800,249.617000],[-31.870400,249.679000],[-31.904800,249.737000],[-31.928300,249.803000],[-31.951800,249.888000],[-31.962500,249.960000],[-31.967800,250.016000],[-31.971400,250.071000],[-31.967600,250.115000],[-31.960300,250.158000],[-32.112800,250.172000],[-32.112800,250.172000],[-32.187000,250.285000],[-32.257500,250.366000],[-32.311700,250.448000],[-32.374900,250.522000],[-32.410900,250.574000],[-32.470400,250.666000],[-32.546200,250.737000],[-32.612800,250.809000],[-32.683100,250.880000],[-32.751500,250.927000],[-32.836000,250.983000],[-32.902500,251.033000],[-32.970800,251.067000],[-33.078500,251.117000],[-33.024000,250.519000],[-33.024000,250.519000],[-33.024000,250.519000],[-33.167500,250.597000],[-33.419900,250.667000],[-33.516300,250.704000],[-33.680400,250.767000],[-33.872700,250.734000],[-33.872700,250.734000],[-33.872700,250.734000],[-34.179900,250.726000],[-34.263100,250.733000],[-34.371100,250.736000],[-34.515900,250.733000],[-34.516500,250.382000],[-34.516500,250.382000],[-34.672100,250.100000],[-34.781500,249.923000],[-34.839600,249.834000],[-34.896000,249.747000],[-34.945200,249.660000],[-34.984000,249.578000],[-35.027900,249.510000],[100.000000,1000.000000],[77.680000,125.550000],[78.020000,125.260000],[78.480000,124.670000],[78.910000,123.910000],[79.460000,123.200000],[79.720000,122.700000],[80.170000,121.950000],[80.520000,121.290000],[80.600000,121.150000],[80.870000,120.590000],[81.070000,120.210000],[81.340000,119.710000],[81.550000,119.150000],[81.850000,118.600000],[82.040000,118.270000],[82.300000,117.710000],[82.540000,117.160000],[82.740000,116.570000],[83.010000,115.800000],[83.150000,115.210000],[83.320000,114.520000],[83.510000,113.700000],[83.670000,112.830000],[83.820000,112.020000],[83.970000,111.000000],[84.110000,109.720000],[84.190000,108.940000],[84.300000,107.690000],[84.370000,106.730000],[84.480000,105.270000],[84.580000,103.870000],[84.660000,102.870000],[84.910000,99.470000],[84.960000,98.600000],[85.030000,97.280000],[85.100000,95.770000],[85.160000,94.170000],[85.230000,92.400000],[85.300000,89.950000],[85.350000,88.440000],[85.420000,86.830000],[85.500000,84.750000],[85.500000,84.770000],[85.560000,83.140000],[85.640000,81.030000],[85.770000,78.450000],[85.910000,76.360000],[85.990000,75.030000],[86.100000,73.010000],[86.200000,70.970000],[86.310000,68.300000],[86.470000,69.680000],[86.600000,66.350000],[86.650000,66.460000],[86.760000,62.410000],[86.800000,61.520000],[86.790000,58.090000],[86.750000,54.510000],[86.700000,50.830000],[86.640000,47.600000],[86.600000,45.960000],[86.560000,46.240000],[86.490000,43.420000],[86.430000,41.680000],[86.290000,38.340000],[86.160000,35.520000],[86.050000,33.410000],[85.910000,30.930000],[85.810000,29.200000],[85.880000,28.130000],[85.870000,27.330000],[85.860000,25.300000],[85.820000,23.420000],[85.800000,21.340000],[85.690000,19.280000],[85.590000,17.940000],[85.480000,16.100000],[85.380000,14.580000],[85.280000,13.320000],[85.140000,11.700000],[85.070000,10.660000],[84.960000,9.780000],[85.010000,8.930000],[84.900000,8.080000],[84.760000,6.640000],[84.630000,5.150000],[84.570000,4.460000],[84.590000,4.050000],[84.560000,3.850000],[84.460000,2.980000],[84.350000,2.250000],[84.220000,1.350000],[84.100000,0.460000],[83.990000,359.540000],[83.870000,358.790000],[83.690000,357.630000],[83.570000,356.820000],[83.430000,355.890000],[83.250000,354.790000],[83.000000,353.740000],[82.870000,352.790000],[82.690000,354.130000],[82.690000,354.130000],[82.520000,355.000000],[82.330000,356.270000],[82.290000,356.150000],[82.050000,355.490000],[81.910000,354.970000],[81.620000,356.140000],[81.550000,355.860000],[81.370000,355.330000],[81.250000,356.520000],[81.130000,357.580000],[80.990000,357.180000],[80.790000,356.600000],[80.750000,357.080000],[80.630000,358.300000],[80.370000,357.680000],[80.310000,358.240000],[80.220000,359.020000],[80.150000,359.750000],[80.030000,0.610000],[79.910000,1.480000],[79.780000,2.390000],[79.660000,3.270000],[79.530000,4.410000],[79.230000,3.870000],[79.030000,3.420000],[78.950000,3.860000],[78.810000,4.690000],[78.640000,5.630000],[78.440000,6.780000],[78.240000,7.800000],[78.090000,7.840000],[77.910000,7.810000],[77.710000,7.860000],[77.480000,7.800000],[77.150000,7.670000],[76.970000,7.620000],[76.800000,7.620000],[76.600000,7.550000],[76.430000,7.550000],[76.280000,7.470000],[76.120000,7.530000],[75.980000,7.570000],[75.730000,7.630000],[75.530000,7.840000],[75.380000,7.950000],[75.190000,8.210000],[75.070000,8.460000],[74.940000,8.640000],[74.760000,8.800000],[74.540000,8.980000],[74.380000,9.120000],[74.240000,9.160000],[74.100000,9.220000],[73.980000,9.180000],[73.880000,9.140000],[73.760000,9.050000],[73.710000,8.960000],[73.630000,8.820000],[73.530000,8.640000],[73.490000,8.400000],[73.430000,8.140000],[73.370000,7.790000],[73.250000,7.380000],[73.210000,7.080000],[73.140000,6.770000],[73.020000,6.080000],[72.930000,5.590000],[72.820000,4.970000],[72.700000,4.280000],[72.580000,3.620000],[72.440000,2.780000],[72.320000,1.990000],[72.130000,0.910000],[72.020000,0.290000],[71.910000,359.620000],[71.810000,359.030000],[71.690000,358.260000],[71.590000,357.600000],[71.500000,357.060000],[71.400000,356.320000],[71.490000,355.910000],[71.430000,355.640000],[71.330000,355.250000],[71.430000,354.820000],[71.540000,354.310000],[71.460000,354.070000],[71.390000,353.670000],[71.280000,353.100000],[71.120000,352.620000],[71.220000,352.050000],[71.460000,350.600000],[71.610000,349.640000],[71.780000,348.640000],[71.590000,348.270000],[71.390000,347.900000],[71.250000,347.650000],[71.250000,347.650000],[71.150000,348.150000],[71.050000,348.650000],[70.870000,348.330000],[70.710000,348.000000],[70.570000,347.740000],[70.700000,347.090000],[70.770000,346.600000],[70.820000,346.120000],[70.730000,345.980000],[70.350000,345.540000],[70.520000,345.760000],[70.390000,345.260000],[70.170000,344.990000],[69.840000,344.590000],[69.550000,344.270000],[69.260000,343.980000],[69.040000,343.740000],[68.810000,343.510000],[68.860000,342.860000],[68.700000,342.670000],[68.400000,342.300000],[68.060000,341.980000],[67.740000,341.680000],[67.480000,341.480000],[66.160000,342.000000],[66.160000,342.000000],[64.849100,340.198000],[64.787600,340.090000],[64.707500,339.968000],[64.627900,339.823000],[64.512700,339.641000],[64.431400,339.545000],[64.328200,339.386000],[64.192400,339.206000],[64.124600,339.104000],[64.302000,338.979000],[64.211400,338.839000],[64.143400,338.738000],[64.069500,338.681000],[64.013800,338.584000],[63.922400,338.429000],[63.878600,338.376000],[63.816200,338.271000],[64.017700,338.303000],[63.998100,338.278000],[63.964200,338.226000],[63.913600,338.146000],[63.867000,338.075000],[64.034000,338.157000],[63.981500,338.053000],[63.918600,337.930000],[63.860200,337.851000],[63.814500,337.752000],[63.971100,337.716000],[63.946700,337.648000],[63.894400,337.540000],[63.839400,337.453000],[63.814200,337.350000],[63.795300,337.195000],[63.771300,337.123000],[63.651300,336.946000],[63.697300,336.837000],[63.653000,336.679000],[63.568500,336.521000],[63.474600,336.267000],[63.347900,335.992000],[63.234100,335.754000],[63.099800,335.562000],[63.115100,335.471000],[62.996900,335.268000],[62.920700,335.117000],[62.804500,334.963000],[62.715000,334.840000],[62.617600,334.697000],[62.621800,334.563000],[62.509700,334.345000],[62.378600,334.113000],[62.238900,333.891000],[62.102400,333.683000],[61.941300,333.471000],[61.831100,333.247000],[61.660700,332.973000],[61.533300,332.767000],[61.391700,332.605000],[61.254200,332.424000],[61.067600,332.154000],[60.959900,331.969000],[60.849400,331.815000],[60.705400,331.588000],[60.558600,331.363000],[60.422700,331.179000],[60.303900,331.088000],[60.335400,330.979000],[60.266300,330.885000],[60.173800,330.774000],[60.081100,330.634000],[59.966400,330.488000],[59.873000,330.355000],[59.747600,330.153000],[59.624000,329.959000],[59.527100,329.832000],[59.386200,329.698000],[59.234700,329.539000],[59.094600,329.360000],[58.945400,329.199000],[58.972000,329.033000],[58.888200,328.959000],[58.798900,328.821000],[58.683800,328.697000],[58.571100,328.574000],[58.443900,328.443000],[58.465800,328.260000],[58.398500,328.192000],[58.335500,328.135000],[58.253600,328.027000],[58.141800,327.880000],[58.000300,327.732000],[58.009600,327.538000],[57.954900,327.504000],[57.880700,327.381000],[57.774500,327.299000],[57.645300,327.186000],[57.665700,327.088000],[57.609900,327.027000],[57.548000,326.987000],[57.450700,326.918000],[57.282400,326.795000],[57.269600,326.620000],[57.258700,326.499000],[57.163500,326.482000],[57.088500,326.456000],[56.995900,326.435000],[56.868900,326.413000],[56.876400,326.315000],[56.880000,326.194000],[56.900300,326.030000],[56.832800,326.001000],[56.776000,325.952000],[56.698500,325.926000],[56.744700,325.781000],[56.660100,325.745000],[56.579000,325.688000],[56.496500,325.662000],[56.501100,325.560000],[56.440700,325.534000],[56.343700,325.502000],[56.211400,325.487000],[56.061000,325.435000],[56.061000,325.435000],[55.935300,325.382000],[55.812900,325.369000],[55.850200,325.129000],[55.777500,325.102000],[55.684300,325.033000],[55.489600,324.921000],[55.325800,324.832000],[55.147100,324.745000],[54.997400,324.672000],[54.970300,324.797000],[54.906400,324.734000],[54.789400,324.707000],[54.673900,324.639000],[54.516000,324.587000],[54.334300,324.512000],[54.322400,324.696000],[54.304800,324.888000],[54.220500,324.844000],[54.111800,324.793000],[53.954000,324.742000],[53.830900,324.682000],[53.671300,324.610000],[53.545800,324.547000],[53.511000,324.746000],[53.469400,324.741000],[53.381900,324.715000],[53.240700,324.679000],[53.205600,324.819000],[53.131500,324.823000],[52.990900,324.836000],[52.860200,324.841000],[52.712000,324.857000],[52.699400,324.982000],[52.698300,325.124000],[52.703200,325.067000],[52.679600,325.434000],[52.668100,325.830000],[52.642300,326.285000],[52.630900,326.673000],[52.617400,326.991000],[52.617400,326.991000],[52.598800,327.138000],[52.583100,327.354000],[52.556900,327.650000],[52.523000,327.939000],[52.504800,328.135000],[52.469700,328.423000],[52.421800,328.741000],[52.345400,328.742000],[52.258900,328.745000],[52.104700,328.731000],[52.101100,328.943000],[52.089000,329.193000],[52.058800,329.632000],[52.027200,329.978000],[51.949500,329.964000],[51.854500,329.979000],[51.762200,329.990000],[51.626100,329.996000],[51.419100,329.993000],[51.256000,329.997000],[51.101400,330.018000],[50.992800,330.018000],[50.932200,330.064000],[50.860500,330.095000],[50.786300,330.125000],[50.748400,330.164000],[50.693000,330.233000],[50.602000,330.341000],[50.495000,330.461000],[50.467400,330.494000],[50.415600,330.575000],[50.325100,330.674000],[50.224800,330.798000],[50.190000,330.879000],[50.148000,330.985000],[50.064800,331.004000],[49.986700,331.020000],[49.901800,331.031000],[49.811600,331.098000],[49.736200,331.138000],[49.650400,331.183000],[49.650600,331.282000],[49.637900,331.435000],[49.578400,331.463000],[49.479800,331.511000],[49.372400,331.550000],[49.283300,331.578000],[49.217600,331.642000],[49.166600,331.682000],[49.094000,331.740000],[48.999900,331.793000],[48.908400,331.842000],[48.807600,331.912000],[48.687000,331.958000],[48.607100,331.990000],[48.608700,332.114000],[48.589200,332.251000],[48.517200,332.255000],[48.424400,332.270000],[48.324500,332.283000],[48.204900,332.294000],[48.090700,332.348000],[47.995100,332.365000],[47.885200,332.378000],[47.780900,332.408000],[47.655100,332.433000],[47.661300,332.533000],[47.597700,332.550000],[47.525500,332.558000],[47.471400,332.534000],[47.400000,332.535000],[47.343100,332.536000],[47.267300,332.532000],[47.204200,332.568000],[47.109600,332.621000],[46.997800,332.674000],[46.924600,332.645000],[46.852300,332.632000],[46.754000,332.630000],[46.757100,332.558000],[46.695600,332.558000],[46.636800,332.555000],[46.482500,332.526000],[46.353300,332.514000],[46.299900,332.509000],[46.207900,332.494000],[46.209300,332.438000],[46.143700,332.430000],[46.074500,332.410000],[45.982100,332.400000],[45.980400,332.325000],[45.935300,332.311000],[45.884000,332.307000],[45.880100,332.253000],[45.824800,332.241000],[45.703600,332.224000],[45.598300,332.197000],[45.531400,332.179000],[45.539700,332.125000],[45.523100,332.142000],[45.479800,332.133000],[45.451800,332.120000],[45.466200,332.077000],[45.428100,332.065000],[45.394100,332.062000],[45.333200,332.055000],[45.344500,332.019000],[45.284900,332.024000],[45.214100,332.019000],[45.168400,332.010000],[45.100400,332.002000],[45.123200,331.927000],[45.065200,331.894000],[45.031900,331.883000],[44.968100,331.859000],[44.919000,331.835000],[44.907800,331.895000],[44.861800,331.865000],[44.813700,331.855000],[44.746700,331.837000],[44.624100,331.788000],[44.513200,331.744000],[44.403800,331.708000],[44.301400,331.677000],[44.301400,331.677000],[44.181100,331.629000],[44.199000,331.574000],[44.144300,331.557000],[44.095400,331.554000],[44.026900,331.526000],[43.932700,331.511000],[43.839200,331.490000],[43.762400,331.471000],[43.771900,331.204000],[43.697100,331.167000],[43.626000,331.116000],[43.491100,331.064000],[43.387400,330.994000],[43.209700,330.901000],[43.077000,330.826000],[43.084900,330.690000],[43.023700,330.689000],[42.953900,330.674000],[42.835900,330.649000],[42.727800,330.624000],[42.714800,330.685000],[42.673700,330.678000],[42.606700,330.660000],[42.530000,330.640000],[42.415000,330.610000],[42.286100,330.572000],[42.288800,330.778000],[42.233000,330.772000],[42.180500,330.756000],[42.082400,330.755000],[41.926900,330.739000],[41.912300,330.842000],[41.803000,330.803000],[41.679600,330.786000],[41.525700,330.753000],[41.384500,330.716000],[41.245700,330.680000],[41.209800,330.775000],[41.122800,330.761000],[40.982500,330.741000],[40.869000,330.722000],[40.702700,330.692000],[40.565900,330.660000],[40.599100,330.433000],[40.552900,330.429000],[40.467400,330.425000],[40.380900,330.405000],[40.290800,330.372000],[40.205900,330.362000],[40.106800,330.346000],[40.105100,330.420000],[40.073900,330.412000],[40.034200,330.390000],[39.992900,330.391000],[39.397300,330.238000],[39.386600,330.094000],[39.386600,330.094000],[38.387000,329.572000],[38.399600,329.394000],[37.679300,328.927000],[37.704800,328.632000],[37.283700,328.485000],[37.375000,327.730000],[37.411800,327.703000],[37.139400,327.609000],[37.176000,327.355000],[37.034900,327.293000],[37.064300,327.053000],[36.917500,326.996000],[36.943200,326.776000],[36.693100,326.683000],[36.741000,326.406000],[36.184800,326.228000],[36.220000,326.015000],[36.071600,325.946000],[36.077200,325.859000],[35.615300,325.665000],[35.626500,325.541000],[35.009700,325.253000],[35.280300,323.627000],[34.691000,323.375000],[34.711800,323.213000],[34.556800,323.139000],[34.566200,322.952000],[34.124100,322.755000],[34.139400,322.664000],[33.704600,322.469000],[33.735200,322.321000],[33.501700,322.199000],[33.765700,320.598000],[33.065600,320.415000],[33.082900,320.301000],[31.800800,319.450000],[31.814500,319.292000],[31.197100,318.819000],[31.236400,318.572000],[30.721700,318.193000],[30.721700,318.193000],[30.508300,318.147000],[30.513200,318.102000],[30.013600,318.002000],[30.136100,317.331000],[29.812800,317.213000],[29.801900,317.250000],[29.363900,317.083000],[29.403400,316.930000],[28.842300,316.705000],[28.877900,316.576000],[28.657200,316.483000],[28.683600,316.391000],[28.164000,316.181000],[28.183100,316.104000],[27.725100,315.946000],[27.734700,315.908000],[27.123900,315.702000],[27.152200,315.580000],[26.680300,315.458000],[26.686800,315.422000],[26.256800,315.309000],[26.278600,315.207000],[26.003800,315.096000],[26.026500,315.007000],[25.981600,314.982000],[25.981600,314.982000],[25.925500,314.957000],[25.876300,314.926000],[25.816800,314.907000],[25.796600,314.902000],[25.776500,314.900000],[25.757800,314.895000],[25.737100,314.891000],[25.677600,314.871000],[25.663900,314.864000],[25.652300,314.859000],[25.652300,314.859000],[25.673600,314.774000],[25.673300,314.774000],[25.621300,314.750000],[25.570200,314.716000],[25.564700,314.709000],[25.521700,314.683000],[25.518400,314.683000],[25.511600,314.685000],[25.502000,314.689000],[25.453200,314.695000],[25.430700,314.689000],[25.419100,314.684000],[25.402900,314.680000],[25.385500,314.674000],[25.327300,314.662000],[25.287700,314.629000],[25.281100,314.620000],[25.277800,314.612000],[25.236300,314.575000],[25.181000,314.558000],[25.124800,314.546000],[25.072300,314.533000],[25.026900,314.526000],[24.984100,314.521000],[24.933100,314.505000],[24.900200,314.464000],[24.894600,314.453000],[24.879000,314.378000],[24.868200,314.308000],[24.861000,314.290000],[24.820200,314.222000],[24.778700,314.163000],[24.746100,314.116000],[24.713500,314.080000],[24.696900,314.062000],[24.666600,314.030000],[24.632400,313.966000],[24.599700,313.913000],[24.563500,313.877000],[24.509500,313.849000],[24.460900,313.833000],[24.451200,313.826000],[24.443500,313.819000],[24.424200,313.807000],[24.382300,313.776000],[24.364500,313.766000],[24.347600,313.755000],[24.297100,313.733000],[24.278000,313.727000],[24.217300,313.714000],[24.158600,313.702000],[24.138700,313.699000],[24.082300,313.693000],[24.027600,313.685000],[23.959900,313.680000],[23.903000,313.676000],[23.851300,313.670000],[23.844600,313.669000],[23.843100,313.684000],[23.842400,313.691000],[23.843200,313.701000],[23.840700,313.717000],[23.835300,313.726000],[23.822500,313.733000],[23.814400,313.736000],[23.803100,313.741000],[23.795700,313.743000],[23.789600,313.747000],[23.783200,313.752000],[23.781200,313.756000],[23.779100,313.763000],[23.777400,313.769000],[23.774000,313.773000],[23.757300,313.821000],[23.756000,313.827000],[23.747200,313.894000],[23.744100,313.902000],[23.741100,313.916000],[23.738300,313.928000],[23.735900,313.987000],[23.741300,314.000000],[23.747700,314.017000],[23.754900,314.028000],[23.761100,314.039000],[23.754600,314.108000],[23.758600,314.160000],[23.759100,314.173000],[23.758400,314.183000],[23.756600,314.197000],[23.755900,314.211000],[23.755600,314.223000],[23.757700,314.237000],[23.761100,314.253000],[23.765200,314.265000],[23.770300,314.279000],[23.770700,314.331000],[23.762900,314.391000],[23.762400,314.407000],[23.762000,314.421000],[23.763500,314.437000],[23.763600,314.456000],[23.761300,314.474000],[23.761100,314.478000],[23.751000,314.543000],[23.747200,314.562000],[23.743400,314.575000],[23.740300,314.587000],[23.736100,314.634000],[23.733700,314.696000],[23.733200,314.710000],[23.721500,314.761000],[23.707400,314.827000],[23.704300,314.844000],[23.700100,314.901000],[23.695400,314.960000],[23.692900,314.973000],[23.691100,314.984000],[23.688600,315.000000],[23.686800,315.011000],[23.686600,315.017000],[23.686600,315.021000],[23.686600,315.021000],[23.685700,314.649000],[23.681700,314.674000],[23.667700,314.729000],[23.649900,314.788000],[23.647400,314.803000],[23.646700,314.817000],[23.644500,314.868000],[23.645800,314.882000],[23.643100,314.945000],[23.639700,315.001000],[23.634800,315.018000],[23.628200,315.029000],[23.624100,315.038000],[23.623200,315.092000],[23.627800,315.100000],[23.635000,315.107000],[23.636100,315.111000],[23.635100,315.114000],[23.631000,315.118000],[23.625800,315.121000],[23.613600,315.126000],[23.606100,315.129000],[23.596700,315.132000],[23.584600,315.135000],[23.576200,315.135000],[23.524900,315.129000],[23.474100,315.119000],[23.462100,315.116000],[23.447000,315.114000],[23.430300,315.108000],[23.356100,315.079000],[23.295500,315.063000],[23.282400,315.059000],[23.256900,315.050000],[23.247700,315.047000],[23.247700,315.047000],[23.233200,315.098000],[23.196700,315.091000],[23.139600,315.084000],[23.124200,315.084000],[23.075100,315.078000],[23.018500,315.068000],[22.973700,315.062000],[22.954200,315.060000],[22.941500,315.058000],[22.927100,315.055000],[22.868700,315.044000],[22.858400,315.043000],[22.812800,315.035000],[22.762300,315.027000],[22.712500,315.018000],[22.701900,315.019000],[22.675400,315.016000],[22.675400,315.016000],[21.805200,314.754000],[21.824400,314.612000],[21.248700,314.486000],[21.223000,314.580000],[20.593200,314.440000],[20.621200,314.228000],[19.800700,314.058000],[19.824500,314.001000],[18.930100,313.816000],[18.936600,313.772000],[18.420000,313.681000],[18.420000,313.610000],[17.588200,313.477000],[17.568500,313.594000],[16.604900,313.413000],[16.589500,313.471000],[15.441300,313.249000],[15.264800,314.875000],[15.353500,314.049000],[15.356200,314.009000],[15.356200,313.942000],[15.361400,313.888000],[15.365400,313.808000],[15.369300,313.742000],[15.377200,313.696000],[15.377200,313.676000],[15.389000,313.674000],[15.389000,313.640000],[15.395500,313.552000],[15.395500,313.418000],[15.400800,313.282000],[15.432300,313.031000],[15.454600,312.903000],[15.478200,312.774000],[15.492700,312.666000],[15.512400,312.509000],[15.525500,312.408000],[15.534700,312.376000],[15.549100,312.336000],[15.545200,312.318000],[15.550400,312.250000],[15.551700,312.131000],[15.564800,312.036000],[15.576700,311.947000],[15.584500,311.862000],[15.600300,311.743000],[15.623900,311.576000],[15.655300,311.434000],[15.689400,311.272000],[15.714300,311.125000],[15.735300,310.971000],[15.761500,310.855000],[15.785100,310.722000],[15.820500,310.586000],[15.854600,310.488000],[15.888600,310.389000],[15.910900,310.324000],[15.921400,310.285000],[15.922700,310.259000],[15.960700,310.118000],[15.981600,310.008000],[16.013000,309.902000],[16.045700,309.732000],[16.078500,309.593000],[16.117700,309.446000],[16.147800,309.293000],[16.167400,309.168000],[16.189700,309.066000],[16.222400,308.950000],[16.253700,308.845000],[16.282500,308.736000],[16.319100,308.606000],[16.340000,308.480000],[16.367400,308.358000],[16.392300,308.242000],[16.406600,308.132000],[16.421000,308.050000],[16.444500,307.968000],[16.482400,307.762000],[16.490200,307.730000],[16.498100,307.677000],[16.483700,307.666000],[16.547700,307.448000],[16.563300,307.334000],[16.576400,307.199000],[16.588200,307.101000],[16.599900,306.955000],[16.610300,306.830000],[16.606400,306.740000],[16.607700,306.604000],[16.602500,306.484000],[16.635100,306.281000],[16.646900,306.203000],[16.657300,306.127000],[16.662500,306.059000],[16.665100,306.033000],[16.671700,305.987000],[16.671700,305.883000],[16.684700,305.792000],[16.689900,305.710000],[16.696400,305.599000],[16.693800,305.473000],[16.689900,305.352000],[16.683400,305.264000],[16.666400,305.180000],[16.649500,305.092000],[16.637700,305.043000],[16.627300,304.982000],[16.609000,304.915000],[16.607700,304.834000],[16.612900,304.644000],[16.610300,304.547000],[16.597300,304.403000],[16.588200,304.290000],[16.581600,304.196000],[16.567300,304.137000],[16.568600,304.067000],[16.562000,303.966000],[16.559400,303.861000],[16.556800,303.756000],[16.547700,303.624000],[16.551600,303.558000],[17.086700,300.031000],[17.086700,300.031000],[17.444100,299.657000],[17.783400,299.302000],[18.156600,298.819000],[18.554500,298.136000],[19.081000,297.353000],[19.321300,296.606000],[19.544200,295.979000],[19.732100,295.232000],[19.627000,290.713000],[20.727200,287.346000],[19.390300,285.221000],[19.021900,282.839000],[18.150600,281.113000],[17.386300,278.432000],[16.858700,277.205000],[16.732400,275.641000],[16.197800,272.204000],[15.145000,270.442000],[14.702000,270.125000],[15.156900,264.203000],[15.192700,264.266000],[15.192700,264.266000],[15.220800,264.102000],[15.239900,263.957000],[15.250600,263.766000],[15.262000,263.512000],[15.264000,263.312000],[15.292700,263.085000],[15.349500,262.703000],[15.386300,262.549000],[15.450300,262.322000],[15.550000,262.051000],[15.668100,261.688000],[15.813700,261.208000],[15.904600,260.918000],[16.048700,260.574000],[16.175100,260.239000],[16.364000,259.786000],[16.698500,258.762000],[16.771000,258.527000],[16.942400,258.010000],[17.148200,257.540000],[17.371100,257.069000],[17.637900,256.554000],[17.797900,256.228000],[18.081700,255.686000],[18.222400,255.515000],[18.467700,255.290000],[18.704000,255.056000],[18.975300,254.750000],[19.010200,254.714000],[19.010200,254.714000],[19.062400,254.678000],[19.175700,254.589000],[19.332000,254.490000],[19.436000,254.437000],[19.608700,254.402000],[19.738100,254.376000],[19.850500,254.323000],[19.979700,254.297000],[20.065700,254.289000],[20.194700,254.272000],[20.443300,254.275000],[20.597600,254.259000],[20.768200,254.306000],[20.955600,254.372000],[21.023800,254.382000],[21.185500,254.411000],[21.245400,254.393000],[21.262500,254.384000],[21.270900,254.394000],[21.271100,254.375000],[21.271200,254.366000],[21.348200,254.331000],[21.425400,254.268000],[21.502600,254.205000],[21.605400,254.125000],[21.742100,254.053000],[21.869800,254.009000],[22.260000,253.959000],[22.396100,253.879000],[22.641800,253.800000],[22.777700,253.701000],[22.980600,253.622000],[23.252100,253.361000],[23.405000,253.172000],[23.566200,252.965000],[23.727400,252.748000],[23.837900,252.559000],[23.990700,252.306000],[24.050500,252.170000],[24.143300,252.053000],[24.402400,251.974000],[24.502800,251.911000],[24.603500,251.813000],[24.695900,251.704000],[24.796900,251.560000],[24.906200,251.407000],[25.040600,251.208000],[25.274200,251.002000],[25.514400,250.923000],[25.771100,250.780000],[26.035200,250.674000],[26.290400,250.568000],[26.356600,250.505000],[26.497400,250.316000],[26.703800,250.091000],[26.876600,249.929000],[27.106300,249.750000],[27.278300,249.607000],[27.401100,249.490000],[27.548100,249.374000],[27.670600,249.266000],[27.801500,249.095000],[27.851000,248.986000],[27.941100,248.851000],[27.990300,248.769000],[28.056200,248.616000],[28.097700,248.489000],[28.106400,248.416000],[28.155500,248.326000],[28.245000,248.227000],[28.350500,248.128000],[28.504000,248.039000],[28.705400,247.941000],[28.954700,247.817000],[29.139800,247.665000],[29.308500,247.521000],[29.500900,247.369000],[29.861600,246.982000],[29.861600,246.982000],[29.867000,246.197000],[31.670000,245.417000],[32.022800,245.065000],[34.377400,242.897000],[35.331200,240.536000],[39.775100,235.637000],[40.478200,235.596000],[40.478200,235.596000],[40.455500,235.270000],[40.705900,235.164000],[40.934100,235.113000],[41.182000,235.098000],[41.414900,235.111000],[41.633500,235.114000],[41.966900,235.100000],[42.298500,235.087000],[42.527700,235.062000],[42.756200,235.029000],[42.977000,235.005000],[43.263200,235.019000],[43.614400,235.005000],[43.917600,234.983000],[44.245200,234.978000],[44.388500,235.026000],[44.635300,235.075000],[44.803500,235.114000],[44.952200,235.098000],[45.472400,235.142000],[45.734300,235.100000],[45.867600,235.130000],[46.026200,235.114000],[46.165100,235.143000],[46.322800,235.145000],[46.499000,235.121000],[46.680800,235.105000],[46.893700,235.027000],[47.074500,234.966000],[47.347500,234.897000],[47.545200,234.846000],[47.785600,234.713000],[47.976200,234.571000],[48.337400,234.222000],[48.538400,234.016000],[48.744700,233.801000],[48.962200,233.568000],[49.161000,233.317000],[49.251700,233.118000],[49.324300,232.928000],[49.445200,232.603000],[49.511600,232.413000],[49.577800,232.232000],[49.632100,232.069000],[49.727800,231.862000],[49.793800,231.681000],[49.883400,231.464000],[49.955400,231.229000],[50.056500,231.003000],[50.157000,230.832000],[50.298400,230.607000],[50.415600,230.473000],[50.550300,230.275000],[50.725000,230.087000],[50.869700,229.980000],[50.996800,229.864000],[51.175200,229.721000],[51.324300,229.596000],[51.433200,229.471000],[51.570600,229.273000],[51.633800,229.138000],[51.815900,228.905000],[51.952400,228.671000],[52.037500,228.517000],[52.161900,228.329000],[52.297000,228.140000],[52.471000,227.897000],[52.577400,227.717000],[52.711400,227.511000],[52.828600,227.285000],[52.939800,227.078000],[53.122300,226.809000],[53.243300,226.665000],[53.517300,226.306000],[53.664400,226.127000],[53.773300,225.956000],[53.876400,225.803000],[54.151600,225.435000],[54.397900,225.176000],[54.446000,225.104000],[54.664100,224.863000],[54.864900,224.685000],[54.985800,224.596000],[55.377000,224.421000],[55.563200,224.352000],[55.728000,224.309000],[55.968800,224.223000],[56.218500,224.100000],[56.507000,223.942000],[56.723400,223.801000],[56.963900,223.542000],[57.223500,223.137000],[57.519900,222.816000],[57.792400,221.994000],[57.911600,221.460000],[58.014900,221.116000],[58.108100,220.818000],[58.186800,220.483000],[58.279600,220.158000],[58.376600,219.914000],[58.502200,219.589000],[58.589200,219.327000],[58.685500,219.038000],[58.781900,218.695000],[58.896800,218.351000],[59.006800,217.972000],[59.078500,217.701000],[59.169100,217.357000],[59.240800,217.013000],[59.275300,216.641000],[59.268300,216.213000],[59.242800,215.740000],[59.202400,215.448000],[59.185500,215.111000],[59.104100,214.601000],[59.104100,214.601000],[59.130800,214.726000],[59.115600,214.550000],[59.095600,214.442000],[58.987200,214.257000],[58.791900,214.031000],[58.695700,213.907000],[58.563300,213.743000],[58.401700,213.649000],[58.285100,213.576000],[58.130700,213.345000],[57.909900,212.988000],[57.791700,212.778000],[57.686500,212.549000],[57.601900,212.319000],[57.464200,212.236000],[57.356900,212.108000],[57.286400,211.886000],[57.254200,211.667000],[57.219500,211.402000],[57.100200,211.157000],[56.945600,210.796000],[56.801700,210.458000],[56.659600,210.081000],[56.526000,209.888000],[56.420900,209.621000],[56.362600,209.294000],[56.221500,209.038000],[56.120700,208.867000],[55.995400,208.476000],[55.861900,207.977000],[55.757600,207.564000],[55.694400,207.269000],[55.572900,206.944000],[55.462600,206.624000],[55.345500,206.357000],[55.232000,205.984000],[55.081500,205.575000],[54.940900,205.282000],[54.769400,204.974000],[54.617200,204.674000],[54.502900,204.322000],[54.427000,203.997000],[54.353600,203.648000],[54.260000,203.261000],[54.189000,202.870000],[54.109900,202.523000],[54.041300,202.130000],[53.947000,201.629000],[53.860600,201.213000],[53.780800,200.824000],[53.700800,200.415000],[53.613900,199.988000],[53.521400,199.498000],[53.453200,199.160000],[53.404000,198.760000],[53.311000,198.248000],[53.216500,197.873000],[53.102400,197.343000],[53.006000,196.943000],[52.908000,196.499000],[52.834700,196.179000],[52.743200,195.813000],[52.634800,195.400000],[52.549900,195.018000],[52.456400,194.657000],[52.369800,194.346000],[52.246500,193.873000],[52.138300,193.468000],[52.051000,193.040000],[51.950800,192.595000],[51.837600,192.121000],[51.773900,191.852000],[51.700100,191.573000],[51.592000,191.202000],[51.533500,190.967000],[51.449300,190.651000],[51.359300,190.336000],[51.266100,189.973000],[51.195800,189.634000],[51.115300,189.207000],[51.033200,188.811000],[50.978400,188.425000],[50.920600,187.933000],[50.890300,187.540000],[50.836700,187.049000],[50.799100,186.624000],[50.749800,186.169000],[50.723700,185.894000],[50.630700,185.357000],[50.574000,184.872000],[50.541900,184.559000],[50.505500,184.136000],[50.460300,183.757000],[50.423800,183.400000],[50.397500,183.012000],[50.371200,182.678000],[50.365300,182.397000],[50.340500,182.029000],[50.333200,181.704000],[50.321400,181.267000],[50.322900,180.904000],[50.327300,180.531000],[50.322900,180.239000],[50.325800,179.856900],[50.333200,179.468300],[50.340500,179.049900],[50.407700,178.499000],[50.485100,177.913800],[50.594400,177.397100],[50.690300,176.978800],[50.816500,176.496400],[50.938000,176.094100],[51.030300,175.723800],[51.072100,175.545400],[51.036100,175.303100],[51.057700,175.118000],[51.187200,174.763600],[51.247500,174.480200],[51.302000,174.210400],[51.337800,173.920100],[51.443600,173.570300],[51.546400,173.108500],[51.643200,172.845600],[51.701500,172.548500],[51.850400,172.212400],[51.898500,172.075300],[51.922500,171.842100],[52.007300,171.503800],[52.156600,171.238600],[52.332000,170.989400],[52.494100,170.566500],[52.658500,170.088700],[52.791700,169.663500],[52.870700,169.254300],[52.917700,169.044000],[52.990800,168.909100],[53.022500,168.781100],[53.040500,168.687400],[53.205500,168.483900],[53.397200,168.259900],[53.477700,168.143300],[53.477700,168.056400],[53.601700,167.720400],[53.713000,167.420900],[53.839000,167.215200],[54.077600,166.828800],[54.266700,166.515600],[54.431000,166.266500],[54.589300,165.946400],[54.719200,165.694900],[54.821000,165.484600],[54.968500,165.171400],[55.095900,164.858300],[55.266000,164.387300],[55.200600,164.581600],[55.362500,164.115300],[55.137800,164.039900],[54.818300,163.916400],[54.541500,163.745000],[54.288100,163.555200],[54.115200,163.358600],[53.859200,163.139200],[53.582600,162.947100],[53.282300,162.789400],[53.047300,162.560800],[52.791700,162.309300],[52.506700,162.048700],[52.308200,161.886400],[52.201500,161.833800],[51.997400,161.598400],[51.796600,161.305800],[51.621900,161.056600],[51.359300,160.727400],[51.100900,160.485100],[50.914800,160.325100],[50.633600,159.973000],[50.518600,159.769600],[50.298000,159.561500],[50.126400,159.360400],[49.964400,159.159200],[49.738300,158.903200],[49.581000,158.734000],[49.396300,158.551100],[49.376900,158.320200],[49.198900,157.979600],[49.057900,157.776200],[48.967700,157.499500],[48.803400,157.273200],[48.661200,157.133800],[48.488300,157.014900],[48.441100,156.973800],[48.313200,156.813700],[48.175800,156.624000],[48.061000,156.400000],[47.925900,156.162200],[47.755100,155.910800],[47.548100,155.622700],[47.329400,155.362100],[47.155000,155.154100],[47.020700,155.003200],[46.901800,154.843200],[46.837500,154.760900],[46.637900,154.696900],[46.527600,154.444900],[46.431200,154.303200],[46.306200,154.145500],[46.204700,154.001500],[46.085500,153.900900],[45.940600,153.795700],[45.824000,153.528300],[45.652700,153.251600],[45.548400,153.045900],[45.394000,152.801300],[45.292400,152.625300],[45.156700,152.431000],[45.006100,152.168100],[44.890800,152.017200],[44.772400,151.829700],[44.693900,151.685700],[44.562000,151.448000],[44.413100,151.132500],[44.286800,150.885600],[44.193100,150.638700],[44.049800,150.279800],[43.907900,149.973500],[43.818300,149.969300],[43.764400,149.785400],[43.660600,149.532900],[43.530100,149.324100],[43.392900,149.112400],[43.228700,148.859800],[43.081200,148.627700],[42.938800,148.413100],[42.819600,148.230700],[42.703400,148.029200],[47.115900,145.137500],[47.115900,145.137500],[55.764200,143.792800],[55.888800,144.124800],[56.130900,144.690200],[56.551500,145.673200],[57.295000,147.284700],[57.532900,148.009500],[57.795100,148.808500],[58.046000,149.739400],[58.320300,150.630400],[58.648300,151.199300],[59.097800,151.665300],[59.483300,151.875900],[59.780000,151.776600],[60.115400,151.486800],[60.660300,150.698300],[61.246600,149.705800],[61.937300,148.632600],[62.777300,146.749300],[63.835200,144.349200],[64.924000,141.503700],[66.371000,137.791300],[67.418800,134.933200],[68.282000,133.425500],[69.132100,132.304100],[70.061400,131.244400],[71.219100,130.511300],[72.474900,129.588300],[74.077900,128.626600],[75.504600,127.410100],[77.680000,125.550000],[100.000000,1000.000000],[2.896300,258.600000],[2.146700,258.265000],[2.102600,258.041000],[2.071900,259.246000],[2.068100,260.147000],[2.209900,260.143000],[2.114100,261.083000],[2.213800,261.110000],[2.075700,262.154000],[2.087200,262.449000],[1.899400,262.414000],[1.772800,263.826000],[2.236800,263.880000],[2.221400,264.774000],[2.505100,264.801000],[2.370900,266.389000],[2.229100,267.755000],[2.198400,267.912000],[1.991400,267.881000],[2.010600,268.464000],[1.815000,268.442000],[1.738300,269.305000],[1.351000,274.564000],[1.642500,274.653000],[1.600300,275.424000],[2.531900,275.435000],[3.114300,275.531000],[3.164100,276.625000],[3.118200,277.196000],[-0.104000,277.196000],[-0.104000,278.927000],[-0.104000,278.927000],[-0.386400,278.805000],[-0.733100,278.711000],[-1.125400,278.597000],[-1.372200,278.577000],[-1.582200,278.538000],[-1.956700,278.489000],[-2.239700,278.440000],[-2.495500,278.419000],[-2.778600,278.389000],[-3.025100,278.368000],[-3.664000,278.307000],[-3.955600,278.259000],[-4.320200,278.209000],[-4.630000,278.170000],[-4.849000,278.186000],[-5.495100,278.097000],[-5.987500,278.165000],[-6.443400,278.269000],[-6.726200,278.366000],[-7.209000,278.506000],[-7.646100,278.666000],[-8.192200,278.887000],[-8.638100,279.119000],[-8.947200,279.288000],[-9.301600,279.485000],[-9.655600,279.690000],[-9.918500,279.824000],[-10.307900,280.029000],[-10.697000,280.252000],[-11.158000,280.538000],[-11.455700,280.698000],[-11.726300,280.868000],[-12.114000,281.146000],[-12.455600,281.333000],[-12.815300,281.593000],[-13.120700,281.817000],[-13.425100,281.987000],[-14.285700,282.778000],[-14.768000,283.191000],[-15.036100,283.479000],[-15.401400,283.821000],[-15.767100,284.271000],[-15.980600,284.505000],[-16.425000,285.028000],[-16.646800,285.289000],[-16.754100,285.515000],[-16.950600,285.904000],[-17.092700,286.121000],[-17.437500,286.545000],[-17.657600,286.760000],[-17.895700,287.058000],[-18.088900,287.247000],[-18.439200,287.543000],[-18.641000,287.786000],[-18.859400,287.975000],[-19.033400,288.082000],[-19.311600,288.261000],[-19.528900,288.440000],[-19.805800,288.574000],[-20.064500,288.662000],[-20.426300,288.812000],[-21.007700,288.797000],[-21.783600,288.924000],[-22.156300,288.893000],[-22.679900,288.851000],[-23.176100,288.790000],[-23.536800,288.777000],[-24.021500,288.726000],[-24.371400,288.695000],[-24.894200,288.634000],[-25.382000,288.592000],[-26.064800,288.530000],[-26.318800,288.509000],[-26.694800,288.486000],[-27.061000,288.418000],[-27.482400,288.313000],[-27.756700,288.210000],[-28.086600,288.088000],[-28.439700,287.974000],[-28.743600,287.880000],[-29.198800,287.829000],[-29.540400,287.743000],[-29.825500,287.676000],[-30.974600,287.543000],[-31.357100,287.484000],[-32.141600,287.484000],[-32.550200,287.451000],[-32.903000,287.374000],[-33.421100,287.177000],[-33.739400,287.027000],[-34.993400,286.493000],[-35.416900,286.278000],[-36.073500,285.942000],[-37.451700,285.470000],[-37.891500,285.364000],[-38.372400,285.339000],[-38.863200,285.187000],[-39.273200,285.072000],[-39.666900,284.976000],[-39.898400,284.982000],[-40.435500,285.002000],[-40.740000,284.952000],[-41.269400,284.854000],[-41.597500,284.822000],[-42.638300,284.653000],[-42.885800,284.613000],[-43.152200,284.564000],[-43.371200,284.533000],[-43.760200,284.409000],[-43.989800,284.342000],[-44.355400,284.246000],[-44.699100,284.123000],[-45.035900,284.218000],[-45.280800,284.287000],[-45.544000,284.392000],[-45.761200,284.452000],[-46.078200,284.430000],[-46.606000,284.294000],[-46.577700,284.459000],[-46.072800,284.297000],[-45.574100,284.147000],[-45.641400,283.324000],[-45.762300,282.339000],[-45.587600,282.239000],[-45.089900,282.008000],[-44.412200,281.796000],[-44.544000,281.107000],[-44.779400,279.722000],[-44.962100,278.068000],[-44.401200,277.860000],[-43.637500,277.648000],[-42.861200,277.490000],[-42.979500,276.555000],[-42.875300,276.544000],[-42.220400,276.398000],[-41.125400,276.171000],[-41.255700,274.855000],[-41.521300,272.665000],[-41.275900,272.580000],[-41.319300,271.557000],[-41.434800,269.948000],[-41.055800,269.914000],[-41.102200,268.606000],[-40.730000,268.525000],[-39.834700,268.455000],[-38.867700,268.340000],[-38.969500,266.974000],[-38.428900,266.928000],[-38.480200,266.000000],[-37.714100,265.904000],[-37.001400,265.874000],[-36.964500,264.311000],[-36.869200,262.584000],[-36.291300,262.599000],[-36.192000,261.587000],[-36.064600,259.355000],[-35.827800,257.408000],[-35.586200,257.319000],[-34.903600,257.228000],[-34.515900,250.733000],[-34.515900,250.733000],[-34.371100,250.736000],[-34.263100,250.733000],[-34.179900,250.726000],[-33.872700,250.734000],[-33.872700,250.734000],[-33.680400,250.767000],[-33.680400,250.767000],[-33.516300,250.704000],[-33.419900,250.667000],[-33.167500,250.597000],[-33.024000,250.519000],[-33.024000,250.519000],[-33.078500,251.117000],[-33.078500,251.117000],[-32.970800,251.067000],[-32.902500,251.033000],[-32.836000,250.983000],[-32.751500,250.927000],[-32.683100,250.880000],[-32.612800,250.809000],[-32.546200,250.737000],[-32.470400,250.666000],[-32.410900,250.574000],[-32.374900,250.522000],[-32.311700,250.448000],[-32.257500,250.366000],[-32.187000,250.285000],[-32.112800,250.172000],[-31.960300,250.158000],[-31.960300,250.158000],[-31.967600,250.115000],[-31.971400,250.071000],[-31.967800,250.016000],[-31.962500,249.960000],[-31.951800,249.888000],[-31.928300,249.803000],[-31.904800,249.737000],[-31.870400,249.679000],[-31.806800,249.617000],[-31.757800,249.540000],[-31.727000,249.471000],[-31.703600,249.352000],[-31.682000,249.233000],[-31.660300,249.127000],[-31.629500,249.058000],[-31.598700,248.967000],[-31.575200,248.869000],[-31.559000,248.775000],[-31.551900,248.686000],[-31.539400,248.556000],[-31.525100,248.454000],[-31.514600,248.246000],[-31.514600,248.246000],[-31.489700,247.976000],[-31.425600,248.099000],[-31.249600,248.131000],[-31.052900,248.182000],[-30.886400,248.214000],[-30.719600,248.241000],[-30.494500,248.257000],[-30.292800,248.277000],[-30.097500,248.285000],[-29.860700,248.308000],[-29.647300,248.300000],[-29.464600,248.308000],[-29.257300,248.293000],[-29.105100,248.245000],[-28.886700,248.186000],[-28.768600,248.155000],[-29.416300,247.437000],[-29.329900,247.390000],[-29.181200,247.346000],[-29.008100,247.319000],[-28.803300,247.279000],[-28.539000,247.255000],[-28.281000,247.224000],[-28.081900,247.208000],[-27.850800,247.192000],[-27.573600,247.165000],[-27.422400,247.165000],[-27.570000,247.062000],[-27.527900,247.070000],[-27.425900,247.070000],[-27.295600,247.066000],[-27.077000,247.078000],[-26.928600,247.058000],[-26.765900,247.050000],[-26.599400,247.102000],[-26.457500,247.141000],[-26.688000,247.362000],[-26.688000,247.362000],[-26.624200,247.417000],[-26.567500,247.429000],[-26.471700,247.425000],[-26.400700,247.409000],[-26.319000,247.386000],[-26.244400,247.386000],[-26.123400,247.390000],[-26.055700,247.390000],[-26.183900,247.551000],[-26.134100,247.559000],[-26.102000,247.559000],[-25.998700,247.539000],[-25.956000,247.512000],[-25.906100,247.484000],[-25.827600,247.492000],[-25.713300,247.500000],[-25.624000,247.531000],[-25.756200,247.658000],[-25.674000,247.701000],[-25.584600,247.713000],[-25.495200,247.685000],[-25.276700,247.634000],[-25.452300,247.819000],[-25.352000,247.811000],[-25.283900,247.792000],[-25.194200,247.764000],[-25.115200,247.725000],[-25.075700,247.717000],[-25.000300,247.713000],[-24.896000,247.721000],[-24.719700,247.697000],[-24.611600,247.725000],[-25.215700,248.123000],[-25.129600,248.139000],[-25.039800,248.170000],[-24.903200,248.202000],[-24.788100,248.222000],[-24.687300,248.194000],[-24.604400,248.170000],[-24.496200,248.155000],[-24.373400,248.151000],[-24.268600,248.147000],[-24.185400,248.162000],[-24.069600,248.194000],[-23.881200,248.230000],[-23.790500,248.269000],[-24.076900,248.584000],[-24.037000,248.596000],[-23.975500,248.608000],[-23.870300,248.620000],[-23.707100,248.628000],[-23.532700,248.624000],[-23.398100,248.600000],[-23.285200,248.537000],[-23.186800,248.431000],[-23.070100,248.304000],[-22.946000,248.178000],[-22.876600,248.084000],[-22.785200,248.013000],[-23.033600,246.672000],[-23.095600,245.438000],[-23.095600,245.438000],[-23.077400,245.406000],[-23.026300,245.394000],[-22.960600,245.386000],[-22.887500,245.375000],[-22.752300,245.382000],[-22.646200,245.390000],[-22.547300,245.414000],[-22.408100,245.454000],[-22.301700,245.473000],[-22.228300,245.517000],[-22.176900,245.584000],[-22.143800,245.603000],[-22.345700,245.603000],[-22.301700,245.615000],[-22.243000,245.631000],[-22.184200,245.635000],[-22.114400,245.631000],[-22.055600,245.611000],[-22.033600,245.603000],[-21.971000,245.591000],[-21.912200,245.576000],[-21.838600,245.580000],[-21.761200,245.595000],[-21.683900,245.635000],[-21.658100,245.690000],[-21.842300,245.745000],[-21.787000,245.753000],[-21.698600,245.777000],[-21.610100,245.796000],[-21.514200,245.816000],[-21.403500,245.824000],[-21.314800,245.824000],[-21.222400,245.836000],[-21.130000,245.844000],[-21.044800,245.868000],[-20.918900,245.891000],[-20.692700,245.982000],[-20.629600,246.017000],[-20.700200,246.084000],[-20.599900,246.120000],[-20.492200,246.155000],[-20.339800,246.226000],[-20.261700,246.242000],[-20.176100,246.250000],[-20.060600,246.266000],[-19.881700,246.297000],[-19.702500,246.333000],[-19.620300,246.364000],[-19.504400,246.420000],[-19.399700,246.455000],[-19.306100,246.479000],[-19.238700,246.506000],[-19.377200,246.368000],[-19.339800,246.376000],[-19.294900,246.388000],[-19.220000,246.408000],[-19.163800,246.423000],[-19.096300,246.467000],[-19.043800,246.502000],[-18.968800,246.569000],[-18.890000,246.601000],[-18.803700,246.613000],[-18.751100,246.640000],[-18.908800,246.490000],[-18.848700,246.490000],[-18.796200,246.502000],[-18.739800,246.530000],[-18.691000,246.597000],[-18.627100,246.652000],[-18.555600,246.688000],[-18.469100,246.711000],[-18.393800,246.727000],[-18.495400,246.609000],[-18.465300,246.613000],[-18.378800,246.621000],[-18.333600,246.636000],[-18.273300,246.672000],[-18.201700,246.700000],[-18.145200,246.715000],[-18.073500,246.711000],[-17.967900,246.727000],[-18.047100,246.636000],[-18.013200,246.636000],[-17.949000,246.640000],[-17.884900,246.648000],[-17.805600,246.692000],[-17.733800,246.723000],[-17.677100,246.759000],[-17.605200,246.786000],[-17.548500,246.806000],[-17.559800,246.696000],[-17.506900,246.704000],[-17.442600,246.719000],[-17.340300,246.770000],[-17.238000,246.822000],[-17.097800,246.873000],[-17.052300,246.873000],[-17.097800,246.770000],[-17.052300,246.782000],[-17.021900,246.794000],[-16.953600,246.834000],[-16.885300,246.865000],[-16.816900,246.893000],[-16.744800,246.928000],[-16.684000,246.952000],[-16.714400,246.814000],[-16.668800,246.865000],[-16.607900,246.920000],[-16.550900,246.956000],[-16.448200,247.003000],[-16.341600,247.019000],[-16.326400,247.023000],[-16.413900,246.912000],[-16.379700,246.909000],[-16.280700,246.912000],[-16.185400,246.932000],[-16.113000,246.944000],[-16.040600,246.980000],[-15.941400,247.043000],[-15.834500,247.082000],[-15.727600,247.086000],[-15.666500,247.102000],[-15.865100,246.999000],[-15.838400,246.999000],[-15.781100,247.003000],[-15.716200,247.011000],[-15.613000,247.039000],[-15.483000,247.062000],[-15.326200,247.086000],[-15.226700,247.102000],[-15.085000,247.133000],[-14.996800,247.153000],[-14.866500,247.177000],[-14.755200,247.224000],[-14.651600,247.255000],[-14.613200,247.307000],[-14.866500,247.307000],[-14.808900,247.342000],[-14.743700,247.374000],[-14.670800,247.405000],[-14.609300,247.433000],[-14.490300,247.453000],[-14.390400,247.461000],[-14.286500,247.461000],[-14.198100,247.457000],[-14.125000,247.449000],[-14.067200,247.449000],[-13.982500,247.484000],[-13.944000,247.508000],[-13.882400,247.551000],[-13.766800,247.536000],[-13.678100,247.528000],[-13.531600,247.543000],[-13.423500,247.599000],[-13.334700,247.606000],[-13.562400,248.742000],[-13.419600,248.805000],[-13.269100,248.904000],[-13.411900,248.987000],[-13.377200,249.018000],[-13.346300,249.046000],[-13.303800,249.081000],[-13.249700,249.109000],[-13.184100,249.132000],[-13.102900,249.140000],[-13.060400,249.132000],[-13.153100,249.054000],[-13.106800,249.065000],[-13.041100,249.085000],[-12.948200,249.105000],[-12.832200,249.105000],[-12.739300,249.125000],[-12.917300,248.931000],[-12.847700,248.916000],[-12.797400,248.912000],[-12.731600,248.920000],[-12.634800,248.935000],[-12.530200,248.955000],[-12.402300,248.983000],[-12.297600,249.006000],[-12.127000,249.042000],[-11.994500,249.085000],[-11.862500,249.136000],[-11.749800,249.184000],[-11.594400,249.274000],[-11.438800,249.322000],[-11.361000,249.341000],[-11.668200,249.345000],[-11.652700,249.369000],[-11.582700,249.393000],[-11.524400,249.416000],[-11.434900,249.448000],[-11.364900,249.468000],[-11.279300,249.483000],[-11.189800,249.495000],[-11.135300,249.491000],[-11.053500,249.487000],[-10.940500,249.515000],[-10.843100,249.539000],[-10.757300,249.574000],[-10.671500,249.610000],[-10.609100,249.625000],[-11.006700,249.523000],[-10.983400,249.550000],[-10.924900,249.590000],[-10.831400,249.645000],[-10.730000,249.689000],[-10.613000,249.720000],[-10.476400,249.748000],[-10.367100,249.755000],[-10.203100,249.783000],[-10.046800,249.834000],[-9.851400,249.917000],[-9.694900,249.980000],[-9.628400,250.012000],[-9.863100,250.016000],[-9.804400,250.047000],[-9.741900,250.087000],[-9.659700,250.130000],[-9.573600,250.158000],[-9.467900,250.170000],[-9.381800,250.170000],[-9.283900,250.177000],[-9.154600,250.205000],[-9.072300,250.225000],[-8.946800,250.272000],[-9.170300,251.684000],[-9.154600,251.688000],[-9.088000,251.719000],[-8.950800,251.767000],[-8.852700,251.774000],[-8.731100,251.782000],[-8.652700,251.786000],[-8.534900,251.802000],[-8.377900,251.849000],[-8.264000,251.881000],[-8.177600,251.932000],[-8.142200,251.983000],[-8.366100,251.980000],[-8.334700,251.976000],[-8.279700,251.968000],[-8.177600,251.976000],[-8.079300,251.983000],[-7.969300,251.999000],[-7.863100,252.027000],[-7.701900,252.062000],[-7.583900,252.102000],[-7.473700,252.137000],[-7.269000,252.196000],[-7.166600,252.240000],[-7.127200,252.303000],[-7.867100,252.090000],[-7.776600,252.094000],[-7.658600,252.110000],[-7.544500,252.133000],[-7.426500,252.165000],[-7.308400,252.204000],[-7.198100,252.240000],[-7.135100,252.291000],[-7.430400,252.260000],[-7.367400,252.327000],[-7.312300,252.366000],[-7.245400,252.401000],[-7.194200,252.397000],[-7.135100,252.394000],[-7.040600,252.382000],[-6.930200,252.390000],[-6.827800,252.397000],[-6.697700,252.433000],[-6.532100,252.476000],[-6.433500,252.504000],[-6.362500,252.551000],[-6.472900,253.052000],[-6.461100,253.056000],[-6.390100,253.091000],[-6.323000,253.111000],[-6.252000,253.123000],[-6.173100,253.123000],[-6.082300,253.135000],[-5.991500,253.159000],[-5.975700,253.162000],[-6.117800,253.253000],[-6.066500,253.249000],[-5.975700,253.233000],[-5.865200,253.233000],[-5.770400,253.245000],[-5.671700,253.273000],[-5.580800,253.300000],[-5.521500,253.336000],[-5.770400,253.352000],[-5.746700,253.368000],[-5.695400,253.387000],[-5.616400,253.415000],[-5.541300,253.442000],[-5.482000,253.462000],[-5.406900,253.474000],[-5.304200,253.494000],[-5.154000,253.505000],[-5.039300,253.537000],[-4.999800,253.557000],[-4.928600,253.596000],[-4.837600,253.651000],[-4.742700,253.683000],[-4.655600,253.703000],[-4.560700,253.738000],[-4.481500,253.762000],[-4.584400,254.460000],[-4.073800,254.665000],[-4.172800,255.331000],[-3.860000,255.450000],[-4.058000,257.232000],[-4.022300,257.263000],[-3.986700,257.287000],[-3.927300,257.303000],[-3.848100,257.330000],[-3.749100,257.370000],[-3.630200,257.409000],[-3.519300,257.433000],[-3.436100,257.445000],[-3.356800,257.449000],[-3.230000,257.449000],[-3.130900,257.437000],[-2.972400,257.421000],[-2.940700,257.409000],[-3.127000,257.330000],[-3.051600,257.307000],[-2.964400,257.291000],[-2.861400,257.283000],[-2.758300,257.283000],[-2.631400,257.291000],[-2.492600,257.307000],[-2.349800,257.327000],[-2.195100,257.350000],[-2.040400,257.386000],[-1.881700,257.433000],[-1.774600,257.484000],[-1.937200,257.559000],[-1.865800,257.614000],[-1.830100,257.642000],[-1.770600,257.677000],[-1.687300,257.689000],[-1.615900,257.666000],[-1.588100,257.650000],[-1.611900,257.622000],[-1.576200,257.595000],[-1.540500,257.579000],[-1.465100,257.575000],[-1.377800,257.579000],[-1.306300,257.595000],[-1.409500,257.504000],[-1.342000,257.480000],[-1.246800,257.476000],[-1.103900,257.469000],[-0.961000,257.484000],[-0.814200,257.508000],[-0.663300,257.551000],[-0.492600,257.603000],[-0.393400,257.650000],[-0.238600,257.729000],[-0.131400,257.780000],[-0.004300,257.815000],[0.134600,257.827000],[0.265600,257.819000],[0.086900,257.697000],[0.444200,257.729000],[2.896300,258.600000],[100.000000,1000.000000],[3.748300,257.740000],[2.896300,258.600000],[0.444200,257.729000],[0.086900,257.697000],[0.265600,257.819000],[0.134600,257.827000],[-0.004300,257.815000],[-0.131400,257.780000],[-0.238600,257.729000],[-0.393400,257.650000],[-0.492600,257.603000],[-0.663300,257.551000],[-0.814200,257.508000],[-0.961000,257.484000],[-1.103900,257.469000],[-1.246800,257.476000],[-1.342000,257.480000],[-1.409500,257.504000],[-1.306300,257.595000],[-1.377800,257.579000],[-1.465100,257.575000],[-1.540500,257.579000],[-1.576200,257.595000],[-1.611900,257.622000],[-1.588100,257.650000],[-1.615900,257.666000],[-1.687300,257.689000],[-1.770600,257.677000],[-1.830100,257.642000],[-1.865800,257.614000],[-1.937200,257.559000],[-1.774600,257.484000],[-1.881700,257.433000],[-2.040400,257.386000],[-2.195100,257.350000],[-2.349800,257.327000],[-2.492600,257.307000],[-2.631400,257.291000],[-2.758300,257.283000],[-2.861400,257.283000],[-2.964400,257.291000],[-3.051600,257.307000],[-3.127000,257.330000],[-2.940700,257.409000],[-2.972400,257.421000],[-3.130900,257.437000],[-3.230000,257.449000],[-3.356800,257.449000],[-3.436100,257.445000],[-3.519300,257.433000],[-3.630200,257.409000],[-3.749100,257.370000],[-3.848100,257.330000],[-3.927300,257.303000],[-3.986700,257.287000],[-4.022300,257.263000],[-4.058000,257.232000],[-3.860000,255.450000],[-4.172800,255.331000],[-4.073800,254.665000],[-4.584400,254.460000],[-4.481500,253.762000],[-4.560700,253.738000],[-4.655600,253.703000],[-4.742700,253.683000],[-4.837600,253.651000],[-4.928600,253.596000],[-4.999800,253.557000],[-5.039300,253.537000],[-5.154000,253.505000],[-5.304200,253.494000],[-5.406900,253.474000],[-5.482000,253.462000],[-5.541300,253.442000],[-5.616400,253.415000],[-5.695400,253.387000],[-5.746700,253.368000],[-5.770400,253.352000],[-5.521500,253.336000],[-5.580800,253.300000],[-5.671700,253.273000],[-5.770400,253.245000],[-5.865200,253.233000],[-5.975700,253.233000],[-6.066500,253.249000],[-6.117800,253.253000],[-5.975700,253.162000],[-5.991500,253.159000],[-6.082300,253.135000],[-6.173100,253.123000],[-6.252000,253.123000],[-6.323000,253.111000],[-6.390100,253.091000],[-6.461100,253.056000],[-6.472900,253.052000],[-6.362500,252.551000],[-6.433500,252.504000],[-6.532100,252.476000],[-6.697700,252.433000],[-6.827800,252.397000],[-6.930200,252.390000],[-7.040600,252.382000],[-7.135100,252.394000],[-7.194200,252.397000],[-7.245400,252.401000],[-7.312300,252.366000],[-7.367400,252.327000],[-7.430400,252.260000],[-7.135100,252.291000],[-7.198100,252.240000],[-7.308400,252.204000],[-7.426500,252.165000],[-7.544500,252.133000],[-7.658600,252.110000],[-7.776600,252.094000],[-7.867100,252.090000],[-7.127200,252.303000],[-7.166600,252.240000],[-7.269000,252.196000],[-7.473700,252.137000],[-7.583900,252.102000],[-7.701900,252.062000],[-7.863100,252.027000],[-7.969300,251.999000],[-8.079300,251.983000],[-8.177600,251.976000],[-8.279700,251.968000],[-8.334700,251.976000],[-8.366100,251.980000],[-8.142200,251.983000],[-8.177600,251.932000],[-8.264000,251.881000],[-8.377900,251.849000],[-8.534900,251.802000],[-8.652700,251.786000],[-8.731100,251.782000],[-8.852700,251.774000],[-8.950800,251.767000],[-9.088000,251.719000],[-9.154600,251.688000],[-9.170300,251.684000],[-8.946800,250.272000],[-9.072300,250.225000],[-9.154600,250.205000],[-9.283900,250.177000],[-9.381800,250.170000],[-9.467900,250.170000],[-9.573600,250.158000],[-9.659700,250.130000],[-9.741900,250.087000],[-9.804400,250.047000],[-9.863100,250.016000],[-9.628400,250.012000],[-9.694900,249.980000],[-9.851400,249.917000],[-10.046800,249.834000],[-10.203100,249.783000],[-10.367100,249.755000],[-10.476400,249.748000],[-10.613000,249.720000],[-10.730000,249.689000],[-10.831400,249.645000],[-10.924900,249.590000],[-10.983400,249.550000],[-11.006700,249.523000],[-10.609100,249.625000],[-10.671500,249.610000],[-10.757300,249.574000],[-10.843100,249.539000],[-10.940500,249.515000],[-11.053500,249.487000],[-11.135300,249.491000],[-11.189800,249.495000],[-11.279300,249.483000],[-11.364900,249.468000],[-11.434900,249.448000],[-11.524400,249.416000],[-11.582700,249.393000],[-11.652700,249.369000],[-11.668200,249.345000],[-11.361000,249.341000],[-11.438800,249.322000],[-11.594400,249.274000],[-11.749800,249.184000],[-11.862500,249.136000],[-11.994500,249.085000],[-12.127000,249.042000],[-12.297600,249.006000],[-12.402300,248.983000],[-12.530200,248.955000],[-12.634800,248.935000],[-12.731600,248.920000],[-12.797400,248.912000],[-12.847700,248.916000],[-12.917300,248.931000],[-12.739300,249.125000],[-12.832200,249.105000],[-12.948200,249.105000],[-13.041100,249.085000],[-13.106800,249.065000],[-13.153100,249.054000],[-13.060400,249.132000],[-13.102900,249.140000],[-13.184100,249.132000],[-13.249700,249.109000],[-13.303800,249.081000],[-13.346300,249.046000],[-13.377200,249.018000],[-13.411900,248.987000],[-13.269100,248.904000],[-13.419600,248.805000],[-13.562400,248.742000],[-13.334700,247.606000],[-13.423500,247.599000],[-13.531600,247.543000],[-13.678100,247.528000],[-13.766800,247.536000],[-13.882400,247.551000],[-13.944000,247.508000],[-13.982500,247.484000],[-14.067200,247.449000],[-14.125000,247.449000],[-14.198100,247.457000],[-14.286500,247.461000],[-14.390400,247.461000],[-14.490300,247.453000],[-14.609300,247.433000],[-14.670800,247.405000],[-14.743700,247.374000],[-14.808900,247.342000],[-14.866500,247.307000],[-14.613200,247.307000],[-14.651600,247.255000],[-14.755200,247.224000],[-14.866500,247.177000],[-14.996800,247.153000],[-15.085000,247.133000],[-15.226700,247.102000],[-15.326200,247.086000],[-15.483000,247.062000],[-15.613000,247.039000],[-15.716200,247.011000],[-15.781100,247.003000],[-15.838400,246.999000],[-15.865100,246.999000],[-15.666500,247.102000],[-15.727600,247.086000],[-15.834500,247.082000],[-15.941400,247.043000],[-16.040600,246.980000],[-16.113000,246.944000],[-16.185400,246.932000],[-16.280700,246.912000],[-16.379700,246.909000],[-16.413900,246.912000],[-16.326400,247.023000],[-16.341600,247.019000],[-16.448200,247.003000],[-16.550900,246.956000],[-16.607900,246.920000],[-16.668800,246.865000],[-16.714400,246.814000],[-16.684000,246.952000],[-16.744800,246.928000],[-16.816900,246.893000],[-16.885300,246.865000],[-16.953600,246.834000],[-17.021900,246.794000],[-17.052300,246.782000],[-17.097800,246.770000],[-17.052300,246.873000],[-17.097800,246.873000],[-17.238000,246.822000],[-17.340300,246.770000],[-17.442600,246.719000],[-17.506900,246.704000],[-17.559800,246.696000],[-17.548500,246.806000],[-17.605200,246.786000],[-17.677100,246.759000],[-17.733800,246.723000],[-17.805600,246.692000],[-17.884900,246.648000],[-17.949000,246.640000],[-18.013200,246.636000],[-18.047100,246.636000],[-17.967900,246.727000],[-18.073500,246.711000],[-18.145200,246.715000],[-18.201700,246.700000],[-18.273300,246.672000],[-18.333600,246.636000],[-18.378800,246.621000],[-18.465300,246.613000],[-18.495400,246.609000],[-18.393800,246.727000],[-18.469100,246.711000],[-18.555600,246.688000],[-18.627100,246.652000],[-18.691000,246.597000],[-18.739800,246.530000],[-18.796200,246.502000],[-18.848700,246.490000],[-18.908800,246.490000],[-18.751100,246.640000],[-18.803700,246.613000],[-18.890000,246.601000],[-18.968800,246.569000],[-19.043800,246.502000],[-19.096300,246.467000],[-19.163800,246.423000],[-19.220000,246.408000],[-19.294900,246.388000],[-19.339800,246.376000],[-19.377200,246.368000],[-19.238700,246.506000],[-19.306100,246.479000],[-19.399700,246.455000],[-19.504400,246.420000],[-19.620300,246.364000],[-19.702500,246.333000],[-19.881700,246.297000],[-20.060600,246.266000],[-20.176100,246.250000],[-20.261700,246.242000],[-20.339800,246.226000],[-20.492200,246.155000],[-20.599900,246.120000],[-20.700200,246.084000],[-20.629600,246.017000],[-20.692700,245.982000],[-20.918900,245.891000],[-21.044800,245.868000],[-21.130000,245.844000],[-21.222400,245.836000],[-21.314800,245.824000],[-21.403500,245.824000],[-21.514200,245.816000],[-21.610100,245.796000],[-21.698600,245.777000],[-21.787000,245.753000],[-21.842300,245.745000],[-21.658100,245.690000],[-21.683900,245.635000],[-21.761200,245.595000],[-21.838600,245.580000],[-21.912200,245.576000],[-21.971000,245.591000],[-22.033600,245.603000],[-22.055600,245.611000],[-22.114400,245.631000],[-22.184200,245.635000],[-22.243000,245.631000],[-22.301700,245.615000],[-22.345700,245.603000],[-22.143800,245.603000],[-22.176900,245.584000],[-22.228300,245.517000],[-22.301700,245.473000],[-22.408100,245.454000],[-22.547300,245.414000],[-22.646200,245.390000],[-22.752300,245.382000],[-22.887500,245.375000],[-22.960600,245.386000],[-23.026300,245.394000],[-23.077400,245.406000],[-23.095600,245.438000],[-23.095600,245.438000],[-23.132100,244.937000],[-23.452600,245.043000],[-23.645300,244.574000],[-23.961000,244.669000],[-24.351700,243.647000],[-24.478100,243.687000],[-24.705300,243.734000],[-24.928400,243.805000],[-25.126000,243.868000],[-25.334100,243.979000],[-25.538100,244.101000],[-25.702600,244.231000],[-25.863200,244.353000],[-26.016600,244.487000],[-26.180300,244.649000],[-26.319000,244.783000],[-26.393600,244.890000],[-26.631300,245.375000],[-26.649000,246.660000],[-26.649000,246.660000],[-26.688000,247.362000],[-26.457500,247.141000],[-26.599400,247.102000],[-26.765900,247.050000],[-26.928600,247.058000],[-27.077000,247.078000],[-27.295600,247.066000],[-27.425900,247.070000],[-27.527900,247.070000],[-27.570000,247.062000],[-27.422400,247.165000],[-27.573600,247.165000],[-27.850800,247.192000],[-28.081900,247.208000],[-28.281000,247.224000],[-28.539000,247.255000],[-28.803300,247.279000],[-29.008100,247.319000],[-29.181200,247.346000],[-29.329900,247.390000],[-29.416300,247.437000],[-28.768600,248.155000],[-28.886700,248.186000],[-29.105100,248.245000],[-29.257300,248.293000],[-29.464600,248.308000],[-29.647300,248.300000],[-29.860700,248.308000],[-30.097500,248.285000],[-30.292800,248.277000],[-30.494500,248.257000],[-30.719600,248.241000],[-30.886400,248.214000],[-31.052900,248.182000],[-31.249600,248.131000],[-31.425600,248.099000],[-31.489700,247.976000],[-31.514600,248.246000],[-31.514600,248.246000],[-31.489700,247.976000],[-31.500600,247.970000],[-31.604700,247.958000],[-31.692300,247.954000],[-31.799700,247.949000],[-31.894400,247.928000],[-31.996200,247.927000],[-32.137800,247.909000],[-32.235800,247.867000],[-32.344500,247.819000],[-32.462100,247.784000],[-32.462100,247.786000],[-32.080100,247.749000],[-32.080100,247.749000],[-32.116400,247.743000],[-32.154500,247.726000],[-32.210800,247.697000],[-32.276100,247.666000],[-32.366600,247.624000],[-32.466100,247.584000],[-32.561900,247.562000],[-32.671900,247.548000],[-32.823200,247.547000],[-32.929300,247.543000],[-33.130400,247.530000],[-33.304200,247.500000],[-33.488300,247.497000],[-33.722000,247.458000],[-33.497500,247.382000],[-33.497500,247.382000],[-33.554600,247.357000],[-33.590300,247.349000],[-33.670500,247.333000],[-33.754300,247.316000],[-33.882300,247.324000],[-34.010100,247.331000],[-34.113000,247.347000],[-34.212100,247.369000],[-34.330500,247.421000],[-34.441600,247.515000],[-34.510300,247.588000],[-34.579000,247.667000],[-34.631700,247.752000],[-34.687800,247.884000],[-34.880200,248.551000],[-35.068700,249.156000],[-35.068700,249.156000],[-35.200000,249.200000],[-35.330000,249.170000],[-35.550000,249.110000],[-35.830000,249.050000],[-36.040000,249.040000],[-36.280000,249.070000],[-36.450000,249.100000],[-36.390000,249.440000],[-36.490000,249.460000],[-36.650000,249.460000],[-36.860000,249.390000],[-37.020000,249.360000],[-37.110000,249.330000],[-37.060000,249.300000],[-37.150000,249.270000],[-37.360000,249.240000],[-37.570000,249.180000],[-37.620000,249.150000],[-37.590000,249.140000],[-37.750000,249.090000],[-37.960000,249.030000],[-38.090000,249.000000],[-38.090000,248.980000],[-38.300000,248.940000],[-38.600000,248.870000],[-38.970000,248.790000],[-39.280000,248.730000],[-39.430000,248.700000],[-39.430000,248.670000],[-39.520000,248.650000],[-39.730000,248.590000],[-39.900000,248.550000],[-39.890000,248.580000],[-40.100000,248.550000],[-40.250000,248.540000],[-40.250000,248.570000],[-40.430000,248.530000],[-40.440000,248.550000],[-40.530000,248.530000],[-40.540000,248.550000],[-40.640000,248.540000],[-40.660000,248.540000],[-40.710000,248.530000],[-40.930000,248.490000],[-41.090000,248.470000],[-41.230000,248.480000],[-41.060000,248.540000],[-41.150000,248.560000],[-41.250000,248.540000],[-41.440000,248.540000],[-41.610000,248.570000],[-41.370000,248.710000],[-41.530000,248.750000],[-41.780000,248.730000],[-42.120000,248.660000],[-42.180000,248.660000],[-42.170000,248.690000],[-42.300000,248.670000],[-42.910000,248.470000],[-43.580000,248.260000],[-43.990000,248.120000],[-44.090000,248.060000],[-44.010000,248.060000],[-44.070000,248.030000],[-44.450000,247.890000],[-45.000000,247.720000],[-45.030000,247.700000],[-45.490000,247.520000],[-45.620000,247.460000],[-45.500000,247.460000],[-45.590000,247.410000],[-46.090000,247.220000],[-46.880000,246.960000],[-47.580000,246.750000],[-47.770000,246.710000],[-47.700000,246.780000],[-48.000000,246.720000],[-48.440000,246.590000],[-48.540000,246.590000],[-48.470000,246.660000],[-48.590000,246.660000],[-48.760000,246.620000],[-49.050000,246.490000],[-49.470000,246.320000],[-49.790000,246.190000],[-49.810000,246.100000],[-49.820000,245.990000],[-49.330000,243.460000],[-49.320000,243.400000],[-49.360000,243.330000],[-49.520000,243.220000],[-49.870000,243.080000],[-50.140000,242.970000],[-50.290000,242.920000],[-50.390000,242.900000],[-50.370000,242.940000],[-50.420000,242.920000],[-50.580000,242.850000],[-50.810000,242.730000],[-50.920000,242.660000],[-51.030000,242.550000],[-50.940000,242.550000],[-51.010000,242.480000],[-51.210000,242.360000],[-51.540000,242.180000],[-51.910000,241.970000],[-52.250000,241.780000],[-52.470000,241.680000],[-52.660000,241.580000],[-52.800000,241.570000],[-52.910000,241.580000],[-53.030000,241.640000],[-52.790000,241.840000],[-52.830000,241.860000],[-52.940000,241.830000],[-53.020000,241.780000],[-53.090000,242.220000],[-53.160000,242.240000],[-53.290000,242.220000],[-53.620000,242.060000],[-53.980000,241.870000],[-54.350000,241.650000],[-54.530000,241.490000],[-54.540000,241.390000],[-54.490000,241.120000],[-54.410000,240.680000],[-54.460000,240.550000],[-54.360000,240.070000],[-54.270000,239.680000],[-54.200000,239.420000],[-54.200000,239.330000],[-54.230000,239.290000],[-54.310000,239.220000],[-54.430000,239.150000],[-54.520000,239.120000],[-54.550000,239.120000],[-54.530000,239.140000],[-54.600000,239.130000],[-54.700000,239.100000],[-54.880000,238.990000],[-55.000000,238.940000],[-55.130000,238.840000],[-55.560000,238.600000],[-55.940000,238.340000],[-55.960000,238.300000],[-55.970000,238.210000],[-55.940000,237.940000],[-55.850000,237.400000],[-55.740000,236.900000],[-55.720000,236.560000],[-55.450000,234.920000],[-55.140000,233.800000],[-55.060000,233.210000],[-55.560000,232.770000],[-55.320000,231.380000],[-54.930000,229.950000],[-54.620000,228.630000],[-54.240000,227.120000],[-53.890000,225.790000],[-53.640000,224.700000],[-53.390000,223.820000],[-53.900000,223.410000],[-53.690000,222.470000],[-53.570000,222.110000],[-54.710000,221.210000],[-55.260000,220.750000],[-55.620000,220.430000],[-55.720000,220.810000],[-56.270000,220.460000],[-56.770000,219.950000],[-57.050000,219.680000],[-56.620000,217.910000],[-56.270000,216.670000],[-55.910000,215.520000],[-55.780000,215.140000],[-56.670000,214.020000],[-57.310000,213.320000],[-57.640000,212.830000],[-57.550000,212.310000],[-58.130000,211.720000],[-58.820000,210.740000],[-59.320000,210.180000],[-59.720000,209.610000],[-59.470000,208.670000],[-60.010000,207.850000],[-61.970000,205.320000],[-61.790000,204.650000],[-62.980000,202.750000],[-62.300000,201.140000],[-62.700000,200.140000],[-62.510000,199.670000],[-62.670000,199.260000],[-62.180000,198.050000],[-63.100000,196.310000],[-62.460000,195.220000],[-63.500000,192.840000],[-63.120000,192.640000],[-64.720000,190.010000],[-64.090000,188.890000],[-65.070000,186.780000],[-64.990000,186.530000],[-65.550000,184.940000],[-65.400000,184.500000],[-65.179000,184.267000],[-65.602000,182.924000],[-65.864500,182.078000],[-66.160200,181.201000],[-66.681900,180.000000],[-66.681900,180.000000],[-65.050300,177.991500],[-64.749700,177.789400],[-64.955000,177.163800],[-64.470200,176.587700],[-64.689300,175.980400],[-64.243400,175.159200],[-64.448800,174.370100],[-63.448200,172.936100],[-63.704600,171.402100],[-62.967500,170.115500],[-63.277200,168.745600],[-63.018800,168.434800],[-63.241400,167.682200],[-62.617700,166.732700],[-62.826800,165.961800],[-62.092400,164.775300],[-62.453200,163.660300],[-61.825500,162.583600],[-62.027500,161.703700],[-61.577400,160.828300],[-61.577400,160.828300],[-61.050900,160.737400],[-59.959800,159.917700],[-59.783000,159.753300],[-59.671200,159.652800],[-59.627300,159.442800],[-59.394000,158.782900],[-59.085100,158.330800],[-58.915500,158.068200],[-58.794800,157.988300],[-58.444600,157.716500],[-58.037600,157.524700],[-57.837200,157.472200],[-57.474900,157.353500],[-57.220600,157.406000],[-57.021900,157.593200],[-56.575900,157.705100],[-56.362300,157.750800],[-56.010800,157.823900],[-56.010800,158.043100],[-55.941700,158.319300],[-55.795300,158.559100],[-55.719400,158.849100],[-55.488000,159.139100],[-55.149400,159.301200],[-54.747200,159.324000],[-54.160500,159.538700],[-53.949600,159.588900],[-53.523100,159.917700],[-53.104700,160.168900],[-52.975300,160.342400],[-52.643200,160.787700],[-52.421800,161.022800],[-52.351900,161.239800],[-52.152900,161.338000],[-52.037600,161.411000],[-51.965700,161.447500],[-51.786200,161.527500],[-51.878200,161.762700],[-51.550500,162.075500],[-51.234800,162.166800],[-51.065400,162.274100],[-50.781000,162.529900],[-50.503700,162.602900],[-50.113300,162.845000],[-49.735900,163.148700],[-49.598100,163.100700],[-49.470200,163.395300],[-49.395800,163.685200],[-49.379400,163.717200],[-49.041300,163.840500],[-48.872900,163.947800],[-48.640400,164.144200],[-48.485800,164.233300],[-48.222500,164.340600],[-47.960900,164.514100],[-47.762600,164.678500],[-47.228800,164.758400],[-47.108800,164.865800],[-46.747500,164.979900],[-46.747500,164.979900],[-47.560000,164.690000],[-47.290000,164.670000],[-47.010000,164.790000],[-46.760000,164.930000],[-46.670000,164.980000],[-46.620000,165.040000],[-46.610000,165.040000],[-46.370000,165.220000],[-46.150000,165.430000],[-45.810000,165.780000],[-45.590000,166.050000],[-45.310000,166.440000],[-45.060000,166.770000],[-44.820000,167.100000],[-44.650000,167.370000],[-44.470000,167.690000],[-44.330000,168.090000],[-44.160000,168.490000],[-44.020000,168.770000],[-43.840000,169.130000],[-43.600000,169.640000],[-43.360000,170.110000],[-43.090000,170.640000],[-42.930000,170.990000],[-42.730000,171.270000],[-42.740000,171.280000],[-42.740000,171.280000],[-42.680000,171.470000],[-42.610000,171.860000],[-42.480000,172.600000],[-42.390000,173.130000],[-42.290000,173.720000],[-42.200000,174.310000],[-42.120000,174.980000],[-42.060000,175.500000],[-41.910000,176.080000],[-41.750000,176.680000],[-41.660000,177.120000],[-41.500000,177.600000],[-41.190000,178.020000],[-40.800000,178.290000],[-40.420000,178.560000],[-40.090000,178.790000],[-39.680000,178.950000],[-39.230000,179.120000],[-38.890000,179.210000],[-38.540000,179.370000],[-38.200000,179.570000],[-38.110000,179.660000],[-38.040000,179.720000],[-35.018600,181.364000],[-35.018600,181.364000],[-34.710000,181.457000],[-34.480700,181.585000],[-34.239900,181.712000],[-33.964600,181.854000],[-33.580400,182.014000],[-33.185900,182.189000],[-32.698800,182.337000],[-32.237500,182.458000],[-32.102900,182.523000],[-31.789900,182.691000],[-31.457100,182.891000],[-31.030700,183.086000],[-30.681500,183.310000],[-30.322200,183.453000],[-29.884400,183.661000],[-29.470100,183.847000],[-29.061800,183.914000],[-28.697900,183.999000],[-28.262100,184.110000],[-27.781900,184.210000],[-27.313900,184.448000],[-26.855600,184.597000],[-26.439900,184.581000],[-26.023900,184.581000],[-25.730000,184.623000],[-25.431400,184.699000],[-25.145300,184.744000],[-24.836100,184.776000],[-24.467600,184.788000],[-24.070200,184.901000],[-23.751600,185.027000],[-23.507100,185.161000],[-23.215200,185.342000],[-22.904000,185.510000],[-22.621600,185.680000],[-22.286000,185.865000],[-21.915800,186.043000],[-21.525700,186.183000],[-21.241900,186.300000],[-20.894900,186.446000],[-20.590800,186.599000],[-20.198600,186.783000],[-19.773700,186.947000],[-19.464700,187.029000],[-19.073800,187.130000],[-18.780000,187.213000],[-18.478700,187.308000],[-18.150600,187.404000],[-17.931600,187.461000],[-17.678900,187.554000],[-17.267200,187.620000],[-16.963300,187.666000],[-16.712100,187.685000],[-16.327700,187.695000],[-16.039200,187.700000],[-15.736200,187.665000],[-15.560700,187.640000],[-15.375200,187.567000],[-15.148700,187.399000],[-15.037500,187.233000],[-14.862800,187.065000],[-14.789500,186.867000],[-14.702100,186.724000],[-14.587800,186.597000],[-14.587800,186.597000],[-14.355200,185.609000],[-14.343900,185.553000],[-14.322700,185.389000],[-14.334000,185.236000],[-14.349600,185.043000],[-14.345300,184.903000],[-14.318400,184.689000],[-14.253300,184.564000],[-14.223500,184.511000],[-14.141400,184.337000],[-14.101700,184.269000],[-14.049200,184.187000],[-13.985400,184.083000],[-13.952800,184.017000],[-13.904600,183.918000],[-13.856400,183.858000],[-13.822300,183.807000],[-13.779700,183.684000],[-13.664700,183.553000],[-13.617900,183.501000],[-13.561100,183.393000],[-13.410400,183.276000],[-13.393400,183.266000],[-13.328000,183.232000],[-13.234100,183.187000],[-13.070400,183.121000],[-12.945200,183.098000],[-13.074700,183.022000],[-13.161500,182.902000],[-13.261100,182.736000],[-13.363500,182.535000],[-13.453100,182.381000],[-13.481500,182.281000],[-13.488600,182.052000],[-13.453100,181.894000],[-13.406200,181.669000],[-13.352100,181.431000],[-13.316600,181.194000],[-13.276800,181.013000],[-13.209900,180.744000],[-13.165800,180.579000],[-13.165800,180.354000],[-13.212800,180.164000],[-13.256900,179.937100],[-13.379200,179.545500],[-13.448800,179.281000],[-13.474400,179.142200],[-13.484300,179.042800],[-13.433200,178.873300],[-13.330800,178.733000],[-13.134500,178.505000],[-13.051900,178.413000],[-12.946600,178.268300],[-12.799800,178.078300],[-12.694400,177.933600],[-12.591700,177.717300],[-12.501800,177.505500],[-12.392000,177.241000],[-12.333400,177.075800],[-12.306300,176.789400],[-12.286300,176.536600],[-12.264900,176.256000],[-12.282000,175.849700],[-12.282000,175.469800],[-12.290600,174.986100],[-12.297700,174.652900],[-12.322000,174.350400],[-12.360500,174.151700],[-12.397700,174.047900],[-12.416200,174.008500],[-12.393400,173.803900],[-12.354800,173.593400],[-12.284900,173.311400],[-12.044900,172.931400],[-11.884800,172.704900],[-11.753200,172.517900],[-11.611500,172.253400],[-11.452600,171.966900],[-11.246300,171.676100],[-11.114400,171.439400],[-10.919300,171.207000],[-10.805900,170.983500],[-10.724100,170.755500],[-10.670900,170.562600],[-10.494200,170.236700],[-10.280100,170.026300],[-10.119000,169.843600],[-9.986600,169.602500],[-9.819600,169.421300],[-9.618000,169.228400],[-9.434900,169.091000],[-9.312400,168.971200],[-9.192700,168.788500],[-9.067100,168.589800],[-8.943000,168.376400],[-8.873700,168.224400],[-8.778400,167.978900],[-8.733600,167.764100],[-8.714900,167.464500],[-8.743700,167.255600],[-8.761100,167.090400],[-8.743700,166.877100],[-8.723500,166.646200],[-8.642600,166.447400],[-8.560300,166.263300],[-8.519800,166.066000],[-8.508200,165.798600],[-8.516900,165.633500],[-8.558800,165.522400],[-8.583400,165.452300],[-8.580500,165.455200],[-8.658500,165.221400],[-8.742300,164.949600],[-8.841900,164.670400],[-8.951700,164.426400],[-9.075800,164.106400],[-9.171000,163.812600],[-9.274900,163.499900],[-9.393100,163.184200],[-9.476700,162.911000],[-9.567500,162.680100],[-9.674200,162.444800],[-9.724600,162.336700],[-9.782200,162.256300],[-11.330800,162.966500],[-11.330800,162.966500],[-11.362300,162.832100],[-11.388100,162.621600],[-11.415300,162.482800],[-11.421100,162.354200],[-11.418200,162.225600],[-11.435400,162.111600],[-11.425400,162.022500],[-11.391000,161.907000],[-11.358000,161.801800],[-11.319300,161.717100],[-11.287800,161.556300],[-11.250600,161.459900],[-11.229000,161.383900],[-11.194600,161.303500],[-11.170300,161.201200],[-11.124400,161.125200],[-11.059900,161.059400],[-11.024000,160.998100],[-10.962300,160.936700],[-10.912100,160.865100],[-10.838900,160.781800],[-10.784400,160.730700],[-10.724100,160.622500],[-10.670900,160.548000],[-10.633600,160.486600],[-10.566100,160.369700],[-10.514400,160.287900],[-10.471300,160.209000],[-10.415200,160.137300],[-10.373500,160.064300],[-10.310300,159.978100],[-10.271400,159.912300],[-10.245600,159.834800],[-10.199500,159.772000],[-10.170800,159.704800],[-10.119000,159.642000],[-10.080100,159.574700],[-10.025500,159.497300],[-9.965000,159.440300],[-9.926200,159.365800],[-9.877200,159.289800],[-9.823900,159.226900],[-9.770700,159.168500],[-9.724600,159.123200],[-9.688600,159.069100],[-9.654000,158.999000],[-9.623700,158.924400],[-9.586300,158.851400],[-9.564700,158.778300],[-9.545900,158.708100],[-9.511300,158.578100],[-9.478200,158.474300],[-9.440700,158.382300],[-9.387400,158.271200],[-9.313800,158.139700],[-9.247500,158.056400],[-9.210000,157.995000],[-9.153700,157.910200],[-9.110400,157.828400],[-9.062800,157.727600],[-9.008000,157.653000],[-8.969000,157.568300],[-8.893900,157.413400],[-8.829000,157.311100],[-8.782700,157.238000],[-8.751000,157.175200],[-8.706200,157.048100],[-8.647000,156.937000],[-8.618100,156.855200],[-8.597800,156.787900],[-8.563200,156.704600],[-8.521300,156.606700],[-8.495200,156.543900],[-8.440300,156.469400],[-8.389700,156.394800],[-8.389700,156.394800],[-8.356500,156.323200],[-8.288500,156.194600],[-8.220500,156.095300],[-8.161200,155.982700],[-8.106200,155.868700],[-8.038300,155.735800],[-7.997700,155.634900],[-7.948500,155.525300],[-7.913800,155.442000],[-7.893500,155.376300],[-7.871800,155.319300],[-7.838500,155.276900],[-7.822600,155.227200],[-7.722700,155.072300],[-7.722700,155.072300],[-7.631500,154.991900],[-7.569200,154.901300],[-7.508300,154.790300],[-7.401100,154.674800],[-7.327200,154.569600],[-7.237300,154.467300],[-7.175000,154.394300],[-7.077800,154.319700],[-7.014000,154.255400],[-6.942900,154.183800],[-6.860200,154.123900],[-6.774600,154.023100],[-6.681700,153.900300],[-6.577200,153.798000],[-6.497400,153.663600],[-6.433500,153.613900],[-6.352100,153.517400],[-6.308600,153.432700],[-6.256300,153.345000],[-6.209800,153.266100],[-6.145900,153.133100],[-6.108100,153.042500],[-6.073200,152.962100],[-6.016500,152.801400],[-5.991800,152.690300],[-5.975900,152.534000],[-5.990400,152.389300],[-6.019400,152.262100],[-6.064500,152.184700],[-6.102300,152.085300],[-6.128400,152.006400],[-6.160400,151.929000],[-6.199600,151.864700],[-6.238900,151.817900],[-6.282400,151.752100],[-6.317300,151.664500],[-6.371000,151.572400],[-6.423300,151.497900],[-6.456700,151.417500],[-6.498800,151.316700],[-6.558300,151.173400],[-6.601900,151.112100],[-6.648400,150.996600],[-6.686100,150.892900],[-6.745600,150.805200],[-6.805100,150.705800],[-6.834100,150.602100],[-6.883400,150.527500],[-6.934200,150.451500],[-6.974800,150.306900],[-7.011100,150.232300],[-7.059000,150.149000],[-7.074900,150.083300],[-7.112600,150.001400],[-7.137300,149.865500],[-7.163400,149.786600],[-7.190900,149.687300],[-7.199600,149.601000],[-7.233000,149.522100],[-7.259000,149.443200],[-7.253300,149.355500],[-7.282200,149.273700],[-7.312700,149.200600],[-7.314100,149.111500],[-7.335900,149.017900],[-7.367800,148.959500],[-7.373600,148.858700],[-7.376500,148.781200],[-7.383700,148.702300],[-7.388000,148.652600],[-7.390900,148.600000],[-7.402500,148.537200],[-7.417000,148.478700],[-7.430100,148.394000],[-7.430100,148.342800],[-7.430100,148.255100],[-7.415600,148.182100],[-7.399600,148.068100],[-7.383700,148.000900],[-7.375000,147.935100],[-7.350400,147.832800],[-7.321400,147.761200],[-7.299600,147.694000],[-7.266300,147.623800],[-7.241700,147.534700],[-7.212700,147.476200],[-7.206900,147.410500],[-7.182200,147.338900],[-7.167700,147.277500],[-7.127100,147.229300],[-7.085100,147.148900],[-7.064800,147.074400],[-7.030000,147.017400],[-6.992200,146.937000],[-6.964700,146.885800],[-6.913900,146.849300],[-6.913900,146.849300],[-5.661800,146.707800],[-5.600600,146.252800],[-5.446900,146.024600],[-5.256100,145.896100],[-5.165100,145.859100],[-5.010100,145.840000],[-4.800500,145.784100],[-4.645800,145.701300],[-4.518400,145.627800],[-4.418900,145.463500],[-4.283100,145.253500],[-4.074700,144.961300],[-3.802500,144.614100],[-3.531400,144.076000],[-3.504800,143.921300],[-3.433000,143.702600],[-3.352700,143.356600],[-3.317800,143.056400],[-3.219500,142.664800],[-3.057000,142.291000],[-2.893900,142.017300],[-2.686900,141.425000],[-2.445200,140.496200],[-2.427900,140.332400],[-2.374500,140.059300],[-2.221300,139.658300],[-1.994300,139.329600],[-1.867600,139.083300],[-1.622900,138.645400],[-1.461900,137.989800],[-1.445000,137.744200],[-1.446500,137.489700],[-1.522000,137.099200],[-1.569200,136.854000],[-1.625800,136.572500],[-1.664700,136.172800],[-1.638800,135.908900],[-1.522000,135.508200],[-1.395800,135.180100],[-1.168100,134.951400],[-1.113500,134.896500],[-1.040600,134.832400],[-0.958500,134.768200],[-0.922400,134.677100],[-0.914100,134.531600],[-0.915100,134.368000],[-0.925400,134.168000],[-0.817100,133.885500],[-0.727000,133.630400],[-0.655200,133.366300],[-0.519800,133.038100],[-0.468700,132.365000],[-0.442000,132.237600],[-0.461200,132.074100],[-0.508900,131.756200],[-0.537300,131.592700],[-0.575100,131.393000],[-0.511100,131.365300],[-0.346400,131.346100],[-0.209300,131.290700],[-0.081600,131.189900],[0.045800,131.052700],[0.172700,130.815500],[0.253900,130.596800],[0.335000,130.369000],[0.489000,130.077100],[0.469700,129.913600],[0.469400,129.859100],[0.285800,129.787500],[0.148300,129.770200],[-0.135800,129.744700],[-0.346200,129.791500],[-0.583800,129.892900],[-0.711400,129.993700],[-1.003500,130.168300],[-1.268200,130.324500],[-1.360200,130.252400],[-1.424700,130.180000],[-1.591200,129.899200],[-1.720200,129.754600],[-1.922700,129.574000],[-2.069400,129.529500],[-2.124300,129.529800],[-2.169700,129.602800],[-2.215000,129.675900],[-2.250600,129.848800],[-2.322500,130.076500],[-2.376000,130.331400],[-2.475300,130.559300],[-2.801300,131.152300],[-3.082200,131.626800],[-3.562400,132.384400],[-3.635300,132.430300],[-3.799300,132.513200],[-3.890600,132.541000],[-4.036000,132.687400],[-4.144700,132.833500],[-4.235100,132.997800],[-4.298100,133.170900],[-4.361300,133.289500],[-4.378900,133.416900],[-4.323100,133.580100],[-4.221800,133.725000],[-4.165800,133.924600],[-4.183100,134.097500],[-4.191400,134.243000],[-4.264000,134.334400],[-4.345000,134.534900],[-4.454700,134.517400],[-4.554900,134.554400],[-4.682600,134.591600],[-4.901600,134.602000],[-4.974700,134.584300],[-5.084400,134.548600],[-5.194100,134.494800],[-5.331400,134.422900],[-5.396100,133.806000],[-5.396100,133.806000],[-5.114000,133.907200],[-5.050200,133.925700],[-4.858900,133.953800],[-4.612700,133.991200],[-4.412200,134.037500],[-4.293400,134.019800],[-4.211100,133.974600],[-4.256000,133.810700],[-4.328100,133.610200],[-4.345900,133.491900],[-4.326500,133.255500],[-4.224900,132.983000],[-4.096300,132.801600],[-3.894900,132.693200],[-3.684400,132.584900],[-3.482900,132.467500],[-3.409300,132.349500],[-3.307900,132.168000],[-3.151600,131.959400],[-3.022800,131.768900],[-2.912400,131.605600],[-2.783800,131.469700],[-2.682300,131.270000],[-2.608400,131.088300],[-2.525400,130.934000],[-2.451600,130.788800],[-2.359400,130.625400],[-2.257800,130.398400],[-2.202100,130.225800],[-2.155500,130.025800],[-2.127500,129.916800],[-2.099700,129.816800],[-1.980500,129.753600],[-1.943900,129.753800],[-1.797600,129.781700],[-1.761100,129.800000],[-1.669900,129.873200],[-1.560700,130.001000],[-1.497200,130.119500],[-1.342400,130.283900],[-1.205700,130.411800],[-1.077500,130.394200],[-1.022400,130.367100],[-0.884800,130.285800],[-0.756300,130.204400],[-0.618500,130.095800],[-0.517500,130.023500],[-0.370800,129.978600],[-0.196700,129.933800],[0.014000,129.880100],[0.133100,129.871500],[0.279500,129.872100],[0.499100,129.882100],[0.645600,129.873600],[0.783200,129.810500],[1.067400,129.702500],[1.150100,129.630100],[1.388500,129.521900],[1.828100,129.423600],[2.057000,129.388200],[2.487300,129.280800],[2.624700,129.226800],[2.981800,129.110000],[3.366400,128.929600],[3.595500,128.785000],[3.925100,128.604500],[4.190300,128.487300],[4.611200,128.252500],[5.041200,127.954100],[5.260400,127.845900],[5.579900,127.701600],[5.789800,127.611600],[6.200000,127.485900],[6.536900,127.405400],[6.964400,127.325300],[7.318700,127.281300],[7.836100,127.228900],[8.153600,127.157500],[8.561200,127.104600],[8.941600,127.006100],[9.384600,126.917000],[9.763800,126.864000],[10.169700,126.792900],[10.349900,126.766400],[10.557000,126.730900],[10.799800,126.731900],[11.159500,126.642500],[11.465300,126.480000],[11.653700,126.435300],[12.021600,126.282200],[12.371300,126.074500],[12.568300,125.957100],[12.944000,125.758500],[13.212200,125.568600],[13.489000,125.369700],[13.711900,125.243300],[13.943400,125.107800],[14.183600,124.972400],[14.352400,124.891300],[14.539000,124.773800],[14.716500,124.665400],[14.805200,124.611200],[14.814800,124.438400],[14.754700,124.019700],[14.703800,123.519200],[14.731500,123.246400],[14.821700,122.846500],[14.937800,122.583300],[15.115600,122.320200],[15.222300,122.147800],[15.275800,122.029800],[15.328700,122.039100],[15.698200,122.204500],[15.926500,122.332800],[16.224700,122.470500],[16.478800,122.589900],[16.662500,122.663500],[16.811500,122.664100],[17.091600,122.628900],[17.188000,122.565700],[17.371800,122.484600],[17.537800,122.430800],[18.182100,122.406300],[18.434000,122.371000],[18.659900,122.262800],[18.859700,122.127300],[18.981400,121.991400],[19.181000,121.792100],[19.389500,121.465600],[19.519800,121.247800],[19.650400,120.930000],[19.772000,120.685000],[19.867300,120.521700],[19.901900,120.467200],[20.485300,120.506200],[21.032000,120.636000],[21.525800,120.729200],[21.907700,120.794600],[22.204100,120.841400],[22.668300,120.989000],[22.937500,121.099400],[23.181000,121.209600],[23.633400,121.357200],[23.917500,121.440400],[24.400600,121.588100],[24.566700,121.652600],[24.757400,121.744400],[22.923900,123.070300],[22.923900,123.070300],[23.018100,124.299300],[23.229100,125.333900],[23.703600,126.405100],[24.325600,127.213200],[24.975100,127.980400],[25.791000,128.978500],[26.685000,129.776400],[27.264500,130.244000],[27.733700,130.510000],[27.742800,130.505600],[27.742800,130.505600],[28.608400,130.884100],[29.505200,131.334200],[29.789700,131.478900],[30.391500,132.037100],[30.924500,132.588000],[31.642600,133.516000],[32.252700,134.565200],[32.541400,135.205300],[32.852600,136.219500],[32.998500,136.574600],[33.283600,137.353500],[33.608000,137.838700],[33.880200,138.170400],[33.880200,138.170400],[35.265100,138.828000],[34.936300,139.516300],[34.655500,140.153400],[34.401500,141.011300],[34.290500,141.613300],[34.303700,141.964100],[34.309800,141.991800],[34.309800,141.991800],[35.943300,142.554700],[36.000300,142.604400],[36.064300,142.680300],[36.135400,142.816100],[36.211200,142.981000],[36.340000,143.017500],[36.519300,143.153300],[36.647700,143.277400],[36.861500,143.407300],[37.058300,143.518200],[37.288400,143.635000],[37.478300,143.744500],[37.710600,143.843800],[37.929500,143.889100],[38.166200,143.929900],[38.359500,143.973700],[38.535200,144.016100],[38.709300,144.062800],[38.909200,144.119700],[39.123300,144.186900],[39.374100,144.204400],[39.557500,144.238000],[39.767300,144.226300],[39.928200,144.254000],[40.068600,144.281800],[40.204200,144.328500],[40.367400,144.398500],[40.550300,144.480300],[40.720400,144.611700],[40.835800,144.611700],[40.940000,144.627700],[41.008600,144.640900],[41.008600,144.640900],[41.057200,144.697800],[41.091500,144.781000],[41.130100,144.910900],[41.164300,144.992700],[41.234900,145.189800],[41.329600,145.402900],[41.427500,145.694900],[41.548200,145.884700],[41.674200,146.081800],[41.728900,146.238000],[41.836000,146.446700],[41.951600,146.670100],[42.010400,146.855500],[42.133400,147.051100],[42.228900,147.197100],[42.349200,147.402900],[42.459600,147.600000],[42.577300,147.820400],[42.703400,148.029200],[42.703400,148.029200],[42.819600,148.230700],[42.938800,148.413100],[43.081200,148.627700],[43.228700,148.859800],[43.392900,149.112400],[43.530100,149.324100],[43.660600,149.532900],[43.764400,149.785400],[43.818300,149.969300],[43.907900,149.973500],[44.049800,150.279800],[44.193100,150.638700],[44.286800,150.885600],[44.413100,151.132500],[44.562000,151.448000],[44.693900,151.685700],[44.772400,151.829700],[44.890800,152.017200],[45.006100,152.168100],[45.156700,152.431000],[45.292400,152.625300],[45.394000,152.801300],[45.548400,153.045900],[45.652700,153.251600],[45.824000,153.528300],[45.940600,153.795700],[46.085500,153.900900],[46.204700,154.001500],[46.306200,154.145500],[46.431200,154.303200],[46.527600,154.444900],[46.637900,154.696900],[46.837500,154.760900],[46.901800,154.843200],[47.020700,155.003200],[47.155000,155.154100],[47.329400,155.362100],[47.548100,155.622700],[47.755100,155.910800],[47.925900,156.162200],[48.061000,156.400000],[48.175800,156.624000],[48.313200,156.813700],[48.441100,156.973800],[48.488300,157.014900],[48.661200,157.133800],[48.803400,157.273200],[48.967700,157.499500],[49.057900,157.776200],[49.198900,157.979600],[49.376900,158.320200],[49.396300,158.551100],[49.581000,158.734000],[49.738300,158.903200],[49.964400,159.159200],[50.126400,159.360400],[50.298000,159.561500],[50.518600,159.769600],[50.633600,159.973000],[50.914800,160.325100],[51.100900,160.485100],[51.359300,160.727400],[51.621900,161.056600],[51.796600,161.305800],[51.997400,161.598400],[52.201500,161.833800],[52.308200,161.886400],[52.506700,162.048700],[52.791700,162.309300],[53.047300,162.560800],[53.282300,162.789400],[53.582600,162.947100],[53.859200,163.139200],[54.115200,163.358600],[54.288100,163.555200],[54.541500,163.745000],[54.818300,163.916400],[55.137800,164.039900],[55.362500,164.115300],[55.200600,164.581600],[55.200600,164.581600],[55.266000,164.387300],[55.095900,164.858300],[54.968500,165.171400],[54.821000,165.484600],[54.719200,165.694900],[54.589300,165.946400],[54.431000,166.266500],[54.266700,166.515600],[54.077600,166.828800],[53.839000,167.215200],[53.713000,167.420900],[53.601700,167.720400],[53.477700,168.056400],[53.477700,168.143300],[53.397200,168.259900],[53.205500,168.483900],[53.040500,168.687400],[53.022500,168.781100],[52.990800,168.909100],[52.917700,169.044000],[52.870700,169.254300],[52.791700,169.663500],[52.658500,170.088700],[52.494100,170.566500],[52.332000,170.989400],[52.156600,171.238600],[52.007300,171.503800],[51.922500,171.842100],[51.898500,172.075300],[51.850400,172.212400],[51.701500,172.548500],[51.643200,172.845600],[51.546400,173.108500],[51.443600,173.570300],[51.337800,173.920100],[51.302000,174.210400],[51.247500,174.480200],[51.187200,174.763600],[51.057700,175.118000],[51.036100,175.303100],[51.072100,175.545400],[51.030300,175.723800],[50.938000,176.094100],[50.816500,176.496400],[50.690300,176.978800],[50.594400,177.397100],[50.485100,177.913800],[50.407700,178.499000],[50.340500,179.049900],[50.333200,179.468300],[50.325800,179.856900],[50.322900,180.239000],[50.327300,180.531000],[50.322900,180.904000],[50.321400,181.267000],[50.333200,181.704000],[50.340500,182.029000],[50.365300,182.397000],[50.371200,182.678000],[50.397500,183.012000],[50.423800,183.400000],[50.460300,183.757000],[50.505500,184.136000],[50.541900,184.559000],[50.574000,184.872000],[50.630700,185.357000],[50.723700,185.894000],[50.749800,186.169000],[50.799100,186.624000],[50.836700,187.049000],[50.890300,187.540000],[50.920600,187.933000],[50.978400,188.425000],[51.033200,188.811000],[51.115300,189.207000],[51.195800,189.634000],[51.266100,189.973000],[51.359300,190.336000],[51.449300,190.651000],[51.533500,190.967000],[51.592000,191.202000],[51.700100,191.573000],[51.773900,191.852000],[51.837600,192.121000],[51.950800,192.595000],[52.051000,193.040000],[52.138300,193.468000],[52.246500,193.873000],[52.369800,194.346000],[52.456400,194.657000],[52.549900,195.018000],[52.634800,195.400000],[52.743200,195.813000],[52.834700,196.179000],[52.908000,196.499000],[53.006000,196.943000],[53.102400,197.343000],[53.216500,197.873000],[53.311000,198.248000],[53.404000,198.760000],[53.453200,199.160000],[53.521400,199.498000],[53.613900,199.988000],[53.700800,200.415000],[53.780800,200.824000],[53.860600,201.213000],[53.947000,201.629000],[54.041300,202.130000],[54.109900,202.523000],[54.189000,202.870000],[54.260000,203.261000],[54.353600,203.648000],[54.427000,203.997000],[54.502900,204.322000],[54.617200,204.674000],[54.769400,204.974000],[54.940900,205.282000],[55.081500,205.575000],[55.232000,205.984000],[55.345500,206.357000],[55.462600,206.624000],[55.572900,206.944000],[55.694400,207.269000],[55.757600,207.564000],[55.861900,207.977000],[55.995400,208.476000],[56.120700,208.867000],[56.221500,209.038000],[56.362600,209.294000],[56.420900,209.621000],[56.526000,209.888000],[56.659600,210.081000],[56.801700,210.458000],[56.945600,210.796000],[57.100200,211.157000],[57.219500,211.402000],[57.254200,211.667000],[57.286400,211.886000],[57.356900,212.108000],[57.464200,212.236000],[57.601900,212.319000],[57.686500,212.549000],[57.791700,212.778000],[57.909900,212.988000],[58.130700,213.345000],[58.285100,213.576000],[58.401700,213.649000],[58.563300,213.743000],[58.695700,213.907000],[58.791900,214.031000],[58.987200,214.257000],[59.095600,214.442000],[59.115600,214.550000],[59.130800,214.726000],[59.104100,214.601000],[59.104100,214.601000],[59.185500,215.111000],[59.202400,215.448000],[59.242800,215.740000],[59.268300,216.213000],[59.275300,216.641000],[59.240800,217.013000],[59.169100,217.357000],[59.078500,217.701000],[59.006800,217.972000],[58.896800,218.351000],[58.781900,218.695000],[58.685500,219.038000],[58.589200,219.327000],[58.502200,219.589000],[58.376600,219.914000],[58.279600,220.158000],[58.186800,220.483000],[58.108100,220.818000],[58.014900,221.116000],[57.911600,221.460000],[57.792400,221.994000],[57.519900,222.816000],[57.223500,223.137000],[56.963900,223.542000],[56.723400,223.801000],[56.507000,223.942000],[56.218500,224.100000],[55.968800,224.223000],[55.728000,224.309000],[55.563200,224.352000],[55.377000,224.421000],[54.985800,224.596000],[54.864900,224.685000],[54.664100,224.863000],[54.446000,225.104000],[54.397900,225.176000],[54.151600,225.435000],[53.876400,225.803000],[53.773300,225.956000],[53.664400,226.127000],[53.517300,226.306000],[53.243300,226.665000],[53.122300,226.809000],[52.939800,227.078000],[52.828600,227.285000],[52.711400,227.511000],[52.577400,227.717000],[52.471000,227.897000],[52.297000,228.140000],[52.161900,228.329000],[52.037500,228.517000],[51.952400,228.671000],[51.815900,228.905000],[51.633800,229.138000],[51.570600,229.273000],[51.433200,229.471000],[51.324300,229.596000],[51.175200,229.721000],[50.996800,229.864000],[50.869700,229.980000],[50.725000,230.087000],[50.550300,230.275000],[50.415600,230.473000],[50.298400,230.607000],[50.157000,230.832000],[50.056500,231.003000],[49.955400,231.229000],[49.883400,231.464000],[49.793800,231.681000],[49.727800,231.862000],[49.632100,232.069000],[49.577800,232.232000],[49.511600,232.413000],[49.445200,232.603000],[49.324300,232.928000],[49.251700,233.118000],[49.161000,233.317000],[48.962200,233.568000],[48.744700,233.801000],[48.538400,234.016000],[48.337400,234.222000],[47.976200,234.571000],[47.785600,234.713000],[47.545200,234.846000],[47.347500,234.897000],[47.074500,234.966000],[46.893700,235.027000],[46.680800,235.105000],[46.499000,235.121000],[46.322800,235.145000],[46.165100,235.143000],[46.026200,235.114000],[45.867600,235.130000],[45.734300,235.100000],[45.472400,235.142000],[44.952200,235.098000],[44.803500,235.114000],[44.635300,235.075000],[44.388500,235.026000],[44.245200,234.978000],[43.917600,234.983000],[43.614400,235.005000],[43.263200,235.019000],[42.977000,235.005000],[42.756200,235.029000],[42.527700,235.062000],[42.298500,235.087000],[41.966900,235.100000],[41.633500,235.114000],[41.414900,235.111000],[41.182000,235.098000],[40.934100,235.113000],[40.705900,235.164000],[40.455500,235.270000],[40.478200,235.596000],[40.478200,235.596000],[39.775100,235.637000],[35.331200,240.536000],[34.377400,242.897000],[32.022800,245.065000],[31.670000,245.417000],[29.867000,246.197000],[29.861600,246.982000],[29.861600,246.982000],[29.500900,247.369000],[29.308500,247.521000],[29.139800,247.665000],[28.954700,247.817000],[28.705400,247.941000],[28.504000,248.039000],[28.350500,248.128000],[28.245000,248.227000],[28.155500,248.326000],[28.106400,248.416000],[28.097700,248.489000],[28.056200,248.616000],[27.990300,248.769000],[27.941100,248.851000],[27.851000,248.986000],[27.801500,249.095000],[27.670600,249.266000],[27.548100,249.374000],[27.401100,249.490000],[27.278300,249.607000],[27.106300,249.750000],[26.876600,249.929000],[26.703800,250.091000],[26.497400,250.316000],[26.356600,250.505000],[26.290400,250.568000],[26.035200,250.674000],[25.771100,250.780000],[25.514400,250.923000],[25.274200,251.002000],[25.040600,251.208000],[24.906200,251.407000],[24.796900,251.560000],[24.695900,251.704000],[24.603500,251.813000],[24.502800,251.911000],[24.402400,251.974000],[24.143300,252.053000],[24.050500,252.170000],[23.990700,252.306000],[23.837900,252.559000],[23.727400,252.748000],[23.566200,252.965000],[23.405000,253.172000],[23.252100,253.361000],[22.980600,253.622000],[22.777700,253.701000],[22.641800,253.800000],[22.396100,253.879000],[22.260000,253.959000],[21.869800,254.009000],[21.742100,254.053000],[21.605400,254.125000],[21.502600,254.205000],[21.425400,254.268000],[21.348200,254.331000],[21.271200,254.366000],[21.271100,254.375000],[21.271100,254.375000],[21.270900,254.394000],[21.262500,254.384000],[21.245400,254.393000],[21.185500,254.411000],[21.023800,254.382000],[20.955600,254.372000],[20.768200,254.306000],[20.597600,254.259000],[20.443300,254.275000],[20.194700,254.272000],[20.065700,254.289000],[19.979700,254.297000],[19.850500,254.323000],[19.738100,254.376000],[19.608700,254.402000],[19.436000,254.437000],[19.332000,254.490000],[19.175700,254.589000],[19.062400,254.678000],[19.010200,254.714000],[19.010200,254.714000],[17.766800,254.600000],[17.012600,254.466000],[17.030900,254.630000],[16.262700,254.604000],[15.558100,254.642000],[15.106700,254.680000],[15.273300,255.310000],[14.070900,255.563000],[12.585200,256.073000],[11.891600,256.230000],[11.872800,256.123000],[10.936400,256.261000],[10.276500,256.372000],[10.121700,256.403000],[10.016000,255.705000],[9.172400,255.705000],[8.455900,255.743000],[8.342100,255.770000],[8.399000,257.040000],[7.182700,257.343000],[5.528000,257.542000],[3.776800,257.818000],[3.748300,257.740000],[100.000000,1000.000000],[7.157800,281.565000],[9.931100,282.823000],[11.583300,285.511000],[12.603200,289.019000],[11.133700,292.642000],[11.368600,300.744000],[11.592700,300.698000],[11.825800,300.707000],[12.005000,300.724000],[12.228900,300.778000],[12.532900,300.814000],[12.899100,300.859000],[13.211300,300.876000],[13.629900,300.939000],[13.950000,300.984000],[14.367100,300.983000],[14.889500,300.936000],[15.339900,300.835000],[15.912500,300.725000],[16.500500,300.405000],[17.095400,300.031000],[17.095400,300.031000],[17.086700,300.031000],[16.551600,303.558000],[16.547700,303.624000],[16.556800,303.756000],[16.559400,303.861000],[16.562000,303.966000],[16.568600,304.067000],[16.567300,304.137000],[16.581600,304.196000],[16.588200,304.290000],[16.597300,304.403000],[16.610300,304.547000],[16.612900,304.644000],[16.607700,304.834000],[16.609000,304.915000],[16.627300,304.982000],[16.637700,305.043000],[16.649500,305.092000],[16.666400,305.180000],[16.683400,305.264000],[16.689900,305.352000],[16.693800,305.473000],[16.696400,305.599000],[16.689900,305.710000],[16.684700,305.792000],[16.671700,305.883000],[16.671700,305.987000],[16.665100,306.033000],[16.662500,306.059000],[16.657300,306.127000],[16.646900,306.203000],[16.635100,306.281000],[16.602500,306.484000],[16.607700,306.604000],[16.606400,306.740000],[16.610300,306.830000],[16.599900,306.955000],[16.588200,307.101000],[16.576400,307.199000],[16.563300,307.334000],[16.547700,307.448000],[16.483700,307.666000],[16.498100,307.677000],[16.490200,307.730000],[16.482400,307.762000],[16.444500,307.968000],[16.421000,308.050000],[16.406600,308.132000],[16.392300,308.242000],[16.367400,308.358000],[16.340000,308.480000],[16.319100,308.606000],[16.282500,308.736000],[16.253700,308.845000],[16.222400,308.950000],[16.189700,309.066000],[16.167400,309.168000],[16.147800,309.293000],[16.117700,309.446000],[16.078500,309.593000],[16.045700,309.732000],[16.013000,309.902000],[15.981600,310.008000],[15.960700,310.118000],[15.922700,310.259000],[15.921400,310.285000],[15.910900,310.324000],[15.888600,310.389000],[15.854600,310.488000],[15.820500,310.586000],[15.785100,310.722000],[15.761500,310.855000],[15.735300,310.971000],[15.714300,311.125000],[15.689400,311.272000],[15.655300,311.434000],[15.623900,311.576000],[15.600300,311.743000],[15.584500,311.862000],[15.576700,311.947000],[15.564800,312.036000],[15.551700,312.131000],[15.550400,312.250000],[15.545200,312.318000],[15.549100,312.336000],[15.534700,312.376000],[15.525500,312.408000],[15.512400,312.509000],[15.492700,312.666000],[15.478200,312.774000],[15.454600,312.903000],[15.432300,313.031000],[15.400800,313.282000],[15.395500,313.418000],[15.395500,313.552000],[15.389000,313.640000],[15.389000,313.674000],[15.377200,313.676000],[15.377200,313.696000],[15.369300,313.742000],[15.365400,313.808000],[15.361400,313.888000],[15.356200,313.942000],[15.356200,314.009000],[15.353500,314.049000],[15.264800,314.875000],[14.022000,314.855000],[13.996600,314.940000],[12.682900,314.966000],[12.633400,315.748000],[12.173100,315.724000],[12.145000,316.123000],[10.936300,316.096000],[10.810200,318.919000],[10.138500,318.933000],[10.125100,319.134000],[9.454600,319.127000],[9.434400,319.361000],[8.897600,319.355000],[8.858500,319.874000],[8.218100,319.903000],[8.145100,321.792000],[7.740500,321.799000],[7.693100,323.141000],[7.441200,323.160000],[7.415500,323.948000],[7.117300,323.963000],[7.099700,324.640000],[6.787800,324.651000],[6.791900,326.379000],[6.111700,326.394000],[6.076400,326.486000],[5.652500,326.493000],[5.646000,327.027000],[5.646000,327.027000],[3.955900,327.136000],[4.063000,329.034000],[1.639200,329.263000],[1.610600,329.971000],[0.794600,330.086000],[0.851900,330.795000],[0.952100,331.654000],[1.059500,332.685000],[1.159700,333.529000],[0.501100,333.709000],[0.615700,334.969000],[-1.102500,335.384000],[-0.966500,336.508000],[-0.801800,337.617000],[-0.680100,338.455000],[-0.494000,339.507000],[-0.329300,340.324000],[-0.179000,341.154000],[0.035800,342.113000],[0.272000,343.245000],[0.301400,343.497000],[0.301400,343.497000],[-0.554500,343.748000],[-0.518300,343.957000],[-1.145100,344.155000],[-1.072800,344.437000],[-1.494600,344.592000],[-0.910100,346.843000],[-2.097100,347.298000],[-1.940400,347.837000],[-2.855800,348.166000],[-3.065900,347.907000],[-3.018300,347.969000],[-3.968800,348.232000],[-4.107100,347.903000],[-4.581900,347.963000],[-4.611900,347.855000],[-5.026300,347.987000],[-4.942300,348.394000],[-5.416500,348.484000],[-5.380500,348.837000],[-5.932200,348.975000],[-6.022100,348.735000],[-6.022100,348.735000],[-6.756200,348.820000],[-7.362300,346.380000],[-8.412500,346.640000],[-8.372700,346.807000],[-9.221500,346.980000],[-9.274500,346.747000],[-9.797300,346.833000],[-9.823700,346.687000],[-11.426200,346.967000],[-11.886200,345.000000],[-12.339400,345.093000],[-12.319200,345.133000],[-12.653800,345.213000],[-12.581800,345.447000],[-13.216200,345.593000],[-13.268400,345.400000],[-14.206900,345.527000],[-14.037700,346.353000],[-15.658900,346.773000],[-15.691200,346.613000],[-16.207200,346.760000],[-16.432500,345.700000],[-16.766800,345.760000],[-16.779600,345.633000],[-17.995900,345.920000],[-17.791600,347.040000],[-18.785100,347.240000],[-18.747000,347.520000],[-19.930400,347.740000],[-19.829500,348.053000],[-20.283000,348.147000],[-20.301900,348.027000],[-21.173700,348.233000],[-21.211200,347.993000],[-21.735300,348.153000],[-21.754000,348.060000],[-22.152100,348.180000],[-22.381700,347.087000],[-22.629400,347.147000],[-22.833500,346.173000],[-23.548400,346.333000],[-23.517700,346.433000],[-24.771800,346.720000],[-24.887400,346.187000],[-25.651200,346.333000],[-25.741800,345.953000],[-26.584100,346.187000],[-26.566100,346.313000],[-28.320600,346.727000],[-28.214400,347.260000],[-28.938300,347.467000],[-29.248600,346.013000],[-29.854800,346.180000],[-29.825800,346.280000],[-31.153700,346.627000],[-31.176600,346.500000],[-32.140300,346.753000],[-32.400800,345.473000],[-33.396300,345.633000],[-33.469000,345.293000],[-34.048100,345.487000],[-34.236600,344.720000],[-35.183500,344.900000],[-35.647400,342.100000],[-38.499400,342.753000],[-38.431200,343.167000],[-39.503300,343.500000],[-39.508500,343.460000],[-39.791900,343.560000],[-39.817600,343.400000],[-40.207200,343.513000],[-40.268600,343.087000],[-43.384100,343.673000],[-43.689600,343.753000],[-45.471100,344.407000],[-45.367800,345.100000],[-45.901000,345.280000],[-45.793800,346.193000],[-47.578300,346.673000],[-47.125300,349.507000],[-49.216400,350.293000],[-48.962400,351.860000],[-49.286200,351.973000],[-49.268800,352.040000],[-50.060700,352.353000],[-50.000600,352.573000],[-50.606900,352.840000],[-50.214900,354.820000],[-52.047800,355.753000],[-51.981900,356.047000],[-54.329600,357.633000],[-54.055900,358.613000],[-54.844400,359.580000],[-54.870000,359.560000],[-55.020000,358.960000],[-55.130000,358.390000],[-55.650000,358.390000],[-55.660000,357.920000],[-55.710000,357.100000],[-55.740000,356.280000],[-55.770000,355.950000],[-55.810000,355.310000],[-56.210000,355.320000],[-56.590000,355.300000],[-56.630000,354.550000],[-56.670000,353.940000],[-56.980000,353.900000],[-57.240000,353.870000],[-57.270000,353.460000],[-57.320000,353.000000],[-57.620000,352.990000],[-57.870000,352.990000],[-57.920000,352.470000],[-57.990000,351.390000],[-58.090000,350.110000],[-58.160000,348.810000],[-58.240000,347.350000],[-58.320000,346.050000],[-58.390000,344.930000],[-58.440000,344.030000],[-58.460000,344.000000],[-58.770000,343.780000],[-59.100000,343.590000],[-59.100000,343.080000],[-59.130000,342.330000],[-59.150000,341.940000],[-59.510000,341.880000],[-59.540000,341.570000],[-59.940000,341.450000],[-60.250000,341.350000],[-60.290000,340.630000],[-60.810000,340.420000],[-60.576100,333.300000],[-60.576100,333.300000],[-60.545100,333.488000],[-60.330500,333.897000],[-60.092400,334.473000],[-59.589200,335.267000],[-58.947500,335.883000],[-58.249100,336.176000],[-57.558100,336.163000],[-56.655400,335.728000],[-55.966600,335.033000],[-55.591800,334.342000],[-55.589100,334.356000],[-55.589100,334.356000],[-55.408200,333.741000],[-55.278100,332.886000],[-55.200400,331.817000],[-55.150700,330.816000],[-55.076900,329.776000],[-55.000900,328.241000],[-54.850000,327.004000],[-54.631200,325.748000],[-54.362300,325.006000],[-53.966900,324.377000],[-53.586300,323.741000],[-53.321800,323.248000],[-53.076800,322.399000],[-52.945000,321.475000],[-52.842200,320.246000],[-52.775800,318.999000],[-52.751600,318.001000],[-52.684000,316.907000],[-52.678800,315.722000],[-52.618800,314.320000],[-52.608200,313.344000],[-52.656200,312.313000],[-52.701300,311.291000],[-52.827300,310.228000],[-52.969500,309.232000],[-53.210600,307.831000],[-53.373100,306.652000],[-53.618400,305.361000],[-53.816700,303.790000],[-54.052600,302.192000],[-54.198600,300.829000],[-54.276600,299.736000],[-54.355700,298.815000],[-54.454800,297.385000],[-54.462000,296.326000],[-54.494200,294.841000],[-54.439000,292.836000],[-54.312600,291.629000],[-54.134700,290.166000],[-53.960600,288.943000],[-53.671400,287.738000],[-53.254600,286.314000],[-52.919300,285.387000],[-52.506200,284.487000],[-52.506200,284.487000],[-52.458200,284.181000],[-52.240900,284.130000],[-52.050200,284.052000],[-51.667100,283.985000],[-51.434500,283.944000],[-51.149200,283.894000],[-50.873600,283.835000],[-50.538400,283.768000],[-50.212500,283.701000],[-49.861000,283.661000],[-49.560200,283.629000],[-49.317200,283.633000],[-49.007700,283.711000],[-48.702400,283.789000],[-48.419100,283.829000],[-48.091600,283.871000],[-47.719600,283.986000],[-47.418700,284.054000],[-46.973400,284.161000],[-46.606000,284.294000],[-46.606000,284.294000],[-46.078200,284.430000],[-45.761200,284.452000],[-45.544000,284.392000],[-45.280800,284.287000],[-45.035900,284.218000],[-44.699100,284.123000],[-44.355400,284.246000],[-43.989800,284.342000],[-43.760200,284.409000],[-43.371200,284.533000],[-43.152200,284.564000],[-42.885800,284.613000],[-42.638300,284.653000],[-41.597500,284.822000],[-41.269400,284.854000],[-40.740000,284.952000],[-40.435500,285.002000],[-39.898400,284.982000],[-39.666900,284.976000],[-39.273200,285.072000],[-38.863200,285.187000],[-38.372400,285.339000],[-37.891500,285.364000],[-37.451700,285.470000],[-36.073500,285.942000],[-35.416900,286.278000],[-34.993400,286.493000],[-33.739400,287.027000],[-33.421100,287.177000],[-32.903000,287.374000],[-32.550200,287.451000],[-32.141600,287.484000],[-31.357100,287.484000],[-30.974600,287.543000],[-29.825500,287.676000],[-29.540400,287.743000],[-29.198800,287.829000],[-28.743600,287.880000],[-28.439700,287.974000],[-28.086600,288.088000],[-27.756700,288.210000],[-27.482400,288.313000],[-27.061000,288.418000],[-26.694800,288.486000],[-26.318800,288.509000],[-26.064800,288.530000],[-25.382000,288.592000],[-24.894200,288.634000],[-24.371400,288.695000],[-24.021500,288.726000],[-23.536800,288.777000],[-23.176100,288.790000],[-22.679900,288.851000],[-22.156300,288.893000],[-21.783600,288.924000],[-21.007700,288.797000],[-20.426300,288.812000],[-20.064500,288.662000],[-19.805800,288.574000],[-19.528900,288.440000],[-19.311600,288.261000],[-19.033400,288.082000],[-18.859400,287.975000],[-18.641000,287.786000],[-18.439200,287.543000],[-18.088900,287.247000],[-17.895700,287.058000],[-17.657600,286.760000],[-17.437500,286.545000],[-17.092700,286.121000],[-16.950600,285.904000],[-16.754100,285.515000],[-16.646800,285.289000],[-16.425000,285.028000],[-15.980600,284.505000],[-15.767100,284.271000],[-15.401400,283.821000],[-15.036100,283.479000],[-14.768000,283.191000],[-14.285700,282.778000],[-13.425100,281.987000],[-13.120700,281.817000],[-12.815300,281.593000],[-12.455600,281.333000],[-12.114000,281.146000],[-11.726300,280.868000],[-11.455700,280.698000],[-11.158000,280.538000],[-10.697000,280.252000],[-10.307900,280.029000],[-9.918500,279.824000],[-9.655600,279.690000],[-9.301600,279.485000],[-8.947200,279.288000],[-8.638100,279.119000],[-8.192200,278.887000],[-7.646100,278.666000],[-7.209000,278.506000],[-6.726200,278.366000],[-6.443400,278.269000],[-5.987500,278.165000],[-5.495100,278.097000],[-4.849000,278.186000],[-4.630000,278.170000],[-4.320200,278.209000],[-3.955600,278.259000],[-3.664000,278.307000],[-3.025100,278.368000],[-2.778600,278.389000],[-2.495500,278.419000],[-2.239700,278.440000],[-1.956700,278.489000],[-1.582200,278.538000],[-1.372200,278.577000],[-1.125400,278.597000],[-0.733100,278.711000],[-0.386400,278.805000],[-0.104000,278.927000],[0.342500,279.113000],[0.698000,279.244000],[1.016700,279.393000],[1.426600,279.570000],[1.771900,279.792000],[2.108200,279.995000],[2.317000,280.143000],[2.661800,280.392000],[3.042800,280.669000],[3.368900,280.936000],[3.576700,281.166000],[3.894100,281.378000],[4.056700,281.544000],[4.348300,281.583000],[5.091400,282.036000],[5.100500,282.046000],[5.100500,282.046000],[5.173100,282.074000],[5.373500,282.076000],[5.573900,282.078000],[5.820300,282.026000],[6.039500,281.956000],[6.341200,281.804000],[6.469600,281.705000],[6.716200,281.590000],[7.011100,281.184000],[7.039000,281.120000],[6.995400,280.938000],[7.043000,280.729000],[7.099200,280.566000],[7.157800,281.565000]]
if continent=='gond':
return [[100.000000,1000.000000],[23.500000,342.170200],[25.150000,343.229400],[26.800000,344.994700],[28.900000,346.936600],[30.100000,348.525400],[32.300000,349.584600],[34.150000,352.232600],[34.339210,353.420500],[34.516910,354.613600],[34.682950,355.811600],[34.700000,355.939800],[34.899070,357.133200],[35.086410,358.332300],[35.261910,359.536700],[35.350000,0.176533],[35.500000,3.354120],[35.701080,4.558877],[35.890090,5.769544],[36.066890,6.985816],[36.150000,7.590902],[36.300000,11.298090],[36.300000,14.122610],[35.750000,15.181800],[35.350680,16.308660],[34.941000,17.424300],[34.521220,18.528700],[34.450000,18.712460],[34.127060,19.857960],[33.793580,20.994610],[33.449740,22.122300],[33.095780,23.240950],[32.731920,24.350510],[32.550000,24.891100],[32.325970,26.045860],[32.091480,27.194800],[31.846670,28.337720],[31.750000,28.774810],[31.900000,30.363610],[31.900000,31.599340],[32.550000,32.835060],[33.500000,33.541190],[34.950000,33.541190],[36.150000,33.541190],[36.700000,34.247330],[37.100000,35.129990],[37.100000,36.718780],[36.150000,38.837170],[34.850000,41.485160],[34.133900,42.332050],[33.412080,43.164660],[32.684800,43.983490],[32.550000,44.133150],[31.600000,45.192350],[30.937240,46.068470],[30.268660,46.932460],[29.594490,47.784730],[29.550000,47.840340],[28.050000,49.605660],[27.650000,51.547520],[25.850000,54.195510],[24.200000,56.490430],[23.350000,57.902690],[22.500000,58.255760],[20.800000,57.902690],[19.100000,56.843500],[17.400000,56.137370],[16.100000,54.725110],[14.800000,53.665910],[13.650000,53.136310],[13.100000,53.312850],[12.200000,54.372040],[11.800000,56.137370],[11.350000,58.608830],[10.900000,60.550680],[10.350000,61.433350],[9.750000,61.609880],[8.300000,61.786410],[6.850000,61.609880],[5.400000,61.609880],[3.200000,61.609880],[1.300000,62.139480],[-0.300000,62.669080],[-1.800000,63.375210],[-2.050000,63.375210],[-3.550000,64.257870],[-5.150000,65.846660],[-5.700000,68.141590],[-5.150000,69.553850],[-4.700000,70.613040],[-3.800000,71.848770],[-2.050000,72.731430],[-0.150000,74.320230],[1.000000,76.085560],[1.600000,78.203940],[1.600000,80.322330],[1.300000,82.970320],[0.850000,85.441780],[1.000000,86.677510],[0.850000,88.266300],[0.850000,89.855090],[1.900000,89.855090],[2.450000,90.208160],[2.450000,91.620420],[1.900000,93.562280],[0.850000,96.210270],[-0.750000,97.799060],[-1.650000,98.681720],[-1.650000,99.740920],[-1.200000,100.976600],[-1.200000,102.035800],[-0.750000,103.977700],[-0.600000,104.860400],[-1.800000,106.272600],[-3.700000,107.684900],[-4.528839,108.245800],[-5.357246,108.808100],[-6.185135,109.371800],[-6.300000,109.450200],[-9.050000,110.509400],[-11.400000,111.392100],[-13.000000,111.921700],[-14.700000,111.568600],[-16.000000,111.568600],[-18.000000,112.098200],[-19.700000,112.980900],[-20.150000,113.157400],[-20.700000,112.451300],[-20.550000,111.215500],[-19.450000,110.685900],[-19.000000,110.156300],[-17.150000,109.273700],[-16.000000,108.567600],[-14.300000,108.214500],[-13.000000,108.214500],[-12.700000,106.978800],[-13.850000,105.566500],[-16.000000,104.330800],[-16.963250,104.050600],[-17.926110,103.767600],[-18.888550,103.481500],[-19.000000,103.448100],[-21.250000,103.448100],[-23.800000,103.801200],[-25.200000,103.977700],[-27.000000,103.624600],[-28.250000,102.212400],[-30.050000,100.800100],[-31.250000,98.505200],[-31.400000,98.328660],[-32.350000,96.033740],[-32.750000,93.209210],[-33.300000,90.031630],[-33.700000,87.030570],[-34.500000,83.852990],[-35.700000,81.734600],[-37.150000,81.734600],[-38.700000,82.617260],[-40.400000,83.323390],[-42.300000,84.912190],[-42.950000,86.147910],[-44.450000,87.560170],[-45.600000,87.736700],[-46.300000,87.383640],[-47.200000,85.618320],[-48.650000,82.617260],[-49.250000,80.498870],[-49.250000,78.380480],[-48.750000,76.438620],[-48.150000,74.673290],[-48.050000,73.084500],[-48.650000,71.495700],[-49.250000,70.083440],[-49.600000,69.024250],[-50.800000,66.376260],[-50.950000,64.610930],[-51.400000,63.728270],[-51.550000,61.433350],[-50.350000,59.491490],[-48.400000,58.785360],[-45.850000,58.255760],[-43.700000,55.607770],[-42.450000,54.548580],[-41.971830,53.362790],[-41.481660,52.194880],[-40.979840,51.044720],[-40.650000,50.311790],[-40.150000,48.193400],[-39.850000,45.015820],[-39.500000,41.485160],[-39.464420,40.190330],[-39.414490,38.897100],[-39.350270,37.605980],[-39.350000,37.601440],[-39.409090,36.309970],[-39.453870,35.016560],[-39.484330,33.721760],[-39.500000,32.482000],[-39.436680,31.189210],[-39.359050,29.899040],[-39.267230,28.611990],[-39.161270,27.328570],[-39.100000,26.656420],[-39.200000,23.302300],[-39.500000,19.595120],[-40.000000,16.594060],[-40.391160,15.389190],[-40.769670,14.170470],[-41.135210,12.938030],[-41.150000,12.886880],[-41.900000,11.298090],[-42.200000,8.650098],[-42.050000,6.002109],[-41.400000,3.883717],[-40.900000,1.235728],[-40.206130,0.287955],[-39.504700,359.359500],[-38.796040,358.449700],[-38.200000,357.705100],[-37.410120,356.928900],[-36.615260,356.168900],[-35.815680,355.424600],[-35.800000,355.410200],[-33.950000,353.644800],[-32.200000,352.232600],[-29.900000,350.114200],[-28.500000,348.878400],[-27.700000,347.995800],[-26.600000,347.289600],[-26.600000,345.877400],[-26.600000,343.759000],[-27.150000,341.993700],[-27.000000,339.522200],[-25.750000,336.874200],[-24.500000,334.755800],[-23.550000,331.931300],[-22.250000,329.459900],[-20.300000,328.224100],[-19.415660,327.727800],[-18.529980,327.236800],[-17.643040,326.750900],[-16.754940,326.269800],[-16.450000,326.105700],[-14.700000,326.105700],[-12.550000,326.458800],[-10.650000,325.576100],[-8.650000,324.693500],[-6.150000,324.516900],[-3.800000,324.870000],[-2.050000,326.282300],[-0.600000,328.577200],[0.250000,331.048600],[1.000000,332.814000],[1.900000,334.226200],[3.350000,335.638500],[5.100000,337.050800],[7.400000,338.639600],[9.750000,339.522200],[12.350000,340.051800],[14.950000,339.698800],[17.250000,339.698800],[19.400000,340.051800],[20.250000,340.581400],[21.350000,340.934500],[22.200000,341.287500],[23.050000,341.640600],[23.600000,342.170200],[100.000000,1000.000000],[100.000000,1000.000000],[19.165270,340.564200],[18.740790,340.764500],[18.728310,340.766500],[18.717180,340.755300],[18.258950,340.846600],[18.246430,340.848500],[18.233910,340.850400],[17.979800,340.459200],[17.658530,340.805000],[17.657110,340.818200],[17.655690,340.831400],[17.654260,340.844600],[17.367430,341.210500],[16.928560,341.360600],[16.491100,341.540100],[16.477000,341.554800],[16.457280,341.563800],[16.757560,341.213200],[16.773960,340.729600],[17.057970,340.361500],[17.354290,339.990900],[17.368370,339.976000],[17.382440,339.961100],[17.396510,339.946200],[17.403550,339.938800],[16.948440,340.026100],[16.613660,340.341100],[16.612110,340.354200],[16.286340,340.012300],[16.282440,339.993400],[16.265920,339.976000],[16.313990,340.455800],[16.320720,340.935500],[16.300980,340.944400],[16.281230,340.953300],[15.934270,341.254400],[15.771140,341.703200],[15.782410,341.715000],[15.547960,342.133100],[15.092160,342.200800],[15.080820,342.188900],[15.062350,342.184200],[15.049550,342.185500],[15.031090,342.180900],[15.018290,342.182200],[14.968090,342.645600],[14.530430,342.524400],[14.118580,342.739100],[13.678630,342.848900],[13.251910,342.660100],[13.238980,342.661000],[12.786120,342.694500],[12.370370,342.513100],[12.351720,342.507800],[11.915820,342.331900],[11.466560,342.363900],[11.007410,342.413500],[11.000060,342.420400],[10.546040,342.368900],[10.540350,342.362500],[10.160050,342.089400],[9.698745,342.131700],[9.546884,342.097200],[100.000000,1000.000000],[9.546880,342.097200],[9.236548,342.171700],[8.804280,342.320200],[8.375051,342.486600],[8.021366,342.768900],[8.006401,342.782300],[7.997151,342.802200],[7.982182,342.815600],[7.972935,342.835500],[7.706769,343.201900],[7.469779,343.601300],[7.252450,344.007500],[7.250782,344.020800],[7.254905,344.040600],[7.119110,344.493200],[7.117482,344.506500],[6.826777,344.874400],[6.568885,345.248800],[6.366129,345.670100],[6.164172,346.091900],[6.149274,346.105300],[6.134365,346.118700],[6.119461,346.132100],[6.104551,346.145500],[5.773570,346.467200],[5.758665,346.480600],[5.387150,346.741400],[4.961268,346.940700],[4.501464,346.889300],[4.196248,346.542100],[4.474705,346.176200],[4.483788,346.156200],[4.492859,346.136200],[4.501945,346.116100],[4.511035,346.096100],[4.484519,345.639500],[4.487756,345.612700],[4.495287,345.606100],[4.687912,345.186700],[4.956750,344.808900],[4.934454,344.354600],[4.943748,344.334700],[5.206590,343.964700],[5.423696,343.541300],[5.804345,343.292300],[6.144451,342.996000],[6.159562,342.982800],[6.163688,342.526300],[6.165568,342.513100],[6.161749,342.493300],[6.163638,342.480000],[6.165520,342.466900],[6.283278,342.018500],[6.325095,341.557400],[6.313843,341.544100],[6.310194,341.524400],[6.306558,341.504600],[6.295317,341.491300],[6.291680,341.471600],[5.906576,341.217900],[5.512371,340.982100],[5.501205,340.968700],[5.358912,340.531900],[5.361045,340.518700],[5.296785,340.064000],[5.293460,340.044200],[5.282444,340.030800],[5.279125,340.011000],[5.281331,339.998000],[5.278018,339.978200],[5.242610,339.524700],[4.883635,339.227100],[4.872742,339.213700],[4.514805,338.914300],[4.498536,338.894100],[4.485338,338.893700],[4.516104,338.436100],[4.526318,338.416800],[4.087059,338.315500],[4.070935,338.295200],[4.060189,338.281600],[4.044074,338.261400],[3.799413,337.871100],[3.417510,337.611000],[100.000000,1000.000000],[99.000000,99.000030],[100.000000,1000.000000],[3.615505,339.178500],[3.575919,339.048300],[3.499730,338.823200],[3.439553,338.585900],[3.433881,338.306900],[3.488529,338.154100],[3.508291,338.003900],[3.520870,337.908400],[3.538512,337.723700],[3.509762,337.526200],[3.441816,337.164600],[3.382933,336.894300],[3.326660,336.659000],[3.199989,336.296600],[3.037618,335.997900],[2.889334,335.748900],[2.809671,335.461600],[100.000000,1000.000000],[99.000000,99.000030],[100.000000,1000.000000],[3.085526,335.544000],[3.560689,335.942200],[4.056931,336.442600],[4.438509,336.848900],[4.750833,337.066500],[5.195687,337.421700],[5.787391,337.804500],[6.384664,338.203800],[7.008101,338.553500],[7.569353,338.852100],[8.090086,339.082500],[8.710454,339.385600],[9.348619,339.544300],[9.985812,339.685700],[10.629740,339.790200],[11.148680,339.863300],[11.678750,339.934400],[12.003830,339.926000],[12.365990,339.931800],[12.718810,339.969100],[13.119460,339.921700],[13.438040,339.810700],[13.618130,339.778800],[13.950020,339.752600],[14.508860,339.707200],[15.051400,339.671800],[15.477690,339.657100],[15.820420,339.671200],[16.417670,339.604600],[16.837580,339.597100],[17.260890,339.671500],[17.762590,339.737300],[18.110140,339.794500],[18.390070,339.844300],[18.706170,339.944000],[18.900840,340.044100],[19.157020,340.232300],[19.254920,340.320400],[19.334520,340.389400],[19.423480,340.265800],[19.507210,340.212900],[19.591600,340.211000],[19.700120,340.221400],[19.785460,340.283300],[19.920260,340.407800],[20.085460,340.537700],[20.195680,340.624100],[20.262940,340.666900],[100.000000,1000.000000],[99.000000,99.000030],[100.000000,1000.000000],[18.921910,341.853000],[18.804420,341.835900],[18.606780,341.839500],[18.291250,341.877200],[17.956170,341.973100],[17.638260,342.100800],[17.249600,342.248100],[16.921790,342.381000],[16.490240,342.593000],[16.170960,342.738200],[15.977940,342.897000],[15.648430,343.128500],[15.265070,343.359600],[14.997280,343.511300],[14.650800,343.621300],[14.317820,343.623000],[13.919040,343.595400],[13.551770,343.573800],[13.119180,343.495100],[12.782700,343.478600],[12.471370,343.475700],[11.987470,343.438600],[11.575560,343.395500],[11.088590,343.354600],[10.667940,343.301200],[10.257390,343.288000],[9.896585,343.331300],[9.330876,343.479600],[8.748246,343.729900],[8.337243,344.032200],[7.842000,344.526200],[7.454125,344.923800],[6.986560,345.431300],[6.512874,345.983900],[6.245619,346.273700],[5.831452,346.612500],[5.530730,346.729800],[5.284111,346.879200],[4.884005,347.054800],[4.555824,347.112300],[4.223224,347.118500],[3.852357,347.048800],[3.659643,346.918700],[3.396530,346.674100],[3.015679,346.368600],[2.603955,345.928100],[2.244012,345.417700],[2.195260,345.166500],[2.226617,344.915600],[2.306351,344.691000],[2.471078,344.410000],[2.685410,344.062300],[3.051138,343.629800],[3.305195,343.303200],[3.547078,342.948200],[3.759756,342.528000],[3.922505,342.111800],[4.090265,341.514700],[4.210134,341.112200],[4.267598,340.774500],[4.210777,340.216000],[4.127840,339.844000],[4.031529,339.596200],[3.812302,339.334100],[100.000000,1000.000000],[99.000000,99.000030],[100.000000,1000.000000],[100.000000,1000.000000],[-41.933180,76.872630],[-41.950970,76.849530],[-42.309090,77.246570],[-42.607770,76.660600],[-42.975490,76.275600],[-43.257570,75.691370],[-43.080330,75.079670],[-42.713130,74.698080],[-42.283150,74.369420],[100.000000,1000.000000],[-37.115250,73.522380],[-37.603410,73.883420],[-38.068210,74.202080],[-38.512880,74.408650],[-38.970390,74.458310],[-39.412720,74.635880],[-39.853980,74.882380],[-40.352140,75.017200],[-40.788670,75.420590],[-41.035750,75.934270],[-41.454260,76.210250],[-41.814730,76.587780],[-41.933180,76.872630],[100.000000,1000.000000],[-44.488960,85.237450],[-44.510050,85.258610],[-44.507470,85.245060],[-44.545510,84.605550],[-44.962100,84.220250],[-45.242890,83.645130],[-45.430890,83.056950],[-45.357750,82.387710],[-45.288760,81.686360],[-45.567460,81.084010],[-46.038700,81.242310],[-45.951570,80.583940],[-45.907870,79.917630],[-46.350280,79.255760],[-46.730400,78.815890],[-47.206180,79.085770],[-47.646220,78.913060],[-47.470500,78.267020],[-47.235990,77.612590],[-46.812300,77.275960],[-46.361420,77.353950],[-45.844360,77.029900],[-45.706250,76.350110],[-45.336310,75.880730],[-44.895920,75.505730],[-44.389290,75.021610],[-43.940000,75.128640],[-43.706700,75.778210],[-44.201430,76.199010],[-44.414220,76.892650],[-44.051990,77.589430],[-43.763520,78.128380],[-43.941240,78.732120],[-44.450610,78.871480],[-44.703380,79.518800],[-44.989540,80.047900],[-45.164710,80.681150],[-45.007200,81.281980],[-44.946430,81.995350],[-44.946430,81.995350],[-44.791870,82.774980],[-44.604600,83.559880],[-44.485600,84.177610],[-44.453270,84.830070],[-44.488960,85.237450],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-36.294520,73.522340],[-36.332020,73.537540],[-36.391930,73.543070],[-36.451830,73.548680],[-36.549350,73.569280],[-36.606660,73.565300],[-36.624200,73.568160],[-36.706990,73.595050],[-36.772260,73.619030],[-36.855190,73.645740],[-36.925480,73.656980],[-36.998400,73.677490],[-37.101350,73.684770],[-37.121610,73.696940],[-37.236960,73.687840],[-37.332540,73.697980],[-37.676960,73.808070],[-38.019020,73.963100],[-38.331870,74.099870],[-38.650840,74.223210],[-39.036350,74.303240],[-39.388440,74.410320],[-39.743750,74.492870],[-40.113920,74.590160],[-40.508470,74.674220],[-40.919590,74.689760],[-41.240090,74.693230],[-41.562420,74.669950],[-41.747590,74.662090],[-41.881930,74.634030],[-42.001170,74.614260],[-42.107500,74.638100],[-42.153080,74.611750],[-42.227860,74.592640],[-42.324470,74.585080],[-42.376630,74.579110],[-42.436350,74.568370],[-42.469920,74.560900],[-42.506920,74.563540],[-42.757630,74.500210],[-42.999210,74.490410],[-43.270710,74.486060],[-43.584540,74.441200],[-44.014530,74.382840],[-44.313940,74.341630],[-44.722100,74.316740],[-45.082340,74.281880],[-45.371440,74.307460],[-45.661290,74.358800],[-45.974620,74.420210],[-46.198010,74.519100],[-46.319430,74.568700],[-46.422060,74.618160],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-45.494300,86.407920],[-45.633860,86.227230],[-45.949480,85.860610],[-46.133660,85.572010],[-46.249550,85.380980],[-46.476650,84.983340],[-46.707200,84.522380],[-46.796210,84.309390],[-46.910680,84.083190],[-47.043560,83.559960],[-47.130580,83.186150],[-47.120940,82.861430],[-47.157020,82.570210],[-47.205050,82.214810],[-47.307620,81.699410],[-47.382250,81.499450],[-47.430980,81.313610],[-47.639230,80.889780],[-47.746400,80.710270],[-48.143730,80.102280],[-48.268320,79.920730],[-48.448800,79.730960],[-48.533380,79.616670],[-48.654140,79.492610],[-48.667180,79.335010],[-48.647930,79.035510],[-48.578290,78.800420],[-48.398560,78.493890],[-48.199800,78.159290],[-47.957380,77.843810],[-47.706850,77.566600],[-47.447030,77.198860],[-47.301790,77.013210],[-47.152500,76.845940],[-46.996540,76.627850],[-46.802490,76.381800],[-46.663700,76.072040],[-46.589250,75.845100],[-46.507480,75.540890],[-46.478410,75.284010],[-46.441150,75.033480],[-46.407100,74.850420],[-46.388010,74.739680],[-46.399320,74.634790],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-44.044830,68.051390],[-44.088200,68.129380],[-44.166350,68.203530],[-44.267290,68.245640],[-44.408970,68.317730],[-44.549390,68.365240],[-44.730220,68.377860],[-44.863920,68.366010],[-45.082090,68.292130],[-45.231740,68.251360],[-45.370610,68.206340],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-43.254240,70.817060],[-43.289840,70.806790],[-43.289840,70.806790],[-42.869870,70.549160],[-43.227780,70.975230],[-43.254240,70.817060],[100.000000,1000.000000],[-48.418010,67.433420],[-47.965080,67.668650],[-47.507290,67.813620],[-47.169400,67.318610],[-47.131010,68.011040],[-46.751070,68.453700],[-46.207040,68.804810],[-45.753830,68.756260],[-45.254010,68.725430],[-44.792770,68.751890],[-44.269700,69.020210],[-43.881710,69.365300],[-43.576230,69.896510],[-43.569880,70.555990],[-43.660820,71.226890],[-43.448010,71.869120],[-43.621060,72.512680],[-44.084710,72.305840],[-44.526690,72.465980],[-45.069500,72.238690],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-51.054310,62.485850],[-50.967370,62.588090],[-50.869310,62.714040],[-50.683960,62.939090],[-50.466350,63.300400],[-50.266840,63.634790],[-50.081160,63.981930],[-49.886130,64.454540],[-49.654840,64.975960],[-49.496930,65.370900],[-49.267770,65.933530],[-49.100420,66.342750],[-48.934940,66.670970],[-48.790330,66.965340],[-48.670070,67.306260],[-48.645380,67.348070],[-48.628620,67.392910],[-48.597330,67.470750],[-48.568000,67.536310],[-48.511600,67.655040],[-48.475490,67.756130],[-48.461910,67.828070],[-48.381030,67.935460],[-48.316970,68.088380],[-48.247920,68.264400],[-48.134670,68.484310],[-47.942120,68.871810],[-47.734140,69.235140],[-47.459260,69.688820],[-47.153650,70.068790],[-46.854660,70.406990],[-46.572500,70.735320],[-46.276870,71.037760],[-45.973250,71.392120],[-45.687700,71.638700],[-45.397400,71.865250],[-45.075680,72.104870],[-44.777260,72.377290],[-44.706120,72.467860],[-44.632540,72.593190],[-44.611600,72.604610],[-44.536850,72.704350],[-44.474920,72.763010],[-44.420140,72.825960],[-44.347630,72.889710],[-44.288780,72.937480],[-44.216140,73.000570],[-44.202400,73.016090],[-44.165200,73.077080],[-44.085940,73.159500],[-44.041300,73.215450],[-43.996670,73.271380],[-43.961880,73.297250],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-40.086640,71.013050],[-40.236000,71.066680],[-40.456800,71.171730],[-40.643130,71.215090],[-40.780530,71.262140],[-40.880260,71.351400],[-40.996320,71.514960],[-41.003400,71.615760],[-40.929410,71.787190],[-40.859680,71.896190],[-40.822840,72.003200],[-40.811150,72.060770],[-40.835680,72.107940],[-40.873700,72.163540],[-40.991410,72.202800],[-41.204590,72.300490],[-41.387690,72.369060],[-41.517200,72.426770],[-41.682400,72.551230],[-41.789200,72.628980],[-41.965650,72.773210],[-42.066120,72.847880],[-42.166690,72.922930],[-42.288200,73.011590],[-42.434540,73.128120],[-42.622420,73.225940],[-42.782830,73.306290],[-42.984780,73.343660],[-43.114030,73.368760],[-43.288870,73.387790],[-43.450070,73.397510],[-43.607410,73.368390],[-43.719590,73.345180],[-43.853270,73.335490],[-43.976250,73.306410],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-10.105920,321.142500],[-9.406497,321.878700],[-9.139639,322.299500],[-8.451996,322.444600],[-8.106009,323.168100],[-8.036619,324.195300],[-8.094543,324.473100],[-8.237651,325.168700],[-8.322356,325.586600],[-7.906603,325.306000],[-7.216266,325.440000],[-6.471032,325.654400],[-5.835258,325.343600],[-5.034986,325.278400],[-4.567041,325.793400],[-4.043064,326.030900],[-3.517598,326.623100],[-3.130661,326.833000],[-2.385512,327.032100],[-1.971927,327.102100],[-1.748852,327.423000],[-1.827115,327.835400],[-2.129078,327.927000],[-2.573090,327.639400],[-3.035482,328.201000],[-3.501868,328.406600],[-4.270861,328.703000],[-4.341707,329.476900],[-3.629872,329.097800],[-3.005098,328.419600],[-2.088673,328.856400],[-1.422974,329.106600],[-1.485260,328.671200],[-1.203152,329.071000],[-1.334884,329.404300],[-1.246393,329.702000],[-1.157494,329.999600],[-0.978507,330.594800],[-1.246654,330.907500],[-1.089150,331.641400],[-0.120537,332.639200],[-0.166623,332.915900],[-0.061168,333.569500],[0.543072,334.224700],[1.170875,334.739500],[0.959555,334.284500],[1.390133,334.699700],[1.975405,335.489300],[2.327621,335.962500],[1.873599,335.687700],[1.558709,335.431500],[1.632899,335.866800],[1.665148,336.580000],[1.842027,336.816900],[1.838004,337.312700],[1.633231,338.206900],[1.274595,338.228800],[1.829682,338.801500],[1.768532,339.219200],[1.887654,339.377300],[1.866282,340.511000],[1.367862,341.012700],[1.587781,341.469000],[1.609689,342.325500],[1.331772,342.786500],[1.772604,343.201300],[2.315128,343.913800],[2.877483,344.486200],[2.963872,345.423400],[3.266418,345.819200],[3.577796,347.214200],[3.465626,348.055500],[3.306901,348.177400],[3.568324,348.354300],[3.096888,349.220100],[2.289003,350.469200],[2.055424,351.151800],[1.396600,351.278100],[0.335922,351.207900],[-0.481823,351.455500],[-0.257618,351.913400],[0.204876,352.189100],[0.863760,352.063100],[1.087858,352.521200],[1.531519,352.937400],[1.297274,353.619700],[0.157255,353.609400],[-0.062369,353.651300],[-0.539244,354.015400],[0.199062,353.828900],[0.661241,354.104900],[1.301311,354.119700],[1.680013,353.956600],[2.183872,354.452900],[2.369206,355.192200],[2.694080,355.950700],[2.518313,356.712400],[3.039953,357.070000],[2.561587,357.432600],[2.643194,357.872500],[2.184069,358.094500],[2.504681,358.353200],[2.965159,358.631800],[3.245904,359.171600],[3.944661,0.773123],[4.839682,1.977831],[4.866726,3.702128],[4.811831,4.983837],[5.134134,6.109198],[5.127575,7.470540],[3.839496,8.766644],[2.714970,9.086631],[1.499907,9.109867],[0.448120,9.020034],[-0.221643,8.778078],[-0.360224,8.757561],[-1.156759,8.853097],[-2.090876,8.931004],[-2.540628,8.656086],[-3.357908,8.895731],[-4.197074,9.275253],[-4.541592,9.651386],[-5.046993,10.146940],[-5.586310,10.428100],[-6.342698,10.753170],[-7.098057,11.080650],[-8.012336,11.531860],[-8.878463,11.713210],[-9.742920,11.899020],[-10.639310,11.877200],[-11.330790,12.297800],[-12.235180,11.936730],[-12.528700,12.050510],[-13.003920,11.592340],[-13.401570,11.071560],[-13.743490,10.625360],[-13.971980,10.327980],[-14.207020,10.520200],[-14.706460,10.203960],[-15.169630,10.101900],[-15.706320,9.575633],[-16.632010,9.379330],[-17.364060,9.269645],[-18.095100,9.164276],[-18.729160,9.349573],[-19.189500,9.756473],[-19.400770,10.313980],[-19.821170,10.443120],[-20.621940,10.919610],[-21.210950,10.840790],[-21.874770,10.835840],[-22.630920,11.048780],[-23.252620,11.267160],[-24.192050,11.426940],[-24.887480,11.233160],[-25.746870,11.337730],[-26.359280,11.582630],[-26.993120,11.475580],[-27.252880,11.492180],[-27.916910,11.683500],[-28.846290,11.398270],[-29.472420,10.654500],[-29.786360,9.951906],[-30.217700,9.110067],[-30.148410,8.363906],[-30.478670,8.469595],[-30.547110,9.217265],[-30.515700,10.247460],[-31.154770,10.985500],[-31.295010,11.813590],[-32.379820,12.041880],[-33.318680,12.120140],[-33.852620,11.840720],[-34.488460,11.281700],[-35.251010,10.748520],[-35.744390,9.854795],[-36.149470,10.401520],[-36.666000,10.826320],[-37.264390,11.667690],[-37.972640,11.388110],[-38.468120,10.504770],[-38.860600,9.902639],[-39.523040,11.208110],[-39.318790,11.936660],[-38.842470,11.948750],[-39.237070,12.699160],[-39.503670,12.074000],[-39.907020,11.807450],[-39.759220,12.473550],[-39.879230,12.513420],[-40.414140,12.617050],[-45.052300,8.049317],[-44.930450,7.648353],[-44.512130,7.211626],[-44.148830,6.720492],[-43.850880,6.690638],[-43.662190,6.191625],[-43.600150,6.083244],[-43.889750,5.589689],[-44.306830,5.487234],[-44.235970,4.854433],[-43.618730,4.117368],[-43.176340,3.370731],[-42.684190,3.218093],[-42.293150,2.423759],[-42.282670,2.081108],[-41.755500,1.093511],[-41.187280,0.870379],[-40.795830,0.444870],[-40.416180,0.362192],[-39.766350,359.897200],[-39.052050,359.517200],[-38.453500,359.006100],[-37.790830,358.579200],[-36.975110,357.821300],[-36.474270,357.035900],[-35.958950,356.097100],[-35.279170,355.718600],[-34.789070,355.282800],[-34.550580,354.708000],[-34.345750,354.616500],[-33.657230,354.264000],[-32.953460,353.762000],[-32.673470,353.595800],[-31.891270,353.028400],[-31.448430,352.552700],[-30.882420,352.238500],[-30.347710,351.539000],[-29.749390,350.925500],[-29.191800,350.784000],[-28.225870,349.965300],[-27.451760,349.075200],[-26.765260,348.421400],[-26.059670,347.623200],[-25.796460,347.105500],[-25.818500,346.029100],[-25.881640,344.715300],[-26.079270,343.384000],[-26.284750,342.744100],[-26.435050,341.641000],[-26.286910,340.411300],[-26.172660,339.489000],[-25.382380,338.808600],[-25.123840,337.909800],[-24.761650,336.794200],[-24.639820,336.423300],[-24.538680,336.205000],[-24.175370,335.638200],[-23.788560,334.922500],[-23.421830,334.361400],[-23.030820,333.651900],[-22.787500,332.533700],[-22.342480,331.530600],[-22.341670,330.216500],[-21.849350,329.846300],[-21.469450,329.302600],[-20.697450,328.992500],[-19.807350,329.243700],[-19.529430,329.298000],[-19.030090,329.319300],[-18.839340,329.052700],[-18.509290,328.814200],[-19.008660,328.791400],[-19.095060,328.469800],[-19.071550,327.941600],[-18.518560,327.674000],[-17.604630,327.406400],[-16.800570,327.344800],[-15.969200,327.139400],[-15.190820,327.596600],[-14.969110,327.566600],[-14.664480,327.478900],[-14.276870,327.333700],[-13.583070,327.472800],[-12.833310,327.695400],[-12.056650,327.774200],[-12.058710,327.406000],[-11.478280,327.006300],[-10.288010,326.071300],[-9.844097,325.649100],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[0.608508,40.187220],[0.704819,40.286940],[0.785879,40.770810],[0.865694,41.255130],[1.144072,41.749020],[0.731128,42.018730],[1.226007,42.138520],[1.606776,42.543290],[1.287618,42.913440],[1.881795,43.041020],[2.050358,43.631360],[2.649441,43.664520],[3.148681,43.692180],[3.126807,44.080930],[3.403620,44.487440],[3.896928,44.614720],[4.384233,44.840350],[4.054492,45.310300],[3.636572,45.577210],[3.131295,45.641920],[2.519823,45.796460],[2.020924,45.763320],[1.409369,45.916200],[0.910495,45.882600],[1.235341,45.517880],[0.848645,45.299730],[0.343487,45.363420],[-0.149294,45.235540],[-0.829696,44.905040],[-1.428514,44.867410],[-1.915738,44.646740],[-2.508784,44.515330],[-2.996399,44.296460],[-3.484263,44.078560],[-3.972380,43.861620],[-4.660416,43.634140],[-5.348705,43.407990],[-6.037271,43.183160],[-6.431571,43.068470],[-7.020679,42.851110],[-7.510175,42.640240],[-7.999903,42.430340],[-8.376302,41.952530],[-8.345978,41.313090],[-8.721421,40.747530],[-8.499109,40.208680],[-8.181850,39.763690],[-7.772160,39.503880],[100.000000,1000.000000],[-7.362857,39.242780],[-6.763196,39.263460],[-6.160432,39.191630],[-5.751565,38.927140],[100.000000,1000.000000],[-5.248882,38.850320],[-4.755084,39.052510],[-4.361453,39.252340],[-3.871351,39.550060],[-3.281782,39.852950],[-2.792651,40.153830],[-2.185995,39.987680],[-1.682857,39.911440],[-1.179741,39.834690],[-0.573366,39.665650],[-0.180388,39.870670],[0.308723,40.175970],[0.608508,40.187220],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-23.224090,34.912120],[-22.845330,35.301600],[-22.392160,35.628790],[-22.001690,35.923790],[-21.584550,36.118630],[-21.203790,36.430450],[-20.749760,36.819420],[-20.422090,37.252740],[-19.971610,37.532610],[-19.481590,37.288040],[-19.105800,37.515800],[-19.232140,37.974580],[-18.815550,38.412000],[-18.625960,38.924410],[-18.255210,39.348680],[-18.090200,39.864120],[-17.740940,40.299660],[-17.522090,40.752080],[-17.174380,41.052210],[-16.730150,41.328260],[-16.269450,41.647110],[-15.864950,41.711060],[-15.278510,41.882310],[-15.220910,42.366540],[-15.173480,42.848140],[-14.798240,42.488800],[-14.375030,42.620890],[-14.579470,43.084100],[-14.669930,43.554660],[-14.753060,44.051360],[-14.800190,44.636700],[-14.304770,44.981730],[-13.867440,44.729210],[-13.368960,44.857430],[-13.023940,45.149050],[-12.483340,45.406170],[-12.024020,45.753400],[-11.689380,46.077740],[-11.157430,46.380170],[-11.424120,46.844660],[-11.176320,47.292610],[-10.722650,47.064610],[-10.670440,47.585620],[-10.146570,47.595840],[-9.760770,47.863340],[-9.327299,48.338960],[-9.115448,48.794750],[-9.106807,49.298300],[-9.295999,49.878750],[-9.595790,50.466950],[-10.030860,50.304330],[-9.950869,50.769470],[-10.082570,51.226810],[-10.118010,51.703790],[-10.162080,52.178160],[-10.310730,52.697530],[-10.162370,53.302990],[-10.331350,53.851410],[-10.410820,54.427180],[-10.403160,54.960340],[-10.707830,55.563630],[-11.121740,56.036570],[-10.841260,56.460410],[-11.161270,56.775890],[-11.494290,57.192110],[-11.899020,57.228000],[-12.268660,56.838760],[-12.104630,57.280460],[-12.060130,57.824170],[-11.626860,58.391460],[-11.146800,58.572100],[-10.743190,59.246610],[-10.729590,59.753470],[-10.357650,59.942730],[-10.032670,60.367770],[-9.269653,60.111950],[-8.809061,60.368130],[-9.289815,60.729660],[-9.625230,61.318860],[-9.652807,61.854650],[-9.583951,62.379620],[-9.740081,62.930380],[-10.288170,63.015660],[-10.634620,63.449760],[-10.556130,64.156590],[-10.813750,64.575950],[-10.906870,65.101900],[-10.906870,65.101900],[100.000000,1000.000000],[-10.906870,65.101900],[-10.779720,65.593870],[-10.164980,65.944290],[-9.977109,66.531590],[-10.688840,66.900620],[-11.080480,67.265760],[-11.012290,67.813930],[-11.328180,68.215230],[-11.367310,68.720020],[-11.544120,69.250670],[-12.097750,69.409440],[-12.693600,69.430310],[-13.117380,69.740130],[-13.544430,70.039280],[-13.794890,70.603630],[-13.942080,70.998150],[-13.725380,71.568620],[-13.906690,72.163680],[-14.314640,72.370700],[-14.778490,72.309930],[-15.133340,72.758990],[-15.796640,72.767640],[-16.156210,73.035280],[-16.551690,73.486050],[-16.758460,74.015590],[-16.227120,74.492680],[-16.836250,74.692930],[-17.343240,74.627600],[-17.110170,75.119800],[-17.548960,75.552930],[-18.002810,75.842370],[-18.559960,75.934260],[-18.993780,75.906080],[-19.356840,76.220200],[-19.074190,76.794600],[-19.014890,77.285240],[-19.457530,77.381200],[-19.844770,77.689930],[-20.335820,78.066760],[-20.215690,78.627930],[-20.113700,79.330120],[-20.576940,78.763440],[-20.968660,78.529350],[-21.515780,78.654850],[-22.163570,78.833180],[-22.879320,79.034470],[-23.340550,79.187540],[-23.826270,79.467340],[-24.413870,79.422520],[-24.868640,79.660940],[-24.906500,79.072100],[-25.367650,79.062630],[-25.997140,79.123000],[-26.524460,78.880370],[-27.003440,79.205220],[-27.590680,79.320670],[-28.317230,79.468190],[-28.633780,78.982410],[-29.217840,79.168850],[-29.690900,79.188450],[-30.239280,78.978680],[-30.659990,78.605780],[-30.935100,78.192490],[-31.431590,78.054000],[-31.966180,77.788020],[-32.511300,77.982090],[-33.045610,77.919610],[-33.461010,77.472100],[-33.859310,77.010120],[-34.239780,76.655300],[-34.058930,76.049780],[-33.973320,75.445730],[-33.632670,74.838120],[-33.245820,74.463950],[-33.052190,73.736330],[-32.701500,73.235440],[-32.368190,72.729550],[-32.651120,72.279050],[-32.180760,71.878360],[-32.415320,71.308330],[-32.368130,70.591520],[-32.513320,70.009500],[-32.769230,69.549100],[-33.081700,69.916840],[-33.581700,70.034940],[-34.113380,69.765580],[-34.688860,69.457700],[-35.282150,69.105320],[-35.649040,68.768080],[-36.096020,68.383390],[100.000000,1000.000000],[-33.975280,74.963390],[-33.917800,74.963100],[-33.917800,74.963100],[-33.975280,74.963390],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[-33.888900,39.745910],[-33.799660,39.741840],[-33.490470,39.253810],[-33.162540,38.897800],[-32.723590,38.560090],[-32.620240,37.972430],[-32.170180,37.659510],[-31.871520,37.223080],[-31.544650,36.680320],[-31.015340,36.422620],[-30.650740,35.909120],[-30.402990,35.493760],[-30.014940,34.882090],[100.000000,1000.000000],[-30.014940,34.882090],[-29.550290,35.013540],[-29.122620,34.789900],[-28.684900,34.699100],[-28.216630,34.869910],[-27.881220,34.521060],[-27.502550,34.074710],[-27.068180,34.019540],[-26.644580,33.726910],[-26.165550,34.076050],[-25.689700,34.071960],[-25.208540,34.328660],[-24.716150,34.482650],[-24.097890,34.476730],[100.000000,1000.000000],[-35.649040,68.768080],[-36.096020,68.383390],[-36.587580,68.077870],[100.000000,1000.000000],[-35.394690,41.049490],[-34.716710,40.921600],[-34.509240,40.404310],[-34.061740,39.876790],[-33.888900,39.745910],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[-37.157980,56.506550],[-37.305960,56.260360],[-37.446550,55.988410],[-37.591580,55.485110],[-37.802430,55.157350],[-37.901150,54.891980],[-37.994630,54.690650],[-38.089350,54.582710],[-38.083070,54.482080],[-38.077590,54.406700],[-38.071430,54.331400],[-37.955420,54.173220],[-37.939870,54.038530],[-37.684860,53.691980],[-37.510130,53.335160],[-37.444240,53.068460],[-37.262520,52.808800],[-37.181970,52.567380],[-37.136720,52.443280],[-37.105340,52.361310],[-37.077090,52.290100],[-37.056470,52.239520],[-37.088810,52.049020],[-37.053560,51.723380],[-36.997870,51.385780],[-36.987260,50.942180],[-36.933340,50.658580],[-36.922900,50.451340],[-36.906870,50.242420],[-36.892550,50.041600],[-36.834460,49.792280],[-36.743420,49.515550],[-36.684150,49.285520],[-36.608830,49.046980],[-36.525560,48.809520],[-36.559340,48.531520],[-36.489860,48.318850],[-36.512340,47.889690],[-36.404460,47.659770],[-36.277930,47.424620],[-36.119110,47.038250],[-35.935380,46.790300],[-35.818500,46.455760],[-35.625720,46.225950],[-35.463760,46.020700],[-35.348920,45.842380],[-35.325600,45.703960],[-35.245900,45.416690],[-35.081730,44.978370],[-35.026710,44.708800],[-34.925820,44.303270],[-34.798370,43.772370],[-34.753240,43.390280],[-34.806050,42.907070],[-34.909420,42.310480],[-34.921020,41.941910],[-34.980110,41.335690],[-34.984500,40.966160],[-34.922430,40.585730],[-34.789010,40.196630],[-34.579300,39.802690],[-34.363860,39.294190],[-34.238000,39.041750],[-33.972290,38.543580],[-33.859020,38.178260],[-33.714550,37.814820],[-33.614390,37.694270],[-33.536520,37.334660],[-33.457900,37.215890],[-33.297310,36.980510],[-33.109870,36.868590],[-32.973120,36.756590],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[-32.721280,36.535740],[-32.490400,36.318300],[-32.291070,36.220520],[-32.007360,36.136840],[-31.858330,36.038940],[-31.638900,35.835300],[-31.414820,35.636050],[-31.258740,35.545950],[-31.101130,35.457850],[-30.913560,35.377690],[-30.524650,35.346070],[-30.353890,35.387340],[-30.183490,35.430440],[-30.025020,35.235070],[-29.811300,34.937990],[-29.705020,34.730880],[-29.390120,34.586840],[-29.013110,34.349720],[-28.686890,34.221640],[-28.295060,34.003890],[-28.051130,33.975940],[-27.772730,33.845080],[-27.367910,33.770450],[-27.081700,33.652100],[-26.890960,33.615450],[-26.544830,33.652000],[-26.351830,33.621510],[-26.157860,33.593240],[-25.972800,33.684100],[-25.746850,33.675730],[-25.593170,33.754690],[-25.391840,33.983210],[-25.119420,34.130850],[-24.848860,34.282270],[-24.639730,34.402610],[-24.372580,34.560620],[-24.176330,34.554210],[-23.979330,34.550030],[-23.752010,34.566840],[-23.583130,34.548340],[-23.302700,34.477050],[-23.148150,34.707420],[-22.880670,35.018600],[-22.621330,35.201360],[-22.364300,35.387560],[-22.081460,35.598420],[-21.829430,35.791720],[-21.547960,35.879910],[-21.211310,36.017680],[-21.040090,36.023760],[-20.840870,36.054620],[-20.649150,36.217980],[-20.459030,36.383260],[-20.260100,36.420670],[-20.141790,36.387360],[-20.023120,36.354720],[-19.893700,36.192520],[-19.828930,36.111500],[-19.736610,36.055490],[-19.616490,36.024930],[-19.496050,35.995070],[-19.392890,35.809240],[-19.261990,35.648990],[-19.130950,35.489010],[-19.028310,35.303080],[-18.926000,35.116970],[-18.918410,34.984180],[-18.765980,34.983880],[-18.745140,35.143360],[-18.696740,35.329240],[-18.649760,35.514870],[-18.833230,35.908680],[-18.872590,36.013480],[-19.006580,36.170460],[-19.167590,36.301890],[-19.274160,36.485180],[-19.260750,36.640640],[-19.195440,36.847060],[-19.063910,36.975860],[-19.027950,37.156520],[-18.872830,37.312460],[-18.668060,37.522410],[-18.566560,37.628250],[-18.415440,37.788080],[-18.265670,37.949170],[-18.214140,38.157140],[-18.067500,38.319790],[-18.067840,38.473300],[-18.166310,38.670860],[-18.362530,38.912630],[-18.222280,39.073240],[-18.134970,39.332170],[-17.930490,39.576200],[-17.795900,39.740330],[-17.717390,40.000580],[-17.422250,40.211490],[-17.271720,40.408080],[-17.081080,40.663000],[-16.914390,40.891610],[-16.690180,41.031270],[-16.608620,41.147610],[-16.426270,41.232990],[-16.222940,41.171200],[-16.080290,41.020720],[-15.957730,41.020690],[-15.794110,41.082140],[-15.529460,41.298790],[-15.247120,41.551340],[-15.045410,41.683120],[-14.714170,41.643330],[-14.421020,41.542560],[-14.211890,41.498410],[-13.917210,41.401440],[-13.621670,41.306540],[-13.305130,41.247900],[-13.093510,41.210460],[-12.881450,41.174350],[-12.603320,41.052070],[-12.390260,41.018620],[-12.283570,41.002390],[-12.008410,41.079260],[-11.799860,41.246450],[-11.699680,41.429090],[-11.592310,41.416260],[-11.767290,41.515160],[-11.942240,41.614190],[-11.883550,41.722980],[-11.844690,41.795630],[-12.215020,41.955580],[-12.516090,42.032430],[-12.710090,42.096470],[-12.922690,42.126500],[-13.009990,42.176570],[-13.322050,42.445300],[-13.547800,42.662710],[-13.581340,42.813380],[-13.474710,43.015750],[-13.493000,43.199210],[-13.495560,43.415720],[-13.533560,43.564060],[-13.433430,43.766520],[-13.318840,44.003760],[-13.132350,44.163630],[-12.931150,44.360530],[-12.640420,44.518220],[-12.320110,44.751870],[-11.987060,45.028350],[-11.792690,45.241930],[-11.478900,45.494410],[-11.167460,45.753700],[-10.871800,45.982170],[-10.552150,46.292560],[-10.331150,46.642220],[-10.043210,46.888690],[-9.626928,47.229810],[-9.300215,47.649620],[-9.000644,47.997980],[-8.812462,48.337160],[-8.531028,48.657190],[-8.475573,48.903430],[-8.413613,49.191280],[-8.485884,49.335380],[-8.452649,49.499690],[-8.495049,49.806590],[-8.555472,50.030070],[-8.610624,50.293190],[-8.766903,50.571330],[-8.932134,50.805920],[-9.105279,50.997690],[-9.163836,51.292630],[-9.225566,51.585850],[-9.195880,51.825370],[-9.159590,52.145100],[-9.130926,52.425180],[-9.101703,52.745600],[-9.188167,52.914040],[-9.162028,53.273670],[-9.142798,53.593590],[-9.223993,53.997800],[-9.211205,54.396680],[-9.305735,54.677460],[-9.303919,54.836480],[-9.202973,55.035140],[-9.103261,55.195270],[-9.006082,55.477220],[-9.015118,55.879220],[-8.928400,56.245290],[-9.060957,56.843180],[-9.196276,57.315950],[-9.352069,57.903560],[-9.228140,58.564250],[-9.090498,59.032220],[-8.855752,59.481660],[-8.705655,59.799280],[-8.551783,60.079610],[-8.522509,60.467100],[-8.604998,60.876440],[-8.924408,61.829400],[-9.016302,62.192630],[-9.061266,62.742840],[-9.141482,63.374490],[-9.171285,63.806300],[-9.128146,63.998400],[-9.100907,64.546240],[-9.050131,65.294750],[-9.128078,66.053740],[-9.175243,66.695180],[-9.163965,67.421750],[-9.242189,68.070820],[-9.505153,68.386590],[-9.912255,68.973300],[-10.377010,69.422190],[-10.697410,69.794620],[-11.196870,70.258620],[-11.658350,70.634410],[-12.124600,70.998170],[-12.642780,71.420700],[-12.988800,71.748800],[-13.332950,72.234620],[-13.686610,72.713870],[-13.918920,73.018420],[-14.157440,73.485690],[-14.426550,73.817710],[-14.624970,74.214080],[-14.932370,74.572350],[-15.334670,74.721240],[-15.493110,74.745570],[-15.721970,74.996750],[-16.235960,75.687960],[-16.610500,76.354000],[-16.826080,76.563830],[-17.196900,77.055720],[-17.610850,77.571260],[-17.935980,77.857360],[-18.231900,78.111110],[-18.502740,78.471920],[-18.881740,78.912090],[-19.328570,79.261480],[-19.886770,79.680670],[-20.386640,79.784370],[-20.512490,79.745400],[-20.814370,79.828580],[-21.258270,80.003470],[-21.754740,80.077800],[-22.091730,80.167450],[-22.428610,80.252210],[-22.680840,80.405330],[-22.970850,80.577290],[-23.491700,80.752750],[-23.903430,80.857300],[-24.198160,81.014770],[-24.685050,81.144570],[-25.057450,81.329180],[-25.358940,81.353450],[-25.696000,81.630440],[-25.960860,81.749820],[-26.338850,81.795080],[-26.640010,81.802610],[-26.978180,81.821220],[-27.125420,81.760580],[-27.455480,81.650320],[-27.644640,81.721380],[-28.159410,81.669200],[-28.443430,81.529170],[-28.659340,81.482120],[-28.826110,81.298870],[-29.054140,81.014960],[-29.179420,80.816330],[-29.376090,80.638110],[-29.630310,80.355970],[-29.761890,80.274190],[-29.902280,79.957050],[-29.960300,79.854130],[-30.342170,79.596500],[-30.572530,79.533350],[-30.836220,79.474800],[-31.150190,79.304220],[-31.478240,79.249430],[-31.749490,79.060230],[-32.071690,78.993400],[-32.357380,78.915670],[-32.606800,78.828680],[-32.888060,78.741290],[-33.133170,78.645800],[-33.415920,78.429250],[-33.621930,78.322870],[-33.895900,78.096080],[-34.131580,77.862620],[-34.427040,77.624950],[-34.714670,77.258710],[-35.054950,76.882190],[-35.352020,76.497570],[-35.614840,76.230080],[-35.810560,75.963130],[-36.079110,75.557560],[-36.273640,75.404590],[-36.509580,75.114970],[-36.667960,74.959840],[-36.880890,74.790340],[-36.959740,74.519180],[-37.062170,74.623170],[-37.137010,74.733350],[-37.230780,74.966790],[-37.332580,75.454360],[-37.386020,75.825750],[-37.407860,76.204350],[-37.458470,76.576740],[-37.476430,76.956150],[-37.476570,77.211380],[-37.523030,77.584960],[-37.618680,77.821590],[-37.666800,77.939930],[-37.781070,78.045130],[-37.829910,78.163410],[-37.896140,78.149820],[-37.962330,78.135930],[-38.028480,78.121740],[-38.175940,77.959750],[-38.223380,77.819290],[-38.360590,77.396140],[-38.427050,76.987750],[-38.437530,76.854320],[-38.509830,76.703310],[-38.611770,76.542550],[-38.712020,76.380670],[-38.749600,76.237050],[-38.792040,75.959070],[-38.742530,75.710530],[-38.667280,75.338410],[-38.587540,75.100470],[-38.450730,74.881900],[-38.230340,74.690480],[-38.125330,74.461660],[-38.048840,74.224040],[-37.999890,73.977860],[-38.002410,73.846080],[-37.977450,73.723210],[-37.953790,73.468860],[-37.823620,73.250080],[-37.720940,73.022430],[-37.720940,73.022430],[-37.695770,72.900090],[-37.670470,72.777830],[-37.696150,72.769290],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[-37.670560,72.647160],[-37.644840,72.525080],[-37.593020,72.281220],[-37.540700,72.037680],[-37.388840,71.697980],[-37.186580,71.115800],[-37.061610,70.768520],[-36.911180,70.300850],[-36.783020,69.826500],[-36.612580,69.367750],[-36.491220,69.022090],[-36.370800,68.676660],[-36.290050,68.318020],[-36.170530,67.973370],[-36.097560,67.741560],[-35.970070,67.272110],[-35.914900,67.034680],[-35.848250,66.672970],[-35.808220,66.430340],[-35.692780,65.958430],[-35.665580,65.711140],[-35.651780,65.458430],[-35.694790,65.182050],[-35.732170,64.905760],[-35.784300,64.751780],[-35.894920,64.435960],[-36.006920,64.246250],[-36.138280,63.904990],[-36.236970,63.710770],[-36.370700,63.349290],[-36.551850,63.226910],[-36.678920,62.991110],[-36.787040,62.761200],[-36.888200,62.529140],[-36.993000,62.285710],[-37.181720,62.110310],[-37.272320,61.860330],[-37.400910,61.725470],[-37.565130,61.542980],[-37.743180,61.330970],[-37.877770,60.976450],[-38.098080,60.857760],[-38.157290,60.771330],[-38.289260,60.569870],[-38.385090,60.415290],[-38.558660,60.333670],[-38.604820,60.252740],[-38.665260,60.143730],[-38.807210,60.105350],[100.000000,1000.000000],[-38.814620,60.091290],[-38.880350,59.963880],[-38.958390,59.806080],[-39.060660,59.587310],[-39.064010,59.317710],[-39.155470,59.094620],[-39.173520,58.752510],[-39.247360,58.540210],[-39.228720,58.261880],[-39.314110,57.970200],[-39.314610,57.557970],[-39.370430,57.308930],[-39.323150,57.027340],[-39.358800,56.824760],[-39.390550,56.621000],[-39.422330,56.384600],[-39.442310,56.210490],[-39.458020,56.051720],[-39.473780,55.860680],[-39.485250,55.685170],[-39.592350,55.548700],[-39.595010,55.483730],[-39.597290,55.418740],[-39.599990,55.321210],[100.000000,1000.000000],[-39.600350,55.304950],[-39.500400,55.301290],[-39.500730,55.285280],[-39.501600,55.237240],[-39.402950,55.061100],[-39.300290,54.828320],[-39.197880,54.740450],[-38.994880,54.662200],[-38.791990,54.604060],[-38.487560,54.532600],[-38.385430,54.502140],[-38.183570,54.483890],[-38.082210,54.469510],[-38.079490,54.431820],[100.000000,1000.000000],[99.000000,99.000000],[100.000000,1000.000000],[-9.735986,56.743530],[-9.412421,55.853320],[-9.217766,54.958100],[-9.359016,53.974500],[-9.289518,53.629050],[-9.213839,52.724260],[-8.987172,51.547700],[-9.182862,51.042980],[-8.819530,50.436410],[-8.805836,50.015680],[-8.580513,49.540680],[-8.419365,48.990730],[-8.743852,48.471090],[-9.014668,48.307850],[-9.146786,48.155800],[-9.410838,47.851350],[-9.747705,47.611460],[-9.674630,47.546440],[-10.084620,47.371340],[-10.143150,47.153330],[-10.456350,46.486860],[-10.693180,45.753250],[-11.085130,45.290630],[-11.485780,44.969570],[-11.616150,44.814770],[-11.392110,44.618660],[-11.297570,44.267940],[-11.396230,43.684150],[-11.590120,43.450540],[-11.341830,42.969820],[-11.243440,42.619350],[-11.424210,42.241730],[-11.400310,41.955760],[-11.147220,41.476560],[-10.040260,41.733520],[-8.832178,42.431100],[-7.764684,43.112580],[-7.068841,43.186910],[-6.663562,43.372540],[-5.801917,43.961760],[-5.270442,44.302890],[-4.601208,44.660020],[-4.123296,44.785480],[-3.858451,44.956680],[-3.795046,45.034170],[-3.657138,45.050460],[-3.243699,45.099900],[-2.979499,45.271710],[-2.589008,45.598760],[-2.261999,45.848430],[-1.872055,46.175840],[-1.608731,46.348350],[-1.356126,46.658600],[-1.156266,46.753810],[-0.903780,47.064110],[-0.777530,47.219230],[-0.704221,47.159590],[-0.441769,47.332900],[-0.252648,47.565780],[-0.000475,47.876280],[0.179007,48.245850],[0.566899,48.574920],[0.629937,48.652560],[0.765365,48.671440],[0.954324,48.904480],[1.152478,49.001350],[1.206244,49.215240],[1.332187,49.370640],[1.251382,49.565060],[1.242663,49.701080],[1.530025,49.467800],[1.808698,49.371190],[1.620387,49.137540],[1.432053,48.903950],[1.263195,48.397760],[1.366264,47.930140],[1.449633,47.735320],[1.533339,47.540500],[1.899251,47.249540],[2.181169,47.154000],[2.598292,47.080020],[3.604110,47.309500],[4.057093,47.591410],[3.776629,47.682870],[3.619304,47.932850],[3.368244,48.511880],[3.543183,48.883880],[3.636778,48.555370],[3.792817,48.305680],[4.229259,47.965060],[4.777012,47.920700],[100.000000,1000.000000],[-11.579560,40.782410],[-11.579560,40.782410],[-11.630720,41.355060],[-11.779720,42.278860],[-11.901280,42.916740],[-11.804900,43.502410],[-11.781520,44.152630],[-11.550490,44.891700],[-11.503700,45.254640],[-11.111340,45.717580],[-10.857750,46.167730],[-10.676830,46.682290],[-10.421090,47.130460],[-10.025310,47.588700],[-9.562784,48.121900],[-9.165689,48.577770],[-9.050857,49.151410],[-9.082081,49.994600],[-9.256606,51.248220],[-9.343618,52.155130],[-9.424580,53.201230],[-9.495774,53.686960],[-9.700781,54.584890],[-9.758407,55.628730],[-9.939229,56.804970],[-10.094930,58.258300],[-10.121910,59.158040],[-10.076550,59.988120],[-10.152550,61.846260],[-10.046920,63.080440],[-9.967445,63.899940],[-9.940454,64.785290],[-9.963350,65.736750],[-9.935419,66.481630],[-9.996107,67.497180],[-10.043790,68.510130],[-9.152228,68.212760],[-8.469939,67.863370],[-8.128176,67.458250],[-7.321439,66.522400],[-6.177018,65.538990],[-5.211656,64.637790],[-4.234646,63.752610],[-3.378991,62.874820],[-2.876349,62.511220],[-2.052796,61.978060],[-1.149589,61.659020],[-0.308988,61.409820],[0.657445,61.052100],[1.303462,60.864190],[2.079796,60.698230],[2.921666,60.614430],[3.634289,60.651130],[4.473685,60.714000],[5.629734,60.774600],[6.333129,60.834250],[7.287688,60.818870],[7.795214,60.919910],[8.301062,61.024270],[8.742022,61.313640],[9.245184,61.164010],[9.749514,60.887620],[10.193600,60.534370],[10.200820,60.142660],[10.345130,59.387660],[10.300350,58.782310],[10.334570,57.861670],[10.363590,57.202280],[10.516230,56.704210],[10.544750,56.174760],[10.508040,55.695430],[10.481290,55.082510],[10.507440,54.683440],[10.534850,54.283880],[10.701380,53.781110],[10.624460,53.082280],[10.539080,52.516240],[10.278790,51.702840],[9.748363,50.964500],[9.418358,50.204070],[8.945191,49.550620],[8.721009,49.089370],[8.378333,48.465480],[8.140906,48.140190],[7.770794,47.788620],[7.280545,47.276330],[6.761710,47.037710],[6.361563,46.962190],[6.214755,47.073260],[5.619699,46.895180],[4.901749,46.560280],[4.033659,46.342860],[3.432871,46.174540],[2.350234,46.002910],[1.696260,45.625790],[0.953868,45.446660],[0.221874,45.133320],[-0.598763,45.019730],[-1.558473,44.891900],[-1.958636,44.700500],[-2.422093,44.431760],[-2.961079,44.224290],[-3.488752,43.879010],[-4.029262,43.673210],[-4.696712,43.312610],[-5.516173,43.076440],[-6.539419,42.748690],[-7.210303,42.390810],[-7.742439,42.048220],[-8.414354,41.690240],[-9.023382,41.410350],[-9.493021,41.145310],[-10.115830,41.007350],[-10.739120,40.869810],[-10.866010,40.712430],[-11.362850,40.732640],[100.000000,1000.000000],[-17.300000,11.600000],[-16.800000,11.600000],[-16.800000,11.700000],[-16.300000,11.700000],[-15.800000,11.800000],[-15.200000,12.000000],[-14.500000,12.100000],[-14.100000,12.300000],[-13.700000,12.400000],[-13.300000,12.500000],[-12.900000,12.800000],[-12.700000,13.200000],[-12.200000,13.500000],[-11.800000,13.700000],[-11.700000,13.700000],[-11.400000,13.700000],[-11.100000,13.700000],[-10.900000,13.800000],[-10.400000,13.500000],[-9.700000,13.200000],[-9.100000,13.100000],[-8.700000,13.300000],[-8.200000,13.200000],[-7.600000,12.900000],[-7.000000,12.800000],[-6.600000,12.500000],[-6.200000,12.300000],[-5.900000,12.300000],[-5.600000,12.100000],[-5.100000,12.000000],[-4.600000,11.800000],[-4.200000,11.400000],[-3.900000,11.000000],[-3.300000,10.500000],[-2.700000,9.900000],[-2.000000,9.400000],[-1.500000,9.100000],[-0.900000,8.800000],[-0.700000,9.000000],[-0.200000,9.200000],[0.100000,9.400000],[0.100000,9.800000],[0.300000,9.500000],[0.600000,9.300000],[0.900000,9.500000],[1.000000,9.600000],[1.300000,9.300000],[1.800000,9.600000],[2.200000,9.700000],[2.800000,9.800000],[3.200000,9.900000],[3.600000,9.600000],[3.800000,9.600000],[4.000000,9.600000],[3.900000,9.300000],[4.300000,8.900000],[4.500000,8.700000],[4.600000,8.400000],[4.900000,8.200000],[4.500000,7.900000],[4.600000,7.200000],[4.500000,7.000000],[4.400000,6.800000],[4.300000,6.600000],[4.200000,6.200000],[4.400000,5.800000],[4.800000,5.500000],[5.400000,5.500000],[5.600000,5.200000],[5.900000,5.000000],[6.300000,4.400000],[6.400000,3.900000],[6.300000,3.000000],[6.300000,2.700000],[6.300000,2.100000],[6.200000,1.600000],[6.000000,1.200000],[5.700000,0.800000],[5.700000,0.400000],[5.400000,-0.400000],[5.100000,-1.300000],[4.800000,-1.700000],[4.900000,-2.400000],[5.000000,-2.900000],[5.100000,-3.600000],[5.100000,-4.700000],[5.000000,-5.400000],[4.800000,-6.100000],[4.600000,-6.600000],[4.400000,-7.100000],[4.200000,-7.500000],[4.600000,-8.500000],[5.300000,-9.500000],[6.000000,-10.200000],[6.300000,-10.600000],[6.400000,-11.000000],[6.600000,-11.200000],[6.600000,-11.100000],[6.800000,-11.400000],[7.200000,-12.100000],[7.500000,-12.400000],[7.800000,-12.800000],[8.100000,-13.000000],[8.500000,-13.000000],[8.700000,-13.100000],[8.900000,-13.200000],[9.200000,-13.200000],[9.500000,-13.500000],[9.800000,-13.800000],[10.100000,-14.200000],[10.400000,-14.500000],[10.700000,-14.600000],[10.900000,-14.700000],[10.900000,-14.800000],[10.800000,-15.100000],[11.100000,-15.000000],[11.200000,-15.400000],[11.500000,-15.300000],[11.800000,-15.300000],[11.900000,-14.900000],[11.900000,-15.300000],[11.700000,-15.800000],[11.900000,-16.000000],[12.100000,-16.300000],[12.300000,-16.600000],[12.800000,-16.700000],[13.100000,-16.700000],[13.400000,-16.600000],[13.200000,-16.300000],[13.500000,-16.400000],[13.800000,-16.500000],[14.400000,-16.900000],[14.700000,-17.200000],[15.000000,-17.000000],[15.900000,-16.400000],[16.100000,-16.400000],[17.400000,-16.100000],[18.400000,-16.000000],[19.100000,-16.200000],[19.500000,-16.500000],[19.700000,-16.300000],[20.200000,-16.200000],[20.400000,-16.200000],[20.600000,-16.400000],[20.900000,-16.600000],[21.100000,-16.800000],[21.100000,-16.900000],[21.600000,-16.900000],[22.300000,-16.600000],[22.800000,-16.200000],[23.300000,-16.000000],[23.900000,-15.700000],[24.200000,-15.400000],[24.900000,-14.900000],[25.800000,-14.500000],[26.400000,-14.100000],[27.100000,-13.300000],[27.700000,-12.900000],[28.000000,-12.700000],[28.100000,-11.800000],[28.600000,-11.200000],[29.000000,-10.400000],[29.300000,-10.100000],[29.600000,-9.900000],[29.800000,-9.700000],[30.200000,-9.600000],[30.700000,-9.800000],[31.300000,-9.800000],[31.700000,-9.500000],[32.000000,-9.200000],[32.500000,-9.100000],[33.100000,-8.500000],[33.500000,-7.700000],[33.800000,-7.000000],[34.400000,-6.500000],[35.100000,-6.100000],[35.800000,-5.800000],[35.900000,-5.300000],[35.500000,-5.000000],[35.300000,-4.600000],[35.200000,-4.100000],[35.300000,-3.600000],[35.300000,-3.100000],[35.200000,-2.700000],[35.200000,-1.600000],[35.700000,-1.000000],[35.800000,-0.500000],[35.800000,-0.100000],[36.200000,0.400000],[36.300000,0.800000],[36.500000,1.300000],[36.600000,2.200000],[36.700000,2.900000],[36.800000,3.300000],[36.800000,3.500000],[36.900000,3.900000],[36.900000,4.300000],[36.900000,4.700000],[36.800000,5.100000],[36.800000,5.600000],[37.000000,6.200000],[37.000000,6.800000],[37.000000,7.200000],[37.000000,7.700000],[37.000000,8.200000],[37.000000,8.600000],[37.100000,8.800000],[37.300000,9.400000],[37.300000,10.000000],[37.100000,10.200000],[36.800000,10.300000],[36.900000,10.700000],[37.100000,11.000000],[36.600000,10.900000],[36.200000,10.500000],[35.800000,10.800000],[35.500000,11.100000],[35.100000,11.100000],[34.700000,10.700000],[34.500000,10.400000],[34.200000,10.100000],[34.100000,9.900000],[34.000000,9.900000],[33.700000,10.000000],[33.600000,10.300000],[33.500000,10.600000],[33.500000,10.900000],[33.200000,11.000000],[33.200000,11.300000],[32.900000,12.000000],[32.900000,13.000000],[32.800000,13.700000],[32.500000,14.600000],[32.200000,15.200000],[31.600000,15.400000],[31.200000,16.300000],[31.100000,17.300000],[30.800000,17.800000],[30.600000,18.200000],[30.300000,18.600000],[30.300000,19.200000],[30.700000,19.800000],[31.100000,20.000000],[31.600000,19.800000],[32.000000,19.800000],[32.300000,20.100000],[32.600000,20.600000],[32.900000,21.400000],[32.800000,22.200000],[32.700000,22.700000],[32.400000,22.900000],[32.200000,23.100000],[32.200000,23.500000],[32.000000,24.000000],[31.900000,24.800000],[31.700000,25.000000],[31.600000,25.500000],[31.500000,26.200000],[31.400000,27.100000],[31.200000,27.800000],[31.000000,28.500000],[30.900000,29.200000],[31.300000,29.900000],[31.500000,30.500000],[31.400000,30.500000],[31.400000,30.600000],[31.500000,31.000000],[31.500000,31.500000],[31.300000,32.100000],[31.400000,31.700000],[31.200000,31.600000],[31.100000,31.800000],[30.900000,32.000000],[30.500000,32.200000],[30.400000,32.200000],[30.200000,32.400000],[29.700000,32.400000],[29.200000,32.500000],[28.600000,32.800000],[28.100000,33.300000],[27.900000,33.500000],[27.500000,33.500000],[27.000000,33.900000],[26.300000,34.100000],[25.700000,34.500000],[25.000000,34.800000],[24.500000,35.100000],[24.100000,35.600000],[23.900000,35.700000],[23.900000,35.700000],[23.700000,35.500000],[23.100000,35.600000],[22.700000,36.100000],[22.300000,36.600000],[22.000000,36.800000],[21.500000,36.900000],[21.100000,37.200000],[20.400000,37.200000],[19.700000,37.200000],[18.900000,37.300000],[18.700000,37.700000],[18.500000,38.100000],[18.300000,38.300000],[18.200000,38.400000],[18.000000,38.600000],[17.300000,38.900000],[16.400000,39.200000],[15.700000,39.400000],[15.100000,39.800000],[15.500000,39.900000],[15.000000,40.200000],[14.900000,40.700000],[14.700000,41.100000],[14.200000,41.500000],[13.800000,41.900000],[13.500000,42.300000],[13.100000,42.600000],[12.800000,43.000000],[12.500000,43.200000],[12.100000,43.400000],[11.700000,42.800000],[11.400000,42.600000],[11.500000,43.100000],[11.500000,43.200000],[11.000000,43.700000],[10.400000,44.300000],[10.500000,45.200000],[10.900000,45.800000],[10.700000,46.700000],[11.200000,47.400000],[11.100000,48.200000],[11.200000,48.700000],[11.400000,49.400000],[11.500000,50.100000],[11.900000,50.600000],[11.900000,50.800000],[11.800000,51.100000],[11.300000,51.000000],[10.800000,51.100000],[10.500000,51.200000],[10.300000,50.900000],[9.600000,50.700000],[9.000000,50.600000],[8.500000,50.200000],[8.000000,49.900000],[7.500000,49.700000],[6.800000,49.300000],[6.500000,49.100000],[5.800000,48.900000],[5.200000,48.400000],[4.500000,48.000000],[3.900000,47.400000],[3.300000,46.900000],[3.000000,46.600000],[2.600000,46.200000],[2.200000,45.700000],[1.900000,45.100000],[1.600000,44.600000],[1.200000,44.200000],[0.700000,43.600000],[0.300000,43.200000],[-0.200000,42.800000],[-0.200000,42.600000],[-0.600000,42.500000],[-1.100000,42.000000],[-1.600000,41.700000],[-2.000000,41.200000],[-2.200000,40.900000],[-2.600000,40.400000],[-3.500000,40.100000],[-4.500000,39.600000],[-4.700000,39.300000],[-5.300000,39.200000],[-5.900000,38.900000],[-6.400000,38.900000],[-6.700000,39.300000],[-7.200000,39.600000],[-7.600000,39.500000],[-7.900000,39.500000],[-8.200000,39.400000],[-8.700000,39.500000],[-8.900000,39.500000],[-9.100000,39.600000],[-9.500000,39.700000],[-9.800000,39.900000],[-10.100000,40.000000],[-10.300000,40.300000],[-10.500000,40.600000],[-10.700000,40.600000],[-11.100000,40.600000],[-11.400000,40.500000],[-12.000000,40.400000],[-12.800000,40.400000],[-13.100000,40.400000],[-13.800000,40.400000],[-14.100000,40.400000],[-14.200000,40.500000],[-14.500000,40.600000],[-14.800000,40.600000],[-15.300000,40.500000],[-15.600000,40.300000],[-15.800000,40.100000],[-16.300000,39.600000],[-16.500000,39.600000],[-16.800000,39.100000],[-17.100000,38.600000],[-17.400000,37.900000],[-17.800000,37.100000],[-18.200000,36.700000],[-18.300000,36.500000],[-18.500000,36.500000],[-18.900000,36.200000],[-18.800000,36.000000],[-19.100000,35.700000],[-19.600000,35.200000],[-19.900000,34.600000],[-20.400000,34.600000],[-20.800000,34.900000],[-21.100000,35.000000],[-21.600000,35.200000],[-22.200000,35.300000],[-22.400000,35.500000],[-23.000000,35.400000],[-23.700000,35.300000],[-24.000000,35.300000],[-24.200000,35.300000],[-24.700000,35.000000],[-25.000000,34.200000],[-25.300000,33.300000],[-25.500000,32.900000],[-26.000000,32.500000],[-26.300000,32.700000],[-26.300000,32.900000],[-26.700000,32.800000],[-26.900000,32.800000],[-27.500000,32.600000],[-28.200000,32.400000],[-28.800000,32.000000],[-29.100000,31.500000],[-29.500000,31.200000],[-29.800000,31.000000],[-30.400000,30.700000],[-31.000000,30.300000],[-31.500000,29.600000],[-32.000000,29.200000],[-32.600000,28.500000],[-33.000000,28.000000],[-33.400000,27.500000],[-33.700000,26.900000],[-33.800000,26.300000],[-33.800000,25.800000],[-34.000000,25.700000],[-34.000000,25.200000],[-34.200000,24.600000],[-34.100000,23.900000],[-34.200000,23.200000],[-34.100000,22.700000],[-34.100000,22.200000],[-34.300000,21.800000],[-34.400000,21.500000],[-34.400000,21.100000],[-34.500000,20.700000],[-34.500000,20.300000],[-34.700000,20.000000],[-34.700000,19.700000],[-34.700000,19.400000],[-34.500000,19.300000],[-34.400000,18.800000],[-34.100000,18.800000],[-34.200000,18.400000],[-34.400000,18.400000],[-34.000000,18.300000],[-33.800000,18.400000],[-33.400000,18.100000],[-33.100000,18.000000],[-32.800000,17.800000],[-32.700000,18.200000],[-31.900000,18.200000],[-31.300000,17.800000],[-30.800000,17.500000],[-30.300000,17.200000],[-29.700000,17.000000],[-29.100000,16.700000],[-28.700000,16.500000],[-28.600000,16.400000],[-28.400000,16.000000],[-28.200000,15.800000],[-27.800000,15.500000],[-27.500000,15.300000],[-27.000000,15.100000],[-26.500000,15.000000],[-26.300000,14.900000],[-25.900000,14.800000],[-25.400000,14.700000],[-25.000000,14.700000],[-24.600000,14.500000],[-24.100000,14.400000],[-23.700000,14.400000],[-23.200000,14.400000],[-22.800000,14.400000],[-22.200000,14.200000],[-21.800000,13.800000],[-21.400000,13.600000],[-21.000000,13.400000],[-20.600000,13.200000],[-20.200000,13.000000],[-19.800000,12.800000],[-19.500000,12.600000],[-19.200000,12.400000],[-18.900000,12.200000],[-18.600000,12.000000],[-18.500000,11.800000],[-18.000000,11.700000],[-17.700000,11.600000],[-17.300000,11.600000],[100.000000,1000.000000],[100.000000,1000.000000],[0.404379,77.647160],[0.409952,77.789980],[0.105198,77.426330],[0.045282,77.997920],[-0.080324,78.550120],[-0.203001,78.993520],[-0.171953,79.504810],[-0.306079,80.030720],[-0.560164,80.536120],[-0.925591,80.821780],[-1.074296,81.313000],[-1.335302,81.789570],[-1.441465,82.247070],[-1.784401,82.660350],[-2.090516,83.162510],[-2.362367,83.712860],[-2.459884,84.211940],[-2.434300,84.741720],[-2.254673,85.186130],[-2.262065,85.861260],[-1.819487,86.153830],[-1.502316,86.657690],[-1.560195,87.126900],[-2.007331,87.234720],[-2.569980,87.089390],[-2.525437,87.595370],[-2.003572,87.767750],[-1.761071,88.161450],[-2.180889,88.324550],[-2.614821,88.472310],[-2.256828,88.821830],[-1.953572,89.225300],[-2.227005,89.607100],[-2.167206,90.095280],[-1.865819,90.444220],[-2.232537,90.761410],[-2.105565,91.196770],[-2.390002,91.655490],[-2.571067,92.082340],[-3.114503,92.274110],[-3.601307,92.187480],[-4.059370,91.961440],[-4.349911,91.546150],[-4.198362,91.983990],[-4.395129,92.492180],[-4.807417,92.845100],[-5.301048,92.900530],[-4.935822,93.244610],[-4.375218,93.568140],[-4.400601,94.021500],[-4.532999,94.617840],[-4.117850,94.886380],[-4.201180,95.366450],[-4.252026,95.953320],[-4.606388,96.247730],[-5.025409,96.616310],[-5.238008,97.119930],[-4.782691,97.434310],[-4.392845,97.190130],[-4.260067,97.202420],[100.000000,1000.000000],[-4.260067,97.202420],[-4.750172,97.555140],[-5.341761,97.727010],[-5.766483,97.947440],[-6.143272,98.204750],[-6.595888,98.408780],[-6.995269,98.713530],[-7.270793,99.080730],[-7.697981,99.355470],[-7.886129,99.819150],[-8.362652,99.850530],[-8.628319,99.383290],[-8.795877,98.907170],[-8.456987,98.523610],[-8.710602,98.113750],[-9.049780,97.783150],[-9.218480,97.335300],[-9.618556,96.964400],[-10.173020,97.175240],[-10.634610,96.818600],[-11.034520,97.214670],[-11.559080,97.367650],[-12.101680,97.439960],[-12.562030,97.545780],[-12.999540,97.794840],[-13.520450,97.665670],[-14.131480,97.754820],[-14.556620,98.045130],[-14.795650,98.510080],[-14.586690,98.994730],[-14.474040,99.470560],[-14.261760,99.883050],[-13.939140,100.497600],[-13.559750,101.100900],[-13.110030,101.528600],[-12.686670,101.938300],[-12.440670,102.442000],[-12.198810,102.880400],[-11.786950,103.271500],[-11.664530,103.930200],[-11.487890,104.456000],[-11.467700,104.478600],[100.000000,1000.000000],[-11.850960,104.793200],[-11.864420,104.778000],[-12.223870,104.462600],[-12.680480,104.319500],[-13.075760,104.049900],[-13.493400,103.827800],[-14.046750,103.522700],[-14.429340,103.155900],[-14.936100,102.944000],[-15.222370,103.456400],[-15.800550,103.461100],[-16.391390,103.448500],[-16.687790,103.081400],[-17.054680,102.750300],[-17.415560,102.454700],[-17.952430,102.235000],[-18.388890,102.103300],[-18.840000,101.719400],[-19.230660,101.251600],[-19.662280,101.070100],[-20.169770,101.039300],[-20.648110,101.246300],[-21.096860,101.160500],[-21.618920,101.419200],[-22.074950,101.477800],[-22.569260,101.373000],[-23.142560,101.112100],[-23.576110,100.935400],[-23.957180,100.471300],[-24.377550,100.223400],[-24.390310,100.756400],[-24.870180,100.701200],[-25.362700,100.641300],[-25.688240,100.220300],[-26.209670,100.012000],[-26.705190,100.133700],[-27.216180,99.997120],[-27.667000,99.976970],[-28.091060,99.689280],[-28.621680,99.405730],[-29.136080,98.933270],[-29.578330,98.424270],[-29.907640,98.031430],[-30.300880,97.705250],[-30.692420,97.375370],[-31.067640,96.713880],[-31.343480,95.924840],[-31.559980,95.386860],[-31.727150,94.750660],[-31.991380,94.264400],[-32.035270,94.171190],[100.000000,1000.000000],[-32.035270,94.171190],[-32.131640,93.648440],[-32.174050,92.968570],[-32.271850,92.404910],[-32.148990,91.837650],[-32.187780,91.129400],[-32.350570,90.519130],[-32.425380,89.868610],[-32.575080,89.276450],[100.000000,1000.000000],[-32.575080,89.276450],[-32.559860,88.628230],[-32.695800,88.040040],[-32.975060,87.376790],[-33.108700,86.856610],[-33.351990,86.446310],[100.000000,1000.000000],[-33.351990,86.446310],[-33.377960,86.324620],[100.000000,1000.000000],[-33.377960,86.324620],[-33.084940,85.796110],[-32.555150,85.386120],[-32.216660,84.936150],[-32.034670,84.408010],[-31.889270,83.782460],[-31.529440,83.387370],[-31.105010,83.095920],[-30.715450,83.426440],[-30.392850,83.000530],[-30.281030,83.511800],[-29.926960,83.074110],[-29.952620,82.276630],[-29.676230,81.829950],[-28.965020,81.807170],[-28.464220,81.597440],[-28.020290,81.401920],[-27.484130,81.213940],[-26.864460,81.368790],[-26.435920,81.534830],[-26.078840,82.086300],[-25.658820,82.392460],[-25.174400,82.561300],[-24.722410,82.300620],[-24.291000,82.783000],[-23.904590,83.163260],[-23.721630,82.653850],[-23.681860,82.002610],[-23.381000,82.534360],[-23.088160,82.948250],[-22.975660,83.430600],[-22.795400,83.993140],[-22.486180,84.363950],[-22.501060,83.827090],[-22.619870,83.309410],[-22.404030,82.687500],[-22.410330,82.184660],[-22.433900,81.559080],[-21.953350,81.357230],[-21.523650,81.883480],[-20.926900,82.140600],[-20.470670,82.090130],[-20.029220,82.243020],[-19.205340,82.389180],[-18.543470,82.080910],[-18.413030,81.827600],[100.000000,1000.000000],[-18.413030,81.827600],[-18.121810,81.803100],[-17.558060,81.727200],[-17.150260,81.416150],[-16.809000,81.011410],[-16.313960,80.589440],[-15.952630,80.037410],[-15.726810,79.343920],[-15.339760,78.790960],[-14.964050,78.385100],[-14.561280,78.063130],[-14.327360,77.422540],[-14.115230,76.954640],[-13.929880,76.510720],[-14.032730,75.877450],[-14.068090,75.347570],[-13.727960,75.033040],[-13.420890,74.621020],[-12.924950,74.191290],[-12.464250,73.663480],[-12.124730,73.338390],[-12.112880,73.326490],[-12.106950,73.320550],[-11.910600,72.835810],[-11.908060,72.358410],[-11.698000,71.870270],[-11.718510,71.399400],[-11.449320,70.918590],[-10.979760,70.546330],[-10.510910,70.346180],[-10.518110,70.339130],[-10.077400,70.224630],[-9.546768,70.159020],[-9.038317,70.321690],[-8.891020,70.473430],[100.000000,1000.000000],[-8.891020,70.473430],[-9.040214,70.958080],[-8.658008,71.359170],[-8.342463,71.742870],[-7.878476,72.173440],[-7.274559,72.379520],[-6.786033,72.531540],[-6.305313,72.779810],[-5.928293,73.095660],[-5.512259,73.339260],[-4.920917,73.539430],[-4.262638,73.664850],[-3.720772,73.991460],[-3.196160,74.083010],[-2.657127,74.172330],[-2.383024,74.600620],[-2.902423,74.578730],[-2.595602,75.148980],[-2.149163,75.237360],[-1.573763,75.391050],[-1.136570,75.503150],[-0.764512,75.837220],[-0.675309,76.336140],[-0.307622,76.704900],[0.126730,76.984760],[0.351732,77.437000],[0.404379,77.647160],[100.000000,1000.000000],[-3.296963,95.680580],[-3.261327,95.632770],[-3.099441,96.059190],[-3.566719,95.951320],[-3.296963,95.680580],[100.000000,1000.000000],[-3.025087,96.237160],[-3.101964,96.227470],[-3.511358,96.437390],[-3.686679,96.866150],[-4.080138,96.549370],[-3.737546,96.141390],[-3.157311,96.183430],[-3.025087,96.237160],[100.000000,1000.000000],[-7.638068,100.192400],[-7.609278,100.165600],[-7.468292,100.611000],[-7.638068,100.192400],[100.000000,1000.000000],[-9.173862,98.475120],[-9.209681,98.508340],[-9.702805,98.457060],[-9.173862,98.475120],[-9.173862,98.475120],[100.000000,1000.000000],[-13.200680,98.583540],[-13.285100,98.619450],[-13.298910,98.618330],[-13.219050,98.132880],[-13.200680,98.583540],[100.000000,1000.000000],[-28.254520,100.360200],[-28.232370,100.426800],[-28.632050,100.087300],[-28.766500,99.545120],[-28.423410,99.906170],[-28.254520,100.360200],[100.000000,1000.000000],[-30.043780,98.232960],[-30.087970,98.284840],[-30.043780,98.232960],[100.000000,1000.000000],[-23.515420,81.026070],[-23.510790,81.090870],[-23.794210,81.533040],[-24.336640,81.735400],[-24.125950,81.245260],[-23.701200,80.906260],[-23.515420,81.026070],[100.000000,1000.000000],[-33.157760,83.070930],[-33.171040,83.150610],[-33.615870,82.927530],[-33.161480,82.975670],[-33.157760,83.070930],[100.000000,1000.000000],[-33.629450,82.544920],[-33.571040,82.572830],[-33.629450,82.544920],[100.000000,1000.000000],[-31.603330,80.704530],[-31.609750,80.709270],[-32.088700,80.867200],[-32.600830,80.837550],[-33.069590,81.093130],[-33.354970,81.521950],[-33.721060,81.952630],[-34.205060,81.751520],[-34.480650,81.161020],[-34.755780,80.652430],[100.000000,1000.000000],[-34.755780,80.652430],[-34.713050,80.020260],[-34.551300,79.502480],[-34.402530,78.980420],[-33.993580,78.501400],[-33.423460,78.755870],[-32.966630,79.057170],[-32.644700,79.437610],[-32.234000,79.862430],[-31.783900,80.365920],[-31.603330,80.704530],[100.000000,1000.000000],[-12.475860,111.239300],[-12.644130,110.784400],[-13.346570,110.724300],[-13.783940,110.747700],[100.000000,1000.000000],[-11.467700,104.478600],[-11.454230,104.493700],[-11.562960,104.967400],[-11.858220,104.799900],[100.000000,1000.000000],[-13.776680,110.740800],[-13.820330,110.782200],[-14.388950,110.537200],[-14.849780,110.441400],[-15.292180,110.819600],[-15.802460,110.544600],[-16.355920,110.887800],[100.000000,1000.000000],[-16.355920,110.887800],[-16.941930,110.781700],[-17.323770,111.046600],[-17.047420,110.599400],[-16.609040,110.140700],[-16.206350,109.885900],[-15.753200,109.597900],[-15.384090,109.305500],[-14.960550,109.060200],[100.000000,1000.000000],[-14.960550,109.060200],[-14.331340,109.138700],[-13.858990,109.098600],[-13.221090,109.153100],[-12.623700,109.370100],[-12.025750,109.182000],[-11.609970,108.971000],[-11.141850,108.877200],[-10.764710,108.564000],[-10.357970,108.209400],[-10.661680,107.830200],[-10.540410,107.384400],[-10.856080,106.960900],[-10.837080,106.431700],[-10.492660,106.041100],[-10.084450,105.632600],[-9.572915,105.279500],[-9.572915,105.279500],[100.000000,1000.000000],[-9.572915,105.279500],[-8.774400,105.168000],[-8.255014,105.206100],[-7.755445,105.000800],[-7.384089,104.626300],[-7.220559,104.143700],[-6.907229,103.809700],[-6.558284,103.456200],[-6.289002,104.069800],[-6.387287,104.725100],[-6.844400,104.919000],[-6.370942,105.094500],[-6.007992,105.428000],[-5.551270,105.481000],[-5.201052,105.784700],[-4.685772,105.782200],[-4.175433,105.715300],[-3.739779,105.553500],[-3.210052,105.316800],[-2.643616,105.031600],[-2.196995,104.735000],[-1.766627,104.508500],[-1.281037,104.573200],[100.000000,1000.000000],[-2.188886,102.954800],[-2.177113,103.039900],[-2.644667,103.109200],[-2.188876,102.954800],[-2.188876,102.954800],[100.000000,1000.000000],[-2.419265,102.608300],[-2.590683,102.687300],[-2.419265,102.608300],[100.000000,1000.000000],[-2.396793,102.559600],[-2.982767,102.328100],[-2.485910,102.464900],[-2.396793,102.559600],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-1.177509,104.266100],[-1.252939,104.365700],[-1.344212,104.464700],[-1.394953,104.541800],[-1.403810,104.565100],[-1.543995,104.693600],[-1.785766,104.976000],[-2.068185,105.280300],[-2.381092,105.551300],[-3.120814,106.151300],[-3.605286,106.716100],[-3.973028,106.960500],[-4.441279,107.327300],[-5.035688,107.855300],[-5.373888,108.149200],[-5.878105,108.426800],[-6.185289,108.554900],[-6.770046,108.860500],[-7.452555,109.225200],[-8.162964,109.508600],[-8.614511,109.677400],[-9.130523,109.874800],[-9.493772,110.024300],[-9.890116,110.204100],[-10.156990,110.326500],[-10.487780,110.461700],[-10.832840,110.564000],[-11.134990,110.596000],[-11.436360,110.611700],[-11.580550,110.652200],[-11.777360,110.802900],[-11.890750,110.861300],[-11.971940,110.905300],[-12.029730,110.958700],[-12.086780,110.996000],[-12.173890,110.999300],[-12.252040,110.978800],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[-12.252800,110.995000],[-12.375910,110.923300],[-12.468980,110.885700],[-12.571060,110.871900],[-12.711240,110.831600],[-13.005400,110.871500],[-13.245420,110.938900],[-13.517660,111.020400],[-13.844560,111.090800],[-14.176100,111.258500],[-14.360490,111.320800],[-14.534990,111.343100],[-14.654050,111.360500],[-14.852720,111.234600],[-15.172550,111.019400],[-15.509220,110.835400],[-15.803710,110.906600],[-15.898810,111.072200],[-16.078620,111.052700],[-16.166500,110.932500],[-16.192680,110.832700],[-16.276560,110.786400],[-16.364810,110.821600],[-16.566890,110.931100],[-16.774210,111.139000],[-17.024950,111.278400],[-17.270320,111.319800],[-17.483630,111.346800],[-17.640670,111.352800],[-17.715900,111.438300],[-17.816910,111.423300],[-17.975030,111.305600],[-18.131090,111.295000],[-18.315490,111.373100],[-18.459550,111.429100],[-18.462310,111.478500],[-18.452110,111.578200],[-18.492490,111.600300],[-18.620880,111.657500],[-18.870380,111.780900],[-19.262820,111.944300],[-19.638630,112.092200],[-19.900680,112.165300],[-20.077440,112.252600],[-20.175590,112.328900],[-20.223170,112.342200],[-20.268960,112.322300],[-20.298190,112.286900],[-20.323650,112.185100],[-20.312520,112.127600],[-20.285940,112.071200],[-20.216980,111.959700],[-20.125350,111.858200],[-19.985010,111.727000],[-19.732030,111.537900],[-19.452630,111.433700],[-19.238340,111.374500],[-18.859800,111.178300],[-18.489490,110.989800],[-18.326160,110.869400],[-18.026200,110.684700],[-17.807850,110.560200],[-17.407030,110.391100],[-17.051880,110.202500],[-16.605730,109.930400],[-16.063230,109.616200],[-15.639820,109.473700],[-15.425850,109.292600],[-15.017020,109.132900],[-14.735020,108.997400],[-14.394790,108.946600],[-14.169180,108.985600],[-13.777730,109.010600],[-13.565750,109.015800],[-13.343640,108.981200],[-13.180110,108.862100],[-13.075190,108.812100],[-12.987660,108.793300],[-12.794530,108.861700],[-12.616120,108.913000],[-12.411940,108.925400],[-12.284670,108.900800],[-12.145760,108.804300],[-12.060640,108.680500],[-11.987190,108.475500],[-11.953260,108.276300],[-11.983660,107.952500],[-12.018010,107.709000],[-12.140270,107.347600],[-12.175970,107.136300],[-12.161720,107.016700],[-12.118600,106.947200],[-12.070840,106.934100],[-11.957800,106.877100],[-11.916430,106.839500],[-11.889100,106.769000],[-11.891290,106.664600],[-11.923850,106.542100],[-12.007150,106.344300],[-12.128890,106.135900],[-12.309240,105.859600],[-12.509350,105.661900],[-12.729220,105.542900],[-12.930550,105.377000],[-13.120530,105.155500],[-13.250780,104.986100],[-13.423860,104.749300],[-13.644680,104.541200],[-13.909520,104.297700],[-14.066320,104.198100],[-14.262140,104.103400],[-14.477330,104.071200],[-14.747810,104.058700],[-15.265600,104.042600],[-15.628860,104.037900],[-15.813290,104.023100],[-16.039350,103.940500],[-16.321880,103.788600],[-16.565040,103.631600],[-16.771210,103.501500],[-17.006450,103.352700],[-17.206020,103.246800],[-17.930200,102.892100],[-18.445590,102.739400],[-18.930460,102.604200],[-19.158730,102.509300],[-19.508380,102.506700],[-19.968440,102.645700],[-20.180470,102.729000],[-20.341930,102.752700],[-20.733800,102.638400],[-20.997010,102.618200],[-21.198970,102.677400],[-21.302840,102.739100],[-21.405240,102.784700],[-21.607100,102.843700],[-21.741810,102.828700],[-22.062350,102.784300],[-22.481610,102.752400],[-22.876410,102.787600],[-23.348060,102.845400],[-23.664450,102.855900],[-23.894970,102.835500],[-24.320580,102.970700],[-24.695130,103.120400],[-25.054660,103.271700],[-25.250150,103.427900],[-25.422590,103.504400],[-25.606050,103.471800],[-25.697630,103.417900],[-25.772590,103.349700],[-25.913760,103.131500],[-26.144000,102.917200],[-26.306240,102.836200],[-26.424390,102.761400],[-26.494920,102.660000],[-26.541730,102.479000],[-26.514550,102.234500],[-26.478140,102.041100],[-26.461690,101.894700],[-26.416140,101.752600],[-26.395130,101.631900],[-26.407600,101.481500],[-26.423720,101.363700],[-26.472450,101.274000],[-26.569010,101.152300],[-26.700010,101.074800],[-26.803690,101.017800],[-26.946190,100.979400],[-27.057370,100.986900],[-27.343310,100.983400],[-27.481080,100.969900],[-27.852580,100.951500],[-28.088360,100.904700],[-28.597330,100.595500],[-28.776370,100.456700],[-29.168630,100.063800],[-29.464970,99.678020],[-29.637000,99.347310],[-29.840130,99.043500],[-30.040720,98.781110],[-30.329740,98.392860],[-30.575910,98.069930],[-30.816660,97.672620],[-31.001140,97.245050],[-31.219150,96.818310],[-31.332280,96.545910],[-31.428540,96.260760],[-31.568630,95.858760],[-31.666060,95.548770],[-31.751910,95.257990],[-31.867120,94.812930],[-32.039530,94.346470],[-32.180680,93.871380],[-32.291070,93.469300],[-32.376580,93.090070],[-32.426430,92.631240],[-32.462360,92.217450],[-32.499510,91.739860],[-32.467670,91.450320],[-32.456540,91.164220],[-32.434040,90.817650],[-32.436920,90.465420],[-32.460600,90.156220],[-32.515060,89.728370],[-32.549550,89.378200],[-32.569260,88.953870],[-32.659870,88.456180],[-32.774930,87.992200],[-32.936100,87.539310],[-33.067380,87.243670],[-33.204010,86.915250],[-33.289610,86.726500],[-33.359820,86.464450],[-33.384290,86.045860],[-33.322520,85.839940],[-33.257780,85.681670],[-33.162660,85.563670],[-33.052570,85.434820],[-32.963860,85.284350],[-32.825210,84.889050],[-32.813710,84.770230],[-32.833850,84.649970],[-32.882540,84.513550],[-32.947410,84.425660],[-33.057150,84.248220],[-33.191700,84.040080],[-33.355090,83.792430],[-33.605330,83.426080],[-33.804680,83.097660],[-34.036480,82.614590],[-34.194510,82.261010],[-34.325490,81.879000],[-34.444720,81.561220],[-34.547260,81.256750],[-34.665000,80.917510],[-34.807080,80.480880],[-34.908060,80.111240],[-34.982300,79.737110],[-35.007960,79.491990],[-35.033250,79.247490],[-35.053790,79.034630],[-34.978310,78.747810],[-34.897360,78.536850],[-34.775390,78.377690],[-34.683960,78.294760],[-34.563640,78.214950],[-34.391690,78.167760],[-34.147480,78.116670],[-33.949970,78.163410],[-33.670960,78.143620],[-33.494590,78.260200],[-33.303340,78.366640],[-33.173210,78.480900],[-33.030590,78.541530],[-32.960300,78.549730],[-32.781600,78.585140],[-32.531720,78.821440],[-32.414760,78.979640],[-32.282990,79.127850],[-32.113280,79.272680],[-31.816600,79.397030],[-31.608980,79.515310],[-31.434820,79.680630],[-31.033240,79.974000],[-30.817390,80.192120],[-30.673560,80.310580],[-30.448490,80.428700],[-30.227740,80.573710],[-30.001690,80.762410],[-29.610880,80.948560],[-29.185320,81.061010],[-28.873560,81.114460],[-28.533910,81.122520],[-28.159230,81.115200],[-27.756660,81.097590],[-27.333400,81.074900],[-26.851720,81.090660],[-26.396480,81.040620],[-26.024190,80.993050],[-25.720830,80.937740],[-25.503490,80.900740],[-25.250390,80.883910],[-24.975020,80.849060],[-24.472060,80.803820],[-23.945200,80.638900],[-23.588210,80.535380],[-23.303510,80.539060],[-23.176260,80.608800],[-23.090650,80.650550],[-22.846400,80.674570],[-22.655140,80.604880],[-22.317770,80.514180],[-21.836310,80.478340],[-21.351790,80.426140],[-20.900670,80.388140],[-20.467290,80.401990],[-19.964110,80.394040],[-19.429790,80.422360],[-19.289680,80.417390],[-19.076310,80.413410],[-18.789460,80.269170],[-18.521980,80.115040],[-18.187280,79.953320],[-17.796300,79.676880],[-17.202070,79.271440],[-17.044210,79.131990],[-16.857890,78.967090],[-16.279690,78.361500],[-16.024310,78.041710],[-15.823110,77.821600],[-15.679860,77.666190],[-15.561660,77.481290],[-15.421010,77.249780],[-15.340020,77.007330],[-15.278000,76.743350],[-15.199410,76.412450],[-15.097510,76.124740],[-15.037480,75.746230],[-14.856920,75.308100],[-14.701870,74.957430],[-14.567240,74.741370],[-14.334870,74.523760],[-14.145100,74.371050],[-13.994720,74.216190],[-13.735180,73.931270],[-13.486100,73.732830],[-13.265230,73.586590],[-12.997160,73.380950],[-12.754990,73.146930],[-12.606540,72.963360],[-12.531360,72.824630],[-12.455320,72.632270],[-12.313110,72.374860],[-12.230040,72.096180],[-12.154990,71.877660],[-12.080200,71.646120],[-12.012490,71.421210],[-11.892620,71.117820],[-11.813660,70.973080],[-11.702430,70.808820],[-11.455180,70.533200],[-11.293030,70.368910],[-11.047280,70.118620],[-10.834300,69.940380],[-10.640840,69.794630],[-10.408320,69.687630],[-10.143790,69.546750],[-9.969472,69.458980],[-9.774861,69.416760],[-9.599483,69.381120],[-9.423414,69.371570],[-9.147148,69.432900],[-8.835338,69.566280],[-8.674038,69.696080],[-8.477194,69.898900],[-8.340274,70.070010],[-8.208744,70.275180],[-8.041360,70.567730],[-7.880643,70.841110],[-7.775176,71.035270],[-7.649162,71.236120],[-7.482422,71.436680],[-7.247171,71.649940],[-7.060906,71.775830],[-6.929471,71.861950],[-6.715805,71.959950],[-6.432740,72.070110],[-6.246348,72.127470],[-5.906321,72.249670],[-5.571632,72.378810],[-5.234705,72.535520],[-4.834026,72.683330],[-4.523523,72.798970],[-4.275570,72.895650],[-3.796748,72.963050],[-3.526734,73.037500],[-3.055043,73.188580],[-2.805230,73.242160],[-2.501527,73.371460],[-2.118398,73.504490],[-1.768461,73.660330],[-1.384926,73.886540],[-1.069476,74.159540],[-0.790636,74.398990],[-0.546711,74.648060],[-0.322034,74.935050],[-0.095356,75.252010],[-0.027269,75.452900],[0.023563,75.749660],[0.148357,76.073400],[0.298055,76.463070],[0.369613,76.754010],[0.535012,77.005290],[0.612191,77.260380],[0.754783,77.491510],[0.788625,77.593800],[0.799927,77.874580],[0.799144,78.044940],[0.754904,78.246500],[0.676276,78.530790],[0.687566,78.641760],[0.713186,78.737580],[0.783920,78.846980],[0.846453,78.934510],[0.994198,79.116490],[1.106019,79.337110],[1.137497,79.612590],[1.122770,79.859700],[1.135514,80.031470],[1.103960,80.234430],[1.028150,80.468430],[1.008348,80.566300],[0.945813,80.755090],[0.898028,80.943570],[0.799348,81.215590],[0.765353,81.373870],[0.616664,81.819660],[0.481462,82.250270],[0.317014,82.832210],[0.223632,83.202610],[0.115788,83.739600],[0.065922,84.110510],[-0.022501,84.489480],[-0.066720,84.762440],[-0.217244,85.156830],[-0.277539,85.445210],[-0.262173,85.643070],[-0.163214,85.910100],[-0.010900,86.200870],[0.187449,86.507770],[0.347492,86.868600],[0.423462,87.175850],[0.415121,87.382840],[0.376179,87.543620],[0.344843,87.681530],[0.328530,87.865700],[0.289240,88.011250],[0.217280,88.402470],[0.144326,88.840320],[0.087159,89.170730],[0.043802,89.594260],[0.046044,90.034670],[0.043330,90.235640],[0.042443,90.297550],[0.040895,90.405770],[0.093834,90.492000],[0.246248,90.665630],[0.368694,90.776720],[0.561153,90.881580],[0.677417,90.891700],[0.895646,90.833930],[1.075167,90.767510],[1.238947,90.747570],[1.433698,90.712150],[1.674364,90.755290],[1.750790,90.881270],[1.796515,90.975580],[1.803688,91.030200],[1.738973,91.231600],[1.658731,91.417210],[1.593269,91.649950],[1.424726,91.981870],[1.320296,92.174700],[1.217684,92.242570],[1.147691,92.233150],[0.874410,92.250190],[0.788303,92.271510],[0.724313,92.363530],[0.650616,92.556670],[0.623510,92.750950],[0.580713,92.944950],[0.577901,93.085300],[0.613908,93.234760],[0.593121,93.484170],[0.525912,93.701170],[0.442943,93.917720],[0.406276,94.151340],[0.139675,94.816350],[-0.179936,95.636440],[-0.377705,95.974660],[-0.581174,96.226330],[-0.878467,96.458630],[-1.172466,96.580820],[-1.372053,96.690780],[-1.659490,96.852070],[-1.964921,97.075120],[-2.136044,97.264200],[-2.215603,97.519780],[-2.269744,97.721600],[-2.285265,97.932980],[-2.322820,98.104250],[-2.367441,98.251530],[-2.502120,98.497240],[-2.659069,98.702640],[-3.034857,99.079070],[-3.410464,99.439470],[-3.577500,99.683570],[-3.620854,99.783920],[-3.614562,99.823530],[-3.609002,99.878970],[-3.578875,99.911930],[-3.464010,99.988250],[-3.325270,100.057800],[-3.070751,100.188000],[-2.846256,100.285300],[-2.583835,100.423600],[-2.374731,100.520000],[-2.205741,100.638200],[-2.045524,100.779800],[-1.956427,100.926000],[-1.900608,101.118300],[-1.875818,101.293400],[-1.906626,101.473900],[-1.944352,101.630300],[-2.010466,101.904200],[-2.018713,102.109700],[-1.995875,102.332400],[-1.966198,102.579300],[-1.878934,102.971700],[-1.830268,103.140500],[-1.715172,103.431400],[-1.583534,103.707300],[-1.418220,103.937300],[-1.244571,104.159700],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[34.915620,34.346250],[34.990440,34.532850],[35.113230,34.626980],[35.246490,34.476330],[35.173190,34.151970],[100.000000,1000.000000],[10.608170,41.022350],[10.617360,41.033040],[10.616580,41.042930],[10.615800,41.052810],[10.625000,41.063510],[10.624220,41.073390],[10.634190,41.074200],[10.683910,41.207580],[10.693110,41.218280],[10.701520,41.238860],[10.700740,41.248740],[10.699970,41.258630],[10.770420,41.383720],[10.780400,41.384530],[10.789590,41.395230],[10.799550,41.396040],[10.798780,41.405920],[10.817940,41.417420],[10.827920,41.418230],[10.837880,41.419040],[10.847070,41.429730],[10.857050,41.430540],[10.856280,41.440430],[10.969710,41.529200],[10.968940,41.539080],[10.978130,41.549780],[11.038640,41.674020],[11.047780,41.813980],[11.047010,41.823870],[11.046230,41.833750],[11.055420,41.844440],[11.044640,41.982780],[11.033140,42.001730],[11.032370,42.011610],[11.031600,42.021500],[11.030830,42.031370],[11.049970,42.172120],[11.049200,42.182000],[11.038450,42.320330],[10.987840,42.455440],[10.977120,42.593760],[11.006280,42.735280],[11.005520,42.745160],[11.034700,42.886670],[11.033940,42.896540],[11.033180,42.906420],[11.032410,42.916300],[11.041620,42.926980],[11.040860,42.936860],[11.040090,42.946740],[11.069300,43.088230],[11.068530,43.098100],[11.067010,43.117860],[11.066250,43.127740],[11.126150,43.261730],[11.126150,43.261730],[11.135350,43.272400],[11.195260,43.406380],[11.204470,43.417050],[11.204470,43.417050],[11.203720,43.426930],[11.212930,43.437600],[11.222130,43.448270],[11.222130,43.448270],[11.231350,43.458940],[11.240560,43.469620],[11.240560,43.469620],[11.249760,43.480280],[11.259730,43.481080],[11.268950,43.491760],[11.278910,43.492550],[11.288120,43.503220],[11.298100,43.504020],[11.379480,43.619800],[11.378720,43.629680],[11.439430,43.753740],[11.448780,43.893550],[11.448020,43.903420],[11.447270,43.913290],[11.456490,43.923960],[11.445160,44.072050],[11.423880,44.219340],[11.423130,44.229210],[11.422380,44.239090],[11.420870,44.258830],[11.420120,44.268700],[11.419360,44.278580],[11.418610,44.288450],[11.397360,44.435730],[11.396610,44.445610],[11.395860,44.455480],[11.405080,44.466140],[11.404330,44.476010],[11.403580,44.485880],[11.402830,44.495760],[11.494270,44.612230],[11.493520,44.622100],[11.502750,44.632760],[11.502000,44.642630],[11.511220,44.653290],[11.521180,44.654080],[11.520430,44.663950],[11.529660,44.674610],[11.528910,44.684480],[11.538880,44.685270],[11.620360,44.800930],[11.630340,44.801720],[11.639560,44.812370],[11.638810,44.822240],[11.648780,44.823030],[11.750970,44.930380],[11.865390,45.008910],[11.875350,45.009700],[11.884580,45.020350],[11.894550,45.021140],[11.904520,45.021930],[11.914490,45.022710],[11.923710,45.033370],[11.932930,45.044020],[11.993770,45.167920],[12.002250,45.188440],[12.001510,45.198310],[12.011480,45.199090],[12.010730,45.208960],[12.009980,45.218820],[12.019210,45.229480],[12.018460,45.239340],[12.017720,45.249200],[12.067870,45.382160],[12.118030,45.515100],[12.127250,45.525750],[12.126500,45.535610],[12.145290,45.685910],[12.144550,45.695760],[12.153780,45.706410],[12.153040,45.716270],[12.152290,45.726140],[12.151550,45.736000],[12.150810,45.745860],[12.160040,45.756510],[12.159300,45.766370],[12.158560,45.776230],[12.157820,45.786090],[12.156340,45.805820],[12.156340,45.805820],[12.165570,45.816460],[12.164830,45.826320],[12.164090,45.836190],[12.162610,45.855910],[12.161860,45.865770],[12.161130,45.875630],[12.160380,45.885500],[12.159650,45.895360],[12.168880,45.906000],[12.177730,46.055480],[12.176990,46.065350],[12.176250,46.075210],[12.186230,46.075990],[12.185490,46.085850],[12.194720,46.096490],[12.193980,46.106350],[12.193240,46.116210],[12.202470,46.126850],[12.201730,46.136710],[12.201000,46.146570],[12.241270,46.278660],[12.240530,46.288520],[12.290790,46.421370],[12.290050,46.431220],[12.319650,46.572360],[12.318920,46.582220],[12.328150,46.592860],[12.327420,46.602710],[12.388420,46.726450],[12.387680,46.736310],[12.387680,46.736310],[12.396910,46.746940],[12.396180,46.756800],[12.435790,46.898680],[12.434330,46.918390],[12.433600,46.928250],[12.432870,46.938100],[12.442110,46.948730],[12.442110,46.948730],[12.441370,46.958590],[12.450620,46.969220],[12.450360,47.107980],[12.450130,47.246730],[12.459370,47.257360],[12.458640,47.267210],[12.457910,47.277070],[12.467880,47.277840],[12.467150,47.287700],[12.466420,47.297550],[12.475670,47.308180],[12.516070,47.440150],[12.515340,47.450000],[12.524590,47.460630],[12.523860,47.470490],[12.533100,47.481110],[12.533100,47.481110],[12.542350,47.491740],[12.551600,47.502360],[12.644050,47.608610],[12.654020,47.609380],[12.653300,47.619230],[12.663260,47.620000],[12.702980,47.761780],[12.732730,47.902780],[12.772470,48.044530],[12.771750,48.054380],[12.761650,48.192280],[12.770910,48.202900],[12.770190,48.212750],[12.896940,48.262120],[12.896940,48.262120],[12.916890,48.263650],[12.926860,48.264420],[12.937550,48.255340],[12.946810,48.265950],[12.956780,48.266720],[12.976720,48.268260],[12.977440,48.258410],[13.109950,48.229010],[13.234550,48.307930],[13.244530,48.308700],[13.253770,48.319310],[13.263740,48.320080],[13.388340,48.398990],[13.480890,48.505120],[13.490130,48.515720],[13.490130,48.515720],[13.499390,48.526340],[13.508650,48.536950],[13.507930,48.546790],[13.579110,48.671040],[13.650290,48.795270],[13.690140,48.936860],[13.689430,48.946690],[13.688720,48.956540],[13.697970,48.967140],[13.697260,48.976980],[13.747820,49.109470],[13.757080,49.120080],[13.756370,49.129920],[13.755660,49.139760],[13.764910,49.150360],[13.764200,49.160200],[13.763490,49.170030],[13.793420,49.310810],[13.802680,49.321420],[13.802680,49.321420],[13.811940,49.332020],[13.811230,49.341850],[13.810520,49.351690],[13.819780,49.362290],[13.819070,49.372130],[13.818360,49.381960],[13.848320,49.522720],[13.847610,49.532560],[13.856870,49.543160],[13.856160,49.552990],[13.855460,49.562820],[13.865490,49.702040],[13.864080,49.721710],[13.863370,49.731550],[13.862670,49.741380],[13.871920,49.751980],[13.871220,49.761820],[13.870510,49.771650],[13.879780,49.782250],[13.919760,49.923730],[13.929030,49.934320],[13.928320,49.944150],[13.937590,49.954750],[13.936880,49.964580],[13.946160,49.975170],[13.944750,49.994840],[13.954010,50.005430],[13.953310,50.015260],[13.952600,50.025100],[13.961870,50.035690],[13.971140,50.046280],[13.971140,50.046280],[13.980410,50.056870],[13.979710,50.066700],[13.988980,50.077300],[13.988270,50.087130],[13.997540,50.097720],[14.048230,50.230080],[14.047530,50.239920],[14.047680,50.378310],[14.047850,50.516700],[14.047150,50.526540],[14.046450,50.536370],[14.045750,50.546200],[14.006040,50.681570],[13.966350,50.816940],[13.965650,50.826770],[13.954980,50.835860],[13.954280,50.845680],[13.943840,50.993140],[13.953810,50.993900],[13.953120,51.003730],[13.962390,51.014310],[13.972370,51.015050],[13.981650,51.025630],[13.980950,51.035460],[14.052410,51.159410],[14.061680,51.169980],[14.061680,51.169980],[14.175130,51.267410],[14.185100,51.268160],[14.184410,51.277990],[14.203670,51.289310],[14.212940,51.299890],[14.222910,51.300640],[14.361160,51.330770],[14.371140,51.331520],[14.510070,51.351840],[14.519350,51.362410],[14.601510,51.477210],[14.620770,51.488530],[14.630050,51.499100],[14.640020,51.499860],[14.639330,51.509670],[14.648620,51.520250],[14.658590,51.521000],[14.751430,51.626700],[14.761400,51.627450],[14.770680,51.638020],[14.790950,51.777740],[14.790260,51.787560],[14.810570,51.927270],[14.809890,51.937100],[14.819160,51.947660],[14.818480,51.957480],[14.817790,51.967290],[14.817100,51.977120],[14.837430,52.116810],[14.836750,52.126630],[14.835380,52.146260],[14.834690,52.156080],[14.843970,52.166650],[14.842600,52.186280],[14.841920,52.196090],[14.841240,52.205910],[14.840550,52.215730],[14.839180,52.235370],[14.838910,52.383370],[14.848210,52.393930],[14.847520,52.403740],[14.846840,52.413570],[14.846160,52.423380],[14.855440,52.433940],[14.854760,52.443760],[14.854080,52.453580],[14.863380,52.464130],[14.955630,52.579520],[15.069880,52.666930],[15.079850,52.667670],[15.089150,52.678230],[15.099120,52.678970],[15.236040,52.728600],[15.245340,52.739150],[15.383620,52.769170],[15.403580,52.770650],[15.413550,52.771400],[15.423520,52.772140],[15.432820,52.782690],[15.547760,52.860270],[15.557730,52.861010],[15.650020,52.976320],[15.650020,52.976320],[15.711060,53.109000],[15.710380,53.118800],[15.719680,53.129350],[15.790710,53.262740],[15.800000,53.273290],[15.800000,53.273290],[15.789900,53.420360],[15.788550,53.439960],[15.787880,53.449760],[15.787210,53.459570],[15.796520,53.470120],[15.795850,53.479920],[15.795170,53.489720],[15.794500,53.499520],[15.803810,53.510060],[15.813690,53.658590],[15.813020,53.668400],[15.802370,53.677460],[15.812280,53.825970],[15.904690,53.941140],[15.914660,53.941870],[15.923970,53.952410],[15.933940,53.953140],[15.943920,53.953880],[15.954560,53.944810],[15.964540,53.945550],[15.974510,53.946280],[15.985160,53.937220],[16.127470,53.908320],[16.138110,53.899260],[16.279770,53.880190],[16.420090,53.880740],[16.430060,53.881480],[16.450010,53.882950],[16.459980,53.883690],[16.479930,53.885170],[16.489910,53.885910],[16.638200,53.916610],[16.648160,53.917350],[16.657470,53.927880],[16.797120,53.938260],[16.924130,53.987080],[16.943410,53.998350],[16.952720,54.008880],[16.962030,54.019410],[16.962030,54.019410],[16.971330,54.029950],[16.981310,54.030690],[17.084370,54.136740],[17.198750,54.223950],[17.302490,54.320180],[17.311800,54.330700],[17.311800,54.330700],[17.321110,54.341240],[17.330430,54.351760],[17.329760,54.361550],[17.261290,54.484290],[17.250660,54.493340],[17.240680,54.492600],[17.230050,54.501640],[17.229390,54.511430],[17.219410,54.510690],[17.208770,54.519730],[17.208110,54.529530],[17.197480,54.538570],[17.196820,54.548350],[17.186170,54.557400],[17.196220,54.705650],[17.205530,54.716170],[17.215510,54.716900],[17.224820,54.727420],[17.234800,54.728160],[17.244110,54.738680],[17.254090,54.739420],[17.253430,54.749200],[17.272720,54.760470],[17.282040,54.770980],[17.291360,54.781510],[17.416420,54.859570],[17.426400,54.860300],[17.435710,54.870820],[17.445030,54.881350],[17.455000,54.882080],[17.558810,54.978210],[17.568790,54.978950],[17.578100,54.989470],[17.588080,54.990200],[17.597400,55.000720],[17.607380,55.001460],[17.626670,55.012720],[17.752410,55.080970],[17.856240,55.177080],[17.959420,55.282940],[17.968740,55.293460],[18.040700,55.416630],[18.133290,55.531490],[18.142610,55.542000],[18.152580,55.542730],[18.266430,55.639500],[18.276410,55.640240],[18.285730,55.650750],[18.295050,55.661250],[18.305030,55.661990],[18.314360,55.672490],[18.428210,55.769240],[18.542090,55.865980],[18.657250,55.943160],[18.666580,55.953670],[18.803650,56.003030],[18.940090,56.062170],[18.950060,56.062910],[18.959380,56.073410],[18.969370,56.074150],[19.096470,56.122790],[19.212010,56.043110],[19.222630,56.034090],[19.223280,56.024340],[19.233890,56.015320],[19.234540,56.005560],[19.245170,55.996560],[19.255140,55.997300],[19.324060,55.865160],[19.383020,55.732300],[19.479940,55.631710],[19.490570,55.622710],[19.491220,55.612950],[19.501850,55.603950],[19.634780,55.564920],[19.644750,55.565670],[19.654730,55.566420],[19.664700,55.567170],[19.675330,55.558170],[19.685300,55.558920],[19.782900,55.448660],[19.792870,55.449410],[19.803500,55.440410],[19.804150,55.430660],[19.814780,55.421660],[19.815430,55.411900],[19.825410,55.412660],[19.958990,55.363970],[19.969630,55.354980],[19.970280,55.345230],[19.980260,55.345990],[19.990890,55.336990],[20.001510,55.328000],[20.002160,55.318250],[20.012790,55.309250],[20.138380,55.230610],[20.254000,55.151230],[20.264620,55.142250],[20.275250,55.133260],[20.285230,55.134030],[20.353600,55.011880],[20.364890,54.993150],[20.365550,54.983400],[20.376830,54.964670],[20.377490,54.954920],[20.388120,54.945940],[20.388780,54.936190],[20.408630,54.790730],[20.487690,54.659640],[20.556780,54.527800],[20.557440,54.518050],[20.577360,54.372610],[20.578020,54.362860],[20.607920,54.218180],[20.618570,54.209210],[20.619900,54.189720],[20.620560,54.179970],[20.631200,54.171000],[20.631860,54.161250],[20.642500,54.152280],[20.701690,54.019700],[20.770870,53.887900],[20.771540,53.878150],[20.772210,53.868400],[20.783520,53.849690],[20.853400,53.708170],[20.854070,53.698420],[20.864710,53.689450],[20.875360,53.680500],[20.886000,53.671540],[20.886670,53.661790],[20.897310,53.652820],[20.995120,53.542930],[21.005760,53.533980],[21.006440,53.524230],[21.065710,53.391720],[21.190770,53.323250],[21.201410,53.314290],[21.202080,53.304550],[21.212060,53.305340],[21.319200,53.206080],[21.444940,53.127940],[21.455600,53.119000],[21.456270,53.109250],[21.466910,53.100310],[21.554810,52.989780],[21.564780,52.990590],[21.565460,52.980840],[21.576110,52.971900],[21.586070,52.972700],[21.596050,52.973500],[21.606030,52.974300],[21.625970,52.975910],[21.626650,52.966160],[21.759670,52.927890],[21.769640,52.928690],[21.779610,52.929500],[21.789590,52.930300],[21.931230,52.912350],[21.940520,52.922900],[21.951160,52.913970],[21.961140,52.914770],[21.981080,52.916390],[21.991060,52.917190],[22.001030,52.918000],[22.010330,52.928540],[22.020290,52.929350],[22.040240,52.930960],[22.050210,52.931770],[22.060180,52.932580],[22.070160,52.933380],[22.080130,52.934190],[22.219730,52.945510],[22.229710,52.946320],[22.239680,52.947130],[22.249650,52.947940],[22.259630,52.948750],[22.409200,52.960910],[22.541540,52.932540],[22.551520,52.933350],[22.561490,52.934160],[22.581430,52.935790],[22.591400,52.936610],[22.600690,52.947150],[22.725590,53.025860],[22.734880,53.036400],[22.734880,53.036400],[22.744180,53.046950],[22.882430,53.077820],[22.893080,53.068910],[22.902370,53.079460],[22.913020,53.070540],[22.923670,53.061630],[22.933640,53.062450],[23.080510,53.113620],[23.090490,53.114440],[23.100460,53.115260],[23.159780,52.983200],[23.160460,52.973480],[23.141190,52.962110],[23.141870,52.952380],[23.143220,52.932930],[23.143900,52.923210],[23.145250,52.903760],[23.135960,52.893210],[23.126670,52.882660],[23.127350,52.872940],[23.117380,52.872120],[23.108080,52.861560],[23.098790,52.851020],[23.089500,52.840470],[23.089500,52.840470],[23.080200,52.829920],[23.060930,52.818550],[23.051650,52.808000],[23.042350,52.797450],[23.032380,52.796630],[23.023090,52.786080],[22.887560,52.716220],[22.774020,52.618800],[22.764730,52.608250],[22.765410,52.598520],[22.756120,52.587960],[22.746150,52.587140],[22.746840,52.577410],[22.737540,52.566860],[22.728250,52.556310],[22.636030,52.441040],[22.626740,52.430480],[22.626740,52.430480],[22.617460,52.419930],[22.618140,52.410200],[22.608850,52.399640],[22.609530,52.389910],[22.600240,52.379350],[22.600920,52.369620],[22.508730,52.254320],[22.405200,52.157670],[22.395920,52.147110],[22.386630,52.136550],[22.387310,52.126810],[22.377340,52.125990],[22.368060,52.115430],[22.264550,52.018750],[22.255260,52.008200],[22.255950,51.998460],[22.256630,51.988710],[22.247350,51.978150],[22.144540,51.871720],[22.145220,51.861980],[22.135930,51.851410],[22.136620,51.841670],[22.127350,51.831100],[22.117370,51.830280],[22.118060,51.820550],[22.108770,51.809980],[22.100180,51.789680],[22.100870,51.779930],[22.101550,51.770190],[22.092280,51.759620],[22.083680,51.739320],[22.074400,51.728750],[22.074400,51.728750],[21.981580,51.623100],[21.982270,51.613360],[21.972990,51.602790],[21.963010,51.601970],[21.953740,51.591400],[21.943770,51.590580],[21.933790,51.589760],[21.840990,51.484090],[21.841680,51.474340],[21.832400,51.463770],[21.833090,51.454030],[21.833780,51.444280],[21.763010,51.310980],[21.638240,51.232060],[21.617610,51.240170],[21.607630,51.239350],[21.606940,51.249100],[21.596970,51.248280],[21.504890,51.132800],[21.505590,51.123060],[21.506280,51.113300],[21.507670,51.093800],[21.508370,51.084050],[21.509060,51.074290],[21.510450,51.054790],[21.511140,51.045030],[21.511840,51.035280],[21.501870,51.034460],[21.491210,51.043390],[21.365060,50.983960],[21.365760,50.974200],[21.305720,50.831880],[21.234320,50.708230],[21.162940,50.584560],[21.154370,50.564220],[21.155070,50.554460],[21.155770,50.544700],[21.157170,50.525180],[21.157870,50.515420],[21.158570,50.505660],[21.159110,50.358440],[21.160510,50.338920],[21.161210,50.329160],[21.161910,50.319400],[21.163320,50.299880],[21.164020,50.290120],[21.164720,50.280360],[21.155450,50.269780],[21.156860,50.250250],[21.157560,50.240500],[21.158260,50.230730],[21.158970,50.220970],[21.160370,50.201450],[21.161080,50.191690],[21.161780,50.181930],[21.163180,50.162410],[21.163890,50.152650],[21.164590,50.142880],[21.166000,50.123360],[21.166700,50.113600],[21.167400,50.103840],[21.178780,50.085150],[21.179490,50.075380],[21.180190,50.065620],[21.191570,50.046930],[21.192270,50.037160],[21.193680,50.017650],[21.224200,49.872880],[21.224910,49.863120],[21.225620,49.853360],[21.295320,49.721680],[21.296030,49.711910],[21.327300,49.557380],[21.328000,49.547630],[21.329420,49.528100],[21.340780,49.371900],[21.341490,49.362140],[21.342910,49.342610],[21.353590,49.333680],[21.354300,49.323930],[21.355720,49.304390],[21.356430,49.294630],[21.347170,49.284030],[21.347880,49.274270],[21.287350,49.141480],[21.278100,49.130870],[21.278810,49.121110],[21.268830,49.120270],[21.186960,49.005310],[21.187670,48.995540],[21.188390,48.985770],[21.179130,48.975170],[21.179840,48.965400],[21.200530,48.819740],[21.201240,48.809970],[21.202670,48.790450],[21.203390,48.780680],[21.204110,48.770910],[21.205540,48.751380],[21.206250,48.741610],[21.206970,48.731840],[21.207690,48.722070],[21.238370,48.577240],[21.239810,48.557700],[21.240520,48.547940],[21.241240,48.538170],[21.242680,48.518630],[21.243390,48.508870],[21.254800,48.490170],[21.255520,48.480400],[21.256240,48.470630],[21.266920,48.461720],[21.402270,48.394560],[21.481400,48.273520],[21.542050,48.131270],[21.543490,48.111730],[21.534250,48.101110],[21.534970,48.091350],[21.535690,48.081580],[21.526440,48.070960],[21.666720,48.073120],[21.807720,48.065540],[21.817700,48.066400],[21.837630,48.068110],[21.847600,48.068960],[21.857570,48.069820],[21.960720,48.167100],[22.086720,48.227040],[22.095970,48.237660],[22.105930,48.238510],[22.230490,48.317980],[22.240460,48.318840],[22.260390,48.320550],[22.270360,48.321410],[22.281040,48.312510],[22.291020,48.313370],[22.300980,48.314230],[22.310950,48.315090],[22.320920,48.315940],[22.460470,48.327980],[22.594390,48.280650],[22.744630,48.283850],[22.754590,48.284720],[22.764560,48.285580],[22.902670,48.317210],[22.911930,48.327830],[22.921170,48.338450],[22.931140,48.339320],[22.940390,48.349930],[23.077790,48.391330],[23.087030,48.401950],[23.097000,48.402820],[23.106970,48.403690],[23.126910,48.405430],[23.136870,48.406300],[23.137590,48.396550],[23.148280,48.387660],[23.149000,48.377920],[23.209630,48.236030],[23.219600,48.236900],[23.344980,48.169380],[23.354950,48.170250],[23.356390,48.150760],[23.367070,48.141890],[23.377760,48.133010],[23.378480,48.123260],[23.389180,48.114390],[23.389900,48.104640],[23.400580,48.095770],[23.401300,48.086020],[23.402030,48.076270],[23.341640,47.943400],[23.332400,47.932780],[23.323160,47.922150],[23.313180,47.921270],[23.313910,47.911520],[23.294690,47.900020],[23.285450,47.889390],[23.275480,47.888520],[23.149520,47.828380],[23.139560,47.827500],[23.129590,47.826630],[23.109650,47.824870],[23.100410,47.814250],[23.090450,47.813370],[23.080470,47.812500],[23.061270,47.801000],[23.051290,47.800130],[23.041330,47.799250],[23.031370,47.798380],[22.906130,47.728500],[22.896150,47.727630],[22.793040,47.630230],[22.667820,47.560350],[22.657840,47.559480],[22.516850,47.566820],[22.378030,47.544910],[22.368050,47.544040],[22.358090,47.543170],[22.347400,47.552070],[22.337420,47.551200],[22.327460,47.550340],[22.316770,47.559230],[22.306800,47.558360],[22.296110,47.567260],[22.285420,47.576160],[22.264750,47.584190],[22.254050,47.593090],[22.244090,47.592220],[22.234120,47.591360],[22.224150,47.590500],[22.084600,47.578400],[22.163820,47.457510],[22.298490,47.400430],[22.309190,47.391540],[22.309190,47.391540],[22.319880,47.382640],[22.330580,47.373740],[22.330580,47.373740],[22.463790,47.336240],[22.474490,47.327340],[22.484460,47.328210],[22.494420,47.329080],[22.504390,47.329950],[22.514360,47.330830],[22.525050,47.321930],[22.535020,47.322810],[22.676020,47.315500],[22.686720,47.306610],[22.793670,47.217760],[22.803650,47.218640],[22.814340,47.209760],[22.825040,47.200870],[22.825040,47.200870],[22.835740,47.191990],[22.846430,47.183110],[22.856400,47.183980],[22.867090,47.175110],[22.867090,47.175110],[22.877790,47.166220],[22.888490,47.157340],[22.899180,47.148460],[22.899180,47.148460],[23.006890,47.049910],[23.016850,47.050790],[23.027550,47.041920],[23.143760,46.963800],[23.153730,46.964680],[23.174390,46.956690],[23.184360,46.957580],[23.195060,46.948700],[23.205030,46.949590],[23.224960,46.951350],[23.234930,46.952240],[23.244890,46.953130],[23.254860,46.954010],[23.274790,46.955780],[23.284770,46.956670],[23.294730,46.957550],[23.304690,46.958440],[23.324630,46.960210],[23.334600,46.961090],[23.344560,46.961980],[23.363760,46.973510],[23.363760,46.973510],[23.373000,46.984150],[23.486030,47.082570],[23.627020,47.075500],[23.637720,47.066640],[23.647690,47.067520],[23.658390,47.058660],[23.658390,47.058660],[23.669080,47.049800],[23.679050,47.050690],[23.795260,46.972730],[23.805960,46.963880],[23.815920,46.964770],[23.826620,46.955910],[23.827350,46.946160],[23.966160,46.968430],[23.975390,46.979070],[23.985360,46.979970],[23.995320,46.980870],[24.015250,46.982650],[24.025220,46.983550],[24.025950,46.973800],[24.035920,46.974700],[24.046620,46.965840],[24.056580,46.966740],[24.067280,46.957890],[24.077980,46.949040],[24.088680,46.940190],[24.099370,46.931340],[24.110070,46.922480],[24.110070,46.922480],[24.120040,46.923380],[24.130730,46.914530],[24.140700,46.915430],[24.151400,46.906580],[24.152130,46.896830],[24.250610,46.787960],[24.250610,46.787960],[24.261310,46.779120],[24.350570,46.659630],[24.351300,46.649880],[24.430600,46.529510],[24.440580,46.530410],[24.442050,46.510920],[24.452010,46.511820],[24.513610,46.360410],[24.524310,46.351570],[24.525040,46.341830],[24.535740,46.332990],[24.536480,46.323240],[24.668990,46.296100],[24.678940,46.297010],[24.818470,46.309800],[24.828430,46.310710],[24.839130,46.301880],[24.839870,46.292130],[24.849830,46.293050],[24.860530,46.284220],[24.861270,46.274480],[24.871970,46.265650],[24.952050,46.135650],[24.962020,46.136570],[24.962760,46.126820],[24.973460,46.118000],[25.081240,46.020020],[25.215220,45.973550],[25.276140,45.832040],[25.276880,45.822300],[25.411600,45.766160],[25.422310,45.757350],[25.432280,45.758270],[25.433020,45.748530],[25.443720,45.739720],[25.453690,45.740650],[25.464390,45.731840],[25.475100,45.723030],[25.609090,45.676690],[25.743810,45.620660],[25.877070,45.584150],[25.887770,45.575350],[25.897740,45.576290],[25.908440,45.567490],[26.004060,45.498050],[100.000000,1000.000000],[23.528120,47.459350],[23.553870,47.383100],[23.408730,47.311330],[23.266280,47.337990],[23.528120,47.459340],[23.528120,47.459340],[100.000000,1000.000000],[26.004060,45.498060],[26.014030,45.498990],[26.156500,45.473240],[26.282760,45.396970],[26.416000,45.360620],[26.426710,45.351830],[26.436680,45.352780],[26.446640,45.353730],[26.579150,45.327180],[26.711650,45.300650],[26.721610,45.301610],[26.732320,45.292830],[26.733070,45.283100],[26.804030,45.142860],[26.804780,45.133130],[26.816720,44.977410],[26.827430,44.968640],[26.837390,44.969600],[26.847360,44.970560],[26.856570,44.981250],[26.958700,45.089150],[26.957950,45.098880],[26.967160,45.109570],[26.966420,45.119300],[26.965670,45.129030],[26.974900,45.139720],[26.974150,45.149450],[27.002820,45.299240],[27.002080,45.308970],[27.011300,45.319660],[27.010550,45.329390],[27.009810,45.339110],[27.018280,45.359530],[27.017540,45.369260],[27.016790,45.378990],[27.096800,45.514080],[27.096060,45.523810],[27.106020,45.524770],[27.115240,45.535460],[27.124470,45.546140],[27.259930,45.480850],[27.260670,45.471120],[27.271380,45.462360],[27.282090,45.453600],[27.282830,45.443870],[27.293540,45.435110],[27.293540,45.435110],[27.304240,45.426350],[27.402840,45.318350],[27.412800,45.319320],[27.472580,45.325130],[100.000000,1000.000000],[27.472580,45.325140],[27.515690,45.417480],[27.504990,45.426240],[27.504250,45.435960],[27.493540,45.444720],[27.492800,45.454430],[27.491310,45.473880],[27.480600,45.482640],[27.479860,45.492360],[27.399720,45.621720],[27.398980,45.631440],[27.417010,45.789880],[27.416270,45.799600],[27.426230,45.800560],[27.435460,45.811250],[27.445420,45.812220],[27.454640,45.822900],[27.464610,45.823860],[27.473830,45.834550],[27.483050,45.845230],[27.482310,45.854950],[27.492280,45.855920],[27.501500,45.866600],[27.500760,45.876320],[27.490060,45.885070],[27.488580,45.904510],[27.487840,45.914230],[27.488580,45.904510],[27.488580,45.904510],[27.488580,45.904510],[100.000000,1000.000000],[21.774390,57.477640],[21.883780,57.183080],[22.021720,57.066580],[21.939580,56.943100],[21.982530,56.594650],[22.009840,56.332920],[22.090970,56.016690],[22.174390,55.817910],[22.082440,55.693460],[22.226430,55.489650],[22.311920,55.261750],[22.342880,54.951340],[22.407820,54.584920],[22.480910,54.395170],[22.522110,54.085510],[22.751510,53.957270],[23.070000,53.846170],[23.343930,53.800050],[23.548050,53.748340],[23.752850,53.686990],[23.931180,53.428160],[24.003130,53.258270],[23.981490,52.992650],[23.908020,52.751940],[23.871760,52.553390],[23.832820,52.393700],[23.710710,52.275880],[23.651180,52.124180],[23.653550,51.948290],[23.514680,51.643050],[23.488600,51.445110],[23.567120,51.187470],[23.675150,51.079190],[23.744490,50.811010],[23.722070,50.564320],[23.922540,50.287820],[24.168590,49.937080],[24.268120,49.671590],[24.468140,49.542250],[24.709460,49.397080],[24.857530,49.155670],[24.935170,48.917810],[24.975860,48.637470],[25.067780,48.479240],[25.226630,48.366250],[25.606910,48.244080],[25.897500,48.114000],[26.131770,48.067010],[26.284300,47.904940],[26.436840,47.742930],[26.671840,47.686550],[26.827120,47.622810],[26.917730,47.484570],[27.054550,47.399630],[27.181410,47.313800],[27.407180,47.247200],[27.410610,46.934490],[27.290590,46.795830],[27.380570,46.667420],[27.543970,46.497180],[27.690080,46.423190],[27.841000,46.418220],[27.968280,46.195760],[27.812550,46.131690],[27.615500,46.083230],[27.499280,45.895760],[27.499280,45.895760],[100.000000,1000.000000],[23.821950,52.979360],[23.847310,52.903270],[23.838220,52.746110],[23.839810,52.580050],[23.705670,52.490600],[23.600350,52.276410],[23.535640,52.055780],[23.505830,52.336980],[23.550650,52.555900],[23.731050,52.844710],[23.821950,52.979350],[23.821950,52.979350],[100.000000,1000.000000],[23.525160,50.792290],[100.000000,1000.000000],[22.910050,51.259330],[100.000000,1000.000000],[21.687570,49.018070],[100.000000,1000.000000],[21.488160,49.276250],[100.000000,1000.000000],[21.394400,49.877250],[100.000000,1000.000000],[21.245890,50.267450],[21.235220,50.276380],[21.234520,50.286130],[21.224000,50.432530],[21.242530,50.453690],[21.241830,50.463450],[21.339280,50.363530],[21.245890,50.267440],[100.000000,1000.000000],[16.987480,54.827940],[16.997460,54.828660],[17.006780,54.839180],[17.016750,54.839920],[17.109270,54.954900],[17.119240,54.955630],[17.129210,54.956360],[17.139190,54.957100],[17.148510,54.967610],[17.158480,54.968350],[17.167800,54.978870],[17.177780,54.979610],[17.187100,54.990120],[17.186440,54.999900],[17.278970,55.114850],[17.298270,55.126100],[17.308240,55.126830],[17.318870,55.117790],[17.319530,55.108010],[17.310210,55.097490],[17.320840,55.088440],[17.340140,55.099690],[17.349460,55.110210],[17.359430,55.110940],[17.369410,55.111680],[17.378730,55.122190],[17.388700,55.122930],[17.408660,55.124400],[17.419280,55.115350],[17.419280,55.115350],[17.326750,55.000400],[17.316780,54.999660],[17.307460,54.989150],[17.308120,54.979370],[17.298140,54.978630],[17.288820,54.968110],[17.278850,54.967380],[17.175040,54.871250],[17.175700,54.861470],[17.166370,54.850940],[17.156410,54.850200],[17.147090,54.839680],[17.137110,54.838950],[17.126480,54.848000],[16.998120,54.818880],[100.000000,1000.000000],[100.000000,1000.000000],[100.000000,1000.000000],[10.596430,41.023580],[10.826520,41.036920],[11.224110,41.072430],[11.861660,41.122110],[12.618620,41.033750],[13.062280,40.954350],[13.693540,40.834790],[14.462360,40.748370],[14.971890,40.695850],[15.543440,40.497600],[16.477600,40.462100],[17.240930,40.292370],[18.098180,40.235770],[18.913610,40.297880],[19.429200,40.312190],[20.559910,40.079490],[21.170760,39.655900],[21.845890,39.276500],[22.528120,39.003730],[23.315290,38.552890],[23.942300,38.262020],[24.542370,38.275540],[24.947800,38.501790],[25.363640,38.728890],[25.851930,38.743270],[26.634120,38.765310],[27.117100,38.467100],[27.521230,38.188510],[27.918280,37.869570],[28.192160,37.536380],[28.461560,37.109330],[28.753500,36.785790],[29.259710,36.235370],[29.713160,35.773780],[30.159720,35.388510],[30.577820,34.973540],[30.949060,34.703680],[31.547050,34.425330],[32.122910,34.293530],[32.974300,34.236820],[33.778400,34.267160],[34.553750,34.300690],[35.508400,34.311870],[36.201870,34.325330],[36.868770,34.391260],[100.000000,1000.000000],[100.000000,1000.000000]]
if continent=='kala':
return [[-23.200000,16.000000],[-22.800000,17.000000],[-22.400000,18.000000],[-22.000000,19.000000],[-21.600000,20.000000],[-21.200000,21.000000],[-20.800000,22.000000],[-20.400000,23.000000],[-20.000000,24.000000],[-19.600000,25.000000],[-19.200000,26.000000],[-18.800000,27.000000],[-18.400000,28.000000],[-18.400000,29.000000],[-18.000000,29.300000],[-17.500000,29.600000],[-17.400000,29.700000],[-16.400000,32.000000],[-16.500000,32.400000],[-16.400000,32.800000],[-16.400000,33.200000],[-16.400000,33.500000],[-16.600000,33.700000],[-16.800000,33.900000],[-17.000000,34.100000],[-17.200000,34.300000],[-18.000000,34.400000],[-18.600000,34.500000],[-19.100000,34.600000],[-19.600000,34.300000],[-20.000000,34.100000],[-21.000000,33.600000],[-22.000000,33.000000],[-22.900000,32.500000],[-23.600000,32.700000],[-24.300000,32.800000],[-26.000000,32.500000],[-26.300000,32.500000],[-26.600000,32.400000],[-27.500000,32.600000],[-28.000000,32.800000],[-28.700000,32.000000],[-29.400000,31.500000],[-30.000000,30.500000],[-31.400000,29.500000],[-31.600000,28.500000],[-32.700000,27.600000],[-32.500000,27.200000],[-32.500000,25.800000],[-32.400000,24.100000],[-33.000000,22.000000],[-33.600000,20.000000],[-31.000000,19.400000],[-30.000000,18.800000],[-28.000000,17.400000],[-27.700000,17.500000],[-25.700000,16.300000],[-25.300000,16.000000],[-25.000000,15.700000],[-24.800000,15.700000],[-24.400000,15.800000],[-23.400000,15.900000],[-23.200000,16.000000]]