nataliegref commited on
Commit
164d1c0
·
1 Parent(s): 799fb70

Switch to matplotlib

Browse files
Files changed (9) hide show
  1. .gitignore +1 -0
  2. app.py +81 -35
  3. cleaned_dataframe.csv +0 -0
  4. data_utils.py +27 -0
  5. example.csv +905 -0
  6. map-spike.py +162 -0
  7. plot_utils.py +100 -0
  8. requirements.txt +3 -1
  9. training_dataframe.csv +905 -0
.gitignore CHANGED
@@ -2,3 +2,4 @@
2
  .venv/
3
  __pycache__
4
  .DS_Store
 
 
2
  .venv/
3
  __pycache__
4
  .DS_Store
5
+ venv/
app.py CHANGED
@@ -1,53 +1,99 @@
1
  # Example taken from here - https://shinylive.io/py/examples/#map
2
 
3
  import os
4
- from shiny import reactive
5
- from shiny.express import input, render, ui
6
  from shinywidgets import render_widget
7
- import ipyleaflet as ipyl
8
 
 
 
9
 
10
- city_centers = {
11
- "London": (51.5074, 0.1278),
12
- "Paris": (48.8566, 2.3522),
13
- "New York": (40.7128, -74.0060),
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
 
16
- ui.input_text("Text", "Some vector", "London")
 
 
 
 
 
 
 
 
 
 
 
17
 
 
18
 
19
- @render_widget
20
- def map():
21
- return ipyl.Map(zoom=4)
22
 
 
23
 
24
- def use_in_model(x):
25
- # TODO: Call some model loaded in huggingface_hub.
26
- # Define the client once then just call the
27
- # client from here.
28
 
29
- # from huggingface_hub import InferenceClient
30
- # client = InferenceClient(
31
- # api_key=os.environ["HF_TOKEN"],
32
- # provider="auto",
33
- # )
34
- #
35
- # completion = client.chat.completions.create(
36
- # model="deepseek-ai/DeepSeek-V3-0324",
37
- # messages=[{"role": "user", "content": "A story about hiking in the mountains"}]
38
- # )
39
 
40
- return x
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
- @render.text
44
- def text():
45
- return ("You entered: " + use_in_model(input.Text()))
46
 
 
 
 
 
 
 
 
 
 
47
 
48
- @reactive.effect
49
- def _():
50
- try:
51
- map.widget.center = city_centers[use_in_model(input.Text())]
52
- except:
53
- pass
 
1
  # Example taken from here - https://shinylive.io/py/examples/#map
2
 
3
  import os
4
+ from shiny import reactive, render, ui, App
5
+ # from shiny.express import input, render, ui
6
  from shinywidgets import render_widget
 
7
 
8
+ from plot_utils import show_one_plot, show_two_plots
9
+ from data_utils import prepare_data
10
 
11
+ import pandas as pd
12
+ import geopandas as gpd
13
+
14
+ # import matplotlib.pyplot as plt
15
+ # import matplotlib.colors as colors
16
+ # import matplotlib.cm as cm
17
+ # import matplotlib.gridspec as gridspec
18
+ import numpy as np
19
+
20
+ import requests
21
+
22
+ url = "https://Projects-by-IF-model-temp-api.hf.space/model-effect"
23
+ headers = {"Content-Type": "application/json"}
24
+ data = {
25
+ "X": [[1462, -0.18, 234, 8]], "T0":[10], "T1":[15]
26
  }
27
 
28
+ response = requests.post(url, headers=headers, json=data)
29
+
30
+ if response.ok:
31
+ result = response.json()
32
+ print("Model response:", result["effect"])
33
+ else:
34
+ print("Request failed:", response.status_code, response.text)
35
+
36
+ treatment_df = pd.read_csv("example.csv", index_col=0)
37
+ og_file = "cleaned_dataframe.csv"
38
+ training_file = "training_dataframe.csv"
39
+ original_df, df, X, Y, T = prepare_data(og_file, training_file)
40
 
41
+ print(X)
42
 
 
 
 
43
 
44
+ ui.input_slider("trees", "Percentage increase in tree coverage", 0, 100, 20)
45
 
 
 
 
 
46
 
47
+ app_ui = ui.page_fluid(
48
+ ui.input_radio_buttons("tab_choice", "Choose page:", ["Effect of trees on temperature", "Effect of temperature on trees"]),
49
+ ui.output_ui("page_ui")
50
+ )
 
 
 
 
 
 
51
 
52
+ def server(input, output, session):
53
+ # def show_effect_trees_on_temp():
54
+ value = 40
55
+ name = f'treatment_effect_{value}%'
56
+ gdf = gpd.GeoDataFrame(treatment_df, geometry=gpd.points_from_xy(treatment_df.x, treatment_df.y))
57
+
58
+ @output
59
+ @render.ui
60
+ def page_ui():
61
+ if input.tab_choice() == "Effect of trees on temperature":
62
+ return ui.div(
63
+ ui.h2("Temperature Simulation Viewer", class_="text-center"),
64
+ ui.div(ui.output_plot("temp_after_treatment"), style="display: flex; justify-content: center;"),
65
+ ui.div(ui.output_plot("treatment_trees_effect"), style="display: flex; justify-content: center;"),
66
+ )
67
+ else: #Effect of temperature on trees
68
+ return ui.div(
69
+ ui.h2("Tree Simulation Viewer", class_="text-center"),
70
+ ui.div(ui.output_plot("temp_after_treatment"), style="display: flex; justify-content: center;"),
71
+ )
72
 
73
+ @output
74
+ @render.plot()
75
+ def temp_after_treatment():
76
+ try:
77
+ fig = show_two_plots(gdf, f'simulated_temp_{value}%', 'LST',
78
+ gdf['LST'].min() + treatment_df[name].min(),
79
+ gdf['LST'].max(), 'coolwarm',
80
+ f"Temperature after treatment (+{value}% Trees)",
81
+ "Original temperature",
82
+ 'Temperature (°C)')
83
+ return fig
84
+ except Exception as e:
85
+ print("Plotting error:", e)
86
+ raise e
87
 
 
 
 
88
 
89
+ @output
90
+ @render.plot()
91
+ def treatment_trees_effect():
92
+ fig = show_one_plot(gdf, name, gdf[name].min(),
93
+ gdf[name].max(), 'PuBu_r',
94
+ f"Decrease of temperature from treatment (+{value}% Trees)",
95
+ "Temperature decrease (°C)")
96
+ return fig
97
+
98
 
99
+ app = App(app_ui, server)
 
 
 
 
 
cleaned_dataframe.csv ADDED
The diff for this file is too large to render. See raw diff
 
data_utils.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import numpy as np
3
+
4
+ def make_XYT(df, treatment_col = '%CoberturaVeg', target_col = 'LST'):
5
+
6
+ Y = df[target_col].values
7
+
8
+ T = df[treatment_col].values
9
+
10
+ X = df.drop(columns=[treatment_col, target_col]).values
11
+
12
+
13
+ return X, Y, T
14
+
15
+ def prepare_data(og_file, training_file):
16
+ original_df = pd.read_csv(og_file, index_col=0)
17
+ df = pd.read_csv(training_file, index_col=0)
18
+
19
+ original_df = original_df.round(2)
20
+
21
+ df = df.drop(columns=['row','column','x','y'])
22
+ df = df.astype(np.float32)
23
+
24
+ X, Y, T = make_XYT(df)
25
+
26
+ return original_df, df, X, Y, T
27
+
example.csv ADDED
@@ -0,0 +1,905 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,index,row,column,x,y,%CoberturaVeg,%Construccion,LST,treatment_effect_40%,simulated_temp_40%
2
+ 0,001-011,-1,11,769975.0,1617705.0,39.79,6.48,26.47,-0.32515067713514373,26.144848636219347
3
+ 1,001-012,-1,12,770075.0,1617705.0,66.87,2.76,25.81,-0.41067832493447815,25.399321141007906
4
+ 2,002-009,-2,9,769775.0,1617605.0,83.07,0.0,24.59,-0.6455815152860538,23.944418637301837
5
+ 3,002-010,-2,10,769875.0,1617605.0,91.83,3.9,25.19,-0.6014911170650271,24.58850941699259
6
+ 4,002-011,-2,11,769975.0,1617605.0,59.28,12.49,25.44,-0.4072409655606871,25.03275956849693
7
+ 5,002-012,-2,12,770075.0,1617605.0,40.68,2.65,25.12,-0.19604586664854182,24.923954972584855
8
+ 6,003-008,-3,8,769675.0,1617505.0,90.66,0.4,24.28,-0.7201678134308388,23.55983287321467
9
+ 7,003-009,-3,9,769775.0,1617505.0,74.5,19.93,25.49,-0.6659613022380322,24.824038468880133
10
+ 8,003-010,-3,10,769875.0,1617505.0,47.63,41.9,26.69,-0.46249938448152367,26.227501149576092
11
+ 9,003-011,-3,11,769975.0,1617505.0,38.65,28.26,25.86,-0.2811549087253826,25.57884570162618
12
+ 10,003-012,-3,12,770075.0,1617505.0,72.46,2.0,24.45,-0.17477362712041525,24.275227135819037
13
+ 11,004-006,-4,6,769475.0,1617405.0,92.47,0.0,24.31,-0.7283280662424448,23.58167139969994
14
+ 12,004-007,-4,7,769575.0,1617405.0,81.96,1.81,24.35,-0.6564482598193513,23.693552121650374
15
+ 13,004-008,-4,8,769675.0,1617405.0,67.13,26.17,25.7,-0.6031199658049176,25.096880797134535
16
+ 14,004-009,-4,9,769775.0,1617405.0,25.98,65.87,27.88,-0.23752548406819915,27.6424736766984
17
+ 15,004-010,-4,10,769875.0,1617405.0,27.46,57.47,27.82,-0.2423992694697578,27.57760042535446
18
+ 16,004-011,-4,11,769975.0,1617405.0,64.78,7.64,25.44,-0.15135201920344465,25.288648514854174
19
+ 17,005-005,-5,5,769375.0,1617305.0,90.41,1.11,24.74,-0.8698659377915114,23.87013383332665
20
+ 18,005-006,-5,6,769475.0,1617305.0,84.07,17.6,25.29,-0.832100709123593,24.45790020640375
21
+ 19,005-007,-5,7,769575.0,1617305.0,61.16,34.98,26.4,-0.661646718069752,25.738352900460523
22
+ 20,005-008,-5,8,769675.0,1617305.0,27.22,60.29,28.07,-0.3167402609906383,27.75325943383358
23
+ 21,005-009,-5,9,769775.0,1617305.0,35.18,62.98,28.21,-0.30430789539403724,27.90569118907862
24
+ 22,005-010,-5,10,769875.0,1617305.0,75.81,13.07,26.26,-0.17161948106528022,26.088380747816554
25
+ 23,006-004,-6,4,769275.0,1617205.0,70.96,17.43,24.72,-0.5986015595068687,24.121397753847624
26
+ 24,006-005,-6,5,769375.0,1617205.0,64.46,32.38,25.44,-0.6964854281641212,24.743515105893497
27
+ 25,006-006,-6,6,769475.0,1617205.0,16.27,73.72,27.79,-0.2054096623474227,27.58459125317992
28
+ 26,006-007,-6,7,769575.0,1617205.0,15.76,62.06,28.88,-0.2171924992102294,28.662806661556374
29
+ 27,006-008,-6,8,769675.0,1617205.0,17.47,64.96,28.6,-0.16448937030370953,28.435511011166017
30
+ 28,006-009,-6,9,769775.0,1617205.0,72.3,26.38,26.8,-0.08709368983153515,26.712905547229013
31
+ 29,007-003,-7,3,769175.0,1617105.0,78.26,18.31,25.1,-0.641157485362522,24.458842896107203
32
+ 30,007-004,-7,4,769275.0,1617105.0,78.56,16.03,25.15,-0.8285276214954658,24.32147199703481
33
+ 31,007-005,-7,5,769375.0,1617105.0,80.23,18.97,25.93,-0.9696153516025227,24.960384953573257
34
+ 32,007-006,-7,6,769475.0,1617105.0,23.22,59.62,28.13,-0.306208111544846,27.823791049221757
35
+ 33,007-007,-7,7,769575.0,1617105.0,21.28,65.6,29.12,-0.28205926794209074,28.837941571291307
36
+ 34,007-008,-7,8,769675.0,1617105.0,33.26,52.71,27.83,-0.33141381252434116,27.498586111181712
37
+ 35,007-009,-7,9,769775.0,1617105.0,52.47,19.97,25.72,-0.06320616831085761,25.656793145043636
38
+ 36,008-002,-8,2,769075.0,1617005.0,76.76,0.69,24.38,-0.6295469121023475,23.750452248664253
39
+ 37,008-003,-8,3,769175.0,1617005.0,53.75,40.35,26.16,-0.5089664126234488,25.651033434788662
40
+ 38,008-004,-8,4,769275.0,1617005.0,22.44,65.98,27.58,-0.23116828854932805,27.348831635156728
41
+ 39,008-005,-8,5,769375.0,1617005.0,65.87,24.61,27.17,-0.8073897421314454,26.3626103341625
42
+ 40,008-006,-8,6,769475.0,1617005.0,19.93,63.61,28.47,-0.2621824067227251,28.207816906631766
43
+ 41,008-007,-8,7,769575.0,1617005.0,20.17,68.78,29.42,-0.2634368782024462,29.1565631980915
44
+ 42,008-008,-8,8,769675.0,1617005.0,34.95,56.2,27.57,-0.34254495308009236,27.227454741744125
45
+ 43,008-009,-8,9,769775.0,1617005.0,77.14,5.79,25.21,-0.11380235321060535,25.09619673126205
46
+ 44,009-002,-9,2,769075.0,1616905.0,64.08,19.45,25.32,-0.5399298828233653,24.780069812000853
47
+ 45,009-003,-9,3,769175.0,1616905.0,18.15,75.98,28.6,-0.1764246960286892,28.423575685441037
48
+ 46,009-004,-9,4,769275.0,1616905.0,14.12,72.05,29.68,-0.15292950772426464,29.52707079745152
49
+ 47,009-005,-9,5,769375.0,1616905.0,30.83,57.28,28.89,-0.3651494416093813,28.524849948039055
50
+ 48,009-006,-9,6,769475.0,1616905.0,16.03,72.71,29.25,-0.18776496521779934,29.0622350347822
51
+ 49,009-007,-9,7,769575.0,1616905.0,18.79,70.49,29.32,-0.21830715164679174,29.10169254317743
52
+ 50,009-008,-9,8,769675.0,1616905.0,77.44,15.96,26.57,-0.5564757313899716,26.013523963434245
53
+ 51,009-009,-9,9,769775.0,1616905.0,86.24,0.0,24.36,-0.09047016484501874,24.269530445506543
54
+ 52,010-001,-10,1,768975.0,1616805.0,77.62,1.61,24.6,-0.6777334398296334,23.922266941640093
55
+ 53,010-002,-10,2,769075.0,1616805.0,19.59,70.65,27.18,-0.18760296963467146,26.99239733554111
56
+ 54,010-004,-10,4,769275.0,1616805.0,8.52,75.27,30.48,-0.08296799854008659,30.39703154369624
57
+ 55,010-005,-10,5,769375.0,1616805.0,23.82,49.62,29.94,-0.2577188090976691,29.68228172495995
58
+ 56,010-006,-10,6,769475.0,1616805.0,12.55,76.47,29.74,-0.12293411968694641,29.61706565143122
59
+ 57,010-007,-10,7,769575.0,1616805.0,9.2,72.75,29.6,-0.09738672930984973,29.502613652159877
60
+ 58,010-008,-10,8,769675.0,1616805.0,49.22,37.0,27.03,-0.3654807411017202,26.664519945543788
61
+ 59,010-009,-10,9,769775.0,1616805.0,74.04,0.0,24.27,-0.13617734447693924,24.133823113286734
62
+ 60,011-000,-11,0,768875.0,1616705.0,61.0,0.27,25.38,-0.5402913837848813,24.83970777698172
63
+ 61,011-001,-11,1,768975.0,1616705.0,77.12,2.98,25.15,-0.6786892083002534,24.47131041023002
64
+ 62,011-002,-11,2,769075.0,1616705.0,30.14,61.74,27.26,-0.28973826974155914,26.970261959140277
65
+ 63,011-003,-11,3,769175.0,1616705.0,16.3,67.68,29.77,-0.1420526796578833,29.62794777810579
66
+ 64,011-004,-11,4,769275.0,1616705.0,5.52,80.69,30.59,-0.0559825329063668,30.534017619681524
67
+ 65,011-005,-11,5,769375.0,1616705.0,6.27,75.55,30.17,-0.07047749887801144,30.099522577415932
68
+ 66,011-006,-11,6,769475.0,1616705.0,5.33,85.41,29.58,-0.04987183648956624,29.53012808721649
69
+ 67,011-007,-11,7,769575.0,1616705.0,10.0,76.54,29.29,-0.10267797955111983,29.187322935976223
70
+ 68,011-008,-11,8,769675.0,1616705.0,52.64,34.17,27.24,-0.38936466150288523,26.85063510961528
71
+ 69,011-009,-11,9,769775.0,1616705.0,69.98,0.0,24.52,-0.13883434533787417,24.3811661124258
72
+ 70,012-000,-12,0,768875.0,1616605.0,88.13,0.0,25.31,-0.740271386605158,24.569728079337224
73
+ 71,012-001,-12,1,768975.0,1616605.0,51.86,2.18,26.25,-0.41411507604279174,25.83588492395721
74
+ 72,012-002,-12,2,769075.0,1616605.0,21.85,57.2,27.91,-0.2136614445438597,27.69633840286825
75
+ 73,012-003,-12,3,769175.0,1616605.0,16.26,69.63,29.65,-0.13606674836286836,29.513932870167405
76
+ 74,012-004,-12,4,769275.0,1616605.0,16.34,73.15,30.35,-0.16495293183052676,30.1850474496392
77
+ 75,012-005,-12,5,769375.0,1616605.0,25.68,29.31,30.37,-0.2906659339442151,30.079334905289183
78
+ 76,012-006,-12,6,769475.0,1616605.0,27.25,53.76,29.43,-0.2719803272614904,29.15801997791429
79
+ 77,012-007,-12,7,769575.0,1616605.0,50.71,25.6,28.57,-0.5109262533735478,28.05907344145067
80
+ 78,012-008,-12,8,769675.0,1616605.0,87.54,0.44,26.81,-0.60527139150444,26.20472807443794
81
+ 79,012-009,-12,9,769775.0,1616605.0,71.77,0.0,24.69,-0.13554084818346168,24.554459685874157
82
+ 80,013-002,-13,2,769075.0,1616505.0,23.89,26.76,27.84,-0.2366914180509128,27.603308734536977
83
+ 81,013-003,-13,3,769175.0,1616505.0,13.15,76.67,29.34,-0.13766074138125992,29.20233941120663
84
+ 82,013-004,-13,4,769275.0,1616505.0,20.0,64.14,30.29,-0.17520588300952708,30.114795032517815
85
+ 83,013-005,-13,5,769375.0,1616505.0,5.98,4.19,31.07,-0.0897703617719707,30.980229333052247
86
+ 84,013-006,-13,6,769475.0,1616505.0,31.72,16.34,29.35,-0.30219071217639276,29.047809669293333
87
+ 85,013-007,-13,7,769575.0,1616505.0,45.0,14.9,28.14,-0.41741730475421013,27.722582084894228
88
+ 86,013-008,-13,8,769675.0,1616505.0,55.43,7.56,26.45,-0.3686864015200539,26.0813143614194
89
+ 87,013-009,-13,9,769775.0,1616505.0,59.38,0.0,24.91,-0.12528659693573993,24.78471325047637
90
+ 88,013-010,-13,10,769875.0,1616505.0,31.25,0.07,24.73,-0.06745019980069478,24.662549342435632
91
+ 89,013-011,-13,11,769975.0,1616505.0,44.02,30.67,25.98,-0.37379383627708906,25.60620570595924
92
+ 90,013-013,-13,13,770175.0,1616505.0,41.7,49.5,27.99,-0.5622925208446331,27.42770725027353
93
+ 91,013-014,-13,14,770275.0,1616505.0,28.34,38.62,29.03,-0.32789298988437277,28.702107696761136
94
+ 92,013-015,-13,15,770375.0,1616505.0,25.47,53.01,29.74,-0.25154399016036844,29.488455780957796
95
+ 93,014-002,-14,2,769075.0,1616405.0,15.59,4.45,27.06,-0.12247188405185129,26.93752758189053
96
+ 94,014-003,-14,3,769175.0,1616405.0,15.66,68.28,28.82,-0.12216659873191275,28.697833096092307
97
+ 95,014-004,-14,4,769275.0,1616405.0,17.32,68.14,29.79,-0.13594258792207495,29.65405832760527
98
+ 96,014-005,-14,5,769375.0,1616405.0,24.89,12.22,30.11,-0.2441700552192244,29.865830555132337
99
+ 97,014-006,-14,6,769475.0,1616405.0,31.63,13.13,28.78,-0.27296355998164357,28.507037126663864
100
+ 98,014-007,-14,7,769575.0,1616405.0,37.72,21.97,27.91,-0.3397370031417793,27.57026284427033
101
+ 99,014-008,-14,8,769675.0,1616405.0,52.59,14.22,26.26,-0.35690792118217596,25.90309230769966
102
+ 100,014-009,-14,9,769775.0,1616405.0,82.22,0.0,25.3,-0.18462923203027923,25.115370005030268
103
+ 101,014-010,-14,10,769875.0,1616405.0,51.39,11.57,25.28,-0.12036169205000848,25.1596389945955
104
+ 102,014-011,-14,11,769975.0,1616405.0,34.59,42.56,26.37,-0.26751666208268554,26.102484177150714
105
+ 103,014-012,-14,12,770075.0,1616405.0,41.3,52.28,27.12,-0.4232374569755012,26.6967633822579
106
+ 104,014-013,-14,13,770175.0,1616405.0,44.86,28.39,27.76,-0.5153818089893175,27.244618419892518
107
+ 105,014-014,-14,14,770275.0,1616405.0,46.67,33.05,28.14,-0.5806990186178603,27.559300371030577
108
+ 106,014-015,-14,15,770375.0,1616405.0,31.89,57.62,28.74,-0.330900614854862,28.409099156263302
109
+ 107,014-016,-14,16,770475.0,1616405.0,40.76,54.54,29.2,-0.35509930348788427,28.84490145945157
110
+ 108,014-017,-14,17,770575.0,1616405.0,37.54,55.63,29.8,-0.2518215125476608,29.548177724512886
111
+ 109,015-003,-15,3,769175.0,1616305.0,13.3,57.23,28.41,-0.11081761678730431,28.299182230624805
112
+ 110,015-004,-15,4,769275.0,1616305.0,18.73,58.35,29.42,-0.14726989002847318,29.272730186265473
113
+ 111,015-005,-15,5,769375.0,1616305.0,18.67,61.73,29.4,-0.1836346726998373,29.216364945830435
114
+ 112,015-006,-15,6,769475.0,1616305.0,27.32,62.46,29.64,-0.24838794784222037,29.391611441806216
115
+ 113,015-007,-15,7,769575.0,1616305.0,56.11,26.36,28.34,-0.6071820648576288,27.732818087730262
116
+ 114,015-008,-15,8,769675.0,1616305.0,84.65,0.2,26.43,-0.4328585985768997,25.99714170659888
117
+ 115,015-009,-15,9,769775.0,1616305.0,88.0,0.0,26.91,-0.08768372908702736,26.822316118325084
118
+ 116,015-010,-15,10,769875.0,1616305.0,29.82,37.7,26.67,-0.018665813981134153,26.65133426231281
119
+ 117,015-011,-15,11,769975.0,1616305.0,65.51,24.98,26.12,-0.494435883883646,25.625564955349752
120
+ 118,015-012,-15,12,770075.0,1616305.0,57.79,16.24,26.91,-0.5771187162834338,26.332881131128676
121
+ 119,015-013,-15,13,770175.0,1616305.0,24.19,18.61,27.71,-0.2688705988895397,27.441128485583118
122
+ 120,015-014,-15,14,770275.0,1616305.0,23.52,53.24,28.14,-0.2572235049282975,27.88277588472014
123
+ 121,015-015,-15,15,770375.0,1616305.0,49.88,47.42,27.97,-0.5389205565108762,27.431078756843615
124
+ 122,015-016,-15,16,770475.0,1616305.0,55.61,39.18,28.71,-0.435417253137163,28.274581831335492
125
+ 123,015-017,-15,17,770575.0,1616305.0,52.7,49.51,29.01,-0.4078968004717516,28.602103428410086
126
+ 124,015-018,-15,18,770675.0,1616305.0,41.2,51.37,29.73,-0.30760136623973083,29.422398175996598
127
+ 125,015-019,-15,19,770775.0,1616305.0,59.93,44.27,30.09,-0.4355873640091438,29.654412788578746
128
+ 126,016-003,-16,3,769175.0,1616205.0,20.37,18.29,27.83,-0.18821850261920034,27.641781421086854
129
+ 127,016-004,-16,4,769275.0,1616205.0,21.23,59.59,29.09,-0.16507166791728795,28.924928484670602
130
+ 128,016-005,-16,5,769375.0,1616205.0,11.31,29.74,29.33,-0.09113609979176406,29.23886382391429
131
+ 129,016-006,-16,6,769475.0,1616205.0,20.27,50.97,29.11,-0.1697363816047535,28.94026422874681
132
+ 130,016-007,-16,7,769575.0,1616205.0,67.74,5.75,27.32,-0.7615677895466866,26.558431905277534
133
+ 131,016-008,-16,8,769675.0,1616205.0,67.33,14.03,26.31,-0.4397537544107776,25.870245711531606
134
+ 132,016-009,-16,9,769775.0,1616205.0,86.11,9.53,27.2,-0.0663709677210392,27.133629795218415
135
+ 133,016-010,-16,10,769875.0,1616205.0,18.96,48.24,26.96,-0.03798408358559179,26.922015000887065
136
+ 134,016-011,-16,11,769975.0,1616205.0,46.8,45.56,26.35,-0.22419394394985956,26.125806437519866
137
+ 135,016-012,-16,12,770075.0,1616205.0,70.68,23.67,26.7,-0.6494723158378001,26.05052844710165
138
+ 136,016-013,-16,13,770175.0,1616205.0,39.65,52.35,28.13,-0.4391054319949158,27.690893728771687
139
+ 137,016-014,-16,14,770275.0,1616205.0,18.7,36.85,28.4,-0.20435762397283447,28.195641994557437
140
+ 138,016-015,-16,15,770375.0,1616205.0,65.08,26.73,27.85,-0.8180174738536571,27.03198290761607
141
+ 139,016-016,-16,16,770475.0,1616205.0,38.0,11.45,28.61,-0.443832633461032,28.16616797689053
142
+ 140,016-017,-16,17,770575.0,1616205.0,44.96,54.62,28.78,-0.35559528729737805,28.424405399348128
143
+ 141,016-018,-16,18,770675.0,1616205.0,30.69,59.21,29.03,-0.2624546706143979,28.76754601603111
144
+ 142,017-002,-17,2,769075.0,1616105.0,61.6,0.0,25.37,-0.5454224434625127,24.824578395770885
145
+ 143,017-003,-17,3,769175.0,1616105.0,60.56,7.1,26.99,-0.5950644444339892,26.394935326684173
146
+ 144,017-004,-17,4,769275.0,1616105.0,13.23,58.63,28.67,-0.10770447203911354,28.56229560425483
147
+ 145,017-005,-17,5,769375.0,1616105.0,8.2,81.19,29.08,-0.07003720389340938,29.009962719812645
148
+ 146,017-006,-17,6,769475.0,1616105.0,32.61,63.2,27.98,-0.33970275342885553,27.640296788807472
149
+ 147,017-007,-17,7,769575.0,1616105.0,72.6,13.55,26.58,-0.7481459352993243,25.83185398840673
150
+ 148,017-008,-17,8,769675.0,1616105.0,21.92,63.19,27.02,-0.1851621196189036,26.834838338144767
151
+ 149,017-009,-17,9,769775.0,1616105.0,36.19,38.71,27.18,-0.08520092028502353,27.09479938489076
152
+ 150,017-010,-17,10,769875.0,1616105.0,40.88,9.63,26.59,-0.03715291092919786,26.552847241658693
153
+ 151,017-011,-17,11,769975.0,1616105.0,36.77,36.36,26.42,-0.02301616791932866,26.396983908374615
154
+ 152,017-012,-17,12,770075.0,1616105.0,64.95,25.01,26.29,-0.5314598234161881,25.758541092111155
155
+ 153,017-013,-17,13,770175.0,1616105.0,60.44,17.57,27.39,-0.693179424083975,26.696819965564462
156
+ 154,017-014,-17,14,770275.0,1616105.0,47.38,12.97,28.02,-0.5286789212459398,27.49132153651773
157
+ 155,017-015,-17,15,770375.0,1616105.0,20.35,63.88,28.15,-0.23843317148558507,27.911566447044688
158
+ 156,017-016,-17,16,770475.0,1616105.0,32.17,72.46,28.23,-0.3862586860891688,27.84374085614716
159
+ 157,017-017,-17,17,770575.0,1616105.0,46.7,36.34,28.15,-0.40296650531841977,27.747033113211852
160
+ 158,017-018,-17,18,770675.0,1616105.0,33.97,54.42,28.03,-0.2259464839941621,27.804054202651347
161
+ 159,018-002,-18,2,769075.0,1616005.0,69.32,18.72,25.51,-0.6922004371853651,24.81779979169647
162
+ 160,018-003,-18,3,769175.0,1616005.0,35.41,27.33,27.73,-0.33869240099537185,27.391307141240958
163
+ 161,018-004,-18,4,769275.0,1616005.0,39.1,20.0,28.94,-0.3007742858196632,28.639226248237954
164
+ 162,018-005,-18,5,769375.0,1616005.0,26.66,60.73,29.5,-0.18702898091328504,29.312971019086714
165
+ 163,018-006,-18,6,769475.0,1616005.0,42.43,41.0,29.24,-0.4242991170573735,28.81570065406079
166
+ 164,018-007,-18,7,769575.0,1616005.0,34.55,53.26,28.6,-0.4434881313756926,28.156512250094035
167
+ 165,018-008,-18,8,769675.0,1616005.0,20.55,67.05,28.24,-0.214954209822515,28.02504556129565
168
+ 166,018-009,-18,9,769775.0,1616005.0,51.33,5.98,26.84,-0.324043520504843,26.515956632083046
169
+ 167,018-010,-18,10,769875.0,1616005.0,28.36,7.95,26.18,-0.025945899358173995,26.154054405817607
170
+ 168,018-011,-18,11,769975.0,1616005.0,55.61,2.57,26.18,-0.06275994588657773,26.117240359289205
171
+ 169,018-012,-18,12,770075.0,1616005.0,27.19,27.6,27.17,-0.1763038923808863,26.99369618391306
172
+ 170,018-013,-18,13,770175.0,1616005.0,41.75,11.51,27.72,-0.4598872302176136,27.260112083136878
173
+ 171,018-014,-18,14,770275.0,1616005.0,36.07,39.28,28.32,-0.40255432447489153,27.917445370349327
174
+ 172,018-015,-18,15,770375.0,1616005.0,35.9,49.62,28.7,-0.42342674059792573,28.276574022341528
175
+ 173,018-016,-18,16,770475.0,1616005.0,42.02,33.49,28.25,-0.4132363514641153,27.836763648535886
176
+ 174,018-017,-18,17,770575.0,1616005.0,30.48,63.61,28.35,-0.2349600563007495,28.115040325168977
177
+ 175,018-018,-18,18,770675.0,1616005.0,29.42,64.89,28.5,-0.1954358910664402,28.30456410893356
178
+ 176,019-002,-19,2,769075.0,1615905.0,55.22,23.78,26.22,-0.5555604491942233,25.664438864160267
179
+ 177,019-003,-19,3,769175.0,1615905.0,13.59,78.01,28.28,-0.11878020740859918,28.16122047923691
180
+ 178,019-004,-19,4,769275.0,1615905.0,45.13,24.32,28.62,-0.3694676321166026,28.250533207116796
181
+ 179,019-005,-19,5,769375.0,1615905.0,15.87,60.77,29.72,-0.16362975255008425,29.55636956080441
182
+ 180,019-006,-19,6,769475.0,1615905.0,15.17,22.24,31.53,-0.13319475546243795,31.39680593118307
183
+ 181,019-007,-19,7,769575.0,1615905.0,24.84,57.43,30.09,-0.19871119329442674,29.891288959293465
184
+ 182,019-008,-19,8,769675.0,1615905.0,46.9,36.21,27.95,-0.4501426069282521,27.4998581560112
185
+ 183,019-009,-19,9,769775.0,1615905.0,55.07,5.85,26.03,-0.37462246107061575,25.655378225574893
186
+ 184,019-010,-19,10,769875.0,1615905.0,29.97,53.8,26.49,-0.10466137664677913,26.385338394471386
187
+ 185,019-011,-19,11,769975.0,1615905.0,22.85,8.24,26.06,-0.044673530528745536,26.01532593541364
188
+ 186,019-012,-19,12,770075.0,1615905.0,13.27,4.6,27.1,-0.020328605750699915,27.079671775719028
189
+ 187,019-013,-19,13,770175.0,1615905.0,27.82,35.78,27.55,-0.25672702484103344,27.293272212219513
190
+ 188,019-014,-19,14,770275.0,1615905.0,31.27,56.63,28.44,-0.32776966199373025,28.112230872063886
191
+ 189,019-015,-19,15,770375.0,1615905.0,21.38,59.19,28.73,-0.17368536783184466,28.556314174404484
192
+ 190,019-016,-19,16,770475.0,1615905.0,35.47,40.66,28.13,-0.355680252720507,27.774318908046094
193
+ 191,019-017,-19,17,770575.0,1615905.0,26.81,57.32,28.57,-0.21548100938464093,28.35451868543958
194
+ 192,019-018,-19,18,770675.0,1615905.0,41.11,57.23,28.98,-0.3260834143367707,28.653916127899556
195
+ 193,019-019,-19,19,770775.0,1615905.0,32.46,69.26,29.44,-0.23485148602943,29.205149048028186
196
+ 194,020-002,-20,2,769075.0,1615805.0,55.35,25.65,26.49,-0.47696514294027653,26.013034628177888
197
+ 195,020-003,-20,3,769175.0,1615805.0,31.14,49.25,27.52,-0.27130271665211303,27.24869774111156
198
+ 196,020-004,-20,4,769275.0,1615805.0,24.41,49.11,28.43,-0.22248942874269023,28.20751087643309
199
+ 197,020-005,-20,5,769375.0,1615805.0,35.36,9.47,28.41,-0.35502270076404396,28.054977146648067
200
+ 198,020-006,-20,6,769475.0,1615805.0,22.24,18.06,29.81,-0.18274534546385332,29.62725412047853
201
+ 199,020-007,-20,7,769575.0,1615805.0,5.88,25.33,30.28,-0.07011857717370515,30.209882109471803
202
+ 200,020-008,-20,8,769675.0,1615805.0,49.53,26.1,28.38,-0.4471081624368832,27.932890998329718
203
+ 201,020-009,-20,9,769775.0,1615805.0,53.06,3.94,26.73,-0.45642770238486613,26.273571839851463
204
+ 202,020-010,-20,10,769875.0,1615805.0,20.12,63.37,27.61,-0.1741829231522766,27.435817687199286
205
+ 203,020-011,-20,11,769975.0,1615805.0,22.59,22.41,26.49,-0.08053148858397512,26.40946828253419
206
+ 204,020-012,-20,12,770075.0,1615805.0,29.27,9.03,25.9,-0.049903173010058914,25.850096445520215
207
+ 205,020-013,-20,13,770175.0,1615805.0,42.13,27.24,26.29,-0.14802289901989857,26.141978016507444
208
+ 206,020-014,-20,14,770275.0,1615805.0,37.98,45.98,27.05,-0.34915472680707804,26.700844510253468
209
+ 207,020-015,-20,15,770375.0,1615805.0,42.63,46.19,27.05,-0.424333940410979,26.62566529664957
210
+ 208,020-016,-20,16,770475.0,1615805.0,79.45,12.57,25.99,-0.9063941922531527,25.08360557886501
211
+ 209,020-017,-20,17,770575.0,1615805.0,26.94,70.89,27.67,-0.25402703428142953,27.415973042012517
212
+ 210,020-018,-20,18,770675.0,1615805.0,33.54,63.88,28.42,-0.29058922187377806,28.12941085442017
213
+ 211,020-019,-20,19,770775.0,1615805.0,35.7,60.81,28.75,-0.3908668030692564,28.359133196930742
214
+ 212,021-003,-21,3,769175.0,1615705.0,45.17,9.22,27.09,-0.4602643756535665,26.629735776934325
215
+ 213,021-004,-21,4,769275.0,1615705.0,21.58,46.11,27.63,-0.18599270644180552,27.444006454324796
216
+ 214,021-005,-21,5,769375.0,1615705.0,60.7,7.57,27.45,-0.6969299886918544,26.7530707742476
217
+ 215,021-006,-21,6,769475.0,1615705.0,25.87,32.03,27.62,-0.21191730015785476,27.408083539075545
218
+ 216,021-007,-21,7,769575.0,1615705.0,43.78,42.2,28.76,-0.3895158827518644,28.37048434612997
219
+ 217,021-008,-21,8,769675.0,1615705.0,50.05,37.73,28.47,-0.4018475138056684,28.068151799548822
220
+ 218,021-009,-21,9,769775.0,1615705.0,34.42,22.97,27.56,-0.34583766751551,27.214161798426872
221
+ 219,021-010,-21,10,769875.0,1615705.0,33.86,39.38,27.34,-0.29536281908650164,27.044637333501388
222
+ 220,021-011,-21,11,769975.0,1615705.0,36.28,15.22,26.76,-0.22300566490917842,26.53699456397266
223
+ 221,021-012,-21,12,770075.0,1615705.0,40.33,2.0,25.26,-0.11307493891574809,25.146925289966088
224
+ 222,021-013,-21,13,770175.0,1615705.0,40.66,12.35,25.45,-0.11724693473800685,25.332753828201447
225
+ 223,021-014,-21,14,770275.0,1615705.0,88.38,1.68,25.68,-0.3068118225443463,25.373188482631434
226
+ 224,021-015,-21,15,770375.0,1615705.0,88.19,0.27,24.93,-0.5323820285107892,24.397618276664993
227
+ 225,021-016,-21,16,770475.0,1615705.0,71.63,17.4,25.19,-0.6066059672380476,24.58339456681957
228
+ 226,021-017,-21,17,770575.0,1615705.0,28.58,67.06,27.3,-0.3122190072636833,26.987780229796865
229
+ 227,021-018,-21,18,770675.0,1615705.0,35.18,56.35,27.99,-0.32862439678180344,27.66137537433636
230
+ 228,021-019,-21,19,770775.0,1615705.0,27.65,61.77,28.43,-0.39872726913452056,28.03127303604126
231
+ 229,022-003,-22,3,769175.0,1615605.0,63.97,2.05,26.29,-0.519677441991056,25.770323473536287
232
+ 230,022-004,-22,4,769275.0,1615605.0,50.75,12.7,26.65,-0.576637955474174,26.0733616630561
233
+ 231,022-005,-22,5,769375.0,1615605.0,41.53,29.49,27.37,-0.45634642741066667,26.913654411822733
234
+ 232,022-006,-22,6,769475.0,1615605.0,47.67,13.77,27.65,-0.5261471122240475,27.123852506306225
235
+ 233,022-007,-22,7,769575.0,1615605.0,23.44,23.48,29.19,-0.2815886303877618,28.908411903669855
236
+ 234,022-008,-22,8,769675.0,1615605.0,36.87,36.96,28.71,-0.43055880329913093,28.279440281173525
237
+ 235,022-009,-22,9,769775.0,1615605.0,43.75,10.37,26.81,-0.5739371787761289,26.236062287166256
238
+ 236,022-010,-22,10,769875.0,1615605.0,21.02,49.21,27.35,-0.2119810422476424,27.138019339222083
239
+ 237,022-011,-22,11,769975.0,1615605.0,19.44,63.11,28.51,-0.19806519312792203,28.311935035753915
240
+ 238,022-012,-22,12,770075.0,1615605.0,36.85,46.44,27.13,-0.3500940363910229,26.779905124375578
241
+ 239,022-013,-22,13,770175.0,1615605.0,43.36,0.24,25.4,-0.1416910970494366,25.25830852148084
242
+ 240,022-014,-22,14,770275.0,1615605.0,45.16,10.16,24.82,-0.23430548332064158,24.585694211503576
243
+ 241,022-015,-22,15,770375.0,1615605.0,74.75,0.0,24.12,-0.24916692083866984,23.87083391839473
244
+ 242,022-016,-22,16,770475.0,1615605.0,84.45,2.89,24.39,-0.6391320859189369,23.7508673037295
245
+ 243,022-017,-22,17,770575.0,1615605.0,68.2,13.26,25.19,-0.5399130492114311,24.650087484846186
246
+ 244,022-018,-22,18,770675.0,1615605.0,81.94,10.77,25.56,-0.6554214583263168,24.904578007616067
247
+ 245,022-019,-22,19,770775.0,1615605.0,59.87,24.35,26.4,-0.8185179998671103,25.58148161866316
248
+ 246,023-004,-23,4,769275.0,1615505.0,88.4,7.73,25.98,-0.8062596876215536,25.173739854614773
249
+ 247,023-005,-23,5,769375.0,1615505.0,20.68,56.72,27.68,-0.1989743743169079,27.481025930858873
250
+ 248,023-006,-23,6,769475.0,1615505.0,27.66,46.06,28.68,-0.21746483354348925,28.462535471632293
251
+ 249,023-007,-23,7,769575.0,1615505.0,19.42,19.51,29.97,-0.16191585521554416,29.80808345813895
252
+ 250,023-008,-23,8,769675.0,1615505.0,18.35,36.0,29.47,-0.21977624366594317,29.25022306968855
253
+ 251,023-009,-23,9,769775.0,1615505.0,37.88,6.31,27.28,-0.4565349599712866,26.823465726674222
254
+ 252,023-010,-23,10,769875.0,1615505.0,18.0,62.29,28.3,-0.16499452466939635,28.13500471239115
255
+ 253,023-011,-23,11,769975.0,1615505.0,9.83,66.61,29.72,-0.11626621399074143,29.60373309936375
256
+ 254,023-012,-23,12,770075.0,1615505.0,17.44,67.11,28.59,-0.19070963435465588,28.399290518233236
257
+ 255,023-013,-23,13,770175.0,1615505.0,31.44,25.06,26.82,-0.3109401449049011,26.509059549919318
258
+ 256,023-014,-23,14,770275.0,1615505.0,41.44,39.99,26.01,-0.22823797765763576,25.7817622512242
259
+ 257,023-015,-23,15,770375.0,1615505.0,84.59,10.17,24.61,-0.4259264471051821,24.18407416324638
260
+ 258,023-016,-23,16,770475.0,1615505.0,98.56,0.0,23.57,-0.47517107465792546,23.094828620166293
261
+ 259,023-017,-23,17,770575.0,1615505.0,96.48,0.01,23.53,-0.7392648629820415,22.790735823663468
262
+ 260,023-018,-23,18,770675.0,1615505.0,73.84,0.01,23.98,-0.5930716708790809,23.386927871357248
263
+ 261,023-019,-23,19,770775.0,1615505.0,63.84,19.34,25.81,-0.7932579575918283,25.016741508350556
264
+ 262,024-004,-24,4,769275.0,1615405.0,94.66,3.11,25.51,-0.895380672245265,24.614619556636573
265
+ 263,024-005,-24,5,769375.0,1615405.0,31.79,49.62,27.05,-0.3007271510835642,26.749272085976983
266
+ 264,024-006,-24,6,769475.0,1615405.0,13.06,62.85,28.81,-0.1023158116084944,28.707683654333888
267
+ 265,024-007,-24,7,769575.0,1615405.0,24.24,19.7,29.65,-0.20458535618721374,29.44541426234306
268
+ 266,024-008,-24,8,769675.0,1615405.0,19.68,31.18,29.12,-0.17268598985309766,28.9473148493803
269
+ 267,024-009,-24,9,769775.0,1615405.0,20.53,20.73,28.25,-0.1795475547795987,28.0704524452204
270
+ 268,024-010,-24,10,769875.0,1615405.0,16.04,62.36,28.86,-0.13928005300343616,28.720720557348127
271
+ 269,024-011,-24,11,769975.0,1615405.0,17.01,64.56,29.66,-0.14350584981556713,29.51649399759654
272
+ 270,024-012,-24,12,770075.0,1615405.0,28.59,58.15,29.38,-0.29056901034120164,29.0894301504254
273
+ 271,024-013,-24,13,770175.0,1615405.0,24.01,50.93,28.41,-0.29280069793678865,28.117199149475322
274
+ 272,024-014,-24,14,770275.0,1615405.0,20.44,64.49,27.89,-0.2101962434252728,27.679803146223165
275
+ 273,024-015,-24,15,770375.0,1615405.0,63.3,20.18,25.57,-0.2805574463927565,25.289442248431463
276
+ 274,024-016,-24,16,770475.0,1615405.0,77.28,0.03,23.57,-0.39747135535726025,23.172528339466957
277
+ 275,024-017,-24,17,770575.0,1615405.0,82.94,12.26,24.02,-0.7304588658827763,23.289541591880894
278
+ 276,024-018,-24,18,770675.0,1615405.0,67.72,0.3,24.65,-0.7320365334634686,23.917963085066805
279
+ 277,024-019,-24,19,770775.0,1615405.0,37.99,58.77,27.07,-0.4648395966134598,26.60516009821076
280
+ 278,025-004,-25,4,769275.0,1615305.0,85.27,13.01,25.45,-0.9095705553623621,24.540430207577092
281
+ 279,025-005,-25,5,769375.0,1615305.0,18.57,59.2,27.45,-0.17845750747884181,27.27154325546061
282
+ 280,025-006,-25,6,769475.0,1615305.0,17.38,50.19,29.52,-0.1341260946633122,29.38587436310036
283
+ 281,025-007,-25,7,769575.0,1615305.0,13.84,64.96,29.94,-0.11301148652391783,29.8269890475337
284
+ 282,025-008,-25,8,769675.0,1615305.0,37.34,12.45,28.73,-0.27115907010860674,28.458840472127722
285
+ 283,025-009,-25,9,769775.0,1615305.0,9.74,19.61,28.27,-0.08555304177211227,28.18444741599156
286
+ 284,025-010,-25,10,769875.0,1615305.0,12.71,48.14,28.93,-0.09923590751613358,28.830764397659646
287
+ 285,025-011,-25,11,769975.0,1615305.0,22.15,62.84,29.49,-0.21082915966549032,29.279170611452674
288
+ 286,025-012,-25,12,770075.0,1615305.0,32.8,64.3,29.36,-0.3671474962104802,28.99285311414108
289
+ 287,025-013,-25,13,770175.0,1615305.0,19.84,73.57,28.56,-0.24215721021124123,28.31784225573114
290
+ 288,025-014,-25,14,770275.0,1615305.0,23.16,64.15,28.17,-0.24971788326659433,27.92028219302735
291
+ 289,025-015,-25,15,770375.0,1615305.0,33.83,33.34,25.95,-0.1709370084474957,25.779063754491958
292
+ 290,025-016,-25,16,770475.0,1615305.0,47.42,0.06,23.87,-0.24133210960741666,23.628668729625982
293
+ 291,025-017,-25,17,770575.0,1615305.0,46.45,48.45,25.24,-0.3182078881526897,24.921791882965476
294
+ 292,025-018,-25,18,770675.0,1615305.0,27.92,22.49,26.29,-0.3209581979544003,25.969042717572943
295
+ 293,025-019,-25,19,770775.0,1615305.0,23.68,60.51,27.28,-0.31918984507988407,26.960810841565625
296
+ 294,026-004,-26,4,769275.0,1615205.0,92.82,2.2,25.47,-0.8673227466731842,24.602676566681307
297
+ 295,026-005,-26,5,769375.0,1615205.0,34.37,51.97,27.67,-0.3569297997633645,27.31307027653058
298
+ 296,026-006,-26,6,769475.0,1615205.0,24.8,55.77,29.31,-0.22373005441121543,29.086269411531166
299
+ 297,026-007,-26,7,769575.0,1615205.0,29.57,55.29,29.13,-0.27746439997773814,28.852534760788863
300
+ 298,026-008,-26,8,769675.0,1615205.0,25.24,52.79,29.11,-0.19914863491746215,28.9108519754341
301
+ 299,026-009,-26,9,769775.0,1615205.0,23.67,21.91,28.46,-0.20539545150771976,28.254603632964937
302
+ 300,026-010,-26,10,769875.0,1615205.0,41.66,20.25,28.39,-0.3666191911374553,28.02338019851098
303
+ 301,026-011,-26,11,769975.0,1615205.0,20.79,59.06,29.1,-0.23414871584731278,28.865851665622415
304
+ 302,026-012,-26,12,770075.0,1615205.0,22.64,68.72,29.25,-0.23891883691426538,29.011081163085734
305
+ 303,026-013,-26,13,770175.0,1615205.0,18.6,73.06,28.29,-0.21516488614367058,28.074836029383672
306
+ 304,026-014,-26,14,770275.0,1615205.0,25.99,66.07,27.82,-0.30006369784721404,27.519935996977004
307
+ 305,026-015,-26,15,770375.0,1615205.0,24.81,32.01,26.07,-0.1804849638903828,25.889514730933836
308
+ 306,026-016,-26,16,770475.0,1615205.0,27.94,0.0,23.67,-0.12357847927068526,23.54642159702326
309
+ 307,026-017,-26,17,770575.0,1615205.0,74.93,20.19,24.35,-0.7388570181702012,23.611143363299526
310
+ 308,026-018,-26,18,770675.0,1615205.0,45.23,48.1,25.97,-0.5251753886983256,25.444823924656166
311
+ 309,027-005,-27,5,769375.0,1615105.0,60.25,28.61,26.59,-0.6314266267095943,25.958573525878297
312
+ 310,027-006,-27,6,769475.0,1615105.0,16.95,70.16,28.37,-0.2038220401492324,28.166178799084165
313
+ 311,027-007,-27,7,769575.0,1615105.0,63.84,26.21,28.54,-0.44718684268658265,28.09281407284076
314
+ 312,027-008,-27,8,769675.0,1615105.0,11.74,64.73,29.38,-0.10869303332643997,29.271306127440162
315
+ 313,027-009,-27,9,769775.0,1615105.0,20.52,42.35,29.26,-0.1995451503814072,29.06045507850043
316
+ 314,027-010,-27,10,769875.0,1615105.0,38.66,19.28,28.34,-0.32008798938732214,28.01991216320057
317
+ 315,027-011,-27,11,769975.0,1615105.0,20.55,71.89,28.64,-0.2097078812256191,28.43029150842282
318
+ 316,027-012,-27,12,770075.0,1615105.0,14.86,70.39,29.1,-0.1603229412112239,28.939677440258503
319
+ 317,027-013,-27,13,770175.0,1615105.0,18.73,66.17,28.59,-0.20111733942868754,28.388882813159203
320
+ 318,027-014,-27,14,770275.0,1615105.0,28.0,63.83,27.83,-0.38197695958921074,27.448022964116845
321
+ 319,027-015,-27,15,770375.0,1615105.0,34.26,29.02,25.79,-0.35791159669168554,25.432089318835658
322
+ 320,027-016,-27,16,770475.0,1615105.0,23.88,0.0,23.69,-0.21265459005201826,23.4773459440056
323
+ 321,027-017,-27,17,770575.0,1615105.0,61.96,5.84,23.73,-0.5533390253773642,23.176660516858963
324
+ 322,027-018,-27,18,770675.0,1615105.0,95.22,0.66,24.35,-0.7803537318510451,23.569646649618683
325
+ 323,028-005,-28,5,769375.0,1615005.0,70.87,14.76,26.21,-0.8098168816656902,25.400182202806967
326
+ 324,028-006,-28,6,769475.0,1615005.0,21.75,61.18,28.15,-0.2427563186606172,27.907243299869656
327
+ 325,028-007,-28,7,769575.0,1615005.0,20.13,61.82,29.03,-0.22743225502820436,28.802568431617303
328
+ 326,028-008,-28,8,769675.0,1615005.0,20.45,69.68,29.41,-0.19693008683074437,29.213069760581366
329
+ 327,028-009,-28,9,769775.0,1615005.0,14.02,71.84,29.27,-0.12853456748534547,29.141465890278326
330
+ 328,028-010,-28,10,769875.0,1615005.0,20.18,33.23,28.76,-0.1773516730243134,28.582648555857524
331
+ 329,028-011,-28,11,769975.0,1615005.0,20.54,61.62,28.42,-0.19588949242326245,28.224110583870683
332
+ 330,028-012,-28,12,770075.0,1615005.0,17.44,65.7,28.7,-0.1701211172001826,28.52987964573927
333
+ 331,028-013,-28,13,770175.0,1615005.0,23.5,70.13,28.58,-0.26119883106490766,28.31880109264115
334
+ 332,028-014,-28,14,770275.0,1615005.0,26.12,63.19,28.02,-0.36034498338027166,27.6596554743834
335
+ 333,028-015,-28,15,770375.0,1615005.0,29.31,8.83,25.67,-0.26866891336282067,25.401331162931125
336
+ 334,028-016,-28,16,770475.0,1615005.0,50.63,10.9,24.07,-0.49120144650996644,23.578798248314254
337
+ 335,028-017,-28,17,770575.0,1615005.0,29.34,0.0,23.53,-0.22350103625071607,23.30649965039479
338
+ 336,028-018,-28,18,770675.0,1615005.0,66.19,23.22,24.38,-0.49848357718761876,23.881515583578985
339
+ 337,028-019,-28,19,770775.0,1615005.0,78.9,18.65,24.71,-0.684020289224743,24.025978795247912
340
+ 338,029-006,-29,6,769475.0,1614905.0,77.38,12.4,26.92,-0.826574095167322,26.09342598112662
341
+ 339,029-007,-29,7,769575.0,1614905.0,49.43,39.25,27.77,-0.5989016462931488,27.17109881147052
342
+ 340,029-008,-29,8,769675.0,1614905.0,36.03,50.19,28.66,-0.3053701825235652,28.354629664888545
343
+ 341,029-009,-29,9,769775.0,1614905.0,33.23,54.19,28.13,-0.19288922975204295,27.937109931014557
344
+ 342,029-010,-29,10,769875.0,1614905.0,10.79,76.66,28.57,-0.0825161516170875,28.48748354320713
345
+ 343,029-011,-29,11,769975.0,1614905.0,29.91,21.12,28.53,-0.21817760197879252,28.311823084666717
346
+ 344,029-012,-29,12,770075.0,1614905.0,29.28,76.18,28.28,-0.260480873742896,28.01951981290261
347
+ 345,029-013,-29,13,770175.0,1614905.0,16.25,66.73,28.57,-0.2045017494645568,28.36549794535966
348
+ 346,029-014,-29,14,770275.0,1614905.0,33.34,57.39,28.32,-0.4530862006859981,27.86691349413822
349
+ 347,029-015,-29,15,770375.0,1614905.0,51.12,32.76,26.7,-0.6611393799479609,26.03886138299149
350
+ 348,029-016,-29,16,770475.0,1614905.0,36.94,39.56,25.74,-0.4546550400874554,25.28534473103071
351
+ 349,029-017,-29,17,770575.0,1614905.0,37.34,1.43,24.0,-0.29775592509016896,23.70224407490983
352
+ 350,029-018,-29,18,770675.0,1614905.0,48.06,18.54,24.44,-0.33768749939719195,24.102313034660426
353
+ 351,029-019,-29,19,770775.0,1614905.0,48.65,49.09,24.91,-0.4141953040982818,24.495804543313827
354
+ 352,030-007,-30,7,769575.0,1614805.0,58.17,36.48,27.59,-0.5594979544004969,27.030502198187392
355
+ 353,030-008,-30,8,769675.0,1614805.0,44.72,59.1,28.3,-0.37833896784600485,27.92166026921454
356
+ 354,030-009,-30,9,769775.0,1614805.0,33.72,49.12,28.01,-0.2012336026543648,27.80876662622747
357
+ 355,030-010,-30,10,769875.0,1614805.0,23.55,52.32,28.25,-0.1438403394151784,28.106159660584822
358
+ 356,030-011,-30,11,769975.0,1614805.0,14.12,51.67,28.4,-0.09232395945766664,28.307675659072608
359
+ 357,030-012,-30,12,770075.0,1614805.0,29.78,25.89,27.64,-0.2986243614360775,27.34137502821236
360
+ 358,030-013,-30,13,770175.0,1614805.0,20.22,74.16,27.75,-0.24513112868280185,27.5048688713172
361
+ 359,030-014,-30,14,770275.0,1614805.0,16.12,66.02,27.26,-0.21836419326308476,27.04163603561875
362
+ 360,030-015,-30,15,770375.0,1614805.0,19.97,55.77,27.04,-0.2770109516262988,26.762989963901045
363
+ 361,030-016,-30,16,770475.0,1614805.0,26.45,59.46,27.25,-0.34130413896050044,26.9086958610395
364
+ 362,030-017,-30,17,770575.0,1614805.0,36.09,28.24,25.75,-0.4826792243382392,25.267320775661762
365
+ 363,030-018,-30,18,770675.0,1614805.0,43.17,6.3,24.31,-0.5049595152654653,23.805039950676917
366
+ 364,030-019,-30,19,770775.0,1614805.0,63.54,18.3,24.37,-0.813770422776696,23.556230416456703
367
+ 365,030-020,-30,20,770875.0,1614805.0,82.77,15.85,24.19,-0.7901197988115556,23.39988073524606
368
+ 366,031-007,-31,7,769575.0,1614705.0,48.82,50.42,27.57,-0.45690754278105333,27.113092152043166
369
+ 367,031-008,-31,8,769675.0,1614705.0,51.17,51.03,27.89,-0.47504300014572004,27.414956389502716
370
+ 368,031-009,-31,9,769775.0,1614705.0,39.25,56.47,27.98,-0.30846979005214853,27.67152975218418
371
+ 369,031-010,-31,10,769875.0,1614705.0,27.66,55.18,28.4,-0.2105410798371996,28.189458538693074
372
+ 370,031-011,-31,11,769975.0,1614705.0,14.84,64.41,28.16,-0.11319240722978317,28.046807440182327
373
+ 371,031-012,-31,12,770075.0,1614705.0,18.84,40.36,27.37,-0.19139356482193998,27.17860727441146
374
+ 372,031-013,-31,13,770175.0,1614705.0,53.96,27.19,26.7,-0.6012414087941806,26.098759354145272
375
+ 373,031-014,-31,14,770275.0,1614705.0,31.37,67.34,26.01,-0.3950928115844769,25.61490741729736
376
+ 374,031-015,-31,15,770375.0,1614705.0,37.91,58.58,26.83,-0.405772528691945,26.42422739501411
377
+ 375,031-016,-31,16,770475.0,1614705.0,19.37,64.82,27.7,-0.23926374696956307,27.46073701596989
378
+ 376,031-017,-31,17,770575.0,1614705.0,22.3,58.61,27.31,-0.25206808661895097,27.05793137932343
379
+ 377,031-018,-31,18,770675.0,1614705.0,16.33,16.51,25.58,-0.17400602629585477,25.405993897410198
380
+ 378,031-019,-31,19,770775.0,1614705.0,41.63,40.99,25.33,-0.44675703398097577,24.88324288972508
381
+ 379,031-020,-31,20,770875.0,1614705.0,40.79,45.55,25.5,-0.5300265098828197,24.96997349011718
382
+ 380,032-008,-32,8,769675.0,1614605.0,40.99,53.4,27.08,-0.4458145550063216,26.634185368699733
383
+ 381,032-009,-32,9,769775.0,1614605.0,36.09,62.43,27.98,-0.3341855195045344,27.645814022731795
384
+ 382,032-010,-32,10,769875.0,1614605.0,24.13,69.43,28.7,-0.19474711661854133,28.505253646320913
385
+ 383,032-011,-32,11,769975.0,1614605.0,20.16,58.55,28.59,-0.17019572757190435,28.419804425015986
386
+ 384,032-012,-32,12,770075.0,1614605.0,24.16,56.05,28.31,-0.24737497222587507,28.06262449371651
387
+ 385,032-013,-32,13,770175.0,1614605.0,40.35,29.5,27.28,-0.4893742210446616,26.790626465600845
388
+ 386,032-014,-32,14,770275.0,1614605.0,39.2,58.89,26.11,-0.5150726097866181,25.594928000564945
389
+ 387,032-015,-32,15,770375.0,1614605.0,24.17,54.71,26.94,-0.30244131257709944,26.63755922148052
390
+ 388,032-016,-32,16,770475.0,1614605.0,21.11,72.93,27.99,-0.22907119430866424,27.7609285768095
391
+ 389,032-017,-32,17,770575.0,1614605.0,16.0,64.79,27.9,-0.1568993915491082,27.743100226981166
392
+ 390,032-018,-32,18,770675.0,1614605.0,7.49,9.91,26.76,-0.06818601854085284,26.691814210340983
393
+ 391,032-019,-32,19,770775.0,1614605.0,12.2,60.91,26.79,-0.11810921199816635,26.671891703529177
394
+ 392,032-020,-32,20,770875.0,1614605.0,31.5,61.28,26.82,-0.378357754063338,26.44164194076088
395
+ 393,032-021,-32,21,770975.0,1614605.0,94.45,6.47,25.03,-0.476988821640874,24.553011865004635
396
+ 394,033-008,-33,8,769675.0,1614505.0,63.52,33.04,26.28,-0.7254592721055492,25.55454141453996
397
+ 395,033-009,-33,9,769775.0,1614505.0,19.1,63.14,27.52,-0.19286607760679345,27.327134380156878
398
+ 396,033-010,-33,10,769875.0,1614505.0,37.31,62.7,28.21,-0.31146218379700974,27.898536900675648
399
+ 397,033-011,-33,11,769975.0,1614505.0,37.79,53.62,28.2,-0.3907346714902888,27.809266091449164
400
+ 398,033-012,-33,12,770075.0,1614505.0,23.08,67.45,27.89,-0.21174712075211405,27.678252268896323
401
+ 399,033-013,-33,13,770175.0,1614505.0,17.54,73.11,27.51,-0.16206867721863605,27.3479315516632
402
+ 400,033-014,-33,14,770275.0,1614505.0,42.09,25.58,26.82,-0.4883257368094785,26.33167395801474
403
+ 401,033-015,-33,15,770375.0,1614505.0,23.5,69.72,26.71,-0.27403792325392046,26.435961161218735
404
+ 402,033-016,-33,16,770475.0,1614505.0,19.56,57.54,27.43,-0.1586055431818634,27.271394761993918
405
+ 403,033-017,-33,17,770575.0,1614505.0,23.11,57.37,28.16,-0.2154453745272697,27.94455447288484
406
+ 404,033-018,-33,18,770675.0,1614505.0,7.24,52.03,27.49,-0.0655917672906503,27.424408003827512
407
+ 405,033-019,-33,19,770775.0,1614505.0,10.45,64.38,27.44,-0.09650293850062644,27.34349759555699
408
+ 406,033-020,-33,20,770875.0,1614505.0,51.97,54.21,26.72,-0.6260578927229421,26.093941420631552
409
+ 407,033-021,-33,21,770975.0,1614505.0,76.3,7.18,24.46,-0.5030831447072198,23.956915939765437
410
+ 408,033-022,-33,22,771075.0,1614505.0,59.86,0.0,23.36,-0.4500966467222443,22.90990396362932
411
+ 409,034-009,-34,9,769775.0,1614405.0,38.4,50.44,26.29,-0.4193625707811576,25.870638344746187
412
+ 410,034-010,-34,10,769875.0,1614405.0,30.39,58.91,27.62,-0.2756809454278477,27.34431989380555
413
+ 411,034-011,-34,11,769975.0,1614405.0,24.8,72.11,28.3,-0.21526873132745739,28.084730505733088
414
+ 412,034-012,-34,12,770075.0,1614405.0,24.99,65.74,28.44,-0.24203402593800252,28.197966508119613
415
+ 413,034-013,-34,13,770175.0,1614405.0,34.98,49.07,27.76,-0.36912445910704444,27.39087576977479
416
+ 414,034-014,-34,14,770275.0,1614405.0,26.47,55.63,27.36,-0.30179217578782147,27.058208434563742
417
+ 415,034-015,-34,15,770375.0,1614405.0,39.07,19.71,27.26,-0.41702184912892537,26.84297837975291
418
+ 416,034-016,-34,16,770475.0,1614405.0,16.25,63.69,27.53,-0.1272814687574649,27.40271921788804
419
+ 417,034-017,-34,17,770575.0,1614405.0,8.88,64.46,27.47,-0.08692255058877142,27.38307676276572
420
+ 418,034-018,-34,18,770675.0,1614405.0,13.03,22.67,26.41,-0.118106915890186,26.29189293152192
421
+ 419,034-019,-34,19,770775.0,1614405.0,30.16,48.17,27.07,-0.30145360951822975,26.76854608530599
422
+ 420,034-020,-34,20,770875.0,1614405.0,43.07,53.8,26.21,-0.5152359594265471,25.69476312504611
423
+ 421,034-021,-34,21,770975.0,1614405.0,92.94,0.82,24.06,-0.8764038720262551,23.183595593916127
424
+ 422,034-022,-34,22,771075.0,1614405.0,48.45,32.31,24.71,-0.5662942431359581,24.1437048413367
425
+ 423,034-023,-34,23,771175.0,1614405.0,25.18,2.76,25.06,-0.1990979965099866,24.860901469432395
426
+ 424,035-009,-35,9,769775.0,1614305.0,46.55,21.88,25.11,-0.4132029230856434,24.69679768726592
427
+ 425,035-010,-35,10,769875.0,1614305.0,31.08,40.83,26.8,-0.3100114555761388,26.48998778148441
428
+ 426,035-011,-35,11,769975.0,1614305.0,28.67,70.06,28.38,-0.31463282087123406,28.065366339895366
429
+ 427,035-012,-35,12,770075.0,1614305.0,31.67,62.15,28.73,-0.2888410359291354,28.441158506307193
430
+ 428,035-013,-35,13,770175.0,1614305.0,24.73,68.52,28.49,-0.2452214490499739,28.24477832206819
431
+ 429,035-014,-35,14,770275.0,1614305.0,16.87,54.86,28.13,-0.16693741797313413,27.963061742793467
432
+ 430,035-015,-35,15,770375.0,1614305.0,24.01,31.94,28.06,-0.27970426122753583,27.780295204714847
433
+ 431,035-016,-35,16,770475.0,1614305.0,22.85,34.29,27.58,-0.19246371134034831,27.387536212365706
434
+ 432,035-017,-35,17,770575.0,1614305.0,20.06,61.17,27.37,-0.23799835224526655,27.13200248698813
435
+ 433,035-018,-35,18,770675.0,1614305.0,46.57,8.06,26.19,-0.5035836497685856,25.68641688428903
436
+ 434,035-019,-35,19,770775.0,1614305.0,22.82,62.53,27.06,-0.294437024303804,26.76556244163858
437
+ 435,035-020,-35,20,770875.0,1614305.0,44.56,48.7,26.35,-0.5736157270026329,25.776384654467094
438
+ 436,035-021,-35,21,770975.0,1614305.0,93.68,3.81,24.57,-0.9072756838568756,23.66272401096734
439
+ 437,035-022,-35,22,771075.0,1614305.0,47.15,42.96,26.76,-0.5991292525733467,26.160870976308487
440
+ 438,035-023,-35,23,771175.0,1614305.0,29.01,40.39,27.08,-0.35952056796746706,26.720479355738586
441
+ 439,035-024,-35,24,771275.0,1614305.0,66.43,10.16,25.61,-0.6940003865535855,24.916000223797976
442
+ 440,036-010,-36,10,769875.0,1614205.0,44.43,34.37,25.73,-0.39271059717885926,25.33728894505747
443
+ 441,036-011,-36,11,769975.0,1614205.0,36.97,50.05,27.85,-0.39510993747211204,27.454890443997616
444
+ 442,036-012,-36,12,770075.0,1614205.0,23.54,67.27,28.93,-0.22160916879195328,28.708391136383828
445
+ 443,036-013,-36,13,770175.0,1614205.0,30.25,65.41,28.7,-0.2717213482761808,28.428279414663272
446
+ 444,036-014,-36,14,770275.0,1614205.0,24.19,60.68,28.3,-0.18667077182195171,28.113328465238595
447
+ 445,036-015,-36,15,770375.0,1614205.0,25.81,57.5,28.63,-0.23532054247815978,28.39467861828844
448
+ 446,036-016,-36,16,770475.0,1614205.0,34.93,14.32,28.07,-0.28927816721571303,27.780721527608506
449
+ 447,036-017,-36,17,770575.0,1614205.0,21.07,70.39,27.51,-0.2789116213449337,27.2310886075369
450
+ 448,036-018,-36,18,770675.0,1614205.0,33.88,48.13,26.91,-0.45147991928698217,26.458519928125128
451
+ 449,036-019,-36,19,770775.0,1614205.0,26.81,65.67,26.71,-0.33823569408298715,26.37176339038967
452
+ 450,036-020,-36,20,770875.0,1614205.0,63.84,27.7,26.09,-0.8132582262196758,25.276741926368214
453
+ 451,036-021,-36,21,770975.0,1614205.0,50.97,36.81,25.31,-0.5914063807086216,24.71859308523376
454
+ 452,036-022,-36,22,771075.0,1614205.0,35.37,55.27,27.8,-0.45380119433414395,27.346198042726403
455
+ 453,036-023,-36,23,771175.0,1614205.0,30.78,58.66,28.11,-0.39703720697909245,27.71296340337247
456
+ 454,036-024,-36,24,771275.0,1614205.0,59.87,25.2,26.32,-0.6997746258544821,25.620225068969738
457
+ 455,036-025,-36,25,771375.0,1614205.0,85.85,3.18,24.26,-1.267816202934438,22.9921840259474
458
+ 456,036-026,-36,26,771475.0,1614205.0,82.4,4.72,24.65,-1.1363239233146383,23.513675695215635
459
+ 457,037-011,-37,11,769975.0,1614105.0,44.38,47.42,27.23,-0.4974744667896639,26.732525075446663
460
+ 458,037-012,-37,12,770075.0,1614105.0,33.78,46.15,28.49,-0.4252025417738102,28.064797229344354
461
+ 459,037-013,-37,13,770175.0,1614105.0,28.73,66.35,28.45,-0.33098070017244346,28.11902006276701
462
+ 460,037-014,-37,14,770275.0,1614105.0,26.53,62.39,28.09,-0.20905705715842923,27.880943095429462
463
+ 461,037-015,-37,15,770375.0,1614105.0,13.82,58.66,28.63,-0.1196977076362086,28.510301453130392
464
+ 462,037-016,-37,16,770475.0,1614105.0,14.06,68.66,28.67,-0.12083591969388799,28.549164156600057
465
+ 463,037-017,-37,17,770575.0,1614105.0,53.72,25.09,28.08,-0.46319233358097156,27.616807590125084
466
+ 464,037-018,-37,18,770675.0,1614105.0,35.5,58.4,27.51,-0.36698197915709596,27.14301824972474
467
+ 465,037-019,-37,19,770775.0,1614105.0,27.14,47.38,26.95,-0.34467956217997225,26.60532120075948
468
+ 466,037-020,-37,20,770875.0,1614105.0,59.38,42.3,25.94,-0.7861609619971901,25.153839572060427
469
+ 467,037-021,-37,21,770975.0,1614105.0,75.37,14.98,24.94,-0.9577023510712771,23.98229818298634
470
+ 468,037-022,-37,22,771075.0,1614105.0,57.37,44.9,26.31,-0.6733518276499779,25.636647638292406
471
+ 469,037-023,-37,23,771175.0,1614105.0,44.24,36.82,26.99,-0.5288602243146064,26.461139546803558
472
+ 470,037-024,-37,24,771275.0,1614105.0,57.52,33.92,26.47,-0.6631205442441809,25.806878769110313
473
+ 471,037-025,-37,25,771375.0,1614105.0,42.12,44.49,25.71,-0.5512402722912083,25.158758812181446
474
+ 472,037-026,-37,26,771475.0,1614105.0,20.47,51.57,26.33,-0.2772759448160366,26.05272397889002
475
+ 473,037-027,-37,27,771575.0,1614105.0,42.39,34.08,25.55,-0.5469596332376043,25.00303960382294
476
+ 474,037-028,-37,28,771675.0,1614105.0,80.03,4.71,23.89,-0.9606820149412764,22.92931737470716
477
+ 475,037-029,-37,29,771775.0,1614105.0,87.74,0.0,22.83,-1.0022617910998983,21.827738132606157
478
+ 476,037-030,-37,30,771875.0,1614105.0,67.56,0.0,22.73,-0.6001626516094801,22.129836890626848
479
+ 477,038-012,-38,12,770075.0,1614005.0,64.81,15.28,27.32,-0.7686461721237168,26.551353522700502
480
+ 478,038-013,-38,13,770175.0,1614005.0,18.57,71.4,28.34,-0.2107139692648747,28.129286183323018
481
+ 479,038-014,-38,14,770275.0,1614005.0,19.15,71.57,28.67,-0.15147122515283457,28.51852885114111
482
+ 480,038-015,-38,15,770375.0,1614005.0,25.53,65.23,28.79,-0.20098225982820353,28.58901865569914
483
+ 481,038-016,-38,16,770475.0,1614005.0,21.78,56.21,28.18,-0.16172593555597095,28.01827436961981
484
+ 482,038-017,-38,17,770575.0,1614005.0,19.05,62.07,27.89,-0.14659467924581995,27.74340471040262
485
+ 483,038-018,-38,18,770675.0,1614005.0,18.54,19.26,27.89,-0.14607974654757555,27.743919643100863
486
+ 484,038-019,-38,19,770775.0,1614005.0,26.17,59.43,27.75,-0.3111912184308019,27.438808781569197
487
+ 485,038-020,-38,20,770875.0,1614005.0,20.55,63.79,27.4,-0.2639688672288297,27.136030751301444
488
+ 486,038-021,-38,21,770975.0,1614005.0,74.92,23.27,25.47,-0.951469697512404,24.518529615842088
489
+ 487,038-022,-38,22,771075.0,1614005.0,86.67,9.91,25.16,-0.9954814646452539,24.164518382766854
490
+ 488,038-023,-38,23,771175.0,1614005.0,41.45,28.52,26.82,-0.5161513430095968,26.303848351814622
491
+ 489,038-024,-38,24,771275.0,1614005.0,34.36,50.47,27.05,-0.4315601427231617,26.618439094337386
492
+ 490,038-025,-38,25,771375.0,1614005.0,43.96,29.38,26.59,-0.6021765199460326,25.98782363264186
493
+ 491,038-026,-38,26,771475.0,1614005.0,21.3,46.77,26.92,-0.29747937723624546,26.6225206990577
494
+ 492,038-027,-38,27,771575.0,1614005.0,21.5,37.9,26.69,-0.27909713436766354,26.410903399689953
495
+ 493,038-028,-38,28,771675.0,1614005.0,30.7,48.8,25.25,-0.3736007686983327,24.87639923130167
496
+ 494,038-029,-38,29,771775.0,1614005.0,64.94,3.11,23.79,-0.6689670769009655,23.121033838626378
497
+ 495,038-030,-38,30,771875.0,1614005.0,56.7,0.0,22.8,-0.4949092670663065,22.305089969994242
498
+ 496,038-031,-38,31,771975.0,1614005.0,71.73,0.0,22.19,-0.44757403425908926,21.742426499798526
499
+ 497,039-012,-39,12,770075.0,1613905.0,57.35,37.8,26.49,-0.6828339738616479,25.807165797256516
500
+ 498,039-013,-39,13,770175.0,1613905.0,31.96,62.36,27.7,-0.4146710856865452,27.285329677252907
501
+ 499,039-014,-39,14,770275.0,1613905.0,22.59,73.44,28.85,-0.27412380950820614,28.57587657196152
502
+ 500,039-015,-39,15,770375.0,1613905.0,42.16,49.63,28.28,-0.47981190505309546,27.80018878159241
503
+ 501,039-016,-39,16,770475.0,1613905.0,23.86,49.95,27.29,-0.2178122223876363,27.072188693139708
504
+ 502,039-017,-39,17,770575.0,1613905.0,9.27,59.5,27.0,-0.09214673913838023,26.90785326086162
505
+ 503,039-018,-39,18,770675.0,1613905.0,27.4,39.51,27.41,-0.204886733308778,27.20511311410333
506
+ 504,039-019,-39,19,770775.0,1613905.0,24.86,38.0,27.31,-0.2016419684171375,27.108357497525244
507
+ 505,039-020,-39,20,770875.0,1613905.0,11.9,64.65,28.03,-0.15432505408818192,27.875675632557325
508
+ 506,039-021,-39,21,770975.0,1613905.0,56.98,41.95,26.72,-0.7207477145961084,25.999251598758384
509
+ 507,039-022,-39,22,771075.0,1613905.0,84.02,15.35,25.54,-0.9344064089712829,24.60559450655606
510
+ 508,039-023,-39,23,771175.0,1613905.0,27.59,70.18,27.47,-0.3661470539806407,27.103852259373852
511
+ 509,039-024,-39,24,771275.0,1613905.0,28.52,60.92,27.82,-0.4017816768001921,27.418218018024028
512
+ 510,039-025,-39,25,771375.0,1613905.0,43.57,22.09,27.01,-0.6227556180436277,26.38724461083821
513
+ 511,039-026,-39,26,771475.0,1613905.0,17.98,52.25,26.77,-0.25771683966530623,26.512283618098365
514
+ 512,039-027,-39,27,771575.0,1613905.0,49.24,16.0,25.62,-0.6812458806320754,24.938754958601322
515
+ 513,039-028,-39,28,771675.0,1613905.0,49.32,14.66,24.96,-0.6433019756955756,24.31669710877708
516
+ 514,039-029,-39,29,771775.0,1613905.0,56.53,12.29,24.52,-0.607025812660634,23.912974645103038
517
+ 515,039-030,-39,30,771875.0,1613905.0,53.68,12.06,23.27,-0.4289744277656593,22.841026029998012
518
+ 516,039-031,-39,31,771975.0,1613905.0,94.1,0.0,21.86,-0.5616375759582836,21.29836303439328
519
+ 517,039-032,-39,32,772075.0,1613905.0,84.85,0.0,21.55,-0.47021731040301734,21.079781926657528
520
+ 518,040-013,-40,13,770175.0,1613805.0,55.2,31.94,26.23,-0.6741957567476795,25.55580378548865
521
+ 519,040-014,-40,14,770275.0,1613805.0,24.47,59.72,26.94,-0.3015246179473533,26.638475916110263
522
+ 520,040-015,-40,15,770375.0,1613805.0,64.64,29.66,26.39,-0.7678883383147057,25.622111051333732
523
+ 521,040-016,-40,16,770475.0,1613805.0,32.18,53.69,27.13,-0.3652533291304554,26.764745831636148
524
+ 522,040-017,-40,17,770575.0,1613805.0,27.99,55.81,27.67,-0.20889379848040326,27.461106277813542
525
+ 523,040-018,-40,18,770675.0,1613805.0,27.24,60.51,27.39,-0.20634335633424886,27.18365603331419
526
+ 524,040-019,-40,19,770775.0,1613805.0,25.39,33.75,26.68,-0.2446659560796794,26.435334349096102
527
+ 525,040-020,-40,20,770875.0,1613805.0,13.58,50.03,27.52,-0.1555356865083799,27.364464771255292
528
+ 526,040-021,-40,21,770975.0,1613805.0,37.51,51.99,27.64,-0.46824917381721515,27.17175021583122
529
+ 527,040-022,-40,22,771075.0,1613805.0,83.19,10.98,25.83,-0.9738291280745932,24.85617079563146
530
+ 528,040-023,-40,23,771175.0,1613805.0,34.59,60.23,27.17,-0.44662136047250495,26.72337871582144
531
+ 529,040-024,-40,24,771275.0,1613805.0,22.25,55.54,27.52,-0.30791876139637747,27.212081696367296
532
+ 530,040-025,-40,25,771375.0,1613805.0,45.16,16.91,25.71,-0.624668078819858,25.085331005652797
533
+ 531,040-026,-40,26,771475.0,1613805.0,29.06,42.17,25.13,-0.3964072098240748,24.733591950942525
534
+ 532,040-027,-40,27,771575.0,1613805.0,39.8,19.63,24.72,-0.5313655768788289,24.188633736475662
535
+ 533,040-028,-40,28,771675.0,1613805.0,34.58,19.18,24.44,-0.35445527221944684,24.08554526183817
536
+ 534,040-029,-40,29,771775.0,1613805.0,40.28,23.4,24.42,-0.4297912599154912,23.990208816378455
537
+ 535,040-030,-40,30,771875.0,1613805.0,36.85,17.11,24.07,-0.34756176327826754,23.72243793154595
538
+ 536,040-031,-40,31,771975.0,1613805.0,74.87,1.31,22.74,-0.5928924288337256,22.14710734228444
539
+ 537,040-032,-40,32,772075.0,1613805.0,85.02,0.0,22.34,-0.4553733996130912,21.8846267529748
540
+ 538,040-033,-40,33,772175.0,1613805.0,79.07,0.0,22.7,-0.40805642881136145,22.291944334128093
541
+ 539,040-034,-40,34,772275.0,1613805.0,75.83,0.0,22.47,-0.38162546685861237,22.08837384649588
542
+ 540,041-015,-41,15,770375.0,1613705.0,64.11,14.59,25.04,-0.7035819882648536,24.33641892726249
543
+ 541,041-016,-41,16,770475.0,1613705.0,28.61,66.92,27.33,-0.37178912679556414,26.95821079691049
544
+ 542,041-017,-41,17,770575.0,1613705.0,22.11,64.1,28.29,-0.24994815884364383,28.0400527566837
545
+ 543,041-018,-41,18,770675.0,1613705.0,31.01,57.86,27.29,-0.37422256227660594,26.915778353250737
546
+ 544,041-019,-41,19,770775.0,1613705.0,29.19,67.24,26.71,-0.35624731938890175,26.353751765083754
547
+ 545,041-020,-41,20,770875.0,1613705.0,33.26,25.53,27.23,-0.33566121268394083,26.894338329552387
548
+ 546,041-021,-41,21,770975.0,1613705.0,24.49,31.37,27.88,-0.3000749506786544,27.579924210087945
549
+ 547,041-022,-41,22,771075.0,1613705.0,70.86,31.37,26.73,-0.8792514448307194,25.85074809740561
550
+ 548,041-023,-41,23,771175.0,1613705.0,15.74,74.57,27.68,-0.2129509417679859,27.467049363407796
551
+ 549,041-024,-41,24,771275.0,1613705.0,31.38,55.63,27.23,-0.41309462162688354,26.816904920609446
552
+ 550,041-025,-41,25,771375.0,1613705.0,55.47,20.69,24.5,-0.7371284352504237,23.762871564749577
553
+ 551,041-026,-41,26,771475.0,1613705.0,70.68,9.15,22.99,-0.7518597752727142,22.23813999584545
554
+ 552,041-027,-41,27,771575.0,1613705.0,85.71,0.94,23.04,-0.9928177086148102,22.047183206912532
555
+ 553,041-028,-41,28,771675.0,1613705.0,60.89,11.17,23.83,-0.6038311056548528,23.226168818051203
556
+ 554,041-029,-41,29,771775.0,1613705.0,43.12,33.15,24.51,-0.44348576631243836,24.066514462569398
557
+ 555,041-030,-41,30,771875.0,1613705.0,24.53,24.76,24.84,-0.2421009820484164,24.597899170539474
558
+ 556,041-031,-41,31,771975.0,1613705.0,58.88,5.91,24.83,-0.5897702955579529,24.2402296281481
559
+ 557,041-032,-41,32,772075.0,1613705.0,50.27,14.28,25.46,-0.4666982457746695,24.993300838697987
560
+ 558,041-033,-41,33,772175.0,1613705.0,49.94,10.51,24.92,-0.4079943988558357,24.51200567743811
561
+ 559,041-034,-41,34,772275.0,1613705.0,89.44,2.59,23.04,-0.6725068554979657,22.36749406002938
562
+ 560,041-035,-41,35,772375.0,1613705.0,93.57,0.0,21.74,-0.6674205882453742,21.07257918287279
563
+ 561,042-016,-42,16,770475.0,1613605.0,47.05,44.72,27.07,-0.5695287203701754,26.500470974454043
564
+ 562,042-017,-42,17,770575.0,1613605.0,37.98,52.36,27.09,-0.45973440067378024,26.63026575191411
565
+ 563,042-018,-42,18,770675.0,1613605.0,54.77,28.21,26.12,-0.723670915891951,25.396329923341447
566
+ 564,042-019,-42,19,770775.0,1613605.0,30.49,66.26,26.52,-0.36497077751812274,26.155029680245548
567
+ 565,042-020,-42,20,770875.0,1613605.0,14.52,57.75,26.67,-0.16816102890266807,26.50183904739128
568
+ 566,042-021,-42,21,770975.0,1613605.0,28.66,30.73,26.98,-0.35027701891933516,26.629722523316993
569
+ 567,042-022,-42,22,771075.0,1613605.0,34.26,58.42,27.56,-0.4314348689619949,27.12856459698039
570
+ 568,042-023,-42,23,771175.0,1613605.0,20.82,67.38,27.39,-0.27996545575278686,27.11003393389565
571
+ 569,042-024,-42,24,771275.0,1613605.0,12.17,61.81,26.03,-0.1572785762184961,25.872722110427013
572
+ 570,042-025,-42,25,771375.0,1613605.0,77.09,10.21,23.98,-1.1138291477406816,22.866170394495647
573
+ 571,042-026,-42,26,771475.0,1613605.0,82.25,8.02,22.86,-0.7939617847254639,22.066038825626098
574
+ 572,042-027,-42,27,771575.0,1613605.0,74.59,13.93,22.84,-0.7918308862897541,22.048169266298135
575
+ 573,042-028,-42,28,771675.0,1613605.0,39.05,28.5,23.71,-0.3686574011269704,23.341341683345686
576
+ 574,042-029,-42,29,771775.0,1613605.0,57.68,24.52,24.81,-0.6598025371681945,24.15019692877419
577
+ 575,042-030,-42,30,771875.0,1613605.0,49.51,22.35,25.17,-0.6191541904152537,24.55084588587869
578
+ 576,042-031,-42,31,771975.0,1613605.0,36.85,21.5,25.89,-0.46817184675069184,25.421827542897745
579
+ 577,042-032,-42,32,772075.0,1613605.0,33.69,35.72,26.17,-0.33423491498493113,25.835765161309013
580
+ 578,042-033,-42,33,772175.0,1613605.0,52.01,29.05,25.63,-0.4953193086905462,25.134679852076054
581
+ 579,042-034,-42,34,772275.0,1613605.0,43.35,22.24,24.33,-0.3592479698105339,23.970751953895522
582
+ 580,042-035,-42,35,772375.0,1613605.0,89.91,0.24,22.54,-0.6818987120125088,21.858102203514836
583
+ 581,042-036,-42,36,772475.0,1613605.0,74.0,0.0,21.74,-0.43903380493983485,21.300965966178328
584
+ 582,043-017,-43,17,770575.0,1613505.0,75.12,2.2,24.98,-0.6119790503537063,24.36802049188262
585
+ 583,043-018,-43,18,770675.0,1613505.0,54.69,34.42,24.94,-0.6525285856846332,24.287471948372986
586
+ 584,043-019,-43,19,770775.0,1613505.0,27.94,65.93,25.61,-0.3647896697121538,25.24521094063941
587
+ 585,043-020,-43,20,770875.0,1613505.0,33.36,38.72,25.78,-0.4400465176548481,25.33995416899066
588
+ 586,043-021,-43,21,770975.0,1613505.0,33.77,29.38,26.73,-0.445454812360559,26.28454472987577
589
+ 587,043-022,-43,22,771075.0,1613505.0,33.01,21.99,27.36,-0.3504243917396602,27.0095762186119
590
+ 588,043-023,-43,23,771175.0,1613505.0,64.59,12.32,26.14,-0.6310066892298162,25.50899270041862
591
+ 589,043-024,-43,24,771275.0,1613505.0,38.98,27.89,25.21,-0.5350557561456396,24.674943328327018
592
+ 590,043-025,-43,25,771375.0,1613505.0,30.84,51.15,24.76,-0.4208931292880613,24.339107099593775
593
+ 591,043-026,-43,26,771475.0,1613505.0,73.27,5.93,23.89,-0.6806797219603722,23.209319667688064
594
+ 592,043-027,-43,27,771575.0,1613505.0,63.78,16.55,23.52,-0.6601638929072683,22.859836564856405
595
+ 593,043-028,-43,28,771675.0,1613505.0,42.45,23.94,23.77,-0.3815321084174648,23.38846834934621
596
+ 594,043-029,-43,29,771775.0,1613505.0,53.57,8.63,24.68,-0.6662198330570789,24.013780472118704
597
+ 595,043-030,-43,30,771875.0,1613505.0,18.17,10.78,25.75,-0.1846555800137016,25.5653444199863
598
+ 596,043-031,-43,31,771975.0,1613505.0,41.19,13.8,25.84,-0.5840128588791025,25.255987293708788
599
+ 597,043-032,-43,32,772075.0,1613505.0,48.11,40.42,25.35,-0.5339569072341764,24.81604347423555
600
+ 598,043-033,-43,33,772175.0,1613505.0,47.81,25.04,25.77,-0.5441582041934337,25.22584225357024
601
+ 599,043-034,-43,34,772275.0,1613505.0,51.4,13.6,25.27,-0.4795491973366382,24.790451260427034
602
+ 600,043-035,-43,35,772375.0,1613505.0,63.03,0.0,23.76,-0.5459890485885281,23.21401118029331
603
+ 601,043-036,-43,36,772475.0,1613505.0,59.52,0.05,22.47,-0.3790117497302459,22.090987563624246
604
+ 602,043-037,-43,37,772575.0,1613505.0,82.42,0.42,21.81,-0.7289547833300879,21.081044682612294
605
+ 603,044-018,-44,18,770675.0,1613405.0,49.98,6.62,24.86,-0.5961317928195466,24.263868817532014
606
+ 604,044-019,-44,19,770775.0,1613405.0,64.86,16.34,24.59,-0.7615825299578007,23.82841762263009
607
+ 605,044-020,-44,20,770875.0,1613405.0,75.6,15.3,24.84,-0.9138263728597613,23.926173779728128
608
+ 606,044-021,-44,21,770975.0,1613405.0,30.45,39.44,26.35,-0.3558968465239763,25.99410353494575
609
+ 607,044-022,-44,22,771075.0,1613405.0,35.02,11.36,27.5,-0.4372958234922344,27.062704176507765
610
+ 608,044-023,-44,23,771175.0,1613405.0,14.23,22.76,26.62,-0.17440393705456142,26.44559690217884
611
+ 609,044-024,-44,24,771275.0,1613405.0,38.7,28.44,25.57,-0.5389689522080447,25.031030742616174
612
+ 610,044-025,-44,25,771375.0,1613405.0,40.09,33.47,25.16,-0.46600174249093423,24.693998104921175
613
+ 611,044-026,-44,26,771475.0,1613405.0,72.4,7.79,24.27,-0.8544267341791579,23.415573723584515
614
+ 612,044-027,-44,27,771575.0,1613405.0,79.31,12.08,23.43,-0.8980206104229803,22.531979694752803
615
+ 613,044-028,-44,28,771675.0,1613405.0,81.62,1.58,23.36,-0.796030354369823,22.56397025598174
616
+ 614,044-029,-44,29,771775.0,1613405.0,46.03,1.57,24.58,-0.5737547478163015,24.006245175889752
617
+ 615,044-030,-44,30,771875.0,1613405.0,43.65,37.73,25.18,-0.6093698597064988,24.570630445469284
618
+ 616,044-031,-44,31,771975.0,1613405.0,46.47,16.4,25.59,-0.6628812357685137,24.927118916819378
619
+ 617,044-032,-44,32,772075.0,1613405.0,40.68,39.1,25.8,-0.4878703806754742,25.312128856385073
620
+ 618,044-033,-44,33,772175.0,1613405.0,28.0,18.13,26.29,-0.322929646989206,25.967071268538138
621
+ 619,044-034,-44,34,772275.0,1613405.0,65.95,12.0,25.62,-0.6888417843236377,24.93115905490976
622
+ 620,044-035,-44,35,772375.0,1613405.0,40.11,4.39,25.18,-0.418855812319573,24.761144492856207
623
+ 621,044-036,-44,36,772475.0,1613405.0,66.3,2.79,23.98,-0.48414923053369313,23.495850311702636
624
+ 622,045-020,-45,20,770875.0,1613305.0,81.21,7.22,24.42,-1.0201121366747454,23.399887939619198
625
+ 623,045-021,-45,21,770975.0,1613305.0,61.82,16.65,25.75,-0.7517580276383918,24.99824197236161
626
+ 624,045-022,-45,22,771075.0,1613305.0,31.21,7.62,26.88,-0.3738476404719259,26.506151520294676
627
+ 625,045-023,-45,23,771175.0,1613305.0,47.27,2.9,26.02,-0.5944966096540365,25.425503848109635
628
+ 626,045-024,-45,24,771275.0,1613305.0,46.84,16.8,25.6,-0.6284666295588272,24.9715337519109
629
+ 627,045-025,-45,25,771375.0,1613305.0,35.61,40.99,25.21,-0.43718635910777487,24.772812725364883
630
+ 628,045-026,-45,26,771475.0,1613305.0,38.89,28.59,25.1,-0.45778666276557944,24.64221371870415
631
+ 629,045-027,-45,27,771575.0,1613305.0,70.64,7.19,24.05,-0.7326002889742013,23.317398948086346
632
+ 630,045-028,-45,28,771675.0,1613305.0,86.19,0.0,23.11,-0.896086494142911,22.213914116208652
633
+ 631,045-029,-45,29,771775.0,1613305.0,47.66,7.39,24.36,-0.5078775995757341,23.852123010775827
634
+ 632,045-030,-45,30,771875.0,1613305.0,51.23,19.15,24.57,-0.5793552656449789,23.99064442917924
635
+ 633,045-031,-45,31,771975.0,1613305.0,48.33,14.27,24.63,-0.5635479261621529,24.06645123460445
636
+ 634,045-032,-45,32,772075.0,1613305.0,50.22,18.06,24.98,-0.6339132730035342,24.346086269232792
637
+ 635,045-033,-45,33,772175.0,1613305.0,40.57,25.99,25.86,-0.5026145695135746,25.357386040837987
638
+ 636,045-034,-45,34,772275.0,1613305.0,54.01,11.35,25.13,-0.6531219667933419,24.47687719397326
639
+ 637,045-035,-45,35,772375.0,1613305.0,38.87,3.86,25.13,-0.44122752885543604,24.688771631911166
640
+ 638,045-036,-45,36,772475.0,1613305.0,43.23,3.43,24.38,-0.47302598867567636,23.906973172090925
641
+ 639,046-018,-46,18,770675.0,1613205.0,58.36,15.55,25.77,-0.7876502969863235,24.982350160777347
642
+ 640,046-019,-46,19,770775.0,1613205.0,49.7,12.34,26.02,-0.5856432627982117,25.43435719496546
643
+ 641,046-020,-46,20,770875.0,1613205.0,79.76,0.76,25.03,-0.9797233606207377,24.05027732602477
644
+ 642,046-021,-46,21,770975.0,1613205.0,23.93,49.21,26.26,-0.27209283335473516,25.987907395527102
645
+ 643,046-022,-46,22,771075.0,1613205.0,30.94,5.59,26.67,-0.3676220840514123,26.302377992242533
646
+ 644,046-023,-46,23,771175.0,1613205.0,40.21,7.34,25.48,-0.48654605259034633,24.993453489645983
647
+ 645,046-024,-46,24,771275.0,1613205.0,26.11,14.79,25.81,-0.3364365065643692,25.473562959378015
648
+ 646,046-025,-46,25,771375.0,1613205.0,52.42,28.45,25.08,-0.7409355238681258,24.33906439983793
649
+ 647,046-026,-46,26,771475.0,1613205.0,47.83,18.65,24.86,-0.5789919467510446,24.281008663600517
650
+ 648,046-027,-46,27,771575.0,1613205.0,53.08,11.46,24.45,-0.5810972813534553,23.868903481586
651
+ 649,046-028,-46,28,771675.0,1613205.0,76.94,0.56,23.67,-0.7561876731594542,22.91381240313449
652
+ 650,046-029,-46,29,771775.0,1613205.0,57.94,1.38,24.39,-0.5864992651322889,23.803500124516148
653
+ 651,046-030,-46,30,771875.0,1613205.0,45.96,5.43,24.83,-0.4725200324467746,24.35747989125928
654
+ 652,046-031,-46,31,771975.0,1613205.0,42.2,16.06,25.11,-0.5548578671233025,24.55514274322826
655
+ 653,046-032,-46,32,772075.0,1613205.0,44.98,16.34,24.92,-0.5693920916098122,24.35060798468413
656
+ 654,046-033,-46,33,772175.0,1613205.0,44.22,28.32,25.04,-0.5668153113164046,24.47318560421094
657
+ 655,046-034,-46,34,772275.0,1613205.0,42.56,22.92,24.64,-0.48412213994391745,24.15587724970452
658
+ 656,046-035,-46,35,772375.0,1613205.0,33.18,16.44,24.83,-0.361230363285392,24.46876956042066
659
+ 657,046-036,-46,36,772475.0,1613205.0,57.31,0.83,24.28,-0.6134882535291935,23.666512433116313
660
+ 658,047-017,-47,17,770575.0,1613105.0,54.72,5.3,26.89,-0.5639036989701687,26.32609569067827
661
+ 659,047-018,-47,18,770675.0,1613105.0,34.41,23.46,26.83,-0.4200376539882481,26.409962269717806
662
+ 660,047-019,-47,19,770775.0,1613105.0,48.12,37.77,26.36,-0.5915762872477968,25.768424323103766
663
+ 661,047-020,-47,20,770875.0,1613105.0,61.77,16.47,25.5,-0.7509621193948071,24.749037880605194
664
+ 662,047-021,-47,21,770975.0,1613105.0,46.58,12.07,25.78,-0.5653699018110729,25.214630784834434
665
+ 663,047-022,-47,22,771075.0,1613105.0,43.36,9.07,25.65,-0.520724551886253,25.12927506664402
666
+ 664,047-023,-47,23,771175.0,1613105.0,40.59,6.85,25.57,-0.5174933410618819,25.052506353762336
667
+ 665,047-024,-47,24,771275.0,1613105.0,15.18,40.01,26.14,-0.17618583785665362,25.963813551791784
668
+ 666,047-025,-47,25,771375.0,1613105.0,48.96,32.32,25.66,-0.667444730236691,24.992555117175417
669
+ 667,047-026,-47,26,771475.0,1613105.0,30.25,25.83,24.96,-0.34063415005748426,24.619364934415174
670
+ 668,047-027,-47,27,771575.0,1613105.0,37.13,39.01,24.86,-0.4014792346196386,24.458521375731923
671
+ 669,047-028,-47,28,771675.0,1613105.0,37.04,12.55,24.73,-0.37324942259037075,24.35675011964596
672
+ 670,047-029,-47,29,771775.0,1613105.0,51.97,7.79,24.6,-0.4898114699165094,24.110188911553216
673
+ 671,047-030,-47,30,771875.0,1613105.0,61.57,22.94,24.99,-0.6350220131072161,24.354977758010946
674
+ 672,047-031,-47,31,771975.0,1613105.0,35.28,20.63,25.76,-0.43499623800403064,25.325003990877804
675
+ 673,047-032,-47,32,772075.0,1613105.0,27.9,31.35,25.76,-0.2911461695782189,25.468854059303617
676
+ 674,047-033,-47,33,772175.0,1613105.0,50.97,24.53,24.97,-0.6333054095531475,24.336693903801343
677
+ 675,047-034,-47,34,772275.0,1613105.0,42.58,16.15,24.66,-0.4832951735887559,24.17670467382335
678
+ 676,047-035,-47,35,772375.0,1613105.0,42.62,7.38,24.26,-0.4655118070945036,23.79448842178733
679
+ 677,047-036,-47,36,772475.0,1613105.0,73.19,3.59,22.86,-0.7981581129229834,22.06184249742858
680
+ 678,048-017,-48,17,770575.0,1613005.0,53.28,23.82,26.9,-0.5269819668007631,26.373017651729512
681
+ 679,048-018,-48,18,770675.0,1613005.0,47.35,21.35,26.23,-0.5856406105598665,25.64435893167646
682
+ 680,048-019,-48,19,770775.0,1613005.0,79.34,15.7,25.27,-0.997499839469653,24.272500618294018
683
+ 681,048-020,-48,20,770875.0,1613005.0,67.03,21.15,25.27,-0.8667040225272143,24.403296435236456
684
+ 682,048-021,-48,21,770975.0,1613005.0,66.67,33.28,25.85,-0.9022140190440469,24.94778636242568
685
+ 683,048-022,-48,22,771075.0,1613005.0,41.5,29.8,25.94,-0.5715395440157452,25.36846099004187
686
+ 684,048-023,-48,23,771175.0,1613005.0,32.31,29.37,26.22,-0.4339863726327242,25.78601294072177
687
+ 685,048-024,-48,24,771275.0,1613005.0,31.91,22.94,26.46,-0.3931169637236762,26.06688212074898
688
+ 686,048-025,-48,25,771375.0,1613005.0,44.81,29.6,25.52,-0.5510080639246021,24.96899239383907
689
+ 687,048-026,-48,26,771475.0,1613005.0,36.61,31.63,24.75,-0.40705854488852317,24.342941455111475
690
+ 688,048-027,-48,27,771575.0,1613005.0,40.33,5.89,24.3,-0.4010500698556543,23.898949167204893
691
+ 689,048-028,-48,28,771675.0,1613005.0,64.94,3.51,24.66,-0.7123810843062596,23.94761876310585
692
+ 690,048-029,-48,29,771775.0,1613005.0,30.96,57.29,25.33,-0.3292885738985172,25.00071134980754
693
+ 691,048-030,-48,30,771875.0,1613005.0,45.54,34.94,25.47,-0.4444988233902311,25.025500489964262
694
+ 692,048-031,-48,31,771975.0,1613005.0,61.4,26.84,25.61,-0.6891281058141354,24.920872504537428
695
+ 693,048-032,-48,32,772075.0,1613005.0,41.05,17.07,25.68,-0.4709969766014816,25.2090033285743
696
+ 694,048-033,-48,33,772175.0,1613005.0,42.45,19.95,25.51,-0.5926003810511771,24.91739984783066
697
+ 695,048-034,-48,34,772275.0,1613005.0,30.83,19.72,25.65,-0.42849554787682,25.221504070653452
698
+ 696,048-035,-48,35,772375.0,1613005.0,59.75,4.9,24.3,-0.8906028918381931,23.409396345222355
699
+ 697,048-036,-48,36,772475.0,1613005.0,59.27,1.11,22.67,-0.6505964420152599,22.019403634278685
700
+ 698,049-016,-49,16,770475.0,1612905.0,60.45,18.72,26.8,-0.6160889595162361,26.18391027754431
701
+ 699,049-017,-49,17,770575.0,1612905.0,27.97,55.94,27.07,-0.3569539144910064,26.71304578033321
702
+ 700,049-018,-49,18,770675.0,1612905.0,25.85,33.77,26.29,-0.3168628851986615,25.97313803032868
703
+ 701,049-019,-49,19,770775.0,1612905.0,53.63,29.14,25.6,-0.6717578046349503,24.928242576834776
704
+ 702,049-020,-49,20,770875.0,1612905.0,32.2,40.61,26.53,-0.439982900439896,26.09001778620561
705
+ 703,049-021,-49,21,770975.0,1612905.0,22.81,50.53,27.75,-0.33920826225105466,27.410791737748944
706
+ 704,049-022,-49,22,771075.0,1612905.0,18.87,62.62,27.77,-0.2784782711094894,27.491522186654183
707
+ 705,049-023,-49,23,771175.0,1612905.0,26.87,22.91,26.7,-0.38990518603029506,26.31009557690916
708
+ 706,049-024,-49,24,771275.0,1612905.0,28.63,35.77,26.61,-0.3608745600563236,26.24912605029524
709
+ 707,049-025,-49,25,771375.0,1612905.0,35.56,40.37,25.57,-0.43499479061191054,25.13500490421231
710
+ 708,049-026,-49,26,771475.0,1612905.0,47.6,18.97,24.45,-0.502334566549492,23.94766619638996
711
+ 709,049-027,-49,27,771575.0,1612905.0,90.07,0.79,23.21,-0.9665058672586835,22.243493217213974
712
+ 710,049-028,-49,28,771675.0,1612905.0,60.71,22.18,24.31,-0.7114424544021017,23.59855701154028
713
+ 711,049-029,-49,29,771775.0,1612905.0,38.77,56.47,25.82,-0.4913876900999537,25.328612004724263
714
+ 712,049-030,-49,30,771875.0,1612905.0,45.14,45.98,26.29,-0.5867439864014249,25.703256929125917
715
+ 713,049-031,-49,31,771975.0,1612905.0,24.38,42.09,26.8,-0.301174844335686,26.49882439272486
716
+ 714,049-032,-49,32,772075.0,1612905.0,41.73,31.37,26.11,-0.48389429891340274,25.62610631143816
717
+ 715,049-033,-49,33,772175.0,1612905.0,41.0,27.27,25.91,-0.5728275008706966,25.33717234654141
718
+ 716,049-034,-49,34,772275.0,1612905.0,19.86,43.06,26.49,-0.22361108032583304,26.266388690792333
719
+ 717,049-035,-49,35,772375.0,1612905.0,29.76,26.89,26.08,-0.4622171514449242,25.61778277226113
720
+ 718,049-036,-49,36,772475.0,1612905.0,56.64,4.87,24.13,-0.5810813692279352,23.548917791538667
721
+ 719,050-017,-50,17,770575.0,1612805.0,27.09,29.32,26.7,-0.27568669896556935,26.424314063973885
722
+ 720,050-018,-50,18,770675.0,1612805.0,47.25,24.39,26.34,-0.6954397032403602,25.64456044934753
723
+ 721,050-019,-50,19,770775.0,1612805.0,45.63,30.03,26.26,-0.5942131154974339,25.6657871133844
724
+ 722,050-020,-50,20,770875.0,1612805.0,23.23,52.02,26.94,-0.31761027884338333,26.622390255214235
725
+ 723,050-021,-50,21,770975.0,1612805.0,21.97,58.01,28.2,-0.32240059750667094,27.87760016543278
726
+ 724,050-022,-50,22,771075.0,1612805.0,16.44,60.61,28.01,-0.23589849364838256,27.774101735233454
727
+ 725,050-023,-50,23,771175.0,1612805.0,45.22,8.14,26.22,-0.6691556736606185,25.550843639693873
728
+ 726,050-024,-50,24,771275.0,1612805.0,32.79,26.94,25.71,-0.4140691633532616,25.295929921119395
729
+ 727,050-025,-50,25,771375.0,1612805.0,59.8,5.12,24.78,-0.7724286325986106,24.007572054046896
730
+ 728,050-026,-50,26,771475.0,1612805.0,69.43,0.71,23.59,-0.8836535340819646,22.706346618505926
731
+ 729,050-027,-50,27,771575.0,1612805.0,87.03,10.12,22.55,-1.2939512241308204,21.256048012929725
732
+ 730,050-028,-50,28,771675.0,1612805.0,42.52,50.23,24.5,-0.6518889089323509,23.84811109106765
733
+ 731,050-029,-50,29,771775.0,1612805.0,50.26,42.84,25.87,-0.7410510094377892,25.12894982979561
734
+ 732,050-030,-50,30,771875.0,1612805.0,34.18,39.56,26.4,-0.470850963978636,25.92914865455164
735
+ 733,050-031,-50,31,771975.0,1612805.0,22.68,47.81,26.92,-0.28816694278742166,26.631833133506525
736
+ 734,050-032,-50,32,772075.0,1612805.0,43.94,18.89,26.29,-0.5743697446665225,25.71563117086082
737
+ 735,050-033,-50,33,772175.0,1612805.0,36.82,17.74,25.74,-0.5450506354140704,25.194949135704093
738
+ 736,050-034,-50,34,772275.0,1612805.0,31.65,30.77,25.87,-0.49191094919495376,25.378089890038446
739
+ 737,050-035,-50,35,772375.0,1612805.0,37.16,6.03,26.11,-0.5895225531394095,25.520478057212152
740
+ 738,050-036,-50,36,772475.0,1612805.0,55.07,0.43,24.6,-0.5802915113526801,24.019708870117046
741
+ 739,051-017,-51,17,770575.0,1612705.0,18.16,32.42,27.1,-0.1809377074958502,26.919062673973876
742
+ 740,051-018,-51,18,770675.0,1612705.0,33.77,48.85,26.62,-0.3133503211316785,26.30665051810172
743
+ 741,051-019,-51,19,770775.0,1612705.0,24.07,43.26,26.48,-0.31038404673166214,26.169615495504665
744
+ 742,051-020,-51,20,770875.0,1612705.0,38.0,31.34,26.21,-0.4430346144146837,25.76696447005797
745
+ 743,051-021,-51,21,770975.0,1612705.0,32.45,39.07,27.04,-0.39413595511711075,26.645864960410233
746
+ 744,051-022,-51,22,771075.0,1612705.0,32.01,21.1,26.48,-0.44414887038208584,26.03585067185424
747
+ 745,051-023,-51,23,771175.0,1612705.0,43.18,15.42,25.46,-0.5712311544055699,24.888767930067086
748
+ 746,051-024,-51,24,771275.0,1612705.0,34.33,35.45,25.43,-0.42686241423305477,25.003137890942728
749
+ 747,051-025,-51,25,771375.0,1612705.0,22.15,39.41,24.83,-0.23308869400516066,24.596911229700893
750
+ 748,051-026,-51,26,771475.0,1612705.0,61.44,17.49,23.38,-0.8610818719729708,22.51891728879363
751
+ 749,051-027,-51,27,771575.0,1612705.0,77.61,3.11,23.01,-1.2542939584695698,21.755706270412265
752
+ 750,051-028,-51,28,771675.0,1612705.0,16.79,26.38,24.47,-0.18399280714555277,24.28600650620894
753
+ 751,051-029,-51,29,771775.0,1612705.0,36.62,38.72,25.34,-0.5056443521344174,24.834355800453473
754
+ 752,051-030,-51,30,771875.0,1612705.0,34.19,34.2,25.6,-0.47903364138357485,25.120966740086153
755
+ 753,051-031,-51,31,771975.0,1612705.0,49.7,43.49,25.42,-0.6773640682101575,24.74263600808379
756
+ 754,051-032,-51,32,772075.0,1612705.0,60.0,18.24,24.99,-0.8194235130832888,24.170576258034874
757
+ 755,051-033,-51,33,772175.0,1612705.0,44.71,28.87,24.7,-0.5137652126109019,24.18623555032855
758
+ 756,051-034,-51,34,772275.0,1612705.0,70.97,10.2,23.78,-0.8168591982951326,22.963141488350374
759
+ 757,051-035,-51,35,772375.0,1612705.0,79.41,1.6,23.41,-0.9322130400515944,22.477786807360516
760
+ 758,052-018,-52,18,770675.0,1612605.0,25.24,57.15,25.76,-0.22999319069537788,25.530007038186458
761
+ 759,052-019,-52,19,770775.0,1612605.0,33.39,34.33,25.6,-0.31808852405055615,25.28191185741917
762
+ 760,052-020,-52,20,770875.0,1612605.0,36.37,29.81,26.07,-0.39814446711384477,25.671855227710374
763
+ 761,052-021,-52,21,770975.0,1612605.0,14.71,31.18,27.18,-0.20183066664698218,26.9781696385288
764
+ 762,052-022,-52,22,771075.0,1612605.0,36.22,42.95,26.77,-0.4004514835960634,26.369548974167607
765
+ 763,052-023,-52,23,771175.0,1612605.0,48.48,23.06,26.12,-0.5289009660755601,25.591099873157837
766
+ 764,052-024,-52,24,771275.0,1612605.0,29.67,36.91,25.84,-0.363624288106595,25.476375864481295
767
+ 765,052-025,-52,25,771375.0,1612605.0,9.25,74.74,24.74,-0.08402339959023042,24.655976371527935
768
+ 766,052-026,-52,26,771475.0,1612605.0,52.67,29.66,23.83,-0.67154314487191,23.158456778834143
769
+ 767,052-027,-52,27,771575.0,1612605.0,50.41,21.96,23.89,-0.7783268532502362,23.111672536398203
770
+ 768,052-028,-52,28,771675.0,1612605.0,42.02,9.94,23.93,-0.6167335683922262,23.313266736783554
771
+ 769,052-029,-52,29,771775.0,1612605.0,45.44,31.54,23.85,-0.6400524148522927,23.209947966617435
772
+ 770,052-030,-52,30,771875.0,1612605.0,78.12,21.92,23.79,-0.8977200252179499,22.892280890309394
773
+ 771,052-031,-52,31,771975.0,1612605.0,83.91,4.45,23.44,-0.9570946664633743,22.482905867594244
774
+ 772,052-032,-52,32,772075.0,1612605.0,58.1,20.6,23.73,-0.6468345083124264,23.0831650339239
775
+ 773,052-033,-52,33,772175.0,1612605.0,65.2,1.45,23.07,-0.7338899999805918,22.33610969484363
776
+ 774,052-034,-52,34,772275.0,1612605.0,73.81,0.57,22.84,-0.8302333445801021,22.00976680800779
777
+ 775,052-035,-52,35,772375.0,1612605.0,78.55,3.44,23.02,-0.8830774572529088,22.136923000510762
778
+ 776,053-019,-53,19,770775.0,1612505.0,20.25,34.55,24.78,-0.1764693496824238,24.603531336963083
779
+ 777,053-020,-53,20,770875.0,1612505.0,20.33,50.81,25.99,-0.2000072308642332,25.78999254025393
780
+ 778,053-021,-53,21,770975.0,1612505.0,21.22,65.47,26.73,-0.24764492614954758,26.48235461608678
781
+ 779,053-022,-53,22,771075.0,1612505.0,48.41,39.26,26.56,-0.5519397611846352,26.00805970475775
782
+ 780,053-023,-53,23,771175.0,1612505.0,37.86,21.99,26.03,-0.40586563906593753,25.62413504757957
783
+ 781,053-024,-53,24,771275.0,1612505.0,24.47,22.78,24.91,-0.2900112375624997,24.61998860984961
784
+ 782,053-025,-53,25,771375.0,1612505.0,34.68,55.48,24.03,-0.38704941950886046,23.64295126713665
785
+ 783,053-026,-53,26,771475.0,1612505.0,46.1,28.58,24.86,-0.6160997446123143,24.24390086573925
786
+ 784,053-027,-53,27,771575.0,1612505.0,36.73,34.05,24.82,-0.43754626716392686,24.38245342766029
787
+ 785,053-028,-53,28,771675.0,1612505.0,69.03,11.93,23.66,-0.7981073074091538,22.861892540002955
788
+ 786,053-029,-53,29,771775.0,1612505.0,79.31,13.62,23.41,-0.9603026612584953,22.449697186153614
789
+ 787,053-030,-53,30,771875.0,1612505.0,43.09,32.01,23.93,-0.47757275329573295,23.45242755188005
790
+ 788,053-031,-53,31,771975.0,1612505.0,43.26,32.16,24.57,-0.46680274578066666,24.103196949043554
791
+ 789,053-032,-53,32,772075.0,1612505.0,88.05,2.41,23.68,-0.9682115902973193,22.711788714878463
792
+ 790,053-033,-53,33,772175.0,1612505.0,93.98,0.55,23.06,-1.0444435683888527,22.01555589755353
793
+ 791,054-018,-54,18,770675.0,1612405.0,30.74,40.65,25.64,-0.2774697065840916,25.362529683064345
794
+ 792,054-019,-54,19,770775.0,1612405.0,14.29,41.16,25.65,-0.12006268496614274,25.52993693356413
795
+ 793,054-020,-54,20,770875.0,1612405.0,28.43,43.97,26.54,-0.299345785634939,26.240655129892406
796
+ 794,054-021,-54,21,770975.0,1612405.0,26.68,12.72,27.11,-0.332354750644954,26.77764585970661
797
+ 795,054-022,-54,22,771075.0,1612405.0,32.92,22.19,27.02,-0.44800597260467256,26.571994485159
798
+ 796,054-023,-54,23,771175.0,1612405.0,35.14,30.99,26.25,-0.37726792383950697,25.872732076160492
799
+ 797,054-024,-54,24,771275.0,1612405.0,78.86,6.62,24.04,-0.7187798013377806,23.321221114189562
800
+ 798,054-025,-54,25,771375.0,1612405.0,76.88,19.53,23.89,-0.7808253328113114,23.109174056837126
801
+ 799,054-026,-54,26,771475.0,1612405.0,62.59,21.14,24.94,-0.6943459852156537,24.245654548841962
802
+ 800,054-027,-54,27,771575.0,1612405.0,52.35,34.76,24.78,-0.5858400011090926,24.194160685536414
803
+ 801,054-028,-54,28,771675.0,1612405.0,68.58,12.35,23.85,-0.818112930785145,23.031887450684582
804
+ 802,054-029,-54,29,771775.0,1612405.0,46.74,42.76,24.51,-0.5580312143448597,23.951969014536978
805
+ 803,055-018,-55,18,770675.0,1612305.0,16.71,60.51,26.43,-0.1672371706063398,26.26276313456944
806
+ 804,055-019,-55,19,770775.0,1612305.0,33.18,45.14,26.76,-0.40489498873946345,26.35510524014237
807
+ 805,055-020,-55,20,770875.0,1612305.0,22.28,34.47,27.02,-0.2341693096470378,26.785831148116635
808
+ 806,055-021,-55,21,770975.0,1612305.0,44.36,22.37,26.73,-0.44505494372993176,26.284944598506396
809
+ 807,055-022,-55,22,771075.0,1612305.0,32.27,46.07,26.77,-0.35283414997613255,26.41716630778754
810
+ 808,055-023,-55,23,771175.0,1612305.0,45.77,41.53,26.77,-0.41439278126722234,26.35560767649645
811
+ 809,055-024,-55,24,771275.0,1612305.0,51.92,31.01,25.31,-0.4587456975208015,24.851253768421582
812
+ 810,055-025,-55,25,771375.0,1612305.0,34.38,49.06,25.26,-0.32808844210483,24.931911786777007
813
+ 811,055-026,-55,26,771475.0,1612305.0,50.23,33.1,25.58,-0.7041373308590876,24.875862592846968
814
+ 812,055-027,-55,27,771575.0,1612305.0,35.41,48.61,25.68,-0.5170041006990413,25.16299620447674
815
+ 813,055-028,-55,28,771675.0,1612305.0,44.12,21.84,25.22,-0.6582618149463737,24.561737498408117
816
+ 814,056-019,-56,19,770775.0,1612205.0,26.35,53.15,26.21,-0.37016145906746356,25.839837625405192
817
+ 815,056-020,-56,20,770875.0,1612205.0,45.09,35.39,27.37,-0.5409787259805849,26.82902211325281
818
+ 816,056-021,-56,21,770975.0,1612205.0,9.87,36.88,27.81,-0.13146333213592198,27.67853613380646
819
+ 817,056-022,-56,22,771075.0,1612205.0,42.96,8.7,26.39,-0.4051759273682462,25.98482346228019
820
+ 818,056-023,-56,23,771175.0,1612205.0,70.21,4.89,25.46,-0.661952002322239,24.79804708215042
821
+ 819,056-024,-56,24,771275.0,1612205.0,37.69,32.77,25.19,-0.3342192748329225,24.855781259224695
822
+ 820,056-025,-56,25,771375.0,1612205.0,59.15,18.33,25.11,-0.5511716103399263,24.558829000011634
823
+ 821,056-026,-56,26,771475.0,1612205.0,54.95,36.43,25.54,-0.6700182030564206,24.86998271247092
824
+ 822,056-027,-56,27,771575.0,1612205.0,12.5,57.25,26.57,-0.16555847325022618,26.404441221573993
825
+ 823,057-019,-57,19,770775.0,1612105.0,57.59,18.59,24.97,-0.8264031915020646,24.14359612185243
826
+ 824,057-020,-57,20,770875.0,1612105.0,23.43,63.68,27.44,-0.302074938708609,27.137925595349007
827
+ 825,057-021,-57,21,770975.0,1612105.0,29.64,36.52,27.58,-0.31418558223454945,27.265814341471504
828
+ 826,057-022,-57,22,771075.0,1612105.0,39.86,20.31,25.94,-0.40145245507286514,25.538548078984753
829
+ 827,057-023,-57,23,771175.0,1612105.0,43.05,39.19,24.49,-0.3990231108539655,24.0909766602642
830
+ 828,057-024,-57,24,771275.0,1612105.0,49.91,32.53,24.01,-0.48696299826167355,23.52303723062016
831
+ 829,057-025,-57,25,771375.0,1612105.0,38.35,33.18,24.85,-0.38244874808835105,24.467551633381376
832
+ 830,057-026,-57,26,771475.0,1612105.0,33.36,21.57,25.73,-0.39940894847523173,25.330590593761098
833
+ 831,058-019,-58,19,770775.0,1612005.0,30.8,48.7,24.68,-0.36143845474496195,24.318561850430818
834
+ 832,058-020,-58,20,770875.0,1612005.0,21.92,65.43,27.32,-0.3177099958727818,27.002289698951436
835
+ 833,058-021,-58,21,770975.0,1612005.0,18.51,61.71,27.23,-0.242739654332255,26.987259887904074
836
+ 834,058-022,-58,22,771075.0,1612005.0,44.02,37.26,25.77,-0.6190176225774632,25.15098283518621
837
+ 835,058-023,-58,23,771175.0,1612005.0,44.63,5.67,24.31,-0.5098694882847351,23.800129977657647
838
+ 836,058-024,-58,24,771275.0,1612005.0,64.67,3.86,24.13,-0.7344547005352927,23.39554446023131
839
+ 837,058-025,-58,25,771375.0,1612005.0,23.86,14.22,25.29,-0.24246736683457512,25.04753354869277
840
+ 838,059-019,-59,19,770775.0,1611905.0,48.49,13.52,24.0,-0.48661090164974113,23.51338909835026
841
+ 839,059-020,-59,20,770875.0,1611905.0,33.35,49.5,25.49,-0.3810766907108623,25.1089230804073
842
+ 840,059-021,-59,21,770975.0,1611905.0,30.35,52.15,26.11,-0.33795479280167307,25.772045817549888
843
+ 841,059-022,-59,22,771075.0,1611905.0,23.03,59.74,25.85,-0.26369158592267944,25.586308795547048
844
+ 842,059-023,-59,23,771175.0,1611905.0,39.61,29.12,25.19,-0.4589174351459767,24.73108309891164
845
+ 843,059-024,-59,24,771275.0,1611905.0,14.97,49.49,25.52,-0.17776665450592793,25.342233803257745
846
+ 844,060-019,-60,19,770775.0,1611805.0,53.46,1.16,23.42,-0.4743902150649863,22.94560986122896
847
+ 845,060-020,-60,20,770875.0,1611805.0,60.49,20.38,23.32,-0.62207935954767,22.69792033527655
848
+ 846,060-021,-60,21,770975.0,1611805.0,47.42,27.33,24.51,-0.4657440230174477,24.04425620586439
849
+ 847,060-022,-60,22,771075.0,1611805.0,29.88,47.63,25.32,-0.3158706325607906,25.004129062263427
850
+ 848,060-023,-60,23,771175.0,1611805.0,14.18,57.02,25.7,-0.13907857132655826,25.560922191612896
851
+ 849,060-024,-60,24,771275.0,1611805.0,41.29,37.02,26.07,-0.453081740934218,25.616917953890002
852
+ 850,060-025,-60,25,771375.0,1611805.0,16.34,29.54,26.51,-0.16973169528577176,26.340268533596063
853
+ 851,061-019,-61,19,770775.0,1611705.0,36.33,4.97,24.07,-0.2707014428085436,23.799298252015674
854
+ 852,061-020,-61,20,770875.0,1611705.0,57.26,4.47,23.27,-0.3892335314788234,22.88076692628485
855
+ 853,061-021,-61,21,770975.0,1611705.0,41.55,21.83,23.75,-0.30089351536014314,23.449106484639856
856
+ 854,061-022,-61,22,771075.0,1611705.0,38.46,27.81,24.46,-0.4337184217347785,24.02628066273788
857
+ 855,061-023,-61,23,771175.0,1611705.0,38.16,32.16,24.94,-0.4405252014558824,24.499475332601733
858
+ 856,061-024,-61,24,771275.0,1611705.0,35.42,39.73,25.52,-0.4533443760902508,25.066656081673422
859
+ 857,061-025,-61,25,771375.0,1611705.0,59.62,10.64,24.83,-0.6685314556941322,24.161468468011922
860
+ 858,062-019,-62,19,770775.0,1611605.0,48.76,22.34,24.77,-0.28402652608614193,24.48597393167753
861
+ 859,062-020,-62,20,770875.0,1611605.0,66.67,1.22,23.29,-0.49123104513781035,22.798769870389535
862
+ 860,062-021,-62,21,770975.0,1611605.0,59.58,9.4,22.87,-0.7199254158083641,22.150075423425033
863
+ 861,062-022,-62,22,771075.0,1611605.0,46.21,21.34,23.47,-0.5061569060134714,22.96384240734102
864
+ 862,062-023,-62,23,771175.0,1611605.0,49.52,14.56,23.87,-0.5319406612522489,23.33806017798115
865
+ 863,062-024,-62,24,771275.0,1611605.0,44.96,27.95,24.52,-0.47470922934424864,24.045291228419423
866
+ 864,062-025,-62,25,771375.0,1611605.0,47.55,22.26,23.83,-0.47656253723741676,23.353437386468638
867
+ 865,062-026,-62,26,771475.0,1611605.0,60.76,6.29,24.47,-0.7544151947605648,23.715584118593927
868
+ 866,063-019,-63,19,770775.0,1611505.0,49.04,11.95,23.96,-0.36338438327063927,23.596614701202018
869
+ 867,063-020,-63,20,770875.0,1611505.0,59.8,2.12,22.8,-0.43935932260442584,22.360639914456122
870
+ 868,063-021,-63,21,770975.0,1611505.0,55.33,11.13,23.0,-0.6275865510726788,22.372413448927322
871
+ 869,063-022,-63,22,771075.0,1611505.0,21.06,32.7,23.56,-0.1698012348529507,23.390198231089432
872
+ 870,063-023,-63,23,771175.0,1611505.0,31.54,19.83,23.8,-0.32843069625167537,23.47156854080887
873
+ 871,063-024,-63,24,771275.0,1611505.0,46.05,26.15,24.16,-0.44635878542587676,23.713641061986234
874
+ 872,063-025,-63,25,771375.0,1611505.0,67.03,20.64,23.58,-0.688535360889607,22.89146456281645
875
+ 873,063-026,-63,26,771475.0,1611505.0,64.07,30.52,24.56,-0.7249407257138938,23.83505874022849
876
+ 874,063-027,-63,27,771575.0,1611505.0,21.35,32.25,26.23,-0.23868801443105966,25.99131152780527
877
+ 875,064-019,-64,19,770775.0,1611405.0,71.1,0.0,22.96,-0.3413079592700395,22.618691125202616
878
+ 876,064-020,-64,20,770875.0,1611405.0,75.53,0.0,22.73,-0.515353916093254,22.214645626143074
879
+ 877,064-021,-64,21,770975.0,1611405.0,39.3,3.31,23.77,-0.3919623420252669,23.378038115738406
880
+ 878,064-022,-64,22,771075.0,1611405.0,28.56,22.04,24.02,-0.27493995909824603,23.745060498665424
881
+ 879,064-023,-64,23,771175.0,1611405.0,29.65,22.98,23.68,-0.2791632808401903,23.40083702433559
882
+ 880,064-024,-64,24,771275.0,1611405.0,38.43,23.67,23.93,-0.31388232249130193,23.61611798268448
883
+ 881,064-025,-64,25,771375.0,1611405.0,68.4,11.38,23.19,-0.5014502554844709,22.688550278573146
884
+ 882,064-026,-64,26,771475.0,1611405.0,41.51,19.37,24.27,-0.43610555552558616,23.833894902238086
885
+ 883,064-027,-64,27,771575.0,1611405.0,31.8,24.92,25.92,-0.3585404469603301,25.561459629333616
886
+ 884,065-020,-65,20,770875.0,1611305.0,68.45,0.0,22.36,-0.2935190390389103,22.066481571312654
887
+ 885,065-021,-65,21,770975.0,1611305.0,59.66,0.24,22.45,-0.37668959724521284,22.07331116569424
888
+ 886,065-022,-65,22,771075.0,1611305.0,61.42,1.86,22.48,-0.3602519105843915,22.119747631651936
889
+ 887,065-023,-65,23,771175.0,1611305.0,47.5,7.59,22.9,-0.2902853112902767,22.609714307239997
890
+ 888,065-024,-65,24,771275.0,1611305.0,35.01,36.53,23.23,-0.2181996514482022,23.011799890788126
891
+ 889,065-025,-65,25,771375.0,1611305.0,52.42,14.31,22.47,-0.37734456904893493,22.09265474430556
892
+ 890,065-026,-65,26,771475.0,1611305.0,46.84,35.3,23.2,-0.2555174086338967,22.944483354305557
893
+ 891,065-027,-65,27,771575.0,1611305.0,54.29,7.4,24.37,-0.5581224419923735,23.811878397241024
894
+ 892,066-021,-66,21,770975.0,1611205.0,38.64,0.0,21.66,-0.1873245783780388,21.47267526903407
895
+ 893,066-022,-66,22,771075.0,1611205.0,43.52,0.0,21.44,-0.17739498141629545,21.262605552641322
896
+ 894,066-023,-66,23,771175.0,1611205.0,46.21,0.1,21.79,-0.1997714589708041,21.59022945655654
897
+ 895,066-024,-66,24,771275.0,1611205.0,41.0,6.88,22.17,-0.1681154928461513,22.001884583447794
898
+ 896,066-025,-66,25,771375.0,1611205.0,45.96,18.16,22.3,-0.2370109777106107,22.062988259349936
899
+ 897,066-026,-66,26,771475.0,1611205.0,44.38,8.08,22.72,-0.18462671536979483,22.535372597984697
900
+ 898,067-023,-67,23,771175.0,1611105.0,54.32,0.0,21.29,-0.1377701546776154,21.15223076084973
901
+ 899,067-024,-67,24,771275.0,1611105.0,44.33,4.04,21.42,-0.10550132744838511,21.314498748845562
902
+ 900,067-025,-67,25,771375.0,1611105.0,36.59,8.55,22.03,-0.09598918048154996,21.93401150616396
903
+ 901,067-026,-67,26,771475.0,1611105.0,56.25,3.26,22.3,-0.1538498533495553,22.14614938371099
904
+ 902,068-024,-68,24,771275.0,1611005.0,64.53,0.0,21.49,-0.22002642008811676,21.269973351030046
905
+ 903,068-025,-68,25,771375.0,1611005.0,54.93,0.0,21.57,-0.15904996154870782,21.410949733275512
map-spike.py ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Example taken from here - https://shinylive.io/py/examples/#map
2
+
3
+ import os
4
+ from shiny import reactive
5
+ from shiny.express import input, render, ui
6
+ from shinywidgets import render_widget
7
+ import ipyleaflet as ipyl
8
+
9
+ import pandas as pd
10
+ import geopandas as gpd
11
+ from ipyleaflet import Map, Rectangle, basemaps, basemap_to_tiles, LayersControl, ColorMap, FeatureGroup
12
+ from branca.colormap import linear
13
+
14
+ from shapely.geometry import box
15
+
16
+ def point_to_square(row, size=0.0009):
17
+ x, y = row.geometry.x, row.geometry.y
18
+ half = size / 2
19
+ return box(x - half, y - half, x + half, y + half)
20
+
21
+
22
+
23
+ df = pd.read_csv("example.csv")
24
+
25
+ # Step 2: Create GeoDataFrame with UTM Zone 15N
26
+ gdf = gpd.GeoDataFrame(
27
+ df,
28
+ geometry=gpd.points_from_xy(df['x'], df['y']),
29
+ crs="EPSG:32615" # <- Your current system
30
+ )
31
+
32
+
33
+
34
+ # Step 3: Reproject to WGS84 (lat/lon)
35
+ gdf = gdf.to_crs("EPSG:4326")
36
+
37
+ # Convert points to small square polygons
38
+ gdf["geometry_box"] = gdf.apply(point_to_square, axis=1)
39
+
40
+ print(gdf.head())
41
+
42
+ # Step 4: Extract lat/lon columns for ipyleaflet
43
+ gdf["lat"] = gdf.geometry.y
44
+ gdf["lon"] = gdf.geometry.x
45
+
46
+ temp_colormap = linear.YlOrRd_09.scale(df['LST'].min(), df['LST'].max())
47
+
48
+ # def generate_temp_layer():
49
+ # rectangles = []
50
+ # for _, row in gdf.iterrows():
51
+ # lat = row['lat']
52
+ # lon = row['lon']
53
+ # size_deg = 0.0009 # Approx ~100m (latitude degrees)
54
+
55
+ # bounds = [
56
+ # (lat - size_deg / 2, lon - size_deg / 2),
57
+ # (lat + size_deg / 2, lon + size_deg / 2)
58
+ # ]
59
+
60
+ # color = temp_colormap(row['LST'])
61
+
62
+ # rect = Rectangle(
63
+ # bounds=bounds,
64
+ # color=color,
65
+ # fill_color=color,
66
+ # fill_opacity=0.5,
67
+ # weight=0
68
+ # )
69
+ # rectangles.append(rect)
70
+ # return rectangles
71
+
72
+ city_centers = {
73
+ "London": (51.5074, 0.1278),
74
+ "Paris": (48.8566, 2.3522),
75
+ "New York": (40.7128, -74.0060),
76
+ "Guatemala city": (14.6349149, -90.5068824),
77
+ "Zone 15": (14.61925, -90.49386)
78
+ }
79
+
80
+ ui.input_text("Text", "Some vector", "Zone 15")
81
+
82
+
83
+
84
+
85
+ @render_widget
86
+ def map():
87
+ city = use_in_model(input.Text())
88
+ center = city_centers.get(city, (0, 0))
89
+ m = Map(center=center, zoom=13, basemap=basemaps.OpenStreetMap.Mapnik)
90
+ # Add rectangle overlay
91
+
92
+ geo_data = ipyl.GeoData(
93
+ geo_dataframe=gdf,
94
+ style={
95
+ "color": "black",
96
+ "fillColor": "#3366cc",
97
+ "opacity": 0.05,
98
+ "weight": 1.9,
99
+ "dashArray": "2",
100
+ "fillOpacity": 0.6,
101
+ },
102
+ hover_style={"fillColor": "red", "fillOpacity": 0.2},
103
+ name="Temperature",
104
+ )
105
+ m.add(geo_data)
106
+ m.add(ipyl.LayersControl())
107
+
108
+ return m
109
+
110
+ # @render_widget
111
+ # def map():
112
+ # city = use_in_model(input.Text())
113
+ # center = city_centers.get(city, (0, 0))
114
+
115
+ # # m = Map(center=center, zoom=13, basemap=basemaps.OpenStreetMap.Mapnik)
116
+ # m = Map(center=city_centers["Guatemala city"], zoom=13, basemap=basemaps.OpenStreetMap.Mapnik)
117
+
118
+ # print(f"Centering on city: {city}")
119
+
120
+ # # Add rectangle overlay
121
+ # for rect in generate_temp_layer():
122
+ # m.add_layer(rect)
123
+
124
+ # # Optional: Add color legend
125
+ # # m.add_control(temp_colormap.legend(title= "Temp"))
126
+
127
+ # # Add controls
128
+ # m.add_control(LayersControl(position="topright"))
129
+
130
+ # return m
131
+
132
+
133
+ def use_in_model(x):
134
+ # TODO: Call some model loaded in huggingface_hub.
135
+ # Define the client once then just call the
136
+ # client from here.
137
+
138
+ # from huggingface_hub import InferenceClient
139
+ # client = InferenceClient(
140
+ # api_key=os.environ["HF_TOKEN"],
141
+ # provider="auto",
142
+ # )
143
+ #
144
+ # completion = client.chat.completions.create(
145
+ # model="deepseek-ai/DeepSeek-V3-0324",
146
+ # messages=[{"role": "user", "content": "A story about hiking in the mountains"}]
147
+ # )
148
+
149
+ return x
150
+
151
+
152
+ @render.text
153
+ def text():
154
+ return ("You entered: " + use_in_model(input.Text()))
155
+
156
+
157
+ @reactive.effect
158
+ def _():
159
+ try:
160
+ map.widget.center = city_centers[use_in_model(input.Text())]
161
+ except:
162
+ pass
plot_utils.py ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import matplotlib.pyplot as plt
2
+ import matplotlib.colors as colors
3
+ import matplotlib.cm as cm
4
+ import matplotlib.gridspec as gridspec
5
+
6
+
7
+ def show_two_plots(gdf, name1, name2, vmin, vmax, colorscheme, title1, title2, label, split=False):
8
+ if gdf.empty:
9
+ raise ValueError("GeoDataFrame is empty")
10
+
11
+ required_cols = [name1, name2]
12
+ for col in required_cols:
13
+ if col not in gdf.columns:
14
+ raise ValueError(f"Column '{col}' not found in gdf")
15
+
16
+ #Create a shared colormap and normalization
17
+ cmap = plt.colormaps[colorscheme]
18
+ norm = colors.Normalize(vmin=vmin, vmax=vmax)
19
+
20
+ # Create subplots
21
+ fig = plt.figure(figsize=(12, 6))
22
+ gs = gridspec.GridSpec(1, 3, width_ratios=[1, 1, 0.05], wspace=0.3)
23
+
24
+ axes = [fig.add_subplot(gs[0]), fig.add_subplot(gs[1]), fig.add_subplot(gs[2]) ]
25
+
26
+ if split:
27
+ # Split data into three GeoDataFrames
28
+ below_100 = gdf[gdf[name1] <= 100]
29
+ above_capacity = gdf[gdf[name1] > (100-gdf['%Construccion'])]
30
+ above_100 = gdf[gdf[name1] > 100]
31
+
32
+
33
+ # Plot values ≤ 100 using colormap
34
+ below_100.plot(column=name1, cmap='YlGn', legend=True, ax=axes[0], vmin=vmin, vmax=vmax, marker='s', markersize=10)
35
+
36
+ # Plot values > capacity in orange
37
+ above_capacity.plot(color='orange', ax=axes[0], label='> capacity due to construction', marker='x', markersize=10)
38
+
39
+ # Plot values > 100 in red
40
+ above_100.plot(color='firebrick', ax=axes[0], label='> 100% trees', marker='s', markersize=10)
41
+
42
+ # Add legend manually for orange points
43
+ orange_patch = plt.Line2D([0], [0], marker='o', color='w', label='> capacity due to construction',
44
+ markerfacecolor='orange', markersize=8)
45
+
46
+ # Add legend manually for red points
47
+ red_patch = plt.Line2D([0], [0], marker='o', color='w', label='>100% trees',
48
+ markerfacecolor='firebrick', markersize=8)
49
+
50
+ axes[0].legend(handles=[orange_patch, red_patch])
51
+
52
+
53
+ else:
54
+ # First plot
55
+ gdf.plot(column=name1, cmap=cmap, norm=norm, ax=axes[0], marker='s', markersize=10)
56
+ axes[0].set_title(title1)
57
+ axes[0].set_axis_off()
58
+
59
+
60
+ # Second plot (original)
61
+ gdf.plot(column=name2, cmap=cmap, norm=norm, ax=axes[1],marker='s', markersize=10)
62
+ axes[1].set_title(title2)
63
+ axes[1].set_axis_off()
64
+
65
+
66
+ # Shared colorbar
67
+ sm = cm.ScalarMappable(cmap=cmap, norm=norm)
68
+ sm._A = [] # Dummy array for the colormap
69
+ cbar = fig.colorbar(sm, cax=axes[2], orientation='vertical', fraction=0.03, pad=0.02)
70
+ cbar.set_label(label)
71
+
72
+ return fig
73
+
74
+ def show_one_plot(gdf, name, vmin, vmax, colorscheme, title, label):
75
+ # Second set of plots
76
+ cmap = plt.colormaps[colorscheme]
77
+ norm = colors.Normalize(vmin, vmax)
78
+
79
+ # Create subplots
80
+ # fig, axes = plt.subplots(1, 1, figsize=(6, 6))
81
+ fig = plt.figure(figsize=(12, 6))
82
+ gs = gridspec.GridSpec(1, 2, width_ratios=[1, 0.05], wspace=0.3)
83
+
84
+ axes = [fig.add_subplot(gs[0]), fig.add_subplot(gs[1])]
85
+
86
+ # First plot (simulated)
87
+ gdf.plot(column=name, cmap=cmap, ax=axes[0], marker='s', markersize=10)
88
+ axes[0].set_title(title)
89
+ axes[0].set_axis_off()
90
+
91
+ # Add a shared colorbar
92
+ sm = cm.ScalarMappable(cmap=cmap, norm=norm)
93
+ sm._A = [] # Dummy data for the colorbar
94
+ cbar = fig.colorbar(sm, cax=axes[1], orientation='vertical', fraction=0.03, pad=0.02)
95
+ cbar.set_label(label)
96
+
97
+
98
+ return fig
99
+
100
+
requirements.txt CHANGED
@@ -3,5 +3,7 @@ shiny
3
  shinywidgets
4
  plotly
5
  pandas
 
6
  ridgeplot
7
- ipyleaflet
 
 
3
  shinywidgets
4
  plotly
5
  pandas
6
+ geopandas
7
  ridgeplot
8
+ ipyleaflet
9
+ requests
training_dataframe.csv ADDED
@@ -0,0 +1,905 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,row,column,x,y,Elevacion,Neighbor_NDBI,Proximidad_agua,Neighbor_%CoberturaVeg,%CoberturaVeg,LST
2
+ 001-011,-1,11,769975.0,1617705.0,1462.42,-0.18,234.21,8.07,39.79,26.47
3
+ 001-012,-1,12,770075.0,1617705.0,1460.52,-0.17,132.41,8.07,66.87,25.81
4
+ 002-009,-2,9,769775.0,1617605.0,1432.93,-0.21,337.65,47.63,83.07,24.59
5
+ 002-010,-2,10,769875.0,1617605.0,1458.52,-0.21,288.93,38.65,91.83,25.19
6
+ 002-011,-2,11,769975.0,1617605.0,1477.37,-0.21,219.62,38.65,59.28,25.44
7
+ 002-012,-2,12,770075.0,1617605.0,1455.41,-0.21,129.07,38.65,40.68,25.12
8
+ 003-008,-3,8,769675.0,1617505.0,1438.17,-0.24,333.41,25.98,90.66,24.28
9
+ 003-009,-3,9,769775.0,1617505.0,1467.39,-0.21,269.63,25.98,74.5,25.49
10
+ 003-010,-3,10,769875.0,1617505.0,1481.73,-0.21,208.99,25.98,47.63,26.69
11
+ 003-011,-3,11,769975.0,1617505.0,1472.59,-0.26,148.56,27.46,38.65,25.86
12
+ 003-012,-3,12,770075.0,1617505.0,1432.38,-0.26,86.73,38.65,72.46,24.45
13
+ 004-006,-4,6,769475.0,1617405.0,1432.73,-0.24,419.78,39.36,92.47,24.31
14
+ 004-007,-4,7,769575.0,1617405.0,1445.24,-0.24,349.77,27.22,81.96,24.35
15
+ 004-008,-4,8,769675.0,1617405.0,1473.53,-0.24,270.35,25.98,67.13,25.7
16
+ 004-009,-4,9,769775.0,1617405.0,1484.71,-0.21,195.18,27.22,25.98,27.88
17
+ 004-010,-4,10,769875.0,1617405.0,1481.58,-0.27,130.69,25.98,27.46,27.82
18
+ 004-011,-4,11,769975.0,1617405.0,1449.39,-0.27,70.2,27.46,64.78,25.44
19
+ 005-005,-5,5,769375.0,1617305.0,1445.18,-0.23,483.28,16.27,90.41,24.74
20
+ 005-006,-5,6,769475.0,1617305.0,1468.29,-0.24,393.26,15.76,84.07,25.29
21
+ 005-007,-5,7,769575.0,1617305.0,1478.15,-0.24,302.02,15.76,61.16,26.4
22
+ 005-008,-5,8,769675.0,1617305.0,1486.73,-0.24,213.92,15.76,27.22,28.07
23
+ 005-009,-5,9,769775.0,1617305.0,1482.6,-0.26,129.16,17.47,35.18,28.21
24
+ 005-010,-5,10,769875.0,1617305.0,1453.86,-0.27,56.11,25.98,75.81,26.26
25
+ 006-004,-6,4,769275.0,1617205.0,1443.6,-0.2,565.09,59.8,70.96,24.72
26
+ 006-005,-6,5,769375.0,1617205.0,1474.39,-0.2,467.49,16.27,64.46,25.44
27
+ 006-006,-6,6,769475.0,1617205.0,1487.53,-0.2,366.72,15.76,16.27,27.79
28
+ 006-007,-6,7,769575.0,1617205.0,1487.38,-0.16,269.57,16.27,15.76,28.88
29
+ 006-008,-6,8,769675.0,1617205.0,1487.78,-0.2,173.82,15.76,17.47,28.6
30
+ 006-009,-6,9,769775.0,1617205.0,1464.17,-0.29,77.84,17.47,72.3,26.8
31
+ 007-003,-7,3,769175.0,1617105.0,1453.82,-0.3,655.47,22.44,78.26,25.1
32
+ 007-004,-7,4,769275.0,1617105.0,1474.23,-0.18,556.7,22.44,78.56,25.15
33
+ 007-005,-7,5,769375.0,1617105.0,1472.88,-0.16,457.95,16.27,80.23,25.93
34
+ 007-006,-7,6,769475.0,1617105.0,1488.37,-0.18,356.23,15.76,23.22,28.13
35
+ 007-007,-7,7,769575.0,1617105.0,1489.12,-0.09,257.52,15.76,21.28,29.12
36
+ 007-008,-7,8,769675.0,1617105.0,1484.6,-0.27,158.87,15.76,33.26,27.83
37
+ 007-009,-7,9,769775.0,1617105.0,1447.02,-0.29,57.78,17.47,52.47,25.72
38
+ 008-002,-8,2,769075.0,1617005.0,1446.4,-0.26,746.35,18.15,76.76,24.38
39
+ 008-003,-8,3,769175.0,1617005.0,1478.74,-0.3,649.84,14.12,53.75,26.16
40
+ 008-004,-8,4,769275.0,1617005.0,1489.64,-0.18,550.99,14.12,22.44,27.58
41
+ 008-005,-8,5,769375.0,1617005.0,1481.29,-0.18,452.13,14.12,65.87,27.17
42
+ 008-006,-8,6,769475.0,1617005.0,1487.19,-0.18,350.29,16.03,19.93,28.47
43
+ 008-007,-8,7,769575.0,1617005.0,1489.63,-0.15,251.44,16.03,20.17,29.42
44
+ 008-008,-8,8,769675.0,1617005.0,1482.82,-0.28,152.63,18.79,34.95,27.57
45
+ 008-009,-8,9,769775.0,1617005.0,1444.46,-0.3,51.86,33.26,77.14,25.21
46
+ 009-002,-9,2,769075.0,1616905.0,1471.17,-0.3,746.12,11.68,64.08,25.32
47
+ 009-003,-9,3,769175.0,1616905.0,1490.82,-0.3,644.39,8.52,18.15,28.6
48
+ 009-004,-9,4,769275.0,1616905.0,1489.24,-0.15,545.54,8.52,14.12,29.68
49
+ 009-005,-9,5,769375.0,1616905.0,1488.04,-0.15,446.69,8.52,30.83,28.89
50
+ 009-006,-9,6,769475.0,1616905.0,1487.69,-0.15,344.84,9.2,16.03,29.25
51
+ 009-007,-9,7,769575.0,1616905.0,1486.63,-0.15,246.0,9.2,18.79,29.32
52
+ 009-008,-9,8,769675.0,1616905.0,1470.52,-0.32,147.18,9.2,77.44,26.57
53
+ 009-009,-9,9,769775.0,1616905.0,1441.6,-0.32,51.29,34.95,86.24,24.36
54
+ 010-001,-10,1,768975.0,1616805.0,1472.84,-0.32,839.73,19.59,77.62,24.6
55
+ 010-002,-10,2,769075.0,1616805.0,1487.52,-0.28,740.95,11.68,19.59,27.18
56
+ 010-004,-10,4,769275.0,1616805.0,1488.67,-0.01,540.24,5.52,8.52,30.48
57
+ 010-005,-10,5,769375.0,1616805.0,1490.0,-0.01,441.39,5.33,23.82,29.94
58
+ 010-006,-10,6,769475.0,1616805.0,1489.23,-0.01,339.55,5.33,12.55,29.74
59
+ 010-007,-10,7,769575.0,1616805.0,1488.51,-0.15,240.71,5.33,9.2,29.6
60
+ 010-008,-10,8,769675.0,1616805.0,1473.51,-0.32,141.89,9.2,49.22,27.03
61
+ 010-009,-10,9,769775.0,1616805.0,1440.76,-0.3,46.98,49.22,74.04,24.27
62
+ 011-000,-11,0,768875.0,1616705.0,1460.6,-0.18,924.94,83.49,61.0,25.38
63
+ 011-001,-11,1,768975.0,1616705.0,1471.53,-0.21,834.51,19.59,77.12,25.15
64
+ 011-002,-11,2,769075.0,1616705.0,1485.56,-0.28,735.65,11.68,30.14,27.26
65
+ 011-003,-11,3,769175.0,1616705.0,1490.23,-0.04,633.8,5.52,16.3,29.77
66
+ 011-004,-11,4,769275.0,1616705.0,1488.45,-0.07,534.95,6.27,5.52,30.59
67
+ 011-005,-11,5,769375.0,1616705.0,1489.64,-0.07,436.09,5.33,6.27,30.17
68
+ 011-006,-11,6,769475.0,1616705.0,1490.13,-0.07,334.25,6.27,5.33,29.58
69
+ 011-007,-11,7,769575.0,1616705.0,1489.94,-0.14,235.41,5.33,10.0,29.29
70
+ 011-008,-11,8,769675.0,1616705.0,1473.26,-0.32,136.6,9.2,52.64,27.24
71
+ 011-009,-11,9,769775.0,1616705.0,1443.51,-0.32,41.59,24.87,69.98,24.52
72
+ 012-000,-12,0,768875.0,1616605.0,1452.16,-0.21,914.01,61.0,88.13,25.31
73
+ 012-001,-12,1,768975.0,1616605.0,1469.36,-0.28,829.07,21.85,51.86,26.25
74
+ 012-002,-12,2,769075.0,1616605.0,1490.53,-0.28,730.21,13.15,21.85,27.91
75
+ 012-003,-12,3,769175.0,1616605.0,1490.88,-0.07,628.36,5.52,16.26,29.65
76
+ 012-004,-12,4,769275.0,1616605.0,1489.2,-0.07,529.51,5.52,16.34,30.35
77
+ 012-005,-12,5,769375.0,1616605.0,1489.68,-0.14,430.66,5.33,25.68,30.37
78
+ 012-006,-12,6,769475.0,1616605.0,1489.96,-0.14,328.81,5.33,27.25,29.43
79
+ 012-007,-12,7,769575.0,1616605.0,1489.02,-0.14,229.98,5.33,50.71,28.57
80
+ 012-008,-12,8,769675.0,1616605.0,1471.47,-0.3,131.16,10.0,87.54,26.81
81
+ 012-009,-12,9,769775.0,1616605.0,1448.53,-0.3,34.94,24.87,71.77,24.69
82
+ 013-002,-13,2,769075.0,1616505.0,1481.66,-0.2,725.46,13.15,23.89,27.84
83
+ 013-003,-13,3,769175.0,1616505.0,1492.07,-0.14,623.54,15.59,13.15,29.34
84
+ 013-004,-13,4,769275.0,1616505.0,1490.97,-0.07,524.62,5.98,20.0,30.29
85
+ 013-005,-13,5,769375.0,1616505.0,1490.46,-0.14,425.72,16.34,5.98,31.07
86
+ 013-006,-13,6,769475.0,1616505.0,1490.81,-0.13,323.82,5.98,31.72,29.35
87
+ 013-007,-13,7,769575.0,1616505.0,1487.55,-0.2,224.94,27.25,45.0,28.14
88
+ 013-008,-13,8,769675.0,1616505.0,1481.92,-0.24,126.09,37.72,55.43,26.45
89
+ 013-009,-13,9,769775.0,1616505.0,1453.52,-0.24,33.4,24.87,59.38,24.91
90
+ 013-010,-13,10,769875.0,1616505.0,1464.99,-0.24,97.4,23.24,31.25,24.73
91
+ 013-011,-13,11,769975.0,1616505.0,1483.84,-0.17,173.12,22.19,44.02,25.98
92
+ 013-013,-13,13,770175.0,1616505.0,1488.37,-0.07,373.32,12.89,41.7,27.99
93
+ 013-014,-13,14,770275.0,1616505.0,1487.72,-0.07,471.93,0.0,28.34,29.03
94
+ 013-015,-13,15,770375.0,1616505.0,1489.28,-0.07,570.86,0.0,25.47,29.74
95
+ 014-002,-14,2,769075.0,1616405.0,1470.77,-0.2,726.27,5.81,15.59,27.06
96
+ 014-003,-14,3,769175.0,1616405.0,1492.97,-0.16,624.98,5.81,15.66,28.82
97
+ 014-004,-14,4,769275.0,1616405.0,1491.86,-0.03,526.22,5.98,17.32,29.79
98
+ 014-005,-14,5,769375.0,1616405.0,1491.49,-0.14,427.47,5.98,24.89,30.11
99
+ 014-006,-14,6,769475.0,1616405.0,1491.31,-0.14,325.76,5.98,31.63,28.78
100
+ 014-007,-14,7,769575.0,1616405.0,1491.71,-0.2,227.06,27.32,37.72,27.91
101
+ 014-008,-14,8,769675.0,1616405.0,1483.97,-0.21,128.46,37.72,52.59,26.26
102
+ 014-009,-14,9,769775.0,1616405.0,1450.61,-0.21,36.12,29.82,82.22,25.3
103
+ 014-010,-14,10,769875.0,1616405.0,1467.13,-0.21,73.81,29.82,51.39,25.28
104
+ 014-011,-14,11,769975.0,1616405.0,1487.8,-0.12,168.93,29.82,34.59,26.37
105
+ 014-012,-14,12,770075.0,1616405.0,1492.61,-0.12,270.18,24.19,41.3,27.12
106
+ 014-013,-14,13,770175.0,1616405.0,1492.01,-0.11,368.42,23.52,44.86,27.76
107
+ 014-014,-14,14,770275.0,1616405.0,1491.39,-0.11,466.46,23.52,46.67,28.14
108
+ 014-015,-14,15,770375.0,1616405.0,1493.23,-0.1,566.73,23.52,31.89,28.74
109
+ 014-016,-14,16,770475.0,1616405.0,1496.0,-0.1,661.96,25.47,40.76,29.2
110
+ 014-017,-14,17,770575.0,1616405.0,1499.79,-0.09,750.72,4.45,37.54,29.8
111
+ 015-003,-15,3,769175.0,1616305.0,1492.78,-0.21,634.16,5.81,13.3,28.41
112
+ 015-004,-15,4,769275.0,1616305.0,1492.6,-0.03,535.94,11.31,18.73,29.42
113
+ 015-005,-15,5,769375.0,1616305.0,1492.06,-0.13,437.77,11.31,18.67,29.4
114
+ 015-006,-15,6,769475.0,1616305.0,1492.39,-0.16,336.67,11.31,27.32,29.64
115
+ 015-007,-15,7,769575.0,1616305.0,1489.61,-0.2,238.62,20.27,56.11,28.34
116
+ 015-008,-15,8,769675.0,1616305.0,1463.48,-0.2,140.66,37.72,84.65,26.43
117
+ 015-009,-15,9,769775.0,1616305.0,1452.27,-0.2,42.97,18.96,88.0,26.91
118
+ 015-010,-15,10,769875.0,1616305.0,1456.25,-0.19,57.21,18.96,29.82,26.67
119
+ 015-011,-15,11,769975.0,1616305.0,1475.32,-0.12,153.91,18.96,65.51,26.12
120
+ 015-012,-15,12,770075.0,1616305.0,1492.51,-0.16,253.17,24.19,57.79,26.91
121
+ 015-013,-15,13,770175.0,1616305.0,1493.27,-0.16,347.82,18.7,24.19,27.71
122
+ 015-014,-15,14,770275.0,1616305.0,1493.68,-0.18,440.15,18.7,23.52,28.14
123
+ 015-015,-15,15,770375.0,1616305.0,1495.54,-0.18,533.18,18.7,49.88,27.97
124
+ 015-016,-15,16,770475.0,1616305.0,1500.07,-0.18,622.35,31.89,55.61,28.71
125
+ 015-017,-15,17,770575.0,1616305.0,1502.8,-0.08,708.38,30.69,52.7,29.01
126
+ 015-018,-15,18,770675.0,1616305.0,1507.95,-0.09,710.5,30.69,41.2,29.73
127
+ 015-019,-15,19,770775.0,1616305.0,1510.15,0.01,614.96,3.42,59.93,30.09
128
+ 016-003,-16,3,769175.0,1616205.0,1492.78,-0.27,647.46,5.81,20.37,27.83
129
+ 016-004,-16,4,769275.0,1616205.0,1493.44,-0.15,549.79,8.2,21.23,29.09
130
+ 016-005,-16,5,769375.0,1616205.0,1492.8,-0.04,452.38,8.2,11.31,29.33
131
+ 016-006,-16,6,769475.0,1616205.0,1492.88,-0.17,352.38,8.2,20.27,29.11
132
+ 016-007,-16,7,769575.0,1616205.0,1480.41,-0.17,255.76,20.27,67.74,27.32
133
+ 016-008,-16,8,769675.0,1616205.0,1472.98,-0.17,159.58,21.92,67.33,26.31
134
+ 016-009,-16,9,769775.0,1616205.0,1464.59,-0.17,61.29,18.96,86.11,27.2
135
+ 016-010,-16,10,769875.0,1616205.0,1454.37,-0.12,37.61,29.82,18.96,26.96
136
+ 016-011,-16,11,769975.0,1616205.0,1468.51,-0.16,125.71,18.96,46.8,26.35
137
+ 016-012,-16,12,770075.0,1616205.0,1494.64,-0.16,219.34,24.19,70.68,26.7
138
+ 016-013,-16,13,770175.0,1616205.0,1495.23,-0.16,309.2,18.7,39.65,28.13
139
+ 016-014,-16,14,770275.0,1616205.0,1495.75,-0.18,398.34,20.35,18.7,28.4
140
+ 016-015,-16,15,770375.0,1616205.0,1499.14,-0.12,489.26,18.7,65.08,27.85
141
+ 016-016,-16,16,770475.0,1616205.0,1504.6,-0.18,573.54,20.35,38.0,28.61
142
+ 016-017,-16,17,770575.0,1616205.0,1506.94,-0.09,639.32,30.69,44.96,28.78
143
+ 016-018,-16,18,770675.0,1616205.0,1511.52,-0.09,678.77,28.41,30.69,29.03
144
+ 017-002,-17,2,769075.0,1616105.0,1459.6,-0.27,762.58,15.42,61.6,25.37
145
+ 017-003,-17,3,769175.0,1616105.0,1492.58,-0.27,666.67,13.23,60.56,26.99
146
+ 017-004,-17,4,769275.0,1616105.0,1494.94,-0.15,570.53,8.2,13.23,28.67
147
+ 017-005,-17,5,769375.0,1616105.0,1493.63,-0.06,474.7,11.31,8.2,29.08
148
+ 017-006,-17,6,769475.0,1616105.0,1490.38,-0.17,376.33,8.2,32.61,27.98
149
+ 017-007,-17,7,769575.0,1616105.0,1476.53,-0.16,281.49,20.27,72.6,26.58
150
+ 017-008,-17,8,769675.0,1616105.0,1489.84,-0.17,188.14,20.55,21.92,27.02
151
+ 017-009,-17,9,769775.0,1616105.0,1479.41,-0.14,94.0,18.96,36.19,27.18
152
+ 017-010,-17,10,769875.0,1616105.0,1457.46,-0.17,26.27,18.96,40.88,26.59
153
+ 017-011,-17,11,769975.0,1616105.0,1462.97,-0.17,85.31,18.96,36.77,26.42
154
+ 017-012,-17,12,770075.0,1616105.0,1487.26,-0.17,177.09,27.19,64.95,26.29
155
+ 017-013,-17,13,770175.0,1616105.0,1495.12,-0.16,265.28,18.7,60.44,27.39
156
+ 017-014,-17,14,770275.0,1616105.0,1499.53,-0.18,353.35,18.7,47.38,28.02
157
+ 017-015,-17,15,770375.0,1616105.0,1503.4,-0.18,438.94,18.7,20.35,28.15
158
+ 017-016,-17,16,770475.0,1616105.0,1507.75,-0.18,501.85,20.35,32.17,28.23
159
+ 017-017,-17,17,770575.0,1616105.0,1512.21,-0.08,558.31,29.42,46.7,28.15
160
+ 017-018,-17,18,770675.0,1616105.0,1516.68,-0.02,617.8,28.41,33.97,28.03
161
+ 018-002,-18,2,769075.0,1616005.0,1481.18,-0.27,790.88,13.59,69.32,25.51
162
+ 018-003,-18,3,769175.0,1616005.0,1496.41,-0.27,692.78,13.23,35.41,27.73
163
+ 018-004,-18,4,769275.0,1616005.0,1496.34,-0.15,598.06,8.2,39.1,28.94
164
+ 018-005,-18,5,769375.0,1616005.0,1494.59,-0.08,504.33,8.2,26.66,29.5
165
+ 018-006,-18,6,769475.0,1616005.0,1490.74,-0.17,409.48,8.2,42.43,29.24
166
+ 018-007,-18,7,769575.0,1616005.0,1489.13,-0.17,318.98,15.17,34.55,28.6
167
+ 018-008,-18,8,769675.0,1616005.0,1490.53,-0.17,229.05,21.92,20.55,28.24
168
+ 018-009,-18,9,769775.0,1616005.0,1468.23,-0.15,136.62,20.55,51.33,26.84
169
+ 018-010,-18,10,769875.0,1616005.0,1464.29,-0.17,48.97,22.85,28.36,26.18
170
+ 018-011,-18,11,769975.0,1616005.0,1460.9,-0.16,42.8,13.27,55.61,26.18
171
+ 018-012,-18,12,770075.0,1616005.0,1469.96,-0.17,130.73,13.27,27.19,27.17
172
+ 018-013,-18,13,770175.0,1616005.0,1489.08,-0.16,219.49,13.27,41.75,27.72
173
+ 018-014,-18,14,770275.0,1616005.0,1504.1,-0.13,299.85,20.35,36.07,28.32
174
+ 018-015,-18,15,770375.0,1616005.0,1508.98,-0.12,361.85,20.35,35.9,28.7
175
+ 018-016,-18,16,770475.0,1616005.0,1513.44,-0.02,417.96,20.35,42.02,28.25
176
+ 018-017,-18,17,770575.0,1616005.0,1518.36,-0.01,477.06,26.81,30.48,28.35
177
+ 018-018,-18,18,770675.0,1616005.0,1522.14,-0.01,541.78,26.81,29.42,28.5
178
+ 019-002,-19,2,769075.0,1615905.0,1484.68,-0.24,819.67,13.59,55.22,26.22
179
+ 019-003,-19,3,769175.0,1615905.0,1497.85,-0.17,724.44,24.41,13.59,28.28
180
+ 019-004,-19,4,769275.0,1615905.0,1497.44,-0.07,633.18,13.59,45.13,28.62
181
+ 019-005,-19,5,769375.0,1615905.0,1496.8,-0.13,542.94,15.17,15.87,29.72
182
+ 019-006,-19,6,769475.0,1615905.0,1494.59,-0.13,450.3,5.88,15.17,31.53
183
+ 019-007,-19,7,769575.0,1615905.0,1493.51,-0.13,360.6,5.88,24.84,30.09
184
+ 019-008,-19,8,769675.0,1615905.0,1483.37,-0.2,271.6,5.88,46.9,27.95
185
+ 019-009,-19,9,769775.0,1615905.0,1470.73,-0.2,180.78,20.12,55.07,26.03
186
+ 019-010,-19,10,769875.0,1615905.0,1492.51,-0.2,92.65,20.12,29.97,26.49
187
+ 019-011,-19,11,769975.0,1615905.0,1472.52,-0.17,25.37,13.27,22.85,26.06
188
+ 019-012,-19,12,770075.0,1615905.0,1469.45,-0.17,87.9,22.59,13.27,27.1
189
+ 019-013,-19,13,770175.0,1615905.0,1497.94,-0.13,164.15,13.27,27.82,27.55
190
+ 019-014,-19,14,770275.0,1615905.0,1508.66,-0.13,222.52,21.38,31.27,28.44
191
+ 019-015,-19,15,770375.0,1615905.0,1513.16,-0.21,280.23,31.27,21.38,28.73
192
+ 019-016,-19,16,770475.0,1615905.0,1516.29,-0.21,338.12,21.38,35.47,28.13
193
+ 019-017,-19,17,770575.0,1615905.0,1521.23,-0.21,401.26,26.94,26.81,28.57
194
+ 019-018,-19,18,770675.0,1615905.0,1527.36,-0.01,470.77,26.81,41.11,28.98
195
+ 019-019,-19,19,770775.0,1615905.0,1530.08,0.01,527.61,1.84,32.46,29.44
196
+ 020-002,-20,2,769075.0,1615805.0,1469.64,-0.24,856.32,13.59,55.35,26.49
197
+ 020-003,-20,3,769175.0,1615805.0,1495.14,-0.17,764.18,13.59,31.14,27.52
198
+ 020-004,-20,4,769275.0,1615805.0,1498.29,-0.16,674.27,13.59,24.41,28.43
199
+ 020-005,-20,5,769375.0,1615805.0,1497.85,-0.16,584.57,15.17,35.36,28.41
200
+ 020-006,-20,6,769475.0,1615805.0,1496.73,-0.16,492.91,5.88,22.24,29.81
201
+ 020-007,-20,7,769575.0,1615805.0,1495.74,-0.13,404.76,15.17,5.88,30.28
202
+ 020-008,-20,8,769675.0,1615805.0,1486.45,-0.2,316.61,5.88,49.53,28.38
203
+ 020-009,-20,9,769775.0,1615805.0,1475.17,-0.15,224.5,20.12,53.06,26.73
204
+ 020-010,-20,10,769875.0,1615805.0,1497.85,-0.2,134.57,22.59,20.12,27.61
205
+ 020-011,-20,11,769975.0,1615805.0,1485.21,-0.22,48.68,13.27,22.59,26.49
206
+ 020-012,-20,12,770075.0,1615805.0,1468.79,-0.22,32.69,13.27,29.27,25.9
207
+ 020-013,-20,13,770175.0,1615805.0,1488.08,-0.22,84.91,13.27,42.13,26.29
208
+ 020-014,-20,14,770275.0,1615805.0,1507.49,-0.17,140.9,21.38,37.98,27.05
209
+ 020-015,-20,15,770375.0,1615805.0,1513.37,-0.21,199.47,21.38,42.63,27.05
210
+ 020-016,-20,16,770475.0,1615805.0,1507.62,-0.17,261.64,21.38,79.45,25.99
211
+ 020-017,-20,17,770575.0,1615805.0,1525.13,-0.21,328.75,26.81,26.94,27.67
212
+ 020-018,-20,18,770675.0,1615805.0,1532.14,-0.01,405.44,26.81,33.54,28.42
213
+ 020-019,-20,19,770775.0,1615805.0,1534.56,0.01,482.93,17.15,35.7,28.75
214
+ 021-003,-21,3,769175.0,1615705.0,1492.95,-0.18,807.17,21.58,45.17,27.09
215
+ 021-004,-21,4,769275.0,1615705.0,1497.66,-0.18,718.26,24.41,21.58,27.63
216
+ 021-005,-21,5,769375.0,1615705.0,1498.6,-0.13,630.12,21.58,60.7,27.45
217
+ 021-006,-21,6,769475.0,1615705.0,1498.44,-0.16,539.14,5.88,25.87,27.62
218
+ 021-007,-21,7,769575.0,1615705.0,1497.62,-0.13,449.63,5.88,43.78,28.76
219
+ 021-008,-21,8,769675.0,1615705.0,1494.56,-0.2,359.67,5.88,50.05,28.47
220
+ 021-009,-21,9,769775.0,1615705.0,1474.6,-0.2,269.14,20.12,34.42,27.56
221
+ 021-010,-21,10,769875.0,1615705.0,1495.45,-0.2,186.25,19.44,33.86,27.34
222
+ 021-011,-21,11,769975.0,1615705.0,1488.87,-0.22,114.69,19.44,36.28,26.76
223
+ 021-012,-21,12,770075.0,1615705.0,1478.01,-0.23,55.1,19.44,40.33,25.26
224
+ 021-013,-21,13,770175.0,1615705.0,1470.99,-0.23,25.21,29.27,40.66,25.45
225
+ 021-014,-21,14,770275.0,1615705.0,1476.96,-0.26,57.78,37.98,88.38,25.68
226
+ 021-015,-21,15,770375.0,1615705.0,1484.62,-0.26,119.81,37.98,88.19,24.93
227
+ 021-016,-21,16,770475.0,1615705.0,1511.87,-0.26,187.04,26.94,71.63,25.19
228
+ 021-017,-21,17,770575.0,1615705.0,1530.35,-0.21,263.11,26.94,28.58,27.3
229
+ 021-018,-21,18,770675.0,1615705.0,1535.46,-0.16,348.66,26.94,35.18,27.99
230
+ 021-019,-21,19,770775.0,1615705.0,1539.47,-0.16,434.46,18.34,27.65,28.43
231
+ 022-003,-22,3,769175.0,1615605.0,1475.22,-0.26,846.74,21.58,63.97,26.29
232
+ 022-004,-22,4,769275.0,1615605.0,1487.05,-0.18,762.74,20.68,50.75,26.65
233
+ 022-005,-22,5,769375.0,1615605.0,1498.0,-0.16,673.43,20.68,41.53,27.37
234
+ 022-006,-22,6,769475.0,1615605.0,1499.81,-0.16,580.87,19.42,47.67,27.65
235
+ 022-007,-22,7,769575.0,1615605.0,1499.69,-0.1,492.67,18.35,23.44,29.19
236
+ 022-008,-22,8,769675.0,1615605.0,1499.43,-0.2,407.55,18.35,36.87,28.71
237
+ 022-009,-22,9,769775.0,1615605.0,1482.15,-0.13,324.75,18.0,43.75,26.81
238
+ 022-010,-22,10,769875.0,1615605.0,1499.4,-0.2,253.77,9.83,21.02,27.35
239
+ 022-011,-22,11,769975.0,1615605.0,1504.36,-0.22,194.05,9.83,19.44,28.51
240
+ 022-012,-22,12,770075.0,1615605.0,1505.47,-0.23,136.23,9.83,36.85,27.13
241
+ 022-013,-22,13,770175.0,1615605.0,1482.66,-0.22,80.17,17.44,43.36,25.4
242
+ 022-014,-22,14,770275.0,1615605.0,1486.29,-0.26,30.43,31.44,45.16,24.82
243
+ 022-015,-22,15,770375.0,1615605.0,1477.87,-0.24,49.2,41.44,74.75,24.12
244
+ 022-016,-22,16,770475.0,1615605.0,1492.65,-0.26,125.97,28.58,84.45,24.39
245
+ 022-017,-22,17,770575.0,1615605.0,1511.3,-0.26,210.84,28.58,68.2,25.19
246
+ 022-018,-22,18,770675.0,1615605.0,1517.2,-0.26,300.2,27.65,81.94,25.56
247
+ 022-019,-22,19,770775.0,1615605.0,1537.42,-0.21,388.6,18.34,59.87,26.4
248
+ 023-004,-23,4,769275.0,1615505.0,1477.09,-0.24,802.37,20.68,88.4,25.98
249
+ 023-005,-23,5,769375.0,1615505.0,1499.21,-0.24,716.37,13.06,20.68,27.68
250
+ 023-006,-23,6,769475.0,1615505.0,1501.03,-0.1,627.71,13.06,27.66,28.68
251
+ 023-007,-23,7,769575.0,1615505.0,1501.36,-0.1,544.8,13.06,19.42,29.97
252
+ 023-008,-23,8,769675.0,1615505.0,1502.35,-0.2,466.08,19.42,18.35,29.47
253
+ 023-009,-23,9,769775.0,1615505.0,1489.97,-0.2,393.02,16.04,37.88,27.28
254
+ 023-010,-23,10,769875.0,1615505.0,1502.8,-0.2,331.98,9.83,18.0,28.3
255
+ 023-011,-23,11,769975.0,1615505.0,1506.98,-0.04,275.55,16.04,9.83,29.72
256
+ 023-012,-23,12,770075.0,1615505.0,1508.05,-0.23,217.85,9.83,17.44,28.59
257
+ 023-013,-23,13,770175.0,1615505.0,1502.04,-0.23,159.93,17.44,31.44,26.82
258
+ 023-014,-23,14,770275.0,1615505.0,1518.64,-0.26,92.79,20.44,41.44,26.01
259
+ 023-015,-23,15,770375.0,1615505.0,1500.68,-0.26,26.21,20.44,84.59,24.61
260
+ 023-016,-23,16,770475.0,1615505.0,1486.6,-0.26,76.41,63.3,98.56,23.57
261
+ 023-017,-23,17,770575.0,1615505.0,1502.21,-0.24,165.18,67.72,96.48,23.53
262
+ 023-018,-23,18,770675.0,1615505.0,1520.79,-0.26,259.97,37.99,73.84,23.98
263
+ 023-019,-23,19,770775.0,1615505.0,1537.36,-0.21,354.1,21.37,63.84,25.81
264
+ 024-004,-24,4,769275.0,1615405.0,1476.37,-0.2,851.12,18.57,94.66,25.51
265
+ 024-005,-24,5,769375.0,1615405.0,1496.37,-0.24,768.34,13.06,31.79,27.05
266
+ 024-006,-24,6,769475.0,1615405.0,1502.44,0.01,684.62,13.84,13.06,28.81
267
+ 024-007,-24,7,769575.0,1615405.0,1502.66,-0.02,607.48,13.06,24.24,29.65
268
+ 024-008,-24,8,769675.0,1615405.0,1502.88,-0.13,536.81,9.74,19.68,29.12
269
+ 024-009,-24,9,769775.0,1615405.0,1494.47,-0.13,472.62,9.74,20.53,28.25
270
+ 024-010,-24,10,769875.0,1615405.0,1505.43,-0.13,415.65,9.74,16.04,28.86
271
+ 024-011,-24,11,769975.0,1615405.0,1509.28,0.01,359.65,9.83,17.01,29.66
272
+ 024-012,-24,12,770075.0,1615405.0,1513.48,-0.1,300.8,9.83,28.59,29.38
273
+ 024-013,-24,13,770175.0,1615405.0,1518.0,-0.11,231.97,17.44,24.01,28.41
274
+ 024-014,-24,14,770275.0,1615405.0,1525.19,-0.21,147.64,19.84,20.44,27.89
275
+ 024-015,-24,15,770375.0,1615405.0,1506.92,-0.25,55.42,20.44,63.3,25.57
276
+ 024-016,-24,16,770475.0,1615405.0,1491.03,-0.26,41.42,33.83,77.28,23.57
277
+ 024-017,-24,17,770575.0,1615405.0,1528.09,-0.26,134.51,27.92,82.94,24.02
278
+ 024-018,-24,18,770675.0,1615405.0,1524.72,-0.26,234.48,23.68,67.72,24.65
279
+ 024-019,-24,19,770775.0,1615405.0,1545.42,-0.21,332.16,21.15,37.99,27.07
280
+ 025-004,-25,4,769275.0,1615305.0,1485.72,-0.24,905.22,18.57,85.27,25.45
281
+ 025-005,-25,5,769375.0,1615305.0,1500.88,-0.24,825.63,13.06,18.57,27.45
282
+ 025-006,-25,6,769475.0,1615305.0,1502.3,-0.0,747.11,13.06,17.38,29.52
283
+ 025-007,-25,7,769575.0,1615305.0,1503.21,-0.02,676.59,13.06,13.84,29.94
284
+ 025-008,-25,8,769675.0,1615305.0,1503.09,-0.11,613.02,9.74,37.34,28.73
285
+ 025-009,-25,9,769775.0,1615305.0,1499.65,-0.08,553.32,12.71,9.74,28.27
286
+ 025-010,-25,10,769875.0,1615305.0,1504.9,-0.11,497.28,9.74,12.71,28.93
287
+ 025-011,-25,11,769975.0,1615305.0,1511.49,-0.08,440.14,12.71,22.15,29.49
288
+ 025-012,-25,12,770075.0,1615305.0,1517.3,-0.01,364.8,17.01,32.8,29.36
289
+ 025-013,-25,13,770175.0,1615305.0,1523.14,-0.05,273.22,18.6,19.84,28.56
290
+ 025-014,-25,14,770275.0,1615305.0,1528.11,-0.17,176.91,18.6,23.16,28.17
291
+ 025-015,-25,15,770375.0,1615305.0,1517.9,-0.27,76.99,20.44,33.83,25.95
292
+ 025-016,-25,16,770475.0,1615305.0,1489.07,-0.27,35.5,24.81,47.42,23.87
293
+ 025-017,-25,17,770575.0,1615305.0,1534.57,-0.27,121.8,27.92,46.45,25.24
294
+ 025-018,-25,18,770675.0,1615305.0,1537.93,-0.19,222.82,23.68,27.92,26.29
295
+ 025-019,-25,19,770775.0,1615305.0,1543.81,-0.19,321.16,15.95,23.68,27.28
296
+ 026-004,-26,4,769275.0,1615205.0,1477.65,-0.26,962.05,18.57,92.82,25.47
297
+ 026-005,-26,5,769375.0,1615205.0,1501.63,-0.26,889.03,16.95,34.37,27.67
298
+ 026-006,-26,6,769475.0,1615205.0,1503.6,-0.13,816.34,13.84,24.8,29.31
299
+ 026-007,-26,7,769575.0,1615205.0,1504.28,-0.13,751.91,11.74,29.57,29.13
300
+ 026-008,-26,8,769675.0,1615205.0,1506.2,-0.13,692.87,9.74,25.24,29.11
301
+ 026-009,-26,9,769775.0,1615205.0,1505.31,-0.14,634.87,9.74,23.67,28.46
302
+ 026-010,-26,10,769875.0,1615205.0,1503.9,-0.14,572.4,9.74,41.66,28.39
303
+ 026-011,-26,11,769975.0,1615205.0,1513.45,-0.14,488.29,12.71,20.79,29.1
304
+ 026-012,-26,12,770075.0,1615205.0,1520.61,0.0,389.63,14.86,22.64,29.25
305
+ 026-013,-26,13,770175.0,1615205.0,1525.9,-0.05,294.49,14.86,18.6,28.29
306
+ 026-014,-26,14,770275.0,1615205.0,1531.34,-0.13,202.86,18.6,25.99,27.82
307
+ 026-015,-26,15,770375.0,1615205.0,1525.67,-0.27,120.97,23.16,24.81,26.07
308
+ 026-016,-26,16,770475.0,1615205.0,1491.18,-0.25,93.93,23.88,27.94,23.67
309
+ 026-017,-26,17,770575.0,1615205.0,1526.17,-0.27,149.56,23.88,74.93,24.35
310
+ 026-018,-26,18,770675.0,1615205.0,1545.98,-0.24,233.08,23.68,45.23,25.97
311
+ 027-005,-27,5,769375.0,1615105.0,1495.82,-0.26,960.44,16.95,60.25,26.59
312
+ 027-006,-27,6,769475.0,1615105.0,1505.94,-0.2,893.32,20.13,16.95,28.37
313
+ 027-007,-27,7,769575.0,1615105.0,1506.5,-0.0,833.37,11.74,63.84,28.54
314
+ 027-008,-27,8,769675.0,1615105.0,1508.57,-0.13,775.69,14.02,11.74,29.38
315
+ 027-009,-27,9,769775.0,1615105.0,1510.64,-0.14,701.89,11.74,20.52,29.26
316
+ 027-010,-27,10,769875.0,1615105.0,1510.75,-0.08,610.48,14.02,38.66,28.34
317
+ 027-011,-27,11,769975.0,1615105.0,1517.72,-0.14,517.44,14.86,20.55,28.64
318
+ 027-012,-27,12,770075.0,1615105.0,1523.54,0.0,424.36,17.44,14.86,29.1
319
+ 027-013,-27,13,770175.0,1615105.0,1528.53,-0.05,338.86,14.86,18.73,28.59
320
+ 027-014,-27,14,770275.0,1615105.0,1533.47,-0.19,262.81,18.6,28.0,27.83
321
+ 027-015,-27,15,770375.0,1615105.0,1524.11,-0.27,206.12,23.88,34.26,25.79
322
+ 027-016,-27,16,770475.0,1615105.0,1495.31,-0.27,191.41,24.81,23.88,23.69
323
+ 027-017,-27,17,770575.0,1615105.0,1501.58,-0.27,224.1,23.88,61.96,23.73
324
+ 027-018,-27,18,770675.0,1615105.0,1505.46,-0.26,289.97,29.34,95.22,24.35
325
+ 028-005,-28,5,769375.0,1615005.0,1491.56,-0.28,1034.22,16.95,70.87,26.21
326
+ 028-006,-28,6,769475.0,1615005.0,1507.5,-0.22,971.68,16.95,21.75,28.15
327
+ 028-007,-28,7,769575.0,1615005.0,1509.48,-0.2,910.77,11.74,20.13,29.03
328
+ 028-008,-28,8,769675.0,1615005.0,1511.59,-0.13,831.88,11.74,20.45,29.41
329
+ 028-009,-28,9,769775.0,1615005.0,1514.6,-0.14,737.99,10.79,14.02,29.27
330
+ 028-010,-28,10,769875.0,1615005.0,1516.23,-0.14,648.12,10.79,20.18,28.76
331
+ 028-011,-28,11,769975.0,1615005.0,1520.86,-0.14,561.22,10.79,20.54,28.42
332
+ 028-012,-28,12,770075.0,1615005.0,1525.94,-0.02,476.61,14.86,17.44,28.7
333
+ 028-013,-28,13,770175.0,1615005.0,1531.21,-0.06,402.31,14.86,23.5,28.58
334
+ 028-014,-28,14,770275.0,1615005.0,1535.88,-0.19,340.68,16.25,26.12,28.02
335
+ 028-015,-28,15,770375.0,1615005.0,1518.05,-0.21,299.08,23.88,29.31,25.67
336
+ 028-016,-28,16,770475.0,1615005.0,1519.87,-0.22,289.12,23.88,50.63,24.07
337
+ 028-017,-28,17,770575.0,1615005.0,1497.44,-0.22,311.76,23.88,29.34,23.53
338
+ 028-018,-28,18,770675.0,1615005.0,1516.04,-0.26,363.04,29.34,66.19,24.38
339
+ 028-019,-28,19,770775.0,1615005.0,1511.25,-0.27,430.57,48.06,78.9,24.71
340
+ 029-006,-29,6,769475.0,1614905.0,1493.01,-0.22,1037.5,20.13,77.38,26.92
341
+ 029-007,-29,7,769575.0,1614905.0,1502.94,-0.2,961.45,20.13,49.43,27.77
342
+ 029-008,-29,8,769675.0,1614905.0,1507.45,-0.11,871.94,14.02,36.03,28.66
343
+ 029-009,-29,9,769775.0,1614905.0,1517.49,-0.0,781.88,10.79,33.23,28.13
344
+ 029-010,-29,10,769875.0,1614905.0,1520.38,-0.02,697.59,14.02,10.79,28.57
345
+ 029-011,-29,11,769975.0,1614905.0,1523.25,-0.02,617.64,10.79,29.91,28.53
346
+ 029-012,-29,12,770075.0,1614905.0,1527.68,-0.02,541.91,14.12,29.28,28.28
347
+ 029-013,-29,13,770175.0,1614905.0,1532.11,-0.06,477.9,16.12,16.25,28.57
348
+ 029-014,-29,14,770275.0,1614905.0,1536.27,-0.19,427.32,16.12,33.34,28.32
349
+ 029-015,-29,15,770375.0,1614905.0,1534.09,-0.2,394.96,16.12,51.12,26.7
350
+ 029-016,-29,16,770475.0,1614905.0,1539.2,-0.22,387.48,19.97,36.94,25.74
351
+ 029-017,-29,17,770575.0,1614905.0,1515.41,-0.23,404.65,26.45,37.34,24.0
352
+ 029-018,-29,18,770675.0,1614905.0,1517.35,-0.26,445.33,29.34,48.06,24.44
353
+ 029-019,-29,19,770775.0,1614905.0,1529.88,-0.27,501.84,43.17,48.65,24.91
354
+ 030-007,-30,7,769575.0,1614805.0,1487.21,-0.2,1006.11,36.03,58.17,27.59
355
+ 030-008,-30,8,769675.0,1614805.0,1504.16,-0.11,921.64,33.23,44.72,28.3
356
+ 030-009,-30,9,769775.0,1614805.0,1519.44,-0.06,836.91,10.79,33.72,28.01
357
+ 030-010,-30,10,769875.0,1614805.0,1523.67,-0.06,758.76,10.79,23.55,28.25
358
+ 030-011,-30,11,769975.0,1614805.0,1525.99,-0.04,685.97,10.79,14.12,28.4
359
+ 030-012,-30,12,770075.0,1614805.0,1528.34,-0.09,618.66,14.12,29.78,27.64
360
+ 030-013,-30,13,770175.0,1614805.0,1533.95,-0.09,563.45,16.12,20.22,27.75
361
+ 030-014,-30,14,770275.0,1614805.0,1538.14,-0.12,521.23,16.25,16.12,27.26
362
+ 030-015,-30,15,770375.0,1614805.0,1543.85,-0.14,495.05,16.12,19.97,27.04
363
+ 030-016,-30,16,770475.0,1614805.0,1548.95,-0.22,489.1,19.37,26.45,27.25
364
+ 030-017,-30,17,770575.0,1614805.0,1548.3,-0.23,502.81,16.33,36.09,25.75
365
+ 030-018,-30,18,770675.0,1614805.0,1533.83,-0.22,536.09,16.33,43.17,24.31
366
+ 030-019,-30,19,770775.0,1614805.0,1539.19,-0.27,583.88,16.33,63.54,24.37
367
+ 030-020,-30,20,770875.0,1614805.0,1536.11,-0.27,643.34,40.79,82.77,24.19
368
+ 031-007,-31,7,769575.0,1614705.0,1491.71,-0.28,1057.97,40.99,48.82,27.57
369
+ 031-008,-31,8,769675.0,1614705.0,1503.23,-0.16,977.67,33.72,51.17,27.89
370
+ 031-009,-31,9,769775.0,1614705.0,1518.88,-0.05,898.23,23.55,39.25,27.98
371
+ 031-010,-31,10,769875.0,1614705.0,1525.31,-0.06,825.91,14.12,27.66,28.4
372
+ 031-011,-31,11,769975.0,1614705.0,1527.33,-0.04,759.57,14.12,14.84,28.16
373
+ 031-012,-31,12,770075.0,1614705.0,1529.18,-0.09,699.38,14.12,18.84,27.37
374
+ 031-013,-31,13,770175.0,1614705.0,1534.4,-0.04,651.04,16.12,53.96,26.7
375
+ 031-014,-31,14,770275.0,1614705.0,1539.45,-0.09,614.86,16.12,31.37,26.01
376
+ 031-015,-31,15,770375.0,1614705.0,1544.8,-0.01,592.82,16.12,37.91,26.83
377
+ 031-016,-31,16,770475.0,1614705.0,1549.42,-0.17,587.86,16.0,19.37,27.7
378
+ 031-017,-31,17,770575.0,1614705.0,1553.46,-0.23,599.31,7.49,22.3,27.31
379
+ 031-018,-31,18,770675.0,1614705.0,1538.44,-0.23,627.51,7.49,16.33,25.58
380
+ 031-019,-31,19,770775.0,1614705.0,1552.78,-0.23,668.81,7.49,41.63,25.33
381
+ 031-020,-31,20,770875.0,1614705.0,1558.88,-0.26,721.34,12.2,40.79,25.5
382
+ 032-008,-32,8,769675.0,1614605.0,1519.07,-0.23,1040.07,19.1,40.99,27.08
383
+ 032-009,-32,9,769775.0,1614605.0,1522.36,-0.08,965.78,19.1,36.09,27.98
384
+ 032-010,-32,10,769875.0,1614605.0,1526.35,-0.06,898.92,14.84,24.13,28.7
385
+ 032-011,-32,11,769975.0,1614605.0,1529.27,-0.04,838.38,14.84,20.16,28.59
386
+ 032-012,-32,12,770075.0,1614605.0,1532.22,-0.09,784.26,14.84,24.16,28.31
387
+ 032-013,-32,13,770175.0,1614605.0,1536.42,-0.09,741.49,17.54,40.35,27.28
388
+ 032-014,-32,14,770275.0,1614605.0,1541.66,-0.09,709.93,17.54,39.2,26.11
389
+ 032-015,-32,15,770375.0,1614605.0,1546.31,-0.04,690.94,19.37,24.17,26.94
390
+ 032-016,-32,16,770475.0,1614605.0,1550.33,-0.04,686.69,16.0,21.11,27.99
391
+ 032-017,-32,17,770575.0,1614605.0,1554.48,-0.22,696.51,7.24,16.0,27.9
392
+ 032-018,-32,18,770675.0,1614605.0,1542.21,-0.22,720.91,7.24,7.49,26.76
393
+ 032-019,-32,19,770775.0,1614605.0,1558.2,-0.22,757.14,7.24,12.2,26.79
394
+ 032-020,-32,20,770875.0,1614605.0,1561.18,-0.26,803.9,10.45,31.5,26.82
395
+ 032-021,-32,21,770975.0,1614605.0,1527.36,-0.32,847.22,31.5,94.45,25.03
396
+ 033-008,-33,8,769675.0,1614505.0,1510.84,-0.23,1109.59,19.1,63.52,26.28
397
+ 033-009,-33,9,769775.0,1614505.0,1523.63,-0.2,1040.68,24.13,19.1,27.52
398
+ 033-010,-33,10,769875.0,1614505.0,1528.1,-0.04,978.95,19.1,37.31,28.21
399
+ 033-011,-33,11,769975.0,1614505.0,1531.74,-0.04,923.66,20.16,37.79,28.2
400
+ 033-012,-33,12,770075.0,1614505.0,1534.48,-0.03,874.84,17.54,23.08,27.89
401
+ 033-013,-33,13,770175.0,1614505.0,1536.26,-0.03,836.71,23.08,17.54,27.51
402
+ 033-014,-33,14,770275.0,1614505.0,1543.74,-0.06,808.88,17.54,42.09,26.82
403
+ 033-015,-33,15,770375.0,1614505.0,1548.11,-0.06,792.26,16.25,23.5,26.71
404
+ 033-016,-33,16,770475.0,1614505.0,1551.87,-0.06,788.56,8.88,19.56,27.43
405
+ 033-017,-33,17,770575.0,1614505.0,1556.14,-0.19,797.13,7.24,23.11,28.16
406
+ 033-018,-33,18,770675.0,1614505.0,1546.2,-0.19,818.53,7.49,7.24,27.49
407
+ 033-019,-33,19,770775.0,1614505.0,1554.38,-0.19,850.61,7.24,10.45,27.44
408
+ 033-020,-33,20,770875.0,1614505.0,1561.24,-0.27,892.49,10.45,51.97,26.72
409
+ 033-021,-33,21,770975.0,1614505.0,1537.26,-0.32,920.77,31.5,76.3,24.46
410
+ 033-022,-33,22,771075.0,1614505.0,1521.51,-0.32,868.93,25.18,59.86,23.36
411
+ 034-009,-34,9,769775.0,1614405.0,1517.74,-0.2,1117.5,19.1,38.4,26.29
412
+ 034-010,-34,10,769875.0,1614405.0,1528.67,-0.08,1060.25,19.1,30.39,27.62
413
+ 034-011,-34,11,769975.0,1614405.0,1533.33,-0.05,1009.42,23.08,24.8,28.3
414
+ 034-012,-34,12,770075.0,1614405.0,1536.99,-0.03,964.94,17.54,24.99,28.44
415
+ 034-013,-34,13,770175.0,1614405.0,1541.45,-0.03,930.51,16.87,34.98,27.76
416
+ 034-014,-34,14,770275.0,1614405.0,1545.98,-0.06,905.56,16.87,26.47,27.36
417
+ 034-015,-34,15,770375.0,1614405.0,1549.45,-0.03,890.75,16.25,39.07,27.26
418
+ 034-016,-34,16,770475.0,1614405.0,1553.97,-0.06,887.46,8.88,16.25,27.53
419
+ 034-017,-34,17,770575.0,1614405.0,1556.07,-0.27,895.08,7.24,8.88,27.47
420
+ 034-018,-34,18,770675.0,1614405.0,1547.64,-0.27,914.2,7.24,13.03,26.41
421
+ 034-019,-34,19,770775.0,1614405.0,1554.42,-0.27,943.03,7.24,30.16,27.07
422
+ 034-020,-34,20,770875.0,1614405.0,1558.81,-0.27,980.98,10.45,43.07,26.21
423
+ 034-021,-34,21,770975.0,1614405.0,1531.81,-0.23,998.06,43.07,92.94,24.06
424
+ 034-022,-34,22,771075.0,1614405.0,1559.6,-0.27,940.55,25.18,48.45,24.71
425
+ 034-023,-34,23,771175.0,1614405.0,1531.6,-0.26,889.69,27.09,25.18,25.06
426
+ 035-009,-35,9,769775.0,1614305.0,1515.89,-0.2,1197.55,30.39,46.55,25.11
427
+ 035-010,-35,10,769875.0,1614305.0,1528.95,-0.15,1144.32,24.8,31.08,26.8
428
+ 035-011,-35,11,769975.0,1614305.0,1533.51,-0.14,1097.39,23.54,28.67,28.38
429
+ 035-012,-35,12,770075.0,1614305.0,1537.9,-0.03,1056.63,23.54,31.67,28.73
430
+ 035-013,-35,13,770175.0,1614305.0,1542.06,-0.03,1025.28,16.87,24.73,28.49
431
+ 035-014,-35,14,770275.0,1614305.0,1546.51,-0.06,1002.7,24.01,16.87,28.13
432
+ 035-015,-35,15,770375.0,1614305.0,1550.78,-0.06,989.34,16.25,24.01,28.06
433
+ 035-016,-35,16,770475.0,1614305.0,1555.81,-0.06,986.38,8.88,22.85,27.58
434
+ 035-017,-35,17,770575.0,1614305.0,1558.84,-0.27,993.24,8.88,20.06,27.37
435
+ 035-018,-35,18,770675.0,1614305.0,1549.55,-0.14,1010.5,8.88,46.57,26.19
436
+ 035-019,-35,19,770775.0,1614305.0,1555.47,-0.27,1036.66,13.03,22.82,27.06
437
+ 035-020,-35,20,770875.0,1614305.0,1558.49,-0.27,1071.29,22.82,44.56,26.35
438
+ 035-021,-35,21,770975.0,1614305.0,1538.13,-0.27,1077.45,35.37,93.68,24.57
439
+ 035-022,-35,22,771075.0,1614305.0,1567.36,-0.27,1021.3,25.18,47.15,26.76
440
+ 035-023,-35,23,771175.0,1614305.0,1563.5,-0.26,968.89,25.18,29.01,27.08
441
+ 035-024,-35,24,771275.0,1614305.0,1544.16,-0.26,926.1,25.18,66.43,25.61
442
+ 036-010,-36,10,769875.0,1614205.0,1529.11,-0.24,1232.55,28.67,44.43,25.73
443
+ 036-011,-36,11,769975.0,1614205.0,1535.47,-0.14,1189.85,23.54,36.97,27.85
444
+ 036-012,-36,12,770075.0,1614205.0,1538.43,-0.04,1152.36,24.73,23.54,28.93
445
+ 036-013,-36,13,770175.0,1614205.0,1542.43,-0.02,1123.69,16.87,30.25,28.7
446
+ 036-014,-36,14,770275.0,1614205.0,1546.69,-0.01,1103.12,13.82,24.19,28.3
447
+ 036-015,-36,15,770375.0,1614205.0,1552.16,-0.06,1090.99,13.82,25.81,28.63
448
+ 036-016,-36,16,770475.0,1614205.0,1558.15,-0.01,1088.31,13.82,34.93,28.07
449
+ 036-017,-36,17,770575.0,1614205.0,1560.95,-0.27,1094.54,14.06,21.07,27.51
450
+ 036-018,-36,18,770675.0,1614205.0,1554.48,-0.27,1110.22,20.06,33.88,26.91
451
+ 036-019,-36,19,770775.0,1614205.0,1556.53,-0.27,1134.08,22.82,26.81,26.71
452
+ 036-020,-36,20,770875.0,1614205.0,1546.37,-0.21,1165.82,22.82,63.84,26.09
453
+ 036-021,-36,21,770975.0,1614205.0,1558.08,-0.21,1161.06,35.37,50.97,25.31
454
+ 036-022,-36,22,771075.0,1614205.0,1567.76,-0.21,1107.13,29.01,35.37,27.8
455
+ 036-023,-36,23,771175.0,1614205.0,1567.79,-0.13,1058.45,29.01,30.78,28.11
456
+ 036-024,-36,24,771275.0,1614205.0,1558.44,-0.24,1014.4,29.01,59.87,26.32
457
+ 036-025,-36,25,771375.0,1614205.0,1550.66,-0.2,971.89,20.47,85.85,24.26
458
+ 036-026,-36,26,771475.0,1614205.0,1558.85,-0.24,904.74,20.47,82.4,24.65
459
+ 037-011,-37,11,769975.0,1614105.0,1534.02,-0.24,1254.81,23.54,44.38,27.23
460
+ 037-012,-37,12,770075.0,1614105.0,1539.57,-0.24,1243.07,18.57,33.78,28.49
461
+ 037-013,-37,13,770175.0,1614105.0,1543.96,-0.11,1219.77,18.57,28.73,28.45
462
+ 037-014,-37,14,770275.0,1614105.0,1547.98,0.01,1200.85,13.82,26.53,28.09
463
+ 037-015,-37,15,770375.0,1614105.0,1553.77,-0.06,1189.72,14.06,13.82,28.63
464
+ 037-016,-37,16,770475.0,1614105.0,1560.03,-0.06,1187.26,13.82,14.06,28.67
465
+ 037-017,-37,17,770575.0,1614105.0,1561.79,-0.06,1192.97,14.06,53.72,28.08
466
+ 037-018,-37,18,770675.0,1614105.0,1557.81,-0.05,1207.38,18.54,35.5,27.51
467
+ 037-019,-37,19,770775.0,1614105.0,1559.96,-0.13,1229.35,18.54,27.14,26.95
468
+ 037-020,-37,20,770875.0,1614105.0,1555.88,-0.23,1258.51,20.55,59.38,25.94
469
+ 037-021,-37,21,770975.0,1614105.0,1546.63,-0.23,1243.6,20.55,75.37,24.94
470
+ 037-022,-37,22,771075.0,1614105.0,1567.28,-0.23,1192.51,30.78,57.37,26.31
471
+ 037-023,-37,23,771175.0,1614105.0,1566.63,-0.22,1146.37,30.78,44.24,26.99
472
+ 037-024,-37,24,771275.0,1614105.0,1563.6,-0.24,1086.6,30.78,57.52,26.47
473
+ 037-025,-37,25,771375.0,1614105.0,1546.27,-0.24,999.25,20.47,42.12,25.71
474
+ 037-026,-37,26,771475.0,1614105.0,1556.57,-0.24,900.7,21.3,20.47,26.33
475
+ 037-027,-37,27,771575.0,1614105.0,1568.55,-0.28,798.87,20.47,42.39,25.55
476
+ 037-028,-37,28,771675.0,1614105.0,1577.21,-0.29,700.06,21.5,80.03,23.89
477
+ 037-029,-37,29,771775.0,1614105.0,1600.96,-0.28,601.25,30.7,87.74,22.83
478
+ 037-030,-37,30,771875.0,1614105.0,1621.39,-0.29,501.23,56.7,67.56,22.73
479
+ 038-012,-38,12,770075.0,1614005.0,1534.81,-0.24,1233.06,18.57,64.81,27.32
480
+ 038-013,-38,13,770175.0,1614005.0,1546.39,-0.11,1270.6,19.15,18.57,28.34
481
+ 038-014,-38,14,770275.0,1614005.0,1549.79,-0.02,1289.31,13.82,19.15,28.67
482
+ 038-015,-38,15,770375.0,1614005.0,1553.68,-0.02,1288.42,13.82,25.53,28.79
483
+ 038-016,-38,16,770475.0,1614005.0,1559.06,-0.02,1286.21,9.27,21.78,28.18
484
+ 038-017,-38,17,770575.0,1614005.0,1563.38,-0.05,1291.48,9.27,19.05,27.89
485
+ 038-018,-38,18,770675.0,1614005.0,1559.32,-0.04,1304.8,9.27,18.54,27.89
486
+ 038-019,-38,19,770775.0,1614005.0,1561.33,-0.13,1325.16,11.9,26.17,27.75
487
+ 038-020,-38,20,770875.0,1614005.0,1566.5,-0.23,1351.18,11.9,20.55,27.4
488
+ 038-021,-38,21,770975.0,1614005.0,1550.31,-0.22,1327.69,11.9,74.92,25.47
489
+ 038-022,-38,22,771075.0,1614005.0,1551.88,-0.23,1273.7,27.59,86.67,25.16
490
+ 038-023,-38,23,771175.0,1614005.0,1563.87,-0.22,1195.92,27.59,41.45,26.82
491
+ 038-024,-38,24,771275.0,1614005.0,1565.71,-0.16,1096.0,27.59,34.36,27.05
492
+ 038-025,-38,25,771375.0,1614005.0,1556.34,-0.15,997.06,17.98,43.96,26.59
493
+ 038-026,-38,26,771475.0,1614005.0,1552.27,-0.16,898.12,17.98,21.3,26.92
494
+ 038-027,-38,27,771575.0,1614005.0,1567.43,-0.28,796.21,17.98,21.5,26.69
495
+ 038-028,-38,28,771675.0,1614005.0,1589.35,-0.29,697.31,21.5,30.7,25.25
496
+ 038-029,-38,29,771775.0,1614005.0,1605.38,-0.29,598.43,30.7,64.94,23.79
497
+ 038-030,-38,30,771875.0,1614005.0,1637.26,-0.29,496.57,53.68,56.7,22.8
498
+ 038-031,-38,31,771975.0,1614005.0,1666.74,-0.32,398.1,53.68,71.73,22.19
499
+ 039-012,-39,12,770075.0,1613905.0,1537.52,-0.24,1144.19,18.57,57.35,26.49
500
+ 039-013,-39,13,770175.0,1613905.0,1549.19,-0.19,1196.68,18.57,31.96,27.7
501
+ 039-014,-39,14,770275.0,1613905.0,1551.59,-0.13,1254.73,18.57,22.59,28.85
502
+ 039-015,-39,15,770375.0,1613905.0,1550.32,-0.1,1317.41,19.15,42.16,28.28
503
+ 039-016,-39,16,770475.0,1613905.0,1556.63,-0.1,1363.9,9.27,23.86,27.29
504
+ 039-017,-39,17,770575.0,1613905.0,1560.72,-0.05,1389.66,18.54,9.27,27.0
505
+ 039-018,-39,18,770675.0,1613905.0,1561.04,-0.05,1405.4,9.27,27.4,27.41
506
+ 039-019,-39,19,770775.0,1613905.0,1564.89,-0.05,1424.34,11.9,24.86,27.31
507
+ 039-020,-39,20,770875.0,1613905.0,1567.37,-0.23,1444.97,13.58,11.9,28.03
508
+ 039-021,-39,21,770975.0,1613905.0,1562.65,-0.23,1395.13,11.9,56.98,26.72
509
+ 039-022,-39,22,771075.0,1613905.0,1550.03,-0.23,1301.95,27.59,84.02,25.54
510
+ 039-023,-39,23,771175.0,1613905.0,1566.24,-0.22,1203.31,22.25,27.59,27.47
511
+ 039-024,-39,24,771275.0,1613905.0,1566.17,-0.2,1101.74,22.25,28.52,27.82
512
+ 039-025,-39,25,771375.0,1613905.0,1560.18,-0.2,1003.22,17.98,43.57,27.01
513
+ 039-026,-39,26,771475.0,1613905.0,1564.08,-0.2,904.79,21.3,17.98,26.77
514
+ 039-027,-39,27,771575.0,1613905.0,1588.63,-0.16,803.5,17.98,49.24,25.62
515
+ 039-028,-39,28,771675.0,1613905.0,1614.11,-0.26,705.36,21.5,49.32,24.96
516
+ 039-029,-39,29,771775.0,1613905.0,1626.16,-0.26,607.47,30.7,56.53,24.52
517
+ 039-030,-39,30,771875.0,1613905.0,1645.47,-0.29,506.94,36.85,53.68,23.27
518
+ 039-031,-39,31,771975.0,1613905.0,1686.42,-0.32,409.8,36.85,94.1,21.86
519
+ 039-032,-39,32,772075.0,1613905.0,1730.12,-0.3,313.35,66.83,84.85,21.55
520
+ 040-013,-40,13,770175.0,1613805.0,1543.82,-0.25,1116.11,22.59,55.2,26.23
521
+ 040-014,-40,14,770275.0,1613805.0,1547.82,-0.25,1178.09,22.59,24.47,26.94
522
+ 040-015,-40,15,770375.0,1613805.0,1545.54,-0.22,1247.03,22.59,64.64,26.39
523
+ 040-016,-40,16,770475.0,1613805.0,1558.72,-0.18,1318.07,9.27,32.18,27.13
524
+ 040-017,-40,17,770575.0,1613805.0,1559.08,-0.03,1392.12,9.27,27.99,27.67
525
+ 040-018,-40,18,770675.0,1613805.0,1563.07,-0.04,1461.97,9.27,27.24,27.39
526
+ 040-019,-40,19,770775.0,1613805.0,1567.13,-0.08,1511.16,11.9,25.39,26.68
527
+ 040-020,-40,20,770875.0,1613805.0,1569.48,-0.12,1504.76,11.9,13.58,27.52
528
+ 040-021,-40,21,770975.0,1613805.0,1567.68,-0.17,1411.03,11.9,37.51,27.64
529
+ 040-022,-40,22,771075.0,1613805.0,1551.88,-0.14,1313.06,15.74,83.19,25.83
530
+ 040-023,-40,23,771175.0,1613805.0,1566.71,-0.17,1215.25,15.74,34.59,27.17
531
+ 040-024,-40,24,771275.0,1613805.0,1575.8,-0.2,1114.69,15.74,22.25,27.52
532
+ 040-025,-40,25,771375.0,1613805.0,1571.93,-0.25,1017.33,17.98,45.16,25.71
533
+ 040-026,-40,26,771475.0,1613805.0,1584.06,-0.27,920.22,17.98,29.06,25.13
534
+ 040-027,-40,27,771575.0,1613805.0,1608.57,-0.27,820.5,17.98,39.8,24.72
535
+ 040-028,-40,28,771675.0,1613805.0,1645.85,-0.27,724.12,39.8,34.58,24.44
536
+ 040-029,-40,29,771775.0,1613805.0,1662.33,-0.18,628.32,24.53,40.28,24.42
537
+ 040-030,-40,30,771875.0,1613805.0,1678.02,-0.29,530.66,24.53,36.85,24.07
538
+ 040-031,-40,31,771975.0,1613805.0,1713.34,-0.32,437.62,24.53,74.87,22.74
539
+ 040-032,-40,32,772075.0,1613805.0,1755.7,-0.32,346.88,49.94,85.02,22.34
540
+ 040-033,-40,33,772175.0,1613805.0,1762.41,-0.32,255.37,49.94,79.07,22.7
541
+ 040-034,-40,34,772275.0,1613805.0,1743.1,-0.3,174.37,49.94,75.83,22.47
542
+ 041-015,-41,15,770375.0,1613705.0,1551.44,-0.3,1178.2,24.47,64.11,25.04
543
+ 041-016,-41,16,770475.0,1613705.0,1557.09,-0.24,1253.14,22.11,28.61,27.33
544
+ 041-017,-41,17,770575.0,1613705.0,1554.21,-0.13,1331.21,27.24,22.11,28.29
545
+ 041-018,-41,18,770675.0,1613705.0,1564.99,-0.13,1414.39,22.11,31.01,27.29
546
+ 041-019,-41,19,770775.0,1613705.0,1570.56,-0.13,1497.26,13.58,29.19,26.71
547
+ 041-020,-41,20,770875.0,1613705.0,1572.28,-0.08,1521.33,13.58,33.26,27.23
548
+ 041-021,-41,21,770975.0,1613705.0,1569.4,-0.17,1427.83,13.58,24.49,27.88
549
+ 041-022,-41,22,771075.0,1613705.0,1560.7,-0.17,1330.96,15.74,70.86,26.73
550
+ 041-023,-41,23,771175.0,1613705.0,1570.36,-0.17,1234.32,12.17,15.74,27.68
551
+ 041-024,-41,24,771275.0,1613705.0,1581.19,-0.31,1135.05,12.17,31.38,27.23
552
+ 041-025,-41,25,771375.0,1613705.0,1584.92,-0.31,1039.09,12.17,55.47,24.5
553
+ 041-026,-41,26,771475.0,1613705.0,1591.47,-0.31,943.67,29.06,70.68,22.99
554
+ 041-027,-41,27,771575.0,1613705.0,1625.21,-0.28,846.19,29.06,85.71,23.04
555
+ 041-028,-41,28,771675.0,1613705.0,1657.0,-0.27,752.7,34.58,60.89,23.83
556
+ 041-029,-41,29,771775.0,1613705.0,1692.1,-0.16,660.8,24.53,43.12,24.51
557
+ 041-030,-41,30,771875.0,1613705.0,1719.08,-0.19,568.06,36.85,24.53,24.84
558
+ 041-031,-41,31,771975.0,1613705.0,1725.97,-0.25,479.35,24.53,58.88,24.83
559
+ 041-032,-41,32,772075.0,1613705.0,1751.45,-0.27,391.84,33.69,50.27,25.46
560
+ 041-033,-41,33,772175.0,1613705.0,1767.4,-0.27,306.1,33.69,49.94,24.92
561
+ 041-034,-41,34,772275.0,1613705.0,1755.84,-0.27,234.68,43.35,89.44,23.04
562
+ 041-035,-41,35,772375.0,1613705.0,1710.97,-0.27,190.21,43.35,93.57,21.74
563
+ 042-016,-42,16,770475.0,1613605.0,1548.86,-0.27,1191.29,22.11,47.05,27.07
564
+ 042-017,-42,17,770575.0,1613605.0,1548.29,-0.27,1273.06,22.11,37.98,27.09
565
+ 042-018,-42,18,770675.0,1613605.0,1568.49,-0.25,1359.8,22.11,54.77,26.12
566
+ 042-019,-42,19,770775.0,1613605.0,1576.57,-0.13,1445.91,14.52,30.49,26.52
567
+ 042-020,-42,20,770875.0,1613605.0,1578.39,-0.08,1515.66,24.49,14.52,26.67
568
+ 042-021,-42,21,770975.0,1613605.0,1577.78,-0.14,1450.81,14.52,28.66,26.98
569
+ 042-022,-42,22,771075.0,1613605.0,1569.34,-0.14,1355.24,15.74,34.26,27.56
570
+ 042-023,-42,23,771175.0,1613605.0,1576.67,-0.14,1260.16,12.17,20.82,27.39
571
+ 042-024,-42,24,771275.0,1613605.0,1592.24,-0.31,1162.88,15.74,12.17,26.03
572
+ 042-025,-42,25,771375.0,1613605.0,1599.97,-0.28,1069.3,12.17,77.09,23.98
573
+ 042-026,-42,26,771475.0,1613605.0,1601.65,-0.31,976.79,30.84,82.25,22.86
574
+ 042-027,-42,27,771575.0,1613605.0,1648.82,-0.28,882.93,39.05,74.59,22.84
575
+ 042-028,-42,28,771675.0,1613605.0,1687.69,-0.27,793.34,42.45,39.05,23.71
576
+ 042-029,-42,29,771775.0,1613605.0,1706.12,-0.16,704.73,18.17,57.68,24.81
577
+ 042-030,-42,30,771875.0,1613605.0,1735.29,-0.15,614.34,18.17,49.51,25.17
578
+ 042-031,-42,31,771975.0,1613605.0,1758.21,-0.15,529.01,18.17,36.85,25.89
579
+ 042-032,-42,32,772075.0,1613605.0,1774.45,-0.15,448.8,36.85,33.69,26.17
580
+ 042-033,-42,33,772175.0,1613605.0,1781.0,-0.22,375.61,33.69,52.01,25.63
581
+ 042-034,-42,34,772275.0,1613605.0,1773.04,-0.27,319.92,47.81,43.35,24.33
582
+ 042-035,-42,35,772375.0,1613605.0,1737.6,-0.26,288.26,43.35,89.91,22.54
583
+ 042-036,-42,36,772475.0,1613605.0,1708.03,-0.29,289.61,59.52,74.0,21.74
584
+ 043-017,-43,17,770575.0,1613505.0,1549.23,-0.33,1222.65,37.98,75.12,24.98
585
+ 043-018,-43,18,770675.0,1613505.0,1572.53,-0.28,1312.27,27.94,54.69,24.94
586
+ 043-019,-43,19,770775.0,1613505.0,1583.16,-0.23,1401.3,14.52,27.94,25.61
587
+ 043-020,-43,20,770875.0,1613505.0,1586.91,-0.23,1490.19,14.52,33.36,25.78
588
+ 043-021,-43,21,770975.0,1613505.0,1587.8,-0.23,1478.49,14.52,33.77,26.73
589
+ 043-022,-43,22,771075.0,1613505.0,1586.83,-0.09,1385.05,14.23,33.01,27.36
590
+ 043-023,-43,23,771175.0,1613505.0,1591.21,-0.05,1292.16,12.17,64.59,26.14
591
+ 043-024,-43,24,771275.0,1613505.0,1601.77,-0.31,1197.48,12.17,38.98,25.21
592
+ 043-025,-43,25,771375.0,1613505.0,1612.83,-0.31,1106.82,12.17,30.84,24.76
593
+ 043-026,-43,26,771475.0,1613505.0,1611.58,-0.31,1017.38,30.84,73.27,23.89
594
+ 043-027,-43,27,771575.0,1613505.0,1657.29,-0.28,926.09,39.05,63.78,23.52
595
+ 043-028,-43,28,771675.0,1613505.0,1703.34,-0.21,838.19,39.05,42.45,23.77
596
+ 043-029,-43,29,771775.0,1613505.0,1733.85,-0.2,751.87,18.17,53.57,24.68
597
+ 043-030,-43,30,771875.0,1613505.0,1750.9,-0.15,666.23,36.85,18.17,25.75
598
+ 043-031,-43,31,771975.0,1613505.0,1768.48,-0.15,588.12,18.17,41.19,25.84
599
+ 043-032,-43,32,772075.0,1613505.0,1790.08,-0.15,517.06,28.0,48.11,25.35
600
+ 043-033,-43,33,772175.0,1613505.0,1798.31,-0.15,454.85,28.0,47.81,25.77
601
+ 043-034,-43,34,772275.0,1613505.0,1792.25,-0.27,410.05,28.0,51.4,25.27
602
+ 043-035,-43,35,772375.0,1613505.0,1761.25,-0.27,385.83,40.11,63.03,23.76
603
+ 043-036,-43,36,772475.0,1613505.0,1728.54,-0.29,386.76,40.11,59.52,22.47
604
+ 043-037,-43,37,772575.0,1613505.0,1735.09,-0.28,413.23,82.3,82.42,21.81
605
+ 044-018,-44,18,770675.0,1613405.0,1547.16,-0.28,1282.29,11.41,49.98,24.86
606
+ 044-019,-44,19,770775.0,1613405.0,1562.91,-0.28,1362.82,27.94,64.86,24.59
607
+ 044-020,-44,20,770875.0,1613405.0,1580.39,-0.28,1455.07,27.94,75.6,24.84
608
+ 044-021,-44,21,770975.0,1613405.0,1594.3,-0.28,1502.56,31.21,30.45,26.35
609
+ 044-022,-44,22,771075.0,1613405.0,1598.15,-0.21,1421.09,14.23,35.02,27.5
610
+ 044-023,-44,23,771175.0,1613405.0,1600.94,-0.18,1330.71,31.21,14.23,26.62
611
+ 044-024,-44,24,771275.0,1613405.0,1614.25,-0.18,1238.72,14.23,38.7,25.57
612
+ 044-025,-44,25,771375.0,1613405.0,1626.78,-0.23,1150.12,30.84,40.09,25.16
613
+ 044-026,-44,26,771475.0,1613405.0,1621.77,-0.18,1062.08,30.84,72.4,24.27
614
+ 044-027,-44,27,771575.0,1613405.0,1649.29,-0.23,972.63,38.89,79.31,23.43
615
+ 044-028,-44,28,771675.0,1613405.0,1695.16,-0.2,888.07,42.45,81.62,23.36
616
+ 044-029,-44,29,771775.0,1613405.0,1734.25,-0.2,806.75,18.17,46.03,24.58
617
+ 044-030,-44,30,771875.0,1613405.0,1764.05,-0.15,727.58,18.17,43.65,25.18
618
+ 044-031,-44,31,771975.0,1613405.0,1767.19,-0.15,656.76,18.17,46.47,25.59
619
+ 044-032,-44,32,772075.0,1613405.0,1779.07,-0.15,593.89,28.0,40.68,25.8
620
+ 044-033,-44,33,772175.0,1613405.0,1798.71,-0.15,540.59,40.57,28.0,26.29
621
+ 044-034,-44,34,772275.0,1613405.0,1802.96,-0.21,503.49,28.0,65.95,25.62
622
+ 044-035,-44,35,772375.0,1613405.0,1775.73,-0.21,483.98,38.87,40.11,25.18
623
+ 044-036,-44,36,772475.0,1613405.0,1746.24,-0.29,484.51,38.87,66.3,23.98
624
+ 045-020,-45,20,770875.0,1613305.0,1564.45,-0.23,1422.78,23.93,81.21,24.42
625
+ 045-021,-45,21,770975.0,1613305.0,1580.31,-0.28,1466.59,23.93,61.82,25.75
626
+ 045-022,-45,22,771075.0,1613305.0,1594.24,-0.21,1452.61,14.23,31.21,26.88
627
+ 045-023,-45,23,771175.0,1613305.0,1599.32,-0.2,1375.48,14.23,47.27,26.02
628
+ 045-024,-45,24,771275.0,1613305.0,1614.14,-0.21,1284.78,14.23,46.84,25.6
629
+ 045-025,-45,25,771375.0,1613305.0,1631.84,-0.23,1197.73,26.11,35.61,25.21
630
+ 045-026,-45,26,771475.0,1613305.0,1643.89,-0.23,1112.37,35.61,38.89,25.1
631
+ 045-027,-45,27,771575.0,1613305.0,1654.33,-0.23,1026.99,38.89,70.64,24.05
632
+ 045-028,-45,28,771675.0,1613305.0,1697.45,-0.2,947.28,46.03,86.19,23.11
633
+ 045-029,-45,29,771775.0,1613305.0,1740.9,-0.2,871.49,43.65,47.66,24.36
634
+ 045-030,-45,30,771875.0,1613305.0,1780.4,-0.14,798.72,42.2,51.23,24.57
635
+ 045-031,-45,31,771975.0,1613305.0,1798.58,-0.15,734.72,40.68,48.33,24.63
636
+ 045-032,-45,32,772075.0,1613305.0,1796.47,-0.15,679.09,28.0,50.22,24.98
637
+ 045-033,-45,33,772175.0,1613305.0,1800.73,-0.15,633.0,28.0,40.57,25.86
638
+ 045-034,-45,34,772275.0,1613305.0,1804.59,-0.13,601.63,28.0,54.01,25.13
639
+ 045-035,-45,35,772375.0,1613305.0,1788.05,-0.15,585.4,33.18,38.87,25.13
640
+ 045-036,-45,36,772475.0,1613305.0,1771.76,-0.28,586.03,33.18,43.23,24.38
641
+ 046-018,-46,18,770675.0,1613205.0,1584.34,-0.16,1206.92,11.41,58.36,25.77
642
+ 046-019,-46,19,770775.0,1613205.0,1584.9,-0.28,1290.82,34.41,49.7,26.02
643
+ 046-020,-46,20,770875.0,1613205.0,1568.65,-0.28,1350.86,23.93,79.76,25.03
644
+ 046-021,-46,21,770975.0,1613205.0,1584.11,-0.28,1371.86,30.94,23.93,26.26
645
+ 046-022,-46,22,771075.0,1613205.0,1592.91,-0.21,1399.07,23.93,30.94,26.67
646
+ 046-023,-46,23,771175.0,1613205.0,1607.57,-0.18,1402.9,15.18,40.21,25.48
647
+ 046-024,-46,24,771275.0,1613205.0,1618.89,-0.21,1332.96,15.18,26.11,25.81
648
+ 046-025,-46,25,771375.0,1613205.0,1631.48,-0.22,1249.01,15.18,52.42,25.08
649
+ 046-026,-46,26,771475.0,1613205.0,1649.66,-0.21,1167.39,30.25,47.83,24.86
650
+ 046-027,-46,27,771575.0,1613205.0,1667.57,-0.22,1086.34,30.25,53.08,24.45
651
+ 046-028,-46,28,771675.0,1613205.0,1685.63,-0.2,1011.31,37.04,76.94,23.67
652
+ 046-029,-46,29,771775.0,1613205.0,1727.76,-0.2,940.65,37.04,57.94,24.39
653
+ 046-030,-46,30,771875.0,1613205.0,1768.45,-0.14,873.59,35.28,45.96,24.83
654
+ 046-031,-46,31,771975.0,1613205.0,1806.64,-0.11,815.48,27.9,42.2,25.11
655
+ 046-032,-46,32,772075.0,1613205.0,1826.06,-0.11,765.73,27.9,44.98,24.92
656
+ 046-033,-46,33,772175.0,1613205.0,1812.78,-0.12,725.17,27.9,44.22,25.04
657
+ 046-034,-46,34,772275.0,1613205.0,1820.73,-0.12,697.95,33.18,42.56,24.64
658
+ 046-035,-46,35,772375.0,1613205.0,1802.82,-0.23,684.0,38.87,33.18,24.83
659
+ 046-036,-46,36,772475.0,1613205.0,1769.29,-0.26,684.14,33.18,57.31,24.28
660
+ 047-017,-47,17,770575.0,1613105.0,1577.64,-0.23,1092.22,6.19,54.72,26.89
661
+ 047-018,-47,18,770675.0,1613105.0,1588.36,-0.23,1184.37,47.35,34.41,26.83
662
+ 047-019,-47,19,770775.0,1613105.0,1592.56,-0.23,1236.15,34.41,48.12,26.36
663
+ 047-020,-47,20,770875.0,1613105.0,1591.72,-0.21,1252.01,23.93,61.77,25.5
664
+ 047-021,-47,21,770975.0,1613105.0,1588.76,-0.21,1276.17,23.93,46.58,25.78
665
+ 047-022,-47,22,771075.0,1613105.0,1604.72,-0.2,1305.87,23.93,43.36,25.65
666
+ 047-023,-47,23,771175.0,1613105.0,1611.5,-0.2,1342.07,15.18,40.59,25.57
667
+ 047-024,-47,24,771275.0,1613105.0,1623.15,-0.21,1361.94,26.11,15.18,26.14
668
+ 047-025,-47,25,771375.0,1613105.0,1640.62,-0.22,1305.65,15.18,48.96,25.66
669
+ 047-026,-47,26,771475.0,1613105.0,1661.52,-0.22,1227.89,36.61,30.25,24.96
670
+ 047-027,-47,27,771575.0,1613105.0,1688.07,-0.22,1151.11,30.25,37.13,24.86
671
+ 047-028,-47,28,771675.0,1613105.0,1706.38,-0.18,1080.56,30.96,37.04,24.73
672
+ 047-029,-47,29,771775.0,1613105.0,1727.18,-0.17,1014.68,30.96,51.97,24.6
673
+ 047-030,-47,30,771875.0,1613105.0,1750.37,-0.14,952.84,30.96,61.57,24.99
674
+ 047-031,-47,31,771975.0,1613105.0,1783.85,-0.11,899.87,27.9,35.28,25.76
675
+ 047-032,-47,32,772075.0,1613105.0,1826.48,-0.14,855.04,35.28,27.9,25.76
676
+ 047-033,-47,33,772175.0,1613105.0,1833.76,-0.14,818.92,27.9,50.97,24.97
677
+ 047-034,-47,34,772275.0,1613105.0,1834.64,-0.14,794.93,30.83,42.58,24.66
678
+ 047-035,-47,35,772375.0,1613105.0,1798.79,-0.23,782.71,30.83,42.62,24.26
679
+ 047-036,-47,36,772475.0,1613105.0,1776.38,-0.25,783.25,33.18,73.19,22.86
680
+ 048-017,-48,17,770575.0,1613005.0,1584.01,-0.22,1071.31,6.19,53.28,26.9
681
+ 048-018,-48,18,770675.0,1613005.0,1591.17,-0.19,1126.89,25.85,47.35,26.23
682
+ 048-019,-48,19,770775.0,1613005.0,1602.1,-0.22,1137.01,25.85,79.34,25.27
683
+ 048-020,-48,20,770875.0,1613005.0,1611.47,-0.19,1153.07,22.81,67.03,25.27
684
+ 048-021,-48,21,770975.0,1613005.0,1610.39,-0.21,1178.14,18.87,66.67,25.85
685
+ 048-022,-48,22,771075.0,1613005.0,1605.51,-0.17,1210.26,18.87,41.5,25.94
686
+ 048-023,-48,23,771175.0,1613005.0,1620.01,-0.17,1249.36,15.18,32.31,26.22
687
+ 048-024,-48,24,771275.0,1613005.0,1630.39,-0.12,1296.35,15.18,31.91,26.46
688
+ 048-025,-48,25,771375.0,1613005.0,1655.46,-0.12,1332.09,15.18,44.81,25.52
689
+ 048-026,-48,26,771475.0,1613005.0,1686.82,-0.25,1294.34,30.25,36.61,24.75
690
+ 048-027,-48,27,771575.0,1613005.0,1707.99,-0.25,1222.63,30.25,40.33,24.3
691
+ 048-028,-48,28,771675.0,1613005.0,1737.01,-0.25,1156.41,30.96,64.94,24.66
692
+ 048-029,-48,29,771775.0,1613005.0,1758.81,-0.15,1095.09,37.04,30.96,25.33
693
+ 048-030,-48,30,771875.0,1613005.0,1760.65,-0.13,1038.06,24.38,45.54,25.47
694
+ 048-031,-48,31,771975.0,1613005.0,1781.28,-0.13,989.66,24.38,61.4,25.61
695
+ 048-032,-48,32,772075.0,1613005.0,1805.06,-0.14,949.08,24.38,41.05,25.68
696
+ 048-033,-48,33,772175.0,1613005.0,1837.05,-0.13,916.67,19.86,42.45,25.51
697
+ 048-034,-48,34,772275.0,1613005.0,1843.3,-0.14,895.3,19.86,30.83,25.65
698
+ 048-035,-48,35,772375.0,1613005.0,1809.01,-0.23,884.47,19.86,59.75,24.3
699
+ 048-036,-48,36,772475.0,1613005.0,1787.98,-0.25,884.88,29.76,59.27,22.67
700
+ 049-016,-49,16,770475.0,1612905.0,1568.68,-0.23,973.0,0.03,60.45,26.8
701
+ 049-017,-49,17,770575.0,1612905.0,1589.87,-0.22,1026.19,24.8,27.97,27.07
702
+ 049-018,-49,18,770675.0,1612905.0,1598.47,-0.22,1030.47,27.09,25.85,26.29
703
+ 049-019,-49,19,770775.0,1612905.0,1617.68,-0.22,1038.84,23.23,53.63,25.6
704
+ 049-020,-49,20,770875.0,1612905.0,1630.87,-0.21,1056.39,21.97,32.2,26.53
705
+ 049-021,-49,21,770975.0,1612905.0,1623.43,-0.21,1083.7,16.44,22.81,27.75
706
+ 049-022,-49,22,771075.0,1612905.0,1617.32,-0.17,1118.54,16.44,18.87,27.77
707
+ 049-023,-49,23,771175.0,1612905.0,1628.63,-0.17,1160.73,16.44,26.87,26.7
708
+ 049-024,-49,24,771275.0,1612905.0,1644.38,-0.15,1211.18,26.87,28.63,26.61
709
+ 049-025,-49,25,771375.0,1612905.0,1667.78,-0.12,1266.12,28.63,35.56,25.57
710
+ 049-026,-49,26,771475.0,1612905.0,1706.08,-0.25,1315.61,35.56,47.6,24.45
711
+ 049-027,-49,27,771575.0,1612905.0,1741.84,-0.24,1294.67,36.61,90.07,23.21
712
+ 049-028,-49,28,771675.0,1612905.0,1772.07,-0.25,1233.65,30.96,60.71,24.31
713
+ 049-029,-49,29,771775.0,1612905.0,1775.09,-0.15,1176.36,30.96,38.77,25.82
714
+ 049-030,-49,30,771875.0,1612905.0,1775.53,-0.15,1123.45,22.68,45.14,26.29
715
+ 049-031,-49,31,771975.0,1612905.0,1792.98,-0.13,1078.89,22.68,24.38,26.8
716
+ 049-032,-49,32,772075.0,1612905.0,1803.9,-0.14,1041.8,22.68,41.73,26.11
717
+ 049-033,-49,33,772175.0,1612905.0,1831.81,-0.14,1012.35,19.86,41.0,25.91
718
+ 049-034,-49,34,772275.0,1612905.0,1842.55,-0.14,993.04,29.76,19.86,26.49
719
+ 049-035,-49,35,772375.0,1612905.0,1827.26,-0.22,983.29,19.86,29.76,26.08
720
+ 049-036,-49,36,772475.0,1612905.0,1805.17,-0.3,983.66,29.76,56.64,24.13
721
+ 050-017,-50,17,770575.0,1612805.0,1594.69,-0.18,933.07,2.34,27.09,26.7
722
+ 050-018,-50,18,770675.0,1612805.0,1607.54,-0.19,931.6,18.16,47.25,26.34
723
+ 050-019,-50,19,770775.0,1612805.0,1626.03,-0.19,940.84,23.23,45.63,26.26
724
+ 050-020,-50,20,770875.0,1612805.0,1639.71,-0.19,960.18,21.97,23.23,26.94
725
+ 050-021,-50,21,770975.0,1612805.0,1626.45,-0.14,990.15,16.44,21.97,28.2
726
+ 050-022,-50,22,771075.0,1612805.0,1623.88,-0.18,1028.15,18.87,16.44,28.01
727
+ 050-023,-50,23,771175.0,1612805.0,1637.52,-0.18,1073.9,16.44,45.22,26.22
728
+ 050-024,-50,24,771275.0,1612805.0,1666.4,-0.18,1128.24,22.15,32.79,25.71
729
+ 050-025,-50,25,771375.0,1612805.0,1684.07,-0.11,1187.02,22.15,59.8,24.78
730
+ 050-026,-50,26,771475.0,1612805.0,1726.4,-0.25,1250.84,22.15,69.43,23.59
731
+ 050-027,-50,27,771575.0,1612805.0,1769.1,-0.25,1313.81,16.79,87.03,22.55
732
+ 050-028,-50,28,771675.0,1612805.0,1801.47,-0.25,1311.21,16.79,42.52,24.5
733
+ 050-029,-50,29,771775.0,1612805.0,1802.87,-0.13,1260.15,16.79,50.26,25.87
734
+ 050-030,-50,30,771875.0,1612805.0,1797.99,-0.15,1210.91,22.68,34.18,26.4
735
+ 050-031,-50,31,771975.0,1612805.0,1806.41,-0.13,1169.69,24.38,22.68,26.92
736
+ 050-032,-50,32,772075.0,1612805.0,1818.41,-0.13,1135.56,22.68,43.94,26.29
737
+ 050-033,-50,33,772175.0,1612805.0,1843.19,-0.16,1108.61,19.86,36.82,25.74
738
+ 050-034,-50,34,772275.0,1612805.0,1843.95,-0.22,1091.01,19.86,31.65,25.87
739
+ 050-035,-50,35,772375.0,1612805.0,1819.63,-0.22,1082.14,19.86,37.16,26.11
740
+ 050-036,-50,36,772475.0,1612805.0,1801.58,-0.3,1081.82,29.76,55.07,24.6
741
+ 051-017,-51,17,770575.0,1612705.0,1590.83,-0.12,832.09,2.34,18.16,27.1
742
+ 051-018,-51,18,770675.0,1612705.0,1612.29,-0.18,829.75,5.25,33.77,26.62
743
+ 051-019,-51,19,770775.0,1612705.0,1631.12,-0.18,840.12,23.23,24.07,26.48
744
+ 051-020,-51,20,770875.0,1612705.0,1642.26,-0.18,861.72,14.71,38.0,26.21
745
+ 051-021,-51,21,770975.0,1612705.0,1632.81,-0.11,894.99,14.71,32.45,27.04
746
+ 051-022,-51,22,771075.0,1612705.0,1637.76,-0.18,936.86,14.71,32.01,26.48
747
+ 051-023,-51,23,771175.0,1612705.0,1650.66,-0.16,986.86,16.44,43.18,25.46
748
+ 051-024,-51,24,771275.0,1612705.0,1677.73,-0.18,1045.73,9.25,34.33,25.43
749
+ 051-025,-51,25,771375.0,1612705.0,1699.05,-0.12,1108.88,9.25,22.15,24.83
750
+ 051-026,-51,26,771475.0,1612705.0,1730.53,-0.24,1176.95,9.25,61.44,23.38
751
+ 051-027,-51,27,771575.0,1612705.0,1785.11,-0.24,1251.43,16.79,77.61,23.01
752
+ 051-028,-51,28,771675.0,1612705.0,1825.69,-0.24,1323.82,36.62,16.79,24.47
753
+ 051-029,-51,29,771775.0,1612705.0,1825.62,-0.15,1342.84,16.79,36.62,25.34
754
+ 051-030,-51,30,771875.0,1612705.0,1811.73,-0.21,1302.75,22.68,34.19,25.6
755
+ 051-031,-51,31,771975.0,1612705.0,1824.57,-0.21,1264.53,22.68,49.7,25.42
756
+ 051-032,-51,32,772075.0,1612705.0,1842.83,-0.22,1233.03,22.68,60.0,24.99
757
+ 051-033,-51,33,772175.0,1612705.0,1853.9,-0.26,1208.26,31.65,44.71,24.7
758
+ 051-034,-51,34,772275.0,1612705.0,1839.36,-0.28,1192.13,31.65,70.97,23.78
759
+ 051-035,-51,35,772375.0,1612705.0,1817.91,-0.28,1184.01,31.65,79.41,23.41
760
+ 052-018,-52,18,770675.0,1612605.0,1611.08,-0.04,730.94,2.36,25.24,25.76
761
+ 052-019,-52,19,770775.0,1612605.0,1639.11,-0.09,742.69,7.93,33.39,25.6
762
+ 052-020,-52,20,770875.0,1612605.0,1650.37,-0.09,767.05,14.71,36.37,26.07
763
+ 052-021,-52,21,770975.0,1612605.0,1646.9,-0.11,804.25,20.33,14.71,27.18
764
+ 052-022,-52,22,771075.0,1612605.0,1654.81,-0.18,850.6,14.71,36.22,26.77
765
+ 052-023,-52,23,771175.0,1612605.0,1668.46,-0.18,905.38,24.47,48.48,26.12
766
+ 052-024,-52,24,771275.0,1612605.0,1686.68,-0.18,969.21,9.25,29.67,25.84
767
+ 052-025,-52,25,771375.0,1612605.0,1706.35,-0.15,1037.04,22.15,9.25,24.74
768
+ 052-026,-52,26,771475.0,1612605.0,1736.37,-0.15,1109.53,9.25,52.67,23.83
769
+ 052-027,-52,27,771575.0,1612605.0,1778.95,-0.16,1188.24,16.79,50.41,23.89
770
+ 052-028,-52,28,771675.0,1612605.0,1813.65,-0.17,1267.82,16.79,42.02,23.93
771
+ 052-029,-52,29,771775.0,1612605.0,1843.67,-0.17,1348.23,16.79,45.44,23.85
772
+ 052-030,-52,30,771875.0,1612605.0,1846.22,-0.21,1385.08,34.19,78.12,23.79
773
+ 052-031,-52,31,771975.0,1612605.0,1862.89,-0.25,1357.57,34.19,83.91,23.44
774
+ 052-032,-52,32,772075.0,1612605.0,1867.45,-0.25,1328.28,43.26,58.1,23.73
775
+ 052-033,-52,33,772175.0,1612605.0,1852.23,-0.26,1305.32,44.71,65.2,23.07
776
+ 052-034,-52,34,772275.0,1612605.0,1837.44,-0.28,1289.88,44.71,73.81,22.84
777
+ 052-035,-52,35,772375.0,1612605.0,1833.54,-0.26,1274.9,53.46,78.55,23.02
778
+ 053-019,-53,19,770775.0,1612505.0,1632.89,-0.04,645.74,7.93,20.25,24.78
779
+ 053-020,-53,20,770875.0,1612505.0,1658.82,-0.04,673.61,14.29,20.33,25.99
780
+ 053-021,-53,21,770975.0,1612505.0,1661.85,-0.11,715.68,14.71,21.22,26.73
781
+ 053-022,-53,22,771075.0,1612505.0,1658.81,-0.16,767.39,14.71,48.41,26.56
782
+ 053-023,-53,23,771175.0,1612505.0,1674.23,-0.17,827.69,24.47,37.86,26.03
783
+ 053-024,-53,24,771275.0,1612505.0,1686.57,-0.19,897.06,9.25,24.47,24.91
784
+ 053-025,-53,25,771375.0,1612505.0,1707.57,-0.19,969.94,9.25,34.68,24.03
785
+ 053-026,-53,26,771475.0,1612505.0,1743.33,-0.19,1047.09,9.25,46.1,24.86
786
+ 053-027,-53,27,771575.0,1612505.0,1769.04,-0.19,1130.16,42.02,36.73,24.82
787
+ 053-028,-53,28,771675.0,1612505.0,1806.74,-0.17,1213.55,36.73,69.03,23.66
788
+ 053-029,-53,29,771775.0,1612505.0,1850.33,-0.16,1299.12,42.02,79.31,23.41
789
+ 053-030,-53,30,771875.0,1612505.0,1881.78,-0.21,1388.01,34.7,43.09,23.93
790
+ 053-031,-53,31,771975.0,1612505.0,1891.98,-0.25,1439.3,34.7,43.26,24.57
791
+ 053-032,-53,32,772075.0,1612505.0,1870.94,-0.24,1424.04,34.7,88.05,23.68
792
+ 053-033,-53,33,772175.0,1612505.0,1869.24,-0.26,1400.28,58.1,93.98,23.06
793
+ 054-018,-54,18,770675.0,1612405.0,1623.12,-0.08,530.28,2.36,30.74,25.64
794
+ 054-019,-54,19,770775.0,1612405.0,1618.84,-0.08,546.63,7.93,14.29,25.65
795
+ 054-020,-54,20,770875.0,1612405.0,1641.51,-0.08,579.28,14.29,28.43,26.54
796
+ 054-021,-54,21,770975.0,1612405.0,1664.26,-0.07,627.7,20.33,26.68,27.11
797
+ 054-022,-54,22,771075.0,1612405.0,1671.97,-0.12,686.08,21.22,32.92,27.02
798
+ 054-023,-54,23,771175.0,1612405.0,1673.85,-0.17,752.92,24.47,35.14,26.25
799
+ 054-024,-54,24,771275.0,1612405.0,1697.82,-0.19,828.58,24.47,78.86,24.04
800
+ 054-025,-54,25,771375.0,1612405.0,1724.32,-0.19,906.98,24.47,76.88,23.89
801
+ 054-026,-54,26,771475.0,1612405.0,1737.41,-0.19,989.05,34.38,62.59,24.94
802
+ 054-027,-54,27,771575.0,1612405.0,1757.49,-0.19,1076.6,35.41,52.35,24.78
803
+ 054-028,-54,28,771675.0,1612405.0,1801.26,-0.17,1163.82,35.41,68.58,23.85
804
+ 054-029,-54,29,771775.0,1612405.0,1848.89,-0.17,1252.57,43.09,46.74,24.51
805
+ 055-018,-55,18,770675.0,1612305.0,1637.84,-0.11,432.06,8.25,16.71,26.43
806
+ 055-019,-55,19,770775.0,1612305.0,1636.83,-0.12,451.66,14.29,33.18,26.76
807
+ 055-020,-55,20,770875.0,1612305.0,1631.0,-0.12,490.69,9.87,22.28,27.02
808
+ 055-021,-55,21,770975.0,1612305.0,1659.87,-0.12,547.02,9.87,44.36,26.73
809
+ 055-022,-55,22,771075.0,1612305.0,1681.27,-0.06,613.12,9.87,32.27,26.77
810
+ 055-023,-55,23,771175.0,1612305.0,1691.35,-0.17,687.12,32.27,45.77,26.77
811
+ 055-024,-55,24,771275.0,1612305.0,1704.44,-0.19,769.28,34.38,51.92,25.31
812
+ 055-025,-55,25,771375.0,1612305.0,1723.4,-0.19,853.14,37.69,34.38,25.26
813
+ 055-026,-55,26,771475.0,1612305.0,1735.27,-0.19,939.91,12.5,50.23,25.58
814
+ 055-027,-55,27,771575.0,1612305.0,1760.97,-0.19,1031.58,12.5,35.41,25.68
815
+ 055-028,-55,28,771675.0,1612305.0,1785.85,-0.13,1121.93,12.5,44.12,25.22
816
+ 056-019,-56,19,770775.0,1612205.0,1647.82,-0.23,358.9,16.71,26.35,26.21
817
+ 056-020,-56,20,770875.0,1612205.0,1640.21,-0.23,406.87,9.87,45.09,27.37
818
+ 056-021,-56,21,770975.0,1612205.0,1640.58,-0.12,473.28,22.28,9.87,27.81
819
+ 056-022,-56,22,771075.0,1612205.0,1657.77,-0.09,548.32,9.87,42.96,26.39
820
+ 056-023,-56,23,771175.0,1612205.0,1677.68,-0.16,629.98,32.27,70.21,25.46
821
+ 056-024,-56,24,771275.0,1612205.0,1699.41,-0.16,718.67,34.38,37.69,25.19
822
+ 056-025,-56,25,771375.0,1612205.0,1723.19,-0.16,807.72,33.36,59.15,25.11
823
+ 056-026,-56,26,771475.0,1612205.0,1741.76,-0.16,898.81,12.5,54.95,25.54
824
+ 056-027,-56,27,771575.0,1612205.0,1760.47,-0.11,993.89,17.08,12.5,26.57
825
+ 057-019,-57,19,770775.0,1612105.0,1641.22,-0.21,268.16,19.8,57.59,24.97
826
+ 057-020,-57,20,770875.0,1612105.0,1656.97,-0.23,329.5,9.87,23.43,27.44
827
+ 057-021,-57,21,770975.0,1612105.0,1649.9,-0.12,408.67,9.87,29.64,27.58
828
+ 057-022,-57,22,771075.0,1612105.0,1654.41,-0.12,493.59,9.87,39.86,25.94
829
+ 057-023,-57,23,771175.0,1612105.0,1683.12,-0.18,582.86,37.69,43.05,24.49
830
+ 057-024,-57,24,771275.0,1612105.0,1702.08,-0.18,677.63,23.86,49.91,24.01
831
+ 057-025,-57,25,771375.0,1612105.0,1719.47,-0.18,771.38,23.86,38.35,24.85
832
+ 057-026,-57,26,771475.0,1612105.0,1738.16,-0.16,865.8,12.5,33.36,25.73
833
+ 058-019,-58,19,770775.0,1612005.0,1655.89,-0.23,190.83,19.8,30.8,24.68
834
+ 058-020,-58,20,770875.0,1612005.0,1670.61,-0.23,270.52,18.51,21.92,27.32
835
+ 058-021,-58,21,770975.0,1612005.0,1673.41,-0.09,362.65,21.92,18.51,27.23
836
+ 058-022,-58,22,771075.0,1612005.0,1663.18,-0.12,456.04,18.51,44.02,25.77
837
+ 058-023,-58,23,771175.0,1612005.0,1670.72,-0.18,551.37,14.97,44.63,24.31
838
+ 058-024,-58,24,771275.0,1612005.0,1690.15,-0.15,650.74,4.85,64.67,24.13
839
+ 058-025,-58,25,771375.0,1612005.0,1709.79,-0.18,747.0,1.5,23.86,25.29
840
+ 059-019,-59,19,770775.0,1611905.0,1647.92,-0.28,148.03,19.8,48.49,24.0
841
+ 059-020,-59,20,770875.0,1611905.0,1677.06,-0.28,238.75,18.51,33.35,25.49
842
+ 059-021,-59,21,770975.0,1611905.0,1686.62,-0.28,339.48,18.51,30.35,26.11
843
+ 059-022,-59,22,771075.0,1611905.0,1689.42,-0.16,437.82,14.18,23.03,25.85
844
+ 059-023,-59,23,771175.0,1611905.0,1678.54,-0.18,536.4,14.18,39.61,25.19
845
+ 059-024,-59,24,771275.0,1611905.0,1680.42,-0.18,637.81,4.85,14.97,25.52
846
+ 060-019,-60,19,770775.0,1611805.0,1642.28,-0.28,161.39,28.43,53.46,23.42
847
+ 060-020,-60,20,770875.0,1611805.0,1671.2,-0.24,237.4,30.35,60.49,23.32
848
+ 060-021,-60,21,770975.0,1611805.0,1691.36,-0.28,332.33,23.03,47.42,24.51
849
+ 060-022,-60,22,771075.0,1611805.0,1703.1,-0.16,425.99,14.18,29.88,25.32
850
+ 060-023,-60,23,771175.0,1611805.0,1707.76,-0.16,520.33,14.97,14.18,25.7
851
+ 060-024,-60,24,771275.0,1611805.0,1713.53,-0.16,618.17,4.85,41.29,26.07
852
+ 060-025,-60,25,771375.0,1611805.0,1700.66,-0.15,712.04,0.55,16.34,26.51
853
+ 061-019,-61,19,770775.0,1611705.0,1634.24,-0.28,124.37,44.13,36.33,24.07
854
+ 061-020,-61,20,770875.0,1611705.0,1661.71,-0.28,206.02,36.33,57.26,23.27
855
+ 061-021,-61,21,770975.0,1611705.0,1695.57,-0.28,303.97,29.88,41.55,23.75
856
+ 061-022,-61,22,771075.0,1611705.0,1711.65,-0.23,400.87,14.18,38.46,24.46
857
+ 061-023,-61,23,771175.0,1611705.0,1720.04,-0.21,498.51,14.18,38.16,24.94
858
+ 061-024,-61,24,771275.0,1611705.0,1728.92,-0.21,599.13,14.18,35.42,25.52
859
+ 061-025,-61,25,771375.0,1611705.0,1717.96,-0.18,671.7,0.55,59.62,24.83
860
+ 062-019,-62,19,770775.0,1611605.0,1624.01,-0.24,98.04,36.33,48.76,24.77
861
+ 062-020,-62,20,770875.0,1611605.0,1658.78,-0.25,192.4,36.33,66.67,23.29
862
+ 062-021,-62,21,770975.0,1611605.0,1690.45,-0.25,293.83,21.06,59.58,22.87
863
+ 062-022,-62,22,771075.0,1611605.0,1703.04,-0.25,392.53,21.06,46.21,23.47
864
+ 062-023,-62,23,771175.0,1611605.0,1716.13,-0.21,490.36,21.06,49.52,23.87
865
+ 062-024,-62,24,771275.0,1611605.0,1729.37,-0.21,562.18,31.54,44.96,24.52
866
+ 062-025,-62,25,771375.0,1611605.0,1739.86,-0.19,584.14,35.42,47.55,23.83
867
+ 062-026,-62,26,771475.0,1611605.0,1730.78,-0.19,584.61,4.5,60.76,24.47
868
+ 063-019,-63,19,770775.0,1611505.0,1632.82,-0.25,127.42,48.76,49.04,23.96
869
+ 063-020,-63,20,770875.0,1611505.0,1661.0,-0.25,198.62,39.3,59.8,22.8
870
+ 063-021,-63,21,770975.0,1611505.0,1698.32,-0.25,292.78,21.06,55.33,23.0
871
+ 063-022,-63,22,771075.0,1611505.0,1710.83,-0.25,386.57,28.56,21.06,23.56
872
+ 063-023,-63,23,771175.0,1611505.0,1715.2,-0.21,446.5,21.06,31.54,23.8
873
+ 063-024,-63,24,771275.0,1611505.0,1728.26,-0.21,470.01,29.65,46.05,24.16
874
+ 063-025,-63,25,771375.0,1611505.0,1746.9,-0.19,483.59,38.43,67.03,23.58
875
+ 063-026,-63,26,771475.0,1611505.0,1751.79,-0.19,483.1,6.5,64.07,24.56
876
+ 063-027,-63,27,771575.0,1611505.0,1745.46,-0.13,501.09,4.21,21.35,26.23
877
+ 064-019,-64,19,770775.0,1611405.0,1648.0,-0.25,76.08,49.04,71.1,22.96
878
+ 064-020,-64,20,770875.0,1611405.0,1681.69,-0.28,168.41,39.3,75.53,22.73
879
+ 064-021,-64,21,770975.0,1611405.0,1697.26,-0.28,267.3,21.06,39.3,23.77
880
+ 064-022,-64,22,771075.0,1611405.0,1703.15,-0.28,340.77,21.06,28.56,24.02
881
+ 064-023,-64,23,771175.0,1611405.0,1717.64,-0.28,351.92,21.06,29.65,23.68
882
+ 064-024,-64,24,771275.0,1611405.0,1728.4,-0.28,375.98,29.65,38.43,23.93
883
+ 064-025,-64,25,771375.0,1611405.0,1737.83,-0.28,385.5,35.01,68.4,23.19
884
+ 064-026,-64,26,771475.0,1611405.0,1756.86,-0.28,384.81,21.35,41.51,24.27
885
+ 064-027,-64,27,771575.0,1611405.0,1764.18,-0.21,408.48,4.21,31.8,25.92
886
+ 065-020,-65,20,770875.0,1611305.0,1667.36,-0.31,159.75,38.64,68.45,22.36
887
+ 065-021,-65,21,770975.0,1611305.0,1691.27,-0.34,250.97,28.56,59.66,22.45
888
+ 065-022,-65,22,771075.0,1611305.0,1714.2,-0.34,257.83,28.56,61.42,22.48
889
+ 065-023,-65,23,771175.0,1611305.0,1722.4,-0.34,254.32,28.56,47.5,22.9
890
+ 065-024,-65,24,771275.0,1611305.0,1741.45,-0.31,282.16,29.65,35.01,23.23
891
+ 065-025,-65,25,771375.0,1611305.0,1750.2,-0.26,287.03,35.01,52.42,22.47
892
+ 065-026,-65,26,771475.0,1611305.0,1762.75,-0.34,287.02,31.8,46.84,23.2
893
+ 065-027,-65,27,771575.0,1611305.0,1765.09,-0.34,318.2,4.21,54.29,24.37
894
+ 066-021,-66,21,770975.0,1611205.0,1665.06,-0.34,213.49,43.52,38.64,21.66
895
+ 066-022,-66,22,771075.0,1611205.0,1699.03,-0.31,161.73,38.64,43.52,21.44
896
+ 066-023,-66,23,771175.0,1611205.0,1727.4,-0.34,155.32,35.01,46.21,21.79
897
+ 066-024,-66,24,771275.0,1611205.0,1750.55,-0.31,184.19,35.01,41.0,22.17
898
+ 066-025,-66,25,771375.0,1611205.0,1760.44,-0.29,185.58,35.01,45.96,22.3
899
+ 066-026,-66,26,771475.0,1611205.0,1757.12,-0.38,187.62,36.59,44.38,22.72
900
+ 067-023,-67,23,771175.0,1611105.0,1704.27,-0.34,61.44,41.0,54.32,21.29
901
+ 067-024,-67,24,771275.0,1611105.0,1741.46,-0.31,87.4,36.59,44.33,21.42
902
+ 067-025,-67,25,771375.0,1611105.0,1745.58,-0.35,87.12,41.0,36.59,22.03
903
+ 067-026,-67,26,771475.0,1611105.0,1724.78,-0.38,96.7,36.59,56.25,22.3
904
+ 068-024,-68,24,771275.0,1611005.0,1702.82,-0.3,24.61,54.93,64.53,21.49
905
+ 068-025,-68,25,771375.0,1611005.0,1708.71,-0.35,22.96,50.73,54.93,21.57