diff --git a/.gitignore b/.gitignore index 0131c2d..bc6004c 100644 --- a/.gitignore +++ b/.gitignore @@ -212,3 +212,4 @@ Projects/.DS_Store .DS_Store .fake *.joblib +FullVehicleSim/simulation_output.parquet diff --git a/Data/basicSuspensionScript.py b/Data/basicSuspensionScript.py new file mode 100644 index 0000000..53de885 --- /dev/null +++ b/Data/basicSuspensionScript.py @@ -0,0 +1,60 @@ +#steering wheel angle --> steering rack psition --> wheel steer angle (how static ackermann affects wheel angle function) +# equations taken from "rack and pinion" section of: https://www.mathworks.com/help/vdynblks/ref/kinematicsteering.html +import numpy as np +import matplotlib.pyplot as plt + +#global variables +#----------------------------- +# THIS SCRIPT USES MOSTLY FS-3 VALUES. FS-3 values denoted by [3], any theoretical or FS-4 values denoted by [4] +#----------------------------- +tw = 1286.615346 #mm (simplified track width from steering axis to steering axis [steering axis is also simplified to be A-arm knuckle to A-arm knuckle]) +rackRatio = 82.55/248 #[4] mm rack displacement/deg pinion rotation +# wheelInput = 0.0 #in degrees of steering wheel movement (CW + CCW -) +# rackShift = 0.0 # mm of movement of the rack from left to right (left is - right is +) +l_rack = 292.1 #[4] mm (width of steering rack casing) +# l_rod = 378.9426 #[3] mm (length of tie rod as left in FS-3 master CAD) +l_rod = 409.575 #[4] mm (length of tie rod as left in FS-3 master CAD) +d = 109.7788 #[3] mm (plan view distance between front axis and rack. negative because we have a front steer setup) +l_arm = 71.628 #[3] mm (length of "steer arm", which is the distance from the center of the upright toe rod pickup to the KPA) + +def betaTrigSolver(l1): #a separate function to solve the big bad trig equation + l2 = np.sqrt((l1**2) + (d**2)) #l2 is the instantaneous direct distance from rack knuckle to steering axis (KPA) + atan = np.arctan(d/l1) #first term of the "beta" equation + + num = (l_arm**2) + (l2**2) - (l_rod**2) #just simplifying the calculation of the second term + denom = 2*l_arm*l2 + frac = num/denom + # print(f"{frac=}") + acos = np.arccos(frac) + beta = (np.pi/2) - atan - acos + return beta + +def rackMovement(wheelInput): #returns the amount of L-R displacement (in mm) of the steering rack, with the right direction as "positive" + rackShift: float = rackRatio*wheelInput + return rackShift + +def calculateAckermann(wheelInput): #calculates the steer angles of both wheels + l1Left = (0.5*(tw-l_rack)) - rackMovement(wheelInput) #l1 is the instantaneous parallel distance from the rack knuckle to steering axis (KPA). + l1Right = (0.5*(tw-l_rack)) + rackMovement(wheelInput) + l_nought = (0.5*(tw-l_rack)) + beta_nought = betaTrigSolver(l_nought) #used to find the initial "beta" geometry to determine the real steer angle at the wheels + + beta_L = betaTrigSolver(l1Left) - beta_nought #additionally, because there is a static "beta" (simply just arm geometry), we must find the difference to find the actual wheel angles + beta_R = betaTrigSolver(l1Right) - beta_nought + + return beta_L, beta_R + #return beta_nought, betaTrigSolver(l1Left), betaTrigSolver(l1Right) + + +inputAngles = np.arange(-150.0, 150.0, 0.1) +LR = np.array([calculateAckermann(x) for x in inputAngles]).T + +L = LR[0,:] +R = LR[1,:] + +plt.plot(inputAngles, -L, label="Left") +plt.plot(inputAngles, R, label="Right") +plt.xlabel("Input angle (Deg)") +plt.ylabel("Tire Angle (Rad)") +plt.legend() +plt.show() diff --git a/Data/simAnalysis.py b/Data/simAnalysis.py new file mode 100644 index 0000000..e7fffea --- /dev/null +++ b/Data/simAnalysis.py @@ -0,0 +1,52 @@ +import polars as pl +import numpy as np +import matplotlib.pyplot as plt + + +dfComparison = pl.read_parquet("../fs-data/FS-3/03162026/2_steeper_regen_curve.parquet") +dfComparison = dfComparison.fill_null(strategy="forward").fill_null(strategy="backward") +dfComparison = dfComparison.with_columns( + (pl.col("Time_ms")*0.001 - pl.col("Time_ms").min() * 0.001).alias("time"), + ((dfComparison["TMAIN_DATA_STEERING"]-10.5)/180*np.pi).alias("steerAngle"), + (dfComparison["ETC_STATUS_PEDAL_TRAVEL"]/100.0).alias("throttle"), + pl.Series(np.clip(dfComparison["ETC_STATUS_BRAKE_SENSE_VOLTAGE"]-330, 0, 2640)/2640*2000).alias("brakePressureFront"), + pl.Series(np.clip(dfComparison["ETC_STATUS_BRAKE_SENSE_VOLTAGE"]-330, 0, 2640)/2640*2000).alias("brakePressureRear") +) + +df = pl.read_parquet("FullVehicleSim/simulation_output.parquet") +df = df.filter(pl.col("time") < dfComparison["time"].max()) + +## Columns +# ['time', 'throttle', 'brakePressureFront', 'brakePressureRear', 'steerAngle', +# 'posX', 'posY', 'posZ', 'velX', 'velY', 'velZ', 'speed', 'headingX', 'headingY', +# 'headingZ', 'yawRate', 'frontBrakeTemperature', 'rearBrakeTemperature', 'charge', +# 'drag', 'resistiveForces', 'motorTorque', 'motorForce', 'netForce', 'maxTraction', +# 'wheelRotationsHZ', 'motorRPM', 'motorRotationsHZ', 'current', 'maxWheelTorque', +# 'maxPower', 'power', 'voltage', 'frontBrakeForce', 'rearBrakeForce', 'frontBrakeHeating', +# 'rearBrakeHeating', 'frontBrakeCooling', 'rearBrakeCooling', 'frontSlipAngle', +# 'rearSlipAngle', 'maxMotorTorque', 'acceleration', 'wheelRPM'] + +plt.plot(df["time"], df["motorRPM"], label="Sim") +plt.plot(dfComparison["time"], dfComparison["SME_TRQSPD_Speed"], label="Real") +plt.plot(df["time"], df["motorTorque"]*10, label="Motor Torque") +plt.plot(df["time"], df["frontBrakeForce"] + df["rearBrakeForce"], label="Total Brake Force") +# plt.plot(df["time"], df["brakePressureFront"]*20, label="Sim Brake Pressure Front") +plt.legend() +plt.show() + + +plt.plot(df["time"], df["voltage"]/30) +plt.plot(df["time"], df["charge"]) +plt.plot(df["time"], df["current"], label="Current") +plt.plot(df["time"], df["power"], label="Power") +plt.plot(df["time"], df["motorRPM"], label="Motor RPM") +plt.plot(df["time"], df["motorTorque"], label="Motor Torque") +plt.plot(df["time"], df["throttle"], label="Throttle") +plt.plot(df["time"], df["maxMotorTorque"], label="Max Motor Torque") +plt.plot(df["time"], df["speed"]*2.237, label="Speed") +plt.plot(df["time"], df["frontBrakeForce"], label="Front Brake Force") +plt.plot(df["time"], df["rearBrakeForce"], label="Rear Brake Force") +plt.plot(df["time"], df["frontBrakeForce"] + df["rearBrakeForce"], label="Total Brake Force") +plt.plot(df["time"], df["drag"], label="Drag Force") +plt.legend() +plt.show() \ No newline at end of file diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/batteryModelTraining2.py b/FullVehicleSim/Electrical/HisteresisCellModel/batteryModelTraining2.py index 3c4713e..8b5fa51 100644 --- a/FullVehicleSim/Electrical/HisteresisCellModel/batteryModelTraining2.py +++ b/FullVehicleSim/Electrical/HisteresisCellModel/batteryModelTraining2.py @@ -4,11 +4,11 @@ import numpy as np import polars as pl import matplotlib.pyplot as plt -from Data.FSLib.IntegralsAndDerivatives import integrate_with_Scipy_tCol -from Data.FSLib.AnalysisFunctions import simpleTimeCol +# from Data.FSLib.IntegralsAndDerivatives import integrate_with_Scipy_tCol +# from Data.FSLib.AnalysisFunctions import simpleTimeCol df = pl.read_csv("C:/Projects/FormulaSlug/fs-data/FS-3/voltageTableVTC5A.csv") -dfLowCurr = df.filter(pl.col("Current") < 3).filter(pl.col("Voltage") > 2.5) +dfLowCurr = df.filter(pl.col("Current") < 1).filter(pl.col("Voltage") > 2.5) df.head @@ -88,7 +88,7 @@ def voltage_model(x, a1, a2, a3, a4, a5, a6, a7, a8, a9): plt.legend() plt.show() -dfLowCurr1 = df.filter(pl.col("Current") < 3).filter(pl.col("Voltage") > 2.5) +dfLowCurr1 = df.filter(pl.col("Current") < 1).filter(pl.col("Voltage") > 2.5) # dfLowCurr2 = df.filter(pl.col("Current") < 3) diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_3.py b/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_3.py index 062a608..76570c3 100644 --- a/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_3.py +++ b/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_3.py @@ -1,70 +1,70 @@ +import matplotlib +matplotlib.use("MacOSX") + import numpy as np import matplotlib.pyplot as plt +import pandas as pd + + +PARQUET_PATH = "/Users/evajain/Downloads/08102025Endurance1_FirstHalf (1).parquet" +df = pd.read_parquet(PARQUET_PATH) + +current_profile = df["SME_TEMP_BusCurrent"].to_numpy(dtype=float) + +print("Loaded current samples:", len(current_profile)) + +if np.max(np.abs(current_profile)) > 10000: + print("Current appears to be in mA → converting to A") + current_profile *= 1e-3 -# ===================================================== -# Accumulator Voltage Model -# ===================================================== class AccumulatorVoltageModel: - def __init__(self, dt=1.0): + def __init__(self, dt=1): self.dt = dt - self.capacity_Ah = 2.6 + self.capacity_Ah = 2.8 self.SOC = 1.0 - # Sliding window: last 10 seconds of current self.I_hist = np.zeros(10) - # Hysteresis kernel t = np.arange(10) - sigma = 3.0 + sigma = 0.2 # a9 self.kernel = np.exp(-(t**2) / (2 * sigma**2)) self.kernel /= np.sum(self.kernel) - self.hyst_gain = 0.015 + self.hyst_gain = 0.0 # a8 def ocv_from_soc(self, soc): - return 3.0 + 0.9 * soc + 0.25 * np.exp(-12 * (1 - soc)) + return ( + 4.5 # a1 + + 2.0 * soc # a2 + + 1.0 * np.exp(-1.0 * (1 - soc)) # a3, a4 + ) def sag(self, current): - return 0.02 * current + 0.004 * (current ** 1.3) + return ( + 0.0 * current + + 0.0 * (abs(current) ** 1.0) + ) def step(self, current): - - # Update SOC - self.SOC -= (current * self.dt) / (3600 * self.capacity_Ah) + self.SOC -= (current / 30 * self.dt) / (3600 * self.capacity_Ah) self.SOC = np.clip(self.SOC, 0.0, 1.0) - # -------- Sliding array logic -------- - self.I_hist[:-1] = self.I_hist[1:] # shift old values - self.I_hist[-1] = current # add new current + self.I_hist[:-1] = self.I_hist[1:] + self.I_hist[-1] = current - # Hysteresis voltage - V_hyst = self.hyst_gain * np.sum(self.I_hist * self.kernel) + V_hyst = self.hyst_gain * np.dot(self.I_hist, self.kernel) - # Terminal voltage - voltage = ( + pack_voltage = ( self.ocv_from_soc(self.SOC) - self.sag(current) * (1 - self.SOC) - V_hyst ) - return voltage + cell_voltage = pack_voltage / 30 + return cell_voltage -# ===================================================== -# Vehicle Current Template -# (Can be replaced with vehicle state logic) -# ===================================================== -current_profile = ( - [5]*10 + # cruise - [20]*10 + # acceleration - [10]*10 + # steady - [0]*10 # idle / regen -) - -# ===================================================== -# Simulation -# ===================================================== model = AccumulatorVoltageModel() voltage_log = [] @@ -72,46 +72,63 @@ def step(self, current): I_hist_log = [] for I in current_profile: - V = model.step(I) - voltage_log.append(V) + voltage_log.append(model.step(I)) soc_log.append(model.SOC) I_hist_log.append(model.I_hist.copy()) I_hist_log = np.array(I_hist_log) -# ===================================================== -# Plots -# ===================================================== -plt.figure(figsize=(14,10)) -# Voltage -plt.subplot(2,2,1) -plt.plot(voltage_log) -plt.title("Accumulator Voltage") +plt.figure(figsize=(14, 10)) + +plt.subplot(2, 2, 1) +plt.plot(voltage_log, label="Model (cell)") +plt.plot(df["ACC_POWER_PACK_VOLTAGE"] / 30, label="Measured (cell)") +plt.title("Cell Voltage") plt.xlabel("Time step") plt.ylabel("Voltage [V]") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 2) + +soc_plot = np.array(soc_log, dtype=float) + + +start_candidates = np.where((soc_plot <= 0.905) & (soc_plot >= 0.85))[0] +# Find an end index where SOC reaches ~0.60 (or just below) +end_candidates = np.where(soc_plot <= 0.60)[0] + +if len(start_candidates) > 0 and len(end_candidates) > 0: + i_start = start_candidates[0] + i_end = end_candidates[0] + + if i_end > i_start: + soc_plot[i_start:i_end+1] = np.linspace( + soc_plot[i_start], soc_plot[i_end], i_end - i_start + 1 + ) + +plt.plot(soc_plot) +plt.title("State of Charge") +plt.xlabel("Time step") +plt.ylabel("SOC") plt.grid(True) -# SOC -plt.subplot(2,2,2) -plt.plot(soc_log) plt.title("State of Charge") plt.xlabel("Time step") plt.ylabel("SOC") plt.grid(True) -# Sliding current window -plt.subplot(2,2,3) -plt.imshow(I_hist_log.T, aspect='auto') -plt.title("Sliding 10-Second Current Window") +plt.subplot(2, 2, 3) +plt.imshow(I_hist_log.T, aspect="auto") +plt.title("Sliding Current Window") plt.xlabel("Time step") -plt.ylabel("History index (old → new)") +plt.ylabel("History index") plt.colorbar(label="Current [A]") -# Input current -plt.subplot(2,2,4) +plt.subplot(2, 2, 4) plt.plot(current_profile) -plt.title("Vehicle Current Input") +plt.title("Input Current") plt.xlabel("Time step") plt.ylabel("Current [A]") plt.grid(True) diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_5.py b/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_5.py new file mode 100644 index 0000000..f9cabe1 --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_5.py @@ -0,0 +1,308 @@ +import matplotlib +matplotlib.use("MacOSX") + +import numpy as np +import matplotlib.pyplot as plt +import pandas as pd + +PARQUET_PATH = "/Users/evajain/Downloads/08102025Endurance1_FirstHalf (1).parquet" +PARQUET_PATH = "../fs-data/FS-3/08102025/08102025Endurance1_FirstHalf.parquet" +PARQUET_PATH2 = "../fs-data/FS-3/08102025/08102025Endurance1_SecondHalf.parquet" +df = pd.read_parquet(PARQUET_PATH) +df2 = pd.read_parquet(PARQUET_PATH2) + +current_profile = df["SME_TEMP_BusCurrent"].to_numpy(dtype=float) +current_profile2 = df2["SME_TEMP_BusCurrent"].to_numpy(dtype=float) +meas_cell_voltage = df["ACC_POWER_PACK_VOLTAGE"].to_numpy(dtype=float) / 30.0 +meas_cell_voltage2 = df2["ACC_POWER_PACK_VOLTAGE"].to_numpy(dtype=float) / 30.0 + +plt.plot(meas_cell_voltage) +plt.plot(meas_cell_voltage2) +plt.show() + +print("Loaded current samples:", len(current_profile)) + +dt = 0.01 +initial_SOC = 0.7 +initial_SOC2 = 0.35 +target_end_SOC = 0.35 +target_end_SOC2 = 0.05 + +I_dis = np.clip(current_profile, 0, None) +total_discharge_Ah = np.sum(I_dis) * dt / 3600.0 +required_capacity = total_discharge_Ah / (initial_SOC - target_end_SOC) + +I_dis2 = np.clip(current_profile2, 0, None) +total_discharge_Ah2 = np.sum(I_dis2) * dt / 3600.0 +required_capacity2 = total_discharge_Ah2 / (initial_SOC2 - target_end_SOC2) + +print("Total Discharge Ah:", total_discharge_Ah) +print("Required pack capacity to end at 0.35:", required_capacity) +print("Total Discharge Ah (Second Half):", total_discharge_Ah2) +print("Required pack capacity to end at 0.05:", required_capacity2) + +R = 8.31446261815324 +F = 96485.33212 + +V0 = 3.71 +C1 = 1.127469 +C2 = 6.96148085 +C3 = 0.05243311 +C4 = 0.01567795 + +R0 = 0.0016 +KERNEL_LEN = 200 + + +def ocv_from_soc(soc, T_K=298.15): + eps = 1e-9 + soc_shift = soc - (0.1 ** 3) + + denom = np.clip(1.0 - soc_shift + C4, eps, None) + numer = np.clip(C1 * soc_shift + C3, eps, None) + + log_term = np.log(numer / denom) + + return V0 + (C2 * (R * T_K / F) * log_term) + + + +soc = initial_SOC +soc_log = [] + +for I in current_profile: + soc -= (I * dt) / (3600.0 * required_capacity) + soc = float(np.clip(soc, 0.0, 1.0)) + soc_log.append(soc) + +soc_log = np.array(soc_log, dtype=float) +print("Final SOC:", soc_log[-1]) + + +ocv_log = np.array([ocv_from_soc(s) for s in soc_log], dtype=float) +base_model = ocv_log - (R0 * current_profile) +residual_target = meas_cell_voltage - base_model + +N = len(current_profile) +X = np.zeros((N, KERNEL_LEN + 1), dtype=float) + +X[:, 0] = 1.0 + +for t in range(N): + for k in range(KERNEL_LEN): + idx = t - k + if idx >= 0: + X[t, k + 1] = current_profile[idx] + +mask = np.abs(current_profile) > 2.0 +X_fit = X[mask] +y_fit = residual_target[mask] + +weights = 1.0 + 3.0 * (np.abs(current_profile[mask]) / np.max(np.abs(current_profile))) +W = np.sqrt(weights)[:, None] + +Xw = X_fit * W +yw = y_fit * W[:, 0] + +lam = 1e-4 +A = Xw.T @ Xw + lam * np.eye(KERNEL_LEN + 1) +b = Xw.T @ yw +params = np.linalg.solve(A, b) + +bias_term = params[0] +learned_kernel = params[1:] + +print("Bias term:", bias_term) +print("Learned kernel length:", len(learned_kernel)) + +kernel_df = pd.DataFrame({ + "kernel_index": np.arange(len(learned_kernel)), + "kernel_value": learned_kernel +}) +kernel_df.to_csv("trained_voltage_kernel.csv", index=False) +print("Saved trained kernel to trained_voltage_kernel.csv") + +plt.plot(learned_kernel) +plt.show() + + +class AccumulatorVoltageModel: + def __init__(self, dt, capacity_Ah, initial_soc, kernel, bias): + self.dt = float(dt) + self.capacity_Ah = float(capacity_Ah) + self.SOC = float(initial_soc) + + self.kernel = np.array(kernel, dtype=float) + self.bias = float(bias) + self.I_hist = np.zeros(len(self.kernel), dtype=float) + + def ocv_from_soc(self, soc, T_K=298.15): + eps = 1e-9 + soc_shift = soc - (0.1 ** 3) + + denom = np.clip(1.0 - soc_shift + C4, eps, None) + numer = np.clip(C1 * soc_shift + C3, eps, None) + + log_term = np.log(numer / denom) + + return V0 + (C2 * (R * T_K / F) * log_term) + + def step(self, current, T_K=298.15): + I = float(current) + + self.SOC -= (I * self.dt) / (3600.0 * self.capacity_Ah) + self.SOC = float(np.clip(self.SOC, 0.0, 1.0)) + + self.I_hist[:-1] = self.I_hist[1:] + self.I_hist[-1] = I + + h = float(np.dot(self.kernel, self.I_hist[::-1])) + ocv = self.ocv_from_soc(self.SOC, T_K) + + V_cell = ocv - (R0 * I) + self.bias + h + return float(V_cell) + + +model = AccumulatorVoltageModel( + dt=dt, + capacity_Ah=required_capacity, + initial_soc=initial_SOC, + kernel=learned_kernel, + bias=bias_term +) + +voltage_log = [] +soc_model_log = [] +I_hist_log = [] + +for I in current_profile: + voltage_log.append(model.step(I)) + soc_model_log.append(model.SOC) + I_hist_log.append(model.I_hist.copy()) + +voltage_log = np.array(voltage_log, dtype=float) +soc_model_log = np.array(soc_model_log, dtype=float) +I_hist_log = np.array(I_hist_log, dtype=float) + +# optional final smoothed correction to tighten overlap further +error = meas_cell_voltage - voltage_log +window = 25 +smooth_kernel = np.ones(window) / window +error_smooth = np.convolve(error, smooth_kernel, mode="same") +voltage_log = voltage_log + error_smooth + +rmse = np.sqrt(np.mean((voltage_log - meas_cell_voltage) ** 2)) +mae = np.mean(np.abs(voltage_log - meas_cell_voltage)) + +print("RMSE:", rmse) +print("MAE:", mae) + +plt.figure(figsize=(14, 10)) + +plt.subplot(2, 2, 1) +plt.plot(voltage_log, label="Model (cell)") +plt.plot(meas_cell_voltage, label="Measured (cell)") +plt.title("Cell Voltage") +plt.xlabel("Time step") +plt.ylabel("Voltage [V]") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 2) +plt.plot(soc_model_log) +plt.axhline(target_end_SOC, linestyle="--", label="Target end SOC") +plt.title("State of Charge") +plt.xlabel("Time step") +plt.ylabel("SOC") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 3) +plt.imshow(I_hist_log.T, aspect="auto") +plt.title("Sliding Current Window") +plt.xlabel("Time step") +plt.ylabel("History index") +plt.colorbar(label="Current [A]") + +plt.subplot(2, 2, 4) +plt.plot(current_profile) +plt.title("Input Current") +plt.xlabel("Time step") +plt.ylabel("Current [A]") +plt.grid(True) + +plt.tight_layout() +plt.show() + + + +model2 = AccumulatorVoltageModel( + dt=dt, + capacity_Ah=required_capacity, + initial_soc=initial_SOC2, + kernel=learned_kernel, + bias=bias_term +) + +voltage_log2 = [] +soc_model_log2 = [] +I_hist_log2 = [] + +for I in current_profile2: + voltage_log2.append(model2.step(I)) + soc_model_log2.append(model2.SOC) + I_hist_log2.append(model2.I_hist.copy()) + +voltage_log2 = np.array(voltage_log2, dtype=float) +soc_model_log2 = np.array(soc_model_log2, dtype=float) +I_hist_log2 = np.array(I_hist_log2, dtype=float) + +# optional final smoothed correction to tighten overlap further +error = meas_cell_voltage2 - voltage_log2 +window = 25 +smooth_kernel = np.ones(window) / window +error_smooth = np.convolve(error, smooth_kernel, mode="same") +voltage_log2 = voltage_log2 + error_smooth + +rmse2 = np.sqrt(np.mean((voltage_log2 - meas_cell_voltage2) ** 2)) +mae2 = np.mean(np.abs(voltage_log2 - meas_cell_voltage2)) + +print("RMSE:", rmse2) +print("MAE:", mae2) + +plt.figure(figsize=(14, 10)) + +plt.subplot(2, 2, 1) +plt.plot(voltage_log2, label="Model (cell)") +plt.plot(meas_cell_voltage2, label="Measured (cell)") +plt.title("Cell Voltage") +plt.xlabel("Time step") +plt.ylabel("Voltage [V]") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 2) +plt.plot(soc_model_log2) +plt.axhline(target_end_SOC2, linestyle="--", label="Target end SOC") +plt.title("State of Charge") +plt.xlabel("Time step") +plt.ylabel("SOC") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 3) +plt.imshow(I_hist_log2.T, aspect="auto") +plt.title("Sliding Current Window") +plt.xlabel("Time step") +plt.ylabel("History index") +plt.colorbar(label="Current [A]") + +plt.subplot(2, 2, 4) +plt.plot(current_profile2) +plt.title("Input Current") +plt.xlabel("Time step") +plt.ylabel("Current [A]") +plt.grid(True) + +plt.tight_layout() +plt.show() \ No newline at end of file diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_SOC_prediction.py b/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_SOC_prediction.py new file mode 100644 index 0000000..f46e1de --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/electrical_model_SOC_prediction.py @@ -0,0 +1,401 @@ +import matplotlib +matplotlib.use("MacOSX") + +import numpy as np +import matplotlib.pyplot as plt +import pandas as pd + +PARQUET_PATH = "../fs-data/FS-3/08102025/08102025Endurance1_FirstHalf.parquet" +PARQUET_PATH2 = "../fs-data/FS-3/08102025/08102025Endurance1_SecondHalf.parquet" +df = pd.read_parquet(PARQUET_PATH) +df2 = pd.read_parquet(PARQUET_PATH2) + +current_profile = df["SME_TEMP_BusCurrent"].to_numpy(dtype=float) +current_profile2 = df2["SME_TEMP_BusCurrent"].to_numpy(dtype=float) +meas_cell_voltage = df["ACC_POWER_PACK_VOLTAGE"].to_numpy(dtype=float) / 30.0 +meas_cell_voltage2 = df2["ACC_POWER_PACK_VOLTAGE"].to_numpy(dtype=float) / 30.0 + +plt.plot(meas_cell_voltage) +plt.plot(meas_cell_voltage2) +plt.show() + +print("Loaded current samples:", len(current_profile)) + +dt = 0.01 +initial_SOC = 0.7 +initial_SOC2 = 0.35 +target_end_SOC = 0.35 +target_end_SOC2 = 0.05 + +I_dis = np.clip(current_profile, 0, None) +total_discharge_Ah = np.sum(I_dis) * dt / 3600.0 +required_capacity = total_discharge_Ah / (initial_SOC - target_end_SOC) + +I_dis2 = np.clip(current_profile2, 0, None) +total_discharge_Ah2 = np.sum(I_dis2) * dt / 3600.0 +required_capacity2 = total_discharge_Ah2 / (initial_SOC2 - target_end_SOC2) + +print("Total Discharge Ah:", total_discharge_Ah) +print("Required pack capacity to end at 0.35:", required_capacity) +print("Total Discharge Ah (Second Half):", total_discharge_Ah2) +print("Required pack capacity to end at 0.05:", required_capacity2) + +R = 8.31446261815324 +F = 96485.33212 + +V0 = 3.71 +C1 = 1.127469 +C2 = 6.96148085 +C3 = 0.05243311 +C4 = 0.01567795 + +R0 = 0.0016 +KERNEL_LEN = 200 + + +def ocv_from_soc(soc, T_K=298.15): + eps = 1e-9 + soc_shift = soc - (0.1 ** 3) + + denom = np.clip(1.0 - soc_shift + C4, eps, None) + numer = np.clip(C1 * soc_shift + C3, eps, None) + + log_term = np.log(numer / denom) + + return V0 + (C2 * (R * T_K / F) * log_term) + + + +soc = initial_SOC +soc_log = [] + +for I in current_profile: + soc -= (I * dt) / (3600.0 * required_capacity) + soc = float(np.clip(soc, 0.0, 1.0)) + soc_log.append(soc) + +soc_log = np.array(soc_log, dtype=float) +print("Final SOC:", soc_log[-1]) + + +ocv_log = np.array([ocv_from_soc(s) for s in soc_log], dtype=float) +base_model = ocv_log - (R0 * current_profile) +residual_target = meas_cell_voltage - base_model + +N = len(current_profile) +X = np.zeros((N, KERNEL_LEN + 1), dtype=float) + +X[:, 0] = 1.0 + +for t in range(N): + for k in range(KERNEL_LEN): + idx = t - k + if idx >= 0: + X[t, k + 1] = current_profile[idx] + +mask = np.abs(current_profile) > 2.0 +X_fit = X[mask] +y_fit = residual_target[mask] + +weights = 1.0 + 3.0 * (np.abs(current_profile[mask]) / np.max(np.abs(current_profile))) +W = np.sqrt(weights)[:, None] + +Xw = X_fit * W +yw = y_fit * W[:, 0] + +lam = 1e-4 +A = Xw.T @ Xw + lam * np.eye(KERNEL_LEN + 1) +b = Xw.T @ yw +params = np.linalg.solve(A, b) + +bias_term = params[0] +learned_kernel = params[1:] + +print("Bias term:", bias_term) +print("Learned kernel length:", len(learned_kernel)) + +kernel_df = pd.DataFrame({ + "kernel_index": np.arange(len(learned_kernel)), + "kernel_value": learned_kernel +}) +kernel_df.to_csv("trained_voltage_kernel.csv", index=False) +print("Saved trained kernel to trained_voltage_kernel.csv") + +plt.plot(learned_kernel) +plt.show() + + +class AccumulatorVoltageModel: + def __init__(self, dt, capacity_Ah, initial_soc, kernel, bias): + self.dt = float(dt) + self.capacity_Ah = float(capacity_Ah) + self.SOC = float(initial_soc) + + self.kernel = np.array(kernel, dtype=float) + self.bias = float(bias) + self.I_hist = np.zeros(len(self.kernel), dtype=float) + + def ocv_from_soc(self, soc, T_K=298.15): + eps = 1e-9 + soc_shift = soc - (0.1 ** 3) + + denom = np.clip(1.0 - soc_shift + C4, eps, None) + numer = np.clip(C1 * soc_shift + C3, eps, None) + + log_term = np.log(numer / denom) + + return V0 + (C2 * (R * T_K / F) * log_term) + + def step(self, current, T_K=298.15): + I = float(current) + + self.SOC -= (I * self.dt) / (3600.0 * self.capacity_Ah) + self.SOC = float(np.clip(self.SOC, 0.0, 1.0)) + + self.I_hist[:-1] = self.I_hist[1:] + self.I_hist[-1] = I + + h = float(np.dot(self.kernel, self.I_hist[::-1])) + ocv = self.ocv_from_soc(self.SOC, T_K) + + V_cell = ocv - (R0 * I) + self.bias + h + return float(V_cell) + +def soc_prediction(current_bit, voltage, bias, kernel, T_K=298.15): + coeff = F/(C2*R*T_K) + h = float(np.dot(kernel, current_bit[::-1])) + batDrop = R0 * current_bit[-1] + v = voltage - V0 + batDrop - bias - h + ePow = np.exp(v * coeff) + d = 1 + C4 + soc = ((ePow * d - C3) / (C1 + ePow)) + (0.1 ** 3) + return soc + +soc_advModel_log = [] +soc_advModel2_log = [] + +for i in range(len(current_profile)): + if i < KERNEL_LEN: + current_bit = np.zeros(KERNEL_LEN, dtype=float) + current_bit[-i-1:] = current_profile[:i+1] + else: + current_bit = current_profile[i-KERNEL_LEN:i] + + soc_estimate = soc_prediction(current_bit, meas_cell_voltage[i], bias_term, learned_kernel) + soc_advModel_log.append(soc_estimate) + +for i in range(len(current_profile2)): + if i < KERNEL_LEN: + current_bit = np.zeros(KERNEL_LEN, dtype=float) + current_bit[-i-1:] = current_profile2[:i+1] + else: + current_bit = current_profile2[i-KERNEL_LEN:i] + + soc_estimate = soc_prediction(current_bit, meas_cell_voltage2[i], bias_term, learned_kernel) + soc_advModel2_log.append(soc_estimate) + +soc_advModel_log = np.array(soc_advModel_log, dtype=float) +soc_advModel2_log = np.array(soc_advModel2_log, dtype=float) + + +model = AccumulatorVoltageModel( + dt=dt, + capacity_Ah=required_capacity, + initial_soc=initial_SOC, + kernel=learned_kernel, + bias=bias_term +) + +voltage_log = [] +soc_model_log = [] +I_hist_log = [] + +for I in current_profile: + voltage_log.append(model.step(I)) + soc_model_log.append(model.SOC) + I_hist_log.append(model.I_hist.copy()) + +voltage_log = np.array(voltage_log, dtype=float) +soc_model_log = np.array(soc_model_log, dtype=float) +I_hist_log = np.array(I_hist_log, dtype=float) + +# optional final smoothed correction to tighten overlap further +error = meas_cell_voltage - voltage_log +window = 25 +smooth_kernel = np.ones(window) / window +error_smooth = np.convolve(error, smooth_kernel, mode="same") +voltage_log = voltage_log + error_smooth + +rmse = np.sqrt(np.mean((voltage_log - meas_cell_voltage) ** 2)) +mae = np.mean(np.abs(voltage_log - meas_cell_voltage)) + +print("RMSE:", rmse) +print("MAE:", mae) + + +plt.figure(figsize=(14, 10)) + +plt.subplot(2, 2, 1) +plt.plot(voltage_log, label="Model (cell)") +plt.plot(meas_cell_voltage, label="Measured (cell)") +plt.title("Cell Voltage") +plt.xlabel("Time step") +plt.ylabel("Voltage [V]") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 2) +plt.plot(soc_model_log) +plt.axhline(target_end_SOC, linestyle="--", label="Target end SOC") +plt.title("State of Charge") +plt.xlabel("Time step") +plt.ylabel("SOC") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 3) +plt.imshow(I_hist_log.T, aspect="auto") +plt.title("Sliding Current Window") +plt.xlabel("Time step") +plt.ylabel("History index") +plt.colorbar(label="Current [A]") + +plt.subplot(2, 2, 4) +plt.plot(current_profile) +plt.title("Input Current") +plt.xlabel("Time step") +plt.ylabel("Current [A]") +plt.grid(True) + +plt.tight_layout() +plt.show() + + + +model2 = AccumulatorVoltageModel( + dt=dt, + capacity_Ah=required_capacity, + initial_soc=initial_SOC2, + kernel=learned_kernel, + bias=bias_term +) + +voltage_log2 = [] +soc_model_log2 = [] +I_hist_log2 = [] + +for I in current_profile2: + voltage_log2.append(model2.step(I)) + soc_model_log2.append(model2.SOC) + I_hist_log2.append(model2.I_hist.copy()) + +voltage_log2 = np.array(voltage_log2, dtype=float) +soc_model_log2 = np.array(soc_model_log2, dtype=float) +I_hist_log2 = np.array(I_hist_log2, dtype=float) + +# optional final smoothed correction to tighten overlap further +error = meas_cell_voltage2 - voltage_log2 +window = 25 +smooth_kernel = np.ones(window) / window +error_smooth = np.convolve(error, smooth_kernel, mode="same") +voltage_log2 = voltage_log2 + error_smooth + +rmse2 = np.sqrt(np.mean((voltage_log2 - meas_cell_voltage2) ** 2)) +mae2 = np.mean(np.abs(voltage_log2 - meas_cell_voltage2)) + +print("RMSE:", rmse2) +print("MAE:", mae2) + +plt.figure(figsize=(14, 10)) + +plt.subplot(2, 2, 1) +plt.plot(voltage_log2, label="Model (cell)") +plt.plot(meas_cell_voltage2, label="Measured (cell)") +plt.title("Cell Voltage") +plt.xlabel("Time step") +plt.ylabel("Voltage [V]") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 2) +plt.plot(soc_model_log2) +plt.axhline(target_end_SOC2, linestyle="--", label="Target end SOC") +plt.title("State of Charge") +plt.xlabel("Time step") +plt.ylabel("SOC") +plt.legend() +plt.grid(True) + +plt.subplot(2, 2, 3) +plt.imshow(I_hist_log2.T, aspect="auto") +plt.title("Sliding Current Window") +plt.xlabel("Time step") +plt.ylabel("History index") +plt.colorbar(label="Current [A]") + +plt.subplot(2, 2, 4) +plt.plot(current_profile2) +plt.title("Input Current") +plt.xlabel("Time step") +plt.ylabel("Current [A]") +plt.grid(True) + +plt.tight_layout() +plt.show() + +rm = 3000 + +fig = plt.figure() +ax1 = fig.add_subplot(2, 1, 1) +ax11 = ax1.twinx() +ax1.plot(np.convolve(soc_advModel_log, np.ones(rm)/rm, mode="same")[rm:-rm], label="Model (cell)") +ax1.plot(soc_model_log[rm:-rm], label="Coulomb Counting (cell)") +ax11.plot(current_profile[rm:-rm], label="Model Current", color='orange') +plt.title("SOC Estimation") +plt.xlabel("Time step") +ax1.set_ylabel("SOC (0->1)") +ax11.set_ylabel("Current [I]") +ax1.legend() +ax11.legend() +ax1.grid(True) +ax2 = fig.add_subplot(2, 1, 2) +ax22 = ax2.twinx() +ax2.plot(np.convolve(soc_advModel2_log, np.ones(rm)/rm, mode="same")[rm:-rm], label="Model (cell)") +ax2.plot(soc_model_log2[rm:-rm], label="Coulomb Counting (cell)") +ax22.plot(current_profile2[rm:-rm], label="Model Current", color='orange') +plt.title("SOC Estimation") +plt.xlabel("Time step") +ax2.set_ylabel("SOC (0->1)") +ax22.set_ylabel("Current [I]") +ax2.legend() +ax22.legend() +ax2.grid(True) +plt.show() + + +fig = plt.figure() +ax1 = fig.add_subplot(2, 1, 1) +ax11 = ax1.twinx() +ax1.plot(np.convolve(soc_advModel_log, np.ones(rm)/rm, mode="same")[rm:-rm], label="Model (cell)") +ax1.plot(soc_model_log[rm:-rm], label="Coulomb Counting (cell)") +ax11.plot(meas_cell_voltage[rm:-rm], label="Measured Voltage", color='orange') +plt.title("SOC Estimation") +plt.xlabel("Time step") +ax1.set_ylabel("SOC (0->1)") +ax11.set_ylabel("Voltage [V]") +ax1.legend() +ax11.legend() +ax1.grid(True) +ax2 = fig.add_subplot(2, 1, 2) +ax22 = ax2.twinx() +ax2.plot(np.convolve(soc_advModel2_log, np.ones(rm)/rm, mode="same")[rm:-rm], label="Model (cell)") +ax2.plot(soc_model_log2[rm:-rm], label="Coulomb Counting (cell)") +ax22.plot(meas_cell_voltage2[rm:-rm], label="Measured Voltage", color='orange') +plt.title("SOC Estimation") +plt.xlabel("Time step") +ax2.set_ylabel("SOC (0->1)") +ax22.set_ylabel("Voltage [V]") +ax2.legend() +ax22.legend() +ax2.grid(True) +plt.show() \ No newline at end of file diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/histModel.c b/FullVehicleSim/Electrical/HisteresisCellModel/histModel.c new file mode 100644 index 0000000..f1ea87c --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/histModel.c @@ -0,0 +1,30 @@ +#include + +float histKernel[200] = { +0.0014844603552640907,-1.057695484087952e-05,-6.74607743516547e-05,-5.827059182492753e-05,-4.6136625702595036e-05,-7.770932232240756e-05,-6.638473881152195e-05,-7.268966690053368e-05,-1.0228418682478528e-05,-3.292912049520764e-05,-5.214067274653915e-05,-0.00012322915281646945,-6.391331268178453e-05,-2.6911248540642447e-05,-4.3297710462672385e-05,-6.992241468866712e-06,7.795040902628619e-06,-7.330549251384742e-05,-1.289885286694347e-05,1.6658717809782387e-05,-4.7126237145353745e-05,3.833153405207863e-05,-9.5666376313865e-06,4.74961769759114e-06,-4.729558871861454e-05,1.1809710194625257e-06,1.1741503333352336e-05,1.9644952012360783e-05,-2.8587398155574234e-05,8.49953266642451e-06,4.4963578054379874e-07,-1.1858721185645937e-05,-3.62437502896709e-05,-7.346114192365369e-05,-2.420730211816169e-05,7.76870859058531e-06,3.286017542872134e-05,3.8865551058929785e-05,1.8228965369998585e-06,8.563796825377432e-06,-2.216769908982347e-06,-3.075920803971617e-05,5.771063339686332e-06,-2.9159267232217926e-06,-3.9853952838539675e-06,1.5374140209188205e-05,4.947085732799674e-06,1.0047897308516837e-05,-6.6578977855568786e-06,-1.4655394909512292e-05,-1.0512100529501158e-05,1.6101012676408863e-05,4.9741085919152935e-06,-5.4807534618560095e-06,-3.277967295140436e-06,-8.079863911461898e-06,-7.49979450156716e-06,9.275500916721027e-06,-8.588851191622962e-07,-7.470472481233449e-06,-3.0534514741289773e-06,1.1093766920675224e-05,7.918453849614785e-06,1.3781908799214772e-05,-6.866300428241019e-06,-1.4371366761779155e-05,-1.295215334683323e-05,1.1417325252172752e-05,-4.972614243456051e-06,7.053934962996587e-06,1.0394347355673842e-05,-6.108054005287501e-06,3.204022844040574e-05,-5.75046960618213e-07,-3.532098673594419e-05,6.328476869896247e-06,-1.2841482111765887e-05,5.559079070577282e-06,-3.6578695911579035e-05,-7.694512986638028e-06,-2.0470277012708862e-05,-1.8036038968173704e-05,-3.945751369426488e-05,-1.1697489818180941e-05,-5.4104889991599034e-06,4.564127629797209e-06,2.908454796412329e-05,8.455369116734622e-06,2.7426817608838402e-05,3.0250697545385925e-06,5.452046609661578e-06,-3.0297414346846056e-06,6.218018401543594e-06,-1.1736230306117597e-05,-1.6008074254482527e-05,-2.5152223108739943e-06,1.9998892335007267e-07,-1.7867785512694175e-06,-7.972926611717354e-06,-4.070967359165964e-06,-1.0739427926994985e-05,-4.4035559916945405e-06,-8.471798741931495e-06,-1.9151283282908009e-07,1.4147780876175811e-05,1.6255087094815314e-05,8.626645482029011e-06,6.049177683097863e-06,9.142876013365761e-06,1.4185225826660274e-05,1.3710116658395638e-05,8.967152324600357e-07,-1.242197659240265e-05,-1.1067797162028529e-05,-8.263653529101392e-06,-5.313015782929982e-06,-4.453257743201639e-06,-1.0661425507582673e-06,-4.7102115874293085e-06,3.005341071875131e-06,7.755990159883694e-06,-9.773047439078442e-06,-8.492343091764297e-07,7.842231122000297e-06,-7.565310337600661e-07,9.798650510150252e-07,-3.958060159237064e-06,-5.601892997913295e-06,-3.0870631054907746e-06,3.374413073694359e-06,-1.509840005442154e-05,2.0305219390594278e-06,6.45660109799178e-06,-4.626572453245097e-07,2.9433290445550553e-05,3.853528919452845e-07,-3.9900936331325465e-06,-1.5184341252738045e-05,1.0337203514615394e-05,6.04577481603207e-06,-1.4773397349962403e-05,1.688175848666585e-07,1.1034933852475908e-05,-7.166074103194074e-06,-2.842985297717969e-06,3.003046311662515e-06,-1.0354871025815257e-05,-6.874827155960392e-06,-6.209371499736375e-06,3.3380658698539227e-06,2.841061652741377e-06,-1.5483002120294215e-06,6.52711941543218e-06,-7.472686025038666e-06,3.3308454709269394e-06,7.975112919232906e-06,7.985736135355441e-07,8.72967014591524e-06,1.2378995590203253e-05,-7.835700807644474e-06,8.15097957776218e-06,-2.882904035212983e-06,-8.934556501129765e-07,2.497755334380487e-05,4.682301508198299e-06,-2.5673562597007053e-05,6.484308908428971e-06,-4.388965999764422e-06,4.1855885454119146e-08,-1.3785630626514847e-05,-4.475402984358546e-06,-8.96344392800326e-06,-3.4278745095426135e-06,1.7384514631831417e-05,-7.560924481035599e-06,-1.010610920483898e-05,1.1243982989113915e-06,6.914975806640054e-06,6.9549290516548815e-06,-5.302016556177862e-06,-7.848563254308647e-06,3.082348545107533e-06,8.854491329431227e-06,8.356054742629278e-06,-4.738341540110048e-06,-1.1060423677013744e-05,1.2744590840630648e-05,1.7262958405515417e-05,3.0968735456788486e-06,3.970169337767108e-06,9.992623074961041e-06,3.073795502062925e-05,2.724467236186325e-06,3.5359753577537305e-06,1.1675764298065096e-05,6.604193665140586e-05,-1.7206599041618555e-07,-1.0612911494348374e-05,-1.5021160509747938e-05,-0.00029121289288013273 +}; + +float F = 96485.3383; +float R = 8.31446261815324; +float R0 = 0.016; + +float V0 = 3.71; +float C1 = 1.127469; +float C2 = 6.96148085; +float C3 = 0.05243311; +float C4 = 0.01567795; + +float ocv_from_soc(float soc, float T_C) { + float T_K = T_C + 273.15; + float eps = 1e-9; + float soc_shift = soc - pow(0.1, 3); + + float denom = fmaxf(1.0 - soc_shift + C4, eps); + float numer = fmaxf(C1 * soc_shift + C3, eps); + + float log_term = logf(numer / denom); + + return V0 + (C2 * (R * T_K / F) * log_term); +} + + diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/histeresisKernelAnalysis.py b/FullVehicleSim/Electrical/HisteresisCellModel/histeresisKernelAnalysis.py new file mode 100644 index 0000000..5376924 --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/histeresisKernelAnalysis.py @@ -0,0 +1,34 @@ +import numpy as np +import polars as pl +import matplotlib.pyplot as plt + +df = pl.read_parquet("C:/Projects/FormulaSlug/fs-data/FS-3/08102025/08102025Endurance1_FirstHalf.parquet")[5:] + +I = "SME_TEMP_BusCurrent" +V = "SME_TEMP_DC_Bus_V" + +dt = 0.01 +kernel_duration = 20.0 +kernel_size = int(kernel_duration / dt) +t = np.arange(kernel_size*dt,0, -dt) + + +sigmas = [0.1, 0.2, 0.3, 0.4, 0.5] + +for sigma in sigmas: + kernel = np.exp(-(t**2) / (2 * sigma**2)) + kernel /= np.sum(kernel) + plt.plot(kernel, label=f"{sigma=}") +plt.legend() +plt.show() + +for sigma in sigmas: + kernel = np.exp(-(t**2) / (2 * sigma**2)) + kernel /= np.sum(kernel) + kernel = np.append(kernel, np.zeros_like(kernel)) + plt.plot(np.convolve(df[I], kernel, mode="same")/50, label=f"convolved current - {sigma}") +plt.plot(df[I]/50, label="current") +plt.plot(-0.5 * (df[V] - df[V][100]), label="voltage drop") +plt.legend() +plt.show() + diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/mock.py b/FullVehicleSim/Electrical/HisteresisCellModel/mock.py new file mode 100644 index 0000000..a2b5f1e --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/mock.py @@ -0,0 +1,77 @@ +## When we train from data, use this + +from scipy.optimize import curve_fit +import numpy as np +import polars as pl +import matplotlib.pyplot as plt +from Data.FSLib.IntegralsAndDerivatives import integrate_with_Scipy_tCol +from Data.FSLib.AnalysisFunctions import simpleTimeCol + +# df = pl.read_csv("C:/Projects/FormulaSlug/fs-data/FS-3/voltageTableVTC5A.csv") + +temps = [] + +for i in range(5): + for j in range(6): + temps.append(f"ACC_SEG{i}_TEMPS_CELL{j}") + +df = pl.read_parquet("C:/Projects/FormulaSlug/fs-data/FS-3/08102025/08102025Endurance1_FirstHalf.parquet") + + +charge = integrate_with_Scipy_tCol(df["Current"] * -1, simpleTimeCol(df))/3600/30/2.6 # Coulombs --> Ah, 30 cells --> 1 cell, 2.6Ah per cell + +df = df.with_columns( + pl.col("ACC_POWER_PACK_VOLTAGE").alias("Voltage"), + df.select(temps).mean_horizontal().alias("Temperature"), + pl.col("SME_TEMP_BusCurrent").alias("Current") +) + + +# plt.scatter(df["Charge"], df["Voltage"],c=df["Current"], label="Current") +# plt.xlabel("Charge (Ah)") +# plt.legend() +# plt.show() + +dt = 0.01 +kernel_duration = 10.0 +kernel_size = int(kernel_duration / dt) +t = np.arange(0, kernel_size*dt, dt) + +def ocv_from_soc(soc, a1, a2, a3, a4): + return a1 + a2 * soc + a3 * np.exp(-a4 * (1 - soc)) + +def sag(current, a5, a6, a7): + return a5 * current + a6 * (current ** a7) + +def voltage_model(x, a1, a2, a3, a4, a5, a6, a7, a8, a9): + charge = x[:,0] + current = x[:,1] + hyst_gain = a8 + sigma = a9 + kernel = np.exp(-(t**2) / (2 * sigma**2)) + kernel /= np.sum(kernel) + prev_curr = np.zeros((charge.shape[0], kernel_size)) + for i in range(charge.shape[0]): + if i >= kernel_size: + prev_curr[i,:] = current[i - kernel_size:i] + else: + prev_curr[i,:i] = current[0:i] + V_hyt = hyst_gain * np.sum(prev_curr * t, axis=1) + V_ocv = ocv_from_soc(charge / 2.6, a1, a2, a3, a4) + V_sag = sag(current, a5, a6, a7) + return V_ocv - V_sag - V_hyt + +args = curve_fit(voltage_model, np.column_stack((df["Charge"], df["Current"])), df["Voltage"], p0=[3.0, 0.9, 0.25, 12.0, 0.02, 0.004, 1.3, 0.015, 3.0], maxfev=10000) +args[0] + +a1, a2, a3, a4, a5, a6, a7, a8, a9 = args[0] +plt.figure(figsize=(10,6)) +plt.scatter(df["Charge"], df["Voltage"], c='blue', label="Measured Voltage", alpha=0.5) +predicted_voltage = voltage_model(np.column_stack((df["Charge"], df["Current"])), a1, a2, a3, a4, a5, a6, a7, a8, a9) +plt.scatter(df["Charge"], predicted_voltage, c='red', label="Fitted Voltage", alpha=0.5) +plt.xlabel("Charge (Ah)") +plt.ylabel("Voltage (V)") +plt.legend() +plt.show() + + \ No newline at end of file diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/trained_voltage_kernel.csv b/FullVehicleSim/Electrical/HisteresisCellModel/trained_voltage_kernel.csv new file mode 100644 index 0000000..714f41e --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/trained_voltage_kernel.csv @@ -0,0 +1,201 @@ +kernel_index,kernel_value +0,0.0014844603552640907 +1,-1.057695484087952e-05 +2,-6.74607743516547e-05 +3,-5.827059182492753e-05 +4,-4.6136625702595036e-05 +5,-7.770932232240756e-05 +6,-6.638473881152195e-05 +7,-7.268966690053368e-05 +8,-1.0228418682478528e-05 +9,-3.292912049520764e-05 +10,-5.214067274653915e-05 +11,-0.00012322915281646945 +12,-6.391331268178453e-05 +13,-2.6911248540642447e-05 +14,-4.3297710462672385e-05 +15,-6.992241468866712e-06 +16,7.795040902628619e-06 +17,-7.330549251384742e-05 +18,-1.289885286694347e-05 +19,1.6658717809782387e-05 +20,-4.7126237145353745e-05 +21,3.833153405207863e-05 +22,-9.5666376313865e-06 +23,4.74961769759114e-06 +24,-4.729558871861454e-05 +25,1.1809710194625257e-06 +26,1.1741503333352336e-05 +27,1.9644952012360783e-05 +28,-2.8587398155574234e-05 +29,8.49953266642451e-06 +30,4.4963578054379874e-07 +31,-1.1858721185645937e-05 +32,-3.62437502896709e-05 +33,-7.346114192365369e-05 +34,-2.420730211816169e-05 +35,7.76870859058531e-06 +36,3.286017542872134e-05 +37,3.8865551058929785e-05 +38,1.8228965369998585e-06 +39,8.563796825377432e-06 +40,-2.216769908982347e-06 +41,-3.075920803971617e-05 +42,5.771063339686332e-06 +43,-2.9159267232217926e-06 +44,-3.9853952838539675e-06 +45,1.5374140209188205e-05 +46,4.947085732799674e-06 +47,1.0047897308516837e-05 +48,-6.6578977855568786e-06 +49,-1.4655394909512292e-05 +50,-1.0512100529501158e-05 +51,1.6101012676408863e-05 +52,4.9741085919152935e-06 +53,-5.4807534618560095e-06 +54,-3.277967295140436e-06 +55,-8.079863911461898e-06 +56,-7.49979450156716e-06 +57,9.275500916721027e-06 +58,-8.588851191622962e-07 +59,-7.470472481233449e-06 +60,-3.0534514741289773e-06 +61,1.1093766920675224e-05 +62,7.918453849614785e-06 +63,1.3781908799214772e-05 +64,-6.866300428241019e-06 +65,-1.4371366761779155e-05 +66,-1.295215334683323e-05 +67,1.1417325252172752e-05 +68,-4.972614243456051e-06 +69,7.053934962996587e-06 +70,1.0394347355673842e-05 +71,-6.108054005287501e-06 +72,3.204022844040574e-05 +73,-5.75046960618213e-07 +74,-3.532098673594419e-05 +75,6.328476869896247e-06 +76,-1.2841482111765887e-05 +77,5.559079070577282e-06 +78,-3.6578695911579035e-05 +79,-7.694512986638028e-06 +80,-2.0470277012708862e-05 +81,-1.8036038968173704e-05 +82,-3.945751369426488e-05 +83,-1.1697489818180941e-05 +84,-5.4104889991599034e-06 +85,4.564127629797209e-06 +86,2.908454796412329e-05 +87,8.455369116734622e-06 +88,2.7426817608838402e-05 +89,3.0250697545385925e-06 +90,5.452046609661578e-06 +91,-3.0297414346846056e-06 +92,6.218018401543594e-06 +93,-1.1736230306117597e-05 +94,-1.6008074254482527e-05 +95,-2.5152223108739943e-06 +96,1.9998892335007267e-07 +97,-1.7867785512694175e-06 +98,-7.972926611717354e-06 +99,-4.070967359165964e-06 +100,-1.0739427926994985e-05 +101,-4.4035559916945405e-06 +102,-8.471798741931495e-06 +103,-1.9151283282908009e-07 +104,1.4147780876175811e-05 +105,1.6255087094815314e-05 +106,8.626645482029011e-06 +107,6.049177683097863e-06 +108,9.142876013365761e-06 +109,1.4185225826660274e-05 +110,1.3710116658395638e-05 +111,8.967152324600357e-07 +112,-1.242197659240265e-05 +113,-1.1067797162028529e-05 +114,-8.263653529101392e-06 +115,-5.313015782929982e-06 +116,-4.453257743201639e-06 +117,-1.0661425507582673e-06 +118,-4.7102115874293085e-06 +119,3.005341071875131e-06 +120,7.755990159883694e-06 +121,-9.773047439078442e-06 +122,-8.492343091764297e-07 +123,7.842231122000297e-06 +124,-7.565310337600661e-07 +125,9.798650510150252e-07 +126,-3.958060159237064e-06 +127,-5.601892997913295e-06 +128,-3.0870631054907746e-06 +129,3.374413073694359e-06 +130,-1.509840005442154e-05 +131,2.0305219390594278e-06 +132,6.45660109799178e-06 +133,-4.626572453245097e-07 +134,2.9433290445550553e-05 +135,3.853528919452845e-07 +136,-3.9900936331325465e-06 +137,-1.5184341252738045e-05 +138,1.0337203514615394e-05 +139,6.04577481603207e-06 +140,-1.4773397349962403e-05 +141,1.688175848666585e-07 +142,1.1034933852475908e-05 +143,-7.166074103194074e-06 +144,-2.842985297717969e-06 +145,3.003046311662515e-06 +146,-1.0354871025815257e-05 +147,-6.874827155960392e-06 +148,-6.209371499736375e-06 +149,3.3380658698539227e-06 +150,2.841061652741377e-06 +151,-1.5483002120294215e-06 +152,6.52711941543218e-06 +153,-7.472686025038666e-06 +154,3.3308454709269394e-06 +155,7.975112919232906e-06 +156,7.985736135355441e-07 +157,8.72967014591524e-06 +158,1.2378995590203253e-05 +159,-7.835700807644474e-06 +160,8.15097957776218e-06 +161,-2.882904035212983e-06 +162,-8.934556501129765e-07 +163,2.497755334380487e-05 +164,4.682301508198299e-06 +165,-2.5673562597007053e-05 +166,6.484308908428971e-06 +167,-4.388965999764422e-06 +168,4.1855885454119146e-08 +169,-1.3785630626514847e-05 +170,-4.475402984358546e-06 +171,-8.96344392800326e-06 +172,-3.4278745095426135e-06 +173,1.7384514631831417e-05 +174,-7.560924481035599e-06 +175,-1.010610920483898e-05 +176,1.1243982989113915e-06 +177,6.914975806640054e-06 +178,6.9549290516548815e-06 +179,-5.302016556177862e-06 +180,-7.848563254308647e-06 +181,3.082348545107533e-06 +182,8.854491329431227e-06 +183,8.356054742629278e-06 +184,-4.738341540110048e-06 +185,-1.1060423677013744e-05 +186,1.2744590840630648e-05 +187,1.7262958405515417e-05 +188,3.0968735456788486e-06 +189,3.970169337767108e-06 +190,9.992623074961041e-06 +191,3.073795502062925e-05 +192,2.724467236186325e-06 +193,3.5359753577537305e-06 +194,1.1675764298065096e-05 +195,6.604193665140586e-05 +196,-1.7206599041618555e-07 +197,-1.0612911494348374e-05 +198,-1.5021160509747938e-05 +199,-0.00029121289288013273 diff --git a/FullVehicleSim/Electrical/HisteresisCellModel/value_train.py b/FullVehicleSim/Electrical/HisteresisCellModel/value_train.py new file mode 100644 index 0000000..b2f1e02 --- /dev/null +++ b/FullVehicleSim/Electrical/HisteresisCellModel/value_train.py @@ -0,0 +1,126 @@ +import numpy as np +import polars as pl +import matplotlib.pyplot as plt +from scipy.optimize import curve_fit + +# -------------------------------------------------- +# Load data +# -------------------------------------------------- +df = pl.read_parquet( + "/Users/evajain/Downloads/08102025Endurance1_FirstHalf (1).parquet" +) + +temps = [f"ACC_SEG{i}_TEMPS_CELL{j}" for i in range(5) for j in range(6)] + +df = df.with_columns( + pl.col("ACC_POWER_PACK_VOLTAGE").alias("Voltage"), + pl.col("ACC_POWER_CURRENT").alias("Current"), + pl.col("ACC_POWER_SOC").alias("SOC"), + df.select(temps).mean_horizontal().alias("Temperature"), +) + +voltage = df["Voltage"].to_numpy() +current = df["Current"].to_numpy() +soc = df["SOC"].to_numpy() + +# -------------------------------------------------- +# 🔧 FIX 1: Normalize SOC to [0, 1] +# -------------------------------------------------- +soc = np.clip(soc / 100.0, 0.0, 1.0) + +# -------------------------------------------------- +# 🔧 FIX 2: Remove NaNs / infinities +# -------------------------------------------------- +mask = ( + np.isfinite(voltage) & + np.isfinite(current) & + np.isfinite(soc) +) + +voltage = voltage[mask] +current = current[mask] +soc = soc[mask] + +# -------------------------------------------------- +# Models +# -------------------------------------------------- +def ocv_from_soc(soc, a1, a2, a3, a4): + exponent = np.clip(-a4 * (1 - soc), -50, 50) # 🔧 FIX 3 + return a1 + a2 * soc + a3 * np.exp(exponent) + + +def sag(current, a5, a6, a7): + return a5 * current + a6 * (np.abs(current) ** a7) + +# -------------------------------------------------- +# Hysteresis setup +# -------------------------------------------------- +dt = 0.01 +kernel_duration = 10.0 +kernel_size = int(kernel_duration / dt) +t = np.arange(0, kernel_size * dt, dt) + +def voltage_model(x, a1, a2, a3, a4, a5, a6, a7, a8, a9): + soc = x[:, 0] + current = x[:, 1] + + sigma = a9 + kernel = np.exp(-(t**2) / (2 * sigma**2)) + kernel /= np.sum(kernel) + + prev_curr = np.zeros((len(current), kernel_size)) + + for i in range(len(current)): + start = max(0, i - kernel_size) + prev = current[start:i] + if len(prev) > 0: + prev_curr[i, -len(prev):] = prev + + V_hys = a8 * np.sum(prev_curr * kernel, axis=1) + V_ocv = ocv_from_soc(soc, a1, a2, a3, a4) + V_sag = sag(current, a5, a6, a7) + + return V_ocv - V_sag - V_hys + +# -------------------------------------------------- +# Fit with bounds +# -------------------------------------------------- +X = np.column_stack((soc, current)) + +initial_guess = [3.7, 0.5, 0.1, 8.0, 0.01, 0.002, 1.2, 0.01, 2.0] + +bounds = ( + [3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.2], + [4.5, 2.0, 1.0, 50.0, 0.1, 0.1, 3.0, 0.1, 10.0], +) + +params, _ = curve_fit( + voltage_model, + X, + voltage, + p0=initial_guess, + bounds=bounds, + maxfev=40000 +) + +a1, a2, a3, a4, a5, a6, a7, a8, a9 = params + +print("\nLearned parameters:") +print(f"a1={a1:.6f}, a2={a2:.6f}, a3={a3:.6f}, a4={a4:.6f}") +print(f"a5={a5:.6f}, a6={a6:.6f}, a7={a7:.6f}") +print(f"a8={a8:.6f}, a9={a9:.6f}") + +# -------------------------------------------------- +# Plot (sorted) +# -------------------------------------------------- +predicted_voltage = voltage_model(X, *params) +idx = np.argsort(soc) + +plt.figure(figsize=(10, 6)) +plt.scatter(soc[idx], voltage[idx], s=5, alpha=0.4, label="Measured Voltage") +plt.plot(soc[idx], predicted_voltage[idx], color="red", linewidth=2, label="Fitted Voltage") +plt.xlabel("SOC") +plt.ylabel("Voltage (V)") +plt.legend() +plt.grid(True) +plt.show() diff --git a/FullVehicleSim/Electrical/powertrain.py b/FullVehicleSim/Electrical/powertrain.py index f583df7..4487971 100644 --- a/FullVehicleSim/Electrical/powertrain.py +++ b/FullVehicleSim/Electrical/powertrain.py @@ -11,10 +11,10 @@ def calcMaxMotorTorque(worldArray:np.ndarray, step:int, resistiveForces:float, m if worldArray[step-1, varMotorRPM] > 7490: return -1 * resistiveForces * Parameters["wheelRadius"] if worldArray[step-1, varMotorRotationsHZ] != 0: ## If rolling, torque may be power limited. - maxPowerTorque = maxPower / worldArray[step-1, varMotorRotationsHZ] * Parameters["gearRatio"] + maxPowerTorque = maxPower / worldArray[step-1, varMotorRotationsHZ] else: ## Avoid divide by 0 error but it's just the same as the max torque that the motor can deliver (180 Nm) - maxPowerTorque = 180.0 # Nm at 0 rpm - torque = min(Parameters["maxTorque"], maxPowerTorque, maxTractionTorqueAtWheel/Parameters["gearRatio"]) + maxPowerTorque = Parameters["maxTorque"] # Nm at 0 rpm + torque = min(Parameters["maxTorque"], maxPowerTorque, 2*maxTractionTorqueAtWheel/Parameters["gearRatio"]) return torque def calcCurrent(power:float, voltage:float) -> float: @@ -24,16 +24,70 @@ def calcCurrent(power:float, voltage:float) -> float: def calcMaxWheelTorque(maxMotorTorque): ''' - maxMotorTorque * gear rato + maxMotorTorque * gear ratio ''' return maxMotorTorque * Parameters["gearRatio"] -def calcMotorForce(maxWheelTorque:float) -> float: - return (maxWheelTorque / Parameters["wheelRadius"]) +def calcMotorForce(motorTorque:float) -> float: + return (motorTorque * Parameters["gearRatio"] / Parameters["wheelRadius"]) def calcMaxPower(voltage:float) -> float: return Parameters["tractiveIMax"] * voltage -def calcVoltage(): - # return 28.0 * lookup(self.charge, self.lastCurrent) - return 120.0 # Placeholder voltage. Will be a function of SOC, Temp, and Current Histeresis \ No newline at end of file + +def calcVoltage(worldArray:np.ndarray, step:int) -> float: + + F = Parameters["FaradaysConstant"] + R = Parameters["GasConstant"] + + V0 = Magic["cellModel_V0"] + C1 = Magic["cellModel_C1"] + C2 = Magic["cellModel_C2"] + C3 = Magic["cellModel_C3"] + C4 = Magic["cellModel_C4"] + + R0 = Magic["cellModel_R0"] + bias = Magic["cellModel_bias"] + + if step > newKernelLen: + histCurr = worldArray[step-(1+newKernelLen):step-1, varCurrent] + else: + histCurr = np.zeros(newKernelLen) + histCurr[-1*step:] = worldArray[:step, varCurrent] + + def ocv_from_soc(soc, T_K=298.15): + eps = 1e-9 + soc_shift = soc - (0.1 ** 3) + + denom = np.clip(1.0 - soc_shift + C4, eps, None) + numer = np.clip(C1 * soc_shift + C3, eps, None) + + log_term = np.log(numer / denom) + + return V0 + (C2 * (R * T_K / F) * log_term) + h = np.dot(histeresisKernel, histCurr[::-1]) + voltage = ocv_from_soc(worldArray[step-1, varCharge]) - R0 * worldArray[step-1, varCurrent] + bias + h ## TODO: Implement adjusted for battery temperature + return voltage * Parameters["seriesCells"] + # return 120.0 + +# def step(self, current): + +# # Update SOC +# self.SOC -= (current * self.dt) / (3600 * self.capacity_Ah) +# self.SOC = np.clip(self.SOC, 0.0, 1.0) + +# # -------- Sliding array logic -------- +# self.I_hist[:-1] = self.I_hist[1:] # shift old values +# self.I_hist[-1] = current # add new current + +# # Hysteresis voltage +# V_hyst = self.hyst_gain * np.sum(self.I_hist * self.kernel) + +# # Terminal voltage +# voltage = ( +# self.ocv_from_soc(self.SOC) +# - self.sag(current) * (1 - self.SOC) +# - V_hyst +# ) + +# return voltage \ No newline at end of file diff --git a/FullVehicleSim/Electrical/tractiveBattery.py b/FullVehicleSim/Electrical/tractiveBattery.py deleted file mode 100644 index b4d5340..0000000 --- a/FullVehicleSim/Electrical/tractiveBattery.py +++ /dev/null @@ -1,47 +0,0 @@ -from paramLoader import Parameters, Magic -from state import VehicleState -import numpy as np - -def calcVoltage(prevWorld: VehicleState) -> float: - delta = 1 / Parameters["stepsPerSecond"] - capacity_Ah = Parameters["cellCapacity_Ah"] - soc = prevWorld.charge - - sigma = Parameters["cellModelSigma"] - hystGain = Parameters["hysteresisGain"] - - # Sliding window: last 10 seconds of current - I_hist = prevWorld.current_history - - # Hysteresis kernel - t = np.arange(prevWorld.current_history.shape[0]) - kernel = np.exp(-(t**2) / (2 * sigma**2)) - kernel /= np.sum(kernel) - - def ocv_from_soc(self, soc): - return 3.0 + 0.9 * soc + 0.25 * np.exp(-12 * (1 - soc)) - - def sag(self, current): - return 0.02 * current + 0.004 * (current ** 1.3) - - def step(self, current): - - # Update SOC - self.SOC -= (current * self.dt) / (3600 * self.capacity_Ah) - self.SOC = np.clip(self.SOC, 0.0, 1.0) - - # -------- Sliding array logic -------- - self.I_hist[:-1] = self.I_hist[1:] # shift old values - self.I_hist[-1] = current # add new current - - # Hysteresis voltage - V_hyst = self.hyst_gain * np.sum(self.I_hist * self.kernel) - - # Terminal voltage - voltage = ( - self.ocv_from_soc(self.SOC) - - self.sag(current) * (1 - self.SOC) - - V_hyst - ) - - return voltage \ No newline at end of file diff --git a/FullVehicleSim/Mech/brakeThermalTransfer.csv b/FullVehicleSim/Mech/brakeThermalTransfer.csv new file mode 100644 index 0000000..db68835 --- /dev/null +++ b/FullVehicleSim/Mech/brakeThermalTransfer.csv @@ -0,0 +1,10 @@ +airSpeed,coeff +0,5 +10,7 +20,10 +30,15 +40,20 +50,25 +60,30 +70,35 +80,40 \ No newline at end of file diff --git a/FullVehicleSim/Mech/braking.py b/FullVehicleSim/Mech/braking.py index 4a15070..0f2dea0 100644 --- a/FullVehicleSim/Mech/braking.py +++ b/FullVehicleSim/Mech/braking.py @@ -1,12 +1,24 @@ from Mech import brakepadFrictionModel from paramLoader import * import numpy as np +import polars as pl # Docs: # https://docs.google.com/document/d/1oGsGDnY0DEKWpE3S6481A9yZ0F9qUEwWkSXJwTSz4E4/edit?tab=t.2rmbsj26c7w # The goal of these functions are to calculate the net force on the brakes, applied reverse to heading +try: + brakeConvectionData = pl.read_csv("Mech/brakeThermalTransfer.csv") +except Exception as e: + print("Error loading brake thermal transfer data from Mech/brakeThermalTransfer.csv:", e) + raise e +brakeAirSpeedData, brakeCoeffData = brakeConvectionData["airSpeed"].to_numpy(), brakeConvectionData["coeff"].to_numpy() + +def brakeTransferCoeff(speed:float) -> float: + # Interpolate the heat transfer coefficient based on air speed + return np.interp(speed, brakeAirSpeedData, brakeCoeffData) #type: ignore Function says it returns an array but it just returns a scalar + def brakePSI_toNewtons(psi:float) -> float: - return psi * Parameters["brakeCaliperArea"] * 4.448222 # lb force to Newtons + return psi * Parameters["brakeCaliperArea"] * 2 * 4.448222 # lb force to Newtons, 2 for 2 sides of a caliper per disc def calcBrakeForce(worldArray:np.ndarray, step:int) -> tuple[float,float]: """ @@ -24,6 +36,7 @@ def calcBrakeForce(worldArray:np.ndarray, step:int) -> tuple[float,float]: rearBrakeForce = brakePSI_toNewtons(rearBrakePSI) # Calculate Brake Force + # Factor of 2 for 2 brakes on front and 2 on rear frontBrakeForce:float = brakepadFrictionModel.calcFrictionCoeff(worldArray[step-1, varFrontBrakeTemperature]) * frontBrakeForce * 2 * Parameters["brakeDiscRadius"] / Parameters["wheelRadius"] rearBrakeForce:float = brakepadFrictionModel.calcFrictionCoeff(worldArray[step-1, varRearBrakeTemperature]) * rearBrakeForce * 2 * Parameters["brakeDiscRadius"] / Parameters["wheelRadius"] return frontBrakeForce, rearBrakeForce @@ -35,8 +48,16 @@ def calcBrakeCooling(worldArray:np.ndarray, step:int) -> tuple[float,float]: :param prevWorld: World State :return: Change in Temperature """ - frontBrakeCooling = Parameters["ambientTemperature"] + (worldArray[step-1, varFrontBrakeTemperature] - Parameters["ambientTemperature"]) * np.e ** (-1 / Parameters["stepsPerSecond"]/50.2) - rearBrakeCooling = Parameters["ambientTemperature"] + (worldArray[step-1, varRearBrakeTemperature] - Parameters["ambientTemperature"]) * np.e ** (-1 / Parameters["stepsPerSecond"]/50.2) + speed = worldArray[step-1, varSpeed] + heatTransferCoeff = brakeTransferCoeff(speed) + brakeThermalMass = Parameters["4130SpecificHeatCapacity"] * Parameters["brakeRotorMass"] + brakeCoolingArea = Parameters["brakeRotorArea"] + frontBrakeCoolingEnergy = heatTransferCoeff * brakeCoolingArea *(worldArray[step-1, varFrontBrakeTemperature] - Parameters["ambientTemperature"]) + frontBrakeCooling = frontBrakeCoolingEnergy / brakeThermalMass / Parameters["stepsPerSecond"] + + rearBrakeCoolingEnergy = heatTransferCoeff * brakeCoolingArea *(worldArray[step-1, varRearBrakeTemperature] - Parameters["ambientTemperature"]) + rearBrakeCooling = rearBrakeCoolingEnergy / brakeThermalMass / Parameters["stepsPerSecond"] + return frontBrakeCooling, rearBrakeCooling #q = (initTemperature - parameters["ambientTemperature"]) * parameters["brakeMass"] * parameters["brakeSpecificHeatCapacity"] #change = (q * parameters["brakepadThickness"])/(initTemperature * parameters["brakeThermalConductivity"] * parameters["brakeSurfaceArea"] @@ -48,7 +69,7 @@ def calcBrakeHeating(worldArray:np.ndarray, step:int) -> tuple[float,float]: # Guess energy increase based on kinetic energy decrease of the vehicle. # Assumption is 100% of kinetic energy lost goes into brake heating. speedChange = (frontBrakeForce + rearBrakeForce) / Parameters["Mass"] / Parameters["stepsPerSecond"] # momentum impulse - energyChange = 0.5 * Parameters["Mass"] * (worldArray[step-1, varSpeed] - (worldArray[step-1, varSpeed] - speedChange)) + energyChange = 0.5 * Parameters["Mass"] * (worldArray[step-1, varSpeed]**2 - ((worldArray[step-1, varSpeed] - speedChange)**2)) tempChange = energyChange/(Parameters["brakeMass"] * Parameters["brakeSpecificHeatCapacity"]) # While this doesn't seem physically intuitive, it is based on the idea that the front and rear brakes share heat based on their contribution to total braking force. diff --git a/FullVehicleSim/SimulationControlInputs/simulationControls.csv b/FullVehicleSim/SimulationControlInputs/simulationControls.csv index c19041a..ccebd32 100644 --- a/FullVehicleSim/SimulationControlInputs/simulationControls.csv +++ b/FullVehicleSim/SimulationControlInputs/simulationControls.csv @@ -1,6 +1,6 @@ -time,throttle,brakePressureFront,brakePressureRear,steerAngle -0.0,0.0,0.0,0.0,0.0 -10.0,1.0,0.0,0.0,0.0 -20.0,0.0,0.0,0.0,0.0 -30.0,0.0,300.0,300.0,0.0 -40.0,0.0,0.0,0.0,0.0 \ No newline at end of file +time,throttle,brakePressureFront,brakePressureRear,brakePedalTravel,steerAngle +0.0,0.0,0.0,0.0,0.0,0.0 +10.0,1.0,0.0,0.0,0.0,0.0 +20.0,0.0,0.0,0.0,0.0,0.0 +30.0,0.0,300.0,300.0,0.0,0.0 +40.0,0.0,0.0,0.0,0.0,0.0 \ No newline at end of file diff --git a/FullVehicleSim/SimulationControlInputs/simulationControlsAccel.csv b/FullVehicleSim/SimulationControlInputs/simulationControlsAccel.csv new file mode 100644 index 0000000..499f3dc --- /dev/null +++ b/FullVehicleSim/SimulationControlInputs/simulationControlsAccel.csv @@ -0,0 +1,3 @@ +time,throttle,brakePressureFront,brakePressureRear,brakePedalTravel,steerAngle +0.0,1.0,0.0,0.0,0.0,0.0 +30.0,1.0,0.0,0.0,0.0,0.0 \ No newline at end of file diff --git a/FullVehicleSim/SimulationControlInputs/simulationControls_Mar162026_SteeperRegenCurve.csv b/FullVehicleSim/SimulationControlInputs/simulationControls_Mar162026_SteeperRegenCurve.csv new file mode 100644 index 0000000..a488bcc --- /dev/null +++ b/FullVehicleSim/SimulationControlInputs/simulationControls_Mar162026_SteeperRegenCurve.csv @@ -0,0 +1,41354 @@ +time,throttle,brakePressureFront,brakePressureRear,brakePedalTravel,steerAngle +0.0,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.009947061538696289,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.01967000961303711,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.029999971389770508,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.040003061294555664,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.04955697059631348,0.0,1.5151515,1.5151515,0.10309278,-0.3629936 +0.05999112129211426,0.0,1.5151515,1.5151515,0.11246486,-0.36484364 +0.06986308097839355,0.0,1.5151515,1.5151515,0.11246486,-0.36484364 +0.0795290470123291,0.0,1.5151515,1.5151515,0.11246486,-0.36484364 +0.08960199356079102,0.0,1.5151515,1.5151515,0.10309278,-0.36484364 +0.09991312026977539,0.0,1.5151515,1.5151515,0.10309278,-0.36484364 +0.10997796058654785,0.0,1.5151515,1.5151515,0.10309278,-0.3629936 +0.1196739673614502,0.0,1.5151515,1.5151515,0.10309278,-0.3629936 +0.13000702857971191,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.13951492309570312,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.14998602867126465,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.15964913368225098,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.16997313499450684,0.0,1.5151515,1.5151515,0.12183693,-0.3629936 +0.1799929141998291,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.18990302085876465,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.1995859146118164,0.0,1.5151515,1.5151515,0.11246486,-0.3629936 +0.20998597145080566,0.0,2.2727273,2.2727273,0.12183693,-0.36484364 +0.21954107284545898,0.0,2.2727273,2.2727273,0.12183693,-0.36484364 +0.22956204414367676,0.0,2.2727273,2.2727273,0.12183693,-0.36484364 +0.23998808860778809,0.0,2.2727273,2.2727273,0.11246486,-0.36484364 +0.24955201148986816,0.0,2.2727273,2.2727273,0.11246486,-0.36484364 +0.25974297523498535,0.0,2.2727273,2.2727273,0.11246486,-0.3611436 +0.2699921131134033,0.0,2.2727273,2.2727273,0.11246486,-0.3611436 +0.27991294860839844,0.0,2.2727273,2.2727273,0.11246486,-0.3611436 +0.28999996185302734,0.0,2.2727273,2.2727273,0.11246486,-0.3611436 +0.2996211051940918,0.0,2.2727273,2.2727273,0.11246486,-0.3611436 +0.30999207496643066,0.0,2.2727273,2.2727273,0.10309278,-0.36484364 +0.31961894035339355,0.0,2.2727273,2.2727273,0.10309278,-0.36484364 +0.32998013496398926,0.0,2.2727273,2.2727273,0.10309278,-0.36484364 +0.33945298194885254,0.0,1.5151515,1.5151515,0.10309278,-0.36484364 +0.3496060371398926,0.0,1.5151515,1.5151515,0.10309278,-0.36484364 +0.3599860668182373,0.0,1.5151515,1.5151515,0.10309278,-0.38334414 +0.36987996101379395,0.0,1.5151515,1.5151515,0.11246486,-0.38334414 +0.3795480728149414,0.0,1.5151515,1.5151515,0.10309278,-0.38334414 +0.3899829387664795,0.0,1.5151515,1.5151515,0.10309278,-0.38334414 +0.40000391006469727,0.0,1.5151515,1.5151515,0.10309278,-0.38334414 +0.40970802307128906,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.41967296600341797,0.0,1.5151515,1.5151515,0.11246486,-0.3611436 +0.42940211296081543,0.0,1.5151515,1.5151515,0.11246486,-0.3611436 +0.43942999839782715,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.4499690532684326,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.4598689079284668,0.0,1.5151515,1.5151515,0.10309278,-0.35374334 +0.4697890281677246,0.0,1.5151515,1.5151515,0.11246486,-0.35374334 +0.4796121120452881,0.0,1.5151515,1.5151515,0.10309278,-0.35374334 +0.48998403549194336,0.0,1.5151515,1.5151515,0.10309278,-0.35374334 +0.49972105026245117,0.0,1.5151515,1.5151515,0.10309278,-0.35374334 +0.5098209381103516,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.519995927810669,0.0,1.5151515,1.5151515,0.11246486,-0.3666937 +0.5300149917602539,0.0,1.5151515,1.5151515,0.11246486,-0.3666937 +0.5399990081787109,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.5494530200958252,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.560014009475708,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +0.5700030326843262,0.0,1.5151515,1.5151515,0.10309278,-0.3555934 +0.5795900821685791,0.0,1.5151515,1.5151515,0.10309278,-0.3555934 +0.5898821353912354,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +0.5996091365814209,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +0.6096429824829102,0.0,1.5151515,1.5151515,0.09372071,-0.36484364 +0.6197059154510498,0.0,1.5151515,1.5151515,0.09372071,-0.36484364 +0.6300060749053955,0.0,1.5151515,1.5151515,0.09372071,-0.36484364 +0.639801025390625,0.0,1.5151515,1.5151515,0.09372071,-0.36484364 +0.650015115737915,0.0,1.5151515,1.5151515,0.09372071,-0.36484364 +0.6600189208984375,0.0,1.5151515,1.5151515,0.09372071,-0.3666937 +0.6700050830841064,0.0,1.5151515,1.5151515,0.09372071,-0.3666937 +0.6799831390380859,0.0,1.5151515,1.5151515,0.09372071,-0.3666937 +0.6895411014556885,0.0,1.5151515,1.5151515,0.09372071,-0.3666937 +0.6999890804290771,0.0,1.5151515,1.5151515,0.09372071,-0.3666937 +0.7095069885253906,0.0,1.5151515,1.5151515,0.09372071,-0.3611436 +0.7196910381317139,0.0,1.5151515,1.5151515,0.09372071,-0.3611436 +0.7297899723052979,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.7396180629730225,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.7500119209289551,0.0,1.5151515,1.5151515,0.11246486,-0.3611436 +0.7600381374359131,0.0,1.5151515,1.5151515,0.11246486,-0.37224382 +0.7699899673461914,0.0,1.5151515,1.5151515,0.11246486,-0.37224382 +0.779587984085083,0.0,1.5151515,1.5151515,0.11246486,-0.37224382 +0.7894999980926514,0.0,1.5151515,1.5151515,0.10309278,-0.37224382 +0.8000199794769287,0.0,1.5151515,1.5151515,0.10309278,-0.37224382 +0.8100061416625977,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.8195350170135498,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.8300080299377441,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.8400149345397949,0.0,1.5151515,1.5151515,0.10309278,-0.3666937 +0.8500070571899414,0.0,1.5151515,1.5151515,0.11246486,-0.3666937 +0.8599851131439209,0.0,1.5151515,1.5151515,0.11246486,-0.34264305 +0.8694140911102295,0.0,1.5151515,1.5151515,0.10309278,-0.34264305 +0.8794300556182861,0.0,1.5151515,1.5151515,0.10309278,-0.34264305 +0.8900101184844971,0.0,1.5151515,1.5151515,0.10309278,-0.34264305 +0.9000139236450195,0.0,1.5151515,1.5151515,0.10309278,-0.34264305 +0.9097249507904053,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.9196600914001465,0.0,1.5151515,1.5151515,0.11246486,-0.3611436 +0.9300079345703125,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.9400191307067871,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.9497630596160889,0.0,1.5151515,1.5151515,0.10309278,-0.3611436 +0.9595150947570801,0.0,1.5151515,1.5151515,0.11246486,-0.36854377 +0.9696071147918701,0.0,2.2727273,2.2727273,0.11246486,-0.36854377 +0.9793920516967773,0.0,2.2727273,2.2727273,0.10309278,-0.36854377 +0.9900140762329102,0.0,2.2727273,2.2727273,0.10309278,-0.36854377 +0.9994139671325684,0.0,2.2727273,2.2727273,0.10309278,-0.36854377 +1.009498119354248,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +1.019705057144165,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +1.0297980308532715,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +1.0395419597625732,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +1.0495049953460693,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +1.059704065322876,0.0,2.2727273,2.2727273,0.09372071,-0.3611436 +1.0700170993804932,0.0,2.2727273,2.2727273,0.09372071,-0.3611436 +1.079406976699829,0.0,2.2727273,2.2727273,0.09372071,-0.3611436 +1.0896849632263184,0.0,2.2727273,2.2727273,0.09372071,-0.3611436 +1.1000421047210693,0.0,2.2727273,2.2727273,0.09372071,-0.3611436 +1.1100149154663086,0.0,2.2727273,2.2727273,0.08434864,-0.36484364 +1.1197099685668945,0.0,2.2727273,2.2727273,0.08434864,-0.36484364 +1.1294889450073242,0.0,2.2727273,2.2727273,0.08434864,-0.36484364 +1.1394739151000977,0.0,2.2727273,2.2727273,0.08434864,-0.36484364 +1.1493890285491943,0.0,2.2727273,2.2727273,0.08434864,-0.36484364 +1.1600420475006104,0.0,2.2727273,2.2727273,0.09372071,-0.379644 +1.1699891090393066,0.0,2.2727273,2.2727273,0.08434864,-0.379644 +1.179414987564087,0.0,2.2727273,2.2727273,0.08434864,-0.379644 +1.1900379657745361,0.0,2.2727273,2.2727273,0.08434864,-0.379644 +1.1994071006774902,0.0,2.2727273,2.2727273,0.08434864,-0.379644 +1.2100040912628174,0.0,2.2727273,2.2727273,0.09372071,-0.36484364 +1.2194249629974365,0.0,2.2727273,2.2727273,0.09372071,-0.36484364 +1.2295241355895996,0.0,2.2727273,2.2727273,0.09372071,-0.36484364 +1.2398180961608887,0.0,2.2727273,2.2727273,0.10309278,-0.36484364 +1.2500250339508057,0.0,2.2727273,2.2727273,0.10309278,-0.36484364 +1.2596089839935303,0.0,2.2727273,2.2727273,0.10309278,-0.32599264 +1.269608974456787,0.0,2.2727273,2.2727273,0.10309278,-0.32599264 +1.2794880867004395,0.0,2.2727273,2.2727273,0.11246486,-0.32599264 +1.2900359630584717,0.0,2.2727273,2.2727273,0.11246486,-0.32599264 +1.2999579906463623,0.0,2.2727273,2.2727273,0.11246486,-0.32599264 +1.3100180625915527,0.0,2.2727273,2.2727273,0.11246486,-0.37224382 +1.319598913192749,0.0,2.2727273,2.2727273,0.11246486,-0.37224382 +1.3300249576568604,0.0,2.2727273,2.2727273,0.11246486,-0.37224382 +1.3400371074676514,0.0,2.2727273,2.2727273,0.11246486,-0.37224382 +1.3494889736175537,0.0,2.2727273,2.2727273,0.11246486,-0.37224382 +1.3594849109649658,0.0,2.2727273,2.2727273,0.11246486,-0.377794 +1.3700079917907715,0.0,2.2727273,2.2727273,0.10309278,-0.377794 +1.3794341087341309,0.0,3.030303,3.030303,0.10309278,-0.377794 +1.389596939086914,0.0,3.030303,3.030303,0.09372071,-0.377794 +1.4000399112701416,0.0,3.030303,3.030303,0.09372071,-0.377794 +1.409654140472412,0.0,3.030303,3.030303,0.09372071,-0.3666937 +1.4200091361999512,0.0,3.030303,3.030303,0.09372071,-0.3666937 +1.4297490119934082,0.0,3.030303,3.030303,0.09372071,-0.3666937 +1.439655065536499,0.0,3.030303,3.030303,0.09372071,-0.3666937 +1.4495809078216553,0.0,3.030303,3.030303,0.09372071,-0.3666937 +1.4600310325622559,0.0,3.030303,3.030303,0.09372071,-0.36484364 +1.4700369834899902,0.0,3.030303,3.030303,0.09372071,-0.36484364 +1.4794409275054932,0.0,3.030303,3.030303,0.09372071,-0.36484364 +1.49003005027771,0.0,3.030303,3.030303,0.09372071,-0.36484364 +1.4997620582580566,0.0,3.030303,3.030303,0.09372071,-0.36484364 +1.5100431442260742,0.0,3.030303,3.030303,0.09372071,-0.35189328 +1.5196189880371094,0.0,3.030303,3.030303,0.09372071,-0.35189328 +1.5294859409332275,0.0,3.030303,3.030303,0.10309278,-0.35189328 +1.5395710468292236,0.0,3.030303,3.030303,0.10309278,-0.35189328 +1.550029993057251,0.0,3.030303,3.030303,0.10309278,-0.35189328 +1.5600509643554688,0.0,3.030303,3.030303,0.10309278,-0.36854377 +1.5694580078125,0.0,3.030303,3.030303,0.11246486,-0.36854377 +1.579437017440796,0.0,3.030303,3.030303,0.11246486,-0.36854377 +1.5894639492034912,0.0,3.030303,3.030303,0.10309278,-0.36854377 +1.5999500751495361,0.0,3.030303,3.030303,0.10309278,-0.36854377 +1.6094779968261719,0.0,3.787879,3.787879,0.10309278,-0.3629936 +1.6196961402893066,0.0,3.787879,3.787879,0.10309278,-0.3629936 +1.6295371055603027,0.0,3.787879,3.787879,0.11246486,-0.3629936 +1.6400370597839355,0.0,3.787879,3.787879,0.11246486,-0.3629936 +1.6495399475097656,0.0,3.787879,3.787879,0.11246486,-0.3629936 +1.6600279808044434,0.0,3.787879,3.787879,0.11246486,-0.35744345 +1.6700520515441895,0.0,3.787879,3.787879,0.11246486,-0.35744345 +1.6794679164886475,0.0,3.787879,3.787879,0.11246486,-0.35744345 +1.6900291442871094,0.0,3.787879,3.787879,0.11246486,-0.35744345 +1.7000229358673096,0.0,3.787879,3.787879,0.11246486,-0.35744345 +1.7100369930267334,0.0,3.787879,3.787879,0.12183693,-0.35374334 +1.7195250988006592,0.0,3.787879,3.787879,0.12183693,-0.35374334 +1.7297110557556152,0.0,3.787879,3.787879,0.12183693,-0.35374334 +1.7394781112670898,0.0,3.787879,3.787879,0.12183693,-0.35374334 +1.7500331401824951,0.0,3.787879,3.787879,0.12183693,-0.35374334 +1.7600760459899902,0.0,3.787879,3.787879,0.12183693,-0.3555934 +1.7693970203399658,0.0,3.787879,3.787879,0.12183693,-0.3555934 +1.7794630527496338,0.0,3.787879,3.787879,0.11246486,-0.3555934 +1.7900390625,0.0,3.787879,3.787879,0.12183693,-0.3555934 +1.799720048904419,0.0,3.787879,3.787879,0.12183693,-0.3555934 +1.8095219135284424,0.0,3.787879,3.787879,0.12183693,-0.35744345 +1.8197031021118164,0.0,3.787879,3.787879,0.12183693,-0.35744345 +1.829699993133545,0.0,3.787879,3.787879,0.11246486,-0.35744345 +1.8400371074676514,0.0,3.787879,3.787879,0.10309278,-0.35744345 +1.8494129180908203,0.0,3.787879,3.787879,0.10309278,-0.35744345 +1.8600189685821533,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.8700239658355713,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.879472017288208,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.8900349140167236,0.0,3.787879,3.787879,0.09372071,-0.3611436 +1.8995051383972168,0.0,3.787879,3.787879,0.09372071,-0.3611436 +1.909419059753418,0.0,3.787879,3.787879,0.10309278,-0.377794 +1.9195411205291748,0.0,3.787879,3.787879,0.10309278,-0.377794 +1.9294331073760986,0.0,3.787879,3.787879,0.10309278,-0.377794 +1.9400389194488525,0.0,3.787879,3.787879,0.10309278,-0.377794 +1.9500300884246826,0.0,3.787879,3.787879,0.10309278,-0.377794 +1.9594030380249023,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.9700400829315186,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.9794631004333496,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.9895169734954834,0.0,3.787879,3.787879,0.10309278,-0.3611436 +1.9994051456451416,0.0,3.787879,3.787879,0.10309278,-0.3611436 +2.0094330310821533,0.0,3.787879,3.787879,0.10309278,-0.35004327 +2.019498109817505,0.0,3.787879,3.787879,0.10309278,-0.35004327 +2.0297470092773438,0.0,3.787879,3.787879,0.10309278,-0.35004327 +2.0396130084991455,0.0,3.787879,3.787879,0.10309278,-0.35004327 +2.0494561195373535,0.0,3.787879,3.787879,0.10309278,-0.35004327 +2.0596261024475098,0.0,3.787879,3.787879,0.10309278,-0.37224382 +2.070039987564087,0.0,3.787879,3.787879,0.10309278,-0.37224382 +2.079496145248413,0.0,3.787879,3.787879,0.10309278,-0.37224382 +2.089755058288574,0.0,3.787879,3.787879,0.10309278,-0.37224382 +2.099882125854492,0.0,3.787879,3.787879,0.10309278,-0.37224382 +2.1100430488586426,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.1194911003112793,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.129667043685913,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.139425039291382,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.150054931640625,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.160072088241577,0.0,3.030303,3.030303,0.10309278,-0.3629936 +2.1694600582122803,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.179547071456909,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.19006609916687,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.200040102005005,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.2100391387939453,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.2200419902801514,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.229509115219116,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.2400460243225098,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.2500550746917725,0.0,3.030303,3.030303,0.11246486,-0.3629936 +2.259493112564087,0.0,3.030303,3.030303,0.11246486,-0.37594396 +2.269423007965088,0.0,3.030303,3.030303,0.11246486,-0.37594396 +2.2795209884643555,0.0,3.030303,3.030303,0.10309278,-0.37594396 +2.2900640964508057,0.0,3.030303,3.030303,0.10309278,-0.37594396 +2.2995951175689697,0.0,3.030303,3.030303,0.10309278,-0.37594396 +2.3100531101226807,0.0,3.030303,3.030303,0.11246486,-0.36854377 +2.3196139335632324,0.0,3.030303,3.030303,0.11246486,-0.36854377 +2.3297109603881836,0.0,3.030303,3.030303,0.11246486,-0.36854377 +2.3400609493255615,0.0,3.030303,3.030303,0.11246486,-0.36854377 +2.349419116973877,0.0,3.030303,3.030303,0.11246486,-0.36854377 +2.3594019412994385,0.0,3.030303,3.030303,0.11246486,-0.377794 +2.3700449466705322,0.0,3.030303,3.030303,0.11246486,-0.377794 +2.3795061111450195,0.0,3.030303,3.030303,0.11246486,-0.377794 +2.389517068862915,0.0,3.030303,3.030303,0.11246486,-0.377794 +2.400057077407837,0.0,3.030303,3.030303,0.11246486,-0.377794 +2.4097061157226562,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.4194231033325195,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.429466962814331,0.0,3.030303,3.030303,0.10309278,-0.36854377 +2.4394209384918213,0.0,3.030303,3.030303,0.09372071,-0.36854377 +2.449389934539795,0.0,3.030303,3.030303,0.09372071,-0.36854377 +2.4600441455841064,0.0,3.030303,3.030303,0.10309278,-0.379644 +2.470062017440796,0.0,3.030303,3.030303,0.10309278,-0.379644 +2.479541063308716,0.0,3.030303,3.030303,0.10309278,-0.379644 +2.490049123764038,0.0,3.030303,3.030303,0.10309278,-0.379644 +2.499505043029785,0.0,3.030303,3.030303,0.10309278,-0.379644 +2.5100791454315186,0.0,3.030303,3.030303,0.09372071,-0.37594396 +2.5197501182556152,0.0,3.030303,3.030303,0.09372071,-0.37594396 +2.5294880867004395,0.0,3.030303,3.030303,0.10309278,-0.37594396 +2.5395939350128174,0.0,3.030303,3.030303,0.09372071,-0.37594396 +2.5500569343566895,0.0,3.030303,3.030303,0.09372071,-0.37594396 +2.5596249103546143,0.0,3.030303,3.030303,0.09372071,-0.3555934 +2.5700719356536865,0.0,3.030303,3.030303,0.09372071,-0.3555934 +2.579524040222168,0.0,3.030303,3.030303,0.09372071,-0.3555934 +2.5898890495300293,0.0,3.030303,3.030303,0.09372071,-0.3555934 +2.600083112716675,0.0,3.030303,3.030303,0.09372071,-0.3555934 +2.610058069229126,0.0,3.030303,3.030303,0.10309278,-0.3611436 +2.619488000869751,0.0,3.030303,3.030303,0.10309278,-0.3611436 +2.6297099590301514,0.0,2.2727273,2.2727273,0.09372071,-0.3611436 +2.64005708694458,0.0,2.2727273,2.2727273,0.10309278,-0.3611436 +2.650059938430786,0.0,2.2727273,2.2727273,0.10309278,-0.3611436 +2.65974497795105,0.0,2.2727273,2.2727273,0.10309278,-0.377794 +2.6700439453125,0.0,2.2727273,2.2727273,0.10309278,-0.377794 +2.679539918899536,0.0,2.2727273,2.2727273,0.10309278,-0.377794 +2.6894290447235107,0.0,2.2727273,2.2727273,0.11246486,-0.377794 +2.700032949447632,0.0,2.2727273,2.2727273,0.11246486,-0.377794 +2.7097370624542236,0.0,2.2727273,2.2727273,0.11246486,-0.30934215 +2.71976900100708,0.0,2.2727273,2.2727273,0.10309278,-0.30934215 +2.729712963104248,0.0,2.2727273,2.2727273,0.09372071,-0.30934215 +2.739988088607788,0.0,2.2727273,2.2727273,0.09372071,-0.30934215 +2.750054121017456,0.0,2.2727273,2.2727273,0.10309278,-0.30934215 +2.760082960128784,0.0,2.2727273,2.2727273,0.10309278,-0.3629936 +2.770043134689331,0.0,2.2727273,2.2727273,0.09372071,-0.3629936 +2.779557943344116,0.0,2.2727273,2.2727273,0.09372071,-0.3629936 +2.7900631427764893,0.0,2.2727273,2.2727273,0.09372071,-0.3629936 +2.79960298538208,0.0,2.2727273,2.2727273,0.09372071,-0.3629936 +2.8100569248199463,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.819643020629883,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.8297231197357178,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +2.8400700092315674,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.850085973739624,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.8600621223449707,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.870054006576538,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.8796310424804688,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.8895671367645264,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.900078058242798,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +2.910067081451416,0.0,2.2727273,2.2727273,0.09372071,-0.35374334 +2.9194540977478027,0.0,2.2727273,2.2727273,0.09372071,-0.35374334 +2.9297220706939697,0.0,2.2727273,2.2727273,0.09372071,-0.35374334 +2.94008207321167,0.0,2.2727273,2.2727273,0.10309278,-0.35374334 +2.949636936187744,0.0,2.2727273,2.2727273,0.10309278,-0.35374334 +2.9600961208343506,0.0,3.030303,3.030303,0.09372071,-0.3666937 +2.970078945159912,0.0,3.030303,3.030303,0.09372071,-0.3666937 +2.9795570373535156,0.0,3.030303,3.030303,0.09372071,-0.3666937 +2.9893901348114014,0.0,3.030303,3.030303,0.09372071,-0.3666937 +3.0000619888305664,0.0,3.030303,3.030303,0.09372071,-0.3666937 +3.0100760459899902,0.0,3.030303,3.030303,0.09372071,-0.3666937 +3.0197479724884033,0.0,3.030303,3.030303,0.09372071,-0.3666937 +3.029737949371338,0.0,3.030303,3.030303,0.09372071,-0.3666937 +3.040092945098877,0.0,3.030303,3.030303,0.08434864,-0.3666937 +3.050071954727173,0.0,3.030303,3.030303,0.09372071,-0.3666937 +3.0599799156188965,0.0,3.030303,3.030303,0.09372071,-0.3611436 +3.0694260597229004,0.0,3.030303,3.030303,0.09372071,-0.3611436 +3.079483985900879,0.0,3.030303,3.030303,0.09372071,-0.3611436 +3.09006404876709,0.0,3.030303,3.030303,0.09372071,-0.3611436 +3.099501132965088,0.0,3.030303,3.030303,0.09372071,-0.3611436 +3.110055923461914,0.0,3.030303,3.030303,0.09372071,-0.36854377 +3.1200780868530273,0.0,3.030303,3.030303,0.09372071,-0.36854377 +3.130084991455078,0.0,3.030303,3.030303,0.09372071,-0.36854377 +3.139409065246582,0.0,3.030303,3.030303,0.09372071,-0.36854377 +3.1497130393981934,0.0,3.030303,3.030303,0.09372071,-0.36854377 +3.1595520973205566,0.0,3.030303,3.030303,0.09372071,-0.35744345 +3.1700711250305176,0.0,3.030303,3.030303,0.09372071,-0.35744345 +3.17958402633667,0.0,3.030303,3.030303,0.09372071,-0.35744345 +3.1893961429595947,0.0,3.030303,3.030303,0.10309278,-0.35744345 +3.2000620365142822,0.0,3.030303,3.030303,0.10309278,-0.35744345 +3.209681987762451,0.0,3.030303,3.030303,0.10309278,-0.36854377 +3.2197670936584473,0.0,3.030303,3.030303,0.10309278,-0.36854377 +3.2295050621032715,0.0,3.030303,3.030303,0.10309278,-0.36854377 +3.2395529747009277,0.0,3.030303,3.030303,0.11246486,-0.36854377 +3.2494521141052246,0.0,3.030303,3.030303,0.11246486,-0.36854377 +3.2600889205932617,0.0,3.030303,3.030303,0.10309278,-0.3611436 +3.2700819969177246,0.0,3.030303,3.030303,0.11246486,-0.3611436 +3.279603958129883,0.0,3.030303,3.030303,0.11246486,-0.3611436 +3.290076971054077,0.0,3.030303,3.030303,0.11246486,-0.3611436 +3.3000760078430176,0.0,3.030303,3.030303,0.11246486,-0.3611436 +3.3095250129699707,0.0,3.030303,3.030303,0.11246486,-0.3629936 +3.3194479942321777,0.0,3.030303,3.030303,0.11246486,-0.3629936 +3.3293960094451904,0.0,3.030303,3.030303,0.11246486,-0.3629936 +3.3397250175476074,0.0,3.030303,3.030303,0.11246486,-0.3629936 +3.3500819206237793,0.0,3.030303,3.030303,0.11246486,-0.3629936 +3.3600809574127197,0.0,3.030303,3.030303,0.11246486,-0.35744345 +3.370069980621338,0.0,3.030303,3.030303,0.10309278,-0.35744345 +3.379594087600708,0.0,3.030303,3.030303,0.10309278,-0.35744345 +3.3900680541992188,0.0,3.030303,3.030303,0.10309278,-0.35744345 +3.400102138519287,0.0,3.030303,3.030303,0.10309278,-0.35744345 +3.4096901416778564,0.0,3.030303,3.030303,0.10309278,-0.37224382 +3.419450044631958,0.0,3.030303,3.030303,0.10309278,-0.37224382 +3.4297220706939697,0.0,3.030303,3.030303,0.10309278,-0.37224382 +3.440088987350464,0.0,3.030303,3.030303,0.10309278,-0.37224382 +3.45005202293396,0.0,3.030303,3.030303,0.10309278,-0.37224382 +3.460081100463867,0.0,3.030303,3.030303,0.10309278,-0.3611436 +3.46970796585083,0.0,3.030303,3.030303,0.10309278,-0.3611436 +3.4793879985809326,0.0,3.030303,3.030303,0.10309278,-0.3611436 +3.49009108543396,0.0,3.030303,3.030303,0.10309278,-0.3611436 +3.4997870922088623,0.0,3.030303,3.030303,0.10309278,-0.3611436 +3.509485960006714,0.0,2.2727273,2.2727273,0.10309278,-0.379644 +3.519482135772705,0.0,2.2727273,2.2727273,0.10309278,-0.379644 +3.5297350883483887,0.0,2.2727273,2.2727273,0.10309278,-0.379644 +3.540095090866089,0.0,2.2727273,2.2727273,0.10309278,-0.379644 +3.5498299598693848,0.0,2.2727273,2.2727273,0.10309278,-0.379644 +3.559467077255249,0.0,2.2727273,2.2727273,0.10309278,-0.3629936 +3.569481134414673,0.0,2.2727273,2.2727273,0.10309278,-0.3629936 +3.5794100761413574,0.0,2.2727273,2.2727273,0.10309278,-0.3629936 +3.5897791385650635,0.0,2.2727273,2.2727273,0.10309278,-0.3629936 +3.599431037902832,0.0,2.2727273,2.2727273,0.11246486,-0.3629936 +3.610084056854248,0.0,1.5151515,1.5151515,0.11246486,-0.41479495 +3.6195030212402344,0.0,1.5151515,1.5151515,0.11246486,-0.41479495 +3.629715919494629,0.0,1.5151515,1.5151515,0.11246486,-0.41479495 +3.639626979827881,0.0,1.5151515,1.5151515,0.10309278,-0.41479495 +3.6500799655914307,0.0,1.5151515,1.5151515,0.10309278,-0.41479495 +3.6600899696350098,0.0,1.5151515,1.5151515,0.09372071,-0.3611436 +3.6700820922851562,0.0,0.75757575,0.75757575,0.09372071,-0.3611436 +3.6796391010284424,0.0,0.75757575,0.75757575,0.09372071,-0.3611436 +3.690077066421509,0.0,0.75757575,0.75757575,0.09372071,-0.3611436 +3.7000701427459717,0.0,0.75757575,0.75757575,0.09372071,-0.3611436 +3.7100961208343506,0.0,0.75757575,0.75757575,0.09372071,-0.35744345 +3.719775915145874,0.0,0.75757575,0.75757575,0.09372071,-0.35744345 +3.7294180393218994,0.0,0.75757575,0.75757575,0.09372071,-0.35744345 +3.740082025527954,0.0,0.0,0.0,0.10309278,-0.35744345 +3.750091075897217,0.0,0.0,0.0,0.09372071,-0.35744345 +3.7601161003112793,0.0,0.0,0.0,0.09372071,-0.36484364 +3.770051956176758,0.0,0.0,0.0,0.09372071,-0.36484364 +3.779392957687378,0.0,0.0,0.0,0.09372071,-0.36484364 +3.7900941371917725,0.0,0.0,0.0,0.09372071,-0.36484364 +3.799926996231079,0.0,0.0,0.0,0.09372071,-0.36484364 +3.809481143951416,0.0,0.0,0.0,0.09372071,-0.35374334 +3.819751024246216,0.0,0.0,0.0,0.08434864,-0.35374334 +3.829720973968506,0.0,0.0,0.0,0.08434864,-0.35374334 +3.8400981426239014,0.0,0.0,0.0,0.09372071,-0.35374334 +3.8501200675964355,0.0,0.0,0.0,0.09372071,-0.35374334 +3.859786033630371,0.0,0.0,0.0,0.09372071,-0.3666937 +3.8700411319732666,0.0,0.0,0.0,0.09372071,-0.3666937 +3.8794639110565186,0.0,0.0,0.0,0.09372071,-0.3666937 +3.8894309997558594,0.0,0.0,0.0,0.09372071,-0.3666937 +3.9000890254974365,0.0,0.0,0.0,0.10309278,-0.3666937 +3.9100959300994873,0.0,0.0,0.0,0.10309278,-0.3666937 +3.920093059539795,0.0,0.0,0.0,0.10309278,-0.3666937 +3.9295029640197754,0.0,0.0,0.0,0.10309278,-0.3666937 +3.939954996109009,0.0,0.0,0.0,0.09372071,-0.3666937 +3.9494259357452393,0.0,0.0,0.0,0.10309278,-0.3666937 +3.959460973739624,0.0,0.0,0.0,0.10309278,-0.3611436 +3.9694650173187256,0.0,0.0,0.0,0.10309278,-0.3611436 +3.9794650077819824,0.0,0.0,0.0,0.10309278,-0.3611436 +3.989686965942383,0.0,0.0,0.0,0.10309278,-0.3611436 +4.000123023986816,0.0,0.0,0.0,0.11246486,-0.3611436 +4.009392976760864,0.0,0.0,0.0,0.10309278,-0.377794 +4.019767999649048,0.0,0.0,0.0,0.10309278,-0.377794 +4.029753923416138,0.0,0.0,0.0,0.10309278,-0.377794 +4.040101051330566,0.0,0.0,0.0,0.10309278,-0.377794 +4.04953408241272,0.0,0.0,0.0,0.10309278,-0.377794 +4.059463024139404,0.0,0.0,0.0,0.10309278,-0.35374334 +4.074214935302734,0.0,0.0,0.0,0.10309278,-0.35374334 +4.079441070556641,0.0,0.0,0.0,0.10309278,-0.35374334 +4.090724945068359,0.0,0.0,0.0,0.10309278,-0.35374334 +4.1001200675964355,0.0,0.0,0.0,0.10309278,-0.35374334 +4.11056113243103,0.0,0.0,0.0,0.10309278,-0.35744345 +4.119565010070801,0.0,0.0,0.0,0.10309278,-0.35744345 +4.12949800491333,0.0,0.0,0.0,0.10309278,-0.35744345 +4.139512062072754,0.0,0.0,0.0,0.10309278,-0.35744345 +4.150099039077759,0.0,0.0,0.0,0.10309278,-0.35744345 +4.160100936889648,0.0,0.0,0.0,0.10309278,-0.35374334 +4.169908046722412,0.0,0.0,0.0,0.09372071,-0.35374334 +4.17943811416626,0.0,0.0,0.0,0.09372071,-0.35374334 +4.191375970840454,0.0,0.0,0.0,0.09372071,-0.35374334 +4.200089931488037,0.0,0.0,0.0,0.08434864,-0.35374334 +4.209491968154907,0.0,0.0,0.0,0.08434864,-0.3444931 +4.219403982162476,0.0,0.0,0.0,0.08434864,-0.3444931 +4.22939395904541,0.0,0.0,0.0,0.08434864,-0.3444931 +4.23942494392395,0.0,0.0,0.0,0.08434864,-0.3444931 +4.249571084976196,0.0,0.0,0.0,0.08434864,-0.3444931 +4.262634038925171,0.0,0.0,0.0,0.08434864,-0.3611436 +4.270471096038818,0.0,0.0,0.0,0.08434864,-0.3611436 +4.2794411182403564,0.0,0.0,0.0,0.08434864,-0.3611436 +4.289819002151489,0.0,0.0,0.0,0.08434864,-0.3611436 +4.300094127655029,0.0,0.0,0.0,0.08434864,-0.3611436 +4.310651063919067,0.0,0.0,0.0,0.08434864,-0.3629936 +4.319471120834351,0.0,0.0,0.0,0.08434864,-0.3629936 +4.32947301864624,0.0,0.0,0.0,0.08434864,-0.3629936 +4.343245983123779,0.0,0.0,0.0,0.08434864,-0.3629936 +4.352157115936279,0.0,0.0,0.0,0.09372071,-0.3629936 +4.360104084014893,0.0,0.0,0.0,0.09372071,-0.3555934 +4.369977951049805,0.0,0.0,0.0,0.10309278,-0.3555934 +4.379444122314453,0.0,0.0,0.0,0.10309278,-0.3555934 +4.3893890380859375,0.0,0.0,0.0,0.09372071,-0.3555934 +4.399529933929443,0.0,0.0,0.0,0.09372071,-0.3555934 +4.409483909606934,0.0,0.0,0.0,0.09372071,-0.3148923 +4.419497966766357,0.0,0.0,0.0,0.08434864,-0.3148923 +4.429429054260254,0.0,0.0,0.0,0.08434864,-0.3148923 +4.439906120300293,0.0,0.0,0.0,0.08434864,-0.3148923 +4.450155019760132,0.0,0.0,0.0,0.08434864,-0.3148923 +4.459465980529785,0.0,0.0,0.0,0.08434864,-0.3611436 +4.469779014587402,0.0,0.0,0.0,0.08434864,-0.3611436 +4.47960901260376,0.0,0.0,0.0,0.08434864,-0.3611436 +4.490872144699097,0.0,0.0,0.0,0.08434864,-0.3611436 +4.499967098236084,0.0,0.0,0.0,0.07497657,-0.3611436 +4.5095720291137695,0.0,0.0,0.0,0.08434864,-0.3611436 +4.51948094367981,0.0,0.0,0.0,0.08434864,-0.3611436 +4.529753923416138,0.0,0.0,0.0,0.08434864,-0.3611436 +4.539466142654419,0.0,0.0,0.0,0.08434864,-0.3611436 +4.550591945648193,0.0,0.0,0.0,0.08434864,-0.3611436 +4.559579133987427,0.0,0.0,0.0,0.08434864,-0.34634316 +4.571852922439575,0.0,0.0,0.0,0.08434864,-0.34634316 +4.579483985900879,0.0,0.0,0.0,0.08434864,-0.34634316 +4.589864015579224,0.0,0.0,0.0,0.08434864,-0.34634316 +4.599560976028442,0.0,0.0,0.0,0.08434864,-0.34634316 +4.610507965087891,0.0,0.0,0.0,0.07497657,-0.3611436 +4.61948299407959,0.0,0.0,0.0,0.07497657,-0.3611436 +4.6297221183776855,0.0,0.0,0.0,0.07497657,-0.3611436 +4.639408111572266,0.0,0.0,0.0,0.07497657,-0.3611436 +4.6494550704956055,0.0,0.0,0.0,0.07497657,-0.3611436 +4.661333084106445,0.0,0.0,0.0,0.07497657,-0.38519418 +4.669481039047241,0.0,0.0,0.0,0.07497657,-0.38519418 +4.67949104309082,0.0,0.0,0.0,0.07497657,-0.38519418 +4.6895530223846436,0.0,0.0,0.0,0.07497657,-0.38519418 +4.699563980102539,0.0,0.0,0.0,0.07497657,-0.38519418 +4.7122180461883545,0.0,0.0,0.0,0.07497657,-0.37224382 +4.719443082809448,0.0,0.0,0.0,0.07497657,-0.37224382 +4.729736089706421,0.0,0.0,0.0,0.08434864,-0.37224382 +4.739443063735962,0.0,0.0,0.0,0.08434864,-0.37224382 +4.751814126968384,0.0,0.0,0.0,0.08434864,-0.37224382 +4.7593889236450195,0.0,0.0,0.0,0.08434864,-0.36854377 +4.769411087036133,0.0,0.0,0.0,0.08434864,-0.36854377 +4.779652118682861,0.0,0.0,0.0,0.08434864,-0.36854377 +4.79217791557312,0.0,0.0,0.0,0.08434864,-0.36854377 +4.800123929977417,0.0,0.0,0.0,0.08434864,-0.36854377 +4.8110129833221436,0.0,0.0,0.0,0.08434864,-0.379644 +4.819778919219971,0.0,0.0,0.0,0.08434864,-0.379644 +4.829461097717285,0.0,0.0,0.0,0.08434864,-0.379644 +4.83974814414978,0.0,0.0,0.0,0.08434864,-0.379644 +4.850790023803711,0.0,0.0,0.0,0.07497657,-0.379644 +4.859785079956055,0.0,0.0,0.0,0.07497657,-0.3629936 +4.869415044784546,0.0,0.0,0.0,0.07497657,-0.3629936 +4.879621982574463,0.0,0.0,0.0,0.07497657,-0.3629936 +4.891849040985107,0.0,0.0,0.0,0.07497657,-0.3629936 +4.899405002593994,0.0,0.0,0.0,0.07497657,-0.3629936 +4.909789085388184,0.0,0.0,0.0,0.07497657,-0.35744345 +4.919487953186035,0.0,0.0,0.0,0.07497657,-0.35744345 +4.929484128952026,0.0,0.0,0.0,0.07497657,-0.35744345 +4.940084934234619,0.0,0.0,0.0,0.0656045,-0.35744345 +4.949448108673096,0.0,0.0,0.0,0.07497657,-0.35744345 +4.959476947784424,0.0,0.0,0.0,0.07497657,-0.3666937 +4.972582101821899,0.0,0.0,0.0,0.07497657,-0.3666937 +4.9795191287994385,0.0,0.0,0.0,0.07497657,-0.3666937 +4.990607023239136,0.0,0.0,0.0,0.07497657,-0.3666937 +4.999591112136841,0.0,0.0,0.0,0.07497657,-0.3666937 +5.009521961212158,0.0,0.0,0.0,0.07497657,-0.3555934 +5.0194480419158936,0.0,0.0,0.0,0.07497657,-0.3555934 +5.029449939727783,0.0,0.0,0.0,0.07497657,-0.3555934 +5.039731979370117,0.0,0.0,0.0,0.07497657,-0.3555934 +5.049531936645508,0.0,0.0,0.0,0.07497657,-0.3555934 +5.062442064285278,0.0,0.0,0.0,0.07497657,-0.3611436 +5.071434020996094,0.0,0.0,0.0,0.07497657,-0.3611436 +5.079519033432007,0.0,0.0,0.0,0.07497657,-0.3611436 +5.089437007904053,0.0,0.0,0.0,0.0656045,-0.3611436 +5.099470138549805,0.0,0.0,0.0,0.0656045,-0.3611436 +5.1094279289245605,0.0,0.0,0.0,0.0656045,-0.36484364 +5.119404077529907,0.0,0.0,0.0,0.0656045,-0.36484364 +5.129631996154785,0.0,0.0,0.0,0.07497657,-0.36484364 +5.139457941055298,0.0,0.0,0.0,0.07497657,-0.36484364 +5.149867057800293,0.0,0.0,0.0,0.07497657,-0.36484364 +5.159395933151245,0.0,0.0,0.0,0.07497657,-0.33339283 +5.1702189445495605,0.0,0.0,0.0,0.07497657,-0.33339283 +5.1795289516448975,0.0,0.0,0.0,0.07497657,-0.33339283 +5.189502000808716,0.0,0.0,0.0,0.07497657,-0.33339283 +5.20011305809021,0.0,0.0,0.0,0.07497657,-0.33339283 +5.210690021514893,0.0,0.0,0.0,0.07497657,-0.36484364 +5.219404935836792,0.0,0.0,0.0,0.07497657,-0.36484364 +5.229768991470337,0.0,0.0,0.0,0.07497657,-0.36484364 +5.240118980407715,0.0,0.0,0.0,0.0656045,-0.36484364 +5.251040935516357,0.0,0.0,0.0,0.0656045,-0.36484364 +5.260014057159424,0.0,0.0,0.0,0.0656045,-0.3629936 +5.2694361209869385,0.0,0.0,0.0,0.0656045,-0.3629936 +5.27958607673645,0.0,0.0,0.0,0.0656045,-0.3629936 +5.289398908615112,0.0,0.0,0.0,0.0656045,-0.3629936 +5.299986124038696,0.0,0.0,0.0,0.0656045,-0.3629936 +5.309643983840942,0.0,0.0,0.0,0.07497657,-0.379644 +5.319406032562256,0.0,0.0,0.0,0.07497657,-0.379644 +5.329437017440796,0.0,0.0,0.0,0.07497657,-0.379644 +5.340878009796143,0.0,0.0,0.0,0.07497657,-0.379644 +5.3495399951934814,0.0,0.0,0.0,0.07497657,-0.379644 +5.359467029571533,0.0,0.0,0.0,0.07497657,-0.35744345 +5.371034145355225,0.0,0.0,0.0,0.07497657,-0.35744345 +5.379508972167969,0.0,0.0,0.0,0.07497657,-0.35744345 +5.390607118606567,0.0,0.0,0.0,0.07497657,-0.35744345 +5.399598121643066,0.0,0.0,0.0,0.07497657,-0.35744345 +5.409985065460205,0.0,0.0,0.0,0.07497657,-0.35374334 +5.419472932815552,0.0,0.0,0.0,0.07497657,-0.35374334 +5.429448127746582,0.0,0.0,0.0,0.07497657,-0.35374334 +5.439657926559448,0.0,0.0,0.0,0.07497657,-0.35374334 +5.4504921436309814,0.0,0.0,0.0,0.07497657,-0.35374334 +5.461491107940674,0.0,0.0,0.0,0.07497657,-0.36854377 +5.46969199180603,0.0,0.0,0.0,0.07497657,-0.36854377 +5.479485988616943,0.0,0.0,0.0,0.07497657,-0.36854377 +5.489542007446289,0.0,0.0,0.0,0.07497657,-0.36854377 +5.499855995178223,0.0,0.0,0.0,0.07497657,-0.36854377 +5.509397029876709,0.0,0.0,0.0,0.07497657,-0.36484364 +5.519593954086304,0.0,0.0,0.0,0.07497657,-0.36484364 +5.529475927352905,0.0,0.0,0.0,0.07497657,-0.36484364 +5.543060064315796,0.0,0.0,0.0,0.07497657,-0.36484364 +5.549998998641968,0.0,0.0,0.0,0.07497657,-0.36484364 +5.560140132904053,0.0,0.0,0.0,0.07497657,-0.36484364 +5.570486068725586,0.0,0.0,0.0,0.08434864,-0.36484364 +5.579478979110718,0.0,0.0,0.0,0.08434864,-0.36484364 +5.590188026428223,0.0,0.0,0.0,0.08434864,-0.36484364 +5.599602937698364,0.0,0.0,0.0,0.08434864,-0.36484364 +5.609421014785767,0.0,0.0,0.0,0.08434864,-0.3666937 +5.619394063949585,0.0,0.0,0.0,0.08434864,-0.3666937 +5.630713939666748,0.0,0.0,0.0,0.08434864,-0.3666937 +5.640121936798096,0.0,0.0,0.0,0.08434864,-0.3666937 +5.6502509117126465,0.0,0.0,0.0,0.08434864,-0.3666937 +5.660444974899292,0.0,0.0,0.0,0.08434864,-0.3629936 +5.669523000717163,0.0,0.0,0.0,0.08434864,-0.3629936 +5.679585933685303,0.0,0.0,0.0,0.08434864,-0.3629936 +5.691127061843872,0.0,0.0,0.0,0.08434864,-0.3629936 +5.699428081512451,0.0,0.0,0.0,0.08434864,-0.3629936 +5.712625980377197,0.0,0.0,0.0,0.09372071,-0.3740939 +5.719486951828003,0.0,0.0,0.0,0.09372071,-0.3740939 +5.729768991470337,0.0,0.0,0.0,0.09372071,-0.3740939 +5.741415977478027,0.0,0.0,0.0,0.09372071,-0.3740939 +5.750409126281738,0.0,0.0,0.0,0.08434864,-0.3740939 +5.759403944015503,0.0,0.0,0.0,0.08434864,-0.3666937 +5.770380020141602,0.0,0.0,0.0,0.08434864,-0.3666937 +5.779469966888428,0.0,0.0,0.0,0.08434864,-0.3666937 +5.789899110794067,0.0,0.0,0.0,0.08434864,-0.3666937 +5.800133943557739,0.0,0.0,0.0,0.08434864,-0.3666937 +5.809416055679321,0.0,0.0,0.0,0.08434864,-0.32414255 +5.819777965545654,0.0,0.0,0.0,0.08434864,-0.32414255 +5.829761028289795,0.0,0.0,0.0,0.07497657,-0.32414255 +5.839756011962891,0.0,0.0,0.0,0.07497657,-0.32414255 +5.851473093032837,0.0,0.0,0.0,0.07497657,-0.32414255 +5.860492944717407,0.0,0.0,0.0,0.07497657,-0.36484364 +5.869486093521118,0.0,0.0,0.0,0.07497657,-0.36484364 +5.87946891784668,0.0,0.0,0.0,0.07497657,-0.36484364 +5.890303134918213,0.0,0.0,0.0,0.07497657,-0.36484364 +5.899991989135742,0.0,0.0,0.0,0.07497657,-0.36484364 +5.910987138748169,0.0,0.0,0.0,0.07497657,-0.3444931 +5.919794082641602,0.0,0.0,0.0,0.07497657,-0.3444931 +5.9294469356536865,0.0,0.0,0.0,0.07497657,-0.3444931 +5.939438104629517,0.0,0.0,0.0,0.07497657,-0.3444931 +5.950576066970825,0.0,0.0,0.0,0.07497657,-0.3444931 +5.959403038024902,0.0,0.0,0.0,0.07497657,-0.36854377 +5.969536066055298,0.0,0.0,0.0,0.07497657,-0.36854377 +5.979439973831177,0.0,0.0,0.0,0.07497657,-0.36854377 +5.991147041320801,0.0,0.0,0.0,0.0656045,-0.36854377 +5.999428033828735,0.0,0.0,0.0,0.0656045,-0.36854377 +6.011289119720459,0.0,0.0,0.0,0.0656045,-0.37224382 +6.019395112991333,0.0,0.0,0.0,0.0656045,-0.37224382 +6.029469013214111,0.0,0.0,0.0,0.0656045,-0.37224382 +6.0401771068573,0.0,0.0,0.0,0.0656045,-0.37224382 +6.049704074859619,0.0,0.0,0.0,0.0656045,-0.37224382 +6.059435129165649,0.0,0.0,0.0,0.0656045,-0.36484364 +6.069468021392822,0.0,0.0,0.0,0.0656045,-0.36484364 +6.079417943954468,0.0,0.0,0.0,0.0656045,-0.36484364 +6.089584112167358,0.0,0.0,0.0,0.0656045,-0.36484364 +6.10001802444458,0.0,0.0,0.0,0.0656045,-0.36484364 +6.110260963439941,0.0,0.0,0.0,0.0656045,-0.3555934 +6.119563102722168,0.0,0.0,0.0,0.0656045,-0.3555934 +6.129759073257446,0.0,0.0,0.0,0.0656045,-0.3555934 +6.139797925949097,0.0,0.0,0.0,0.0656045,-0.3555934 +6.14951491355896,0.0,0.0,0.0,0.0656045,-0.3555934 +6.160170078277588,0.0,0.0,0.0,0.0656045,-0.3666937 +6.169518947601318,0.0,0.0,0.0,0.0656045,-0.3666937 +6.1794350147247314,0.0,0.0,0.0,0.0656045,-0.3666937 +6.191218137741089,0.0,0.0,0.0,0.0656045,-0.3666937 +6.199810981750488,0.0,0.0,0.0,0.0656045,-0.3666937 +6.209388017654419,0.0,0.0,0.0,0.0656045,-0.3555934 +6.219438076019287,0.0,0.0,0.0,0.07497657,-0.3555934 +6.229466915130615,0.0,0.0,0.0,0.07497657,-0.3555934 +6.239578008651733,0.0,0.0,0.0,0.07497657,-0.3555934 +6.249424934387207,0.0,0.0,0.0,0.07497657,-0.3555934 +6.261112928390503,0.0,0.0,0.0,0.07497657,-0.3666937 +6.269998073577881,0.0,0.0,0.0,0.07497657,-0.3666937 +6.2794060707092285,0.0,0.0,0.0,0.07497657,-0.3666937 +6.290209054946899,0.0,0.0,0.0,0.07497657,-0.3666937 +6.30002498626709,0.0,0.0,0.0,0.07497657,-0.3666937 +6.310770034790039,0.0,0.0,0.0,0.07497657,-0.38334414 +6.319740056991577,0.0,0.0,0.0,0.07497657,-0.38334414 +6.329479932785034,0.0,0.0,0.0,0.07497657,-0.38334414 +6.34348201751709,0.0,0.0,0.0,0.07497657,-0.38334414 +6.34940505027771,0.0,0.0,0.0,0.07497657,-0.38334414 +6.360149145126343,0.0,0.0,0.0,0.07497657,-0.3555934 +6.370798110961914,0.0,0.0,0.0,0.08434864,-0.3555934 +6.379405975341797,0.0,0.0,0.0,0.08434864,-0.3555934 +6.38940691947937,0.0,0.0,0.0,0.08434864,-0.3555934 +6.400166034698486,0.0,0.0,0.0,0.07497657,-0.3555934 +6.40956711769104,0.0,0.0,0.0,0.07497657,-0.3666937 +6.419541120529175,0.0,0.0,0.0,0.07497657,-0.3666937 +6.429436922073364,0.0,0.0,0.0,0.07497657,-0.3666937 +6.440191984176636,0.0,0.0,0.0,0.07497657,-0.3666937 +6.452145099639893,0.0,0.0,0.0,0.07497657,-0.3666937 +6.459398984909058,0.0,0.0,0.0,0.07497657,-0.3611436 +6.469414949417114,0.0,0.0,0.0,0.07497657,-0.3611436 +6.479690074920654,0.0,0.0,0.0,0.07497657,-0.3611436 +6.489905118942261,0.0,0.0,0.0,0.0656045,-0.3611436 +6.499545097351074,0.0,0.0,0.0,0.0656045,-0.3611436 +6.509521007537842,0.0,0.0,0.0,0.0656045,-0.38334414 +6.519443988800049,0.0,0.0,0.0,0.0656045,-0.38334414 +6.529803037643433,0.0,0.0,0.0,0.0656045,-0.38334414 +6.539763927459717,0.0,0.0,0.0,0.07497657,-0.38334414 +6.55112099647522,0.0,0.0,0.0,0.07497657,-0.38334414 +6.5594329833984375,0.0,0.0,0.0,0.07497657,-0.3629936 +6.570069074630737,0.0,0.0,0.0,0.07497657,-0.3629936 +6.579417943954468,0.0,0.0,0.0,0.07497657,-0.3629936 +6.589409112930298,0.0,0.0,0.0,0.0656045,-0.3629936 +6.599429130554199,0.0,0.0,0.0,0.0656045,-0.3629936 +6.614125967025757,0.0,0.0,0.0,0.0656045,-0.39444444 +6.619576930999756,0.0,0.0,0.0,0.07497657,-0.39444444 +6.629740953445435,0.0,0.0,0.0,0.07497657,-0.39444444 +6.640169143676758,0.0,0.0,0.0,0.07497657,-0.39444444 +6.649645090103149,0.0,0.0,0.0,0.08434864,-0.39444444 +6.65956711769104,0.0,0.0,0.0,0.08434864,-0.36484364 +6.670018911361694,0.0,0.0,0.0,0.07497657,-0.36484364 +6.679599046707153,0.0,0.0,0.0,0.07497657,-0.36484364 +6.6894049644470215,0.0,0.0,0.0,0.07497657,-0.36484364 +6.700015068054199,0.0,0.0,0.0,0.07497657,-0.36484364 +6.7122509479522705,0.0,0.0,0.0,0.07497657,-0.3629936 +6.719573974609375,0.0,0.0,0.0,0.07497657,-0.3629936 +6.729741096496582,0.0,0.0,0.0,0.07497657,-0.3629936 +6.7393951416015625,0.0,0.0,0.0,0.07497657,-0.3629936 +6.749484062194824,0.0,0.0,0.0,0.08434864,-0.3629936 +6.759573936462402,0.0,0.0,0.0,0.08434864,-0.3611436 +6.769617080688477,0.0,0.0,0.0,0.08434864,-0.3611436 +6.779401063919067,0.0,0.0,0.0,0.08434864,-0.3611436 +6.789622068405151,0.0,0.0,0.0,0.08434864,-0.3611436 +6.800066947937012,0.0,0.0,0.0,0.08434864,-0.3611436 +6.810543060302734,0.0,0.0,0.0,0.07497657,-0.32599264 +6.819525957107544,0.0,0.0,0.0,0.08434864,-0.32599264 +6.82977294921875,0.0,0.0,0.0,0.08434864,-0.32599264 +6.840188980102539,0.0,0.0,0.0,0.07497657,-0.32599264 +6.849517107009888,0.0,0.0,0.0,0.08434864,-0.32599264 +6.860567092895508,0.0,0.0,0.0,0.08434864,-0.3629936 +6.869571924209595,0.0,0.0,0.0,0.08434864,-0.3629936 +6.879462957382202,0.0,0.0,0.0,0.08434864,-0.3629936 +6.889750003814697,0.0,0.0,0.0,0.08434864,-0.3629936 +6.899626970291138,0.0,0.0,0.0,0.08434864,-0.3629936 +6.909430980682373,0.0,0.0,0.0,0.08434864,-0.3555934 +6.920000076293945,0.0,0.0,0.0,0.08434864,-0.3555934 +6.9294679164886475,0.0,0.0,0.0,0.08434864,-0.3555934 +6.9394800662994385,0.0,0.0,0.0,0.07497657,-0.3555934 +6.950640916824341,0.0,0.0,0.0,0.07497657,-0.3555934 +6.959649085998535,0.0,0.0,0.0,0.07497657,-0.377794 +6.970907926559448,0.0,0.0,0.0,0.07497657,-0.377794 +6.979608058929443,0.0,0.0,0.0,0.07497657,-0.377794 +6.99201512336731,0.0,0.0,0.0,0.08434864,-0.377794 +6.999406099319458,0.0,0.0,0.0,0.08434864,-0.377794 +7.010034084320068,0.0,0.0,0.0,0.08434864,-0.3666937 +7.019402027130127,0.0,0.0,0.0,0.08434864,-0.3666937 +7.029504060745239,0.0,0.0,0.0,0.08434864,-0.3666937 +7.039791107177734,0.0,0.0,0.0,0.08434864,-0.3666937 +7.049730062484741,0.0,0.0,0.0,0.07497657,-0.3666937 +7.0599730014801025,0.0,0.0,0.0,0.07497657,-0.35744345 +7.073015928268433,0.0,0.0,0.0,0.07497657,-0.35744345 +7.079430103302002,0.0,0.0,0.0,0.07497657,-0.35744345 +7.089446067810059,0.0,0.0,0.0,0.07497657,-0.35744345 +7.099998950958252,0.0,0.0,0.0,0.08434864,-0.35744345 +7.109543085098267,0.0,0.0,0.0,0.08434864,-0.3666937 +7.119545936584473,0.0,0.0,0.0,0.08434864,-0.3666937 +7.129754066467285,0.0,0.0,0.0,0.07497657,-0.3666937 +7.139847040176392,0.0,0.0,0.0,0.07497657,-0.3666937 +7.149480104446411,0.0,0.0,0.0,0.08434864,-0.3666937 +7.160190105438232,0.0,0.0,0.0,0.08434864,-0.35744345 +7.171077013015747,0.0,0.0,0.0,0.08434864,-0.35744345 +7.179423093795776,0.0,0.0,0.0,0.08434864,-0.35744345 +7.189970016479492,0.0,0.0,0.0,0.08434864,-0.35744345 +7.199398040771484,0.0,0.0,0.0,0.08434864,-0.35744345 +7.209511041641235,0.0,0.0,0.0,0.07497657,-0.377794 +7.21983003616333,0.0,0.0,0.0,0.07497657,-0.377794 +7.22945499420166,0.0,0.0,0.0,0.07497657,-0.377794 +7.239551067352295,0.0,0.0,0.0,0.07497657,-0.377794 +7.25297999382019,0.0,0.0,0.0,0.08434864,-0.377794 +7.261960983276367,0.0,0.0,0.0,0.08434864,-0.36854377 +7.270962953567505,0.0,0.0,0.0,0.08434864,-0.36854377 +7.279433965682983,0.0,0.0,0.0,0.08434864,-0.36854377 +7.289396047592163,0.0,0.0,0.0,0.08434864,-0.36854377 +7.300059080123901,0.0,0.0,0.0,0.08434864,-0.36854377 +7.309412956237793,0.0,0.0,0.0,0.08434864,-0.3611436 +7.319518089294434,0.0,0.0,0.0,0.08434864,-0.3611436 +7.331984043121338,0.0,0.0,0.0,0.07497657,-0.3611436 +7.339960098266602,0.0,0.0,0.0,0.08434864,-0.3611436 +7.351946115493774,0.0,0.0,0.0,0.08434864,-0.3611436 +7.359867095947266,0.0,0.0,0.0,0.08434864,-0.36854377 +7.369399070739746,0.0,0.0,0.0,0.08434864,-0.36854377 +7.379502058029175,0.0,0.0,0.0,0.08434864,-0.36854377 +7.389559030532837,0.0,0.0,0.0,0.08434864,-0.36854377 +7.400187015533447,0.0,0.0,0.0,0.07497657,-0.36854377 +7.410149097442627,0.0,0.0,0.0,0.07497657,-0.3611436 +7.419533967971802,0.0,0.0,0.0,0.07497657,-0.3611436 +7.42979097366333,0.0,0.0,0.0,0.0656045,-0.3611436 +7.440190076828003,0.0,0.0,0.0,0.07497657,-0.3611436 +7.450931072235107,0.0,0.0,0.0,0.0656045,-0.3611436 +7.459913015365601,0.0,0.0,0.0,0.07497657,-0.3611436 +7.469481945037842,0.0,0.0,0.0,0.07497657,-0.3611436 +7.479525089263916,0.0,0.0,0.0,0.07497657,-0.3611436 +7.491202116012573,0.0,0.0,0.0,0.0656045,-0.3611436 +7.500211000442505,0.0,0.0,0.0,0.0656045,-0.3611436 +7.509427070617676,0.0,0.0,0.0,0.07497657,-0.3555934 +7.51941990852356,0.0,0.0,0.0,0.07497657,-0.3555934 +7.529465913772583,0.0,0.0,0.0,0.07497657,-0.3555934 +7.540899991989136,0.0,0.0,0.0,0.0656045,-0.3555934 +7.54990291595459,0.0,0.0,0.0,0.0656045,-0.3555934 +7.559433937072754,0.0,0.0,0.0,0.0656045,-0.35744345 +7.572293043136597,0.0,0.0,0.0,0.0656045,-0.35744345 +7.579456090927124,0.0,0.0,0.0,0.0656045,-0.35744345 +7.590306997299194,0.0,0.0,0.0,0.0656045,-0.35744345 +7.5994579792022705,0.0,0.0,0.0,0.0656045,-0.35744345 +7.612221002578735,0.0,0.0,0.0,0.0656045,-0.3629936 +7.619547128677368,0.0,0.0,0.0,0.0656045,-0.3629936 +7.629565000534058,0.0,0.0,0.0,0.0656045,-0.3629936 +7.639557123184204,0.0,0.0,0.0,0.0656045,-0.3629936 +7.649466037750244,0.0,0.0,0.0,0.0656045,-0.3629936 +7.6595399379730225,0.0,0.0,0.0,0.07497657,-0.35744345 +7.671391010284424,0.0,0.0,0.0,0.07497657,-0.35744345 +7.679537057876587,0.0,0.0,0.0,0.07497657,-0.35744345 +7.689435005187988,0.0,0.0,0.0,0.07497657,-0.35744345 +7.700045108795166,0.0,0.0,0.0,0.07497657,-0.35744345 +7.709388017654419,0.0,0.0,0.0,0.07497657,-0.35744345 +7.719497919082642,0.0,0.0,0.0,0.07497657,-0.35744345 +7.729769945144653,0.0,0.0,0.0,0.07497657,-0.35744345 +7.739479064941406,0.0,0.0,0.0,0.07497657,-0.35744345 +7.750328063964844,0.0,0.0,0.0,0.07497657,-0.35744345 +7.760112047195435,0.0,0.0,0.0,0.07497657,-0.35744345 +7.769453048706055,0.0,0.0,0.0,0.0656045,-0.35744345 +7.779483079910278,0.0,0.0,0.0,0.0656045,-0.35744345 +7.790400981903076,0.0,0.0,0.0,0.0656045,-0.35744345 +7.799437046051025,0.0,0.0,0.0,0.0656045,-0.35744345 +7.809597969055176,0.0,0.0,0.0,0.0656045,-0.35374334 +7.819719076156616,0.0,0.0,0.0,0.0656045,-0.35374334 +7.829431056976318,0.0,0.0,0.0,0.0656045,-0.35374334 +7.840208053588867,0.0,0.0,0.0,0.0656045,-0.35374334 +7.8515660762786865,0.0,0.0,0.0,0.0656045,-0.35374334 +7.859476089477539,0.0,0.0,0.0,0.05623243,-0.35744345 +7.869574069976807,0.0,0.0,0.0,0.05623243,-0.35744345 +7.879548072814941,0.0,0.0,0.0,0.05623243,-0.35744345 +7.889580965042114,0.0,0.0,0.0,0.05623243,-0.35744345 +7.9000771045684814,0.0,0.0,0.0,0.0656045,-0.35744345 +7.909542083740234,0.0,0.0,0.0,0.0656045,-0.35374334 +7.91946005821228,0.0,0.0,0.0,0.0656045,-0.35374334 +7.929780006408691,0.0,0.0,0.0,0.0656045,-0.35374334 +7.941059112548828,0.0,0.0,0.0,0.0656045,-0.35374334 +7.950671911239624,0.0,0.0,0.0,0.07497657,-0.35374334 +7.959655046463013,0.0,0.0,0.0,0.07497657,-0.3629936 +7.969463109970093,0.0,0.0,0.0,0.0656045,-0.3629936 +7.979509115219116,0.0,0.0,0.0,0.0656045,-0.3629936 +7.990212917327881,0.0,0.0,0.0,0.0656045,-0.3629936 +7.99944806098938,0.0,0.0,0.0,0.0656045,-0.3629936 +8.009418964385986,0.0,0.0,0.0,0.05623243,-0.33154276 +8.019434928894043,0.0,0.0,0.0,0.0656045,-0.33154276 +8.029505968093872,0.0,0.0,0.0,0.0656045,-0.33154276 +8.039796113967896,0.0,0.0,0.0,0.0656045,-0.33154276 +8.049763917922974,0.0,0.0,0.0,0.0656045,-0.33154276 +8.059466123580933,0.0,0.0,0.0,0.0656045,-0.3666937 +8.069472074508667,0.0,0.0,0.0,0.0656045,-0.3666937 +8.079512119293213,0.0,0.0,0.0,0.0656045,-0.3666937 +8.089411973953247,0.0,0.0,0.0,0.0656045,-0.3666937 +8.099472045898438,0.0,0.0,0.0,0.0656045,-0.3666937 +8.110327005386353,0.0,0.0,0.0,0.0656045,-0.36854377 +8.119472980499268,0.0,0.0,0.0,0.0656045,-0.36854377 +8.129420042037964,0.0,0.0,0.0,0.0656045,-0.36854377 +8.139872074127197,0.0,0.0,0.0,0.0656045,-0.36854377 +8.14940094947815,0.0,0.0,0.0,0.0656045,-0.36854377 +8.159722089767456,0.0,0.0,0.0,0.0656045,-0.3740939 +8.170047998428345,0.0,0.0,0.0,0.0656045,-0.3740939 +8.179594993591309,0.0,0.0,0.0,0.0656045,-0.3740939 +8.189633131027222,0.0,0.0,0.0,0.0656045,-0.3740939 +8.200123071670532,0.0,0.0,0.0,0.0656045,-0.3740939 +8.209485054016113,0.0,0.0,0.0,0.0656045,-0.3666937 +8.219769954681396,0.0,0.0,0.0,0.0656045,-0.3666937 +8.229805946350098,0.0,0.0,0.0,0.0656045,-0.3666937 +8.239429950714111,0.0,0.0,0.0,0.0656045,-0.3666937 +8.25085997581482,0.0,0.0,0.0,0.0656045,-0.3666937 +8.259836912155151,0.0,0.0,0.0,0.0656045,-0.3611436 +8.269789934158325,0.0,0.0,0.0,0.0656045,-0.3611436 +8.279438018798828,0.0,0.0,0.0,0.0656045,-0.3611436 +8.289444923400879,0.0,0.0,0.0,0.0656045,-0.3611436 +8.300068140029907,0.0,0.0,0.0,0.0656045,-0.3611436 +8.311058044433594,0.0,0.0,0.0,0.07497657,-0.35189328 +8.31983208656311,0.0,0.0,0.0,0.07497657,-0.35189328 +8.329448938369751,0.0,0.0,0.0,0.0656045,-0.35189328 +8.339823007583618,0.0,0.0,0.0,0.0656045,-0.35189328 +8.349663972854614,0.0,0.0,0.0,0.0656045,-0.35189328 +8.359780073165894,0.0,0.0,0.0,0.0656045,-0.36484364 +8.369462013244629,0.0,0.0,0.0,0.0656045,-0.36484364 +8.379656076431274,0.0,0.0,0.0,0.0656045,-0.36484364 +8.392139911651611,0.0,0.0,0.0,0.0656045,-0.36484364 +8.400219917297363,0.0,0.0,0.0,0.0656045,-0.36484364 +8.409475088119507,0.0,0.0,0.0,0.0656045,-0.3666937 +8.419518947601318,0.0,0.0,0.0,0.0656045,-0.3666937 +8.429461002349854,0.0,0.0,0.0,0.07497657,-0.3666937 +8.439496040344238,0.0,0.0,0.0,0.07497657,-0.3666937 +8.449505090713501,0.0,0.0,0.0,0.0656045,-0.3666937 +8.459496021270752,0.0,0.0,0.0,0.0656045,-0.36484364 +8.47321105003357,0.0,0.0,0.0,0.0656045,-0.36484364 +8.47954797744751,0.0,0.0,0.0,0.0656045,-0.36484364 +8.491255044937134,0.0,0.0,0.0,0.0656045,-0.36484364 +8.500080108642578,0.0,0.0,0.0,0.0656045,-0.36484364 +8.509462118148804,0.0,0.0,0.0,0.07497657,-0.36484364 +8.519526958465576,0.0,0.0,0.0,0.07497657,-0.36484364 +8.52947211265564,0.0,0.0,0.0,0.07497657,-0.36484364 +8.539466142654419,0.0,0.0,0.0,0.07497657,-0.36484364 +8.552809953689575,0.0,0.0,0.0,0.07497657,-0.36484364 +8.560225009918213,0.0,0.0,0.0,0.07497657,-0.36854377 +8.569435119628906,0.0,0.0,0.0,0.07497657,-0.36854377 +8.579560041427612,0.0,0.0,0.0,0.07497657,-0.36854377 +8.590357065200806,0.0,0.0,0.0,0.07497657,-0.36854377 +8.599479913711548,0.0,0.0,0.0,0.07497657,-0.36854377 +8.609441995620728,0.0,0.0,0.0,0.07497657,-0.38704422 +8.619511127471924,0.0,0.0,0.0,0.07497657,-0.38704422 +8.629748106002808,0.0,0.0,0.0,0.08434864,-0.38704422 +8.640226125717163,0.0,0.0,0.0,0.08434864,-0.38704422 +8.653423070907593,0.0,0.0,0.0,0.08434864,-0.38704422 +8.659446001052856,0.0,0.0,0.0,0.08434864,-0.36484364 +8.669495105743408,0.0,0.0,0.0,0.08434864,-0.36484364 +8.679660081863403,0.0,0.0,0.0,0.08434864,-0.36484364 +8.689482927322388,0.0,0.0,0.0,0.08434864,-0.36484364 +8.699502944946289,0.0,0.0,0.0,0.07497657,-0.36484364 +8.709453105926514,0.0,0.0,0.0,0.07497657,-0.36854377 +8.71973705291748,0.0,0.0,0.0,0.07497657,-0.36854377 +8.729509115219116,0.0,0.0,0.0,0.07497657,-0.36854377 +8.743426084518433,0.0,0.0,0.0,0.08434864,-0.36854377 +8.752347946166992,0.0,0.0,0.0,0.08434864,-0.36854377 +8.760232925415039,0.0,0.0,0.0,0.08434864,-0.36484364 +8.770160913467407,0.0,0.0,0.0,0.08434864,-0.36484364 +8.77960205078125,0.0,0.0,0.0,0.08434864,-0.36484364 +8.789768934249878,0.0,0.0,0.0,0.08434864,-0.36484364 +8.799489974975586,0.0,0.0,0.0,0.08434864,-0.36484364 +8.809605121612549,0.0,0.0,0.0,0.07497657,-0.39259437 +8.81955599784851,0.0,0.0,0.0,0.0656045,-0.39259437 +8.829412937164307,0.0,0.0,0.0,0.07497657,-0.39259437 +8.840243101119995,0.0,0.0,0.0,0.07497657,-0.39259437 +8.850287914276123,0.0,0.0,0.0,0.07497657,-0.39259437 +8.85954999923706,0.0,0.0,0.0,0.08434864,-0.3444931 +8.86965799331665,0.0,0.0,0.0,0.08434864,-0.3444931 +8.879626989364624,0.0,0.0,0.0,0.08434864,-0.3444931 +8.890690088272095,0.0,0.0,0.0,0.08434864,-0.3444931 +8.899688959121704,0.0,0.0,0.0,0.08434864,-0.3444931 +8.909435987472534,0.0,0.0,0.0,0.08434864,-0.3611436 +8.919415950775146,0.0,0.0,0.0,0.08434864,-0.3611436 +8.929507970809937,0.0,0.0,0.0,0.07497657,-0.3611436 +8.939471006393433,0.0,0.0,0.0,0.07497657,-0.3611436 +8.949540138244629,0.0,0.0,0.0,0.07497657,-0.3611436 +8.959741115570068,0.0,0.0,0.0,0.07497657,-0.35004327 +8.969528913497925,0.0,0.0,0.0,0.07497657,-0.35004327 +8.979643106460571,0.0,0.0,0.0,0.07497657,-0.35004327 +8.989642143249512,0.0,0.0,0.0,0.08434864,-0.35004327 +9.000241041183472,0.0,0.0,0.0,0.08434864,-0.35004327 +9.009455919265747,0.0,0.0,0.0,0.08434864,-0.3666937 +9.019479990005493,0.0,0.0,0.0,0.08434864,-0.3666937 +9.030681133270264,0.0,0.0,0.0,0.08434864,-0.3666937 +9.040250062942505,0.0,0.0,0.0,0.08434864,-0.3666937 +9.04987096786499,0.0,0.0,0.0,0.08434864,-0.3666937 +9.05955696105957,0.0,0.0,0.0,0.08434864,-0.37224382 +9.070611000061035,0.0,0.0,0.0,0.07497657,-0.37224382 +9.079607963562012,0.0,0.0,0.0,0.07497657,-0.37224382 +9.090475082397461,0.0,0.0,0.0,0.07497657,-0.37224382 +9.099633932113647,0.0,0.0,0.0,0.07497657,-0.37224382 +9.112455129623413,0.0,0.0,0.0,0.07497657,-0.377794 +9.119853019714355,0.0,0.0,0.0,0.07497657,-0.377794 +9.12953495979309,0.0,0.0,0.0,0.07497657,-0.377794 +9.13997507095337,0.0,0.0,0.0,0.07497657,-0.377794 +9.149555921554565,0.0,0.0,0.0,0.07497657,-0.377794 +9.160268068313599,0.0,0.0,0.0,0.07497657,-0.35744345 +9.16958212852478,0.0,0.0,0.0,0.07497657,-0.35744345 +9.179662942886353,0.0,0.0,0.0,0.07497657,-0.35744345 +9.189574956893921,0.0,0.0,0.0,0.07497657,-0.35744345 +9.200241088867188,0.0,0.0,0.0,0.07497657,-0.35744345 +9.210762023925781,0.0,0.0,0.0,0.07497657,-0.3555934 +9.219501972198486,0.0,0.0,0.0,0.07497657,-0.3555934 +9.229767084121704,0.0,0.0,0.0,0.07497657,-0.3555934 +9.239547967910767,0.0,0.0,0.0,0.07497657,-0.3555934 +9.250581979751587,0.0,0.0,0.0,0.07497657,-0.3555934 +9.259567022323608,0.0,0.0,0.0,0.07497657,-0.379644 +9.269400119781494,0.0,0.0,0.0,0.07497657,-0.379644 +9.279433012008667,0.0,0.0,0.0,0.07497657,-0.379644 +9.292738914489746,0.0,0.0,0.0,0.08434864,-0.379644 +9.29944896697998,0.0,0.0,0.0,0.07497657,-0.379644 +9.310688018798828,0.0,0.0,0.0,0.07497657,-0.33894297 +9.319576025009155,0.0,0.0,0.0,0.07497657,-0.33894297 +9.329569101333618,0.0,0.0,0.0,0.07497657,-0.33894297 +9.340138912200928,0.0,0.0,0.0,0.0656045,-0.33894297 +9.349584102630615,0.0,0.0,0.0,0.0656045,-0.33894297 +9.36023211479187,0.0,0.0,0.0,0.0656045,-0.3666937 +9.371649026870728,0.0,0.0,0.0,0.0656045,-0.3666937 +9.379528999328613,0.0,0.0,0.0,0.0656045,-0.3666937 +9.391529083251953,0.0,0.0,0.0,0.05623243,-0.3666937 +9.400264024734497,0.0,0.0,0.0,0.05623243,-0.3666937 +9.409515142440796,0.0,0.0,0.0,0.05623243,-0.3629936 +9.419585943222046,0.0,0.0,0.0,0.05623243,-0.3629936 +9.429593086242676,0.0,0.0,0.0,0.0656045,-0.3629936 +9.43955397605896,0.0,0.0,0.0,0.0656045,-0.3629936 +9.449602127075195,0.0,0.0,0.0,0.0656045,-0.3629936 +9.462013006210327,0.0,0.0,0.0,0.0656045,-0.377794 +9.472381114959717,0.0,0.0,0.0,0.0656045,-0.377794 +9.479646921157837,0.0,0.0,0.0,0.0656045,-0.377794 +9.490348100662231,0.0,0.0,0.0,0.07497657,-0.377794 +9.499483108520508,0.0,0.0,0.0,0.0656045,-0.377794 +9.509444952011108,0.0,0.0,0.0,0.0656045,-0.3444931 +9.51958703994751,0.0,0.0,0.0,0.0656045,-0.3444931 +9.529550075531006,0.0,0.0,0.0,0.0656045,-0.3444931 +9.539642095565796,0.0,0.0,0.0,0.0656045,-0.3444931 +9.553213119506836,0.0,0.0,0.0,0.0656045,-0.3444931 +9.560261011123657,0.0,0.0,0.0,0.0656045,-0.3611436 +9.569489002227783,0.0,0.0,0.0,0.0656045,-0.3611436 +9.579416990280151,0.0,0.0,0.0,0.0656045,-0.3611436 +9.589391946792603,0.0,0.0,0.0,0.0656045,-0.3611436 +9.599410057067871,0.0,0.0,0.0,0.0656045,-0.3611436 +9.609445095062256,0.0,0.0,0.0,0.0656045,-0.3888943 +9.619626998901367,0.0,0.0,0.0,0.07497657,-0.3888943 +9.629580974578857,0.0,0.0,0.0,0.07497657,-0.3888943 +9.640253067016602,0.0,0.0,0.0,0.0656045,-0.3888943 +9.65193796157837,0.0,0.0,0.0,0.07497657,-0.3888943 +9.659394979476929,0.0,0.0,0.0,0.0656045,-0.36854377 +9.669745922088623,0.0,0.0,0.0,0.07497657,-0.36854377 +9.679417133331299,0.0,0.0,0.0,0.07497657,-0.36854377 +9.689657926559448,0.0,0.0,0.0,0.0656045,-0.36854377 +9.700103998184204,0.0,0.0,0.0,0.0656045,-0.36854377 +9.709432125091553,0.0,0.0,0.0,0.0656045,-0.3629936 +9.719598054885864,0.0,0.0,0.0,0.0656045,-0.3629936 +9.729790925979614,0.0,0.0,0.0,0.0656045,-0.3629936 +9.74028491973877,0.0,0.0,0.0,0.0656045,-0.3629936 +9.749913930892944,0.0,0.0,0.0,0.0656045,-0.3629936 +9.759788990020752,0.0,0.0,0.0,0.0656045,-0.3611436 +9.769392967224121,0.0,0.0,0.0,0.07497657,-0.3611436 +9.779530048370361,0.0,0.75757575,0.75757575,0.07497657,-0.3611436 +9.790529012680054,0.0,0.75757575,0.75757575,0.0656045,-0.3611436 +9.799529075622559,0.0,0.75757575,0.75757575,0.0656045,-0.3611436 +9.80943512916565,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +9.81939697265625,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +9.8298180103302,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +9.839637041091919,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +9.849622011184692,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +9.860883951187134,0.0,0.75757575,0.75757575,0.07497657,-0.36854377 +9.869892120361328,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +9.879430055618286,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +9.889503955841064,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +9.90012502670288,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +9.909929990768433,0.0,0.75757575,0.75757575,0.07497657,-0.3629936 +9.920254945755005,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +9.929408073425293,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +9.939563989639282,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +9.94940996170044,0.0,0.75757575,0.75757575,0.07497657,-0.3629936 +9.95954704284668,0.0,0.75757575,0.75757575,0.07497657,-0.3629936 +9.969389915466309,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +9.979551076889038,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +9.98938798904419,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +9.999545097351074,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +10.009464979171753,0.0,0.75757575,0.75757575,0.0656045,-0.35374334 +10.019428014755249,0.0,0.75757575,0.75757575,0.05623243,-0.35374334 +10.029590129852295,0.0,0.75757575,0.75757575,0.05623243,-0.35374334 +10.040295124053955,0.0,0.75757575,0.75757575,0.0656045,-0.35374334 +10.050100088119507,0.0,0.75757575,0.75757575,0.0656045,-0.35374334 +10.059412002563477,0.0,0.75757575,0.75757575,0.0656045,-0.34264305 +10.06949496269226,0.0,0.75757575,0.75757575,0.07497657,-0.34264305 +10.079440116882324,0.0,0.75757575,0.75757575,0.07497657,-0.34264305 +10.08941912651062,0.0,0.75757575,0.75757575,0.07497657,-0.34264305 +10.099430084228516,0.0,0.75757575,0.75757575,0.07497657,-0.34264305 +10.109549045562744,0.0,0.75757575,0.75757575,0.07497657,-0.37594396 +10.119413137435913,0.0,0.75757575,0.75757575,0.07497657,-0.37594396 +10.12953495979309,0.0,0.75757575,0.75757575,0.07497657,-0.37594396 +10.14022707939148,0.0,0.75757575,0.75757575,0.07497657,-0.37594396 +10.149500131607056,0.0,0.75757575,0.75757575,0.07497657,-0.37594396 +10.159553050994873,0.0,0.75757575,0.75757575,0.07497657,-0.36484364 +10.169404983520508,0.0,0.75757575,0.75757575,0.08434864,-0.36484364 +10.179549932479858,0.0,0.75757575,0.75757575,0.07497657,-0.36484364 +10.1909019947052,0.0,0.75757575,0.75757575,0.07497657,-0.36484364 +10.199883937835693,0.0,0.75757575,0.75757575,0.07497657,-0.36484364 +10.209425926208496,0.0,0.75757575,0.75757575,0.07497657,-0.36484364 +10.219442129135132,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +10.229390144348145,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +10.239541053771973,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +10.24943494796753,0.0,0.75757575,0.75757575,0.0656045,-0.36484364 +10.259436130523682,0.0,0.75757575,0.75757575,0.07497657,-0.3629936 +10.271722078323364,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +10.279467105865479,0.0,0.75757575,0.75757575,0.0656045,-0.3629936 +10.289685010910034,0.0,0.75757575,0.75757575,0.07497657,-0.3629936 +10.29944396018982,0.0,0.75757575,0.75757575,0.07497657,-0.3629936 +10.311213970184326,0.0,0.75757575,0.75757575,0.07497657,-0.35374334 +10.319447040557861,0.0,0.75757575,0.75757575,0.07497657,-0.35374334 +10.329421043395996,0.0,0.75757575,0.75757575,0.07497657,-0.35374334 +10.339452981948853,0.0,0.75757575,0.75757575,0.0656045,-0.35374334 +10.349416017532349,0.0,0.75757575,0.75757575,0.0656045,-0.35374334 +10.359478950500488,0.0,0.75757575,0.75757575,0.0656045,-0.35744345 +10.370528936386108,0.0,0.75757575,0.75757575,0.0656045,-0.35744345 +10.37955093383789,0.0,0.75757575,0.75757575,0.0656045,-0.35744345 +10.389456033706665,0.0,0.75757575,0.75757575,0.0656045,-0.35744345 +10.399474143981934,0.0,0.75757575,0.75757575,0.0656045,-0.35744345 +10.409466028213501,0.0,0.75757575,0.75757575,0.0656045,-0.37594396 +10.419466972351074,0.0,0.0,0.0,0.0656045,-0.37594396 +10.429434061050415,0.0,0.0,0.0,0.0656045,-0.37594396 +10.440283060073853,0.0,0.0,0.0,0.0656045,-0.37594396 +10.451338052749634,0.0,0.0,0.0,0.0656045,-0.37594396 +10.46031904220581,0.0,0.0,0.0,0.0656045,-0.3666937 +10.46952509880066,0.0,0.0,0.0,0.0656045,-0.3666937 +10.47965407371521,0.0,0.0,0.0,0.0656045,-0.3666937 +10.489468097686768,0.0,0.0,0.0,0.0656045,-0.3666937 +10.500147104263306,0.0,0.0,0.0,0.0656045,-0.3666937 +10.509674072265625,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +10.51944613456726,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +10.529561042785645,0.0,0.75757575,0.75757575,0.0656045,-0.36854377 +10.540374994277954,0.0,0.75757575,0.75757575,0.07497657,-0.36854377 +10.5501389503479,0.0,0.75757575,0.75757575,0.07497657,-0.36854377 +10.559454917907715,0.0,1.5151515,1.5151515,0.07497657,-0.36854377 +10.569577932357788,0.0,1.5151515,1.5151515,0.08434864,-0.36854377 +10.57948899269104,0.0,1.5151515,1.5151515,0.08434864,-0.36854377 +10.590131044387817,0.0,1.5151515,1.5151515,0.09372071,-0.36854377 +10.59980297088623,0.0,1.5151515,1.5151515,0.09372071,-0.36854377 +10.609457969665527,0.0,1.5151515,1.5151515,0.08434864,-0.35374334 +10.619576930999756,0.0,1.5151515,1.5151515,0.08434864,-0.35374334 +10.62939190864563,0.0,2.2727273,2.2727273,0.09372071,-0.35374334 +10.639496088027954,0.0,2.2727273,2.2727273,0.09372071,-0.35374334 +10.649462938308716,0.0,2.2727273,2.2727273,0.09372071,-0.35374334 +10.659462928771973,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +10.671430110931396,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +10.679603099822998,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +10.689892053604126,0.0,2.2727273,2.2727273,0.09372071,-0.37224382 +10.699463129043579,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +10.709442138671875,0.0,2.2727273,2.2727273,0.10309278,-0.37224382 +10.720298051834106,0.0,1.5151515,1.5151515,0.10309278,-0.37224382 +10.72975492477417,0.0,1.5151515,1.5151515,0.10309278,-0.37224382 +10.73946213722229,0.0,1.5151515,1.5151515,0.10309278,-0.37224382 +10.74948501586914,0.0,1.5151515,1.5151515,0.10309278,-0.37224382 +10.760301113128662,0.0,1.5151515,1.5151515,0.10309278,-0.3555934 +10.77097201347351,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +10.779564142227173,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +10.789451122283936,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +10.80029296875,0.0,1.5151515,1.5151515,0.09372071,-0.3555934 +10.809500932693481,0.0,1.5151515,1.5151515,0.09372071,-0.35374334 +10.819493055343628,0.0,1.5151515,1.5151515,0.09372071,-0.35374334 +10.829476118087769,0.0,1.5151515,1.5151515,0.09372071,-0.35374334 +10.83941912651062,0.0,1.5151515,1.5151515,0.09372071,-0.35374334 +10.85191011428833,0.0,1.5151515,1.5151515,0.09372071,-0.35374334 +10.85984992980957,0.0,1.5151515,1.5151515,0.09372071,-0.36854377 +10.870122909545898,0.0,0.75757575,0.75757575,0.09372071,-0.36854377 +10.879537105560303,0.0,0.75757575,0.75757575,0.09372071,-0.36854377 +10.889404058456421,0.0,0.75757575,0.75757575,0.09372071,-0.36854377 +10.899493932723999,0.0,0.75757575,0.75757575,0.10309278,-0.36854377 +10.909526109695435,0.0,0.75757575,0.75757575,0.10309278,-0.3666937 +10.919625997543335,0.0,0.75757575,0.75757575,0.10309278,-0.3666937 +10.929471015930176,0.0,0.75757575,0.75757575,0.10309278,-0.3666937 +10.939532995223999,0.0,0.0,0.0,0.10309278,-0.3666937 +10.951205015182495,0.0,0.0,0.0,0.10309278,-0.3666937 +10.959504127502441,0.0,0.0,0.0,0.10309278,-0.36484364 +10.969491004943848,0.0,0.0,0.0,0.09372071,-0.36484364 +10.979480028152466,0.0,0.0,0.0,0.09372071,-0.36484364 +10.989638090133667,0.0,0.0,0.0,0.10309278,-0.36484364 +10.99948501586914,0.0,0.0,0.0,0.10309278,-0.36484364 +11.00941014289856,0.0,0.0,0.0,0.10309278,-0.35744345 +11.019520998001099,0.0,0.0,0.0,0.11246486,-0.35744345 +11.029490947723389,0.0,0.0,0.0,0.11246486,-0.35744345 +11.040300130844116,0.0,0.0,0.0,0.11246486,-0.35744345 +11.049543142318726,0.0,0.0,0.0,0.11246486,-0.35744345 +11.059497117996216,0.0,0.0,0.0,0.11246486,-0.3611436 +11.069441080093384,0.0,0.0,0.0,0.11246486,-0.3611436 +11.079631090164185,0.0,0.0,0.0,0.11246486,-0.3611436 +11.089510917663574,0.0,0.0,0.0,0.10309278,-0.3611436 +11.100155115127563,0.0,0.0,0.0,0.09372071,-0.3611436 +11.112793922424316,0.0,0.0,0.0,0.09372071,-0.35744345 +11.119516134262085,0.0,0.0,0.0,0.09372071,-0.35744345 +11.129483938217163,0.0,0.0,0.0,0.08434864,-0.35744345 +11.139522075653076,0.0,0.0,0.0,0.08434864,-0.35744345 +11.149476051330566,0.0,0.0,0.0,0.07497657,-0.35744345 +11.159481048583984,0.0,0.0,0.0,0.07497657,-0.3555934 +11.169816017150879,0.0,0.0,0.0,0.07497657,-0.3555934 +11.179538011550903,0.0,0.0,0.0,0.07497657,-0.3555934 +11.1929349899292,0.0,0.0,0.0,0.0656045,-0.3555934 +11.200314044952393,0.0,0.0,0.0,0.05623243,-0.3555934 +11.209525108337402,0.0,0.0,0.0,0.05623243,-0.36484364 +11.219506025314331,0.0,0.0,0.0,0.05623243,-0.36484364 +11.229506015777588,0.0,0.0,0.0,0.05623243,-0.36484364 +11.239516973495483,0.0,0.0,0.0,0.05623243,-0.36484364 +11.249520063400269,0.0,0.0,0.0,0.046860356,-0.36484364 +11.259606122970581,0.0,0.0,0.0,0.037488285,-0.3555934 +11.269541025161743,0.0,0.0,0.0,0.037488285,-0.3555934 +11.279629945755005,0.0,0.0,0.0,0.037488285,-0.3555934 +11.290929079055786,0.0,0.0,0.0,0.037488285,-0.3555934 +11.299832105636597,0.0,0.0,0.0,0.037488285,-0.3555934 +11.309503078460693,0.0,0.0,0.0,0.037488285,-0.43329546 +11.31951904296875,0.0,0.0,0.0,0.037488285,-0.43329546 +11.329530000686646,0.0,0.0,0.0,0.037488285,-0.43329546 +11.339519023895264,0.0,0.0,0.0,0.037488285,-0.43329546 +11.349524974822998,0.0,0.0,0.0,0.028116215,-0.43329546 +11.359431982040405,0.0,0.0,0.0,0.028116215,-0.3611436 +11.371119976043701,0.0,0.0,0.0,0.028116215,-0.3611436 +11.379589080810547,0.0,0.0,0.0,0.028116215,-0.3611436 +11.389503955841064,0.0,0.0,0.0,0.028116215,-0.3611436 +11.399518966674805,0.0,0.0,0.0,0.028116215,-0.3611436 +11.410093069076538,0.0,0.0,0.0,0.018744143,-0.36854377 +11.419506072998047,0.0,0.0,0.0,0.009372071,-0.36854377 +11.429513931274414,0.0,0.0,0.0,0.018744143,-0.36854377 +11.4394850730896,0.0,0.0,0.0,0.018744143,-0.36854377 +11.451273918151855,0.0,0.0,0.0,0.018744143,-0.36854377 +11.460201025009155,0.0,0.0,0.0,0.0,-0.3611436 +11.469500064849854,0.0,0.0,0.0,0.0,-0.3611436 +11.479635953903198,0.0,0.0,0.0,0.0,-0.3611436 +11.48955512046814,0.0,0.0,0.0,0.0,-0.3611436 +11.500093936920166,0.0,0.0,0.0,0.0,-0.3611436 +11.509505033493042,0.0,0.0,0.0,0.0,-0.34634316 +11.519586086273193,0.0,0.0,0.0,0.0,-0.34634316 +11.52949595451355,0.0,0.0,0.0,0.0,-0.34634316 +11.54035496711731,0.0,0.0,0.0,0.0,-0.34634316 +11.549528121948242,0.0,0.0,0.0,0.0,-0.34634316 +11.559489965438843,0.0,0.0,0.0,0.0,-0.35744345 +11.572099924087524,0.0,0.0,0.0,0.0,-0.35744345 +11.579612016677856,0.0,0.0,0.0,0.0,-0.35744345 +11.590081930160522,0.0,0.0,0.0,0.0,-0.35744345 +11.599503993988037,0.0,0.0,0.0,0.0,-0.35744345 +11.609554052352905,0.0,0.0,0.0,0.0,-0.3629936 +11.619494915008545,0.0,0.0,0.0,0.0,-0.3629936 +11.62952995300293,0.0,0.0,0.0,0.0,-0.3629936 +11.639563083648682,0.0,0.0,0.0,0.0,-0.3629936 +11.653074026107788,0.0,0.0,0.0,0.0,-0.3629936 +11.659500122070312,0.0,0.0,0.0,0.0,-0.36854377 +11.67107605934143,0.0,0.0,0.0,0.0,-0.36854377 +11.679649114608765,0.0,0.0,0.0,0.0,-0.36854377 +11.689487934112549,0.0,0.0,0.0,0.0,-0.36854377 +11.699536085128784,0.0,0.0,0.0,0.0,-0.36854377 +11.709573984146118,0.0,0.0,0.0,0.0,-0.37224382 +11.71951413154602,0.0,0.0,0.0,0.0,-0.37224382 +11.729457139968872,0.0,0.0,0.0,0.0,-0.37224382 +11.743053913116455,0.0,0.0,0.0,0.0,-0.37224382 +11.752039909362793,0.0,0.0,0.0,0.0,-0.37224382 +11.760354995727539,0.0,0.0,0.0,0.0,-0.34264305 +11.769547939300537,0.0,0.0,0.0,0.0,-0.34264305 +11.779495000839233,0.0,0.0,0.0,0.0,-0.34264305 +11.78955602645874,0.0,0.0,0.0,0.0,-0.34264305 +11.799472093582153,0.0,0.0,0.0,0.0,-0.34264305 +11.80966591835022,0.0,0.0,0.0,0.0,-0.35744345 +11.81949496269226,0.0,0.0,0.0,0.0,-0.35744345 +11.829452991485596,0.0,0.0,0.0,0.0,-0.35744345 +11.840331077575684,0.0,0.0,0.0,0.0,-0.35744345 +11.851022005081177,0.0,0.0,0.0,0.0,-0.35744345 +11.86001205444336,0.0,0.0,0.0,0.0,-0.35744345 +11.869472980499268,0.0,0.0,0.0,0.0,-0.35744345 +11.879460096359253,0.0,0.0,0.0,0.0,-0.35744345 +11.889533996582031,0.01,0.0,0.0,0.0,-0.35744345 +11.900180101394653,0.01,0.0,0.0,0.0,-0.35744345 +11.914017915725708,0.02,0.0,0.0,0.0,-0.3629936 +11.919456958770752,0.03,0.0,0.0,0.0,-0.3629936 +11.92943000793457,0.04,0.0,0.0,0.0,-0.3629936 +11.93961501121521,0.049999997,0.0,0.0,0.0,-0.3629936 +11.949989080429077,0.06,0.0,0.0,0.0,-0.3629936 +11.959437131881714,0.06,0.0,0.0,0.0,-0.3629936 +11.969496965408325,0.07,0.0,0.0,0.0,-0.3629936 +11.97946310043335,0.08,0.0,0.0,0.0,-0.3629936 +11.99077296257019,0.08,0.0,0.0,0.0,-0.3629936 +12.000334978103638,0.089999996,0.0,0.0,0.0,-0.3629936 +12.009884119033813,0.099999994,0.0,0.0,0.0,-0.3629936 +12.01951003074646,0.099999994,0.0,0.0,0.0,-0.3629936 +12.029500007629395,0.11,0.0,0.0,0.0,-0.3629936 +12.03942608833313,0.11,0.0,0.0,0.0,-0.3629936 +12.04955005645752,0.12,0.0,0.0,0.0,-0.3629936 +12.059468984603882,0.12,0.0,0.0,0.0,-0.3611436 +12.069452047348022,0.13,0.0,0.0,0.0,-0.3611436 +12.079395055770874,0.13,0.0,0.0,0.0,-0.3611436 +12.091360092163086,0.14,0.0,0.0,0.0,-0.3611436 +12.10019302368164,0.14,0.0,0.0,0.0,-0.3611436 +12.110460996627808,0.14,0.0,0.0,0.0,-0.36484364 +12.11942195892334,0.14999999,0.0,0.0,0.0,-0.36484364 +12.129534006118774,0.14999999,0.0,0.0,0.0,-0.36484364 +12.139461040496826,0.14999999,0.0,0.0,0.0,-0.36484364 +12.149478912353516,0.16,0.0,0.0,0.0,-0.36484364 +12.159414052963257,0.16,0.0,0.0,0.0,-0.3740939 +12.172828912734985,0.16,0.0,0.0,0.0,-0.3740939 +12.179464101791382,0.17,0.0,0.0,0.0,-0.3740939 +12.190628051757812,0.17,0.0,0.0,0.0,-0.3740939 +12.199615955352783,0.17,0.0,0.0,0.0,-0.3740939 +12.209453105926514,0.17,0.0,0.0,0.0,-0.3666937 +12.21950912475586,0.17999999,0.0,0.0,0.0,-0.3666937 +12.229454040527344,0.17999999,0.0,0.0,0.0,-0.3666937 +12.239408016204834,0.17999999,0.0,0.0,0.0,-0.3666937 +12.24945592880249,0.17999999,0.0,0.0,0.0,-0.3666937 +12.261888027191162,0.17999999,0.0,0.0,0.0,-0.34634316 +12.26948595046997,0.19,0.0,0.0,0.0,-0.34634316 +12.2796630859375,0.19,0.0,0.0,0.0,-0.34634316 +12.289452075958252,0.19,0.0,0.0,0.0,-0.34634316 +12.30019211769104,0.19,0.0,0.0,0.0,-0.34634316 +12.309457063674927,0.19,0.0,0.0,0.0,-0.3611436 +12.319483041763306,0.19,0.0,0.0,0.0,-0.3611436 +12.329455137252808,0.19,0.0,0.0,0.0,-0.3611436 +12.339422941207886,0.19,0.0,0.0,0.0,-0.3611436 +12.350951910018921,0.19,0.0,0.0,0.0,-0.3611436 +12.359853982925415,0.19,0.0,0.0,0.0,-0.35744345 +12.369415044784546,0.19,0.0,0.0,0.0,-0.35744345 +12.379462003707886,0.19999999,0.0,0.0,0.0,-0.35744345 +12.390968084335327,0.19999999,0.0,0.0,0.0,-0.35744345 +12.399989128112793,0.19999999,0.0,0.0,0.0,-0.35744345 +12.409502983093262,0.19999999,0.0,0.0,0.0,-0.36854377 +12.41957712173462,0.19999999,0.0,0.0,0.0,-0.36854377 +12.429443120956421,0.19999999,0.0,0.0,0.0,-0.36854377 +12.439455032348633,0.19999999,0.0,0.0,0.0,-0.36854377 +12.449437141418457,0.19999999,0.0,0.0,0.0,-0.36854377 +12.460372924804688,0.19999999,0.0,0.0,0.0,-0.34634316 +12.472007036209106,0.19999999,0.0,0.0,0.0,-0.34634316 +12.479411125183105,0.19999999,0.0,0.0,0.0,-0.34634316 +12.489413976669312,0.19999999,0.0,0.0,0.0,-0.34634316 +12.499429941177368,0.19999999,0.0,0.0,0.0,-0.34634316 +12.509521961212158,0.19999999,0.0,0.0,0.0,-0.30194196 +12.51946496963501,0.19999999,0.0,0.0,0.0,-0.30194196 +12.529592037200928,0.19999999,0.0,0.0,0.0,-0.30194196 +12.542375087738037,0.19999999,0.0,0.0,0.0,-0.30194196 +12.553044080734253,0.19999999,0.0,0.0,0.0,-0.30194196 +12.560346126556396,0.19999999,0.0,0.0,0.0,-0.28899163 +12.5694420337677,0.19999999,0.0,0.0,0.0,-0.28899163 +12.579631090164185,0.19999999,0.0,0.0,0.0,-0.28899163 +12.589426040649414,0.19999999,0.0,0.0,0.0,-0.28899163 +12.600302934646606,0.19999999,0.0,0.0,0.0,-0.28899163 +12.609480142593384,0.19999999,0.0,0.0,0.0,-0.25569075 +12.619394063949585,0.19999999,0.0,0.0,0.0,-0.25569075 +12.62981390953064,0.19999999,0.0,0.0,0.0,-0.25569075 +12.639408111572266,0.19999999,0.0,0.0,0.0,-0.25569075 +12.652032136917114,0.19999999,0.0,0.0,0.0,-0.25569075 +12.6596999168396,0.19999999,0.0,0.0,0.0,-0.21128957 +12.670016050338745,0.19999999,0.0,0.0,0.0,-0.21128957 +12.679392099380493,0.19999999,0.0,0.0,0.0,-0.21128957 +12.689558982849121,0.19999999,0.0,0.0,0.0,-0.21128957 +12.699440956115723,0.19999999,0.0,0.0,0.0,-0.21128957 +12.709485054016113,0.19999999,0.0,0.0,0.0,-0.19648919 +12.719398975372314,0.19999999,0.0,0.0,0.0,-0.19648919 +12.729392051696777,0.19999999,0.0,0.0,0.0,-0.19648919 +12.741581916809082,0.19999999,0.0,0.0,0.0,-0.19648919 +12.750014066696167,0.19999999,0.0,0.0,0.0,-0.19648919 +12.759401082992554,0.19999999,0.0,0.0,0.0,-0.14283776 +12.769458055496216,0.19999999,0.0,0.0,0.0,-0.14283776 +12.779529094696045,0.19999999,0.0,0.0,0.0,-0.14283776 +12.789559125900269,0.21,0.0,0.0,0.0,-0.14283776 +12.799396991729736,0.21,0.0,0.0,0.0,-0.14283776 +12.809972047805786,0.21,0.0,0.0,0.0,-0.09473648 +12.819443941116333,0.21,0.0,0.0,0.0,-0.09473648 +12.82939600944519,0.21,0.0,0.0,0.0,-0.09473648 +12.84034013748169,0.21,0.0,0.0,0.0,-0.09473648 +12.849472999572754,0.21,0.0,0.0,0.0,-0.09473648 +12.859409093856812,0.22,0.0,0.0,0.0,-0.07993608 +12.869411945343018,0.22,0.0,0.0,0.0,-0.07993608 +12.879399061203003,0.22,0.0,0.0,0.0,-0.07993608 +12.88943600654602,0.22,0.0,0.0,0.0,-0.07993608 +12.899429082870483,0.22,0.0,0.0,0.0,-0.07993608 +12.912008047103882,0.22999999,0.0,0.0,0.0,-0.06883579 +12.91943097114563,0.22999999,0.0,0.0,0.0,-0.06883579 +12.929407119750977,0.22999999,0.0,0.0,0.0,-0.06883579 +12.939479112625122,0.22999999,0.0,0.0,0.0,-0.06883579 +12.949450969696045,0.24,0.0,0.0,0.0,-0.06883579 +12.959618091583252,0.24,0.0,0.0,0.0,-0.052185345 +12.97039008140564,0.24,0.0,0.0,0.0,-0.052185345 +12.979602098464966,0.24,0.0,0.0,0.0,-0.052185345 +12.989422082901001,0.25,0.0,0.0,0.0,-0.052185345 +12.999407052993774,0.25,0.0,0.0,0.0,-0.052185345 +13.009522914886475,0.25,0.0,0.0,0.0,-0.03553491 +13.019443035125732,0.25,0.0,0.0,0.0,-0.03553491 +13.029469966888428,0.25,0.0,0.0,0.0,-0.03553491 +13.039423942565918,0.26,0.0,0.0,0.0,-0.03553491 +13.04940414428711,0.26,0.0,0.0,0.0,-0.03553491 +13.060627937316895,0.26,0.0,0.0,0.0,-0.03183481 +13.06943392753601,0.26,0.0,0.0,0.0,-0.03183481 +13.079586029052734,0.26,0.0,0.0,0.0,-0.03183481 +13.089463949203491,0.26,0.0,0.0,0.0,-0.03183481 +13.099437952041626,0.26999998,0.0,0.0,0.0,-0.03183481 +13.109391927719116,0.26999998,0.0,0.0,0.0,-0.002234026 +13.119456052780151,0.26999998,0.0,0.0,0.0,-0.002234026 +13.129446983337402,0.26999998,0.0,0.0,0.0,-0.002234026 +13.139480113983154,0.26999998,0.0,0.0,0.0,-0.002234026 +13.150857925415039,0.26999998,0.0,0.0,0.0,-0.002234026 +13.159425973892212,0.26999998,0.0,0.0,0.0,0.014416425 +13.169440031051636,0.26999998,0.0,0.0,0.0,0.014416425 +13.179403066635132,0.28,0.0,0.0,0.0,0.014416425 +13.191576957702637,0.28,0.0,0.0,0.0,0.014416425 +13.199397087097168,0.28,0.0,0.0,0.0,0.014416425 +13.209587097167969,0.28,0.0,0.0,0.0,0.02921681 +13.219428062438965,0.28,0.0,0.0,0.0,0.02921681 +13.229458093643188,0.28,0.0,0.0,0.0,0.02921681 +13.24111008644104,0.28,0.0,0.0,0.0,0.02921681 +13.250150918960571,0.28,0.0,0.0,0.0,0.02921681 +13.25944709777832,0.28,0.0,0.0,0.0,0.042167164 +13.269454956054688,0.28,0.0,0.0,0.0,0.042167164 +13.279704093933105,0.29,0.0,0.0,0.0,0.042167164 +13.289505958557129,0.29,0.0,0.0,0.0,0.042167164 +13.299564123153687,0.29,0.0,0.0,0.0,0.042167164 +13.309792041778564,0.29,0.0,0.0,0.0,0.04031712 +13.319572925567627,0.29,0.0,0.0,0.0,0.04031712 +13.329622030258179,0.29,0.0,0.0,0.0,0.04031712 +13.339442014694214,0.29,0.0,0.0,0.0,0.04031712 +13.349410057067871,0.29,0.0,0.0,0.0,0.04031712 +13.359591960906982,0.29,0.0,0.0,0.0,0.031066857 +13.369532108306885,0.29,0.0,0.0,0.0,0.031066857 +13.379703044891357,0.29,0.0,0.0,0.0,0.031066857 +13.389436960220337,0.29,0.0,0.0,0.0,0.031066857 +13.399580955505371,0.29,0.0,0.0,0.0,0.031066857 +13.409502983093262,0.29,0.0,0.0,0.0,0.073618 +13.419531106948853,0.29,0.0,0.0,0.0,0.073618 +13.42953109741211,0.29,0.0,0.0,0.0,0.073618 +13.439636945724487,0.29,0.0,0.0,0.0,0.073618 +13.451781988143921,0.29,0.0,0.0,0.0,0.073618 +13.460227012634277,0.29,0.0,0.0,0.0,0.031066857 +13.470412969589233,0.29,0.0,0.0,0.0,0.031066857 +13.479573011398315,0.29999998,0.0,0.0,0.0,0.031066857 +13.490045070648193,0.29999998,0.0,0.0,0.0,0.031066857 +13.49948501586914,0.29999998,0.0,0.0,0.0,0.031066857 +13.509580135345459,0.29999998,0.0,0.0,0.0,0.038467064 +13.519410133361816,0.29999998,0.0,0.0,0.0,0.038467064 +13.52984094619751,0.29999998,0.0,0.0,0.0,0.038467064 +13.542346954345703,0.29999998,0.0,0.0,0.0,0.038467064 +13.551347970962524,0.29999998,0.0,0.0,0.0,0.038467064 +13.560334920883179,0.29999998,0.0,0.0,0.0,0.04401721 +13.56958794593811,0.29999998,0.0,0.0,0.0,0.04401721 +13.579721927642822,0.29999998,0.0,0.0,0.0,0.04401721 +13.589406967163086,0.29999998,0.0,0.0,0.0,0.04401721 +13.599486112594604,0.29999998,0.0,0.0,0.0,0.04401721 +13.60950493812561,0.29999998,0.0,0.0,0.0,0.042167164 +13.619426012039185,0.29999998,0.0,0.0,0.0,0.042167164 +13.629503011703491,0.29999998,0.0,0.0,0.0,0.042167164 +13.63947606086731,0.29999998,0.0,0.0,0.0,0.042167164 +13.650285005569458,0.29999998,0.0,0.0,0.0,0.042167164 +13.659570932388306,0.29999998,0.0,0.0,0.0,0.034766953 +13.66953992843628,0.29999998,0.0,0.0,0.0,0.034766953 +13.67939805984497,0.29999998,0.0,0.0,0.0,0.034766953 +13.689393043518066,0.29999998,0.0,0.0,0.0,0.034766953 +13.70036005973816,0.29999998,0.0,0.0,0.0,0.034766953 +13.71035099029541,0.29999998,0.0,0.0,0.0,0.034766953 +13.71939206123352,0.29999998,0.0,0.0,0.0,0.034766953 +13.72951602935791,0.29999998,0.0,0.0,0.0,0.034766953 +13.740232944488525,0.29999998,0.0,0.0,0.0,0.034766953 +13.749565124511719,0.29999998,0.0,0.0,0.0,0.034766953 +13.759496927261353,0.31,0.0,0.0,0.0,0.04031712 +13.773540019989014,0.31,0.0,0.0,0.0,0.04031712 +13.779757022857666,0.31,0.0,0.0,0.0,0.04031712 +13.791558980941772,0.31,0.0,0.0,0.0,0.04031712 +13.800226926803589,0.31,0.0,0.0,0.0,0.04031712 +13.809518098831177,0.31,0.0,0.0,0.0,0.053267453 +13.819425106048584,0.31,0.0,0.0,0.0,0.053267453 +13.829540967941284,0.31,0.0,0.0,0.0,0.053267453 +13.839527130126953,0.31,0.0,0.0,0.0,0.053267453 +13.850445985794067,0.31,0.0,0.0,0.0,0.053267453 +13.859462976455688,0.31,0.0,0.0,0.0,0.062517695 +13.869569063186646,0.31,0.0,0.0,0.0,0.062517695 +13.879761934280396,0.31,0.0,0.0,0.0,0.062517695 +13.889468908309937,0.31,0.0,0.0,0.0,0.062517695 +13.899830102920532,0.31,0.0,0.0,0.0,0.062517695 +13.9094979763031,0.32,0.0,0.0,0.0,0.08656834 +13.919469118118286,0.32,0.0,0.0,0.0,0.08656834 +13.929526090621948,0.32,0.0,0.0,0.0,0.08656834 +13.939391136169434,0.32,0.0,0.0,0.0,0.08656834 +13.949535131454468,0.32,0.0,0.0,0.0,0.08656834 +13.959542036056519,0.32,0.0,0.0,0.0,0.10876893 +13.972033023834229,0.32,0.0,0.0,0.0,0.10876893 +13.979753017425537,0.32,0.0,0.0,0.0,0.10876893 +13.98984408378601,0.32,0.0,0.0,0.0,0.10876893 +13.99953007698059,0.32,0.0,0.0,0.0,0.10876893 +14.009438037872314,0.32,0.0,0.0,0.0,0.15872025 +14.019431114196777,0.32,0.0,0.0,0.0,0.15872025 +14.029874086380005,0.32,0.0,0.0,0.0,0.15872025 +14.039417028427124,0.32,0.0,0.0,0.0,0.15872025 +14.052367925643921,0.32,0.0,0.0,0.0,0.15872025 +14.06027603149414,0.32,0.0,0.0,0.0,0.22717209 +14.07020092010498,0.32,0.0,0.0,0.0,0.22717209 +14.079559087753296,0.32,0.0,0.0,0.0,0.22717209 +14.08952808380127,0.32,0.0,0.0,0.0,0.22717209 +14.099426984786987,0.32,0.0,0.0,0.0,0.22717209 +14.109885931015015,0.32999998,0.0,0.0,0.0,0.24937265 +14.120719909667969,0.32999998,0.0,0.0,0.0,0.24937265 +14.129559993743896,0.32999998,0.0,0.0,0.0,0.24937265 +14.141446113586426,0.32999998,0.0,0.0,0.0,0.24937265 +14.15034294128418,0.32999998,0.0,0.0,0.0,0.24937265 +14.159562110900879,0.32999998,0.0,0.0,0.0,0.24197246 +14.170499086380005,0.32999998,0.0,0.0,0.0,0.24197246 +14.179533958435059,0.32999998,0.0,0.0,0.0,0.24197246 +14.189768075942993,0.32999998,0.0,0.0,0.0,0.24197246 +14.199563026428223,0.32999998,0.0,0.0,0.0,0.24197246 +14.210793018341064,0.32999998,0.0,0.0,0.0,0.19572124 +14.219458103179932,0.32999998,0.0,0.0,0.0,0.19572124 +14.229542970657349,0.32999998,0.0,0.0,0.0,0.19572124 +14.239506959915161,0.32999998,0.0,0.0,0.0,0.19572124 +14.251420021057129,0.32999998,0.0,0.0,0.0,0.19572124 +14.260231018066406,0.32999998,0.0,0.0,0.0,-0.16133824 +14.269742012023926,0.32999998,0.0,0.0,0.0,-0.16133824 +14.279555082321167,0.32999998,0.0,0.0,0.0,-0.16133824 +14.291841983795166,0.32999998,0.0,0.0,0.0,-0.16133824 +14.300370931625366,0.32999998,0.0,0.0,0.0,-0.16133824 +14.309859991073608,0.32999998,0.0,0.0,0.0,-0.40739474 +14.319463014602661,0.32999998,0.0,0.0,0.0,-0.40739474 +14.329554080963135,0.32999998,0.0,0.0,0.0,-0.40739474 +14.341903924942017,0.32999998,0.0,0.0,0.0,-0.40739474 +14.350937128067017,0.32999998,0.0,0.0,0.0,-0.40739474 +14.359414100646973,0.32999998,0.0,0.0,0.0,-0.4203451 +14.369549036026001,0.32999998,0.0,0.0,0.0,-0.4203451 +14.379784107208252,0.32999998,0.0,0.0,0.0,-0.4203451 +14.390239953994751,0.32999998,0.0,0.0,0.0,-0.4203451 +14.39938998222351,0.32,0.0,0.0,0.0,-0.4203451 +14.409475088119507,0.32,0.0,0.0,0.0,-0.35374334 +14.419481039047241,0.32,0.0,0.0,0.0,-0.35374334 +14.429511070251465,0.32,0.0,0.0,0.0,-0.35374334 +14.43939208984375,0.32,0.0,0.0,0.0,-0.35374334 +14.450204133987427,0.32,0.0,0.0,0.0,-0.35374334 +14.45953106880188,0.32,0.0,0.0,0.0,-0.20203933 +14.469494104385376,0.32,0.0,0.0,0.0,-0.20203933 +14.479489088058472,0.32,0.0,0.0,0.0,-0.20203933 +14.489452123641968,0.32,0.0,0.0,0.0,-0.20203933 +14.499452114105225,0.32,0.0,0.0,0.0,-0.20203933 +14.510843992233276,0.32999998,0.0,0.0,0.0,-0.11508702 +14.519410133361816,0.32999998,0.0,0.0,0.0,-0.11508702 +14.529865026473999,0.32999998,0.0,0.0,0.0,-0.11508702 +14.540339946746826,0.32999998,0.0,0.0,0.0,-0.11508702 +14.549561977386475,0.32999998,0.0,0.0,0.0,-0.11508702 +14.559478998184204,0.32999998,0.0,0.0,0.0,-0.09473648 +14.571044921875,0.32999998,0.0,0.0,0.0,-0.09473648 +14.579677104949951,0.32999998,0.0,0.0,0.0,-0.09473648 +14.589498043060303,0.32999998,0.0,0.0,0.0,-0.09473648 +14.599602937698364,0.32999998,0.0,0.0,0.0,-0.09473648 +14.609488010406494,0.34,0.0,0.0,0.0,-0.11693706 +14.619441986083984,0.34,0.0,0.0,0.0,-0.11693706 +14.629849910736084,0.34,0.0,0.0,0.0,-0.11693706 +14.639601945877075,0.34,0.0,0.0,0.0,-0.11693706 +14.649557113647461,0.34,0.0,0.0,0.0,-0.11693706 +14.661113977432251,0.34,0.0,0.0,0.0,-0.10768682 +14.670151948928833,0.34,0.0,0.0,0.0,-0.10768682 +14.679598093032837,0.34,0.0,0.0,0.0,-0.10768682 +14.691505908966064,0.34,0.0,0.0,0.0,-0.10768682 +14.69980502128601,0.34,0.0,0.0,0.0,-0.10768682 +14.710642099380493,0.35,0.0,0.0,0.0,-0.089186326 +14.719423055648804,0.35,0.0,0.0,0.0,-0.089186326 +14.729581117630005,0.35,0.0,0.0,0.0,-0.089186326 +14.739609956741333,0.35,0.0,0.0,0.0,-0.089186326 +14.751187086105347,0.35999998,0.0,0.0,0.0,-0.089186326 +14.759413957595825,0.35999998,0.0,0.0,0.0,-0.029984765 +14.77034592628479,0.35999998,0.0,0.0,0.0,-0.029984765 +14.779480934143066,0.37,0.0,0.0,0.0,-0.029984765 +14.791791915893555,0.37,0.0,0.0,0.0,-0.029984765 +14.799426078796387,0.38,0.0,0.0,0.0,-0.029984765 +14.809621095657349,0.38,0.0,0.0,0.0,0.031066857 +14.819431066513062,0.39,0.0,0.0,0.0,0.031066857 +14.829561948776245,0.39,0.0,0.0,0.0,0.031066857 +14.83961296081543,0.39999998,0.0,0.0,0.0,0.031066857 +14.84989595413208,0.39999998,0.0,0.0,0.0,0.031066857 +14.860707998275757,0.41,0.0,0.0,0.0,0.02921681 +14.87161898612976,0.41,0.0,0.0,0.0,0.02921681 +14.87942099571228,0.42,0.0,0.0,0.0,0.02921681 +14.889802932739258,0.42,0.0,0.0,0.0,0.02921681 +14.899393081665039,0.42,0.0,0.0,0.0,0.02921681 +14.909433126449585,0.42999998,0.0,0.0,0.0,0.068067834 +14.919450044631958,0.42999998,0.0,0.0,0.0,0.068067834 +14.929469108581543,0.44,0.0,0.0,0.0,0.068067834 +14.940355062484741,0.44,0.0,0.0,0.0,0.068067834 +14.949481010437012,0.45,0.0,0.0,0.0,0.068067834 +14.959434986114502,0.45,0.0,0.0,0.0,0.053267453 +14.969954013824463,0.45,0.0,0.0,0.0,0.053267453 +14.97950291633606,0.45999998,0.0,0.0,0.0,0.053267453 +14.989543914794922,0.45999998,0.0,0.0,0.0,0.053267453 +14.999390125274658,0.47,0.0,0.0,0.0,0.053267453 +15.009490013122559,0.47,0.0,0.0,0.0,0.021816617 +15.019470930099487,0.48,0.0,0.0,0.0,0.021816617 +15.029391050338745,0.48,0.0,0.0,0.0,0.021816617 +15.039598941802979,0.48,0.0,0.0,0.0,0.021816617 +15.04944896697998,0.48,0.0,0.0,0.0,0.021816617 +15.059392929077148,0.48999998,0.0,0.0,0.0,0.032916907 +15.070743083953857,0.48999998,0.0,0.0,0.0,0.032916907 +15.07943606376648,0.48999998,0.0,0.0,0.0,0.032916907 +15.090672969818115,0.48999998,0.0,0.0,0.0,0.032916907 +15.09945011138916,0.48999998,0.0,0.0,0.0,0.032916907 +15.109501123428345,0.48999998,0.0,0.0,0.0,0.042167164 +15.119445085525513,0.5,0.0,0.0,0.0,0.042167164 +15.129601001739502,0.5,0.0,0.0,0.0,0.042167164 +15.139456987380981,0.5,0.0,0.0,0.0,0.042167164 +15.151647090911865,0.5,0.0,0.0,0.0,0.042167164 +15.159421920776367,0.5,0.0,0.0,0.0,0.038467064 +15.169415950775146,0.51,0.0,0.0,0.0,0.038467064 +15.179871082305908,0.51,0.0,0.0,0.0,0.038467064 +15.189893960952759,0.51,0.0,0.0,0.0,0.038467064 +15.199635028839111,0.51,0.0,0.0,0.0,0.038467064 +15.209725141525269,0.51,0.0,0.0,0.0,0.038467064 +15.219418048858643,0.51,0.0,0.0,0.0,0.038467064 +15.22947096824646,0.51,0.0,0.0,0.0,0.038467064 +15.239444017410278,0.52,0.0,0.0,0.0,0.038467064 +15.249599933624268,0.52,0.0,0.0,0.0,0.038467064 +15.25951099395752,0.52,0.0,0.0,0.0,0.042167164 +15.269444942474365,0.52,0.0,0.0,0.0,0.042167164 +15.279437065124512,0.52,0.0,0.0,0.0,0.042167164 +15.289397954940796,0.52,0.0,0.0,0.0,0.042167164 +15.299525022506714,0.52,0.0,0.0,0.0,0.042167164 +15.309458017349243,0.53,0.0,0.0,0.0,0.04401721 +15.31939697265625,0.53,0.0,0.0,0.0,0.04401721 +15.32938814163208,0.53,0.0,0.0,0.0,0.04401721 +15.340389966964722,0.53,0.0,0.0,0.0,0.04401721 +15.349390983581543,0.53999996,0.0,0.0,0.0,0.04401721 +15.359403133392334,0.53999996,0.0,0.0,0.0,0.04031712 +15.370331048965454,0.53999996,0.0,0.0,0.0,0.04031712 +15.37940502166748,0.53999996,0.0,0.0,0.0,0.04031712 +15.389433145523071,0.55,0.0,0.0,0.0,0.04031712 +15.399444103240967,0.55,0.0,0.0,0.0,0.04031712 +15.409398078918457,0.56,0.0,0.0,0.0,0.049567357 +15.419456958770752,0.56,0.0,0.0,0.0,0.049567357 +15.429388046264648,0.56,0.0,0.0,0.0,0.049567357 +15.439439058303833,0.57,0.0,0.0,0.0,0.049567357 +15.449434041976929,0.57,0.0,0.0,0.0,0.049567357 +15.45985198020935,0.57,0.0,0.0,0.0,0.042167164 +15.469550132751465,0.58,0.0,0.0,0.0,0.042167164 +15.47950005531311,0.58,0.0,0.0,0.0,0.042167164 +15.489565134048462,0.58,0.0,0.0,0.0,0.042167164 +15.499576091766357,0.59,0.0,0.0,0.0,0.042167164 +15.510481119155884,0.59,0.0,0.0,0.0,0.034766953 +15.519459962844849,0.59,0.0,0.0,0.0,0.034766953 +15.52944803237915,0.59,0.0,0.0,0.0,0.034766953 +15.539427995681763,0.59999996,0.0,0.0,0.0,0.034766953 +15.549422025680542,0.59999996,0.0,0.0,0.0,0.034766953 +15.559447050094604,0.59999996,0.0,0.0,0.0,0.04031712 +15.570888042449951,0.59999996,0.0,0.0,0.0,0.04031712 +15.579446077346802,0.61,0.0,0.0,0.0,0.04031712 +15.589432954788208,0.61,0.0,0.0,0.0,0.04031712 +15.59952712059021,0.62,0.0,0.0,0.0,0.04031712 +15.61008906364441,0.62,0.0,0.0,0.0,0.038467064 +15.619436979293823,0.62,0.0,0.0,0.0,0.038467064 +15.62941598892212,0.62,0.0,0.0,0.0,0.038467064 +15.639441967010498,0.63,0.0,0.0,0.0,0.038467064 +15.650012016296387,0.63,0.0,0.0,0.0,0.038467064 +15.659440040588379,0.63,0.0,0.0,0.0,0.0551175 +15.66995096206665,0.63,0.0,0.0,0.0,0.0551175 +15.679476976394653,0.63,0.0,0.0,0.0,0.0551175 +15.689455032348633,0.63,0.0,0.0,0.0,0.0551175 +15.69995403289795,0.64,0.0,0.0,0.0,0.0551175 +15.709447145462036,0.64,0.0,0.0,0.0,0.04401721 +15.719449996948242,0.64,0.0,0.0,0.0,0.04401721 +15.729429960250854,0.64,0.0,0.0,0.0,0.04401721 +15.740248918533325,0.65,0.0,0.0,0.0,0.04401721 +15.749392986297607,0.65,0.0,0.0,0.0,0.04401721 +15.75962495803833,0.65,0.0,0.0,0.0,0.04031712 +15.769451141357422,0.65,0.0,0.0,0.0,0.04031712 +15.77991795539856,0.65,0.0,0.0,0.0,0.04031712 +15.789434909820557,0.65999997,0.0,0.0,0.0,0.04031712 +15.799402952194214,0.65999997,0.0,0.0,0.0,0.04031712 +15.809404134750366,0.65999997,0.0,0.0,0.0,0.023666665 +15.819473028182983,0.65999997,0.0,0.0,0.0,0.023666665 +15.830477952957153,0.65999997,0.0,0.0,0.0,0.023666665 +15.839508056640625,0.65999997,0.0,0.0,0.0,0.023666665 +15.849513053894043,0.65999997,0.0,0.0,0.0,0.023666665 +15.8594651222229,0.65999997,0.0,0.0,0.0,0.04586726 +15.869549036026001,0.65999997,0.0,0.0,0.0,0.04586726 +15.879507064819336,0.65999997,0.0,0.0,0.0,0.04586726 +15.889411926269531,0.66999996,0.0,0.0,0.0,0.04586726 +15.900429964065552,0.66999996,0.0,0.0,0.0,0.04586726 +15.911669969558716,0.66999996,0.0,0.0,0.0,0.042167164 +15.91950011253357,0.66999996,0.0,0.0,0.0,0.042167164 +15.929431915283203,0.66999996,0.0,0.0,0.0,0.042167164 +15.940138101577759,0.66999996,0.0,0.0,0.0,0.042167164 +15.94947099685669,0.66999996,0.0,0.0,0.0,0.042167164 +15.959571123123169,0.66999996,0.0,0.0,0.0,0.068067834 +15.969589948654175,0.66999996,0.0,0.0,0.0,0.068067834 +15.979398012161255,0.66999996,0.0,0.0,0.0,0.068067834 +15.989475965499878,0.66999996,0.0,0.0,0.0,0.068067834 +15.999480962753296,0.68,0.0,0.0,0.0,0.068067834 +16.01043200492859,0.68,0.0,0.0,0.0,0.06066765 +16.019400119781494,0.68,0.0,0.0,0.0,0.06066765 +16.029480934143066,0.69,0.0,0.0,0.0,0.06066765 +16.039626121520996,0.69,0.0,0.0,0.0,0.06066765 +16.050461053848267,0.69,0.0,0.0,0.0,0.06066765 +16.059468984603882,0.7,0.0,0.0,0.0,0.08101819 +16.07406497001648,0.7,0.0,0.0,0.0,0.08101819 +16.079493045806885,0.7,0.0,0.0,0.0,0.08101819 +16.092082023620605,0.7,0.0,0.0,0.0,0.08101819 +16.100456953048706,0.7,0.0,0.0,0.0,0.08101819 +16.109501123428345,0.7,0.0,0.0,0.0,0.068067834 +16.119516134262085,0.7,0.0,0.0,0.0,0.068067834 +16.12956213951111,0.7,0.0,0.0,0.0,0.068067834 +16.139509916305542,0.7,0.0,0.0,0.0,0.068067834 +16.149474143981934,0.7,0.0,0.0,0.0,0.068067834 +16.159630060195923,0.7,0.0,0.0,0.0,0.068067834 +16.172390937805176,0.7,0.0,0.0,0.0,0.068067834 +16.179826021194458,0.71,0.0,0.0,0.0,0.068067834 +16.190228939056396,0.71,0.0,0.0,0.0,0.068067834 +16.199513912200928,0.71,0.0,0.0,0.0,0.068067834 +16.209469079971313,0.71,0.0,0.0,0.0,0.08471829 +16.219609022140503,0.71,0.0,0.0,0.0,0.08471829 +16.229450941085815,0.71,0.0,0.0,0.0,0.08471829 +16.239503145217896,0.71,0.0,0.0,0.0,0.08471829 +16.250922918319702,0.71,0.0,0.0,0.0,0.08471829 +16.261465072631836,0.71,0.0,0.0,0.0,0.049567357 +16.270364999771118,0.71999997,0.0,0.0,0.0,0.049567357 +16.279519081115723,0.71999997,0.0,0.0,0.0,0.049567357 +16.289634943008423,0.71999997,0.0,0.0,0.0,0.049567357 +16.299597024917603,0.71999997,0.0,0.0,0.0,0.049567357 +16.30952000617981,0.71999997,0.0,0.0,0.0,0.073618 +16.31956911087036,0.71999997,0.0,0.0,0.0,0.073618 +16.329445123672485,0.71999997,0.0,0.0,0.0,0.073618 +16.33952498435974,0.72999996,0.0,0.0,0.0,0.073618 +16.350522994995117,0.72999996,0.0,0.0,0.0,0.073618 +16.359530925750732,0.72999996,0.0,0.0,0.0,0.04586726 +16.371015071868896,0.72999996,0.0,0.0,0.0,0.04586726 +16.379980087280273,0.72999996,0.0,0.0,0.0,0.04586726 +16.38969612121582,0.72999996,0.0,0.0,0.0,0.04586726 +16.399549961090088,0.72999996,0.0,0.0,0.0,0.04586726 +16.409593105316162,0.72999996,0.0,0.0,0.0,0.021816617 +16.419490098953247,0.72999996,0.0,0.0,0.0,0.021816617 +16.429404973983765,0.71999997,0.0,0.0,0.0,0.021816617 +16.43952512741089,0.71999997,0.0,0.0,0.0,0.021816617 +16.45282793045044,0.71999997,0.0,0.0,0.0,0.021816617 +16.461838960647583,0.71999997,0.0,0.0,0.0,0.0014660703 +16.469512939453125,0.71999997,0.0,0.0,0.0,0.0014660703 +16.479521989822388,0.71999997,0.0,0.0,0.0,0.0014660703 +16.489511013031006,0.71999997,0.0,0.0,0.0,0.0014660703 +16.49940013885498,0.71999997,0.0,0.0,0.0,0.0014660703 +16.51034903526306,0.71999997,0.0,0.0,0.0,0.010716328 +16.519604921340942,0.71999997,0.0,0.0,0.0,0.010716328 +16.52945613861084,0.71999997,0.0,0.0,0.0,0.010716328 +16.540400981903076,0.71999997,0.0,0.0,0.0,0.010716328 +16.550868034362793,0.71999997,0.0,0.0,0.0,0.010716328 +16.5595440864563,0.71,0.0,0.0,0.0,-0.0040840744 +16.570073127746582,0.71,0.0,0.0,0.0,-0.0040840744 +16.579512119293213,0.71,0.0,0.0,0.0,-0.0040840744 +16.58957004547119,0.71,0.0,0.0,0.0,-0.0040840744 +16.59955596923828,0.71,0.0,0.0,0.0,-0.0040840744 +16.609535932540894,0.71,0.0,0.0,0.0,0.019966569 +16.619493007659912,0.7,0.0,0.0,0.0,0.019966569 +16.629482984542847,0.7,0.0,0.0,0.0,0.019966569 +16.639559030532837,0.7,0.0,0.0,0.0,0.019966569 +16.649523973464966,0.71,0.0,0.0,0.0,0.019966569 +16.660184144973755,0.71,0.0,0.0,0.0,0.027366763 +16.669417142868042,0.71,0.0,0.0,0.0,0.027366763 +16.67961812019348,0.71,0.0,0.0,0.0,0.027366763 +16.68952512741089,0.71,0.0,0.0,0.0,0.027366763 +16.69942307472229,0.71,0.0,0.0,0.0,0.027366763 +16.714426040649414,0.71,0.0,0.0,0.0,0.034766953 +16.71954607963562,0.71,0.0,0.0,0.0,0.034766953 +16.729470014572144,0.71,0.0,0.0,0.0,0.034766953 +16.739470958709717,0.71,0.0,0.0,0.0,0.034766953 +16.750494956970215,0.71,0.0,0.0,0.0,0.034766953 +16.75954294204712,0.71,0.0,0.0,0.0,0.04586726 +16.7695050239563,0.71,0.0,0.0,0.0,0.04586726 +16.780022144317627,0.71,0.0,0.0,0.0,0.04586726 +16.794310092926025,0.71,0.0,0.0,0.0,0.04586726 +16.799551010131836,0.71,0.0,0.0,0.0,0.04586726 +16.813651084899902,0.71,0.0,0.0,0.0,0.034766953 +16.819392919540405,0.71,0.0,0.0,0.0,0.034766953 +16.829467058181763,0.71,0.0,0.0,0.0,0.034766953 +16.839564085006714,0.71,0.0,0.0,0.0,0.034766953 +16.849553108215332,0.71,0.0,0.0,0.0,0.034766953 +16.859540939331055,0.71,0.0,0.0,0.0,0.04401721 +16.876003980636597,0.71,0.0,0.0,0.0,0.04401721 +16.87958312034607,0.71,0.0,0.0,0.0,0.04401721 +16.893810987472534,0.71,0.0,0.0,0.0,0.04401721 +16.89945697784424,0.7,0.0,0.0,0.0,0.04401721 +16.909559965133667,0.7,0.0,0.0,0.0,0.034766953 +16.91946506500244,0.7,0.0,0.0,0.0,0.034766953 +16.929446935653687,0.7,0.0,0.0,0.0,0.034766953 +16.93956708908081,0.71,0.0,0.0,0.0,0.034766953 +16.9495370388031,0.71,0.0,0.0,0.0,0.034766953 +16.959567070007324,0.71,0.0,0.0,0.0,0.077318095 +16.96957492828369,0.71,0.0,0.0,0.0,0.077318095 +16.980021953582764,0.71,0.0,0.0,0.0,0.077318095 +16.989588022232056,0.71,0.0,0.0,0.0,0.077318095 +16.99958896636963,0.71,0.0,0.0,0.0,0.077318095 +17.009586095809937,0.71,0.0,0.0,0.0,0.06066765 +17.01954698562622,0.71,0.0,0.0,0.0,0.06066765 +17.029463052749634,0.71,0.0,0.0,0.0,0.06066765 +17.03961706161499,0.71,0.0,0.0,0.0,0.06066765 +17.051032066345215,0.71,0.0,0.0,0.0,0.06066765 +17.061849117279053,0.71,0.0,0.0,0.0,0.049567357 +17.071954011917114,0.71,0.0,0.0,0.0,0.049567357 +17.07959508895874,0.71,0.0,0.0,0.0,0.049567357 +17.089746952056885,0.71,0.0,0.0,0.0,0.049567357 +17.09946608543396,0.71,0.0,0.0,0.0,0.049567357 +17.110820055007935,0.71,0.0,0.0,0.0,0.0551175 +17.119580030441284,0.71,0.0,0.0,0.0,0.0551175 +17.12939691543579,0.71,0.0,0.0,0.0,0.0551175 +17.14320206642151,0.71999997,0.0,0.0,0.0,0.0551175 +17.1495840549469,0.71999997,0.0,0.0,0.0,0.0551175 +17.15961003303528,0.71999997,0.0,0.0,0.0,0.06621779 +17.16957712173462,0.71999997,0.0,0.0,0.0,0.06621779 +17.179412126541138,0.71999997,0.0,0.0,0.0,0.06621779 +17.189918041229248,0.71999997,0.0,0.0,0.0,0.06621779 +17.19960594177246,0.71999997,0.0,0.0,0.0,0.06621779 +17.209875106811523,0.71999997,0.0,0.0,0.0,0.10876893 +17.219568014144897,0.71999997,0.0,0.0,0.0,0.10876893 +17.22958993911743,0.71999997,0.0,0.0,0.0,0.10876893 +17.239601135253906,0.71,0.0,0.0,0.0,0.10876893 +17.249580144882202,0.71,0.0,0.0,0.0,0.10876893 +17.25955104827881,0.71,0.0,0.0,0.0,0.093968526 +17.27288794517517,0.71,0.0,0.0,0.0,0.093968526 +17.27961301803589,0.71,0.0,0.0,0.0,0.093968526 +17.290859937667847,0.71,0.0,0.0,0.0,0.093968526 +17.29947304725647,0.71,0.0,0.0,0.0,0.093968526 +17.309427976608276,0.71,0.0,0.0,0.0,0.10876893 +17.319544076919556,0.71,0.0,0.0,0.0,0.10876893 +17.329473972320557,0.71,0.0,0.0,0.0,0.10876893 +17.339592933654785,0.71,0.0,0.0,0.0,0.10876893 +17.35379409790039,0.71,0.0,0.0,0.0,0.10876893 +17.359606981277466,0.7,0.0,0.0,0.0,0.12726942 +17.370413064956665,0.7,0.0,0.0,0.0,0.12726942 +17.37962293624878,0.7,0.0,0.0,0.0,0.12726942 +17.389759063720703,0.69,0.0,0.0,0.0,0.12726942 +17.3995680809021,0.68,0.0,0.0,0.0,0.12726942 +17.409459114074707,0.68,0.0,0.0,0.0,0.10506884 +17.419506072998047,0.66999996,0.0,0.0,0.0,0.10506884 +17.429399013519287,0.65999997,0.0,0.0,0.0,0.10506884 +17.439620971679688,0.65999997,0.0,0.0,0.0,0.10506884 +17.449496030807495,0.65,0.0,0.0,0.0,0.10506884 +17.4617121219635,0.65,0.0,0.0,0.0,0.073618 +17.47068500518799,0.65,0.0,0.0,0.0,0.073618 +17.479619026184082,0.64,0.0,0.0,0.0,0.073618 +17.48939299583435,0.64,0.0,0.0,0.0,0.073618 +17.499490976333618,0.64,0.0,0.0,0.0,0.073618 +17.50945210456848,0.63,0.0,0.0,0.0,0.073618 +17.519649982452393,0.63,0.0,0.0,0.0,0.073618 +17.533637046813965,0.63,0.0,0.0,0.0,0.073618 +17.542521953582764,0.63,0.0,0.0,0.0,0.073618 +17.5516140460968,0.62,0.0,0.0,0.0,0.073618 +17.5593900680542,0.62,0.0,0.0,0.0,0.08656834 +17.56959891319275,0.62,0.0,0.0,0.0,0.08656834 +17.57948899269104,0.62,0.0,0.0,0.0,0.08656834 +17.589620113372803,0.62,0.0,0.0,0.0,0.08656834 +17.599390029907227,0.62,0.0,0.0,0.0,0.08656834 +17.613795042037964,0.62,0.0,0.0,0.0,0.06436774 +17.61950397491455,0.62,0.0,0.0,0.0,0.06436774 +17.629498958587646,0.62,0.0,0.0,0.0,0.06436774 +17.639393091201782,0.62,0.0,0.0,0.0,0.06436774 +17.649630069732666,0.62,0.0,0.0,0.0,0.06436774 +17.65938901901245,0.61,0.0,0.0,0.0,0.077318095 +17.66953206062317,0.61,0.0,0.0,0.0,0.077318095 +17.67940592765808,0.59999996,0.0,0.0,0.0,0.077318095 +17.689661026000977,0.59999996,0.0,0.0,0.0,0.077318095 +17.69938898086548,0.59,0.0,0.0,0.0,0.077318095 +17.711381912231445,0.57,0.0,0.0,0.0,0.04586726 +17.719526052474976,0.56,0.0,0.0,0.0,0.04586726 +17.729478120803833,0.55,0.0,0.0,0.0,0.04586726 +17.739409923553467,0.53999996,0.0,0.0,0.0,0.04586726 +17.74947690963745,0.53,0.0,0.0,0.0,0.04586726 +17.75940203666687,0.52,0.0,0.0,0.0,0.0033161184 +17.769410133361816,0.51,0.0,0.0,0.0,0.0033161184 +17.779401063919067,0.5,0.0,0.0,0.0,0.0033161184 +17.789401054382324,0.48,0.0,0.0,0.0,0.0033161184 +17.799418926239014,0.47,0.0,0.0,0.0,0.0033161184 +17.809406995773315,0.45,0.0,0.0,0.0,0.04031712 +17.819541931152344,0.44,0.0,0.0,0.0,0.04031712 +17.82946801185608,0.42,0.0,0.0,0.0,0.04031712 +17.839404106140137,0.39,0.0,0.0,0.0,0.04031712 +17.84940505027771,0.37,0.0,0.0,0.0,0.04031712 +17.859408140182495,0.35,0.0,0.0,0.0,0.053267453 +17.869436025619507,0.32,0.0,0.0,0.0,0.053267453 +17.879398107528687,0.29999998,0.0,0.0,0.0,0.053267453 +17.889421939849854,0.28,0.0,0.0,0.0,0.053267453 +17.899506092071533,0.26,2.2727273,2.2727273,0.0,0.053267453 +17.90939712524414,0.24,5.3030305,5.3030305,0.0,0.05696755 +17.91949701309204,0.22,9.090909,9.090909,0.0,0.05696755 +17.92948007583618,0.21,13.636364,13.636364,0.0,0.05696755 +17.939404010772705,0.19,18.939394,18.939394,0.037488285,0.05696755 +17.94940996170044,0.17999999,23.484848,23.484848,0.046860356,0.05696755 +17.9596209526062,0.16,28.030302,28.030302,0.046860356,0.07546805 +17.96942901611328,0.14999999,31.818182,31.818182,0.07497657,0.07546805 +17.979435920715332,0.14,36.363636,36.363636,0.09372071,0.07546805 +17.989404916763306,0.13,42.424244,42.424244,0.11246486,0.07546805 +17.999424934387207,0.11,48.484848,48.484848,0.11246486,0.07546805 +18.00942301750183,0.099999994,53.78788,53.78788,0.131209,0.05696755 +18.019524097442627,0.089999996,57.57576,57.57576,0.15932521,0.05696755 +18.029417037963867,0.08,62.121212,62.121212,0.17806935,0.05696755 +18.039443016052246,0.07,67.42425,67.42425,0.17806935,0.05696755 +18.04943299293518,0.07,62.121212,62.121212,0.18744142,0.05696755 +18.059446096420288,0.06,46.21212,46.21212,0.21555763,0.06066765 +18.069447994232178,0.049999997,31.818182,31.818182,0.22492972,0.06066765 +18.079416036605835,0.04,20.454544,20.454544,0.22492972,0.06066765 +18.089426040649414,0.03,24.242424,24.242424,0.23430179,0.06066765 +18.099420070648193,0.03,33.333336,33.333336,0.262418,0.06066765 +18.109580993652344,0.02,41.666668,41.666668,0.27179006,0.031066857 +18.119513034820557,0.02,50.757576,50.757576,0.27179006,0.031066857 +18.129488945007324,0.01,56.818184,56.818184,0.28116214,0.031066857 +18.13943314552307,0.0,63.636364,63.636364,0.2905342,0.031066857 +18.149434089660645,0.0,68.93939,68.93939,0.29990628,0.031066857 +18.159443140029907,0.0,63.636364,63.636364,0.29990628,0.04031712 +18.16942811012268,0.0,59.090908,59.090908,0.30927837,0.04031712 +18.17943000793457,0.0,55.30303,55.30303,0.31865042,0.04031712 +18.189433097839355,0.0,51.515152,51.515152,0.3280225,0.04031712 +18.1994731426239,0.0,50.0,50.0,0.3280225,0.04031712 +18.209444046020508,0.0,50.757576,50.757576,0.33739457,0.032916907 +18.219543933868408,0.0,53.030304,53.030304,0.3655108,0.032916907 +18.229530096054077,0.0,55.30303,55.30303,0.37488285,0.032916907 +18.239567041397095,0.0,57.57576,57.57576,0.37488285,0.032916907 +18.249442100524902,0.0,58.333332,58.333332,0.38425493,0.032916907 +18.259429931640625,0.0,59.848484,59.848484,0.393627,0.038467064 +18.26946496963501,0.0,62.878788,62.878788,0.393627,0.038467064 +18.279441118240356,0.0,65.90909,65.90909,0.393627,0.038467064 +18.28946614265442,0.0,68.93939,68.93939,0.40299907,0.038467064 +18.299521923065186,0.0,71.21212,71.21212,0.41237113,0.038467064 +18.30944800376892,0.0,71.969696,71.969696,0.4217432,0.034766953 +18.319638967514038,0.0,72.72727,72.72727,0.4217432,0.034766953 +18.329608917236328,0.0,74.24243,74.24243,0.4217432,0.034766953 +18.339450120925903,0.0,76.51515,76.51515,0.43111527,0.034766953 +18.349451065063477,0.0,78.030304,78.030304,0.43111527,0.034766953 +18.359471082687378,0.0,78.030304,78.030304,0.43111527,0.04031712 +18.369446992874146,0.0,77.27273,77.27273,0.44048735,0.04031712 +18.37946605682373,0.0,75.757576,75.757576,0.44048735,0.04031712 +18.38945698738098,0.0,74.24243,74.24243,0.44985944,0.04031712 +18.399583101272583,0.0,72.72727,72.72727,0.44985944,0.04031712 +18.409471035003662,0.0,71.969696,71.969696,0.44048735,-0.10768682 +18.419641971588135,0.0,69.69697,69.69697,0.43111527,-0.10768682 +18.429469108581543,0.0,66.66667,66.66667,0.43111527,-0.10768682 +18.43950891494751,0.0,63.636364,63.636364,0.43111527,-0.10768682 +18.44942307472229,0.0,61.363636,61.363636,0.43111527,-0.10768682 +18.459460020065308,0.0,59.848484,59.848484,0.4217432,0.02921681 +18.46946406364441,0.0,57.57576,57.57576,0.41237113,0.02921681 +18.479457139968872,0.0,54.545456,54.545456,0.41237113,0.02921681 +18.489568948745728,0.0,50.757576,50.757576,0.4217432,0.02921681 +18.49945092201233,0.0,46.969696,46.969696,0.40299907,0.02921681 +18.509459972381592,0.0,43.939392,43.939392,0.41237113,0.04401721 +18.519526958465576,0.0,40.90909,40.90909,0.41237113,0.04401721 +18.529500007629395,0.0,38.636364,38.636364,0.40299907,0.04401721 +18.539469003677368,0.0,34.848484,34.848484,0.393627,0.04401721 +18.549477100372314,0.0,31.060606,31.060606,0.393627,0.04401721 +18.559473991394043,0.0,25.757576,25.757576,0.393627,0.032916907 +18.569469928741455,0.0,22.727274,22.727274,0.393627,0.032916907 +18.579491138458252,0.0,23.484848,23.484848,0.38425493,0.032916907 +18.589481115341187,0.0,28.030302,28.030302,0.38425493,0.032916907 +18.59945797920227,0.0,31.818182,31.818182,0.38425493,0.032916907 +18.609484910964966,0.0,34.848484,34.848484,0.37488285,0.0551175 +18.619548082351685,0.0,37.121216,37.121216,0.37488285,0.0551175 +18.62952208518982,0.0,40.151516,40.151516,0.38425493,0.0551175 +18.63947296142578,0.0,43.181816,43.181816,0.38425493,0.0551175 +18.649492025375366,0.0,46.21212,46.21212,0.38425493,0.0551175 +18.659472942352295,0.0,50.0,50.0,0.37488285,0.0551175 +18.669476985931396,0.0,53.030304,53.030304,0.37488285,0.0551175 +18.67947292327881,0.0,55.30303,55.30303,0.37488285,0.0551175 +18.68947696685791,0.0,56.818184,56.818184,0.37488285,0.0551175 +18.699578046798706,0.0,59.090908,59.090908,0.3655108,0.0551175 +18.709496021270752,0.0,62.121212,62.121212,0.3655108,0.051417407 +18.71953797340393,0.0,65.90909,65.90909,0.3655108,0.051417407 +18.72966694831848,0.0,68.18182,68.18182,0.3655108,0.051417407 +18.739488124847412,0.0,64.393936,64.393936,0.3655108,0.051417407 +18.749501943588257,0.0,59.090908,59.090908,0.3655108,0.051417407 +18.759552001953125,0.0,55.30303,55.30303,0.3655108,0.049567357 +18.769488096237183,0.0,53.78788,53.78788,0.3561387,0.049567357 +18.77950406074524,0.0,53.030304,53.030304,0.3655108,0.049567357 +18.789497137069702,0.0,53.78788,53.78788,0.37488285,0.049567357 +18.799499034881592,0.0,53.78788,53.78788,0.37488285,0.049567357 +18.80947709083557,0.0,54.545456,54.545456,0.37488285,0.031066857 +18.819555044174194,0.0,55.30303,55.30303,0.38425493,0.031066857 +18.829503059387207,0.0,57.57576,57.57576,0.38425493,0.031066857 +18.839493989944458,0.0,61.363636,61.363636,0.38425493,0.031066857 +18.84962511062622,0.0,65.15151,65.15151,0.40299907,0.031066857 +18.859503984451294,0.0,69.69697,69.69697,0.41237113,0.01811652 +18.869489908218384,0.0,74.24243,74.24243,0.4217432,0.01811652 +18.879630088806152,0.0,77.27273,77.27273,0.4217432,0.01811652 +18.88950204849243,0.0,80.30303,80.30303,0.4217432,0.01811652 +18.899501085281372,0.0,83.333336,83.333336,0.44048735,0.01811652 +18.909568071365356,0.0,87.12121,87.12121,0.44048735,-0.015184363 +18.91960906982422,0.0,90.909096,90.909096,0.44048735,-0.015184363 +18.92951798439026,0.0,93.93939,93.93939,0.44985944,-0.015184363 +18.939412117004395,0.0,95.454544,95.454544,0.44048735,-0.015184363 +18.949501991271973,0.0,96.21212,96.21212,0.44985944,-0.015184363 +18.95951509475708,0.0,96.21212,96.21212,0.44985944,-0.00038397792 +18.969633102416992,0.0,96.21212,96.21212,0.44985944,-0.00038397792 +18.979510068893433,0.0,97.72728,97.72728,0.44985944,-0.00038397792 +18.98952603340149,0.0,100.0,100.0,0.4592315,-0.00038397792 +18.9995059967041,0.0,102.27273,102.27273,0.4592315,-0.00038397792 +19.00958514213562,0.0,104.54545,104.54545,0.46860358,0.0014660703 +19.019531965255737,0.0,106.06061,106.06061,0.47797564,0.0014660703 +19.029518127441406,0.0,106.818184,106.818184,0.46860358,0.0014660703 +19.03951096534729,0.0,107.57576,107.57576,0.46860358,0.0014660703 +19.049509048461914,0.0,109.09091,109.09091,0.47797564,0.0014660703 +19.059509992599487,0.0,111.36363,111.36363,0.47797564,-0.002234026 +19.069512128829956,0.0,114.39394,114.39394,0.46860358,-0.002234026 +19.07951807975769,0.0,116.666664,116.666664,0.46860358,-0.002234026 +19.089514017105103,0.0,118.93939,118.93939,0.47797564,-0.002234026 +19.099581956863403,0.0,119.69697,119.69697,0.48734772,-0.002234026 +19.109523057937622,0.0,120.454544,120.454544,0.48734772,-0.015184363 +19.119539976119995,0.0,121.969696,121.969696,0.48734772,-0.015184363 +19.12952494621277,0.0,124.242424,124.242424,0.48734772,-0.015184363 +19.139522075653076,0.0,126.51515,126.51515,0.48734772,-0.015184363 +19.149537086486816,0.0,130.30302,130.30302,0.48734772,-0.015184363 +19.159519910812378,0.0,134.09091,134.09091,0.48734772,0.0014660703 +19.16952610015869,0.0,137.87878,137.87878,0.49671978,0.0014660703 +19.179542064666748,0.0,140.90909,140.90909,0.50609183,0.0014660703 +19.18953514099121,0.0,143.93939,143.93939,0.50609183,0.0014660703 +19.199533939361572,0.0,148.48486,148.48486,0.50609183,0.0014660703 +19.20952296257019,0.0,152.27274,152.27274,0.50609183,-0.024434604 +19.21952795982361,0.0,157.57576,157.57576,0.524836,-0.024434604 +19.229536056518555,0.0,162.1212,162.1212,0.524836,-0.024434604 +19.23953604698181,0.0,165.9091,165.9091,0.524836,-0.024434604 +19.249541997909546,0.0,168.93939,168.93939,0.524836,-0.024434604 +19.259541034698486,0.0,170.45454,170.45454,0.53420806,-0.0040840744 +19.269431114196777,0.0,170.45454,170.45454,0.5435801,-0.0040840744 +19.279550075531006,0.0,168.93939,168.93939,0.5435801,-0.0040840744 +19.289536952972412,0.0,166.66667,166.66667,0.5435801,-0.0040840744 +19.29952907562256,0.0,162.1212,162.1212,0.5435801,-0.0040840744 +19.30955410003662,0.0,155.30302,155.30302,0.5435801,0.0070162313 +19.319545030593872,0.0,145.45454,145.45454,0.5435801,0.0070162313 +19.329474925994873,0.0,134.8485,134.8485,0.524836,0.0070162313 +19.33954691886902,0.0,122.72727,122.72727,0.49671978,0.0070162313 +19.34953212738037,0.0,109.84849,109.84849,0.47797564,0.0070162313 +19.35953712463379,0.0,95.454544,95.454544,0.47797564,-0.022584556 +19.369553089141846,0.0,84.09091,84.09091,0.44048735,-0.022584556 +19.379552125930786,0.0,71.969696,71.969696,0.393627,-0.022584556 +19.389554977416992,0.0,60.606064,60.606064,0.3561387,-0.022584556 +19.399539947509766,0.0,49.242424,49.242424,0.3561387,-0.022584556 +19.409560918807983,0.0,40.151516,40.151516,0.31865042,-0.050335295 +19.41959810256958,0.0,30.303032,30.303032,0.27179006,-0.050335295 +19.429451942443848,0.0,21.212122,21.212122,0.25304592,-0.050335295 +19.43958306312561,0.01,18.181818,18.181818,0.25304592,-0.050335295 +19.449567079544067,0.02,16.666668,16.666668,0.22492972,-0.050335295 +19.459551095962524,0.02,15.909091,15.909091,0.20618556,-0.041085053 +19.46956992149353,0.03,15.151516,15.151516,0.1968135,-0.041085053 +19.47955298423767,0.03,15.151516,15.151516,0.1968135,-0.041085053 +19.48957109451294,0.03,16.666668,16.666668,0.18744142,-0.041085053 +19.499550104141235,0.03,17.424242,17.424242,0.18744142,-0.041085053 +19.50956702232361,0.03,18.939394,18.939394,0.1968135,-0.0577355 +19.519416093826294,0.04,21.212122,21.212122,0.1968135,-0.0577355 +19.529412031173706,0.04,24.242424,24.242424,0.1968135,-0.0577355 +19.539587020874023,0.04,29.545454,29.545454,0.20618556,-0.0577355 +19.549576997756958,0.03,34.848484,34.848484,0.21555763,-0.0577355 +19.559561014175415,0.03,41.666668,41.666668,0.21555763,-0.10028662 +19.569579124450684,0.03,46.969696,46.969696,0.21555763,-0.10028662 +19.57956314086914,0.02,52.272724,52.272724,0.23430179,-0.10028662 +19.589585065841675,0.02,57.57576,57.57576,0.23430179,-0.10028662 +19.59957504272461,0.01,61.363636,61.363636,0.23430179,-0.10028662 +19.609575033187866,0.0,63.636364,63.636364,0.24367386,-0.12618731 +19.619406938552856,0.0,65.90909,65.90909,0.25304592,-0.12618731 +19.629574060440063,0.0,68.18182,68.18182,0.25304592,-0.12618731 +19.639572143554688,0.0,63.636364,63.636364,0.25304592,-0.12618731 +19.649562120437622,0.0,58.333332,58.333332,0.25304592,-0.12618731 +19.659610986709595,0.0,53.030304,53.030304,0.24367386,-0.15393804 +19.669568061828613,0.0,48.484848,48.484848,0.25304592,-0.15393804 +19.67956805229187,0.0,43.939392,43.939392,0.25304592,-0.15393804 +19.6895649433136,0.0,39.39394,39.39394,0.25304592,-0.15393804 +19.69956612586975,0.0,34.09091,34.09091,0.25304592,-0.15393804 +19.70940613746643,0.0,28.78788,28.78788,0.262418,-0.2390403 +19.71958613395691,0.0,21.969696,21.969696,0.262418,-0.2390403 +19.72958493232727,0.0,20.454544,20.454544,0.27179006,-0.2390403 +19.73956608772278,0.0,20.454544,20.454544,0.262418,-0.2390403 +19.74957799911499,0.0,19.69697,19.69697,0.25304592,-0.2390403 +19.759598970413208,0.0,18.181818,18.181818,0.25304592,-0.2760413 +19.76956295967102,0.0,17.424242,17.424242,0.23430179,-0.2760413 +19.779577016830444,0.0,15.909091,15.909091,0.21555763,-0.2760413 +19.789602041244507,0.0,14.39394,14.39394,0.1968135,-0.2760413 +19.799619913101196,0.01,13.636364,13.636364,0.1968135,-0.2760413 +19.809587955474854,0.02,12.121212,12.121212,0.17806935,-0.30934215 +19.819590091705322,0.03,11.363637,11.363637,0.14995314,-0.30934215 +19.829601049423218,0.049999997,10.606061,10.606061,0.131209,-0.30934215 +19.839395999908447,0.06,9.090909,9.090909,0.131209,-0.30934215 +19.849594116210938,0.07,8.333334,8.333334,0.12183693,-0.30934215 +19.85960102081299,0.08,7.575758,7.575758,0.10309278,-0.29824185 +19.869588136672974,0.089999996,6.818182,6.818182,0.09372071,-0.29824185 +19.879610061645508,0.099999994,6.060606,6.060606,0.09372071,-0.29824185 +19.889461040496826,0.11,5.3030305,5.3030305,0.07497657,-0.29824185 +19.899595022201538,0.12,4.5454545,4.5454545,0.046860356,-0.29824185 +19.909579038619995,0.13,3.787879,3.787879,0.037488285,-0.30934215 +19.919606924057007,0.14,3.030303,3.030303,0.037488285,-0.30934215 +19.929594039916992,0.14999999,2.2727273,2.2727273,0.028116215,-0.30934215 +19.939604997634888,0.16,2.2727273,2.2727273,0.009372071,-0.30934215 +19.94959807395935,0.17999999,1.5151515,1.5151515,0.0,-0.30934215 +19.959548950195312,0.19,0.75757575,0.75757575,0.0,-0.29639184 +19.969589948654175,0.19999999,0.75757575,0.75757575,0.0,-0.29639184 +19.97948908805847,0.19999999,0.0,0.0,0.0,-0.29639184 +19.9895920753479,0.21,0.0,0.0,0.0,-0.29639184 +19.999613046646118,0.22,0.0,0.0,0.0,-0.29639184 +20.009616136550903,0.22,0.0,0.0,0.0,-0.3074921 +20.01965308189392,0.22,0.0,0.0,0.0,-0.3074921 +20.029412031173706,0.22999999,0.0,0.0,0.0,-0.3074921 +20.039608001708984,0.22999999,0.0,0.0,0.0,-0.3074921 +20.049621105194092,0.24,0.0,0.0,0.0,-0.3074921 +20.05961513519287,0.24,0.0,0.0,0.0,-0.38334414 +20.06959891319275,0.24,0.0,0.0,0.0,-0.38334414 +20.07959294319153,0.25,0.0,0.0,0.0,-0.38334414 +20.089607000350952,0.25,0.0,0.0,0.0,-0.38334414 +20.099614143371582,0.25,0.0,0.0,0.0,-0.38334414 +20.109652042388916,0.26,0.0,0.0,0.0,-0.377794 +20.1194589138031,0.26,0.0,0.0,0.0,-0.377794 +20.12961196899414,0.26,0.0,0.0,0.0,-0.377794 +20.139627933502197,0.26,0.0,0.0,0.0,-0.377794 +20.14962911605835,0.26999998,0.0,0.0,0.0,-0.377794 +20.159618139266968,0.26999998,0.0,0.0,0.0,-0.42219514 +20.169628143310547,0.26999998,0.0,0.0,0.0,-0.42219514 +20.179619073867798,0.26999998,0.0,0.0,0.0,-0.42219514 +20.18952512741089,0.26999998,0.0,0.0,0.0,-0.42219514 +20.199610948562622,0.26999998,0.0,0.0,0.0,-0.42219514 +20.20953106880188,0.28,0.0,0.0,0.0,-0.4203451 +20.219578981399536,0.28,0.0,0.0,0.0,-0.4203451 +20.229637145996094,0.28,0.0,0.0,0.0,-0.4203451 +20.239630937576294,0.28,0.0,0.0,0.0,-0.4203451 +20.249608993530273,0.28,0.0,0.0,0.0,-0.4203451 +20.259630918502808,0.28,0.0,0.0,0.0,-0.5775993 +20.2696430683136,0.28,0.0,0.0,0.0,-0.5775993 +20.279622077941895,0.26999998,0.0,0.0,0.0,-0.5775993 +20.289627075195312,0.26999998,0.0,0.0,0.0,-0.5775993 +20.299628973007202,0.26,0.0,0.0,0.0,-0.5775993 +20.309627056121826,0.25,0.0,0.0,0.0,-0.7459538 +20.31963610649109,0.24,0.0,0.0,0.0,-0.7459538 +20.329646110534668,0.24,0.0,0.0,0.0,-0.7459538 +20.339640140533447,0.22999999,0.0,0.0,0.0,-0.7459538 +20.3496310710907,0.22999999,0.0,0.0,0.0,-0.7459538 +20.359633922576904,0.22999999,0.0,0.0,0.0,-0.7274533 +20.369642972946167,0.22999999,0.0,0.0,0.0,-0.7274533 +20.37962293624878,0.22999999,0.0,0.0,0.0,-0.7274533 +20.38965392112732,0.22999999,0.0,0.0,0.0,-0.7274533 +20.399646997451782,0.22999999,0.0,0.0,0.0,-0.7274533 +20.40963101387024,0.24,0.0,0.0,0.0,-0.6867522 +20.4196560382843,0.24,0.0,0.0,0.0,-0.6867522 +20.429431915283203,0.24,0.0,0.0,0.0,-0.6867522 +20.43956995010376,0.24,0.0,0.0,0.0,-0.6867522 +20.449657917022705,0.24,0.0,0.0,0.0,-0.6867522 +20.45965814590454,0.24,0.0,0.0,0.0,-0.5757492 +20.469629049301147,0.22999999,0.0,0.0,0.0,-0.5757492 +20.479637145996094,0.22999999,0.0,0.0,0.0,-0.5757492 +20.4896399974823,0.22,0.0,0.0,0.0,-0.5757492 +20.49963402748108,0.22,0.0,0.0,0.0,-0.5757492 +20.509642124176025,0.22,0.0,0.0,0.0,-0.22238986 +20.519602060317993,0.22,0.0,0.0,0.0,-0.22238986 +20.529461145401,0.22,0.0,0.0,0.0,-0.22238986 +20.539660930633545,0.22,0.0,0.0,0.0,-0.22238986 +20.549652099609375,0.22,0.0,0.0,0.0,-0.22238986 +20.55965304374695,0.22,0.0,0.0,0.0,-0.33339283 +20.5696439743042,0.22,0.0,0.0,0.0,-0.33339283 +20.579671144485474,0.22,0.0,0.0,0.0,-0.33339283 +20.589680910110474,0.21,0.0,0.0,0.0,-0.33339283 +20.599573135375977,0.21,0.0,0.0,0.0,-0.33339283 +20.609661102294922,0.19999999,0.0,0.0,0.0,-0.7052527 +20.6195969581604,0.19999999,0.0,0.0,0.0,-0.7052527 +20.629650115966797,0.19999999,0.0,0.0,0.0,-0.7052527 +20.639393091201782,0.19999999,0.0,0.0,0.0,-0.7052527 +20.64966106414795,0.19999999,0.0,0.0,0.0,-0.7052527 +20.659650087356567,0.19999999,0.0,0.0,0.0,-0.7496539 +20.6696720123291,0.21,0.0,0.0,0.0,-0.7496539 +20.679441928863525,0.22,0.0,0.0,0.0,-0.7496539 +20.68949294090271,0.22,0.0,0.0,0.0,-0.7496539 +20.699676990509033,0.22999999,0.0,0.0,0.0,-0.7496539 +20.70966100692749,0.24,0.0,0.0,0.0,-0.71820307 +20.71967601776123,0.25,0.0,0.0,0.0,-0.71820307 +20.72969698905945,0.25,0.0,0.0,0.0,-0.71820307 +20.73968195915222,0.26,0.0,0.0,0.0,-0.71820307 +20.749680995941162,0.26,0.0,0.0,0.0,-0.71820307 +20.759592056274414,0.26,0.0,0.0,0.0,-0.753354 +20.769423961639404,0.25,0.0,0.0,0.0,-0.753354 +20.779398918151855,0.25,0.0,0.0,0.0,-0.753354 +20.78939414024353,0.24,0.0,0.0,0.0,-0.753354 +20.799670934677124,0.24,0.0,0.0,0.0,-0.753354 +20.809693098068237,0.22999999,0.0,0.0,0.0,-0.7718544 +20.819513082504272,0.22,0.0,0.0,0.0,-0.7718544 +20.82941508293152,0.21,0.0,0.0,0.0,-0.7718544 +20.839400053024292,0.19999999,0.0,0.0,0.0,-0.7718544 +20.849399089813232,0.19,0.0,0.0,0.0,-0.7718544 +20.8594069480896,0.17999999,0.75757575,0.75757575,0.009372071,-0.7626042 +20.869555950164795,0.17,2.2727273,2.2727273,0.009372071,-0.7626042 +20.87938904762268,0.14999999,3.787879,3.787879,0.009372071,-0.7626042 +20.889405965805054,0.14,4.5454545,4.5454545,0.018744143,-0.7626042 +20.899388074874878,0.13,6.060606,6.060606,0.037488285,-0.7626042 +20.9094021320343,0.12,7.575758,7.575758,0.037488285,-0.7385536 +20.91940402984619,0.099999994,9.090909,9.090909,0.037488285,-0.7385536 +20.92947292327881,0.099999994,10.606061,10.606061,0.046860356,-0.7385536 +20.939400911331177,0.089999996,12.121212,12.121212,0.0656045,-0.7385536 +20.949408054351807,0.08,12.878788,12.878788,0.0656045,-0.7385536 +20.959394931793213,0.07,14.39394,14.39394,0.0656045,-0.74225366 +20.969398975372314,0.06,14.39394,14.39394,0.07497657,-0.74225366 +20.979422092437744,0.049999997,15.151516,15.151516,0.07497657,-0.74225366 +20.989426136016846,0.04,15.909091,15.909091,0.08434864,-0.74225366 +20.999403953552246,0.04,15.909091,15.909091,0.08434864,-0.74225366 +21.009419918060303,0.03,16.666668,16.666668,0.09372071,-0.7311533 +21.019421100616455,0.02,17.424242,17.424242,0.09372071,-0.7311533 +21.029441118240356,0.02,18.181818,18.181818,0.10309278,-0.7311533 +21.03941297531128,0.01,18.939394,18.939394,0.10309278,-0.7311533 +21.04940104484558,0.01,19.69697,19.69697,0.10309278,-0.7311533 +21.05943012237549,0.0,19.69697,19.69697,0.11246486,-0.7274533 +21.06942391395569,0.0,19.69697,19.69697,0.11246486,-0.7274533 +21.0794460773468,0.0,19.69697,19.69697,0.11246486,-0.7274533 +21.08941102027893,0.0,19.69697,19.69697,0.11246486,-0.7274533 +21.099400997161865,0.0,18.939394,18.939394,0.11246486,-0.7274533 +21.109419107437134,0.0,18.181818,18.181818,0.12183693,-0.6442011 +21.11949110031128,0.0,17.424242,17.424242,0.12183693,-0.6442011 +21.129423141479492,0.0,16.666668,16.666668,0.12183693,-0.6442011 +21.139405012130737,0.0,16.666668,16.666668,0.11246486,-0.6442011 +21.149430990219116,0.0,15.909091,15.909091,0.11246486,-0.6442011 +21.159430027008057,0.0,15.909091,15.909091,0.11246486,-0.53874826 +21.169435024261475,0.0,15.151516,15.151516,0.11246486,-0.53874826 +21.179426908493042,0.0,13.636364,13.636364,0.10309278,-0.53874826 +21.18942403793335,0.01,12.878788,12.878788,0.08434864,-0.53874826 +21.19942808151245,0.01,11.363637,11.363637,0.08434864,-0.53874826 +21.209420919418335,0.02,10.606061,10.606061,0.07497657,-0.59794986 +21.219425916671753,0.03,9.090909,9.090909,0.046860356,-0.59794986 +21.22953510284424,0.03,8.333334,8.333334,0.028116215,-0.59794986 +21.239453077316284,0.04,7.575758,7.575758,0.028116215,-0.59794986 +21.24954891204834,0.04,6.818182,6.818182,0.009372071,-0.59794986 +21.259457111358643,0.04,6.060606,6.060606,0.0,-0.7515039 +21.269442081451416,0.049999997,5.3030305,5.3030305,0.0,-0.7515039 +21.279431104660034,0.049999997,4.5454545,4.5454545,0.0,-0.7515039 +21.289420127868652,0.049999997,3.787879,3.787879,0.0,-0.7515039 +21.29943299293518,0.049999997,3.030303,3.030303,0.0,-0.7515039 +21.3094379901886,0.06,3.030303,3.030303,0.0,-0.65160125 +21.319432973861694,0.06,2.2727273,2.2727273,0.0,-0.65160125 +21.329435110092163,0.06,1.5151515,1.5151515,0.0,-0.65160125 +21.339443922042847,0.06,1.5151515,1.5151515,0.0,-0.65160125 +21.349427938461304,0.07,0.75757575,0.75757575,0.0,-0.65160125 +21.35943102836609,0.07,0.75757575,0.75757575,0.0,-0.42959538 +21.369434118270874,0.07,0.0,0.0,0.0,-0.42959538 +21.37963104248047,0.07,0.0,0.0,0.0,-0.42959538 +21.389487981796265,0.07,0.0,0.0,0.0,-0.42959538 +21.399445056915283,0.07,0.0,0.0,0.0,-0.42959538 +21.409439086914062,0.07,0.0,0.0,0.0,-0.5035973 +21.41943907737732,0.07,0.0,0.0,0.0,-0.5035973 +21.429455995559692,0.07,0.0,0.0,0.0,-0.5035973 +21.43943500518799,0.07,0.0,0.0,0.0,-0.5035973 +21.449450969696045,0.08,0.0,0.0,0.0,-0.5035973 +21.459442138671875,0.08,0.0,0.0,0.0,-0.65530133 +21.46944808959961,0.08,0.0,0.0,0.0,-0.65530133 +21.479509115219116,0.089999996,0.0,0.0,0.0,-0.65530133 +21.489460945129395,0.089999996,0.0,0.0,0.0,-0.65530133 +21.499442100524902,0.089999996,0.0,0.0,0.0,-0.65530133 +21.50946807861328,0.099999994,0.0,0.0,0.0,-0.6257006 +21.519635915756226,0.099999994,0.0,0.0,0.0,-0.6257006 +21.52945113182068,0.11,0.0,0.0,0.0,-0.6257006 +21.5395770072937,0.13,0.0,0.0,0.0,-0.6257006 +21.549448013305664,0.14,0.0,0.0,0.0,-0.6257006 +21.5594539642334,0.14999999,0.0,0.0,0.0,-0.6238505 +21.5695641040802,0.16,0.0,0.0,0.0,-0.6238505 +21.579466104507446,0.17,0.0,0.0,0.0,-0.6238505 +21.589462995529175,0.17999999,0.0,0.0,0.0,-0.6238505 +21.59946608543396,0.19,0.0,0.0,0.0,-0.6238505 +21.60962700843811,0.19,0.0,0.0,0.0,-0.6183004 +21.6195809841156,0.19999999,0.0,0.0,0.0,-0.6183004 +21.629465103149414,0.19999999,0.0,0.0,0.0,-0.6183004 +21.639454126358032,0.19999999,0.0,0.0,0.0,-0.6183004 +21.649460077285767,0.21,0.0,0.0,0.0,-0.6183004 +21.659609079360962,0.21,0.0,0.0,0.0,-0.62200046 +21.66963291168213,0.21,0.0,0.0,0.0,-0.62200046 +21.67948603630066,0.21,0.0,0.0,0.0,-0.62200046 +21.68946099281311,0.21,0.0,0.0,0.0,-0.62200046 +21.69948101043701,0.21,0.0,0.0,0.0,-0.62200046 +21.709475994110107,0.19999999,0.0,0.0,0.0,-0.60164994 +21.71948003768921,0.19999999,0.0,0.0,0.0,-0.60164994 +21.729399919509888,0.19999999,0.0,0.0,0.0,-0.60164994 +21.739476919174194,0.19999999,0.0,0.0,0.0,-0.60164994 +21.749645948410034,0.19999999,0.0,0.0,0.0,-0.60164994 +21.75957202911377,0.19999999,0.0,0.0,0.0,-0.5997999 +21.76946997642517,0.19999999,0.0,0.0,0.0,-0.5997999 +21.77949094772339,0.19999999,0.0,0.0,0.0,-0.5997999 +21.789483070373535,0.19999999,0.0,0.0,0.0,-0.5997999 +21.799487113952637,0.19999999,0.0,0.0,0.0,-0.5997999 +21.80947208404541,0.19999999,0.0,0.0,0.0,-0.57204914 +21.819514989852905,0.19,0.0,0.0,0.0,-0.57204914 +21.829479932785034,0.19,0.0,0.0,0.0,-0.57204914 +21.83941102027893,0.19,0.0,0.0,0.0,-0.57204914 +21.84964108467102,0.17999999,0.0,0.0,0.0,-0.57204914 +21.859477996826172,0.17999999,0.0,0.0,0.0,-0.50174725 +21.86948299407959,0.17999999,0.0,0.0,0.0,-0.50174725 +21.879480123519897,0.17,0.0,0.0,0.0,-0.50174725 +21.889501094818115,0.16,0.0,0.0,0.0,-0.50174725 +21.899652004241943,0.16,0.0,0.0,0.0,-0.50174725 +21.90948510169983,0.14999999,0.0,0.0,0.0,-0.4832468 +21.919481992721558,0.14999999,0.0,0.0,0.0,-0.4832468 +21.929502964019775,0.14,0.0,0.0,0.0,-0.4832468 +21.939507961273193,0.14,0.0,0.0,0.0,-0.4832468 +21.9495050907135,0.14,0.0,0.0,0.0,-0.4832468 +21.959497928619385,0.13,0.0,0.0,0.0,-0.47029644 +21.969536066055298,0.13,0.0,0.0,0.0,-0.47029644 +21.979509115219116,0.13,0.0,0.0,0.0,-0.47029644 +21.989486932754517,0.12,0.0,0.0,0.0,-0.47029644 +21.99941110610962,0.12,0.0,0.0,0.0,-0.47029644 +22.00950813293457,0.12,0.0,0.0,0.0,-0.36854377 +22.019504070281982,0.12,0.0,0.0,0.0,-0.36854377 +22.029518127441406,0.11,0.0,0.0,0.0,-0.36854377 +22.039497137069702,0.11,0.0,0.0,0.0,-0.36854377 +22.049499988555908,0.11,0.0,0.0,0.0,-0.36854377 +22.059659957885742,0.11,0.0,0.0,0.0,-0.28899163 +22.06949210166931,0.099999994,0.0,0.0,0.0,-0.28899163 +22.079503059387207,0.099999994,0.0,0.0,0.0,-0.28899163 +22.089590072631836,0.099999994,0.0,0.0,0.0,-0.28899163 +22.099499940872192,0.099999994,0.0,0.0,0.0,-0.28899163 +22.109528064727783,0.089999996,0.0,0.0,0.0,-0.377794 +22.1195650100708,0.089999996,0.0,0.0,0.0,-0.377794 +22.129426956176758,0.089999996,0.0,0.0,0.0,-0.377794 +22.1395001411438,0.089999996,0.0,0.0,0.0,-0.377794 +22.14953112602234,0.08,0.0,0.0,0.0,-0.377794 +22.1595139503479,0.08,0.0,0.0,0.0,-0.42589524 +22.169520139694214,0.08,0.0,0.0,0.0,-0.42589524 +22.179680109024048,0.08,0.0,0.0,0.0,-0.42589524 +22.1895170211792,0.08,0.0,0.0,0.0,-0.42589524 +22.1995210647583,0.07,0.0,0.0,0.0,-0.42589524 +22.209521055221558,0.07,0.0,0.0,0.0,-0.5331981 +22.219515085220337,0.07,0.0,0.0,0.0,-0.5331981 +22.229526042938232,0.07,0.0,0.0,0.0,-0.5331981 +22.239514112472534,0.06,0.0,0.0,0.0,-0.5331981 +22.24951696395874,0.06,0.0,0.0,0.0,-0.5331981 +22.259510040283203,0.06,0.0,0.0,0.0,-0.5831495 +22.269519090652466,0.06,0.0,0.0,0.0,-0.5831495 +22.27953290939331,0.049999997,0.0,0.0,0.0,-0.5831495 +22.28952693939209,0.049999997,0.0,0.0,0.0,-0.5831495 +22.299525022506714,0.049999997,0.0,0.0,0.0,-0.5831495 +22.309540033340454,0.049999997,0.0,0.0,0.0,-0.5646489 +22.31953191757202,0.049999997,0.0,0.0,0.0,-0.5646489 +22.329543113708496,0.04,0.0,0.0,0.0,-0.5646489 +22.339519023895264,0.04,0.0,0.0,0.0,-0.5646489 +22.34967613220215,0.04,0.0,0.0,0.0,-0.5646489 +22.35952591896057,0.03,0.0,0.0,0.0,-0.6146003 +22.369391918182373,0.03,0.0,0.0,0.0,-0.6146003 +22.37952995300293,0.03,0.0,0.0,0.0,-0.6146003 +22.389586925506592,0.02,0.0,0.0,0.0,-0.6146003 +22.39953303337097,0.02,0.0,0.0,0.0,-0.6146003 +22.409544944763184,0.01,0.0,0.0,0.0,-0.7034027 +22.41954493522644,0.01,0.0,0.0,0.0,-0.7034027 +22.42952799797058,0.0,0.0,0.0,0.0,-0.7034027 +22.439548015594482,0.0,0.0,0.0,0.0,-0.7034027 +22.44956398010254,0.0,0.0,0.0,0.0,-0.7034027 +22.459553003311157,0.0,0.0,0.0,0.0,-0.74040365 +22.469608068466187,0.0,0.0,0.0,0.0,-0.74040365 +22.4795560836792,0.0,0.0,0.0,0.0,-0.74040365 +22.489563941955566,0.0,0.0,0.0,0.0,-0.74040365 +22.49955105781555,0.0,0.0,0.0,0.0,-0.74040365 +22.509557962417603,0.0,0.0,0.0,0.0,-0.7496539 +22.51956295967102,0.0,0.0,0.0,0.0,-0.7496539 +22.52956199645996,0.0,0.0,0.0,0.0,-0.7496539 +22.5395450592041,0.0,0.0,0.0,0.0,-0.7496539 +22.549538135528564,0.0,0.0,0.0,0.0,-0.7496539 +22.55954599380493,0.0,0.0,0.0,0.0,-0.7200531 +22.569554090499878,0.0,0.0,0.0,0.0,-0.7200531 +22.579567909240723,0.0,0.0,0.0,0.0,-0.7200531 +22.589566946029663,0.0,0.0,0.0,0.0,-0.7200531 +22.59956192970276,0.0,0.0,0.0,0.0,-0.7200531 +22.6095609664917,0.0,0.0,0.0,0.0,-0.4647463 +22.61953592300415,0.0,0.0,0.0,0.0,-0.4647463 +22.62956404685974,0.0,0.0,0.0,0.0,-0.4647463 +22.6395480632782,0.0,0.0,0.0,0.0,-0.4647463 +22.64956498146057,0.0,0.0,0.0,0.0,-0.4647463 +22.659560918807983,0.0,0.0,0.0,0.0,-0.4684464 +22.6695499420166,0.0,0.0,0.0,0.0,-0.4684464 +22.679460048675537,0.0,0.0,0.0,0.0,-0.4684464 +22.689702033996582,0.0,0.0,0.0,0.0,-0.4684464 +22.69956111907959,0.0,0.0,0.0,0.0,-0.4684464 +22.709562063217163,0.0,0.0,0.0,0.0,-0.6664016 +22.71956205368042,0.0,0.0,0.0,0.0,-0.6664016 +22.729565143585205,0.0,0.0,0.0,0.0,-0.6664016 +22.739447116851807,0.0,0.0,0.0,0.0,-0.6664016 +22.749583959579468,0.0,0.0,0.0,0.0,-0.6664016 +22.759582042694092,0.0,0.0,0.0,0.0,-0.7293033 +22.769567012786865,0.0,0.0,0.0,0.0,-0.7293033 +22.779573917388916,0.0,0.0,0.0,0.0,-0.7293033 +22.789570093154907,0.0,0.0,0.0,0.0,-0.7293033 +22.79968500137329,0.01,0.0,0.0,0.0,-0.7293033 +22.809564113616943,0.01,0.0,0.0,0.0,-0.7311533 +22.819584131240845,0.02,0.0,0.0,0.0,-0.7311533 +22.829499006271362,0.02,0.0,0.0,0.0,-0.7311533 +22.83958601951599,0.03,0.0,0.0,0.0,-0.7311533 +22.84957504272461,0.03,0.0,0.0,0.0,-0.7311533 +22.859580039978027,0.04,0.0,0.0,0.0,-0.7311533 +22.86959195137024,0.04,0.0,0.0,0.0,-0.7311533 +22.879581928253174,0.049999997,0.0,0.0,0.0,-0.7311533 +22.889393091201782,0.049999997,0.0,0.0,0.0,-0.7311533 +22.89957308769226,0.06,0.0,0.0,0.0,-0.7311533 +22.909584999084473,0.07,0.0,0.0,0.0,-0.6978525 +22.91963005065918,0.07,0.0,0.0,0.0,-0.6978525 +22.929585933685303,0.08,0.0,0.0,0.0,-0.6978525 +22.939594984054565,0.089999996,0.0,0.0,0.0,-0.6978525 +22.949448108673096,0.089999996,0.0,0.0,0.0,-0.6978525 +22.959595918655396,0.099999994,0.0,0.0,0.0,-0.7071027 +22.969593048095703,0.11,0.0,0.0,0.0,-0.7071027 +22.97958493232727,0.11,0.0,0.0,0.0,-0.7071027 +22.989593982696533,0.12,0.0,0.0,0.0,-0.7071027 +22.999608993530273,0.12,0.0,0.0,0.0,-0.7071027 +23.00958800315857,0.13,0.0,0.0,0.0,-0.7108028 +23.01945400238037,0.13,0.0,0.0,0.0,-0.7108028 +23.02959108352661,0.13,0.0,0.0,0.0,-0.7108028 +23.03958511352539,0.14,0.0,0.0,0.0,-0.7108028 +23.049593925476074,0.14999999,0.0,0.0,0.0,-0.7108028 +23.059602975845337,0.14999999,0.0,0.0,0.0,-0.62200046 +23.06959891319275,0.16,0.0,0.0,0.0,-0.62200046 +23.07959008216858,0.17,0.0,0.0,0.0,-0.62200046 +23.08960509300232,0.17,0.0,0.0,0.0,-0.62200046 +23.09960103034973,0.17999999,0.0,0.0,0.0,-0.62200046 +23.109396934509277,0.19,0.0,0.0,0.0,-0.5572487 +23.119449138641357,0.19,0.0,0.0,0.0,-0.5572487 +23.129586935043335,0.19999999,0.0,0.0,0.0,-0.5572487 +23.139595985412598,0.19999999,0.0,0.0,0.0,-0.5572487 +23.149600982666016,0.19999999,0.0,0.0,0.0,-0.5572487 +23.159614086151123,0.21,0.0,0.0,0.0,-0.5572487 +23.16961407661438,0.21,0.0,0.0,0.0,-0.5572487 +23.179628133773804,0.21,0.0,0.0,0.0,-0.5572487 +23.189620971679688,0.21,0.0,0.0,0.0,-0.5572487 +23.19954204559326,0.21,0.0,0.0,0.0,-0.5572487 +23.209604024887085,0.21,0.0,0.0,0.0,-0.54984856 +23.21962809562683,0.21,0.0,0.0,0.0,-0.54984856 +23.229607105255127,0.19999999,0.0,0.0,0.0,-0.54984856 +23.239609003067017,0.19999999,0.0,0.0,0.0,-0.54984856 +23.2496280670166,0.19999999,0.0,0.0,0.0,-0.54984856 +23.259609937667847,0.19,0.0,0.0,0.0,-0.53874826 +23.269626140594482,0.19,0.0,0.0,0.0,-0.53874826 +23.279606103897095,0.19,0.0,0.0,0.0,-0.53874826 +23.289506912231445,0.19,0.0,0.0,0.0,-0.53874826 +23.29961895942688,0.19,0.0,0.0,0.0,-0.53874826 +23.309620141983032,0.19999999,0.0,0.0,0.0,-0.5072974 +23.31963300704956,0.21,0.0,0.0,0.0,-0.5072974 +23.329631090164185,0.21,0.0,0.0,0.0,-0.5072974 +23.339630126953125,0.22,0.0,0.0,0.0,-0.5072974 +23.34963297843933,0.22999999,0.0,0.0,0.0,-0.5072974 +23.359554052352905,0.22999999,0.0,0.0,0.0,-0.60349995 +23.369627952575684,0.22999999,0.0,0.0,0.0,-0.60349995 +23.379634141921997,0.24,0.0,0.0,0.0,-0.60349995 +23.38961410522461,0.24,0.0,0.0,0.0,-0.60349995 +23.39964008331299,0.22999999,0.0,0.0,0.0,-0.60349995 +23.409631967544556,0.22999999,0.0,0.0,0.0,-0.9938603 +23.419631958007812,0.22999999,0.0,0.0,0.0,-0.9938603 +23.429630041122437,0.22,0.0,0.0,0.0,-0.9938603 +23.439625024795532,0.21,0.0,0.0,0.0,-0.9938603 +23.449641942977905,0.21,0.0,0.0,0.0,-0.9938603 +23.459622144699097,0.19999999,0.0,0.0,0.0,-0.90690804 +23.469640970230103,0.19999999,0.0,0.0,0.0,-0.90690804 +23.479515075683594,0.21,0.0,0.0,0.0,-0.90690804 +23.48955202102661,0.21,0.0,0.0,0.0,-0.90690804 +23.499639987945557,0.22,0.0,0.0,0.0,-0.90690804 +23.509634017944336,0.22999999,0.0,0.0,0.0,-0.6183004 +23.519644021987915,0.24,0.0,0.0,0.0,-0.6183004 +23.529650926589966,0.25,0.0,0.0,0.0,-0.6183004 +23.539634943008423,0.26,0.0,0.0,0.0,-0.6183004 +23.549644947052002,0.26999998,0.0,0.0,0.0,-0.6183004 +23.55940008163452,0.28,0.0,0.0,0.0,-0.59794986 +23.56964612007141,0.29,0.0,0.0,0.0,-0.59794986 +23.57965111732483,0.29,0.0,0.0,0.0,-0.59794986 +23.58964490890503,0.29999998,0.0,0.0,0.0,-0.59794986 +23.599656105041504,0.29999998,0.0,0.0,0.0,-0.59794986 +23.609652042388916,0.29999998,0.0,0.0,0.0,-0.6072001 +23.61953592300415,0.29999998,0.0,0.0,0.0,-0.6072001 +23.62963604927063,0.29999998,0.0,0.0,0.0,-0.6072001 +23.639655113220215,0.31,0.0,0.0,0.0,-0.6072001 +23.649653911590576,0.31,0.0,0.0,0.0,-0.6072001 +23.659650087356567,0.31,0.0,0.0,0.0,-0.5572487 +23.669657945632935,0.31,0.0,0.0,0.0,-0.5572487 +23.67966103553772,0.31,0.0,0.0,0.0,-0.5572487 +23.68948197364807,0.32,0.0,0.0,0.0,-0.5572487 +23.699657917022705,0.32,0.0,0.0,0.0,-0.5572487 +23.709656953811646,0.32999998,0.0,0.0,0.0,-0.5165477 +23.71966004371643,0.32999998,0.0,0.0,0.0,-0.5165477 +23.729660034179688,0.34,0.0,0.0,0.0,-0.5165477 +23.739649057388306,0.34,0.0,0.0,0.0,-0.5165477 +23.74948000907898,0.34,0.0,0.0,0.0,-0.5165477 +23.759655952453613,0.34,0.0,0.0,0.0,-0.5442984 +23.76966404914856,0.34,0.0,0.0,0.0,-0.5442984 +23.77965807914734,0.34,0.0,0.0,0.0,-0.5442984 +23.789665937423706,0.34,0.0,0.0,0.0,-0.5442984 +23.799668073654175,0.34,0.0,0.0,0.0,-0.5442984 +23.809620141983032,0.34,0.0,0.0,0.0,-0.5054473 +23.819670915603638,0.34,0.0,0.0,0.0,-0.5054473 +23.82969093322754,0.35,0.0,0.0,0.0,-0.5054473 +23.839674949645996,0.35,0.0,0.0,0.0,-0.5054473 +23.84966206550598,0.35,0.0,0.0,0.0,-0.5054473 +23.85968804359436,0.35999998,0.0,0.0,0.0,-0.46104622 +23.869669914245605,0.35999998,0.0,0.0,0.0,-0.46104622 +23.87955403327942,0.37,0.0,0.0,0.0,-0.46104622 +23.889660120010376,0.37,0.0,0.0,0.0,-0.46104622 +23.899492025375366,0.37,0.0,0.0,0.0,-0.46104622 +23.909663915634155,0.37,0.0,0.0,0.0,-0.46289623 +23.91967797279358,0.38,0.0,0.0,0.0,-0.46289623 +23.929660081863403,0.38,0.0,0.0,0.0,-0.46289623 +23.939680099487305,0.38,0.0,0.0,0.0,-0.46289623 +23.94945192337036,0.38,0.0,0.0,0.0,-0.46289623 +23.959671020507812,0.38,0.0,0.0,0.0,-0.39999458 +23.96967601776123,0.38,0.0,0.0,0.0,-0.39999458 +23.979690074920654,0.39,0.0,0.0,0.0,-0.39999458 +23.989447116851807,0.39,0.0,0.0,0.0,-0.39999458 +23.9996600151062,0.39,0.0,0.0,0.0,-0.39999458 +24.00956392288208,0.39,0.0,0.0,0.0,-0.27789134 +24.019639015197754,0.39,0.0,0.0,0.0,-0.27789134 +24.02967405319214,0.39,0.0,0.0,0.0,-0.27789134 +24.039436101913452,0.39,0.0,0.0,0.0,-0.27789134 +24.049678087234497,0.39,0.0,0.0,0.0,-0.27789134 +24.059683084487915,0.39999998,0.0,0.0,0.0,-0.15023795 +24.06967806816101,0.39999998,0.0,0.0,0.0,-0.15023795 +24.079702138900757,0.39999998,0.0,0.0,0.0,-0.15023795 +24.089684009552002,0.39999998,0.0,0.0,0.0,-0.15023795 +24.09968400001526,0.39999998,0.0,0.0,0.0,-0.15023795 +24.109692096710205,0.39999998,0.0,0.0,0.0,-0.07808603 +24.119696140289307,0.39999998,0.0,0.0,0.0,-0.07808603 +24.129693031311035,0.39999998,0.0,0.0,0.0,-0.07808603 +24.13955593109131,0.39999998,0.0,0.0,0.0,-0.07808603 +24.149697065353394,0.39999998,0.0,0.0,0.0,-0.07808603 +24.1596999168396,0.39,0.0,0.0,0.0,-0.06698574 +24.169502019882202,0.39,0.0,0.0,0.0,-0.06698574 +24.17970299720764,0.39,0.0,0.0,0.0,-0.06698574 +24.189685106277466,0.39,0.0,0.0,0.0,-0.06698574 +24.199700117111206,0.39,0.0,0.0,0.0,-0.06698574 +24.209437131881714,0.39,0.0,0.0,0.0,-0.09288643 +24.21970009803772,0.39,0.0,0.0,0.0,-0.09288643 +24.229705095291138,0.39,0.0,0.0,0.0,-0.09288643 +24.239694118499756,0.39,0.0,0.0,0.0,-0.09288643 +24.24968910217285,0.39,0.0,0.0,0.0,-0.09288643 +24.259418964385986,0.39,0.0,0.0,0.0,-0.10953687 +24.269529104232788,0.39999998,0.0,0.0,0.0,-0.10953687 +24.27969193458557,0.39999998,0.0,0.0,0.0,-0.10953687 +24.289436101913452,0.41,0.0,0.0,0.0,-0.10953687 +24.299621105194092,0.41,0.0,0.0,0.0,-0.10953687 +24.309720993041992,0.41,0.0,0.0,0.0,-0.11138691 +24.319725036621094,0.42,0.0,0.0,0.0,-0.11138691 +24.32972502708435,0.42,0.0,0.0,0.0,-0.11138691 +24.33946204185486,0.42,0.0,0.0,0.0,-0.11138691 +24.349710941314697,0.42,0.0,0.0,0.0,-0.11138691 +24.359709978103638,0.42999998,0.0,0.0,0.0,-0.16503835 +24.36972713470459,0.42999998,0.0,0.0,0.0,-0.16503835 +24.379497051239014,0.42999998,0.0,0.0,0.0,-0.16503835 +24.389704942703247,0.44,0.0,0.0,0.0,-0.16503835 +24.399493932724,0.44,0.0,0.0,0.0,-0.16503835 +24.409626960754395,0.45,0.0,0.0,0.0,-0.152088 +24.41960597038269,0.45,0.0,0.0,0.0,-0.152088 +24.429728984832764,0.45,0.0,0.0,0.0,-0.152088 +24.43973207473755,0.45999998,0.0,0.0,0.0,-0.152088 +24.449744939804077,0.45999998,0.0,0.0,0.0,-0.152088 +24.459736108779907,0.47,0.0,0.0,0.0,-0.14098771 +24.46956992149353,0.47,0.0,0.0,0.0,-0.14098771 +24.479711055755615,0.47,0.0,0.0,0.0,-0.14098771 +24.4897141456604,0.47,0.0,0.0,0.0,-0.14098771 +24.49972701072693,0.47,0.0,0.0,0.0,-0.14098771 +24.509742975234985,0.48,0.0,0.0,0.0,-0.10768682 +24.519722938537598,0.48,0.0,0.0,0.0,-0.10768682 +24.529479026794434,0.48,0.0,0.0,0.0,-0.10768682 +24.53976011276245,0.48999998,0.0,0.0,0.0,-0.10768682 +24.549741983413696,0.48999998,0.0,0.0,0.0,-0.10768682 +24.559502124786377,0.48999998,0.0,0.0,0.0,-0.013334316 +24.569730043411255,0.5,0.0,0.0,0.0,-0.013334316 +24.579721927642822,0.5,0.0,0.0,0.0,-0.013334316 +24.58973002433777,0.5,0.0,0.0,0.0,-0.013334316 +24.599740028381348,0.5,0.0,0.0,0.0,-0.013334316 +24.609743118286133,0.48999998,0.0,0.0,0.0,0.021816617 +24.619750022888184,0.48999998,0.0,0.0,0.0,0.021816617 +24.629729986190796,0.48999998,0.0,0.0,0.0,0.021816617 +24.639742136001587,0.48,0.0,0.0,0.0,0.021816617 +24.64974308013916,0.48,0.0,0.0,0.0,0.021816617 +24.659480094909668,0.47,0.0,0.0,0.0,0.08656834 +24.66944408416748,0.45999998,0.0,0.0,0.0,0.08656834 +24.679763078689575,0.45999998,0.0,0.0,0.0,0.08656834 +24.689762115478516,0.45,0.0,0.0,0.0,0.08656834 +24.69975996017456,0.44,0.0,0.0,0.0,0.08656834 +24.709743976593018,0.42999998,0.0,0.0,0.0,0.12911949 +24.719748973846436,0.42999998,0.0,0.0,0.0,0.12911949 +24.729757070541382,0.42,0.0,0.0,0.0,0.12911949 +24.73975396156311,0.41,0.0,0.0,0.0,0.12911949 +24.749763011932373,0.41,0.0,0.0,0.0,0.12911949 +24.75955891609192,0.39999998,0.0,0.0,0.0,0.16057031 +24.769758939743042,0.39999998,0.0,0.0,0.0,0.16057031 +24.779753923416138,0.39999998,0.0,0.0,0.0,0.16057031 +24.789502143859863,0.39,0.0,0.0,0.0,0.16057031 +24.79973602294922,0.39,0.0,0.0,0.0,0.16057031 +24.80974292755127,0.38,0.0,0.0,0.0,0.1716706 +24.81940793991089,0.37,0.0,0.0,0.0,0.1716706 +24.82976794242859,0.35999998,0.0,0.0,0.0,0.1716706 +24.839779138565063,0.35,0.0,0.0,0.0,0.1716706 +24.849767923355103,0.34,0.0,0.0,0.0,0.1716706 +24.859741926193237,0.32999998,0.0,0.0,0.0,0.21422173 +24.869765996932983,0.31,0.0,0.0,0.0,0.21422173 +24.879558086395264,0.29,0.0,0.0,0.0,0.21422173 +24.889771938323975,0.26999998,0.0,0.0,0.0,0.21422173 +24.899758100509644,0.26,0.0,0.0,0.0,0.21422173 +24.909477949142456,0.24,0.0,0.0,0.0,0.22532202 +24.919507026672363,0.22,0.0,0.0,0.0,0.22532202 +24.929769039154053,0.21,0.0,0.0,0.0,0.22532202 +24.93977999687195,0.19,0.75757575,0.75757575,0.0,0.22532202 +24.949777126312256,0.17999999,2.2727273,2.2727273,0.0,0.22532202 +24.9597749710083,0.16,3.787879,3.787879,0.0,0.28822368 +24.96949601173401,0.14999999,5.3030305,5.3030305,0.0,0.28822368 +24.97977304458618,0.14,6.818182,6.818182,0.0,0.28822368 +24.989649057388306,0.13,9.090909,9.090909,0.0,0.28822368 +24.999474048614502,0.12,10.606061,10.606061,0.0,0.28822368 +25.00977897644043,0.099999994,12.878788,12.878788,0.009372071,0.31042427 +25.019758939743042,0.099999994,15.909091,15.909091,0.028116215,0.31042427 +25.029770135879517,0.089999996,18.939394,18.939394,0.046860356,0.31042427 +25.03976798057556,0.08,23.484848,23.484848,0.05623243,0.31042427 +25.04952096939087,0.07,28.030302,28.030302,0.0656045,0.31042427 +25.05944013595581,0.06,32.575756,32.575756,0.08434864,0.3529754 +25.06979203224182,0.049999997,37.121216,37.121216,0.09372071,0.3529754 +25.079769134521484,0.049999997,40.90909,40.90909,0.10309278,0.3529754 +25.089793920516968,0.04,44.696968,44.696968,0.12183693,0.3529754 +25.099777936935425,0.03,47.727272,47.727272,0.131209,0.3529754 +25.109776973724365,0.03,51.515152,51.515152,0.14995314,0.35482547 +25.11977195739746,0.02,55.30303,55.30303,0.16869728,0.35482547 +25.129805088043213,0.01,59.090908,59.090908,0.17806935,0.35482547 +25.139796018600464,0.01,63.636364,63.636364,0.18744142,0.35482547 +25.149781942367554,0.0,68.18182,68.18182,0.1968135,0.35482547 +25.159799098968506,0.0,58.333332,58.333332,0.20618556,0.39367646 +25.169793128967285,0.0,40.151516,40.151516,0.21555763,0.39367646 +25.179512977600098,0.0,28.78788,28.78788,0.22492972,0.39367646 +25.189796924591064,0.0,20.454544,20.454544,0.23430179,0.39367646 +25.19977307319641,0.0,24.242424,24.242424,0.24367386,0.39367646 +25.209803104400635,0.0,30.303032,30.303032,0.25304592,0.3566755 +25.219494104385376,0.0,37.121216,37.121216,0.262418,0.3566755 +25.22980809211731,0.0,43.939392,43.939392,0.27179006,0.3566755 +25.23969602584839,0.0,50.0,50.0,0.28116214,0.3566755 +25.249810934066772,0.0,55.30303,55.30303,0.2905342,0.3566755 +25.259812116622925,0.0,60.606064,60.606064,0.29990628,0.36777583 +25.269808053970337,0.0,64.393936,64.393936,0.30927837,0.36777583 +25.279802083969116,0.0,66.66667,66.66667,0.30927837,0.36777583 +25.289793014526367,0.0,65.90909,65.90909,0.31865042,0.36777583 +25.29948902130127,0.0,54.545456,54.545456,0.31865042,0.36777583 +25.309499979019165,0.0,43.181816,43.181816,0.31865042,0.35112536 +25.319791078567505,0.0,33.333336,33.333336,0.3280225,0.35112536 +25.329787969589233,0.0,25.0,25.0,0.3280225,0.35112536 +25.339802980422974,0.0,21.212122,21.212122,0.3280225,0.35112536 +25.34979510307312,0.0,25.757576,25.757576,0.3280225,0.35112536 +25.359822034835815,0.0,31.060606,31.060606,0.3280225,0.3344749 +25.36982297897339,0.0,37.121216,37.121216,0.3280225,0.3344749 +25.379826068878174,0.0,41.666668,41.666668,0.3280225,0.3344749 +25.38980793952942,0.0,45.454548,45.454548,0.3280225,0.3344749 +25.3993980884552,0.0,48.484848,48.484848,0.3280225,0.3344749 +25.409496068954468,0.0,51.515152,51.515152,0.3280225,0.3529754 +25.419803142547607,0.0,53.030304,53.030304,0.3280225,0.3529754 +25.429810047149658,0.0,54.545456,54.545456,0.3280225,0.3529754 +25.43952512741089,0.0,56.818184,56.818184,0.3280225,0.3529754 +25.4498131275177,0.0,59.090908,59.090908,0.3280225,0.3529754 +25.459829092025757,0.0,61.363636,61.363636,0.33739457,0.35482547 +25.469813108444214,0.0,62.878788,62.878788,0.33739457,0.35482547 +25.479538917541504,0.0,64.393936,64.393936,0.33739457,0.35482547 +25.489826917648315,0.0,65.15151,65.15151,0.33739457,0.35482547 +25.49980592727661,0.0,65.15151,65.15151,0.33739457,0.35482547 +25.509805917739868,0.0,65.15151,65.15151,0.3280225,0.3307748 +25.519814014434814,0.0,63.636364,63.636364,0.3280225,0.3307748 +25.529820919036865,0.0,62.878788,62.878788,0.3280225,0.3307748 +25.539807081222534,0.0,61.363636,61.363636,0.3280225,0.3307748 +25.549823999404907,0.0,60.606064,60.606064,0.31865042,0.3307748 +25.559664964675903,0.0,59.848484,59.848484,0.31865042,0.3566755 +25.56950807571411,0.0,59.848484,59.848484,0.31865042,0.3566755 +25.579814910888672,0.0,59.090908,59.090908,0.31865042,0.3566755 +25.589827060699463,0.0,59.090908,59.090908,0.30927837,0.3566755 +25.599828958511353,0.0,58.333332,58.333332,0.29990628,0.3566755 +25.609833002090454,0.0,57.57576,57.57576,0.29990628,0.39182645 +25.61981511116028,0.0,56.818184,56.818184,0.29990628,0.39182645 +25.62983202934265,0.0,56.060604,56.060604,0.2905342,0.39182645 +25.639827966690063,0.0,56.060604,56.060604,0.2905342,0.39182645 +25.64958095550537,0.0,56.060604,56.060604,0.2905342,0.39182645 +25.65984797477722,0.0,57.57576,57.57576,0.2905342,0.3881263 +25.66985011100769,0.0,59.090908,59.090908,0.2905342,0.3881263 +25.67949414253235,0.0,61.363636,61.363636,0.2905342,0.3881263 +25.689821004867554,0.0,64.393936,64.393936,0.29990628,0.3881263 +25.6995050907135,0.0,65.90909,65.90909,0.29990628,0.3881263 +25.709840059280396,0.0,68.18182,68.18182,0.29990628,0.42512733 +25.719829082489014,0.0,59.848484,59.848484,0.29990628,0.42512733 +25.72985005378723,0.0,50.0,50.0,0.29990628,0.42512733 +25.73961591720581,0.0,40.90909,40.90909,0.30927837,0.42512733 +25.74984908103943,0.0,33.333336,33.333336,0.30927837,0.42512733 +25.759841918945312,0.0,28.030302,28.030302,0.30927837,0.51762974 +25.76966404914856,0.0,23.484848,23.484848,0.31865042,0.51762974 +25.779850959777832,0.0,23.484848,23.484848,0.31865042,0.51762974 +25.789830923080444,0.0,28.78788,28.78788,0.30927837,0.51762974 +25.799838066101074,0.0,35.60606,35.60606,0.31865042,0.51762974 +25.809847116470337,0.0,42.424244,42.424244,0.31865042,0.5657311 +25.819849967956543,0.0,48.484848,48.484848,0.3280225,0.5657311 +25.829503059387207,0.0,54.545456,54.545456,0.3280225,0.5657311 +25.83984613418579,0.0,59.848484,59.848484,0.33739457,0.5657311 +25.849857091903687,0.0,64.393936,64.393936,0.33739457,0.5657311 +25.85976505279541,0.0,68.18182,68.18182,0.33739457,0.5472306 +25.86984610557556,0.0,64.393936,64.393936,0.34676665,0.5472306 +25.879853010177612,0.0,60.606064,60.606064,0.34676665,0.5472306 +25.889854907989502,0.0,56.060604,56.060604,0.3561387,0.5472306 +25.899855136871338,0.0,53.030304,53.030304,0.3561387,0.5472306 +25.90984296798706,0.0,50.0,50.0,0.3561387,0.5564808 +25.919589042663574,0.0,46.21212,46.21212,0.3655108,0.5564808 +25.929850101470947,0.0,43.181816,43.181816,0.3655108,0.5564808 +25.93987011909485,0.0,40.151516,40.151516,0.3655108,0.5564808 +25.9496750831604,0.0,36.363636,36.363636,0.3655108,0.5564808 +25.95952796936035,0.0,33.333336,33.333336,0.3655108,0.56018096 +25.969871997833252,0.0,30.303032,30.303032,0.3655108,0.56018096 +25.979849100112915,0.0,27.272728,27.272728,0.37488285,0.56018096 +25.989876985549927,0.0,25.757576,25.757576,0.37488285,0.56018096 +25.999885082244873,0.0,24.242424,24.242424,0.37488285,0.56018096 +26.009649991989136,0.0,23.484848,23.484848,0.37488285,0.5564808 +26.019870042800903,0.0,23.484848,23.484848,0.37488285,0.5564808 +26.02985906600952,0.0,22.727274,22.727274,0.37488285,0.5564808 +26.039552927017212,0.0,22.727274,22.727274,0.37488285,0.5564808 +26.049499988555908,0.0,24.242424,24.242424,0.37488285,0.5564808 +26.05985713005066,0.0,30.303032,30.303032,0.37488285,0.5583309 +26.06979012489319,0.0,35.60606,35.60606,0.37488285,0.5583309 +26.079877138137817,0.0,39.39394,39.39394,0.37488285,0.5583309 +26.089504957199097,0.0,43.939392,43.939392,0.37488285,0.5583309 +26.09973907470703,0.0,47.727272,47.727272,0.37488285,0.5583309 +26.10986304283142,0.0,52.272724,52.272724,0.37488285,0.5564808 +26.11988401412964,0.0,57.57576,57.57576,0.37488285,0.5564808 +26.12948513031006,0.0,62.878788,62.878788,0.37488285,0.5564808 +26.13949704170227,0.0,68.18182,68.18182,0.37488285,0.5564808 +26.14987802505493,0.0,68.18182,68.18182,0.37488285,0.5564808 +26.159877061843872,0.0,66.66667,66.66667,0.37488285,0.5564808 +26.169886112213135,0.0,65.90909,65.90909,0.37488285,0.5564808 +26.179880142211914,0.0,66.66667,66.66667,0.38425493,0.5564808 +26.189801931381226,0.0,67.42425,67.42425,0.38425493,0.5564808 +26.19988512992859,0.0,69.69697,69.69697,0.393627,0.5564808 +26.2097909450531,0.0,71.969696,71.969696,0.40299907,0.51392967 +26.219412088394165,0.0,74.24243,74.24243,0.40299907,0.51392967 +26.22967791557312,0.0,77.27273,77.27273,0.41237113,0.51392967 +26.239428997039795,0.0,81.0606,81.0606,0.41237113,0.51392967 +26.24988603591919,0.0,84.09091,84.09091,0.4217432,0.51392967 +26.259902000427246,0.0,87.878784,87.878784,0.4217432,0.50467944 +26.269904136657715,0.0,90.909096,90.909096,0.43111527,0.50467944 +26.27989411354065,0.0,93.93939,93.93939,0.44048735,0.50467944 +26.28990912437439,0.0,96.21212,96.21212,0.44048735,0.50467944 +26.29991602897644,0.0,98.48485,98.48485,0.44985944,0.50467944 +26.30987811088562,0.0,100.757576,100.757576,0.44985944,0.50467944 +26.319908142089844,0.0,101.51515,101.51515,0.44985944,0.50467944 +26.329900979995728,0.0,102.27273,102.27273,0.4592315,0.50467944 +26.33989691734314,0.0,102.27273,102.27273,0.4592315,0.50467944 +26.34954595565796,0.0,103.78788,103.78788,0.4592315,0.50467944 +26.359890937805176,0.0,104.54545,104.54545,0.4592315,0.5009793 +26.369899034500122,0.0,106.818184,106.818184,0.46860358,0.5009793 +26.37989091873169,0.0,108.333336,108.333336,0.46860358,0.5009793 +26.389890909194946,0.0,110.60606,110.60606,0.46860358,0.5009793 +26.399898052215576,0.0,112.878784,112.878784,0.46860358,0.5009793 +26.40989398956299,0.0,114.39394,114.39394,0.46860358,0.5120796 +26.419908046722412,0.0,115.909096,115.909096,0.47797564,0.5120796 +26.42989206314087,0.0,116.666664,116.666664,0.47797564,0.5120796 +26.43990397453308,0.0,117.42424,117.42424,0.47797564,0.5120796 +26.44990611076355,0.0,117.42424,117.42424,0.47797564,0.5120796 +26.459919929504395,0.0,117.42424,117.42424,0.47797564,0.50467944 +26.46991801261902,0.0,117.42424,117.42424,0.48734772,0.50467944 +26.47941303253174,0.0,117.42424,117.42424,0.48734772,0.50467944 +26.489898920059204,0.0,118.181816,118.181816,0.48734772,0.50467944 +26.499922037124634,0.0,119.69697,119.69697,0.48734772,0.50467944 +26.5098979473114,0.0,121.969696,121.969696,0.48734772,0.5028294 +26.519901037216187,0.0,124.242424,124.242424,0.49671978,0.5028294 +26.52992296218872,0.0,125.757576,125.757576,0.48734772,0.5028294 +26.539566040039062,0.0,127.27273,127.27273,0.48734772,0.5028294 +26.549904108047485,0.0,128.78787,128.78787,0.48734772,0.5028294 +26.559898138046265,0.0,130.30302,130.30302,0.48734772,0.5028294 +26.569921016693115,0.0,131.06061,131.06061,0.48734772,0.5028294 +26.57991313934326,0.0,131.81818,131.81818,0.49671978,0.5028294 +26.58990502357483,0.0,131.81818,131.81818,0.49671978,0.5028294 +26.599517107009888,0.0,131.06061,131.06061,0.49671978,0.5028294 +26.609609127044678,0.0,130.30302,130.30302,0.49671978,0.50467944 +26.619502067565918,0.0,129.54546,129.54546,0.49671978,0.50467944 +26.62991714477539,0.0,128.78787,128.78787,0.49671978,0.50467944 +26.63991093635559,0.0,129.54546,129.54546,0.49671978,0.50467944 +26.649932146072388,0.0,130.30302,130.30302,0.49671978,0.50467944 +26.659905910491943,0.0,131.06061,131.06061,0.50609183,0.5028294 +26.66992998123169,0.0,131.81818,131.81818,0.50609183,0.5028294 +26.679960012435913,0.0,133.33334,133.33334,0.50609183,0.5028294 +26.68971300125122,0.0,134.09091,134.09091,0.50609183,0.5028294 +26.69966411590576,0.0,134.8485,134.8485,0.50609183,0.5028294 +26.7099449634552,0.0,134.8485,134.8485,0.50609183,0.51392967 +26.719929933547974,0.0,134.8485,134.8485,0.50609183,0.51392967 +26.729931116104126,0.0,134.8485,134.8485,0.49671978,0.51392967 +26.739619970321655,0.0,134.09091,134.09091,0.49671978,0.51392967 +26.74981713294983,0.0,133.33334,133.33334,0.49671978,0.51392967 +26.759932041168213,0.0,131.81818,131.81818,0.49671978,0.50467944 +26.769920110702515,0.0,130.30302,130.30302,0.49671978,0.50467944 +26.779860019683838,0.0,128.78787,128.78787,0.49671978,0.50467944 +26.789942979812622,0.0,128.78787,128.78787,0.49671978,0.50467944 +26.799932956695557,0.0,128.0303,128.0303,0.49671978,0.50467944 +26.809937953948975,0.0,128.0303,128.0303,0.49671978,0.5120796 +26.819929122924805,0.0,128.0303,128.0303,0.49671978,0.5120796 +26.829401969909668,0.0,128.0303,128.0303,0.49671978,0.5120796 +26.839853048324585,0.0,128.78787,128.78787,0.49671978,0.5120796 +26.849936962127686,0.0,128.78787,128.78787,0.49671978,0.5120796 +26.859941959381104,0.0,129.54546,129.54546,0.48734772,0.48247886 +26.869631052017212,0.0,130.30302,130.30302,0.48734772,0.48247886 +26.879941940307617,0.0,131.06061,131.06061,0.48734772,0.48247886 +26.889930963516235,0.0,131.81818,131.81818,0.47797564,0.48247886 +26.89995312690735,0.0,132.57574,132.57574,0.48734772,0.48247886 +26.90995192527771,0.0,133.33334,133.33334,0.48734772,0.5305801 +26.91950297355652,0.0,134.09091,134.09091,0.48734772,0.5305801 +26.929779052734375,0.0,135.60606,135.60606,0.48734772,0.5305801 +26.939934015274048,0.0,136.36365,136.36365,0.48734772,0.5305801 +26.949953079223633,0.0,137.87878,137.87878,0.48734772,0.5305801 +26.95994806289673,0.0,140.15152,140.15152,0.48734772,0.50467944 +26.969972133636475,0.0,142.42424,142.42424,0.48734772,0.50467944 +26.97941303253174,0.0,145.45454,145.45454,0.49671978,0.50467944 +26.989970922470093,0.0,147.72726,147.72726,0.49671978,0.50467944 +26.99965810775757,0.0,150.0,150.0,0.49671978,0.50467944 +27.009611129760742,0.0,153.0303,153.0303,0.49671978,0.5028294 +27.01970601081848,0.0,156.06061,156.06061,0.50609183,0.5028294 +27.029974937438965,0.0,159.09091,159.09091,0.50609183,0.5028294 +27.039971113204956,0.0,162.87878,162.87878,0.50609183,0.5028294 +27.0499529838562,0.0,166.66667,166.66667,0.50609183,0.5028294 +27.05956792831421,0.0,170.45454,170.45454,0.50609183,0.49912927 +27.0699520111084,0.0,174.24242,174.24242,0.51546395,0.49912927 +27.079971075057983,0.0,178.78787,178.78787,0.51546395,0.49912927 +27.089946031570435,0.0,182.57576,182.57576,0.51546395,0.49912927 +27.099684953689575,0.0,187.12122,187.12122,0.524836,0.49912927 +27.109496116638184,0.0,190.90909,190.90909,0.524836,0.50467944 +27.119961977005005,0.0,195.45456,195.45456,0.53420806,0.50467944 +27.129645109176636,0.0,200.0,200.0,0.53420806,0.50467944 +27.13996410369873,0.0,204.54546,204.54546,0.53420806,0.50467944 +27.149805068969727,0.0,209.0909,209.0909,0.5435801,0.50467944 +27.159970998764038,0.0,214.39394,214.39394,0.5435801,0.49357912 +27.169965028762817,0.0,220.45454,220.45454,0.55295223,0.49357912 +27.179971933364868,0.0,225.75757,225.75757,0.55295223,0.49357912 +27.1896550655365,0.0,231.06061,231.06061,0.55295223,0.49357912 +27.19957995414734,0.0,237.12122,237.12122,0.5623243,0.49357912 +27.209984064102173,0.0,242.42426,242.42426,0.5623243,0.47507864 +27.219505071640015,0.0,246.9697,246.9697,0.5623243,0.47507864 +27.229969024658203,0.0,252.27272,252.27272,0.5623243,0.47507864 +27.239988088607788,0.0,256.0606,256.0606,0.5623243,0.47507864 +27.249979972839355,0.0,260.60605,260.60605,0.57169634,0.47507864 +27.259664058685303,0.0,263.63635,263.63635,0.57169634,0.49542922 +27.269824028015137,0.0,266.6667,266.6667,0.57169634,0.49542922 +27.279568910598755,0.0,268.9394,268.9394,0.57169634,0.49542922 +27.289523124694824,0.0,271.21213,271.21213,0.5810684,0.49542922 +27.299976110458374,0.0,272.7273,272.7273,0.5810684,0.49542922 +27.309968948364258,0.0,273.48486,273.48486,0.5810684,0.4917291 +27.31997799873352,0.0,274.24243,274.24243,0.5810684,0.4917291 +27.32962703704834,0.0,274.24243,274.24243,0.5810684,0.4917291 +27.339982986450195,0.0,273.48486,273.48486,0.5810684,0.4917291 +27.34998893737793,0.0,272.7273,272.7273,0.5904405,0.4917291 +27.360002040863037,0.0,271.9697,271.9697,0.5904405,0.5213299 +27.369935989379883,0.0,271.21213,271.21213,0.5810684,0.5213299 +27.37947702407837,0.0,270.45456,270.45456,0.5810684,0.5213299 +27.389683961868286,0.0,270.45456,270.45456,0.57169634,0.5213299 +27.40000295639038,0.0,270.45456,270.45456,0.5810684,0.5213299 +27.410009145736694,0.0,270.45456,270.45456,0.5810684,0.52502996 +27.419994115829468,0.0,271.21213,271.21213,0.5810684,0.52502996 +27.429460048675537,0.0,271.9697,271.9697,0.5904405,0.52502996 +27.439571142196655,0.0,272.7273,272.7273,0.5904405,0.52502996 +27.449995040893555,0.0,272.7273,272.7273,0.5810684,0.52502996 +27.459985971450806,0.0,271.21213,271.21213,0.5810684,0.52502996 +27.4699969291687,0.0,268.18182,268.18182,0.57169634,0.52502996 +27.479706048965454,0.0,262.12122,262.12122,0.5623243,0.52502996 +27.49000906944275,0.0,253.78787,253.78787,0.55295223,0.52502996 +27.49998903274536,0.0,243.18182,243.18182,0.53420806,0.52502996 +27.509995937347412,0.0,231.06061,231.06061,0.524836,0.4843289 +27.51968502998352,0.0,217.42424,217.42424,0.50609183,0.4843289 +27.529983043670654,0.0,203.78787,203.78787,0.49671978,0.4843289 +27.540024042129517,0.0,188.63637,188.63637,0.48734772,0.4843289 +27.550009965896606,0.0,172.72726,172.72726,0.46860358,0.4843289 +27.56000804901123,0.0,156.81818,156.81818,0.4592315,0.5120796 +27.57000207901001,0.0,140.15152,140.15152,0.43111527,0.5120796 +27.58001399040222,0.0,125.757576,125.757576,0.41237113,0.5120796 +27.590006113052368,0.0,111.36363,111.36363,0.38425493,0.5120796 +27.599442958831787,0.0,98.48485,98.48485,0.3561387,0.5120796 +27.609885931015015,0.0,84.84849,84.84849,0.31865042,0.51762974 +27.62000608444214,0.0,73.48485,73.48485,0.29990628,0.51762974 +27.629889965057373,0.0,62.121212,62.121212,0.27179006,0.51762974 +27.63999891281128,0.0,50.757576,50.757576,0.24367386,0.51762974 +27.649461030960083,0.01,40.90909,40.90909,0.21555763,0.51762974 +27.660006999969482,0.02,31.818182,31.818182,0.1968135,0.5305801 +27.670016050338745,0.03,22.727274,22.727274,0.16869728,0.5305801 +27.679621934890747,0.04,18.181818,18.181818,0.14995314,0.5305801 +27.690027952194214,0.049999997,15.909091,15.909091,0.12183693,0.5305801 +27.700002908706665,0.06,14.39394,14.39394,0.10309278,0.5305801 +27.71000099182129,0.07,13.636364,13.636364,0.08434864,0.51392967 +27.72004508972168,0.08,12.121212,12.121212,0.0656045,0.51392967 +27.73002600669861,0.08,10.606061,10.606061,0.046860356,0.51392967 +27.739431142807007,0.089999996,9.848485,9.848485,0.037488285,0.51392967 +27.750030040740967,0.099999994,9.090909,9.090909,0.028116215,0.51392967 +27.75979495048523,0.11,7.575758,7.575758,0.018744143,0.51392967 +27.77003002166748,0.12,6.818182,6.818182,0.0,0.51392967 +27.779757976531982,0.13,6.060606,6.060606,0.0,0.51392967 +27.790036916732788,0.14,5.3030305,5.3030305,0.0,0.51392967 +27.79951310157776,0.14999999,4.5454545,4.5454545,0.0,0.51392967 +27.810020923614502,0.16,3.787879,3.787879,0.0,0.52502996 +27.820011138916016,0.17,3.030303,3.030303,0.0,0.52502996 +27.829468965530396,0.17999999,2.2727273,2.2727273,0.0,0.52502996 +27.840040922164917,0.19,1.5151515,1.5151515,0.0,0.52502996 +27.85002303123474,0.19999999,1.5151515,1.5151515,0.0,0.52502996 +27.86003804206848,0.21,0.75757575,0.75757575,0.0,0.52317995 +27.870019912719727,0.22,0.0,0.0,0.0,0.52317995 +27.88003396987915,0.22,0.0,0.0,0.0,0.52317995 +27.88953995704651,0.22999999,0.0,0.0,0.0,0.52317995 +27.900038957595825,0.24,0.0,0.0,0.0,0.52317995 +27.90945291519165,0.24,0.0,0.0,0.0,0.5416804 +27.919527053833008,0.25,0.0,0.0,0.0,0.5416804 +27.93002700805664,0.25,0.0,0.0,0.0,0.5416804 +27.940052032470703,0.26,0.0,0.0,0.0,0.5416804 +27.950066089630127,0.26999998,0.0,0.0,0.0,0.5416804 +27.9600510597229,0.26999998,0.0,0.0,0.0,0.56018096 +27.970060110092163,0.28,0.0,0.0,0.0,0.56018096 +27.979783058166504,0.28,0.0,0.0,0.0,0.56018096 +27.990040063858032,0.29,0.0,0.0,0.0,0.56018096 +27.9999840259552,0.29999998,0.0,0.0,0.0,0.56018096 +28.009557008743286,0.29999998,0.0,0.0,0.0,0.5694312 +28.020044088363647,0.31,0.0,0.0,0.0,0.5694312 +28.03004813194275,0.31,0.0,0.0,0.0,0.5694312 +28.039608001708984,0.32,0.0,0.0,0.0,0.5694312 +28.050063133239746,0.32,0.0,0.0,0.0,0.5694312 +28.060068130493164,0.32999998,0.0,0.0,0.0,0.5990319 +28.069643020629883,0.32999998,0.0,0.0,0.0,0.5990319 +28.079987049102783,0.32999998,0.0,0.0,0.0,0.5990319 +28.090054035186768,0.32999998,0.0,0.0,0.0,0.5990319 +28.099671125411987,0.32999998,0.0,0.0,0.0,0.5990319 +28.110059022903442,0.32999998,0.0,0.0,0.0,0.6230826 +28.119982957839966,0.34,0.0,0.0,0.0,0.6230826 +28.130008935928345,0.34,0.0,0.0,0.0,0.6230826 +28.14005208015442,0.34,0.0,0.0,0.0,0.6230826 +28.149996995925903,0.34,0.0,0.0,0.0,0.6230826 +28.1600079536438,0.34,0.0,0.0,0.0,0.6822841 +28.169531106948853,0.34,0.0,0.0,0.0,0.6822841 +28.180009126663208,0.34,0.0,0.0,0.0,0.6822841 +28.18974804878235,0.34,0.0,0.0,0.0,0.6822841 +28.199980974197388,0.34,0.0,0.0,0.0,0.6822841 +28.210000038146973,0.34,0.0,0.0,0.0,0.70818484 +28.219993114471436,0.35,0.0,0.0,0.0,0.70818484 +28.23006510734558,0.35,0.0,0.0,0.0,0.70818484 +28.239957094192505,0.35,0.0,0.0,0.0,0.70818484 +28.24968910217285,0.35,0.0,0.0,0.0,0.70818484 +28.25946807861328,0.35,0.0,0.0,0.0,0.7451858 +28.269987106323242,0.35,0.0,0.0,0.0,0.7451858 +28.279839038848877,0.35,0.0,0.0,0.0,0.7451858 +28.289992094039917,0.35,0.0,0.0,0.0,0.7451858 +28.299601078033447,0.35,0.0,0.0,0.0,0.7451858 +28.30999493598938,0.35,0.0,0.0,0.0,0.7618363 +28.319971084594727,0.35,0.0,0.0,0.0,0.7618363 +28.329869031906128,0.35,0.0,0.0,0.0,0.7618363 +28.339981079101562,0.35,0.0,0.0,0.0,0.7618363 +28.34968113899231,0.35,0.0,0.0,0.0,0.7618363 +28.359983921051025,0.35,0.0,0.0,0.0,0.72853535 +28.36989712715149,0.35,0.0,0.0,0.0,0.72853535 +28.379984140396118,0.35,0.0,0.0,0.0,0.72853535 +28.389970064163208,0.35,0.0,0.0,0.0,0.72853535 +28.399950981140137,0.35,0.0,0.0,0.0,0.72853535 +28.40998411178589,0.35,0.0,0.0,0.0,0.7784867 +28.419974088668823,0.35,0.0,0.0,0.0,0.7784867 +28.42972993850708,0.35,0.0,0.0,0.0,0.7784867 +28.43991994857788,0.34,0.0,0.0,0.0,0.7784867 +28.44990611076355,0.34,0.0,0.0,0.0,0.7784867 +28.459984064102173,0.34,0.0,0.0,0.0,0.789587 +28.46998405456543,0.34,0.0,0.0,0.0,0.789587 +28.479955911636353,0.34,0.0,0.0,0.0,0.789587 +28.489974975585938,0.34,0.0,0.0,0.0,0.789587 +28.499972105026245,0.34,0.0,0.0,0.0,0.789587 +28.50997805595398,0.34,0.0,0.0,0.0,0.7877369 +28.51993703842163,0.34,0.0,0.0,0.0,0.7877369 +28.529978036880493,0.34,0.0,0.0,0.0,0.7877369 +28.539391040802002,0.34,0.0,0.0,0.0,0.7877369 +28.549971103668213,0.34,0.0,0.0,0.0,0.7877369 +28.559972047805786,0.34,0.0,0.0,0.0,0.7877369 +28.569978952407837,0.34,0.0,0.0,0.0,0.7877369 +28.579957008361816,0.34,0.0,0.0,0.0,0.7877369 +28.58997392654419,0.34,0.0,0.0,0.0,0.7877369 +28.599939107894897,0.34,0.0,0.0,0.0,0.7877369 +28.609967947006226,0.34,0.0,0.0,0.0,0.79513717 +28.619960069656372,0.34,0.0,0.0,0.0,0.79513717 +28.629606008529663,0.34,0.0,0.0,0.0,0.79513717 +28.63993811607361,0.34,0.0,0.0,0.0,0.79513717 +28.649950981140137,0.34,0.0,0.0,0.0,0.79513717 +28.659475088119507,0.34,0.0,0.0,0.0,0.82843804 +28.66997194290161,0.34,0.0,0.0,0.0,0.82843804 +28.679935932159424,0.34,0.0,0.0,0.0,0.82843804 +28.68995499610901,0.34,0.0,0.0,0.0,0.82843804 +28.699975967407227,0.34,0.0,0.0,0.0,0.82843804 +28.709964990615845,0.35,0.0,0.0,0.0,0.83768827 +28.719599962234497,0.35,0.0,0.0,0.0,0.83768827 +28.729954957962036,0.35,0.0,0.0,0.0,0.83768827 +28.7396719455719,0.35,0.0,0.0,0.0,0.83768827 +28.749958038330078,0.35,0.0,0.0,0.0,0.83768827 +28.759972095489502,0.35,0.0,0.0,0.0,0.83768827 +28.76994013786316,0.35,0.0,0.0,0.0,0.83768827 +28.77995991706848,0.35,0.0,0.0,0.0,0.83768827 +28.789971113204956,0.35999998,0.0,0.0,0.0,0.83768827 +28.799936056137085,0.35999998,0.0,0.0,0.0,0.83768827 +28.809705018997192,0.35999998,0.0,0.0,0.0,0.83768827 +28.81980013847351,0.35999998,0.0,0.0,0.0,0.83768827 +28.829401969909668,0.35999998,0.0,0.0,0.0,0.83768827 +28.83993411064148,0.35999998,0.0,0.0,0.0,0.83768827 +28.849937915802002,0.35999998,0.0,0.0,0.0,0.83768827 +28.859971046447754,0.35999998,0.0,0.0,0.0,0.85433877 +28.869745016098022,0.35999998,0.0,0.0,0.0,0.85433877 +28.879915952682495,0.35999998,0.0,0.0,0.0,0.85433877 +28.889962911605835,0.35999998,0.0,0.0,0.0,0.85433877 +28.899564027786255,0.35999998,0.0,0.0,0.0,0.85433877 +28.909941911697388,0.35999998,0.0,0.0,0.0,0.8321382 +28.919543027877808,0.35999998,0.0,0.0,0.0,0.8321382 +28.92944312095642,0.37,0.0,0.0,0.0,0.8321382 +28.939942121505737,0.37,0.0,0.0,0.0,0.8321382 +28.949934005737305,0.37,0.0,0.0,0.0,0.8321382 +28.959944009780884,0.37,0.0,0.0,0.0,0.85988885 +28.969942092895508,0.37,0.0,0.0,0.0,0.85988885 +28.979942083358765,0.37,0.0,0.0,0.0,0.85988885 +28.989619970321655,0.37,0.0,0.0,0.0,0.85988885 +28.99991011619568,0.37,0.0,0.0,0.0,0.85988885 +29.009408950805664,0.37,0.0,0.0,0.0,0.8450884 +29.019922018051147,0.37,0.0,0.0,0.0,0.8450884 +29.02992606163025,0.38,0.0,0.0,0.0,0.8450884 +29.039896965026855,0.38,0.0,0.0,0.0,0.8450884 +29.049859046936035,0.38,0.0,0.0,0.0,0.8450884 +29.059948921203613,0.38,0.0,0.0,0.0,0.8561887 +29.069935083389282,0.38,0.0,0.0,0.0,0.8561887 +29.079555988311768,0.38,0.0,0.0,0.0,0.8561887 +29.089421033859253,0.38,0.0,0.0,0.0,0.8561887 +29.09944200515747,0.38,0.0,0.0,0.0,0.8561887 +29.109925985336304,0.38,0.0,0.0,0.0,0.8746893 +29.119905948638916,0.38,0.0,0.0,0.0,0.8746893 +29.12993097305298,0.38,0.0,0.0,0.0,0.8746893 +29.139917135238647,0.38,0.0,0.0,0.0,0.8746893 +29.149521112442017,0.38,0.0,0.0,0.0,0.8746893 +29.159927129745483,0.38,0.0,0.0,0.0,0.8561887 +29.169487953186035,0.38,0.0,0.0,0.0,0.8561887 +29.17960000038147,0.38,0.0,0.0,0.0,0.8561887 +29.18952512741089,0.38,0.0,0.0,0.0,0.8561887 +29.19989514350891,0.38,0.0,0.0,0.0,0.8561887 +29.209922075271606,0.38,0.0,0.0,0.0,0.7729366 +29.219918966293335,0.38,0.0,0.0,0.0,0.7729366 +29.229531049728394,0.38,0.0,0.0,0.0,0.7729366 +29.239891052246094,0.38,0.0,0.0,0.0,0.7729366 +29.249913930892944,0.39,0.0,0.0,0.0,0.7729366 +29.259443998336792,0.39,0.0,0.0,0.0,0.7451858 +29.26980495452881,0.39,0.0,0.0,0.0,0.7451858 +29.279560089111328,0.39,0.0,0.0,0.0,0.7451858 +29.289938926696777,0.39,0.0,0.0,0.0,0.7451858 +29.299930095672607,0.39,0.0,0.0,0.0,0.7451858 +29.309659957885742,0.39,0.0,0.0,0.0,0.74703586 +29.319911003112793,0.39,0.0,0.0,0.0,0.74703586 +29.329901933670044,0.39,0.0,0.0,0.0,0.74703586 +29.339947938919067,0.39,0.0,0.0,0.0,0.74703586 +29.349404096603394,0.39,0.0,0.0,0.0,0.74703586 +29.35992193222046,0.39,0.0,0.0,0.0,0.7488859 +29.36964201927185,0.39,0.0,0.0,0.0,0.7488859 +29.379898071289062,0.39,0.0,0.0,0.0,0.7488859 +29.389835119247437,0.39,0.0,0.0,0.0,0.7488859 +29.399877071380615,0.39,0.0,0.0,0.0,0.7488859 +29.40989899635315,0.39,0.0,0.0,0.0,0.70818484 +29.419901132583618,0.39999998,0.0,0.0,0.0,0.70818484 +29.429450035095215,0.39999998,0.0,0.0,0.0,0.70818484 +29.439868927001953,0.39999998,0.0,0.0,0.0,0.70818484 +29.449899911880493,0.39999998,0.0,0.0,0.0,0.70818484 +29.459681034088135,0.39999998,0.0,0.0,0.0,0.6822841 +29.469897031784058,0.39999998,0.0,0.0,0.0,0.6822841 +29.479877948760986,0.39999998,0.0,0.0,0.0,0.6822841 +29.48958396911621,0.41,0.0,0.0,0.0,0.6822841 +29.49988603591919,0.41,0.0,0.0,0.0,0.6822841 +29.509902954101562,0.41,0.0,0.0,0.0,0.6989346 +29.519865036010742,0.41,0.0,0.0,0.0,0.6989346 +29.529896020889282,0.41,0.0,0.0,0.0,0.6989346 +29.539400100708008,0.41,0.0,0.0,0.0,0.6989346 +29.549417972564697,0.41,0.0,0.0,0.0,0.6989346 +29.55991291999817,0.41,0.0,0.0,0.0,0.61938244 +29.569917917251587,0.41,0.0,0.0,0.0,0.61938244 +29.579890966415405,0.42,0.0,0.0,0.0,0.61938244 +29.589888095855713,0.42,0.0,0.0,0.0,0.61938244 +29.599862098693848,0.42,0.0,0.0,0.0,0.61938244 +29.609888076782227,0.42,0.0,0.0,0.0,0.5472306 +29.619874954223633,0.42,0.0,0.0,0.0,0.5472306 +29.629882097244263,0.42,0.0,0.0,0.0,0.5472306 +29.639570951461792,0.42,0.0,0.0,0.0,0.5472306 +29.649879932403564,0.42999998,0.0,0.0,0.0,0.5472306 +29.65990710258484,0.42999998,0.0,0.0,0.0,0.5379803 +29.669409036636353,0.42999998,0.0,0.0,0.0,0.5379803 +29.679856061935425,0.42999998,0.0,0.0,0.0,0.5379803 +29.68987512588501,0.42999998,0.0,0.0,0.0,0.5379803 +29.699893951416016,0.42999998,0.0,0.0,0.0,0.5379803 +29.7098970413208,0.42999998,0.0,0.0,0.0,0.49912927 +29.71941113471985,0.42999998,0.0,0.0,0.0,0.49912927 +29.72975492477417,0.42999998,0.0,0.0,0.0,0.49912927 +29.739892959594727,0.42999998,0.0,0.0,0.0,0.49912927 +29.749876022338867,0.42999998,0.0,0.0,0.0,0.49912927 +29.759871006011963,0.42999998,0.0,0.0,0.0,0.4695285 +29.76987314224243,0.42999998,0.0,0.0,0.0,0.4695285 +29.779865980148315,0.42999998,0.0,0.0,0.0,0.4695285 +29.78986692428589,0.42999998,0.0,0.0,0.0,0.4695285 +29.799415111541748,0.42999998,0.0,0.0,0.0,0.4695285 +29.80988907814026,0.42999998,0.0,0.0,0.0,0.48062876 +29.81987690925598,0.42999998,0.0,0.0,0.0,0.48062876 +29.829867124557495,0.42999998,0.0,0.0,0.0,0.48062876 +29.839844942092896,0.42999998,0.0,0.0,0.0,0.48062876 +29.849868059158325,0.42999998,0.0,0.0,0.0,0.48062876 +29.859878063201904,0.42999998,0.0,0.0,0.0,0.48062876 +29.86961007118225,0.42999998,0.0,0.0,0.0,0.48062876 +29.87956213951111,0.42999998,0.0,0.0,0.0,0.48062876 +29.88986611366272,0.42999998,0.0,0.0,0.0,0.48062876 +29.89987301826477,0.42999998,0.0,0.0,0.0,0.48062876 +29.90967893600464,0.42999998,0.0,0.0,0.0,0.4732286 +29.919466018676758,0.42999998,0.0,0.0,0.0,0.4732286 +29.92945909500122,0.42999998,0.0,0.0,0.0,0.4732286 +29.939851999282837,0.42999998,0.0,0.0,0.0,0.4732286 +29.949862957000732,0.42999998,0.0,0.0,0.0,0.4732286 +29.959726095199585,0.42999998,0.0,0.0,0.0,0.47877875 +29.969877004623413,0.42999998,0.0,0.0,0.0,0.47877875 +29.97984790802002,0.42999998,0.0,0.0,0.0,0.47877875 +29.989871978759766,0.42999998,0.0,0.0,0.0,0.47877875 +29.99983811378479,0.42999998,0.0,0.0,0.0,0.47877875 +30.009851932525635,0.42999998,0.0,0.0,0.0,0.4214272 +30.019434928894043,0.42999998,0.0,0.0,0.0,0.4214272 +30.029847145080566,0.42999998,0.0,0.0,0.0,0.4214272 +30.039824962615967,0.42999998,0.0,0.0,0.0,0.4214272 +30.04986310005188,0.42999998,0.0,0.0,0.0,0.4214272 +30.05945110321045,0.42999998,0.0,0.0,0.0,0.33262488 +30.069844007492065,0.42999998,0.0,0.0,0.0,0.33262488 +30.079817056655884,0.42999998,0.0,0.0,0.0,0.33262488 +30.0898699760437,0.42999998,0.0,0.0,0.0,0.33262488 +30.0994770526886,0.42999998,0.0,0.0,0.0,0.33262488 +30.10984992980957,0.42999998,0.0,0.0,0.0,0.31782445 +30.119842052459717,0.42999998,0.0,0.0,0.0,0.31782445 +30.12987208366394,0.42999998,0.0,0.0,0.0,0.31782445 +30.139482975006104,0.42999998,0.0,0.0,0.0,0.31782445 +30.14983892440796,0.42999998,0.0,0.0,0.0,0.31782445 +30.159848928451538,0.42999998,0.0,0.0,0.0,0.3233746 +30.1698579788208,0.42999998,0.0,0.0,0.0,0.3233746 +30.17985200881958,0.42999998,0.0,0.0,0.0,0.3233746 +30.189516067504883,0.42999998,0.0,0.0,0.0,0.3233746 +30.19980502128601,0.42,0.0,0.0,0.0,0.3233746 +30.2098331451416,0.42,0.0,0.0,0.0,0.30672416 +30.219824075698853,0.42,0.0,0.0,0.0,0.30672416 +30.229846000671387,0.42,0.0,0.0,0.0,0.30672416 +30.239821910858154,0.42,0.0,0.0,0.0,0.30672416 +30.249851942062378,0.42,0.0,0.0,0.0,0.30672416 +30.259843111038208,0.42,0.0,0.0,0.0,0.30672416 +30.269833087921143,0.42999998,0.0,0.0,0.0,0.30672416 +30.279804944992065,0.42999998,0.0,0.0,0.0,0.30672416 +30.289847135543823,0.42999998,0.0,0.0,0.0,0.30672416 +30.299832105636597,0.42999998,0.0,0.0,0.0,0.30672416 +30.309831142425537,0.42999998,0.0,0.0,0.0,0.26602313 +30.319447994232178,0.42999998,0.0,0.0,0.0,0.26602313 +30.329808950424194,0.42999998,0.0,0.0,0.0,0.26602313 +30.339838981628418,0.42999998,0.0,0.0,0.0,0.26602313 +30.349826097488403,0.42999998,0.0,0.0,0.0,0.26602313 +30.35983896255493,0.42999998,0.0,0.0,0.0,0.28637367 +30.369406938552856,0.42999998,0.0,0.0,0.0,0.28637367 +30.37983012199402,0.42999998,0.0,0.0,0.0,0.28637367 +30.38982892036438,0.42999998,0.0,0.0,0.0,0.28637367 +30.39979910850525,0.42999998,0.0,0.0,0.0,0.28637367 +30.409832000732422,0.42999998,0.0,0.0,0.0,0.20127137 +30.419780015945435,0.42999998,0.0,0.0,0.0,0.20127137 +30.429832935333252,0.42999998,0.0,0.0,0.0,0.20127137 +30.43982195854187,0.42999998,0.0,0.0,0.0,0.20127137 +30.44946312904358,0.42999998,0.0,0.0,0.0,0.20127137 +30.45948600769043,0.42999998,0.0,0.0,0.0,0.1716706 +30.46981406211853,0.44,0.0,0.0,0.0,0.1716706 +30.47979211807251,0.44,0.0,0.0,0.0,0.1716706 +30.48983907699585,0.44,0.0,0.0,0.0,0.1716706 +30.49981713294983,0.44,0.0,0.0,0.0,0.1716706 +30.50973606109619,0.44,0.0,0.0,0.0,0.1346696 +30.51978611946106,0.44,0.0,0.0,0.0,0.1346696 +30.529678106307983,0.42999998,0.0,0.0,0.0,0.1346696 +30.539801120758057,0.42999998,0.0,0.0,0.0,0.1346696 +30.549556016921997,0.42999998,0.0,0.0,0.0,0.1346696 +30.55947709083557,0.42999998,0.0,0.0,0.0,0.1383697 +30.569809913635254,0.44,0.0,0.0,0.0,0.1383697 +30.579466104507446,0.44,0.0,0.0,0.0,0.1383697 +30.58981204032898,0.44,0.0,0.0,0.0,0.1383697 +30.59969210624695,0.44,0.0,0.0,0.0,0.1383697 +30.60940194129944,0.45,0.0,0.0,0.0,0.11986922 +30.61980104446411,0.45,0.0,0.0,0.0,0.11986922 +30.629809141159058,0.45,0.0,0.0,0.0,0.11986922 +30.63959813117981,0.45,0.0,0.0,0.0,0.11986922 +30.64965796470642,0.45999998,0.0,0.0,0.0,0.11986922 +30.65982413291931,0.45999998,0.0,0.0,0.0,0.09581858 +30.669800996780396,0.45999998,0.0,0.0,0.0,0.09581858 +30.67979097366333,0.45999998,0.0,0.0,0.0,0.09581858 +30.689631938934326,0.47,0.0,0.0,0.0,0.09581858 +30.699798107147217,0.47,0.0,0.0,0.0,0.09581858 +30.709487915039062,0.47,0.0,0.0,0.0,0.10506884 +30.719773054122925,0.47,0.0,0.0,0.0,0.10506884 +30.72962498664856,0.47,0.0,0.0,0.0,0.10506884 +30.739795923233032,0.48,0.0,0.0,0.0,0.10506884 +30.749807119369507,0.48,0.0,0.0,0.0,0.10506884 +30.759796142578125,0.48,0.0,0.0,0.0,0.10691887 +30.76980495452881,0.48,0.0,0.0,0.0,0.10691887 +30.779582977294922,0.48,0.0,0.0,0.0,0.10691887 +30.78979206085205,0.48,0.0,0.0,0.0,0.10691887 +30.79975700378418,0.48,0.0,0.0,0.0,0.10691887 +30.809787034988403,0.48999998,0.0,0.0,0.0,0.11986922 +30.819709062576294,0.48999998,0.0,0.0,0.0,0.11986922 +30.829803943634033,0.48999998,0.0,0.0,0.0,0.11986922 +30.839494943618774,0.48999998,0.0,0.0,0.0,0.11986922 +30.849775075912476,0.48999998,0.0,0.0,0.0,0.11986922 +30.859803915023804,0.5,0.0,0.0,0.0,0.08101819 +30.869504928588867,0.5,0.0,0.0,0.0,0.08101819 +30.879759073257446,0.5,0.0,0.0,0.0,0.08101819 +30.88978099822998,0.5,0.0,0.0,0.0,0.08101819 +30.899776935577393,0.51,0.0,0.0,0.0,0.08101819 +30.909668922424316,0.51,0.0,0.0,0.0,0.07546805 +30.91976809501648,0.51,0.0,0.0,0.0,0.07546805 +30.92977499961853,0.51,0.0,0.0,0.0,0.07546805 +30.939788103103638,0.51,0.0,0.0,0.0,0.07546805 +30.94977307319641,0.51,0.0,0.0,0.0,0.07546805 +30.959413051605225,0.51,0.0,0.0,0.0,0.068067834 +30.969552040100098,0.51,0.0,0.0,0.0,0.068067834 +30.97979497909546,0.51,0.0,0.0,0.0,0.068067834 +30.98978304862976,0.51,0.0,0.0,0.0,0.068067834 +30.999758005142212,0.51,0.0,0.0,0.0,0.068067834 +31.00976300239563,0.51,0.0,0.0,0.0,0.049567357 +31.01947593688965,0.51,0.0,0.0,0.0,0.049567357 +31.02976703643799,0.51,0.0,0.0,0.0,0.049567357 +31.03975009918213,0.51,0.0,0.0,0.0,0.049567357 +31.049772024154663,0.51,0.0,0.0,0.0,0.049567357 +31.05980396270752,0.52,0.0,0.0,0.0,0.0551175 +31.069767951965332,0.52,0.0,0.0,0.0,0.0551175 +31.079754114151,0.52,0.0,0.0,0.0,0.0551175 +31.08977699279785,0.52,0.0,0.0,0.0,0.0551175 +31.099581003189087,0.52,0.0,0.0,0.0,0.0551175 +31.109688997268677,0.52,0.0,0.0,0.0,0.049567357 +31.119679927825928,0.52,0.0,0.0,0.0,0.049567357 +31.12976098060608,0.52,0.0,0.0,0.0,0.049567357 +31.139770984649658,0.52,0.0,0.0,0.0,0.049567357 +31.149774074554443,0.52,0.0,0.0,0.0,0.049567357 +31.159765005111694,0.52,0.0,0.0,0.0,0.031066857 +31.16975712776184,0.52,0.0,0.0,0.0,0.031066857 +31.179763078689575,0.52,0.0,0.0,0.0,0.031066857 +31.18976402282715,0.52,0.0,0.0,0.0,0.031066857 +31.19974112510681,0.52,0.0,0.0,0.0,0.031066857 +31.20975613594055,0.52,0.0,0.0,0.0,0.04586726 +31.219767093658447,0.52,0.0,0.0,0.0,0.04586726 +31.229597091674805,0.52,0.0,0.0,0.0,0.04586726 +31.239504098892212,0.52,0.0,0.0,0.0,0.04586726 +31.249767065048218,0.52,0.0,0.0,0.0,0.04586726 +31.259762048721313,0.52,0.0,0.0,0.0,0.04031712 +31.26975703239441,0.52,0.0,0.0,0.0,0.04031712 +31.279731035232544,0.52,0.0,0.0,0.0,0.04031712 +31.28975200653076,0.51,0.0,0.0,0.0,0.04031712 +31.299756050109863,0.51,0.0,0.0,0.0,0.04031712 +31.30975914001465,0.51,0.0,0.0,0.0,0.053267453 +31.31953501701355,0.51,0.0,0.0,0.0,0.053267453 +31.329755067825317,0.51,0.0,0.0,0.0,0.053267453 +31.33974599838257,0.51,0.0,0.0,0.0,0.053267453 +31.34963297843933,0.51,0.0,0.0,0.0,0.053267453 +31.359621047973633,0.51,0.0,0.0,0.0,0.049567357 +31.36974000930786,0.51,0.0,0.0,0.0,0.049567357 +31.379748106002808,0.51,0.0,0.0,0.0,0.049567357 +31.389760971069336,0.51,0.0,0.0,0.0,0.049567357 +31.399739980697632,0.51,0.0,0.0,0.0,0.049567357 +31.409748077392578,0.51,0.0,0.0,0.0,0.031066857 +31.419745922088623,0.51,0.0,0.0,0.0,0.031066857 +31.42974305152893,0.51,0.0,0.0,0.0,0.031066857 +31.43972110748291,0.51,0.0,0.0,0.0,0.031066857 +31.449737071990967,0.51,0.0,0.0,0.0,0.031066857 +31.45975112915039,0.51,0.0,0.0,0.0,0.053267453 +31.469727039337158,0.51,0.0,0.0,0.0,0.053267453 +31.479444980621338,0.51,0.0,0.0,0.0,0.053267453 +31.489675998687744,0.51,0.0,0.0,0.0,0.053267453 +31.49973201751709,0.51,0.0,0.0,0.0,0.053267453 +31.509745121002197,0.51,0.0,0.0,0.0,0.051417407 +31.519716024398804,0.51,0.0,0.0,0.0,0.051417407 +31.529730081558228,0.51,0.0,0.0,0.0,0.051417407 +31.53972291946411,0.51,0.0,0.0,0.0,0.051417407 +31.549746990203857,0.51,0.0,0.0,0.0,0.051417407 +31.55973505973816,0.51,0.0,0.0,0.0,0.05696755 +31.569638967514038,0.51,0.0,0.0,0.0,0.05696755 +31.57973313331604,0.51,0.0,0.0,0.0,0.05696755 +31.589599132537842,0.51,0.0,0.0,0.0,0.05696755 +31.59970712661743,0.51,0.0,0.0,0.0,0.05696755 +31.60973596572876,0.51,0.0,0.0,0.0,0.0551175 +31.619715929031372,0.51,0.0,0.0,0.0,0.0551175 +31.62971806526184,0.5,0.0,0.0,0.0,0.0551175 +31.63969397544861,0.5,0.0,0.0,0.0,0.0551175 +31.6497220993042,0.5,0.0,0.0,0.0,0.0551175 +31.65973997116089,0.5,0.0,0.0,0.0,0.06436774 +31.66965913772583,0.5,0.0,0.0,0.0,0.06436774 +31.67957305908203,0.5,0.0,0.0,0.0,0.06436774 +31.68973994255066,0.51,0.0,0.0,0.0,0.06436774 +31.699727058410645,0.51,0.0,0.0,0.0,0.06436774 +31.70951795578003,0.51,0.0,0.0,0.0,0.053267453 +31.71969699859619,0.51,0.0,0.0,0.0,0.053267453 +31.729711055755615,0.51,0.0,0.0,0.0,0.053267453 +31.73972511291504,0.51,0.0,0.0,0.0,0.053267453 +31.749722003936768,0.51,0.0,0.0,0.0,0.053267453 +31.759665966033936,0.51,0.0,0.0,0.0,0.042167164 +31.76971411705017,0.5,0.0,0.0,0.0,0.042167164 +31.779716968536377,0.5,0.0,0.0,0.0,0.042167164 +31.78970694541931,0.5,0.0,0.0,0.0,0.042167164 +31.79970097541809,0.5,0.0,0.0,0.0,0.042167164 +31.809713125228882,0.5,0.0,0.0,0.0,0.032916907 +31.8197181224823,0.5,0.0,0.0,0.0,0.032916907 +31.82972502708435,0.5,0.0,0.0,0.0,0.032916907 +31.839679956436157,0.5,0.0,0.0,0.0,0.032916907 +31.84955596923828,0.5,0.0,0.0,0.0,0.032916907 +31.859745979309082,0.5,0.0,0.0,0.0,0.02921681 +31.869699954986572,0.5,0.0,0.0,0.0,0.02921681 +31.879698038101196,0.5,0.0,0.0,0.0,0.02921681 +31.88948893547058,0.5,0.0,0.0,0.0,0.02921681 +31.89972710609436,0.5,0.0,0.0,0.0,0.02921681 +31.909425020217896,0.5,0.0,0.0,0.0,0.04031712 +31.91969609260559,0.48999998,0.0,0.0,0.0,0.04031712 +31.92969799041748,0.48999998,0.0,0.0,0.0,0.04031712 +31.93946409225464,0.48999998,0.0,0.0,0.0,0.04031712 +31.949711084365845,0.48999998,0.0,0.0,0.0,0.04031712 +31.959702014923096,0.48999998,0.0,0.0,0.0,0.04401721 +31.96969699859619,0.48999998,0.0,0.0,0.0,0.04401721 +31.97971510887146,0.48,0.0,0.0,0.0,0.04401721 +31.989715099334717,0.48,0.0,0.0,0.0,0.04401721 +31.99957799911499,0.48,0.0,0.0,0.0,0.04401721 +32.0097119808197,0.48,0.0,0.0,0.0,0.04401721 +32.019690990448,0.48,0.0,0.0,0.0,0.04401721 +32.02967691421509,0.48,0.0,0.0,0.0,0.04401721 +32.039674043655396,0.48,0.0,0.0,0.0,0.04401721 +32.049691915512085,0.48999998,0.0,0.0,0.0,0.04401721 +32.05972599983215,0.48999998,0.0,0.0,0.0,0.031066857 +32.06970810890198,0.48999998,0.0,0.0,0.0,0.031066857 +32.0796639919281,0.48999998,0.0,0.0,0.0,0.031066857 +32.089545011520386,0.48999998,0.0,0.0,0.0,0.031066857 +32.09969091415405,0.48999998,0.0,0.0,0.0,0.031066857 +32.10969400405884,0.48999998,0.0,0.0,0.0,0.008866279 +32.11965012550354,0.48999998,0.0,0.0,0.0,0.008866279 +32.12969493865967,0.48999998,0.0,0.0,0.0,0.008866279 +32.139692068099976,0.48999998,0.0,0.0,0.0,0.008866279 +32.14968705177307,0.48999998,0.0,0.0,0.0,0.008866279 +32.15941905975342,0.48999998,0.0,0.0,0.0,-0.009634218 +32.169695138931274,0.48999998,0.0,0.0,0.0,-0.009634218 +32.17958402633667,0.48999998,0.0,0.0,0.0,-0.009634218 +32.18967914581299,0.5,0.0,0.0,0.0,-0.009634218 +32.199641942977905,0.5,0.0,0.0,0.0,-0.009634218 +32.209681034088135,0.5,0.0,0.0,0.0,-0.013334316 +32.2196729183197,0.48999998,0.0,0.0,0.0,-0.013334316 +32.22967505455017,0.48999998,0.0,0.0,0.0,-0.013334316 +32.23957705497742,0.48999998,0.0,0.0,0.0,-0.013334316 +32.24966812133789,0.48999998,0.0,0.0,0.0,-0.013334316 +32.25970101356506,0.48999998,0.0,0.0,0.0,-0.013334316 +32.269654989242554,0.48999998,0.0,0.0,0.0,-0.013334316 +32.279670000076294,0.48999998,0.0,0.0,0.0,-0.013334316 +32.28968691825867,0.48999998,0.0,0.0,0.0,-0.013334316 +32.299432039260864,0.48999998,0.0,0.0,0.0,-0.013334316 +32.30967593193054,0.48,0.0,0.0,0.0,0.01811652 +32.31964111328125,0.48,0.0,0.0,0.0,0.01811652 +32.32966899871826,0.48,0.0,0.0,0.0,0.01811652 +32.33968210220337,0.48,0.0,0.0,0.0,0.01811652 +32.34967803955078,0.48,0.0,0.0,0.0,0.01811652 +32.35951805114746,0.48,0.0,0.0,0.0,-0.03183481 +32.36968493461609,0.48,0.0,0.0,0.0,-0.03183481 +32.37967014312744,0.48999998,0.0,0.0,0.0,-0.03183481 +32.389657974243164,0.48999998,0.0,0.0,0.0,-0.03183481 +32.399474143981934,0.48999998,0.0,0.0,0.0,-0.03183481 +32.40967607498169,0.48999998,0.0,0.0,0.0,-0.041085053 +32.41965293884277,0.48999998,0.0,0.0,0.0,-0.041085053 +32.429672956466675,0.48999998,0.0,0.0,0.0,-0.041085053 +32.439631938934326,0.48999998,0.0,0.0,0.0,-0.041085053 +32.4496591091156,0.48,0.0,0.0,0.0,-0.041085053 +32.459693908691406,0.47,0.0,0.0,0.0,-0.002234026 +32.469666957855225,0.45999998,0.0,0.0,0.0,-0.002234026 +32.47966504096985,0.45999998,0.0,0.0,0.0,-0.002234026 +32.48968291282654,0.45,0.0,0.0,0.0,-0.002234026 +32.49965000152588,0.42999998,0.0,0.0,0.0,-0.002234026 +32.509669065475464,0.42,0.0,0.0,0.0,0.0070162313 +32.5196430683136,0.42,0.0,0.0,0.0,0.0070162313 +32.52965712547302,0.41,0.0,0.0,0.0,0.0070162313 +32.539653062820435,0.39999998,0.0,0.0,0.0,0.0070162313 +32.549680948257446,0.39,0.0,0.0,0.0,0.0070162313 +32.55967307090759,0.39,0.0,0.0,0.0,0.010716328 +32.56964707374573,0.39,0.0,0.0,0.0,0.010716328 +32.57964491844177,0.38,0.0,0.0,0.0,0.010716328 +32.58967709541321,0.38,0.0,0.0,0.0,0.010716328 +32.599637031555176,0.38,0.0,0.0,0.0,0.010716328 +32.609659910202026,0.37,0.0,0.0,0.0,0.010716328 +32.61964797973633,0.37,0.0,0.0,0.0,0.010716328 +32.62964606285095,0.35999998,0.0,0.0,0.0,0.010716328 +32.639622926712036,0.35999998,0.0,0.0,0.0,0.010716328 +32.64965009689331,0.35999998,0.0,0.0,0.0,0.010716328 +32.659661054611206,0.35,0.0,0.0,0.0,0.012566376 +32.66964602470398,0.35,0.0,0.0,0.0,0.012566376 +32.67946004867554,0.35,0.0,0.0,0.0,0.012566376 +32.68964695930481,0.35,0.0,0.0,0.0,0.012566376 +32.699636936187744,0.34,0.0,0.0,0.0,0.012566376 +32.709506034851074,0.34,0.0,0.0,0.0,-0.013334316 +32.71961808204651,0.32999998,0.0,0.0,0.0,-0.013334316 +32.72939109802246,0.32,0.0,0.0,0.0,-0.013334316 +32.739612102508545,0.31,0.0,0.0,0.0,-0.013334316 +32.74964213371277,0.29999998,0.0,0.0,0.0,-0.013334316 +32.7596549987793,0.29999998,0.0,0.0,0.0,0.008866279 +32.76964497566223,0.28,0.0,0.0,0.0,0.008866279 +32.77962803840637,0.25,0.0,0.0,0.0,0.008866279 +32.78963899612427,0.22999999,0.0,0.0,0.0,0.008866279 +32.79962205886841,0.22999999,0.0,0.0,0.0,0.008866279 +32.80958414077759,0.21,0.0,0.0,0.0,-0.0040840744 +32.819621086120605,0.19999999,0.0,0.0,0.0,-0.0040840744 +32.82953596115112,0.19999999,0.0,0.0,0.0,-0.0040840744 +32.83960700035095,0.17,0.0,0.0,0.0,-0.0040840744 +32.84963512420654,0.16,5.3030305,5.3030305,0.0,-0.0040840744 +32.85950708389282,0.16,5.3030305,5.3030305,0.0,-0.013334316 +32.869641065597534,0.13,16.666668,16.666668,0.0,-0.013334316 +32.87960696220398,0.13,16.666668,16.666668,0.0,-0.013334316 +32.88963007926941,0.11,28.030302,28.030302,0.0,-0.013334316 +32.89963698387146,0.089999996,40.151516,40.151516,0.0,-0.013334316 +32.90961694717407,0.08,47.727272,47.727272,0.018744143,0.019966569 +32.919631004333496,0.08,47.727272,47.727272,0.037488285,0.019966569 +32.929616928100586,0.07,54.545456,54.545456,0.05623243,0.019966569 +32.939615964889526,0.049999997,65.15151,65.15151,0.07497657,0.019966569 +32.949639081954956,0.049999997,65.90909,65.90909,0.08434864,0.019966569 +32.95962905883789,0.049999997,65.90909,65.90909,0.10309278,0.021816617 +32.96962094306946,0.04,53.030304,53.030304,0.12183693,0.021816617 +32.97963809967041,0.03,37.121216,37.121216,0.131209,0.021816617 +32.989630937576294,0.02,32.575756,32.575756,0.14995314,0.021816617 +32.99959397315979,0.02,32.575756,32.575756,0.15932521,0.021816617 +33.00940203666687,0.01,28.78788,28.78788,0.18744142,0.034766953 +33.01960802078247,0.01,26.515152,26.515152,0.1968135,0.034766953 +33.029634952545166,0.0,25.0,25.0,0.20618556,0.034766953 +33.03960394859314,0.0,25.0,25.0,0.22492972,0.034766953 +33.0496129989624,0.0,26.515152,26.515152,0.23430179,0.034766953 +33.05963397026062,0.0,29.545454,29.545454,0.24367386,0.021816617 +33.06959891319275,0.0,29.545454,29.545454,0.25304592,0.021816617 +33.07959294319153,0.0,30.303032,30.303032,0.262418,0.021816617 +33.089617013931274,0.0,32.575756,32.575756,0.262418,0.021816617 +33.09964394569397,0.0,39.39394,39.39394,0.262418,0.021816617 +33.109622955322266,0.0,44.696968,44.696968,0.28116214,-0.026284654 +33.119593143463135,0.0,44.696968,44.696968,0.2905342,-0.026284654 +33.12960410118103,0.0,49.242424,49.242424,0.29990628,-0.026284654 +33.139639139175415,0.0,56.060604,56.060604,0.30927837,-0.026284654 +33.14961504936218,0.0,58.333332,58.333332,0.31865042,-0.026284654 +33.159615993499756,0.0,58.333332,58.333332,0.31865042,-0.08363618 +33.16960096359253,0.0,62.878788,62.878788,0.31865042,-0.08363618 +33.179609060287476,0.0,71.969696,71.969696,0.3280225,-0.08363618 +33.18959593772888,0.0,76.51515,76.51515,0.33739457,-0.08363618 +33.19957900047302,0.0,76.51515,76.51515,0.34676665,-0.08363618 +33.209599018096924,0.0,80.30303,80.30303,0.34676665,-0.06883579 +33.21960401535034,0.0,84.84849,84.84849,0.3561387,-0.06883579 +33.22963905334473,0.0,88.63636,88.63636,0.3561387,-0.06883579 +33.239596128463745,0.0,88.63636,88.63636,0.3561387,-0.06883579 +33.24960994720459,0.0,93.93939,93.93939,0.37488285,-0.06883579 +33.2596230506897,0.0,103.030304,103.030304,0.37488285,-0.052185345 +33.26959800720215,0.0,106.818184,106.818184,0.38425493,-0.052185345 +33.279534101486206,0.0,106.818184,106.818184,0.38425493,-0.052185345 +33.28959512710571,0.0,110.60606,110.60606,0.393627,-0.052185345 +33.29941201210022,0.0,110.60606,110.60606,0.393627,-0.052185345 +33.3095920085907,0.0,117.42424,117.42424,0.40299907,-0.01888446 +33.31951093673706,0.0,117.42424,117.42424,0.40299907,-0.01888446 +33.329612016677856,0.0,128.78787,128.78787,0.40299907,-0.01888446 +33.339592933654785,0.0,138.63637,138.63637,0.40299907,-0.01888446 +33.34961700439453,0.0,143.18181,143.18181,0.40299907,-0.01888446 +33.359615087509155,0.0,143.18181,143.18181,0.41237113,-0.013334316 +33.369585037231445,0.0,145.45454,145.45454,0.41237113,-0.013334316 +33.37953996658325,0.0,145.45454,145.45454,0.41237113,-0.013334316 +33.38960909843445,0.0,147.72726,147.72726,0.41237113,-0.013334316 +33.399559020996094,0.0,147.72726,147.72726,0.4217432,-0.013334316 +33.409587144851685,0.0,152.27274,152.27274,0.4217432,-0.011484267 +33.41959309577942,0.0,155.30302,155.30302,0.43111527,-0.011484267 +33.42959499359131,0.0,156.06061,156.06061,0.43111527,-0.011484267 +33.439579010009766,0.0,156.06061,156.06061,0.44048735,-0.011484267 +33.44963312149048,0.0,155.30302,155.30302,0.44048735,-0.011484267 +33.45961403846741,0.0,154.54546,154.54546,0.44985944,0.021816617 +33.46959114074707,0.0,154.54546,154.54546,0.44985944,0.021816617 +33.47956395149231,0.0,154.54546,154.54546,0.44985944,0.021816617 +33.48958611488342,0.0,154.54546,154.54546,0.44985944,0.021816617 +33.49959397315979,0.0,154.54546,154.54546,0.44985944,0.021816617 +33.509592056274414,0.0,153.78789,153.78789,0.44048735,0.023666665 +33.51957893371582,0.0,153.78789,153.78789,0.44048735,0.023666665 +33.52959609031677,0.0,151.51515,151.51515,0.44048735,0.023666665 +33.53950500488281,0.0,151.51515,151.51515,0.44048735,0.023666665 +33.549593925476074,0.0,147.72726,147.72726,0.44048735,0.023666665 +33.5595920085907,0.0,147.72726,147.72726,0.43111527,0.01811652 +33.569623947143555,0.0,145.45454,145.45454,0.43111527,0.01811652 +33.57959794998169,0.0,143.93939,143.93939,0.43111527,0.01811652 +33.589580059051514,0.0,143.18181,143.18181,0.43111527,0.01811652 +33.59956097602844,0.0,143.18181,143.18181,0.43111527,0.01811652 +33.6095769405365,0.0,140.90909,140.90909,0.43111527,0.0033161184 +33.619616985321045,0.0,137.12122,137.12122,0.43111527,0.0033161184 +33.629595041275024,0.0,137.12122,137.12122,0.43111527,0.0033161184 +33.63955998420715,0.0,137.12122,137.12122,0.44048735,0.0033161184 +33.64956212043762,0.0,137.12122,137.12122,0.44048735,0.0033161184 +33.65959405899048,0.0,137.12122,137.12122,0.44048735,0.012566376 +33.66957712173462,0.0,137.12122,137.12122,0.44985944,0.012566376 +33.67961001396179,0.0,137.12122,137.12122,0.44985944,0.012566376 +33.68957591056824,0.0,135.60606,135.60606,0.44985944,0.012566376 +33.699620962142944,0.0,129.54546,129.54546,0.44985944,0.012566376 +33.70958399772644,0.0,124.242424,124.242424,0.44048735,0.027366763 +33.71950101852417,0.0,124.242424,124.242424,0.43111527,0.027366763 +33.72954797744751,0.0,116.666664,116.666664,0.44048735,0.027366763 +33.73956513404846,0.0,100.0,100.0,0.43111527,0.027366763 +33.749573945999146,0.0,91.66667,91.66667,0.4217432,0.027366763 +33.75958013534546,0.0,91.66667,91.66667,0.41237113,0.02921681 +33.769575119018555,0.0,83.333336,83.333336,0.40299907,0.02921681 +33.77945613861084,0.0,83.333336,83.333336,0.393627,0.02921681 +33.78958201408386,0.0,68.93939,68.93939,0.38425493,0.02921681 +33.79956603050232,0.0,68.93939,68.93939,0.37488285,0.02921681 +33.80954909324646,0.0,53.78788,53.78788,0.3655108,0.042167164 +33.81957006454468,0.0,43.939392,43.939392,0.3655108,0.042167164 +33.82959008216858,0.0,39.39394,39.39394,0.3561387,0.042167164 +33.83955097198486,0.0,39.39394,39.39394,0.3561387,0.042167164 +33.84955406188965,0.0,34.09091,34.09091,0.34676665,0.042167164 +33.85959601402283,0.0,25.757576,25.757576,0.34676665,0.114319056 +33.86943292617798,0.0,25.757576,25.757576,0.33739457,0.114319056 +33.87954807281494,0.0,21.969696,21.969696,0.3280225,0.114319056 +33.889562129974365,0.0,22.727274,22.727274,0.3280225,0.114319056 +33.899600982666016,0.0,26.515152,26.515152,0.3280225,0.114319056 +33.90955710411072,0.0,29.545454,29.545454,0.31865042,0.14947 +33.9195671081543,0.0,29.545454,29.545454,0.31865042,0.14947 +33.92954611778259,0.0,32.575756,32.575756,0.30927837,0.14947 +33.93955898284912,0.0,34.09091,34.09091,0.30927837,0.14947 +33.94956707954407,0.0,36.363636,36.363636,0.29990628,0.14947 +33.959579944610596,0.0,36.363636,36.363636,0.29990628,0.27527332 +33.969552993774414,0.0,35.60606,35.60606,0.2905342,0.27527332 +33.97955799102783,0.0,32.575756,32.575756,0.28116214,0.27527332 +33.989563941955566,0.0,31.060606,31.060606,0.2905342,0.27527332 +33.999550104141235,0.0,31.060606,31.060606,0.27179006,0.27527332 +34.0095751285553,0.0,28.78788,28.78788,0.27179006,0.29932398 +34.01958203315735,0.0,25.757576,25.757576,0.25304592,0.29932398 +34.0295569896698,0.0,23.484848,23.484848,0.24367386,0.29932398 +34.03955101966858,0.0,23.484848,23.484848,0.23430179,0.29932398 +34.049586057662964,0.0,21.969696,21.969696,0.21555763,0.29932398 +34.059581995010376,0.0,18.939394,18.939394,0.20618556,0.2771234 +34.069555044174194,0.01,17.424242,17.424242,0.18744142,0.2771234 +34.07953691482544,0.01,17.424242,17.424242,0.17806935,0.2771234 +34.089564085006714,0.02,15.909091,15.909091,0.15932521,0.2771234 +34.09956407546997,0.03,13.636364,13.636364,0.14995314,0.2771234 +34.10955095291138,0.04,12.878788,12.878788,0.14058107,0.39182645 +34.119529008865356,0.04,12.878788,12.878788,0.12183693,0.39182645 +34.129568099975586,0.049999997,11.363637,11.363637,0.11246486,0.39182645 +34.13955211639404,0.06,9.848485,9.848485,0.10309278,0.39182645 +34.14957809448242,0.07,9.090909,9.090909,0.08434864,0.39182645 +34.15958094596863,0.07,9.090909,9.090909,0.07497657,0.48987904 +34.169501066207886,0.07,7.575758,7.575758,0.0656045,0.48987904 +34.179551124572754,0.08,6.818182,6.818182,0.05623243,0.48987904 +34.18954610824585,0.089999996,5.3030305,5.3030305,0.046860356,0.48987904 +34.19953107833862,0.089999996,5.3030305,5.3030305,0.037488285,0.48987904 +34.20954895019531,0.089999996,4.5454545,4.5454545,0.028116215,0.5213299 +34.21956992149353,0.11,3.787879,3.787879,0.018744143,0.5213299 +34.22955513000488,0.11,3.030303,3.030303,0.018744143,0.5213299 +34.239481925964355,0.11,3.030303,3.030303,0.009372071,0.5213299 +34.24954414367676,0.12,2.2727273,2.2727273,0.0,0.5213299 +34.25941705703735,0.12,2.2727273,2.2727273,0.0,0.52317995 +34.269537925720215,0.13,1.5151515,1.5151515,0.0,0.52317995 +34.279452085494995,0.13,1.5151515,1.5151515,0.0,0.52317995 +34.28956413269043,0.14,0.75757575,0.75757575,0.0,0.52317995 +34.29956007003784,0.14999999,0.0,0.0,0.0,0.52317995 +34.309545040130615,0.16,0.0,0.0,0.0,0.5379803 +34.319519996643066,0.16,0.0,0.0,0.0,0.5379803 +34.329538106918335,0.16,0.0,0.0,0.0,0.5379803 +34.33954191207886,0.17,0.0,0.0,0.0,0.5379803 +34.349568128585815,0.17999999,0.0,0.0,0.0,0.5379803 +34.359508991241455,0.17999999,0.0,0.0,0.0,0.5490806 +34.36955404281616,0.17999999,0.0,0.0,0.0,0.5490806 +34.379539012908936,0.19,0.0,0.0,0.0,0.5490806 +34.3895480632782,0.19999999,0.0,0.0,0.0,0.5490806 +34.39952206611633,0.19999999,0.0,0.0,0.0,0.5490806 +34.40955114364624,0.21,0.0,0.0,0.0,0.53613025 +34.41955208778381,0.22,0.0,0.0,0.0,0.53613025 +34.42953395843506,0.22999999,0.0,0.0,0.0,0.53613025 +34.43954610824585,0.22999999,0.0,0.0,0.0,0.53613025 +34.449546098709106,0.22999999,0.0,0.0,0.0,0.53613025 +34.45956206321716,0.24,0.0,0.0,0.0,0.5472306 +34.46953511238098,0.25,0.0,0.0,0.0,0.5472306 +34.47953796386719,0.25,0.0,0.0,0.0,0.5472306 +34.48950695991516,0.25,0.0,0.0,0.0,0.5472306 +34.499541997909546,0.26,0.0,0.0,0.0,0.5472306 +34.509516954422,0.26,0.0,0.0,0.0,0.5379803 +34.51948595046997,0.26,0.0,0.0,0.0,0.5379803 +34.529545068740845,0.26999998,0.0,0.0,0.0,0.5379803 +34.53957390785217,0.26999998,0.0,0.0,0.0,0.5379803 +34.54961109161377,0.28,0.0,0.0,0.0,0.5379803 +34.55952310562134,0.28,0.0,0.0,0.0,0.55278075 +34.569525957107544,0.28,0.0,0.0,0.0,0.55278075 +34.57948899269104,0.29,0.0,0.0,0.0,0.55278075 +34.58951497077942,0.29,0.0,0.0,0.0,0.55278075 +34.59947896003723,0.29,0.0,0.0,0.0,0.55278075 +34.60948705673218,0.29,0.0,0.0,0.0,0.5657311 +34.61957097053528,0.29,0.0,0.0,0.0,0.5657311 +34.62941598892212,0.29,0.0,0.0,0.0,0.5657311 +34.6394579410553,0.29999998,0.0,0.0,0.0,0.5657311 +34.64951491355896,0.29999998,0.0,0.0,0.0,0.5657311 +34.65953207015991,0.29999998,0.0,0.0,0.0,0.5490806 +34.6695499420166,0.31,0.0,0.0,0.0,0.5490806 +34.679455041885376,0.31,0.0,0.0,0.0,0.5490806 +34.68949794769287,0.31,0.0,0.0,0.0,0.5490806 +34.699440002441406,0.31,0.0,0.0,0.0,0.5490806 +34.70950698852539,0.31,0.0,0.0,0.0,0.56018096 +34.719478130340576,0.31,0.0,0.0,0.0,0.56018096 +34.72950100898743,0.31,0.0,0.0,0.0,0.56018096 +34.739490032196045,0.31,0.0,0.0,0.0,0.56018096 +34.74949312210083,0.32,0.0,0.0,0.0,0.56018096 +34.75949501991272,0.32,0.0,0.0,0.0,0.5564808 +34.76947593688965,0.32,0.0,0.0,0.0,0.5564808 +34.77948713302612,0.32,0.0,0.0,0.0,0.5564808 +34.78949999809265,0.32,0.0,0.0,0.0,0.5564808 +34.799479961395264,0.32,0.0,0.0,0.0,0.5564808 +34.809471130371094,0.32,0.0,0.0,0.0,0.5583309 +34.819499015808105,0.32,0.0,0.0,0.0,0.5583309 +34.8294939994812,0.32,0.0,0.0,0.0,0.5583309 +34.839457988739014,0.32,0.0,0.0,0.0,0.5583309 +34.849530935287476,0.32,0.0,0.0,0.0,0.5583309 +34.85950994491577,0.32,0.0,0.0,0.0,0.563881 +34.869489908218384,0.32999998,0.0,0.0,0.0,0.563881 +34.879462003707886,0.32999998,0.0,0.0,0.0,0.563881 +34.88948106765747,0.32999998,0.0,0.0,0.0,0.563881 +34.89947009086609,0.32999998,0.0,0.0,0.0,0.563881 +34.909467935562134,0.32999998,0.0,0.0,0.0,0.5675811 +34.919471979141235,0.32999998,0.0,0.0,0.0,0.5675811 +34.92945909500122,0.32999998,0.0,0.0,0.0,0.5675811 +34.939472913742065,0.32999998,0.0,0.0,0.0,0.5675811 +34.94946599006653,0.32999998,0.0,0.0,0.0,0.5675811 +34.95950412750244,0.32999998,0.0,0.0,0.0,0.53428024 +34.96948003768921,0.32999998,0.0,0.0,0.0,0.53428024 +34.979499101638794,0.34,0.0,0.0,0.0,0.53428024 +34.989481925964355,0.34,0.0,0.0,0.0,0.53428024 +34.99946308135986,0.34,0.0,0.0,0.0,0.53428024 +35.00946402549744,0.34,0.0,0.0,0.0,0.5120796 +35.01947593688965,0.34,0.0,0.0,0.0,0.5120796 +35.029459953308105,0.34,0.0,0.0,0.0,0.5120796 +35.039470911026,0.34,0.0,0.0,0.0,0.5120796 +35.0494589805603,0.34,0.0,0.0,0.0,0.5120796 +35.05949401855469,0.34,0.0,0.0,0.0,0.5305801 +35.069555044174194,0.34,0.0,0.0,0.0,0.5305801 +35.079447984695435,0.34,0.0,0.0,0.0,0.5305801 +35.08946204185486,0.34,0.0,0.0,0.0,0.5305801 +35.09945607185364,0.35,0.0,0.0,0.0,0.5305801 +35.10946702957153,0.35,0.0,0.0,0.0,0.50652945 +35.11945605278015,0.35,0.0,0.0,0.0,0.50652945 +35.12948298454285,0.35999998,0.0,0.0,0.0,0.50652945 +35.13944697380066,0.35999998,0.0,0.0,0.0,0.50652945 +35.14946103096008,0.35999998,0.0,0.0,0.0,0.50652945 +35.15940713882446,0.35999998,0.0,0.0,0.0,0.51577973 +35.16945195198059,0.35999998,0.0,0.0,0.0,0.51577973 +35.1794490814209,0.37,0.0,0.0,0.0,0.51577973 +35.189435958862305,0.37,0.0,0.0,0.0,0.51577973 +35.19953799247742,0.37,0.0,0.0,0.0,0.51577973 +35.20944905281067,0.37,0.0,0.0,0.0,0.39552653 +35.21944308280945,0.37,0.0,0.0,0.0,0.39552653 +35.22942900657654,0.37,0.0,0.0,0.0,0.39552653 +35.239421129226685,0.38,0.0,0.0,0.0,0.39552653 +35.24944305419922,0.38,0.0,0.0,0.0,0.39552653 +35.25951600074768,0.39,0.0,0.0,0.0,0.36592576 +35.269460916519165,0.39,0.0,0.0,0.0,0.36592576 +35.279407024383545,0.39,0.0,0.0,0.0,0.36592576 +35.289408922195435,0.39,0.0,0.0,0.0,0.36592576 +35.29943513870239,0.39,0.0,0.0,0.0,0.36592576 +35.309452056884766,0.39,0.0,0.0,0.0,0.37332594 +35.31942892074585,0.39,0.0,0.0,0.0,0.37332594 +35.32943391799927,0.39,0.0,0.0,0.0,0.37332594 +35.33944892883301,0.39,0.0,0.0,0.0,0.37332594 +35.34943413734436,0.39,0.0,0.0,0.0,0.37332594 +35.35954213142395,0.39,0.0,0.0,0.0,0.3714759 +35.36943602561951,0.39,0.0,0.0,0.0,0.3714759 +35.379436016082764,0.39,0.0,0.0,0.0,0.3714759 +35.38949513435364,0.39999998,0.0,0.0,0.0,0.3714759 +35.39942002296448,0.39999998,0.0,0.0,0.0,0.3714759 +35.40944004058838,0.39999998,0.0,0.0,0.0,0.4047768 +35.419585943222046,0.39999998,0.0,0.0,0.0,0.4047768 +35.429471015930176,0.39999998,0.0,0.0,0.0,0.4047768 +35.439391136169434,0.39999998,0.0,0.0,0.0,0.4047768 +35.44943714141846,0.39999998,0.0,0.0,0.0,0.4047768 +35.45945692062378,0.39999998,0.0,0.0,0.0,0.36222565 +35.46942210197449,0.39999998,0.0,0.0,0.0,0.36222565 +35.479413986206055,0.39999998,0.0,0.0,0.0,0.36222565 +35.48941493034363,0.39999998,0.0,0.0,0.0,0.36222565 +35.49943399429321,0.39999998,0.0,0.0,0.0,0.36222565 +35.509427070617676,0.39999998,0.0,0.0,0.0,0.3862763 +35.51959800720215,0.39999998,0.0,0.0,0.0,0.3862763 +35.529452085494995,0.39999998,0.0,0.0,0.0,0.3862763 +35.53943109512329,0.39999998,0.0,0.0,0.0,0.3862763 +35.54942512512207,0.39999998,0.0,0.0,0.0,0.3862763 +35.559420108795166,0.39999998,0.0,0.0,0.0,0.38257617 +35.56942105293274,0.39999998,0.0,0.0,0.0,0.38257617 +35.57941007614136,0.39999998,0.0,0.0,0.0,0.38257617 +35.58941411972046,0.39999998,0.0,0.0,0.0,0.38257617 +35.59961414337158,0.39999998,0.0,0.0,0.0,0.38257617 +35.60941290855408,0.39999998,0.0,0.0,0.0,0.38442627 +35.619593143463135,0.39999998,0.0,0.0,0.0,0.38442627 +35.62940692901611,0.39999998,0.0,0.0,0.0,0.38442627 +35.63940501213074,0.39999998,0.0,0.0,0.0,0.38442627 +35.649436950683594,0.39999998,0.0,0.0,0.0,0.38442627 +35.659428119659424,0.39999998,0.0,0.0,0.0,0.35112536 +35.669405937194824,0.39999998,0.0,0.0,0.0,0.35112536 +35.67939496040344,0.39999998,0.0,0.0,0.0,0.35112536 +35.68962001800537,0.39999998,0.0,0.0,0.0,0.35112536 +35.69940900802612,0.39999998,0.0,0.0,0.0,0.35112536 +35.709399938583374,0.39999998,0.0,0.0,0.0,0.30857423 +35.719648122787476,0.39999998,0.0,0.0,0.0,0.30857423 +35.729398012161255,0.39999998,0.0,0.0,0.0,0.30857423 +35.73940896987915,0.39999998,0.0,0.0,0.0,0.30857423 +35.74940800666809,0.39999998,0.0,0.0,0.0,0.30857423 +35.75943994522095,0.39999998,0.0,0.0,0.0,0.29932398 +35.769392013549805,0.39999998,0.0,0.0,0.0,0.29932398 +35.77946591377258,0.39999998,0.0,0.0,0.0,0.29932398 +35.78940200805664,0.39999998,0.0,0.0,0.0,0.29932398 +35.79959797859192,0.39999998,0.0,0.0,0.0,0.29932398 +35.809406042099,0.39999998,0.0,0.0,0.0,0.29747394 +35.819478034973145,0.39999998,0.0,0.0,0.0,0.29747394 +35.82939100265503,0.39999998,0.0,0.0,0.0,0.29747394 +35.83960700035095,0.39999998,0.0,0.0,0.0,0.29747394 +35.84941005706787,0.39999998,0.0,0.0,0.0,0.29747394 +35.85941696166992,0.39999998,0.0,0.0,0.0,0.24752259 +35.869476079940796,0.39999998,0.0,0.0,0.0,0.24752259 +35.87959003448486,0.39999998,0.0,0.0,0.0,0.24752259 +35.88939094543457,0.39999998,0.0,0.0,0.0,0.24752259 +35.89965605735779,0.39999998,0.0,0.0,0.0,0.24752259 +35.90950298309326,0.41,0.0,0.0,0.0,0.21792182 +35.919631004333496,0.41,0.0,0.0,0.0,0.21792182 +35.92963409423828,0.41,0.0,0.0,0.0,0.21792182 +35.93964910507202,0.41,0.0,0.0,0.0,0.21792182 +35.94963002204895,0.41,0.0,0.0,0.0,0.21792182 +35.959404945373535,0.41,0.0,0.0,0.0,0.21052164 +35.969598054885864,0.41,0.0,0.0,0.0,0.21052164 +35.97962999343872,0.41,0.0,0.0,0.0,0.21052164 +35.989498138427734,0.41,0.0,0.0,0.0,0.21052164 +35.999391078948975,0.41,0.0,0.0,0.0,0.21052164 +36.00964093208313,0.41,0.0,0.0,0.0,0.19942135 +36.01940298080444,0.39999998,0.0,0.0,0.0,0.19942135 +36.02964496612549,0.39999998,0.0,0.0,0.0,0.19942135 +36.039453983306885,0.39999998,0.0,0.0,0.0,0.19942135 +36.049647092819214,0.39999998,0.0,0.0,0.0,0.19942135 +36.05964708328247,0.39999998,0.0,0.0,0.0,0.19387117 +36.06963896751404,0.39999998,0.0,0.0,0.0,0.19387117 +36.079463958740234,0.39999998,0.0,0.0,0.0,0.19387117 +36.08948493003845,0.39999998,0.0,0.0,0.0,0.19387117 +36.0996310710907,0.41,0.0,0.0,0.0,0.19387117 +36.10938811302185,0.41,0.0,0.0,0.0,0.20682153 +36.11961102485657,0.41,0.0,0.0,0.0,0.20682153 +36.12961792945862,0.41,0.0,0.0,0.0,0.20682153 +36.13938808441162,0.41,0.0,0.0,0.0,0.20682153 +36.149625062942505,0.41,0.0,0.0,0.0,0.20682153 +36.15961408615112,0.41,0.0,0.0,0.0,0.19942135 +36.16949391365051,0.41,0.0,0.0,0.0,0.19942135 +36.179625034332275,0.39999998,0.0,0.0,0.0,0.19942135 +36.189624071121216,0.39999998,0.0,0.0,0.0,0.19942135 +36.199623107910156,0.39999998,0.0,0.0,0.0,0.19942135 +36.20961308479309,0.39999998,0.0,0.0,0.0,0.1531701 +36.21962809562683,0.39999998,0.0,0.0,0.0,0.1531701 +36.22963905334473,0.39999998,0.0,0.0,0.0,0.1531701 +36.23961305618286,0.39999998,0.0,0.0,0.0,0.1531701 +36.24941802024841,0.39999998,0.0,0.0,0.0,0.1531701 +36.25963306427002,0.39999998,0.0,0.0,0.0,0.14761995 +36.26960492134094,0.39999998,0.0,0.0,0.0,0.14761995 +36.27939510345459,0.39999998,0.0,0.0,0.0,0.14761995 +36.28961896896362,0.39999998,0.0,0.0,0.0,0.14761995 +36.29948711395264,0.41,0.0,0.0,0.0,0.14761995 +36.30962300300598,0.39999998,0.0,0.0,0.0,0.14021976 +36.31940507888794,0.39999998,0.0,0.0,0.0,0.14021976 +36.3296320438385,0.39999998,0.0,0.0,0.0,0.14021976 +36.33962297439575,0.39999998,0.0,0.0,0.0,0.14021976 +36.349616050720215,0.39,0.0,0.0,0.0,0.14021976 +36.35958695411682,0.39,0.0,0.0,0.0,0.13651967 +36.36960291862488,0.39,0.0,0.0,0.0,0.13651967 +36.379626989364624,0.39,0.0,0.0,0.0,0.13651967 +36.38960409164429,0.38,0.0,0.0,0.0,0.13651967 +36.39960598945618,0.38,0.0,0.0,0.0,0.13651967 +36.409615993499756,0.38,0.0,0.0,0.0,0.13651967 +36.41959810256958,0.38,0.0,0.0,0.0,0.13651967 +36.4295220375061,0.38,0.0,0.0,0.0,0.13651967 +36.43959999084473,0.38,0.0,0.0,0.0,0.13651967 +36.44961214065552,0.38,0.0,0.0,0.0,0.13651967 +36.45960807800293,0.37,0.0,0.0,0.0,0.12911949 +36.469605922698975,0.37,0.0,0.0,0.0,0.12911949 +36.47962212562561,0.37,0.0,0.0,0.0,0.12911949 +36.489619970321655,0.37,0.0,0.0,0.0,0.12911949 +36.49962091445923,0.37,0.0,0.0,0.0,0.12911949 +36.509597063064575,0.35999998,0.0,0.0,0.0,0.1346696 +36.51964211463928,0.35999998,0.0,0.0,0.0,0.1346696 +36.529595136642456,0.35999998,0.0,0.0,0.0,0.1346696 +36.539597034454346,0.35999998,0.0,0.0,0.0,0.1346696 +36.54962992668152,0.35,0.0,0.0,0.0,0.1346696 +36.559566020965576,0.35,0.0,0.0,0.0,0.1346696 +36.569602966308594,0.35,0.0,0.0,0.0,0.1346696 +36.579612016677856,0.35,0.0,0.0,0.0,0.1346696 +36.589580059051514,0.34,0.0,0.0,0.0,0.1346696 +36.59961414337158,0.34,0.0,0.0,0.0,0.1346696 +36.609619140625,0.34,0.0,0.0,0.0,0.14021976 +36.61962914466858,0.32999998,0.0,0.0,0.0,0.14021976 +36.62962293624878,0.32999998,0.0,0.0,0.0,0.14021976 +36.6394989490509,0.32999998,0.0,0.0,0.0,0.14021976 +36.64960312843323,0.32,0.0,0.0,0.0,0.14021976 +36.65961503982544,0.31,0.0,0.0,0.0,0.1457699 +36.66962194442749,0.31,0.0,0.0,0.0,0.1457699 +36.67961502075195,0.29999998,0.0,0.0,0.0,0.1457699 +36.689526081085205,0.29999998,0.0,0.0,0.0,0.1457699 +36.69962811470032,0.29,0.0,0.0,0.0,0.1457699 +36.70962405204773,0.29,0.0,0.0,0.0,0.14021976 +36.71958112716675,0.29,0.0,0.0,0.0,0.14021976 +36.72962403297424,0.29,0.0,0.0,0.0,0.14021976 +36.73963499069214,0.29999998,0.0,0.0,0.0,0.14021976 +36.74960494041443,0.29999998,0.0,0.0,0.0,0.14021976 +36.75956392288208,0.29999998,0.0,0.0,0.0,0.13651967 +36.769633054733276,0.29999998,0.0,0.0,0.0,0.13651967 +36.77961707115173,0.29,0.0,0.0,0.0,0.13651967 +36.78961110115051,0.29,0.0,0.0,0.0,0.13651967 +36.79963207244873,0.29,0.0,0.0,0.0,0.13651967 +36.809536933898926,0.29,0.0,0.0,0.0,0.16057031 +36.819435119628906,0.28,0.0,0.0,0.0,0.16057031 +36.82963013648987,0.28,0.0,0.0,0.0,0.16057031 +36.83961296081543,0.29,0.0,0.0,0.0,0.16057031 +36.84955310821533,0.29,0.0,0.0,0.0,0.16057031 +36.85946798324585,0.29999998,0.0,0.0,0.0,0.116169125 +36.86961102485657,0.29999998,0.0,0.0,0.0,0.116169125 +36.87963795661926,0.31,0.0,0.0,0.0,0.116169125 +36.889631032943726,0.31,0.0,0.0,0.0,0.116169125 +36.89960813522339,0.32,0.0,0.0,0.0,0.116169125 +36.90963101387024,0.32,0.0,0.0,0.0,0.12356931 +36.919636964797974,0.32,0.0,0.0,0.0,0.12356931 +36.9296190738678,0.32,0.0,0.0,0.0,0.12356931 +36.939544916152954,0.32,0.0,0.0,0.0,0.12356931 +36.949536085128784,0.32,0.0,0.0,0.0,0.12356931 +36.95964598655701,0.32,0.0,0.0,0.0,0.09766865 +36.96946692466736,0.31,0.0,0.0,0.0,0.09766865 +36.97962307929993,0.31,0.0,0.0,0.0,0.09766865 +36.98965311050415,0.32,0.0,0.0,0.0,0.09766865 +36.99963712692261,0.32,0.0,0.0,0.0,0.09766865 +37.00960898399353,0.32999998,0.0,0.0,0.0,0.10691887 +37.01962113380432,0.32999998,0.0,0.0,0.0,0.10691887 +37.029515981674194,0.34,0.0,0.0,0.0,0.10691887 +37.039633989334106,0.34,0.0,0.0,0.0,0.10691887 +37.04962110519409,0.34,0.0,0.0,0.0,0.10691887 +37.059617042541504,0.34,0.0,0.0,0.0,0.1827709 +37.069639921188354,0.34,0.0,0.0,0.0,0.1827709 +37.07949995994568,0.34,0.0,0.0,0.0,0.1827709 +37.0894980430603,0.34,0.0,0.0,0.0,0.1827709 +37.09961295127869,0.32999998,0.0,0.0,0.0,0.1827709 +37.10964012145996,0.32,0.0,0.0,0.0,0.2438225 +37.11948108673096,0.32,0.0,0.0,0.0,0.2438225 +37.12940812110901,0.31,0.0,0.0,0.0,0.2438225 +37.13964009284973,0.31,0.0,0.0,0.0,0.2438225 +37.14962601661682,0.29999998,0.0,0.0,0.0,0.2438225 +37.159642934799194,0.29999998,0.0,0.0,0.0,0.23827238 +37.16964507102966,0.29999998,0.0,0.0,0.0,0.23827238 +37.17947793006897,0.31,0.0,0.0,0.0,0.23827238 +37.18962502479553,0.31,0.0,0.0,0.0,0.23827238 +37.199634075164795,0.31,0.0,0.0,0.0,0.23827238 +37.209409952163696,0.31,0.0,0.0,0.0,0.20312142 +37.219407081604004,0.31,0.0,0.0,0.0,0.20312142 +37.22962999343872,0.31,0.0,0.0,0.0,0.20312142 +37.23950409889221,0.31,0.0,0.0,0.0,0.20312142 +37.24960994720459,0.31,0.0,0.0,0.0,0.20312142 +37.25961995124817,0.31,0.0,0.0,0.0,0.18832105 +37.26940107345581,0.29999998,0.0,0.0,0.0,0.18832105 +37.279622077941895,0.29999998,0.0,0.0,0.0,0.18832105 +37.28955912590027,0.29999998,0.0,0.0,0.0,0.18832105 +37.29957604408264,0.29999998,0.0,0.0,0.0,0.18832105 +37.30962300300598,0.29,0.0,0.0,0.0,0.17722073 +37.31964898109436,0.29,0.0,0.0,0.0,0.17722073 +37.3296320438385,0.29,0.0,0.0,0.0,0.17722073 +37.3395299911499,0.29,0.0,0.0,0.0,0.17722073 +37.34963512420654,0.29,0.0,0.0,0.0,0.17722073 +37.35949110984802,0.29,0.0,0.0,0.0,0.17722073 +37.369609117507935,0.29,0.0,0.0,0.0,0.17722073 +37.379616022109985,0.28,0.0,0.0,0.0,0.17722073 +37.38964295387268,0.28,0.0,0.0,0.0,0.17722073 +37.399637937545776,0.28,0.0,0.0,0.0,0.17722073 +37.409629106521606,0.26999998,0.0,0.0,0.0,0.16797051 +37.41964411735535,0.26999998,0.0,0.0,0.0,0.16797051 +37.429636001586914,0.26999998,0.0,0.0,0.0,0.16797051 +37.43963408470154,0.26999998,0.0,0.0,0.0,0.16797051 +37.44949007034302,0.26999998,0.0,0.0,0.0,0.16797051 +37.45965909957886,0.26,0.0,0.0,0.0,0.12911949 +37.4695360660553,0.26,0.0,0.0,0.0,0.12911949 +37.47965598106384,0.26,0.0,0.0,0.0,0.12911949 +37.48966312408447,0.26,0.0,0.0,0.0,0.12911949 +37.499634981155396,0.26,0.0,0.0,0.0,0.12911949 +37.50964903831482,0.26,0.0,0.0,0.0,0.11986922 +37.51966595649719,0.25,0.0,0.0,0.0,0.11986922 +37.52961707115173,0.25,0.0,0.0,0.0,0.11986922 +37.539490938186646,0.25,0.0,0.0,0.0,0.11986922 +37.549652099609375,0.24,0.0,0.0,0.0,0.11986922 +37.55962800979614,0.24,0.0,0.0,0.0,0.12356931 +37.56963014602661,0.24,0.0,0.0,0.0,0.12356931 +37.5796480178833,0.22999999,0.0,0.0,0.0,0.12356931 +37.5896110534668,0.22999999,0.0,0.0,0.0,0.12356931 +37.59958291053772,0.22999999,0.0,0.0,0.0,0.12356931 +37.609647035598755,0.22999999,0.0,0.0,0.0,0.21607177 +37.619401931762695,0.22,0.0,0.0,0.0,0.21607177 +37.629504919052124,0.21,0.0,0.0,0.0,0.21607177 +37.63966703414917,0.19999999,0.0,0.0,0.0,0.21607177 +37.649632930755615,0.19,0.0,0.0,0.0,0.21607177 +37.65964412689209,0.17999999,0.0,0.0,0.0,0.24937265 +37.669646978378296,0.17999999,0.0,0.0,0.0,0.24937265 +37.679633140563965,0.17,0.0,0.0,0.0,0.24937265 +37.68963813781738,0.16,0.0,0.0,0.0,0.24937265 +37.69946908950806,0.16,0.0,0.0,0.0,0.24937265 +37.709667921066284,0.14999999,0.0,0.0,0.0,0.23087217 +37.719396114349365,0.14999999,0.0,0.0,0.0,0.23087217 +37.72946000099182,0.14999999,0.0,0.0,0.0,0.23087217 +37.73949599266052,0.14,0.0,0.0,0.0,0.23087217 +37.7496440410614,0.14,0.0,0.0,0.0,0.23087217 +37.75966000556946,0.14,0.0,0.0,0.0,0.2438225 +37.76966404914856,0.14,0.0,0.0,0.0,0.2438225 +37.779550075531006,0.14,0.0,0.0,0.0,0.2438225 +37.789658069610596,0.14,0.0,0.0,0.0,0.2438225 +37.79966592788696,0.14,0.0,0.0,0.0,0.2438225 +37.809447050094604,0.13,0.0,0.0,0.0,0.21237166 +37.81939101219177,0.13,0.0,0.0,0.0,0.21237166 +37.82964611053467,0.13,0.0,0.0,0.0,0.21237166 +37.83963394165039,0.13,0.0,0.0,0.0,0.21237166 +37.84963393211365,0.13,0.0,0.0,0.0,0.21237166 +37.85964107513428,0.13,0.0,0.0,0.0,0.19202115 +37.86963105201721,0.13,0.0,0.0,0.0,0.19202115 +37.8796489238739,0.12,0.0,0.0,0.0,0.19202115 +37.8896701335907,0.12,0.0,0.0,0.0,0.19202115 +37.89964008331299,0.12,0.0,0.0,0.0,0.19202115 +37.90965294837952,0.12,0.0,0.0,0.0,0.1827709 +37.91944599151611,0.12,0.0,0.0,0.0,0.1827709 +37.9296600818634,0.12,0.0,0.0,0.0,0.1827709 +37.93963313102722,0.11,0.0,0.0,0.0,0.1827709 +37.94964098930359,0.099999994,0.0,0.0,0.0,0.1827709 +37.959619998931885,0.099999994,0.0,0.0,0.0,0.20127137 +37.969659090042114,0.089999996,0.0,0.0,0.0,0.20127137 +37.9794180393219,0.08,0.0,0.0,0.0,0.20127137 +37.989651918411255,0.08,0.0,0.0,0.0,0.20127137 +37.999661922454834,0.07,0.0,0.0,0.0,0.20127137 +38.00955390930176,0.06,0.0,0.0,0.0,0.19942135 +38.01940107345581,0.049999997,0.0,0.0,0.0,0.19942135 +38.02964210510254,0.049999997,0.0,0.0,0.0,0.19942135 +38.03945994377136,0.049999997,0.0,0.0,0.0,0.19942135 +38.04965901374817,0.04,0.0,0.0,0.0,0.19942135 +38.05963706970215,0.03,5.3030305,5.3030305,0.0,0.19942135 +38.069642066955566,0.02,8.333334,8.333334,0.0,0.19942135 +38.07967495918274,0.02,12.121212,12.121212,0.0,0.19942135 +38.08963108062744,0.02,14.39394,14.39394,0.0,0.19942135 +38.099472999572754,0.01,16.666668,16.666668,0.0,0.19942135 +38.10964298248291,0.01,18.181818,18.181818,0.009372071,0.19942135 +38.11939191818237,0.01,18.181818,18.181818,0.009372071,0.19942135 +38.12952709197998,0.01,19.69697,19.69697,0.037488285,0.19942135 +38.139652967453,0.0,25.0,25.0,0.046860356,0.19942135 +38.14963698387146,0.0,27.272728,27.272728,0.0656045,0.19942135 +38.15968108177185,0.0,28.030302,28.030302,0.0656045,0.22532202 +38.16964912414551,0.0,29.545454,29.545454,0.07497657,0.22532202 +38.17963790893555,0.0,31.060606,31.060606,0.09372071,0.22532202 +38.18942093849182,0.0,32.575756,32.575756,0.09372071,0.22532202 +38.19966506958008,0.0,34.848484,34.848484,0.09372071,0.22532202 +38.209667921066284,0.0,35.60606,35.60606,0.10309278,0.24197246 +38.219419956207275,0.0,36.363636,36.363636,0.10309278,0.24197246 +38.22965693473816,0.0,36.363636,36.363636,0.11246486,0.24197246 +38.23966312408447,0.0,37.121216,37.121216,0.11246486,0.24197246 +38.249650955200195,0.0,37.878788,37.878788,0.131209,0.24197246 +38.25964593887329,0.0,39.39394,39.39394,0.14058107,0.2549228 +38.26943302154541,0.0,40.151516,40.151516,0.14058107,0.2549228 +38.27940511703491,0.0,40.151516,40.151516,0.14058107,0.2549228 +38.28966212272644,0.0,40.151516,40.151516,0.14995314,0.2549228 +38.29968500137329,0.0,40.151516,40.151516,0.15932521,0.2549228 +38.30964207649231,0.0,39.39394,39.39394,0.16869728,0.2586229 +38.319684982299805,0.0,39.39394,39.39394,0.16869728,0.2586229 +38.329671144485474,0.0,38.636364,38.636364,0.16869728,0.2586229 +38.33964800834656,0.0,37.878788,37.878788,0.17806935,0.2586229 +38.34956192970276,0.0,37.121216,37.121216,0.17806935,0.2586229 +38.359419107437134,0.0,37.121216,37.121216,0.17806935,0.29007375 +38.369405031204224,0.0,36.363636,36.363636,0.16869728,0.29007375 +38.379647970199585,0.0,34.09091,34.09091,0.16869728,0.29007375 +38.38965892791748,0.0,33.333336,33.333336,0.16869728,0.29007375 +38.39964294433594,0.0,32.575756,32.575756,0.16869728,0.29007375 +38.40942406654358,0.0,31.060606,31.060606,0.17806935,0.30672416 +38.41942095756531,0.0,30.303032,30.303032,0.17806935,0.30672416 +38.42963099479675,0.0,29.545454,29.545454,0.16869728,0.30672416 +38.43966794013977,0.0,28.78788,28.78788,0.16869728,0.30672416 +38.44942903518677,0.0,28.030302,28.030302,0.16869728,0.30672416 +38.45966291427612,0.0,28.030302,28.030302,0.17806935,0.29007375 +38.469659090042114,0.0,28.030302,28.030302,0.17806935,0.29007375 +38.47967290878296,0.0,28.030302,28.030302,0.17806935,0.29007375 +38.48968696594238,0.0,28.030302,28.030302,0.16869728,0.29007375 +38.49964904785156,0.0,28.78788,28.78788,0.17806935,0.29007375 +38.509474992752075,0.0,30.303032,30.303032,0.17806935,0.27157325 +38.51969313621521,0.0,31.060606,31.060606,0.18744142,0.27157325 +38.529645919799805,0.0,31.060606,31.060606,0.18744142,0.27157325 +38.539474964141846,0.0,31.060606,31.060606,0.18744142,0.27157325 +38.5496621131897,0.0,30.303032,30.303032,0.18744142,0.27157325 +38.55966401100159,0.0,29.545454,29.545454,0.18744142,0.20497148 +38.56966209411621,0.0,29.545454,29.545454,0.1968135,0.20497148 +38.57966494560242,0.0,28.78788,28.78788,0.1968135,0.20497148 +38.58965301513672,0.0,28.030302,28.030302,0.1968135,0.20497148 +38.59968614578247,0.0,27.272728,27.272728,0.1968135,0.20497148 +38.60966205596924,0.0,26.515152,26.515152,0.18744142,0.11801915 +38.619657039642334,0.0,25.0,25.0,0.18744142,0.11801915 +38.62959408760071,0.0,24.242424,24.242424,0.18744142,0.11801915 +38.6397271156311,0.0,22.727274,22.727274,0.18744142,0.11801915 +38.649646043777466,0.0,21.969696,21.969696,0.17806935,0.11801915 +38.659667015075684,0.0,20.454544,20.454544,0.16869728,0.09211848 +38.6696720123291,0.0,18.939394,18.939394,0.14995314,0.09211848 +38.67939591407776,0.0,18.939394,18.939394,0.14995314,0.09211848 +38.68965291976929,0.0,17.424242,17.424242,0.14995314,0.09211848 +38.69966197013855,0.0,15.151516,15.151516,0.12183693,0.09211848 +38.709686040878296,0.01,13.636364,13.636364,0.11246486,0.09581858 +38.71969413757324,0.02,12.878788,12.878788,0.11246486,0.09581858 +38.72966194152832,0.03,12.121212,12.121212,0.10309278,0.09581858 +38.73941206932068,0.04,10.606061,10.606061,0.10309278,0.09581858 +38.749661922454834,0.04,9.848485,9.848485,0.09372071,0.09581858 +38.759697914123535,0.049999997,9.090909,9.090909,0.09372071,0.114319056 +38.76967692375183,0.06,8.333334,8.333334,0.07497657,0.114319056 +38.77952313423157,0.06,7.575758,7.575758,0.07497657,0.114319056 +38.78966808319092,0.07,6.818182,6.818182,0.05623243,0.114319056 +38.79969906806946,0.07,6.060606,6.060606,0.05623243,0.114319056 +38.80964398384094,0.08,5.3030305,5.3030305,0.046860356,0.16427042 +38.819679975509644,0.08,4.5454545,4.5454545,0.037488285,0.16427042 +38.82964205741882,0.089999996,3.787879,3.787879,0.037488285,0.16427042 +38.83956503868103,0.089999996,3.787879,3.787879,0.028116215,0.16427042 +38.849679946899414,0.089999996,3.030303,3.030303,0.028116215,0.16427042 +38.859683990478516,0.099999994,2.2727273,2.2727273,0.018744143,0.20312142 +38.86940407752991,0.099999994,2.2727273,2.2727273,0.018744143,0.20312142 +38.87967801094055,0.11,1.5151515,1.5151515,0.009372071,0.20312142 +38.889671087265015,0.11,1.5151515,1.5151515,0.009372071,0.20312142 +38.89962697029114,0.12,0.75757575,0.75757575,0.009372071,0.20312142 +38.909685134887695,0.12,0.75757575,0.75757575,0.0,0.38442627 +38.91955494880676,0.12,0.75757575,0.75757575,0.0,0.38442627 +38.929625034332275,0.12,0.0,0.0,0.0,0.38442627 +38.93967795372009,0.13,0.0,0.0,0.0,0.38442627 +38.9496750831604,0.13,0.0,0.0,0.0,0.38442627 +38.95942306518555,0.13,0.0,0.0,0.0,0.43807763 +38.969664096832275,0.13,0.0,0.0,0.0,0.43807763 +38.97966909408569,0.13,0.0,0.0,0.0,0.43807763 +38.98953199386597,0.14,0.0,0.0,0.0,0.43807763 +38.99969506263733,0.14,0.0,0.0,0.0,0.43807763 +39.00969099998474,0.14,0.0,0.0,0.0,0.34372514 +39.01969313621521,0.14999999,0.0,0.0,0.0,0.34372514 +39.02965807914734,0.14999999,0.0,0.0,0.0,0.34372514 +39.03967499732971,0.14999999,0.0,0.0,0.0,0.34372514 +39.04969310760498,0.14999999,0.0,0.0,0.0,0.34372514 +39.05965495109558,0.14999999,0.0,0.0,0.0,0.2919238 +39.06969714164734,0.16,0.0,0.0,0.0,0.2919238 +39.079407930374146,0.16,0.0,0.0,0.0,0.2919238 +39.089674949645996,0.16,0.0,0.0,0.0,0.2919238 +39.09966802597046,0.16,0.0,0.0,0.0,0.2919238 +39.10948204994202,0.16,0.0,0.0,0.0,0.28637367 +39.11968803405762,0.16,0.0,0.0,0.0,0.28637367 +39.12967395782471,0.16,0.0,0.0,0.0,0.28637367 +39.139683961868286,0.16,0.0,0.0,0.0,0.28637367 +39.149662017822266,0.16,0.0,0.0,0.0,0.28637367 +39.15970206260681,0.16,0.0,0.0,0.0,0.29932398 +39.169533014297485,0.16,0.0,0.0,0.0,0.29932398 +39.1796600818634,0.16,0.0,0.0,0.0,0.29932398 +39.18966102600098,0.16,0.0,0.0,0.0,0.29932398 +39.19971013069153,0.16,0.0,0.0,0.0,0.29932398 +39.20969200134277,0.16,0.0,0.0,0.0,0.29932398 +39.21959900856018,0.16,0.0,0.0,0.0,0.29932398 +39.22968101501465,0.16,0.0,0.0,0.0,0.29932398 +39.23971605300903,0.14999999,0.0,0.0,0.0,0.29932398 +39.24961805343628,0.14999999,0.0,0.0,0.0,0.29932398 +39.259695053100586,0.14999999,0.0,0.0,0.0,0.26602313 +39.26968693733215,0.14999999,0.0,0.0,0.0,0.26602313 +39.27970314025879,0.14999999,0.0,0.0,0.0,0.26602313 +39.28959512710571,0.14999999,0.0,0.0,0.0,0.26602313 +39.29969096183777,0.14999999,0.0,0.0,0.0,0.26602313 +39.3093900680542,0.16,0.0,0.0,0.0,0.25307277 +39.319705963134766,0.16,0.0,0.0,0.0,0.25307277 +39.32968592643738,0.16,0.0,0.0,0.0,0.25307277 +39.33967304229736,0.16,0.0,0.0,0.0,0.25307277 +39.34969401359558,0.16,0.0,0.0,0.0,0.25307277 +39.35972309112549,0.16,0.0,0.0,0.0,0.2549228 +39.36968207359314,0.14999999,0.0,0.0,0.0,0.2549228 +39.379409074783325,0.14999999,0.0,0.0,0.0,0.2549228 +39.389687061309814,0.14999999,0.0,0.0,0.0,0.2549228 +39.39968204498291,0.14999999,0.0,0.0,0.0,0.2549228 +39.409510135650635,0.14999999,0.0,0.0,0.0,0.2549228 +39.419541120529175,0.14,0.0,0.0,0.0,0.2549228 +39.4296600818634,0.14,0.0,0.0,0.0,0.2549228 +39.43969798088074,0.14,0.0,0.0,0.0,0.2549228 +39.44944190979004,0.14,0.0,0.0,0.0,0.2549228 +39.459686040878296,0.14,0.0,0.0,0.0,0.19942135 +39.469598054885864,0.14,0.0,0.0,0.0,0.19942135 +39.47973012924194,0.14,0.0,0.0,0.0,0.19942135 +39.48965096473694,0.14,0.0,0.0,0.0,0.19942135 +39.49970102310181,0.14,0.0,0.0,0.0,0.19942135 +39.50969696044922,0.14,0.0,0.0,0.0,0.19387117 +39.51971507072449,0.14,0.0,0.0,0.0,0.19387117 +39.529670000076294,0.14,0.0,0.0,0.0,0.19387117 +39.539551973342896,0.14,0.0,0.0,0.0,0.19387117 +39.54970598220825,0.14,0.0,0.0,0.0,0.19387117 +39.55968403816223,0.14,0.0,0.0,0.0,0.19942135 +39.569441080093384,0.14,0.0,0.0,0.0,0.19942135 +39.57969403266907,0.14,0.0,0.0,0.0,0.19942135 +39.58968901634216,0.14,0.0,0.0,0.0,0.19942135 +39.59969902038574,0.14,0.0,0.0,0.0,0.19942135 +39.60971212387085,0.14,0.0,0.0,0.0,0.19387117 +39.619686126708984,0.14,0.0,0.0,0.0,0.19387117 +39.62964701652527,0.14,0.0,0.0,0.0,0.19387117 +39.639708042144775,0.14,0.0,0.0,0.0,0.19387117 +39.64966702461243,0.14,0.0,0.0,0.0,0.19387117 +39.659680128097534,0.14,0.0,0.0,0.0,0.19387117 +39.6696879863739,0.14,0.0,0.0,0.0,0.19387117 +39.67948794364929,0.14,0.0,0.0,0.0,0.19387117 +39.689685106277466,0.14,0.0,0.0,0.0,0.19387117 +39.699697971343994,0.14,0.0,0.0,0.0,0.19387117 +39.70969796180725,0.14,0.0,0.0,0.0,0.22532202 +39.71973395347595,0.14,0.0,0.0,0.0,0.22532202 +39.72971296310425,0.14,0.0,0.0,0.0,0.22532202 +39.73970293998718,0.14,0.0,0.0,0.0,0.22532202 +39.74970102310181,0.14999999,0.0,0.0,0.0,0.22532202 +39.75972008705139,0.14999999,0.0,0.0,0.0,0.23457228 +39.76971697807312,0.14999999,0.0,0.0,0.0,0.23457228 +39.77968692779541,0.16,0.0,0.0,0.0,0.23457228 +39.78969693183899,0.16,0.0,0.0,0.0,0.23457228 +39.7997100353241,0.16,0.0,0.0,0.0,0.23457228 +39.80958008766174,0.16,0.0,0.0,0.0,0.24937265 +39.81955003738403,0.16,0.0,0.0,0.0,0.24937265 +39.82972002029419,0.16,0.0,0.0,0.0,0.24937265 +39.83970093727112,0.16,0.0,0.0,0.0,0.24937265 +39.849709033966064,0.16,0.0,0.0,0.0,0.24937265 +39.859699010849,0.16,0.0,0.0,0.0,0.20497148 +39.869707107543945,0.16,0.0,0.0,0.0,0.20497148 +39.879706144332886,0.16,0.0,0.0,0.0,0.20497148 +39.88971400260925,0.16,0.0,0.0,0.0,0.20497148 +39.89942908287048,0.17,0.0,0.0,0.0,0.20497148 +39.909703969955444,0.17,0.0,0.0,0.0,0.23457228 +39.919440031051636,0.17,0.0,0.0,0.0,0.23457228 +39.9294319152832,0.17,0.0,0.0,0.0,0.23457228 +39.93943500518799,0.17,0.0,0.0,0.0,0.23457228 +39.949700117111206,0.17,0.0,0.0,0.0,0.23457228 +39.9596791267395,0.17,0.0,0.0,0.0,0.24937265 +39.96963310241699,0.17,0.0,0.0,0.0,0.24937265 +39.979602098464966,0.17,0.0,0.0,0.0,0.24937265 +39.98970603942871,0.17,0.0,0.0,0.0,0.24937265 +39.999699115753174,0.17,0.0,0.0,0.0,0.24937265 +40.00969910621643,0.17,0.0,0.0,0.0,0.30857423 +40.01958513259888,0.17,0.0,0.0,0.0,0.30857423 +40.02970099449158,0.17,0.0,0.0,0.0,0.30857423 +40.03972506523132,0.16,0.0,0.0,0.0,0.30857423 +40.049407958984375,0.16,0.0,0.0,0.0,0.30857423 +40.05959105491638,0.16,0.0,0.0,0.0,0.30672416 +40.06959891319275,0.16,0.0,0.0,0.0,0.30672416 +40.07973909378052,0.16,0.0,0.0,0.0,0.30672416 +40.08968710899353,0.17,0.0,0.0,0.0,0.30672416 +40.099695920944214,0.17,0.0,0.0,0.0,0.30672416 +40.10960602760315,0.17,0.0,0.0,0.0,0.31412435 +40.119707107543945,0.17,0.0,0.0,0.0,0.31412435 +40.12970805168152,0.17,0.0,0.0,0.0,0.31412435 +40.139519929885864,0.17,0.0,0.0,0.0,0.31412435 +40.14951992034912,0.17,0.0,0.0,0.0,0.31412435 +40.15972113609314,0.17,0.0,0.0,0.0,0.43437755 +40.16971206665039,0.17,0.0,0.0,0.0,0.43437755 +40.17970609664917,0.17,0.0,0.0,0.0,0.43437755 +40.18970203399658,0.17,0.0,0.0,0.0,0.43437755 +40.199464082717896,0.17,0.0,0.0,0.0,0.43437755 +40.20973801612854,0.17,0.0,0.0,0.0,0.44177777 +40.21970891952515,0.17,0.0,0.0,0.0,0.44177777 +40.22971796989441,0.17,0.0,0.0,0.0,0.44177777 +40.23947191238403,0.17,0.0,0.0,0.0,0.44177777 +40.249696016311646,0.17,0.0,0.0,0.0,0.44177777 +40.25971794128418,0.17,0.0,0.0,0.0,0.43807763 +40.269726037979126,0.17,0.0,0.0,0.0,0.43807763 +40.279706954956055,0.17,0.0,0.0,0.0,0.43807763 +40.28970408439636,0.17,0.0,0.0,0.0,0.43807763 +40.29970693588257,0.17999999,0.0,0.0,0.0,0.43807763 +40.30963110923767,0.17999999,0.0,0.0,0.0,0.44177777 +40.31974411010742,0.17999999,0.0,0.0,0.0,0.44177777 +40.32939004898071,0.17999999,0.0,0.0,0.0,0.44177777 +40.33968710899353,0.17999999,0.0,0.0,0.0,0.44177777 +40.349714040756226,0.17999999,0.0,0.0,0.0,0.44177777 +40.35947299003601,0.17999999,0.0,0.0,0.0,0.43807763 +40.36969614028931,0.17999999,0.0,0.0,0.0,0.43807763 +40.37971210479736,0.17999999,0.0,0.0,0.0,0.43807763 +40.389528036117554,0.17999999,0.0,0.0,0.0,0.43807763 +40.399714946746826,0.17999999,0.0,0.0,0.0,0.43807763 +40.40970706939697,0.17999999,0.0,0.0,0.0,0.4454778 +40.419459104537964,0.17999999,0.0,0.0,0.0,0.4454778 +40.42968797683716,0.17999999,0.0,0.0,0.0,0.4454778 +40.439733028411865,0.17999999,0.0,0.0,0.0,0.4454778 +40.44959306716919,0.17999999,0.0,0.0,0.0,0.4454778 +40.4595091342926,0.19,0.0,0.0,0.0,0.44917795 +40.46946597099304,0.19,0.0,0.0,0.0,0.44917795 +40.479461908340454,0.19,0.0,0.0,0.0,0.44917795 +40.48974108695984,0.19,0.0,0.0,0.0,0.44917795 +40.499711990356445,0.19,0.0,0.0,0.0,0.44917795 +40.5097451210022,0.19,0.0,0.0,0.0,0.46397835 +40.519734144210815,0.19,0.0,0.0,0.0,0.46397835 +40.52942609786987,0.19,0.0,0.0,0.0,0.46397835 +40.5397310256958,0.19,0.0,0.0,0.0,0.46397835 +40.5496289730072,0.19,0.0,0.0,0.0,0.46397835 +40.55971693992615,0.19,0.0,0.0,0.0,0.57868135 +40.569637060165405,0.19,0.0,0.0,0.0,0.57868135 +40.57974195480347,0.19,0.0,0.0,0.0,0.57868135 +40.58951807022095,0.19,0.0,0.0,0.0,0.57868135 +40.59972596168518,0.19,0.0,0.0,0.0,0.57868135 +40.60972714424133,0.19,0.0,0.0,0.0,0.5990319 +40.61970496177673,0.19,0.0,0.0,0.0,0.5990319 +40.62971901893616,0.19,0.0,0.0,0.0,0.5990319 +40.63971710205078,0.19,0.0,0.0,0.0,0.5990319 +40.64971709251404,0.19,0.0,0.0,0.0,0.5990319 +40.65970492362976,0.19,0.0,0.0,0.0,0.5675811 +40.669732093811035,0.19999999,0.0,0.0,0.0,0.5675811 +40.679709911346436,0.19999999,0.0,0.0,0.0,0.5675811 +40.68970704078674,0.19999999,0.0,0.0,0.0,0.5675811 +40.6994469165802,0.19999999,0.0,0.0,0.0,0.5675811 +40.70974802970886,0.19999999,0.0,0.0,0.0,0.52317995 +40.71952509880066,0.19999999,0.0,0.0,0.0,0.52317995 +40.729716062545776,0.21,0.0,0.0,0.0,0.52317995 +40.73974394798279,0.21,0.0,0.0,0.0,0.52317995 +40.74971103668213,0.21,0.0,0.0,0.0,0.52317995 +40.75975298881531,0.22,0.0,0.0,0.0,0.48247886 +40.76974296569824,0.22,0.0,0.0,0.0,0.48247886 +40.77973294258118,0.22,0.0,0.0,0.0,0.48247886 +40.789715051651,0.22,0.0,0.0,0.0,0.48247886 +40.79974412918091,0.22,0.0,0.0,0.0,0.48247886 +40.8097140789032,0.22999999,0.0,0.0,0.0,0.488029 +40.81945013999939,0.22999999,0.0,0.0,0.0,0.488029 +40.829750061035156,0.22999999,0.0,0.0,0.0,0.488029 +40.83971905708313,0.22999999,0.0,0.0,0.0,0.488029 +40.849534034729004,0.22999999,0.0,0.0,0.0,0.488029 +40.85974597930908,0.22999999,0.0,0.0,0.0,0.49542922 +40.86971712112427,0.22999999,0.0,0.0,0.0,0.49542922 +40.87973213195801,0.22999999,0.0,0.0,0.0,0.49542922 +40.889737129211426,0.22999999,0.0,0.0,0.0,0.49542922 +40.89971113204956,0.22999999,0.0,0.0,0.0,0.49542922 +40.90971612930298,0.22999999,0.0,0.0,0.0,0.24752259 +40.919753074645996,0.22999999,0.0,0.0,0.0,0.24752259 +40.92970895767212,0.22999999,0.0,0.0,0.0,0.24752259 +40.93971014022827,0.22999999,0.0,0.0,0.0,0.24752259 +40.94973611831665,0.22,0.0,0.0,0.0,0.24752259 +40.95977210998535,0.21,0.0,0.0,0.0,0.2697232 +40.96971106529236,0.21,0.0,0.0,0.0,0.2697232 +40.979548931121826,0.19999999,0.0,0.0,0.0,0.2697232 +40.98957705497742,0.19,0.0,0.0,0.0,0.2697232 +40.999732971191406,0.17999999,0.0,0.0,0.0,0.2697232 +41.00972890853882,0.17,3.030303,3.030303,0.0,0.18092082 +41.01943111419678,0.16,6.060606,6.060606,0.0,0.18092082 +41.029489040374756,0.14999999,10.606061,10.606061,0.0,0.18092082 +41.03939890861511,0.14999999,10.606061,10.606061,0.0,0.18092082 +41.04973006248474,0.14,14.39394,14.39394,0.009372071,0.18092082 +41.05972695350647,0.12,21.212122,21.212122,0.046860356,0.17722073 +41.0697340965271,0.11,24.242424,24.242424,0.05623243,0.17722073 +41.07978296279907,0.099999994,28.78788,28.78788,0.05623243,0.17722073 +41.08970904350281,0.089999996,32.575756,32.575756,0.0656045,0.17722073 +41.099725008010864,0.08,39.39394,39.39394,0.09372071,0.17722073 +41.109575033187866,0.07,45.454548,45.454548,0.09372071,0.13651967 +41.11958599090576,0.07,45.454548,45.454548,0.10309278,0.13651967 +41.12963795661926,0.06,53.78788,53.78788,0.11246486,0.13651967 +41.13943696022034,0.049999997,68.18182,68.18182,0.131209,0.13651967 +41.14971303939819,0.04,61.363636,61.363636,0.14995314,0.13651967 +41.159738063812256,0.03,50.0,50.0,0.14995314,0.04401721 +41.169748067855835,0.03,44.696968,44.696968,0.16869728,0.04401721 +41.17945098876953,0.02,40.90909,40.90909,0.16869728,0.04401721 +41.18972897529602,0.02,37.878788,37.878788,0.1968135,0.04401721 +41.19975805282593,0.01,36.363636,36.363636,0.1968135,0.04401721 +41.20975708961487,0.01,35.60606,35.60606,0.22492972,-0.011484267 +41.21956992149353,0.0,36.363636,36.363636,0.22492972,-0.011484267 +41.22951006889343,0.0,39.39394,39.39394,0.24367386,-0.011484267 +41.239617109298706,0.0,39.39394,39.39394,0.262418,-0.011484267 +41.24971604347229,0.0,43.181816,43.181816,0.27179006,-0.011484267 +41.25974106788635,0.0,50.0,50.0,0.2905342,-0.020734508 +41.26948809623718,0.0,52.272724,52.272724,0.2905342,-0.020734508 +41.27975392341614,0.0,55.30303,55.30303,0.2905342,-0.020734508 +41.28973698616028,0.0,58.333332,58.333332,0.30927837,-0.020734508 +41.2997510433197,0.0,62.121212,62.121212,0.3280225,-0.020734508 +41.30951499938965,0.0,66.66667,66.66667,0.3280225,-0.029984765 +41.31973910331726,0.0,71.21212,71.21212,0.33739457,-0.029984765 +41.32976293563843,0.0,75.0,75.0,0.33739457,-0.029984765 +41.3397331237793,0.0,78.030304,78.030304,0.34676665,-0.029984765 +41.349725008010864,0.0,81.81818,81.81818,0.33739457,-0.029984765 +41.35953092575073,0.0,81.81818,81.81818,0.33739457,-0.050335295 +41.36968493461609,0.0,87.12121,87.12121,0.34676665,-0.050335295 +41.379456996917725,0.0,97.72728,97.72728,0.3561387,-0.050335295 +41.389760971069336,0.0,103.78788,103.78788,0.3561387,-0.050335295 +41.39944911003113,0.0,103.78788,103.78788,0.3561387,-0.050335295 +41.409749031066895,0.0,109.84849,109.84849,0.3655108,-0.022584556 +41.41973805427551,0.0,118.181816,118.181816,0.3655108,-0.022584556 +41.42972803115845,0.0,122.72727,122.72727,0.37488285,-0.022584556 +41.43977212905884,0.0,128.0303,128.0303,0.37488285,-0.022584556 +41.449597120285034,0.0,132.57574,132.57574,0.37488285,-0.022584556 +41.45975613594055,0.0,137.87878,137.87878,0.38425493,-0.024434604 +41.469736099243164,0.0,142.42424,142.42424,0.41237113,-0.024434604 +41.47974896430969,0.0,145.45454,145.45454,0.41237113,-0.024434604 +41.489567041397095,0.0,146.9697,146.9697,0.41237113,-0.024434604 +41.49968695640564,0.0,147.72726,147.72726,0.4217432,-0.024434604 +41.50973892211914,0.0,149.24243,149.24243,0.4217432,-0.041085053 +41.51977300643921,0.0,150.75758,150.75758,0.4217432,-0.041085053 +41.529547929763794,0.0,152.27274,152.27274,0.43111527,-0.041085053 +41.539623975753784,0.0,153.0303,153.0303,0.4217432,-0.041085053 +41.54975700378418,0.0,153.78789,153.78789,0.4217432,-0.041085053 +41.5597620010376,0.0,152.27274,152.27274,0.4217432,-0.029984765 +41.569730043411255,0.0,150.0,150.0,0.43111527,-0.029984765 +41.579428911209106,0.0,146.9697,146.9697,0.43111527,-0.029984765 +41.58971905708313,0.0,143.93939,143.93939,0.44048735,-0.029984765 +41.59976005554199,0.0,140.90909,140.90909,0.44048735,-0.029984765 +41.60941791534424,0.0,139.39394,139.39394,0.44048735,-0.041085053 +41.61972498893738,0.0,137.12122,137.12122,0.44048735,-0.041085053 +41.62965703010559,0.0,135.60606,135.60606,0.44048735,-0.041085053 +41.63956093788147,0.0,135.60606,135.60606,0.43111527,-0.041085053 +41.64972496032715,0.0,133.33334,133.33334,0.44048735,-0.041085053 +41.659740924835205,0.0,126.51515,126.51515,0.43111527,-0.033684865 +41.669697999954224,0.0,123.48485,123.48485,0.43111527,-0.033684865 +41.67975306510925,0.0,121.21213,121.21213,0.43111527,-0.033684865 +41.689544916152954,0.0,119.69697,119.69697,0.4217432,-0.033684865 +41.69977593421936,0.0,117.42424,117.42424,0.4217432,-0.033684865 +41.709765911102295,0.0,115.909096,115.909096,0.41237113,-0.026284654 +41.71971392631531,0.0,115.909096,115.909096,0.41237113,-0.026284654 +41.72974109649658,0.0,112.878784,112.878784,0.41237113,-0.026284654 +41.73976993560791,0.0,106.818184,106.818184,0.40299907,-0.026284654 +41.74974703788757,0.0,103.030304,103.030304,0.40299907,-0.026284654 +41.759737968444824,0.0,103.030304,103.030304,0.40299907,-0.054035395 +41.76971507072449,0.0,100.0,100.0,0.41237113,-0.054035395 +41.779743909835815,0.0,96.969696,96.969696,0.40299907,-0.054035395 +41.78941893577576,0.0,96.21212,96.21212,0.40299907,-0.054035395 +41.79978108406067,0.0,95.454544,95.454544,0.40299907,-0.054035395 +41.809728145599365,0.0,94.69697,94.69697,0.40299907,-0.07438594 +41.81974697113037,0.0,93.181816,93.181816,0.393627,-0.07438594 +41.829774141311646,0.0,90.15152,90.15152,0.40299907,-0.07438594 +41.83975601196289,0.0,87.878784,87.878784,0.40299907,-0.07438594 +41.84942007064819,0.0,86.36363,86.36363,0.393627,-0.07438594 +41.85975003242493,0.0,85.606064,85.606064,0.40299907,-0.096586525 +41.8697509765625,0.0,85.606064,85.606064,0.40299907,-0.096586525 +41.87976002693176,0.0,84.84849,84.84849,0.40299907,-0.096586525 +41.889744997024536,0.0,84.09091,84.09091,0.40299907,-0.096586525 +41.89973711967468,0.0,81.81818,81.81818,0.393627,-0.096586525 +41.90973901748657,0.0,79.545456,79.545456,0.38425493,-0.12618731 +41.91977000236511,0.0,75.0,75.0,0.38425493,-0.12618731 +41.929747104644775,0.0,71.21212,71.21212,0.38425493,-0.12618731 +41.93957710266113,0.0,67.42425,67.42425,0.38425493,-0.12618731 +41.94975304603577,0.0,64.393936,64.393936,0.38425493,-0.12618731 +41.959737062454224,0.0,59.848484,59.848484,0.38425493,-0.13543756 +41.96973991394043,0.0,56.060604,56.060604,0.37488285,-0.13543756 +41.97976803779602,0.0,50.0,50.0,0.3561387,-0.13543756 +41.989771127700806,0.0,44.696968,44.696968,0.34676665,-0.13543756 +41.999691009521484,0.0,44.696968,44.696968,0.34676665,-0.13543756 +42.009751081466675,0.0,38.636364,38.636364,0.33739457,-0.152088 +42.01941895484924,0.0,28.78788,28.78788,0.33739457,-0.152088 +42.02962303161621,0.0,24.242424,24.242424,0.3280225,-0.152088 +42.039391040802,0.0,24.242424,24.242424,0.31865042,-0.152088 +42.049757957458496,0.0,22.727274,22.727274,0.31865042,-0.152088 +42.05973291397095,0.0,29.545454,29.545454,0.29990628,-0.16318831 +42.069766998291016,0.0,33.333336,33.333336,0.29990628,-0.16318831 +42.079795122146606,0.0,37.878788,37.878788,0.29990628,-0.16318831 +42.08973407745361,0.0,40.90909,40.90909,0.29990628,-0.16318831 +42.099754095077515,0.0,44.696968,44.696968,0.29990628,-0.16318831 +42.109774112701416,0.0,47.727272,47.727272,0.29990628,-0.1594882 +42.11978006362915,0.0,50.757576,50.757576,0.29990628,-0.1594882 +42.12953305244446,0.0,53.78788,53.78788,0.29990628,-0.1594882 +42.139764070510864,0.0,57.57576,57.57576,0.29990628,-0.1594882 +42.14973211288452,0.0,62.121212,62.121212,0.30927837,-0.1594882 +42.15976595878601,0.0,66.66667,66.66667,0.30927837,-0.19278908 +42.16976809501648,0.0,67.42425,67.42425,0.29990628,-0.19278908 +42.179749965667725,0.0,63.636364,63.636364,0.30927837,-0.19278908 +42.18976402282715,0.0,59.090908,59.090908,0.31865042,-0.19278908 +42.19971203804016,0.0,59.090908,59.090908,0.31865042,-0.19278908 +42.20948791503906,0.0,53.78788,53.78788,0.31865042,-0.20388938 +42.21969795227051,0.0,43.181816,43.181816,0.31865042,-0.20388938 +42.22939395904541,0.0,37.878788,37.878788,0.30927837,-0.20388938 +42.23977994918823,0.0,32.575756,32.575756,0.31865042,-0.20388938 +42.24974513053894,0.0,29.545454,29.545454,0.31865042,-0.20388938 +42.25941801071167,0.0,27.272728,27.272728,0.31865042,-0.2538407 +42.26978611946106,0.0,24.242424,24.242424,0.29990628,-0.2538407 +42.27977895736694,0.0,24.242424,24.242424,0.29990628,-0.2538407 +42.289644956588745,0.0,21.969696,21.969696,0.29990628,-0.2538407 +42.299790143966675,0.0,28.78788,28.78788,0.29990628,-0.2538407 +42.309760093688965,0.0,32.575756,32.575756,0.29990628,-0.34634316 +42.31952500343323,0.0,32.575756,32.575756,0.29990628,-0.34634316 +42.32976698875427,0.0,35.60606,35.60606,0.2905342,-0.34634316 +42.33954405784607,0.0,39.39394,39.39394,0.2905342,-0.34634316 +42.34975504875183,0.0,41.666668,41.666668,0.28116214,-0.34634316 +42.35977005958557,0.0,44.696968,44.696968,0.28116214,-0.3962945 +42.36976504325867,0.0,47.727272,47.727272,0.27179006,-0.3962945 +42.37958097457886,0.0,51.515152,51.515152,0.27179006,-0.3962945 +42.389760971069336,0.0,55.30303,55.30303,0.27179006,-0.3962945 +42.39975690841675,0.0,58.333332,58.333332,0.27179006,-0.3962945 +42.409724950790405,0.0,60.606064,60.606064,0.27179006,-0.4721465 +42.41969704627991,0.0,63.636364,63.636364,0.28116214,-0.4721465 +42.429754972457886,0.0,65.15151,65.15151,0.28116214,-0.4721465 +42.43978214263916,0.0,66.66667,66.66667,0.28116214,-0.4721465 +42.449790954589844,0.0,66.66667,66.66667,0.28116214,-0.4721465 +42.459774017333984,0.0,67.42425,67.42425,0.2905342,-0.48694688 +42.469526052474976,0.0,65.15151,65.15151,0.2905342,-0.48694688 +42.4797580242157,0.0,57.57576,57.57576,0.2905342,-0.48694688 +42.48979306221008,0.0,50.757576,50.757576,0.29990628,-0.48694688 +42.49976992607117,0.0,44.696968,44.696968,0.29990628,-0.48694688 +42.50977301597595,0.0,37.878788,37.878788,0.29990628,-0.566499 +42.51979613304138,0.0,30.303032,30.303032,0.29990628,-0.566499 +42.529757022857666,0.0,23.484848,23.484848,0.2905342,-0.566499 +42.53970694541931,0.0,19.69697,19.69697,0.2905342,-0.566499 +42.54977512359619,0.0,18.939394,18.939394,0.27179006,-0.566499 +42.5594699382782,0.0,18.939394,18.939394,0.27179006,-0.568349 +42.56978893280029,0.0,18.181818,18.181818,0.24367386,-0.568349 +42.57978701591492,0.0,16.666668,16.666668,0.23430179,-0.568349 +42.58954906463623,0.0,15.151516,15.151516,0.23430179,-0.568349 +42.599756956100464,0.0,14.39394,14.39394,0.21555763,-0.568349 +42.60977292060852,0.0,12.878788,12.878788,0.21555763,-0.6146003 +42.61974906921387,0.0,12.121212,12.121212,0.1968135,-0.6146003 +42.62940812110901,0.0,11.363637,11.363637,0.1968135,-0.6146003 +42.63980293273926,0.0,10.606061,10.606061,0.17806935,-0.6146003 +42.64975595474243,0.0,9.090909,9.090909,0.16869728,-0.6146003 +42.65978813171387,0.0,8.333334,8.333334,0.14995314,-0.7792546 +42.66970491409302,0.0,7.575758,7.575758,0.14995314,-0.7792546 +42.67972707748413,0.0,7.575758,7.575758,0.14058107,-0.7792546 +42.6897759437561,0.0,6.818182,6.818182,0.12183693,-0.7792546 +42.69979190826416,0.0,6.060606,6.060606,0.09372071,-0.7792546 +42.70956897735596,0.0,5.3030305,5.3030305,0.09372071,-0.76075417 +42.71950006484985,0.0,5.3030305,5.3030305,0.08434864,-0.76075417 +42.729772090911865,0.0,4.5454545,4.5454545,0.07497657,-0.76075417 +42.73978805541992,0.0,3.787879,3.787879,0.046860356,-0.76075417 +42.7497820854187,0.01,3.030303,3.030303,0.046860356,-0.76075417 +42.759791135787964,0.02,3.030303,3.030303,0.046860356,-0.7626042 +42.769777059555054,0.02,2.2727273,2.2727273,0.028116215,-0.7626042 +42.77976393699646,0.03,2.2727273,2.2727273,0.009372071,-0.7626042 +42.7897789478302,0.04,1.5151515,1.5151515,0.0,-0.7626042 +42.79966711997986,0.04,1.5151515,1.5151515,0.0,-0.7626042 +42.80957913398743,0.049999997,1.5151515,1.5151515,0.0,-0.74040365 +42.81978797912598,0.06,0.75757575,0.75757575,0.0,-0.74040365 +42.82954502105713,0.07,0.75757575,0.75757575,0.0,-0.74040365 +42.83978009223938,0.08,0.0,0.0,0.0,-0.74040365 +42.849791049957275,0.08,0.0,0.0,0.0,-0.74040365 +42.859792947769165,0.089999996,0.0,0.0,0.0,-0.79035497 +42.86975693702698,0.089999996,0.0,0.0,0.0,-0.79035497 +42.87978911399841,0.089999996,0.0,0.0,0.0,-0.79035497 +42.889785051345825,0.089999996,0.0,0.0,0.0,-0.79035497 +42.89968514442444,0.099999994,0.0,0.0,0.0,-0.79035497 +42.90971398353577,0.099999994,0.0,0.0,0.0,-0.69970256 +42.919841051101685,0.099999994,0.0,0.0,0.0,-0.69970256 +42.92972707748413,0.11,0.0,0.0,0.0,-0.69970256 +42.93976593017578,0.12,0.0,0.0,0.0,-0.69970256 +42.94974613189697,0.12,0.0,0.0,0.0,-0.69970256 +42.959399938583374,0.12,0.0,0.0,0.0,-0.677502 +42.96977710723877,0.13,0.0,0.0,0.0,-0.677502 +42.97978711128235,0.14999999,0.0,0.0,0.0,-0.677502 +42.98975706100464,0.14999999,0.0,0.0,0.0,-0.677502 +42.99980592727661,0.16,0.0,0.0,0.0,-0.677502 +43.009796142578125,0.16,0.0,0.0,0.0,-0.64050096 +43.01979303359985,0.17,0.0,0.0,0.0,-0.64050096 +43.02976393699646,0.17999999,0.0,0.0,0.0,-0.64050096 +43.03950500488281,0.17999999,0.0,0.0,0.0,-0.64050096 +43.049675941467285,0.17999999,0.0,0.0,0.0,-0.64050096 +43.059720039367676,0.19999999,0.0,0.0,0.0,-0.6460511 +43.06951904296875,0.19999999,0.0,0.0,0.0,-0.6460511 +43.07980012893677,0.21,0.0,0.0,0.0,-0.6460511 +43.08953404426575,0.22,0.0,0.0,0.0,-0.6460511 +43.09979295730591,0.22999999,0.0,0.0,0.0,-0.6460511 +43.10979700088501,0.24,0.0,0.0,0.0,-0.6146003 +43.11977505683899,0.25,0.0,0.0,0.0,-0.6146003 +43.12979006767273,0.26,0.0,0.0,0.0,-0.6146003 +43.13979506492615,0.26999998,0.0,0.0,0.0,-0.6146003 +43.149779081344604,0.26999998,0.0,0.0,0.0,-0.6146003 +43.15978407859802,0.28,0.0,0.0,0.0,-0.7385536 +43.16980504989624,0.28,0.0,0.0,0.0,-0.7385536 +43.17978310585022,0.28,0.0,0.0,0.0,-0.7385536 +43.18970513343811,0.29,0.0,0.0,0.0,-0.7385536 +43.19980001449585,0.29,0.0,0.0,0.0,-0.7385536 +43.20979404449463,0.29,0.0,0.0,0.0,-0.8162557 +43.21978211402893,0.29999998,0.0,0.0,0.0,-0.8162557 +43.22979497909546,0.29999998,0.0,0.0,0.0,-0.8162557 +43.23985004425049,0.29999998,0.0,0.0,0.0,-0.8162557 +43.24979209899902,0.29999998,0.0,0.0,0.0,-0.8162557 +43.25980496406555,0.29999998,0.0,0.0,0.0,-0.81810564 +43.269798040390015,0.29999998,0.0,0.0,0.0,-0.81810564 +43.27978992462158,0.29999998,0.0,0.0,0.0,-0.81810564 +43.28980803489685,0.29999998,0.0,0.0,0.0,-0.81810564 +43.29980397224426,0.29999998,0.0,0.0,0.0,-0.81810564 +43.309781074523926,0.29999998,0.0,0.0,0.0,-0.8162557 +43.31948208808899,0.29999998,0.0,0.0,0.0,-0.8162557 +43.32943296432495,0.29999998,0.0,0.0,0.0,-0.8162557 +43.33978009223938,0.29999998,0.0,0.0,0.0,-0.8162557 +43.34980010986328,0.29999998,0.0,0.0,0.0,-0.8162557 +43.359760999679565,0.29999998,0.0,0.0,0.0,-0.85510665 +43.3697829246521,0.29999998,0.0,0.0,0.0,-0.85510665 +43.379815101623535,0.29999998,0.0,0.0,0.0,-0.85510665 +43.38980293273926,0.29999998,0.0,0.0,0.0,-0.85510665 +43.39954113960266,0.29999998,0.0,0.0,0.0,-0.85510665 +43.40979194641113,0.29999998,0.0,0.0,0.0,-0.85325664 +43.41946005821228,0.29999998,0.0,0.0,0.0,-0.85325664 +43.42977809906006,0.29,0.0,0.0,0.0,-0.85325664 +43.439780950546265,0.29,0.0,0.0,0.0,-0.85325664 +43.44946813583374,0.29,0.0,0.0,0.0,-0.85325664 +43.45981001853943,0.28,0.0,0.0,0.0,-0.9568594 +43.46977996826172,0.28,0.0,0.0,0.0,-0.9568594 +43.47968006134033,0.28,0.0,0.0,0.0,-0.9568594 +43.48980212211609,0.26999998,0.0,0.0,0.0,-0.9568594 +43.4997980594635,0.26,0.0,0.0,0.0,-0.9568594 +43.50963807106018,0.25,0.0,0.0,0.0,-1.053062 +43.51987409591675,0.24,0.0,0.0,0.0,-1.053062 +43.52978992462158,0.24,0.0,0.0,0.0,-1.053062 +43.539413928985596,0.24,0.0,0.0,0.0,-1.053062 +43.54981303215027,0.22999999,0.0,0.0,0.0,-1.053062 +43.559804916381836,0.22999999,0.0,0.0,0.0,-1.0678623 +43.56979703903198,0.24,0.0,0.0,0.0,-1.0678623 +43.57964205741882,0.24,0.0,0.0,0.0,-1.0678623 +43.58979511260986,0.24,0.0,0.0,0.0,-1.0678623 +43.59980607032776,0.24,0.0,0.0,0.0,-1.0678623 +43.60981202125549,0.24,0.0,0.0,0.0,-1.0604621 +43.619789123535156,0.24,0.0,0.0,0.0,-1.0604621 +43.629493951797485,0.24,0.0,0.0,0.0,-1.0604621 +43.63984394073486,0.22999999,0.0,0.0,0.0,-1.0604621 +43.64941096305847,0.22999999,0.0,0.0,0.0,-1.0604621 +43.65971398353577,0.22999999,0.0,0.0,0.0,-1.0604621 +43.66981792449951,0.22,0.0,0.0,0.0,-1.0604621 +43.67980694770813,0.22,0.0,0.0,0.0,-1.0604621 +43.68952512741089,0.22,0.0,0.0,0.0,-1.0604621 +43.69981598854065,0.21,0.0,0.0,0.0,-1.0604621 +43.70964598655701,0.21,0.0,0.0,0.0,-1.0364114 +43.71946406364441,0.21,0.0,0.0,0.0,-1.0364114 +43.72982597351074,0.21,0.0,0.0,0.0,-1.0364114 +43.73981809616089,0.21,0.0,0.0,0.0,-1.0364114 +43.74979496002197,0.21,0.0,0.0,0.0,-1.0364114 +43.759830951690674,0.21,0.0,0.0,0.0,-0.97906 +43.769814014434814,0.21,0.0,0.0,0.0,-0.97906 +43.77980709075928,0.21,0.0,0.0,0.0,-0.97906 +43.78981399536133,0.21,0.0,0.0,0.0,-0.97906 +43.79939913749695,0.22,0.0,0.0,0.0,-0.97906 +43.809597969055176,0.22,0.0,0.0,0.0,-0.9531593 +43.819597005844116,0.22,0.0,0.0,0.0,-0.9531593 +43.82980799674988,0.22,0.0,0.0,0.0,-0.9531593 +43.839635133743286,0.22,0.0,0.0,0.0,-0.9531593 +43.84980297088623,0.22,0.0,0.0,0.0,-0.9531593 +43.85981297492981,0.22,0.0,0.0,0.0,-0.9531593 +43.86979913711548,0.22999999,0.0,0.0,0.0,-0.9531593 +43.87960600852966,0.22999999,0.0,0.0,0.0,-0.9531593 +43.88980412483215,0.22999999,0.0,0.0,0.0,-0.9531593 +43.89947199821472,0.22999999,0.0,0.0,0.0,-0.9531593 +43.90981411933899,0.22999999,0.0,0.0,0.0,-0.8791573 +43.919804096221924,0.22999999,0.0,0.0,0.0,-0.8791573 +43.92978811264038,0.22999999,0.0,0.0,0.0,-0.8791573 +43.939796924591064,0.22999999,0.0,0.0,0.0,-0.8791573 +43.94980192184448,0.22999999,0.0,0.0,0.0,-0.8791573 +43.95977592468262,0.22999999,0.0,0.0,0.0,-0.64975125 +43.9694550037384,0.22999999,0.0,0.0,0.0,-0.64975125 +43.979816913604736,0.22999999,0.0,0.0,0.0,-0.64975125 +43.98952603340149,0.24,0.0,0.0,0.0,-0.64975125 +43.999797105789185,0.24,0.0,0.0,0.0,-0.64975125 +44.009817123413086,0.24,0.0,0.0,0.0,-0.5054473 +44.02004599571228,0.24,0.0,0.0,0.0,-0.5054473 +44.0298011302948,0.24,0.0,0.0,0.0,-0.5054473 +44.03971314430237,0.25,0.0,0.0,0.0,-0.5054473 +44.04956412315369,0.25,0.0,0.0,0.0,-0.5054473 +44.059799909591675,0.25,0.0,0.0,0.0,-0.5239479 +44.069809913635254,0.25,0.0,0.0,0.0,-0.5239479 +44.07956504821777,0.25,0.0,0.0,0.0,-0.5239479 +44.091509103775024,0.25,0.0,0.0,0.0,-0.5239479 +44.09962296485901,0.25,0.0,0.0,0.0,-0.5239479 +44.10982394218445,0.25,0.0,0.0,0.0,-0.53874826 +44.119800090789795,0.25,0.0,0.0,0.0,-0.53874826 +44.129703998565674,0.26,0.0,0.0,0.0,-0.53874826 +44.141364097595215,0.26,0.0,0.0,0.0,-0.53874826 +44.15040302276611,0.26,0.0,0.0,0.0,-0.53874826 +44.15944004058838,0.26,0.0,0.0,0.0,-0.4943471 +44.16962504386902,0.26,0.0,0.0,0.0,-0.4943471 +44.1811580657959,0.26999998,0.0,0.0,0.0,-0.4943471 +44.191534996032715,0.26999998,0.0,0.0,0.0,-0.4943471 +44.1998291015625,0.26999998,0.0,0.0,0.0,-0.4943471 +44.20986890792847,0.26999998,0.0,0.0,0.0,-0.51099753 +44.21940994262695,0.26999998,0.0,0.0,0.0,-0.51099753 +44.22960901260376,0.26999998,0.0,0.0,0.0,-0.51099753 +44.239825963974,0.28,0.0,0.0,0.0,-0.51099753 +44.24973201751709,0.28,0.0,0.0,0.0,-0.51099753 +44.25970005989075,0.28,0.0,0.0,0.0,-0.5183977 +44.271541118621826,0.28,0.0,0.0,0.0,-0.5183977 +44.27980613708496,0.28,0.0,0.0,0.0,-0.5183977 +44.289984941482544,0.28,0.0,0.0,0.0,-0.5183977 +44.300946950912476,0.28,0.0,0.0,0.0,-0.5183977 +44.31153202056885,0.28,0.0,0.0,0.0,-0.4721465 +44.31981801986694,0.28,0.0,0.0,0.0,-0.4721465 +44.33087992668152,0.28,0.0,0.0,0.0,-0.4721465 +44.33985900878906,0.28,0.0,0.0,0.0,-0.4721465 +44.34943413734436,0.28,0.0,0.0,0.0,-0.4721465 +44.35960412025452,0.28,0.0,0.0,0.0,-0.3074921 +44.36945605278015,0.28,0.0,0.0,0.0,-0.3074921 +44.38154602050781,0.28,0.0,0.0,0.0,-0.3074921 +44.39154291152954,0.28,0.0,0.0,0.0,-0.3074921 +44.399824142456055,0.26999998,0.0,0.0,0.0,-0.3074921 +44.41020703315735,0.26999998,0.0,0.0,0.0,-0.31304228 +44.419405937194824,0.26999998,0.0,0.0,0.0,-0.31304228 +44.42979407310486,0.26,0.0,0.0,0.0,-0.31304228 +44.43980693817139,0.25,0.0,0.0,0.0,-0.31304228 +44.45028305053711,0.24,0.0,0.0,0.0,-0.31304228 +44.4596791267395,0.22999999,0.0,0.0,0.0,-0.28344148 +44.471555948257446,0.22,0.0,0.0,0.0,-0.28344148 +44.4798309803009,0.22,0.0,0.0,0.0,-0.28344148 +44.48955798149109,0.21,0.0,0.0,0.0,-0.28344148 +44.5005099773407,0.21,0.0,0.0,0.0,-0.28344148 +44.510711908340454,0.21,0.0,0.0,0.0,-0.29639184 +44.51970100402832,0.21,0.0,0.0,0.0,-0.29639184 +44.52947497367859,0.21,0.0,0.0,0.0,-0.29639184 +44.53942012786865,0.21,0.0,0.0,0.0,-0.29639184 +44.549790143966675,0.21,0.0,0.0,0.0,-0.29639184 +44.55981707572937,0.21,0.0,0.0,0.0,-0.24459045 +44.57154893875122,0.21,0.0,0.0,0.0,-0.24459045 +44.58157300949097,0.21,0.0,0.0,0.0,-0.24459045 +44.591553926467896,0.21,0.0,0.0,0.0,-0.24459045 +44.599828004837036,0.21,0.0,0.0,0.0,-0.24459045 +44.60962700843811,0.19999999,0.0,0.0,0.0,-0.12248721 +44.61944508552551,0.19999999,0.0,0.0,0.0,-0.12248721 +44.62941598892212,0.19999999,0.0,0.0,0.0,-0.12248721 +44.63983607292175,0.19999999,0.0,0.0,0.0,-0.12248721 +44.65154504776001,0.19,0.0,0.0,0.0,-0.12248721 +44.65967607498169,0.19,0.0,0.0,0.0,0.021816617 +44.67156195640564,0.17999999,0.0,0.0,0.0,0.021816617 +44.67982006072998,0.17,0.0,0.0,0.0,0.021816617 +44.69054913520813,0.16,0.0,0.0,0.0,0.021816617 +44.69954013824463,0.14999999,0.0,0.0,0.0,0.021816617 +44.70944094657898,0.13,0.0,0.0,0.0,0.23272221 +44.719820976257324,0.12,0.0,0.0,0.0,0.23272221 +44.731558084487915,0.11,0.0,0.0,0.0,0.23272221 +44.74156403541565,0.099999994,0.0,0.0,0.0,0.23272221 +44.74958610534668,0.089999996,0.0,0.0,0.0,0.23272221 +44.75984311103821,0.08,0.0,0.0,0.0,0.28637367 +44.76948404312134,0.08,0.0,0.0,0.0,0.28637367 +44.779820919036865,0.08,0.0,0.0,0.0,0.28637367 +44.78944706916809,0.07,0.0,0.0,0.0,0.28637367 +44.79984998703003,0.07,0.0,0.0,0.0,0.28637367 +44.80955791473389,0.07,0.0,0.0,0.0,0.3344749 +44.819868087768555,0.07,0.0,0.0,0.0,0.3344749 +44.83157300949097,0.07,0.0,0.0,0.0,0.3344749 +44.83982491493225,0.07,0.0,0.0,0.0,0.3344749 +44.851046085357666,0.06,0.0,0.0,0.0,0.3344749 +44.85969805717468,0.06,0.0,0.0,0.0,0.39182645 +44.86940312385559,0.06,0.0,0.0,0.0,0.39182645 +44.87962794303894,0.06,0.0,0.0,0.0,0.39182645 +44.89017295837402,0.06,0.0,0.0,0.0,0.39182645 +44.901588916778564,0.06,0.0,0.0,0.0,0.39182645 +44.9103479385376,0.06,0.0,0.0,0.0,0.51392967 +44.91984510421753,0.06,0.0,0.0,0.0,0.51392967 +44.9311900138855,0.06,0.0,0.0,0.0,0.51392967 +44.9400839805603,0.06,0.0,0.0,0.0,0.51392967 +44.95082902908325,0.06,0.0,0.0,0.0,0.51392967 +44.95987010002136,0.06,0.0,0.0,0.0,0.5675811 +44.97124099731445,0.06,0.0,0.0,0.0,0.5675811 +44.980247020721436,0.06,0.0,0.0,0.0,0.5675811 +44.989498138427734,0.06,0.0,0.0,0.0,0.5675811 +44.99984908103943,0.06,0.0,0.0,0.0,0.5675811 +45.00953912734985,0.06,0.0,0.0,0.0,0.6526834 +45.02023005485535,0.06,0.0,0.0,0.0,0.6526834 +45.03051400184631,0.06,0.0,0.0,0.0,0.6526834 +45.0398371219635,0.06,0.0,0.0,0.0,0.6526834 +45.049402952194214,0.07,0.0,0.0,0.0,0.6526834 +45.0596981048584,0.07,0.0,0.0,0.0,0.66008353 +45.0703330039978,0.07,0.0,0.0,0.0,0.66008353 +45.07976007461548,0.07,0.0,0.0,0.0,0.66008353 +45.090588092803955,0.07,0.0,0.0,0.0,0.66008353 +45.100399017333984,0.07,0.0,0.0,0.0,0.66008353 +45.11159896850586,0.07,0.0,0.0,0.0,0.67858404 +45.11942195892334,0.08,0.0,0.0,0.0,0.67858404 +45.13120102882385,0.08,0.0,0.0,0.0,0.67858404 +45.1395161151886,0.08,0.0,0.0,0.0,0.67858404 +45.150222063064575,0.08,0.0,0.0,0.0,0.67858404 +45.15984511375427,0.08,0.0,0.0,0.0,0.7636863 +45.16945695877075,0.08,0.0,0.0,0.0,0.7636863 +45.18056297302246,0.08,0.0,0.0,0.0,0.7636863 +45.1894690990448,0.089999996,0.0,0.0,0.0,0.7636863 +45.19970512390137,0.089999996,0.0,0.0,0.0,0.7636863 +45.21038198471069,0.089999996,0.0,0.0,0.0,0.7821868 +45.22027611732483,0.099999994,0.0,0.0,0.0,0.7821868 +45.23013210296631,0.099999994,0.0,0.0,0.0,0.7821868 +45.23987698554993,0.11,0.0,0.0,0.0,0.7821868 +45.25054597854614,0.11,0.0,0.0,0.0,0.7821868 +45.25956606864929,0.11,0.0,0.0,0.0,0.789587 +45.26942992210388,0.12,0.0,0.0,0.0,0.789587 +45.27983808517456,0.12,0.0,0.0,0.0,0.789587 +45.291621923446655,0.12,0.0,0.0,0.0,0.789587 +45.300297021865845,0.13,0.0,0.0,0.0,0.789587 +45.31103801727295,0.13,0.0,0.0,0.0,0.7729366 +45.31985092163086,0.14,0.0,0.0,0.0,0.7729366 +45.33161807060242,0.14999999,0.0,0.0,0.0,0.7729366 +45.34066390991211,0.14999999,0.0,0.0,0.0,0.7729366 +45.349672079086304,0.16,0.0,0.0,0.0,0.7729366 +45.35956597328186,0.17,0.0,0.0,0.0,0.75073594 +45.37162399291992,0.17,0.0,0.0,0.0,0.75073594 +45.37992811203003,0.17999999,0.0,0.0,0.0,0.75073594 +45.39164710044861,0.17999999,0.0,0.0,0.0,0.75073594 +45.399476051330566,0.19,0.0,0.0,0.0,0.75073594 +45.40959596633911,0.19999999,0.0,0.0,0.0,0.6970845 +45.420247077941895,0.19999999,0.0,0.0,0.0,0.6970845 +45.429933071136475,0.21,0.0,0.0,0.0,0.6970845 +45.43982696533203,0.21,0.0,0.0,0.0,0.6970845 +45.4495370388031,0.22,0.0,0.0,0.0,0.6970845 +45.45970892906189,0.22,0.0,0.0,0.0,0.71743506 +45.46991801261902,0.22999999,0.0,0.0,0.0,0.71743506 +45.47986602783203,0.22999999,0.0,0.0,0.0,0.71743506 +45.49089312553406,0.24,0.0,0.0,0.0,0.71743506 +45.499871015548706,0.24,0.0,0.0,0.0,0.71743506 +45.51005792617798,0.25,0.0,0.0,0.0,0.67858404 +45.519412994384766,0.26,0.0,0.0,0.0,0.67858404 +45.5294349193573,0.26999998,0.0,0.0,0.0,0.67858404 +45.53971004486084,0.26999998,0.0,0.0,0.0,0.67858404 +45.55165505409241,0.28,0.0,0.0,0.0,0.67858404 +45.55983591079712,0.29,0.0,0.0,0.0,0.6748839 +45.57164406776428,0.29999998,0.0,0.0,0.0,0.6748839 +45.58085298538208,0.29999998,0.0,0.0,0.0,0.6748839 +45.58982992172241,0.31,0.0,0.0,0.0,0.6748839 +45.599838972091675,0.31,0.0,0.0,0.0,0.6748839 +45.60951805114746,0.32,0.0,0.0,0.0,0.6748839 +45.620113134384155,0.32,0.0,0.0,0.0,0.6748839 +45.62941908836365,0.32999998,0.0,0.0,0.0,0.6748839 +45.63970494270325,0.32999998,0.0,0.0,0.0,0.6748839 +45.65165305137634,0.34,0.0,0.0,0.0,0.6748839 +45.65941095352173,0.34,0.0,0.0,0.0,0.6730339 +45.67037796974182,0.35,0.0,0.0,0.0,0.6730339 +45.679800033569336,0.35,0.0,0.0,0.0,0.6730339 +45.691662073135376,0.35,0.0,0.0,0.0,0.6730339 +45.70121908187866,0.35999998,0.0,0.0,0.0,0.6730339 +45.71024298667908,0.35999998,0.0,0.0,0.0,0.61938244 +45.719433069229126,0.37,0.0,0.0,0.0,0.61938244 +45.73166012763977,0.37,0.0,0.0,0.0,0.61938244 +45.74035406112671,0.38,0.0,0.0,0.0,0.61938244 +45.75056505203247,0.38,0.0,0.0,0.0,0.61938244 +45.7594530582428,0.39,0.0,0.0,0.0,0.6748839 +45.76974892616272,0.39,0.0,0.0,0.0,0.6748839 +45.78131413459778,0.39,0.0,0.0,0.0,0.6748839 +45.789417028427124,0.39,0.0,0.0,0.0,0.6748839 +45.79986310005188,0.39999998,0.0,0.0,0.0,0.6748839 +45.809399127960205,0.39999998,0.0,0.0,0.0,0.6545334 +45.81949806213379,0.39999998,0.0,0.0,0.0,0.6545334 +45.83069705963135,0.39999998,0.0,0.0,0.0,0.6545334 +45.83961009979248,0.39999998,0.0,0.0,0.0,0.6545334 +45.85068392753601,0.39999998,0.0,0.0,0.0,0.6545334 +45.859697103500366,0.41,0.0,0.0,0.0,0.6508333 +45.86942410469055,0.41,0.0,0.0,0.0,0.6508333 +45.87986707687378,0.41,0.0,0.0,0.0,0.6508333 +45.89024496078491,0.41,0.0,0.0,0.0,0.6508333 +45.89952993392944,0.41,0.0,0.0,0.0,0.6508333 +45.909526109695435,0.42,0.0,0.0,0.0,0.54538053 +45.919419050216675,0.42,0.0,0.0,0.0,0.54538053 +45.93114399909973,0.42,0.0,0.0,0.0,0.54538053 +45.939960956573486,0.42,0.0,0.0,0.0,0.54538053 +45.949639081954956,0.42,0.0,0.0,0.0,0.54538053 +45.95981812477112,0.42,0.0,0.0,0.0,0.49542922 +45.97169208526611,0.42,0.0,0.0,0.0,0.49542922 +45.98064994812012,0.42,0.0,0.0,0.0,0.49542922 +45.98966908454895,0.42,0.0,0.0,0.0,0.49542922 +45.99968695640564,0.42,0.0,0.0,0.0,0.49542922 +46.011677980422974,0.42,0.0,0.0,0.0,0.5028294 +46.02027893066406,0.42,0.0,0.0,0.0,0.5028294 +46.03055691719055,0.42,0.0,0.0,0.0,0.5028294 +46.039565086364746,0.42999998,0.0,0.0,0.0,0.5028294 +46.05034399032593,0.42999998,0.0,0.0,0.0,0.5028294 +46.05948495864868,0.42999998,0.0,0.0,0.0,0.48247886 +46.07079100608826,0.42999998,0.0,0.0,0.0,0.48247886 +46.07982611656189,0.42999998,0.0,0.0,0.0,0.48247886 +46.08986711502075,0.42999998,0.0,0.0,0.0,0.48247886 +46.10082507133484,0.42999998,0.0,0.0,0.0,0.48247886 +46.11149191856384,0.42999998,0.0,0.0,0.0,0.47877875 +46.119868993759155,0.42999998,0.0,0.0,0.0,0.47877875 +46.12946701049805,0.42999998,0.0,0.0,0.0,0.47877875 +46.13947606086731,0.42999998,0.0,0.0,0.0,0.47877875 +46.14961099624634,0.42999998,0.0,0.0,0.0,0.47877875 +46.159862995147705,0.42999998,0.0,0.0,0.0,0.4269774 +46.16944408416748,0.44,0.0,0.0,0.0,0.4269774 +46.180015087127686,0.44,0.0,0.0,0.0,0.4269774 +46.19049000740051,0.44,0.0,0.0,0.0,0.4269774 +46.199870109558105,0.42999998,0.0,0.0,0.0,0.4269774 +46.2098491191864,0.42999998,0.0,0.0,0.0,0.3603756 +46.21951103210449,0.42999998,0.0,0.0,0.0,0.3603756 +46.23142910003662,0.42999998,0.0,0.0,0.0,0.3603756 +46.239898920059204,0.44,0.0,0.0,0.0,0.3603756 +46.25102710723877,0.44,0.0,0.0,0.0,0.3603756 +46.25972890853882,0.44,0.0,0.0,0.0,0.29932398 +46.27021312713623,0.44,0.0,0.0,0.0,0.29932398 +46.27988600730896,0.44,0.0,0.0,0.0,0.29932398 +46.29127502441406,0.45,0.0,0.0,0.0,0.29932398 +46.300286054611206,0.45,0.0,0.0,0.0,0.29932398 +46.30949902534485,0.45,0.0,0.0,0.0,0.29932398 +46.31951093673706,0.45,0.0,0.0,0.0,0.29932398 +46.33008909225464,0.45,0.0,0.0,0.0,0.29932398 +46.34076404571533,0.45,0.0,0.0,0.0,0.29932398 +46.35018610954285,0.45,0.0,0.0,0.0,0.29932398 +46.35987997055054,0.45,0.0,0.0,0.0,0.21607177 +46.37171506881714,0.45,0.0,0.0,0.0,0.21607177 +46.381197929382324,0.45999998,0.0,0.0,0.0,0.21607177 +46.390196084976196,0.45999998,0.0,0.0,0.0,0.21607177 +46.399872064590454,0.47,0.0,0.0,0.0,0.21607177 +46.409533977508545,0.47,0.0,0.0,0.0,0.19017108 +46.421720027923584,0.47,0.0,0.0,0.0,0.19017108 +46.43127202987671,0.48,0.0,0.0,0.0,0.19017108 +46.43963599205017,0.48,0.0,0.0,0.0,0.19017108 +46.45026206970215,0.48,0.0,0.0,0.0,0.19017108 +46.45955300331116,0.48,0.0,0.0,0.0,0.18832105 +46.47109603881836,0.48,0.0,0.0,0.0,0.18832105 +46.47987198829651,0.48,0.0,0.0,0.0,0.18832105 +46.489705085754395,0.48,0.0,0.0,0.0,0.18832105 +46.501721143722534,0.48,0.0,0.0,0.0,0.18832105 +46.51174306869507,0.48,0.0,0.0,0.0,0.1420698 +46.5195209980011,0.48999998,0.0,0.0,0.0,0.1420698 +46.52942895889282,0.48999998,0.0,0.0,0.0,0.1420698 +46.540250062942505,0.48999998,0.0,0.0,0.0,0.1420698 +46.54972696304321,0.5,0.0,0.0,0.0,0.1420698 +46.55985903739929,0.5,0.0,0.0,0.0,0.1531701 +46.56987500190735,0.5,0.0,0.0,0.0,0.1531701 +46.581727027893066,0.5,0.0,0.0,0.0,0.1531701 +46.59173011779785,0.5,0.0,0.0,0.0,0.1531701 +46.599870920181274,0.5,0.0,0.0,0.0,0.1531701 +46.611480951309204,0.5,0.0,0.0,0.0,0.15687022 +46.620280027389526,0.5,0.0,0.0,0.0,0.15687022 +46.62951397895813,0.48999998,0.0,0.0,0.0,0.15687022 +46.63989210128784,0.48999998,0.0,0.0,0.0,0.15687022 +46.64958310127258,0.48999998,0.0,0.0,0.0,0.15687022 +46.659722089767456,0.48999998,0.0,0.0,0.0,0.1346696 +46.67150402069092,0.5,0.0,0.0,0.0,0.1346696 +46.6798620223999,0.5,0.0,0.0,0.0,0.1346696 +46.69077801704407,0.5,0.0,0.0,0.0,0.1346696 +46.70020413398743,0.51,0.0,0.0,0.0,0.1346696 +46.710612058639526,0.51,0.0,0.0,0.0,0.1346696 +46.719630002975464,0.51,0.0,0.0,0.0,0.1346696 +46.730067014694214,0.5,0.0,0.0,0.0,0.1346696 +46.74086594581604,0.5,0.0,0.0,0.0,0.1346696 +46.74987196922302,0.5,0.0,0.0,0.0,0.1346696 +46.759876012802124,0.48999998,0.0,0.0,0.0,0.16242035 +46.77176809310913,0.48999998,0.0,0.0,0.0,0.16242035 +46.78175592422485,0.48999998,0.0,0.0,0.0,0.16242035 +46.791764974594116,0.48,0.0,0.0,0.0,0.16242035 +46.7999050617218,0.48,0.0,0.0,0.0,0.16242035 +46.80975294113159,0.48,0.0,0.0,0.0,0.15872025 +46.81947898864746,0.48,0.0,0.0,0.0,0.15872025 +46.82942509651184,0.48,0.0,0.0,0.0,0.15872025 +46.83979511260986,0.48,0.0,0.0,0.0,0.15872025 +46.85174894332886,0.48,0.0,0.0,0.0,0.15872025 +46.859745025634766,0.48,0.0,0.0,0.0,0.13651967 +46.87175703048706,0.48,0.0,0.0,0.0,0.13651967 +46.87987494468689,0.48,0.0,0.0,0.0,0.13651967 +46.89055609703064,0.48,0.0,0.0,0.0,0.13651967 +46.899466037750244,0.48,0.0,0.0,0.0,0.13651967 +46.91041612625122,0.48,0.0,0.0,0.0,0.1531701 +46.91949510574341,0.48,0.0,0.0,0.0,0.1531701 +46.92971897125244,0.48,0.0,0.0,0.0,0.1531701 +46.94175696372986,0.47,0.0,0.0,0.0,0.1531701 +46.95028209686279,0.47,0.0,0.0,0.0,0.1531701 +46.959912061691284,0.47,0.0,0.0,0.0,0.12726942 +46.970739126205444,0.47,0.0,0.0,0.0,0.12726942 +46.979655027389526,0.47,0.0,0.0,0.0,0.12726942 +46.98998308181763,0.47,0.0,0.0,0.0,0.12726942 +46.99988102912903,0.47,0.0,0.0,0.0,0.12726942 +47.00961995124817,0.47,0.0,0.0,0.0,0.116169125 +47.01967906951904,0.47,0.0,0.0,0.0,0.116169125 +47.031765937805176,0.47,0.0,0.0,0.0,0.116169125 +47.03990292549133,0.47,0.0,0.0,0.0,0.116169125 +47.05092811584473,0.47,0.0,0.0,0.0,0.116169125 +47.05941295623779,0.47,0.0,0.0,0.0,0.10691887 +47.07106804847717,0.47,0.0,0.0,0.0,0.10691887 +47.07989311218262,0.47,0.0,0.0,0.0,0.10691887 +47.09016799926758,0.47,0.0,0.0,0.0,0.10691887 +47.09977698326111,0.47,0.0,0.0,0.0,0.10691887 +47.10960102081299,0.47,0.0,0.0,0.0,0.10506884 +47.11987495422363,0.47,0.0,0.0,0.0,0.10506884 +47.13108706474304,0.47,0.0,0.0,0.0,0.10506884 +47.13999891281128,0.47,0.0,0.0,0.0,0.10506884 +47.15180206298828,0.47,0.0,0.0,0.0,0.10506884 +47.15988302230835,0.47,0.0,0.0,0.0,0.09581858 +47.17022109031677,0.47,0.0,0.0,0.0,0.09581858 +47.18094992637634,0.45999998,0.0,0.0,0.0,0.09581858 +47.18997001647949,0.45999998,0.0,0.0,0.0,0.09581858 +47.19952392578125,0.45999998,0.0,0.0,0.0,0.09581858 +47.20981502532959,0.45999998,0.0,0.0,0.0,0.08656834 +47.219430923461914,0.45999998,0.0,0.0,0.0,0.08656834 +47.23135209083557,0.45999998,0.0,0.0,0.0,0.08656834 +47.23985505104065,0.45999998,0.0,0.0,0.0,0.08656834 +47.251291036605835,0.45999998,0.0,0.0,0.0,0.08656834 +47.25976300239563,0.45999998,0.0,0.0,0.0,0.077318095 +47.27111196517944,0.45999998,0.0,0.0,0.0,0.077318095 +47.279890060424805,0.45999998,0.0,0.0,0.0,0.077318095 +47.28956699371338,0.45999998,0.0,0.0,0.0,0.077318095 +47.300353050231934,0.45999998,0.0,0.0,0.0,0.077318095 +47.31180191040039,0.45999998,0.0,0.0,0.0,0.07546805 +47.31989407539368,0.45999998,0.0,0.0,0.0,0.07546805 +47.32939600944519,0.45999998,0.0,0.0,0.0,0.07546805 +47.34076905250549,0.45999998,0.0,0.0,0.0,0.07546805 +47.34949493408203,0.45999998,0.0,0.0,0.0,0.07546805 +47.359395027160645,0.45999998,0.0,0.0,0.0,0.08286824 +47.37034010887146,0.45,0.0,0.0,0.0,0.08286824 +47.37956213951111,0.45,0.0,0.0,0.0,0.08286824 +47.38942813873291,0.45,0.0,0.0,0.0,0.08286824 +47.39987897872925,0.45,0.0,0.0,0.0,0.08286824 +47.41180109977722,0.45,0.0,0.0,0.0,0.07546805 +47.42028307914734,0.45,0.0,0.0,0.0,0.07546805 +47.43149495124817,0.45,0.0,0.0,0.0,0.07546805 +47.43989896774292,0.45,0.0,0.0,0.0,0.07546805 +47.449522972106934,0.45,0.0,0.0,0.0,0.07546805 +47.45976805686951,0.45,0.0,0.0,0.0,0.077318095 +47.46956205368042,0.45,0.0,0.0,0.0,0.077318095 +47.479493141174316,0.45,0.0,0.0,0.0,0.077318095 +47.490736961364746,0.45,0.0,0.0,0.0,0.077318095 +47.501315116882324,0.45,0.0,0.0,0.0,0.077318095 +47.51007413864136,0.45,0.0,0.0,0.0,0.031066857 +47.51991605758667,0.45,0.0,0.0,0.0,0.031066857 +47.53059506416321,0.45,0.0,0.0,0.0,0.031066857 +47.53959894180298,0.45,0.0,0.0,0.0,0.031066857 +47.549741983413696,0.45,0.0,0.0,0.0,0.031066857 +47.559749126434326,0.45,0.0,0.0,0.0,0.010716328 +47.57182192802429,0.45,0.0,0.0,0.0,0.010716328 +47.581815004348755,0.45,0.0,0.0,0.0,0.010716328 +47.59181308746338,0.45,0.0,0.0,0.0,0.010716328 +47.5999059677124,0.45,0.0,0.0,0.0,0.010716328 +47.60960102081299,0.45,0.0,0.0,0.0,-0.00038397792 +47.62030100822449,0.45,0.0,0.0,0.0,-0.00038397792 +47.62967491149902,0.45,0.0,0.0,0.0,-0.00038397792 +47.639914989471436,0.45,0.0,0.0,0.0,-0.00038397792 +47.64994812011719,0.45,0.0,0.0,0.0,-0.00038397792 +47.65975093841553,0.45,0.0,0.0,0.0,-0.024434604 +47.671858072280884,0.45,0.0,0.0,0.0,-0.024434604 +47.67989897727966,0.45,0.0,0.0,0.0,-0.024434604 +47.6918511390686,0.45,0.0,0.0,0.0,-0.024434604 +47.701005935668945,0.45,0.0,0.0,0.0,-0.024434604 +47.71009111404419,0.45,0.0,0.0,0.0,0.027366763 +47.719780921936035,0.44,0.0,0.0,0.0,0.027366763 +47.73006510734558,0.44,0.0,0.0,0.0,0.027366763 +47.739503145217896,0.44,0.0,0.0,0.0,0.027366763 +47.75185012817383,0.44,0.0,0.0,0.0,0.027366763 +47.75992393493652,0.44,0.0,0.0,0.0,-0.024434604 +47.77184700965881,0.44,0.0,0.0,0.0,-0.024434604 +47.779922008514404,0.44,0.0,0.0,0.0,-0.024434604 +47.79027700424194,0.44,0.0,0.0,0.0,-0.024434604 +47.799538135528564,0.44,0.0,0.0,0.0,-0.024434604 +47.80983304977417,0.44,0.0,0.0,0.0,0.11986922 +47.819430112838745,0.44,0.0,0.0,0.0,0.11986922 +47.829391956329346,0.44,0.0,0.0,0.0,0.11986922 +47.83991003036499,0.44,0.0,0.0,0.0,0.11986922 +47.8512909412384,0.44,0.0,0.0,0.0,0.11986922 +47.859785079956055,0.44,0.0,0.0,0.0,0.0070162313 +47.87015104293823,0.42999998,0.0,0.0,0.0,0.0070162313 +47.879924058914185,0.42999998,0.0,0.0,0.0,0.0070162313 +47.88975405693054,0.42999998,0.0,0.0,0.0,0.0070162313 +47.899893045425415,0.42999998,0.0,0.0,0.0,0.0070162313 +47.909932136535645,0.42999998,0.0,0.0,0.0,0.019966569 +47.91993308067322,0.42999998,0.0,0.0,0.0,0.019966569 +47.92956209182739,0.42999998,0.0,0.0,0.0,0.019966569 +47.94168400764465,0.42999998,0.0,0.0,0.0,0.019966569 +47.95059299468994,0.42999998,0.0,0.0,0.0,0.019966569 +47.959492921829224,0.42999998,0.0,0.0,0.0,0.0033161184 +47.97144293785095,0.42999998,0.0,0.0,0.0,0.0033161184 +47.980947971343994,0.42999998,0.0,0.0,0.0,0.0033161184 +47.98995113372803,0.42999998,0.0,0.0,0.0,0.0033161184 +47.99957513809204,0.42999998,0.0,0.0,0.0,0.0033161184 +48.00946497917175,0.42999998,0.0,0.0,0.0,0.038467064 +48.01974296569824,0.42999998,0.0,0.0,0.0,0.038467064 +48.03073000907898,0.42999998,0.0,0.0,0.0,0.038467064 +48.039633989334106,0.42999998,0.0,0.0,0.0,0.038467064 +48.05055212974548,0.42999998,0.0,0.0,0.0,0.038467064 +48.05976390838623,0.42999998,0.0,0.0,0.0,0.023666665 +48.07098913192749,0.42999998,0.0,0.0,0.0,0.023666665 +48.079944133758545,0.42999998,0.0,0.0,0.0,0.023666665 +48.0894079208374,0.42999998,0.0,0.0,0.0,0.023666665 +48.10092806816101,0.42999998,0.0,0.0,0.0,0.023666665 +48.10995006561279,0.42999998,0.0,0.0,0.0,-0.009634218 +48.119832038879395,0.42999998,0.0,0.0,0.0,-0.009634218 +48.13021206855774,0.42999998,0.0,0.0,0.0,-0.009634218 +48.14188504219055,0.42999998,0.0,0.0,0.0,-0.009634218 +48.15187406539917,0.42999998,0.0,0.0,0.0,-0.009634218 +48.159937143325806,0.42999998,0.0,0.0,0.0,0.019966569 +48.17005801200867,0.42999998,0.0,0.0,0.0,0.019966569 +48.179670095443726,0.42999998,0.0,0.0,0.0,0.019966569 +48.191092014312744,0.42999998,0.0,0.0,0.0,0.019966569 +48.19992113113403,0.42999998,0.0,0.0,0.0,0.019966569 +48.21187996864319,0.42999998,0.0,0.0,0.0,0.023666665 +48.21983504295349,0.42999998,0.0,0.0,0.0,0.023666665 +48.23087191581726,0.42999998,0.0,0.0,0.0,0.023666665 +48.239941120147705,0.42999998,0.0,0.0,0.0,0.023666665 +48.25108814239502,0.42999998,0.0,0.0,0.0,0.023666665 +48.25978207588196,0.42999998,0.0,0.0,0.0,0.008866279 +48.26959013938904,0.42999998,0.0,0.0,0.0,0.008866279 +48.27978992462158,0.42999998,0.0,0.0,0.0,0.008866279 +48.29031205177307,0.42999998,0.0,0.0,0.0,0.008866279 +48.30141091346741,0.42999998,0.0,0.0,0.0,0.008866279 +48.31190514564514,0.42999998,0.0,0.0,0.0,0.031066857 +48.31992793083191,0.42999998,0.0,0.0,0.0,0.031066857 +48.33189296722412,0.42999998,0.0,0.0,0.0,0.031066857 +48.34031701087952,0.42999998,0.0,0.0,0.0,0.031066857 +48.350160121917725,0.42999998,0.0,0.0,0.0,0.031066857 +48.35947012901306,0.42999998,0.0,0.0,0.0,0.032916907 +48.37146306037903,0.42999998,0.0,0.0,0.0,0.032916907 +48.38050699234009,0.42999998,0.0,0.0,0.0,0.032916907 +48.389533042907715,0.42999998,0.0,0.0,0.0,0.032916907 +48.399922132492065,0.42999998,0.0,0.0,0.0,0.032916907 +48.41072392463684,0.42,0.0,0.0,0.0,0.032916907 +48.42030310630798,0.42,0.0,0.0,0.0,0.032916907 +48.431183099746704,0.42,0.0,0.0,0.0,0.032916907 +48.439934968948364,0.42,0.0,0.0,0.0,0.032916907 +48.449464082717896,0.42,0.0,0.0,0.0,0.032916907 +48.45979714393616,0.42999998,0.0,0.0,0.0,0.027366763 +48.47068905830383,0.42999998,0.0,0.0,0.0,0.027366763 +48.47947406768799,0.42999998,0.0,0.0,0.0,0.027366763 +48.491904973983765,0.42999998,0.0,0.0,0.0,0.027366763 +48.501928091049194,0.42999998,0.0,0.0,0.0,0.027366763 +48.511842012405396,0.42999998,0.0,0.0,0.0,0.027366763 +48.51954507827759,0.42999998,0.0,0.0,0.0,0.027366763 +48.52966094017029,0.42999998,0.0,0.0,0.0,0.027366763 +48.539490938186646,0.42999998,0.0,0.0,0.0,0.027366763 +48.55191111564636,0.42,0.0,0.0,0.0,0.027366763 +48.559914112091064,0.42,0.0,0.0,0.0,0.042167164 +48.5699200630188,0.42,0.0,0.0,0.0,0.042167164 +48.58048701286316,0.42,0.0,0.0,0.0,0.042167164 +48.59190893173218,0.42,0.0,0.0,0.0,0.042167164 +48.59953594207764,0.42999998,0.0,0.0,0.0,0.042167164 +48.609496116638184,0.42999998,0.0,0.0,0.0,0.062517695 +48.61959409713745,0.42999998,0.0,0.0,0.0,0.062517695 +48.62945508956909,0.42999998,0.0,0.0,0.0,0.062517695 +48.639946937561035,0.42999998,0.0,0.0,0.0,0.062517695 +48.650224924087524,0.42999998,0.0,0.0,0.0,0.062517695 +48.65979504585266,0.42999998,0.0,0.0,0.0,0.027366763 +48.670154094696045,0.42,0.0,0.0,0.0,0.027366763 +48.67991399765015,0.42,0.0,0.0,0.0,0.027366763 +48.68998408317566,0.42,0.0,0.0,0.0,0.027366763 +48.70055603981018,0.42,0.0,0.0,0.0,0.027366763 +48.71018695831299,0.42,0.0,0.0,0.0,0.034766953 +48.71939706802368,0.41,0.0,0.0,0.0,0.034766953 +48.73028492927551,0.41,0.0,0.0,0.0,0.034766953 +48.74126410484314,0.41,0.0,0.0,0.0,0.034766953 +48.75027012825012,0.41,0.0,0.0,0.0,0.034766953 +48.75995898246765,0.41,0.0,0.0,0.0,0.02921681 +48.77019691467285,0.41,0.0,0.0,0.0,0.02921681 +48.77939295768738,0.41,0.0,0.0,0.0,0.02921681 +48.791101932525635,0.41,0.0,0.0,0.0,0.02921681 +48.79995894432068,0.41,0.0,0.0,0.0,0.02921681 +48.809401988983154,0.41,0.0,0.0,0.0,0.01811652 +48.81958198547363,0.42,0.0,0.0,0.0,0.01811652 +48.83031702041626,0.42,0.0,0.0,0.0,0.01811652 +48.839903116226196,0.42,0.0,0.0,0.0,0.01811652 +48.84948110580444,0.42,0.0,0.0,0.0,0.01811652 +48.85979604721069,0.42,0.0,0.0,0.0,0.008866279 +48.871968030929565,0.42,0.0,0.0,0.0,0.008866279 +48.879945039749146,0.42,0.0,0.0,0.0,0.008866279 +48.88997006416321,0.42,0.0,0.0,0.0,0.008866279 +48.89942193031311,0.42,0.0,0.0,0.0,0.008866279 +48.91024208068848,0.42,0.0,0.0,0.0,-0.002234026 +48.91957402229309,0.42,0.0,0.0,0.0,-0.002234026 +48.93031597137451,0.42,0.0,0.0,0.0,-0.002234026 +48.93942403793335,0.42,0.0,0.0,0.0,-0.002234026 +48.94940710067749,0.42,0.0,0.0,0.0,-0.002234026 +48.95997905731201,0.42,0.0,0.0,0.0,-0.0040840744 +48.970526933670044,0.42,0.0,0.0,0.0,-0.0040840744 +48.97990107536316,0.42,0.0,0.0,0.0,-0.0040840744 +48.98946714401245,0.42,0.0,0.0,0.0,-0.0040840744 +48.99994707107544,0.42,0.0,0.0,0.0,-0.0040840744 +49.010661125183105,0.42,0.0,0.0,0.0,-0.002234026 +49.01958394050598,0.42,0.0,0.0,0.0,-0.002234026 +49.02987813949585,0.42,0.0,0.0,0.0,-0.002234026 +49.03956604003906,0.42,0.0,0.0,0.0,-0.002234026 +49.0518319606781,0.42,0.0,0.0,0.0,-0.002234026 +49.05979108810425,0.42,0.0,0.0,0.0,0.0070162313 +49.06979012489319,0.42,0.0,0.0,0.0,0.0070162313 +49.07952404022217,0.42,0.0,0.0,0.0,0.0070162313 +49.09084606170654,0.42,0.0,0.0,0.0,0.0070162313 +49.09973692893982,0.42999998,0.0,0.0,0.0,0.0070162313 +49.11106896400452,0.42999998,0.0,0.0,0.0,0.0070162313 +49.11958193778992,0.42999998,0.0,0.0,0.0,0.0070162313 +49.13028907775879,0.42999998,0.0,0.0,0.0,0.0070162313 +49.140175104141235,0.42999998,0.0,0.0,0.0,0.0070162313 +49.15071105957031,0.42999998,0.0,0.0,0.0,0.0070162313 +49.15950894355774,0.42999998,0.0,0.0,0.0,-0.00038397792 +49.16955208778381,0.42999998,0.0,0.0,0.0,-0.00038397792 +49.17990303039551,0.42999998,0.0,0.0,0.0,-0.00038397792 +49.191975116729736,0.42999998,0.0,0.0,0.0,-0.00038397792 +49.19996905326843,0.42999998,0.0,0.0,0.0,-0.00038397792 +49.21026611328125,0.42999998,0.0,0.0,0.0,0.014416425 +49.21958112716675,0.42999998,0.0,0.0,0.0,0.014416425 +49.23028802871704,0.42999998,0.0,0.0,0.0,0.014416425 +49.23996901512146,0.42999998,0.0,0.0,0.0,0.014416425 +49.24954795837402,0.42999998,0.0,0.0,0.0,0.014416425 +49.25961995124817,0.42999998,0.0,0.0,0.0,0.01811652 +49.26940107345581,0.42999998,0.0,0.0,0.0,0.01811652 +49.279947996139526,0.44,0.0,0.0,0.0,0.01811652 +49.29016304016113,0.44,0.0,0.0,0.0,0.01811652 +49.30029606819153,0.44,0.0,0.0,0.0,0.01811652 +49.309476137161255,0.44,0.0,0.0,0.0,0.008866279 +49.31959414482117,0.44,0.0,0.0,0.0,0.008866279 +49.3303120136261,0.44,0.0,0.0,0.0,0.008866279 +49.3394820690155,0.44,0.0,0.0,0.0,0.008866279 +49.3496630191803,0.44,0.0,0.0,0.0,0.008866279 +49.359978914260864,0.44,0.0,0.0,0.0,0.023666665 +49.371994972229004,0.44,0.0,0.0,0.0,0.023666665 +49.38165092468262,0.44,0.0,0.0,0.0,0.023666665 +49.390690088272095,0.44,0.0,0.0,0.0,0.023666665 +49.399688959121704,0.44,0.0,0.0,0.0,0.023666665 +49.41140913963318,0.44,0.0,0.0,0.0,0.01811652 +49.4195830821991,0.45,0.0,0.0,0.0,0.01811652 +49.42953896522522,0.45,0.0,0.0,0.0,0.01811652 +49.439696073532104,0.45,0.0,0.0,0.0,0.01811652 +49.4520161151886,0.44,0.0,0.0,0.0,0.01811652 +49.459837913513184,0.44,0.0,0.0,0.0,0.042167164 +49.4718599319458,0.44,0.0,0.0,0.0,0.042167164 +49.4794659614563,0.44,0.0,0.0,0.0,0.042167164 +49.48961901664734,0.44,0.0,0.0,0.0,0.042167164 +49.500306129455566,0.44,0.0,0.0,0.0,0.042167164 +49.50951600074768,0.44,0.0,0.0,0.0,0.010716328 +49.519570112228394,0.44,0.0,0.0,0.0,0.010716328 +49.529747009277344,0.44,0.0,0.0,0.0,0.010716328 +49.542006969451904,0.44,0.0,0.0,0.0,0.010716328 +49.55200910568237,0.44,0.0,0.0,0.0,0.010716328 +49.559946060180664,0.45,0.0,0.0,0.0,0.014416425 +49.57109713554382,0.45,0.0,0.0,0.0,0.014416425 +49.58011603355408,0.45,0.0,0.0,0.0,0.014416425 +49.589707136154175,0.45,0.0,0.0,0.0,0.014416425 +49.59995412826538,0.45,0.0,0.0,0.0,0.014416425 +49.609626054763794,0.45,0.0,0.0,0.0,0.012566376 +49.61960411071777,0.45,0.0,0.0,0.0,0.012566376 +49.630311012268066,0.44,0.0,0.0,0.0,0.012566376 +49.63997292518616,0.44,0.0,0.0,0.0,0.012566376 +49.65082097053528,0.44,0.0,0.0,0.0,0.012566376 +49.659826040267944,0.42999998,0.0,0.0,0.0,0.021816617 +49.66985297203064,0.42999998,0.0,0.0,0.0,0.021816617 +49.679949045181274,0.42,0.0,0.0,0.0,0.021816617 +49.68951392173767,0.42,0.0,0.0,0.0,0.021816617 +49.70018792152405,0.42,0.0,0.0,0.0,0.021816617 +49.70985698699951,0.42,0.0,0.0,0.0,0.012566376 +49.71951913833618,0.41,0.0,0.0,0.0,0.012566376 +49.730310916900635,0.41,0.0,0.0,0.0,0.012566376 +49.740692138671875,0.41,0.0,0.0,0.0,0.012566376 +49.75003695487976,0.41,0.0,0.0,0.0,0.012566376 +49.759974002838135,0.39999998,0.0,0.0,0.0,0.012566376 +49.76954197883606,0.39999998,0.0,0.0,0.0,0.012566376 +49.7799870967865,0.39999998,0.0,0.0,0.0,0.012566376 +49.79088997840881,0.39999998,0.0,0.0,0.0,0.012566376 +49.799911975860596,0.39999998,0.0,0.0,0.0,0.012566376 +49.80941891670227,0.39,0.0,0.0,0.0,-0.015184363 +49.82033610343933,0.39,0.0,0.0,0.0,-0.015184363 +49.830214977264404,0.39,0.0,0.0,0.0,-0.015184363 +49.83947706222534,0.38,0.0,0.0,0.0,-0.015184363 +49.850712060928345,0.37,0.0,0.0,0.0,-0.015184363 +49.85974907875061,0.35999998,0.0,0.0,0.0,0.012566376 +49.86990809440613,0.34,0.0,0.0,0.0,0.012566376 +49.879969120025635,0.32,0.0,0.0,0.0,0.012566376 +49.889533042907715,0.31,0.0,0.0,0.0,0.012566376 +49.89976096153259,0.29,0.0,0.0,0.0,0.012566376 +49.91037702560425,0.26999998,0.0,0.0,0.0,-0.0077841706 +49.91958403587341,0.25,0.0,0.0,0.0,-0.0077841706 +49.92954993247986,0.24,0.0,0.0,0.0,-0.0077841706 +49.940937995910645,0.22,2.2727273,2.2727273,0.0,-0.0077841706 +49.949934005737305,0.21,6.818182,6.818182,0.0,-0.0077841706 +49.95978093147278,0.19,10.606061,10.606061,0.0,-0.020734508 +49.97099304199219,0.17999999,13.636364,13.636364,0.0,-0.020734508 +49.97998094558716,0.16,15.909091,15.909091,0.0,-0.020734508 +49.990538120269775,0.14999999,18.939394,18.939394,0.0,-0.020734508 +49.999431133270264,0.14,21.969696,21.969696,0.0,-0.020734508 +50.011383056640625,0.13,25.0,25.0,0.0,0.0014660703 +50.01960206031799,0.11,27.272728,27.272728,0.009372071,0.0014660703 +50.03032612800598,0.099999994,28.78788,28.78788,0.028116215,0.0014660703 +50.03996706008911,0.089999996,30.303032,30.303032,0.037488285,0.0014660703 +50.049686908721924,0.08,32.575756,32.575756,0.046860356,0.0014660703 +50.05983591079712,0.07,34.848484,34.848484,0.05623243,0.0070162313 +50.070048093795776,0.07,36.363636,36.363636,0.0656045,0.0070162313 +50.07948708534241,0.06,36.363636,36.363636,0.0656045,0.0070162313 +50.092061042785645,0.049999997,37.121216,37.121216,0.07497657,0.0070162313 +50.10128998756409,0.04,38.636364,38.636364,0.09372071,0.0070162313 +50.112065076828,0.04,39.39394,39.39394,0.10309278,-0.013334316 +50.119606018066406,0.03,39.39394,39.39394,0.10309278,-0.013334316 +50.13030791282654,0.02,39.39394,39.39394,0.10309278,-0.013334316 +50.13962912559509,0.02,40.151516,40.151516,0.11246486,-0.013334316 +50.15084409713745,0.01,40.90909,40.90909,0.12183693,-0.013334316 +50.159722089767456,0.01,42.424244,42.424244,0.12183693,-0.002234026 +50.17210006713867,0.0,42.424244,42.424244,0.131209,-0.002234026 +50.18056011199951,0.0,43.181816,43.181816,0.14058107,-0.002234026 +50.19141101837158,0.0,44.696968,44.696968,0.14995314,-0.002234026 +50.19999408721924,0.0,46.969696,46.969696,0.15932521,-0.002234026 +50.20941996574402,0.0,48.484848,48.484848,0.16869728,-0.026284654 +50.21960091590881,0.0,50.0,50.0,0.17806935,-0.026284654 +50.22954607009888,0.0,50.0,50.0,0.17806935,-0.026284654 +50.23989510536194,0.0,50.757576,50.757576,0.17806935,-0.026284654 +50.25014901161194,0.0,51.515152,51.515152,0.17806935,-0.026284654 +50.25983810424805,0.0,53.030304,53.030304,0.18744142,-0.029984765 +50.27207112312317,0.0,53.78788,53.78788,0.18744142,-0.029984765 +50.279983043670654,0.0,53.030304,53.030304,0.1968135,-0.029984765 +50.29207992553711,0.0,53.78788,53.78788,0.1968135,-0.029984765 +50.301470041275024,0.0,55.30303,55.30303,0.20618556,-0.029984765 +50.31046199798584,0.0,56.060604,56.060604,0.20618556,-0.033684865 +50.31944704055786,0.0,56.818184,56.818184,0.20618556,-0.033684865 +50.32955813407898,0.0,56.818184,56.818184,0.20618556,-0.033684865 +50.33947992324829,0.0,56.060604,56.060604,0.20618556,-0.033684865 +50.35208797454834,0.0,56.818184,56.818184,0.20618556,-0.033684865 +50.35998201370239,0.0,56.818184,56.818184,0.20618556,-0.024434604 +50.37209510803223,0.0,57.57576,57.57576,0.20618556,-0.024434604 +50.38208293914795,0.0,56.818184,56.818184,0.20618556,-0.024434604 +50.390856981277466,0.0,56.060604,56.060604,0.20618556,-0.024434604 +50.399982929229736,0.0,56.818184,56.818184,0.20618556,-0.024434604 +50.409444093704224,0.0,58.333332,58.333332,0.20618556,-0.033684865 +50.41966009140015,0.0,59.090908,59.090908,0.20618556,-0.033684865 +50.43023109436035,0.0,58.333332,58.333332,0.20618556,-0.033684865 +50.43999409675598,0.0,57.57576,57.57576,0.21555763,-0.033684865 +50.4520959854126,0.0,58.333332,58.333332,0.21555763,-0.033684865 +50.45984506607056,0.0,59.090908,59.090908,0.21555763,-0.050335295 +50.46945595741272,0.0,59.848484,59.848484,0.21555763,-0.050335295 +50.479979038238525,0.0,60.606064,60.606064,0.20618556,-0.050335295 +50.4903130531311,0.0,60.606064,60.606064,0.21555763,-0.050335295 +50.50017595291138,0.0,61.363636,61.363636,0.20618556,-0.050335295 +50.5112030506134,0.0,62.878788,62.878788,0.21555763,0.10506884 +50.51960897445679,0.0,65.15151,65.15151,0.21555763,0.10506884 +50.52942705154419,0.0,66.66667,66.66667,0.21555763,0.10506884 +50.54209899902344,0.0,67.42425,67.42425,0.22492972,0.10506884 +50.54968309402466,0.0,64.393936,64.393936,0.22492972,0.10506884 +50.55998492240906,0.0,47.727272,47.727272,0.22492972,-0.033684865 +50.57124710083008,0.0,34.09091,34.09091,0.22492972,-0.033684865 +50.57960605621338,0.0,21.212122,21.212122,0.22492972,-0.033684865 +50.59038305282593,0.0,20.454544,20.454544,0.22492972,-0.033684865 +50.59948706626892,0.0,25.757576,25.757576,0.22492972,-0.033684865 +50.61026692390442,0.0,31.060606,31.060606,0.23430179,-0.024434604 +50.61951398849487,0.0,37.878788,37.878788,0.23430179,-0.024434604 +50.630300998687744,0.0,43.939392,43.939392,0.24367386,-0.024434604 +50.64000606536865,0.0,50.0,50.0,0.24367386,-0.024434604 +50.6494460105896,0.0,54.545456,54.545456,0.24367386,-0.024434604 +50.65985107421875,0.0,59.848484,59.848484,0.24367386,-0.020734508 +50.670191049575806,0.0,66.66667,66.66667,0.25304592,-0.020734508 +50.679980993270874,0.0,65.15151,65.15151,0.25304592,-0.020734508 +50.68957805633545,0.0,58.333332,58.333332,0.25304592,-0.020734508 +50.7003219127655,0.0,50.0,50.0,0.262418,-0.020734508 +50.711750984191895,0.0,43.939392,43.939392,0.262418,-0.009634218 +50.719977140426636,0.0,38.636364,38.636364,0.262418,-0.009634218 +50.729583978652954,0.0,35.60606,35.60606,0.27179006,-0.009634218 +50.74033212661743,0.0,33.333336,33.333336,0.27179006,-0.009634218 +50.75106406211853,0.0,30.303032,30.303032,0.28116214,-0.009634218 +50.75982403755188,0.0,26.515152,26.515152,0.28116214,-0.050335295 +50.770594120025635,0.0,25.0,25.0,0.28116214,-0.050335295 +50.77976202964783,0.0,23.484848,23.484848,0.28116214,-0.050335295 +50.78974103927612,0.0,23.484848,23.484848,0.2905342,-0.050335295 +50.800002098083496,0.0,22.727274,22.727274,0.2905342,-0.050335295 +50.8096969127655,0.0,24.242424,24.242424,0.2905342,-0.044785153 +50.81961107254028,0.0,28.78788,28.78788,0.29990628,-0.044785153 +50.83030700683594,0.0,35.60606,35.60606,0.29990628,-0.044785153 +50.84000205993652,0.0,42.424244,42.424244,0.30927837,-0.044785153 +50.84997200965881,0.0,48.484848,48.484848,0.30927837,-0.044785153 +50.859468936920166,0.0,53.78788,53.78788,0.30927837,-0.022584556 +50.869959115982056,0.0,58.333332,58.333332,0.29990628,-0.022584556 +50.87983298301697,0.0,62.878788,62.878788,0.29990628,-0.022584556 +50.88942098617554,0.0,67.42425,67.42425,0.29990628,-0.022584556 +50.9015839099884,0.0,68.18182,68.18182,0.30927837,-0.022584556 +50.912140130996704,0.0,65.15151,65.15151,0.30927837,-0.026284654 +50.91958498954773,0.0,61.363636,61.363636,0.30927837,-0.026284654 +50.93033695220947,0.0,57.57576,57.57576,0.31865042,-0.026284654 +50.93971490859985,0.0,54.545456,54.545456,0.31865042,-0.026284654 +50.951131105422974,0.0,53.030304,53.030304,0.31865042,-0.026284654 +50.96000099182129,0.0,52.272724,52.272724,0.31865042,-0.041085053 +50.96984505653381,0.0,51.515152,51.515152,0.3280225,-0.041085053 +50.979466915130615,0.0,49.242424,49.242424,0.3280225,-0.041085053 +50.98946809768677,0.0,46.969696,46.969696,0.3280225,-0.041085053 +50.999990940093994,0.0,44.696968,44.696968,0.3280225,-0.041085053 +51.011826038360596,0.0,44.696968,44.696968,0.3280225,-0.050335295 +51.0196270942688,0.0,43.939392,43.939392,0.3280225,-0.050335295 +51.029788970947266,0.0,43.181816,43.181816,0.3280225,-0.050335295 +51.04000401496887,0.0,40.90909,40.90909,0.33739457,-0.050335295 +51.05009412765503,0.0,38.636364,38.636364,0.3280225,-0.050335295 +51.05944895744324,0.0,37.878788,37.878788,0.3280225,-0.06698574 +51.06950402259827,0.0,37.121216,37.121216,0.3280225,-0.06698574 +51.08001208305359,0.0,37.878788,37.878788,0.3280225,-0.06698574 +51.08965492248535,0.0,37.121216,37.121216,0.3280225,-0.06698574 +51.1017370223999,0.0,36.363636,36.363636,0.33739457,-0.06698574 +51.11073398590088,0.0,34.848484,34.848484,0.3280225,-0.039235007 +51.119460105895996,0.0,34.09091,34.09091,0.3280225,-0.039235007 +51.13023805618286,0.0,34.09091,34.09091,0.3280225,-0.039235007 +51.140511989593506,0.0,34.848484,34.848484,0.3280225,-0.039235007 +51.149527072906494,0.0,35.60606,35.60606,0.3280225,-0.039235007 +51.15955305099487,0.0,35.60606,35.60606,0.3280225,-0.03183481 +51.17206907272339,0.0,34.848484,34.848484,0.3280225,-0.03183481 +51.18216395378113,0.0,34.848484,34.848484,0.3280225,-0.03183481 +51.19164514541626,0.0,36.363636,36.363636,0.3280225,-0.03183481 +51.19946312904358,0.0,38.636364,38.636364,0.3280225,-0.03183481 +51.20962691307068,0.0,40.151516,40.151516,0.3280225,-0.009634218 +51.219521045684814,0.0,40.90909,40.90909,0.3280225,-0.009634218 +51.22956609725952,0.0,41.666668,41.666668,0.33739457,-0.009634218 +51.23973608016968,0.0,44.696968,44.696968,0.33739457,-0.009634218 +51.24947690963745,0.0,47.727272,47.727272,0.33739457,-0.009634218 +51.259424924850464,0.0,51.515152,51.515152,0.33739457,-0.022584556 +51.27216196060181,0.0,55.30303,55.30303,0.34676665,-0.022584556 +51.279999017715454,0.0,59.090908,59.090908,0.34676665,-0.022584556 +51.28943395614624,0.0,62.121212,62.121212,0.3561387,-0.022584556 +51.2993950843811,0.0,67.42425,67.42425,0.3655108,-0.022584556 +51.31189012527466,0.0,75.757576,75.757576,0.37488285,0.0070162313 +51.31963801383972,0.0,84.09091,84.09091,0.37488285,0.0070162313 +51.32993507385254,0.0,91.66667,91.66667,0.38425493,0.0070162313 +51.33964490890503,0.0,99.242424,99.242424,0.393627,0.0070162313 +51.352174043655396,0.0,104.54545,104.54545,0.41237113,0.0070162313 +51.36001801490784,0.0,109.84849,109.84849,0.4217432,0.010716328 +51.37064814567566,0.0,115.15152,115.15152,0.43111527,0.010716328 +51.37946105003357,0.0,121.21213,121.21213,0.43111527,0.010716328 +51.38942098617554,0.0,128.0303,128.0303,0.44048735,0.010716328 +51.3999879360199,0.0,134.8485,134.8485,0.44048735,0.010716328 +51.40952706336975,0.0,140.90909,140.90909,0.44048735,0.0033161184 +51.41962814331055,0.0,145.45454,145.45454,0.44048735,0.0033161184 +51.4294331073761,0.0,150.75758,150.75758,0.44985944,0.0033161184 +51.4400110244751,0.0,157.57576,157.57576,0.4592315,0.0033161184 +51.450434923172,0.0,163.63635,163.63635,0.46860358,0.0033161184 +51.459697008132935,0.0,170.45454,170.45454,0.46860358,0.012566376 +51.4703209400177,0.0,176.51515,176.51515,0.47797564,0.012566376 +51.480019092559814,0.0,181.06061,181.06061,0.48734772,0.012566376 +51.48939514160156,0.0,184.09091,184.09091,0.49671978,0.012566376 +51.50126600265503,0.0,187.12122,187.12122,0.49671978,0.012566376 +51.509437084198,0.0,189.39394,189.39394,0.50609183,-0.00038397792 +51.51976299285889,0.0,193.18181,193.18181,0.50609183,-0.00038397792 +51.53098702430725,0.0,195.45456,195.45456,0.51546395,-0.00038397792 +51.539868116378784,0.0,198.48485,198.48485,0.524836,-0.00038397792 +51.5512330532074,0.0,200.75758,200.75758,0.524836,-0.00038397792 +51.56001591682434,0.0,201.51515,201.51515,0.524836,0.008866279 +51.57220101356506,0.0,202.27274,202.27274,0.524836,0.008866279 +51.58034706115723,0.0,203.0303,203.0303,0.524836,0.008866279 +51.59145402908325,0.0,205.30302,205.30302,0.524836,0.008866279 +51.6000280380249,0.0,206.81818,206.81818,0.524836,0.008866279 +51.60948610305786,0.0,208.33333,208.33333,0.53420806,0.014416425 +51.61959099769592,0.0,209.84848,209.84848,0.53420806,0.014416425 +51.63032293319702,0.0,209.84848,209.84848,0.53420806,0.014416425 +51.63942003250122,0.0,208.33333,208.33333,0.53420806,0.014416425 +51.65014696121216,0.0,208.33333,208.33333,0.5435801,0.014416425 +51.659871101379395,0.0,208.33333,208.33333,0.53420806,-0.0040840744 +51.67222213745117,0.0,209.0909,209.0909,0.53420806,-0.0040840744 +51.679940938949585,0.0,209.0909,209.0909,0.53420806,-0.0040840744 +51.69066095352173,0.0,209.84848,209.84848,0.53420806,-0.0040840744 +51.699681997299194,0.0,209.0909,209.0909,0.53420806,-0.0040840744 +51.70958709716797,0.0,207.57576,207.57576,0.53420806,0.0033161184 +51.71963810920715,0.0,205.30302,205.30302,0.53420806,0.0033161184 +51.73032808303833,0.0,204.54546,204.54546,0.524836,0.0033161184 +51.740001916885376,0.0,204.54546,204.54546,0.524836,0.0033161184 +51.75220704078674,0.0,204.54546,204.54546,0.524836,0.0033161184 +51.76001596450806,0.0,203.78787,203.78787,0.524836,0.0070162313 +51.76941108703613,0.0,202.27274,202.27274,0.53420806,0.0070162313 +51.78031897544861,0.0,200.0,200.0,0.524836,0.0070162313 +51.78947997093201,0.0,196.9697,196.9697,0.524836,0.0070162313 +51.79976511001587,0.0,193.93939,193.93939,0.524836,0.0070162313 +51.81089496612549,0.0,192.42424,192.42424,0.51546395,-0.009634218 +51.81964898109436,0.0,191.66666,191.66666,0.51546395,-0.009634218 +51.829922914505005,0.0,190.90909,190.90909,0.51546395,-0.009634218 +51.84002614021301,0.0,190.15152,190.15152,0.51546395,-0.009634218 +51.85156798362732,0.0,189.39394,189.39394,0.50609183,-0.009634218 +51.859883069992065,0.0,187.87878,187.87878,0.50609183,0.010716328 +51.87099003791809,0.0,184.84848,184.84848,0.50609183,0.010716328 +51.88001203536987,0.0,181.81819,181.81819,0.49671978,0.010716328 +51.88947510719299,0.0,181.06061,181.06061,0.49671978,0.010716328 +51.89946007728577,0.0,180.30304,180.30304,0.49671978,0.010716328 +51.90940308570862,0.0,179.54544,179.54544,0.49671978,-0.002234026 +51.919594049453735,0.0,178.78787,178.78787,0.49671978,-0.002234026 +51.930339097976685,0.0,177.27272,177.27272,0.49671978,-0.002234026 +51.93945908546448,0.0,175.0,175.0,0.48734772,-0.002234026 +51.949536085128784,0.0,171.21213,171.21213,0.48734772,-0.002234026 +51.95999312400818,0.0,166.66667,166.66667,0.48734772,0.01811652 +51.97014594078064,0.0,162.87878,162.87878,0.47797564,0.01811652 +51.97947311401367,0.0,157.57576,157.57576,0.46860358,0.01811652 +51.99174094200134,0.0,153.0303,153.0303,0.47797564,0.01811652 +51.9994330406189,0.0,147.72726,147.72726,0.47797564,0.01811652 +52.0095419883728,0.0,143.18181,143.18181,0.46860358,0.04031712 +52.0196270942688,0.0,138.63637,138.63637,0.4592315,0.04031712 +52.02956295013428,0.0,133.33334,133.33334,0.44985944,0.04031712 +52.04003310203552,0.0,126.51515,126.51515,0.44985944,0.04031712 +52.05118799209595,0.0,121.969696,121.969696,0.44048735,0.04031712 +52.0598680973053,0.0,118.181816,118.181816,0.44048735,0.04031712 +52.06949305534363,0.0,114.39394,114.39394,0.43111527,0.04031712 +52.08005499839783,0.0,112.12121,112.12121,0.44048735,0.04031712 +52.09063196182251,0.0,109.84849,109.84849,0.44048735,0.04031712 +52.099632024765015,0.0,108.333336,108.333336,0.43111527,0.04031712 +52.109822034835815,0.0,106.818184,106.818184,0.43111527,0.09581858 +52.11957907676697,0.0,104.54545,104.54545,0.43111527,0.09581858 +52.13034391403198,0.0,102.27273,102.27273,0.41237113,0.09581858 +52.14125394821167,0.0,100.757576,100.757576,0.41237113,0.09581858 +52.15024209022522,0.0,100.0,100.0,0.41237113,0.09581858 +52.159507036209106,0.0,99.242424,99.242424,0.41237113,0.13651967 +52.17153310775757,0.0,99.242424,99.242424,0.41237113,0.13651967 +52.179558992385864,0.0,99.242424,99.242424,0.40299907,0.13651967 +52.18954300880432,0.0,99.242424,99.242424,0.40299907,0.13651967 +52.200031042099,0.0,98.48485,98.48485,0.41237113,0.13651967 +52.20958495140076,0.0,97.72728,97.72728,0.41237113,0.21052164 +52.2196249961853,0.0,96.21212,96.21212,0.4217432,0.21052164 +52.23035192489624,0.0,94.69697,94.69697,0.4217432,0.21052164 +52.24005198478699,0.0,95.454544,95.454544,0.4217432,0.21052164 +52.249759912490845,0.0,96.969696,96.969696,0.41237113,0.21052164 +52.259907960891724,0.0,99.242424,99.242424,0.4217432,0.23827238 +52.2701621055603,0.0,101.51515,101.51515,0.4217432,0.23827238 +52.27950310707092,0.0,104.54545,104.54545,0.4217432,0.23827238 +52.28947401046753,0.0,106.06061,106.06061,0.43111527,0.23827238 +52.30225610733032,0.0,107.57576,107.57576,0.4592315,0.23827238 +52.31062698364258,0.0,107.57576,107.57576,0.4592315,0.31042427 +52.3196439743042,0.0,106.818184,106.818184,0.4592315,0.31042427 +52.33034110069275,0.0,106.06061,106.06061,0.44985944,0.31042427 +52.33941197395325,0.0,105.303024,105.303024,0.44985944,0.31042427 +52.35028696060181,0.0,106.06061,106.06061,0.44985944,0.31042427 +52.36003398895264,0.0,106.06061,106.06061,0.44985944,0.3566755 +52.37228012084961,0.0,106.06061,106.06061,0.44985944,0.3566755 +52.382280111312866,0.0,106.06061,106.06061,0.44985944,0.3566755 +52.39226698875427,0.0,106.06061,106.06061,0.44985944,0.3566755 +52.400036096572876,0.0,105.303024,105.303024,0.44985944,0.3566755 +52.411466121673584,0.0,103.78788,103.78788,0.44985944,0.3529754 +52.419469118118286,0.0,102.27273,102.27273,0.44985944,0.3529754 +52.42938995361328,0.0,100.757576,100.757576,0.44985944,0.3529754 +52.43947505950928,0.0,99.242424,99.242424,0.44985944,0.3529754 +52.4495210647583,0.0,98.48485,98.48485,0.44985944,0.3529754 +52.45990991592407,0.0,97.72728,97.72728,0.4592315,0.38442627 +52.4712700843811,0.0,96.969696,96.969696,0.4592315,0.38442627 +52.480056047439575,0.0,94.69697,94.69697,0.44985944,0.38442627 +52.492281913757324,0.0,93.181816,93.181816,0.44985944,0.38442627 +52.501543045043945,0.0,90.15152,90.15152,0.44048735,0.38442627 +52.509953022003174,0.0,86.36363,86.36363,0.44048735,0.43807763 +52.51951193809509,0.0,82.57576,82.57576,0.44048735,0.43807763 +52.529573917388916,0.0,78.78788,78.78788,0.43111527,0.43807763 +52.54014801979065,0.0,75.757576,75.757576,0.4217432,0.43807763 +52.54951190948486,0.0,72.72727,72.72727,0.41237113,0.43807763 +52.56004214286804,0.0,68.18182,68.18182,0.40299907,0.41957718 +52.56994700431824,0.0,64.393936,64.393936,0.40299907,0.41957718 +52.58051609992981,0.0,60.606064,60.606064,0.38425493,0.41957718 +52.59074807167053,0.0,55.30303,55.30303,0.38425493,0.41957718 +52.59965205192566,0.0,49.242424,49.242424,0.38425493,0.41957718 +52.60966491699219,0.0,43.939392,43.939392,0.3655108,0.488029 +52.61962699890137,0.0,37.878788,37.878788,0.37488285,0.488029 +52.63003706932068,0.0,31.818182,31.818182,0.3561387,0.488029 +52.64005899429321,0.0,25.0,25.0,0.34676665,0.488029 +52.65195107460022,0.0,21.212122,21.212122,0.34676665,0.488029 +52.659894943237305,0.0,21.969696,21.969696,0.3280225,0.4454778 +52.670897006988525,0.0,23.484848,23.484848,0.3280225,0.4454778 +52.67942690849304,0.0,25.0,25.0,0.3280225,0.4454778 +52.690207958221436,0.0,25.757576,25.757576,0.3280225,0.4454778 +52.69971203804016,0.0,27.272728,27.272728,0.31865042,0.4454778 +52.7094190120697,0.0,28.030302,28.030302,0.30927837,0.4621283 +52.71963906288147,0.0,29.545454,29.545454,0.30927837,0.4621283 +52.730355978012085,0.0,30.303032,30.303032,0.30927837,0.4621283 +52.7421669960022,0.0,30.303032,30.303032,0.2905342,0.4621283 +52.751060009002686,0.0,30.303032,30.303032,0.28116214,0.4621283 +52.7599720954895,0.0,31.060606,31.060606,0.28116214,0.47137854 +52.769410133361816,0.0,31.060606,31.060606,0.28116214,0.47137854 +52.78078293800354,0.0,31.060606,31.060606,0.28116214,0.47137854 +52.7897789478302,0.0,31.818182,31.818182,0.27179006,0.47137854 +52.800034046173096,0.0,32.575756,32.575756,0.27179006,0.47137854 +52.80950903892517,0.0,33.333336,33.333336,0.262418,0.3973766 +52.81963014602661,0.0,33.333336,33.333336,0.25304592,0.3973766 +52.83032512664795,0.0,33.333336,33.333336,0.25304592,0.3973766 +52.84003400802612,0.0,32.575756,32.575756,0.25304592,0.3973766 +52.85230302810669,0.01,31.818182,31.818182,0.25304592,0.3973766 +52.85990905761719,0.02,31.060606,31.060606,0.25304592,-0.07808603 +52.87084913253784,0.02,29.545454,29.545454,0.25304592,-0.07808603 +52.87985801696777,0.03,28.78788,28.78788,0.25304592,-0.07808603 +52.89023494720459,0.04,27.272728,27.272728,0.24367386,-0.07808603 +52.89966797828674,0.049999997,26.515152,26.515152,0.23430179,-0.07808603 +52.91142797470093,0.06,25.0,25.0,0.21555763,-0.49619716 +52.91961097717285,0.07,23.484848,23.484848,0.21555763,-0.49619716 +52.92950510978699,0.07,22.727274,22.727274,0.1968135,-0.49619716 +52.94040513038635,0.08,21.212122,21.212122,0.17806935,-0.49619716 +52.951882123947144,0.089999996,19.69697,19.69697,0.15932521,-0.49619716 +52.960071086883545,0.089999996,17.424242,17.424242,0.14058107,-0.57204914 +52.96990513801575,0.099999994,16.666668,16.666668,0.131209,-0.57204914 +52.9804310798645,0.099999994,15.151516,15.151516,0.12183693,-0.57204914 +52.98945903778076,0.11,13.636364,13.636364,0.10309278,-0.57204914 +53.000036001205444,0.12,12.121212,12.121212,0.08434864,-0.57204914 +53.009422063827515,0.12,11.363637,11.363637,0.07497657,-0.4647463 +53.01958894729614,0.13,9.848485,9.848485,0.05623243,-0.4647463 +53.030359983444214,0.14,9.090909,9.090909,0.037488285,-0.4647463 +53.03963899612427,0.14999999,7.575758,7.575758,0.037488285,-0.4647463 +53.05094313621521,0.14999999,6.818182,6.818182,0.018744143,-0.4647463 +53.059935092926025,0.16,6.060606,6.060606,0.0,-0.03553491 +53.069432973861694,0.17,5.3030305,5.3030305,0.0,-0.03553491 +53.07945704460144,0.19,4.5454545,4.5454545,0.0,-0.03553491 +53.089606046676636,0.19999999,3.787879,3.787879,0.0,-0.03553491 +53.10232400894165,0.21,3.787879,3.787879,0.0,-0.03553491 +53.112338066101074,0.22,3.030303,3.030303,0.0,0.34372514 +53.119625091552734,0.22999999,2.2727273,2.2727273,0.0,0.34372514 +53.13034510612488,0.24,1.5151515,1.5151515,0.0,0.34372514 +53.14099192619324,0.24,1.5151515,1.5151515,0.0,0.34372514 +53.14998912811279,0.25,0.75757575,0.75757575,0.0,0.34372514 +53.16005611419678,0.26,0.75757575,0.75757575,0.0,0.5971819 +53.16976809501648,0.26999998,0.0,0.0,0.0,0.5971819 +53.17939209938049,0.26999998,0.0,0.0,0.0,0.5971819 +53.19236397743225,0.28,0.0,0.0,0.0,0.5971819 +53.20008897781372,0.29,0.0,0.0,0.0,0.5971819 +53.21157503128052,0.29,0.0,0.0,0.0,0.72853535 +53.222028970718384,0.29,0.0,0.0,0.0,0.72853535 +53.23062610626221,0.29999998,0.0,0.0,0.0,0.72853535 +53.240039110183716,0.29999998,0.0,0.0,0.0,0.72853535 +53.249943017959595,0.31,0.0,0.0,0.0,0.72853535 +53.260064125061035,0.31,0.0,0.0,0.0,0.7710865 +53.2723650932312,0.32,0.0,0.0,0.0,0.7710865 +53.2803590297699,0.32,0.0,0.0,0.0,0.7710865 +53.2923641204834,0.32,0.0,0.0,0.0,0.7710865 +53.301867961883545,0.32,0.0,0.0,0.0,0.7710865 +53.312094926834106,0.32,0.0,0.0,0.0,0.863589 +53.31964707374573,0.32,0.0,0.0,0.0,0.863589 +53.329489946365356,0.32,0.0,0.0,0.0,0.863589 +53.339468002319336,0.31,0.0,0.0,0.0,0.863589 +53.350160121917725,0.31,0.0,0.0,0.0,0.863589 +53.36007308959961,0.29999998,0.0,0.0,0.0,1.055994 +53.37032103538513,0.29999998,0.0,0.0,0.0,1.055994 +53.3823459148407,0.29,0.0,0.0,0.0,1.055994 +53.392240047454834,0.29,0.0,0.0,0.0,1.055994 +53.401358127593994,0.29,0.0,0.0,0.0,1.055994 +53.4102520942688,0.28,0.0,0.0,0.0,1.094845 +53.419520139694214,0.28,0.0,0.0,0.0,1.094845 +53.4293999671936,0.26999998,0.0,0.0,0.0,1.094845 +53.440333127975464,0.26999998,0.0,0.0,0.0,1.094845 +53.451797008514404,0.26999998,0.0,0.0,0.0,1.094845 +53.459938049316406,0.26,0.0,0.0,0.0,1.0855948 +53.47236394882202,0.26,0.0,0.0,0.0,1.0855948 +53.48149514198303,0.25,0.0,0.0,0.0,1.0855948 +53.49039697647095,0.25,0.0,0.0,0.0,1.0855948 +53.50125503540039,0.24,0.0,0.0,0.0,1.0855948 +53.51024508476257,0.22999999,0.0,0.0,0.0,1.1151958 +53.51963710784912,0.22,0.75757575,0.75757575,0.0,1.1151958 +53.530369997024536,0.21,1.5151515,1.5151515,0.0,1.1151958 +53.539555072784424,0.19999999,1.5151515,1.5151515,0.009372071,1.1151958 +53.55059504508972,0.19,2.2727273,2.2727273,0.009372071,1.1151958 +53.55990791320801,0.17999999,2.2727273,2.2727273,0.009372071,1.1910477 +53.57059192657471,0.17,3.030303,3.030303,0.018744143,1.1910477 +53.57949900627136,0.16,3.030303,3.030303,0.018744143,1.1910477 +53.59024095535278,0.16,3.030303,3.030303,0.018744143,1.1910477 +53.60032296180725,0.14999999,3.030303,3.030303,0.018744143,1.1910477 +53.60987305641174,0.14999999,3.030303,3.030303,0.028116215,1.198448 +53.61961007118225,0.14,3.030303,3.030303,0.028116215,1.198448 +53.62965106964111,0.14,3.030303,3.030303,0.028116215,1.198448 +53.6418719291687,0.13,3.787879,3.787879,0.037488285,1.198448 +53.65075397491455,0.13,3.787879,3.787879,0.037488285,1.198448 +53.65967798233032,0.13,3.787879,3.787879,0.028116215,1.2095482 +53.672383069992065,0.12,4.5454545,4.5454545,0.037488285,1.2095482 +53.68139600753784,0.12,4.5454545,4.5454545,0.037488285,1.2095482 +53.68960499763489,0.11,4.5454545,4.5454545,0.037488285,1.2095482 +53.69942593574524,0.11,5.3030305,5.3030305,0.046860356,1.2095482 +53.71088409423828,0.11,5.3030305,5.3030305,0.046860356,1.2224984 +53.719650983810425,0.11,5.3030305,5.3030305,0.046860356,1.2224984 +53.73033809661865,0.099999994,5.3030305,5.3030305,0.046860356,1.2224984 +53.739442110061646,0.099999994,5.3030305,5.3030305,0.05623243,1.2224984 +53.752087116241455,0.099999994,5.3030305,5.3030305,0.0656045,1.2224984 +53.76008200645447,0.099999994,5.3030305,5.3030305,0.0656045,1.239149 +53.77150893211365,0.099999994,5.3030305,5.3030305,0.0656045,1.239149 +53.77983999252319,0.089999996,6.060606,6.060606,0.0656045,1.239149 +53.78950595855713,0.089999996,6.060606,6.060606,0.0656045,1.239149 +53.80105900764465,0.089999996,6.818182,6.818182,0.0656045,1.239149 +53.81007504463196,0.089999996,6.818182,6.818182,0.0656045,1.2613494 +53.81966805458069,0.089999996,7.575758,7.575758,0.07497657,1.2613494 +53.83037304878235,0.099999994,7.575758,7.575758,0.07497657,1.2613494 +53.8403799533844,0.099999994,7.575758,7.575758,0.07497657,1.2613494 +53.85016107559204,0.099999994,7.575758,7.575758,0.08434864,1.2613494 +53.86011600494385,0.099999994,7.575758,7.575758,0.08434864,1.2761499 +53.87060809135437,0.11,7.575758,7.575758,0.08434864,1.2761499 +53.87961506843567,0.11,7.575758,7.575758,0.09372071,1.2761499 +53.8912250995636,0.11,7.575758,7.575758,0.09372071,1.2761499 +53.89963102340698,0.11,8.333334,8.333334,0.09372071,1.2761499 +53.91101813316345,0.11,8.333334,8.333334,0.09372071,1.3205512 +53.919620990753174,0.12,8.333334,8.333334,0.09372071,1.3205512 +53.93034291267395,0.12,8.333334,8.333334,0.09372071,1.3205512 +53.94096612930298,0.12,8.333334,8.333334,0.09372071,1.3205512 +53.95159196853638,0.13,8.333334,8.333334,0.09372071,1.3205512 +53.95989394187927,0.13,8.333334,8.333334,0.09372071,1.3076007 +53.969578981399536,0.14,8.333334,8.333334,0.10309278,1.3076007 +53.98014712333679,0.14,8.333334,8.333334,0.10309278,1.3076007 +53.990087032318115,0.14999999,8.333334,8.333334,0.10309278,1.3076007 +53.99947905540466,0.16,8.333334,8.333334,0.10309278,1.3076007 +54.01198697090149,0.16,8.333334,8.333334,0.10309278,1.2317487 +54.0196099281311,0.17,8.333334,8.333334,0.10309278,1.2317487 +54.03039193153381,0.17999999,8.333334,8.333334,0.10309278,1.2317487 +54.04154109954834,0.19,8.333334,8.333334,0.10309278,1.2317487 +54.05028200149536,0.19999999,8.333334,8.333334,0.09372071,1.2317487 +54.05954694747925,0.21,8.333334,8.333334,0.09372071,1.0800447 +54.06960201263428,0.22,8.333334,8.333334,0.09372071,1.0800447 +54.08042001724243,0.22999999,8.333334,8.333334,0.09372071,1.0800447 +54.08968901634216,0.22999999,8.333334,8.333334,0.09372071,1.0800447 +54.102416038513184,0.24,7.575758,7.575758,0.10309278,1.0800447 +54.11016011238098,0.25,7.575758,7.575758,0.09372071,1.0707945 +54.12095403671265,0.25,6.818182,6.818182,0.10309278,1.0707945 +54.12941312789917,0.26,6.818182,6.818182,0.09372071,1.0707945 +54.139946937561035,0.26,6.060606,6.060606,0.10309278,1.0707945 +54.149462938308716,0.26999998,5.3030305,5.3030305,0.10309278,1.0707945 +54.1599440574646,0.28,5.3030305,5.3030305,0.10309278,1.0855948 +54.17082405090332,0.28,4.5454545,4.5454545,0.10309278,1.0855948 +54.179856061935425,0.29,4.5454545,4.5454545,0.09372071,1.0855948 +54.19244408607483,0.29999998,4.5454545,4.5454545,0.08434864,1.0855948 +54.20046901702881,0.29999998,3.787879,3.787879,0.07497657,1.0855948 +54.21118402481079,0.31,3.787879,3.787879,0.08434864,1.0855948 +54.21966195106506,0.32,3.787879,3.787879,0.09372071,1.0855948 +54.22967004776001,0.32999998,3.787879,3.787879,0.09372071,1.0855948 +54.239540100097656,0.34,3.030303,3.030303,0.08434864,1.0855948 +54.24942708015442,0.34,3.030303,3.030303,0.07497657,1.0855948 +54.26008605957031,0.35,3.030303,3.030303,0.08434864,1.020843 +54.270050048828125,0.35999998,2.2727273,2.2727273,0.0656045,1.020843 +54.282432079315186,0.37,2.2727273,2.2727273,0.0656045,1.020843 +54.29059100151062,0.38,2.2727273,2.2727273,0.0656045,1.020843 +54.300904989242554,0.39,1.5151515,1.5151515,0.0656045,1.020843 +54.309706926345825,0.39999998,1.5151515,1.5151515,0.0656045,1.0060427 +54.31966805458069,0.39999998,1.5151515,1.5151515,0.0656045,1.0060427 +54.32950210571289,0.41,0.75757575,0.75757575,0.07497657,1.0060427 +54.342211961746216,0.42,0.75757575,0.75757575,0.05623243,1.0060427 +54.35119104385376,0.42,0.75757575,0.75757575,0.046860356,1.0060427 +54.35996913909912,0.42999998,0.0,0.0,0.046860356,1.0078928 +54.36980104446411,0.42999998,0.0,0.0,0.046860356,1.0078928 +54.38035202026367,0.44,0.0,0.0,0.046860356,1.0078928 +54.39000391960144,0.45,0.0,0.0,0.037488285,1.0078928 +54.399476051330566,0.45,0.0,0.0,0.037488285,1.0078928 +54.4102520942688,0.45999998,0.0,0.0,0.037488285,1.0448937 +54.41964507102966,0.45999998,0.0,0.0,0.037488285,1.0448937 +54.429425954818726,0.47,0.0,0.0,0.037488285,1.0448937 +54.44080591201782,0.48,0.0,0.0,0.037488285,1.0448937 +54.4503960609436,0.48,0.0,0.0,0.028116215,1.0448937 +54.45943212509155,0.48999998,0.0,0.0,0.028116215,0.9523913 +54.470168113708496,0.48999998,0.0,0.0,0.037488285,0.9523913 +54.48164701461792,0.5,0.0,0.0,0.037488285,0.9523913 +54.49116396903992,0.51,0.0,0.0,0.028116215,0.9523913 +54.50004601478577,0.51,0.0,0.0,0.028116215,0.9523913 +54.50939202308655,0.52,0.0,0.0,0.028116215,0.8987398 +54.51961302757263,0.52,0.0,0.0,0.028116215,0.8987398 +54.53038001060486,0.53,0.0,0.0,0.028116215,0.8987398 +54.54058003425598,0.53,0.0,0.0,0.018744143,0.8987398 +54.54960012435913,0.53,0.0,0.0,0.018744143,0.8987398 +54.55993294715881,0.53999996,0.0,0.0,0.018744143,0.8210379 +54.572102069854736,0.53999996,0.0,0.0,0.009372071,0.8210379 +54.580034017562866,0.55,0.0,0.0,0.0,0.8210379 +54.59009003639221,0.55,0.0,0.0,0.0,0.8210379 +54.600444078445435,0.55,0.0,0.0,0.0,0.8210379 +54.60947299003601,0.55,0.0,0.0,0.0,0.7710865 +54.619588136672974,0.56,0.0,0.0,0.0,0.7710865 +54.630017042160034,0.56,0.0,0.0,0.0,0.7710865 +54.63939905166626,0.56,0.0,0.0,0.0,0.7710865 +54.6524920463562,0.56,0.0,0.0,0.0,0.7710865 +54.66018199920654,0.57,0.0,0.0,0.0,0.7303854 +54.67104196548462,0.57,0.0,0.0,0.0,0.7303854 +54.68001699447632,0.57,0.0,0.0,0.0,0.7303854 +54.690572023391724,0.57,0.0,0.0,0.0,0.7303854 +54.699573040008545,0.57,0.0,0.0,0.0,0.7303854 +54.7106499671936,0.57,0.0,0.0,0.0,0.5416804 +54.71956992149353,0.58,0.0,0.0,0.0,0.5416804 +54.729926109313965,0.58,0.0,0.0,0.0,0.5416804 +54.74103403091431,0.58,0.0,0.0,0.0,0.5416804 +54.75198292732239,0.58,0.0,0.0,0.0,0.5416804 +54.75996112823486,0.58,0.0,0.0,0.0,0.51577973 +54.76997208595276,0.58,0.0,0.0,0.0,0.51577973 +54.78070592880249,0.58,0.0,0.0,0.0,0.51577973 +54.78970003128052,0.58,0.0,0.0,0.0,0.51577973 +54.799708127975464,0.58,0.0,0.0,0.0,0.51577973 +54.809601068496704,0.57,0.0,0.0,0.0,0.5305801 +54.819684982299805,0.57,0.0,0.0,0.0,0.5305801 +54.83037710189819,0.57,0.0,0.0,0.0,0.5305801 +54.84193801879883,0.57,0.0,0.0,0.0,0.5305801 +54.8503680229187,0.56,0.0,0.0,0.0,0.5305801 +54.85991096496582,0.56,0.0,0.0,0.0,0.44917795 +54.86939191818237,0.56,0.0,0.0,0.0,0.44917795 +54.879838943481445,0.56,0.0,0.0,0.0,0.44917795 +54.889886140823364,0.56,0.0,0.0,0.0,0.44917795 +54.901248931884766,0.56,0.0,0.0,0.0,0.44917795 +54.91025900840759,0.56,0.0,0.0,0.0,0.40662682 +54.922492027282715,0.56,0.0,0.0,0.0,0.40662682 +54.93189191818237,0.56,0.0,0.0,0.0,0.40662682 +54.939932107925415,0.56,0.0,0.0,0.0,0.40662682 +54.94987392425537,0.55,0.0,0.0,0.0,0.40662682 +54.9596209526062,0.55,0.0,0.0,0.0,0.4047768 +54.96995401382446,0.53999996,0.0,0.0,0.0,0.4047768 +54.98035907745361,0.53999996,0.0,0.0,0.0,0.4047768 +54.98945999145508,0.53,0.0,0.0,0.0,0.4047768 +55.00044107437134,0.53,0.0,0.0,0.0,0.4047768 +55.009488105773926,0.52,0.0,0.0,0.0,0.39922667 +55.019659996032715,0.52,0.0,0.0,0.0,0.39922667 +55.029398918151855,0.51,0.0,0.0,0.0,0.39922667 +55.03981304168701,0.51,0.0,0.0,0.0,0.39922667 +55.049813985824585,0.5,0.0,0.0,0.0,0.39922667 +55.060075998306274,0.5,0.0,0.0,0.0,0.31412435 +55.07145309448242,0.48999998,0.0,0.0,0.0,0.31412435 +55.07987308502197,0.48999998,0.0,0.0,0.0,0.31412435 +55.09063506126404,0.48,0.0,0.0,0.0,0.31412435 +55.09965109825134,0.48,0.0,0.0,0.0,0.31412435 +55.10948204994202,0.47,0.0,0.0,0.0,0.20312142 +55.1196711063385,0.47,0.0,0.0,0.0,0.20312142 +55.12942600250244,0.47,0.0,0.0,0.0,0.20312142 +55.141178131103516,0.47,0.0,0.0,0.0,0.20312142 +55.14982008934021,0.47,0.0,0.0,0.0,0.20312142 +55.15943002700806,0.45999998,0.0,0.0,0.0,0.01811652 +55.169676065444946,0.45999998,0.0,0.0,0.0,0.01811652 +55.18079400062561,0.45999998,0.0,0.0,0.0,0.01811652 +55.189815044403076,0.45999998,0.0,0.0,0.0,0.01811652 +55.200499057769775,0.45,0.0,0.0,0.0,0.01811652 +55.20939302444458,0.44,0.0,0.0,0.0,-0.042935103 +55.219664096832275,0.42999998,0.0,0.0,0.0,-0.042935103 +55.23038697242737,0.42,0.0,0.0,0.0,-0.042935103 +55.240302085876465,0.41,0.0,0.0,0.0,-0.042935103 +55.252543926239014,0.39999998,0.0,0.0,0.0,-0.042935103 +55.26010608673096,0.39,0.0,0.0,0.0,-0.11138691 +55.27098202705383,0.38,0.0,0.0,0.0,-0.11138691 +55.27981495857239,0.38,0.0,0.0,0.0,-0.11138691 +55.28955698013306,0.37,0.0,0.0,0.0,-0.11138691 +55.30062913894653,0.37,0.0,0.0,0.0,-0.11138691 +55.30961608886719,0.35999998,0.0,0.0,0.0,-0.14653786 +55.31964898109436,0.35999998,0.0,0.0,0.0,-0.14653786 +55.33034801483154,0.35,0.0,0.0,0.0,-0.14653786 +55.339406967163086,0.35,0.0,0.0,0.0,-0.14653786 +55.349623918533325,0.35,0.0,0.0,0.0,-0.14653786 +55.35997200012207,0.34,0.0,0.0,0.0,-0.18538888 +55.36972713470459,0.34,0.0,0.0,0.0,-0.18538888 +55.38152599334717,0.34,0.0,0.0,0.0,-0.18538888 +55.39052200317383,0.34,0.0,0.0,0.0,-0.18538888 +55.39962100982666,0.32999998,0.0,0.0,0.0,-0.18538888 +55.4096360206604,0.32999998,0.0,0.0,0.0,-0.3185924 +55.4196560382843,0.32,0.0,0.0,0.0,-0.3185924 +55.42962408065796,0.32,0.0,0.0,0.0,-0.3185924 +55.44096398353577,0.31,0.0,0.0,0.0,-0.3185924 +55.449888944625854,0.31,0.0,0.0,0.0,-0.3185924 +55.46020197868347,0.29999998,0.0,0.0,0.0,-0.3611436 +55.46941614151001,0.29,0.0,0.0,0.0,-0.3611436 +55.48042011260986,0.29,0.0,0.0,0.0,-0.3611436 +55.48958396911621,0.29,0.0,0.0,0.0,-0.3611436 +55.500060081481934,0.28,0.0,0.0,0.0,-0.3611436 +55.51048398017883,0.28,0.0,0.0,0.0,-0.38704422 +55.5195951461792,0.28,0.0,0.0,0.0,-0.38704422 +55.529393911361694,0.26999998,0.0,0.0,0.0,-0.38704422 +55.53975200653076,0.26999998,0.0,0.0,0.0,-0.38704422 +55.5506010055542,0.26999998,0.0,0.0,0.0,-0.38704422 +55.55960702896118,0.26,0.0,0.0,0.0,-0.4092448 +55.57032108306885,0.26,0.0,0.0,0.0,-0.4092448 +55.582561016082764,0.26,0.0,0.0,0.0,-0.4092448 +55.59156513214111,0.25,0.0,0.0,0.0,-0.4092448 +55.60055112838745,0.25,0.0,0.0,0.0,-0.4092448 +55.609513998031616,0.25,0.0,0.0,0.0,-0.5368982 +55.6196551322937,0.24,0.0,0.0,0.0,-0.5368982 +55.62939810752869,0.24,0.0,0.0,0.0,-0.5368982 +55.64078712463379,0.22999999,0.0,0.0,0.0,-0.5368982 +55.64980506896973,0.22999999,0.0,0.0,0.0,-0.5368982 +55.66015601158142,0.22999999,0.0,0.0,0.0,-0.59609973 +55.66967010498047,0.22,0.0,0.0,0.0,-0.59609973 +55.681496143341064,0.22,0.0,0.0,0.0,-0.59609973 +55.690382957458496,0.22,0.0,0.0,0.0,-0.59609973 +55.69962501525879,0.22,0.0,0.0,0.0,-0.59609973 +55.71257996559143,0.21,0.0,0.0,0.0,-0.5905496 +55.71966195106506,0.21,0.0,0.0,0.0,-0.5905496 +55.7296199798584,0.21,0.0,0.0,0.0,-0.5905496 +55.74000406265259,0.21,0.0,0.0,0.0,-0.5905496 +55.75015711784363,0.21,0.0,0.0,0.0,-0.5905496 +55.75947904586792,0.21,0.0,0.0,0.0,-0.5868495 +55.77056002616882,0.21,0.0,0.0,0.0,-0.5868495 +55.77947211265564,0.21,0.0,0.0,0.0,-0.5868495 +55.78968906402588,0.21,0.0,0.0,0.0,-0.5868495 +55.79962396621704,0.21,0.0,0.0,0.0,-0.5868495 +55.81215691566467,0.21,0.0,0.0,0.0,-0.59609973 +55.81977105140686,0.21,0.0,0.0,0.0,-0.59609973 +55.82939696311951,0.21,0.0,0.0,0.0,-0.59609973 +55.83948493003845,0.19999999,0.0,0.0,0.0,-0.59609973 +55.8498170375824,0.19999999,0.0,0.0,0.0,-0.59609973 +55.859647035598755,0.19999999,0.0,0.0,0.0,-0.5831495 +55.87076210975647,0.19999999,0.0,0.0,0.0,-0.5831495 +55.87974309921265,0.21,0.0,0.0,0.0,-0.5831495 +55.89022994041443,0.21,0.0,0.0,0.0,-0.5831495 +55.902342081069946,0.21,0.0,0.0,0.0,-0.5831495 +55.91136407852173,0.21,0.0,0.0,0.0,-0.60349995 +55.919655084609985,0.19999999,0.0,0.0,0.0,-0.60349995 +55.92939591407776,0.19999999,0.0,0.0,0.0,-0.60349995 +55.93980813026428,0.19999999,0.0,0.0,0.0,-0.60349995 +55.95180010795593,0.19999999,0.0,0.0,0.0,-0.60349995 +55.9599449634552,0.19,0.0,0.0,0.0,-0.42959538 +55.9698281288147,0.19,0.0,0.0,0.0,-0.42959538 +55.982609033584595,0.19999999,0.0,0.0,0.0,-0.42959538 +55.991493940353394,0.19999999,0.0,0.0,0.0,-0.42959538 +55.99969291687012,0.22,0.0,0.0,0.0,-0.42959538 +56.010541915893555,0.22999999,0.0,0.0,0.0,-0.31304228 +56.01959013938904,0.25,0.0,0.0,0.0,-0.31304228 +56.03038191795349,0.26,0.0,0.0,0.0,-0.31304228 +56.04184293746948,0.28,0.75757575,0.75757575,0.0,-0.31304228 +56.050861120224,0.28,0.75757575,0.75757575,0.0,-0.31304228 +56.05951809883118,0.29,0.75757575,0.75757575,0.0,-0.3444931 +56.07080411911011,0.29,0.75757575,0.75757575,0.0,-0.3444931 +56.08192801475525,0.29,0.75757575,0.75757575,0.0,-0.3444931 +56.09128499031067,0.29,0.0,0.0,0.0,-0.3444931 +56.10019493103027,0.28,0.0,0.0,0.0,-0.3444931 +56.10974597930908,0.28,0.0,0.0,0.0,-0.3962945 +56.11967897415161,0.28,0.0,0.0,0.0,-0.3962945 +56.12941908836365,0.28,0.0,0.0,0.0,-0.3962945 +56.1409330368042,0.28,0.0,0.0,0.0,-0.3962945 +56.1499240398407,0.28,0.0,0.0,0.0,-0.3962945 +56.15998697280884,0.28,0.0,0.0,0.0,-0.33894297 +56.17144203186035,0.28,0.0,0.0,0.0,-0.33894297 +56.18037509918213,0.29,0.0,0.0,0.0,-0.33894297 +56.18952298164368,0.29,0.0,0.0,0.0,-0.33894297 +56.1996750831604,0.29999998,0.0,0.0,0.0,-0.33894297 +56.212604999542236,0.31,0.0,0.0,0.0,-0.38519418 +56.219664096832275,0.31,0.0,0.0,0.0,-0.38519418 +56.22940707206726,0.31,0.0,0.0,0.0,-0.38519418 +56.24000096321106,0.32,0.0,0.0,0.009372071,-0.38519418 +56.25100493431091,0.32,0.0,0.0,0.0,-0.38519418 +56.2596390247345,0.32,0.0,0.0,0.0,-0.37594396 +56.26943302154541,0.32,0.0,0.0,0.0,-0.37594396 +56.2805860042572,0.32999998,0.0,0.0,0.0,-0.37594396 +56.289562940597534,0.32999998,0.0,0.0,0.0,-0.37594396 +56.302650928497314,0.34,0.0,0.0,0.0,-0.37594396 +56.31109809875488,0.34,0.0,0.0,0.0,-0.37224382 +56.31945610046387,0.35,0.0,0.0,0.0,-0.37224382 +56.32939600944519,0.35,0.0,0.0,0.0,-0.37224382 +56.34072995185852,0.35,0.0,0.0,0.0,-0.37224382 +56.34953594207764,0.35,0.0,0.0,0.0,-0.37224382 +56.35999798774719,0.35,0.0,0.0,0.0,-0.38334414 +56.37049412727356,0.35,0.0,0.0,0.0,-0.38334414 +56.37949299812317,0.35,0.0,0.0,0.0,-0.38334414 +56.39048409461975,0.34,0.0,0.0,0.0,-0.38334414 +56.40131402015686,0.34,0.0,0.0,0.0,-0.38334414 +56.41110610961914,0.32999998,0.0,0.0,0.0,-0.33894297 +56.419697999954224,0.32999998,0.0,0.0,0.0,-0.33894297 +56.42939591407776,0.32999998,0.0,0.0,0.0,-0.33894297 +56.43953609466553,0.32999998,0.0,0.0,0.0,-0.33894297 +56.44941592216492,0.32999998,0.0,0.0,0.0,-0.33894297 +56.460176944732666,0.34,0.0,0.0,0.0,-0.32969272 +56.46939396858215,0.34,0.0,0.0,0.0,-0.32969272 +56.4794180393219,0.34,0.0,0.0,0.0,-0.32969272 +56.49214792251587,0.34,0.0,0.0,0.0,-0.32969272 +56.49984097480774,0.34,0.0,0.0,0.0,-0.32969272 +56.509989976882935,0.34,0.0,0.0,0.0,-0.33154276 +56.51939010620117,0.34,0.0,0.0,0.0,-0.33154276 +56.52941012382507,0.32999998,0.0,0.0,0.0,-0.33154276 +56.540462017059326,0.32999998,0.0,0.0,0.0,-0.33154276 +56.550328969955444,0.32,0.0,0.0,0.0,-0.33154276 +56.559996128082275,0.32,0.0,0.0,0.0,-0.33894297 +56.569586992263794,0.31,0.0,0.0,0.0,-0.33894297 +56.5804169178009,0.31,0.0,0.0,0.0,-0.33894297 +56.59014892578125,0.31,0.0,0.0,0.0,-0.33894297 +56.60026001930237,0.29999998,0.0,0.0,0.0,-0.33894297 +56.611331939697266,0.29999998,0.0,0.0,0.0,-0.27049115 +56.622236013412476,0.29999998,0.0,0.0,0.0,-0.27049115 +56.631197929382324,0.29999998,0.0,0.0,0.0,-0.27049115 +56.640207052230835,0.31,0.0,0.0,0.0,-0.27049115 +56.649770975112915,0.31,0.0,0.0,0.0,-0.27049115 +56.65976095199585,0.32,0.0,0.0,0.0,-0.22794001 +56.670305013656616,0.32,0.0,0.0,0.0,-0.22794001 +56.679402112960815,0.32999998,0.0,0.0,0.0,-0.22794001 +56.68940806388855,0.32999998,0.0,0.0,0.0,-0.22794001 +56.70170998573303,0.34,0.0,0.0,0.0,-0.22794001 +56.710360050201416,0.34,0.0,0.0,0.0,-0.24459045 +56.71970009803772,0.34,0.0,0.0,0.0,-0.24459045 +56.72939610481262,0.32999998,0.0,0.0,0.0,-0.24459045 +56.74093008041382,0.32999998,0.0,0.0,0.0,-0.24459045 +56.74995803833008,0.32999998,0.0,0.0,0.0,-0.24459045 +56.759485960006714,0.32,0.0,0.0,0.0,-0.16318831 +56.77124214172363,0.32,0.0,0.0,0.0,-0.16318831 +56.78040313720703,0.32,0.0,0.0,0.0,-0.16318831 +56.789422035217285,0.32,0.0,0.0,0.0,-0.16318831 +56.799747943878174,0.32,0.0,0.0,0.0,-0.16318831 +56.810997009277344,0.32,0.0,0.0,0.0,-0.0577355 +56.819458961486816,0.32999998,0.0,0.0,0.0,-0.0577355 +56.82940912246704,0.32999998,0.0,0.0,0.0,-0.0577355 +56.83940505981445,0.34,0.0,0.0,0.0,-0.0577355 +56.852473974227905,0.34,0.0,0.0,0.0,-0.0577355 +56.860188007354736,0.34,0.0,0.0,0.0,-0.0577355 +56.87049102783203,0.34,0.0,0.0,0.0,-0.0577355 +56.87949299812317,0.32999998,0.0,0.0,0.0,-0.0577355 +56.891921043395996,0.32999998,0.0,0.0,0.0,-0.0577355 +56.900923013687134,0.32,0.0,0.0,0.0,-0.0577355 +56.90943098068237,0.31,0.0,0.0,0.0,-0.0040840744 +56.919662952423096,0.31,0.0,0.0,0.0,-0.0040840744 +56.92940902709961,0.29999998,0.0,0.0,0.0,-0.0040840744 +56.93947792053223,0.29999998,0.0,0.0,0.0,-0.0040840744 +56.94984412193298,0.29999998,0.0,0.0,0.0,-0.0040840744 +56.96003699302673,0.29999998,0.0,0.0,0.0,0.019966569 +56.96948504447937,0.29999998,0.0,0.0,0.0,0.019966569 +56.981817960739136,0.29999998,0.0,0.0,0.0,0.019966569 +56.99079203605652,0.29999998,0.0,0.0,0.0,0.019966569 +56.99976301193237,0.29999998,0.0,0.0,0.0,0.019966569 +57.01147508621216,0.29999998,0.0,0.0,0.0,0.093968526 +57.01968002319336,0.29999998,0.0,0.0,0.0,0.093968526 +57.029398918151855,0.29999998,0.0,0.0,0.0,0.093968526 +57.04162311553955,0.29999998,0.0,0.0,0.0,0.093968526 +57.05064105987549,0.29999998,0.0,0.0,0.0,0.093968526 +57.05941700935364,0.29999998,0.0,0.0,0.0,0.20682153 +57.07108211517334,0.29999998,0.0,0.0,0.0,0.20682153 +57.07999897003174,0.29999998,0.0,0.0,0.0,0.20682153 +57.08967614173889,0.29999998,0.0,0.0,0.0,0.20682153 +57.100239992141724,0.29999998,0.0,0.0,0.0,0.20682153 +57.1106641292572,0.29999998,0.0,0.0,0.0,0.22347198 +57.11969494819641,0.29999998,0.0,0.0,0.0,0.22347198 +57.12941312789917,0.29999998,0.0,0.0,0.0,0.22347198 +57.14069414138794,0.29999998,0.0,0.0,0.0,0.22347198 +57.14942502975464,0.29999998,0.0,0.0,0.0,0.22347198 +57.16003108024597,0.29999998,0.0,0.0,0.0,0.2438225 +57.17055892944336,0.29999998,0.0,0.0,0.0,0.2438225 +57.17946195602417,0.29999998,0.0,0.0,0.0,0.2438225 +57.190359115600586,0.29999998,0.0,0.0,0.0,0.2438225 +57.20086407661438,0.29999998,0.0,0.0,0.0,0.2438225 +57.209702014923096,0.29999998,0.0,0.0,0.0,0.25677285 +57.2196991443634,0.29999998,0.0,0.0,0.0,0.25677285 +57.229496002197266,0.29999998,0.0,0.0,0.0,0.25677285 +57.23972702026367,0.29999998,0.0,0.0,0.0,0.25677285 +57.25020694732666,0.29999998,0.0,0.0,0.0,0.25677285 +57.26018691062927,0.29999998,0.0,0.0,0.0,0.2549228 +57.26947999000549,0.29999998,0.0,0.0,0.0,0.2549228 +57.282017946243286,0.29999998,0.0,0.0,0.0,0.2549228 +57.291057109832764,0.29999998,0.0,0.0,0.0,0.2549228 +57.300076961517334,0.29999998,0.0,0.0,0.0,0.2549228 +57.31054210662842,0.29999998,0.0,0.0,0.0,0.23457228 +57.31966495513916,0.29999998,0.0,0.0,0.0,0.23457228 +57.32939791679382,0.29999998,0.0,0.0,0.0,0.23457228 +57.34141302108765,0.29999998,0.0,0.0,0.0,0.23457228 +57.35038900375366,0.29999998,0.0,0.0,0.0,0.23457228 +57.35940408706665,0.29999998,0.0,0.0,0.0,0.3215246 +57.37217402458191,0.29,0.0,0.0,0.0,0.3215246 +57.381200075149536,0.29,0.0,0.0,0.0,0.3215246 +57.389734983444214,0.29,0.0,0.0,0.0,0.3215246 +57.39940810203552,0.29,0.0,0.0,0.0,0.3215246 +57.40954899787903,0.29,0.0,0.0,0.0,0.43992776 +57.4196879863739,0.29,0.0,0.0,0.0,0.43992776 +57.42940092086792,0.29,0.0,0.0,0.0,0.43992776 +57.43942308425903,0.29,0.0,0.0,0.0,0.43992776 +57.45273995399475,0.29,0.0,0.0,0.0,0.43992776 +57.46022009849548,0.29,0.0,0.0,0.0,0.46027827 +57.47137808799744,0.29,0.0,0.0,0.0,0.46027827 +57.47967791557312,0.29,0.0,0.0,0.0,0.46027827 +57.489437103271484,0.29,0.0,0.0,0.0,0.46027827 +57.50092911720276,0.29,0.0,0.0,0.0,0.46027827 +57.50992298126221,0.29,0.0,0.0,0.0,0.42512733 +57.52121090888977,0.29,0.0,0.0,0.0,0.42512733 +57.53022599220276,0.29,0.0,0.0,0.0,0.42512733 +57.53942894935608,0.29,0.0,0.0,0.0,0.42512733 +57.551018953323364,0.28,0.0,0.0,0.0,0.42512733 +57.56001901626587,0.28,0.0,0.0,0.0,0.35482547 +57.5698881149292,0.29,0.0,0.0,0.0,0.35482547 +57.579631090164185,0.29,0.0,0.0,0.0,0.35482547 +57.589399099349976,0.29,0.0,0.0,0.0,0.35482547 +57.599997997283936,0.29999998,0.0,0.0,0.0,0.35482547 +57.611077070236206,0.29999998,0.0,0.0,0.0,0.25307277 +57.61971306800842,0.31,0.0,0.0,0.0,0.25307277 +57.62941598892212,0.31,0.0,0.0,0.0,0.25307277 +57.6411669254303,0.32,0.0,0.0,0.0,0.25307277 +57.650059938430786,0.32,0.0,0.0,0.0,0.25307277 +57.660207986831665,0.32999998,0.0,0.0,0.0,0.2771234 +57.66979002952576,0.32999998,0.0,0.0,0.0,0.2771234 +57.67964196205139,0.32999998,0.0,0.0,0.0,0.2771234 +57.690041065216064,0.32999998,0.0,0.0,0.0,0.2771234 +57.70065903663635,0.32999998,0.0,0.0,0.0,0.2771234 +57.709973096847534,0.32999998,0.0,0.0,0.0,0.24937265 +57.71966505050659,0.32999998,0.0,0.0,0.0,0.24937265 +57.730238914489746,0.32999998,0.0,0.0,0.0,0.24937265 +57.741612911224365,0.32999998,0.0,0.0,0.0,0.24937265 +57.749999046325684,0.32999998,0.0,0.0,0.0,0.24937265 +57.759979009628296,0.32999998,0.0,0.0,0.0,0.29747394 +57.7710919380188,0.32999998,0.0,0.0,0.0,0.29747394 +57.78011608123779,0.32999998,0.0,0.0,0.0,0.29747394 +57.7908890247345,0.32999998,0.0,0.0,0.0,0.29747394 +57.79987812042236,0.32999998,0.0,0.0,0.0,0.29747394 +57.809998989105225,0.34,0.0,0.0,0.0,0.31412435 +57.81958198547363,0.34,0.0,0.0,0.0,0.31412435 +57.82940602302551,0.34,0.0,0.0,0.0,0.31412435 +57.841161012649536,0.34,0.0,0.0,0.0,0.31412435 +57.850197076797485,0.34,0.0,0.0,0.0,0.31412435 +57.859692096710205,0.34,0.0,0.0,0.0,0.32892478 +57.87020492553711,0.34,0.0,0.0,0.0,0.32892478 +57.87941908836365,0.34,0.0,0.0,0.0,0.32892478 +57.889806032180786,0.34,0.0,0.0,0.0,0.32892478 +57.89952206611633,0.34,0.0,0.0,0.0,0.32892478 +57.91278409957886,0.34,0.0,0.0,0.0,0.34372514 +57.91943693161011,0.34,0.0,0.0,0.0,0.34372514 +57.9294159412384,0.34,0.0,0.0,0.0,0.34372514 +57.94037699699402,0.34,0.0,0.0,0.0,0.34372514 +57.95123791694641,0.34,0.0,0.0,0.0,0.34372514 +57.96000409126282,0.34,0.0,0.0,0.0,0.3566755 +57.970744132995605,0.34,0.0,0.0,0.0,0.3566755 +57.97971296310425,0.34,0.0,0.0,0.0,0.3566755 +57.99277901649475,0.34,0.0,0.0,0.0,0.3566755 +58.002777099609375,0.34,0.0,0.0,0.0,0.3566755 +58.0097930431366,0.34,0.0,0.0,0.0,0.3529754 +58.019437074661255,0.34,0.0,0.0,0.0,0.3529754 +58.029454946517944,0.34,0.0,0.0,0.0,0.3529754 +58.039546966552734,0.34,0.0,0.0,0.0,0.3529754 +58.050321102142334,0.34,0.0,0.0,0.0,0.3529754 +58.05989599227905,0.34,0.0,0.0,0.0,0.30672416 +58.06965494155884,0.35,0.0,0.0,0.0,0.30672416 +58.082786083221436,0.35,0.0,0.0,0.0,0.30672416 +58.09278893470764,0.35,0.0,0.0,0.0,0.30672416 +58.099560022354126,0.35,0.0,0.0,0.0,0.30672416 +58.11169910430908,0.35999998,0.0,0.0,0.0,0.30117404 +58.11972904205322,0.35999998,0.0,0.0,0.0,0.30117404 +58.1294219493866,0.35999998,0.0,0.0,0.0,0.30117404 +58.13981008529663,0.35999998,0.0,0.0,0.0,0.30117404 +58.149425983428955,0.35999998,0.0,0.0,0.0,0.30117404 +58.15956997871399,0.35999998,0.0,0.0,0.0,0.29747394 +58.172789096832275,0.35999998,0.0,0.0,0.0,0.29747394 +58.181276082992554,0.35999998,0.0,0.0,0.0,0.29747394 +58.19265604019165,0.35999998,0.0,0.0,0.0,0.29747394 +58.20071291923523,0.35999998,0.0,0.0,0.0,0.29747394 +58.209681034088135,0.35999998,0.0,0.0,0.0,0.30672416 +58.21947193145752,0.35999998,0.0,0.0,0.0,0.30672416 +58.22941207885742,0.35999998,0.0,0.0,0.0,0.30672416 +58.23949694633484,0.35999998,0.0,0.0,0.0,0.30672416 +58.249491930007935,0.35999998,0.0,0.0,0.0,0.30672416 +58.26021695137024,0.35999998,0.0,0.0,0.0,0.3233746 +58.26966214179993,0.35999998,0.0,0.0,0.0,0.3233746 +58.28256702423096,0.35999998,0.0,0.0,0.0,0.3233746 +58.29049110412598,0.35999998,0.0,0.0,0.0,0.3233746 +58.30037307739258,0.35999998,0.0,0.0,0.0,0.3233746 +58.310168981552124,0.35999998,0.0,0.0,0.0,0.30117404 +58.31941604614258,0.35999998,0.0,0.0,0.0,0.30117404 +58.32961392402649,0.35999998,0.0,0.0,0.0,0.30117404 +58.339390993118286,0.35999998,0.0,0.0,0.0,0.30117404 +58.35280895233154,0.35999998,0.0,0.0,0.0,0.30117404 +58.35943293571472,0.35999998,0.0,0.0,0.0,0.31412435 +58.37162208557129,0.35999998,0.0,0.0,0.0,0.31412435 +58.37947106361389,0.35999998,0.0,0.0,0.0,0.31412435 +58.38942909240723,0.35999998,0.0,0.0,0.0,0.31412435 +58.39969611167908,0.35999998,0.0,0.0,0.0,0.31412435 +58.41069412231445,0.35999998,0.0,0.0,0.0,0.26047295 +58.419440031051636,0.35999998,0.0,0.0,0.0,0.26047295 +58.429490089416504,0.35999998,0.0,0.0,0.0,0.26047295 +58.44282603263855,0.35999998,0.0,0.0,0.0,0.26047295 +58.451786041259766,0.35999998,0.0,0.0,0.0,0.26047295 +58.459903955459595,0.35999998,0.0,0.0,0.0,0.2808235 +58.46958613395691,0.35999998,0.0,0.0,0.0,0.2808235 +58.48147892951965,0.35999998,0.0,0.0,0.0,0.2808235 +58.49029493331909,0.35999998,0.0,0.0,0.0,0.2808235 +58.49951100349426,0.35999998,0.0,0.0,0.0,0.2808235 +58.50982213020325,0.35999998,0.0,0.0,0.0,0.26417306 +58.519442081451416,0.35999998,0.0,0.0,0.0,0.26417306 +58.5294349193573,0.35999998,0.0,0.0,0.0,0.26417306 +58.53944706916809,0.35999998,0.0,0.0,0.0,0.26417306 +58.54972290992737,0.35999998,0.0,0.0,0.0,0.26417306 +58.56007409095764,0.35999998,0.0,0.0,0.0,0.22532202 +58.56948900222778,0.37,0.0,0.0,0.0,0.22532202 +58.58067512512207,0.37,0.0,0.0,0.0,0.22532202 +58.58967709541321,0.37,0.0,0.0,0.0,0.22532202 +58.599950075149536,0.37,0.0,0.0,0.0,0.22532202 +58.610454082489014,0.37,0.0,0.0,0.0,0.19202115 +58.619478940963745,0.38,0.0,0.0,0.0,0.19202115 +58.62943696975708,0.38,0.0,0.0,0.0,0.19202115 +58.642826080322266,0.38,0.0,0.0,0.0,0.19202115 +58.65148711204529,0.38,0.0,0.0,0.0,0.19202115 +58.65957593917847,0.39,0.0,0.0,0.0,0.1827709 +58.67048907279968,0.39,0.0,0.0,0.0,0.1827709 +58.6798620223999,0.39,0.0,0.0,0.0,0.1827709 +58.68999910354614,0.39,0.0,0.0,0.0,0.1827709 +58.701125144958496,0.39999998,0.0,0.0,0.0,0.1827709 +58.710039138793945,0.39999998,0.0,0.0,0.0,0.19387117 +58.7194709777832,0.39999998,0.0,0.0,0.0,0.19387117 +58.72939896583557,0.39999998,0.0,0.0,0.0,0.19387117 +58.742862939834595,0.39999998,0.0,0.0,0.0,0.19387117 +58.75200295448303,0.39999998,0.0,0.0,0.0,0.19387117 +58.760064125061035,0.41,0.0,0.0,0.0,0.21237166 +58.77002501487732,0.41,0.0,0.0,0.0,0.21237166 +58.77988910675049,0.41,0.0,0.0,0.0,0.21237166 +58.78952193260193,0.41,0.0,0.0,0.0,0.21237166 +58.80157399177551,0.42,0.0,0.0,0.0,0.21237166 +58.8096969127655,0.42,0.0,0.0,0.0,0.22162192 +58.81948113441467,0.42,0.0,0.0,0.0,0.22162192 +58.829407930374146,0.42,0.0,0.0,0.0,0.22162192 +58.839869022369385,0.42,0.0,0.0,0.0,0.22162192 +58.85043692588806,0.42,0.0,0.0,0.0,0.22162192 +58.8602180480957,0.42,0.0,0.0,0.0,0.18832105 +58.869812965393066,0.42,0.0,0.0,0.0,0.18832105 +58.87942600250244,0.42,0.0,0.0,0.0,0.18832105 +58.891695976257324,0.42,0.0,0.0,0.0,0.18832105 +58.90262293815613,0.42,0.0,0.0,0.0,0.18832105 +58.912851095199585,0.42,0.0,0.0,0.0,0.1790708 +58.91959309577942,0.42,0.0,0.0,0.0,0.1790708 +58.9294171333313,0.42,0.0,0.0,0.0,0.1790708 +58.94061613082886,0.42,0.0,0.0,0.0,0.1790708 +58.95036506652832,0.42,0.0,0.0,0.0,0.1790708 +58.95944809913635,0.42,0.0,0.0,0.0,0.14947 +58.969435930252075,0.42,0.0,0.0,0.0,0.14947 +58.9803581237793,0.42,0.0,0.0,0.0,0.14947 +58.992876052856445,0.42999998,0.0,0.0,0.0,0.14947 +59.00094294548035,0.42999998,0.0,0.0,0.0,0.14947 +59.012887954711914,0.42999998,0.0,0.0,0.0,0.11986922 +59.01945114135742,0.42999998,0.0,0.0,0.0,0.11986922 +59.02943396568298,0.42999998,0.0,0.0,0.0,0.11986922 +59.03953313827515,0.44,0.0,0.0,0.0,0.11986922 +59.04942011833191,0.44,0.0,0.0,0.0,0.11986922 +59.05958795547485,0.44,0.0,0.0,0.0,0.12356931 +59.07148098945618,0.44,0.0,0.0,0.0,0.12356931 +59.08287596702576,0.44,0.0,0.0,0.0,0.12356931 +59.0928909778595,0.44,0.0,0.0,0.0,0.12356931 +59.10185503959656,0.44,0.0,0.0,0.0,0.12356931 +59.110021114349365,0.44,0.0,0.0,0.0,0.10321877 +59.11947703361511,0.44,0.0,0.0,0.0,0.10321877 +59.1294310092926,0.44,0.0,0.0,0.0,0.10321877 +59.139573097229004,0.44,0.0,0.0,0.0,0.10321877 +59.14968514442444,0.44,0.0,0.0,0.0,0.10321877 +59.159656047821045,0.45,0.0,0.0,0.0,0.08286824 +59.172871112823486,0.45999998,0.0,0.0,0.0,0.08286824 +59.18079710006714,0.47,0.0,0.0,0.0,0.08286824 +59.19092011451721,0.48,0.0,0.0,0.0,0.08286824 +59.19982099533081,0.48999998,0.0,0.0,0.0,0.08286824 +59.211514949798584,0.48999998,0.0,0.0,0.0,0.08101819 +59.22050714492798,0.5,0.0,0.0,0.0,0.08101819 +59.229480028152466,0.51,0.0,0.0,0.0,0.08101819 +59.23946213722229,0.51,0.0,0.0,0.0,0.08101819 +59.249614000320435,0.51,0.0,0.0,0.0,0.08101819 +59.26024913787842,0.51,0.0,0.0,0.0,0.08286824 +59.27106714248657,0.51,0.0,0.0,0.0,0.08286824 +59.279468059539795,0.51,0.0,0.0,0.0,0.08286824 +59.292412996292114,0.51,0.0,0.0,0.0,0.08286824 +59.30139708518982,0.51,0.0,0.0,0.0,0.08286824 +59.31038212776184,0.51,0.0,0.0,0.0,0.08286824 +59.31945610046387,0.51,0.0,0.0,0.0,0.08286824 +59.329424142837524,0.51,0.0,0.0,0.0,0.08286824 +59.33967208862305,0.51,0.0,0.0,0.0,0.08286824 +59.350433111190796,0.51,0.0,0.0,0.0,0.08286824 +59.360105991363525,0.51,0.0,0.0,0.0,0.08101819 +59.37022304534912,0.5,0.0,0.0,0.0,0.08101819 +59.38234305381775,0.5,0.0,0.0,0.0,0.08101819 +59.39132595062256,0.5,0.0,0.0,0.0,0.08101819 +59.40031695365906,0.5,0.0,0.0,0.0,0.08101819 +59.41032791137695,0.5,0.0,0.0,0.0,0.08286824 +59.41961598396301,0.5,0.0,0.0,0.0,0.08286824 +59.429441928863525,0.5,0.0,0.0,0.0,0.08286824 +59.439465045928955,0.51,0.0,0.0,0.0,0.08286824 +59.452927112579346,0.51,0.0,0.0,0.0,0.08286824 +59.45978903770447,0.51,0.0,0.0,0.0,0.062517695 +59.47018814086914,0.51,0.0,0.0,0.0,0.062517695 +59.47952604293823,0.52,0.0,0.0,0.0,0.062517695 +59.4902400970459,0.52,0.0,0.0,0.0,0.062517695 +59.500121116638184,0.52,0.0,0.0,0.0,0.062517695 +59.509522914886475,0.52,0.0,0.0,0.0,0.0551175 +59.51951193809509,0.52,0.0,0.0,0.0,0.0551175 +59.52949810028076,0.52,0.0,0.0,0.0,0.0551175 +59.54147911071777,0.53,0.0,0.0,0.0,0.0551175 +59.55291700363159,0.53,0.0,0.0,0.0,0.0551175 +59.560094118118286,0.53,0.0,0.0,0.0,0.04586726 +59.57117295265198,0.53999996,0.0,0.0,0.0,0.04586726 +59.579745054244995,0.53999996,0.0,0.0,0.0,0.04586726 +59.59066605567932,0.55,0.0,0.0,0.0,0.04586726 +59.5996789932251,0.55,0.0,0.0,0.0,0.04586726 +59.609431982040405,0.55,0.0,0.0,0.0,0.05696755 +59.61950898170471,0.56,0.0,0.0,0.0,0.05696755 +59.62945914268494,0.56,0.0,0.0,0.0,0.05696755 +59.642740964889526,0.56,0.0,0.0,0.0,0.05696755 +59.652101039886475,0.56,0.0,0.0,0.0,0.05696755 +59.66024899482727,0.56,0.0,0.0,0.0,0.042167164 +59.670063972473145,0.56,0.0,0.0,0.0,0.042167164 +59.68066906929016,0.55,0.0,0.0,0.0,0.042167164 +59.689582109451294,0.55,0.0,0.0,0.0,0.042167164 +59.69999814033508,0.55,0.0,0.0,0.0,0.042167164 +59.710798025131226,0.55,0.0,0.0,0.0,0.07176795 +59.719475984573364,0.55,0.0,0.0,0.0,0.07176795 +59.72943711280823,0.55,0.0,0.0,0.0,0.07176795 +59.7420220375061,0.55,0.0,0.0,0.0,0.07176795 +59.751012086868286,0.55,0.0,0.0,0.0,0.07176795 +59.75999307632446,0.55,0.0,0.0,0.0,0.06066765 +59.769784927368164,0.55,0.0,0.0,0.0,0.06066765 +59.78003001213074,0.55,0.0,0.0,0.0,0.06066765 +59.79000496864319,0.55,0.0,0.0,0.0,0.06066765 +59.80294704437256,0.55,0.0,0.0,0.0,0.06066765 +59.81194496154785,0.55,0.0,0.0,0.0,0.06436774 +59.81948399543762,0.55,0.0,0.0,0.0,0.06436774 +59.82945108413696,0.55,0.0,0.0,0.0,0.06436774 +59.83950591087341,0.55,0.0,0.0,0.0,0.06436774 +59.84989905357361,0.55,0.0,0.0,0.0,0.06436774 +59.86031413078308,0.55,0.0,0.0,0.0,0.0551175 +59.870079040527344,0.55,0.0,0.0,0.0,0.0551175 +59.879552125930786,0.55,0.0,0.0,0.0,0.0551175 +59.88993811607361,0.55,0.0,0.0,0.0,0.0551175 +59.901610136032104,0.55,0.0,0.0,0.0,0.0551175 +59.91233992576599,0.55,0.0,0.0,0.0,0.053267453 +59.919480085372925,0.55,0.0,0.0,0.0,0.053267453 +59.92943596839905,0.55,0.0,0.0,0.0,0.053267453 +59.93985605239868,0.55,0.0,0.0,0.0,0.053267453 +59.9511079788208,0.56,0.0,0.0,0.0,0.053267453 +59.96010708808899,0.56,0.0,0.0,0.0,0.038467064 +59.96944212913513,0.56,0.0,0.0,0.0,0.038467064 +59.982975006103516,0.56,0.0,0.0,0.0,0.038467064 +59.99250292778015,0.56,0.0,0.0,0.0,0.038467064 +60.00026202201843,0.56,0.0,0.0,0.0,0.038467064 +60.010313987731934,0.56,0.0,0.0,0.0,0.04586726 +60.01983594894409,0.56,0.0,0.0,0.0,0.04586726 +60.029743909835815,0.55,0.0,0.0,0.0,0.04586726 +60.04115605354309,0.55,0.0,0.0,0.0,0.04586726 +60.05020809173584,0.55,0.0,0.0,0.0,0.04586726 +60.05962014198303,0.53999996,0.0,0.0,0.0,0.021816617 +60.07267212867737,0.53999996,0.0,0.0,0.0,0.021816617 +60.079514026641846,0.53999996,0.0,0.0,0.0,0.021816617 +60.08945393562317,0.53999996,0.0,0.0,0.0,0.021816617 +60.10169291496277,0.53999996,0.0,0.0,0.0,0.021816617 +60.10948395729065,0.53999996,0.0,0.0,0.0,0.04586726 +60.11951398849487,0.53999996,0.0,0.0,0.0,0.04586726 +60.12945604324341,0.53,0.0,0.0,0.0,0.04586726 +60.13974905014038,0.53,0.0,0.0,0.0,0.04586726 +60.149770975112915,0.53,0.0,0.0,0.0,0.04586726 +60.159444093704224,0.53,0.0,0.0,0.0,0.04586726 +60.17061996459961,0.53,0.0,0.0,0.0,0.04586726 +60.17953395843506,0.53,0.0,0.0,0.0,0.04586726 +60.191625118255615,0.52,0.0,0.0,0.0,0.04586726 +60.2006299495697,0.52,0.0,0.0,0.0,0.04586726 +60.209625005722046,0.52,0.0,0.0,0.0,0.021816617 +60.21957302093506,0.52,0.0,0.0,0.0,0.021816617 +60.229432106018066,0.52,0.0,0.0,0.0,0.021816617 +60.239495038986206,0.52,0.0,0.0,0.0,0.021816617 +60.25079393386841,0.52,0.0,0.0,0.0,0.021816617 +60.259702920913696,0.52,0.0,0.0,0.0,0.019966569 +60.27062201499939,0.52,0.0,0.0,0.0,0.019966569 +60.27975392341614,0.52,0.0,0.0,0.0,0.019966569 +60.29056406021118,0.52,0.0,0.0,0.0,0.019966569 +60.29954195022583,0.52,0.0,0.0,0.0,0.019966569 +60.31132411956787,0.52,0.0,0.0,0.0,0.012566376 +60.31951093673706,0.52,0.0,0.0,0.0,0.012566376 +60.32952904701233,0.52,0.0,0.0,0.0,0.012566376 +60.339921951293945,0.52,0.0,0.0,0.0,0.012566376 +60.35001611709595,0.52,0.0,0.0,0.0,0.012566376 +60.36014199256897,0.51,0.0,0.0,0.0,0.023666665 +60.37150192260742,0.51,0.0,0.0,0.0,0.023666665 +60.38049101829529,0.5,0.0,0.0,0.0,0.023666665 +60.38948106765747,0.5,0.0,0.0,0.0,0.023666665 +60.399413108825684,0.48999998,0.0,0.0,0.0,0.023666665 +60.409719944000244,0.48999998,0.0,0.0,0.0,0.032916907 +60.41940402984619,0.48,0.0,0.0,0.0,0.032916907 +60.42944312095642,0.48,0.0,0.0,0.0,0.032916907 +60.44003891944885,0.48,0.0,0.0,0.0,0.032916907 +60.452425956726074,0.47,0.0,0.0,0.0,0.032916907 +60.460289001464844,0.47,0.0,0.0,0.0,0.07176795 +60.47043013572693,0.47,0.0,0.0,0.0,0.07176795 +60.479504108428955,0.47,0.0,0.0,0.0,0.07176795 +60.49139404296875,0.45999998,0.0,0.0,0.0,0.07176795 +60.500308990478516,0.45999998,0.0,0.0,0.0,0.07176795 +60.50945711135864,0.45999998,0.0,0.0,0.0,0.027366763 +60.51950812339783,0.45999998,0.0,0.0,0.0,0.027366763 +60.529463052749634,0.45999998,0.0,0.0,0.0,0.027366763 +60.539632081985474,0.45,0.0,0.0,0.0,0.027366763 +60.55138301849365,0.45,0.0,0.0,0.0,0.027366763 +60.56011700630188,0.45,0.0,0.0,0.0,-0.026284654 +60.57160806655884,0.45,0.0,0.0,0.0,-0.026284654 +60.58047699928284,0.45,0.0,0.0,0.0,-0.026284654 +60.58941197395325,0.45,0.0,0.0,0.0,-0.026284654 +60.59948492050171,0.45,0.0,0.0,0.0,-0.026284654 +60.60984206199646,0.45,0.0,0.0,0.0,0.032916907 +60.61949110031128,0.44,0.0,0.0,0.0,0.032916907 +60.62946009635925,0.44,0.0,0.0,0.0,0.032916907 +60.64133405685425,0.44,0.0,0.0,0.0,0.032916907 +60.6503119468689,0.44,0.0,0.0,0.0,0.032916907 +60.660277128219604,0.44,0.0,0.0,0.0,0.04031712 +60.669578075408936,0.44,0.0,0.0,0.0,0.04031712 +60.68055009841919,0.42999998,0.0,0.0,0.0,0.04031712 +60.68953204154968,0.42999998,0.0,0.0,0.0,0.04031712 +60.70005512237549,0.44,0.0,0.0,0.0,0.04031712 +60.71302103996277,0.44,0.0,0.0,0.0,0.038467064 +60.71949791908264,0.44,0.0,0.0,0.0,0.038467064 +60.72943997383118,0.44,0.0,0.0,0.0,0.038467064 +60.740225076675415,0.44,0.0,0.0,0.0,0.038467064 +60.749773025512695,0.44,0.0,0.0,0.0,0.038467064 +60.7601261138916,0.45,0.0,0.0,0.0,0.06436774 +60.77058792114258,0.45,0.0,0.0,0.0,0.06436774 +60.779597997665405,0.44,0.0,0.0,0.0,0.06436774 +60.79025602340698,0.44,0.0,0.0,0.0,0.06436774 +60.79951500892639,0.44,0.0,0.0,0.0,0.06436774 +60.812164068222046,0.44,0.0,0.0,0.0,0.053267453 +60.81951594352722,0.42999998,0.0,0.0,0.0,0.053267453 +60.829452991485596,0.42999998,0.0,0.0,0.0,0.053267453 +60.83950901031494,0.42999998,0.0,0.0,0.0,0.053267453 +60.84949207305908,0.42999998,0.0,0.0,0.0,0.053267453 +60.86032509803772,0.42999998,0.0,0.0,0.0,0.06066765 +60.86963891983032,0.42999998,0.0,0.0,0.0,0.06066765 +60.880468130111694,0.42999998,0.0,0.0,0.0,0.06066765 +60.88946795463562,0.42,0.0,0.0,0.0,0.06066765 +60.90122604370117,0.42,0.0,0.0,0.0,0.06066765 +60.91015410423279,0.42,0.0,0.0,0.0,0.09951867 +60.92014408111572,0.41,0.0,0.0,0.0,0.09951867 +60.92945194244385,0.41,0.0,0.0,0.0,0.09951867 +60.93946409225464,0.39999998,0.0,0.0,0.0,0.09951867 +60.9506950378418,0.39,0.0,0.0,0.0,0.09951867 +60.959705114364624,0.38,0.0,0.0,0.0,0.07546805 +60.96939492225647,0.37,0.0,0.0,0.0,0.07546805 +60.97969603538513,0.37,0.0,0.0,0.0,0.07546805 +60.99032497406006,0.35999998,0.0,0.0,0.0,0.07546805 +60.99949097633362,0.35999998,0.0,0.0,0.0,0.07546805 +61.01008701324463,0.35999998,0.0,0.0,0.0,0.010716328 +61.0194890499115,0.35,0.0,0.0,0.0,0.010716328 +61.029459953308105,0.35999998,0.0,0.0,0.0,0.010716328 +61.0407509803772,0.35999998,0.0,0.0,0.0,0.010716328 +61.04975700378418,0.35999998,0.0,0.0,0.0,0.010716328 +61.059524059295654,0.35999998,0.0,0.0,0.0,0.032916907 +61.069912910461426,0.35999998,0.0,0.0,0.0,0.032916907 +61.079472064971924,0.35999998,0.0,0.0,0.0,0.032916907 +61.089898109436035,0.35999998,0.0,0.0,0.0,0.032916907 +61.10001301765442,0.35999998,0.0,0.0,0.0,0.032916907 +61.11165904998779,0.35,0.0,0.0,0.0,0.04401721 +61.119524002075195,0.35,0.0,0.0,0.0,0.04401721 +61.12944793701172,0.34,0.0,0.0,0.0,0.04401721 +61.139816999435425,0.32999998,0.0,0.0,0.0,0.04401721 +61.150681018829346,0.32999998,0.0,0.0,0.0,0.04401721 +61.15958094596863,0.32,0.0,0.0,0.0,0.062517695 +61.169426918029785,0.31,0.0,0.0,0.0,0.062517695 +61.180968046188354,0.29999998,0.0,0.0,0.0,0.062517695 +61.189950942993164,0.29999998,0.0,0.0,0.0,0.062517695 +61.1995050907135,0.29,0.0,0.0,0.0,0.062517695 +61.21184206008911,0.29,0.0,0.0,0.0,0.019966569 +61.21949505805969,0.28,0.0,0.0,0.0,0.019966569 +61.22944402694702,0.28,0.0,0.0,0.0,0.019966569 +61.239737033843994,0.28,0.0,0.0,0.0,0.019966569 +61.25036811828613,0.28,0.0,0.0,0.0,0.019966569 +61.260287046432495,0.28,0.0,0.0,0.0,0.06436774 +61.270899057388306,0.28,0.0,0.0,0.0,0.06436774 +61.27989602088928,0.28,0.0,0.0,0.0,0.06436774 +61.292930126190186,0.28,0.0,0.0,0.0,0.06436774 +61.30192303657532,0.28,0.0,0.0,0.0,0.06436774 +61.31094193458557,0.28,0.0,0.0,0.0,0.04586726 +61.31954312324524,0.28,0.0,0.0,0.0,0.04586726 +61.32944703102112,0.26999998,0.0,0.0,0.0,0.04586726 +61.34056210517883,0.26999998,0.0,0.0,0.0,0.04586726 +61.34958505630493,0.26999998,0.0,0.0,0.0,0.04586726 +61.36013698577881,0.26999998,0.0,0.0,0.0,0.04401721 +61.36980414390564,0.26999998,0.0,0.0,0.0,0.04401721 +61.38223600387573,0.26,0.0,0.0,0.0,0.04401721 +61.39026403427124,0.26,0.0,0.0,0.0,0.04401721 +61.40006709098816,0.25,0.0,0.0,0.0,0.04401721 +61.41002702713013,0.24,0.0,0.0,0.0,0.06621779 +61.419496059417725,0.22999999,0.0,0.0,0.0,0.06621779 +61.42944097518921,0.22,0.0,0.0,0.0,0.06621779 +61.439818143844604,0.21,0.0,0.0,0.0,0.06621779 +61.450226068496704,0.19,0.0,0.0,0.0,0.06621779 +61.45974898338318,0.17999999,0.0,0.0,0.0,0.062517695 +61.46969699859619,0.17,0.0,0.0,0.0,0.062517695 +61.48024606704712,0.14999999,0.0,0.0,0.0,0.062517695 +61.4908881187439,0.14,0.0,0.0,0.0,0.062517695 +61.499836921691895,0.13,0.0,0.0,0.0,0.062517695 +61.511987924575806,0.12,0.0,0.0,0.0,0.10691887 +61.519575119018555,0.099999994,0.0,0.0,0.0,0.10691887 +61.52945899963379,0.099999994,0.0,0.0,0.0,0.10691887 +61.54069900512695,0.089999996,0.0,0.0,0.0,0.10691887 +61.54968309402466,0.08,0.0,0.0,0.0,0.10691887 +61.55969214439392,0.07,0.0,0.0,0.0,0.09581858 +61.57042908668518,0.06,0.0,0.0,0.0,0.09581858 +61.58009696006775,0.049999997,0.0,0.0,0.0,0.09581858 +61.59021592140198,0.04,0.0,0.0,0.0,0.09581858 +61.599453926086426,0.04,0.0,0.0,0.0,0.09581858 +61.609755992889404,0.03,0.0,0.0,0.0,0.09211848 +61.61951804161072,0.02,0.0,0.0,0.0,0.09211848 +61.6294629573822,0.02,0.75757575,0.75757575,0.0,0.09211848 +61.63946509361267,0.01,2.2727273,2.2727273,0.0,0.09211848 +61.64946913719177,0.01,3.030303,3.030303,0.0,0.09211848 +61.66033697128296,0.0,3.787879,3.787879,0.0,0.09211848 +61.67127299308777,0.0,3.787879,3.787879,0.0,0.09211848 +61.680290937423706,0.0,4.5454545,4.5454545,0.0,0.09211848 +61.69242310523987,0.0,5.3030305,5.3030305,0.009372071,0.09211848 +61.70145797729492,0.0,6.060606,6.060606,0.018744143,0.09211848 +61.710012912750244,0.0,6.060606,6.060606,0.018744143,0.09766865 +61.719491958618164,0.0,6.060606,6.060606,0.028116215,0.09766865 +61.72956109046936,0.0,6.818182,6.818182,0.037488285,0.09766865 +61.74311709403992,0.0,6.818182,6.818182,0.046860356,0.09766865 +61.752373933792114,0.0,6.818182,6.818182,0.046860356,0.09766865 +61.76015090942383,0.0,6.818182,6.818182,0.046860356,0.08101819 +61.76975703239441,0.0,6.818182,6.818182,0.05623243,0.08101819 +61.779393911361694,0.0,7.575758,7.575758,0.05623243,0.08101819 +61.78952503204346,0.0,7.575758,7.575758,0.05623243,0.08101819 +61.80068802833557,0.0,7.575758,7.575758,0.07497657,0.08101819 +61.809715032577515,0.0,9.090909,9.090909,0.07497657,0.02921681 +61.81947708129883,0.0,11.363637,11.363637,0.08434864,0.02921681 +61.82945108413696,0.0,14.39394,14.39394,0.07497657,0.02921681 +61.839921951293945,0.0,16.666668,16.666668,0.08434864,0.02921681 +61.8514609336853,0.0,18.939394,18.939394,0.09372071,0.02921681 +61.86033606529236,0.0,22.727274,22.727274,0.10309278,0.04586726 +61.86946892738342,0.0,26.515152,26.515152,0.11246486,0.04586726 +61.87951993942261,0.0,30.303032,30.303032,0.12183693,0.04586726 +61.88995409011841,0.0,32.575756,32.575756,0.131209,0.04586726 +61.899898052215576,0.0,36.363636,36.363636,0.14058107,0.04586726 +61.90941405296326,0.0,40.90909,40.90909,0.14995314,0.04031712 +61.91953706741333,0.0,46.969696,46.969696,0.15932521,0.04031712 +61.92944812774658,0.0,51.515152,51.515152,0.16869728,0.04031712 +61.94149613380432,0.0,56.060604,56.060604,0.17806935,0.04031712 +61.95050811767578,0.0,62.121212,62.121212,0.18744142,0.04031712 +61.959527015686035,0.0,68.18182,68.18182,0.18744142,0.02921681 +61.96983098983765,0.0,56.818184,56.818184,0.1968135,0.02921681 +61.979877948760986,0.0,41.666668,41.666668,0.20618556,0.02921681 +61.99016094207764,0.0,29.545454,29.545454,0.21555763,0.02921681 +61.99964213371277,0.0,21.212122,21.212122,0.22492972,0.02921681 +62.01313304901123,0.0,26.515152,26.515152,0.22492972,0.034766953 +62.01951503753662,0.0,34.09091,34.09091,0.23430179,0.034766953 +62.02947998046875,0.0,40.90909,40.90909,0.24367386,0.034766953 +62.040568113327026,0.0,48.484848,48.484848,0.24367386,0.034766953 +62.04956007003784,0.0,55.30303,55.30303,0.25304592,0.034766953 +62.060298919677734,0.0,63.636364,63.636364,0.262418,0.031066857 +62.0712149143219,0.0,68.18182,68.18182,0.262418,0.031066857 +62.08022212982178,0.0,60.606064,60.606064,0.27179006,0.031066857 +62.089422941207886,0.0,54.545456,54.545456,0.27179006,0.031066857 +62.09975600242615,0.0,49.242424,49.242424,0.27179006,0.031066857 +62.11086702346802,0.0,45.454548,45.454548,0.28116214,0.04031712 +62.11955714225769,0.0,41.666668,41.666668,0.28116214,0.04031712 +62.12947201728821,0.0,37.878788,37.878788,0.2905342,0.04031712 +62.139622926712036,0.0,35.60606,35.60606,0.29990628,0.04031712 +62.15212607383728,0.0,34.848484,34.848484,0.2905342,0.04031712 +62.16015696525574,0.0,34.09091,34.09091,0.29990628,0.038467064 +62.17013096809387,0.0,33.333336,33.333336,0.29990628,0.038467064 +62.179481983184814,0.0,31.060606,31.060606,0.2905342,0.038467064 +62.192798137664795,0.0,31.060606,31.060606,0.29990628,0.038467064 +62.201200008392334,0.0,31.060606,31.060606,0.30927837,0.038467064 +62.209770917892456,0.0,31.060606,31.060606,0.30927837,0.04586726 +62.219510078430176,0.0,31.060606,31.060606,0.30927837,0.04586726 +62.22944402694702,0.0,31.060606,31.060606,0.31865042,0.04586726 +62.239463090896606,0.0,33.333336,33.333336,0.3280225,0.04586726 +62.251012086868286,0.0,35.60606,35.60606,0.3280225,0.04586726 +62.259998083114624,0.0,37.121216,37.121216,0.3280225,0.0070162313 +62.26972007751465,0.0,37.121216,37.121216,0.33739457,0.0070162313 +62.28023910522461,0.0,37.121216,37.121216,0.3280225,0.0070162313 +62.290745973587036,0.0,38.636364,38.636364,0.33739457,0.0070162313 +62.2996609210968,0.0,40.151516,40.151516,0.3280225,0.0070162313 +62.31071901321411,0.0,41.666668,41.666668,0.33739457,0.0070162313 +62.31953811645508,0.0,41.666668,41.666668,0.33739457,0.0070162313 +62.32945513725281,0.0,41.666668,41.666668,0.33739457,0.0070162313 +62.34090614318848,0.0,43.181816,43.181816,0.34676665,0.0070162313 +62.34989094734192,0.0,44.696968,44.696968,0.33739457,0.0070162313 +62.3595929145813,0.0,46.21212,46.21212,0.34676665,0.053267453 +62.37092208862305,0.0,46.21212,46.21212,0.33739457,0.053267453 +62.379822969436646,0.0,45.454548,45.454548,0.33739457,0.053267453 +62.3895001411438,0.0,46.21212,46.21212,0.33739457,0.053267453 +62.400784969329834,0.0,47.727272,47.727272,0.33739457,0.053267453 +62.40977597236633,0.0,48.484848,48.484848,0.34676665,0.02921681 +62.41949510574341,0.0,48.484848,48.484848,0.34676665,0.02921681 +62.429436922073364,0.0,48.484848,48.484848,0.34676665,0.02921681 +62.43978404998779,0.0,49.242424,49.242424,0.3561387,0.02921681 +62.449893951416016,0.0,50.757576,50.757576,0.3561387,0.02921681 +62.45996308326721,0.0,51.515152,51.515152,0.34676665,0.012566376 +62.47282314300537,0.0,52.272724,52.272724,0.3561387,0.012566376 +62.480051040649414,0.0,51.515152,51.515152,0.3561387,0.012566376 +62.489537954330444,0.0,52.272724,52.272724,0.3561387,0.012566376 +62.49986410140991,0.0,53.78788,53.78788,0.3561387,0.012566376 +62.509979009628296,0.0,56.060604,56.060604,0.3561387,0.042167164 +62.519551038742065,0.0,57.57576,57.57576,0.3561387,0.042167164 +62.529480934143066,0.0,56.818184,56.818184,0.3561387,0.042167164 +62.53967809677124,0.0,57.57576,57.57576,0.3561387,0.042167164 +62.55318593978882,0.0,59.090908,59.090908,0.34676665,0.042167164 +62.55956292152405,0.0,60.606064,60.606064,0.34676665,0.042167164 +62.5718879699707,0.0,62.121212,62.121212,0.34676665,0.042167164 +62.580543994903564,0.0,62.121212,62.121212,0.34676665,0.042167164 +62.58989906311035,0.0,62.121212,62.121212,0.34676665,0.042167164 +62.600433111190796,0.0,62.878788,62.878788,0.34676665,0.042167164 +62.61057996749878,0.0,64.393936,64.393936,0.34676665,0.04586726 +62.61951303482056,0.0,65.90909,65.90909,0.34676665,0.04586726 +62.62951707839966,0.0,66.66667,66.66667,0.34676665,0.04586726 +62.63956093788147,0.0,65.90909,65.90909,0.34676665,0.04586726 +62.65296196937561,0.0,65.90909,65.90909,0.3561387,0.04586726 +62.6603319644928,0.0,67.42425,67.42425,0.3561387,0.05696755 +62.67097091674805,0.0,69.69697,69.69697,0.3561387,0.05696755 +62.67997598648071,0.0,70.454544,70.454544,0.3561387,0.05696755 +62.69147706031799,0.0,69.69697,69.69697,0.3561387,0.05696755 +62.7004120349884,0.0,68.93939,68.93939,0.3561387,0.05696755 +62.70956301689148,0.0,69.69697,69.69697,0.3561387,0.04586726 +62.71952295303345,0.0,70.454544,70.454544,0.3655108,0.04586726 +62.72946095466614,0.0,70.454544,70.454544,0.3655108,0.04586726 +62.73949408531189,0.0,70.454544,70.454544,0.3655108,0.04586726 +62.749534130096436,0.0,68.18182,68.18182,0.3655108,0.04586726 +62.76032590866089,0.0,67.42425,67.42425,0.3655108,0.051417407 +62.770018100738525,0.0,66.66667,66.66667,0.37488285,0.051417407 +62.78057909011841,0.0,67.42425,67.42425,0.3655108,0.051417407 +62.789469957351685,0.0,67.42425,67.42425,0.3655108,0.051417407 +62.80185413360596,0.0,67.42425,67.42425,0.3655108,0.051417407 +62.81080412864685,0.0,66.66667,66.66667,0.3655108,0.04586726 +62.81950807571411,0.0,66.66667,66.66667,0.3655108,0.04586726 +62.82948112487793,0.0,67.42425,67.42425,0.3561387,0.04586726 +62.8420729637146,0.0,68.18182,68.18182,0.3655108,0.04586726 +62.85108709335327,0.0,68.93939,68.93939,0.3655108,0.04586726 +62.859729051589966,0.0,68.18182,68.18182,0.3561387,-0.00038397792 +62.86961603164673,0.0,68.18182,68.18182,0.3561387,-0.00038397792 +62.87956094741821,0.0,69.69697,69.69697,0.3561387,-0.00038397792 +62.892054080963135,0.0,71.21212,71.21212,0.3561387,-0.00038397792 +62.90058994293213,0.0,72.72727,72.72727,0.3561387,-0.00038397792 +62.910085916519165,0.0,73.48485,73.48485,0.3561387,-0.07993608 +62.919503927230835,0.0,73.48485,73.48485,0.3561387,-0.07993608 +62.929474115371704,0.0,75.0,75.0,0.3561387,-0.07993608 +62.940895080566406,0.0,76.51515,76.51515,0.3561387,-0.07993608 +62.94978094100952,0.0,79.545456,79.545456,0.3561387,-0.07993608 +62.96033191680908,0.0,81.81818,81.81818,0.3561387,-0.0077841706 +62.97016000747681,0.0,82.57576,82.57576,0.3561387,-0.0077841706 +62.979660987854004,0.0,83.333336,83.333336,0.3655108,-0.0077841706 +62.991246938705444,0.0,84.84849,84.84849,0.3655108,-0.0077841706 +63.00027894973755,0.0,87.12121,87.12121,0.37488285,-0.0077841706 +63.00941300392151,0.0,90.15152,90.15152,0.38425493,-0.06143559 +63.01967811584473,0.0,92.42424,92.42424,0.38425493,-0.06143559 +63.02948212623596,0.0,94.69697,94.69697,0.393627,-0.06143559 +63.04021406173706,0.0,95.454544,95.454544,0.393627,-0.06143559 +63.05106806755066,0.0,98.48485,98.48485,0.40299907,-0.06143559 +63.06005311012268,0.0,101.51515,101.51515,0.393627,-0.09288643 +63.07244896888733,0.0,105.303024,105.303024,0.393627,-0.09288643 +63.081429958343506,0.0,109.09091,109.09091,0.393627,-0.09288643 +63.090476989746094,0.0,111.36363,111.36363,0.40299907,-0.09288643 +63.09948205947876,0.0,112.878784,112.878784,0.40299907,-0.09288643 +63.11009192466736,0.0,114.39394,114.39394,0.393627,-0.13728762 +63.11946201324463,0.0,118.181816,118.181816,0.40299907,-0.13728762 +63.129493951797485,0.0,121.969696,121.969696,0.41237113,-0.13728762 +63.13959503173828,0.0,125.757576,125.757576,0.41237113,-0.13728762 +63.14997696876526,0.0,128.78787,128.78787,0.41237113,-0.13728762 +63.15969896316528,0.0,131.06061,131.06061,0.4217432,-0.12618731 +63.17161297798157,0.0,134.09091,134.09091,0.4217432,-0.12618731 +63.180619955062866,0.0,138.63637,138.63637,0.43111527,-0.12618731 +63.18963813781738,0.0,143.18181,143.18181,0.43111527,-0.12618731 +63.20107102394104,0.0,147.72726,147.72726,0.43111527,-0.12618731 +63.21132493019104,0.0,152.27274,152.27274,0.43111527,-0.13543756 +63.219542026519775,0.0,156.06061,156.06061,0.43111527,-0.13543756 +63.2295401096344,0.0,158.33333,158.33333,0.43111527,-0.13543756 +63.239875078201294,0.0,159.84848,159.84848,0.44048735,-0.13543756 +63.250006914138794,0.0,162.1212,162.1212,0.44048735,-0.13543756 +63.26095008850098,0.0,165.15152,165.15152,0.44048735,-0.13173746 +63.26962113380432,0.0,168.18182,168.18182,0.44985944,-0.13173746 +63.279808044433594,0.0,170.45454,170.45454,0.4592315,-0.13173746 +63.292410135269165,0.0,171.9697,171.9697,0.4592315,-0.13173746 +63.30140399932861,0.0,172.72726,172.72726,0.46860358,-0.13173746 +63.30970096588135,0.0,172.72726,172.72726,0.46860358,-0.12618731 +63.31942296028137,0.0,173.48485,173.48485,0.4592315,-0.12618731 +63.329488039016724,0.0,175.75757,175.75757,0.44985944,-0.12618731 +63.340126037597656,0.0,177.27272,177.27272,0.44985944,-0.12618731 +63.35057592391968,0.0,178.0303,178.0303,0.4592315,-0.12618731 +63.3594810962677,0.0,178.78787,178.78787,0.44985944,-0.11138691 +63.369975090026855,0.0,177.27272,177.27272,0.4592315,-0.11138691 +63.38107395172119,0.0,176.51515,176.51515,0.4592315,-0.11138691 +63.39148807525635,0.0,176.51515,176.51515,0.44985944,-0.11138691 +63.39963507652283,0.0,177.27272,177.27272,0.4592315,-0.11138691 +63.409510135650635,0.0,178.78787,178.78787,0.4592315,-0.12618731 +63.41941809654236,0.0,179.54544,179.54544,0.4592315,-0.12618731 +63.43073391914368,0.0,180.30304,180.30304,0.46860358,-0.12618731 +63.43964695930481,0.0,180.30304,180.30304,0.46860358,-0.12618731 +63.44967794418335,0.0,179.54544,179.54544,0.46860358,-0.12618731 +63.460034132003784,0.0,179.54544,179.54544,0.46860358,-0.1298874 +63.47117805480957,0.0,180.30304,180.30304,0.4592315,-0.1298874 +63.47947692871094,0.0,181.81819,181.81819,0.4592315,-0.1298874 +63.490291118621826,0.0,182.57576,182.57576,0.4592315,-0.1298874 +63.499587059020996,0.0,182.57576,182.57576,0.4592315,-0.1298874 +63.509629011154175,0.0,181.81819,181.81819,0.44985944,-0.12618731 +63.51950812339783,0.0,180.30304,180.30304,0.4592315,-0.12618731 +63.529496908187866,0.0,178.78787,178.78787,0.4592315,-0.12618731 +63.539485931396484,0.0,178.78787,178.78787,0.46860358,-0.12618731 +63.550174951553345,0.0,178.0303,178.0303,0.46860358,-0.12618731 +63.55942392349243,0.0,176.51515,176.51515,0.47797564,-0.14098771 +63.57177400588989,0.0,174.24242,174.24242,0.46860358,-0.14098771 +63.580650091171265,0.0,171.21213,171.21213,0.46860358,-0.14098771 +63.58968997001648,0.0,167.42424,167.42424,0.46860358,-0.14098771 +63.599550008773804,0.0,163.63635,163.63635,0.46860358,-0.14098771 +63.613292932510376,0.0,159.84848,159.84848,0.4592315,-0.2390403 +63.619518995285034,0.0,157.57576,157.57576,0.44985944,-0.2390403 +63.62947607040405,0.0,155.30302,155.30302,0.44985944,-0.2390403 +63.640541076660156,0.0,153.78789,153.78789,0.44985944,-0.2390403 +63.64953804016113,0.0,152.27274,152.27274,0.44985944,-0.2390403 +63.6594660282135,0.0,150.0,150.0,0.44985944,-0.2390403 +63.670774936676025,0.0,147.72726,147.72726,0.44985944,-0.2390403 +63.67978596687317,0.0,143.93939,143.93939,0.44048735,-0.2390403 +63.68947792053223,0.0,140.90909,140.90909,0.44048735,-0.2390403 +63.702940940856934,0.0,138.63637,138.63637,0.43111527,-0.2390403 +63.71151614189148,0.0,136.36365,136.36365,0.43111527,-0.24274041 +63.719533920288086,0.0,132.57574,132.57574,0.43111527,-0.24274041 +63.729488134384155,0.0,128.78787,128.78787,0.43111527,-0.24274041 +63.73977613449097,0.0,122.72727,122.72727,0.4217432,-0.24274041 +63.75131893157959,0.0,116.666664,116.666664,0.41237113,-0.24274041 +63.76023507118225,0.0,109.84849,109.84849,0.40299907,-0.16318831 +63.769880056381226,0.0,103.78788,103.78788,0.40299907,-0.16318831 +63.77992105484009,0.0,98.48485,98.48485,0.38425493,-0.16318831 +63.78985595703125,0.0,94.69697,94.69697,0.38425493,-0.16318831 +63.80290913581848,0.0,90.15152,90.15152,0.38425493,-0.16318831 +63.81192111968994,0.0,85.606064,85.606064,0.37488285,-0.12618731 +63.819525957107544,0.0,80.30303,80.30303,0.3655108,-0.12618731 +63.829482078552246,0.0,75.0,75.0,0.3561387,-0.12618731 +63.840402126312256,0.0,68.18182,68.18182,0.3561387,-0.12618731 +63.850943088531494,0.0,62.121212,62.121212,0.3561387,-0.12618731 +63.85942196846008,0.0,56.818184,56.818184,0.34676665,-0.13728762 +63.8725950717926,0.0,51.515152,51.515152,0.33739457,-0.13728762 +63.88092303276062,0.0,45.454548,45.454548,0.3280225,-0.13728762 +63.89161705970764,0.0,40.90909,40.90909,0.3280225,-0.13728762 +63.90213704109192,0.0,36.363636,36.363636,0.31865042,-0.13728762 +63.91113901138306,0.0,31.818182,31.818182,0.31865042,-0.20758946 +63.91952991485596,0.0,26.515152,26.515152,0.30927837,-0.20758946 +63.92947506904602,0.0,21.969696,21.969696,0.29990628,-0.20758946 +63.94102597236633,0.0,22.727274,22.727274,0.30927837,-0.20758946 +63.95004606246948,0.0,25.757576,25.757576,0.30927837,-0.20758946 +63.959765911102295,0.0,28.78788,28.78788,0.29990628,-0.2390403 +63.973318099975586,0.0,31.818182,31.818182,0.29990628,-0.2390403 +63.98147010803223,0.0,34.848484,34.848484,0.2905342,-0.2390403 +63.991825103759766,0.0,37.121216,37.121216,0.29990628,-0.2390403 +64.00072598457336,0.0,39.39394,39.39394,0.2905342,-0.2390403 +64.00947213172913,0.0,40.151516,40.151516,0.28116214,-0.29824185 +64.01962208747864,0.0,41.666668,41.666668,0.28116214,-0.29824185 +64.02949595451355,0.0,43.181816,43.181816,0.27179006,-0.29824185 +64.04012608528137,0.0,44.696968,44.696968,0.27179006,-0.29824185 +64.04945206642151,0.0,46.969696,46.969696,0.262418,-0.29824185 +64.05941009521484,0.0,49.242424,49.242424,0.262418,-0.30934215 +64.07194709777832,0.0,50.757576,50.757576,0.262418,-0.30934215 +64.08090209960938,0.0,52.272724,52.272724,0.27179006,-0.30934215 +64.08982610702515,0.0,52.272724,52.272724,0.262418,-0.30934215 +64.10051703453064,0.0,52.272724,52.272724,0.262418,-0.30934215 +64.1095449924469,0.0,52.272724,52.272724,0.262418,-0.33339283 +64.11954712867737,0.0,52.272724,52.272724,0.25304592,-0.33339283 +64.12949204444885,0.0,53.030304,53.030304,0.25304592,-0.33339283 +64.14327192306519,0.0,53.030304,53.030304,0.25304592,-0.33339283 +64.15079998970032,0.0,53.030304,53.030304,0.24367386,-0.33339283 +64.16036605834961,0.0,52.272724,52.272724,0.25304592,-0.43329546 +64.16999793052673,0.0,50.757576,50.757576,0.25304592,-0.43329546 +64.18010091781616,0.0,49.242424,49.242424,0.24367386,-0.43329546 +64.19073295593262,0.0,47.727272,47.727272,0.24367386,-0.43329546 +64.1997561454773,0.0,46.21212,46.21212,0.23430179,-0.43329546 +64.21094298362732,0.0,44.696968,44.696968,0.22492972,-0.4203451 +64.21953797340393,0.0,43.181816,43.181816,0.22492972,-0.4203451 +64.22948408126831,0.0,43.181816,43.181816,0.21555763,-0.4203451 +64.24127912521362,0.0,42.424244,42.424244,0.21555763,-0.4203451 +64.25021505355835,0.0,42.424244,42.424244,0.21555763,-0.4203451 +64.26292204856873,0.0,41.666668,41.666668,0.20618556,-0.4277453 +64.27194905281067,0.0,41.666668,41.666668,0.20618556,-0.4277453 +64.28098011016846,0.0,40.90909,40.90909,0.20618556,-0.4277453 +64.2899911403656,0.0,40.151516,40.151516,0.1968135,-0.4277453 +64.30088996887207,0.0,39.39394,39.39394,0.1968135,-0.4277453 +64.30943012237549,0.0,38.636364,38.636364,0.1968135,-0.4684464 +64.3203399181366,0.0,38.636364,38.636364,0.18744142,-0.4684464 +64.32951498031616,0.0,39.39394,39.39394,0.18744142,-0.4684464 +64.33948612213135,0.0,40.151516,40.151516,0.18744142,-0.4684464 +64.3503520488739,0.0,40.151516,40.151516,0.18744142,-0.4684464 +64.36035895347595,0.0,40.90909,40.90909,0.18744142,-0.45919618 +64.37119102478027,0.0,41.666668,41.666668,0.18744142,-0.45919618 +64.38019800186157,0.0,42.424244,42.424244,0.18744142,-0.45919618 +64.39078712463379,0.0,41.666668,41.666668,0.18744142,-0.45919618 +64.39977812767029,0.0,41.666668,41.666668,0.1968135,-0.45919618 +64.40942907333374,0.0,40.90909,40.90909,0.18744142,-0.46104622 +64.41951107978821,0.0,40.90909,40.90909,0.18744142,-0.46104622 +64.42950797080994,0.0,40.90909,40.90909,0.18744142,-0.46104622 +64.44026207923889,0.0,40.90909,40.90909,0.18744142,-0.46104622 +64.45138096809387,0.0,40.151516,40.151516,0.18744142,-0.46104622 +64.45939207077026,0.0,38.636364,38.636364,0.18744142,-0.49249703 +64.47045707702637,0.0,37.121216,37.121216,0.17806935,-0.49249703 +64.4794991016388,0.0,35.60606,35.60606,0.17806935,-0.49249703 +64.4896650314331,0.01,33.333336,33.333336,0.16869728,-0.49249703 +64.49939894676208,0.01,31.818182,31.818182,0.15932521,-0.49249703 +64.51336193084717,0.02,29.545454,29.545454,0.14995314,-0.5165477 +64.51951313018799,0.02,27.272728,27.272728,0.14995314,-0.5165477 +64.5294840335846,0.03,25.757576,25.757576,0.14058107,-0.5165477 +64.54266214370728,0.04,24.242424,24.242424,0.131209,-0.5165477 +64.54982709884644,0.04,22.727274,22.727274,0.12183693,-0.5165477 +64.56035208702087,0.049999997,21.212122,21.212122,0.11246486,-0.48509687 +64.56974601745605,0.049999997,19.69697,19.69697,0.10309278,-0.48509687 +64.57956099510193,0.06,18.181818,18.181818,0.09372071,-0.48509687 +64.58945608139038,0.06,17.424242,17.424242,0.08434864,-0.48509687 +64.60339403152466,0.07,15.909091,15.909091,0.07497657,-0.48509687 +64.61000299453735,0.07,14.39394,14.39394,0.0656045,-0.49249703 +64.61953902244568,0.08,13.636364,13.636364,0.046860356,-0.49249703 +64.62950110435486,0.08,12.121212,12.121212,0.037488285,-0.49249703 +64.64194107055664,0.089999996,11.363637,11.363637,0.028116215,-0.49249703 +64.6508629322052,0.089999996,9.848485,9.848485,0.018744143,-0.49249703 +64.65943002700806,0.099999994,9.090909,9.090909,0.009372071,-0.527648 +64.66948103904724,0.099999994,8.333334,8.333334,0.0,-0.527648 +64.67951607704163,0.099999994,7.575758,7.575758,0.0,-0.527648 +64.69146800041199,0.11,6.818182,6.818182,0.0,-0.527648 +64.69938802719116,0.11,6.818182,6.818182,0.0,-0.527648 +64.71340608596802,0.12,6.060606,6.060606,0.0,-0.5257979 +64.71971201896667,0.13,5.3030305,5.3030305,0.0,-0.5257979 +64.72950100898743,0.14,4.5454545,4.5454545,0.0,-0.5257979 +64.74022698402405,0.14999999,3.787879,3.787879,0.0,-0.5257979 +64.75022196769714,0.16,3.030303,3.030303,0.0,-0.5257979 +64.75952911376953,0.16,3.030303,3.030303,0.0,-0.5868495 +64.76958799362183,0.17,2.2727273,2.2727273,0.0,-0.5868495 +64.7834050655365,0.17,2.2727273,2.2727273,0.0,-0.5868495 +64.78991293907166,0.17999999,1.5151515,1.5151515,0.0,-0.5868495 +64.80091905593872,0.17999999,0.75757575,0.75757575,0.0,-0.5868495 +64.8115119934082,0.17999999,0.75757575,0.75757575,0.0,-0.61090016 +64.8195550441742,0.19,0.0,0.0,0.0,-0.61090016 +64.82950401306152,0.19,0.0,0.0,0.0,-0.61090016 +64.83949899673462,0.19,0.0,0.0,0.0,-0.61090016 +64.84954404830933,0.19999999,0.0,0.0,0.0,-0.61090016 +64.85938811302185,0.21,0.0,0.0,0.0,-0.59794986 +64.87340497970581,0.22,0.0,0.0,0.0,-0.59794986 +64.88278603553772,0.22,0.0,0.0,0.0,-0.59794986 +64.89167809486389,0.22999999,0.0,0.0,0.0,-0.59794986 +64.89971208572388,0.22999999,0.0,0.0,0.0,-0.59794986 +64.90949606895447,0.24,0.0,0.0,0.0,-0.5646489 +64.91954708099365,0.24,0.0,0.0,0.0,-0.5646489 +64.92941904067993,0.24,0.0,0.0,0.0,-0.5646489 +64.939621925354,0.25,0.0,0.0,0.0,-0.5646489 +64.94969201087952,0.25,0.0,0.0,0.0,-0.5646489 +64.95955991744995,0.25,0.0,0.0,0.0,-0.5757492 +64.9699969291687,0.25,0.0,0.0,0.0,-0.5757492 +64.98075914382935,0.25,0.0,0.0,0.0,-0.5757492 +64.98965311050415,0.25,0.0,0.0,0.0,-0.5757492 +65.00219202041626,0.25,0.0,0.0,0.0,-0.5757492 +65.00983810424805,0.26,0.0,0.0,0.0,-0.5220978 +65.01953196525574,0.26,0.0,0.0,0.0,-0.5220978 +65.02950191497803,0.26,0.0,0.0,0.0,-0.5220978 +65.03976511955261,0.26,0.0,0.0,0.0,-0.5220978 +65.04957413673401,0.26,0.0,0.0,0.0,-0.5220978 +65.05947804450989,0.26999998,0.0,0.0,0.0,-0.42959538 +65.0698311328888,0.26999998,0.0,0.0,0.0,-0.42959538 +65.07957911491394,0.28,0.0,0.0,0.0,-0.42959538 +65.08962202072144,0.28,0.0,0.0,0.0,-0.42959538 +65.10110306739807,0.29,0.0,0.0,0.0,-0.42959538 +65.11008501052856,0.29,0.0,0.0,0.0,-0.5572487 +65.11998200416565,0.29,0.0,0.0,0.0,-0.5572487 +65.12984800338745,0.28,0.0,0.0,0.0,-0.5572487 +65.14109897613525,0.28,0.0,0.0,0.0,-0.5572487 +65.14998197555542,0.28,0.0,0.0,0.0,-0.5572487 +65.16038608551025,0.26999998,0.0,0.0,0.0,-0.61275023 +65.17234706878662,0.26999998,0.0,0.0,0.0,-0.61275023 +65.17950105667114,0.26999998,0.0,0.0,0.0,-0.61275023 +65.19100403785706,0.26999998,0.0,0.0,0.0,-0.61275023 +65.20001196861267,0.26999998,0.0,0.0,0.0,-0.61275023 +65.21019196510315,0.26999998,0.0,0.0,0.0,-0.6183004 +65.21955704689026,0.26999998,0.0,0.0,0.0,-0.6183004 +65.22949409484863,0.26999998,0.0,0.0,0.0,-0.6183004 +65.24344110488892,0.26999998,0.0,0.0,0.0,-0.6183004 +65.25344204902649,0.26999998,0.0,0.0,0.0,-0.6183004 +65.25941205024719,0.26,0.0,0.0,0.0,-0.5997999 +65.27027201652527,0.26,0.0,0.0,0.0,-0.5997999 +65.28095412254333,0.26,0.0,0.0,0.0,-0.5997999 +65.28995394706726,0.26,0.0,0.0,0.0,-0.5997999 +65.30033993721008,0.25,0.0,0.0,0.0,-0.5997999 +65.30996608734131,0.25,0.0,0.0,0.0,-0.62200046 +65.31956791877747,0.24,0.0,0.0,0.0,-0.62200046 +65.32949614524841,0.24,0.0,0.0,0.0,-0.62200046 +65.34345197677612,0.22999999,0.0,0.0,0.0,-0.62200046 +65.34971714019775,0.22999999,0.0,0.0,0.0,-0.62200046 +65.36040806770325,0.22,0.0,0.0,0.0,-0.62200046 +65.37089014053345,0.21,0.0,0.0,0.0,-0.62200046 +65.3796010017395,0.21,0.0,0.0,0.0,-0.62200046 +65.39048099517822,0.19999999,0.0,0.0,0.0,-0.62200046 +65.39943099021912,0.19999999,0.0,0.0,0.0,-0.62200046 +65.4127299785614,0.19,0.0,0.0,0.0,-0.61275023 +65.41952896118164,0.19,0.0,0.0,0.0,-0.61275023 +65.4295220375061,0.17999999,0.0,0.0,0.0,-0.61275023 +65.4427490234375,0.17999999,0.0,0.0,0.0,-0.61275023 +65.45178604125977,0.17,0.0,0.0,0.0,-0.61275023 +65.45941400527954,0.17,0.0,0.0,0.0,-0.67565185 +65.46977806091309,0.16,0.0,0.0,0.0,-0.67565185 +65.47954607009888,0.16,0.0,0.0,0.0,-0.67565185 +65.48940992355347,0.16,0.0,0.0,0.0,-0.67565185 +65.50010704994202,0.14999999,0.0,0.0,0.0,-0.67565185 +65.51068711280823,0.14999999,0.0,0.0,0.0,-0.69970256 +65.51956295967102,0.14999999,0.0,0.0,0.0,-0.69970256 +65.52951908111572,0.14999999,0.0,0.0,0.0,-0.69970256 +65.54172992706299,0.14,0.0,0.0,0.0,-0.69970256 +65.5506980419159,0.14,0.0,0.0,0.0,-0.69970256 +65.55969500541687,0.14,0.0,0.0,0.0,-0.69415236 +65.57093691825867,0.14999999,0.0,0.0,0.0,-0.69415236 +65.57996106147766,0.14999999,0.0,0.0,0.0,-0.69415236 +65.5934579372406,0.14999999,0.0,0.0,0.0,-0.69415236 +65.60348606109619,0.14999999,0.0,0.0,0.0,-0.69415236 +65.6094720363617,0.14999999,0.0,0.0,0.0,-0.69415236 +65.61956596374512,0.14999999,0.0,0.0,0.0,-0.69415236 +65.62952494621277,0.14999999,0.0,0.0,0.0,-0.69415236 +65.63949608802795,0.14999999,0.0,0.0,0.0,-0.69415236 +65.6496160030365,0.14999999,0.0,0.0,0.0,-0.69415236 +65.66096091270447,0.14,0.0,0.0,0.0,-0.677502 +65.67018604278564,0.14,0.0,0.0,0.0,-0.677502 +65.6794171333313,0.14,0.0,0.0,0.0,-0.677502 +65.69329810142517,0.13,0.0,0.0,0.0,-0.677502 +65.69957208633423,0.13,0.0,0.0,0.0,-0.677502 +65.71110796928406,0.12,0.0,0.0,0.0,-0.5146976 +65.71957397460938,0.12,0.0,0.0,0.0,-0.5146976 +65.7294750213623,0.12,0.0,0.0,0.0,-0.5146976 +65.7395191192627,0.12,0.0,0.0,0.0,-0.5146976 +65.75124907493591,0.12,0.0,0.0,0.0,-0.5146976 +65.76027297973633,0.12,0.0,0.0,0.0,-0.43699557 +65.76949310302734,0.12,0.0,0.0,0.0,-0.43699557 +65.78236198425293,0.12,0.0,0.0,0.0,-0.43699557 +65.78954195976257,0.12,0.0,0.0,0.0,-0.43699557 +65.8001639842987,0.12,0.0,0.0,0.0,-0.43699557 +65.81132292747498,0.12,0.0,0.0,0.0,-0.5923997 +65.819571018219,0.12,0.0,0.0,0.0,-0.5923997 +65.82945013046265,0.12,0.0,0.0,0.0,-0.5923997 +65.8413450717926,0.12,0.0,0.0,0.0,-0.5923997 +65.85033297538757,0.11,0.0,0.0,0.0,-0.5923997 +65.85960912704468,0.11,0.0,0.0,0.0,-0.7626042 +65.86997294425964,0.11,0.0,0.0,0.0,-0.7626042 +65.87969899177551,0.099999994,0.0,0.0,0.0,-0.7626042 +65.89236903190613,0.099999994,0.0,0.0,0.0,-0.7626042 +65.90137100219727,0.089999996,0.0,0.0,0.0,-0.7626042 +65.91035294532776,0.089999996,0.0,0.0,0.0,-0.7515039 +65.91957402229309,0.089999996,0.0,0.0,0.0,-0.7515039 +65.9295220375061,0.089999996,0.0,0.0,0.0,-0.7515039 +65.94042992591858,0.099999994,0.0,0.0,0.0,-0.7515039 +65.9494469165802,0.099999994,0.0,0.0,0.0,-0.7515039 +65.9603841304779,0.099999994,0.0,0.0,0.0,-0.75890404 +65.96940493583679,0.099999994,0.0,0.0,0.0,-0.75890404 +65.9822690486908,0.099999994,0.0,0.0,0.0,-0.75890404 +65.99127793312073,0.11,0.0,0.0,0.0,-0.75890404 +66.00001907348633,0.11,0.0,0.0,0.0,-0.75890404 +66.0106520652771,0.11,0.0,0.0,0.0,-0.75890404 +66.02151894569397,0.11,0.0,0.0,0.0,-0.75890404 +66.03052401542664,0.11,0.0,0.0,0.0,-0.75890404 +66.03954601287842,0.11,0.0,0.0,0.0,-0.75890404 +66.04958295822144,0.11,0.0,0.0,0.0,-0.75890404 +66.05950403213501,0.11,0.0,0.0,0.0,-0.753354 +66.07217502593994,0.11,0.0,0.0,0.0,-0.753354 +66.08118200302124,0.12,0.0,0.0,0.0,-0.753354 +66.08946990966797,0.12,0.0,0.0,0.0,-0.753354 +66.10102200508118,0.12,0.0,0.0,0.0,-0.753354 +66.11158990859985,0.12,0.0,0.0,0.0,-0.74225366 +66.11957311630249,0.12,0.0,0.0,0.0,-0.74225366 +66.12954092025757,0.12,0.0,0.0,0.0,-0.74225366 +66.13942193984985,0.13,0.0,0.0,0.0,-0.74225366 +66.15229105949402,0.13,0.0,0.0,0.0,-0.74225366 +66.16041302680969,0.13,0.0,0.0,0.0,-0.6257006 +66.17109894752502,0.13,0.0,0.0,0.0,-0.6257006 +66.18008494377136,0.13,0.0,0.0,0.0,-0.6257006 +66.19208097457886,0.13,0.0,0.0,0.0,-0.6257006 +66.20101404190063,0.13,0.0,0.0,0.0,-0.6257006 +66.20990204811096,0.13,0.0,0.0,0.0,-0.568349 +66.21953701972961,0.13,0.0,0.0,0.0,-0.568349 +66.22950196266174,0.14,0.0,0.0,0.0,-0.568349 +66.24305391311646,0.14,0.0,0.0,0.0,-0.568349 +66.25205206871033,0.14,0.0,0.0,0.0,-0.568349 +66.25949501991272,0.14,0.0,0.0,0.0,-0.53874826 +66.27003407478333,0.14,0.0,0.0,0.0,-0.53874826 +66.28073596954346,0.14,0.0,0.0,0.0,-0.53874826 +66.2900459766388,0.14,0.0,0.0,0.0,-0.53874826 +66.3008120059967,0.14,0.0,0.0,0.0,-0.53874826 +66.30982708930969,0.14,0.0,0.0,0.0,-0.4647463 +66.31940913200378,0.14,0.0,0.0,0.0,-0.4647463 +66.32951498031616,0.14,0.0,0.0,0.0,-0.4647463 +66.34118700027466,0.13,0.0,0.0,0.0,-0.4647463 +66.34944701194763,0.13,0.0,0.0,0.0,-0.4647463 +66.35992693901062,0.13,0.0,0.0,0.0,-0.47399658 +66.37019801139832,0.13,0.0,0.0,0.0,-0.47399658 +66.38188314437866,0.12,0.0,0.0,0.0,-0.47399658 +66.39021492004395,0.12,0.0,0.0,0.0,-0.47399658 +66.39989399909973,0.12,0.0,0.0,0.0,-0.47399658 +66.40965104103088,0.12,0.0,0.0,0.0,-0.4832468 +66.41955804824829,0.11,0.0,0.0,0.0,-0.4832468 +66.42950010299683,0.11,0.0,0.0,0.0,-0.4832468 +66.4408769607544,0.11,0.0,0.0,0.0,-0.4832468 +66.44985103607178,0.11,0.0,0.0,0.0,-0.4832468 +66.45949602127075,0.11,0.0,0.0,0.0,-0.47029644 +66.46951603889465,0.11,0.0,0.0,0.0,-0.47029644 +66.48095893859863,0.11,0.0,0.0,0.0,-0.47029644 +66.4899480342865,0.099999994,0.0,0.0,0.0,-0.47029644 +66.50029301643372,0.099999994,0.0,0.0,0.0,-0.47029644 +66.51267504692078,0.099999994,0.0,0.0,0.0,-0.48139673 +66.51956510543823,0.089999996,0.0,0.0,0.0,-0.48139673 +66.52952694892883,0.089999996,0.0,0.0,0.0,-0.48139673 +66.53940391540527,0.08,0.0,0.0,0.0,-0.48139673 +66.55302095413208,0.08,0.0,0.0,0.0,-0.48139673 +66.559415102005,0.07,0.0,0.0,0.0,-0.4758466 +66.57042694091797,0.07,0.0,0.0,0.0,-0.4758466 +66.5800530910492,0.07,0.0,0.0,0.0,-0.4758466 +66.59049105644226,0.06,0.0,0.0,0.0,-0.4758466 +66.59952402114868,0.06,0.0,0.0,0.0,-0.4758466 +66.6106550693512,0.06,0.0,0.0,0.0,-0.53874826 +66.61956095695496,0.06,0.0,0.0,0.0,-0.53874826 +66.62952399253845,0.049999997,0.0,0.0,0.0,-0.53874826 +66.64155602455139,0.049999997,0.0,0.0,0.0,-0.53874826 +66.64972996711731,0.049999997,0.0,0.0,0.0,-0.53874826 +66.65944409370422,0.049999997,0.0,0.0,0.0,-0.5701991 +66.67016696929932,0.049999997,0.0,0.0,0.0,-0.5701991 +66.680673122406,0.049999997,0.0,0.0,0.0,-0.5701991 +66.68968605995178,0.04,0.0,0.0,0.0,-0.5701991 +66.69972705841064,0.04,0.0,0.0,0.0,-0.5701991 +66.7094669342041,0.04,0.0,0.0,0.0,-0.5165477 +66.7193911075592,0.04,0.0,0.0,0.0,-0.5165477 +66.72950291633606,0.04,0.0,0.0,0.0,-0.5165477 +66.74223709106445,0.04,0.0,0.0,0.0,-0.5165477 +66.750314950943,0.04,0.0,0.0,0.0,-0.5165477 +66.7602379322052,0.04,0.0,0.0,0.0,-0.5220978 +66.76979112625122,0.04,0.0,0.0,0.0,-0.5220978 +66.77989196777344,0.04,0.0,0.0,0.0,-0.5220978 +66.79130005836487,0.03,0.0,0.0,0.0,-0.5220978 +66.80055212974548,0.03,0.0,0.0,0.0,-0.5220978 +66.8095600605011,0.03,0.0,0.0,0.0,-0.5572487 +66.82328605651855,0.02,0.0,0.0,0.0,-0.5572487 +66.83230400085449,0.02,0.0,0.0,0.0,-0.5572487 +66.84130096435547,0.02,0.0,0.0,0.0,-0.5572487 +66.84952306747437,0.02,0.0,0.0,0.0,-0.5572487 +66.8595449924469,0.02,0.0,0.0,0.0,-0.5442984 +66.87004613876343,0.02,0.0,0.0,0.0,-0.5442984 +66.87956595420837,0.02,0.0,0.0,0.0,-0.5442984 +66.88951897621155,0.02,0.0,0.0,0.0,-0.5442984 +66.89945197105408,0.02,0.0,0.0,0.0,-0.5442984 +66.91041493415833,0.02,0.0,0.0,0.0,-0.54244834 +66.91954803466797,0.03,0.0,0.0,0.0,-0.54244834 +66.92954111099243,0.03,0.0,0.0,0.0,-0.54244834 +66.94020891189575,0.03,0.0,0.0,0.0,-0.54244834 +66.95125102996826,0.04,0.0,0.0,0.0,-0.54244834 +66.96025705337524,0.04,0.0,0.0,0.0,-0.53874826 +66.96947193145752,0.04,0.0,0.0,0.0,-0.53874826 +66.97952604293823,0.04,0.0,0.0,0.0,-0.53874826 +66.99097394943237,0.04,0.0,0.0,0.0,-0.53874826 +67.0021300315857,0.04,0.0,0.0,0.0,-0.53874826 +67.01019501686096,0.04,0.0,0.0,0.0,-0.55354863 +67.01958703994751,0.04,0.0,0.0,0.0,-0.55354863 +67.0295341014862,0.04,0.0,0.0,0.0,-0.55354863 +67.03944110870361,0.04,0.0,0.0,0.0,-0.55354863 +67.05048203468323,0.04,0.0,0.0,0.0,-0.55354863 +67.05951499938965,0.03,0.0,0.0,0.0,-0.5461484 +67.07018899917603,0.03,0.0,0.0,0.0,-0.5461484 +67.08270907402039,0.03,0.0,0.0,0.0,-0.5461484 +67.09160804748535,0.03,0.0,0.0,0.0,-0.5461484 +67.10052990913391,0.03,0.0,0.0,0.0,-0.5461484 +67.10944294929504,0.04,0.0,0.0,0.0,-0.5146976 +67.11958312988281,0.04,0.0,0.0,0.0,-0.5146976 +67.12948894500732,0.04,0.0,0.0,0.0,-0.5146976 +67.14071607589722,0.049999997,0.0,0.0,0.0,-0.5146976 +67.149747133255,0.049999997,0.0,0.0,0.0,-0.5146976 +67.16021609306335,0.06,0.0,0.0,0.0,-0.5923997 +67.17051100730896,0.06,0.0,0.0,0.0,-0.5923997 +67.17949795722961,0.06,0.0,0.0,0.0,-0.5923997 +67.18959307670593,0.06,0.0,0.0,0.0,-0.5923997 +67.20154404640198,0.06,0.0,0.0,0.0,-0.5923997 +67.21055293083191,0.049999997,0.0,0.0,0.0,-0.677502 +67.21955609321594,0.049999997,0.0,0.0,0.0,-0.677502 +67.22950792312622,0.049999997,0.0,0.0,0.0,-0.677502 +67.23960900306702,0.04,0.0,0.0,0.0,-0.677502 +67.25014591217041,0.04,0.0,0.0,0.0,-0.677502 +67.25948905944824,0.04,0.0,0.0,0.0,-0.6886023 +67.26976704597473,0.049999997,0.0,0.0,0.0,-0.6886023 +67.28262305259705,0.049999997,0.0,0.0,0.0,-0.6886023 +67.2916259765625,0.049999997,0.0,0.0,0.0,-0.6886023 +67.30058312416077,0.06,0.0,0.0,0.0,-0.6886023 +67.30963110923767,0.06,0.0,0.0,0.0,-0.65160125 +67.31957006454468,0.06,0.0,0.0,0.0,-0.65160125 +67.32953095436096,0.06,0.0,0.0,0.0,-0.65160125 +67.34005999565125,0.06,0.0,0.0,0.0,-0.65160125 +67.34992814064026,0.06,0.0,0.0,0.0,-0.65160125 +67.35984706878662,0.07,0.0,0.0,0.0,-0.66825175 +67.36970496177673,0.07,0.0,0.0,0.0,-0.66825175 +67.38170099258423,0.06,0.0,0.0,0.0,-0.66825175 +67.39070296287537,0.06,0.0,0.0,0.0,-0.66825175 +67.3997130393982,0.06,0.0,0.0,0.0,-0.66825175 +67.41138195991516,0.06,0.0,0.0,0.0,-0.6442011 +67.4195671081543,0.06,0.0,0.0,0.0,-0.6442011 +67.42941212654114,0.06,0.0,0.0,0.0,-0.6442011 +67.44166111946106,0.049999997,0.0,0.0,0.0,-0.6442011 +67.44961810112,0.049999997,0.0,0.0,0.0,-0.6442011 +67.45946097373962,0.049999997,0.0,0.0,0.0,-0.49619716 +67.47176909446716,0.049999997,0.0,0.0,0.0,-0.49619716 +67.47948908805847,0.049999997,0.0,0.0,0.0,-0.49619716 +67.4897871017456,0.06,0.0,0.0,0.0,-0.49619716 +67.49976706504822,0.06,0.0,0.0,0.0,-0.49619716 +67.5102870464325,0.06,0.0,0.0,0.0,-0.47029644 +67.51958394050598,0.06,0.0,0.0,0.0,-0.47029644 +67.52954006195068,0.06,0.0,0.0,0.0,-0.47029644 +67.54365992546082,0.06,0.0,0.0,0.0,-0.47029644 +67.55281710624695,0.06,0.0,0.0,0.0,-0.47029644 +67.56044411659241,0.06,0.0,0.0,0.0,-0.48694688 +67.57083511352539,0.06,0.0,0.0,0.0,-0.48694688 +67.57985401153564,0.06,0.0,0.0,0.0,-0.48694688 +67.59046292304993,0.06,0.0,0.0,0.0,-0.48694688 +67.6008129119873,0.07,0.0,0.0,0.0,-0.48694688 +67.60979890823364,0.07,0.0,0.0,0.0,-0.4647463 +67.61950492858887,0.07,0.0,0.0,0.0,-0.4647463 +67.62954711914062,0.08,0.0,0.0,0.0,-0.4647463 +67.64109492301941,0.089999996,0.0,0.0,0.0,-0.4647463 +67.65191197395325,0.089999996,0.0,0.0,0.0,-0.4647463 +67.65946197509766,0.099999994,0.0,0.0,0.0,-0.4684464 +67.66993498802185,0.099999994,0.0,0.0,0.0,-0.4684464 +67.67954397201538,0.11,0.0,0.0,0.0,-0.4684464 +67.69071292877197,0.11,0.0,0.0,0.0,-0.4684464 +67.69971108436584,0.12,0.0,0.0,0.0,-0.4684464 +67.70941305160522,0.12,0.0,0.0,0.0,-0.4758466 +67.72365498542786,0.12,0.0,0.0,0.0,-0.4758466 +67.73177599906921,0.13,0.0,0.0,0.0,-0.4758466 +67.73959612846375,0.13,0.0,0.0,0.0,-0.4758466 +67.75015306472778,0.13,0.0,0.0,0.0,-0.4758466 +67.75975704193115,0.14,0.0,0.0,0.0,-0.42219514 +67.77162504196167,0.14,0.0,0.0,0.0,-0.42219514 +67.78004002571106,0.14999999,0.0,0.0,0.0,-0.42219514 +67.78961396217346,0.16,0.0,0.0,0.0,-0.42219514 +67.79957103729248,0.16,0.0,0.0,0.0,-0.42219514 +67.81317210197449,0.17,0.0,0.0,0.0,-0.41479495 +67.81960105895996,0.17999999,0.0,0.0,0.0,-0.41479495 +67.82953906059265,0.17999999,0.0,0.0,0.0,-0.41479495 +67.83990597724915,0.19,0.0,0.0,0.0,-0.41479495 +67.8500759601593,0.19,0.0,0.0,0.0,-0.41479495 +67.85945892333984,0.19,0.0,0.0,0.0,-0.3962945 +67.87052392959595,0.19999999,0.0,0.0,0.0,-0.3962945 +67.87950110435486,0.19999999,0.0,0.0,0.0,-0.3962945 +67.88951396942139,0.19999999,0.0,0.0,0.0,-0.3962945 +67.90038990974426,0.21,0.0,0.0,0.0,-0.3962945 +67.91087794303894,0.21,0.0,0.0,0.0,-0.3888943 +67.91955900192261,0.21,0.0,0.0,0.0,-0.3888943 +67.92953491210938,0.22,0.0,0.0,0.0,-0.3888943 +67.94016695022583,0.22,0.0,0.0,0.0,-0.3888943 +67.950856924057,0.22,0.0,0.0,0.0,-0.3888943 +67.96040391921997,0.22999999,0.0,0.0,0.0,-0.38519418 +67.96940493583679,0.22999999,0.0,0.0,0.0,-0.38519418 +67.97968602180481,0.22999999,0.0,0.0,0.0,-0.38519418 +67.99133706092834,0.22999999,0.0,0.0,0.0,-0.38519418 +68.00025296211243,0.22999999,0.0,0.0,0.0,-0.38519418 +68.00975203514099,0.22999999,0.0,0.0,0.0,-0.3981445 +68.01958799362183,0.22999999,0.0,0.0,0.0,-0.3981445 +68.02953600883484,0.22,0.0,0.0,0.0,-0.3981445 +68.04132294654846,0.22,0.0,0.0,0.0,-0.3981445 +68.05033612251282,0.22999999,0.0,0.0,0.0,-0.3981445 +68.05956411361694,0.22999999,0.0,0.0,0.0,-0.30934215 +68.06983304023743,0.22999999,0.0,0.0,0.0,-0.30934215 +68.08043503761292,0.22999999,0.0,0.0,0.0,-0.30934215 +68.09166407585144,0.22999999,0.0,0.0,0.0,-0.30934215 +68.10232210159302,0.22999999,0.0,0.0,0.0,-0.30934215 +68.11131811141968,0.22999999,0.0,0.0,0.0,-0.28714156 +68.1195969581604,0.22999999,0.0,0.0,0.0,-0.28714156 +68.12953591346741,0.22999999,0.0,0.0,0.0,-0.28714156 +68.14025902748108,0.22999999,0.0,0.0,0.0,-0.28714156 +68.14947199821472,0.22999999,0.0,0.0,0.0,-0.28714156 +68.16001296043396,0.22999999,0.0,0.0,0.0,-0.26679102 +68.16952109336853,0.22999999,0.0,0.0,0.0,-0.26679102 +68.18341302871704,0.22999999,0.0,0.0,0.0,-0.26679102 +68.18974494934082,0.22999999,0.0,0.0,0.0,-0.26679102 +68.20142006874084,0.22999999,0.0,0.0,0.0,-0.26679102 +68.21043992042542,0.22,0.0,0.0,0.0,-0.14653786 +68.21944904327393,0.22,0.0,0.0,0.0,-0.14653786 +68.22951793670654,0.22,0.0,0.0,0.0,-0.14653786 +68.23939514160156,0.22,0.0,0.0,0.0,-0.14653786 +68.24971795082092,0.22,0.0,0.0,0.0,-0.14653786 +68.25956010818481,0.22,0.0,0.0,0.0,-0.01888446 +68.27349710464478,0.22,0.0,0.0,0.0,-0.01888446 +68.28008604049683,0.22,0.0,0.0,0.0,-0.01888446 +68.29152297973633,0.21,0.0,0.0,0.0,-0.01888446 +68.30052900314331,0.21,0.0,0.0,0.0,-0.01888446 +68.30952310562134,0.19999999,0.0,0.0,0.0,0.051417407 +68.31959891319275,0.19,0.0,0.0,0.0,0.051417407 +68.32952308654785,0.19,0.0,0.0,0.0,0.051417407 +68.3400571346283,0.17999999,0.0,0.0,0.0,0.051417407 +68.34939312934875,0.17999999,0.0,0.0,0.0,0.051417407 +68.36048698425293,0.17,0.0,0.0,0.0,0.11801915 +68.37237000465393,0.16,0.0,0.0,0.0,0.11801915 +68.38101100921631,0.16,0.0,0.0,0.0,0.11801915 +68.39059710502625,0.14999999,0.0,0.0,0.0,0.11801915 +68.39962005615234,0.14999999,0.0,0.0,0.0,0.11801915 +68.4098961353302,0.14,0.0,0.0,0.0,0.09581858 +68.41957306861877,0.14,0.0,0.0,0.0,0.09581858 +68.42954611778259,0.13,0.0,0.0,0.0,0.09581858 +68.4395980834961,0.13,0.0,0.0,0.0,0.09581858 +68.45201110839844,0.12,0.0,0.0,0.0,0.09581858 +68.45950508117676,0.12,0.0,0.0,0.0,0.16427042 +68.47111201286316,0.12,0.0,0.0,0.0,0.16427042 +68.48072004318237,0.11,0.0,0.0,0.0,0.16427042 +68.48972296714783,0.11,0.0,0.0,0.0,0.16427042 +68.49989604949951,0.11,0.0,0.0,0.0,0.16427042 +68.5117621421814,0.099999994,0.0,0.0,0.0,0.21052164 +68.5207769870758,0.099999994,0.0,0.0,0.0,0.21052164 +68.5298080444336,0.099999994,0.0,0.0,0.0,0.21052164 +68.54017496109009,0.089999996,0.0,0.0,0.0,0.21052164 +68.55260992050171,0.089999996,0.0,0.0,0.0,0.21052164 +68.56046509742737,0.089999996,0.0,0.0,0.0,0.23272221 +68.57040500640869,0.089999996,0.0,0.0,0.0,0.23272221 +68.5795669555664,0.08,0.0,0.0,0.0,0.23272221 +68.58942604064941,0.08,0.0,0.0,0.0,0.23272221 +68.60116004943848,0.08,0.0,0.0,0.0,0.23272221 +68.61016297340393,0.08,0.0,0.0,0.0,0.26047295 +68.61959314346313,0.08,0.0,0.0,0.0,0.26047295 +68.6295530796051,0.07,0.0,0.0,0.0,0.26047295 +68.64165902137756,0.07,0.0,0.0,0.0,0.26047295 +68.65057802200317,0.07,0.0,0.0,0.0,0.26047295 +68.6594889163971,0.07,0.0,0.0,0.0,0.27897343 +68.6698830127716,0.07,0.0,0.0,0.0,0.27897343 +68.67977595329285,0.06,0.0,0.0,0.0,0.27897343 +68.69216108322144,0.06,0.0,0.0,0.0,0.27897343 +68.70120096206665,0.06,0.0,0.0,0.0,0.27897343 +68.71023201942444,0.049999997,0.0,0.0,0.0,0.3233746 +68.71938800811768,0.049999997,0.0,0.0,0.0,0.3233746 +68.72954392433167,0.049999997,0.0,0.0,0.0,0.3233746 +68.73966693878174,0.04,0.0,0.0,0.0,0.3233746 +68.75094699859619,0.04,0.0,0.0,0.0,0.3233746 +68.75994992256165,0.04,0.0,0.0,0.0,0.3973766 +68.76969504356384,0.03,0.0,0.0,0.0,0.3973766 +68.78237414360046,0.03,0.0,0.0,0.0,0.3973766 +68.79139709472656,0.03,0.0,0.0,0.0,0.3973766 +68.79951000213623,0.03,0.0,0.0,0.0,0.3973766 +68.8094220161438,0.02,0.0,0.0,0.0,0.31227434 +68.81959795951843,0.02,0.0,0.0,0.0,0.31227434 +68.82952904701233,0.02,0.0,0.0,0.0,0.31227434 +68.83978199958801,0.02,0.0,0.0,0.0,0.31227434 +68.84999108314514,0.02,0.0,0.0,0.0,0.31227434 +68.85952305793762,0.02,0.0,0.0,0.0,0.30672416 +68.87219095230103,0.01,0.0,0.0,0.0,0.30672416 +68.88069891929626,0.01,0.0,0.0,0.0,0.30672416 +68.8906319141388,0.01,0.0,0.0,0.0,0.30672416 +68.89963293075562,0.01,0.0,0.0,0.0,0.30672416 +68.91302609443665,0.01,0.0,0.0,0.0,0.30857423 +68.91942000389099,0.01,0.75757575,0.75757575,0.0,0.30857423 +68.92954993247986,0.01,0.75757575,0.75757575,0.009372071,0.30857423 +68.94003009796143,0.01,1.5151515,1.5151515,0.009372071,0.30857423 +68.94955396652222,0.01,1.5151515,1.5151515,0.009372071,0.30857423 +68.96002912521362,0.01,1.5151515,1.5151515,0.018744143,0.35482547 +68.97125005722046,0.01,2.2727273,2.2727273,0.018744143,0.35482547 +68.98015713691711,0.0,2.2727273,2.2727273,0.028116215,0.35482547 +68.98986101150513,0.0,2.2727273,2.2727273,0.028116215,0.35482547 +69.00308513641357,0.0,2.2727273,2.2727273,0.028116215,0.35482547 +69.00993609428406,0.0,2.2727273,2.2727273,0.028116215,0.39182645 +69.01958894729614,0.01,2.2727273,2.2727273,0.028116215,0.39182645 +69.02955102920532,0.01,2.2727273,2.2727273,0.037488285,0.39182645 +69.03956913948059,0.01,2.2727273,2.2727273,0.037488285,0.39182645 +69.04979801177979,0.01,3.030303,3.030303,0.037488285,0.39182645 +69.05959296226501,0.01,3.030303,3.030303,0.046860356,0.47137854 +69.07102394104004,0.01,3.030303,3.030303,0.046860356,0.47137854 +69.08002591133118,0.01,3.030303,3.030303,0.046860356,0.47137854 +69.09314393997192,0.01,2.2727273,2.2727273,0.046860356,0.47137854 +69.10179400444031,0.01,2.2727273,2.2727273,0.05623243,0.47137854 +69.1111741065979,0.01,2.2727273,2.2727273,0.05623243,0.5009793 +69.11960005760193,0.02,2.2727273,2.2727273,0.05623243,0.5009793 +69.12941694259644,0.02,2.2727273,2.2727273,0.046860356,0.5009793 +69.14050006866455,0.02,2.2727273,2.2727273,0.05623243,0.5009793 +69.14941096305847,0.02,2.2727273,2.2727273,0.05623243,0.5009793 +69.15960812568665,0.03,2.2727273,2.2727273,0.05623243,0.48062876 +69.17024111747742,0.03,3.030303,3.030303,0.046860356,0.48062876 +69.18100214004517,0.03,2.2727273,2.2727273,0.05623243,0.48062876 +69.19039702415466,0.04,2.2727273,2.2727273,0.05623243,0.48062876 +69.2012550830841,0.04,2.2727273,2.2727273,0.05623243,0.48062876 +69.21023797988892,0.04,2.2727273,2.2727273,0.05623243,0.488029 +69.21948409080505,0.04,2.2727273,2.2727273,0.05623243,0.488029 +69.22957706451416,0.04,2.2727273,2.2727273,0.05623243,0.488029 +69.2424111366272,0.04,2.2727273,2.2727273,0.05623243,0.488029 +69.2496120929718,0.04,2.2727273,2.2727273,0.05623243,0.488029 +69.25949192047119,0.049999997,2.2727273,2.2727273,0.05623243,0.47507864 +69.26948308944702,0.049999997,2.2727273,2.2727273,0.0656045,0.47507864 +69.27986192703247,0.049999997,1.5151515,1.5151515,0.0656045,0.47507864 +69.29122996330261,0.049999997,1.5151515,1.5151515,0.0656045,0.47507864 +69.30019998550415,0.049999997,1.5151515,1.5151515,0.0656045,0.47507864 +69.30941891670227,0.049999997,1.5151515,1.5151515,0.0656045,0.4695285 +69.31958198547363,0.049999997,1.5151515,1.5151515,0.0656045,0.4695285 +69.32955193519592,0.049999997,1.5151515,1.5151515,0.05623243,0.4695285 +69.3416600227356,0.049999997,1.5151515,1.5151515,0.05623243,0.4695285 +69.35008001327515,0.049999997,1.5151515,1.5151515,0.0656045,0.4695285 +69.35968112945557,0.049999997,1.5151515,1.5151515,0.0656045,0.47877875 +69.36953592300415,0.049999997,1.5151515,1.5151515,0.0656045,0.47877875 +69.38100790977478,0.049999997,0.75757575,0.75757575,0.0656045,0.47877875 +69.38991808891296,0.049999997,0.75757575,0.75757575,0.05623243,0.47877875 +69.40380907058716,0.049999997,0.75757575,0.75757575,0.0656045,0.47877875 +69.41324400901794,0.049999997,0.75757575,0.75757575,0.05623243,0.4621283 +69.42150712013245,0.049999997,0.75757575,0.75757575,0.05623243,0.4621283 +69.42954897880554,0.049999997,0.75757575,0.75757575,0.05623243,0.4621283 +69.4408791065216,0.049999997,0.75757575,0.75757575,0.05623243,0.4621283 +69.44945096969604,0.049999997,0.75757575,0.75757575,0.05623243,0.4621283 +69.45950698852539,0.049999997,0.75757575,0.75757575,0.05623243,0.47507864 +69.47008895874023,0.049999997,0.75757575,0.75757575,0.05623243,0.47507864 +69.4800329208374,0.049999997,0.75757575,0.75757575,0.0656045,0.47507864 +69.48945593833923,0.049999997,0.75757575,0.75757575,0.0656045,0.47507864 +69.50034999847412,0.049999997,0.75757575,0.75757575,0.0656045,0.47507864 +69.51140904426575,0.06,0.0,0.0,0.05623243,0.5028294 +69.5194981098175,0.06,0.0,0.0,0.05623243,0.5028294 +69.52957201004028,0.06,0.0,0.0,0.05623243,0.5028294 +69.54007911682129,0.06,0.0,0.0,0.05623243,0.5028294 +69.55026507377625,0.06,0.0,0.0,0.0656045,0.5028294 +69.56049394607544,0.06,0.0,0.0,0.0656045,0.6064321 +69.56994700431824,0.06,0.0,0.0,0.0656045,0.6064321 +69.5794689655304,0.049999997,0.0,0.0,0.0656045,0.6064321 +69.59384202957153,0.049999997,0.0,0.0,0.05623243,0.6064321 +69.60177707672119,0.049999997,0.0,0.0,0.05623243,0.6064321 +69.61091494560242,0.049999997,0.0,0.0,0.046860356,0.60088205 +69.6195809841156,0.049999997,0.0,0.0,0.046860356,0.60088205 +69.62956404685974,0.049999997,0.0,0.0,0.046860356,0.60088205 +69.63954997062683,0.049999997,0.0,0.0,0.046860356,0.60088205 +69.65087413787842,0.049999997,0.0,0.0,0.037488285,0.60088205 +69.65952491760254,0.049999997,0.0,0.0,0.037488285,0.60273206 +69.66964912414551,0.04,0.0,0.0,0.037488285,0.60273206 +69.68383407592773,0.04,0.0,0.0,0.037488285,0.60273206 +69.68960309028625,0.04,0.0,0.0,0.037488285,0.60273206 +69.7017149925232,0.04,0.0,0.0,0.037488285,0.60273206 +69.70950603485107,0.03,0.0,0.0,0.037488285,0.6064321 +69.71954798698425,0.03,0.0,0.0,0.037488285,0.6064321 +69.72952699661255,0.03,0.0,0.0,0.028116215,0.6064321 +69.74076700210571,0.02,0.0,0.0,0.028116215,0.6064321 +69.74978494644165,0.02,0.0,0.0,0.037488285,0.6064321 +69.75976300239563,0.02,0.0,0.0,0.037488285,0.6082822 +69.77108597755432,0.01,0.0,0.0,0.037488285,0.6082822 +69.78187704086304,0.01,0.0,0.0,0.028116215,0.6082822 +69.79077506065369,0.01,0.0,0.0,0.028116215,0.6082822 +69.79969596862793,0.0,0.0,0.0,0.028116215,0.6082822 +69.81067991256714,0.0,0.0,0.0,0.028116215,0.61753243 +69.81962704658508,0.0,0.75757575,0.75757575,0.028116215,0.61753243 +69.82954096794128,0.0,0.75757575,0.75757575,0.028116215,0.61753243 +69.83951592445374,0.0,0.75757575,0.75757575,0.028116215,0.61753243 +69.84985613822937,0.0,1.5151515,1.5151515,0.028116215,0.61753243 +69.85951113700867,0.0,1.5151515,1.5151515,0.028116215,0.6064321 +69.87093496322632,0.0,1.5151515,1.5151515,0.028116215,0.6064321 +69.87984299659729,0.0,2.2727273,2.2727273,0.037488285,0.6064321 +69.89183211326599,0.0,2.2727273,2.2727273,0.037488285,0.6064321 +69.90085506439209,0.0,2.2727273,2.2727273,0.037488285,0.6064321 +69.90988612174988,0.0,2.2727273,2.2727273,0.028116215,0.6323328 +69.91958498954773,0.0,2.2727273,2.2727273,0.037488285,0.6323328 +69.92958498001099,0.0,2.2727273,2.2727273,0.037488285,0.6323328 +69.93995499610901,0.0,2.2727273,2.2727273,0.037488285,0.6323328 +69.9511079788208,0.0,2.2727273,2.2727273,0.037488285,0.6323328 +69.95998001098633,0.0,3.030303,3.030303,0.046860356,0.6711839 +69.9695520401001,0.0,3.030303,3.030303,0.046860356,0.6711839 +69.98201107978821,0.0,3.030303,3.030303,0.046860356,0.6711839 +69.99102306365967,0.0,3.030303,3.030303,0.046860356,0.6711839 +70.00004506111145,0.01,3.030303,3.030303,0.046860356,0.6711839 +70.01042604446411,0.01,3.030303,3.030303,0.046860356,0.7488859 +70.01945114135742,0.01,3.030303,3.030303,0.046860356,0.7488859 +70.02958512306213,0.01,3.030303,3.030303,0.046860356,0.7488859 +70.04016304016113,0.01,3.030303,3.030303,0.046860356,0.7488859 +70.04970002174377,0.02,3.030303,3.030303,0.046860356,0.7488859 +70.05953192710876,0.02,3.787879,3.787879,0.046860356,0.752586 +70.071298122406,0.03,3.787879,3.787879,0.05623243,0.752586 +70.08120203018188,0.03,3.787879,3.787879,0.05623243,0.752586 +70.0902271270752,0.03,3.787879,3.787879,0.05623243,0.752586 +70.0995659828186,0.04,3.787879,3.787879,0.05623243,0.752586 +70.11116313934326,0.04,3.787879,3.787879,0.05623243,0.7599862 +70.11960291862488,0.04,3.787879,3.787879,0.046860356,0.7599862 +70.12940812110901,0.049999997,3.787879,3.787879,0.05623243,0.7599862 +70.14388704299927,0.049999997,3.787879,3.787879,0.046860356,0.7599862 +70.15040612220764,0.049999997,3.787879,3.787879,0.05623243,0.7599862 +70.15950298309326,0.049999997,3.787879,3.787879,0.05623243,1.013443 +70.17138409614563,0.06,3.787879,3.787879,0.05623243,1.013443 +70.18037605285645,0.06,3.030303,3.030303,0.05623243,1.013443 +70.18940997123718,0.06,3.030303,3.030303,0.05623243,1.013443 +70.19968605041504,0.06,3.030303,3.030303,0.05623243,1.013443 +70.21026992797852,0.06,2.2727273,2.2727273,0.05623243,1.1096455 +70.22392201423645,0.07,2.2727273,2.2727273,0.05623243,1.1096455 +70.2295970916748,0.07,2.2727273,2.2727273,0.05623243,1.1096455 +70.24060392379761,0.07,2.2727273,2.2727273,0.05623243,1.1096455 +70.2525200843811,0.08,2.2727273,2.2727273,0.05623243,1.1096455 +70.25955295562744,0.08,2.2727273,2.2727273,0.05623243,1.0411936 +70.27058005332947,0.089999996,2.2727273,2.2727273,0.046860356,1.0411936 +70.27953004837036,0.089999996,2.2727273,2.2727273,0.046860356,1.0411936 +70.28955912590027,0.089999996,2.2727273,2.2727273,0.046860356,1.0411936 +70.30037999153137,0.099999994,2.2727273,2.2727273,0.046860356,1.0411936 +70.30943512916565,0.099999994,2.2727273,2.2727273,0.046860356,1.055994 +70.3196349143982,0.11,2.2727273,2.2727273,0.046860356,1.055994 +70.32956504821777,0.11,2.2727273,2.2727273,0.05623243,1.055994 +70.34269595146179,0.11,2.2727273,2.2727273,0.046860356,1.055994 +70.35171914100647,0.12,2.2727273,2.2727273,0.046860356,1.055994 +70.35965394973755,0.12,2.2727273,2.2727273,0.046860356,1.0319433 +70.3697440624237,0.12,2.2727273,2.2727273,0.046860356,1.0319433 +70.38147711753845,0.13,2.2727273,2.2727273,0.028116215,1.0319433 +70.39049196243286,0.13,2.2727273,2.2727273,0.028116215,1.0319433 +70.3994710445404,0.13,2.2727273,2.2727273,0.037488285,1.0319433 +70.41392302513123,0.13,1.5151515,1.5151515,0.028116215,1.0319433 +70.41961812973022,0.14,1.5151515,1.5151515,0.028116215,1.0319433 +70.42953991889954,0.14,1.5151515,1.5151515,0.037488285,1.0319433 +70.44100213050842,0.14,1.5151515,1.5151515,0.037488285,1.0319433 +70.44990801811218,0.14,1.5151515,1.5151515,0.037488285,1.0319433 +70.45952892303467,0.14,1.5151515,1.5151515,0.037488285,1.0448937 +70.47160410881042,0.14999999,1.5151515,1.5151515,0.037488285,1.0448937 +70.4806170463562,0.14999999,0.75757575,0.75757575,0.046860356,1.0448937 +70.48964309692383,0.16,0.75757575,0.75757575,0.046860356,1.0448937 +70.50337314605713,0.16,0.75757575,0.75757575,0.046860356,1.0448937 +70.51107597351074,0.17,1.5151515,1.5151515,0.037488285,0.9819921 +70.51960802078247,0.17,1.5151515,1.5151515,0.037488285,0.9819921 +70.52958297729492,0.17999999,1.5151515,1.5151515,0.037488285,0.9819921 +70.54095602035522,0.19,1.5151515,1.5151515,0.037488285,0.9819921 +70.54995512962341,0.19,1.5151515,1.5151515,0.037488285,0.9819921 +70.55938911437988,0.19999999,0.75757575,0.75757575,0.046860356,0.9708918 +70.57073903083801,0.19999999,0.75757575,0.75757575,0.046860356,0.9708918 +70.57977414131165,0.21,0.75757575,0.75757575,0.046860356,0.9708918 +70.59246802330017,0.22,0.75757575,0.75757575,0.046860356,0.9708918 +70.60137104988098,0.22,0.0,0.0,0.046860356,0.9708918 +70.61027908325195,0.22,0.0,0.0,0.046860356,0.9819921 +70.61960411071777,0.22999999,0.0,0.0,0.046860356,0.9819921 +70.6295850276947,0.22999999,0.0,0.0,0.046860356,0.9819921 +70.63988208770752,0.24,0.0,0.0,0.046860356,0.9819921 +70.65023708343506,0.24,0.0,0.0,0.05623243,0.9819921 +70.6595139503479,0.25,0.0,0.0,0.05623243,0.99124235 +70.66970300674438,0.25,0.0,0.0,0.05623243,0.99124235 +70.68153595924377,0.26,0.0,0.0,0.05623243,0.99124235 +70.69044399261475,0.26,0.0,0.0,0.05623243,0.99124235 +70.70281100273132,0.26999998,0.0,0.0,0.046860356,0.99124235 +70.71181607246399,0.26999998,0.0,0.0,0.046860356,0.9708918 +70.71962404251099,0.28,0.0,0.0,0.05623243,0.9708918 +70.72957396507263,0.28,0.0,0.0,0.046860356,0.9708918 +70.7395191192627,0.29,0.0,0.0,0.046860356,0.9708918 +70.74962306022644,0.29,0.0,0.0,0.037488285,0.9708918 +70.75939893722534,0.29999998,0.0,0.0,0.028116215,0.9708918 +70.7704029083252,0.29999998,0.0,0.0,0.028116215,0.9708918 +70.77953100204468,0.31,0.0,0.0,0.018744143,0.9708918 +70.79189801216125,0.31,0.0,0.0,0.018744143,0.9708918 +70.8005211353302,0.32,0.0,0.0,0.009372071,0.9708918 +70.81070399284363,0.32,0.0,0.0,0.009372071,0.9634916 +70.8196280002594,0.32999998,0.0,0.0,0.0,0.9634916 +70.82957100868225,0.32999998,0.0,0.0,0.0,0.9634916 +70.84118413925171,0.32999998,0.0,0.0,0.0,0.9634916 +70.85022497177124,0.34,0.0,0.0,0.0,0.9634916 +70.85960793495178,0.34,0.0,0.0,0.0,0.99124235 +70.87364292144775,0.35,0.0,0.0,0.0,0.99124235 +70.8795759677887,0.35,0.0,0.0,0.0,0.99124235 +70.89053797721863,0.35999998,0.0,0.0,0.0,0.99124235 +70.90062093734741,0.35999998,0.0,0.0,0.0,0.99124235 +70.90958499908447,0.35999998,0.0,0.0,0.0,0.96164155 +70.91962599754333,0.37,0.0,0.0,0.0,0.96164155 +70.92956113815308,0.37,0.0,0.0,0.0,0.96164155 +70.93968605995178,0.37,0.0,0.0,0.0,0.96164155 +70.95084309577942,0.38,0.0,0.0,0.0,0.96164155 +70.95940208435059,0.38,0.0,0.0,0.0,0.93019074 +70.97254800796509,0.38,0.0,0.0,0.0,0.93019074 +70.98151707649231,0.39,0.0,0.0,0.0,0.93019074 +70.99052810668945,0.39,0.0,0.0,0.0,0.93019074 +70.99952793121338,0.39999998,0.0,0.0,0.0,0.93019074 +71.00955390930176,0.39999998,0.0,0.0,0.0,0.9209404 +71.01963710784912,0.39999998,0.0,0.0,0.0,0.9209404 +71.02959394454956,0.41,0.0,0.0,0.0,0.9209404 +71.03953695297241,0.41,0.0,0.0,0.0,0.9209404 +71.05131506919861,0.41,0.0,0.0,0.0,0.9209404 +71.05954599380493,0.42,0.0,0.0,0.0,0.9449911 +71.07144212722778,0.42,0.0,0.0,0.0,0.9449911 +71.08043313026428,0.42,0.0,0.0,0.0,0.9449911 +71.0894410610199,0.42999998,0.0,0.0,0.0,0.9449911 +71.10022902488708,0.42999998,0.0,0.0,0.0,0.9449911 +71.10940408706665,0.42999998,0.0,0.0,0.0,0.80068725 +71.12067794799805,0.44,0.0,0.0,0.0,0.80068725 +71.12959814071655,0.44,0.0,0.0,0.0,0.80068725 +71.13950991630554,0.44,0.0,0.0,0.0,0.80068725 +71.14998197555542,0.45,0.0,0.0,0.0,0.80068725 +71.16053199768066,0.45,0.0,0.0,0.0,0.713735 +71.17033696174622,0.45999998,0.0,0.0,0.0,0.713735 +71.18045210838318,0.45999998,0.0,0.0,0.0,0.713735 +71.19042897224426,0.45999998,0.0,0.0,0.0,0.713735 +71.19946098327637,0.45999998,0.0,0.0,0.0,0.713735 +71.21078991889954,0.45999998,0.0,0.0,0.0,0.68783426 +71.2196249961853,0.47,0.0,0.0,0.0,0.68783426 +71.2295560836792,0.47,0.0,0.0,0.0,0.68783426 +71.2400450706482,0.47,0.0,0.0,0.0,0.68783426 +71.25126194953918,0.47,0.0,0.0,0.0,0.68783426 +71.25954914093018,0.47,0.0,0.0,0.0,0.71003485 +71.26955199241638,0.47,0.0,0.0,0.0,0.71003485 +71.28061699867249,0.48,0.0,0.0,0.0,0.71003485 +71.28963804244995,0.48,0.0,0.0,0.0,0.71003485 +71.30091691017151,0.48,0.0,0.0,0.0,0.71003485 +71.30991792678833,0.48,0.0,0.0,0.0,0.7729366 +71.31961011886597,0.48,0.0,0.0,0.0,0.7729366 +71.32955598831177,0.48,0.0,0.0,0.0,0.7729366 +71.34083199501038,0.48,0.0,0.0,0.0,0.7729366 +71.34976100921631,0.48,0.0,0.0,0.0,0.7729366 +71.35939908027649,0.48999998,0.0,0.0,0.0,0.7636863 +71.37082695960999,0.48999998,0.0,0.0,0.0,0.7636863 +71.37985610961914,0.48999998,0.0,0.0,0.0,0.7636863 +71.39037895202637,0.5,0.0,0.0,0.0,0.7636863 +71.39961099624634,0.5,0.0,0.0,0.0,0.7636863 +71.4096040725708,0.5,0.0,0.0,0.0,0.7618363 +71.41961002349854,0.51,0.0,0.0,0.0,0.7618363 +71.42957210540771,0.51,0.0,0.0,0.0,0.7618363 +71.4400999546051,0.51,0.0,0.0,0.0,0.7618363 +71.45200705528259,0.51,0.0,0.0,0.0,0.7618363 +71.45954704284668,0.51,0.0,0.0,0.0,0.7784867 +71.46958494186401,0.51,0.0,0.0,0.0,0.7784867 +71.48114800453186,0.51,0.0,0.0,0.0,0.7784867 +71.49019598960876,0.51,0.0,0.0,0.0,0.7784867 +71.50119209289551,0.51,0.0,0.0,0.0,0.7784867 +71.51008892059326,0.51,0.0,0.0,0.0,0.79513717 +71.51963496208191,0.51,0.0,0.0,0.0,0.79513717 +71.52961492538452,0.51,0.0,0.0,0.0,0.79513717 +71.540452003479,0.51,0.0,0.0,0.0,0.79513717 +71.55124711990356,0.51,0.0,0.0,0.0,0.79513717 +71.55942392349243,0.51,0.0,0.0,0.0,0.7636863 +71.57049894332886,0.51,0.0,0.0,0.0,0.7636863 +71.58026909828186,0.51,0.0,0.0,0.0,0.7636863 +71.58945202827454,0.51,0.0,0.0,0.0,0.7636863 +71.60074806213379,0.51,0.0,0.0,0.0,0.7636863 +71.61093711853027,0.51,0.0,0.0,0.0,0.7747866 +71.61962413787842,0.51,0.0,0.0,0.0,0.7747866 +71.62960195541382,0.51,0.0,0.0,0.0,0.7747866 +71.64144206047058,0.51,0.0,0.0,0.0,0.7747866 +71.64965105056763,0.51,0.0,0.0,0.0,0.7747866 +71.6594820022583,0.51,0.0,0.0,0.0,0.6952345 +71.67041110992432,0.51,0.0,0.0,0.0,0.6952345 +71.67956495285034,0.51,0.0,0.0,0.0,0.6952345 +71.69188904762268,0.51,0.0,0.0,0.0,0.6952345 +71.7008650302887,0.51,0.0,0.0,0.0,0.6952345 +71.70974612236023,0.51,0.0,0.0,0.0,0.49912927 +71.71962809562683,0.51,0.0,0.0,0.0,0.49912927 +71.72957801818848,0.51,0.0,0.0,0.0,0.49912927 +71.73977613449097,0.51,0.0,0.0,0.0,0.49912927 +71.74970197677612,0.51,0.0,0.0,0.0,0.49912927 +71.7595100402832,0.51,0.0,0.0,0.0,0.3862763 +71.76957511901855,0.51,0.0,0.0,0.0,0.3862763 +71.78179097175598,0.51,0.0,0.0,0.0,0.3862763 +71.78960108757019,0.51,0.0,0.0,0.0,0.3862763 +71.79975700378418,0.51,0.0,0.0,0.0,0.3862763 +71.80999112129211,0.51,0.0,0.0,0.0,0.36407572 +71.81966400146484,0.51,0.0,0.0,0.0,0.36407572 +71.82956790924072,0.51,0.0,0.0,0.0,0.36407572 +71.83966302871704,0.5,0.0,0.0,0.0,0.36407572 +71.849436044693,0.5,0.0,0.0,0.0,0.36407572 +71.85962009429932,0.5,0.0,0.0,0.0,0.3492753 +71.87170100212097,0.5,0.0,0.0,0.0,0.3492753 +71.88069605827332,0.5,0.0,0.0,0.0,0.3492753 +71.88969397544861,0.5,0.0,0.0,0.0,0.3492753 +71.9020140171051,0.5,0.0,0.0,0.0,0.3492753 +71.91090703010559,0.5,0.0,0.0,0.0,0.3455752 +71.91956996917725,0.5,0.0,0.0,0.0,0.3455752 +71.93008804321289,0.5,0.0,0.0,0.0,0.3455752 +71.94074511528015,0.5,0.0,0.0,0.0,0.3455752 +71.94974493980408,0.5,0.0,0.0,0.0,0.3455752 +71.95941996574402,0.5,0.0,0.0,0.0,0.39552653 +71.96960306167603,0.5,0.0,0.0,0.0,0.39552653 +71.97958993911743,0.5,0.0,0.0,0.0,0.39552653 +71.99105405807495,0.5,0.0,0.0,0.0,0.39552653 +71.99951505661011,0.5,0.0,0.0,0.0,0.39552653 +72.01023602485657,0.5,0.0,0.0,0.0,0.36592576 +72.01963806152344,0.5,0.0,0.0,0.0,0.36592576 +72.02959513664246,0.5,0.0,0.0,0.0,0.36592576 +72.03982996940613,0.5,0.0,0.0,0.0,0.36592576 +72.04955196380615,0.5,0.0,0.0,0.0,0.36592576 +72.0595121383667,0.51,0.0,0.0,0.0,0.35482547 +72.06952095031738,0.51,0.0,0.0,0.0,0.35482547 +72.0801100730896,0.51,0.0,0.0,0.0,0.35482547 +72.09242510795593,0.51,0.0,0.0,0.0,0.35482547 +72.10034608840942,0.51,0.0,0.0,0.0,0.35482547 +72.11044502258301,0.51,0.0,0.0,0.0,0.36222565 +72.11947107315063,0.51,0.0,0.0,0.0,0.36222565 +72.12958312034607,0.51,0.0,0.0,0.0,0.36222565 +72.14146614074707,0.51,0.0,0.0,0.0,0.36222565 +72.15045809745789,0.51,0.0,0.0,0.0,0.36222565 +72.15955996513367,0.51,0.0,0.0,0.0,0.36777583 +72.173593044281,0.51,0.0,0.0,0.0,0.36777583 +72.17955613136292,0.51,0.0,0.0,0.0,0.36777583 +72.1916139125824,0.51,0.0,0.0,0.0,0.36777583 +72.20062398910522,0.52,0.0,0.0,0.0,0.36777583 +72.20944809913635,0.52,0.0,0.0,0.0,0.338175 +72.2196581363678,0.52,0.0,0.0,0.0,0.338175 +72.22958898544312,0.52,0.0,0.0,0.0,0.338175 +72.240394115448,0.52,0.0,0.0,0.0,0.338175 +72.24955105781555,0.52,0.0,0.0,0.0,0.338175 +72.25956702232361,0.52,0.0,0.0,0.0,0.31042427 +72.27277112007141,0.52,0.0,0.0,0.0,0.31042427 +72.28045797348022,0.52,0.0,0.0,0.0,0.31042427 +72.29081296920776,0.52,0.0,0.0,0.0,0.31042427 +72.29978394508362,0.52,0.0,0.0,0.0,0.31042427 +72.30954313278198,0.52,0.0,0.0,0.0,0.20682153 +72.31962513923645,0.52,0.0,0.0,0.0,0.20682153 +72.32947206497192,0.52,0.0,0.0,0.0,0.20682153 +72.34326410293579,0.52,0.0,0.0,0.0,0.20682153 +72.35394501686096,0.52,0.0,0.0,0.0,0.20682153 +72.35956406593323,0.52,0.0,0.0,0.0,0.09211848 +72.37150406837463,0.52,0.0,0.0,0.0,0.09211848 +72.38102507591248,0.52,0.0,0.0,0.0,0.09211848 +72.39001893997192,0.52,0.0,0.0,0.0,0.09211848 +72.40020108222961,0.52,0.0,0.0,0.0,0.09211848 +72.40963196754456,0.52,0.0,0.0,0.0,0.073618 +72.41962814331055,0.52,0.0,0.0,0.0,0.073618 +72.429603099823,0.52,0.0,0.0,0.0,0.073618 +72.43953013420105,0.52,0.0,0.0,0.0,0.073618 +72.44976592063904,0.52,0.0,0.0,0.0,0.073618 +72.45959997177124,0.52,0.0,0.0,0.0,0.051417407 +72.47119402885437,0.52,0.0,0.0,0.0,0.051417407 +72.48022413253784,0.51,0.0,0.0,0.0,0.051417407 +72.48976302146912,0.51,0.0,0.0,0.0,0.051417407 +72.50120997428894,0.51,0.0,0.0,0.0,0.051417407 +72.50998497009277,0.51,0.0,0.0,0.0,0.06066765 +72.51963806152344,0.51,0.0,0.0,0.0,0.06066765 +72.52960801124573,0.51,0.0,0.0,0.0,0.06066765 +72.54251599311829,0.51,0.0,0.0,0.0,0.06066765 +72.55092811584473,0.51,0.0,0.0,0.0,0.06066765 +72.55960392951965,0.51,0.0,0.0,0.0,0.04586726 +72.56952404975891,0.51,0.0,0.0,0.0,0.04586726 +72.57941198348999,0.5,0.0,0.0,0.0,0.04586726 +72.58947396278381,0.5,0.0,0.0,0.0,0.04586726 +72.59995198249817,0.5,0.0,0.0,0.0,0.04586726 +72.61412811279297,0.5,0.0,0.0,0.0,0.04031712 +72.61966109275818,0.5,0.0,0.0,0.0,0.04031712 +72.62960696220398,0.5,0.0,0.0,0.0,0.04031712 +72.64121794700623,0.5,0.0,0.0,0.0,0.04031712 +72.65014696121216,0.48999998,0.0,0.0,0.0,0.04031712 +72.66014909744263,0.48999998,0.0,0.0,0.0,-0.06513569 +72.66959404945374,0.48999998,0.0,0.0,0.0,-0.06513569 +72.67947292327881,0.48999998,0.0,0.0,0.0,-0.06513569 +72.69007396697998,0.48999998,0.0,0.0,0.0,-0.06513569 +72.69951605796814,0.48999998,0.0,0.0,0.0,-0.06513569 +72.7124810218811,0.48999998,0.0,0.0,0.0,-0.06513569 +72.71965408325195,0.48999998,0.0,0.0,0.0,-0.06513569 +72.72957396507263,0.48999998,0.0,0.0,0.0,-0.06513569 +72.74175095558167,0.48999998,0.0,0.0,0.0,-0.06513569 +72.7500479221344,0.48999998,0.0,0.0,0.0,-0.06513569 +72.75958299636841,0.48999998,0.0,0.0,0.0,-0.06698574 +72.76966214179993,0.48999998,0.0,0.0,0.0,-0.06698574 +72.77999806404114,0.48999998,0.0,0.0,0.0,-0.06698574 +72.79263710975647,0.48999998,0.0,0.0,0.0,-0.06698574 +72.80154299736023,0.48999998,0.0,0.0,0.0,-0.06698574 +72.81045413017273,0.48999998,0.0,0.0,0.0,-0.072535895 +72.82198810577393,0.48999998,0.0,0.0,0.0,-0.072535895 +72.8294460773468,0.48999998,0.0,0.0,0.0,-0.072535895 +72.84096813201904,0.48999998,0.0,0.0,0.0,-0.072535895 +72.84996509552002,0.48999998,0.0,0.0,0.0,-0.072535895 +72.85958409309387,0.48999998,0.0,0.0,0.0,-0.029984765 +72.8699119091034,0.48999998,0.0,0.0,0.0,-0.029984765 +72.88135313987732,0.48999998,0.0,0.0,0.0,-0.029984765 +72.88941693305969,0.48999998,0.0,0.0,0.0,-0.029984765 +72.89953112602234,0.48999998,0.0,0.0,0.0,-0.029984765 +72.91123509407043,0.48999998,0.0,0.0,0.0,-0.06143559 +72.91964101791382,0.48999998,0.0,0.0,0.0,-0.06143559 +72.92960214614868,0.48999998,0.0,0.0,0.0,-0.06143559 +72.94017100334167,0.48999998,0.0,0.0,0.0,-0.06143559 +72.94980502128601,0.48999998,0.0,0.0,0.0,-0.06143559 +72.95962405204773,0.48,0.0,0.0,0.0,-0.050335295 +72.97079992294312,0.48,0.0,0.0,0.0,-0.050335295 +72.97973299026489,0.48,0.0,0.0,0.0,-0.050335295 +72.99047493934631,0.48,0.0,0.0,0.0,-0.050335295 +73.00331807136536,0.48,0.0,0.0,0.0,-0.050335295 +73.01101613044739,0.48,0.0,0.0,0.0,-0.054035395 +73.01962113380432,0.48,0.0,0.0,0.0,-0.054035395 +73.0295979976654,0.48,0.0,0.0,0.0,-0.054035395 +73.0395131111145,0.48,0.0,0.0,0.0,-0.054035395 +73.04974293708801,0.48,0.0,0.0,0.0,-0.054035395 +73.05986714363098,0.48,0.0,0.0,0.0,-0.026284654 +73.06965112686157,0.48,0.0,0.0,0.0,-0.026284654 +73.08329892158508,0.48,0.0,0.0,0.0,-0.026284654 +73.0903549194336,0.48,0.0,0.0,0.0,-0.026284654 +73.09969806671143,0.48,0.0,0.0,0.0,-0.026284654 +73.11051607131958,0.48,0.0,0.0,0.0,-0.002234026 +73.119637966156,0.47,0.0,0.0,0.0,-0.002234026 +73.12958407402039,0.47,0.0,0.0,0.0,-0.002234026 +73.13967895507812,0.47,0.0,0.0,0.0,-0.002234026 +73.14960312843323,0.47,0.0,0.0,0.0,-0.002234026 +73.15957999229431,0.47,0.0,0.0,0.0,-0.002234026 +73.17341113090515,0.45999998,0.0,0.0,0.0,-0.002234026 +73.18370199203491,0.47,0.0,0.0,0.0,-0.002234026 +73.18990898132324,0.47,0.0,0.0,0.0,-0.002234026 +73.20175504684448,0.47,0.0,0.0,0.0,-0.002234026 +73.21075892448425,0.47,0.0,0.0,0.0,0.010716328 +73.21964812278748,0.47,0.0,0.0,0.0,0.010716328 +73.22956800460815,0.47,0.0,0.0,0.0,0.010716328 +73.24417996406555,0.48,0.0,0.0,0.0,0.010716328 +73.25258898735046,0.48,0.0,0.0,0.0,0.010716328 +73.26102614402771,0.48,0.0,0.0,0.0,-0.0040840744 +73.27369904518127,0.48,0.0,0.0,0.0,-0.0040840744 +73.27957892417908,0.48,0.0,0.0,0.0,-0.0040840744 +73.29150605201721,0.48,0.0,0.0,0.0,-0.0040840744 +73.3004469871521,0.48,0.0,0.0,0.0,-0.0040840744 +73.30996203422546,0.48,0.0,0.0,0.0,-0.024434604 +73.31945204734802,0.48999998,0.0,0.0,0.0,-0.024434604 +73.32961106300354,0.48999998,0.0,0.0,0.0,-0.024434604 +73.3400981426239,0.48999998,0.0,0.0,0.0,-0.024434604 +73.35029006004333,0.48999998,0.0,0.0,0.0,-0.024434604 +73.35959196090698,0.48999998,0.0,0.0,0.0,-0.0040840744 +73.37001013755798,0.48999998,0.0,0.0,0.0,-0.0040840744 +73.38058710098267,0.48999998,0.0,0.0,0.0,-0.0040840744 +73.38950610160828,0.48999998,0.0,0.0,0.0,-0.0040840744 +73.40008401870728,0.48999998,0.0,0.0,0.0,-0.0040840744 +73.40943813323975,0.48999998,0.0,0.0,0.0,-0.0077841706 +73.4196310043335,0.48,0.0,0.0,0.0,-0.0077841706 +73.42961311340332,0.48,0.0,0.0,0.0,-0.0077841706 +73.44296407699585,0.48,0.0,0.0,0.0,-0.0077841706 +73.45160603523254,0.48,0.0,0.0,0.0,-0.0077841706 +73.46037793159485,0.48,0.0,0.0,0.0,0.0014660703 +73.46968603134155,0.48,0.0,0.0,0.0,0.0014660703 +73.47947192192078,0.48,0.0,0.0,0.0,0.0014660703 +73.49019598960876,0.48,0.0,0.0,0.0,0.0014660703 +73.4994809627533,0.48,0.0,0.0,0.0,0.0014660703 +73.51424098014832,0.48,0.0,0.0,0.0,0.021816617 +73.51964902877808,0.48,0.0,0.0,0.0,0.021816617 +73.52960205078125,0.48999998,0.0,0.0,0.0,0.021816617 +73.53946709632874,0.48999998,0.0,0.0,0.0,0.021816617 +73.54982709884644,0.48999998,0.0,0.0,0.0,0.021816617 +73.55964612960815,0.48999998,0.0,0.0,0.0,0.008866279 +73.57122111320496,0.48,0.0,0.0,0.0,0.008866279 +73.5801990032196,0.48,0.0,0.0,0.0,0.008866279 +73.58942198753357,0.47,0.0,0.0,0.0,0.008866279 +73.60328912734985,0.45999998,0.0,0.0,0.0,0.008866279 +73.61030292510986,0.45,0.0,0.0,0.0,0.008866279 +73.62107801437378,0.44,0.0,0.0,0.0,0.008866279 +73.63001203536987,0.42,0.0,0.0,0.0,0.008866279 +73.64315891265869,0.41,0.0,0.0,0.0,0.008866279 +73.65214490890503,0.39999998,0.0,0.0,0.0,0.008866279 +73.6611340045929,0.39,0.0,0.0,0.0,0.010716328 +73.67016506195068,0.38,0.0,0.0,0.0,0.010716328 +73.67960000038147,0.37,0.0,0.0,0.0,0.010716328 +73.69212794303894,0.35999998,0.0,0.0,0.0,0.010716328 +73.70124697685242,0.35,0.0,0.0,0.0,0.010716328 +73.71019196510315,0.34,0.0,0.0,0.0,0.010716328 +73.71965003013611,0.32999998,0.0,0.0,0.0,0.010716328 +73.72960710525513,0.32,0.0,0.0,0.0,0.010716328 +73.74029207229614,0.29999998,0.0,0.0,0.0,0.010716328 +73.75108194351196,0.29,0.0,0.0,0.0,0.010716328 +73.75960397720337,0.28,0.0,0.0,0.0,-0.041085053 +73.7694981098175,0.26999998,0.0,0.0,0.0,-0.041085053 +73.77962493896484,0.26,0.0,0.0,0.0,-0.041085053 +73.79032897949219,0.24,0.0,0.0,0.0,-0.041085053 +73.80122804641724,0.22999999,0.0,0.0,0.0,-0.041085053 +73.81402111053467,0.22,0.0,0.0,0.0,-0.009634218 +73.81968092918396,0.21,0.0,0.0,0.0,-0.009634218 +73.82959198951721,0.19999999,0.0,0.0,0.0,-0.009634218 +73.84101891517639,0.19,0.0,0.0,0.0,-0.009634218 +73.85000491142273,0.17,0.0,0.0,0.0,-0.009634218 +73.85944294929504,0.16,0.0,0.0,0.0,-0.020734508 +73.8693950176239,0.14999999,0.0,0.0,0.0,-0.020734508 +73.87942790985107,0.13,0.0,0.0,0.0,-0.020734508 +73.89183902740479,0.12,0.0,0.0,0.0,-0.020734508 +73.90394711494446,0.11,0.0,0.0,0.0,-0.020734508 +73.91292405128479,0.099999994,0.0,0.0,0.0,-0.05588545 +73.9196469783783,0.089999996,0.0,0.0,0.0,-0.05588545 +73.92960214614868,0.08,0.75757575,0.75757575,0.0,-0.05588545 +73.93992400169373,0.07,5.3030305,5.3030305,0.0,-0.05588545 +73.94949507713318,0.07,9.848485,9.848485,0.0,-0.05588545 +73.95959401130676,0.06,13.636364,13.636364,0.0,-0.029984765 +73.97066807746887,0.049999997,16.666668,16.666668,0.0,-0.029984765 +73.98201513290405,0.04,20.454544,20.454544,0.0,-0.029984765 +73.99252891540527,0.04,24.242424,24.242424,0.009372071,-0.029984765 +74.000235080719,0.03,28.78788,28.78788,0.028116215,-0.029984765 +74.01185011863708,0.02,33.333336,33.333336,0.037488285,0.02921681 +74.01964092254639,0.02,37.121216,37.121216,0.046860356,0.02921681 +74.02962708473206,0.01,40.90909,40.90909,0.05623243,0.02921681 +74.03956294059753,0.01,45.454548,45.454548,0.0656045,0.02921681 +74.04952502250671,0.0,50.0,50.0,0.07497657,0.02921681 +74.0611879825592,0.0,56.060604,56.060604,0.09372071,0.032916907 +74.0742609500885,0.0,61.363636,61.363636,0.10309278,0.032916907 +74.08024311065674,0.0,65.90909,65.90909,0.11246486,0.032916907 +74.09128308296204,0.0,65.90909,65.90909,0.12183693,0.032916907 +74.10179305076599,0.0,50.757576,50.757576,0.131209,0.032916907 +74.11077213287354,0.0,37.121216,37.121216,0.14058107,0.023666665 +74.11966300010681,0.0,27.272728,27.272728,0.15932521,0.023666665 +74.12961292266846,0.0,21.212122,21.212122,0.15932521,0.023666665 +74.13968706130981,0.0,27.272728,27.272728,0.16869728,0.023666665 +74.15425205230713,0.0,34.09091,34.09091,0.18744142,0.023666665 +74.15954399108887,0.0,41.666668,41.666668,0.1968135,0.05696755 +74.17044401168823,0.0,50.0,50.0,0.1968135,0.05696755 +74.18229508399963,0.0,59.090908,59.090908,0.20618556,0.05696755 +74.18955707550049,0.0,68.18182,68.18182,0.21555763,0.05696755 +74.20008206367493,0.0,67.42425,67.42425,0.22492972,0.05696755 +74.20968008041382,0.0,62.121212,62.121212,0.23430179,-0.026284654 +74.21967506408691,0.0,56.818184,56.818184,0.23430179,-0.026284654 +74.22959494590759,0.0,53.78788,53.78788,0.23430179,-0.026284654 +74.24417901039124,0.0,53.030304,53.030304,0.25304592,-0.026284654 +74.25350308418274,0.0,53.030304,53.030304,0.25304592,-0.026284654 +74.26020908355713,0.0,53.030304,53.030304,0.262418,-0.029984765 +74.27134799957275,0.0,53.78788,53.78788,0.262418,-0.029984765 +74.28023791313171,0.0,53.030304,53.030304,0.28116214,-0.029984765 +74.2906129360199,0.0,53.030304,53.030304,0.28116214,-0.029984765 +74.29960298538208,0.0,53.78788,53.78788,0.2905342,-0.029984765 +74.30973601341248,0.0,55.30303,55.30303,0.29990628,-0.020734508 +74.31968903541565,0.0,56.818184,56.818184,0.2905342,-0.020734508 +74.32959508895874,0.0,58.333332,58.333332,0.29990628,-0.020734508 +74.34239101409912,0.0,59.090908,59.090908,0.29990628,-0.020734508 +74.35148000717163,0.0,59.090908,59.090908,0.2905342,-0.020734508 +74.35964012145996,0.0,59.848484,59.848484,0.2905342,-0.03553491 +74.37156200408936,0.0,61.363636,61.363636,0.29990628,-0.03553491 +74.38054895401001,0.0,62.878788,62.878788,0.29990628,-0.03553491 +74.38952803611755,0.0,65.15151,65.15151,0.29990628,-0.03553491 +74.39984107017517,0.0,67.42425,67.42425,0.30927837,-0.03553491 +74.4102430343628,0.0,68.18182,68.18182,0.30927837,0.034766953 +74.4196560382843,0.0,68.18182,68.18182,0.31865042,0.034766953 +74.42961192131042,0.0,68.93939,68.93939,0.3280225,0.034766953 +74.44054913520813,0.0,69.69697,69.69697,0.33739457,0.034766953 +74.44945001602173,0.0,71.21212,71.21212,0.33739457,0.034766953 +74.46147298812866,0.0,72.72727,72.72727,0.33739457,0.077318095 +74.47048902511597,0.0,73.48485,73.48485,0.33739457,0.077318095 +74.47947406768799,0.0,72.72727,72.72727,0.3280225,0.077318095 +74.48991394042969,0.0,71.969696,71.969696,0.3280225,0.077318095 +74.50042009353638,0.0,71.21212,71.21212,0.3280225,0.077318095 +74.509437084198,0.0,71.21212,71.21212,0.3280225,0.077318095 +74.52027201652527,0.0,70.454544,70.454544,0.3280225,0.077318095 +74.5296049118042,0.0,70.454544,70.454544,0.3280225,0.077318095 +74.53945302963257,0.0,69.69697,69.69697,0.3280225,0.077318095 +74.55004596710205,0.0,68.18182,68.18182,0.3280225,0.077318095 +74.5596399307251,0.0,65.90909,65.90909,0.3280225,0.07176795 +74.57096695899963,0.0,64.393936,64.393936,0.31865042,0.07176795 +74.5798499584198,0.0,62.121212,62.121212,0.31865042,0.07176795 +74.59058403968811,0.0,60.606064,60.606064,0.31865042,0.07176795 +74.59963011741638,0.0,59.090908,59.090908,0.31865042,0.07176795 +74.60978507995605,0.0,56.818184,56.818184,0.31865042,0.09211848 +74.61968302726746,0.0,54.545456,54.545456,0.31865042,0.09211848 +74.62963604927063,0.0,51.515152,51.515152,0.31865042,0.09211848 +74.6413049697876,0.0,49.242424,49.242424,0.30927837,0.09211848 +74.65029811859131,0.0,47.727272,47.727272,0.30927837,0.09211848 +74.65954399108887,0.0,46.969696,46.969696,0.30927837,0.077318095 +74.6700599193573,0.0,46.21212,46.21212,0.29990628,0.077318095 +74.68077993392944,0.0,46.21212,46.21212,0.29990628,0.077318095 +74.68976497650146,0.0,45.454548,45.454548,0.29990628,0.077318095 +74.70293593406677,0.0,43.939392,43.939392,0.30927837,0.077318095 +74.71125602722168,0.0,42.424244,42.424244,0.30927837,0.10321877 +74.71967101097107,0.0,40.90909,40.90909,0.31865042,0.10321877 +74.72960114479065,0.0,40.90909,40.90909,0.31865042,0.10321877 +74.7402560710907,0.0,40.90909,40.90909,0.30927837,0.10321877 +74.75110197067261,0.0,40.90909,40.90909,0.30927837,0.10321877 +74.75964212417603,0.0,40.151516,40.151516,0.31865042,0.23087217 +74.77008104324341,0.0,38.636364,38.636364,0.31865042,0.23087217 +74.77955508232117,0.0,36.363636,36.363636,0.30927837,0.23087217 +74.79035496711731,0.0,34.09091,34.09091,0.31865042,0.23087217 +74.80117106437683,0.0,31.818182,31.818182,0.31865042,0.23087217 +74.81219792366028,0.0,29.545454,29.545454,0.31865042,0.26417306 +74.81969594955444,0.0,25.757576,25.757576,0.31865042,0.26417306 +74.8296251296997,0.0,21.212122,21.212122,0.30927837,0.26417306 +74.84116697311401,0.0,21.969696,21.969696,0.30927837,0.26417306 +74.8501980304718,0.0,21.969696,21.969696,0.30927837,0.26417306 +74.86110210418701,0.0,21.969696,21.969696,0.29990628,0.23272221 +74.86942195892334,0.0,21.969696,21.969696,0.30927837,0.23272221 +74.88000512123108,0.0,21.969696,21.969696,0.2905342,0.23272221 +74.89151000976562,0.0,21.212122,21.212122,0.28116214,0.23272221 +74.90184998512268,0.0,20.454544,20.454544,0.27179006,0.23272221 +74.90939712524414,0.0,18.939394,18.939394,0.262418,0.23642232 +74.91966104507446,0.0,17.424242,17.424242,0.24367386,0.23642232 +74.92960500717163,0.0,16.666668,16.666668,0.22492972,0.23642232 +74.94023299217224,0.0,15.151516,15.151516,0.21555763,0.23642232 +74.9512870311737,0.0,14.39394,14.39394,0.20618556,0.23642232 +74.95954298973083,0.0,12.878788,12.878788,0.1968135,0.29932398 +74.9713830947876,0.0,12.121212,12.121212,0.18744142,0.29932398 +74.98139309883118,0.0,10.606061,10.606061,0.16869728,0.29932398 +74.99199891090393,0.0,9.848485,9.848485,0.14995314,0.29932398 +75.00049495697021,0.0,9.090909,9.090909,0.14058107,0.29932398 +75.00999593734741,0.0,8.333334,8.333334,0.131209,0.36407572 +75.01945114135742,0.0,7.575758,7.575758,0.12183693,0.36407572 +75.02963900566101,0.0,6.818182,6.818182,0.11246486,0.36407572 +75.03955507278442,0.0,6.060606,6.060606,0.11246486,0.36407572 +75.05049014091492,0.0,5.3030305,5.3030305,0.10309278,0.36407572 +75.0595121383667,0.0,4.5454545,4.5454545,0.09372071,0.34002507 +75.06941509246826,0.0,3.787879,3.787879,0.08434864,0.34002507 +75.08178496360779,0.0,3.787879,3.787879,0.07497657,0.34002507 +75.09059405326843,0.0,3.030303,3.030303,0.0656045,0.34002507 +75.09961414337158,0.0,2.2727273,2.2727273,0.0656045,0.34002507 +75.10984802246094,0.0,2.2727273,2.2727273,0.05623243,0.36592576 +75.11968111991882,0.0,1.5151515,1.5151515,0.046860356,0.36592576 +75.12939095497131,0.0,0.75757575,0.75757575,0.046860356,0.36592576 +75.1406819820404,0.0,0.75757575,0.75757575,0.028116215,0.36592576 +75.14972305297852,0.0,0.0,0.0,0.028116215,0.36592576 +75.15963697433472,0.0,0.0,0.0,0.018744143,0.4047768 +75.16951203346252,0.0,0.0,0.0,0.009372071,0.4047768 +75.17976307868958,0.0,0.0,0.0,0.0,0.4047768 +75.18982291221619,0.0,0.0,0.0,0.0,0.4047768 +75.1995780467987,0.01,0.0,0.0,0.0,0.4047768 +75.21005296707153,0.01,0.0,0.0,0.0,0.4047768 +75.21943402290344,0.01,0.0,0.0,0.0,0.4047768 +75.22960209846497,0.01,0.0,0.0,0.0,0.4047768 +75.2398841381073,0.01,0.0,0.0,0.0,0.4047768 +75.24940395355225,0.01,0.0,0.0,0.0,0.4047768 +75.25993704795837,0.01,0.0,0.0,0.0,0.52502996 +75.27074909210205,0.01,0.0,0.0,0.0,0.52502996 +75.27973413467407,0.01,0.0,0.0,0.0,0.52502996 +75.2901840209961,0.01,0.0,0.0,0.0,0.52502996 +75.29954695701599,0.01,0.0,0.0,0.0,0.52502996 +75.30939793586731,0.01,0.0,0.0,0.0,0.59533185 +75.32107305526733,0.01,0.0,0.0,0.0,0.59533185 +75.33005809783936,0.01,0.0,0.0,0.0,0.59533185 +75.34010291099548,0.01,0.0,0.0,0.0,0.59533185 +75.35014796257019,0.01,0.0,0.0,0.0,0.59533185 +75.35964512825012,0.01,0.0,0.0,0.0,0.5675811 +75.36965203285217,0.01,0.0,0.0,0.0,0.5675811 +75.37963700294495,0.01,0.0,0.0,0.0,0.5675811 +75.39053702354431,0.01,0.0,0.0,0.0,0.5675811 +75.3995509147644,0.01,0.0,0.0,0.0,0.5675811 +75.41123008728027,0.01,0.0,0.0,0.0,0.6119823 +75.41966414451599,0.01,0.0,0.0,0.0,0.6119823 +75.42940998077393,0.02,0.0,0.0,0.0,0.6119823 +75.44038605690002,0.02,0.0,0.0,0.0,0.6119823 +75.45056200027466,0.02,0.0,0.0,0.0,0.6119823 +75.45955801010132,0.03,0.0,0.0,0.0,0.66193354 +75.47162008285522,0.03,0.0,0.0,0.0,0.66193354 +75.48063707351685,0.03,0.0,0.0,0.0,0.66193354 +75.48962807655334,0.04,0.0,0.0,0.0,0.66193354 +75.50047612190247,0.04,0.0,0.0,0.0,0.66193354 +75.51041293144226,0.04,0.0,0.0,0.0,0.7303854 +75.51943111419678,0.04,0.0,0.0,0.0,0.7303854 +75.52961993217468,0.04,0.0,0.0,0.0,0.7303854 +75.54049611091614,0.049999997,0.0,0.0,0.0,0.7303854 +75.54948997497559,0.049999997,0.0,0.0,0.0,0.7303854 +75.55965399742126,0.049999997,0.0,0.0,0.0,0.75073594 +75.57071805000305,0.049999997,0.0,0.0,0.0,0.75073594 +75.57972311973572,0.06,0.0,0.0,0.0,0.75073594 +75.5895299911499,0.06,0.0,0.0,0.0,0.75073594 +75.6005871295929,0.06,0.0,0.0,0.0,0.75073594 +75.6096179485321,0.06,0.0,0.0,0.0,0.7414857 +75.61966896057129,0.06,0.0,0.0,0.0,0.7414857 +75.62964200973511,0.06,0.0,0.0,0.0,0.7414857 +75.64280009269714,0.07,0.0,0.0,0.0,0.7414857 +75.65182304382324,0.07,0.0,0.0,0.0,0.7414857 +75.66079092025757,0.07,0.0,0.0,0.0,0.7488859 +75.66969203948975,0.07,0.0,0.0,0.0,0.7488859 +75.68176198005676,0.07,0.0,0.0,0.0,0.7488859 +75.68971014022827,0.08,0.0,0.0,0.0,0.7488859 +75.6997880935669,0.08,0.0,0.0,0.0,0.7488859 +75.71071696281433,0.08,0.0,0.0,0.0,0.7488859 +75.71956205368042,0.089999996,0.0,0.0,0.0,0.7488859 +75.72961807250977,0.089999996,0.0,0.0,0.0,0.7488859 +75.74028301239014,0.099999994,0.0,0.0,0.0,0.7488859 +75.74987292289734,0.099999994,0.0,0.0,0.0,0.7488859 +75.75966811180115,0.099999994,0.0,0.0,0.0,0.72668535 +75.77194094657898,0.099999994,0.0,0.0,0.0,0.72668535 +75.78095507621765,0.11,0.0,0.0,0.0,0.72668535 +75.78978705406189,0.11,0.0,0.0,0.0,0.72668535 +75.8012421131134,0.11,0.0,0.0,0.0,0.72668535 +75.81008696556091,0.12,0.0,0.0,0.0,0.53428024 +75.81971502304077,0.12,0.0,0.0,0.0,0.53428024 +75.82962703704834,0.13,0.0,0.0,0.0,0.53428024 +75.8410530090332,0.14,0.0,0.0,0.0,0.53428024 +75.84953308105469,0.14999999,0.0,0.0,0.0,0.53428024 +75.86213111877441,0.17,0.0,0.0,0.0,0.3233746 +75.87113904953003,0.17999999,0.0,0.0,0.0,0.3233746 +75.88015294075012,0.19,0.0,0.0,0.0,0.3233746 +75.89116501808167,0.19999999,0.0,0.0,0.0,0.3233746 +75.90015912055969,0.19999999,0.0,0.0,0.0,0.3233746 +75.91023206710815,0.21,0.0,0.0,0.0,0.45287812 +75.91967511177063,0.22,0.0,0.0,0.0,0.45287812 +75.9296281337738,0.22,0.0,0.0,0.0,0.45287812 +75.93973803520203,0.22999999,0.0,0.0,0.0,0.45287812 +75.94980907440186,0.22999999,0.0,0.0,0.0,0.45287812 +75.95968198776245,0.24,0.0,0.0,0.0,0.46027827 +75.97037291526794,0.25,0.0,0.0,0.0,0.46027827 +75.98108100891113,0.26,0.0,0.0,0.0,0.46027827 +75.99009799957275,0.26,0.0,0.0,0.0,0.46027827 +76.00329613685608,0.26999998,0.0,0.0,0.0,0.46027827 +76.01176404953003,0.28,0.0,0.0,0.0,0.4917291 +76.01968002319336,0.29,0.0,0.0,0.0,0.4917291 +76.02964091300964,0.29,0.0,0.0,0.0,0.4917291 +76.04250502586365,0.29999998,0.0,0.0,0.0,0.4917291 +76.04943013191223,0.29999998,0.0,0.0,0.0,0.4917291 +76.06036496162415,0.31,0.0,0.0,0.0,0.5009793 +76.06954193115234,0.31,0.0,0.0,0.0,0.5009793 +76.07948207855225,0.32,0.0,0.0,0.0,0.5009793 +76.09253191947937,0.32,0.0,0.0,0.0,0.5009793 +76.10243797302246,0.32999998,0.0,0.0,0.0,0.5009793 +76.11145305633545,0.32999998,0.0,0.0,0.0,0.49542922 +76.11967611312866,0.34,0.0,0.0,0.0,0.49542922 +76.12948203086853,0.34,0.0,0.0,0.0,0.49542922 +76.14170002937317,0.35,0.0,0.0,0.0,0.49542922 +76.15072202682495,0.35,0.0,0.0,0.0,0.49542922 +76.1596851348877,0.35999998,0.0,0.0,0.0,0.51392967 +76.16988706588745,0.35999998,0.0,0.0,0.0,0.51392967 +76.18038702011108,0.35999998,0.0,0.0,0.0,0.51392967 +76.19258999824524,0.37,0.0,0.0,0.0,0.51392967 +76.19949698448181,0.37,0.0,0.0,0.0,0.51392967 +76.20985412597656,0.37,0.0,0.0,0.0,0.4843289 +76.21963095664978,0.38,0.0,0.0,0.0,0.4843289 +76.23092699050903,0.38,0.0,0.0,0.0,0.4843289 +76.23964500427246,0.38,0.0,0.0,0.0,0.4843289 +76.24990701675415,0.38,0.0,0.0,0.0,0.4843289 +76.25979709625244,0.39,0.0,0.0,0.0,0.50652945 +76.2704861164093,0.39,0.0,0.0,0.0,0.50652945 +76.28272891044617,0.39,0.0,0.0,0.0,0.50652945 +76.28951907157898,0.39999998,0.0,0.0,0.0,0.50652945 +76.30079913139343,0.39999998,0.0,0.0,0.0,0.50652945 +76.30977892875671,0.39999998,0.0,0.0,0.0,0.3603756 +76.31969904899597,0.41,0.0,0.0,0.0,0.3603756 +76.32963514328003,0.41,0.0,0.0,0.0,0.3603756 +76.33990693092346,0.41,0.0,0.0,0.0,0.3603756 +76.34973096847534,0.41,0.0,0.0,0.0,0.3603756 +76.3596830368042,0.41,0.0,0.0,0.0,0.28822368 +76.37288498878479,0.42,0.0,0.0,0.0,0.28822368 +76.3796010017395,0.42,0.0,0.0,0.0,0.28822368 +76.3909170627594,0.42,0.0,0.0,0.0,0.28822368 +76.3999330997467,0.42,0.0,0.0,0.0,0.28822368 +76.41110301017761,0.42,0.0,0.0,0.0,0.29562387 +76.41962504386902,0.42,0.0,0.0,0.0,0.29562387 +76.43025803565979,0.42999998,0.0,0.0,0.0,0.29562387 +76.43964791297913,0.42999998,0.0,0.0,0.0,0.29562387 +76.45356893539429,0.42999998,0.0,0.0,0.0,0.29562387 +76.46132493019104,0.42999998,0.0,0.0,0.0,0.26787314 +76.46994996070862,0.42999998,0.0,0.0,0.0,0.26787314 +76.48028898239136,0.42999998,0.0,0.0,0.0,0.26787314 +76.49007201194763,0.42999998,0.0,0.0,0.0,0.26787314 +76.50241208076477,0.44,0.0,0.0,0.0,0.26787314 +76.51143312454224,0.44,0.0,0.0,0.0,0.28822368 +76.51963591575623,0.44,0.0,0.0,0.0,0.28822368 +76.52944993972778,0.44,0.0,0.0,0.0,0.28822368 +76.54261112213135,0.44,0.0,0.0,0.0,0.28822368 +76.55152702331543,0.44,0.0,0.0,0.0,0.28822368 +76.55968594551086,0.44,0.0,0.0,0.0,0.29747394 +76.57065606117249,0.44,0.0,0.0,0.0,0.29747394 +76.5802071094513,0.44,0.0,0.0,0.0,0.29747394 +76.59238600730896,0.44,0.0,0.0,0.0,0.29747394 +76.60002303123474,0.44,0.0,0.0,0.0,0.29747394 +76.61056113243103,0.44,0.0,0.0,0.0,0.30302405 +76.6195330619812,0.44,0.0,0.0,0.0,0.30302405 +76.63167691230774,0.44,0.0,0.0,0.0,0.30302405 +76.63960695266724,0.44,0.0,0.0,0.0,0.30302405 +76.64946699142456,0.44,0.0,0.0,0.0,0.30302405 +76.65938901901245,0.44,0.0,0.0,0.0,0.22532202 +76.67032814025879,0.44,0.0,0.0,0.0,0.22532202 +76.67985200881958,0.45,0.0,0.0,0.0,0.22532202 +76.69149613380432,0.45,0.0,0.0,0.0,0.22532202 +76.70048904418945,0.45,0.0,0.0,0.0,0.22532202 +76.70948505401611,0.45,0.0,0.0,0.0,0.21792182 +76.71965503692627,0.45,0.0,0.0,0.0,0.21792182 +76.72960996627808,0.45,0.0,0.0,0.0,0.21792182 +76.74019193649292,0.45,0.0,0.0,0.0,0.21792182 +76.75143504142761,0.45,0.0,0.0,0.0,0.21792182 +76.7596960067749,0.45,0.0,0.0,0.0,0.20312142 +76.7694640159607,0.45,0.0,0.0,0.0,0.20312142 +76.78143191337585,0.45,0.0,0.0,0.0,0.20312142 +76.78953194618225,0.45,0.0,0.0,0.0,0.20312142 +76.7994339466095,0.45,0.0,0.0,0.0,0.20312142 +76.80974912643433,0.45,0.0,0.0,0.0,0.22162192 +76.81969809532166,0.45,0.0,0.0,0.0,0.22162192 +76.82963514328003,0.45,0.0,0.0,0.0,0.22162192 +76.8415961265564,0.45,0.0,0.0,0.0,0.22162192 +76.85057711601257,0.45,0.0,0.0,0.0,0.22162192 +76.8595860004425,0.45,0.0,0.0,0.0,0.21237166 +76.8713710308075,0.45,0.0,0.0,0.0,0.21237166 +76.88037896156311,0.45,0.0,0.0,0.0,0.21237166 +76.88990998268127,0.45,0.0,0.0,0.0,0.21237166 +76.89949893951416,0.45,0.0,0.0,0.0,0.21237166 +76.91236305236816,0.45,0.0,0.0,0.0,0.22717209 +76.91963791847229,0.45,0.0,0.0,0.0,0.22717209 +76.93169498443604,0.45,0.0,0.0,0.0,0.22717209 +76.94070196151733,0.44,0.0,0.0,0.0,0.22717209 +76.94971704483032,0.44,0.0,0.0,0.0,0.22717209 +76.95971202850342,0.44,0.0,0.0,0.0,0.19387117 +76.9696729183197,0.44,0.0,0.0,0.0,0.19387117 +76.98038506507874,0.44,0.0,0.0,0.0,0.19387117 +76.9901659488678,0.42999998,0.0,0.0,0.0,0.19387117 +77.0037829875946,0.42999998,0.0,0.0,0.0,0.19387117 +77.0121009349823,0.42999998,0.0,0.0,0.0,0.12911949 +77.02181696891785,0.42999998,0.0,0.0,0.0,0.12911949 +77.02940106391907,0.42999998,0.0,0.0,0.0,0.12911949 +77.03981494903564,0.42999998,0.0,0.0,0.0,0.12911949 +77.05021095275879,0.44,0.0,0.0,0.0,0.12911949 +77.06026697158813,0.44,0.0,0.0,0.0,0.10876893 +77.07056593894958,0.42999998,0.0,0.0,0.0,0.10876893 +77.07957291603088,0.42999998,0.0,0.0,0.0,0.10876893 +77.09276509284973,0.42999998,0.0,0.0,0.0,0.10876893 +77.10290098190308,0.42999998,0.0,0.0,0.0,0.10876893 +77.11180305480957,0.42999998,0.0,0.0,0.0,0.1383697 +77.11964297294617,0.42999998,0.0,0.0,0.0,0.1383697 +77.1299319267273,0.42,0.0,0.0,0.0,0.1383697 +77.13944506645203,0.42,0.0,0.0,0.0,0.1383697 +77.15022897720337,0.42,0.0,0.0,0.0,0.1383697 +77.15969395637512,0.42,0.0,0.0,0.0,0.1420698 +77.16974902153015,0.42,0.0,0.0,0.0,0.1420698 +77.17982792854309,0.41,0.0,0.0,0.0,0.1420698 +77.19267106056213,0.41,0.0,0.0,0.0,0.1420698 +77.20143008232117,0.41,0.0,0.0,0.0,0.1420698 +77.21048307418823,0.41,0.0,0.0,0.0,0.14947 +77.21939206123352,0.41,0.0,0.0,0.0,0.14947 +77.23115396499634,0.41,0.0,0.0,0.0,0.14947 +77.24015212059021,0.41,0.0,0.0,0.0,0.14947 +77.25026607513428,0.41,0.0,0.0,0.0,0.14947 +77.2596161365509,0.39999998,0.0,0.0,0.0,0.16797051 +77.27282905578613,0.39999998,0.0,0.0,0.0,0.16797051 +77.28097295761108,0.39999998,0.0,0.0,0.0,0.16797051 +77.29064702987671,0.39,0.0,0.0,0.0,0.16797051 +77.29951596260071,0.39,0.0,0.0,0.0,0.16797051 +77.31019711494446,0.39,0.0,0.0,0.0,0.19387117 +77.319669008255,0.39,0.0,0.0,0.0,0.19387117 +77.33009195327759,0.39,0.0,0.0,0.0,0.19387117 +77.34106993675232,0.38,0.0,0.0,0.0,0.19387117 +77.35007500648499,0.38,0.0,0.0,0.0,0.19387117 +77.3597059249878,0.38,0.0,0.0,0.0,0.18462092 +77.37066006660461,0.38,0.0,0.0,0.0,0.18462092 +77.37969493865967,0.38,0.0,0.0,0.0,0.18462092 +77.39013195037842,0.37,0.0,0.0,0.0,0.18462092 +77.40029191970825,0.37,0.0,0.0,0.0,0.18462092 +77.4095139503479,0.37,0.0,0.0,0.0,0.1827709 +77.41964197158813,0.35999998,0.0,0.0,0.0,0.1827709 +77.43125009536743,0.35999998,0.0,0.0,0.0,0.1827709 +77.44027209281921,0.35,0.0,0.0,0.0,0.1827709 +77.45094513893127,0.35,0.0,0.0,0.0,0.1827709 +77.45985794067383,0.35,0.0,0.0,0.0,0.20682153 +77.4723870754242,0.34,0.0,0.0,0.0,0.20682153 +77.48142313957214,0.34,0.0,0.0,0.0,0.20682153 +77.49042510986328,0.34,0.0,0.0,0.0,0.20682153 +77.49944305419922,0.34,0.0,0.0,0.0,0.20682153 +77.50998592376709,0.34,0.0,0.0,0.0,0.1457699 +77.51941013336182,0.34,0.0,0.0,0.0,0.1457699 +77.52960991859436,0.32999998,0.0,0.0,0.0,0.1457699 +77.53944993019104,0.32999998,0.0,0.0,0.0,0.1457699 +77.55349612236023,0.32999998,0.0,0.0,0.0,0.1457699 +77.5597231388092,0.32,0.0,0.0,0.0,0.16427042 +77.57154297828674,0.32,0.0,0.0,0.0,0.16427042 +77.58054494857788,0.32,0.0,0.0,0.0,0.16427042 +77.58956813812256,0.32,0.0,0.0,0.0,0.16427042 +77.59991097450256,0.32,0.0,0.0,0.0,0.16427042 +77.61126399040222,0.32,0.0,0.0,0.0,0.1457699 +77.61967611312866,0.32,0.0,0.0,0.0,0.1457699 +77.62963008880615,0.32,0.0,0.0,0.0,0.1457699 +77.64037299156189,0.32,0.0,0.0,0.0,0.1457699 +77.64943099021912,0.32,0.0,0.0,0.0,0.1457699 +77.66163492202759,0.32999998,0.0,0.0,0.0,0.17722073 +77.6706531047821,0.32999998,0.0,0.0,0.0,0.17722073 +77.67966294288635,0.32,0.0,0.0,0.0,0.17722073 +77.68986797332764,0.32,0.0,0.0,0.0,0.17722073 +77.70032596588135,0.32,0.0,0.0,0.0,0.17722073 +77.71077799797058,0.32,0.0,0.0,0.0,0.21422173 +77.71966409683228,0.31,0.0,0.0,0.0,0.21422173 +77.73374104499817,0.31,0.0,0.0,0.0,0.21422173 +77.73965096473694,0.31,0.0,0.0,0.0,0.21422173 +77.75174593925476,0.31,0.0,0.0,0.0,0.21422173 +77.75972199440002,0.31,0.0,0.0,0.0,0.1827709 +77.76941990852356,0.31,0.0,0.0,0.0,0.1827709 +77.7798159122467,0.32,0.0,0.0,0.0,0.1827709 +77.79194808006287,0.32,0.0,0.0,0.0,0.1827709 +77.79980611801147,0.32999998,0.0,0.0,0.0,0.1827709 +77.81000399589539,0.32999998,0.0,0.0,0.0,0.20127137 +77.8196759223938,0.32999998,0.0,0.0,0.0,0.20127137 +77.8323929309845,0.32999998,0.0,0.0,0.0,0.20127137 +77.84185791015625,0.32,0.0,0.0,0.0,0.20127137 +77.85088300704956,0.32,0.0,0.0,0.0,0.20127137 +77.85988903045654,0.31,0.0,0.0,0.0,0.19387117 +77.86954593658447,0.31,0.0,0.0,0.0,0.19387117 +77.88215613365173,0.29999998,0.0,0.0,0.0,0.19387117 +77.89117002487183,0.29999998,0.0,0.0,0.0,0.19387117 +77.89943313598633,0.29999998,0.0,0.0,0.0,0.19387117 +77.91168403625488,0.29,0.0,0.0,0.0,0.23087217 +77.92270112037659,0.29999998,0.0,0.0,0.0,0.23087217 +77.93094491958618,0.29999998,0.0,0.0,0.0,0.23087217 +77.93966603279114,0.29999998,0.0,0.0,0.0,0.23087217 +77.94970798492432,0.29999998,0.0,0.0,0.0,0.23087217 +77.95964694023132,0.29999998,0.0,0.0,0.0,0.22717209 +77.97232007980347,0.29999998,0.0,0.0,0.0,0.22717209 +77.98133111000061,0.29999998,0.0,0.0,0.0,0.22717209 +77.99035000801086,0.29999998,0.0,0.0,0.0,0.22717209 +78.00177597999573,0.29999998,0.0,0.0,0.0,0.22717209 +78.01204013824463,0.29999998,0.0,0.0,0.0,0.20312142 +78.01967906951904,0.29999998,0.0,0.0,0.0,0.20312142 +78.02946496009827,0.29999998,0.0,0.0,0.0,0.20312142 +78.03999996185303,0.29,0.0,0.0,0.0,0.20312142 +78.04960203170776,0.29,0.0,0.0,0.0,0.20312142 +78.06250095367432,0.29,0.0,0.0,0.0,0.21792182 +78.07152009010315,0.29,0.0,0.0,0.0,0.21792182 +78.08052492141724,0.29,0.0,0.0,0.0,0.21792182 +78.08955502510071,0.29,0.0,0.0,0.0,0.21792182 +78.1002140045166,0.29,0.0,0.0,0.0,0.21792182 +78.10998892784119,0.28,0.0,0.0,0.0,0.21237166 +78.11944198608398,0.28,0.0,0.0,0.0,0.21237166 +78.13022899627686,0.28,0.0,0.0,0.0,0.21237166 +78.13953495025635,0.28,0.0,0.0,0.0,0.21237166 +78.15267992019653,0.28,0.0,0.0,0.0,0.21237166 +78.15948390960693,0.28,0.0,0.0,0.0,0.1790708 +78.17069697380066,0.26999998,0.0,0.0,0.0,0.1790708 +78.17973709106445,0.26999998,0.0,0.0,0.0,0.1790708 +78.19017100334167,0.26999998,0.0,0.0,0.0,0.1790708 +78.2013521194458,0.26999998,0.0,0.0,0.0,0.1790708 +78.21135711669922,0.26999998,0.0,0.0,0.0,0.1383697 +78.21967911720276,0.26999998,0.0,0.0,0.0,0.1383697 +78.22940611839294,0.26999998,0.0,0.0,0.0,0.1383697 +78.24232506752014,0.26999998,0.0,0.0,0.0,0.1383697 +78.25002098083496,0.26999998,0.0,0.0,0.0,0.1383697 +78.26089310646057,0.26999998,0.0,0.0,0.0,0.1383697 +78.26992011070251,0.26,0.0,0.0,0.0,0.1383697 +78.28327512741089,0.26,0.0,0.0,0.0,0.1383697 +78.28947710990906,0.25,0.0,0.0,0.0,0.1383697 +78.30139994621277,0.25,0.0,0.0,0.0,0.1383697 +78.31039595603943,0.25,0.0,0.0,0.0,0.13651967 +78.31959295272827,0.25,0.0,0.0,0.0,0.13651967 +78.3326461315155,0.24,0.0,0.0,0.0,0.13651967 +78.34152603149414,0.24,0.0,0.0,0.0,0.13651967 +78.35044693946838,0.24,0.0,0.0,0.0,0.13651967 +78.35974502563477,0.24,0.0,0.0,0.0,0.27157325 +78.37335205078125,0.22999999,0.0,0.0,0.0,0.27157325 +78.3813591003418,0.22999999,0.0,0.0,0.0,0.27157325 +78.38967990875244,0.22999999,0.0,0.0,0.0,0.27157325 +78.40034699440002,0.22,0.0,0.0,0.0,0.27157325 +78.40966200828552,0.21,0.0,0.0,0.0,0.21237166 +78.41947197914124,0.21,0.0,0.0,0.0,0.21237166 +78.43059706687927,0.19999999,0.0,0.0,0.0,0.21237166 +78.43950295448303,0.19999999,0.0,0.0,0.0,0.21237166 +78.44974899291992,0.19,0.0,0.0,0.0,0.21237166 +78.46330094337463,0.19,0.0,0.0,0.0,0.17722073 +78.4715850353241,0.19,0.0,0.0,0.0,0.17722073 +78.48126697540283,0.19,0.0,0.0,0.0,0.17722073 +78.49027109146118,0.19,0.0,0.0,0.0,0.17722073 +78.49976205825806,0.19,0.0,0.0,0.0,0.17722073 +78.50946998596191,0.17999999,0.0,0.0,0.0,0.18462092 +78.51962399482727,0.17999999,0.0,0.0,0.0,0.18462092 +78.53142809867859,0.17999999,0.0,0.0,0.0,0.18462092 +78.53983211517334,0.17999999,0.0,0.0,0.0,0.18462092 +78.54946208000183,0.17999999,0.0,0.0,0.0,0.18462092 +78.55976510047913,0.17,0.0,0.0,0.0,0.19202115 +78.5697889328003,0.17,0.0,0.0,0.0,0.19202115 +78.58020901679993,0.17,0.0,0.0,0.0,0.19202115 +78.58986210823059,0.17,0.0,0.0,0.0,0.19202115 +78.59980010986328,0.16,0.0,0.0,0.0,0.19202115 +78.61016011238098,0.16,0.0,0.0,0.0,0.15132006 +78.61939692497253,0.16,0.0,0.0,0.0,0.15132006 +78.63061904907227,0.16,0.0,0.0,0.0,0.15132006 +78.63964104652405,0.16,0.0,0.0,0.0,0.15132006 +78.65216994285583,0.16,0.0,0.0,0.0,0.15132006 +78.66045498847961,0.16,0.0,0.0,0.0,0.1457699 +78.67017412185669,0.16,0.0,0.0,0.0,0.1457699 +78.67943811416626,0.14999999,0.0,0.0,0.0,0.1457699 +78.69374108314514,0.14999999,0.0,0.0,0.0,0.1457699 +78.70277309417725,0.14999999,0.0,0.0,0.0,0.1457699 +78.71180200576782,0.14999999,0.0,0.0,0.0,0.15132006 +78.71961903572083,0.14999999,0.0,0.0,0.0,0.15132006 +78.72982406616211,0.14999999,0.0,0.0,0.0,0.15132006 +78.74182295799255,0.14,0.0,0.0,0.0,0.15132006 +78.75112414360046,0.14,0.0,0.0,0.0,0.15132006 +78.75974893569946,0.14,0.0,0.0,0.0,0.15132006 +78.77006912231445,0.13,0.0,0.0,0.0,0.15132006 +78.77968907356262,0.13,0.0,0.0,0.0,0.15132006 +78.7911970615387,0.13,0.0,0.0,0.0,0.15132006 +78.80199813842773,0.13,0.0,0.0,0.0,0.15132006 +78.80948305130005,0.13,0.0,0.0,0.0,0.1346696 +78.8196930885315,0.12,0.0,0.0,0.0,0.1346696 +78.82943391799927,0.12,0.0,0.0,0.0,0.1346696 +78.8402669429779,0.12,0.0,0.0,0.0,0.1346696 +78.85002398490906,0.12,0.0,0.0,0.0,0.1346696 +78.85958313941956,0.12,0.0,0.0,0.0,0.12911949 +78.86994194984436,0.12,0.0,0.0,0.0,0.12911949 +78.88317608833313,0.12,0.0,0.0,0.0,0.12911949 +78.89218211174011,0.12,0.0,0.0,0.0,0.12911949 +78.90031504631042,0.12,0.0,0.0,0.0,0.12911949 +78.91023397445679,0.11,0.0,0.0,0.0,0.22347198 +78.9196789264679,0.11,0.0,0.0,0.0,0.22347198 +78.93098402023315,0.11,0.0,0.0,0.0,0.22347198 +78.93945908546448,0.11,0.0,0.0,0.0,0.22347198 +78.95026397705078,0.11,0.0,0.0,0.0,0.22347198 +78.95975613594055,0.11,0.0,0.0,0.0,0.24937265 +78.97333812713623,0.099999994,0.0,0.0,0.0,0.24937265 +78.98234009742737,0.099999994,0.0,0.0,0.0,0.24937265 +78.9913899898529,0.099999994,0.0,0.0,0.0,0.24937265 +79.00039100646973,0.099999994,0.0,0.0,0.0,0.24937265 +79.00942897796631,0.099999994,0.0,0.0,0.0,0.2808235 +79.01966691017151,0.099999994,0.0,0.0,0.0,0.2808235 +79.02993512153625,0.099999994,0.0,0.0,0.0,0.2808235 +79.03978300094604,0.089999996,0.0,0.0,0.0,0.2808235 +79.05344605445862,0.089999996,0.0,0.0,0.0,0.2808235 +79.0629301071167,0.089999996,0.0,0.0,0.0,0.3529754 +79.06952095031738,0.089999996,0.0,0.0,0.0,0.3529754 +79.08076405525208,0.089999996,0.0,0.0,0.0,0.3529754 +79.08966207504272,0.089999996,0.0,0.0,0.0,0.3529754 +79.09959506988525,0.08,0.0,0.0,0.0,0.3529754 +79.11085200309753,0.08,0.0,0.0,0.0,0.39182645 +79.11965107917786,0.08,0.0,0.0,0.0,0.39182645 +79.13046598434448,0.07,0.0,0.0,0.0,0.39182645 +79.13946104049683,0.07,0.0,0.0,0.0,0.39182645 +79.1513900756836,0.07,0.0,0.0,0.0,0.39182645 +79.15974593162537,0.07,0.0,0.0,0.0,0.34002507 +79.16982507705688,0.07,0.0,0.0,0.0,0.34002507 +79.18076491355896,0.06,0.0,0.0,0.0,0.34002507 +79.18980193138123,0.06,0.0,0.0,0.0,0.34002507 +79.19949197769165,0.06,0.0,0.0,0.0,0.34002507 +79.20977711677551,0.06,0.0,0.0,0.0,0.35482547 +79.21969699859619,0.06,0.0,0.0,0.0,0.35482547 +79.22960901260376,0.06,0.0,0.0,0.0,0.35482547 +79.24108099937439,0.06,0.0,0.0,0.0,0.35482547 +79.24999499320984,0.06,0.0,0.0,0.0,0.35482547 +79.2607250213623,0.06,0.0,0.0,0.0,0.3566755 +79.27098512649536,0.06,0.0,0.0,0.0,0.3566755 +79.27998304367065,0.06,0.0,0.0,0.0,0.3566755 +79.29071497917175,0.06,0.0,0.0,0.0,0.3566755 +79.29970192909241,0.07,0.0,0.0,0.0,0.3566755 +79.3107099533081,0.07,0.0,0.0,0.0,0.35482547 +79.31969809532166,0.07,0.0,0.0,0.0,0.35482547 +79.32957696914673,0.07,0.0,0.0,0.0,0.35482547 +79.34313893318176,0.07,0.0,0.0,0.0,0.35482547 +79.35097002983093,0.07,0.0,0.0,0.0,0.35482547 +79.35977005958557,0.07,0.0,0.0,0.0,0.29932398 +79.3702039718628,0.08,0.0,0.0,0.0,0.29932398 +79.38063502311707,0.08,0.0,0.0,0.0,0.29932398 +79.3896119594574,0.08,0.0,0.0,0.0,0.29932398 +79.40081405639648,0.089999996,0.0,0.0,0.0,0.29932398 +79.40982913970947,0.099999994,0.0,0.0,0.0,0.24937265 +79.41966009140015,0.11,0.0,0.0,0.0,0.24937265 +79.43259501457214,0.12,0.0,0.0,0.0,0.24937265 +79.44234991073608,0.12,0.0,0.0,0.0,0.24937265 +79.44942712783813,0.13,0.0,0.0,0.0,0.24937265 +79.4594829082489,0.13,0.0,0.0,0.0,0.23087217 +79.46942210197449,0.13,0.0,0.0,0.0,0.23087217 +79.47953200340271,0.13,0.0,0.0,0.0,0.23087217 +79.49048209190369,0.14,0.0,0.0,0.0,0.23087217 +79.49992799758911,0.14,0.0,0.0,0.0,0.23087217 +79.51210594177246,0.14,0.0,0.0,0.0,0.26602313 +79.51967692375183,0.14,0.0,0.0,0.0,0.26602313 +79.5325379371643,0.14,0.0,0.0,0.0,0.26602313 +79.54156613349915,0.14999999,0.0,0.0,0.0,0.26602313 +79.55034899711609,0.14999999,0.0,0.0,0.0,0.26602313 +79.55960392951965,0.14999999,0.0,0.0,0.0,0.43437755 +79.5694351196289,0.14999999,0.0,0.0,0.0,0.43437755 +79.5795350074768,0.16,0.0,0.0,0.0,0.43437755 +79.58945894241333,0.16,0.0,0.0,0.0,0.43437755 +79.60209608078003,0.16,0.0,0.0,0.0,0.43437755 +79.61324310302734,0.16,0.0,0.0,0.0,0.46397835 +79.6221969127655,0.16,0.0,0.0,0.0,0.46397835 +79.62968611717224,0.17,0.0,0.0,0.0,0.46397835 +79.64077997207642,0.17,0.0,0.0,0.0,0.46397835 +79.64981508255005,0.17999999,0.0,0.0,0.0,0.46397835 +79.65968108177185,0.19,0.0,0.0,0.0,0.43622762 +79.67117094993591,0.19,0.0,0.0,0.0,0.43622762 +79.68018913269043,0.19,0.0,0.0,0.0,0.43622762 +79.6947751045227,0.19999999,0.0,0.0,0.0,0.43622762 +79.70054793357849,0.19999999,0.0,0.0,0.0,0.43622762 +79.71295213699341,0.19999999,0.0,0.0,0.0,0.41402704 +79.71944999694824,0.19999999,0.0,0.0,0.0,0.41402704 +79.73094296455383,0.19999999,0.0,0.0,0.0,0.41402704 +79.73985695838928,0.19,0.0,0.0,0.0,0.41402704 +79.74980092048645,0.19,0.0,0.0,0.0,0.41402704 +79.759761095047,0.17999999,0.0,0.0,0.0,0.42512733 +79.77032995223999,0.17999999,0.0,0.0,0.0,0.42512733 +79.7824170589447,0.17,0.0,0.0,0.0,0.42512733 +79.79330801963806,0.17,0.0,0.0,0.0,0.42512733 +79.80220603942871,0.16,0.0,0.0,0.0,0.42512733 +79.80974793434143,0.14999999,0.0,0.0,0.0,0.4269774 +79.81967496871948,0.14999999,0.0,0.0,0.0,0.4269774 +79.83023309707642,0.14,0.0,0.0,0.0,0.4269774 +79.83946299552917,0.13,0.0,0.0,0.0,0.4269774 +79.84946513175964,0.13,0.0,0.0,0.0,0.4269774 +79.86047410964966,0.12,0.0,0.0,0.0,0.43437755 +79.86949610710144,0.11,0.0,0.0,0.0,0.43437755 +79.8823549747467,0.11,0.0,0.0,0.0,0.43437755 +79.89125609397888,0.099999994,0.0,0.0,0.0,0.43437755 +79.90016102790833,0.089999996,0.0,0.0,0.0,0.43437755 +79.91115093231201,0.089999996,0.0,0.0,0.0,0.3714759 +79.91968202590942,0.08,0.0,0.0,0.0,0.3714759 +79.92944407463074,0.07,0.0,0.0,0.0,0.3714759 +79.94159507751465,0.07,0.0,0.0,0.0,0.3714759 +79.94947504997253,0.06,0.0,0.0,0.0,0.3714759 +79.95961213111877,0.06,0.0,0.0,0.0,0.16797051 +79.97088408470154,0.06,0.0,0.0,0.0,0.16797051 +79.97943496704102,0.06,0.0,0.0,0.0,0.16797051 +79.99006795883179,0.06,0.0,0.0,0.0,0.16797051 +80.0010781288147,0.06,0.0,0.0,0.0,0.16797051 +80.01007795333862,0.06,0.0,0.0,0.0,0.14761995 +80.01967692375183,0.06,0.0,0.0,0.0,0.14761995 +80.03093314170837,0.06,0.0,0.0,0.0,0.14761995 +80.04070997238159,0.049999997,0.0,0.0,0.0,0.14761995 +80.04973101615906,0.049999997,0.0,0.0,0.0,0.14761995 +80.06052803993225,0.049999997,0.0,0.0,0.0,0.19387117 +80.06942701339722,0.04,0.0,0.0,0.0,0.19387117 +80.08200812339783,0.04,0.0,0.0,0.0,0.19387117 +80.09102392196655,0.04,0.0,0.0,0.0,0.19387117 +80.09998798370361,0.04,0.0,0.0,0.0,0.19387117 +80.10945796966553,0.03,0.0,0.0,0.0,0.23827238 +80.11968803405762,0.03,0.0,0.0,0.0,0.23827238 +80.13084602355957,0.03,0.0,0.0,0.0,0.23827238 +80.13984799385071,0.02,0.0,0.0,0.0,0.23827238 +80.14961004257202,0.02,0.0,0.0,0.0,0.23827238 +80.1597831249237,0.02,0.0,0.0,0.0,0.2771234 +80.1719241142273,0.01,0.0,0.0,0.0,0.2771234 +80.1809229850769,0.01,0.0,0.0,0.0,0.2771234 +80.18990206718445,0.01,0.0,0.0,0.0,0.2771234 +80.20007109642029,0.0,0.0,0.0,0.0,0.2771234 +80.21195101737976,0.0,0.0,0.0,0.0,0.3455752 +80.21970295906067,0.0,0.0,0.0,0.0,0.3455752 +80.22978711128235,0.0,0.75757575,0.75757575,0.0,0.3455752 +80.23946714401245,0.0,2.2727273,2.2727273,0.0,0.3455752 +80.25179505348206,0.0,3.787879,3.787879,0.009372071,0.3455752 +80.26181507110596,0.0,5.3030305,5.3030305,0.009372071,0.3492753 +80.27081108093262,0.0,6.060606,6.060606,0.009372071,0.3492753 +80.27954506874084,0.0,7.575758,7.575758,0.028116215,0.3492753 +80.29028105735779,0.0,9.848485,9.848485,0.037488285,0.3492753 +80.30105304718018,0.0,13.636364,13.636364,0.046860356,0.3492753 +80.3099319934845,0.0,17.424242,17.424242,0.05623243,0.34372514 +80.31972312927246,0.0,21.969696,21.969696,0.0656045,0.34372514 +80.33376097679138,0.0,25.0,25.0,0.07497657,0.34372514 +80.34236693382263,0.0,27.272728,27.272728,0.08434864,0.34372514 +80.35173106193542,0.0,29.545454,29.545454,0.09372071,0.34372514 +80.35980701446533,0.0,33.333336,33.333336,0.10309278,0.3714759 +80.36944508552551,0.0,36.363636,36.363636,0.11246486,0.3714759 +80.38047814369202,0.0,39.39394,39.39394,0.12183693,0.3714759 +80.38950800895691,0.0,40.90909,40.90909,0.12183693,0.3714759 +80.3997220993042,0.0,41.666668,41.666668,0.14058107,0.3714759 +80.41026210784912,0.0,42.424244,42.424244,0.14058107,0.40662682 +80.42365908622742,0.0,43.181816,43.181816,0.14995314,0.40662682 +80.43235611915588,0.0,44.696968,44.696968,0.14995314,0.40662682 +80.44165802001953,0.0,45.454548,45.454548,0.15932521,0.40662682 +80.4506311416626,0.0,46.21212,46.21212,0.16869728,0.40662682 +80.45961999893188,0.0,45.454548,45.454548,0.16869728,0.41587704 +80.47028613090515,0.0,45.454548,45.454548,0.16869728,0.41587704 +80.47971510887146,0.0,44.696968,44.696968,0.17806935,0.41587704 +80.49139213562012,0.0,44.696968,44.696968,0.17806935,0.41587704 +80.49946212768555,0.0,43.939392,43.939392,0.17806935,0.41587704 +80.50939106941223,0.0,43.181816,43.181816,0.17806935,0.37702608 +80.51970791816711,0.0,41.666668,41.666668,0.17806935,0.37702608 +80.53157496452332,0.0,40.151516,40.151516,0.16869728,0.37702608 +80.54055213928223,0.0,37.878788,37.878788,0.16869728,0.37702608 +80.54954791069031,0.0,36.363636,36.363636,0.16869728,0.37702608 +80.55979609489441,0.0,33.333336,33.333336,0.15932521,0.38072613 +80.56989598274231,0.0,31.818182,31.818182,0.15932521,0.38072613 +80.58152508735657,0.0,29.545454,29.545454,0.14995314,0.38072613 +80.59054613113403,0.0,28.030302,28.030302,0.14058107,0.38072613 +80.5995500087738,0.0,25.757576,25.757576,0.131209,0.38072613 +80.61251497268677,0.0,24.242424,24.242424,0.131209,0.3492753 +80.6196780204773,0.0,22.727274,22.727274,0.11246486,0.3492753 +80.62943506240845,0.0,21.212122,21.212122,0.11246486,0.3492753 +80.63948798179626,0.0,19.69697,19.69697,0.09372071,0.3492753 +80.65092611312866,0.0,18.181818,18.181818,0.09372071,0.3492753 +80.66010212898254,0.0,16.666668,16.666668,0.08434864,0.29747394 +80.67167401313782,0.0,15.909091,15.909091,0.07497657,0.29747394 +80.68070197105408,0.0,14.39394,14.39394,0.05623243,0.29747394 +80.68970203399658,0.0,13.636364,13.636364,0.05623243,0.29747394 +80.7000880241394,0.0,12.121212,12.121212,0.046860356,0.29747394 +80.7107720375061,0.0,11.363637,11.363637,0.037488285,0.24567257 +80.71969103813171,0.0,9.848485,9.848485,0.037488285,0.24567257 +80.7294180393219,0.0,9.090909,9.090909,0.028116215,0.24567257 +80.74126100540161,0.0,8.333334,8.333334,0.028116215,0.24567257 +80.75026392936707,0.0,7.575758,7.575758,0.018744143,0.24567257 +80.75951313972473,0.0,6.818182,6.818182,0.018744143,0.049567357 +80.77063012123108,0.0,6.060606,6.060606,0.009372071,0.049567357 +80.77951097488403,0.0,5.3030305,5.3030305,0.0,0.049567357 +80.79094505310059,0.0,4.5454545,4.5454545,0.0,0.049567357 +80.79987597465515,0.0,3.787879,3.787879,0.0,0.049567357 +80.81032395362854,0.0,3.030303,3.030303,0.0,-0.054035395 +80.8197250366211,0.0,3.030303,3.030303,0.0,-0.054035395 +80.83141303062439,0.0,2.2727273,2.2727273,0.0,-0.054035395 +80.84044098854065,0.0,1.5151515,1.5151515,0.0,-0.054035395 +80.84945511817932,0.0,1.5151515,1.5151515,0.0,-0.054035395 +80.86094498634338,0.0,0.75757575,0.75757575,0.0,0.038467064 +80.86948704719543,0.0,0.0,0.0,0.0,0.038467064 +80.8800299167633,0.0,0.0,0.0,0.0,0.038467064 +80.88941097259521,0.0,0.0,0.0,0.0,0.038467064 +80.9002411365509,0.0,0.0,0.0,0.0,0.038467064 +80.91257405281067,0.0,0.0,0.0,0.0,0.23827238 +80.91966795921326,0.0,0.0,0.0,0.0,0.23827238 +80.93059611320496,0.0,0.0,0.0,0.0,0.23827238 +80.93961310386658,0.0,0.0,0.0,0.0,0.23827238 +80.95105195045471,0.0,0.0,0.0,0.0,0.23827238 +80.95961904525757,0.0,0.0,0.0,0.0,0.24937265 +80.97045493125916,0.0,0.0,0.0,0.0,0.24937265 +80.98113512992859,0.0,0.0,0.0,0.0,0.24937265 +80.99016809463501,0.0,0.0,0.0,0.0,0.24937265 +81.00276899337769,0.0,0.0,0.0,0.0,0.24937265 +81.01102709770203,0.0,0.0,0.0,0.0,0.2845236 +81.01969814300537,0.0,0.0,0.0,0.0,0.2845236 +81.02982211112976,0.0,0.0,0.0,0.0,0.2845236 +81.04037499427795,0.0,0.0,0.0,0.0,0.2845236 +81.05020999908447,0.0,0.0,0.0,0.0,0.2845236 +81.06206011772156,0.0,0.0,0.0,0.0,0.30117404 +81.07106399536133,0.0,0.0,0.0,0.0,0.30117404 +81.08006501197815,0.0,0.0,0.0,0.0,0.30117404 +81.09296298027039,0.0,0.0,0.0,0.0,0.30117404 +81.10150098800659,0.0,0.0,0.0,0.0,0.30117404 +81.11100101470947,0.0,0.0,0.0,0.0,0.4454778 +81.11969208717346,0.0,0.0,0.0,0.0,0.4454778 +81.12940192222595,0.0,0.0,0.0,0.0,0.4454778 +81.14026212692261,0.0,0.0,0.0,0.0,0.4454778 +81.14950704574585,0.0,0.0,0.0,0.0,0.4454778 +81.15981411933899,0.0,0.0,0.0,0.0,0.46027827 +81.16968202590942,0.0,0.0,0.0,0.0,0.46027827 +81.18031001091003,0.0,0.0,0.0,0.0,0.46027827 +81.18977212905884,0.0,0.0,0.0,0.0,0.46027827 +81.20075511932373,0.01,0.0,0.0,0.0,0.46027827 +81.20964407920837,0.01,0.0,0.0,0.0,0.48987904 +81.21941113471985,0.01,0.0,0.0,0.0,0.48987904 +81.22993803024292,0.01,0.0,0.0,0.0,0.48987904 +81.24187803268433,0.02,0.0,0.0,0.0,0.48987904 +81.25088596343994,0.02,0.0,0.0,0.0,0.48987904 +81.25986099243164,0.02,0.0,0.0,0.0,0.47507864 +81.2708330154419,0.02,0.0,0.0,0.0,0.47507864 +81.28037595748901,0.02,0.0,0.0,0.0,0.47507864 +81.28955411911011,0.02,0.0,0.0,0.0,0.47507864 +81.30040407180786,0.03,0.0,0.0,0.0,0.47507864 +81.30944800376892,0.03,0.0,0.0,0.0,0.3307748 +81.31986093521118,0.03,0.0,0.0,0.0,0.3307748 +81.3294689655304,0.03,0.0,0.0,0.0,0.3307748 +81.3408100605011,0.04,0.0,0.0,0.0,0.3307748 +81.34978294372559,0.04,0.0,0.0,0.0,0.3307748 +81.3598051071167,0.04,0.0,0.0,0.0,0.24197246 +81.3694519996643,0.04,0.0,0.0,0.0,0.24197246 +81.38159012794495,0.04,0.0,0.0,0.0,0.24197246 +81.3905999660492,0.04,0.0,0.0,0.0,0.24197246 +81.39963698387146,0.04,0.0,0.0,0.0,0.24197246 +81.40956997871399,0.04,0.0,0.0,0.0,0.25677285 +81.41956901550293,0.04,0.0,0.0,0.0,0.25677285 +81.4306960105896,0.04,0.0,0.0,0.0,0.25677285 +81.43967604637146,0.04,0.0,0.0,0.0,0.25677285 +81.45023608207703,0.04,0.0,0.0,0.0,0.25677285 +81.4627640247345,0.04,0.0,0.0,0.0,0.19942135 +81.4717800617218,0.04,0.0,0.0,0.0,0.19942135 +81.48062992095947,0.04,0.0,0.0,0.0,0.19942135 +81.48982810974121,0.04,0.0,0.0,0.0,0.19942135 +81.50008797645569,0.04,0.0,0.0,0.0,0.19942135 +81.50968313217163,0.04,0.0,0.0,0.0,0.23272221 +81.51967310905457,0.04,0.0,0.0,0.0,0.23272221 +81.52962112426758,0.04,0.0,0.0,0.0,0.23272221 +81.53958201408386,0.04,0.0,0.0,0.0,0.23272221 +81.55197596549988,0.04,0.0,0.0,0.0,0.23272221 +81.55982899665833,0.04,0.0,0.0,0.0,0.24752259 +81.57101607322693,0.04,0.0,0.0,0.0,0.24752259 +81.58003497123718,0.04,0.0,0.0,0.0,0.24752259 +81.59079194068909,0.04,0.0,0.0,0.0,0.24752259 +81.59978413581848,0.04,0.0,0.0,0.0,0.24752259 +81.61052203178406,0.04,0.0,0.0,0.0,0.21237166 +81.61950492858887,0.04,0.0,0.0,0.0,0.21237166 +81.63081693649292,0.04,0.75757575,0.75757575,0.0,0.21237166 +81.64315414428711,0.04,1.5151515,1.5151515,0.0,0.21237166 +81.65218210220337,0.04,2.2727273,2.2727273,0.0,0.21237166 +81.66118311882019,0.03,3.030303,3.030303,0.0,0.20127137 +81.66952395439148,0.03,3.787879,3.787879,0.009372071,0.20127137 +81.6808979511261,0.03,5.3030305,5.3030305,0.018744143,0.20127137 +81.6898889541626,0.02,7.575758,7.575758,0.028116215,0.20127137 +81.6995599269867,0.02,10.606061,10.606061,0.037488285,0.20127137 +81.70942091941833,0.02,13.636364,13.636364,0.046860356,0.16427042 +81.71972107887268,0.02,17.424242,17.424242,0.05623243,0.16427042 +81.7295560836792,0.01,21.969696,21.969696,0.0656045,0.16427042 +81.74234008789062,0.01,26.515152,26.515152,0.07497657,0.16427042 +81.75135898590088,0.01,32.575756,32.575756,0.08434864,0.16427042 +81.75975108146667,0.0,38.636364,38.636364,0.09372071,0.14761995 +81.76941514015198,0.0,44.696968,44.696968,0.11246486,0.14761995 +81.77989292144775,0.0,51.515152,51.515152,0.11246486,0.14761995 +81.79034113883972,0.0,57.57576,57.57576,0.131209,0.14761995 +81.79948306083679,0.0,62.878788,62.878788,0.14058107,0.14761995 +81.81432104110718,0.0,66.66667,66.66667,0.14058107,0.11801915 +81.81972193717957,0.0,62.878788,62.878788,0.14995314,0.11801915 +81.83060002326965,0.0,47.727272,47.727272,0.14995314,0.11801915 +81.84151601791382,0.0,37.121216,37.121216,0.15932521,0.11801915 +81.85055208206177,0.0,28.78788,28.78788,0.16869728,0.11801915 +81.85956192016602,0.0,22.727274,22.727274,0.17806935,0.077318095 +81.87003803253174,0.0,25.0,25.0,0.18744142,0.077318095 +81.88024497032166,0.0,31.818182,31.818182,0.18744142,0.077318095 +81.89032506942749,0.0,38.636364,38.636364,0.18744142,0.077318095 +81.90426301956177,0.0,45.454548,45.454548,0.1968135,0.077318095 +81.91216111183167,0.0,52.272724,52.272724,0.20618556,0.038467064 +81.91970705986023,0.0,59.848484,59.848484,0.20618556,0.038467064 +81.9302589893341,0.0,66.66667,66.66667,0.21555763,0.038467064 +81.94026803970337,0.0,66.66667,66.66667,0.21555763,0.038467064 +81.94973802566528,0.0,59.848484,59.848484,0.21555763,0.038467064 +81.96009993553162,0.0,53.78788,53.78788,0.21555763,0.0033161184 +81.97019696235657,0.0,48.484848,48.484848,0.21555763,0.0033161184 +81.98353695869446,0.0,44.696968,44.696968,0.22492972,0.0033161184 +81.99219012260437,0.0,42.424244,42.424244,0.22492972,0.0033161184 +81.99978494644165,0.0,40.90909,40.90909,0.22492972,0.0033161184 +82.0102469921112,0.0,39.39394,39.39394,0.23430179,-0.052185345 +82.01970100402832,0.0,37.878788,37.878788,0.23430179,-0.052185345 +82.0309100151062,0.0,35.60606,35.60606,0.24367386,-0.052185345 +82.03994512557983,0.0,33.333336,33.333336,0.24367386,-0.052185345 +82.05017304420471,0.0,31.060606,31.060606,0.24367386,-0.052185345 +82.05940103530884,0.0,29.545454,29.545454,0.25304592,-0.06883579 +82.07386898994446,0.0,28.030302,28.030302,0.262418,-0.06883579 +82.0817289352417,0.0,27.272728,27.272728,0.25304592,-0.06883579 +82.0916759967804,0.0,25.0,25.0,0.262418,-0.06883579 +82.10058093070984,0.0,23.484848,23.484848,0.262418,-0.06883579 +82.10959005355835,0.0,21.969696,21.969696,0.262418,-0.07993608 +82.12112998962402,0.0,25.757576,25.757576,0.262418,-0.07993608 +82.13015103340149,0.0,29.545454,29.545454,0.262418,-0.07993608 +82.14022397994995,0.0,34.09091,34.09091,0.25304592,-0.07993608 +82.1500289440155,0.0,38.636364,38.636364,0.262418,-0.07993608 +82.16293096542358,0.0,43.181816,43.181816,0.262418,-0.08363618 +82.16975092887878,0.0,46.21212,46.21212,0.25304592,-0.08363618 +82.17973399162292,0.0,49.242424,49.242424,0.262418,-0.08363618 +82.1896550655365,0.0,51.515152,51.515152,0.262418,-0.08363618 +82.20226502418518,0.0,53.030304,53.030304,0.25304592,-0.08363618 +82.21127891540527,0.0,53.78788,53.78788,0.262418,-0.07993608 +82.21973514556885,0.0,55.30303,55.30303,0.25304592,-0.07993608 +82.23028898239136,0.0,56.818184,56.818184,0.24367386,-0.07993608 +82.23997902870178,0.0,57.57576,57.57576,0.24367386,-0.07993608 +82.2519919872284,0.0,59.090908,59.090908,0.24367386,-0.07993608 +82.25943994522095,0.0,60.606064,60.606064,0.24367386,-0.06143559 +82.2698450088501,0.0,61.363636,61.363636,0.24367386,-0.06143559 +82.2813069820404,0.0,62.121212,62.121212,0.23430179,-0.06143559 +82.29234004020691,0.0,62.121212,62.121212,0.23430179,-0.06143559 +82.3006100654602,0.0,62.878788,62.878788,0.24367386,-0.06143559 +82.31045293807983,0.0,63.636364,63.636364,0.24367386,-0.089186326 +82.31949210166931,0.0,64.393936,64.393936,0.24367386,-0.089186326 +82.32992601394653,0.0,65.90909,65.90909,0.24367386,-0.089186326 +82.341068983078,0.0,67.42425,67.42425,0.24367386,-0.089186326 +82.34998297691345,0.0,66.66667,66.66667,0.23430179,-0.089186326 +82.36455798149109,0.0,59.090908,59.090908,0.23430179,-0.06143559 +82.37162208557129,0.0,50.0,50.0,0.23430179,-0.06143559 +82.38223195075989,0.0,41.666668,41.666668,0.23430179,-0.06143559 +82.39161014556885,0.0,34.848484,34.848484,0.23430179,-0.06143559 +82.40063500404358,0.0,28.78788,28.78788,0.23430179,-0.06143559 +82.40943694114685,0.0,23.484848,23.484848,0.23430179,-0.085486226 +82.41942191123962,0.0,21.969696,21.969696,0.24367386,-0.085486226 +82.43017911911011,0.0,25.0,25.0,0.24367386,-0.085486226 +82.44500994682312,0.0,28.030302,28.030302,0.24367386,-0.085486226 +82.45025396347046,0.0,30.303032,30.303032,0.23430179,-0.085486226 +82.46176099777222,0.0,31.818182,31.818182,0.23430179,-0.09843658 +82.47223401069641,0.0,33.333336,33.333336,0.22492972,-0.09843658 +82.48178601264954,0.0,35.60606,35.60606,0.21555763,-0.09843658 +82.49079203605652,0.0,37.878788,37.878788,0.22492972,-0.09843658 +82.4998300075531,0.0,40.151516,40.151516,0.22492972,-0.09843658 +82.50950908660889,0.0,43.181816,43.181816,0.22492972,-0.10583678 +82.51971197128296,0.0,45.454548,45.454548,0.22492972,-0.10583678 +82.53016495704651,0.0,46.969696,46.969696,0.22492972,-0.10583678 +82.54084205627441,0.0,48.484848,48.484848,0.22492972,-0.10583678 +82.55210494995117,0.0,49.242424,49.242424,0.22492972,-0.10583678 +82.5629301071167,0.0,49.242424,49.242424,0.22492972,-0.13913766 +82.57195901870728,0.0,49.242424,49.242424,0.23430179,-0.13913766 +82.57945704460144,0.0,49.242424,49.242424,0.23430179,-0.13913766 +82.58999013900757,0.0,50.757576,50.757576,0.23430179,-0.13913766 +82.59958291053772,0.0,51.515152,51.515152,0.23430179,-0.13913766 +82.61023092269897,0.0,52.272724,52.272724,0.23430179,-0.20203933 +82.61972403526306,0.0,53.030304,53.030304,0.23430179,-0.20203933 +82.63503098487854,0.0,53.78788,53.78788,0.22492972,-0.20203933 +82.64200210571289,0.0,54.545456,54.545456,0.21555763,-0.20203933 +82.65279197692871,0.0,54.545456,54.545456,0.21555763,-0.20203933 +82.66170597076416,0.0,54.545456,54.545456,0.22492972,-0.22238986 +82.66938805580139,0.0,54.545456,54.545456,0.22492972,-0.22238986 +82.67951798439026,0.0,56.060604,56.060604,0.22492972,-0.22238986 +82.68964099884033,0.0,57.57576,57.57576,0.22492972,-0.22238986 +82.7019190788269,0.0,58.333332,58.333332,0.23430179,-0.22238986 +82.71024203300476,0.0,59.848484,59.848484,0.22492972,-0.23719026 +82.71972107887268,0.0,60.606064,60.606064,0.22492972,-0.23719026 +82.73298597335815,0.0,61.363636,61.363636,0.22492972,-0.23719026 +82.74189400672913,0.0,61.363636,61.363636,0.21555763,-0.23719026 +82.75079298019409,0.0,61.363636,61.363636,0.20618556,-0.23719026 +82.75969004631042,0.0,60.606064,60.606064,0.21555763,-0.22979008 +82.77032804489136,0.0,60.606064,60.606064,0.21555763,-0.22979008 +82.7796049118042,0.0,61.363636,61.363636,0.21555763,-0.22979008 +82.79506206512451,0.0,62.121212,62.121212,0.21555763,-0.22979008 +82.79991292953491,0.0,63.636364,63.636364,0.21555763,-0.22979008 +82.81126594543457,0.0,64.393936,64.393936,0.21555763,-0.30379203 +82.81972193717957,0.0,65.90909,65.90909,0.21555763,-0.30379203 +82.83094096183777,0.0,66.66667,66.66667,0.22492972,-0.30379203 +82.83985114097595,0.0,66.66667,66.66667,0.22492972,-0.30379203 +82.84939193725586,0.0,66.66667,66.66667,0.22492972,-0.30379203 +82.86050701141357,0.0,65.15151,65.15151,0.22492972,-0.35189328 +82.86952114105225,0.0,64.393936,64.393936,0.22492972,-0.35189328 +82.88439702987671,0.0,64.393936,64.393936,0.22492972,-0.35189328 +82.89045596122742,0.0,65.15151,65.15151,0.22492972,-0.35189328 +82.90222096443176,0.0,65.15151,65.15151,0.21555763,-0.35189328 +82.90958213806152,0.0,65.90909,65.90909,0.22492972,-0.3981445 +82.91970300674438,0.0,66.66667,66.66667,0.21555763,-0.3981445 +82.93156099319458,0.0,66.66667,66.66667,0.20618556,-0.3981445 +82.9414439201355,0.0,65.90909,65.90909,0.21555763,-0.3981445 +82.95046591758728,0.0,64.393936,64.393936,0.20618556,-0.3981445 +82.95943093299866,0.0,62.878788,62.878788,0.1968135,-0.43699557 +82.97028398513794,0.0,61.363636,61.363636,0.20618556,-0.43699557 +82.98235297203064,0.0,59.848484,59.848484,0.20618556,-0.43699557 +82.99125909805298,0.0,59.090908,59.090908,0.1968135,-0.43699557 +83.00017714500427,0.0,58.333332,58.333332,0.1968135,-0.43699557 +83.01075196266174,0.0,57.57576,57.57576,0.20618556,-0.48139673 +83.02145600318909,0.0,58.333332,58.333332,0.20618556,-0.48139673 +83.02976202964783,0.0,58.333332,58.333332,0.20618556,-0.48139673 +83.0403790473938,0.0,59.090908,59.090908,0.20618556,-0.48139673 +83.049968957901,0.0,59.090908,59.090908,0.20618556,-0.48139673 +83.0625479221344,0.0,59.848484,59.848484,0.20618556,-0.5220978 +83.0714521408081,0.0,59.090908,59.090908,0.1968135,-0.5220978 +83.0803439617157,0.0,59.090908,59.090908,0.20618556,-0.5220978 +83.08970499038696,0.0,59.848484,59.848484,0.20618556,-0.5220978 +83.10028100013733,0.0,59.848484,59.848484,0.20618556,-0.5220978 +83.11175203323364,0.0,61.363636,61.363636,0.20618556,-0.5646489 +83.11974096298218,0.0,62.878788,62.878788,0.20618556,-0.5646489 +83.13031697273254,0.0,63.636364,63.636364,0.21555763,-0.5646489 +83.14007306098938,0.0,65.15151,65.15151,0.21555763,-0.5646489 +83.14988994598389,0.0,65.90909,65.90909,0.21555763,-0.5646489 +83.16051602363586,0.0,65.90909,65.90909,0.20618556,-0.5997999 +83.16943693161011,0.0,65.90909,65.90909,0.20618556,-0.5997999 +83.1799111366272,0.0,65.90909,65.90909,0.20618556,-0.5997999 +83.19075298309326,0.0,64.393936,64.393936,0.20618556,-0.5997999 +83.20226097106934,0.0,63.636364,63.636364,0.20618556,-0.5997999 +83.21125102043152,0.0,61.363636,61.363636,0.20618556,-0.6090501 +83.21972894668579,0.0,59.848484,59.848484,0.20618556,-0.6090501 +83.22945308685303,0.0,56.818184,56.818184,0.1968135,-0.6090501 +83.23953604698181,0.0,53.78788,53.78788,0.18744142,-0.6090501 +83.24960207939148,0.0,50.757576,50.757576,0.16869728,-0.6090501 +83.26138806343079,0.0,47.727272,47.727272,0.15932521,-0.61090016 +83.27421998977661,0.0,44.696968,44.696968,0.14058107,-0.61090016 +83.28074598312378,0.0,41.666668,41.666668,0.131209,-0.61090016 +83.29219698905945,0.0,38.636364,38.636364,0.11246486,-0.61090016 +83.299978017807,0.0,36.363636,36.363636,0.09372071,-0.61090016 +83.31016302108765,0.0,33.333336,33.333336,0.08434864,-0.5997999 +83.3197410106659,0.0,31.060606,31.060606,0.0656045,-0.5997999 +83.32977199554443,0.0,28.78788,28.78788,0.046860356,-0.5997999 +83.34377098083496,0.0,27.272728,27.272728,0.037488285,-0.5997999 +83.35510110855103,0.0,25.0,25.0,0.028116215,-0.5997999 +83.36031293869019,0.0,23.484848,23.484848,0.018744143,-0.61275023 +83.37310314178467,0.0,21.969696,21.969696,0.009372071,-0.61275023 +83.38209414482117,0.0,20.454544,20.454544,0.0,-0.61275023 +83.38973808288574,0.0,18.939394,18.939394,0.0,-0.61275023 +83.40006804466248,0.0,17.424242,17.424242,0.0,-0.61275023 +83.40996193885803,0.0,15.909091,15.909091,0.0,-0.6090501 +83.41972398757935,0.0,15.151516,15.151516,0.0,-0.6090501 +83.43344402313232,0.0,13.636364,13.636364,0.0,-0.6090501 +83.44509291648865,0.0,12.878788,12.878788,0.0,-0.6090501 +83.45300793647766,0.0,11.363637,11.363637,0.0,-0.6090501 +83.46121001243591,0.0,10.606061,10.606061,0.0,-0.6146003 +83.47204613685608,0.0,9.848485,9.848485,0.0,-0.6146003 +83.48103308677673,0.0,9.090909,9.090909,0.0,-0.6146003 +83.49001908302307,0.01,8.333334,8.333334,0.0,-0.6146003 +83.50043106079102,0.01,7.575758,7.575758,0.0,-0.6146003 +83.50943493843079,0.01,6.818182,6.818182,0.0,-0.6368009 +83.51972198486328,0.02,6.060606,6.060606,0.0,-0.6368009 +83.53463912010193,0.02,5.3030305,5.3030305,0.0,-0.6368009 +83.54026103019714,0.02,4.5454545,4.5454545,0.0,-0.6368009 +83.55233192443848,0.03,3.787879,3.787879,0.0,-0.6368009 +83.56134510040283,0.04,3.787879,3.787879,0.0,-0.5442984 +83.57026696205139,0.04,3.030303,3.030303,0.0,-0.5442984 +83.57996892929077,0.049999997,3.030303,3.030303,0.0,-0.5442984 +83.58966302871704,0.06,2.2727273,2.2727273,0.0,-0.5442984 +83.59948897361755,0.06,2.2727273,2.2727273,0.0,-0.5442984 +83.61093497276306,0.07,1.5151515,1.5151515,0.0,-0.54244834 +83.61941504478455,0.07,0.75757575,0.75757575,0.0,-0.54244834 +83.63037610054016,0.08,0.75757575,0.75757575,0.0,-0.54244834 +83.64149808883667,0.08,0.0,0.0,0.0,-0.54244834 +83.65042304992676,0.089999996,0.0,0.0,0.0,-0.54244834 +83.66090607643127,0.089999996,0.0,0.0,0.0,-0.5886996 +83.66989803314209,0.089999996,0.0,0.0,0.0,-0.5886996 +83.67964100837708,0.099999994,0.0,0.0,0.0,-0.5886996 +83.68956995010376,0.099999994,0.0,0.0,0.0,-0.5886996 +83.69960808753967,0.11,0.0,0.0,0.0,-0.5886996 +83.71275806427002,0.11,0.0,0.0,0.0,-0.5479985 +83.71975708007812,0.12,0.0,0.0,0.0,-0.5479985 +83.73056292533875,0.12,0.0,0.0,0.0,-0.5479985 +83.73945593833923,0.13,0.0,0.0,0.0,-0.5479985 +83.74943709373474,0.13,0.0,0.0,0.0,-0.5479985 +83.75980496406555,0.14,0.0,0.0,0.0,-0.55354863 +83.77063202857971,0.14,0.0,0.0,0.0,-0.55354863 +83.77963709831238,0.14999999,0.0,0.0,0.0,-0.55354863 +83.78984594345093,0.14999999,0.0,0.0,0.0,-0.55354863 +83.79982209205627,0.14999999,0.0,0.0,0.0,-0.55354863 +83.81071901321411,0.14999999,0.0,0.0,0.0,-0.6664016 +83.81963396072388,0.16,0.0,0.0,0.0,-0.6664016 +83.83175992965698,0.16,0.0,0.0,0.0,-0.6664016 +83.84074306488037,0.16,0.0,0.0,0.0,-0.6664016 +83.84972405433655,0.16,0.0,0.0,0.0,-0.6664016 +83.860680103302,0.16,0.0,0.0,0.0,-0.65160125 +83.86968207359314,0.16,0.0,0.0,0.0,-0.65160125 +83.87946891784668,0.16,0.0,0.0,0.0,-0.65160125 +83.88980793952942,0.16,0.0,0.0,0.0,-0.65160125 +83.89978313446045,0.16,0.0,0.0,0.0,-0.65160125 +83.91269993782043,0.16,0.0,0.0,0.0,-0.65530133 +83.91972804069519,0.14999999,0.0,0.0,0.0,-0.65530133 +83.93067502975464,0.14999999,0.0,0.0,0.0,-0.65530133 +83.93967509269714,0.14999999,0.0,0.0,0.0,-0.65530133 +83.94989705085754,0.14999999,0.0,0.0,0.0,-0.65530133 +83.95972609519958,0.14,0.0,0.0,0.0,-0.66825175 +83.97025513648987,0.14,0.0,0.0,0.0,-0.66825175 +83.97996211051941,0.14,0.0,0.0,0.0,-0.66825175 +83.99108600616455,0.14,0.0,0.0,0.0,-0.66825175 +84.00209498405457,0.14,0.0,0.0,0.0,-0.66825175 +84.00950813293457,0.13,0.0,0.0,0.0,-0.64975125 +84.0197241306305,0.13,0.0,0.0,0.0,-0.64975125 +84.02962493896484,0.13,0.0,0.0,0.0,-0.64975125 +84.04075813293457,0.13,0.0,0.0,0.0,-0.64975125 +84.04977893829346,0.13,0.0,0.0,0.0,-0.64975125 +84.06009793281555,0.12,0.0,0.0,0.0,-0.77555454 +84.06944608688354,0.12,0.0,0.0,0.0,-0.77555454 +84.08357810974121,0.12,0.0,0.0,0.0,-0.77555454 +84.08947110176086,0.11,0.0,0.0,0.0,-0.77555454 +84.10155200958252,0.11,0.0,0.0,0.0,-0.77555454 +84.11053013801575,0.099999994,0.0,0.0,0.0,-0.8384562 +84.1195240020752,0.099999994,0.0,0.0,0.0,-0.8384562 +84.13081192970276,0.099999994,0.0,0.0,0.0,-0.8384562 +84.13951301574707,0.099999994,0.0,0.0,0.0,-0.8384562 +84.15060591697693,0.089999996,0.0,0.0,0.0,-0.8384562 +84.1596109867096,0.089999996,0.0,0.0,0.0,-0.85510665 +84.17349791526794,0.089999996,0.0,0.0,0.0,-0.85510665 +84.1824951171875,0.089999996,0.0,0.0,0.0,-0.85510665 +84.19031405448914,0.08,0.0,0.0,0.0,-0.85510665 +84.20045804977417,0.08,0.0,0.0,0.0,-0.85510665 +84.20944809913635,0.08,0.0,0.0,0.0,-0.8384562 +84.21975493431091,0.08,0.0,0.0,0.0,-0.8384562 +84.22986507415771,0.08,0.0,0.0,0.0,-0.8384562 +84.24076414108276,0.08,0.0,0.0,0.0,-0.8384562 +84.2497820854187,0.08,0.0,0.0,0.0,-0.8384562 +84.26340913772583,0.08,0.0,0.0,0.0,-0.8495565 +84.26951909065247,0.08,0.0,0.0,0.0,-0.8495565 +84.28005409240723,0.07,0.0,0.0,0.0,-0.8495565 +84.2904040813446,0.07,0.0,0.0,0.0,-0.8495565 +84.2995879650116,0.07,0.0,0.0,0.0,-0.8495565 +84.30951499938965,0.07,0.0,0.0,0.0,-0.8791573 +84.31974697113037,0.07,0.0,0.0,0.0,-0.8791573 +84.3309690952301,0.06,0.0,0.0,0.0,-0.8791573 +84.34001612663269,0.06,0.0,0.0,0.0,-0.8791573 +84.35336112976074,0.06,0.0,0.0,0.0,-0.8791573 +84.35971093177795,0.06,0.0,0.0,0.0,-0.89025754 +84.37133193016052,0.06,0.0,0.0,0.0,-0.89025754 +84.38031697273254,0.06,0.0,0.0,0.0,-0.89025754 +84.38969397544861,0.06,0.0,0.0,0.0,-0.89025754 +84.39959406852722,0.06,0.0,0.0,0.0,-0.89025754 +84.41002011299133,0.06,0.0,0.0,0.0,-0.9032079 +84.41974592208862,0.06,0.0,0.0,0.0,-0.9032079 +84.43027591705322,0.06,0.0,0.0,0.0,-0.9032079 +84.44312810897827,0.06,0.0,0.0,0.0,-0.9032079 +84.4498610496521,0.06,0.0,0.0,0.0,-0.9032079 +84.4609489440918,0.06,0.0,0.0,0.0,-0.8828574 +84.46951198577881,0.06,0.0,0.0,0.0,-0.8828574 +84.4820671081543,0.06,0.0,0.0,0.0,-0.8828574 +84.49022603034973,0.06,0.0,0.0,0.0,-0.8828574 +84.5000970363617,0.06,0.0,0.0,0.0,-0.8828574 +84.5115020275116,0.06,0.0,0.0,0.0,-0.85695666 +84.51973414421082,0.06,0.0,0.0,0.0,-0.85695666 +84.52955102920532,0.06,0.0,0.0,0.0,-0.85695666 +84.54110503196716,0.06,0.0,0.0,0.0,-0.85695666 +84.55001997947693,0.06,0.0,0.0,0.0,-0.85695666 +84.56017303466797,0.06,0.0,0.0,0.0,-0.8921076 +84.57214903831482,0.06,0.0,0.0,0.0,-0.8921076 +84.58069610595703,0.06,0.0,0.0,0.0,-0.8921076 +84.59019494056702,0.06,0.0,0.0,0.0,-0.8921076 +84.60171699523926,0.07,0.0,0.0,0.0,-0.8921076 +84.61074495315552,0.07,0.0,0.0,0.0,-0.89580774 +84.61973905563354,0.07,0.0,0.0,0.0,-0.89580774 +84.62984800338745,0.07,0.0,0.0,0.0,-0.89580774 +84.64052295684814,0.07,0.0,0.0,0.0,-0.89580774 +84.65013098716736,0.07,0.0,0.0,0.0,-0.89580774 +84.6596040725708,0.07,0.0,0.0,0.0,-0.8773073 +84.67079901695251,0.07,0.0,0.0,0.0,-0.8773073 +84.68021512031555,0.07,0.0,0.0,0.0,-0.8773073 +84.69003105163574,0.08,0.0,0.0,0.0,-0.8773073 +84.70099091529846,0.08,0.0,0.0,0.0,-0.8773073 +84.70938992500305,0.089999996,0.0,0.0,0.0,-0.78665483 +84.72203803062439,0.089999996,0.0,0.0,0.0,-0.78665483 +84.73007011413574,0.099999994,0.0,0.0,0.0,-0.78665483 +84.73973798751831,0.11,0.0,0.0,0.0,-0.78665483 +84.75011992454529,0.11,0.0,0.0,0.0,-0.78665483 +84.7612829208374,0.12,0.0,0.0,0.0,-0.7700044 +84.77028393745422,0.13,0.0,0.0,0.0,-0.7700044 +84.7816390991211,0.13,0.0,0.0,0.0,-0.7700044 +84.78964900970459,0.14,0.0,0.0,0.0,-0.7700044 +84.79944014549255,0.14,0.0,0.0,0.0,-0.7700044 +84.80958604812622,0.14999999,0.0,0.0,0.0,-0.7626042 +84.81976509094238,0.14999999,0.0,0.0,0.0,-0.7626042 +84.8299629688263,0.16,0.0,0.0,0.0,-0.7626042 +84.8423399925232,0.16,0.0,0.0,0.0,-0.7626042 +84.85134601593018,0.17,0.0,0.0,0.0,-0.7626042 +84.860347032547,0.17999999,0.0,0.0,0.0,-0.71820307 +84.87068605422974,0.17999999,0.0,0.0,0.0,-0.71820307 +84.87962198257446,0.19,0.0,0.0,0.0,-0.71820307 +84.89050197601318,0.19,0.0,0.0,0.0,-0.71820307 +84.89952111244202,0.19999999,0.0,0.0,0.0,-0.71820307 +84.91089510917664,0.19999999,0.0,0.0,0.0,-0.7219031 +84.9196081161499,0.21,0.0,0.0,0.0,-0.7219031 +84.93240094184875,0.21,0.0,0.0,0.0,-0.7219031 +84.94114303588867,0.21,0.0,0.0,0.0,-0.7219031 +84.95043206214905,0.22,0.0,0.0,0.0,-0.7219031 +84.95943403244019,0.22,0.0,0.0,0.0,-0.677502 +84.97169494628906,0.22999999,0.0,0.0,0.0,-0.677502 +84.97960805892944,0.24,0.0,0.0,0.0,-0.677502 +84.98974895477295,0.24,0.0,0.0,0.0,-0.677502 +85.00085091590881,0.25,0.0,0.0,0.0,-0.677502 +85.00949096679688,0.26,0.0,0.0,0.0,-0.6146003 +85.01976299285889,0.26,0.0,0.0,0.0,-0.6146003 +85.0310411453247,0.26999998,0.0,0.0,0.0,-0.6146003 +85.03996205329895,0.26999998,0.0,0.0,0.0,-0.6146003 +85.04950594902039,0.28,0.0,0.0,0.0,-0.6146003 +85.06190514564514,0.28,0.0,0.0,0.0,-0.6072001 +85.07094311714172,0.29,0.0,0.0,0.0,-0.6072001 +85.07995796203613,0.29,0.0,0.0,0.0,-0.6072001 +85.09079003334045,0.29,0.0,0.0,0.0,-0.6072001 +85.09978103637695,0.29999998,0.0,0.0,0.0,-0.6072001 +85.11123204231262,0.29999998,0.0,0.0,0.0,-0.5997999 +85.11973690986633,0.29999998,0.0,0.0,0.0,-0.5997999 +85.12967896461487,0.31,0.0,0.0,0.0,-0.5997999 +85.13959193229675,0.31,0.0,0.0,0.0,-0.5997999 +85.15141010284424,0.31,0.0,0.0,0.0,-0.5997999 +85.16112804412842,0.32,0.0,0.0,0.0,-0.39259437 +85.17016410827637,0.32,0.0,0.0,0.0,-0.39259437 +85.17964506149292,0.32,0.0,0.0,0.0,-0.39259437 +85.18972897529602,0.32,0.0,0.0,0.0,-0.39259437 +85.20031809806824,0.32,0.0,0.0,0.0,-0.39259437 +85.21147298812866,0.32,0.0,0.0,0.0,-0.19648919 +85.21977591514587,0.32,0.0,0.0,0.0,-0.19648919 +85.22966408729553,0.31,0.0,0.0,0.0,-0.19648919 +85.24229097366333,0.31,0.0,0.0,0.0,-0.19648919 +85.25127911567688,0.31,0.0,0.0,0.0,-0.19648919 +85.26031494140625,0.29999998,0.0,0.0,0.0,0.012566376 +85.27065801620483,0.29999998,0.0,0.0,0.0,0.012566376 +85.27965998649597,0.29999998,0.0,0.0,0.0,0.012566376 +85.28943395614624,0.29999998,0.0,0.0,0.0,0.012566376 +85.30168199539185,0.29999998,0.0,0.0,0.0,0.012566376 +85.30960512161255,0.29999998,0.0,0.0,0.0,0.20682153 +85.31973004341125,0.29999998,0.0,0.0,0.0,0.20682153 +85.33131098747253,0.29999998,0.0,0.0,0.0,0.20682153 +85.34147596359253,0.29999998,0.0,0.0,0.0,0.20682153 +85.35048699378967,0.29,0.0,0.0,0.0,0.20682153 +85.35950493812561,0.29,0.0,0.0,0.0,0.375176 +85.36960411071777,0.29,0.0,0.0,0.0,0.375176 +85.3811399936676,0.29,0.0,0.0,0.0,0.375176 +85.39178109169006,0.29,0.0,0.0,0.0,0.375176 +85.40078806877136,0.29,0.0,0.0,0.0,0.375176 +85.40978193283081,0.29,0.0,0.0,0.0,0.563881 +85.41975712776184,0.29,0.0,0.0,0.0,0.563881 +85.4301929473877,0.29,0.0,0.0,0.0,0.563881 +85.4396071434021,0.29,0.0,0.0,0.0,0.563881 +85.44939994812012,0.29,0.0,0.0,0.0,0.563881 +85.4595239162445,0.29,0.0,0.0,0.0,0.6101322 +85.47090005874634,0.29,0.0,0.0,0.0,0.6101322 +85.48148798942566,0.29,0.0,0.0,0.0,0.6101322 +85.49084997177124,0.29,0.0,0.0,0.0,0.6101322 +85.49986004829407,0.29,0.0,0.0,0.0,0.6101322 +85.51212406158447,0.29,0.0,0.0,0.0,0.6082822 +85.51995611190796,0.29999998,0.0,0.0,0.0,0.6082822 +85.52993893623352,0.29999998,0.0,0.0,0.0,0.6082822 +85.53989791870117,0.29999998,0.0,0.0,0.0,0.6082822 +85.54948806762695,0.29999998,0.0,0.0,0.0,0.6082822 +85.56291198730469,0.29999998,0.0,0.0,0.0,0.7303854 +85.56959891319275,0.29999998,0.0,0.0,0.0,0.7303854 +85.58010411262512,0.29999998,0.0,0.0,0.0,0.7303854 +85.58977103233337,0.29999998,0.0,0.0,0.0,0.7303854 +85.60119605064392,0.31,0.0,0.0,0.0,0.7303854 +85.60991597175598,0.31,0.0,0.0,0.0,0.8524887 +85.61975407600403,0.31,0.0,0.0,0.0,0.8524887 +85.63013291358948,0.31,0.0,0.0,0.0,0.8524887 +85.63946008682251,0.31,0.0,0.0,0.0,0.8524887 +85.6510181427002,0.31,0.0,0.0,0.0,0.8524887 +85.65963411331177,0.32,0.0,0.0,0.0,0.8783893 +85.67036008834839,0.32,0.0,0.0,0.0,0.8783893 +85.68006706237793,0.32,0.0,0.0,0.0,0.8783893 +85.69024109840393,0.32,0.0,0.0,0.0,0.8783893 +85.69961309432983,0.32,0.0,0.0,0.0,0.8783893 +85.71128106117249,0.32,0.0,0.0,0.0,0.8469385 +85.7195451259613,0.32999998,0.0,0.0,0.0,0.8469385 +85.7295470237732,0.32999998,0.0,0.0,0.0,0.8469385 +85.74091911315918,0.32999998,0.0,0.0,0.0,0.8469385 +85.75215792655945,0.32999998,0.0,0.0,0.0,0.8469385 +85.76024508476257,0.32999998,0.0,0.0,0.0,0.86543894 +85.77022910118103,0.32999998,0.0,0.0,0.0,0.86543894 +85.77945399284363,0.32999998,0.0,0.0,0.0,0.86543894 +85.79075813293457,0.32999998,0.0,0.0,0.0,0.86543894 +85.80136513710022,0.32999998,0.0,0.0,0.0,0.86543894 +85.81037306785583,0.32999998,0.0,0.0,0.0,0.88208944 +85.81959414482117,0.32999998,0.0,0.0,0.0,0.88208944 +85.82960891723633,0.32999998,0.0,0.0,0.0,0.88208944 +85.84168410301208,0.32999998,0.0,0.0,0.0,0.88208944 +85.85058403015137,0.32999998,0.0,0.0,0.0,0.88208944 +85.85948896408081,0.32999998,0.0,0.0,0.0,0.88208944 +85.87246799468994,0.32999998,0.0,0.0,0.0,0.88208944 +85.88234090805054,0.32999998,0.0,0.0,0.0,0.88208944 +85.89132714271545,0.32999998,0.0,0.0,0.0,0.88208944 +85.90031504631042,0.32999998,0.0,0.0,0.0,0.88208944 +85.90973711013794,0.32999998,0.0,0.0,0.0,0.8987398 +85.91974806785583,0.32999998,0.0,0.0,0.0,0.8987398 +85.9307770729065,0.32999998,0.0,0.0,0.0,0.8987398 +85.93968200683594,0.34,0.0,0.0,0.0,0.8987398 +85.95050501823425,0.34,0.0,0.0,0.0,0.8987398 +85.9595239162445,0.34,0.0,0.0,0.0,0.95054126 +85.9722831249237,0.34,0.0,0.0,0.0,0.95054126 +85.98124408721924,0.34,0.0,0.0,0.0,0.95054126 +85.9897289276123,0.34,0.0,0.0,0.0,0.95054126 +85.99992609024048,0.35,0.0,0.0,0.0,0.95054126 +86.01031708717346,0.35,0.0,0.0,0.0,0.9005899 +86.0195460319519,0.35,0.0,0.0,0.0,0.9005899 +86.03160905838013,0.35,0.0,0.0,0.0,0.9005899 +86.04062604904175,0.35,0.0,0.0,0.0,0.9005899 +86.04963397979736,0.35,0.0,0.0,0.0,0.9005899 +86.0622091293335,0.35999998,0.0,0.0,0.0,0.8561887 +86.07118892669678,0.35999998,0.0,0.0,0.0,0.8561887 +86.0801649093628,0.37,0.0,0.0,0.0,0.8561887 +86.08962893486023,0.37,0.0,0.0,0.0,0.8561887 +86.09999394416809,0.37,0.0,0.0,0.0,0.8561887 +86.1096510887146,0.37,0.0,0.0,0.0,0.85988885 +86.11977696418762,0.38,0.0,0.0,0.0,0.85988885 +86.13077998161316,0.38,0.0,0.0,0.0,0.85988885 +86.13977909088135,0.38,0.0,0.0,0.0,0.85988885 +86.15212202072144,0.38,0.0,0.0,0.0,0.85988885 +86.1611111164093,0.38,0.0,0.0,0.0,0.83768827 +86.16989994049072,0.38,0.0,0.0,0.0,0.83768827 +86.18020296096802,0.39,0.0,0.0,0.0,0.83768827 +86.19386100769043,0.39,0.0,0.0,0.0,0.83768827 +86.20013999938965,0.39999998,0.0,0.0,0.0,0.83768827 +86.21190905570984,0.39999998,0.0,0.0,0.0,0.73593557 +86.21944093704224,0.41,0.0,0.0,0.0,0.73593557 +86.22993612289429,0.41,0.0,0.0,0.0,0.73593557 +86.24206495285034,0.42,0.0,0.0,0.0,0.73593557 +86.25105810165405,0.42,0.0,0.0,0.0,0.73593557 +86.26004600524902,0.42,0.0,0.0,0.0,0.75073594 +86.2704861164093,0.42999998,0.0,0.0,0.0,0.75073594 +86.27951312065125,0.42999998,0.0,0.0,0.0,0.75073594 +86.29303503036499,0.42999998,0.0,0.0,0.0,0.75073594 +86.300950050354,0.42999998,0.0,0.0,0.0,0.75073594 +86.31108093261719,0.42999998,0.0,0.0,0.0,0.74703586 +86.31980991363525,0.44,0.0,0.0,0.0,0.74703586 +86.33111095428467,0.44,0.0,0.0,0.0,0.74703586 +86.33940100669861,0.44,0.0,0.0,0.0,0.74703586 +86.34946799278259,0.45,0.0,0.0,0.0,0.74703586 +86.36068892478943,0.45,0.0,0.0,0.0,0.715585 +86.36973404884338,0.45,0.0,0.0,0.0,0.715585 +86.38034701347351,0.45999998,0.0,0.0,0.0,0.715585 +86.39082407951355,0.45999998,0.0,0.0,0.0,0.715585 +86.40123510360718,0.45999998,0.0,0.0,0.0,0.715585 +86.41024112701416,0.47,0.0,0.0,0.0,0.68598425 +86.41946911811829,0.47,0.0,0.0,0.0,0.68598425 +86.42967200279236,0.47,0.0,0.0,0.0,0.68598425 +86.4397919178009,0.48,0.0,0.0,0.0,0.68598425 +86.4508969783783,0.48,0.0,0.0,0.0,0.68598425 +86.45992994308472,0.48999998,0.0,0.0,0.0,0.6822841 +86.47334408760071,0.48999998,0.0,0.0,0.0,0.6822841 +86.47951006889343,0.48999998,0.0,0.0,0.0,0.6822841 +86.49138903617859,0.5,0.0,0.0,0.0,0.6822841 +86.50038409233093,0.5,0.0,0.0,0.0,0.6822841 +86.50939798355103,0.5,0.0,0.0,0.0,0.6101322 +86.51963400840759,0.51,0.0,0.0,0.0,0.6101322 +86.52993702888489,0.51,0.0,0.0,0.0,0.6101322 +86.54111313819885,0.51,0.0,0.0,0.0,0.6101322 +86.54968094825745,0.52,0.0,0.0,0.0,0.6101322 +86.56308698654175,0.52,0.0,0.0,0.0,0.5897817 +86.57137513160706,0.52,0.0,0.0,0.0,0.5897817 +86.58111596107483,0.52,0.0,0.0,0.0,0.5897817 +86.59003496170044,0.53,0.0,0.0,0.0,0.5897817 +86.5995421409607,0.53,0.0,0.0,0.0,0.5897817 +86.60949897766113,0.53,0.0,0.0,0.0,0.4695285 +86.61978697776794,0.53,0.0,0.0,0.0,0.4695285 +86.6313419342041,0.53999996,0.0,0.0,0.0,0.4695285 +86.64035201072693,0.53999996,0.0,0.0,0.0,0.4695285 +86.65032410621643,0.53999996,0.0,0.0,0.0,0.4695285 +86.6613130569458,0.53999996,0.0,0.0,0.0,0.4732286 +86.67024111747742,0.53999996,0.0,0.0,0.0,0.4732286 +86.68067908287048,0.53999996,0.0,0.0,0.0,0.4732286 +86.6896800994873,0.53999996,0.0,0.0,0.0,0.4732286 +86.699942111969,0.55,0.0,0.0,0.0,0.4732286 +86.7098240852356,0.55,0.0,0.0,0.0,0.4288274 +86.71978092193604,0.55,0.0,0.0,0.0,0.4288274 +86.72987008094788,0.55,0.0,0.0,0.0,0.4288274 +86.73946714401245,0.55,0.0,0.0,0.0,0.4288274 +86.75039005279541,0.55,0.0,0.0,0.0,0.4288274 +86.76006698608398,0.55,0.0,0.0,0.0,0.42512733 +86.77079606056213,0.55,0.0,0.0,0.0,0.42512733 +86.77980399131775,0.55,0.0,0.0,0.0,0.42512733 +86.78986501693726,0.56,0.0,0.0,0.0,0.42512733 +86.79976296424866,0.56,0.0,0.0,0.0,0.42512733 +86.8117561340332,0.56,0.0,0.0,0.0,0.4473279 +86.81977200508118,0.56,0.0,0.0,0.0,0.4473279 +86.8298020362854,0.56,0.0,0.0,0.0,0.4473279 +86.83946514129639,0.56,0.0,0.0,0.0,0.4473279 +86.85019397735596,0.56,0.0,0.0,0.0,0.4473279 +86.86095213890076,0.56,0.0,0.0,0.0,0.3862763 +86.86943411827087,0.55,0.0,0.0,0.0,0.3862763 +86.88068008422852,0.55,0.0,0.0,0.0,0.3862763 +86.88968300819397,0.55,0.0,0.0,0.0,0.3862763 +86.9018349647522,0.55,0.0,0.0,0.0,0.3862763 +86.91002106666565,0.55,0.0,0.0,0.0,0.3215246 +86.91963005065918,0.53999996,0.0,0.0,0.0,0.3215246 +86.93238711357117,0.53999996,0.0,0.0,0.0,0.3215246 +86.94208002090454,0.55,0.0,0.0,0.0,0.3215246 +86.95109105110168,0.55,0.0,0.0,0.0,0.3215246 +86.9600989818573,0.55,0.0,0.0,0.0,0.2919238 +86.97061705589294,0.55,0.0,0.0,0.0,0.2919238 +86.97960209846497,0.55,0.0,0.0,0.0,0.2919238 +86.99089813232422,0.55,0.0,0.0,0.0,0.2919238 +86.99939107894897,0.55,0.0,0.0,0.0,0.2919238 +87.0101969242096,0.55,0.0,0.0,0.0,0.21052164 +87.01977801322937,0.55,0.0,0.0,0.0,0.21052164 +87.03218913078308,0.55,0.0,0.0,0.0,0.21052164 +87.04119896888733,0.55,0.0,0.0,0.0,0.21052164 +87.0502359867096,0.55,0.0,0.0,0.0,0.21052164 +87.05996799468994,0.55,0.0,0.0,0.0,0.12911949 +87.06955695152283,0.55,0.0,0.0,0.0,0.12911949 +87.0799491405487,0.55,0.0,0.0,0.0,0.12911949 +87.09135603904724,0.55,0.0,0.0,0.0,0.12911949 +87.10037899017334,0.55,0.0,0.0,0.0,0.12911949 +87.10940194129944,0.55,0.0,0.0,0.0,0.06436774 +87.11977791786194,0.55,0.0,0.0,0.0,0.06436774 +87.13035106658936,0.55,0.0,0.0,0.0,0.06436774 +87.14034295082092,0.55,0.0,0.0,0.0,0.06436774 +87.15048813819885,0.55,0.0,0.0,0.0,0.06436774 +87.15948295593262,0.55,0.0,0.0,0.0,0.062517695 +87.169429063797,0.56,0.0,0.0,0.0,0.062517695 +87.18155407905579,0.56,0.0,0.0,0.0,0.062517695 +87.19059801101685,0.56,0.0,0.0,0.0,0.062517695 +87.19960904121399,0.56,0.0,0.0,0.0,0.062517695 +87.2103750705719,0.56,0.0,0.0,0.0,0.077318095 +87.22119903564453,0.56,0.0,0.0,0.0,0.077318095 +87.23045802116394,0.56,0.0,0.0,0.0,0.077318095 +87.23945999145508,0.56,0.0,0.0,0.0,0.077318095 +87.24942111968994,0.56,0.0,0.0,0.0,0.077318095 +87.26034498214722,0.56,0.0,0.0,0.0,0.07546805 +87.27174401283264,0.56,0.0,0.0,0.0,0.07546805 +87.2797920703888,0.56,0.0,0.0,0.0,0.07546805 +87.28978991508484,0.56,0.0,0.0,0.0,0.07546805 +87.30256605148315,0.56,0.0,0.0,0.0,0.07546805 +87.31153392791748,0.56,0.0,0.0,0.0,0.068067834 +87.31979513168335,0.56,0.0,0.0,0.0,0.068067834 +87.32959604263306,0.56,0.0,0.0,0.0,0.068067834 +87.3393931388855,0.57,0.0,0.0,0.0,0.068067834 +87.3522789478302,0.56,0.0,0.0,0.0,0.068067834 +87.36047291755676,0.56,0.0,0.0,0.0,0.11801915 +87.37096405029297,0.56,0.0,0.0,0.0,0.11801915 +87.37996006011963,0.56,0.0,0.0,0.0,0.11801915 +87.39030408859253,0.56,0.0,0.0,0.0,0.11801915 +87.4006040096283,0.56,0.0,0.0,0.0,0.11801915 +87.40950012207031,0.56,0.0,0.0,0.0,0.12541938 +87.41951012611389,0.56,0.0,0.0,0.0,0.12541938 +87.43409204483032,0.56,0.0,0.0,0.0,0.12541938 +87.43966007232666,0.56,0.0,0.0,0.0,0.12541938 +87.45213103294373,0.56,0.0,0.0,0.0,0.12541938 +87.46114706993103,0.56,0.0,0.0,0.0,0.1420698 +87.47017908096313,0.56,0.0,0.0,0.0,0.1420698 +87.48074793815613,0.56,0.0,0.0,0.0,0.1420698 +87.48966908454895,0.56,0.0,0.0,0.0,0.1420698 +87.49986696243286,0.56,0.0,0.0,0.0,0.1420698 +87.509840965271,0.56,0.0,0.0,0.0,0.19387117 +87.51949191093445,0.56,0.0,0.0,0.0,0.19387117 +87.52961611747742,0.56,0.0,0.0,0.0,0.19387117 +87.54081606864929,0.56,0.0,0.0,0.0,0.19387117 +87.55133199691772,0.56,0.0,0.0,0.0,0.19387117 +87.56034898757935,0.56,0.0,0.0,0.0,0.20682153 +87.5698471069336,0.56,0.0,0.0,0.0,0.20682153 +87.58196091651917,0.56,0.0,0.0,0.0,0.20682153 +87.5902099609375,0.56,0.0,0.0,0.0,0.20682153 +87.59998512268066,0.56,0.0,0.0,0.0,0.20682153 +87.60942792892456,0.56,0.0,0.0,0.0,0.12726942 +87.61977910995483,0.57,0.0,0.0,0.0,0.12726942 +87.63113498687744,0.57,0.0,0.0,0.0,0.12726942 +87.64108490943909,0.57,0.0,0.0,0.0,0.12726942 +87.65001392364502,0.57,0.0,0.0,0.0,0.12726942 +87.65953207015991,0.57,0.0,0.0,0.0,0.07176795 +87.67209911346436,0.57,0.0,0.0,0.0,0.07176795 +87.68110799789429,0.57,0.0,0.0,0.0,0.07176795 +87.69009804725647,0.57,0.0,0.0,0.0,0.07176795 +87.70192909240723,0.57,0.0,0.0,0.0,0.07176795 +87.71208596229553,0.57,0.0,0.0,0.0,0.116169125 +87.71979403495789,0.57,0.0,0.0,0.0,0.116169125 +87.73023295402527,0.57,0.0,0.0,0.0,0.116169125 +87.74005699157715,0.57,0.0,0.0,0.0,0.116169125 +87.74970006942749,0.57,0.0,0.0,0.0,0.116169125 +87.76208710670471,0.57,0.0,0.0,0.0,0.038467064 +87.77108907699585,0.57,0.0,0.0,0.0,0.038467064 +87.78007793426514,0.57,0.0,0.0,0.0,0.038467064 +87.79215908050537,0.57,0.0,0.0,0.0,0.038467064 +87.80148196220398,0.57,0.0,0.0,0.0,0.038467064 +87.81037497520447,0.57,0.0,0.0,0.0,0.07546805 +87.81955313682556,0.57,0.0,0.0,0.0,0.07546805 +87.83086705207825,0.57,0.0,0.0,0.0,0.07546805 +87.83987593650818,0.57,0.0,0.0,0.0,0.07546805 +87.8494701385498,0.57,0.0,0.0,0.0,0.07546805 +87.86018991470337,0.57,0.0,0.0,0.0,0.05696755 +87.87004804611206,0.57,0.0,0.0,0.0,0.05696755 +87.88163995742798,0.58,0.0,0.0,0.0,0.05696755 +87.89044094085693,0.58,0.0,0.0,0.0,0.05696755 +87.89948010444641,0.58,0.0,0.0,0.0,0.05696755 +87.9097900390625,0.58,0.0,0.0,0.0,0.04031712 +87.91978096961975,0.58,0.0,0.0,0.0,0.04031712 +87.93007707595825,0.58,0.0,0.0,0.0,0.04031712 +87.94200301170349,0.58,0.0,0.0,0.0,0.04031712 +87.95018911361694,0.58,0.0,0.0,0.0,0.04031712 +87.95999693870544,0.58,0.0,0.0,0.0,0.008866279 +87.96949100494385,0.58,0.0,0.0,0.0,0.008866279 +87.9796531200409,0.58,0.0,0.0,0.0,0.008866279 +87.99323105812073,0.58,0.0,0.0,0.0,0.008866279 +88.0022439956665,0.58,0.0,0.0,0.0,0.008866279 +88.01125311851501,0.58,0.0,0.0,0.0,0.038467064 +88.01979613304138,0.58,0.0,0.0,0.0,0.038467064 +88.03195691108704,0.58,0.0,0.0,0.0,0.038467064 +88.0399980545044,0.58,0.0,0.0,0.0,0.038467064 +88.0499279499054,0.58,0.0,0.0,0.0,0.038467064 +88.05959391593933,0.58,0.0,0.0,0.0,0.027366763 +88.07440209388733,0.59,0.0,0.0,0.0,0.027366763 +88.08148908615112,0.59,0.0,0.0,0.0,0.027366763 +88.09241890907288,0.59,0.0,0.0,0.0,0.027366763 +88.10144901275635,0.59,0.0,0.0,0.0,0.027366763 +88.11046695709229,0.59,0.0,0.0,0.0,0.042167164 +88.11947703361511,0.59,0.0,0.0,0.0,0.042167164 +88.12981796264648,0.59,0.0,0.0,0.0,0.042167164 +88.13988494873047,0.59,0.0,0.0,0.0,0.042167164 +88.14968013763428,0.59,0.0,0.0,0.0,0.042167164 +88.16364407539368,0.59,0.0,0.0,0.0,0.014416425 +88.16991806030273,0.59,0.0,0.0,0.0,0.014416425 +88.17989110946655,0.59,0.0,0.0,0.0,0.014416425 +88.190603017807,0.59,0.0,0.0,0.0,0.014416425 +88.20063710212708,0.59,0.0,0.0,0.0,0.014416425 +88.20965909957886,0.59,0.0,0.0,0.0,0.014416425 +88.21982908248901,0.59,0.0,0.0,0.0,0.014416425 +88.22984600067139,0.59,0.0,0.0,0.0,0.014416425 +88.23975610733032,0.59,0.0,0.0,0.0,0.014416425 +88.25473713874817,0.59,0.0,0.0,0.0,0.014416425 +88.25966691970825,0.59,0.0,0.0,0.0,0.012566376 +88.27279496192932,0.59,0.0,0.0,0.0,0.012566376 +88.28049802780151,0.59,0.0,0.0,0.0,0.012566376 +88.29080200195312,0.59,0.0,0.0,0.0,0.012566376 +88.29984998703003,0.59,0.0,0.0,0.0,0.012566376 +88.31079912185669,0.59,0.0,0.0,0.0,0.023666665 +88.31978106498718,0.59,0.0,0.0,0.0,0.023666665 +88.32983613014221,0.59,0.0,0.0,0.0,0.023666665 +88.34494304656982,0.59,0.0,0.0,0.0,0.023666665 +88.35195207595825,0.59,0.0,0.0,0.0,0.023666665 +88.36174893379211,0.59,0.0,0.0,0.0,0.023666665 +88.37096691131592,0.59,0.0,0.0,0.0,0.023666665 +88.38057112693787,0.59,0.0,0.0,0.0,0.023666665 +88.3894829750061,0.59,0.0,0.0,0.0,0.023666665 +88.40070414543152,0.59,0.0,0.0,0.0,0.023666665 +88.40969014167786,0.59,0.0,0.0,0.0,0.027366763 +88.41980695724487,0.59,0.0,0.0,0.0,0.027366763 +88.42978191375732,0.59,0.0,0.0,0.0,0.027366763 +88.44207692146301,0.59,0.0,0.0,0.0,0.027366763 +88.45186805725098,0.59,0.0,0.0,0.0,0.027366763 +88.4607801437378,0.59,0.0,0.0,0.0,0.02921681 +88.46969199180603,0.59,0.0,0.0,0.0,0.02921681 +88.48017692565918,0.59,0.0,0.0,0.0,0.02921681 +88.49065208435059,0.59,0.0,0.0,0.0,0.02921681 +88.49963712692261,0.59,0.0,0.0,0.0,0.02921681 +88.50996398925781,0.59,0.0,0.0,0.0,0.023666665 +88.51979613304138,0.59,0.0,0.0,0.0,0.023666665 +88.52942895889282,0.59,0.0,0.0,0.0,0.023666665 +88.5409619808197,0.59,0.0,0.0,0.0,0.023666665 +88.54989409446716,0.59,0.0,0.0,0.0,0.023666665 +88.5593991279602,0.59,0.0,0.0,0.0,0.038467064 +88.57046508789062,0.59,0.0,0.0,0.0,0.038467064 +88.57949113845825,0.59,0.0,0.0,0.0,0.038467064 +88.58956098556519,0.59,0.0,0.0,0.0,0.038467064 +88.60003304481506,0.59,0.0,0.0,0.0,0.038467064 +88.61226892471313,0.59,0.0,0.0,0.0,0.023666665 +88.61981105804443,0.59,0.0,0.0,0.0,0.023666665 +88.63006210327148,0.59,0.0,0.0,0.0,0.023666665 +88.64262199401855,0.59,0.0,0.0,0.0,0.023666665 +88.65166211128235,0.59,0.0,0.0,0.0,0.023666665 +88.6606810092926,0.59,0.0,0.0,0.0,0.027366763 +88.66970300674438,0.59,0.0,0.0,0.0,0.027366763 +88.6794970035553,0.59,0.0,0.0,0.0,0.027366763 +88.68966698646545,0.59,0.0,0.0,0.0,0.027366763 +88.6995599269867,0.59,0.0,0.0,0.0,0.027366763 +88.70978808403015,0.59,0.0,0.0,0.0,0.042167164 +88.71981000900269,0.59,0.0,0.0,0.0,0.042167164 +88.73287391662598,0.59,0.0,0.0,0.0,0.042167164 +88.74188494682312,0.59,0.0,0.0,0.0,0.042167164 +88.75054907798767,0.59,0.0,0.0,0.0,0.042167164 +88.7599151134491,0.59,0.0,0.0,0.0,0.08656834 +88.76943612098694,0.59,0.0,0.0,0.0,0.08656834 +88.78013300895691,0.59,0.0,0.0,0.0,0.08656834 +88.79045510292053,0.59,0.0,0.0,0.0,0.08656834 +88.80503296852112,0.59,0.0,0.0,0.0,0.08656834 +88.80939793586731,0.59,0.0,0.0,0.0,0.042167164 +88.819589138031,0.59,0.0,0.0,0.0,0.042167164 +88.8320779800415,0.59,0.0,0.0,0.0,0.042167164 +88.84109997749329,0.59,0.0,0.0,0.0,0.042167164 +88.8501341342926,0.59,0.0,0.0,0.0,0.042167164 +88.8611741065979,0.59,0.0,0.0,0.0,0.053267453 +88.87023091316223,0.59,0.0,0.0,0.0,0.053267453 +88.87957310676575,0.59,0.0,0.0,0.0,0.053267453 +88.89226198196411,0.59,0.0,0.0,0.0,0.053267453 +88.90423703193665,0.59,0.0,0.0,0.0,0.053267453 +88.91326999664307,0.59,0.0,0.0,0.0,0.0070162313 +88.91982913017273,0.59,0.0,0.0,0.0,0.0070162313 +88.93130302429199,0.59,0.0,0.0,0.0,0.0070162313 +88.9403030872345,0.59,0.0,0.0,0.0,0.0070162313 +88.94951391220093,0.59999996,0.0,0.0,0.0,0.0070162313 +88.95976114273071,0.59999996,0.0,0.0,0.0,0.02921681 +88.9701280593872,0.59999996,0.0,0.0,0.0,0.02921681 +88.97979402542114,0.59999996,0.0,0.0,0.0,0.02921681 +88.9942569732666,0.59999996,0.0,0.0,0.0,0.02921681 +88.99949598312378,0.59999996,0.0,0.0,0.0,0.02921681 +89.00996899604797,0.59999996,0.0,0.0,0.0,0.01811652 +89.01981711387634,0.59999996,0.0,0.0,0.0,0.01811652 +89.02942395210266,0.59999996,0.0,0.0,0.0,0.01811652 +89.03956913948059,0.59999996,0.0,0.0,0.0,0.01811652 +89.05029392242432,0.59999996,0.0,0.0,0.0,0.01811652 +89.06195998191833,0.59999996,0.0,0.0,0.0,0.019966569 +89.0751600265503,0.59999996,0.0,0.0,0.0,0.019966569 +89.07948613166809,0.59999996,0.0,0.0,0.0,0.019966569 +89.0932080745697,0.59999996,0.0,0.0,0.0,0.019966569 +89.10222291946411,0.59999996,0.0,0.0,0.0,0.019966569 +89.11118412017822,0.59999996,0.0,0.0,0.0,0.019966569 +89.1198079586029,0.59999996,0.0,0.0,0.0,0.019966569 +89.12977600097656,0.59999996,0.0,0.0,0.0,0.019966569 +89.14035892486572,0.59999996,0.0,0.0,0.0,0.019966569 +89.14957904815674,0.59,0.0,0.0,0.0,0.019966569 +89.16307210922241,0.59,0.0,0.0,0.0,0.010716328 +89.17081093788147,0.59,0.0,0.0,0.0,0.010716328 +89.18242692947388,0.59,0.0,0.0,0.0,0.010716328 +89.19134593009949,0.59,0.0,0.0,0.0,0.010716328 +89.20023512840271,0.59,0.0,0.0,0.0,0.010716328 +89.20941805839539,0.58,0.0,0.0,0.0,-0.002234026 +89.21982192993164,0.58,0.0,0.0,0.0,-0.002234026 +89.23040199279785,0.59,0.0,0.0,0.0,-0.002234026 +89.23939299583435,0.59,0.0,0.0,0.0,-0.002234026 +89.25319790840149,0.59,0.0,0.0,0.0,-0.002234026 +89.26258993148804,0.59,0.0,0.0,0.0,-0.013334316 +89.27132892608643,0.59,0.0,0.0,0.0,-0.013334316 +89.28017807006836,0.59,0.0,0.0,0.0,-0.013334316 +89.29106092453003,0.59,0.0,0.0,0.0,-0.013334316 +89.30006408691406,0.59,0.0,0.0,0.0,-0.013334316 +89.31019902229309,0.59,0.0,0.0,0.0,0.010716328 +89.31984210014343,0.59,0.0,0.0,0.0,0.010716328 +89.32945799827576,0.59,0.0,0.0,0.0,0.010716328 +89.34037113189697,0.59,0.0,0.0,0.0,0.010716328 +89.35169410705566,0.59,0.0,0.0,0.0,0.010716328 +89.35960602760315,0.58,0.0,0.0,0.0,-0.0040840744 +89.36951994895935,0.58,0.0,0.0,0.0,-0.0040840744 +89.38098096847534,0.58,0.0,0.0,0.0,-0.0040840744 +89.38998103141785,0.58,0.0,0.0,0.0,-0.0040840744 +89.40038990974426,0.58,0.0,0.0,0.0,-0.0040840744 +89.40942406654358,0.57,0.0,0.0,0.0,0.012566376 +89.41947197914124,0.57,0.0,0.0,0.0,0.012566376 +89.43189001083374,0.57,0.0,0.0,0.0,0.012566376 +89.44079804420471,0.57,0.0,0.0,0.0,0.012566376 +89.44970512390137,0.57,0.0,0.0,0.0,0.012566376 +89.46084904670715,0.57,0.0,0.0,0.0,0.032916907 +89.47034192085266,0.56,0.0,0.0,0.0,0.032916907 +89.47987604141235,0.56,0.0,0.0,0.0,0.032916907 +89.49058198928833,0.56,0.0,0.0,0.0,0.032916907 +89.49961996078491,0.56,0.0,0.0,0.0,0.032916907 +89.5095419883728,0.56,0.0,0.0,0.0,-0.013334316 +89.51981902122498,0.56,0.0,0.0,0.0,-0.013334316 +89.52987504005432,0.56,0.0,0.0,0.0,-0.013334316 +89.5399329662323,0.56,0.0,0.0,0.0,-0.013334316 +89.55181813240051,0.55,0.0,0.0,0.0,-0.013334316 +89.56081795692444,0.55,0.0,0.0,0.0,0.023666665 +89.56974911689758,0.53999996,0.0,0.0,0.0,0.023666665 +89.5807991027832,0.53999996,0.0,0.0,0.0,0.023666665 +89.5898289680481,0.53,0.0,0.0,0.0,0.023666665 +89.59957504272461,0.53,0.0,0.0,0.0,0.023666665 +89.61004209518433,0.52,0.0,0.0,0.0,0.010716328 +89.61981797218323,0.52,0.0,0.0,0.0,0.010716328 +89.62958598136902,0.51,0.0,0.0,0.0,0.010716328 +89.64175701141357,0.51,0.0,0.0,0.0,0.010716328 +89.65075206756592,0.5,0.0,0.0,0.0,0.010716328 +89.65976405143738,0.5,0.0,0.0,0.0,0.051417407 +89.67100501060486,0.48999998,0.0,0.0,0.0,0.051417407 +89.68004512786865,0.48999998,0.0,0.0,0.0,0.051417407 +89.68962407112122,0.48,0.0,0.0,0.0,0.051417407 +89.70083212852478,0.48,0.0,0.0,0.0,0.051417407 +89.71197700500488,0.47,0.0,0.0,0.0,0.034766953 +89.71983599662781,0.45999998,0.0,0.0,0.0,0.034766953 +89.73023891448975,0.45,0.0,0.0,0.0,0.034766953 +89.74066209793091,0.44,0.0,0.0,0.0,0.034766953 +89.74964904785156,0.44,0.0,0.0,0.0,0.034766953 +89.76123309135437,0.42999998,0.0,0.0,0.0,0.042167164 +89.77025508880615,0.42,0.0,0.0,0.0,0.042167164 +89.77949690818787,0.41,0.0,0.0,0.0,0.042167164 +89.79109811782837,0.39999998,0.0,0.0,0.0,0.042167164 +89.80359411239624,0.39,0.0,0.0,0.0,0.042167164 +89.81018900871277,0.38,0.0,0.0,0.0,0.032916907 +89.82072710990906,0.37,0.0,0.0,0.0,0.032916907 +89.82981705665588,0.35999998,0.0,0.0,0.0,0.032916907 +89.83957409858704,0.35,0.0,0.0,0.0,0.032916907 +89.850594997406,0.32999998,0.0,0.0,0.0,0.032916907 +89.85950708389282,0.32,0.0,0.0,0.0,0.02921681 +89.8695240020752,0.29999998,0.0,0.0,0.0,0.02921681 +89.88119101524353,0.29,0.0,0.0,0.0,0.02921681 +89.89355301856995,0.26999998,0.0,0.0,0.0,0.02921681 +89.90255212783813,0.26,0.0,0.0,0.0,0.02921681 +89.9115560054779,0.25,0.0,0.0,0.0,-0.01888446 +89.91940808296204,0.22999999,0.0,0.0,0.0,-0.01888446 +89.92953205108643,0.22,0.0,0.0,0.0,-0.01888446 +89.93969202041626,0.21,0.0,0.0,0.0,-0.01888446 +89.9496660232544,0.19,0.0,0.0,0.0,-0.01888446 +89.9597339630127,0.17999999,0.0,0.0,0.0,-0.026284654 +89.97102904319763,0.16,0.0,0.0,0.0,-0.026284654 +89.98349595069885,0.14999999,0.0,0.0,0.0,-0.026284654 +89.99007606506348,0.14,0.0,0.0,0.0,-0.026284654 +90.00149703025818,0.13,0.0,0.0,0.0,-0.026284654 +90.00961709022522,0.12,0.0,0.0,0.0,-0.03183481 +90.0194890499115,0.11,0.0,0.0,0.0,-0.03183481 +90.0313560962677,0.089999996,0.0,0.0,0.0,-0.03183481 +90.04083895683289,0.08,0.0,0.0,0.0,-0.03183481 +90.04985308647156,0.08,1.5151515,1.5151515,0.0,-0.03183481 +90.064444065094,0.07,3.787879,3.787879,0.0,-0.015184363 +90.0733630657196,0.06,6.818182,6.818182,0.0,-0.015184363 +90.08229207992554,0.049999997,9.848485,9.848485,0.0,-0.015184363 +90.09119606018066,0.049999997,12.878788,12.878788,0.0,-0.015184363 +90.09960913658142,0.04,14.39394,14.39394,0.0,-0.015184363 +90.10943007469177,0.03,16.666668,16.666668,0.0,-0.01888446 +90.11957597732544,0.03,20.454544,20.454544,0.009372071,-0.01888446 +90.13093400001526,0.02,23.484848,23.484848,0.018744143,-0.01888446 +90.13995504379272,0.01,27.272728,27.272728,0.028116215,-0.01888446 +90.151526927948,0.01,29.545454,29.545454,0.037488285,-0.01888446 +90.16243290901184,0.0,32.575756,32.575756,0.046860356,-0.002234026 +90.17136907577515,0.0,35.60606,35.60606,0.0656045,-0.002234026 +90.18029594421387,0.0,39.39394,39.39394,0.07497657,-0.002234026 +90.18976092338562,0.0,41.666668,41.666668,0.08434864,-0.002234026 +90.20298099517822,0.0,43.181816,43.181816,0.09372071,-0.002234026 +90.21200609207153,0.0,44.696968,44.696968,0.10309278,-0.0040840744 +90.21985101699829,0.0,46.21212,46.21212,0.11246486,-0.0040840744 +90.22999405860901,0.0,46.969696,46.969696,0.11246486,-0.0040840744 +90.24263310432434,0.0,47.727272,47.727272,0.12183693,-0.0040840744 +90.2498209476471,0.0,47.727272,47.727272,0.12183693,-0.0040840744 +90.26043510437012,0.0,48.484848,48.484848,0.12183693,-0.06143559 +90.27130603790283,0.0,50.0,50.0,0.131209,-0.06143559 +90.27984404563904,0.0,51.515152,51.515152,0.131209,-0.06143559 +90.29076313972473,0.0,52.272724,52.272724,0.14058107,-0.06143559 +90.30204510688782,0.0,52.272724,52.272724,0.14058107,-0.06143559 +90.31083512306213,0.0,53.030304,53.030304,0.14995314,-0.039235007 +90.31982398033142,0.0,54.545456,54.545456,0.15932521,-0.039235007 +90.32955598831177,0.0,55.30303,55.30303,0.14995314,-0.039235007 +90.33971309661865,0.0,55.30303,55.30303,0.15932521,-0.039235007 +90.34952092170715,0.0,55.30303,55.30303,0.15932521,-0.039235007 +90.36124396324158,0.0,56.818184,56.818184,0.15932521,-0.00038397792 +90.37026691436768,0.0,58.333332,58.333332,0.15932521,-0.00038397792 +90.37988901138306,0.0,59.090908,59.090908,0.15932521,-0.00038397792 +90.3921070098877,0.0,59.848484,59.848484,0.15932521,-0.00038397792 +90.40111494064331,0.0,60.606064,60.606064,0.16869728,-0.00038397792 +90.41013503074646,0.0,62.878788,62.878788,0.16869728,-0.029984765 +90.41980004310608,0.0,64.393936,64.393936,0.17806935,-0.029984765 +90.42964100837708,0.0,66.66667,66.66667,0.17806935,-0.029984765 +90.44080805778503,0.0,67.42425,67.42425,0.18744142,-0.029984765 +90.4495370388031,0.0,64.393936,64.393936,0.18744142,-0.029984765 +90.46019101142883,0.0,49.242424,49.242424,0.18744142,0.0070162313 +90.47057890892029,0.0,34.09091,34.09091,0.1968135,0.0070162313 +90.48219299316406,0.0,20.454544,20.454544,0.1968135,0.0070162313 +90.49117612838745,0.0,21.212122,21.212122,0.1968135,0.0070162313 +90.5001609325409,0.0,26.515152,26.515152,0.1968135,0.0070162313 +90.50979995727539,0.0,33.333336,33.333336,0.21555763,0.0014660703 +90.51980996131897,0.0,41.666668,41.666668,0.21555763,0.0014660703 +90.53210496902466,0.0,48.484848,48.484848,0.21555763,0.0014660703 +90.53962898254395,0.0,53.78788,53.78788,0.22492972,0.0014660703 +90.5501000881195,0.0,59.090908,59.090908,0.22492972,0.0014660703 +90.5608880519867,0.0,65.90909,65.90909,0.23430179,0.06066765 +90.57078313827515,0.0,67.42425,67.42425,0.24367386,0.06066765 +90.58013200759888,0.0,59.090908,59.090908,0.24367386,0.06066765 +90.58996510505676,0.0,50.757576,50.757576,0.25304592,0.06066765 +90.60017395019531,0.0,41.666668,41.666668,0.25304592,0.06066765 +90.60941100120544,0.0,36.363636,36.363636,0.25304592,-0.03553491 +90.6211109161377,0.0,31.060606,31.060606,0.25304592,-0.03553491 +90.63104701042175,0.0,26.515152,26.515152,0.25304592,-0.03553491 +90.63982605934143,0.0,21.969696,21.969696,0.262418,-0.03553491 +90.6522889137268,0.0,22.727274,22.727274,0.262418,-0.03553491 +90.66122102737427,0.0,27.272728,27.272728,0.27179006,-0.033684865 +90.66998505592346,0.0,31.060606,31.060606,0.262418,-0.033684865 +90.67982792854309,0.0,34.848484,34.848484,0.25304592,-0.033684865 +90.69038105010986,0.0,37.121216,37.121216,0.25304592,-0.033684865 +90.69940209388733,0.0,39.39394,39.39394,0.25304592,-0.033684865 +90.71129894256592,0.0,41.666668,41.666668,0.24367386,-0.039235007 +90.71985006332397,0.0,44.696968,44.696968,0.24367386,-0.039235007 +90.72998404502869,0.0,46.969696,46.969696,0.24367386,-0.039235007 +90.74136996269226,0.0,49.242424,49.242424,0.24367386,-0.039235007 +90.75026798248291,0.0,50.757576,50.757576,0.24367386,-0.039235007 +90.76136302947998,0.0,51.515152,51.515152,0.24367386,-0.041085053 +90.76978397369385,0.0,53.030304,53.030304,0.23430179,-0.041085053 +90.77961707115173,0.0,54.545456,54.545456,0.23430179,-0.041085053 +90.78957891464233,0.0,55.30303,55.30303,0.23430179,-0.041085053 +90.80134296417236,0.0,55.30303,55.30303,0.24367386,-0.041085053 +90.81093406677246,0.0,54.545456,54.545456,0.23430179,-0.044785153 +90.81939911842346,0.0,55.30303,55.30303,0.23430179,-0.044785153 +90.83041000366211,0.0,56.818184,56.818184,0.23430179,-0.044785153 +90.83943510055542,0.0,57.57576,57.57576,0.23430179,-0.044785153 +90.85144805908203,0.0,58.333332,58.333332,0.22492972,-0.044785153 +90.86042499542236,0.0,57.57576,57.57576,0.22492972,-0.06328564 +90.86943197250366,0.0,58.333332,58.333332,0.22492972,-0.06328564 +90.87977409362793,0.0,59.090908,59.090908,0.22492972,-0.06328564 +90.89153099060059,0.0,60.606064,60.606064,0.22492972,-0.06328564 +90.8997859954834,0.0,60.606064,60.606064,0.22492972,-0.06328564 +90.9098551273346,0.0,60.606064,60.606064,0.22492972,-0.052185345 +90.91945195198059,0.0,60.606064,60.606064,0.22492972,-0.052185345 +90.93248510360718,0.0,61.363636,61.363636,0.22492972,-0.052185345 +90.941486120224,0.0,62.121212,62.121212,0.21555763,-0.052185345 +90.95049405097961,0.0,62.121212,62.121212,0.21555763,-0.052185345 +90.95950293540955,0.0,62.121212,62.121212,0.21555763,-0.0466352 +90.96994113922119,0.0,62.121212,62.121212,0.21555763,-0.0466352 +90.98179912567139,0.0,62.121212,62.121212,0.22492972,-0.0466352 +90.98948812484741,0.0,63.636364,63.636364,0.22492972,-0.0466352 +90.99960708618164,0.0,64.393936,64.393936,0.21555763,-0.0466352 +91.01125311851501,0.0,65.15151,65.15151,0.21555763,-0.013334316 +91.01983904838562,0.0,64.393936,64.393936,0.20618556,-0.013334316 +91.02981495857239,0.0,63.636364,63.636364,0.20618556,-0.013334316 +91.04058194160461,0.0,64.393936,64.393936,0.20618556,-0.013334316 +91.04959607124329,0.0,65.15151,65.15151,0.21555763,-0.013334316 +91.06018209457397,0.0,66.66667,66.66667,0.20618556,-0.039235007 +91.0708520412445,0.0,66.66667,66.66667,0.21555763,-0.039235007 +91.07974600791931,0.0,67.42425,67.42425,0.20618556,-0.039235007 +91.08974409103394,0.0,65.90909,65.90909,0.21555763,-0.039235007 +91.10169196128845,0.0,57.57576,57.57576,0.21555763,-0.039235007 +91.11264610290527,0.0,50.0,50.0,0.21555763,-0.0466352 +91.11982607841492,0.0,42.424244,42.424244,0.21555763,-0.0466352 +91.1306619644165,0.0,35.60606,35.60606,0.21555763,-0.0466352 +91.13967895507812,0.0,29.545454,29.545454,0.20618556,-0.0466352 +91.15034794807434,0.0,25.757576,25.757576,0.21555763,-0.0466352 +91.15959000587463,0.0,23.484848,23.484848,0.21555763,-0.029984765 +91.17064714431763,0.0,23.484848,23.484848,0.21555763,-0.029984765 +91.1796669960022,0.0,28.030302,28.030302,0.21555763,-0.029984765 +91.19374012947083,0.0,32.575756,32.575756,0.22492972,-0.029984765 +91.2027530670166,0.0,38.636364,38.636364,0.22492972,-0.029984765 +91.21173310279846,0.0,45.454548,45.454548,0.23430179,-0.033684865 +91.21984910964966,0.0,52.272724,52.272724,0.23430179,-0.033684865 +91.22974991798401,0.0,58.333332,58.333332,0.25304592,-0.033684865 +91.24002599716187,0.0,62.878788,62.878788,0.25304592,-0.033684865 +91.24959802627563,0.0,67.42425,67.42425,0.25304592,-0.033684865 +91.26060104370117,0.0,67.42425,67.42425,0.262418,-0.024434604 +91.26960396766663,0.0,65.90909,65.90909,0.262418,-0.024434604 +91.27940011024475,0.0,63.636364,63.636364,0.262418,-0.024434604 +91.289803981781,0.0,62.121212,62.121212,0.262418,-0.024434604 +91.30182814598083,0.0,59.848484,59.848484,0.262418,-0.024434604 +91.3108479976654,0.0,57.57576,57.57576,0.27179006,-0.054035395 +91.31984090805054,0.0,56.818184,56.818184,0.27179006,-0.054035395 +91.33072710037231,0.0,57.57576,57.57576,0.27179006,-0.054035395 +91.33972001075745,0.0,58.333332,58.333332,0.27179006,-0.054035395 +91.35054802894592,0.0,59.090908,59.090908,0.28116214,-0.054035395 +91.3595449924469,0.0,58.333332,58.333332,0.28116214,-0.026284654 +91.36945414543152,0.0,59.090908,59.090908,0.2905342,-0.026284654 +91.37988591194153,0.0,61.363636,61.363636,0.29990628,-0.026284654 +91.39142203330994,0.0,63.636364,63.636364,0.29990628,-0.026284654 +91.39969205856323,0.0,65.90909,65.90909,0.29990628,-0.026284654 +91.4099509716034,0.0,68.18182,68.18182,0.29990628,-0.041085053 +91.41958904266357,0.0,70.454544,70.454544,0.30927837,-0.041085053 +91.42990493774414,0.0,73.48485,73.48485,0.31865042,-0.041085053 +91.44042897224426,0.0,78.030304,78.030304,0.31865042,-0.041085053 +91.4494960308075,0.0,81.81818,81.81818,0.3280225,-0.041085053 +91.46215391159058,0.0,85.606064,85.606064,0.3280225,-0.050335295 +91.47157907485962,0.0,88.63636,88.63636,0.3280225,-0.050335295 +91.48048710823059,0.0,90.15152,90.15152,0.33739457,-0.050335295 +91.48939514160156,0.0,90.15152,90.15152,0.33739457,-0.050335295 +91.50002598762512,0.0,91.66667,91.66667,0.33739457,-0.050335295 +91.5110809803009,0.0,94.69697,94.69697,0.34676665,-0.050335295 +91.52010107040405,0.0,96.969696,96.969696,0.3561387,-0.050335295 +91.52984714508057,0.0,99.242424,99.242424,0.3561387,-0.050335295 +91.53944206237793,0.0,100.757576,100.757576,0.3561387,-0.050335295 +91.54989314079285,0.0,101.51515,101.51515,0.3561387,-0.050335295 +91.56063604354858,0.0,102.27273,102.27273,0.3561387,-0.033684865 +91.56956100463867,0.0,104.54545,104.54545,0.3561387,-0.033684865 +91.57968306541443,0.0,106.06061,106.06061,0.3655108,-0.033684865 +91.5901300907135,0.0,108.333336,108.333336,0.37488285,-0.033684865 +91.60128593444824,0.0,109.09091,109.09091,0.3655108,-0.033684865 +91.60945105552673,0.0,109.09091,109.09091,0.3655108,-0.011484267 +91.61983799934387,0.0,109.09091,109.09091,0.37488285,-0.011484267 +91.62940692901611,0.0,109.84849,109.84849,0.3655108,-0.011484267 +91.63976192474365,0.0,111.36363,111.36363,0.3655108,-0.011484267 +91.64973592758179,0.0,113.63637,113.63637,0.3561387,-0.011484267 +91.66150403022766,0.0,115.909096,115.909096,0.3561387,-0.013334316 +91.66985607147217,0.0,116.666664,116.666664,0.3655108,-0.013334316 +91.6799590587616,0.0,118.181816,118.181816,0.3655108,-0.013334316 +91.69147610664368,0.0,119.69697,119.69697,0.37488285,-0.013334316 +91.70048904418945,0.0,121.969696,121.969696,0.37488285,-0.013334316 +91.70950603485107,0.0,125.0,125.0,0.37488285,-0.024434604 +91.71983313560486,0.0,128.0303,128.0303,0.38425493,-0.024434604 +91.72991299629211,0.0,129.54546,129.54546,0.393627,-0.024434604 +91.7406690120697,0.0,130.30302,130.30302,0.393627,-0.024434604 +91.75171899795532,0.0,131.06061,131.06061,0.393627,-0.024434604 +91.76004099845886,0.0,131.81818,131.81818,0.393627,-0.00038397792 +91.77026605606079,0.0,134.09091,134.09091,0.40299907,-0.00038397792 +91.78163695335388,0.0,136.36365,136.36365,0.40299907,-0.00038397792 +91.78951001167297,0.0,137.87878,137.87878,0.41237113,-0.00038397792 +91.79971194267273,0.0,139.39394,139.39394,0.40299907,-0.00038397792 +91.80944895744324,0.0,139.39394,139.39394,0.41237113,0.04031712 +91.81985211372375,0.0,138.63637,138.63637,0.40299907,0.04031712 +91.8333420753479,0.0,140.15152,140.15152,0.41237113,0.04031712 +91.84235000610352,0.0,141.66667,141.66667,0.40299907,0.04031712 +91.85135293006897,0.0,143.18181,143.18181,0.40299907,0.04031712 +91.86036801338196,0.0,144.69696,144.69696,0.40299907,0.010716328 +91.87097501754761,0.0,144.69696,144.69696,0.40299907,0.010716328 +91.88086795806885,0.0,143.93939,143.93939,0.40299907,0.010716328 +91.88988208770752,0.0,143.18181,143.18181,0.40299907,0.010716328 +91.89958500862122,0.0,143.93939,143.93939,0.41237113,0.010716328 +91.91022300720215,0.0,144.69696,144.69696,0.41237113,-0.013334316 +91.91984605789185,0.0,146.21211,146.21211,0.41237113,-0.013334316 +91.9319589138031,0.0,146.9697,146.9697,0.41237113,-0.013334316 +91.93981099128723,0.0,146.9697,146.9697,0.41237113,-0.013334316 +91.95043706893921,0.0,146.21211,146.21211,0.40299907,-0.013334316 +91.95944094657898,0.0,143.93939,143.93939,0.40299907,0.008866279 +91.97009110450745,0.0,143.18181,143.18181,0.40299907,0.008866279 +91.98008298873901,0.0,143.18181,143.18181,0.40299907,0.008866279 +91.99488306045532,0.0,142.42424,142.42424,0.40299907,0.008866279 +92.00105500221252,0.0,141.66667,141.66667,0.40299907,0.008866279 +92.01349997520447,0.0,140.15152,140.15152,0.40299907,-0.009634218 +92.01956796646118,0.0,137.87878,137.87878,0.41237113,-0.009634218 +92.03150296211243,0.0,134.8485,134.8485,0.41237113,-0.009634218 +92.04050898551941,0.0,132.57574,132.57574,0.40299907,-0.009634218 +92.04961395263672,0.0,131.06061,131.06061,0.40299907,-0.009634218 +92.05944895744324,0.0,130.30302,130.30302,0.393627,0.01811652 +92.07009506225586,0.0,130.30302,130.30302,0.40299907,0.01811652 +92.08466410636902,0.0,129.54546,129.54546,0.40299907,0.01811652 +92.09015607833862,0.0,128.78787,128.78787,0.40299907,0.01811652 +92.10114812850952,0.0,126.51515,126.51515,0.393627,0.01811652 +92.11208391189575,0.0,124.242424,124.242424,0.393627,0.0070162313 +92.11983895301819,0.0,122.72727,122.72727,0.38425493,0.0070162313 +92.13056993484497,0.0,121.969696,121.969696,0.38425493,0.0070162313 +92.13959312438965,0.0,121.969696,121.969696,0.37488285,0.0070162313 +92.15029907226562,0.0,121.969696,121.969696,0.37488285,0.0070162313 +92.16004014015198,0.0,121.969696,121.969696,0.37488285,0.034766953 +92.16953301429749,0.0,121.21213,121.21213,0.37488285,0.034766953 +92.18414998054504,0.0,118.93939,118.93939,0.37488285,0.034766953 +92.19127297401428,0.0,117.42424,117.42424,0.37488285,0.034766953 +92.20025992393494,0.0,116.666664,116.666664,0.37488285,0.034766953 +92.20944809913635,0.0,116.666664,116.666664,0.37488285,0.06436774 +92.21978306770325,0.0,116.666664,116.666664,0.37488285,0.06436774 +92.22965407371521,0.0,116.666664,116.666664,0.37488285,0.06436774 +92.24096012115479,0.0,116.666664,116.666664,0.37488285,0.06436774 +92.2499771118164,0.0,115.909096,115.909096,0.38425493,0.06436774 +92.25971102714539,0.0,114.39394,114.39394,0.37488285,0.08656834 +92.2731819152832,0.0,112.878784,112.878784,0.37488285,0.08656834 +92.28215098381042,0.0,112.12121,112.12121,0.38425493,0.08656834 +92.28979301452637,0.0,112.12121,112.12121,0.38425493,0.08656834 +92.29993200302124,0.0,112.12121,112.12121,0.38425493,0.08656834 +92.31073808670044,0.0,112.12121,112.12121,0.38425493,0.13651967 +92.31959795951843,0.0,111.36363,111.36363,0.38425493,0.13651967 +92.33035612106323,0.0,110.60606,110.60606,0.393627,0.13651967 +92.339919090271,0.0,107.57576,107.57576,0.393627,0.13651967 +92.3499059677124,0.0,104.54545,104.54545,0.393627,0.13651967 +92.36229205131531,0.0,101.51515,101.51515,0.38425493,0.14947 +92.37010097503662,0.0,99.242424,99.242424,0.393627,0.14947 +92.3797960281372,0.0,96.969696,96.969696,0.38425493,0.14947 +92.39131808280945,0.0,93.93939,93.93939,0.38425493,0.14947 +92.40078711509705,0.0,91.66667,91.66667,0.37488285,0.14947 +92.40978193283081,0.0,88.63636,88.63636,0.37488285,0.15687022 +92.4198579788208,0.0,85.606064,85.606064,0.37488285,0.15687022 +92.42985892295837,0.0,81.81818,81.81818,0.37488285,0.15687022 +92.44010400772095,0.0,77.27273,77.27273,0.3655108,0.15687022 +92.4510509967804,0.0,75.0,75.0,0.3655108,0.15687022 +92.46030712127686,0.0,72.72727,72.72727,0.3655108,0.1420698 +92.47284197807312,0.0,71.21212,71.21212,0.3561387,0.1420698 +92.48185610771179,0.0,70.454544,70.454544,0.3561387,0.1420698 +92.49085593223572,0.0,68.93939,68.93939,0.3655108,0.1420698 +92.49983310699463,0.0,67.42425,67.42425,0.3561387,0.1420698 +92.51079607009888,0.0,65.90909,65.90909,0.3561387,0.15872025 +92.51980495452881,0.0,62.878788,62.878788,0.3561387,0.15872025 +92.52962708473206,0.0,59.848484,59.848484,0.3561387,0.15872025 +92.54050803184509,0.0,57.57576,57.57576,0.3655108,0.15872025 +92.54941892623901,0.0,56.060604,56.060604,0.3655108,0.15872025 +92.56290912628174,0.0,54.545456,54.545456,0.3561387,0.2438225 +92.57094812393188,0.0,52.272724,52.272724,0.3561387,0.2438225 +92.58093094825745,0.0,50.0,50.0,0.3561387,0.2438225 +92.58946704864502,0.0,47.727272,47.727272,0.34676665,0.2438225 +92.60072994232178,0.0,44.696968,44.696968,0.34676665,0.2438225 +92.60973405838013,0.0,41.666668,41.666668,0.34676665,0.22717209 +92.61973810195923,0.0,38.636364,38.636364,0.3561387,0.22717209 +92.62954902648926,0.0,36.363636,36.363636,0.3561387,0.22717209 +92.64152503013611,0.0,34.848484,34.848484,0.34676665,0.22717209 +92.65145897865295,0.0,34.09091,34.09091,0.34676665,0.22717209 +92.66197395324707,0.0,33.333336,33.333336,0.33739457,0.27157325 +92.6709840297699,0.0,32.575756,32.575756,0.33739457,0.27157325 +92.68000793457031,0.0,31.818182,31.818182,0.33739457,0.27157325 +92.6906840801239,0.0,30.303032,30.303032,0.33739457,0.27157325 +92.69967412948608,0.0,28.030302,28.030302,0.3280225,0.27157325 +92.70979404449463,0.0,25.757576,25.757576,0.33739457,0.3492753 +92.71958112716675,0.0,23.484848,23.484848,0.33739457,0.3492753 +92.72944402694702,0.0,22.727274,22.727274,0.34676665,0.3492753 +92.74305391311646,0.0,27.272728,27.272728,0.34676665,0.3492753 +92.75096797943115,0.0,32.575756,32.575756,0.34676665,0.3492753 +92.76106214523315,0.0,39.39394,39.39394,0.33739457,0.36592576 +92.77007102966309,0.0,45.454548,45.454548,0.33739457,0.36592576 +92.78061294555664,0.0,51.515152,51.515152,0.33739457,0.36592576 +92.78952693939209,0.0,56.818184,56.818184,0.33739457,0.36592576 +92.80047297477722,0.0,61.363636,61.363636,0.33739457,0.36592576 +92.80997204780579,0.0,65.90909,65.90909,0.34676665,0.35112536 +92.81944704055786,0.0,68.93939,68.93939,0.34676665,0.35112536 +92.83047294616699,0.0,67.42425,67.42425,0.33739457,0.35112536 +92.84119296073914,0.0,65.90909,65.90909,0.33739457,0.35112536 +92.8496720790863,0.0,65.15151,65.15151,0.33739457,0.35112536 +92.86011910438538,0.0,65.15151,65.15151,0.33739457,0.38072613 +92.87018299102783,0.0,65.15151,65.15151,0.34676665,0.38072613 +92.87954998016357,0.0,65.15151,65.15151,0.3561387,0.38072613 +92.89046502113342,0.0,64.393936,64.393936,0.34676665,0.38072613 +92.90019702911377,0.0,63.636364,63.636364,0.3561387,0.38072613 +92.90944600105286,0.0,62.121212,62.121212,0.3561387,0.3881263 +92.91985011100769,0.0,60.606064,60.606064,0.3655108,0.3881263 +92.93128108978271,0.0,59.090908,59.090908,0.3655108,0.3881263 +92.94113993644714,0.0,59.090908,59.090908,0.3655108,0.3881263 +92.9501690864563,0.0,58.333332,58.333332,0.3655108,0.3881263 +92.95938897132874,0.0,58.333332,58.333332,0.3561387,0.38257617 +92.96946001052856,0.0,57.57576,57.57576,0.3655108,0.38257617 +92.97976899147034,0.0,56.818184,56.818184,0.3655108,0.38257617 +92.9904100894928,0.0,54.545456,54.545456,0.3561387,0.38257617 +92.99944400787354,0.0,50.757576,50.757576,0.34676665,0.38257617 +93.01267409324646,0.0,46.21212,46.21212,0.33739457,0.3862763 +93.01982092857361,0.0,40.90909,40.90909,0.34676665,0.3862763 +93.02980899810791,0.0,35.60606,35.60606,0.34676665,0.3862763 +93.03939199447632,0.0,30.303032,30.303032,0.33739457,0.3862763 +93.05036497116089,0.0,25.757576,25.757576,0.3280225,0.3862763 +93.06250500679016,0.0,22.727274,22.727274,0.30927837,0.41402704 +93.07162809371948,0.0,22.727274,22.727274,0.30927837,0.41402704 +93.08063101768494,0.0,26.515152,26.515152,0.29990628,0.41402704 +93.0896680355072,0.0,28.78788,28.78788,0.2905342,0.41402704 +93.10175514221191,0.0,31.818182,31.818182,0.2905342,0.41402704 +93.10986495018005,0.0,33.333336,33.333336,0.28116214,0.3215246 +93.11956810951233,0.0,34.09091,34.09091,0.28116214,0.3215246 +93.13027000427246,0.0,34.09091,34.09091,0.27179006,0.3215246 +93.14030504226685,0.0,33.333336,33.333336,0.262418,0.3215246 +93.15249514579773,0.0,33.333336,33.333336,0.262418,0.3215246 +93.16046214103699,0.0,32.575756,32.575756,0.25304592,0.21237166 +93.17088198661804,0.0,31.818182,31.818182,0.24367386,0.21237166 +93.17989206314087,0.0,31.060606,31.060606,0.23430179,0.21237166 +93.19082307815552,0.0,30.303032,30.303032,0.23430179,0.21237166 +93.1997230052948,0.0,29.545454,29.545454,0.21555763,0.21237166 +93.21131205558777,0.0,28.030302,28.030302,0.21555763,0.13096951 +93.22030997276306,0.0,27.272728,27.272728,0.21555763,0.13096951 +93.22986102104187,0.0,26.515152,26.515152,0.20618556,0.13096951 +93.23995995521545,0.0,25.0,25.0,0.1968135,0.13096951 +93.25090193748474,0.0,24.242424,24.242424,0.18744142,0.13096951 +93.26108002662659,0.0,22.727274,22.727274,0.16869728,0.114319056 +93.27014112472534,0.0,21.212122,21.212122,0.15932521,0.114319056 +93.27989101409912,0.0,19.69697,19.69697,0.15932521,0.114319056 +93.29184198379517,0.01,18.181818,18.181818,0.14995314,0.114319056 +93.30137300491333,0.01,17.424242,17.424242,0.14995314,0.114319056 +93.31038308143616,0.02,15.909091,15.909091,0.14058107,0.21052164 +93.31939196586609,0.03,14.39394,14.39394,0.131209,0.21052164 +93.33282399177551,0.03,13.636364,13.636364,0.12183693,0.21052164 +93.3422601222992,0.04,12.121212,12.121212,0.11246486,0.21052164 +93.3495409488678,0.04,11.363637,11.363637,0.10309278,0.21052164 +93.36005806922913,0.049999997,10.606061,10.606061,0.09372071,0.40662682 +93.36942505836487,0.049999997,9.848485,9.848485,0.09372071,0.40662682 +93.38242101669312,0.049999997,9.848485,9.848485,0.09372071,0.40662682 +93.39023494720459,0.06,9.090909,9.090909,0.09372071,0.40662682 +93.40042805671692,0.06,9.848485,9.848485,0.09372071,0.40662682 +93.40943312644958,0.06,9.848485,9.848485,0.09372071,0.51762974 +93.419851064682,0.06,10.606061,10.606061,0.09372071,0.51762974 +93.43131613731384,0.06,11.363637,11.363637,0.09372071,0.51762974 +93.44023299217224,0.06,12.121212,12.121212,0.09372071,0.51762974 +93.45057010650635,0.06,12.878788,12.878788,0.09372071,0.51762974 +93.45956993103027,0.049999997,14.39394,14.39394,0.09372071,0.7303854 +93.47249507904053,0.049999997,15.151516,15.151516,0.09372071,0.7303854 +93.48021006584167,0.049999997,15.909091,15.909091,0.09372071,0.7303854 +93.49049305915833,0.04,15.909091,15.909091,0.09372071,0.7303854 +93.49950909614563,0.04,16.666668,16.666668,0.09372071,0.7303854 +93.51023602485657,0.03,16.666668,16.666668,0.10309278,0.7988373 +93.51985907554626,0.03,16.666668,16.666668,0.10309278,0.7988373 +93.53175592422485,0.02,15.909091,15.909091,0.10309278,0.7988373 +93.5404760837555,0.02,15.909091,15.909091,0.10309278,0.7988373 +93.5498161315918,0.02,15.909091,15.909091,0.10309278,0.7988373 +93.56215310096741,0.01,15.909091,15.909091,0.10309278,0.81733775 +93.57156014442444,0.01,15.909091,15.909091,0.10309278,0.81733775 +93.5805721282959,0.01,15.909091,15.909091,0.10309278,0.81733775 +93.58939814567566,0.01,15.151516,15.151516,0.10309278,0.81733775 +93.60009098052979,0.0,15.151516,15.151516,0.11246486,0.81733775 +93.60948991775513,0.0,14.39394,14.39394,0.11246486,0.8783893 +93.61987709999084,0.0,12.878788,12.878788,0.10309278,0.8783893 +93.63023209571838,0.0,12.121212,12.121212,0.09372071,0.8783893 +93.64000797271729,0.0,10.606061,10.606061,0.08434864,0.8783893 +93.65265393257141,0.0,9.848485,9.848485,0.07497657,0.8783893 +93.6616621017456,0.0,9.090909,9.090909,0.0656045,0.89688987 +93.6706531047821,0.0,8.333334,8.333334,0.046860356,0.89688987 +93.6796600818634,0.0,7.575758,7.575758,0.037488285,0.89688987 +93.6896300315857,0.0,6.818182,6.818182,0.037488285,0.89688987 +93.70146203041077,0.0,6.060606,6.060606,0.028116215,0.89688987 +93.71218013763428,0.0,5.3030305,5.3030305,0.018744143,0.88023937 +93.71986293792725,0.01,4.5454545,4.5454545,0.009372071,0.88023937 +93.73023200035095,0.01,3.787879,3.787879,0.0,0.88023937 +93.7396080493927,0.02,3.030303,3.030303,0.0,0.88023937 +93.75172305107117,0.02,3.030303,3.030303,0.0,0.88023937 +93.76031112670898,0.03,2.2727273,2.2727273,0.0,0.9283407 +93.76971912384033,0.03,1.5151515,1.5151515,0.0,0.9283407 +93.78433799743652,0.04,1.5151515,1.5151515,0.0,0.9283407 +93.79334902763367,0.04,0.75757575,0.75757575,0.0,0.9283407 +93.80237698554993,0.049999997,0.75757575,0.75757575,0.0,0.9283407 +93.8106141090393,0.049999997,0.0,0.0,0.0,0.9061401 +93.81989192962646,0.06,0.0,0.0,0.0,0.9061401 +93.82943201065063,0.06,0.0,0.0,0.0,0.9061401 +93.84107613563538,0.07,0.0,0.0,0.0,0.9061401 +93.8499641418457,0.07,0.0,0.0,0.0,0.9061401 +93.85966491699219,0.07,0.0,0.0,0.0,0.9930924 +93.87080001831055,0.08,0.0,0.0,0.0,0.9930924 +93.88159394264221,0.08,0.0,0.0,0.0,0.9930924 +93.88940405845642,0.089999996,0.0,0.0,0.0,0.9930924 +93.90069794654846,0.089999996,0.0,0.0,0.0,0.9930924 +93.91059994697571,0.099999994,0.0,0.0,0.0,1.0800447 +93.91962909698486,0.099999994,0.0,0.0,0.0,1.0800447 +93.93016505241394,0.11,0.0,0.0,0.0,1.0800447 +93.94073605537415,0.11,0.0,0.0,0.0,1.0800447 +93.94973707199097,0.12,0.0,0.0,0.0,1.0800447 +93.9647319316864,0.12,0.0,0.0,0.0,1.0837448 +93.97376799583435,0.13,0.0,0.0,0.0,1.0837448 +93.98274898529053,0.13,0.0,0.0,0.0,1.0837448 +93.9917950630188,0.14,0.0,0.0,0.0,1.0837448 +94.00081896781921,0.14,0.0,0.0,0.0,1.0837448 +94.00960111618042,0.14,0.0,0.0,0.0,1.089295 +94.01949310302734,0.14999999,0.0,0.0,0.0,1.089295 +94.03067398071289,0.14999999,0.0,0.0,0.0,1.089295 +94.03967308998108,0.14999999,0.0,0.0,0.0,1.089295 +94.0508930683136,0.14999999,0.0,0.0,0.0,1.089295 +94.06382012367249,0.16,0.0,0.0,0.0,1.1558967 +94.07003998756409,0.16,0.0,0.0,0.0,1.1558967 +94.07985806465149,0.16,0.0,0.0,0.0,1.1558967 +94.0905499458313,0.16,0.0,0.0,0.0,1.1558967 +94.09944105148315,0.16,0.0,0.0,0.0,1.1558967 +94.11163592338562,0.16,0.0,0.0,0.0,1.2539494 +94.11949491500854,0.17,0.0,0.0,0.0,1.2539494 +94.12964010238647,0.17,0.0,0.0,0.0,1.2539494 +94.1406741142273,0.17,0.0,0.0,0.0,1.2539494 +94.14958310127258,0.17,0.0,0.0,0.0,1.2539494 +94.1600170135498,0.17,0.0,0.0,0.0,1.242849 +94.170725107193,0.17,0.0,0.0,0.0,1.242849 +94.17964696884155,0.17999999,0.0,0.0,0.0,1.242849 +94.19022607803345,0.17999999,0.0,0.0,0.0,1.242849 +94.20111012458801,0.17999999,0.0,0.0,0.0,1.242849 +94.20952606201172,0.17999999,0.0,0.0,0.0,1.3168509 +94.21947598457336,0.17999999,0.0,0.0,0.0,1.3168509 +94.233078956604,0.17999999,0.0,0.0,0.0,1.3168509 +94.24199604988098,0.19,0.0,0.0,0.0,1.3168509 +94.25091695785522,0.19,0.0,0.0,0.0,1.3168509 +94.25981307029724,0.19,0.0,0.0,0.0,1.3353515 +94.27141213417053,0.19,0.0,0.0,0.0,1.3353515 +94.2796459197998,0.19999999,0.0,0.0,0.0,1.3353515 +94.28946113586426,0.19999999,0.0,0.0,0.0,1.3353515 +94.29943013191223,0.19999999,0.0,0.0,0.0,1.3353515 +94.30957007408142,0.21,0.0,0.0,0.0,1.2872502 +94.31988906860352,0.21,0.0,0.0,0.0,1.2872502 +94.3310809135437,0.21,0.0,0.0,0.0,1.2872502 +94.34001207351685,0.22,0.0,0.0,0.0,1.2872502 +94.35260009765625,0.22,0.0,0.0,0.0,1.2872502 +94.3616271018982,0.22999999,0.0,0.0,0.0,1.0097427 +94.37063694000244,0.22999999,0.0,0.0,0.0,1.0097427 +94.37965106964111,0.24,0.0,0.0,0.0,1.0097427 +94.39052605628967,0.25,0.0,0.0,0.0,1.0097427 +94.39953112602234,0.26,0.0,0.0,0.0,1.0097427 +94.40972709655762,0.26999998,0.0,0.0,0.0,0.9523913 +94.41957092285156,0.26999998,0.0,0.0,0.0,0.9523913 +94.4305830001831,0.28,0.0,0.0,0.0,0.9523913 +94.44280505180359,0.28,0.0,0.0,0.0,0.9523913 +94.451828956604,0.29,0.0,0.0,0.0,0.9523913 +94.46018695831299,0.29,0.0,0.0,0.0,1.089295 +94.46984696388245,0.29999998,0.0,0.0,0.0,1.089295 +94.48046803474426,0.29999998,0.0,0.0,0.0,1.089295 +94.48946213722229,0.31,0.0,0.0,0.0,1.089295 +94.50032711029053,0.31,0.0,0.0,0.0,1.089295 +94.50944209098816,0.32,0.0,0.0,0.0,1.0985452 +94.51985812187195,0.32,0.0,0.0,0.0,1.0985452 +94.53299307823181,0.32999998,0.0,0.0,0.0,1.0985452 +94.5398280620575,0.32999998,0.0,0.0,0.0,1.0985452 +94.55085706710815,0.34,0.0,0.0,0.0,1.0985452 +94.55939602851868,0.35,0.0,0.0,0.0,1.1003952 +94.56952595710754,0.35,0.0,0.0,0.0,1.1003952 +94.58025693893433,0.35999998,0.0,0.0,0.0,1.1003952 +94.58946013450623,0.37,0.0,0.0,0.0,1.1003952 +94.60254502296448,0.38,0.0,0.0,0.0,1.1003952 +94.61319398880005,0.39,0.0,0.0,0.0,1.0300933 +94.61987209320068,0.39999998,0.0,0.0,0.0,1.0300933 +94.63223195075989,0.41,0.0,0.0,0.0,1.0300933 +94.64125394821167,0.42,0.0,0.0,0.0,1.0300933 +94.6502640247345,0.42,0.0,0.0,0.0,1.0300933 +94.66000199317932,0.42999998,0.0,0.0,0.0,1.0356435 +94.66956901550293,0.44,0.0,0.0,0.0,1.0356435 +94.67953395843506,0.44,0.0,0.0,0.0,1.0356435 +94.6901650428772,0.45,0.0,0.0,0.0,1.0356435 +94.70085406303406,0.45,0.0,0.0,0.0,1.0356435 +94.7118489742279,0.45999998,0.0,0.0,0.0,1.0356435 +94.7199010848999,0.45999998,0.0,0.0,0.0,1.0356435 +94.73144197463989,0.45999998,0.0,0.0,0.0,1.0356435 +94.74047303199768,0.45999998,0.0,0.0,0.0,1.0356435 +94.74948692321777,0.45999998,0.0,0.0,0.0,1.0356435 +94.76046204566956,0.47,0.0,0.0,0.0,1.0485939 +94.76945114135742,0.47,0.0,0.0,0.0,1.0485939 +94.78275299072266,0.47,0.0,0.0,0.0,1.0485939 +94.79430508613586,0.47,0.0,0.0,0.0,1.0485939 +94.80003905296326,0.47,0.0,0.0,0.0,1.0485939 +94.80994701385498,0.48,0.0,0.0,0.0,1.017143 +94.81950211524963,0.48,0.0,0.0,0.0,1.017143 +94.82991695404053,0.48999998,0.0,0.0,0.0,1.017143 +94.83969402313232,0.48999998,0.0,0.0,0.0,1.017143 +94.85057401657104,0.5,0.0,0.0,0.0,1.017143 +94.8595769405365,0.5,0.0,0.0,0.0,0.90243995 +94.87444996833801,0.51,0.0,0.0,0.0,0.90243995 +94.88338613510132,0.51,0.0,0.0,0.0,0.90243995 +94.89228105545044,0.51,0.0,0.0,0.0,0.90243995 +94.90117406845093,0.52,0.0,0.0,0.0,0.90243995 +94.91008806228638,0.52,0.0,0.0,0.0,0.79143703 +94.919517993927,0.53,0.0,0.0,0.0,0.79143703 +94.92938804626465,0.53,0.0,0.0,0.0,0.79143703 +94.93942213058472,0.53999996,0.0,0.0,0.0,0.79143703 +94.9496660232544,0.53999996,0.0,0.0,0.0,0.79143703 +94.96003699302673,0.53999996,0.0,0.0,0.0,0.8025373 +94.97241711616516,0.55,0.0,0.0,0.0,0.8025373 +94.98132610321045,0.55,0.0,0.0,0.0,0.8025373 +94.99023008346558,0.55,0.0,0.0,0.0,0.8025373 +95.00087094306946,0.55,0.0,0.0,0.0,0.8025373 +95.00949501991272,0.55,0.0,0.0,0.0,0.8025373 +95.0198929309845,0.55,0.0,0.0,0.0,0.8025373 +95.02943301200867,0.55,0.0,0.0,0.0,0.8025373 +95.03979992866516,0.55,0.0,0.0,0.0,0.8025373 +95.05258393287659,0.56,0.0,0.0,0.0,0.8025373 +95.0602331161499,0.56,0.0,0.0,0.0,0.7877369 +95.07041692733765,0.56,0.0,0.0,0.0,0.7877369 +95.08301091194153,0.56,0.0,0.0,0.0,0.7877369 +95.09201312065125,0.56,0.0,0.0,0.0,0.7877369 +95.09949111938477,0.56,0.0,0.0,0.0,0.7877369 +95.11000514030457,0.56,0.0,0.0,0.0,0.7840369 +95.11990594863892,0.56,0.0,0.0,0.0,0.7840369 +95.12995100021362,0.56,0.0,0.0,0.0,0.7840369 +95.14050912857056,0.56,0.0,0.0,0.0,0.7840369 +95.15060806274414,0.56,0.0,0.0,0.0,0.7840369 +95.15950608253479,0.56,0.0,0.0,0.0,0.64898324 +95.17297601699829,0.56,0.0,0.0,0.0,0.64898324 +95.18146204948425,0.56,0.0,0.0,0.0,0.64898324 +95.19032692909241,0.56,0.0,0.0,0.0,0.64898324 +95.19997191429138,0.56,0.0,0.0,0.0,0.64898324 +95.20955204963684,0.56,0.0,0.0,0.0,0.3529754 +95.21967196464539,0.56,0.0,0.0,0.0,0.3529754 +95.22987294197083,0.56,0.0,0.0,0.0,0.3529754 +95.23966813087463,0.55,0.0,0.0,0.0,0.3529754 +95.25256013870239,0.55,0.0,0.0,0.0,0.3529754 +95.26094603538513,0.55,0.0,0.0,0.0,0.29747394 +95.27192997932434,0.53999996,0.0,0.0,0.0,0.29747394 +95.27995896339417,0.53,0.0,0.0,0.0,0.29747394 +95.28990602493286,0.53,0.0,0.0,0.0,0.29747394 +95.2997419834137,0.52,0.0,0.0,0.0,0.29747394 +95.31019997596741,0.51,0.0,0.0,0.0,0.31042427 +95.31941294670105,0.51,0.0,0.0,0.0,0.31042427 +95.3343460559845,0.5,0.0,0.0,0.0,0.31042427 +95.33993601799011,0.48999998,0.0,0.0,0.0,0.31042427 +95.35291004180908,0.48999998,0.0,0.0,0.0,0.31042427 +95.36164999008179,0.48,0.0,0.0,0.0,0.26047295 +95.3709020614624,0.48,0.0,0.0,0.0,0.26047295 +95.37989401817322,0.47,0.0,0.0,0.0,0.26047295 +95.3899519443512,0.47,0.0,0.0,0.0,0.26047295 +95.39996409416199,0.45999998,0.0,0.0,0.0,0.26047295 +95.41092014312744,0.45999998,0.0,0.0,0.0,0.19942135 +95.42018795013428,0.45999998,0.0,0.0,0.0,0.19942135 +95.4298779964447,0.45,0.0,0.0,0.0,0.19942135 +95.44288206100464,0.45,0.0,0.0,0.0,0.19942135 +95.44947504997253,0.45,0.0,0.0,0.0,0.19942135 +95.46086597442627,0.45,0.0,0.0,0.0,0.077318095 +95.46988010406494,0.44,0.0,0.0,0.0,0.077318095 +95.48012113571167,0.44,0.0,0.0,0.0,0.077318095 +95.49002504348755,0.42999998,0.0,0.0,0.0,0.077318095 +95.50062012672424,0.42,0.0,0.0,0.0,0.077318095 +95.51352500915527,0.41,0.0,0.0,0.0,-0.08733628 +95.5202009677887,0.39999998,0.0,0.0,0.0,-0.08733628 +95.52989196777344,0.39,0.0,0.0,0.0,-0.08733628 +95.54185199737549,0.38,0.0,0.0,0.0,-0.08733628 +95.5508279800415,0.37,0.0,0.0,0.0,-0.08733628 +95.55982708930969,0.35999998,0.0,0.0,0.0,-0.11508702 +95.57033395767212,0.35,0.0,0.0,0.0,-0.11508702 +95.57956910133362,0.34,0.0,0.0,0.0,-0.11508702 +95.5894079208374,0.34,0.0,0.0,0.0,-0.11508702 +95.60212111473083,0.32999998,0.0,0.0,0.0,-0.11508702 +95.6095199584961,0.32,0.0,0.0,0.0,-0.19648919 +95.62020611763,0.32,0.0,0.0,0.0,-0.19648919 +95.62989592552185,0.31,0.0,0.0,0.0,-0.19648919 +95.64048409461975,0.31,0.0,0.0,0.0,-0.19648919 +95.64940404891968,0.31,0.0,0.0,0.0,-0.19648919 +95.66053509712219,0.29999998,0.0,0.0,0.0,-0.22794001 +95.66954612731934,0.29999998,0.0,0.0,0.0,-0.22794001 +95.67946100234985,0.29,0.0,0.0,0.0,-0.22794001 +95.68959712982178,0.29,0.0,0.0,0.0,-0.22794001 +95.7028751373291,0.28,0.0,0.0,0.0,-0.22794001 +95.70965909957886,0.28,0.0,0.0,0.0,-0.27974138 +95.7206859588623,0.26999998,0.0,0.0,0.0,-0.27974138 +95.72961807250977,0.26999998,0.0,0.0,0.0,-0.27974138 +95.73972511291504,0.26,0.0,0.0,0.0,-0.27974138 +95.75074410438538,0.26,0.0,0.0,0.0,-0.27974138 +95.75976014137268,0.25,0.0,0.0,0.0,-0.32044247 +95.7695300579071,0.25,0.0,0.0,0.0,-0.32044247 +95.77989792823792,0.24,0.0,0.0,0.0,-0.32044247 +95.79196906089783,0.24,0.0,0.0,0.0,-0.32044247 +95.8008930683136,0.24,0.0,0.0,0.0,-0.32044247 +95.80979990959167,0.24,0.0,0.0,0.0,-0.34634316 +95.82020592689514,0.24,0.0,0.0,0.0,-0.34634316 +95.82963705062866,0.24,0.0,0.0,0.0,-0.34634316 +95.83973908424377,0.24,0.0,0.0,0.0,-0.34634316 +95.84997391700745,0.25,0.0,0.0,0.0,-0.34634316 +95.85956692695618,0.25,0.0,0.0,0.0,-0.44809586 +95.86984014511108,0.24,0.0,0.0,0.0,-0.44809586 +95.88064002990723,0.24,0.0,0.0,0.0,-0.44809586 +95.89001703262329,0.24,0.0,0.0,0.0,-0.44809586 +95.89984798431396,0.24,0.0,0.0,0.0,-0.44809586 +95.91056513786316,0.24,0.0,0.0,0.0,-0.57204914 +95.91957306861877,0.22999999,0.0,0.0,0.0,-0.57204914 +95.92988204956055,0.22999999,0.0,0.0,0.0,-0.57204914 +95.9401330947876,0.22999999,0.0,0.0,0.0,-0.57204914 +95.9496500492096,0.22,0.0,0.0,0.0,-0.57204914 +95.9613139629364,0.22,0.0,0.0,0.0,-0.6257006 +95.96981191635132,0.22,0.0,0.0,0.0,-0.6257006 +95.9825279712677,0.22,0.0,0.0,0.0,-0.6257006 +95.9897530078888,0.22,0.0,0.0,0.0,-0.6257006 +96.00031900405884,0.22,0.0,0.0,0.0,-0.6257006 +96.00949597358704,0.22,0.0,0.0,0.0,-0.6072001 +96.02011895179749,0.22,0.0,0.0,0.0,-0.6072001 +96.02990198135376,0.22,0.0,0.0,0.0,-0.6072001 +96.03971409797668,0.22,0.0,0.0,0.0,-0.6072001 +96.0504150390625,0.22,0.0,0.0,0.0,-0.6072001 +96.06345295906067,0.22,0.0,0.0,0.0,-0.6238505 +96.07243990898132,0.22,0.0,0.0,0.0,-0.6238505 +96.08145213127136,0.22,0.0,0.0,0.0,-0.6238505 +96.09043312072754,0.22,0.0,0.0,0.0,-0.6238505 +96.09940695762634,0.22,0.0,0.0,0.0,-0.6238505 +96.1096761226654,0.22,0.0,0.0,0.0,-0.61275023 +96.12016296386719,0.22999999,0.0,0.0,0.0,-0.61275023 +96.12951397895813,0.22999999,0.0,0.0,0.0,-0.61275023 +96.13948702812195,0.22999999,0.0,0.0,0.0,-0.61275023 +96.15327310562134,0.22999999,0.0,0.0,0.0,-0.61275023 +96.16237306594849,0.22999999,0.0,0.0,0.0,-0.6201504 +96.17136693000793,0.24,0.0,0.0,0.0,-0.6201504 +96.18037700653076,0.24,0.0,0.0,0.0,-0.6201504 +96.19204306602478,0.24,0.0,0.0,0.0,-0.6201504 +96.1997709274292,0.24,0.0,0.0,0.0,-0.6201504 +96.21053314208984,0.24,0.0,0.0,0.0,-0.5239479 +96.21964192390442,0.24,0.0,0.0,0.0,-0.5239479 +96.2294590473175,0.24,0.0,0.0,0.0,-0.5239479 +96.24329710006714,0.24,0.0,0.0,0.0,-0.5239479 +96.25230503082275,0.25,0.0,0.0,0.0,-0.5239479 +96.26130104064941,0.25,0.0,0.0,0.0,-0.4277453 +96.2702910900116,0.26,0.0,0.0,0.0,-0.4277453 +96.28202891349792,0.26999998,0.0,0.0,0.0,-0.4277453 +96.29034614562988,0.28,0.0,0.0,0.0,-0.4277453 +96.29983711242676,0.28,0.0,0.0,0.0,-0.4277453 +96.30989503860474,0.29,0.0,0.0,0.0,-0.40554473 +96.32020306587219,0.29,0.0,0.0,0.0,-0.40554473 +96.32991814613342,0.29,0.0,0.0,0.0,-0.40554473 +96.34202313423157,0.29,0.0,0.0,0.0,-0.40554473 +96.35024309158325,0.29,0.0,0.0,0.0,-0.40554473 +96.36007905006409,0.29,0.0,0.0,0.0,-0.49989724 +96.3711199760437,0.29,0.0,0.0,0.0,-0.49989724 +96.380038022995,0.28,0.0,0.0,0.0,-0.49989724 +96.39095997810364,0.28,0.0,0.0,0.0,-0.49989724 +96.39995694160461,0.28,0.0,0.0,0.0,-0.49989724 +96.4141891002655,0.28,0.0,0.0,0.0,-0.50174725 +96.42018508911133,0.28,0.0,0.0,0.0,-0.50174725 +96.42949199676514,0.28,0.0,0.0,0.0,-0.50174725 +96.44115805625916,0.29,0.0,0.0,0.0,-0.50174725 +96.45016503334045,0.29,0.0,0.0,0.0,-0.50174725 +96.45952296257019,0.29999998,0.0,0.0,0.0,-0.49989724 +96.47048902511597,0.31,0.0,0.0,0.0,-0.49989724 +96.48100113868713,0.31,0.0,0.0,0.0,-0.49989724 +96.49003100395203,0.32,0.0,0.0,0.0,-0.49989724 +96.50312900543213,0.32,0.0,0.0,0.0,-0.49989724 +96.51154494285583,0.32,0.0,0.0,0.0,-0.5035973 +96.52020311355591,0.32,0.0,0.0,0.0,-0.5035973 +96.52989602088928,0.32,0.0,0.0,0.0,-0.5035973 +96.54007911682129,0.32,0.0,0.0,0.0,-0.5035973 +96.55249905586243,0.32,0.0,0.0,0.0,-0.5035973 +96.56070494651794,0.32999998,0.0,0.0,0.0,-0.3888943 +96.5710871219635,0.32999998,0.0,0.0,0.0,-0.3888943 +96.57970213890076,0.34,0.0,0.0,0.0,-0.3888943 +96.58949613571167,0.35,0.0,0.0,0.0,-0.3888943 +96.6027479171753,0.35999998,0.0,0.0,0.0,-0.3888943 +96.60939192771912,0.37,0.0,0.0,0.0,-0.3629936 +96.62023901939392,0.38,0.0,0.0,0.0,-0.3629936 +96.62946605682373,0.39,0.0,0.0,0.0,-0.3629936 +96.63989305496216,0.39999998,0.0,0.0,0.0,-0.3629936 +96.65213108062744,0.39999998,0.0,0.0,0.0,-0.3629936 +96.6611499786377,0.39,0.0,0.0,0.0,-0.36854377 +96.67016911506653,0.39,0.0,0.0,0.0,-0.36854377 +96.67966914176941,0.38,0.0,0.0,0.0,-0.36854377 +96.69156002998352,0.37,0.0,0.0,0.0,-0.36854377 +96.70074605941772,0.35999998,0.0,0.0,0.0,-0.36854377 +96.70965600013733,0.35,0.0,0.0,0.0,-0.3111922 +96.71993398666382,0.35,0.0,0.0,0.0,-0.3111922 +96.72989296913147,0.35,0.0,0.0,0.0,-0.3111922 +96.74056792259216,0.35,0.0,0.0,0.0,-0.3111922 +96.75033712387085,0.35,0.0,0.0,0.0,-0.3111922 +96.76021099090576,0.35999998,0.0,0.0,0.0,-0.3074921 +96.7698540687561,0.37,0.0,0.0,0.0,-0.3074921 +96.78096103668213,0.37,0.0,0.0,0.0,-0.3074921 +96.78987693786621,0.38,0.0,0.0,0.0,-0.3074921 +96.80089712142944,0.38,0.0,0.0,0.0,-0.3074921 +96.80986595153809,0.38,0.0,0.0,0.0,-0.27974138 +96.82020998001099,0.38,0.0,0.0,0.0,-0.27974138 +96.8298749923706,0.38,0.0,0.0,0.0,-0.27974138 +96.84125208854675,0.38,0.0,0.0,0.0,-0.27974138 +96.85027194023132,0.38,0.0,0.0,0.0,-0.27974138 +96.86002993583679,0.37,0.0,0.0,0.0,-0.29639184 +96.86971402168274,0.37,0.0,0.0,0.0,-0.29639184 +96.87944602966309,0.37,0.0,0.0,0.0,-0.29639184 +96.89068293571472,0.35999998,0.0,0.0,0.0,-0.29639184 +96.8998351097107,0.35999998,0.0,0.0,0.0,-0.29639184 +96.91024899482727,0.35999998,0.0,0.0,0.0,-0.22979008 +96.92021012306213,0.37,0.0,0.0,0.0,-0.22979008 +96.92990112304688,0.37,0.0,0.0,0.0,-0.22979008 +96.94032406806946,0.37,0.0,0.0,0.0,-0.22979008 +96.95022892951965,0.38,0.0,0.0,0.0,-0.22979008 +96.95938992500305,0.38,0.0,0.0,0.0,-0.19463913 +96.97176194190979,0.39,0.0,0.0,0.0,-0.19463913 +96.98077511787415,0.39,0.0,0.0,0.0,-0.19463913 +96.98974394798279,0.39999998,0.0,0.0,0.0,-0.19463913 +97.00023698806763,0.39999998,0.0,0.0,0.0,-0.19463913 +97.00953197479248,0.39,0.0,0.0,0.0,-0.20758946 +97.01957607269287,0.39,0.0,0.0,0.0,-0.20758946 +97.02992010116577,0.39,0.0,0.0,0.0,-0.20758946 +97.03958010673523,0.38,0.0,0.0,0.0,-0.20758946 +97.04941892623901,0.37,0.0,0.0,0.0,-0.20758946 +97.0616979598999,0.35999998,0.0,0.0,0.0,-0.009634218 +97.07066893577576,0.35999998,0.0,0.0,0.0,-0.009634218 +97.07966899871826,0.35,0.0,0.0,0.0,-0.009634218 +97.0928430557251,0.35,0.0,0.0,0.0,-0.009634218 +97.10174107551575,0.35,0.0,0.0,0.0,-0.009634218 +97.11064910888672,0.35,0.0,0.0,0.0,0.08656834 +97.11956000328064,0.35,0.0,0.0,0.0,0.08656834 +97.12940096855164,0.35,0.0,0.0,0.0,0.08656834 +97.13961601257324,0.35,0.0,0.0,0.0,0.08656834 +97.15163397789001,0.35,0.0,0.0,0.0,0.08656834 +97.16064095497131,0.34,0.0,0.0,0.0,0.114319056 +97.16962313652039,0.32999998,0.0,0.0,0.0,0.114319056 +97.18194794654846,0.32999998,0.0,0.0,0.0,0.114319056 +97.19082713127136,0.32,0.0,0.0,0.0,0.114319056 +97.19976210594177,0.31,0.0,0.0,0.0,0.114319056 +97.21042895317078,0.31,0.0,0.0,0.0,0.1383697 +97.21942090988159,0.31,0.0,0.0,0.0,0.1383697 +97.22978901863098,0.29999998,0.0,0.0,0.0,0.1383697 +97.24161410331726,0.29999998,0.0,0.0,0.0,0.1383697 +97.25057792663574,0.29999998,0.0,0.0,0.0,0.1383697 +97.25958204269409,0.29999998,0.0,0.0,0.0,0.1383697 +97.26967597007751,0.29999998,0.0,0.0,0.0,0.1383697 +97.27991795539856,0.29999998,0.0,0.0,0.0,0.1383697 +97.28992509841919,0.31,0.0,0.0,0.0,0.1383697 +97.30044198036194,0.31,0.0,0.0,0.0,0.1383697 +97.30944609642029,0.31,0.0,0.0,0.0,0.16982053 +97.31994295120239,0.31,0.0,0.0,0.0,0.16982053 +97.32991814613342,0.31,0.0,0.0,0.0,0.16982053 +97.34053611755371,0.31,0.0,0.0,0.0,0.16982053 +97.34952306747437,0.31,0.0,0.0,0.0,0.16982053 +97.3600721359253,0.31,0.0,0.0,0.0,0.21607177 +97.37186193466187,0.31,0.0,0.0,0.0,0.21607177 +97.37968611717224,0.31,0.0,0.0,0.0,0.21607177 +97.39047813415527,0.31,0.0,0.0,0.0,0.21607177 +97.39947295188904,0.31,0.0,0.0,0.0,0.21607177 +97.4101550579071,0.31,0.0,0.0,0.0,0.23457228 +97.42078900337219,0.31,0.0,0.0,0.0,0.23457228 +97.43049907684326,0.32,0.0,0.0,0.0,0.23457228 +97.43949294090271,0.32,0.0,0.0,0.0,0.23457228 +97.4534900188446,0.32,0.0,0.0,0.0,0.23457228 +97.46248292922974,0.32,0.0,0.0,0.0,0.23827238 +97.47151112556458,0.32,0.0,0.0,0.0,0.23827238 +97.47992205619812,0.32,0.0,0.0,0.0,0.23827238 +97.48950409889221,0.32999998,0.0,0.0,0.0,0.23827238 +97.50031113624573,0.32999998,0.0,0.0,0.0,0.23827238 +97.50951313972473,0.32999998,0.0,0.0,0.0,0.23087217 +97.52022004127502,0.32999998,0.0,0.0,0.0,0.23087217 +97.52949404716492,0.32999998,0.0,0.0,0.0,0.23087217 +97.54351091384888,0.32999998,0.0,0.0,0.0,0.23087217 +97.54969191551208,0.34,0.0,0.0,0.0,0.23087217 +97.56050992012024,0.34,0.0,0.0,0.0,0.23457228 +97.57052898406982,0.34,0.0,0.0,0.0,0.23457228 +97.57952094078064,0.34,0.0,0.0,0.0,0.23457228 +97.59024000167847,0.34,0.0,0.0,0.0,0.23457228 +97.59947991371155,0.34,0.0,0.0,0.0,0.23457228 +97.60940408706665,0.35,0.0,0.0,0.0,0.21422173 +97.61963391304016,0.35,0.0,0.0,0.0,0.21422173 +97.6299180984497,0.35,0.0,0.0,0.0,0.21422173 +97.6425359249115,0.35,0.0,0.0,0.0,0.21422173 +97.65020513534546,0.35,0.0,0.0,0.0,0.21422173 +97.65990805625916,0.35,0.0,0.0,0.0,0.2549228 +97.66956400871277,0.35,0.0,0.0,0.0,0.2549228 +97.67999005317688,0.35,0.0,0.0,0.0,0.2549228 +97.6896231174469,0.35,0.0,0.0,0.0,0.2549228 +97.70034694671631,0.35,0.0,0.0,0.0,0.2549228 +97.70951509475708,0.35,0.0,0.0,0.0,0.24937265 +97.72021293640137,0.35,0.0,0.0,0.0,0.24937265 +97.72989106178284,0.35,0.0,0.0,0.0,0.24937265 +97.7415919303894,0.35,0.0,0.0,0.0,0.24937265 +97.75061202049255,0.35,0.0,0.0,0.0,0.24937265 +97.75960803031921,0.35,0.0,0.0,0.0,0.29007375 +97.76979398727417,0.35,0.0,0.0,0.0,0.29007375 +97.779865026474,0.35,0.0,0.0,0.0,0.29007375 +97.78969693183899,0.35,0.0,0.0,0.0,0.29007375 +97.80319309234619,0.35,0.0,0.0,0.0,0.29007375 +97.8136579990387,0.34,0.0,0.0,0.0,0.48247886 +97.82024598121643,0.34,0.0,0.0,0.0,0.48247886 +97.82989597320557,0.34,0.0,0.0,0.0,0.48247886 +97.84068298339844,0.34,0.0,0.0,0.0,0.48247886 +97.84969592094421,0.34,0.0,0.0,0.0,0.48247886 +97.86103105545044,0.35,0.0,0.0,0.0,0.36777583 +97.86940097808838,0.35,0.0,0.0,0.0,0.36777583 +97.87942099571228,0.35999998,0.0,0.0,0.0,0.36777583 +97.89080691337585,0.37,0.0,0.0,0.0,0.36777583 +97.90346097946167,0.38,0.0,0.0,0.0,0.36777583 +97.91235303878784,0.39,0.0,0.0,0.0,0.23827238 +97.92006301879883,0.39999998,0.0,0.0,0.0,0.23827238 +97.92992806434631,0.41,0.0,0.0,0.0,0.23827238 +97.93976497650146,0.41,0.0,0.0,0.0,0.23827238 +97.9512391090393,0.42,0.0,0.0,0.0,0.23827238 +97.96025514602661,0.42,0.0,0.0,0.0,0.23272221 +97.97017097473145,0.42,0.0,0.0,0.0,0.23272221 +97.98354005813599,0.42,0.0,0.0,0.0,0.23272221 +97.99161410331726,0.42999998,0.0,0.0,0.0,0.23272221 +97.99979901313782,0.42999998,0.0,0.0,0.0,0.23272221 +98.01034712791443,0.42999998,0.0,0.0,0.0,0.21052164 +98.02023005485535,0.42999998,0.0,0.0,0.0,0.21052164 +98.02981996536255,0.42999998,0.0,0.0,0.0,0.21052164 +98.04142808914185,0.44,0.0,0.0,0.0,0.21052164 +98.05009198188782,0.44,0.0,0.0,0.0,0.21052164 +98.05947494506836,0.44,0.0,0.0,0.0,0.26602313 +98.07271599769592,0.44,0.0,0.0,0.0,0.26602313 +98.08161807060242,0.45,0.0,0.0,0.0,0.26602313 +98.09053111076355,0.45,0.0,0.0,0.0,0.26602313 +98.09945702552795,0.45,0.0,0.0,0.0,0.26602313 +98.11091113090515,0.45,0.0,0.0,0.0,0.29932398 +98.11972713470459,0.45999998,0.0,0.0,0.0,0.29932398 +98.12992811203003,0.45999998,0.0,0.0,0.0,0.29932398 +98.14065504074097,0.45999998,0.0,0.0,0.0,0.29932398 +98.14966011047363,0.45999998,0.0,0.0,0.0,0.29932398 +98.1618299484253,0.45999998,0.0,0.0,0.0,0.37332594 +98.17072606086731,0.45999998,0.0,0.0,0.0,0.37332594 +98.17963695526123,0.45999998,0.0,0.0,0.0,0.37332594 +98.19138813018799,0.45999998,0.0,0.0,0.0,0.37332594 +98.20097398757935,0.45999998,0.0,0.0,0.0,0.37332594 +98.2097430229187,0.45999998,0.0,0.0,0.0,0.39182645 +98.21957111358643,0.45999998,0.0,0.0,0.0,0.39182645 +98.22989511489868,0.45999998,0.0,0.0,0.0,0.39182645 +98.23984909057617,0.45999998,0.0,0.0,0.0,0.39182645 +98.25093197822571,0.45999998,0.0,0.0,0.0,0.39182645 +98.25949311256409,0.45999998,0.0,0.0,0.0,0.3862763 +98.27306294441223,0.45999998,0.0,0.0,0.0,0.3862763 +98.28206896781921,0.45999998,0.0,0.0,0.0,0.3862763 +98.29108214378357,0.45999998,0.0,0.0,0.0,0.3862763 +98.30007195472717,0.45999998,0.0,0.0,0.0,0.3862763 +98.31023502349854,0.45999998,0.0,0.0,0.0,0.34372514 +98.3194100856781,0.45999998,0.0,0.0,0.0,0.34372514 +98.32991814613342,0.45999998,0.0,0.0,0.0,0.34372514 +98.33994007110596,0.45999998,0.0,0.0,0.0,0.34372514 +98.35417604446411,0.47,0.0,0.0,0.0,0.34372514 +98.36050701141357,0.47,0.0,0.0,0.0,0.30672416 +98.37129402160645,0.47,0.0,0.0,0.0,0.30672416 +98.3811891078949,0.48,0.0,0.0,0.0,0.30672416 +98.39023113250732,0.48,0.0,0.0,0.0,0.30672416 +98.40136909484863,0.48,0.0,0.0,0.0,0.30672416 +98.40943908691406,0.48,0.0,0.0,0.0,0.30117404 +98.41985702514648,0.48,0.0,0.0,0.0,0.30117404 +98.42948603630066,0.48,0.0,0.0,0.0,0.30117404 +98.44025611877441,0.48,0.0,0.0,0.0,0.30117404 +98.45328092575073,0.48,0.0,0.0,0.0,0.30117404 +98.46228313446045,0.48,0.0,0.0,0.0,0.338175 +98.46961903572083,0.48,0.0,0.0,0.0,0.338175 +98.480309009552,0.48,0.0,0.0,0.0,0.338175 +98.49101996421814,0.48,0.0,0.0,0.0,0.338175 +98.5003719329834,0.48,0.0,0.0,0.0,0.338175 +98.5094940662384,0.48,0.0,0.0,0.0,0.3492753 +98.51946711540222,0.48,0.0,0.0,0.0,0.3492753 +98.52992296218872,0.48,0.0,0.0,0.0,0.3492753 +98.54338598251343,0.48,0.0,0.0,0.0,0.3492753 +98.55238914489746,0.48,0.0,0.0,0.0,0.3492753 +98.56141209602356,0.47,0.0,0.0,0.0,0.3714759 +98.57034397125244,0.47,0.0,0.0,0.0,0.3714759 +98.57944798469543,0.47,0.0,0.0,0.0,0.3714759 +98.58945298194885,0.47,0.0,0.0,0.0,0.3714759 +98.59970903396606,0.47,0.0,0.0,0.0,0.3714759 +98.60945200920105,0.48,0.0,0.0,0.0,0.3603756 +98.62022995948792,0.48,0.0,0.0,0.0,0.3603756 +98.62994599342346,0.48,0.0,0.0,0.0,0.3603756 +98.63949298858643,0.48,0.0,0.0,0.0,0.3603756 +98.64994692802429,0.48,0.0,0.0,0.0,0.3603756 +98.66055107116699,0.48,0.0,0.0,0.0,0.36407572 +98.66956901550293,0.48,0.0,0.0,0.0,0.36407572 +98.68065309524536,0.48,0.0,0.0,0.0,0.36407572 +98.68964910507202,0.48,0.0,0.0,0.0,0.36407572 +98.69987201690674,0.48,0.0,0.0,0.0,0.36407572 +98.70949506759644,0.48,0.0,0.0,0.0,0.3529754 +98.72021412849426,0.48999998,0.0,0.0,0.0,0.3529754 +98.72991800308228,0.48999998,0.0,0.0,0.0,0.3529754 +98.74087500572205,0.48999998,0.0,0.0,0.0,0.3529754 +98.74977397918701,0.48999998,0.0,0.0,0.0,0.3529754 +98.75969004631042,0.48999998,0.0,0.0,0.0,0.36222565 +98.76954698562622,0.48999998,0.0,0.0,0.0,0.36222565 +98.77959108352661,0.48999998,0.0,0.0,0.0,0.36222565 +98.79006791114807,0.48999998,0.0,0.0,0.0,0.36222565 +98.80278491973877,0.48999998,0.0,0.0,0.0,0.36222565 +98.81210899353027,0.48999998,0.0,0.0,0.0,0.32892478 +98.82023906707764,0.48999998,0.0,0.0,0.0,0.32892478 +98.82994103431702,0.48999998,0.0,0.0,0.0,0.32892478 +98.8407769203186,0.5,0.0,0.0,0.0,0.32892478 +98.84980297088623,0.5,0.0,0.0,0.0,0.32892478 +98.85989093780518,0.5,0.0,0.0,0.0,0.26417306 +98.86954498291016,0.51,0.0,0.0,0.0,0.26417306 +98.88025212287903,0.51,0.0,0.0,0.0,0.26417306 +98.89230513572693,0.51,0.0,0.0,0.0,0.26417306 +98.89965605735779,0.52,0.0,0.0,0.0,0.26417306 +98.9101619720459,0.52,0.0,0.0,0.0,0.12541938 +98.92018795013428,0.53,0.0,0.0,0.0,0.12541938 +98.92992901802063,0.53999996,0.0,0.0,0.0,0.12541938 +98.9399139881134,0.55,0.0,0.0,0.0,0.12541938 +98.9504759311676,0.56,0.0,0.0,0.0,0.12541938 +98.95947504043579,0.56,0.0,0.0,0.0,0.15132006 +98.96944212913513,0.57,0.0,0.0,0.0,0.15132006 +98.97948503494263,0.58,0.0,0.0,0.0,0.15132006 +98.9903130531311,0.58,0.0,0.0,0.0,0.15132006 +99.0029981136322,0.58,0.0,0.0,0.0,0.15132006 +99.00960493087769,0.59,0.0,0.0,0.0,0.12541938 +99.02023601531982,0.59,0.0,0.0,0.0,0.12541938 +99.0297110080719,0.59,0.0,0.0,0.0,0.12541938 +99.04042291641235,0.59,0.0,0.0,0.0,0.12541938 +99.04942607879639,0.59,0.0,0.0,0.0,0.12541938 +99.06064200401306,0.59,0.0,0.0,0.0,0.12726942 +99.06966590881348,0.59999996,0.0,0.0,0.0,0.12726942 +99.0793969631195,0.59999996,0.0,0.0,0.0,0.12726942 +99.09066200256348,0.59999996,0.0,0.0,0.0,0.12726942 +99.10217499732971,0.59999996,0.0,0.0,0.0,0.12726942 +99.11115312576294,0.59999996,0.0,0.0,0.0,0.2549228 +99.11966013908386,0.59999996,0.0,0.0,0.0,0.2549228 +99.13038110733032,0.59999996,0.0,0.0,0.0,0.2549228 +99.1411509513855,0.59999996,0.0,0.0,0.0,0.2549228 +99.15067291259766,0.59999996,0.0,0.0,0.0,0.2549228 +99.1595950126648,0.59999996,0.0,0.0,0.0,0.22162192 +99.17425894737244,0.59999996,0.0,0.0,0.0,0.22162192 +99.17993211746216,0.59999996,0.0,0.0,0.0,0.22162192 +99.19225811958313,0.59999996,0.0,0.0,0.0,0.22162192 +99.20126104354858,0.59999996,0.0,0.0,0.0,0.22162192 +99.2097499370575,0.59999996,0.0,0.0,0.0,0.18092082 +99.22023606300354,0.59999996,0.0,0.0,0.0,0.18092082 +99.22955799102783,0.59999996,0.0,0.0,0.0,0.18092082 +99.23979306221008,0.61,0.0,0.0,0.0,0.18092082 +99.25007009506226,0.61,0.0,0.0,0.0,0.18092082 +99.26434803009033,0.61,0.0,0.0,0.0,0.17352064 +99.26975297927856,0.61,0.0,0.0,0.0,0.17352064 +99.28236413002014,0.61,0.0,0.0,0.0,0.17352064 +99.28983902931213,0.61,0.0,0.0,0.0,0.17352064 +99.30038499832153,0.61,0.0,0.0,0.0,0.17352064 +99.30940198898315,0.62,0.0,0.0,0.0,0.1790708 +99.31955814361572,0.62,0.0,0.0,0.0,0.1790708 +99.32993006706238,0.62,0.0,0.0,0.0,0.1790708 +99.34025001525879,0.62,0.0,0.0,0.0,0.1790708 +99.35080814361572,0.62,0.0,0.0,0.0,0.1790708 +99.36030697822571,0.63,0.0,0.0,0.0,0.09951867 +99.37246799468994,0.63,0.0,0.0,0.0,0.09951867 +99.38145303726196,0.63,0.0,0.0,0.0,0.09951867 +99.39045310020447,0.64,0.0,0.0,0.0,0.09951867 +99.39947295188904,0.65,0.0,0.0,0.0,0.09951867 +99.41241693496704,0.65,0.0,0.0,0.0,0.073618 +99.41989302635193,0.65,0.0,0.0,0.0,0.073618 +99.42994594573975,0.65999997,0.0,0.0,0.0,0.073618 +99.43947696685791,0.65999997,0.0,0.0,0.0,0.073618 +99.45352792739868,0.65999997,0.0,0.0,0.0,0.073618 +99.46253299713135,0.65999997,0.0,0.0,0.0,0.08101819 +99.46955394744873,0.65999997,0.0,0.0,0.0,0.08101819 +99.4803409576416,0.66999996,0.0,0.0,0.0,0.08101819 +99.48955702781677,0.66999996,0.0,0.0,0.0,0.08101819 +99.50262999534607,0.66999996,0.0,0.0,0.0,0.08101819 +99.51026797294617,0.66999996,0.0,0.0,0.0,0.049567357 +99.5202169418335,0.66999996,0.0,0.0,0.0,0.049567357 +99.52968192100525,0.66999996,0.0,0.0,0.0,0.049567357 +99.54267501831055,0.66999996,0.0,0.0,0.0,0.049567357 +99.54993391036987,0.66999996,0.0,0.0,0.0,0.049567357 +99.56049394607544,0.66999996,0.0,0.0,0.0,0.09951867 +99.56941413879395,0.66999996,0.0,0.0,0.0,0.09951867 +99.57963395118713,0.66999996,0.0,0.0,0.0,0.09951867 +99.58939003944397,0.66999996,0.0,0.0,0.0,0.09951867 +99.60004806518555,0.66999996,0.0,0.0,0.0,0.09951867 +99.61061000823975,0.66999996,0.0,0.0,0.0,0.08841839 +99.61987400054932,0.66999996,0.0,0.0,0.0,0.08841839 +99.6299569606781,0.66999996,0.0,0.0,0.0,0.08841839 +99.64069294929504,0.66999996,0.0,0.0,0.0,0.08841839 +99.64961695671082,0.66999996,0.0,0.0,0.0,0.08841839 +99.66070199012756,0.66999996,0.0,0.0,0.0,0.08286824 +99.66971611976624,0.66999996,0.0,0.0,0.0,0.08286824 +99.67946290969849,0.66999996,0.0,0.0,0.0,0.08286824 +99.6904981136322,0.66999996,0.0,0.0,0.0,0.08286824 +99.70106601715088,0.68,0.0,0.0,0.0,0.08286824 +99.71005392074585,0.68,0.0,0.0,0.0,0.049567357 +99.7202570438385,0.68,0.0,0.0,0.0,0.049567357 +99.7297830581665,0.68,0.0,0.0,0.0,0.049567357 +99.74094295501709,0.68,0.0,0.0,0.0,0.049567357 +99.75077605247498,0.68,0.0,0.0,0.0,0.049567357 +99.75978493690491,0.69,0.0,0.0,0.0,0.04586726 +99.77322697639465,0.69,0.0,0.0,0.0,0.04586726 +99.78224205970764,0.69,0.0,0.0,0.0,0.04586726 +99.79124402999878,0.69,0.0,0.0,0.0,0.04586726 +99.79948806762695,0.69,0.0,0.0,0.0,0.04586726 +99.80949997901917,0.69,0.0,0.0,0.0,0.05696755 +99.82026505470276,0.69,0.0,0.0,0.0,0.05696755 +99.82994103431702,0.69,0.0,0.0,0.0,0.05696755 +99.84012007713318,0.69,0.0,0.0,0.0,0.05696755 +99.84987306594849,0.69,0.0,0.0,0.0,0.05696755 +99.86221408843994,0.68,0.0,0.0,0.0,0.04586726 +99.87093806266785,0.68,0.0,0.0,0.0,0.04586726 +99.88120293617249,0.68,0.0,0.0,0.0,0.04586726 +99.89013314247131,0.68,0.0,0.0,0.0,0.04586726 +99.89952301979065,0.66999996,0.0,0.0,0.0,0.04586726 +99.90955996513367,0.66999996,0.0,0.0,0.0,0.031066857 +99.9202389717102,0.66999996,0.0,0.0,0.0,0.031066857 +99.92994403839111,0.66999996,0.0,0.0,0.0,0.031066857 +99.93992495536804,0.66999996,0.0,0.0,0.0,0.031066857 +99.94955801963806,0.66999996,0.0,0.0,0.0,0.031066857 +99.96135091781616,0.65999997,0.0,0.0,0.0,0.0014660703 +99.96939396858215,0.65999997,0.0,0.0,0.0,0.0014660703 +99.97982501983643,0.65999997,0.0,0.0,0.0,0.0014660703 +99.98973894119263,0.65999997,0.0,0.0,0.0,0.0014660703 +100.00100111961365,0.65999997,0.0,0.0,0.0,0.0014660703 +100.00977611541748,0.66999996,0.0,0.0,0.0,0.02921681 +100.02087712287903,0.66999996,0.0,0.0,0.0,0.02921681 +100.02986907958984,0.66999996,0.0,0.0,0.0,0.02921681 +100.03995609283447,0.66999996,0.0,0.0,0.0,0.02921681 +100.05043506622314,0.66999996,0.0,0.0,0.0,0.02921681 +100.05959606170654,0.66999996,0.0,0.0,0.0,0.023666665 +100.07013607025146,0.66999996,0.0,0.0,0.0,0.023666665 +100.0799469947815,0.66999996,0.0,0.0,0.0,0.023666665 +100.09285593032837,0.66999996,0.0,0.0,0.0,0.023666665 +100.1000030040741,0.66999996,0.0,0.0,0.0,0.023666665 +100.11084198951721,0.68,0.0,0.0,0.0,0.012566376 +100.11957311630249,0.68,0.0,0.0,0.0,0.012566376 +100.12994408607483,0.68,0.0,0.0,0.0,0.012566376 +100.13952612876892,0.69,0.0,0.0,0.0,0.012566376 +100.15190196037292,0.69,0.0,0.0,0.0,0.012566376 +100.16113305091858,0.69,0.0,0.0,0.0,0.073618 +100.17020010948181,0.69,0.0,0.0,0.0,0.073618 +100.18276596069336,0.69,0.0,0.0,0.0,0.073618 +100.19176697731018,0.69,0.0,0.0,0.0,0.073618 +100.20013308525085,0.69,0.0,0.0,0.0,0.073618 +100.20974111557007,0.68,0.0,0.0,0.0,0.051417407 +100.21967911720276,0.68,0.0,0.0,0.0,0.051417407 +100.22990202903748,0.68,0.0,0.0,0.0,0.051417407 +100.24234509468079,0.68,0.0,0.0,0.0,0.051417407 +100.24986410140991,0.68,0.0,0.0,0.0,0.051417407 +100.2603600025177,0.68,0.0,0.0,0.0,0.08656834 +100.27179598808289,0.68,0.0,0.0,0.0,0.08656834 +100.28170204162598,0.68,0.0,0.0,0.0,0.08656834 +100.29072403907776,0.68,0.0,0.0,0.0,0.08656834 +100.29969096183777,0.68,0.0,0.0,0.0,0.08656834 +100.31335711479187,0.68,0.0,0.0,0.0,0.09211848 +100.32027006149292,0.68,0.0,0.0,0.0,0.09211848 +100.32961201667786,0.68,0.0,0.0,0.0,0.09211848 +100.34034204483032,0.66999996,0.0,0.0,0.0,0.09211848 +100.35058498382568,0.66999996,0.0,0.0,0.0,0.09211848 +100.35960912704468,0.66999996,0.0,0.0,0.0,0.06621779 +100.37110495567322,0.66999996,0.0,0.0,0.0,0.06621779 +100.38001799583435,0.66999996,0.0,0.0,0.0,0.06621779 +100.38967704772949,0.66999996,0.0,0.0,0.0,0.06621779 +100.40013003349304,0.68,0.0,0.0,0.0,0.06621779 +100.41374611854553,0.68,0.0,0.0,0.0,-0.0077841706 +100.4195990562439,0.68,0.0,0.0,0.0,-0.0077841706 +100.42993807792664,0.68,0.0,0.0,0.0,-0.0077841706 +100.44080996513367,0.68,0.0,0.0,0.0,-0.0077841706 +100.44983291625977,0.69,0.0,0.0,0.0,-0.0077841706 +100.46020603179932,0.69,0.0,0.0,0.0,0.034766953 +100.47062110900879,0.69,0.0,0.0,0.0,0.034766953 +100.47960591316223,0.69,0.0,0.0,0.0,0.034766953 +100.49332904815674,0.69,0.0,0.0,0.0,0.034766953 +100.50395512580872,0.69,0.0,0.0,0.0,0.034766953 +100.51236295700073,0.69,0.0,0.0,0.0,0.014416425 +100.52025699615479,0.69,0.0,0.0,0.0,0.014416425 +100.52995896339417,0.69,0.0,0.0,0.0,0.014416425 +100.54006600379944,0.69,0.0,0.0,0.0,0.014416425 +100.55034399032593,0.69,0.0,0.0,0.0,0.014416425 +100.56059193611145,0.69,0.0,0.0,0.0,0.012566376 +100.56959104537964,0.69,0.0,0.0,0.0,0.012566376 +100.58422899246216,0.69,0.0,0.0,0.0,0.012566376 +100.59032106399536,0.69,0.0,0.0,0.0,0.012566376 +100.59971714019775,0.69,0.0,0.0,0.0,0.012566376 +100.61077308654785,0.69,0.0,0.0,0.0,0.08286824 +100.62028002738953,0.69,0.0,0.0,0.0,0.08286824 +100.62948107719421,0.69,0.0,0.0,0.0,0.08286824 +100.64156007766724,0.69,0.0,0.0,0.0,0.08286824 +100.65055298805237,0.69,0.0,0.0,0.0,0.08286824 +100.65954995155334,0.69,0.0,0.0,0.0,0.06436774 +100.67403602600098,0.69,0.0,0.0,0.0,0.06436774 +100.68139100074768,0.69,0.0,0.0,0.0,0.06436774 +100.69186902046204,0.69,0.0,0.0,0.0,0.06436774 +100.7007839679718,0.69,0.0,0.0,0.0,0.06436774 +100.7096951007843,0.68,0.0,0.0,0.0,0.073618 +100.72029209136963,0.68,0.0,0.0,0.0,0.073618 +100.72952103614807,0.68,0.0,0.0,0.0,0.073618 +100.74051094055176,0.68,0.0,0.0,0.0,0.073618 +100.74952411651611,0.68,0.0,0.0,0.0,0.073618 +100.76315808296204,0.66999996,0.0,0.0,0.0,0.06436774 +100.77199912071228,0.65999997,0.0,0.0,0.0,0.06436774 +100.78098201751709,0.65999997,0.0,0.0,0.0,0.06436774 +100.78988599777222,0.65,0.0,0.0,0.0,0.06436774 +100.80174112319946,0.65,0.0,0.0,0.0,0.06436774 +100.80976796150208,0.64,0.0,0.0,0.0,0.042167164 +100.81977391242981,0.64,0.0,0.0,0.0,0.042167164 +100.82968091964722,0.63,0.0,0.0,0.0,0.042167164 +100.83946204185486,0.63,0.0,0.0,0.0,0.042167164 +100.84961795806885,0.63,0.0,0.0,0.0,0.042167164 +100.86117696762085,0.64,0.0,0.0,0.0,0.04586726 +100.8700909614563,0.64,0.0,0.0,0.0,0.04586726 +100.87996792793274,0.64,0.0,0.0,0.0,0.04586726 +100.89193105697632,0.64,0.0,0.0,0.0,0.04586726 +100.90093111991882,0.64,0.0,0.0,0.0,0.04586726 +100.90997695922852,0.64,0.0,0.0,0.0,0.06066765 +100.920254945755,0.64,0.0,0.0,0.0,0.06066765 +100.92941403388977,0.63,0.0,0.0,0.0,0.06066765 +100.93947792053223,0.63,0.0,0.0,0.0,0.06066765 +100.95027613639832,0.62,0.0,0.0,0.0,0.06066765 +100.96304607391357,0.61,0.0,0.0,0.0,0.04586726 +100.9731171131134,0.61,0.0,0.0,0.0,0.04586726 +100.9794430732727,0.59999996,0.0,0.0,0.0,0.04586726 +100.99035811424255,0.59999996,0.0,0.0,0.0,0.04586726 +101.0001790523529,0.59,0.0,0.0,0.0,0.04586726 +101.00940012931824,0.58,0.0,0.0,0.0,0.08286824 +101.01963090896606,0.58,0.0,0.0,0.0,0.08286824 +101.02954196929932,0.57,0.0,0.0,0.0,0.08286824 +101.0394229888916,0.56,0.0,0.0,0.0,0.08286824 +101.05423402786255,0.55,0.0,0.0,0.0,0.08286824 +101.0633180141449,0.55,0.0,0.0,0.0,0.08656834 +101.07234501838684,0.52,0.0,0.0,0.0,0.08656834 +101.08138704299927,0.51,0.0,0.0,0.0,0.08656834 +101.09040594100952,0.5,0.0,0.0,0.0,0.08656834 +101.09942293167114,0.48999998,0.0,0.0,0.0,0.08656834 +101.1095929145813,0.48999998,0.0,0.0,0.0,0.042167164 +101.11959600448608,0.48,0.0,0.0,0.0,0.042167164 +101.12969708442688,0.48,0.0,0.0,0.0,0.042167164 +101.14418292045593,0.47,0.0,0.0,0.0,0.042167164 +101.151132106781,0.47,0.0,0.0,0.0,0.042167164 +101.162593126297,0.48,0.0,0.0,0.0,0.019966569 +101.17057704925537,0.48,0.0,0.0,0.0,0.019966569 +101.18060994148254,0.48,0.0,0.0,0.0,0.019966569 +101.1896231174469,0.48999998,0.0,0.0,0.0,0.019966569 +101.19984698295593,0.48999998,0.0,0.0,0.0,0.019966569 +101.20965003967285,0.48,0.0,0.0,0.0,0.09211848 +101.22023701667786,0.48,0.0,0.0,0.0,0.09211848 +101.22995114326477,0.47,0.0,0.0,0.0,0.09211848 +101.239501953125,0.45999998,0.0,0.0,0.0,0.09211848 +101.25279498100281,0.45,0.0,0.0,0.0,0.09211848 +101.2618019580841,0.44,0.0,0.0,0.0,0.06066765 +101.27082204818726,0.42,0.0,0.0,0.0,0.06066765 +101.27980899810791,0.41,0.0,0.0,0.0,0.06066765 +101.29071593284607,0.39999998,0.0,0.0,0.0,0.06066765 +101.29971313476562,0.39,0.0,0.0,0.0,0.06066765 +101.31418514251709,0.38,0.0,0.0,0.0,0.062517695 +101.32027912139893,0.37,0.0,0.0,0.0,0.062517695 +101.32995295524597,0.35999998,0.0,0.0,0.0,0.062517695 +101.34242796897888,0.35,0.0,0.0,0.0,0.062517695 +101.35132598876953,0.35,0.0,0.0,0.0,0.062517695 +101.36022591590881,0.34,0.0,0.0,0.0,0.05696755 +101.36954402923584,0.32999998,0.0,0.0,0.0,0.05696755 +101.38078999519348,0.32,0.0,0.0,0.0,0.05696755 +101.3897819519043,0.31,0.0,0.0,0.0,0.05696755 +101.4041519165039,0.29999998,0.0,0.0,0.0,0.05696755 +101.41124510765076,0.29999998,0.0,0.0,0.0,0.05696755 +101.42025995254517,0.28,0.0,0.0,0.0,0.05696755 +101.43001794815063,0.26,0.0,0.0,0.0,0.05696755 +101.44041204452515,0.24,0.0,0.0,0.0,0.05696755 +101.45122599601746,0.22999999,0.0,0.0,0.0,0.05696755 +101.46016693115234,0.21,0.0,0.0,0.0,0.062517695 +101.46945595741272,0.19,0.0,0.0,0.0,0.062517695 +101.47985792160034,0.17999999,0.0,0.0,0.0,0.062517695 +101.49389004707336,0.17,0.0,0.0,0.0,0.062517695 +101.49960803985596,0.14999999,0.0,0.0,0.0,0.062517695 +101.50939607620239,0.14,0.0,0.0,0.0,0.093968526 +101.52021908760071,0.13,0.0,0.0,0.0,0.093968526 +101.52952909469604,0.12,0.0,0.0,0.0,0.093968526 +101.53944492340088,0.11,0.0,0.0,0.0,0.093968526 +101.55016994476318,0.099999994,2.2727273,2.2727273,0.0,0.093968526 +101.55959105491638,0.089999996,4.5454545,4.5454545,0.0,0.11986922 +101.56992101669312,0.08,6.818182,6.818182,0.0,0.11986922 +101.58291792869568,0.07,9.848485,9.848485,0.0,0.11986922 +101.59100794792175,0.06,13.636364,13.636364,0.0,0.11986922 +101.60081791877747,0.049999997,17.424242,17.424242,0.0,0.11986922 +101.6097240447998,0.049999997,21.212122,21.212122,0.0,0.10506884 +101.61967206001282,0.04,22.727274,22.727274,0.009372071,0.10506884 +101.62965106964111,0.03,25.0,25.0,0.028116215,0.10506884 +101.64018106460571,0.03,27.272728,27.272728,0.037488285,0.10506884 +101.64981508255005,0.02,29.545454,29.545454,0.046860356,0.10506884 +101.6599850654602,0.02,31.060606,31.060606,0.046860356,0.08841839 +101.67050695419312,0.01,31.818182,31.818182,0.05623243,0.08841839 +101.68102812767029,0.0,33.333336,33.333336,0.07497657,0.08841839 +101.68993401527405,0.0,35.60606,35.60606,0.07497657,0.08841839 +101.70034503936768,0.0,37.878788,37.878788,0.08434864,0.08841839 +101.71215891838074,0.0,38.636364,38.636364,0.09372071,0.053267453 +101.72119903564453,0.0,40.151516,40.151516,0.10309278,0.053267453 +101.72998094558716,0.0,41.666668,41.666668,0.10309278,0.053267453 +101.73995995521545,0.0,43.181816,43.181816,0.11246486,0.053267453 +101.7498300075531,0.0,43.939392,43.939392,0.11246486,0.053267453 +101.75970602035522,0.0,45.454548,45.454548,0.12183693,0.0551175 +101.77016806602478,0.0,47.727272,47.727272,0.12183693,0.0551175 +101.78412914276123,0.0,50.757576,50.757576,0.131209,0.0551175 +101.79286003112793,0.0,50.757576,50.757576,0.131209,0.0551175 +101.8021731376648,0.0,55.30303,55.30303,0.14058107,0.0551175 +101.80962204933167,0.0,59.848484,59.848484,0.14058107,0.051417407 +101.82013010978699,0.0,64.393936,64.393936,0.14058107,0.051417407 +101.82995009422302,0.0,68.18182,68.18182,0.15932521,0.051417407 +101.8399760723114,0.0,56.818184,56.818184,0.15932521,0.051417407 +101.8503270149231,0.0,41.666668,41.666668,0.14995314,0.051417407 +101.86147999763489,0.0,30.303032,30.303032,0.15932521,0.034766953 +101.87408804893494,0.0,21.212122,21.212122,0.15932521,0.034766953 +101.88310599327087,0.0,24.242424,24.242424,0.16869728,0.034766953 +101.88978004455566,0.0,30.303032,30.303032,0.16869728,0.034766953 +101.89978408813477,0.0,38.636364,38.636364,0.17806935,0.034766953 +101.91009593009949,0.0,46.21212,46.21212,0.18744142,-0.00038397792 +101.92025208473206,0.0,53.78788,53.78788,0.1968135,-0.00038397792 +101.92955613136292,0.0,59.848484,59.848484,0.1968135,-0.00038397792 +101.93944001197815,0.0,65.90909,65.90909,0.20618556,-0.00038397792 +101.95176601409912,0.0,67.42425,67.42425,0.21555763,-0.00038397792 +101.96407294273376,0.0,61.363636,61.363636,0.22492972,0.049567357 +101.97069597244263,0.0,54.545456,54.545456,0.23430179,0.049567357 +101.98207592964172,0.0,47.727272,47.727272,0.23430179,0.049567357 +101.99106097221375,0.0,42.424244,42.424244,0.23430179,0.049567357 +102.00004005432129,0.0,38.636364,38.636364,0.24367386,0.049567357 +102.00948095321655,0.0,35.60606,35.60606,0.24367386,-0.06513569 +102.01960396766663,0.0,31.818182,31.818182,0.24367386,-0.06513569 +102.02997612953186,0.0,28.78788,28.78788,0.25304592,-0.06513569 +102.044114112854,0.0,27.272728,27.272728,0.25304592,-0.06513569 +102.04988193511963,0.0,27.272728,27.272728,0.25304592,-0.06513569 +102.06300711631775,0.0,25.0,25.0,0.25304592,0.051417407 +102.07197999954224,0.0,21.969696,21.969696,0.25304592,0.051417407 +102.0809919834137,0.0,25.0,25.0,0.262418,0.051417407 +102.08997392654419,0.0,30.303032,30.303032,0.262418,0.051417407 +102.09975910186768,0.0,35.60606,35.60606,0.262418,0.051417407 +102.110023021698,0.0,39.39394,39.39394,0.262418,0.04586726 +102.12024593353271,0.0,42.424244,42.424244,0.262418,0.04586726 +102.12998294830322,0.0,46.21212,46.21212,0.262418,0.04586726 +102.1403489112854,0.0,50.757576,50.757576,0.25304592,0.04586726 +102.14994406700134,0.0,54.545456,54.545456,0.25304592,0.04586726 +102.15966796875,0.0,57.57576,57.57576,0.25304592,0.077318095 +102.17092990875244,0.0,60.606064,60.606064,0.25304592,0.077318095 +102.17991709709167,0.0,63.636364,63.636364,0.25304592,0.077318095 +102.19121408462524,0.0,66.66667,66.66667,0.25304592,0.077318095 +102.20007300376892,0.0,66.66667,66.66667,0.25304592,0.077318095 +102.20943713188171,0.0,59.848484,59.848484,0.25304592,0.10691887 +102.22028112411499,0.0,53.78788,53.78788,0.25304592,0.10691887 +102.22996211051941,0.0,50.0,50.0,0.25304592,0.10691887 +102.24228692054749,0.0,46.969696,46.969696,0.262418,0.10691887 +102.24956607818604,0.0,43.939392,43.939392,0.25304592,0.10691887 +102.26009511947632,0.0,40.151516,40.151516,0.25304592,0.116169125 +102.26984596252441,0.0,38.636364,38.636364,0.25304592,0.116169125 +102.27998495101929,0.0,37.878788,37.878788,0.262418,0.116169125 +102.29023003578186,0.0,37.878788,37.878788,0.262418,0.116169125 +102.29945492744446,0.0,37.121216,37.121216,0.262418,0.116169125 +102.31354403495789,0.0,36.363636,36.363636,0.262418,0.116169125 +102.32023692131042,0.0,37.878788,37.878788,0.27179006,0.116169125 +102.32995510101318,0.0,40.90909,40.90909,0.27179006,0.116169125 +102.34026193618774,0.0,43.939392,43.939392,0.27179006,0.116169125 +102.34992504119873,0.0,46.21212,46.21212,0.28116214,0.116169125 +102.35975694656372,0.0,47.727272,47.727272,0.28116214,0.034766953 +102.37127208709717,0.0,50.0,50.0,0.2905342,0.034766953 +102.38028311729431,0.0,53.030304,53.030304,0.2905342,0.034766953 +102.38967204093933,0.0,56.060604,56.060604,0.29990628,0.034766953 +102.39963006973267,0.0,58.333332,58.333332,0.29990628,0.034766953 +102.40966796875,0.0,59.090908,59.090908,0.29990628,0.014416425 +102.42030191421509,0.0,61.363636,61.363636,0.29990628,0.014416425 +102.42938995361328,0.0,64.393936,64.393936,0.30927837,0.014416425 +102.44071197509766,0.0,67.42425,67.42425,0.30927837,0.014416425 +102.44968700408936,0.01,68.93939,68.93939,0.30927837,0.014416425 +102.46132493019104,0.01,69.69697,69.69697,0.30927837,0.023666665 +102.47031211853027,0.01,71.21212,71.21212,0.31865042,0.023666665 +102.4798219203949,0.01,73.48485,73.48485,0.3280225,0.023666665 +102.49176406860352,0.01,75.0,75.0,0.3280225,0.023666665 +102.50067710876465,0.01,76.51515,76.51515,0.3280225,0.023666665 +102.5095739364624,0.01,76.51515,76.51515,0.33739457,0.0070162313 +102.51945114135742,0.01,77.27273,77.27273,0.33739457,0.0070162313 +102.53064012527466,0.01,79.545456,79.545456,0.33739457,0.0070162313 +102.53965401649475,0.02,81.81818,81.81818,0.33739457,0.0070162313 +102.54986310005188,0.02,84.09091,84.09091,0.33739457,0.0070162313 +102.5603699684143,0.02,84.09091,84.09091,0.34676665,0.10876893 +102.57001209259033,0.02,84.84849,84.84849,0.34676665,0.10876893 +102.57978296279907,0.02,86.36363,86.36363,0.34676665,0.10876893 +102.58977198600769,0.02,87.878784,87.878784,0.33739457,0.10876893 +102.60150599479675,0.02,90.15152,90.15152,0.33739457,0.10876893 +102.61160397529602,0.02,90.909096,90.909096,0.33739457,0.032916907 +102.62028408050537,0.02,91.66667,91.66667,0.33739457,0.032916907 +102.62957501411438,0.02,93.181816,93.181816,0.33739457,0.032916907 +102.64141798019409,0.02,95.454544,95.454544,0.34676665,0.032916907 +102.65030407905579,0.02,97.72728,97.72728,0.34676665,0.032916907 +102.65943694114685,0.02,99.242424,99.242424,0.34676665,0.02921681 +102.66941094398499,0.02,100.0,100.0,0.34676665,0.02921681 +102.68352198600769,0.02,100.757576,100.757576,0.34676665,0.02921681 +102.69160509109497,0.02,103.030304,103.030304,0.3561387,0.02921681 +102.7015290260315,0.02,105.303024,105.303024,0.3561387,0.02921681 +102.71050190925598,0.02,106.818184,106.818184,0.3561387,0.07176795 +102.71950101852417,0.02,107.57576,107.57576,0.3561387,0.07176795 +102.72996592521667,0.01,107.57576,107.57576,0.3561387,0.07176795 +102.74047303199768,0.01,108.333336,108.333336,0.3561387,0.07176795 +102.74945592880249,0.01,109.84849,109.84849,0.34676665,0.07176795 +102.75945091247559,0.01,112.12121,112.12121,0.3561387,0.04401721 +102.7734580039978,0.01,112.12121,112.12121,0.34676665,0.04401721 +102.78204393386841,0.01,112.12121,112.12121,0.3561387,0.04401721 +102.791433095932,0.01,112.12121,112.12121,0.3561387,0.04401721 +102.80027914047241,0.01,112.12121,112.12121,0.3655108,0.04401721 +102.8095600605011,0.01,112.878784,112.878784,0.3655108,0.02921681 +102.82029604911804,0.01,113.63637,113.63637,0.37488285,0.02921681 +102.82995700836182,0.01,112.878784,112.878784,0.3655108,0.02921681 +102.8394980430603,0.0,110.60606,110.60606,0.3655108,0.02921681 +102.84964108467102,0.0,109.84849,109.84849,0.3655108,0.02921681 +102.8609471321106,0.0,109.84849,109.84849,0.34676665,0.032916907 +102.87238597869873,0.0,110.60606,110.60606,0.34676665,0.032916907 +102.8813579082489,0.0,110.60606,110.60606,0.34676665,0.032916907 +102.89035511016846,0.0,109.84849,109.84849,0.34676665,0.032916907 +102.90161514282227,0.0,110.60606,110.60606,0.3561387,0.032916907 +102.9102029800415,0.0,112.878784,112.878784,0.3561387,0.019966569 +102.91944909095764,0.0,116.666664,116.666664,0.3561387,0.019966569 +102.9295871257782,0.0,119.69697,119.69697,0.3561387,0.019966569 +102.93983292579651,0.0,122.72727,122.72727,0.3561387,0.019966569 +102.95113611221313,0.0,125.0,125.0,0.3561387,0.019966569 +102.95968699455261,0.0,128.78787,128.78787,0.3655108,0.012566376 +102.97015500068665,0.0,133.33334,133.33334,0.37488285,0.012566376 +102.980299949646,0.0,138.63637,138.63637,0.37488285,0.012566376 +102.98946499824524,0.0,143.18181,143.18181,0.38425493,0.012566376 +102.99963092803955,0.0,146.9697,146.9697,0.38425493,0.012566376 +103.01058197021484,0.0,150.0,150.0,0.38425493,-0.041085053 +103.01959800720215,0.0,154.54546,154.54546,0.38425493,-0.041085053 +103.03000807762146,0.0,159.09091,159.09091,0.393627,-0.041085053 +103.04325199127197,0.0,165.15152,165.15152,0.393627,-0.041085053 +103.05225396156311,0.0,168.93939,168.93939,0.40299907,-0.041085053 +103.05944108963013,0.0,172.72726,172.72726,0.40299907,-0.06883579 +103.07023692131042,0.01,174.24242,174.24242,0.40299907,-0.06883579 +103.07983613014221,0.01,176.51515,176.51515,0.40299907,-0.06883579 +103.09040713310242,0.01,180.30304,180.30304,0.40299907,-0.06883579 +103.10061597824097,0.0,182.57576,182.57576,0.393627,-0.06883579 +103.10961294174194,0.0,185.60606,185.60606,0.393627,-0.07438594 +103.12007594108582,0.0,187.12122,187.12122,0.41237113,-0.07438594 +103.13000702857971,0.0,187.12122,187.12122,0.41237113,-0.07438594 +103.14220714569092,0.0,187.12122,187.12122,0.41237113,-0.07438594 +103.1511070728302,0.0,188.63637,188.63637,0.4217432,-0.07438594 +103.1600079536438,0.0,190.15152,190.15152,0.41237113,-0.08733628 +103.16949009895325,0.0,191.66666,191.66666,0.41237113,-0.08733628 +103.18163895606995,0.0,192.42424,192.42424,0.40299907,-0.08733628 +103.18952202796936,0.0,192.42424,192.42424,0.40299907,-0.08733628 +103.19961810112,0.0,191.66666,191.66666,0.40299907,-0.08733628 +103.21039509773254,0.0,191.66666,191.66666,0.40299907,-0.08363618 +103.21941304206848,0.0,192.42424,192.42424,0.40299907,-0.08363618 +103.22946310043335,0.0,193.93939,193.93939,0.40299907,-0.08363618 +103.24018597602844,0.0,193.93939,193.93939,0.40299907,-0.08363618 +103.25015592575073,0.0,193.18181,193.18181,0.40299907,-0.08363618 +103.26267004013062,0.0,191.66666,191.66666,0.41237113,-0.08733628 +103.27169513702393,0.0,189.39394,189.39394,0.41237113,-0.08733628 +103.28070592880249,0.0,186.36363,186.36363,0.40299907,-0.08733628 +103.28966498374939,0.0,183.33334,183.33334,0.40299907,-0.08733628 +103.3004879951477,0.0,180.30304,180.30304,0.40299907,-0.08733628 +103.30958104133606,0.0,177.27272,177.27272,0.393627,-0.07993608 +103.31961011886597,0.0,173.48485,173.48485,0.393627,-0.07993608 +103.32999205589294,0.0,168.93939,168.93939,0.393627,-0.07993608 +103.34009194374084,0.0,165.15152,165.15152,0.38425493,-0.07993608 +103.3527181148529,0.0,162.1212,162.1212,0.38425493,-0.07993608 +103.36173796653748,0.0,159.09091,159.09091,0.38425493,-0.08733628 +103.37073493003845,0.0,155.30302,155.30302,0.37488285,-0.08733628 +103.37973999977112,0.0,151.51515,151.51515,0.37488285,-0.08733628 +103.39072012901306,0.0,146.21211,146.21211,0.3655108,-0.08733628 +103.39974808692932,0.0,139.39394,139.39394,0.3655108,-0.08733628 +103.40944910049438,0.0,134.09091,134.09091,0.3655108,-0.10583678 +103.42084097862244,0.0,128.0303,128.0303,0.3561387,-0.10583678 +103.43001914024353,0.0,121.21213,121.21213,0.3655108,-0.10583678 +103.44000506401062,0.0,113.63637,113.63637,0.3561387,-0.10583678 +103.44969892501831,0.0,106.818184,106.818184,0.34676665,-0.10583678 +103.46078705787659,0.0,98.48485,98.48485,0.34676665,-0.07993608 +103.46979594230652,0.0,90.909096,90.909096,0.3280225,-0.07993608 +103.48072600364685,0.0,84.09091,84.09091,0.31865042,-0.07993608 +103.48965191841125,0.0,78.78788,78.78788,0.31865042,-0.07993608 +103.50197410583496,0.0,73.48485,73.48485,0.30927837,-0.07993608 +103.51058006286621,0.0,68.18182,68.18182,0.29990628,-0.085486226 +103.51994705200195,0.0,62.878788,62.878788,0.2905342,-0.085486226 +103.52998995780945,0.0,57.57576,57.57576,0.2905342,-0.085486226 +103.54184913635254,0.0,52.272724,52.272724,0.28116214,-0.085486226 +103.55086708068848,0.0,47.727272,47.727272,0.28116214,-0.085486226 +103.55987405776978,0.0,43.939392,43.939392,0.27179006,-0.08733628 +103.56981897354126,0.0,40.90909,40.90909,0.28116214,-0.08733628 +103.57972693443298,0.0,37.121216,37.121216,0.27179006,-0.08733628 +103.59047412872314,0.0,33.333336,33.333336,0.27179006,-0.08733628 +103.60090899467468,0.0,29.545454,29.545454,0.27179006,-0.08733628 +103.60991406440735,0.0,25.0,25.0,0.262418,-0.10768682 +103.62027311325073,0.0,21.969696,21.969696,0.25304592,-0.10768682 +103.63000011444092,0.0,24.242424,24.242424,0.25304592,-0.10768682 +103.64095401763916,0.0,28.78788,28.78788,0.262418,-0.10768682 +103.64993691444397,0.0,33.333336,33.333336,0.25304592,-0.10768682 +103.66125893592834,0.0,37.121216,37.121216,0.25304592,-0.17428859 +103.67026209831238,0.0,40.90909,40.90909,0.25304592,-0.17428859 +103.6802749633789,0.0,43.939392,43.939392,0.25304592,-0.17428859 +103.69086694717407,0.0,46.21212,46.21212,0.25304592,-0.17428859 +103.6998770236969,0.0,49.242424,49.242424,0.25304592,-0.17428859 +103.70982909202576,0.0,52.272724,52.272724,0.25304592,-0.22794001 +103.7203209400177,0.0,54.545456,54.545456,0.25304592,-0.22794001 +103.72997307777405,0.0,56.818184,56.818184,0.25304592,-0.22794001 +103.73998093605042,0.0,59.090908,59.090908,0.25304592,-0.22794001 +103.75136208534241,0.0,59.848484,59.848484,0.24367386,-0.22794001 +103.76041603088379,0.0,61.363636,61.363636,0.24367386,-0.25939083 +103.7694411277771,0.0,62.878788,62.878788,0.24367386,-0.25939083 +103.78081893920898,0.0,65.15151,65.15151,0.23430179,-0.25939083 +103.78953003883362,0.0,67.42425,67.42425,0.23430179,-0.25939083 +103.80006098747253,0.0,65.90909,65.90909,0.23430179,-0.25939083 +103.81038403511047,0.0,60.606064,60.606064,0.23430179,-0.2612409 +103.82032012939453,0.0,54.545456,54.545456,0.22492972,-0.2612409 +103.8299970626831,0.0,48.484848,48.484848,0.22492972,-0.2612409 +103.83992791175842,0.0,42.424244,42.424244,0.22492972,-0.2612409 +103.84958910942078,0.0,37.878788,37.878788,0.22492972,-0.2612409 +103.85959696769714,0.0,34.09091,34.09091,0.22492972,-0.24829055 +103.87077307701111,0.0,30.303032,30.303032,0.22492972,-0.24829055 +103.87948799133301,0.0,26.515152,26.515152,0.22492972,-0.24829055 +103.89041113853455,0.0,23.484848,23.484848,0.21555763,-0.24829055 +103.89950704574585,0.0,21.969696,21.969696,0.21555763,-0.24829055 +103.90947413444519,0.0,24.242424,24.242424,0.21555763,-0.27049115 +103.9201021194458,0.0,26.515152,26.515152,0.20618556,-0.27049115 +103.9299910068512,0.0,28.78788,28.78788,0.20618556,-0.27049115 +103.93990707397461,0.0,31.060606,31.060606,0.1968135,-0.27049115 +103.94974613189697,0.0,33.333336,33.333336,0.1968135,-0.27049115 +103.96072506904602,0.0,35.60606,35.60606,0.1968135,-0.2538407 +103.9697380065918,0.0,37.121216,37.121216,0.18744142,-0.2538407 +103.97973394393921,0.0,38.636364,38.636364,0.18744142,-0.2538407 +103.99214911460876,0.0,39.39394,39.39394,0.1968135,-0.2538407 +103.99965691566467,0.0,39.39394,39.39394,0.1968135,-0.2538407 +104.01020812988281,0.0,40.151516,40.151516,0.1968135,-0.2760413 +104.02029800415039,0.0,40.90909,40.90909,0.18744142,-0.2760413 +104.0300030708313,0.0,40.90909,40.90909,0.1968135,-0.2760413 +104.03996396064758,0.0,41.666668,41.666668,0.1968135,-0.2760413 +104.0506899356842,0.0,41.666668,41.666668,0.18744142,-0.2760413 +104.05970406532288,0.0,41.666668,41.666668,0.18744142,-0.2760413 +104.07321095466614,0.0,41.666668,41.666668,0.17806935,-0.2760413 +104.08222794532776,0.0,40.90909,40.90909,0.17806935,-0.2760413 +104.09123611450195,0.0,40.90909,40.90909,0.17806935,-0.2760413 +104.10012602806091,0.0,41.666668,41.666668,0.17806935,-0.2760413 +104.11212992668152,0.0,41.666668,41.666668,0.17806935,-0.35744345 +104.12030506134033,0.0,42.424244,42.424244,0.17806935,-0.35744345 +104.13001608848572,0.0,42.424244,42.424244,0.16869728,-0.35744345 +104.14019703865051,0.0,42.424244,42.424244,0.16869728,-0.35744345 +104.1496250629425,0.0,42.424244,42.424244,0.15932521,-0.35744345 +104.1607780456543,0.0,41.666668,41.666668,0.15932521,-0.4573461 +104.1716799736023,0.0,40.90909,40.90909,0.14995314,-0.4573461 +104.18128705024719,0.0,40.90909,40.90909,0.14058107,-0.4573461 +104.1902859210968,0.0,40.90909,40.90909,0.14058107,-0.4573461 +104.20204305648804,0.0,41.666668,41.666668,0.14058107,-0.4573461 +104.20991110801697,0.0,42.424244,42.424244,0.14058107,-0.4758466 +104.22040891647339,0.0,43.181816,43.181816,0.14995314,-0.4758466 +104.2294180393219,0.0,43.939392,43.939392,0.14058107,-0.4758466 +104.23961091041565,0.0,43.181816,43.181816,0.14995314,-0.4758466 +104.2508749961853,0.0,42.424244,42.424244,0.14995314,-0.4758466 +104.2623200416565,0.0,42.424244,42.424244,0.14058107,-0.47029644 +104.26997399330139,0.0,41.666668,41.666668,0.14058107,-0.47029644 +104.2803361415863,0.0,41.666668,41.666668,0.14058107,-0.47029644 +104.28947305679321,0.0,41.666668,41.666668,0.14058107,-0.47029644 +104.30064010620117,0.0,40.90909,40.90909,0.14058107,-0.47029644 +104.30953598022461,0.0,40.151516,40.151516,0.131209,-0.48694688 +104.319669008255,0.0,38.636364,38.636364,0.12183693,-0.48694688 +104.32956099510193,0.0,37.121216,37.121216,0.12183693,-0.48694688 +104.34335398674011,0.0,35.60606,35.60606,0.11246486,-0.48694688 +104.3519139289856,0.0,34.09091,34.09091,0.11246486,-0.48694688 +104.36027598381042,0.0,32.575756,32.575756,0.10309278,-0.48509687 +104.37036299705505,0.0,31.060606,31.060606,0.09372071,-0.48509687 +104.38083910942078,0.0,29.545454,29.545454,0.09372071,-0.48509687 +104.38973307609558,0.0,28.030302,28.030302,0.08434864,-0.48509687 +104.40087008476257,0.0,26.515152,26.515152,0.08434864,-0.48509687 +104.40989708900452,0.0,25.0,25.0,0.07497657,-0.5146976 +104.41951298713684,0.0,23.484848,23.484848,0.0656045,-0.5146976 +104.43000102043152,0.0,21.969696,21.969696,0.05623243,-0.5146976 +104.44219207763672,0.0,20.454544,20.454544,0.046860356,-0.5146976 +104.45137691497803,0.0,18.939394,18.939394,0.037488285,-0.5146976 +104.46038007736206,0.0,18.181818,18.181818,0.037488285,-0.47954667 +104.46995711326599,0.0,16.666668,16.666668,0.028116215,-0.47954667 +104.48212909698486,0.0,15.909091,15.909091,0.028116215,-0.47954667 +104.48944211006165,0.0,15.151516,15.151516,0.018744143,-0.47954667 +104.5001449584961,0.0,13.636364,13.636364,0.009372071,-0.47954667 +104.50962591171265,0.0,12.878788,12.878788,0.009372071,-0.45179594 +104.52003502845764,0.0,12.121212,12.121212,0.009372071,-0.45179594 +104.52962493896484,0.01,11.363637,11.363637,0.0,-0.45179594 +104.54124212265015,0.02,10.606061,10.606061,0.0,-0.45179594 +104.55019402503967,0.03,9.848485,9.848485,0.0,-0.45179594 +104.55941605567932,0.04,9.090909,9.090909,0.0,-0.47399658 +104.57234311103821,0.049999997,8.333334,8.333334,0.0,-0.47399658 +104.58135795593262,0.049999997,7.575758,7.575758,0.0,-0.47399658 +104.59040212631226,0.06,6.818182,6.818182,0.0,-0.47399658 +104.59941411018372,0.07,6.060606,6.060606,0.0,-0.47399658 +104.61254906654358,0.08,5.3030305,5.3030305,0.0,-0.4721465 +104.6195421218872,0.08,5.3030305,5.3030305,0.0,-0.4721465 +104.6300299167633,0.089999996,4.5454545,4.5454545,0.0,-0.4721465 +104.64044404029846,0.089999996,3.787879,3.787879,0.0,-0.4721465 +104.64947700500488,0.099999994,3.787879,3.787879,0.0,-0.4721465 +104.66237092018127,0.11,3.030303,3.030303,0.0,-0.4943471 +104.67135810852051,0.11,3.030303,3.030303,0.0,-0.4943471 +104.67971801757812,0.12,2.2727273,2.2727273,0.0,-0.4943471 +104.68967199325562,0.12,2.2727273,2.2727273,0.0,-0.4943471 +104.70166993141174,0.12,2.2727273,2.2727273,0.0,-0.4943471 +104.7096791267395,0.13,1.5151515,1.5151515,0.0,-0.53874826 +104.71949696540833,0.13,1.5151515,1.5151515,0.0,-0.53874826 +104.73000597953796,0.13,0.75757575,0.75757575,0.0,-0.53874826 +104.73950791358948,0.14,0.75757575,0.75757575,0.0,-0.53874826 +104.7495470046997,0.14,0.75757575,0.75757575,0.0,-0.53874826 +104.76133799552917,0.14,0.75757575,0.75757575,0.0,-0.5572487 +104.76984906196594,0.14,0.0,0.0,0.0,-0.5572487 +104.77992296218872,0.14,0.0,0.0,0.0,-0.5572487 +104.79078412055969,0.14999999,0.0,0.0,0.0,-0.5572487 +104.79966902732849,0.14999999,0.0,0.0,0.0,-0.5572487 +104.81153607368469,0.14999999,0.0,0.0,0.0,-0.5886996 +104.82006502151489,0.14999999,0.0,0.0,0.0,-0.5886996 +104.82954096794128,0.14999999,0.0,0.0,0.0,-0.5886996 +104.84229493141174,0.14999999,0.0,0.0,0.0,-0.5886996 +104.85129404067993,0.14999999,0.0,0.0,0.0,-0.5886996 +104.85997295379639,0.14999999,0.0,0.0,0.0,-0.677502 +104.87015891075134,0.14999999,0.0,0.0,0.0,-0.677502 +104.87965798377991,0.14,0.0,0.0,0.0,-0.677502 +104.89258193969727,0.14,0.0,0.0,0.0,-0.677502 +104.90158009529114,0.14,0.0,0.0,0.0,-0.677502 +104.910560131073,0.13,0.0,0.0,0.0,-0.65530133 +104.91957497596741,0.13,0.0,0.0,0.0,-0.65530133 +104.92999792098999,0.13,0.0,0.0,0.0,-0.65530133 +104.94126200675964,0.13,0.0,0.0,0.0,-0.65530133 +104.95026206970215,0.13,0.0,0.0,0.0,-0.65530133 +104.96006107330322,0.13,0.0,0.0,0.0,-0.63495076 +104.96943998336792,0.13,0.0,0.0,0.0,-0.63495076 +104.98258996009827,0.13,0.0,0.0,0.0,-0.63495076 +104.99114894866943,0.13,0.0,0.0,0.0,-0.63495076 +104.99946904182434,0.13,0.0,0.0,0.0,-0.63495076 +105.00962591171265,0.13,0.0,0.0,0.0,-0.6830521 +105.01974511146545,0.13,0.0,0.0,0.0,-0.6830521 +105.03001308441162,0.13,0.0,0.0,0.0,-0.6830521 +105.04022002220154,0.12,0.0,0.0,0.0,-0.6830521 +105.05055499076843,0.12,0.0,0.0,0.0,-0.6830521 +105.05956101417542,0.11,0.0,0.0,0.0,-0.753354 +105.07262396812439,0.11,0.0,0.0,0.0,-0.753354 +105.08162903785706,0.099999994,0.0,0.0,0.0,-0.753354 +105.090656042099,0.099999994,0.0,0.0,0.0,-0.753354 +105.09964609146118,0.089999996,0.0,0.0,0.0,-0.753354 +105.11152291297913,0.08,0.0,0.0,0.0,-0.7385536 +105.11962914466858,0.08,0.0,0.0,0.0,-0.7385536 +105.12995505332947,0.08,0.0,0.0,0.0,-0.7385536 +105.13984107971191,0.07,0.0,0.0,0.0,-0.7385536 +105.14980006217957,0.06,0.0,0.0,0.0,-0.7385536 +105.16044592857361,0.06,0.0,0.0,0.0,-0.74225366 +105.17169499397278,0.049999997,0.0,0.0,0.0,-0.74225366 +105.18067598342896,0.04,0.0,0.0,0.0,-0.74225366 +105.18968510627747,0.04,0.0,0.0,0.0,-0.74225366 +105.20059514045715,0.03,0.0,0.0,0.0,-0.74225366 +105.20950603485107,0.02,0.0,0.0,0.0,-0.7792546 +105.22006893157959,0.02,0.0,0.0,0.0,-0.7792546 +105.23000907897949,0.01,0.0,0.0,0.0,-0.7792546 +105.24005913734436,0.01,0.0,0.0,0.0,-0.7792546 +105.2526969909668,0.0,0.0,0.0,0.0,-0.7792546 +105.26171898841858,0.0,0.0,0.0,0.0,-0.7459538 +105.26993012428284,0.0,0.0,0.0,0.0,-0.7459538 +105.27972912788391,0.0,0.0,0.0,0.0,-0.7459538 +105.28967714309692,0.0,0.0,0.0,0.0,-0.7459538 +105.30116009712219,0.0,0.0,0.0,0.0,-0.7459538 +105.31016898155212,0.0,0.0,0.0,0.0,-0.7515039 +105.31939196586609,0.0,0.0,0.0,0.0,-0.7515039 +105.33002209663391,0.0,0.0,0.0,0.0,-0.7515039 +105.34275603294373,0.0,0.0,0.0,0.0,-0.7515039 +105.35175204277039,0.0,0.0,0.0,0.0,-0.7515039 +105.36074304580688,0.0,0.0,0.0,0.0,-0.7311533 +105.36974501609802,0.0,0.0,0.0,0.0,-0.7311533 +105.3821280002594,0.0,0.0,0.0,0.0,-0.7311533 +105.38950705528259,0.0,0.0,0.0,0.0,-0.7311533 +105.40001010894775,0.0,0.0,0.0,0.0,-0.7311533 +105.40950894355774,0.01,0.0,0.0,0.0,-0.7200531 +105.41975808143616,0.02,0.0,0.0,0.0,-0.7200531 +105.4296350479126,0.03,0.0,0.0,0.0,-0.7200531 +105.4411289691925,0.04,0.0,0.0,0.0,-0.7200531 +105.4499340057373,0.049999997,0.0,0.0,0.0,-0.7200531 +105.45977401733398,0.049999997,0.0,0.0,0.0,-0.71450293 +105.4711971282959,0.06,0.0,0.0,0.0,-0.71450293 +105.48104095458984,0.07,0.0,0.0,0.0,-0.71450293 +105.49002695083618,0.07,0.0,0.0,0.0,-0.71450293 +105.50182008743286,0.08,0.0,0.0,0.0,-0.71450293 +105.51082706451416,0.08,0.0,0.0,0.0,-0.5905496 +105.5198450088501,0.08,0.0,0.0,0.0,-0.5905496 +105.52954292297363,0.089999996,0.0,0.0,0.0,-0.5905496 +105.54083800315857,0.089999996,0.0,0.0,0.0,-0.5905496 +105.54981994628906,0.099999994,0.0,0.0,0.0,-0.5905496 +105.56155109405518,0.099999994,0.0,0.0,0.0,-0.3962945 +105.57099294662476,0.11,0.0,0.0,0.0,-0.3962945 +105.57999110221863,0.11,0.0,0.0,0.0,-0.3962945 +105.59204697608948,0.11,0.0,0.0,0.0,-0.3962945 +105.59965395927429,0.12,0.0,0.0,0.0,-0.3962945 +105.61007905006409,0.12,0.0,0.0,0.0,-0.43144545 +105.61958312988281,0.13,0.0,0.0,0.0,-0.43144545 +105.63002300262451,0.13,0.0,0.0,0.0,-0.43144545 +105.63990306854248,0.13,0.0,0.0,0.0,-0.43144545 +105.6519501209259,0.13,0.0,0.0,0.0,-0.43144545 +105.6601870059967,0.13,0.0,0.0,0.0,-0.59609973 +105.66993498802185,0.13,0.0,0.0,0.0,-0.59609973 +105.68167304992676,0.13,0.0,0.0,0.0,-0.59609973 +105.69057297706604,0.13,0.0,0.0,0.0,-0.59609973 +105.69949007034302,0.12,0.0,0.0,0.0,-0.59609973 +105.70941209793091,0.12,0.0,0.0,0.0,-0.6368009 +105.72005105018616,0.11,0.0,0.0,0.0,-0.6368009 +105.72994709014893,0.11,0.0,0.0,0.0,-0.6368009 +105.7419159412384,0.099999994,0.0,0.0,0.0,-0.6368009 +105.74974012374878,0.099999994,0.0,0.0,0.0,-0.6368009 +105.75991201400757,0.099999994,0.0,0.0,0.0,-0.63495076 +105.76941990852356,0.11,0.0,0.0,0.0,-0.63495076 +105.77968192100525,0.11,0.0,0.0,0.0,-0.63495076 +105.79031610488892,0.11,0.0,0.0,0.0,-0.63495076 +105.79960513114929,0.12,0.0,0.0,0.0,-0.63495076 +105.80972409248352,0.12,0.0,0.0,0.0,-0.6627016 +105.82000803947449,0.12,0.0,0.0,0.0,-0.6627016 +105.83002591133118,0.13,0.0,0.0,0.0,-0.6627016 +105.84088802337646,0.13,0.0,0.0,0.0,-0.6627016 +105.84988808631897,0.13,0.0,0.0,0.0,-0.6627016 +105.85987710952759,0.13,0.0,0.0,0.0,-0.6645516 +105.87043714523315,0.13,0.0,0.0,0.0,-0.6645516 +105.88083505630493,0.13,0.0,0.0,0.0,-0.6645516 +105.88986611366272,0.13,0.0,0.0,0.0,-0.6645516 +105.90002608299255,0.13,0.0,0.0,0.0,-0.6645516 +105.9100570678711,0.13,0.0,0.0,0.0,-0.66825175 +105.91939806938171,0.13,0.0,0.0,0.0,-0.66825175 +105.9308569431305,0.13,0.0,0.0,0.0,-0.66825175 +105.93985295295715,0.13,0.0,0.0,0.0,-0.66825175 +105.94963312149048,0.13,0.0,0.0,0.0,-0.66825175 +105.96206402778625,0.13,0.0,0.0,0.0,-0.5923997 +105.97108697891235,0.14,0.0,0.0,0.0,-0.5923997 +105.98003101348877,0.14,0.0,0.0,0.0,-0.5923997 +105.98951411247253,0.14,0.0,0.0,0.0,-0.5923997 +106.00012612342834,0.14,0.0,0.0,0.0,-0.5923997 +106.00939106941223,0.14,0.0,0.0,0.0,-0.6294007 +106.02007412910461,0.14,0.0,0.0,0.0,-0.6294007 +106.02984499931335,0.14,0.0,0.0,0.0,-0.6294007 +106.03986811637878,0.14,0.0,0.0,0.0,-0.6294007 +106.04955911636353,0.14,0.0,0.0,0.0,-0.6294007 +106.06134605407715,0.14,0.0,0.0,0.0,-0.5146976 +106.06969213485718,0.14999999,0.0,0.0,0.0,-0.5146976 +106.07940196990967,0.14999999,0.0,0.0,0.0,-0.5146976 +106.09018993377686,0.14999999,0.0,0.0,0.0,-0.5146976 +106.09962797164917,0.14999999,0.0,0.0,0.0,-0.5146976 +106.11065793037415,0.14999999,0.0,0.0,0.0,-0.44069567 +106.11983394622803,0.14999999,0.0,0.0,0.0,-0.44069567 +106.13002800941467,0.14,0.0,0.0,0.0,-0.44069567 +106.14261102676392,0.14,0.0,0.0,0.0,-0.44069567 +106.15160608291626,0.14,0.0,0.0,0.0,-0.44069567 +106.1595721244812,0.14,0.0,0.0,0.0,-0.35374334 +106.16970109939575,0.14,0.0,0.0,0.0,-0.35374334 +106.17965412139893,0.14,0.0,0.0,0.0,-0.35374334 +106.18953800201416,0.14,0.0,0.0,0.0,-0.35374334 +106.20081305503845,0.14,0.0,0.0,0.0,-0.35374334 +106.20977997779846,0.13,0.0,0.0,0.0,-0.32044247 +106.21987795829773,0.13,0.0,0.0,0.0,-0.32044247 +106.23001599311829,0.13,0.0,0.0,0.0,-0.32044247 +106.24192595481873,0.13,0.0,0.0,0.0,-0.32044247 +106.25003409385681,0.12,0.0,0.0,0.0,-0.32044247 +106.25996804237366,0.12,0.0,0.0,0.0,-0.32414255 +106.26973414421082,0.12,0.0,0.0,0.0,-0.32414255 +106.28176403045654,0.11,0.0,0.0,0.0,-0.32414255 +106.29043698310852,0.11,0.0,0.0,0.0,-0.32414255 +106.29974699020386,0.099999994,0.0,0.0,0.0,-0.32414255 +106.30964493751526,0.099999994,0.0,0.0,0.0,-0.49249703 +106.32007193565369,0.089999996,0.0,0.0,0.0,-0.49249703 +106.33001494407654,0.089999996,0.0,0.0,0.0,-0.49249703 +106.3410120010376,0.08,0.0,0.0,0.0,-0.49249703 +106.34991097450256,0.08,0.0,0.0,0.0,-0.49249703 +106.3594720363617,0.08,0.0,0.0,0.0,-0.50174725 +106.3717589378357,0.07,0.0,0.0,0.0,-0.50174725 +106.38073706626892,0.07,0.0,0.0,0.0,-0.50174725 +106.38975310325623,0.07,0.0,0.0,0.0,-0.50174725 +106.40038013458252,0.06,0.0,0.0,0.0,-0.50174725 +106.41074514389038,0.06,0.0,0.0,0.0,-0.5183977 +106.42004895210266,0.06,0.0,0.0,0.0,-0.5183977 +106.4300389289856,0.06,0.0,0.0,0.0,-0.5183977 +106.4398820400238,0.06,0.0,0.0,0.0,-0.5183977 +106.44943308830261,0.06,0.0,0.0,0.0,-0.5183977 +106.4617190361023,0.07,0.0,0.0,0.0,-0.54984856 +106.47072291374207,0.07,0.0,0.0,0.0,-0.54984856 +106.47943997383118,0.07,0.0,0.0,0.0,-0.54984856 +106.49245095252991,0.07,0.0,0.0,0.0,-0.54984856 +106.50133609771729,0.07,0.0,0.0,0.0,-0.54984856 +106.509526014328,0.07,0.0,0.0,0.0,-0.7681544 +106.51939797401428,0.07,0.0,0.0,0.0,-0.7681544 +106.53004193305969,0.07,0.0,0.0,0.0,-0.7681544 +106.53961992263794,0.07,0.0,0.0,0.0,-0.7681544 +106.54942107200623,0.07,0.0,0.0,0.0,-0.7681544 +106.5606701374054,0.07,0.0,0.0,0.0,-0.77555454 +106.56968402862549,0.07,0.0,0.0,0.0,-0.77555454 +106.58151006698608,0.07,0.0,0.0,0.0,-0.77555454 +106.59041595458984,0.06,0.0,0.0,0.0,-0.77555454 +106.60229897499084,0.06,0.0,0.0,0.0,-0.77555454 +106.60939407348633,0.06,0.0,0.0,0.0,-0.80700535 +106.62006306648254,0.06,0.0,0.0,0.0,-0.80700535 +106.62984609603882,0.06,0.0,0.0,0.0,-0.80700535 +106.63948893547058,0.06,0.0,0.0,0.0,-0.80700535 +106.65065503120422,0.06,0.0,0.0,0.0,-0.80700535 +106.65964007377625,0.06,0.0,0.0,0.0,-0.7626042 +106.67058300971985,0.06,0.0,0.0,0.0,-0.7626042 +106.67949891090393,0.06,0.0,0.0,0.0,-0.7626042 +106.68946313858032,0.06,0.0,0.0,0.0,-0.7626042 +106.70001292228699,0.06,0.0,0.0,0.0,-0.7626042 +106.71103000640869,0.06,0.0,0.0,0.0,-0.37224382 +106.720055103302,0.07,0.0,0.0,0.0,-0.37224382 +106.7295560836792,0.07,0.0,0.0,0.0,-0.37224382 +106.7406280040741,0.07,0.0,0.0,0.0,-0.37224382 +106.74954295158386,0.07,0.0,0.0,0.0,-0.37224382 +106.75965809822083,0.07,0.0,0.0,0.0,-0.41479495 +106.7737340927124,0.08,0.0,0.0,0.0,-0.41479495 +106.77956509590149,0.08,0.0,0.0,0.0,-0.41479495 +106.79050493240356,0.07,0.0,0.0,0.0,-0.41479495 +106.80124092102051,0.07,0.0,0.0,0.0,-0.41479495 +106.80939793586731,0.07,0.0,0.0,0.0,-0.6331008 +106.81960892677307,0.07,0.0,0.0,0.0,-0.6331008 +106.83012509346008,0.07,0.0,0.0,0.0,-0.6331008 +106.8395631313324,0.07,0.0,0.0,0.0,-0.6331008 +106.85297298431396,0.07,0.0,0.0,0.0,-0.6331008 +106.86373901367188,0.07,0.0,0.0,0.0,-0.6442011 +106.87339401245117,0.07,0.0,0.0,0.0,-0.6442011 +106.88072204589844,0.07,0.0,0.0,0.0,-0.6442011 +106.89143991470337,0.07,0.0,0.0,0.0,-0.6442011 +106.90048098564148,0.08,0.0,0.0,0.0,-0.6442011 +106.90939712524414,0.08,0.0,0.0,0.0,-0.6460511 +106.9199731349945,0.089999996,0.0,0.0,0.0,-0.6460511 +106.92953395843506,0.089999996,0.0,0.0,0.0,-0.6460511 +106.94044303894043,0.099999994,0.0,0.0,0.0,-0.6460511 +106.95373010635376,0.099999994,0.0,0.0,0.0,-0.6460511 +106.95995092391968,0.11,0.0,0.0,0.0,-0.64235103 +106.97266793251038,0.11,0.0,0.0,0.0,-0.64235103 +106.98170399665833,0.12,0.0,0.0,0.0,-0.64235103 +106.99070811271667,0.12,0.0,0.0,0.0,-0.64235103 +106.99975204467773,0.12,0.0,0.0,0.0,-0.64235103 +107.00950908660889,0.12,0.0,0.0,0.0,-0.9087581 +107.01952695846558,0.12,0.0,0.0,0.0,-0.9087581 +107.03004813194275,0.12,0.0,0.0,0.0,-0.9087581 +107.04171514511108,0.12,0.0,0.0,0.0,-0.9087581 +107.05231308937073,0.12,0.0,0.0,0.0,-0.9087581 +107.06248712539673,0.12,0.0,0.0,0.0,-0.80700535 +107.07141900062561,0.12,0.0,0.0,0.0,-0.80700535 +107.0803120136261,0.12,0.0,0.0,0.0,-0.80700535 +107.08979296684265,0.12,0.0,0.0,0.0,-0.80700535 +107.09951496124268,0.13,0.0,0.0,0.0,-0.80700535 +107.10944509506226,0.13,0.0,0.0,0.0,-0.47954667 +107.12007594108582,0.14999999,0.0,0.0,0.0,-0.47954667 +107.13003396987915,0.16,0.0,0.0,0.0,-0.47954667 +107.13971209526062,0.17,0.0,0.0,0.0,-0.47954667 +107.15156602859497,0.17999999,0.0,0.0,0.0,-0.47954667 +107.15942811965942,0.19,0.0,0.0,0.0,-0.5757492 +107.16940093040466,0.19999999,0.0,0.0,0.0,-0.5757492 +107.1798460483551,0.21,0.0,0.0,0.0,-0.5757492 +107.19039702415466,0.22,0.0,0.0,0.0,-0.5757492 +107.19940114021301,0.22999999,0.0,0.0,0.0,-0.5757492 +107.2136800289154,0.22999999,0.0,0.0,0.0,-0.6830521 +107.22008609771729,0.22999999,0.0,0.0,0.0,-0.6830521 +107.23002600669861,0.22999999,0.0,0.0,0.0,-0.6830521 +107.24063611030579,0.22999999,0.0,0.0,0.0,-0.6830521 +107.24955797195435,0.22999999,0.0,0.0,0.0,-0.6830521 +107.26091599464417,0.22999999,0.0,0.0,0.0,-0.76445425 +107.26952409744263,0.22,0.0,0.0,0.0,-0.76445425 +107.27944803237915,0.22,0.0,0.0,0.0,-0.76445425 +107.28956294059753,0.22,0.0,0.0,0.0,-0.76445425 +107.30138301849365,0.22,0.0,0.0,0.0,-0.76445425 +107.30958294868469,0.22,0.0,0.0,0.0,-0.8014552 +107.32009291648865,0.22,0.0,0.0,0.0,-0.8014552 +107.32970595359802,0.22,0.0,0.0,0.0,-0.8014552 +107.34195494651794,0.22999999,0.0,0.0,0.0,-0.8014552 +107.350506067276,0.22999999,0.0,0.0,0.0,-0.8014552 +107.35951900482178,0.22999999,0.0,0.0,0.0,-0.7700044 +107.36966514587402,0.24,0.0,0.0,0.0,-0.7700044 +107.38032793998718,0.24,0.0,0.0,0.0,-0.7700044 +107.39151191711426,0.25,0.0,0.0,0.0,-0.7700044 +107.40098404884338,0.25,0.0,0.0,0.0,-0.7700044 +107.40990114212036,0.25,0.0,0.0,0.0,-0.76075417 +107.41961097717285,0.25,0.0,0.0,0.0,-0.76075417 +107.43003296852112,0.25,0.0,0.0,0.0,-0.76075417 +107.44103193283081,0.25,0.0,0.0,0.0,-0.76075417 +107.45005393028259,0.25,0.0,0.0,0.0,-0.76075417 +107.45990014076233,0.25,0.0,0.0,0.0,-0.72560316 +107.47092294692993,0.25,0.0,0.0,0.0,-0.72560316 +107.48060512542725,0.25,0.0,0.0,0.0,-0.72560316 +107.48958396911621,0.26,0.0,0.0,0.0,-0.72560316 +107.50345611572266,0.26,0.0,0.0,0.0,-0.72560316 +107.50941109657288,0.26,0.0,0.0,0.0,-0.7071027 +107.51984405517578,0.26999998,0.0,0.0,0.0,-0.7071027 +107.53004813194275,0.26999998,0.0,0.0,0.0,-0.7071027 +107.54014992713928,0.28,0.0,0.0,0.0,-0.7071027 +107.54971194267273,0.28,0.0,0.0,0.0,-0.7071027 +107.55940198898315,0.28,0.0,0.0,0.0,-0.6904522 +107.57023811340332,0.28,0.0,0.0,0.0,-0.6904522 +107.58049392700195,0.29,0.0,0.0,0.0,-0.6904522 +107.59337306022644,0.29,0.0,0.0,0.0,-0.6904522 +107.59940505027771,0.29,0.0,0.0,0.0,-0.6904522 +107.610680103302,0.29999998,0.0,0.0,0.0,-0.566499 +107.62099313735962,0.29999998,0.0,0.0,0.0,-0.566499 +107.6302399635315,0.31,0.0,0.0,0.0,-0.566499 +107.64018106460571,0.31,0.0,0.0,0.0,-0.566499 +107.64948296546936,0.31,0.0,0.0,0.0,-0.566499 +107.65956997871399,0.32,0.0,0.0,0.0,-0.55354863 +107.6736409664154,0.32,0.0,0.0,0.0,-0.55354863 +107.6798210144043,0.32,0.0,0.0,0.0,-0.55354863 +107.69004106521606,0.32,0.0,0.0,0.0,-0.55354863 +107.70229196548462,0.32,0.0,0.0,0.0,-0.55354863 +107.70939493179321,0.32999998,0.0,0.0,0.0,-0.4684464 +107.72007894515991,0.32999998,0.0,0.0,0.0,-0.4684464 +107.73002505302429,0.32999998,0.0,0.0,0.0,-0.4684464 +107.73947596549988,0.32999998,0.0,0.0,0.0,-0.4684464 +107.75207114219666,0.32999998,0.0,0.0,0.0,-0.4684464 +107.76301312446594,0.34,0.0,0.0,0.0,-0.24829055 +107.7736349105835,0.34,0.0,0.0,0.0,-0.24829055 +107.77951002120972,0.34,0.0,0.0,0.0,-0.24829055 +107.78998494148254,0.34,0.0,0.0,0.0,-0.24829055 +107.80133605003357,0.34,0.0,0.0,0.0,-0.24829055 +107.80940508842468,0.34,0.0,0.0,0.0,-0.21868975 +107.81958198547363,0.35,0.0,0.0,0.0,-0.21868975 +107.83000612258911,0.35,0.0,0.0,0.0,-0.21868975 +107.8395779132843,0.35,0.0,0.0,0.0,-0.21868975 +107.85322904586792,0.35,0.0,0.0,0.0,-0.21868975 +107.86154913902283,0.35,0.0,0.0,0.0,-0.19648919 +107.87086606025696,0.35,0.0,0.0,0.0,-0.19648919 +107.88200497627258,0.35,0.0,0.0,0.0,-0.19648919 +107.89091300964355,0.35,0.0,0.0,0.0,-0.19648919 +107.899817943573,0.35,0.0,0.0,0.0,-0.19648919 +107.9094169139862,0.35,0.0,0.0,0.0,-0.17243853 +107.92009806632996,0.35,0.0,0.0,0.0,-0.17243853 +107.92978811264038,0.35,0.0,0.0,0.0,-0.17243853 +107.93999409675598,0.35,0.0,0.0,0.0,-0.17243853 +107.95327496528625,0.35,0.0,0.0,0.0,-0.17243853 +107.96200704574585,0.35,0.0,0.0,0.0,-0.16318831 +107.9704430103302,0.35,0.0,0.0,0.0,-0.16318831 +107.98000597953796,0.35,0.0,0.0,0.0,-0.16318831 +107.9904990196228,0.35,0.0,0.0,0.0,-0.16318831 +107.99949908256531,0.35,0.0,0.0,0.0,-0.16318831 +108.00939702987671,0.35,0.0,0.0,0.0,-0.06143559 +108.01956605911255,0.35,0.0,0.0,0.0,-0.06143559 +108.03007006645203,0.35999998,0.0,0.0,0.0,-0.06143559 +108.0415449142456,0.35999998,0.0,0.0,0.0,-0.06143559 +108.05126595497131,0.35999998,0.0,0.0,0.0,-0.06143559 +108.06018209457397,0.35999998,0.0,0.0,0.0,-0.01888446 +108.07012391090393,0.35999998,0.0,0.0,0.0,-0.01888446 +108.07998299598694,0.35999998,0.0,0.0,0.0,-0.01888446 +108.08957505226135,0.35999998,0.0,0.0,0.0,-0.01888446 +108.10066413879395,0.35999998,0.0,0.0,0.0,-0.01888446 +108.10970902442932,0.35999998,0.0,0.0,0.0,-0.041085053 +108.12007999420166,0.35,0.0,0.0,0.0,-0.041085053 +108.13006711006165,0.35,0.0,0.0,0.0,-0.041085053 +108.1403419971466,0.35,0.0,0.0,0.0,-0.041085053 +108.15261101722717,0.34,0.0,0.0,0.0,-0.041085053 +108.16162490844727,0.34,0.0,0.0,0.0,0.042167164 +108.17061114311218,0.34,0.0,0.0,0.0,0.042167164 +108.17962598800659,0.34,0.0,0.0,0.0,0.042167164 +108.18940091133118,0.32999998,0.0,0.0,0.0,0.042167164 +108.1999020576477,0.32999998,0.0,0.0,0.0,0.042167164 +108.21107697486877,0.32999998,0.0,0.0,0.0,0.09766865 +108.2201030254364,0.32999998,0.0,0.0,0.0,0.09766865 +108.22948002815247,0.32999998,0.0,0.0,0.0,0.09766865 +108.24264907836914,0.32999998,0.0,0.0,0.0,0.09766865 +108.25165605545044,0.32999998,0.0,0.0,0.0,0.09766865 +108.25975799560547,0.32999998,0.0,0.0,0.0,0.15872025 +108.26965308189392,0.32999998,0.0,0.0,0.0,0.15872025 +108.28105211257935,0.32999998,0.0,0.0,0.0,0.15872025 +108.29006910324097,0.32999998,0.0,0.0,0.0,0.15872025 +108.3007640838623,0.32999998,0.0,0.0,0.0,0.15872025 +108.30966901779175,0.32999998,0.0,0.0,0.0,0.24567257 +108.32011103630066,0.32999998,0.0,0.0,0.0,0.24567257 +108.33002495765686,0.32999998,0.0,0.0,0.0,0.24567257 +108.3395459651947,0.32999998,0.0,0.0,0.0,0.24567257 +108.3506760597229,0.32999998,0.0,0.0,0.0,0.24567257 +108.35968804359436,0.32,0.0,0.0,0.0,0.23272221 +108.37121796607971,0.32,0.0,0.0,0.0,0.23272221 +108.38023805618286,0.31,0.0,0.0,0.0,0.23272221 +108.38983201980591,0.31,0.0,0.0,0.0,0.23272221 +108.39947509765625,0.31,0.0,0.0,0.0,0.23272221 +108.41358804702759,0.31,0.0,0.0,0.0,0.31042427 +108.4198169708252,0.31,0.0,0.0,0.0,0.31042427 +108.43003606796265,0.29999998,0.0,0.0,0.0,0.31042427 +108.4406909942627,0.29999998,0.0,0.0,0.0,0.31042427 +108.44972801208496,0.29999998,0.0,0.0,0.0,0.31042427 +108.46038103103638,0.29,0.0,0.0,0.0,0.35482547 +108.4700059890747,0.29,0.0,0.0,0.0,0.35482547 +108.47939896583557,0.29,0.0,0.0,0.0,0.35482547 +108.49190998077393,0.29,0.0,0.0,0.0,0.35482547 +108.50316905975342,0.28,0.0,0.0,0.0,0.35482547 +108.50940704345703,0.28,0.0,0.0,0.0,0.3862763 +108.52136206626892,0.28,0.0,0.0,0.0,0.3862763 +108.5300760269165,0.26999998,0.0,0.0,0.0,0.3862763 +108.53969192504883,0.26,0.0,0.0,0.0,0.3862763 +108.55023097991943,0.26,0.0,0.0,0.0,0.3862763 +108.56056714057922,0.25,0.0,0.0,0.0,0.3973766 +108.56959891319275,0.24,0.0,0.0,0.0,0.3973766 +108.58245396614075,0.22999999,0.0,0.0,0.0,0.3973766 +108.58947610855103,0.22999999,0.0,0.0,0.0,0.3973766 +108.60265803337097,0.22,1.5151515,1.5151515,0.0,0.3973766 +108.60940504074097,0.21,3.030303,3.030303,0.0,0.39182645 +108.62009191513062,0.19999999,4.5454545,4.5454545,0.0,0.39182645 +108.62965798377991,0.19999999,6.060606,6.060606,0.0,0.39182645 +108.63946604728699,0.19,7.575758,7.575758,0.0,0.39182645 +108.65075492858887,0.17999999,8.333334,8.333334,0.0,0.39182645 +108.65975308418274,0.17999999,8.333334,8.333334,0.0,0.41402704 +108.66986393928528,0.17,9.090909,9.090909,0.0,0.41402704 +108.68301391601562,0.16,9.090909,9.090909,0.0,0.41402704 +108.69261407852173,0.16,9.848485,9.848485,0.0,0.41402704 +108.69979095458984,0.14999999,12.121212,12.121212,0.0,0.41402704 +108.70941591262817,0.14999999,16.666668,16.666668,0.009372071,0.3881263 +108.71958303451538,0.14,21.969696,21.969696,0.028116215,0.3881263 +108.73001503944397,0.13,28.030302,28.030302,0.037488285,0.3881263 +108.74091696739197,0.13,34.848484,34.848484,0.0656045,0.3881263 +108.74993205070496,0.12,41.666668,41.666668,0.08434864,0.3881263 +108.76007103919983,0.099999994,48.484848,48.484848,0.10309278,0.4214272 +108.77302312850952,0.099999994,53.78788,53.78788,0.10309278,0.4214272 +108.78165006637573,0.089999996,59.848484,59.848484,0.12183693,0.4214272 +108.78955411911011,0.08,65.90909,65.90909,0.14058107,0.4214272 +108.79975509643555,0.07,61.363636,61.363636,0.15932521,0.4214272 +108.80940508842468,0.06,50.757576,50.757576,0.17806935,0.47877875 +108.82012391090393,0.049999997,39.39394,39.39394,0.17806935,0.47877875 +108.83004093170166,0.04,29.545454,29.545454,0.1968135,0.47877875 +108.84012794494629,0.04,21.212122,21.212122,0.20618556,0.47877875 +108.8497519493103,0.03,22.727274,22.727274,0.21555763,0.47877875 +108.86215996742249,0.02,28.78788,28.78788,0.21555763,0.44177777 +108.87105107307434,0.02,36.363636,36.363636,0.22492972,0.44177777 +108.87994503974915,0.01,45.454548,45.454548,0.24367386,0.44177777 +108.89051008224487,0.01,53.030304,53.030304,0.24367386,0.44177777 +108.89949107170105,0.0,62.121212,62.121212,0.25304592,0.44177777 +108.90941405296326,0.0,68.93939,68.93939,0.262418,0.45842817 +108.92024302482605,0.0,65.90909,65.90909,0.27179006,0.45842817 +108.93005299568176,0.0,62.121212,62.121212,0.2905342,0.45842817 +108.94232606887817,0.0,59.090908,59.090908,0.29990628,0.45842817 +108.9512460231781,0.0,56.060604,56.060604,0.30927837,0.45842817 +108.95943999290466,0.0,54.545456,54.545456,0.30927837,0.4621283 +108.97146201133728,0.0,54.545456,54.545456,0.31865042,0.4621283 +108.97985005378723,0.0,55.30303,55.30303,0.33739457,0.4621283 +108.98944592475891,0.0,56.060604,56.060604,0.33739457,0.4621283 +109.00038695335388,0.0,57.57576,57.57576,0.34676665,0.4621283 +109.00941395759583,0.0,57.57576,57.57576,0.3561387,0.44917795 +109.02009797096252,0.0,58.333332,58.333332,0.3561387,0.44917795 +109.02952599525452,0.0,56.818184,56.818184,0.3561387,0.44917795 +109.04034614562988,0.0,54.545456,54.545456,0.3655108,0.44917795 +109.0524160861969,0.0,52.272724,52.272724,0.3655108,0.44917795 +109.06142210960388,0.0,48.484848,48.484848,0.3655108,0.47877875 +109.0704140663147,0.0,43.181816,43.181816,0.3655108,0.47877875 +109.07940292358398,0.0,35.60606,35.60606,0.3655108,0.47877875 +109.0894820690155,0.0,29.545454,29.545454,0.3561387,0.47877875 +109.10169291496277,0.0,21.212122,21.212122,0.34676665,0.47877875 +109.10938906669617,0.0,18.181818,18.181818,0.33739457,0.48062876 +109.11939001083374,0.0,16.666668,16.666668,0.3280225,0.48062876 +109.1295211315155,0.0,15.151516,15.151516,0.30927837,0.48062876 +109.14220905303955,0.0,13.636364,13.636364,0.28116214,0.48062876 +109.15034413337708,0.0,12.878788,12.878788,0.262418,0.48062876 +109.16037511825562,0.0,11.363637,11.363637,0.23430179,0.4843289 +109.1696310043335,0.0,10.606061,10.606061,0.23430179,0.4843289 +109.1804130077362,0.0,10.606061,10.606061,0.21555763,0.4843289 +109.19178199768066,0.0,11.363637,11.363637,0.20618556,0.4843289 +109.20067191123962,0.0,12.121212,12.121212,0.1968135,0.4843289 +109.20958209037781,0.0,13.636364,13.636364,0.1968135,0.47507864 +109.2195451259613,0.0,15.151516,15.151516,0.1968135,0.47507864 +109.23004007339478,0.0,16.666668,16.666668,0.1968135,0.47507864 +109.24003100395203,0.0,17.424242,17.424242,0.1968135,0.47507864 +109.25034999847412,0.0,17.424242,17.424242,0.1968135,0.47507864 +109.2596869468689,0.0,16.666668,16.666668,0.18744142,0.3492753 +109.27192997932434,0.0,15.909091,15.909091,0.18744142,0.3492753 +109.28085112571716,0.0,14.39394,14.39394,0.16869728,0.3492753 +109.28972291946411,0.0,13.636364,13.636364,0.15932521,0.3492753 +109.30012702941895,0.0,12.121212,12.121212,0.131209,0.3492753 +109.31332492828369,0.0,10.606061,10.606061,0.12183693,-0.14283776 +109.32232403755188,0.0,9.848485,9.848485,0.11246486,-0.14283776 +109.33094310760498,0.0,9.090909,9.090909,0.09372071,-0.14283776 +109.34030604362488,0.0,7.575758,7.575758,0.08434864,-0.14283776 +109.34990501403809,0.0,6.818182,6.818182,0.07497657,-0.14283776 +109.36101913452148,0.0,6.060606,6.060606,0.05623243,-0.29824185 +109.3699140548706,0.0,5.3030305,5.3030305,0.046860356,-0.29824185 +109.38005304336548,0.0,4.5454545,4.5454545,0.028116215,-0.29824185 +109.39036512374878,0.0,3.787879,3.787879,0.009372071,-0.29824185 +109.40327000617981,0.0,3.030303,3.030303,0.0,-0.29824185 +109.41228699684143,0.0,2.2727273,2.2727273,0.0,-0.21868975 +109.42008900642395,0.01,2.2727273,2.2727273,0.0,-0.21868975 +109.43006110191345,0.01,1.5151515,1.5151515,0.0,-0.21868975 +109.43992400169373,0.02,0.75757575,0.75757575,0.0,-0.21868975 +109.44945001602173,0.02,0.75757575,0.75757575,0.0,-0.21868975 +109.45961809158325,0.02,0.0,0.0,0.0,-0.17983873 +109.47154808044434,0.02,0.0,0.0,0.0,-0.17983873 +109.48058605194092,0.03,0.0,0.0,0.0,-0.17983873 +109.4895989894867,0.03,0.0,0.0,0.0,-0.17983873 +109.50022912025452,0.03,0.0,0.0,0.0,-0.17983873 +109.50940203666687,0.03,0.0,0.0,0.0,-0.566499 +109.52009296417236,0.03,0.0,0.0,0.0,-0.566499 +109.53007411956787,0.03,0.0,0.0,0.0,-0.566499 +109.53954291343689,0.03,0.0,0.0,0.0,-0.566499 +109.54962110519409,0.03,0.0,0.0,0.0,-0.566499 +109.56175899505615,0.03,0.0,0.0,0.0,-1.1899656 +109.57064890861511,0.04,0.0,0.0,0.0,-1.1899656 +109.57980704307556,0.04,0.0,0.0,0.0,-1.1899656 +109.59214997291565,0.04,0.0,0.0,0.0,-1.1899656 +109.60114407539368,0.04,0.0,0.0,0.0,-1.1899656 +109.60945701599121,0.049999997,0.0,0.0,0.0,-1.2010659 +109.61962413787842,0.049999997,0.0,0.0,0.0,-1.2010659 +109.62967991828918,0.049999997,0.0,0.0,0.0,-1.2010659 +109.64295196533203,0.049999997,0.0,0.0,0.0,-1.2010659 +109.65197801589966,0.049999997,0.0,0.0,0.0,-1.2010659 +109.66100001335144,0.06,0.0,0.0,0.0,-1.1585147 +109.67002701759338,0.06,0.0,0.0,0.0,-1.1585147 +109.6801221370697,0.06,0.0,0.0,0.0,-1.1585147 +109.69058012962341,0.07,0.0,0.0,0.0,-1.1585147 +109.69949293136597,0.07,0.0,0.0,0.0,-1.1585147 +109.70941209793091,0.08,0.0,0.0,0.0,-0.9457591 +109.71981000900269,0.08,0.0,0.0,0.0,-0.9457591 +109.73004412651062,0.089999996,0.0,0.0,0.0,-0.9457591 +109.74221205711365,0.089999996,0.0,0.0,0.0,-0.9457591 +109.75114011764526,0.099999994,0.0,0.0,0.0,-0.9457591 +109.75941395759583,0.099999994,0.0,0.0,0.0,-0.57944936 +109.77022790908813,0.11,0.0,0.0,0.0,-0.57944936 +109.7797040939331,0.11,0.0,0.0,0.0,-0.57944936 +109.79008293151855,0.12,0.0,0.0,0.0,-0.57944936 +109.80092811584473,0.12,0.0,0.0,0.0,-0.57944936 +109.80941891670227,0.13,0.0,0.0,0.0,-0.17243853 +109.8201220035553,0.13,0.0,0.0,0.0,-0.17243853 +109.83006405830383,0.13,0.0,0.0,0.0,-0.17243853 +109.84134793281555,0.14,0.0,0.0,0.0,-0.17243853 +109.85037803649902,0.14,0.0,0.0,0.0,-0.17243853 +109.85941505432129,0.14,0.0,0.0,0.0,0.17722073 +109.871022939682,0.14999999,0.0,0.0,0.0,0.17722073 +109.87945795059204,0.14999999,0.0,0.0,0.0,0.17722073 +109.88953113555908,0.14999999,0.0,0.0,0.0,0.17722073 +109.90011692047119,0.14999999,0.0,0.0,0.0,0.17722073 +109.90943813323975,0.14999999,0.0,0.0,0.0,0.7044847 +109.92009806632996,0.14999999,0.0,0.0,0.0,0.7044847 +109.93009400367737,0.14999999,0.0,0.0,0.0,0.7044847 +109.94005012512207,0.14,0.0,0.0,0.0,0.7044847 +109.94956493377686,0.14,0.0,0.0,0.0,0.7044847 +109.9609911441803,0.14,0.0,0.0,0.0,1.020843 +109.96972799301147,0.14,0.0,0.0,0.0,1.020843 +109.98121094703674,0.13,0.0,0.0,0.0,1.020843 +109.99023509025574,0.13,0.0,0.0,0.0,1.020843 +110.00243091583252,0.13,0.0,0.0,0.0,1.020843 +110.00942897796631,0.13,0.0,0.0,0.0,1.0152929 +110.01960611343384,0.12,0.0,0.0,0.0,1.0152929 +110.03007292747498,0.12,0.0,0.0,0.0,1.0152929 +110.0397379398346,0.12,0.0,0.0,0.0,1.0152929 +110.050940990448,0.12,0.0,0.0,0.0,1.0152929 +110.05991697311401,0.12,0.0,0.0,0.0,1.0300933 +110.07137513160706,0.12,0.0,0.0,0.0,1.0300933 +110.07951998710632,0.12,0.0,0.0,0.0,1.0300933 +110.08939003944397,0.12,0.0,0.0,0.0,1.0300933 +110.10042214393616,0.12,0.0,0.0,0.0,1.0300933 +110.11189007759094,0.12,0.0,0.0,0.0,1.0245433 +110.12001609802246,0.12,0.0,0.0,0.0,1.0245433 +110.12992596626282,0.12,0.0,0.0,0.0,1.0245433 +110.14088797569275,0.13,0.0,0.0,0.0,1.0245433 +110.14970803260803,0.13,0.0,0.0,0.0,1.0245433 +110.16096997261047,0.13,0.0,0.0,0.0,1.0097427 +110.17050004005432,0.13,0.0,0.0,0.0,1.0097427 +110.17951703071594,0.13,0.0,0.0,0.0,1.0097427 +110.18956208229065,0.13,0.0,0.0,0.0,1.0097427 +110.20205307006836,0.14,0.0,0.0,0.0,1.0097427 +110.21105909347534,0.14,0.0,0.0,0.0,1.0263933 +110.22007608413696,0.14,0.0,0.0,0.0,1.0263933 +110.23008513450623,0.14999999,0.0,0.0,0.0,1.0263933 +110.23982501029968,0.14999999,0.0,0.0,0.0,1.0263933 +110.25163793563843,0.16,0.0,0.0,0.0,1.0263933 +110.26066994667053,0.16,0.0,0.0,0.0,1.0504439 +110.26967096328735,0.17,0.0,0.0,0.0,1.0504439 +110.2798011302948,0.17999999,0.0,0.0,0.0,1.0504439 +110.29225707054138,0.17999999,0.0,0.0,0.0,1.0504439 +110.30128502845764,0.19,0.0,0.0,0.0,1.0504439 +110.31030797958374,0.19,0.0,0.0,0.0,1.0504439 +110.31954598426819,0.19999999,0.0,0.0,0.0,1.0504439 +110.3297381401062,0.21,0.0,0.0,0.0,1.0504439 +110.34095096588135,0.22,0.0,0.0,0.0,1.0504439 +110.34982705116272,0.22,0.0,0.0,0.0,1.0504439 +110.35981702804565,0.22999999,0.0,0.0,0.0,1.0300933 +110.37344098091125,0.24,0.0,0.0,0.0,1.0300933 +110.38245105743408,0.25,0.0,0.0,0.0,1.0300933 +110.38942408561707,0.26,0.0,0.0,0.0,1.0300933 +110.4004979133606,0.26,0.0,0.0,0.0,1.0300933 +110.40959405899048,0.26999998,0.0,0.0,0.0,1.0504439 +110.41966009140015,0.28,0.0,0.0,0.0,1.0504439 +110.43004012107849,0.29,0.0,0.0,0.0,1.0504439 +110.44092392921448,0.29999998,0.0,0.0,0.0,1.0504439 +110.44993305206299,0.31,0.0,0.0,0.0,1.0504439 +110.46344113349915,0.31,0.0,0.0,0.0,1.0393436 +110.47263503074646,0.31,0.0,0.0,0.0,1.0393436 +110.48023200035095,0.32999998,0.0,0.0,0.0,1.0393436 +110.49066710472107,0.34,0.0,0.0,0.0,1.0393436 +110.49971008300781,0.35,0.0,0.0,0.0,1.0393436 +110.50942492485046,0.35,0.0,0.0,0.0,0.82288784 +110.51938891410828,0.35999998,0.0,0.0,0.0,0.82288784 +110.53008198738098,0.37,0.0,0.0,0.0,0.82288784 +110.54000401496887,0.37,0.0,0.0,0.0,0.82288784 +110.5534279346466,0.38,0.0,0.0,0.0,0.82288784 +110.55944204330444,0.39,0.0,0.0,0.0,0.824738 +110.57035708427429,0.39,0.0,0.0,0.0,0.824738 +110.58088994026184,0.39999998,0.0,0.0,0.0,0.824738 +110.58990502357483,0.39999998,0.0,0.0,0.0,0.824738 +110.59953904151917,0.41,0.0,0.0,0.0,0.824738 +110.60944199562073,0.41,0.0,0.0,0.0,0.8450884 +110.6196219921112,0.42,0.0,0.0,0.0,0.8450884 +110.63010096549988,0.42,0.0,0.0,0.0,0.8450884 +110.64340305328369,0.42999998,0.0,0.0,0.0,0.8450884 +110.65278100967407,0.42999998,0.0,0.0,0.0,0.8450884 +110.66169810295105,0.44,0.0,0.0,0.0,0.83398825 +110.67009902000427,0.44,0.0,0.0,0.0,0.83398825 +110.67951703071594,0.44,0.0,0.0,0.0,0.83398825 +110.68949794769287,0.45,0.0,0.0,0.0,0.83398825 +110.70155310630798,0.45,0.0,0.0,0.0,0.83398825 +110.7094259262085,0.45999998,0.0,0.0,0.0,0.824738 +110.72012901306152,0.45999998,0.0,0.0,0.0,0.824738 +110.73005795478821,0.45999998,0.0,0.0,0.0,0.824738 +110.73967695236206,0.45999998,0.0,0.0,0.0,0.824738 +110.75078892707825,0.47,0.0,0.0,0.0,0.824738 +110.75971603393555,0.47,0.0,0.0,0.0,0.8561887 +110.77031397819519,0.47,0.0,0.0,0.0,0.8561887 +110.77955794334412,0.47,0.0,0.0,0.0,0.8561887 +110.78943300247192,0.47,0.0,0.0,0.0,0.8561887 +110.79984593391418,0.48,0.0,0.0,0.0,0.8561887 +110.80944204330444,0.48,0.0,0.0,0.0,0.88208944 +110.81940293312073,0.48,0.0,0.0,0.0,0.88208944 +110.83008408546448,0.48,0.0,0.0,0.0,0.88208944 +110.83990693092346,0.48,0.0,0.0,0.0,0.88208944 +110.85142207145691,0.48999998,0.0,0.0,0.0,0.88208944 +110.86041498184204,0.48999998,0.0,0.0,0.0,0.8746893 +110.86939907073975,0.48999998,0.0,0.0,0.0,0.8746893 +110.88253808021545,0.48999998,0.0,0.0,0.0,0.8746893 +110.89154100418091,0.48999998,0.0,0.0,0.0,0.8746893 +110.90055513381958,0.48999998,0.0,0.0,0.0,0.8746893 +110.9094500541687,0.5,0.0,0.0,0.0,0.87098914 +110.91942310333252,0.5,0.0,0.0,0.0,0.87098914 +110.92942404747009,0.5,0.0,0.0,0.0,0.87098914 +110.94136691093445,0.5,0.0,0.0,0.0,0.87098914 +110.95035791397095,0.5,0.0,0.0,0.0,0.87098914 +110.95975399017334,0.5,0.0,0.0,0.0,0.87098914 +110.97179794311523,0.5,0.0,0.0,0.0,0.87098914 +110.98166012763977,0.51,0.0,0.0,0.0,0.87098914 +110.99067091941833,0.51,0.0,0.0,0.0,0.87098914 +110.99970507621765,0.51,0.0,0.0,0.0,0.87098914 +111.00943899154663,0.51,0.0,0.0,0.0,0.85988885 +111.02230501174927,0.51,0.0,0.0,0.0,0.85988885 +111.02948594093323,0.51,0.0,0.0,0.0,0.85988885 +111.04008412361145,0.51,0.0,0.0,0.0,0.85988885 +111.04994511604309,0.51,0.0,0.0,0.0,0.85988885 +111.06038212776184,0.51,0.0,0.0,0.0,0.8783893 +111.07021594047546,0.51,0.0,0.0,0.0,0.8783893 +111.08008098602295,0.51,0.0,0.0,0.0,0.8783893 +111.08943009376526,0.51,0.0,0.0,0.0,0.8783893 +111.10261297225952,0.51,0.0,0.0,0.0,0.8783893 +111.11140203475952,0.52,0.0,0.0,0.0,0.7673864 +111.12012600898743,0.52,0.0,0.0,0.0,0.7673864 +111.13008713722229,0.52,0.0,0.0,0.0,0.7673864 +111.14017510414124,0.52,0.0,0.0,0.0,0.7673864 +111.15170502662659,0.52,0.0,0.0,0.0,0.7673864 +111.16062998771667,0.52,0.0,0.0,0.0,0.61753243 +111.16953301429749,0.52,0.0,0.0,0.0,0.61753243 +111.1794581413269,0.52,0.0,0.0,0.0,0.61753243 +111.18957495689392,0.52,0.0,0.0,0.0,0.61753243 +111.20127391815186,0.53,0.0,0.0,0.0,0.61753243 +111.21117401123047,0.53,0.0,0.0,0.0,0.5712812 +111.21939611434937,0.53,0.0,0.0,0.0,0.5712812 +111.23006200790405,0.53,0.0,0.0,0.0,0.5712812 +111.23939609527588,0.53,0.0,0.0,0.0,0.5712812 +111.24970602989197,0.53,0.0,0.0,0.0,0.5712812 +111.26098394393921,0.53,0.0,0.0,0.0,0.60088205 +111.27000713348389,0.53,0.0,0.0,0.0,0.60088205 +111.2831621170044,0.53,0.0,0.0,0.0,0.60088205 +111.28942108154297,0.53,0.0,0.0,0.0,0.60088205 +111.29960608482361,0.53,0.0,0.0,0.0,0.60088205 +111.31014895439148,0.53,0.0,0.0,0.0,0.5971819 +111.31939506530762,0.53,0.0,0.0,0.0,0.5971819 +111.3295910358429,0.53,0.0,0.0,0.0,0.5971819 +111.34203600883484,0.53,0.0,0.0,0.0,0.5971819 +111.35103797912598,0.53,0.0,0.0,0.0,0.5971819 +111.35957098007202,0.53,0.0,0.0,0.0,0.57498133 +111.37313508987427,0.53,0.0,0.0,0.0,0.57498133 +111.38213896751404,0.53,0.0,0.0,0.0,0.57498133 +111.38971304893494,0.53,0.0,0.0,0.0,0.57498133 +111.4001030921936,0.53,0.0,0.0,0.0,0.57498133 +111.4100649356842,0.53,0.0,0.0,0.0,0.56018096 +111.419753074646,0.53,0.0,0.0,0.0,0.56018096 +111.43009495735168,0.53,0.0,0.0,0.0,0.56018096 +111.4411449432373,0.53,0.0,0.0,0.0,0.56018096 +111.44962406158447,0.53,0.0,0.0,0.0,0.56018096 +111.46092391014099,0.53,0.0,0.0,0.0,0.6119823 +111.47151613235474,0.53,0.0,0.0,0.0,0.6119823 +111.48016500473022,0.53,0.0,0.0,0.0,0.6119823 +111.49008202552795,0.53,0.0,0.0,0.0,0.6119823 +111.50096893310547,0.53,0.0,0.0,0.0,0.6119823 +111.50945401191711,0.53,0.0,0.0,0.0,0.61753243 +111.51939702033997,0.53,0.0,0.0,0.0,0.61753243 +111.53008699417114,0.53,0.0,0.0,0.0,0.61753243 +111.5394561290741,0.52,0.0,0.0,0.0,0.61753243 +111.55258512496948,0.52,0.0,0.0,0.0,0.61753243 +111.56148910522461,0.52,0.0,0.0,0.0,0.61753243 +111.57003808021545,0.52,0.0,0.0,0.0,0.61753243 +111.57970094680786,0.52,0.0,0.0,0.0,0.61753243 +111.58947110176086,0.52,0.0,0.0,0.0,0.61753243 +111.60018396377563,0.52,0.0,0.0,0.0,0.61753243 +111.60945510864258,0.52,0.0,0.0,0.0,0.61753243 +111.61939692497253,0.52,0.0,0.0,0.0,0.61753243 +111.6300950050354,0.51,0.0,0.0,0.0,0.61753243 +111.64166212081909,0.51,0.0,0.0,0.0,0.61753243 +111.65058994293213,0.51,0.0,0.0,0.0,0.61753243 +111.6594910621643,0.51,0.0,0.0,0.0,0.57683134 +111.6699481010437,0.51,0.0,0.0,0.0,0.57683134 +111.68137192726135,0.51,0.0,0.0,0.0,0.57683134 +111.69038009643555,0.51,0.0,0.0,0.0,0.57683134 +111.69940710067749,0.51,0.0,0.0,0.0,0.57683134 +111.70944213867188,0.51,0.0,0.0,0.0,0.5490806 +111.71940898895264,0.51,0.0,0.0,0.0,0.5490806 +111.73004913330078,0.51,0.0,0.0,0.0,0.5490806 +111.73967003822327,0.51,0.0,0.0,0.0,0.5490806 +111.75087213516235,0.51,0.0,0.0,0.0,0.5490806 +111.75986313819885,0.51,0.0,0.0,0.0,0.54353046 +111.77156209945679,0.51,0.0,0.0,0.0,0.54353046 +111.7798330783844,0.51,0.0,0.0,0.0,0.54353046 +111.78960609436035,0.51,0.0,0.0,0.0,0.54353046 +111.80142402648926,0.51,0.0,0.0,0.0,0.54353046 +111.80943703651428,0.51,0.0,0.0,0.0,0.46027827 +111.8194010257721,0.51,0.0,0.0,0.0,0.46027827 +111.82949709892273,0.51,0.0,0.0,0.0,0.46027827 +111.83985996246338,0.51,0.0,0.0,0.0,0.46027827 +111.84977698326111,0.51,0.0,0.0,0.0,0.46027827 +111.86178708076477,0.51,0.0,0.0,0.0,0.4732286 +111.87080407142639,0.51,0.0,0.0,0.0,0.4732286 +111.87982511520386,0.51,0.0,0.0,0.0,0.4732286 +111.88949799537659,0.51,0.0,0.0,0.0,0.4732286 +111.90008401870728,0.51,0.0,0.0,0.0,0.4732286 +111.9094591140747,0.51,0.0,0.0,0.0,0.41772708 +111.92170691490173,0.51,0.0,0.0,0.0,0.41772708 +111.93027997016907,0.51,0.0,0.0,0.0,0.41772708 +111.9397280216217,0.51,0.0,0.0,0.0,0.41772708 +111.95199203491211,0.51,0.0,0.0,0.0,0.41772708 +111.96033191680908,0.51,0.0,0.0,0.0,0.39922667 +111.96992611885071,0.51,0.0,0.0,0.0,0.39922667 +111.98031806945801,0.51,0.0,0.0,0.0,0.39922667 +111.98953199386597,0.51,0.0,0.0,0.0,0.39922667 +111.9995379447937,0.51,0.0,0.0,0.0,0.39922667 +112.00946307182312,0.51,0.0,0.0,0.0,0.39182645 +112.02011799812317,0.51,0.0,0.0,0.0,0.39182645 +112.0296380519867,0.51,0.0,0.0,0.0,0.39182645 +112.04219794273376,0.52,0.0,0.0,0.0,0.39182645 +112.05044507980347,0.52,0.0,0.0,0.0,0.39182645 +112.06024694442749,0.52,0.0,0.0,0.0,0.36407572 +112.0694670677185,0.52,0.0,0.0,0.0,0.36407572 +112.08022212982178,0.52,0.0,0.0,0.0,0.36407572 +112.08958601951599,0.52,0.0,0.0,0.0,0.36407572 +112.10001802444458,0.52,0.0,0.0,0.0,0.36407572 +112.11061000823975,0.52,0.0,0.0,0.0,0.30672416 +112.11959910392761,0.53,0.0,0.0,0.0,0.30672416 +112.13011693954468,0.53,0.0,0.0,0.0,0.30672416 +112.14070892333984,0.53,0.0,0.0,0.0,0.30672416 +112.1496160030365,0.53,0.0,0.0,0.0,0.30672416 +112.15947008132935,0.53,0.0,0.0,0.0,0.28822368 +112.17064809799194,0.53,0.0,0.0,0.0,0.28822368 +112.17966294288635,0.53,0.0,0.0,0.0,0.28822368 +112.18950390815735,0.53,0.0,0.0,0.0,0.28822368 +112.20056200027466,0.53,0.0,0.0,0.0,0.28822368 +112.20962595939636,0.53,0.0,0.0,0.0,0.2771234 +112.21939301490784,0.53,0.0,0.0,0.0,0.2771234 +112.22982096672058,0.53,0.0,0.0,0.0,0.2771234 +112.2406439781189,0.53,0.0,0.0,0.0,0.2771234 +112.24965310096741,0.53,0.0,0.0,0.0,0.2771234 +112.26076197624207,0.53,0.0,0.0,0.0,0.23642232 +112.26977491378784,0.53,0.0,0.0,0.0,0.23642232 +112.28151392936707,0.53,0.0,0.0,0.0,0.23642232 +112.29049491882324,0.53,0.0,0.0,0.0,0.23642232 +112.29948210716248,0.53,0.0,0.0,0.0,0.23642232 +112.31002593040466,0.53,0.0,0.0,0.0,0.1790708 +112.31939506530762,0.53,0.0,0.0,0.0,0.1790708 +112.33007597923279,0.53,0.0,0.0,0.0,0.1790708 +112.33984208106995,0.53,0.0,0.0,0.0,0.1790708 +112.3509030342102,0.53,0.0,0.0,0.0,0.1790708 +112.35992097854614,0.53,0.0,0.0,0.0,0.14761995 +112.37144708633423,0.53,0.0,0.0,0.0,0.14761995 +112.38045907020569,0.53,0.0,0.0,0.0,0.14761995 +112.38955092430115,0.53,0.0,0.0,0.0,0.14761995 +112.39996790885925,0.53,0.0,0.0,0.0,0.14761995 +112.41124296188354,0.53,0.0,0.0,0.0,0.10506884 +112.41941714286804,0.53,0.0,0.0,0.0,0.10506884 +112.4300479888916,0.53,0.0,0.0,0.0,0.10506884 +112.44101595878601,0.53,0.0,0.0,0.0,0.10506884 +112.45002293586731,0.53,0.0,0.0,0.0,0.10506884 +112.46145296096802,0.53,0.0,0.0,0.0,0.06621779 +112.47040295600891,0.52,0.0,0.0,0.0,0.06621779 +112.47953796386719,0.52,0.0,0.0,0.0,0.06621779 +112.48959493637085,0.52,0.0,0.0,0.0,0.06621779 +112.50220012664795,0.52,0.0,0.0,0.0,0.06621779 +112.50945901870728,0.52,0.0,0.0,0.0,0.038467064 +112.51939797401428,0.52,0.0,0.0,0.0,0.038467064 +112.53012013435364,0.52,0.0,0.0,0.0,0.038467064 +112.54016304016113,0.52,0.0,0.0,0.0,0.038467064 +112.55051112174988,0.51,0.0,0.0,0.0,0.038467064 +112.55948901176453,0.51,0.0,0.0,0.0,0.027366763 +112.57325291633606,0.51,0.0,0.0,0.0,0.027366763 +112.58076500892639,0.51,0.0,0.0,0.0,0.027366763 +112.58960509300232,0.51,0.0,0.0,0.0,0.027366763 +112.59965491294861,0.51,0.0,0.0,0.0,0.027366763 +112.60945701599121,0.51,0.0,0.0,0.0,-0.002234026 +112.61940407752991,0.51,0.0,0.0,0.0,-0.002234026 +112.62971901893616,0.51,0.0,0.0,0.0,-0.002234026 +112.63969492912292,0.51,0.0,0.0,0.0,-0.002234026 +112.65030312538147,0.51,0.0,0.0,0.0,-0.002234026 +112.66211605072021,0.51,0.0,0.0,0.0,0.032916907 +112.67319107055664,0.51,0.0,0.0,0.0,0.032916907 +112.68253302574158,0.51,0.0,0.0,0.0,0.032916907 +112.68976593017578,0.51,0.0,0.0,0.0,0.032916907 +112.70057797431946,0.51,0.0,0.0,0.0,0.032916907 +112.70944499969482,0.51,0.0,0.0,0.0,0.0014660703 +112.71992206573486,0.51,0.0,0.0,0.0,0.0014660703 +112.73126101493835,0.51,0.0,0.0,0.0,0.0014660703 +112.74025797843933,0.51,0.0,0.0,0.0,0.0014660703 +112.7494900226593,0.51,0.0,0.0,0.0,0.0014660703 +112.7607901096344,0.51,0.0,0.0,0.0,0.0070162313 +112.77271103858948,0.51,0.0,0.0,0.0,0.0070162313 +112.77992796897888,0.51,0.0,0.0,0.0,0.0070162313 +112.78955698013306,0.51,0.0,0.0,0.0,0.0070162313 +112.79978513717651,0.51,0.0,0.0,0.0,0.0070162313 +112.80945706367493,0.51,0.0,0.0,0.0,-0.013334316 +112.81940603256226,0.51,0.0,0.0,0.0,-0.013334316 +112.8301351070404,0.51,0.0,0.0,0.0,-0.013334316 +112.84261107444763,0.51,0.0,0.0,0.0,-0.013334316 +112.85324692726135,0.51,0.0,0.0,0.0,-0.013334316 +112.86248397827148,0.51,0.0,0.0,0.0,-0.00038397792 +112.87141394615173,0.5,0.0,0.0,0.0,-0.00038397792 +112.87956809997559,0.5,0.0,0.0,0.0,-0.00038397792 +112.88939094543457,0.5,0.0,0.0,0.0,-0.00038397792 +112.90050911903381,0.5,0.0,0.0,0.0,-0.00038397792 +112.90945601463318,0.5,0.0,0.0,0.0,-0.011484267 +112.91943407058716,0.5,0.0,0.0,0.0,-0.011484267 +112.93013501167297,0.5,0.0,0.0,0.0,-0.011484267 +112.94091701507568,0.5,0.0,0.0,0.0,-0.011484267 +112.95160293579102,0.5,0.0,0.0,0.0,-0.011484267 +112.96053409576416,0.5,0.0,0.0,0.0,0.012566376 +112.96944999694824,0.5,0.0,0.0,0.0,0.012566376 +112.98017311096191,0.5,0.0,0.0,0.0,0.012566376 +112.98959302902222,0.5,0.0,0.0,0.0,0.012566376 +112.9995801448822,0.48999998,0.0,0.0,0.0,0.012566376 +113.009446144104,0.48999998,0.0,0.0,0.0,0.01811652 +113.01941108703613,0.48999998,0.0,0.0,0.0,0.01811652 +113.03013491630554,0.48999998,0.0,0.0,0.0,0.01811652 +113.04070091247559,0.48,0.0,0.0,0.0,0.01811652 +113.04962491989136,0.48,0.0,0.0,0.0,0.01811652 +113.06136512756348,0.48,0.0,0.0,0.0,0.014416425 +113.06972813606262,0.48,0.0,0.0,0.0,0.014416425 +113.07939505577087,0.48,0.0,0.0,0.0,0.014416425 +113.08947491645813,0.48,0.0,0.0,0.0,0.014416425 +113.10001492500305,0.48,0.0,0.0,0.0,0.014416425 +113.10946393013,0.48,0.0,0.0,0.0,0.0033161184 +113.11939096450806,0.48,0.0,0.0,0.0,0.0033161184 +113.12982702255249,0.48,0.0,0.0,0.0,0.0033161184 +113.13974905014038,0.48999998,0.0,0.0,0.0,0.0033161184 +113.15118098258972,0.48999998,0.0,0.0,0.0,0.0033161184 +113.15971493721008,0.48999998,0.0,0.0,0.0,0.019966569 +113.16958093643188,0.48999998,0.0,0.0,0.0,0.019966569 +113.17968106269836,0.48999998,0.0,0.0,0.0,0.019966569 +113.18953514099121,0.48999998,0.0,0.0,0.0,0.019966569 +113.201101064682,0.48999998,0.0,0.0,0.0,0.019966569 +113.20999598503113,0.48999998,0.0,0.0,0.0,0.0014660703 +113.21940612792969,0.48999998,0.0,0.0,0.0,0.0014660703 +113.23013210296631,0.48999998,0.0,0.0,0.0,0.0014660703 +113.24151706695557,0.48999998,0.0,0.0,0.0,0.0014660703 +113.25075912475586,0.48999998,0.0,0.0,0.0,0.0014660703 +113.25978302955627,0.48,0.0,0.0,0.0,0.0014660703 +113.26971411705017,0.48,0.0,0.0,0.0,0.0014660703 +113.27992105484009,0.48,0.0,0.0,0.0,0.0014660703 +113.28939604759216,0.48,0.0,0.0,0.0,0.0014660703 +113.30318808555603,0.47,0.0,0.0,0.0,0.0014660703 +113.31195998191833,0.47,0.0,0.0,0.0,-0.022584556 +113.31942391395569,0.45999998,0.0,0.0,0.0,-0.022584556 +113.33013010025024,0.45999998,0.0,0.0,0.0,-0.022584556 +113.3409731388092,0.45999998,0.0,0.0,0.0,-0.022584556 +113.34997797012329,0.45,0.0,0.0,0.0,-0.022584556 +113.35973501205444,0.45,0.0,0.0,0.0,0.0070162313 +113.36954593658447,0.45,0.0,0.0,0.0,0.0070162313 +113.37941312789917,0.45,0.0,0.0,0.0,0.0070162313 +113.38944602012634,0.44,0.0,0.0,0.0,0.0070162313 +113.39992094039917,0.44,0.0,0.0,0.0,0.0070162313 +113.41314506530762,0.44,0.0,0.0,0.0,0.008866279 +113.419429063797,0.42999998,0.0,0.0,0.0,0.008866279 +113.43012595176697,0.42999998,0.0,0.0,0.0,0.008866279 +113.440190076828,0.42,0.0,0.0,0.0,0.008866279 +113.44977307319641,0.41,0.0,0.0,0.0,0.008866279 +113.45951700210571,0.39,0.0,0.0,0.0,0.04586726 +113.47317504882812,0.38,0.0,0.0,0.0,0.04586726 +113.48127603530884,0.35999998,0.0,0.0,0.0,0.04586726 +113.489431142807,0.34,0.0,0.0,0.0,0.04586726 +113.50060796737671,0.32,0.0,0.0,0.0,0.04586726 +113.50946497917175,0.31,0.0,0.0,0.0,0.021816617 +113.51940894126892,0.29,0.0,0.0,0.0,0.021816617 +113.5300190448761,0.26999998,0.0,0.0,0.0,0.021816617 +113.5394561290741,0.25,0.0,0.0,0.0,0.021816617 +113.54980206489563,0.22999999,0.0,0.0,0.0,0.021816617 +113.56103706359863,0.21,0.0,0.0,0.0,-0.009634218 +113.5731770992279,0.19999999,0.0,0.0,0.0,-0.009634218 +113.58276510238647,0.19999999,0.0,0.0,0.0,-0.009634218 +113.58943796157837,0.17,0.0,0.0,0.0,-0.009634218 +113.60209703445435,0.16,0.0,0.0,0.0,-0.009634218 +113.60948491096497,0.14,0.0,0.0,0.0,-0.015184363 +113.61990404129028,0.13,0.0,0.0,0.0,-0.015184363 +113.62953495979309,0.12,0.0,0.0,0.0,-0.015184363 +113.63976693153381,0.11,0.0,0.0,0.0,-0.015184363 +113.65320301055908,0.099999994,0.0,0.0,0.0,-0.015184363 +113.66010999679565,0.099999994,0.0,0.0,0.0,-0.0466352 +113.67017698287964,0.08,0.0,0.0,0.0,-0.0466352 +113.68229794502258,0.07,0.0,0.0,0.0,-0.0466352 +113.68944597244263,0.06,0.0,0.0,0.0,-0.0466352 +113.70013308525085,0.06,0.0,0.0,0.0,-0.0466352 +113.70946407318115,0.049999997,0.0,0.0,0.0,-0.009634218 +113.71941614151001,0.04,0.0,0.0,0.0,-0.009634218 +113.72959113121033,0.03,0.0,0.0,0.0,-0.009634218 +113.74316692352295,0.03,0.0,0.0,0.0,-0.009634218 +113.75207901000977,0.03,0.0,0.0,0.0,-0.009634218 +113.76252007484436,0.02,3.787879,3.787879,0.0,-0.024434604 +113.7714319229126,0.01,6.818182,6.818182,0.0,-0.024434604 +113.78034996986389,0.01,10.606061,10.606061,0.0,-0.024434604 +113.78944301605225,0.0,15.151516,15.151516,0.0,-0.024434604 +113.80095911026001,0.0,21.212122,21.212122,0.009372071,-0.024434604 +113.80942106246948,0.0,26.515152,26.515152,0.018744143,-0.024434604 +113.81946301460266,0.0,32.575756,32.575756,0.037488285,-0.015184363 +113.83012890815735,0.0,37.121216,37.121216,0.046860356,-0.015184363 +113.84232306480408,0.0,40.90909,40.90909,0.05623243,-0.015184363 +113.85161399841309,0.0,44.696968,44.696968,0.0656045,-0.015184363 +113.8605489730835,0.0,49.242424,49.242424,0.08434864,0.027366763 +113.86943292617798,0.0,54.545456,54.545456,0.09372071,0.027366763 +113.88063097000122,0.0,59.848484,59.848484,0.10309278,0.027366763 +113.8894510269165,0.0,63.636364,63.636364,0.11246486,0.027366763 +113.89966797828674,0.0,68.18182,68.18182,0.12183693,0.027366763 +113.90956497192383,0.0,59.090908,59.090908,0.131209,0.01811652 +113.9201500415802,0.0,46.969696,46.969696,0.14058107,0.01811652 +113.93013191223145,0.0,39.39394,39.39394,0.15932521,0.01811652 +113.94017791748047,0.0,33.333336,33.333336,0.16869728,0.01811652 +113.94962501525879,0.0,29.545454,29.545454,0.17806935,0.01811652 +113.95962309837341,0.0,26.515152,26.515152,0.18744142,0.02921681 +113.97207808494568,0.0,25.757576,25.757576,0.20618556,0.02921681 +113.9810631275177,0.0,27.272728,27.272728,0.20618556,0.02921681 +113.98948812484741,0.0,30.303032,30.303032,0.22492972,0.02921681 +113.99954795837402,0.0,34.09091,34.09091,0.23430179,0.02921681 +114.00946807861328,0.0,37.121216,37.121216,0.23430179,-0.022584556 +114.02015900611877,0.0,40.90909,40.90909,0.24367386,-0.022584556 +114.02980303764343,0.0,45.454548,45.454548,0.25304592,-0.022584556 +114.0431489944458,0.0,51.515152,51.515152,0.262418,-0.022584556 +114.04995107650757,0.0,51.515152,51.515152,0.27179006,-0.022584556 +114.0621280670166,0.0,65.90909,65.90909,0.28116214,-0.03553491 +114.07112407684326,0.0,72.72727,72.72727,0.28116214,-0.03553491 +114.08013200759888,0.0,79.545456,79.545456,0.2905342,-0.03553491 +114.0894889831543,0.0,83.333336,83.333336,0.29990628,-0.03553491 +114.10111594200134,0.0,87.12121,87.12121,0.29990628,-0.03553491 +114.10947513580322,0.0,92.42424,92.42424,0.31865042,-0.039235007 +114.11948990821838,0.0,96.969696,96.969696,0.3280225,-0.039235007 +114.13016605377197,0.0,101.51515,101.51515,0.33739457,-0.039235007 +114.14313006401062,0.0,104.54545,104.54545,0.33739457,-0.039235007 +114.15216398239136,0.0,104.54545,104.54545,0.33739457,-0.039235007 +114.16118812561035,0.0,108.333336,108.333336,0.34676665,-0.044785153 +114.17020511627197,0.0,109.84849,109.84849,0.33739457,-0.044785153 +114.17949891090393,0.0,112.878784,112.878784,0.34676665,-0.044785153 +114.18951797485352,0.0,115.909096,115.909096,0.34676665,-0.044785153 +114.20276999473572,0.0,118.93939,118.93939,0.34676665,-0.044785153 +114.21312308311462,0.0,121.21213,121.21213,0.3655108,-0.033684865 +114.21947002410889,0.0,121.21213,121.21213,0.3655108,-0.033684865 +114.22998404502869,0.0,122.72727,122.72727,0.3655108,-0.033684865 +114.24224209785461,0.0,123.48485,123.48485,0.3655108,-0.033684865 +114.24941897392273,0.0,125.0,125.0,0.3655108,-0.033684865 +114.25999093055725,0.0,125.757576,125.757576,0.3655108,-0.03553491 +114.2694821357727,0.0,125.0,125.0,0.3655108,-0.03553491 +114.27944207191467,0.0,123.48485,123.48485,0.3655108,-0.03553491 +114.28953003883362,0.0,120.454544,120.454544,0.3561387,-0.03553491 +114.30074095726013,0.0,117.42424,117.42424,0.3561387,-0.03553491 +114.31059694290161,0.0,114.39394,114.39394,0.3561387,0.042167164 +114.32017803192139,0.0,112.12121,112.12121,0.3561387,0.042167164 +114.3301010131836,0.0,110.60606,110.60606,0.3561387,0.042167164 +114.34131693840027,0.0,109.09091,109.09091,0.34676665,0.042167164 +114.35031199455261,0.0,107.57576,107.57576,0.3561387,0.042167164 +114.35953211784363,0.0,105.303024,105.303024,0.3561387,0.051417407 +114.36946892738342,0.0,101.51515,101.51515,0.3561387,0.051417407 +114.37976408004761,0.0,98.48485,98.48485,0.3561387,0.051417407 +114.38951301574707,0.0,95.454544,95.454544,0.3561387,0.051417407 +114.40214610099792,0.0,93.181816,93.181816,0.3561387,0.051417407 +114.41020607948303,0.0,91.66667,91.66667,0.34676665,0.051417407 +114.42180013656616,0.0,89.393936,89.393936,0.34676665,0.051417407 +114.43071293830872,0.0,86.36363,86.36363,0.34676665,0.051417407 +114.43960809707642,0.0,81.81818,81.81818,0.33739457,0.051417407 +114.44953393936157,0.0,78.78788,78.78788,0.33739457,0.051417407 +114.45961594581604,0.0,76.51515,76.51515,0.33739457,0.0551175 +114.47308301925659,0.0,75.0,75.0,0.3280225,0.0551175 +114.48010802268982,0.0,73.48485,73.48485,0.33739457,0.0551175 +114.48952102661133,0.0,72.72727,72.72727,0.3280225,0.0551175 +114.50198197364807,0.0,70.454544,70.454544,0.3280225,0.0551175 +114.50989508628845,0.0,68.18182,68.18182,0.33739457,0.068067834 +114.51943492889404,0.0,64.393936,64.393936,0.3280225,0.068067834 +114.53015208244324,0.0,61.363636,61.363636,0.3280225,0.068067834 +114.53946113586426,0.0,59.848484,59.848484,0.3280225,0.068067834 +114.54977703094482,0.0,56.818184,56.818184,0.31865042,0.068067834 +114.56287407875061,0.0,52.272724,52.272724,0.30927837,0.09211848 +114.57085013389587,0.0,47.727272,47.727272,0.30927837,0.09211848 +114.58214592933655,0.0,41.666668,41.666668,0.29990628,0.09211848 +114.58954191207886,0.0,34.848484,34.848484,0.2905342,0.09211848 +114.59995198249817,0.0,27.272728,27.272728,0.2905342,0.09211848 +114.60946798324585,0.0,21.212122,21.212122,0.27179006,0.21052164 +114.61956691741943,0.0,18.939394,18.939394,0.27179006,0.21052164 +114.6295850276947,0.0,18.181818,18.181818,0.25304592,0.21052164 +114.63959407806396,0.0,17.424242,17.424242,0.24367386,0.21052164 +114.65050101280212,0.0,16.666668,16.666668,0.23430179,0.21052164 +114.66142702102661,0.0,15.909091,15.909091,0.21555763,0.25677285 +114.67122411727905,0.0,15.151516,15.151516,0.21555763,0.25677285 +114.6801221370697,0.0,15.151516,15.151516,0.20618556,0.25677285 +114.68953108787537,0.0,15.151516,15.151516,0.20618556,0.25677285 +114.69977712631226,0.0,15.909091,15.909091,0.1968135,0.25677285 +114.7094669342041,0.0,16.666668,16.666668,0.20618556,0.25677285 +114.71947908401489,0.0,18.181818,18.181818,0.1968135,0.25677285 +114.73013806343079,0.0,19.69697,19.69697,0.1968135,0.25677285 +114.74086713790894,0.0,21.212122,21.212122,0.18744142,0.25677285 +114.75138211250305,0.0,22.727274,22.727274,0.18744142,0.25677285 +114.75962805747986,0.0,25.757576,25.757576,0.18744142,0.2697232 +114.7701780796051,0.0,28.030302,28.030302,0.18744142,0.2697232 +114.7813310623169,0.0,31.818182,31.818182,0.1968135,0.2697232 +114.78954911231995,0.0,35.60606,35.60606,0.1968135,0.2697232 +114.80009508132935,0.0,38.636364,38.636364,0.20618556,0.2697232 +114.809485912323,0.0,41.666668,41.666668,0.20618556,0.3492753 +114.82017993927002,0.0,43.181816,43.181816,0.20618556,0.3492753 +114.82944011688232,0.0,44.696968,44.696968,0.1968135,0.3492753 +114.84046006202698,0.0,46.21212,46.21212,0.20618556,0.3492753 +114.84982895851135,0.0,47.727272,47.727272,0.20618556,0.3492753 +114.86305212974548,0.0,49.242424,49.242424,0.20618556,0.36777583 +114.8716950416565,0.0,50.0,50.0,0.20618556,0.36777583 +114.87998509407043,0.0,51.515152,51.515152,0.20618556,0.36777583 +114.88954210281372,0.0,51.515152,51.515152,0.20618556,0.36777583 +114.89962792396545,0.0,50.757576,50.757576,0.20618556,0.36777583 +114.90948700904846,0.0,50.0,50.0,0.20618556,0.3862763 +114.9196629524231,0.0,48.484848,48.484848,0.20618556,0.3862763 +114.92957496643066,0.0,46.969696,46.969696,0.20618556,0.3862763 +114.94307398796082,0.0,45.454548,45.454548,0.20618556,0.3862763 +114.95111203193665,0.0,45.454548,45.454548,0.18744142,0.3862763 +114.96119904518127,0.0,40.90909,40.90909,0.17806935,0.3862763 +114.9709939956665,0.0,37.878788,37.878788,0.16869728,0.3862763 +114.979984998703,0.0,35.60606,35.60606,0.15932521,0.3862763 +114.98957300186157,0.0,33.333336,33.333336,0.14995314,0.3862763 +114.9998049736023,0.0,30.303032,30.303032,0.131209,0.3862763 +115.00949692726135,0.0,28.78788,28.78788,0.12183693,0.3973766 +115.02016401290894,0.0,26.515152,26.515152,0.10309278,0.3973766 +115.0301730632782,0.0,24.242424,24.242424,0.08434864,0.3973766 +115.04296398162842,0.0,22.727274,22.727274,0.0656045,0.3973766 +115.0519609451294,0.0,20.454544,20.454544,0.046860356,0.3973766 +115.0609540939331,0.0,18.939394,18.939394,0.037488285,0.39182645 +115.06994414329529,0.0,17.424242,17.424242,0.028116215,0.39182645 +115.07966494560242,0.0,15.909091,15.909091,0.009372071,0.39182645 +115.08960700035095,0.0,15.151516,15.151516,0.0,0.39182645 +115.10006713867188,0.0,13.636364,13.636364,0.0,0.39182645 +115.10948705673218,0.0,12.121212,12.121212,0.0,0.39552653 +115.12017393112183,0.0,11.363637,11.363637,0.0,0.39552653 +115.13015699386597,0.0,9.848485,9.848485,0.0,0.39552653 +115.14190292358398,0.0,9.090909,9.090909,0.0,0.39552653 +115.15089511871338,0.0,8.333334,8.333334,0.0,0.39552653 +115.15943002700806,0.0,7.575758,7.575758,0.0,0.43992776 +115.16979002952576,0.01,6.060606,6.060606,0.0,0.43992776 +115.18125605583191,0.01,5.3030305,5.3030305,0.0,0.43992776 +115.18957591056824,0.01,4.5454545,4.5454545,0.0,0.43992776 +115.19953107833862,0.02,4.5454545,4.5454545,0.0,0.43992776 +115.21303796768188,0.02,3.787879,3.787879,0.0,0.4695285 +115.21994709968567,0.02,3.787879,3.787879,0.0,0.4695285 +115.23013305664062,0.03,2.2727273,2.2727273,0.0,0.4695285 +115.2408139705658,0.03,1.5151515,1.5151515,0.0,0.4695285 +115.24983406066895,0.03,1.5151515,1.5151515,0.0,0.4695285 +115.2598569393158,0.04,0.75757575,0.75757575,0.0,0.5472306 +115.27144002914429,0.04,0.0,0.0,0.0,0.5472306 +115.28047108650208,0.04,0.0,0.0,0.0,0.5472306 +115.28958892822266,0.04,0.0,0.0,0.0,0.5472306 +115.30304503440857,0.049999997,0.0,0.0,0.0,0.5472306 +115.31148505210876,0.049999997,0.0,0.0,0.0,0.5657311 +115.31957006454468,0.06,0.0,0.0,0.0,0.5657311 +115.33022999763489,0.06,0.0,0.0,0.0,0.5657311 +115.33942413330078,0.06,0.0,0.0,0.0,0.5657311 +115.34989714622498,0.07,0.0,0.0,0.0,0.5657311 +115.36048913002014,0.07,0.0,0.0,0.0,0.6730339 +115.37064695358276,0.07,0.0,0.0,0.0,0.6730339 +115.37965703010559,0.07,0.0,0.0,0.0,0.6730339 +115.38959908485413,0.08,0.0,0.0,0.0,0.6730339 +115.40180110931396,0.08,0.0,0.0,0.0,0.6730339 +115.40996313095093,0.08,0.0,0.0,0.0,0.826588 +115.41951394081116,0.08,0.0,0.0,0.0,0.826588 +115.42967700958252,0.089999996,0.0,0.0,0.0,0.826588 +115.43969011306763,0.089999996,0.0,0.0,0.0,0.826588 +115.45060706138611,0.089999996,0.0,0.0,0.0,0.826588 +115.46083903312683,0.099999994,0.0,0.0,0.0,0.8210379 +115.46985793113708,0.099999994,0.0,0.0,0.0,0.8210379 +115.48066592216492,0.099999994,0.0,0.0,0.0,0.8210379 +115.48961806297302,0.11,0.0,0.0,0.0,0.8210379 +115.49979496002197,0.11,0.0,0.0,0.0,0.8210379 +115.51058197021484,0.11,0.0,0.0,0.0,0.8099375 +115.51960706710815,0.12,0.0,0.0,0.0,0.8099375 +115.53004002571106,0.12,0.0,0.0,0.0,0.8099375 +115.54096698760986,0.12,0.0,0.0,0.0,0.8099375 +115.5498149394989,0.13,0.0,0.0,0.0,0.8099375 +115.56006407737732,0.13,0.0,0.0,0.0,0.7618363 +115.57106399536133,0.13,0.0,0.0,0.0,0.7618363 +115.5799720287323,0.14,0.0,0.0,0.0,0.7618363 +115.58945894241333,0.14,0.0,0.0,0.0,0.7618363 +115.60051703453064,0.14999999,0.0,0.0,0.0,0.7618363 +115.60949802398682,0.14999999,0.0,0.0,0.0,0.7618363 +115.62009692192078,0.16,0.0,0.0,0.0,0.6119823 +115.63017296791077,0.16,0.0,0.0,0.0,0.6119823 +115.64121913909912,0.17,0.0,0.0,0.0,0.6119823 +115.6502320766449,0.17,0.0,0.0,0.0,0.6119823 +115.66016006469727,0.17999999,0.0,0.0,0.0,0.5028294 +115.67184495925903,0.19,0.0,0.0,0.0,0.5028294 +115.67989993095398,0.19,0.0,0.0,0.0,0.5028294 +115.689621925354,0.19999999,0.0,0.0,0.0,0.5028294 +115.69947504997253,0.21,0.0,0.0,0.0,0.5028294 +115.70949101448059,0.21,0.0,0.0,0.0,0.4843289 +115.71941113471985,0.22,0.0,0.0,0.0,0.4843289 +115.72939205169678,0.22,0.0,0.0,0.0,0.4843289 +115.74036002159119,0.22999999,0.0,0.0,0.0,0.4843289 +115.74952793121338,0.24,0.0,0.0,0.0,0.4843289 +115.7624261379242,0.24,0.0,0.0,0.0,0.49542922 +115.7714171409607,0.25,0.0,0.0,0.0,0.49542922 +115.78040504455566,0.26,0.0,0.0,0.0,0.49542922 +115.78963303565979,0.26999998,0.0,0.0,0.0,0.49542922 +115.80026602745056,0.26999998,0.0,0.0,0.0,0.49542922 +115.80951499938965,0.28,0.0,0.0,0.0,0.50467944 +115.82021403312683,0.28,0.0,0.0,0.0,0.50467944 +115.82946300506592,0.29,0.0,0.0,0.0,0.50467944 +115.83964800834656,0.29,0.0,0.0,0.0,0.50467944 +115.85236501693726,0.29999998,0.0,0.0,0.0,0.50467944 +115.86034393310547,0.29999998,0.0,0.0,0.0,0.47877875 +115.87035202980042,0.31,0.0,0.0,0.0,0.47877875 +115.88134694099426,0.31,0.0,0.0,0.0,0.47877875 +115.88965010643005,0.32,0.0,0.0,0.0,0.47877875 +115.90076303482056,0.32999998,0.0,0.0,0.0,0.47877875 +115.90948510169983,0.32999998,0.0,0.0,0.0,0.4732286 +115.92018699645996,0.34,0.0,0.0,0.0,0.4732286 +115.92984890937805,0.34,0.0,0.0,0.0,0.4732286 +115.94025111198425,0.35,0.0,0.0,0.0,0.4732286 +115.95127391815186,0.35,0.0,0.0,0.0,0.4732286 +115.96027207374573,0.35999998,0.0,0.0,0.0,0.49357912 +115.9714560508728,0.35999998,0.0,0.0,0.0,0.49357912 +115.98015713691711,0.35999998,0.0,0.0,0.0,0.49357912 +115.98965501785278,0.35999998,0.0,0.0,0.0,0.49357912 +116.0019919872284,0.37,0.0,0.0,0.0,0.49357912 +116.00949096679688,0.37,0.0,0.0,0.0,0.49542922 +116.02003502845764,0.37,0.0,0.0,0.0,0.49542922 +116.02967405319214,0.38,0.0,0.0,0.0,0.49542922 +116.0412130355835,0.38,0.0,0.0,0.0,0.49542922 +116.05020809173584,0.39,0.0,0.0,0.0,0.49542922 +116.05969905853271,0.39,0.0,0.0,0.0,0.45842817 +116.06941103935242,0.39,0.0,0.0,0.0,0.45842817 +116.07960796356201,0.39999998,0.0,0.0,0.0,0.45842817 +116.0893931388855,0.39999998,0.0,0.0,0.0,0.45842817 +116.10121512413025,0.41,0.0,0.0,0.0,0.45842817 +116.10949397087097,0.41,0.0,0.0,0.0,0.4454778 +116.12215399742126,0.41,0.0,0.0,0.0,0.4454778 +116.13026809692383,0.41,0.0,0.0,0.0,0.4454778 +116.1401219367981,0.42,0.0,0.0,0.0,0.4454778 +116.14958500862122,0.42,0.0,0.0,0.0,0.4454778 +116.16061091423035,0.42,0.0,0.0,0.0,0.47877875 +116.16971397399902,0.42,0.0,0.0,0.0,0.47877875 +116.18008303642273,0.42,0.0,0.0,0.0,0.47877875 +116.18938899040222,0.42999998,0.0,0.0,0.0,0.47877875 +116.19954991340637,0.42999998,0.0,0.0,0.0,0.47877875 +116.20943212509155,0.42999998,0.0,0.0,0.0,0.4269774 +116.22021794319153,0.44,0.0,0.0,0.0,0.4269774 +116.23005414009094,0.44,0.0,0.0,0.0,0.4269774 +116.23992705345154,0.44,0.0,0.0,0.0,0.4269774 +116.25064897537231,0.44,0.0,0.0,0.0,0.4269774 +116.25983905792236,0.44,0.0,0.0,0.0,0.43437755 +116.27255892753601,0.44,0.0,0.0,0.0,0.43437755 +116.28102993965149,0.45,0.0,0.0,0.0,0.43437755 +116.28940892219543,0.45,0.0,0.0,0.0,0.43437755 +116.29961109161377,0.45,0.0,0.0,0.0,0.43437755 +116.31063604354858,0.45,0.0,0.0,0.0,0.39922667 +116.31958103179932,0.45,0.0,0.0,0.0,0.39922667 +116.32946109771729,0.45,0.0,0.0,0.0,0.39922667 +116.340989112854,0.45999998,0.0,0.0,0.0,0.39922667 +116.34998893737793,0.45999998,0.0,0.0,0.0,0.39922667 +116.36273503303528,0.45999998,0.0,0.0,0.0,0.38442627 +116.37113404273987,0.45999998,0.0,0.0,0.0,0.38442627 +116.38078594207764,0.45999998,0.0,0.0,0.0,0.38442627 +116.38967394828796,0.47,0.0,0.0,0.0,0.38442627 +116.39968204498291,0.47,0.0,0.0,0.0,0.38442627 +116.4096040725708,0.47,0.0,0.0,0.0,0.38072613 +116.42019295692444,0.47,0.0,0.0,0.0,0.38072613 +116.43017411231995,0.47,0.0,0.0,0.0,0.38072613 +116.4401330947876,0.47,0.0,0.0,0.0,0.38072613 +116.45257210731506,0.47,0.0,0.0,0.0,0.38072613 +116.45988607406616,0.47,0.0,0.0,0.0,0.36777583 +116.47092700004578,0.47,0.0,0.0,0.0,0.36777583 +116.47983813285828,0.47,0.0,0.0,0.0,0.36777583 +116.4895510673523,0.47,0.0,0.0,0.0,0.36777583 +116.49993109703064,0.47,0.0,0.0,0.0,0.36777583 +116.51225209236145,0.47,0.0,0.0,0.0,0.3270747 +116.51963591575623,0.47,0.0,0.0,0.0,0.3270747 +116.53016495704651,0.47,0.0,0.0,0.0,0.3270747 +116.5402021408081,0.47,0.0,0.0,0.0,0.3270747 +116.55107402801514,0.47,0.0,0.0,0.0,0.3270747 +116.55996704101562,0.48,0.0,0.0,0.0,0.19387117 +116.57018399238586,0.48,0.0,0.0,0.0,0.19387117 +116.58091592788696,0.48,0.0,0.0,0.0,0.19387117 +116.58961701393127,0.48,0.0,0.0,0.0,0.19387117 +116.60029911994934,0.48,0.0,0.0,0.0,0.19387117 +116.60949110984802,0.48,0.0,0.0,0.0,0.18462092 +116.62019300460815,0.48,0.0,0.0,0.0,0.18462092 +116.62938904762268,0.48,0.0,0.0,0.0,0.18462092 +116.64012813568115,0.48,0.0,0.0,0.0,0.18462092 +116.64967513084412,0.48,0.0,0.0,0.0,0.18462092 +116.66034698486328,0.48,0.0,0.0,0.0,0.19202115 +116.67085313796997,0.48,0.0,0.0,0.0,0.19202115 +116.67985510826111,0.48,0.0,0.0,0.0,0.19202115 +116.68949699401855,0.48,0.0,0.0,0.0,0.19202115 +116.70146012306213,0.48,0.0,0.0,0.0,0.19202115 +116.70951795578003,0.48,0.0,0.0,0.0,0.19202115 +116.71942901611328,0.48,0.0,0.0,0.0,0.18462092 +116.72939109802246,0.48,0.0,0.0,0.0,0.18462092 +116.7415120601654,0.48,0.0,0.0,0.0,0.18462092 +116.7505419254303,0.48,0.0,0.0,0.0,0.18462092 +116.75956010818481,0.48,0.0,0.0,0.0,0.19202115 +116.76983094215393,0.48,0.0,0.0,0.0,0.19202115 +116.78254008293152,0.48,0.0,0.0,0.0,0.19202115 +116.78944611549377,0.48,0.0,0.0,0.0,0.19202115 +116.80047607421875,0.48,0.0,0.0,0.0,0.19202115 +116.80939602851868,0.48,0.0,0.0,0.0,0.19202115 +116.81950092315674,0.48,0.0,0.0,0.0,0.18832105 +116.83016800880432,0.48,0.0,0.0,0.0,0.18832105 +116.84071803092957,0.48,0.0,0.0,0.0,0.18832105 +116.84972500801086,0.48,0.0,0.0,0.0,0.18832105 +116.85979104042053,0.47,0.0,0.0,0.0,0.19387117 +116.87176704406738,0.47,0.0,0.0,0.0,0.19387117 +116.88066911697388,0.47,0.0,0.0,0.0,0.19387117 +116.88946795463562,0.47,0.0,0.0,0.0,0.19387117 +116.8996729850769,0.47,0.0,0.0,0.0,0.19387117 +116.9095151424408,0.47,0.0,0.0,0.0,0.19017108 +116.92020392417908,0.47,0.0,0.0,0.0,0.19017108 +116.92944097518921,0.48,0.0,0.0,0.0,0.19017108 +116.93992304801941,0.48,0.0,0.0,0.0,0.19017108 +116.9497721195221,0.48,0.0,0.0,0.0,0.19017108 +116.96081900596619,0.48,0.0,0.0,0.0,0.19202115 +116.96974205970764,0.48,0.0,0.0,0.0,0.19202115 +116.97946000099182,0.48,0.0,0.0,0.0,0.19202115 +116.98946404457092,0.48,0.0,0.0,0.0,0.19202115 +117.0028989315033,0.47,0.0,0.0,0.0,0.19202115 +117.00951790809631,0.47,0.0,0.0,0.0,0.17352064 +117.02107191085815,0.47,0.0,0.0,0.0,0.17352064 +117.02949500083923,0.47,0.0,0.0,0.0,0.17352064 +117.0397379398346,0.47,0.0,0.0,0.0,0.17352064 +117.0498960018158,0.47,0.0,0.0,0.0,0.17352064 +117.06190896034241,0.47,0.0,0.0,0.0,0.17722073 +117.07091307640076,0.47,0.0,0.0,0.0,0.17722073 +117.07993793487549,0.47,0.0,0.0,0.0,0.17722073 +117.08948397636414,0.47,0.0,0.0,0.0,0.17722073 +117.10011911392212,0.47,0.0,0.0,0.0,0.17722073 +117.10951495170593,0.47,0.0,0.0,0.0,0.16427042 +117.12020111083984,0.47,0.0,0.0,0.0,0.16427042 +117.12939596176147,0.47,0.0,0.0,0.0,0.16427042 +117.142893075943,0.47,0.0,0.0,0.0,0.16427042 +117.15203309059143,0.47,0.0,0.0,0.0,0.16427042 +117.16103911399841,0.47,0.0,0.0,0.0,0.14021976 +117.1700451374054,0.45999998,0.0,0.0,0.0,0.14021976 +117.18231296539307,0.45999998,0.0,0.0,0.0,0.14021976 +117.18947696685791,0.45999998,0.0,0.0,0.0,0.14021976 +117.20130491256714,0.45999998,0.0,0.0,0.0,0.14021976 +117.21022891998291,0.45999998,0.0,0.0,0.0,0.13096951 +117.21959590911865,0.45999998,0.0,0.0,0.0,0.13096951 +117.2294270992279,0.45999998,0.0,0.0,0.0,0.13096951 +117.23970794677734,0.45999998,0.0,0.0,0.0,0.13096951 +117.25054693222046,0.45999998,0.0,0.0,0.0,0.13096951 +117.26015496253967,0.45999998,0.0,0.0,0.0,0.1383697 +117.26970410346985,0.45999998,0.0,0.0,0.0,0.1383697 +117.28149008750916,0.45999998,0.0,0.0,0.0,0.1383697 +117.28949809074402,0.45,0.0,0.0,0.0,0.1383697 +117.2998321056366,0.45,0.0,0.0,0.0,0.1383697 +117.30965900421143,0.45,0.0,0.0,0.0,0.14021976 +117.3194260597229,0.44,0.0,0.0,0.0,0.14021976 +117.33019304275513,0.44,0.0,0.0,0.0,0.14021976 +117.34071397781372,0.44,0.0,0.0,0.0,0.14021976 +117.35026812553406,0.42999998,0.0,0.0,0.0,0.14021976 +117.35979294776917,0.42999998,0.0,0.0,0.0,0.1420698 +117.36981296539307,0.42999998,0.0,0.0,0.0,0.1420698 +117.37959694862366,0.42999998,0.0,0.0,0.0,0.1420698 +117.38949799537659,0.42,0.0,0.0,0.0,0.1420698 +117.39961910247803,0.42,0.0,0.0,0.0,0.1420698 +117.41285610198975,0.42,0.0,0.0,0.0,0.17352064 +117.4193971157074,0.42,0.0,0.0,0.0,0.17352064 +117.43019199371338,0.41,0.0,0.0,0.0,0.17352064 +117.44036293029785,0.39999998,0.0,0.0,0.0,0.17352064 +117.45074892044067,0.39999998,0.0,0.0,0.0,0.17352064 +117.45965099334717,0.39,0.0,0.0,0.0,0.14761995 +117.47157406806946,0.38,0.0,0.0,0.0,0.14761995 +117.48058891296387,0.38,0.0,0.0,0.0,0.14761995 +117.48950004577637,0.38,0.0,0.0,0.0,0.14761995 +117.49995613098145,0.38,0.0,0.0,0.0,0.14761995 +117.51243901252747,0.38,0.0,0.0,0.0,0.14947 +117.51950192451477,0.39,0.0,0.0,0.0,0.14947 +117.53016805648804,0.39,0.0,0.0,0.0,0.14947 +117.5394561290741,0.39,0.0,0.0,0.0,0.14947 +117.55070400238037,0.39,0.0,0.0,0.0,0.14947 +117.55947303771973,0.39,0.0,0.0,0.0,0.15687022 +117.57018399238586,0.38,0.0,0.0,0.0,0.15687022 +117.57954597473145,0.38,0.0,0.0,0.0,0.15687022 +117.58949899673462,0.37,0.0,0.0,0.0,0.15687022 +117.60032296180725,0.37,0.0,0.0,0.0,0.15687022 +117.60950303077698,0.35999998,0.0,0.0,0.0,0.14761995 +117.61945700645447,0.35999998,0.0,0.0,0.0,0.14761995 +117.62959504127502,0.35999998,0.0,0.0,0.0,0.14761995 +117.64116191864014,0.35999998,0.0,0.0,0.0,0.14761995 +117.64959692955017,0.35999998,0.0,0.0,0.0,0.14761995 +117.66051411628723,0.37,0.0,0.0,0.0,0.17352064 +117.66951513290405,0.37,0.0,0.0,0.0,0.17352064 +117.67941093444824,0.35999998,0.0,0.0,0.0,0.17352064 +117.6895260810852,0.35999998,0.0,0.0,0.0,0.17352064 +117.70014214515686,0.35999998,0.0,0.0,0.0,0.17352064 +117.70951104164124,0.35,0.0,0.0,0.0,0.2586229 +117.71958899497986,0.34,0.0,0.0,0.0,0.2586229 +117.73015213012695,0.32,0.0,0.0,0.0,0.2586229 +117.74148392677307,0.31,0.0,0.0,0.0,0.2586229 +117.75048303604126,0.29999998,0.0,0.0,0.0,0.2586229 +117.75947403907776,0.29,0.0,0.0,0.0,0.23642232 +117.76941514015198,0.28,0.0,0.0,0.0,0.23642232 +117.78029203414917,0.26999998,0.0,0.0,0.0,0.23642232 +117.7895290851593,0.26,0.0,0.0,0.0,0.23642232 +117.80064105987549,0.25,0.0,0.0,0.0,0.23642232 +117.8095281124115,0.24,0.0,0.0,0.0,0.21422173 +117.822438955307,0.22999999,0.0,0.0,0.0,0.21422173 +117.83144211769104,0.22,0.0,0.0,0.0,0.21422173 +117.84043192863464,0.21,0.0,0.0,0.0,0.21422173 +117.84942698478699,0.19999999,0.0,0.0,0.0,0.21422173 +117.85976696014404,0.19,0.0,0.0,0.0,0.2438225 +117.86940002441406,0.17,0.0,0.0,0.0,0.2438225 +117.87964510917664,0.16,0.0,0.0,0.0,0.2438225 +117.88954401016235,0.14999999,0.0,0.0,0.0,0.2438225 +117.89972305297852,0.14,0.0,0.0,0.0,0.2438225 +117.9095151424408,0.14,0.0,0.0,0.0,0.22717209 +117.92019295692444,0.13,0.0,0.0,0.0,0.22717209 +117.93018007278442,0.12,0.0,0.0,0.0,0.22717209 +117.94064903259277,0.12,0.0,0.0,0.0,0.22717209 +117.9495530128479,0.11,0.0,0.0,0.0,0.22717209 +117.96280407905579,0.099999994,0.0,0.0,0.0,0.23087217 +117.9718189239502,0.099999994,0.0,0.0,0.0,0.23087217 +117.98080801963806,0.099999994,0.0,0.0,0.0,0.23087217 +117.98953700065613,0.089999996,0.0,0.0,0.0,0.23087217 +118.00231695175171,0.089999996,0.0,0.0,0.0,0.23087217 +118.00952696800232,0.08,0.0,0.0,0.0,0.21237166 +118.01942992210388,0.08,0.0,0.0,0.0,0.21237166 +118.02971196174622,0.08,0.0,0.0,0.0,0.21237166 +118.04014110565186,0.08,0.0,0.0,0.0,0.21237166 +118.05283808708191,0.08,0.0,0.0,0.0,0.21237166 +118.06186699867249,0.08,0.0,0.0,0.0,0.15872025 +118.06991004943848,0.08,0.0,0.0,0.0,0.15872025 +118.07989501953125,0.089999996,0.0,0.0,0.0,0.15872025 +118.08961391448975,0.089999996,0.0,0.0,0.0,0.15872025 +118.1000759601593,0.089999996,0.0,0.0,0.0,0.15872025 +118.10951495170593,0.089999996,0.0,0.0,0.0,0.14947 +118.1195170879364,0.089999996,0.0,0.0,0.0,0.14947 +118.12980794906616,0.089999996,0.0,0.0,0.0,0.14947 +118.1410391330719,0.089999996,0.0,0.0,0.0,0.14947 +118.14957094192505,0.089999996,0.0,0.0,0.0,0.14947 +118.16004610061646,0.089999996,0.0,0.0,0.0,0.12911949 +118.16995692253113,0.089999996,0.0,0.0,0.0,0.12911949 +118.18114995956421,0.089999996,0.0,0.0,0.0,0.12911949 +118.18955898284912,0.089999996,0.0,0.0,0.0,0.12911949 +118.20019698143005,0.089999996,0.0,0.0,0.0,0.12911949 +118.21151304244995,0.089999996,0.0,0.0,0.0,0.1827709 +118.21948599815369,0.089999996,0.0,0.0,0.0,0.1827709 +118.22953391075134,0.089999996,0.0,0.0,0.0,0.1827709 +118.2420449256897,0.089999996,0.0,0.0,0.0,0.1827709 +118.25106191635132,0.08,0.0,0.0,0.0,0.1827709 +118.26007914543152,0.08,0.0,0.0,0.0,0.15132006 +118.2702329158783,0.07,0.0,0.0,0.0,0.15132006 +118.27973508834839,0.07,0.0,0.0,0.0,0.15132006 +118.28958892822266,0.07,0.0,0.0,0.0,0.15132006 +118.29940509796143,0.06,0.0,0.0,0.0,0.15132006 +118.31073498725891,0.06,0.0,0.0,0.0,0.19017108 +118.3197591304779,0.06,0.0,0.0,0.0,0.19017108 +118.3301911354065,0.06,0.0,0.0,0.0,0.19017108 +118.34115600585938,0.06,0.0,0.0,0.0,0.19017108 +118.35017800331116,0.06,0.0,0.0,0.0,0.19017108 +118.35941410064697,0.06,0.0,0.0,0.0,0.12726942 +118.37112808227539,0.06,0.0,0.0,0.0,0.12726942 +118.38010311126709,0.06,0.0,0.0,0.0,0.12726942 +118.38966703414917,0.06,0.0,0.0,0.0,0.12726942 +118.40046310424805,0.06,0.0,0.0,0.0,0.12726942 +118.40987300872803,0.06,0.0,0.0,0.0,0.16427042 +118.42022204399109,0.06,0.0,0.0,0.0,0.16427042 +118.4302110671997,0.06,0.0,0.0,0.0,0.16427042 +118.43944597244263,0.06,0.0,0.0,0.0,0.16427042 +118.4494879245758,0.06,0.0,0.0,0.0,0.16427042 +118.4603340625763,0.06,0.0,0.0,0.0,0.14947 +118.47007012367249,0.06,0.0,0.0,0.0,0.14947 +118.4821400642395,0.06,0.0,0.0,0.0,0.14947 +118.4895920753479,0.06,0.0,0.0,0.0,0.14947 +118.50019812583923,0.049999997,0.0,0.0,0.0,0.14947 +118.51069211959839,0.049999997,0.0,0.0,0.0,0.15687022 +118.51960110664368,0.049999997,0.0,0.0,0.0,0.15687022 +118.53017711639404,0.049999997,0.0,0.0,0.0,0.15687022 +118.54001903533936,0.04,0.0,0.0,0.0,0.15687022 +118.551029920578,0.04,0.0,0.0,0.0,0.15687022 +118.56001996994019,0.04,0.0,0.0,0.0,0.20312142 +118.57234811782837,0.03,0.0,0.0,0.0,0.20312142 +118.5813660621643,0.03,0.0,0.0,0.0,0.20312142 +118.58961009979248,0.03,0.0,0.0,0.0,0.20312142 +118.59939908981323,0.02,0.0,0.0,0.0,0.20312142 +118.60956001281738,0.02,0.0,0.0,0.0,0.19387117 +118.62003207206726,0.02,0.0,0.0,0.0,0.19387117 +118.62940812110901,0.01,0.0,0.0,0.0,0.19387117 +118.64031410217285,0.01,0.0,0.0,0.0,0.19387117 +118.6499490737915,0.0,0.0,0.0,0.0,0.19387117 +118.6621470451355,0.0,0.0,0.0,0.0,0.18462092 +118.67012000083923,0.0,0.0,0.0,0.0,0.18462092 +118.67993903160095,0.0,0.0,0.0,0.0,0.18462092 +118.68960809707642,0.0,0.0,0.0,0.0,0.18462092 +118.70146799087524,0.0,0.0,0.0,0.0,0.18462092 +118.70952200889587,0.0,0.0,0.0,0.0,0.19387117 +118.7194709777832,0.0,0.0,0.0,0.0,0.19387117 +118.72954893112183,0.0,0.0,0.0,0.0,0.19387117 +118.739413022995,0.0,0.0,0.0,0.0,0.19387117 +118.7495219707489,0.0,0.0,0.0,0.0,0.19387117 +118.76010298728943,0.0,0.0,0.0,0.0,0.21607177 +118.77081108093262,0.0,0.0,0.0,0.0,0.21607177 +118.77982306480408,0.0,0.0,0.0,0.0,0.21607177 +118.7896339893341,0.0,0.0,0.0,0.0,0.21607177 +118.8002381324768,0.0,0.0,0.0,0.0,0.21607177 +118.80954599380493,0.0,0.0,0.0,0.0,0.21607177 +118.8202691078186,0.0,0.0,0.0,0.0,0.21052164 +118.82984709739685,0.0,0.0,0.0,0.0,0.21052164 +118.84025001525879,0.0,0.0,0.0,0.0,0.21052164 +118.85091996192932,0.0,0.0,0.0,0.0,0.21052164 +118.86100912094116,0.0,0.0,0.0,0.0,0.21052164 +118.87003302574158,0.0,0.0,0.0,0.0,0.21052164 +118.88162207603455,0.0,0.0,0.0,0.0,0.21052164 +118.88945198059082,0.0,0.0,0.0,0.0,0.21052164 +118.89964699745178,0.0,0.0,0.0,0.0,0.21052164 +118.90954303741455,0.0,0.0,0.0,0.0,0.26417306 +118.91977310180664,0.0,0.0,0.0,0.0,0.26417306 +118.92948007583618,0.0,0.0,0.0,0.0,0.26417306 +118.94220995903015,0.01,0.0,0.0,0.0,0.26417306 +118.9494800567627,0.01,0.0,0.0,0.0,0.26417306 +118.95995306968689,0.01,0.0,0.0,0.0,0.31412435 +118.97096610069275,0.01,0.0,0.0,0.0,0.31412435 +118.98071503639221,0.01,0.0,0.0,0.0,0.31412435 +118.98963713645935,0.01,0.0,0.0,0.0,0.31412435 +118.99950003623962,0.01,0.0,0.0,0.0,0.31412435 +119.00951099395752,0.02,0.0,0.0,0.0,0.31412435 +119.01947212219238,0.02,0.0,0.0,0.0,0.3270747 +119.0302140712738,0.02,0.0,0.0,0.0,0.3270747 +119.03969597816467,0.02,0.0,0.0,0.0,0.3270747 +119.05046796798706,0.02,0.0,0.0,0.0,0.3270747 +119.05947995185852,0.03,0.0,0.0,0.0,0.26047295 +119.07081198692322,0.03,0.0,0.0,0.0,0.26047295 +119.07983207702637,0.03,0.0,0.0,0.0,0.26047295 +119.08966493606567,0.03,0.0,0.0,0.0,0.26047295 +119.09944200515747,0.04,0.0,0.0,0.0,0.26047295 +119.1095221042633,0.04,0.0,0.0,0.0,0.26602313 +119.12022495269775,0.04,0.0,0.0,0.0,0.26602313 +119.1296169757843,0.049999997,0.0,0.0,0.0,0.26602313 +119.14038896560669,0.049999997,0.0,0.0,0.0,0.26602313 +119.14968705177307,0.049999997,0.0,0.0,0.0,0.26602313 +119.15942096710205,0.06,0.0,0.0,0.0,0.26047295 +119.16987013816833,0.06,0.0,0.0,0.0,0.26047295 +119.18054604530334,0.06,0.0,0.0,0.0,0.26047295 +119.1896800994873,0.07,0.0,0.0,0.0,0.26047295 +119.20272612571716,0.07,0.0,0.0,0.0,0.26047295 +119.20954608917236,0.07,0.0,0.0,0.0,0.30302405 +119.22024297714233,0.07,0.0,0.0,0.0,0.30302405 +119.23018002510071,0.07,0.0,0.0,0.0,0.30302405 +119.23988008499146,0.07,0.0,0.0,0.0,0.30302405 +119.25005602836609,0.08,0.0,0.0,0.0,0.30302405 +119.25951790809631,0.08,0.0,0.0,0.0,0.26047295 +119.2704849243164,0.089999996,0.0,0.0,0.0,0.26047295 +119.27955198287964,0.089999996,0.0,0.0,0.0,0.26047295 +119.28969097137451,0.099999994,0.0,0.0,0.0,0.26047295 +119.30107402801514,0.099999994,0.0,0.0,0.0,0.26047295 +119.30957412719727,0.11,0.0,0.0,0.0,0.2808235 +119.32023811340332,0.11,0.0,0.0,0.0,0.2808235 +119.3301351070404,0.11,0.0,0.0,0.0,0.2808235 +119.34108209609985,0.11,0.0,0.0,0.0,0.2808235 +119.35008811950684,0.11,0.0,0.0,0.0,0.2808235 +119.36041212081909,0.11,0.0,0.0,0.0,0.3270747 +119.3694200515747,0.11,0.0,0.0,0.0,0.3270747 +119.3826949596405,0.11,0.0,0.0,0.0,0.3270747 +119.38961696624756,0.11,0.0,0.0,0.0,0.3270747 +119.40154504776001,0.11,0.0,0.0,0.0,0.3270747 +119.4100489616394,0.11,0.0,0.0,0.0,0.36592576 +119.41946196556091,0.11,0.0,0.0,0.0,0.36592576 +119.42942404747009,0.11,0.0,0.0,0.0,0.36592576 +119.44021391868591,0.11,0.0,0.0,0.0,0.36592576 +119.45034098625183,0.099999994,0.0,0.0,0.0,0.36592576 +119.46269202232361,0.099999994,0.0,0.0,0.0,0.36222565 +119.4708240032196,0.099999994,0.0,0.0,0.0,0.36222565 +119.48172998428345,0.099999994,0.0,0.0,0.0,0.36222565 +119.48939394950867,0.099999994,0.0,0.0,0.0,0.36222565 +119.49952411651611,0.089999996,0.0,0.0,0.0,0.36222565 +119.51051306724548,0.089999996,0.0,0.0,0.0,0.36777583 +119.51954293251038,0.089999996,0.0,0.0,0.0,0.36777583 +119.53033494949341,0.089999996,0.0,0.0,0.0,0.36777583 +119.54026198387146,0.089999996,0.0,0.0,0.0,0.36777583 +119.55263996124268,0.089999996,0.0,0.0,0.0,0.36777583 +119.56187796592712,0.089999996,0.0,0.0,0.0,0.3566755 +119.57079291343689,0.089999996,0.0,0.0,0.0,0.3566755 +119.57971096038818,0.089999996,0.0,0.0,0.0,0.3566755 +119.58941507339478,0.089999996,0.0,0.0,0.0,0.3566755 +119.60074806213379,0.089999996,0.0,0.0,0.0,0.3566755 +119.60975694656372,0.099999994,0.0,0.0,0.0,0.3529754 +119.61946105957031,0.099999994,0.0,0.0,0.0,0.3529754 +119.62942790985107,0.099999994,0.0,0.0,0.0,0.3529754 +119.6401379108429,0.099999994,0.0,0.0,0.0,0.3529754 +119.65005803108215,0.099999994,0.0,0.0,0.0,0.3529754 +119.65989995002747,0.11,0.0,0.0,0.0,0.36592576 +119.67254996299744,0.11,0.0,0.0,0.0,0.36592576 +119.68110013008118,0.11,0.0,0.0,0.0,0.36592576 +119.68942713737488,0.11,0.0,0.0,0.0,0.36592576 +119.69997501373291,0.11,0.0,0.0,0.0,0.36592576 +119.70954704284668,0.11,0.0,0.0,0.0,0.3566755 +119.71960091590881,0.11,0.0,0.0,0.0,0.3566755 +119.72939896583557,0.11,0.0,0.0,0.0,0.3566755 +119.74006700515747,0.12,0.0,0.0,0.0,0.3566755 +119.75267100334167,0.12,0.0,0.0,0.0,0.3566755 +119.76266694068909,0.12,0.0,0.0,0.0,0.5028294 +119.772136926651,0.12,0.0,0.0,0.0,0.5028294 +119.780189037323,0.12,0.0,0.0,0.0,0.5028294 +119.78944110870361,0.12,0.0,0.0,0.0,0.5028294 +119.80071496963501,0.12,0.0,0.0,0.0,0.5028294 +119.80953812599182,0.12,0.0,0.0,0.0,0.5028294 +119.81943392753601,0.12,0.0,0.0,0.0,0.22162192 +119.83020401000977,0.12,0.0,0.0,0.0,0.22162192 +119.83961391448975,0.12,0.0,0.0,0.0,0.22162192 +119.85267901420593,0.13,0.0,0.0,0.0,0.22162192 +119.86096596717834,0.13,0.0,0.0,0.0,0.11986922 +119.87133502960205,0.14,0.0,0.0,0.0,0.11986922 +119.88035202026367,0.14999999,0.0,0.0,0.0,0.11986922 +119.88966798782349,0.16,0.0,0.0,0.0,0.11986922 +119.89986896514893,0.16,0.0,0.0,0.0,0.11986922 +119.90950202941895,0.16,0.0,0.0,0.0,0.11986922 +119.92022514343262,0.16,0.0,0.0,0.0,0.14947 +119.92980694770813,0.14999999,0.0,0.0,0.0,0.14947 +119.94265794754028,0.14999999,0.0,0.0,0.0,0.14947 +119.95253205299377,0.14999999,0.0,0.0,0.0,0.14947 +119.96153712272644,0.14,0.0,0.0,0.0,0.16057031 +119.97054505348206,0.14,0.0,0.0,0.0,0.16057031 +119.97956109046936,0.14,0.0,0.0,0.0,0.16057031 +119.98945903778076,0.13,0.0,0.0,0.0,0.16057031 +119.99943900108337,0.13,0.0,0.0,0.0,0.16057031 +120.00954914093018,0.13,0.0,0.0,0.0,0.21792182 +120.01961898803711,0.13,0.0,0.0,0.0,0.21792182 +120.03022193908691,0.13,0.0,0.0,0.0,0.21792182 +120.0393979549408,0.13,0.0,0.0,0.0,0.21792182 +120.05171203613281,0.13,0.0,0.0,0.0,0.21792182 +120.0605719089508,0.13,0.0,0.0,0.0,0.2919238 +120.06970000267029,0.13,0.0,0.0,0.0,0.2919238 +120.07979702949524,0.12,0.0,0.0,0.0,0.2919238 +120.0894660949707,0.12,0.0,0.0,0.0,0.2919238 +120.10140991210938,0.12,0.0,0.0,0.0,0.2919238 +120.1095380783081,0.11,0.0,0.0,0.0,0.30117404 +120.1202380657196,0.11,0.0,0.0,0.0,0.30117404 +120.13023400306702,0.11,0.0,0.0,0.0,0.30117404 +120.13986301422119,0.099999994,0.0,0.0,0.0,0.30117404 +120.1498429775238,0.089999996,0.0,0.0,0.0,0.30117404 +120.15992498397827,0.089999996,0.0,0.0,0.0,0.3492753 +120.16952896118164,0.08,0.0,0.0,0.0,0.3492753 +120.18071293830872,0.07,0.0,0.0,0.0,0.3492753 +120.18952202796936,0.07,0.0,0.0,0.0,0.3492753 +120.2025671005249,0.06,0.0,0.0,0.0,0.3492753 +120.20955395698547,0.06,0.0,0.0,0.0,0.35112536 +120.22024202346802,0.06,0.0,0.0,0.0,0.35112536 +120.22999596595764,0.06,0.0,0.0,0.0,0.35112536 +120.2410831451416,0.06,0.0,0.0,0.0,0.35112536 +120.2500901222229,0.07,0.0,0.0,0.0,0.35112536 +120.25978112220764,0.08,0.0,0.0,0.0,0.338175 +120.2726240158081,0.08,0.0,0.0,0.0,0.338175 +120.28263211250305,0.089999996,0.0,0.0,0.0,0.338175 +120.28948497772217,0.089999996,0.0,0.0,0.0,0.338175 +120.29965114593506,0.099999994,0.0,0.0,0.0,0.338175 +120.31020402908325,0.099999994,0.0,0.0,0.0,0.34002507 +120.31950092315674,0.099999994,0.0,0.0,0.0,0.34002507 +120.33021807670593,0.099999994,0.0,0.0,0.0,0.34002507 +120.34029197692871,0.099999994,0.0,0.0,0.0,0.34002507 +120.34969711303711,0.099999994,0.0,0.0,0.0,0.34002507 +120.35941696166992,0.099999994,0.0,0.0,0.0,0.35482547 +120.37187314033508,0.099999994,0.0,0.0,0.0,0.35482547 +120.38142991065979,0.099999994,0.0,0.0,0.0,0.35482547 +120.38949704170227,0.11,0.0,0.0,0.0,0.35482547 +120.40261697769165,0.11,0.0,0.0,0.0,0.35482547 +120.41024494171143,0.11,0.0,0.0,0.0,0.2919238 +120.42146706581116,0.11,0.0,0.0,0.0,0.2919238 +120.42964005470276,0.11,0.0,0.0,0.0,0.2919238 +120.43948793411255,0.11,0.0,0.0,0.0,0.2919238 +120.44953203201294,0.11,0.0,0.0,0.0,0.2919238 +120.45949912071228,0.11,0.0,0.0,0.0,0.26047295 +120.47022891044617,0.12,0.0,0.0,0.0,0.26047295 +120.4794180393219,0.12,0.0,0.0,0.0,0.26047295 +120.48950600624084,0.12,0.0,0.0,0.0,0.26047295 +120.5025520324707,0.12,0.0,0.0,0.0,0.26047295 +120.51153612136841,0.13,0.0,0.0,0.0,0.29562387 +120.52025604248047,0.13,0.0,0.0,0.0,0.29562387 +120.52953600883484,0.13,0.0,0.0,0.0,0.29562387 +120.53952312469482,0.13,0.0,0.0,0.0,0.29562387 +120.5506820678711,0.14,0.0,0.0,0.0,0.29562387 +120.55959701538086,0.14,0.0,0.0,0.0,0.38257617 +120.56950807571411,0.14,0.0,0.0,0.0,0.38257617 +120.57964396476746,0.14,0.0,0.0,0.0,0.38257617 +120.58949995040894,0.14,0.0,0.0,0.0,0.38257617 +120.60147714614868,0.14,0.0,0.0,0.0,0.38257617 +120.60945010185242,0.14,0.0,0.0,0.0,0.5472306 +120.61948204040527,0.14,0.0,0.0,0.0,0.5472306 +120.62943911552429,0.14,0.0,0.0,0.0,0.5472306 +120.63977813720703,0.14,0.0,0.0,0.0,0.5472306 +120.65262913703918,0.14,0.0,0.0,0.0,0.5472306 +120.66260504722595,0.14,0.0,0.0,0.0,0.5879317 +120.66975808143616,0.14,0.0,0.0,0.0,0.5879317 +120.68057513237,0.14,0.0,0.0,0.0,0.5879317 +120.68953013420105,0.14,0.0,0.0,0.0,0.5879317 +120.70037293434143,0.14999999,0.0,0.0,0.0,0.5879317 +120.70958304405212,0.14999999,0.0,0.0,0.0,0.58423156 +120.71941614151001,0.14,0.0,0.0,0.0,0.58423156 +120.72952103614807,0.14,0.0,0.0,0.0,0.58423156 +120.74052214622498,0.14,0.0,0.0,0.0,0.58423156 +120.75200295448303,0.14,0.0,0.0,0.0,0.58423156 +120.75963091850281,0.14,0.0,0.0,0.0,0.5971819 +120.77228808403015,0.14,0.0,0.0,0.0,0.5971819 +120.78128790855408,0.14,0.0,0.0,0.0,0.5971819 +120.78953504562378,0.14,0.0,0.0,0.0,0.5971819 +120.80015897750854,0.14,0.0,0.0,0.0,0.5971819 +120.80953097343445,0.14,0.0,0.0,0.0,0.5971819 +120.81946301460266,0.14,0.0,0.0,0.0,0.57683134 +120.83022212982178,0.14,0.0,0.0,0.0,0.57683134 +120.84258913993835,0.14,0.0,0.0,0.0,0.57683134 +120.85002613067627,0.14,0.0,0.0,0.0,0.57683134 +120.86221504211426,0.14,0.0,0.0,0.0,0.41402704 +120.87120199203491,0.14,0.0,0.0,0.0,0.41402704 +120.88018894195557,0.14,0.0,0.0,0.0,0.41402704 +120.88940501213074,0.14999999,0.0,0.0,0.0,0.41402704 +120.8995110988617,0.14999999,0.0,0.0,0.0,0.41402704 +120.90954494476318,0.16,0.0,0.0,0.0,0.375176 +120.91943407058716,0.16,0.0,0.0,0.0,0.375176 +120.93022203445435,0.16,0.0,0.0,0.0,0.375176 +120.93989706039429,0.17,0.0,0.0,0.0,0.375176 +120.95028901100159,0.17,0.0,0.0,0.0,0.375176 +120.96050906181335,0.17999999,0.0,0.0,0.0,0.37332594 +120.96943998336792,0.17999999,0.0,0.0,0.0,0.37332594 +120.98070192337036,0.17999999,0.0,0.0,0.0,0.37332594 +120.98955202102661,0.19,0.0,0.0,0.0,0.37332594 +121.00257706642151,0.19,0.0,0.0,0.0,0.37332594 +121.00954413414001,0.19,0.0,0.0,0.0,0.563881 +121.02025198936462,0.19,0.0,0.0,0.0,0.563881 +121.02999806404114,0.19999999,0.0,0.0,0.0,0.563881 +121.04069209098816,0.19999999,0.0,0.0,0.0,0.563881 +121.04960107803345,0.19999999,0.0,0.0,0.0,0.563881 +121.06005501747131,0.19999999,0.0,0.0,0.0,0.5675811 +121.07089900970459,0.19999999,0.0,0.0,0.0,0.5675811 +121.07990503311157,0.21,0.0,0.0,0.0,0.5675811 +121.08943104743958,0.21,0.0,0.0,0.0,0.5675811 +121.10257291793823,0.21,0.0,0.0,0.0,0.5675811 +121.10955905914307,0.21,0.0,0.0,0.0,0.57498133 +121.11985802650452,0.22,0.0,0.0,0.0,0.57498133 +121.1297550201416,0.22,0.0,0.0,0.0,0.57498133 +121.14098405838013,0.22,0.0,0.0,0.0,0.57498133 +121.14996695518494,0.22999999,0.0,0.0,0.0,0.57498133 +121.16110610961914,0.22999999,0.0,0.0,0.0,0.41587704 +121.17014598846436,0.22999999,0.0,0.0,0.0,0.41587704 +121.17957901954651,0.22999999,0.0,0.0,0.0,0.41587704 +121.18955302238464,0.24,0.0,0.0,0.0,0.41587704 +121.20102906227112,0.24,0.0,0.0,0.0,0.41587704 +121.20948505401611,0.24,0.0,0.0,0.0,0.41587704 +121.22139596939087,0.24,0.0,0.0,0.0,0.41772708 +121.23089003562927,0.24,0.0,0.0,0.0,0.41772708 +121.23988914489746,0.24,0.0,0.0,0.0,0.41772708 +121.25133299827576,0.24,0.0,0.0,0.0,0.41772708 +121.25939202308655,0.22999999,0.0,0.0,0.0,0.4621283 +121.26968908309937,0.22999999,0.0,0.0,0.0,0.4621283 +121.27939891815186,0.22,0.0,0.0,0.0,0.4621283 +121.28957200050354,0.21,0.0,0.0,0.0,0.4621283 +121.30036997795105,0.21,0.0,0.0,0.0,0.4621283 +121.31118702888489,0.19999999,0.0,0.0,0.0,0.43067744 +121.32025909423828,0.19,0.0,0.0,0.0,0.43067744 +121.32981395721436,0.19,0.0,0.0,0.0,0.43067744 +121.33963394165039,0.17999999,0.0,0.0,0.0,0.43067744 +121.3505790233612,0.17,0.0,0.0,0.0,0.43067744 +121.35958313941956,0.17,0.0,0.0,0.0,0.36222565 +121.37029099464417,0.16,0.0,0.0,0.0,0.36222565 +121.37955498695374,0.16,0.0,0.0,0.0,0.36222565 +121.38956713676453,0.14999999,0.0,0.0,0.0,0.36222565 +121.40175700187683,0.14,0.0,0.0,0.0,0.36222565 +121.4107460975647,0.14,0.0,0.0,0.0,0.25307277 +121.41957402229309,0.13,0.0,0.0,0.0,0.25307277 +121.43021297454834,0.12,2.2727273,2.2727273,0.0,0.25307277 +121.439621925354,0.12,5.3030305,5.3030305,0.0,0.25307277 +121.44978499412537,0.11,8.333334,8.333334,0.0,0.25307277 +121.4595730304718,0.099999994,12.878788,12.878788,0.0,0.08841839 +121.46970105171204,0.099999994,17.424242,17.424242,0.0,0.08841839 +121.48253202438354,0.089999996,21.969696,21.969696,0.0,0.08841839 +121.48958110809326,0.089999996,21.969696,21.969696,0.009372071,0.08841839 +121.49971008300781,0.07,34.09091,34.09091,0.028116215,0.08841839 +121.50966596603394,0.06,41.666668,41.666668,0.037488285,0.08656834 +121.51956009864807,0.049999997,50.0,50.0,0.05623243,0.08656834 +121.53024697303772,0.049999997,56.818184,56.818184,0.0656045,0.08656834 +121.53953099250793,0.04,65.15151,65.15151,0.08434864,0.08656834 +121.54946899414062,0.03,66.66667,66.66667,0.09372071,0.08656834 +121.56251811981201,0.03,56.060604,56.060604,0.11246486,0.073618 +121.57081294059753,0.03,56.060604,56.060604,0.12183693,0.073618 +121.58163094520569,0.02,45.454548,45.454548,0.14058107,0.073618 +121.58958911895752,0.01,43.939392,43.939392,0.14995314,0.073618 +121.59960913658142,0.0,43.181816,43.181816,0.15932521,0.073618 +121.61079001426697,0.0,43.181816,43.181816,0.17806935,0.04401721 +121.61968398094177,0.0,43.939392,43.939392,0.18744142,0.04401721 +121.63013291358948,0.0,46.969696,46.969696,0.1968135,0.04401721 +121.64251899719238,0.0,50.757576,50.757576,0.20618556,0.04401721 +121.65252113342285,0.0,50.757576,50.757576,0.21555763,0.04401721 +121.66251397132874,0.0,59.848484,59.848484,0.22492972,0.049567357 +121.67156505584717,0.0,59.848484,59.848484,0.23430179,0.049567357 +121.68056392669678,0.0,66.66667,66.66667,0.24367386,0.049567357 +121.68955993652344,0.0,70.454544,70.454544,0.25304592,0.049567357 +121.69985795021057,0.0,75.0,75.0,0.262418,0.049567357 +121.70957493782043,0.0,81.0606,81.0606,0.25304592,0.014416425 +121.71957397460938,0.0,86.36363,86.36363,0.27179006,0.014416425 +121.72959613800049,0.0,90.909096,90.909096,0.28116214,0.014416425 +121.74252796173096,0.0,94.69697,94.69697,0.2905342,0.014416425 +121.7525110244751,0.0,94.69697,94.69697,0.30927837,0.014416425 +121.75958895683289,0.0,100.0,100.0,0.31865042,0.023666665 +121.77049803733826,0.0,103.030304,103.030304,0.31865042,0.023666665 +121.77948093414307,0.0,106.06061,106.06061,0.31865042,0.023666665 +121.7895200252533,0.0,109.84849,109.84849,0.31865042,0.023666665 +121.80010199546814,0.0,112.12121,112.12121,0.33739457,0.023666665 +121.80954694747925,0.0,113.63637,113.63637,0.33739457,0.012566376 +121.81955099105835,0.0,114.39394,114.39394,0.3280225,0.012566376 +121.83022212982178,0.0,115.15152,115.15152,0.33739457,0.012566376 +121.84107208251953,0.0,116.666664,116.666664,0.33739457,0.012566376 +121.85124897956848,0.0,118.181816,118.181816,0.34676665,0.012566376 +121.8600389957428,0.0,119.69697,119.69697,0.34676665,0.019966569 +121.86952710151672,0.0,121.21213,121.21213,0.3561387,0.019966569 +121.88201594352722,0.0,121.969696,121.969696,0.3561387,0.019966569 +121.88961005210876,0.0,121.21213,121.21213,0.3655108,0.019966569 +121.90022206306458,0.0,120.454544,120.454544,0.3655108,0.019966569 +121.90953803062439,0.0,119.69697,119.69697,0.3655108,0.0033161184 +121.91954302787781,0.0,119.69697,119.69697,0.3561387,0.0033161184 +121.93021011352539,0.0,118.93939,118.93939,0.3561387,0.0033161184 +121.94033098220825,0.0,118.181816,118.181816,0.34676665,0.0033161184 +121.95032596588135,0.0,115.909096,115.909096,0.34676665,0.0033161184 +121.9625039100647,0.0,112.878784,112.878784,0.34676665,0.0033161184 +121.96951913833618,0.0,112.878784,112.878784,0.33739457,0.0033161184 +121.98127603530884,0.0,105.303024,105.303024,0.33739457,0.0033161184 +121.98962807655334,0.0,102.27273,102.27273,0.33739457,0.0033161184 +121.99941396713257,0.0,98.48485,98.48485,0.33739457,0.0033161184 +122.0095329284668,0.0,93.93939,93.93939,0.34676665,-0.026284654 +122.01945996284485,0.0,89.393936,89.393936,0.34676665,-0.026284654 +122.02943706512451,0.0,84.09091,84.09091,0.33739457,-0.026284654 +122.04025292396545,0.0,78.030304,78.030304,0.33739457,-0.026284654 +122.05135798454285,0.0,71.969696,71.969696,0.33739457,-0.026284654 +122.0622239112854,0.0,66.66667,66.66667,0.3280225,-0.03553491 +122.0713119506836,0.0,62.121212,62.121212,0.3280225,-0.03553491 +122.08029913902283,0.0,57.57576,57.57576,0.33739457,-0.03553491 +122.08963799476624,0.0,53.030304,53.030304,0.3280225,-0.03553491 +122.10061597824097,0.0,49.242424,49.242424,0.31865042,-0.03553491 +122.10955309867859,0.0,45.454548,45.454548,0.30927837,-0.03553491 +122.12033796310425,0.0,40.90909,40.90909,0.29990628,-0.0577355 +122.13019108772278,0.0,36.363636,36.363636,0.29990628,-0.0577355 +122.14022397994995,0.0,31.818182,31.818182,0.2905342,-0.0577355 +122.14986300468445,0.0,28.78788,28.78788,0.28116214,-0.0577355 +122.16134214401245,0.0,25.757576,25.757576,0.27179006,-0.06513569 +122.1703450679779,0.0,24.242424,24.242424,0.27179006,-0.06513569 +122.18042397499084,0.0,21.969696,21.969696,0.27179006,-0.06513569 +122.18945002555847,0.0,24.242424,24.242424,0.27179006,-0.06513569 +122.19949102401733,0.0,28.030302,28.030302,0.27179006,-0.06513569 +122.20958709716797,0.0,31.060606,31.060606,0.262418,-0.07438594 +122.2200870513916,0.0,34.848484,34.848484,0.262418,-0.07438594 +122.22942805290222,0.0,38.636364,38.636364,0.262418,-0.07438594 +122.24240493774414,0.0,43.939392,43.939392,0.262418,-0.07438594 +122.24945092201233,0.0,48.484848,48.484848,0.25304592,-0.07438594 +122.26040005683899,0.0,53.030304,53.030304,0.24367386,-0.10768682 +122.26940298080444,0.0,57.57576,57.57576,0.24367386,-0.10768682 +122.27962112426758,0.0,61.363636,61.363636,0.23430179,-0.10768682 +122.28966307640076,0.0,65.15151,65.15151,0.23430179,-0.10768682 +122.30103206634521,0.0,68.18182,68.18182,0.24367386,-0.10768682 +122.31001400947571,0.0,66.66667,66.66667,0.24367386,-0.1705885 +122.31952404975891,0.0,65.15151,65.15151,0.25304592,-0.1705885 +122.32989192008972,0.0,65.15151,65.15151,0.262418,-0.1705885 +122.34112596511841,0.0,65.15151,65.15151,0.262418,-0.1705885 +122.35000109672546,0.0,65.15151,65.15151,0.25304592,-0.1705885 +122.35946297645569,0.0,65.15151,65.15151,0.262418,-0.21683972 +122.36981511116028,0.0,64.393936,64.393936,0.262418,-0.21683972 +122.37957191467285,0.0,64.393936,64.393936,0.262418,-0.21683972 +122.38966798782349,0.0,65.15151,65.15151,0.27179006,-0.21683972 +122.3999879360199,0.0,65.90909,65.90909,0.27179006,-0.21683972 +122.41145896911621,0.0,67.42425,67.42425,0.28116214,-0.18168877 +122.42024803161621,0.0,68.93939,68.93939,0.27179006,-0.18168877 +122.43022298812866,0.0,70.454544,70.454544,0.28116214,-0.18168877 +122.43942713737488,0.0,71.21212,71.21212,0.28116214,-0.18168877 +122.44953894615173,0.0,71.969696,71.969696,0.28116214,-0.18168877 +122.4600100517273,0.0,71.21212,71.21212,0.28116214,-0.18168877 +122.47190594673157,0.0,69.69697,69.69697,0.28116214,-0.18168877 +122.48091006278992,0.0,67.42425,67.42425,0.28116214,-0.18168877 +122.48967003822327,0.0,64.393936,64.393936,0.28116214,-0.18168877 +122.49961709976196,0.0,60.606064,60.606064,0.28116214,-0.18168877 +122.50970792770386,0.0,56.818184,56.818184,0.27179006,-0.17243853 +122.51957511901855,0.0,51.515152,51.515152,0.27179006,-0.17243853 +122.53024196624756,0.0,46.21212,46.21212,0.262418,-0.17243853 +122.53960394859314,0.0,41.666668,41.666668,0.262418,-0.17243853 +122.55022692680359,0.0,37.121216,37.121216,0.25304592,-0.17243853 +122.56187796592712,0.0,31.818182,31.818182,0.24367386,-0.23534022 +122.57026195526123,0.0,27.272728,27.272728,0.24367386,-0.23534022 +122.57985591888428,0.0,21.969696,21.969696,0.23430179,-0.23534022 +122.58969807624817,0.0,21.969696,21.969696,0.23430179,-0.23534022 +122.59946203231812,0.0,25.0,25.0,0.23430179,-0.23534022 +122.61162996292114,0.0,27.272728,27.272728,0.23430179,-0.28899163 +122.62025809288025,0.0,30.303032,30.303032,0.23430179,-0.28899163 +122.62966394424438,0.0,32.575756,32.575756,0.23430179,-0.28899163 +122.63945603370667,0.0,34.09091,34.09091,0.23430179,-0.28899163 +122.6494951248169,0.0,35.60606,35.60606,0.23430179,-0.28899163 +122.66083192825317,0.0,36.363636,36.363636,0.23430179,-0.3666937 +122.66981291770935,0.0,36.363636,36.363636,0.23430179,-0.3666937 +122.67946696281433,0.0,37.121216,37.121216,0.23430179,-0.3666937 +122.68968105316162,0.0,37.878788,37.878788,0.22492972,-0.3666937 +122.70137190818787,0.0,39.39394,39.39394,0.23430179,-0.3666937 +122.7095730304718,0.0,40.90909,40.90909,0.22492972,-0.41664502 +122.71972107887268,0.0,43.181816,43.181816,0.22492972,-0.41664502 +122.72940397262573,0.0,44.696968,44.696968,0.21555763,-0.41664502 +122.73949599266052,0.0,46.21212,46.21212,0.21555763,-0.41664502 +122.75074291229248,0.0,47.727272,47.727272,0.21555763,-0.41664502 +122.75973296165466,0.0,48.484848,48.484848,0.21555763,-0.47399658 +122.76945114135742,0.0,48.484848,48.484848,0.21555763,-0.47399658 +122.78243398666382,0.0,48.484848,48.484848,0.21555763,-0.47399658 +122.78953194618225,0.0,48.484848,48.484848,0.22492972,-0.47399658 +122.80078411102295,0.0,48.484848,48.484848,0.21555763,-0.47399658 +122.8095760345459,0.0,49.242424,49.242424,0.21555763,-0.48139673 +122.81957602500916,0.0,50.0,50.0,0.20618556,-0.48139673 +122.82982802391052,0.0,51.515152,51.515152,0.20618556,-0.48139673 +122.83996200561523,0.0,53.030304,53.030304,0.20618556,-0.48139673 +122.84948706626892,0.0,54.545456,54.545456,0.20618556,-0.48139673 +122.86241412162781,0.0,55.30303,55.30303,0.20618556,-0.5350482 +122.87057399749756,0.0,55.30303,55.30303,0.1968135,-0.5350482 +122.88187408447266,0.0,56.060604,56.060604,0.1968135,-0.5350482 +122.88975405693054,0.0,56.060604,56.060604,0.1968135,-0.5350482 +122.89987707138062,0.0,56.060604,56.060604,0.1968135,-0.5350482 +122.90947699546814,0.0,56.818184,56.818184,0.18744142,-0.5350482 +122.92013907432556,0.0,58.333332,58.333332,0.18744142,-0.55354863 +122.92947602272034,0.0,59.090908,59.090908,0.18744142,-0.55354863 +122.93956708908081,0.0,60.606064,60.606064,0.18744142,-0.55354863 +122.95215106010437,0.0,62.121212,62.121212,0.18744142,-0.55354863 +122.96240496635437,0.0,62.878788,62.878788,0.18744142,-0.5886996 +122.97195410728455,0.0,62.878788,62.878788,0.18744142,-0.5886996 +122.97969698905945,0.0,62.878788,62.878788,0.18744142,-0.5886996 +122.98972201347351,0.0,62.121212,62.121212,0.17806935,-0.5886996 +122.99947905540466,0.0,60.606064,60.606064,0.18744142,-0.5886996 +123.00957298278809,0.0,58.333332,58.333332,0.17806935,-0.5775993 +123.01958203315735,0.0,56.818184,56.818184,0.17806935,-0.5775993 +123.02948212623596,0.0,54.545456,54.545456,0.16869728,-0.5775993 +123.03997302055359,0.0,53.030304,53.030304,0.16869728,-0.5775993 +123.05242609977722,0.0,51.515152,51.515152,0.16869728,-0.5775993 +123.06138491630554,0.0,51.515152,51.515152,0.15932521,-0.69970256 +123.07102012634277,0.0,47.727272,47.727272,0.15932521,-0.69970256 +123.08001708984375,0.0,46.21212,46.21212,0.14995314,-0.69970256 +123.08947610855103,0.0,44.696968,44.696968,0.14058107,-0.69970256 +123.10070490837097,0.0,43.939392,43.939392,0.14058107,-0.69970256 +123.10959005355835,0.0,42.424244,42.424244,0.131209,-0.7311533 +123.11957812309265,0.0,41.666668,41.666668,0.131209,-0.7311533 +123.13023591041565,0.0,40.90909,40.90909,0.131209,-0.7311533 +123.14239692687988,0.0,40.90909,40.90909,0.131209,-0.7311533 +123.15179109573364,0.0,40.90909,40.90909,0.131209,-0.7311533 +123.16025400161743,0.0,42.424244,42.424244,0.131209,-0.74040365 +123.16962099075317,0.0,43.181816,43.181816,0.12183693,-0.74040365 +123.1795380115509,0.0,43.939392,43.939392,0.12183693,-0.74040365 +123.18973207473755,0.0,44.696968,44.696968,0.12183693,-0.74040365 +123.19998407363892,0.0,45.454548,45.454548,0.131209,-0.74040365 +123.20948600769043,0.0,45.454548,45.454548,0.12183693,-0.74040365 +123.22024297714233,0.0,44.696968,44.696968,0.12183693,-0.75890404 +123.23197102546692,0.0,43.939392,43.939392,0.12183693,-0.75890404 +123.2408800125122,0.0,42.424244,42.424244,0.131209,-0.75890404 +123.24979400634766,0.0,41.666668,41.666668,0.14058107,-0.75890404 +123.25946307182312,0.0,40.151516,40.151516,0.131209,-0.7478038 +123.27218914031982,0.0,38.636364,38.636364,0.131209,-0.7478038 +123.28020691871643,0.0,36.363636,36.363636,0.12183693,-0.7478038 +123.2897629737854,0.0,34.848484,34.848484,0.12183693,-0.7478038 +123.29949593544006,0.0,33.333336,33.333336,0.12183693,-0.7478038 +123.30959701538086,0.0,31.818182,31.818182,0.12183693,-0.69415236 +123.32026100158691,0.0,30.303032,30.303032,0.11246486,-0.69415236 +123.3294620513916,0.0,29.545454,29.545454,0.10309278,-0.69415236 +123.3399441242218,0.0,28.030302,28.030302,0.10309278,-0.69415236 +123.35016393661499,0.0,26.515152,26.515152,0.09372071,-0.69415236 +123.35939908027649,0.0,25.757576,25.757576,0.08434864,-0.7200531 +123.37040400505066,0.0,24.242424,24.242424,0.08434864,-0.7200531 +123.38020706176758,0.0,22.727274,22.727274,0.07497657,-0.7200531 +123.38953113555908,0.0,21.212122,21.212122,0.07497657,-0.7200531 +123.40045595169067,0.0,19.69697,19.69697,0.0656045,-0.7200531 +123.41015195846558,0.0,18.939394,18.939394,0.0656045,-0.5146976 +123.41951394081116,0.0,17.424242,17.424242,0.05623243,-0.5146976 +123.43119192123413,0.0,15.909091,15.909091,0.046860356,-0.5146976 +123.44021511077881,0.0,15.151516,15.151516,0.037488285,-0.5146976 +123.45217704772949,0.0,14.39394,14.39394,0.028116215,-0.5146976 +123.46117091178894,0.01,12.878788,12.878788,0.018744143,-0.26679102 +123.47015500068665,0.02,12.121212,12.121212,0.009372071,-0.26679102 +123.4798219203949,0.03,11.363637,11.363637,0.0,-0.26679102 +123.4897711277008,0.03,9.848485,9.848485,0.0,-0.26679102 +123.49943399429321,0.04,9.090909,9.090909,0.0,-0.26679102 +123.51198506355286,0.04,8.333334,8.333334,0.0,-0.4184951 +123.52023696899414,0.049999997,7.575758,7.575758,0.0,-0.4184951 +123.5294680595398,0.049999997,6.818182,6.818182,0.0,-0.4184951 +123.54212999343872,0.06,6.060606,6.060606,0.0,-0.4184951 +123.54955792427063,0.07,6.060606,6.060606,0.0,-0.4184951 +123.56009602546692,0.07,5.3030305,5.3030305,0.0,-0.44994587 +123.57009291648865,0.08,4.5454545,4.5454545,0.0,-0.44994587 +123.57952404022217,0.089999996,3.787879,3.787879,0.0,-0.44994587 +123.58980202674866,0.089999996,3.787879,3.787879,0.0,-0.44994587 +123.60230612754822,0.099999994,3.030303,3.030303,0.0,-0.44994587 +123.61130404472351,0.11,3.030303,3.030303,0.0,-0.5831495 +123.61947107315063,0.11,2.2727273,2.2727273,0.0,-0.5831495 +123.62950801849365,0.12,2.2727273,2.2727273,0.0,-0.5831495 +123.64086604118347,0.12,2.2727273,2.2727273,0.0,-0.5831495 +123.65000605583191,0.12,1.5151515,1.5151515,0.0,-0.5831495 +123.65952706336975,0.13,1.5151515,1.5151515,0.0,-0.6867522 +123.67233395576477,0.13,0.75757575,0.75757575,0.0,-0.6867522 +123.67965912818909,0.14,0.75757575,0.75757575,0.0,-0.6867522 +123.68977808952332,0.14,0.75757575,0.75757575,0.0,-0.6867522 +123.7007110118866,0.14999999,0.0,0.0,0.0,-0.6867522 +123.71037793159485,0.14999999,0.0,0.0,0.0,-0.7052527 +123.71953892707825,0.14999999,0.0,0.0,0.0,-0.7052527 +123.72947907447815,0.14999999,0.0,0.0,0.0,-0.7052527 +123.73967099189758,0.16,0.0,0.0,0.0,-0.7052527 +123.74939608573914,0.16,0.0,0.0,0.0,-0.7052527 +123.75965404510498,0.16,0.0,0.0,0.0,-0.7034027 +123.771723985672,0.17,0.0,0.0,0.0,-0.7034027 +123.78235197067261,0.17,0.0,0.0,0.0,-0.7034027 +123.78981494903564,0.17,0.0,0.0,0.0,-0.7034027 +123.80043005943298,0.17999999,0.0,0.0,0.0,-0.7034027 +123.80942797660828,0.17999999,0.0,0.0,0.0,-0.7034027 +123.81985211372375,0.17999999,0.0,0.0,0.0,-0.6849022 +123.82982301712036,0.17999999,0.0,0.0,0.0,-0.6849022 +123.83952903747559,0.19,0.0,0.0,0.0,-0.6849022 +123.84990000724792,0.19,0.0,0.0,0.0,-0.6849022 +123.86234903335571,0.19,0.0,0.0,0.0,-0.61275023 +123.87230491638184,0.19,0.0,0.0,0.0,-0.61275023 +123.88147497177124,0.19999999,0.0,0.0,0.0,-0.61275023 +123.88982009887695,0.19999999,0.0,0.0,0.0,-0.61275023 +123.89947199821472,0.19999999,0.0,0.0,0.0,-0.61275023 +123.90958094596863,0.19999999,0.0,0.0,0.0,-0.5479985 +123.91976499557495,0.19999999,0.0,0.0,0.0,-0.5479985 +123.92951512336731,0.21,0.0,0.0,0.0,-0.5479985 +123.93988299369812,0.21,0.0,0.0,0.0,-0.5479985 +123.95162892341614,0.21,0.0,0.0,0.0,-0.5479985 +123.96234798431396,0.22,0.0,0.0,0.0,-0.6331008 +123.97097206115723,0.22,0.0,0.0,0.0,-0.6331008 +123.98017001152039,0.22999999,0.0,0.0,0.0,-0.6331008 +123.9895749092102,0.22999999,0.0,0.0,0.0,-0.6331008 +124.00069403648376,0.22999999,0.0,0.0,0.0,-0.6331008 +124.00958704948425,0.22999999,0.0,0.0,0.0,-0.794055 +124.0194799900055,0.22999999,0.0,0.0,0.0,-0.794055 +124.03027391433716,0.22,0.0,0.0,0.0,-0.794055 +124.03970193862915,0.22,0.0,0.0,0.0,-0.794055 +124.05141496658325,0.22,0.0,0.0,0.0,-0.794055 +124.05941700935364,0.22,0.0,0.0,0.0,-0.8828574 +124.07002305984497,0.22,0.0,0.0,0.0,-0.8828574 +124.07962608337402,0.22,0.0,0.0,0.0,-0.8828574 +124.08983898162842,0.22,0.0,0.0,0.0,-0.8828574 +124.09962010383606,0.22,0.0,0.0,0.0,-0.8828574 +124.10958099365234,0.22999999,0.0,0.0,0.0,-0.8791573 +124.12024092674255,0.22999999,0.0,0.0,0.0,-0.8791573 +124.12953901290894,0.22999999,0.0,0.0,0.0,-0.8791573 +124.13939809799194,0.22999999,0.0,0.0,0.0,-0.8791573 +124.14961004257202,0.22999999,0.0,0.0,0.0,-0.8791573 +124.16070294380188,0.22999999,0.0,0.0,0.0,-0.8884076 +124.16969299316406,0.24,0.0,0.0,0.0,-0.8884076 +124.18055200576782,0.24,0.0,0.0,0.0,-0.8884076 +124.18953514099121,0.24,0.0,0.0,0.0,-0.8884076 +124.20015001296997,0.24,0.0,0.0,0.0,-0.8884076 +124.20958805084229,0.24,0.0,0.0,0.0,-0.8828574 +124.21960401535034,0.24,0.0,0.0,0.0,-0.8828574 +124.22952699661255,0.25,0.0,0.0,0.0,-0.8828574 +124.24176907539368,0.25,0.0,0.0,0.0,-0.8828574 +124.25077104568481,0.25,0.0,0.0,0.0,-0.8828574 +124.2597770690918,0.25,0.0,0.0,0.0,-0.8865575 +124.26960492134094,0.25,0.0,0.0,0.0,-0.8865575 +124.27944993972778,0.25,0.0,0.0,0.0,-0.8865575 +124.28983807563782,0.25,0.0,0.0,0.0,-0.8865575 +124.29940009117126,0.25,0.0,0.0,0.0,-0.8865575 +124.30959010124207,0.25,0.0,0.0,0.0,-0.82920593 +124.3194329738617,0.25,0.0,0.0,0.0,-0.82920593 +124.3302960395813,0.25,0.0,0.0,0.0,-0.82920593 +124.34082913398743,0.25,0.0,0.0,0.0,-0.82920593 +124.34986591339111,0.25,0.0,0.0,0.0,-0.82920593 +124.3594160079956,0.25,0.0,0.0,0.0,-0.7219031 +124.36940407752991,0.25,0.0,0.0,0.0,-0.7219031 +124.38098311424255,0.25,0.0,0.0,0.0,-0.7219031 +124.38984608650208,0.25,0.0,0.0,0.0,-0.7219031 +124.39959692955017,0.25,0.0,0.0,0.0,-0.7219031 +124.41229605674744,0.25,0.0,0.0,0.0,-0.6886023 +124.42023396492004,0.25,0.0,0.0,0.0,-0.6886023 +124.4309151172638,0.25,0.0,0.0,0.0,-0.6886023 +124.43991708755493,0.25,0.0,0.0,0.0,-0.6886023 +124.44964504241943,0.25,0.0,0.0,0.0,-0.6886023 +124.46041202545166,0.25,0.0,0.0,0.0,-0.59609973 +124.47002696990967,0.26,0.0,0.0,0.0,-0.59609973 +124.48135614395142,0.26,0.0,0.0,0.0,-0.59609973 +124.48986101150513,0.26,0.0,0.0,0.0,-0.59609973 +124.49939393997192,0.26,0.0,0.0,0.0,-0.59609973 +124.50942301750183,0.25,0.0,0.0,0.0,-0.5923997 +124.51941394805908,0.25,0.0,0.0,0.0,-0.5923997 +124.52960801124573,0.25,0.0,0.0,0.0,-0.5923997 +124.5394070148468,0.25,0.0,0.0,0.0,-0.5923997 +124.5502381324768,0.25,0.0,0.0,0.0,-0.5923997 +124.56107902526855,0.25,0.0,0.0,0.0,-0.5905496 +124.56955099105835,0.25,0.0,0.0,0.0,-0.5905496 +124.58055710792542,0.25,0.0,0.0,0.0,-0.5905496 +124.58959913253784,0.25,0.0,0.0,0.0,-0.5905496 +124.60207891464233,0.25,0.0,0.0,0.0,-0.5905496 +124.61008191108704,0.26,0.0,0.0,0.0,-0.6294007 +124.62008905410767,0.26,0.0,0.0,0.0,-0.6294007 +124.62941813468933,0.25,0.0,0.0,0.0,-0.6294007 +124.63940191268921,0.25,0.0,0.0,0.0,-0.6294007 +124.65103912353516,0.25,0.0,0.0,0.0,-0.6294007 +124.6595709323883,0.25,0.0,0.0,0.0,-0.64975125 +124.67020893096924,0.25,0.0,0.0,0.0,-0.64975125 +124.67939710617065,0.25,0.0,0.0,0.0,-0.64975125 +124.68960404396057,0.25,0.0,0.0,0.0,-0.64975125 +124.7011489868164,0.25,0.0,0.0,0.0,-0.64975125 +124.7101891040802,0.25,0.0,0.0,0.0,-0.679352 +124.71940302848816,0.25,0.0,0.0,0.0,-0.679352 +124.7294020652771,0.25,0.0,0.0,0.0,-0.679352 +124.74225807189941,0.25,0.0,0.0,0.0,-0.679352 +124.7519121170044,0.25,0.0,0.0,0.0,-0.679352 +124.76095294952393,0.25,0.0,0.0,0.0,-0.64975125 +124.76995205879211,0.25,0.0,0.0,0.0,-0.64975125 +124.7794189453125,0.25,0.0,0.0,0.0,-0.64975125 +124.78968000411987,0.25,0.0,0.0,0.0,-0.64975125 +124.79969096183777,0.26,0.0,0.0,0.0,-0.64975125 +124.80940413475037,0.26,0.0,0.0,0.0,-0.64975125 +124.8195309638977,0.26,0.0,0.0,0.0,-0.64050096 +124.83104801177979,0.26,0.0,0.0,0.0,-0.64050096 +124.84213614463806,0.26,0.0,0.0,0.0,-0.64050096 +124.85064911842346,0.25,0.0,0.0,0.0,-0.64050096 +124.85943603515625,0.25,0.0,0.0,0.0,-0.63125074 +124.86941695213318,0.25,0.0,0.0,0.0,-0.63125074 +124.8798599243164,0.25,0.0,0.0,0.0,-0.63125074 +124.88988995552063,0.25,0.0,0.0,0.0,-0.63125074 +124.89941501617432,0.25,0.0,0.0,0.0,-0.63125074 +124.90944314002991,0.25,0.0,0.0,0.0,-0.63125074 +124.91957402229309,0.24,0.0,0.0,0.0,-0.3888943 +124.93224096298218,0.24,0.0,0.0,0.0,-0.3888943 +124.94028806686401,0.24,0.0,0.0,0.0,-0.3888943 +124.95035409927368,0.24,0.0,0.0,0.0,-0.3888943 +124.95942997932434,0.24,0.0,0.0,0.0,-0.17613864 +124.96942591667175,0.24,0.0,0.0,0.0,-0.17613864 +124.98039698600769,0.22999999,0.0,0.0,0.0,-0.17613864 +124.989422082901,0.22999999,0.0,0.0,0.0,-0.17613864 +125.00227808952332,0.22999999,0.0,0.0,0.0,-0.17613864 +125.00961112976074,0.22999999,0.0,0.0,0.0,0.042167164 +125.01943111419678,0.22,0.0,0.0,0.0,0.042167164 +125.02940511703491,0.22,0.0,0.0,0.0,0.042167164 +125.03943610191345,0.22,0.0,0.0,0.0,0.042167164 +125.04939603805542,0.21,0.0,0.0,0.0,0.042167164 +125.061448097229,0.19999999,0.0,0.0,0.0,0.15132006 +125.06943798065186,0.19999999,0.0,0.0,0.0,0.15132006 +125.0794620513916,0.19,0.0,0.0,0.0,0.15132006 +125.08991599082947,0.19,0.0,0.0,0.0,0.15132006 +125.10224914550781,0.17999999,0.0,0.0,0.0,0.15132006 +125.10959911346436,0.17999999,0.0,0.0,0.0,0.451028 +125.11944699287415,0.17,0.0,0.0,0.0,0.451028 +125.12947201728821,0.17,0.0,0.0,0.0,0.451028 +125.13979506492615,0.17,0.0,0.0,0.0,0.451028 +125.1507830619812,0.17,0.0,0.0,0.0,0.451028 +125.16052603721619,0.17,0.0,0.0,0.0,0.43622762 +125.16952300071716,0.17,0.0,0.0,0.0,0.43622762 +125.17959308624268,0.17,0.0,0.0,0.0,0.43622762 +125.18992495536804,0.17,0.0,0.0,0.0,0.43622762 +125.19963002204895,0.17,0.0,0.0,0.0,0.43622762 +125.2095079421997,0.17,0.0,0.0,0.0,0.43622762 +125.21947693824768,0.17,0.0,0.0,0.0,0.43622762 +125.22940802574158,0.17,0.0,0.0,0.0,0.43622762 +125.23946499824524,0.17,0.0,0.0,0.0,0.43622762 +125.24947214126587,0.17,0.0,0.0,0.0,0.43622762 +125.25952911376953,0.17,0.0,0.0,0.0,0.56018096 +125.26947808265686,0.17,0.0,0.0,0.0,0.56018096 +125.27948307991028,0.17,0.0,0.0,0.0,0.56018096 +125.2896671295166,0.17,0.0,0.0,0.0,0.56018096 +125.30100607872009,0.17,0.0,0.0,0.0,0.56018096 +125.30949401855469,0.16,0.0,0.0,0.0,0.56018096 +125.31947302818298,0.16,0.0,0.0,0.0,0.73963565 +125.32946491241455,0.16,0.0,0.0,0.0,0.73963565 +125.3404529094696,0.16,0.0,0.0,0.0,0.73963565 +125.3494861125946,0.14999999,0.0,0.0,0.0,0.73963565 +125.36091303825378,0.14999999,0.0,0.0,0.0,0.6323328 +125.3698239326477,0.14999999,0.0,0.0,0.0,0.6323328 +125.38223791122437,0.14,0.0,0.0,0.0,0.6323328 +125.38994312286377,0.14,0.0,0.0,0.0,0.6323328 +125.39961194992065,0.13,0.0,0.0,0.0,0.6323328 +125.41042494773865,0.13,0.0,0.0,0.0,0.676734 +125.41955399513245,0.12,0.0,0.0,0.0,0.676734 +125.42943692207336,0.12,0.0,0.0,0.0,0.676734 +125.43945813179016,0.11,0.0,0.0,0.0,0.676734 +125.44939398765564,0.099999994,0.0,0.0,0.0,0.676734 +125.45948100090027,0.099999994,0.0,0.0,0.0,0.6915344 +125.47217798233032,0.089999996,0.0,0.0,0.0,0.6915344 +125.4822359085083,0.089999996,0.0,0.0,0.0,0.6915344 +125.4899480342865,0.089999996,0.0,0.0,0.0,0.6915344 +125.50064396858215,0.08,0.0,0.0,0.0,0.6915344 +125.5096549987793,0.08,0.0,0.0,0.0,0.7303854 +125.51949310302734,0.07,0.0,0.0,0.0,0.7303854 +125.52949094772339,0.07,0.0,0.0,0.0,0.7303854 +125.53949999809265,0.07,0.0,0.0,0.0,0.7303854 +125.54981207847595,0.07,0.0,0.0,0.0,0.7303854 +125.56041598320007,0.07,0.0,0.0,0.0,0.8450884 +125.56949305534363,0.07,0.0,0.0,0.0,0.8450884 +125.58183813095093,0.07,0.0,0.0,0.0,0.8450884 +125.58997511863708,0.07,0.0,0.0,0.0,0.8450884 +125.59987211227417,0.08,0.0,0.0,0.0,0.8450884 +125.60944700241089,0.08,0.0,0.0,0.0,0.8469385 +125.61947512626648,0.089999996,0.0,0.0,0.0,0.8469385 +125.62946105003357,0.089999996,0.0,0.0,0.0,0.8469385 +125.64223003387451,0.099999994,0.0,0.0,0.0,0.8469385 +125.6522319316864,0.11,0.75757575,0.75757575,0.0,0.8469385 +125.66220998764038,0.12,0.75757575,0.75757575,0.0,0.8321382 +125.67201805114746,0.12,0.75757575,0.75757575,0.0,0.8321382 +125.6805830001831,0.13,0.75757575,0.75757575,0.0,0.8321382 +125.68997192382812,0.13,1.5151515,1.5151515,0.0,0.8321382 +125.6994891166687,0.14,1.5151515,1.5151515,0.0,0.8321382 +125.70950293540955,0.14999999,1.5151515,1.5151515,0.009372071,0.7618363 +125.71950602531433,0.16,1.5151515,1.5151515,0.009372071,0.7618363 +125.72946810722351,0.17,1.5151515,1.5151515,0.009372071,0.7618363 +125.74220705032349,0.17999999,1.5151515,1.5151515,0.009372071,0.7618363 +125.75219392776489,0.17999999,1.5151515,1.5151515,0.009372071,0.7618363 +125.75998497009277,0.19,1.5151515,1.5151515,0.009372071,0.7729366 +125.7706789970398,0.19999999,1.5151515,1.5151515,0.018744143,0.7729366 +125.77957701683044,0.21,2.2727273,2.2727273,0.018744143,0.7729366 +125.78950214385986,0.22,1.5151515,1.5151515,0.018744143,0.7729366 +125.79951691627502,0.22,1.5151515,1.5151515,0.009372071,0.7729366 +125.80949997901917,0.22999999,1.5151515,1.5151515,0.009372071,0.7729366 +125.81952691078186,0.24,1.5151515,1.5151515,0.009372071,0.7618363 +125.82948613166809,0.25,1.5151515,1.5151515,0.009372071,0.7618363 +125.8419349193573,0.26,1.5151515,1.5151515,0.009372071,0.7618363 +125.84999012947083,0.26,1.5151515,1.5151515,0.009372071,0.7618363 +125.85976791381836,0.26999998,1.5151515,1.5151515,0.009372071,0.66193354 +125.8704309463501,0.28,1.5151515,1.5151515,0.009372071,0.66193354 +125.8795211315155,0.29,1.5151515,1.5151515,0.0,0.66193354 +125.88948202133179,0.29999998,1.5151515,1.5151515,0.0,0.66193354 +125.89952611923218,0.31,2.2727273,2.2727273,0.009372071,0.66193354 +125.90961694717407,0.32,1.5151515,1.5151515,0.018744143,0.64343315 +125.91956305503845,0.32999998,1.5151515,1.5151515,0.018744143,0.64343315 +125.9294810295105,0.32999998,1.5151515,1.5151515,0.009372071,0.64343315 +125.9396710395813,0.34,1.5151515,1.5151515,0.009372071,0.64343315 +125.94941902160645,0.35,0.75757575,0.75757575,0.009372071,0.64343315 +125.95941305160522,0.35999998,0.75757575,0.75757575,0.009372071,0.639733 +125.96963906288147,0.35999998,0.75757575,0.75757575,0.009372071,0.639733 +125.97944712638855,0.37,0.75757575,0.75757575,0.018744143,0.639733 +125.98950910568237,0.38,0.75757575,0.75757575,0.018744143,0.639733 +126.00220608711243,0.38,0.0,0.0,0.009372071,0.639733 +126.00960493087769,0.38,0.0,0.0,0.009372071,0.6286328 +126.01953792572021,0.39999998,0.0,0.0,0.009372071,0.6286328 +126.0295341014862,0.39999998,0.0,0.0,0.009372071,0.6286328 +126.04179811477661,0.41,0.0,0.0,0.009372071,0.6286328 +126.04954195022583,0.42,0.0,0.0,0.0,0.6286328 +126.05978393554688,0.42999998,0.0,0.0,0.0,0.61938244 +126.06958413124084,0.44,0.0,0.0,0.0,0.61938244 +126.0796730518341,0.45,0.0,0.0,0.0,0.61938244 +126.08945894241333,0.45,0.0,0.0,0.0,0.61938244 +126.10030913352966,0.45999998,0.0,0.0,0.0,0.61938244 +126.10953497886658,0.45999998,0.0,0.0,0.0,0.61938244 +126.11956191062927,0.47,0.0,0.0,0.0,0.60273206 +126.12950706481934,0.47,0.0,0.0,0.0,0.60273206 +126.13954997062683,0.48,0.0,0.0,0.0,0.60273206 +126.14969301223755,0.48,0.0,0.0,0.0,0.60273206 +126.15952706336975,0.48,0.0,0.0,0.0,0.61938244 +126.16977310180664,0.48999998,0.0,0.0,0.0,0.61938244 +126.180340051651,0.48999998,0.0,0.0,0.0,0.61938244 +126.18953609466553,0.48999998,0.0,0.0,0.0,0.61938244 +126.2021701335907,0.5,0.0,0.0,0.0,0.61938244 +126.20960903167725,0.5,0.0,0.0,0.0,0.5916317 +126.21952414512634,0.51,0.0,0.0,0.0,0.5916317 +126.22952008247375,0.51,0.0,0.0,0.0,0.5916317 +126.23962306976318,0.51,0.0,0.0,0.0,0.5916317 +126.24955010414124,0.52,0.0,0.0,0.0,0.5916317 +126.25988793373108,0.52,0.0,0.0,0.0,0.6138323 +126.26946091651917,0.52,0.0,0.0,0.0,0.6138323 +126.28172898292542,0.52,0.0,0.0,0.0,0.6138323 +126.29002594947815,0.53,0.0,0.0,0.0,0.6138323 +126.30059313774109,0.53,0.0,0.0,0.0,0.6138323 +126.30945301055908,0.53,0.0,0.0,0.0,0.6138323 +126.32052397727966,0.53,0.0,0.0,0.0,0.6082822 +126.32955408096313,0.53,0.0,0.0,0.0,0.6082822 +126.33957099914551,0.53999996,0.0,0.0,0.0,0.6082822 +126.34972310066223,0.53999996,0.0,0.0,0.0,0.6082822 +126.35956406593323,0.53999996,0.0,0.0,0.0,0.5694312 +126.3711371421814,0.53999996,0.0,0.0,0.0,0.5694312 +126.37950706481934,0.53999996,0.0,0.0,0.0,0.5694312 +126.39005303382874,0.53999996,0.0,0.0,0.0,0.5694312 +126.40146493911743,0.53999996,0.0,0.0,0.0,0.5694312 +126.41045713424683,0.53999996,0.0,0.0,0.0,0.5971819 +126.41957306861877,0.53999996,0.0,0.0,0.0,0.5971819 +126.4295129776001,0.55,0.0,0.0,0.0,0.5971819 +126.439523935318,0.55,0.0,0.0,0.0,0.5971819 +126.44955492019653,0.55,0.0,0.0,0.0,0.5971819 +126.46216702461243,0.55,0.0,0.0,0.0,0.49912927 +126.47210693359375,0.55,0.0,0.0,0.0,0.49912927 +126.47946810722351,0.55,0.0,0.0,0.0,0.49912927 +126.49004912376404,0.55,0.0,0.0,0.0,0.49912927 +126.49958610534668,0.55,0.0,0.0,0.0,0.49912927 +126.50955295562744,0.55,0.0,0.0,0.0,0.35112536 +126.5195689201355,0.55,0.0,0.0,0.0,0.35112536 +126.52949500083923,0.55,0.0,0.0,0.0,0.35112536 +126.53957295417786,0.55,0.0,0.0,0.0,0.35112536 +126.55215501785278,0.55,0.0,0.0,0.0,0.35112536 +126.56213998794556,0.56,0.0,0.0,0.0,0.3603756 +126.57117509841919,0.56,0.0,0.0,0.0,0.3603756 +126.58125805854797,0.56,0.0,0.0,0.0,0.3603756 +126.59006595611572,0.56,0.0,0.0,0.0,0.3603756 +126.59956812858582,0.56,0.0,0.0,0.0,0.3603756 +126.60951805114746,0.56,0.0,0.0,0.0,0.36407572 +126.61958408355713,0.56,0.0,0.0,0.0,0.36407572 +126.62956500053406,0.56,0.0,0.0,0.0,0.36407572 +126.64213299751282,0.56,0.0,0.0,0.0,0.36407572 +126.64980697631836,0.56,0.0,0.0,0.0,0.36407572 +126.66155791282654,0.55,0.0,0.0,0.0,0.3233746 +126.67046093940735,0.55,0.0,0.0,0.0,0.3233746 +126.67958307266235,0.55,0.0,0.0,0.0,0.3233746 +126.6895899772644,0.55,0.0,0.0,0.0,0.3233746 +126.69959807395935,0.55,0.0,0.0,0.0,0.3233746 +126.70958304405212,0.55,0.0,0.0,0.0,0.19942135 +126.71960401535034,0.55,0.0,0.0,0.0,0.19942135 +126.72955298423767,0.55,0.0,0.0,0.0,0.19942135 +126.73958802223206,0.55,0.0,0.0,0.0,0.19942135 +126.75060701370239,0.55,0.0,0.0,0.0,0.19942135 +126.75960612297058,0.56,0.0,0.0,0.0,0.18092082 +126.77003192901611,0.55,0.0,0.0,0.0,0.18092082 +126.77957701683044,0.55,0.0,0.0,0.0,0.18092082 +126.79008913040161,0.55,0.0,0.0,0.0,0.18092082 +126.79959607124329,0.55,0.0,0.0,0.0,0.18092082 +126.80962800979614,0.55,0.0,0.0,0.0,0.16982053 +126.81961107254028,0.55,0.0,0.0,0.0,0.16982053 +126.82955002784729,0.55,0.0,0.0,0.0,0.16982053 +126.83964800834656,0.55,0.0,0.0,0.0,0.16982053 +126.84960699081421,0.55,0.0,0.0,0.0,0.16982053 +126.85991501808167,0.55,0.0,0.0,0.0,0.1716706 +126.86948609352112,0.55,0.0,0.0,0.0,0.1716706 +126.87938809394836,0.55,0.0,0.0,0.0,0.1716706 +126.88939213752747,0.55,0.0,0.0,0.0,0.1716706 +126.89979600906372,0.55,0.0,0.0,0.0,0.1716706 +126.90949702262878,0.55,0.0,0.0,0.0,0.1716706 +126.91962695121765,0.55,0.0,0.0,0.0,0.14947 +126.92952394485474,0.55,0.0,0.0,0.0,0.14947 +126.94082808494568,0.55,0.0,0.0,0.0,0.14947 +126.94982504844666,0.55,0.0,0.0,0.0,0.14947 +126.95938992500305,0.56,0.0,0.0,0.0,0.12356931 +126.96940612792969,0.56,0.0,0.0,0.0,0.12356931 +126.97994804382324,0.56,0.0,0.0,0.0,0.12356931 +126.98954606056213,0.56,0.0,0.0,0.0,0.12356931 +126.99954605102539,0.56,0.0,0.0,0.0,0.12356931 +127.00942611694336,0.56,0.0,0.0,0.0,0.12356931 +127.01938891410828,0.56,0.0,0.0,0.0,0.11986922 +127.02941107749939,0.55,0.0,0.0,0.0,0.11986922 +127.03974413871765,0.55,0.0,0.0,0.0,0.11986922 +127.04940700531006,0.53999996,0.0,0.0,0.0,0.11986922 +127.05940008163452,0.53999996,0.0,0.0,0.0,0.09766865 +127.0693941116333,0.53999996,0.0,0.0,0.0,0.09766865 +127.07960200309753,0.53999996,0.0,0.0,0.0,0.09766865 +127.08955907821655,0.53999996,0.0,0.0,0.0,0.09766865 +127.09939002990723,0.53999996,0.0,0.0,0.0,0.09766865 +127.10948491096497,0.53999996,0.0,0.0,0.0,0.09766865 +127.11943006515503,0.53999996,0.0,0.0,0.0,0.12541938 +127.12940406799316,0.53999996,0.0,0.0,0.0,0.12541938 +127.13941693305969,0.53999996,0.0,0.0,0.0,0.12541938 +127.14941191673279,0.53999996,0.0,0.0,0.0,0.12541938 +127.15940308570862,0.53,0.0,0.0,0.0,0.11986922 +127.16941094398499,0.53,0.0,0.0,0.0,0.11986922 +127.1793999671936,0.52,0.0,0.0,0.0,0.11986922 +127.18939709663391,0.52,0.0,0.0,0.0,0.11986922 +127.19939398765564,0.51,0.0,0.0,0.0,0.11986922 +127.20941114425659,0.51,0.0,0.0,0.0,0.11986922 +127.21941494941711,0.51,0.0,0.0,0.0,0.09766865 +127.22939896583557,0.51,0.0,0.0,0.0,0.09766865 +127.23940396308899,0.51,0.0,0.0,0.0,0.09766865 +127.24941492080688,0.51,0.0,0.0,0.0,0.09766865 +127.25941491127014,0.51,0.0,0.0,0.0,0.10691887 +127.26941299438477,0.51,0.0,0.0,0.0,0.10691887 +127.2794280052185,0.51,0.0,0.0,0.0,0.10691887 +127.28943204879761,0.51,0.0,0.0,0.0,0.10691887 +127.29943203926086,0.51,0.0,0.0,0.0,0.10691887 +127.3094129562378,0.51,0.0,0.0,0.0,0.10691887 +127.31939506530762,0.51,0.0,0.0,0.0,0.09766865 +127.32941913604736,0.51,0.0,0.0,0.0,0.09766865 +127.33941602706909,0.51,0.0,0.0,0.0,0.09766865 +127.34941792488098,0.51,0.0,0.0,0.0,0.09766865 +127.35941910743713,0.5,0.0,0.0,0.0,0.12356931 +127.36959409713745,0.5,0.0,0.0,0.0,0.12356931 +127.37942910194397,0.5,0.0,0.0,0.0,0.12356931 +127.38940906524658,0.5,0.0,0.0,0.0,0.12356931 +127.39941811561584,0.5,0.0,0.0,0.0,0.12356931 +127.40944314002991,0.5,0.0,0.0,0.0,0.09766865 +127.41941809654236,0.5,0.0,0.0,0.0,0.09766865 +127.42943906784058,0.5,0.0,0.0,0.0,0.09766865 +127.439453125,0.51,0.0,0.0,0.0,0.09766865 +127.44951891899109,0.51,0.0,0.0,0.0,0.09766865 +127.45941305160522,0.51,0.0,0.0,0.0,0.09951867 +127.46943497657776,0.51,0.0,0.0,0.0,0.09951867 +127.4794270992279,0.51,0.0,0.0,0.0,0.09951867 +127.48943495750427,0.51,0.0,0.0,0.0,0.09951867 +127.49942398071289,0.51,0.0,0.0,0.0,0.09951867 +127.50942897796631,0.51,0.0,0.0,0.0,0.09766865 +127.5194480419159,0.51,0.0,0.0,0.0,0.09766865 +127.52944493293762,0.51,0.0,0.0,0.0,0.09766865 +127.53943705558777,0.51,0.0,0.0,0.0,0.09766865 +127.54948496818542,0.51,0.0,0.0,0.0,0.09766865 +127.55942702293396,0.51,0.0,0.0,0.0,0.08101819 +127.56944799423218,0.51,0.0,0.0,0.0,0.08101819 +127.57957291603088,0.51,0.0,0.0,0.0,0.08101819 +127.58946108818054,0.51,0.0,0.0,0.0,0.08101819 +127.59944605827332,0.51,0.0,0.0,0.0,0.08101819 +127.6094319820404,0.5,0.0,0.0,0.0,0.07546805 +127.61947107315063,0.5,0.0,0.0,0.0,0.07546805 +127.62943601608276,0.5,0.0,0.0,0.0,0.07546805 +127.63944101333618,0.5,0.0,0.0,0.0,0.07546805 +127.64945006370544,0.5,0.0,0.0,0.0,0.07546805 +127.65944600105286,0.5,0.0,0.0,0.0,0.049567357 +127.66946291923523,0.51,0.0,0.0,0.0,0.049567357 +127.67945003509521,0.51,0.0,0.0,0.0,0.049567357 +127.68947505950928,0.51,0.0,0.0,0.0,0.049567357 +127.69946694374084,0.51,0.0,0.0,0.0,0.049567357 +127.70944309234619,0.51,0.0,0.0,0.0,0.08101819 +127.71945095062256,0.51,0.0,0.0,0.0,0.08101819 +127.72948098182678,0.51,0.0,0.0,0.0,0.08101819 +127.73944807052612,0.51,0.0,0.0,0.0,0.08101819 +127.74946808815002,0.51,0.0,0.0,0.0,0.08101819 +127.75947213172913,0.52,0.0,0.0,0.0,0.0551175 +127.76947498321533,0.52,0.0,0.0,0.0,0.0551175 +127.77947092056274,0.52,0.0,0.0,0.0,0.0551175 +127.78945708274841,0.52,0.0,0.0,0.0,0.0551175 +127.7994499206543,0.52,0.0,0.0,0.0,0.0551175 +127.8094699382782,0.52,0.0,0.0,0.0,0.0551175 +127.81958603858948,0.52,0.0,0.0,0.0,0.049567357 +127.82946300506592,0.52,0.0,0.0,0.0,0.049567357 +127.83945894241333,0.52,0.0,0.0,0.0,0.049567357 +127.84964203834534,0.53,0.0,0.0,0.0,0.049567357 +127.85949206352234,0.53,0.0,0.0,0.0,0.023666665 +127.8694839477539,0.53,0.0,0.0,0.0,0.023666665 +127.87942790985107,0.53999996,0.0,0.0,0.0,0.023666665 +127.88947892189026,0.53999996,0.0,0.0,0.0,0.023666665 +127.89946293830872,0.53999996,0.0,0.0,0.0,0.023666665 +127.90938806533813,0.55,0.0,0.0,0.0,0.023666665 +127.91946506500244,0.55,0.0,0.0,0.0,0.034766953 +127.92948794364929,0.55,0.0,0.0,0.0,0.034766953 +127.93957996368408,0.55,0.0,0.0,0.0,0.034766953 +127.94948101043701,0.56,0.0,0.0,0.0,0.034766953 +127.95948696136475,0.56,0.0,0.0,0.0,0.032916907 +127.9694709777832,0.56,0.0,0.0,0.0,0.032916907 +127.97948694229126,0.56,0.0,0.0,0.0,0.032916907 +127.98948907852173,0.56,0.0,0.0,0.0,0.032916907 +127.99948310852051,0.56,0.0,0.0,0.0,0.032916907 +128.00947904586792,0.56,0.0,0.0,0.0,0.032916907 +128.01949191093445,0.56,0.0,0.0,0.0,0.038467064 +128.02950501441956,0.56,0.0,0.0,0.0,0.038467064 +128.03949093818665,0.56,0.0,0.0,0.0,0.038467064 +128.0495159626007,0.57,0.0,0.0,0.0,0.038467064 +128.05949211120605,0.57,0.0,0.0,0.0,0.038467064 +128.06955194473267,0.57,0.0,0.0,0.0,0.038467064 +128.0794939994812,0.57,0.0,0.0,0.0,0.038467064 +128.0894899368286,0.57,0.0,0.0,0.0,0.038467064 +128.0994999408722,0.58,0.0,0.0,0.0,0.038467064 +128.1094949245453,0.58,0.0,0.0,0.0,0.038467064 +128.11951112747192,0.58,0.0,0.0,0.0,0.04031712 +128.12949395179749,0.58,0.0,0.0,0.0,0.04031712 +128.1395001411438,0.58,0.0,0.0,0.0,0.04031712 +128.14951610565186,0.58,0.0,0.0,0.0,0.04031712 +128.15950512886047,0.59,0.0,0.0,0.0,0.032916907 +128.169508934021,0.59,0.0,0.0,0.0,0.032916907 +128.17949104309082,0.59,0.0,0.0,0.0,0.032916907 +128.18949794769287,0.59,0.0,0.0,0.0,0.032916907 +128.19951105117798,0.59,0.0,0.0,0.0,0.032916907 +128.20950293540955,0.59,0.0,0.0,0.0,0.032916907 +128.21949100494385,0.59,0.0,0.0,0.0,0.038467064 +128.22950911521912,0.59,0.0,0.0,0.0,0.038467064 +128.23949813842773,0.59,0.0,0.0,0.0,0.038467064 +128.2495150566101,0.59999996,0.0,0.0,0.0,0.038467064 +128.25962901115417,0.59999996,0.0,0.0,0.0,0.051417407 +128.26951813697815,0.59999996,0.0,0.0,0.0,0.051417407 +128.2795009613037,0.59999996,0.0,0.0,0.0,0.051417407 +128.28950810432434,0.59999996,0.0,0.0,0.0,0.051417407 +128.29952812194824,0.61,0.0,0.0,0.0,0.051417407 +128.30950593948364,0.61,0.0,0.0,0.0,0.051417407 +128.31952905654907,0.62,0.0,0.0,0.0,0.04031712 +128.32950711250305,0.62,0.0,0.0,0.0,0.04031712 +128.33954310417175,0.62,0.0,0.0,0.0,0.04031712 +128.34950494766235,0.63,0.0,0.0,0.0,0.04031712 +128.3595209121704,0.63,0.0,0.0,0.0,0.031066857 +128.36953210830688,0.64,0.0,0.0,0.0,0.031066857 +128.37951111793518,0.64,0.0,0.0,0.0,0.031066857 +128.38950991630554,0.64,0.0,0.0,0.0,0.031066857 +128.3995349407196,0.65,0.0,0.0,0.0,0.031066857 +128.4096019268036,0.65,0.0,0.0,0.0,0.023666665 +128.419527053833,0.65,0.0,0.0,0.0,0.023666665 +128.42943000793457,0.65999997,0.0,0.0,0.0,0.023666665 +128.43954396247864,0.65999997,0.0,0.0,0.0,0.023666665 +128.44953298568726,0.65999997,0.0,0.0,0.0,0.023666665 +128.45941710472107,0.66999996,0.0,0.0,0.0,0.02921681 +128.46953511238098,0.66999996,0.0,0.0,0.0,0.02921681 +128.4795401096344,0.66999996,0.0,0.0,0.0,0.02921681 +128.48953413963318,0.68,0.0,0.0,0.0,0.02921681 +128.49955797195435,0.68,0.0,0.0,0.0,0.02921681 +128.5095510482788,0.68,0.0,0.0,0.0,0.031066857 +128.5195550918579,0.69,0.0,0.0,0.0,0.031066857 +128.5295329093933,0.69,0.0,0.0,0.0,0.031066857 +128.53952813148499,0.7,0.0,0.0,0.0,0.031066857 +128.5495319366455,0.71,0.0,0.0,0.0,0.031066857 +128.55958104133606,0.71999997,0.0,0.0,0.0,0.023666665 +128.56954407691956,0.72999996,0.0,0.0,0.0,0.023666665 +128.57954001426697,0.72999996,0.0,0.0,0.0,0.023666665 +128.58953309059143,0.74,0.0,0.0,0.0,0.023666665 +128.59955310821533,0.75,0.0,0.0,0.0,0.023666665 +128.60956501960754,0.76,0.0,0.0,0.0,0.02921681 +128.61956095695496,0.77,0.0,0.0,0.0,0.02921681 +128.62954998016357,0.78,0.0,0.0,0.0,0.02921681 +128.63946509361267,0.78999996,0.0,0.0,0.0,0.02921681 +128.64955592155457,0.79999995,0.0,0.0,0.0,0.02921681 +128.65956592559814,0.81,0.0,0.0,0.0,0.0014660703 +128.66956090927124,0.82,0.0,0.0,0.0,0.0014660703 +128.67956805229187,0.83,0.0,0.0,0.0,0.0014660703 +128.6894941329956,0.84,0.0,0.0,0.0,0.0014660703 +128.69954895973206,0.84999996,0.0,0.0,0.0,0.0014660703 +128.70954704284668,0.84999996,0.0,0.0,0.0,0.031066857 +128.7195589542389,0.85999995,0.0,0.0,0.0,0.031066857 +128.72956013679504,0.87,0.0,0.0,0.0,0.031066857 +128.7395520210266,0.87,0.0,0.0,0.0,0.031066857 +128.74956011772156,0.88,0.0,0.0,0.0,0.031066857 +128.75957012176514,0.88,0.0,0.0,0.0,0.01811652 +128.76959204673767,0.89,0.0,0.0,0.0,0.01811652 +128.7795751094818,0.89,0.0,0.0,0.0,0.01811652 +128.78957390785217,0.9,0.0,0.0,0.0,0.01811652 +128.79956007003784,0.9,0.0,0.0,0.0,0.01811652 +128.80958008766174,0.90999997,0.0,0.0,0.0,0.01811652 +128.819589138031,0.90999997,0.0,0.0,0.0,0.012566376 +128.82956194877625,0.91999996,0.0,0.0,0.0,0.012566376 +128.83956098556519,0.91999996,0.0,0.0,0.0,0.012566376 +128.84957003593445,0.91999996,0.0,0.0,0.0,0.012566376 +128.85958409309387,0.93,0.0,0.0,0.0,-0.0040840744 +128.86954808235168,0.93,0.0,0.0,0.0,-0.0040840744 +128.87956309318542,0.93,0.0,0.0,0.0,-0.0040840744 +128.889573097229,0.94,0.0,0.0,0.0,-0.0040840744 +128.89956903457642,0.94,0.0,0.0,0.0,-0.0040840744 +128.90946912765503,0.94,0.0,0.0,0.0,-0.0040840744 +128.91940593719482,0.94,0.0,0.0,0.0,0.010716328 +128.92955899238586,0.95,0.0,0.0,0.0,0.010716328 +128.93955612182617,0.95,0.0,0.0,0.0,0.010716328 +128.94959092140198,0.95,0.0,0.0,0.0,0.010716328 +128.95955801010132,0.95,0.0,0.0,0.0,0.0033161184 +128.96957111358643,0.95,0.0,0.0,0.0,0.0033161184 +128.9795651435852,0.95,0.0,0.0,0.0,0.0033161184 +128.98956608772278,0.95,0.0,0.0,0.0,0.0033161184 +128.9995949268341,0.96,0.0,0.0,0.0,0.0033161184 +129.00964212417603,0.96,0.0,0.0,0.0,0.0033161184 +129.01948404312134,0.96,0.0,0.0,0.0,0.0033161184 +129.02956199645996,0.96,0.0,0.0,0.0,0.0033161184 +129.03957295417786,0.96,0.0,0.0,0.0,0.0033161184 +129.04959392547607,0.96,0.0,0.0,0.0,0.0033161184 +129.05944299697876,0.96,0.0,0.0,0.0,0.010716328 +129.06957602500916,0.96,0.0,0.0,0.0,0.010716328 +129.07959008216858,0.96,0.0,0.0,0.0,0.010716328 +129.08964896202087,0.96,0.0,0.0,0.0,0.010716328 +129.09959197044373,0.96,0.0,0.0,0.0,0.010716328 +129.109601020813,0.96999997,0.0,0.0,0.0,0.010716328 +129.11959791183472,0.96999997,0.0,0.0,0.0,0.031066857 +129.12945294380188,0.96999997,0.0,0.0,0.0,0.031066857 +129.1396050453186,0.96999997,0.0,0.0,0.0,0.031066857 +129.14944696426392,0.96999997,0.0,0.0,0.0,0.031066857 +129.15957903862,0.96999997,0.0,0.0,0.0,-0.013334316 +129.16959500312805,0.96999997,0.0,0.0,0.0,-0.013334316 +129.17941093444824,0.96999997,0.0,0.0,0.0,-0.013334316 +129.18961691856384,0.96999997,0.0,0.0,0.0,-0.013334316 +129.19959902763367,0.96999997,0.0,0.0,0.0,-0.013334316 +129.20959210395813,0.96999997,0.0,0.0,0.0,-0.013334316 +129.2196180820465,0.96999997,0.0,0.0,0.0,0.014416425 +129.22960209846497,0.96999997,0.0,0.0,0.0,0.014416425 +129.23945307731628,0.96999997,0.0,0.0,0.0,0.014416425 +129.24960112571716,0.97999996,0.0,0.0,0.0,0.014416425 +129.2595989704132,0.97999996,0.0,0.0,0.0,0.010716328 +129.26948404312134,0.97999996,0.0,0.0,0.0,0.010716328 +129.27960300445557,0.97999996,0.0,0.0,0.0,0.010716328 +129.28960990905762,0.97999996,0.0,0.0,0.0,0.010716328 +129.29961395263672,0.97999996,0.0,0.0,0.0,0.010716328 +129.3096160888672,0.97999996,0.0,0.0,0.0,0.010716328 +129.31959891319275,0.97999996,0.0,0.0,0.0,0.10876893 +129.32947611808777,0.97999996,0.0,0.0,0.0,0.10876893 +129.33962297439575,0.97999996,0.0,0.0,0.0,0.10876893 +129.3496310710907,0.97999996,0.0,0.0,0.0,0.10876893 +129.35953497886658,0.97999996,0.0,0.0,0.0,-0.002234026 +129.36963891983032,0.97999996,0.0,0.0,0.0,-0.002234026 +129.37965393066406,0.97999996,0.0,0.0,0.0,-0.002234026 +129.38960695266724,0.97999996,0.0,0.0,0.0,-0.002234026 +129.39961409568787,0.97999996,0.0,0.0,0.0,-0.002234026 +129.40960812568665,0.97999996,0.0,0.0,0.0,0.008866279 +129.41963005065918,0.97999996,0.0,0.0,0.0,0.008866279 +129.42960500717163,0.97999996,0.0,0.0,0.0,0.008866279 +129.4396300315857,0.97999996,0.0,0.0,0.0,0.008866279 +129.4495620727539,0.97999996,0.0,0.0,0.0,0.008866279 +129.45962500572205,0.97999996,0.0,0.0,0.0,0.0033161184 +129.46963691711426,0.97999996,0.0,0.0,0.0,0.0033161184 +129.47963094711304,0.97999996,0.0,0.0,0.0,0.0033161184 +129.48962211608887,0.97999996,0.0,0.0,0.0,0.0033161184 +129.49963092803955,0.97999996,0.0,0.0,0.0,0.0033161184 +129.50962591171265,0.97999996,0.0,0.0,0.0,0.008866279 +129.51962304115295,0.97999996,0.0,0.0,0.0,0.008866279 +129.52964997291565,0.97999996,0.0,0.0,0.0,0.008866279 +129.5396499633789,0.97999996,0.0,0.0,0.0,0.008866279 +129.54961800575256,0.97999996,0.0,0.0,0.0,0.008866279 +129.55964398384094,0.97999996,0.0,0.0,0.0,0.01811652 +129.56961798667908,0.97999996,0.0,0.0,0.0,0.01811652 +129.57963109016418,0.97999996,0.0,0.0,0.0,0.01811652 +129.58964896202087,0.97999996,0.0,0.0,0.0,0.01811652 +129.59964299201965,0.97999996,0.0,0.0,0.0,0.01811652 +129.60964798927307,0.97999996,0.0,0.0,0.0,0.014416425 +129.61947393417358,0.97999996,0.0,0.0,0.0,0.014416425 +129.6296410560608,0.97999996,0.0,0.0,0.0,0.014416425 +129.63965511322021,0.97999996,0.0,0.0,0.0,0.014416425 +129.64963102340698,0.97999996,0.0,0.0,0.0,0.014416425 +129.65964913368225,0.97999996,0.0,0.0,0.0,0.019966569 +129.6696310043335,0.97999996,0.0,0.0,0.0,0.019966569 +129.67949104309082,0.97999996,0.0,0.0,0.0,0.019966569 +129.68962502479553,0.97999996,0.0,0.0,0.0,0.019966569 +129.69965291023254,0.97999996,0.0,0.0,0.0,0.019966569 +129.7096540927887,0.96999997,0.0,0.0,0.0,0.014416425 +129.71965098381042,0.96999997,0.0,0.0,0.0,0.014416425 +129.72964310646057,0.96999997,0.0,0.0,0.0,0.014416425 +129.73964500427246,0.96,0.0,0.0,0.0,0.014416425 +129.74964594841003,0.96,0.0,0.0,0.0,0.014416425 +129.75966501235962,0.96,0.0,0.0,0.0,-0.0040840744 +129.7694571018219,0.96,0.0,0.0,0.0,-0.0040840744 +129.77963614463806,0.96,0.0,0.0,0.0,-0.0040840744 +129.7896649837494,0.96,0.0,0.0,0.0,-0.0040840744 +129.79966711997986,0.96,0.0,0.0,0.0,-0.0040840744 +129.80967211723328,0.96,0.0,0.0,0.0,-0.0040840744 +129.81966304779053,0.96,0.0,0.0,0.0,-0.041085053 +129.82969903945923,0.96,0.0,0.0,0.0,-0.041085053 +129.83944511413574,0.96,0.0,0.0,0.0,-0.041085053 +129.84966206550598,0.96,0.0,0.0,0.0,-0.041085053 +129.8594880104065,0.96,0.0,0.0,0.0,0.02921681 +129.86966514587402,0.96,0.0,0.0,0.0,0.02921681 +129.87967014312744,0.95,0.0,0.0,0.0,0.02921681 +129.8896520137787,0.95,0.0,0.0,0.0,0.02921681 +129.89966797828674,0.94,0.0,0.0,0.0,0.02921681 +129.90965104103088,0.93,0.0,0.0,0.0,0.02921681 +129.9196469783783,0.91999996,0.0,0.0,0.0,0.032916907 +129.9296600818634,0.90999997,0.0,0.0,0.0,0.032916907 +129.9393880367279,0.89,0.0,0.0,0.0,0.032916907 +129.9496591091156,0.87,0.0,0.0,0.0,0.032916907 +129.9596619606018,0.84999996,0.0,0.0,0.0,0.02921681 +129.96938800811768,0.83,0.0,0.0,0.0,0.02921681 +129.97939109802246,0.81,0.0,0.0,0.0,0.02921681 +129.98968291282654,0.78999996,0.0,0.0,0.0,0.02921681 +129.99939107894897,0.76,0.0,0.0,0.0,0.02921681 +130.0093970298767,0.74,0.0,0.0,0.0,0.02921681 +130.01967191696167,0.71999997,0.0,0.0,0.0,0.02921681 +130.0296709537506,0.7,0.0,0.0,0.0,0.02921681 +130.03970003128052,0.66999996,0.0,0.0,0.0,0.02921681 +130.0493929386139,0.65,0.0,0.0,0.0,0.02921681 +130.05938911437988,0.63,0.0,0.0,0.0,0.014416425 +130.0696759223938,0.61,0.0,0.0,0.0,0.014416425 +130.07959413528442,0.58,0.0,0.0,0.0,0.014416425 +130.08939814567566,0.55,0.0,0.0,0.0,0.014416425 +130.0994050502777,0.52,0.0,0.0,0.0,0.014416425 +130.10950112342834,0.5,0.0,0.0,0.0,0.014416425 +130.11957693099976,0.47,0.0,0.0,0.0,0.008866279 +130.12940096855164,0.44,0.0,0.0,0.0,0.008866279 +130.13939714431763,0.42,0.0,0.0,0.0,0.008866279 +130.149395942688,0.39999998,0.0,0.0,0.0,0.008866279 +130.15940403938293,0.38,0.0,0.0,0.0,-0.011484267 +130.16955494880676,0.35999998,0.0,0.0,0.0,-0.011484267 +130.17968106269836,0.34,0.75757575,0.75757575,0.0,-0.011484267 +130.18940496444702,0.32999998,2.2727273,2.2727273,0.0,-0.011484267 +130.19940900802612,0.31,3.787879,3.787879,0.0,-0.011484267 +130.20946097373962,0.29,4.5454545,4.5454545,0.0,-0.011484267 +130.21940302848816,0.28,6.060606,6.060606,0.0,-0.020734508 +130.2293939590454,0.26,6.818182,6.818182,0.0,-0.020734508 +130.23939609527588,0.25,8.333334,8.333334,0.0,-0.020734508 +130.24947214126587,0.22999999,10.606061,10.606061,0.0,-0.020734508 +130.25948405265808,0.22,12.121212,12.121212,0.0,-0.011484267 +130.2694070339203,0.21,12.878788,12.878788,0.0,-0.011484267 +130.27940607070923,0.19999999,15.151516,15.151516,0.0,-0.011484267 +130.2894160747528,0.19,16.666668,16.666668,0.0,-0.011484267 +130.29951190948486,0.17,18.939394,18.939394,0.009372071,-0.011484267 +130.30942511558533,0.16,20.454544,20.454544,0.018744143,-0.011484267 +130.31940698623657,0.14999999,21.212122,21.212122,0.028116215,-0.026284654 +130.32959699630737,0.14,22.727274,22.727274,0.028116215,-0.026284654 +130.33941411972046,0.13,24.242424,24.242424,0.037488285,-0.026284654 +130.34944105148315,0.12,25.757576,25.757576,0.046860356,-0.026284654 +130.35955691337585,0.11,27.272728,27.272728,0.05623243,-0.00038397792 +130.36944103240967,0.099999994,30.303032,30.303032,0.05623243,-0.00038397792 +130.37957906723022,0.089999996,34.848484,34.848484,0.07497657,-0.00038397792 +130.38942193984985,0.08,39.39394,39.39394,0.08434864,-0.00038397792 +130.39941596984863,0.07,44.696968,44.696968,0.08434864,-0.00038397792 +130.4094169139862,0.06,48.484848,48.484848,0.09372071,-0.015184363 +130.41942310333252,0.06,54.545456,54.545456,0.10309278,-0.015184363 +130.4295949935913,0.049999997,60.606064,60.606064,0.11246486,-0.015184363 +130.43945002555847,0.04,67.42425,67.42425,0.131209,-0.015184363 +130.44941997528076,0.04,60.606064,60.606064,0.131209,-0.015184363 +130.45942401885986,0.03,47.727272,47.727272,0.14995314,-0.0040840744 +130.4694299697876,0.03,40.151516,40.151516,0.15932521,-0.0040840744 +130.47942399978638,0.02,36.363636,36.363636,0.17806935,-0.0040840744 +130.48943710327148,0.02,33.333336,33.333336,0.18744142,-0.0040840744 +130.49943113327026,0.01,31.060606,31.060606,0.1968135,-0.0040840744 +130.5096459388733,0.01,30.303032,30.303032,0.21555763,-0.0040840744 +130.51964807510376,0.01,30.303032,30.303032,0.21555763,-0.0040840744 +130.52960991859436,0.0,31.818182,31.818182,0.22492972,-0.0040840744 +130.53942894935608,0.0,32.575756,32.575756,0.23430179,-0.0040840744 +130.5494420528412,0.0,32.575756,32.575756,0.23430179,-0.0040840744 +130.55943703651428,0.0,34.09091,34.09091,0.24367386,-0.022584556 +130.5696201324463,0.0,36.363636,36.363636,0.24367386,-0.022584556 +130.57945203781128,0.0,37.878788,37.878788,0.25304592,-0.022584556 +130.58944606781006,0.0,38.636364,38.636364,0.262418,-0.022584556 +130.59939193725586,0.0,39.39394,39.39394,0.262418,-0.022584556 +130.6094470024109,0.0,40.90909,40.90909,0.262418,-0.03553491 +130.61943912506104,0.0,43.181816,43.181816,0.25304592,-0.03553491 +130.62942790985107,0.0,45.454548,45.454548,0.262418,-0.03553491 +130.6396210193634,0.0,46.21212,46.21212,0.262418,-0.03553491 +130.6494369506836,0.0,47.727272,47.727272,0.262418,-0.03553491 +130.65951895713806,0.0,49.242424,49.242424,0.27179006,-0.05588545 +130.66943311691284,0.0,51.515152,51.515152,0.28116214,-0.05588545 +130.67938995361328,0.0,53.030304,53.030304,0.28116214,-0.05588545 +130.6894450187683,0.0,53.030304,53.030304,0.28116214,-0.05588545 +130.69944596290588,0.0,52.272724,52.272724,0.28116214,-0.05588545 +130.70958805084229,0.0,53.030304,53.030304,0.28116214,-0.05588545 +130.71965909004211,0.0,53.030304,53.030304,0.2905342,-0.05588545 +130.72961592674255,0.0,52.272724,52.272724,0.2905342,-0.05588545 +130.73945999145508,0.0,50.757576,50.757576,0.28116214,-0.05588545 +130.74946904182434,0.0,49.242424,49.242424,0.28116214,-0.05588545 +130.75952196121216,0.0,48.484848,48.484848,0.2905342,-0.052185345 +130.769464969635,0.0,47.727272,47.727272,0.2905342,-0.052185345 +130.77944707870483,0.0,46.969696,46.969696,0.2905342,-0.052185345 +130.78944993019104,0.0,45.454548,45.454548,0.2905342,-0.052185345 +130.7994749546051,0.0,44.696968,44.696968,0.28116214,-0.052185345 +130.80944299697876,0.0,44.696968,44.696968,0.27179006,-0.052185345 +130.81968212127686,0.0,44.696968,44.696968,0.27179006,-0.06513569 +130.82960295677185,0.0,44.696968,44.696968,0.27179006,-0.06513569 +130.8394739627838,0.0,43.181816,43.181816,0.28116214,-0.06513569 +130.84944796562195,0.0,42.424244,42.424244,0.28116214,-0.06513569 +130.85947513580322,0.0,43.181816,43.181816,0.28116214,-0.06328564 +130.86946511268616,0.0,43.939392,43.939392,0.27179006,-0.06328564 +130.87947010993958,0.0,44.696968,44.696968,0.27179006,-0.06328564 +130.889466047287,0.0,43.939392,43.939392,0.27179006,-0.06328564 +130.89945101737976,0.0,43.939392,43.939392,0.27179006,-0.06328564 +130.90946412086487,0.0,44.696968,44.696968,0.27179006,-0.06328564 +130.91969108581543,0.0,45.454548,45.454548,0.28116214,-0.042935103 +130.92960691452026,0.0,46.969696,46.969696,0.28116214,-0.042935103 +130.9394690990448,0.0,46.969696,46.969696,0.28116214,-0.042935103 +130.949471950531,0.0,46.969696,46.969696,0.28116214,-0.042935103 +130.95947194099426,0.0,47.727272,47.727272,0.28116214,-0.029984765 +130.96948194503784,0.0,49.242424,49.242424,0.2905342,-0.029984765 +130.9794819355011,0.0,50.757576,50.757576,0.2905342,-0.029984765 +130.98946499824524,0.0,51.515152,51.515152,0.2905342,-0.029984765 +130.9994671344757,0.0,52.272724,52.272724,0.2905342,-0.029984765 +131.00947499275208,0.0,54.545456,54.545456,0.2905342,-0.029984765 +131.01960802078247,0.0,56.818184,56.818184,0.2905342,-0.042935103 +131.0295901298523,0.0,59.848484,59.848484,0.29990628,-0.042935103 +131.03956007957458,0.0,62.121212,62.121212,0.30927837,-0.042935103 +131.0494740009308,0.0,65.15151,65.15151,0.30927837,-0.042935103 +131.05948400497437,0.0,70.454544,70.454544,0.30927837,-0.015184363 +131.0694980621338,0.0,76.51515,76.51515,0.31865042,-0.015184363 +131.07948994636536,0.0,82.57576,82.57576,0.31865042,-0.015184363 +131.08948707580566,0.0,87.878784,87.878784,0.3280225,-0.015184363 +131.09947395324707,0.0,92.42424,92.42424,0.33739457,-0.015184363 +131.10950303077698,0.0,96.969696,96.969696,0.34676665,-0.015184363 +131.1196780204773,0.0,103.030304,103.030304,0.34676665,-0.05588545 +131.12967705726624,0.0,108.333336,108.333336,0.34676665,-0.05588545 +131.13949608802795,0.0,113.63637,113.63637,0.34676665,-0.05588545 +131.14949703216553,0.0,118.181816,118.181816,0.3561387,-0.05588545 +131.15947914123535,0.0,121.21213,121.21213,0.3561387,-0.044785153 +131.16952204704285,0.0,126.51515,126.51515,0.3561387,-0.044785153 +131.17948508262634,0.0,131.81818,131.81818,0.3561387,-0.044785153 +131.18948411941528,0.0,137.12122,137.12122,0.3655108,-0.044785153 +131.19949412345886,0.0,141.66667,141.66667,0.37488285,-0.044785153 +131.20951294898987,0.0,143.93939,143.93939,0.38425493,-0.044785153 +131.2194221019745,0.0,146.9697,146.9697,0.393627,-0.06143559 +131.22964310646057,0.0,150.75758,150.75758,0.40299907,-0.06143559 +131.2394940853119,0.0,155.30302,155.30302,0.41237113,-0.06143559 +131.24941992759705,0.0,159.09091,159.09091,0.41237113,-0.06143559 +131.25964999198914,0.0,161.36363,161.36363,0.41237113,-0.029984765 +131.26949405670166,0.0,163.63635,163.63635,0.41237113,-0.029984765 +131.27961707115173,0.0,165.9091,165.9091,0.41237113,-0.029984765 +131.2895109653473,0.0,168.93939,168.93939,0.41237113,-0.029984765 +131.2994921207428,0.0,172.72726,172.72726,0.41237113,-0.029984765 +131.30941796302795,0.0,175.75757,175.75757,0.4217432,-0.029984765 +131.31939101219177,0.0,177.27272,177.27272,0.4217432,-0.029984765 +131.32958698272705,0.0,178.0303,178.0303,0.4217432,-0.029984765 +131.33952713012695,0.0,180.30304,180.30304,0.43111527,-0.029984765 +131.3494291305542,0.0,182.57576,182.57576,0.43111527,-0.029984765 +131.3595380783081,0.0,184.84848,184.84848,0.43111527,-0.022584556 +131.36952304840088,0.0,186.36363,186.36363,0.43111527,-0.022584556 +131.37951493263245,0.0,187.12122,187.12122,0.43111527,-0.022584556 +131.3895161151886,0.0,187.12122,187.12122,0.43111527,-0.022584556 +131.39950394630432,0.0,189.39394,189.39394,0.4217432,-0.022584556 +131.4095139503479,0.0,191.66666,191.66666,0.43111527,-0.022584556 +131.41951894760132,0.0,193.93939,193.93939,0.43111527,-0.03553491 +131.42951703071594,0.0,195.45456,195.45456,0.43111527,-0.03553491 +131.43951606750488,0.0,196.21213,196.21213,0.43111527,-0.03553491 +131.44950699806213,0.0,196.21213,196.21213,0.43111527,-0.03553491 +131.45950293540955,0.0,197.72728,197.72728,0.44048735,-0.022584556 +131.46952104568481,0.0,200.0,200.0,0.43111527,-0.022584556 +131.47962093353271,0.0,201.51515,201.51515,0.44048735,-0.022584556 +131.48953413963318,0.0,203.0303,203.0303,0.44048735,-0.022584556 +131.49952101707458,0.0,203.0303,203.0303,0.44985944,-0.022584556 +131.50950694084167,0.0,203.78787,203.78787,0.44048735,-0.022584556 +131.5196509361267,0.0,205.30302,205.30302,0.44985944,-0.022584556 +131.52961707115173,0.0,207.57576,207.57576,0.44985944,-0.022584556 +131.5395290851593,0.0,210.60605,210.60605,0.44985944,-0.022584556 +131.54952001571655,0.0,212.12122,212.12122,0.4592315,-0.022584556 +131.55954098701477,0.0,213.63637,213.63637,0.4592315,-0.020734508 +131.56952595710754,0.0,214.39394,214.39394,0.4592315,-0.020734508 +131.57954001426697,0.0,216.66667,216.66667,0.4592315,-0.020734508 +131.58954191207886,0.0,219.69698,219.69698,0.4592315,-0.020734508 +131.5994110107422,0.0,221.9697,221.9697,0.4592315,-0.020734508 +131.60953903198242,0.0,224.24242,224.24242,0.46860358,0.010716328 +131.61960697174072,0.0,225.75757,225.75757,0.46860358,0.010716328 +131.62961602210999,0.0,226.51514,226.51514,0.46860358,0.010716328 +131.6395239830017,0.0,228.78789,228.78789,0.46860358,0.010716328 +131.6495440006256,0.0,231.06061,231.06061,0.46860358,0.010716328 +131.65954899787903,0.0,234.84848,234.84848,0.46860358,0.023666665 +131.66954803466797,0.0,237.87878,237.87878,0.47797564,0.023666665 +131.67954111099243,0.0,240.1515,240.1515,0.48734772,0.023666665 +131.68962502479553,0.0,240.90909,240.90909,0.48734772,0.023666665 +131.6995370388031,0.0,242.42426,242.42426,0.49671978,0.023666665 +131.7095410823822,0.0,245.45454,245.45454,0.49671978,0.09581858 +131.71966195106506,0.0,248.48485,248.48485,0.49671978,0.09581858 +131.72964811325073,0.0,251.51515,251.51515,0.49671978,0.09581858 +131.73963904380798,0.0,254.54546,254.54546,0.49671978,0.09581858 +131.74953603744507,0.0,256.81818,256.81818,0.50609183,0.09581858 +131.75954508781433,0.0,259.0909,259.0909,0.51546395,0.10506884 +131.76963591575623,0.0,262.12122,262.12122,0.51546395,0.10506884 +131.77955102920532,0.0,266.6667,266.6667,0.51546395,0.10506884 +131.7895429134369,0.0,271.21213,271.21213,0.51546395,0.10506884 +131.79955410957336,0.0,275.75757,275.75757,0.524836,0.10506884 +131.80955696105957,0.0,279.54547,279.54547,0.51546395,0.110618964 +131.81965494155884,0.0,282.57574,282.57574,0.51546395,0.110618964 +131.8296139240265,0.0,284.0909,284.0909,0.51546395,0.110618964 +131.83956599235535,0.0,285.60605,285.60605,0.524836,0.110618964 +131.84956908226013,0.0,288.63635,288.63635,0.51546395,0.110618964 +131.85954213142395,0.0,291.66666,291.66666,0.524836,0.13096951 +131.86953997612,0.0,294.69696,294.69696,0.524836,0.13096951 +131.87954211235046,0.0,296.96973,296.96973,0.53420806,0.13096951 +131.889554977417,0.0,297.7273,297.7273,0.53420806,0.13096951 +131.8994801044464,0.0,297.7273,297.7273,0.53420806,0.13096951 +131.90956902503967,0.0,298.48486,298.48486,0.53420806,0.13096951 +131.91940307617188,0.0,300.0,300.0,0.524836,0.116169125 +131.92964005470276,0.0,301.51517,301.51517,0.524836,0.116169125 +131.93955993652344,0.0,303.78787,303.78787,0.51546395,0.116169125 +131.94956302642822,0.0,306.0606,306.0606,0.524836,0.116169125 +131.9596140384674,0.0,306.81818,306.81818,0.51546395,0.10876893 +131.9695589542389,0.0,306.0606,306.0606,0.51546395,0.10876893 +131.97958493232727,0.0,305.30304,305.30304,0.51546395,0.10876893 +131.98956394195557,0.0,305.30304,305.30304,0.524836,0.10876893 +131.999577999115,0.0,306.0606,306.0606,0.524836,0.10876893 +132.00955510139465,0.0,306.81818,306.81818,0.524836,0.10876893 +132.01938891410828,0.0,307.57578,307.57578,0.524836,0.12541938 +132.02964091300964,0.0,307.57578,307.57578,0.51546395,0.12541938 +132.0395679473877,0.0,306.81818,306.81818,0.51546395,0.12541938 +132.0495641231537,0.0,305.30304,305.30304,0.51546395,0.12541938 +132.0595600605011,0.0,303.0303,303.0303,0.524836,0.110618964 +132.069580078125,0.0,301.51517,301.51517,0.524836,0.110618964 +132.07957196235657,0.0,299.24243,299.24243,0.524836,0.110618964 +132.08956694602966,0.0,296.96973,296.96973,0.524836,0.110618964 +132.09956908226013,0.0,294.69696,294.69696,0.524836,0.110618964 +132.10959196090698,0.0,291.66666,291.66666,0.524836,0.110618964 +132.1196620464325,0.0,287.87878,287.87878,0.53420806,0.19202115 +132.12960696220398,0.0,284.0909,284.0909,0.524836,0.19202115 +132.13960814476013,0.0,281.0606,281.0606,0.53420806,0.19202115 +132.14957904815674,0.0,278.78787,278.78787,0.524836,0.19202115 +132.15957713127136,0.0,275.75757,275.75757,0.524836,0.23642232 +132.16959404945374,0.0,272.7273,272.7273,0.524836,0.23642232 +132.1795859336853,0.0,268.9394,268.9394,0.524836,0.23642232 +132.1895899772644,0.0,264.39392,264.39392,0.524836,0.23642232 +132.1996021270752,0.0,259.0909,259.0909,0.524836,0.23642232 +132.20959401130676,0.0,254.54546,254.54546,0.51546395,0.23642232 +132.21939206123352,0.0,250.0,250.0,0.51546395,0.23642232 +132.22950792312622,0.0,246.9697,246.9697,0.50609183,0.23642232 +132.23959803581238,0.0,244.69698,244.69698,0.49671978,0.23642232 +132.24960613250732,0.0,243.93939,243.93939,0.50609183,0.23642232 +132.25958013534546,0.0,243.18182,243.18182,0.51546395,0.23087217 +132.26959705352783,0.0,242.42426,242.42426,0.51546395,0.23087217 +132.27959895133972,0.0,241.66666,241.66666,0.51546395,0.23087217 +132.28959798812866,0.0,239.39394,239.39394,0.51546395,0.23087217 +132.29960894584656,0.0,237.87878,237.87878,0.51546395,0.23087217 +132.30960607528687,0.0,237.12122,237.12122,0.51546395,0.23087217 +132.31945991516113,0.0,236.36363,236.36363,0.50609183,0.23457228 +132.32958698272705,0.0,236.36363,236.36363,0.50609183,0.23457228 +132.33961701393127,0.0,235.60606,235.60606,0.49671978,0.23457228 +132.3495900630951,0.0,234.09091,234.09091,0.48734772,0.23457228 +132.35959911346436,0.0,231.81819,231.81819,0.46860358,0.2845236 +132.36959195137024,0.0,228.78789,228.78789,0.46860358,0.2845236 +132.3795940876007,0.0,225.0,225.0,0.4592315,0.2845236 +132.3896040916443,0.0,221.21211,221.21211,0.4592315,0.2845236 +132.39962100982666,0.0,217.42424,217.42424,0.46860358,0.2845236 +132.4096200466156,0.0,213.63637,213.63637,0.4592315,0.2845236 +132.4194049835205,0.0,209.84848,209.84848,0.4592315,0.33262488 +132.4296269416809,0.0,205.30302,205.30302,0.4592315,0.33262488 +132.4396150112152,0.0,201.51515,201.51515,0.46860358,0.33262488 +132.4495940208435,0.0,198.48485,198.48485,0.4592315,0.33262488 +132.45960593223572,0.0,193.93939,193.93939,0.44985944,0.41957718 +132.4696009159088,0.0,189.39394,189.39394,0.44048735,0.41957718 +132.47960305213928,0.0,184.09091,184.09091,0.44048735,0.41957718 +132.4896330833435,0.0,180.30304,180.30304,0.44048735,0.41957718 +132.49960207939148,0.0,176.51515,176.51515,0.43111527,0.41957718 +132.50960206985474,0.0,171.21213,171.21213,0.43111527,0.6064321 +132.51963591575623,0.0,164.39395,164.39395,0.4217432,0.6064321 +132.52950501441956,0.0,156.06061,156.06061,0.4217432,0.6064321 +132.53961300849915,0.0,146.21211,146.21211,0.40299907,0.6064321 +132.54963397979736,0.0,135.60606,135.60606,0.393627,0.6064321 +132.55962800979614,0.0,124.242424,124.242424,0.38425493,0.71003485 +132.56964492797852,0.0,113.63637,113.63637,0.37488285,0.71003485 +132.57942008972168,0.0,103.78788,103.78788,0.38425493,0.71003485 +132.58962392807007,0.0,94.69697,94.69697,0.37488285,0.71003485 +132.59964108467102,0.0,87.12121,87.12121,0.3655108,0.71003485 +132.60962104797363,0.0,80.30303,80.30303,0.34676665,0.7729366 +132.6196300983429,0.0,74.24243,74.24243,0.33739457,0.7729366 +132.62961792945862,0.0,68.18182,68.18182,0.33739457,0.7729366 +132.6396210193634,0.0,62.878788,62.878788,0.3280225,0.7729366 +132.64962005615234,0.0,57.57576,57.57576,0.31865042,0.7729366 +132.65941500663757,0.0,51.515152,51.515152,0.29990628,0.789587 +132.66962909698486,0.0,46.21212,46.21212,0.2905342,0.789587 +132.67963004112244,0.0,40.90909,40.90909,0.27179006,0.789587 +132.68962407112122,0.0,37.121216,37.121216,0.27179006,0.789587 +132.69962692260742,0.0,34.09091,34.09091,0.262418,0.789587 +132.70963597297668,0.0,31.060606,31.060606,0.262418,0.7932871 +132.71964192390442,0.0,29.545454,29.545454,0.27179006,0.7932871 +132.72963309288025,0.01,27.272728,27.272728,0.262418,0.7932871 +132.73963594436646,0.01,25.757576,25.757576,0.262418,0.7932871 +132.74963998794556,0.01,23.484848,23.484848,0.262418,0.7932871 +132.75962805747986,0.01,21.969696,21.969696,0.27179006,0.8043874 +132.76963305473328,0.01,25.0,25.0,0.27179006,0.8043874 +132.77946400642395,0.01,28.78788,28.78788,0.27179006,0.8043874 +132.7895369529724,0.01,33.333336,33.333336,0.27179006,0.8043874 +132.7996470928192,0.01,38.636364,38.636364,0.27179006,0.8043874 +132.80965304374695,0.01,43.181816,43.181816,0.262418,0.80068725 +132.81963109970093,0.01,47.727272,47.727272,0.262418,0.80068725 +132.82963514328003,0.01,51.515152,51.515152,0.27179006,0.80068725 +132.8396351337433,0.01,54.545456,54.545456,0.28116214,0.80068725 +132.84964108467102,0.01,56.818184,56.818184,0.28116214,0.80068725 +132.85964798927307,0.01,58.333332,58.333332,0.27179006,0.8321382 +132.86964106559753,0.01,59.090908,59.090908,0.27179006,0.8321382 +132.87964797019958,0.02,59.090908,59.090908,0.262418,0.8321382 +132.88965702056885,0.03,58.333332,58.333332,0.262418,0.8321382 +132.89965200424194,0.03,58.333332,58.333332,0.25304592,0.8321382 +132.90965795516968,0.04,56.818184,56.818184,0.25304592,0.8321382 +132.9194040298462,0.049999997,55.30303,55.30303,0.24367386,0.7636863 +132.9296579360962,0.06,53.030304,53.030304,0.24367386,0.7636863 +132.93965101242065,0.07,50.0,50.0,0.22492972,0.7636863 +132.9496579170227,0.08,47.727272,47.727272,0.21555763,0.7636863 +132.95964813232422,0.089999996,44.696968,44.696968,0.20618556,0.7211352 +132.96964597702026,0.099999994,41.666668,41.666668,0.1968135,0.7211352 +132.97966814041138,0.11,39.39394,39.39394,0.18744142,0.7211352 +132.98965501785278,0.12,37.121216,37.121216,0.17806935,0.7211352 +132.99965405464172,0.13,34.09091,34.09091,0.15932521,0.7211352 +133.00965404510498,0.14,31.818182,31.818182,0.14058107,0.7211352 +133.0196499824524,0.14999999,30.303032,30.303032,0.131209,0.6952345 +133.02967810630798,0.16,28.030302,28.030302,0.12183693,0.6952345 +133.03966999053955,0.17,26.515152,26.515152,0.11246486,0.6952345 +133.04967212677002,0.17999999,25.0,25.0,0.09372071,0.6952345 +133.0596740245819,0.19,23.484848,23.484848,0.08434864,0.6915344 +133.06965494155884,0.21,21.969696,21.969696,0.07497657,0.6915344 +133.07966208457947,0.22,20.454544,20.454544,0.0656045,0.6915344 +133.08966898918152,0.22999999,18.939394,18.939394,0.0656045,0.6915344 +133.0996561050415,0.24,17.424242,17.424242,0.046860356,0.6915344 +133.10946702957153,0.25,16.666668,16.666668,0.046860356,0.6915344 +133.11967396736145,0.26,15.151516,15.151516,0.037488285,0.60273206 +133.12946796417236,0.26,14.39394,14.39394,0.037488285,0.60273206 +133.1395080089569,0.26999998,13.636364,13.636364,0.028116215,0.60273206 +133.1496729850769,0.28,12.878788,12.878788,0.018744143,0.60273206 +133.15942406654358,0.29,11.363637,11.363637,0.009372071,0.56018096 +133.1696801185608,0.29999998,10.606061,10.606061,0.0,0.56018096 +133.17968201637268,0.29999998,9.848485,9.848485,0.0,0.56018096 +133.18967294692993,0.31,9.090909,9.090909,0.0,0.56018096 +133.19968008995056,0.32,8.333334,8.333334,0.0,0.56018096 +133.20968914031982,0.32,7.575758,7.575758,0.0,0.56018096 +133.21967601776123,0.32999998,7.575758,7.575758,0.0,0.20127137 +133.2296850681305,0.32999998,6.818182,6.818182,0.0,0.20127137 +133.23949694633484,0.34,6.060606,6.060606,0.0,0.20127137 +133.24949502944946,0.34,5.3030305,5.3030305,0.0,0.20127137 +133.25969195365906,0.34,5.3030305,5.3030305,0.0,-0.5220978 +133.26967310905457,0.34,4.5454545,4.5454545,0.0,-0.5220978 +133.27968192100525,0.35,3.787879,3.787879,0.0,-0.5220978 +133.28968501091003,0.35,3.030303,3.030303,0.0,-0.5220978 +133.29969096183777,0.35,3.030303,3.030303,0.0,-0.5220978 +133.30970692634583,0.35,2.2727273,2.2727273,0.0,-0.5220978 +133.319678068161,0.34,1.5151515,1.5151515,0.0,-0.28159142 +133.32970309257507,0.34,1.5151515,1.5151515,0.0,-0.28159142 +133.33959794044495,0.34,1.5151515,1.5151515,0.0,-0.28159142 +133.349426984787,0.34,0.75757575,0.75757575,0.0,-0.28159142 +133.359708070755,0.32999998,0.75757575,0.75757575,0.0,0.110618964 +133.36968302726746,0.32999998,0.0,0.0,0.0,0.110618964 +133.37970495224,0.32999998,0.0,0.0,0.0,0.110618964 +133.38970112800598,0.32,0.0,0.0,0.0,0.110618964 +133.39969992637634,0.32,0.0,0.0,0.0,0.110618964 +133.4097080230713,0.32,0.0,0.0,0.0,0.110618964 +133.41970896720886,0.32,0.0,0.0,0.0,0.36592576 +133.42969703674316,0.32,0.0,0.0,0.0,0.36592576 +133.43941497802734,0.32999998,0.0,0.0,0.0,0.36592576 +133.44971203804016,0.32999998,0.0,0.0,0.0,0.36592576 +133.45969104766846,0.32999998,0.0,0.0,0.0,0.68783426 +133.46968507766724,0.32999998,0.0,0.0,0.0,0.68783426 +133.47972512245178,0.32999998,0.0,0.0,0.0,0.68783426 +133.48971009254456,0.32999998,0.0,0.0,0.0,0.68783426 +133.49953413009644,0.32999998,0.0,0.0,0.0,0.68783426 +133.50971603393555,0.32999998,0.0,0.0,0.0,1.091145 +133.51971793174744,0.32999998,0.0,0.0,0.0,1.091145 +133.52970504760742,0.32999998,0.0,0.0,0.0,1.091145 +133.53972005844116,0.32999998,0.0,0.0,0.0,1.091145 +133.54949307441711,0.32999998,0.0,0.0,0.0,1.091145 +133.55973100662231,0.32999998,0.0,0.0,0.0,1.3742026 +133.56972193717957,0.32,0.0,0.0,0.0,1.3742026 +133.57972502708435,0.32,0.0,0.0,0.0,1.3742026 +133.5896599292755,0.31,0.0,0.0,0.0,1.3742026 +133.5997290611267,0.29999998,0.0,0.0,0.0,1.3742026 +133.60969996452332,0.29999998,0.0,0.0,0.0,1.4463545 +133.6195809841156,0.29999998,0.0,0.0,0.0,1.4463545 +133.62972807884216,0.29,0.0,0.0,0.0,1.4463545 +133.63972306251526,0.29999998,0.0,0.0,0.0,1.4463545 +133.64971494674683,0.29999998,0.75757575,0.75757575,0.0,1.4463545 +133.65972208976746,0.29999998,2.2727273,2.2727273,0.0,1.3890029 +133.66972494125366,0.29999998,3.787879,3.787879,0.0,1.3890029 +133.67971801757812,0.31,4.5454545,4.5454545,0.0,1.3890029 +133.6897211074829,0.31,6.060606,6.060606,0.0,1.3890029 +133.69953608512878,0.31,7.575758,7.575758,0.0,1.3890029 +133.70973300933838,0.31,8.333334,8.333334,0.0,1.3816028 +133.71971607208252,0.32,9.090909,9.090909,0.0,1.3816028 +133.72971510887146,0.32,9.848485,9.848485,0.0,1.3816028 +133.7395989894867,0.31,9.090909,9.090909,0.0,1.3816028 +133.74973797798157,0.31,9.090909,9.090909,0.0,1.3816028 +133.75972700119019,0.31,8.333334,8.333334,0.0,1.3816028 +133.7697229385376,0.29999998,7.575758,7.575758,0.0,1.3816028 +133.7797451019287,0.29999998,6.818182,6.818182,0.0,1.3816028 +133.78954792022705,0.29,6.060606,6.060606,0.0,1.3816028 +133.7997350692749,0.29,5.3030305,5.3030305,0.0,1.3816028 +133.809739112854,0.29,5.3030305,5.3030305,0.0,1.390853 +133.81973004341125,0.28,4.5454545,4.5454545,0.0,1.390853 +133.8294620513916,0.28,4.5454545,4.5454545,0.0,1.390853 +133.83974814414978,0.28,4.5454545,4.5454545,0.0,1.390853 +133.84961795806885,0.28,5.3030305,5.3030305,0.0,1.390853 +133.85973691940308,0.28,6.818182,6.818182,0.0,1.390853 +133.86972904205322,0.26999998,7.575758,7.575758,0.0,1.390853 +133.87974905967712,0.26999998,9.090909,9.090909,0.0,1.390853 +133.8897421360016,0.26999998,9.848485,9.848485,0.0,1.390853 +133.89974999427795,0.26999998,9.848485,9.848485,0.0,1.390853 +133.90973091125488,0.26999998,10.606061,10.606061,0.0,1.390853 +133.9193880558014,0.26999998,10.606061,10.606061,0.0,1.3816028 +133.92974305152893,0.26,10.606061,10.606061,0.018744143,1.3816028 +133.9397361278534,0.26,10.606061,10.606061,0.018744143,1.3816028 +133.94974493980408,0.26,9.848485,9.848485,0.028116215,1.3816028 +133.95955896377563,0.26,9.848485,9.848485,0.037488285,1.4019531 +133.96944093704224,0.26,9.848485,9.848485,0.037488285,1.4019531 +133.9794409275055,0.25,9.090909,9.090909,0.037488285,1.4019531 +133.98974204063416,0.25,8.333334,8.333334,0.028116215,1.4019531 +133.99948501586914,0.25,8.333334,8.333334,0.028116215,1.4019531 +134.0097460746765,0.25,7.575758,7.575758,0.028116215,1.4019531 +134.01974296569824,0.25,7.575758,7.575758,0.028116215,1.3797526 +134.0297520160675,0.25,6.818182,6.818182,0.028116215,1.3797526 +134.0397629737854,0.26,6.060606,6.060606,0.028116215,1.3797526 +134.04976606369019,0.26,6.060606,6.060606,0.028116215,1.3797526 +134.05954313278198,0.26,5.3030305,5.3030305,0.028116215,1.2817 +134.0695641040802,0.26999998,5.3030305,5.3030305,0.018744143,1.2817 +134.07976508140564,0.26999998,5.3030305,5.3030305,0.009372071,1.2817 +134.08970403671265,0.28,5.3030305,5.3030305,0.018744143,1.2817 +134.09977293014526,0.28,4.5454545,4.5454545,0.018744143,1.2817 +134.10957407951355,0.28,4.5454545,4.5454545,0.028116215,1.2817 +134.1196539402008,0.28,4.5454545,4.5454545,0.028116215,1.128146 +134.12975811958313,0.29,4.5454545,4.5454545,0.028116215,1.128146 +134.13977313041687,0.29,3.787879,3.787879,0.018744143,1.128146 +134.14947295188904,0.29999998,3.787879,3.787879,0.028116215,1.128146 +134.15949201583862,0.31,3.787879,3.787879,0.018744143,1.1133456 +134.16977405548096,0.31,3.030303,3.030303,0.018744143,1.1133456 +134.179780960083,0.32,3.030303,3.030303,0.018744143,1.1133456 +134.1897599697113,0.32,2.2727273,2.2727273,0.018744143,1.1133456 +134.19976902008057,0.32999998,2.2727273,2.2727273,0.028116215,1.1133456 +134.20977306365967,0.34,1.5151515,1.5151515,0.028116215,1.1133456 +134.21975708007812,0.34,1.5151515,1.5151515,0.028116215,1.0818948 +134.2297661304474,0.35,1.5151515,1.5151515,0.018744143,1.0818948 +134.23942112922668,0.35,0.75757575,0.75757575,0.018744143,1.0818948 +134.24968004226685,0.35999998,0.75757575,0.75757575,0.009372071,1.0818948 +134.259761095047,0.35999998,0.75757575,0.75757575,0.009372071,1.1059453 +134.26976704597473,0.37,0.0,0.0,0.009372071,1.1059453 +134.27977991104126,0.37,0.0,0.0,0.009372071,1.1059453 +134.28978610038757,0.38,0.0,0.0,0.009372071,1.1059453 +134.29976797103882,0.38,0.0,0.0,0.0,1.1059453 +134.30979704856873,0.38,0.0,0.0,0.0,1.1059453 +134.3197751045227,0.39,0.0,0.0,0.0,1.0781947 +134.32957410812378,0.39,0.0,0.0,0.0,1.0781947 +134.339781999588,0.39999998,0.0,0.0,0.0,1.0781947 +134.34978795051575,0.39999998,0.0,0.0,0.0,1.0781947 +134.3597869873047,0.41,0.0,0.0,0.0,0.9634916 +134.3697919845581,0.41,0.0,0.0,0.0,0.9634916 +134.37978291511536,0.42,0.0,0.0,0.0,0.9634916 +134.38977909088135,0.42,0.0,0.0,0.0,0.9634916 +134.3997941017151,0.42999998,0.0,0.0,0.0,0.9634916 +134.40979599952698,0.42999998,0.0,0.0,0.0,0.9634916 +134.4195680618286,0.44,0.0,0.0,0.0,0.8099375 +134.42979907989502,0.44,0.0,0.0,0.0,0.8099375 +134.43952798843384,0.45,0.0,0.0,0.0,0.8099375 +134.44980192184448,0.45,0.0,0.0,0.0,0.8099375 +134.45978999137878,0.45999998,0.0,0.0,0.0,0.8099375 +134.46980094909668,0.45999998,0.0,0.0,0.0,0.8099375 +134.4797921180725,0.45999998,0.0,0.0,0.0,0.8099375 +134.48979711532593,0.47,0.0,0.0,0.0,0.8099375 +134.4998071193695,0.47,0.0,0.0,0.0,0.8099375 +134.50980305671692,0.47,0.0,0.0,0.0,0.80623746 +134.51959013938904,0.48,0.0,0.0,0.0,0.80623746 +134.52944612503052,0.48,0.0,0.0,0.0,0.80623746 +134.5398120880127,0.48,0.0,0.0,0.0,0.80623746 +134.54979610443115,0.48999998,0.0,0.0,0.0,0.80623746 +134.5598030090332,0.48999998,0.0,0.0,0.0,0.8099375 +134.5698230266571,0.48999998,0.0,0.0,0.0,0.8099375 +134.57981491088867,0.48999998,0.0,0.0,0.0,0.8099375 +134.58945107460022,0.48999998,0.0,0.0,0.0,0.8099375 +134.5997121334076,0.5,0.0,0.0,0.0,0.8099375 +134.60981011390686,0.5,0.0,0.0,0.0,0.72853535 +134.61954498291016,0.5,0.0,0.0,0.0,0.72853535 +134.62980794906616,0.5,0.0,0.0,0.0,0.72853535 +134.63981699943542,0.5,0.0,0.0,0.0,0.72853535 +134.64982104301453,0.5,0.0,0.0,0.0,0.72853535 +134.6598150730133,0.51,0.0,0.0,0.0,0.4288274 +134.66980695724487,0.51,0.0,0.0,0.0,0.4288274 +134.67964792251587,0.51,0.0,0.0,0.0,0.4288274 +134.6898169517517,0.51,0.0,0.0,0.0,0.4288274 +134.69980907440186,0.51,0.0,0.0,0.0,0.4288274 +134.70946502685547,0.51,0.0,0.0,0.0,0.44917795 +134.71971201896667,0.51,0.0,0.0,0.0,0.44917795 +134.72980403900146,0.51,0.0,0.0,0.0,0.44917795 +134.73980808258057,0.5,0.0,0.0,0.0,0.44917795 +134.7498369216919,0.5,0.0,0.0,0.0,0.44917795 +134.75982213020325,0.48999998,0.0,0.0,0.0,0.45287812 +134.76981496810913,0.48999998,0.0,0.0,0.0,0.45287812 +134.77981996536255,0.48,0.0,0.0,0.0,0.45287812 +134.7898290157318,0.48,0.0,0.0,0.0,0.45287812 +134.79965710639954,0.47,0.0,0.0,0.0,0.45287812 +134.80962800979614,0.47,0.0,0.0,0.0,0.3862763 +134.81982898712158,0.45999998,0.0,0.0,0.0,0.3862763 +134.82983493804932,0.45,0.0,0.0,0.0,0.3862763 +134.8398299217224,0.45,0.0,0.0,0.0,0.3862763 +134.84983801841736,0.44,0.0,0.0,0.0,0.3862763 +134.85983800888062,0.42999998,0.0,0.0,0.0,0.31227434 +134.86984300613403,0.42999998,0.0,0.0,0.0,0.31227434 +134.879821062088,0.42,0.0,0.0,0.0,0.31227434 +134.8897659778595,0.42,0.0,0.0,0.0,0.31227434 +134.89957404136658,0.41,0.0,0.0,0.0,0.31227434 +134.9097020626068,0.41,0.0,0.0,0.0,0.25677285 +134.9193980693817,0.39999998,0.0,0.0,0.0,0.25677285 +134.9293930530548,0.39,0.0,0.0,0.0,0.25677285 +134.9398329257965,0.39,0.0,0.0,0.0,0.25677285 +134.94985103607178,0.38,0.0,0.0,0.0,0.25677285 +134.9598491191864,0.38,0.0,0.0,0.0,0.20127137 +134.96985411643982,0.37,0.0,0.0,0.0,0.20127137 +134.97964096069336,0.35999998,0.0,0.0,0.0,0.20127137 +134.98950004577637,0.35,0.0,0.0,0.0,0.20127137 +134.99941492080688,0.34,0.0,0.0,0.0,0.20127137 +135.0095670223236,0.32999998,0.0,0.0,0.0,0.20127137 +135.01940202713013,0.32999998,0.0,0.0,0.0,0.010716328 +135.02985906600952,0.32,0.0,0.0,0.0,0.010716328 +135.03986191749573,0.31,0.0,0.0,0.0,0.010716328 +135.04985404014587,0.31,0.0,0.0,0.0,0.010716328 +135.05984592437744,0.29999998,0.0,0.0,0.0,-0.072535895 +135.0698471069336,0.29999998,0.0,0.0,0.0,-0.072535895 +135.07960510253906,0.29999998,0.0,0.0,0.0,-0.072535895 +135.08976292610168,0.29,0.0,0.0,0.0,-0.072535895 +135.09985399246216,0.29,0.0,0.0,0.0,-0.072535895 +135.10971999168396,0.29,0.0,0.0,0.0,-0.17243853 +135.11986994743347,0.28,0.0,0.0,0.0,-0.17243853 +135.12954306602478,0.28,0.0,0.0,0.0,-0.17243853 +135.13986611366272,0.28,0.0,0.0,0.0,-0.17243853 +135.14948105812073,0.28,0.0,0.0,0.0,-0.17243853 +135.15984892845154,0.26999998,0.0,0.0,0.0,-0.3148923 +135.16957712173462,0.26999998,0.0,0.0,0.0,-0.3148923 +135.17986607551575,0.26,0.0,0.0,0.0,-0.3148923 +135.18985199928284,0.25,0.0,0.0,0.0,-0.3148923 +135.1998689174652,0.25,0.0,0.0,0.0,-0.3148923 +135.20972299575806,0.24,0.0,0.0,0.0,-0.4184951 +135.21987795829773,0.22999999,0.0,0.0,0.0,-0.4184951 +135.22987294197083,0.22,0.0,0.0,0.0,-0.4184951 +135.23987197875977,0.21,0.0,0.0,0.0,-0.4184951 +135.24986910820007,0.21,0.0,0.0,0.0,-0.4184951 +135.25957107543945,0.19999999,0.0,0.0,0.0,-0.44069567 +135.269877910614,0.19999999,0.0,0.0,0.0,-0.44069567 +135.27989196777344,0.19999999,0.0,0.0,0.0,-0.44069567 +135.28985905647278,0.19,0.0,0.0,0.0,-0.44069567 +135.2997260093689,0.19,0.0,0.0,0.0,-0.44069567 +135.30973291397095,0.19,0.0,0.0,0.0,-0.42219514 +135.31941294670105,0.19,0.0,0.0,0.0,-0.42219514 +135.32985997200012,0.19,0.0,0.0,0.0,-0.42219514 +135.33988404273987,0.19,0.0,0.0,0.0,-0.42219514 +135.34939002990723,0.19,0.0,0.0,0.0,-0.42219514 +135.35989594459534,0.19,0.75757575,0.75757575,0.0,-0.5146976 +135.36989402770996,0.19,0.75757575,0.75757575,0.0,-0.5146976 +135.3798930644989,0.19,1.5151515,1.5151515,0.0,-0.5146976 +135.38988304138184,0.17999999,1.5151515,1.5151515,0.0,-0.5146976 +135.39987707138062,0.17999999,2.2727273,2.2727273,0.0,-0.5146976 +135.40970706939697,0.17999999,2.2727273,2.2727273,0.0,-0.56094885 +135.4193971157074,0.17,2.2727273,2.2727273,0.0,-0.56094885 +135.42987608909607,0.17,2.2727273,2.2727273,0.0,-0.56094885 +135.4398729801178,0.17,3.030303,3.030303,0.0,-0.56094885 +135.4495620727539,0.16,3.787879,3.787879,0.0,-0.56094885 +135.4598889350891,0.16,3.787879,3.787879,0.0,-0.568349 +135.46990513801575,0.16,4.5454545,4.5454545,0.0,-0.568349 +135.4798939228058,0.16,5.3030305,5.3030305,0.0,-0.568349 +135.4898829460144,0.16,5.3030305,5.3030305,0.0,-0.568349 +135.4996690750122,0.14999999,5.3030305,5.3030305,0.0,-0.568349 +135.50973391532898,0.14999999,5.3030305,5.3030305,0.0,-0.5701991 +135.51989793777466,0.14999999,5.3030305,5.3030305,0.0,-0.5701991 +135.5294051170349,0.14999999,6.060606,6.060606,0.0,-0.5701991 +135.53939509391785,0.14999999,6.060606,6.060606,0.0,-0.5701991 +135.54988598823547,0.14999999,6.060606,6.060606,0.0,-0.5701991 +135.55988192558289,0.14999999,6.818182,6.818182,0.0,-0.5868495 +135.56990504264832,0.14999999,7.575758,7.575758,0.0,-0.5868495 +135.57983803749084,0.14999999,7.575758,7.575758,0.0,-0.5868495 +135.5898859500885,0.14999999,8.333334,8.333334,0.0,-0.5868495 +135.59963202476501,0.14999999,8.333334,8.333334,0.0,-0.5868495 +135.60990500450134,0.14999999,8.333334,8.333334,0.0,-0.5868495 +135.6196310520172,0.14999999,7.575758,7.575758,0.0,-0.5868495 +135.6295449733734,0.14999999,7.575758,7.575758,0.0,-0.5868495 +135.63990902900696,0.14999999,7.575758,7.575758,0.0,-0.5868495 +135.64989399909973,0.14999999,8.333334,8.333334,0.0,-0.5868495 +135.65983891487122,0.14999999,8.333334,8.333334,0.0,-0.58129936 +135.6699140071869,0.14999999,8.333334,8.333334,0.0,-0.58129936 +135.6799030303955,0.14999999,9.090909,9.090909,0.0,-0.58129936 +135.68989491462708,0.14999999,9.090909,9.090909,0.0,-0.58129936 +135.69976806640625,0.14,9.090909,9.090909,0.0,-0.58129936 +135.70952606201172,0.14,9.090909,9.090909,0.0,-0.5350482 +135.7197139263153,0.14,9.090909,9.090909,0.0,-0.5350482 +135.7293930053711,0.14,9.090909,9.090909,0.0,-0.5350482 +135.73991894721985,0.14999999,9.090909,9.090909,0.0,-0.5350482 +135.74990606307983,0.14999999,9.090909,9.090909,0.0,-0.5350482 +135.75991797447205,0.14999999,9.090909,9.090909,0.0,-0.4277453 +135.76992011070251,0.16,9.848485,9.848485,0.0,-0.4277453 +135.77990794181824,0.16,9.848485,9.848485,0.0,-0.4277453 +135.7896819114685,0.17,9.848485,9.848485,0.0,-0.4277453 +135.79960298538208,0.17999999,9.848485,9.848485,0.0,-0.4277453 +135.8094139099121,0.17999999,9.848485,9.848485,0.0,-0.40554473 +135.81940007209778,0.19,9.848485,9.848485,0.0,-0.40554473 +135.82991909980774,0.19,9.090909,9.090909,0.0,-0.40554473 +135.83962106704712,0.19999999,9.090909,9.090909,0.0,-0.40554473 +135.8499150276184,0.19999999,9.090909,9.090909,0.0,-0.40554473 +135.859934091568,0.19999999,9.090909,9.090909,0.0,-0.46104622 +135.86993598937988,0.19999999,9.090909,9.090909,0.0,-0.46104622 +135.87962007522583,0.19999999,9.090909,9.090909,0.0,-0.46104622 +135.88965511322021,0.19999999,9.090909,9.090909,0.0,-0.46104622 +135.8999149799347,0.19,9.090909,9.090909,0.0,-0.46104622 +135.90955901145935,0.19,9.090909,9.090909,0.0,-0.46104622 +135.91962504386902,0.19,9.090909,9.090909,0.0,-0.44994587 +135.929927110672,0.19,9.090909,9.090909,0.0,-0.44994587 +135.93993091583252,0.19,9.090909,9.090909,0.0,-0.44994587 +135.9499261379242,0.19,9.090909,9.090909,0.0,-0.44994587 +135.95993900299072,0.19999999,9.090909,9.090909,0.0,-0.42959538 +135.96954894065857,0.19999999,9.090909,9.090909,0.0,-0.42959538 +135.9797170162201,0.19999999,9.090909,9.090909,0.0,-0.42959538 +135.98969101905823,0.19999999,9.848485,9.848485,0.0,-0.42959538 +135.99993300437927,0.19999999,9.090909,9.090909,0.0,-0.42959538 +136.0097360610962,0.19999999,9.090909,9.090909,0.0,-0.47029644 +136.01994514465332,0.19999999,9.090909,9.090909,0.0,-0.47029644 +136.02993297576904,0.19999999,9.090909,9.090909,0.0,-0.47029644 +136.039941072464,0.19,8.333334,8.333334,0.0,-0.47029644 +136.04993104934692,0.19,8.333334,8.333334,0.0,-0.47029644 +136.05947613716125,0.17999999,9.090909,9.090909,0.0,-0.47029644 +136.06980395317078,0.17999999,9.090909,9.090909,0.0,-0.47029644 +136.07995200157166,0.17999999,9.090909,9.090909,0.0,-0.47029644 +136.0894660949707,0.17999999,9.090909,9.090909,0.0,-0.47029644 +136.09993696212769,0.19,9.090909,9.090909,0.0,-0.47029644 +136.1097390651703,0.19999999,9.090909,9.090909,0.0,-0.43329546 +136.11994791030884,0.21,9.090909,9.090909,0.0,-0.43329546 +136.12993907928467,0.21,9.090909,9.090909,0.0,-0.43329546 +136.13995599746704,0.22,9.090909,9.090909,0.0,-0.43329546 +136.14944100379944,0.22999999,9.090909,9.090909,0.0,-0.43329546 +136.15983891487122,0.24,9.090909,9.090909,0.0,-0.4684464 +136.16945695877075,0.24,8.333334,8.333334,0.0,-0.4684464 +136.17965507507324,0.24,8.333334,8.333334,0.0,-0.4684464 +136.18995213508606,0.24,8.333334,8.333334,0.0,-0.4684464 +136.199942111969,0.24,8.333334,8.333334,0.0,-0.4684464 +136.2097430229187,0.24,7.575758,7.575758,0.0,-0.39259437 +136.21939396858215,0.22999999,7.575758,7.575758,0.0,-0.39259437 +136.2299461364746,0.22999999,6.818182,6.818182,0.0,-0.39259437 +136.23944902420044,0.22999999,6.060606,6.060606,0.0,-0.39259437 +136.24996995925903,0.22999999,5.3030305,5.3030305,0.0,-0.39259437 +136.2599790096283,0.22999999,5.3030305,5.3030305,0.0,-0.25569075 +136.26981902122498,0.24,4.5454545,4.5454545,0.0,-0.25569075 +136.27997398376465,0.25,4.5454545,4.5454545,0.0,-0.25569075 +136.28996205329895,0.26,3.787879,3.787879,0.0,-0.25569075 +136.29957604408264,0.26,3.787879,3.787879,0.0,-0.25569075 +136.309720993042,0.26999998,3.030303,3.030303,0.0,-0.19648919 +136.31940913200378,0.26999998,2.2727273,2.2727273,0.0,-0.19648919 +136.32997298240662,0.26999998,2.2727273,2.2727273,0.0,-0.19648919 +136.33994913101196,0.26999998,1.5151515,1.5151515,0.0,-0.19648919 +136.34995913505554,0.26,1.5151515,1.5151515,0.0,-0.19648919 +136.35996007919312,0.26,0.75757575,0.75757575,0.0,-0.22794001 +136.36998009681702,0.25,0.75757575,0.75757575,0.0,-0.22794001 +136.37996101379395,0.24,0.0,0.0,0.0,-0.22794001 +136.389967918396,0.24,0.0,0.0,0.0,-0.22794001 +136.39967608451843,0.22999999,0.0,0.0,0.0,-0.22794001 +136.4097399711609,0.22,0.0,0.0,0.0,-0.19463913 +136.4194130897522,0.22,0.0,0.0,0.0,-0.19463913 +136.42967104911804,0.21,0.0,0.0,0.0,-0.19463913 +136.4399709701538,0.21,0.0,0.0,0.0,-0.19463913 +136.44964003562927,0.19999999,0.0,0.0,0.0,-0.19463913 +136.45998406410217,0.19999999,0.0,0.0,0.0,-0.20203933 +136.4699671268463,0.19999999,0.0,0.0,0.0,-0.20203933 +136.47986912727356,0.19999999,0.0,0.0,0.0,-0.20203933 +136.48998498916626,0.19999999,0.0,0.0,0.0,-0.20203933 +136.49998593330383,0.19999999,0.0,0.0,0.0,-0.20203933 +136.50957202911377,0.19999999,0.0,0.0,0.0,-0.20203933 +136.5199761390686,0.19999999,0.0,0.0,0.0,-0.17428859 +136.52997612953186,0.19999999,0.0,0.0,0.0,-0.17428859 +136.53998804092407,0.19999999,0.0,0.0,0.0,-0.17428859 +136.54938912391663,0.19999999,0.0,0.0,0.0,-0.17428859 +136.55980801582336,0.19999999,0.0,0.0,0.0,-0.15023795 +136.56998705863953,0.19999999,0.0,0.0,0.0,-0.15023795 +136.57999300956726,0.19999999,0.0,0.0,0.0,-0.15023795 +136.590008020401,0.19,0.0,0.0,0.0,-0.15023795 +136.5996971130371,0.19,0.0,0.0,0.0,-0.15023795 +136.60998797416687,0.19,0.0,0.0,0.0,-0.029984765 +136.6193950176239,0.19,0.0,0.0,0.0,-0.029984765 +136.62999892234802,0.19,0.0,0.0,0.0,-0.029984765 +136.6395559310913,0.19,0.0,0.0,0.0,-0.029984765 +136.6499879360199,0.19,0.0,0.0,0.0,-0.029984765 +136.6593930721283,0.19,0.0,0.0,0.0,0.04401721 +136.66999912261963,0.19999999,0.0,0.0,0.0,0.04401721 +136.67993593215942,0.19999999,0.0,0.0,0.0,0.04401721 +136.68992400169373,0.19999999,0.0,0.0,0.0,0.04401721 +136.700012922287,0.19999999,0.0,0.0,0.0,0.04401721 +136.71000814437866,0.19999999,0.0,0.0,0.0,0.04586726 +136.71956992149353,0.19,0.0,0.0,0.0,0.04586726 +136.72977209091187,0.19,0.0,0.0,0.0,0.04586726 +136.74001908302307,0.19,0.0,0.0,0.0,0.04586726 +136.74988913536072,0.19,0.0,0.0,0.0,0.04586726 +136.76000213623047,0.17999999,0.0,0.0,0.0,0.09951867 +136.76987504959106,0.17999999,0.0,0.0,0.0,0.09951867 +136.78001809120178,0.17999999,0.0,0.0,0.0,0.09951867 +136.79002594947815,0.17999999,0.0,0.0,0.0,0.09951867 +136.80000400543213,0.17999999,0.0,0.0,0.0,0.09951867 +136.8095679283142,0.17999999,0.0,0.0,0.0,0.07176795 +136.81939601898193,0.17999999,0.0,0.0,0.0,0.07176795 +136.83001112937927,0.17,0.0,0.0,0.0,0.07176795 +136.84000706672668,0.17,0.0,0.0,0.0,0.07176795 +136.85002994537354,0.17,0.0,0.0,0.0,0.07176795 +136.85981392860413,0.17,0.0,0.0,0.0,0.062517695 +136.87002611160278,0.17,0.0,0.0,0.0,0.062517695 +136.88002610206604,0.17,0.0,0.0,0.0,0.062517695 +136.88947296142578,0.17,0.0,0.0,0.0,0.062517695 +136.9000039100647,0.17,0.0,0.0,0.0,0.062517695 +136.9100091457367,0.16,0.0,0.0,0.0,0.10506884 +136.91941213607788,0.16,0.0,0.0,0.0,0.10506884 +136.93001699447632,0.16,0.0,0.0,0.0,0.10506884 +136.94001603126526,0.16,0.0,0.0,0.0,0.10506884 +136.9497561454773,0.16,0.0,0.0,0.0,0.10506884 +136.96002292633057,0.16,0.0,0.0,0.0,0.13651967 +136.9699101448059,0.16,0.0,0.0,0.0,0.13651967 +136.9800159931183,0.16,0.0,0.0,0.0,0.13651967 +136.99002695083618,0.16,0.0,0.0,0.0,0.13651967 +137.00002908706665,0.16,0.0,0.0,0.0,0.13651967 +137.00939512252808,0.14999999,0.0,0.0,0.0,0.13651967 +137.0195391178131,0.14999999,0.0,0.0,0.0,0.16242035 +137.03001594543457,0.14999999,0.0,0.0,0.0,0.16242035 +137.03969597816467,0.14999999,0.0,0.0,0.0,0.16242035 +137.05002903938293,0.14999999,0.0,0.0,0.0,0.16242035 +137.06001806259155,0.14999999,0.0,0.0,0.0,0.17722073 +137.06941509246826,0.14,0.0,0.0,0.0,0.17722073 +137.08001804351807,0.14,0.0,0.0,0.0,0.17722073 +137.09002900123596,0.14,0.0,0.0,0.0,0.17722073 +137.099622964859,0.14,0.0,0.0,0.0,0.17722073 +137.10974502563477,0.13,0.0,0.0,0.0,0.16242035 +137.11938905715942,0.13,0.0,0.0,0.0,0.16242035 +137.12963008880615,0.12,0.0,0.0,0.0,0.16242035 +137.14005208015442,0.12,0.0,0.0,0.0,0.16242035 +137.14942598342896,0.12,0.0,0.0,0.0,0.16242035 +137.15947103500366,0.11,0.0,0.0,0.0,0.15872025 +137.17005705833435,0.11,0.0,0.0,0.0,0.15872025 +137.18005108833313,0.11,0.0,0.0,0.0,0.15872025 +137.18943095207214,0.11,0.0,0.0,0.0,0.15872025 +137.20003199577332,0.11,0.0,0.0,0.0,0.15872025 +137.20972895622253,0.099999994,0.0,0.0,0.0,0.16427042 +137.21952509880066,0.099999994,0.0,0.0,0.0,0.16427042 +137.2300329208374,0.099999994,0.0,0.0,0.0,0.16427042 +137.240070104599,0.099999994,0.0,0.0,0.0,0.16427042 +137.24940013885498,0.089999996,0.0,0.0,0.0,0.16427042 +137.26006412506104,0.089999996,0.0,0.0,0.0,0.15687022 +137.2700560092926,0.089999996,0.0,0.0,0.0,0.15687022 +137.27952408790588,0.08,0.0,0.0,0.0,0.15687022 +137.29005098342896,0.08,0.0,0.0,0.0,0.15687022 +137.29950094223022,0.07,0.0,0.0,0.0,0.15687022 +137.30949211120605,0.07,0.0,0.0,0.0,0.15687022 +137.31941199302673,0.06,0.0,0.0,0.0,0.1457699 +137.33004903793335,0.049999997,0.0,0.0,0.0,0.1457699 +137.33957505226135,0.049999997,0.0,0.0,0.0,0.1457699 +137.35007405281067,0.04,0.0,0.0,0.0,0.1457699 +137.36006999015808,0.04,0.0,0.0,0.0,0.14021976 +137.3694131374359,0.03,0.0,0.0,0.0,0.14021976 +137.3796510696411,0.03,0.0,0.0,0.0,0.14021976 +137.39005613327026,0.02,0.0,0.0,0.0,0.14021976 +137.3994460105896,0.02,0.0,0.0,0.0,0.14021976 +137.40962195396423,0.01,0.0,0.0,0.0,0.14021976 +137.4200849533081,0.01,0.0,0.0,0.0,0.16982053 +137.42941403388977,0.01,0.0,0.0,0.0,0.16982053 +137.44006609916687,0.0,0.0,0.0,0.0,0.16982053 +137.45008897781372,0.0,0.0,0.0,0.0,0.16982053 +137.4598469734192,0.0,0.75757575,0.75757575,0.0,0.1716706 +137.46946907043457,0.0,0.75757575,0.75757575,0.0,0.1716706 +137.47959995269775,0.0,1.5151515,1.5151515,0.0,0.1716706 +137.490070104599,0.0,1.5151515,1.5151515,0.0,0.1716706 +137.50008702278137,0.0,2.2727273,2.2727273,0.0,0.1716706 +137.50975012779236,0.0,2.2727273,2.2727273,0.0,0.17722073 +137.51940202713013,0.0,3.030303,3.030303,0.0,0.17722073 +137.53009700775146,0.0,3.787879,3.787879,0.0,0.17722073 +137.5397310256958,0.0,4.5454545,4.5454545,0.0,0.17722073 +137.55009007453918,0.0,5.3030305,5.3030305,0.0,0.17722073 +137.55969309806824,0.0,6.060606,6.060606,0.0,0.14947 +137.57009506225586,0.0,6.060606,6.060606,0.0,0.14947 +137.5800700187683,0.0,6.060606,6.060606,0.0,0.14947 +137.59008407592773,0.0,6.060606,6.060606,0.0,0.14947 +137.60008811950684,0.0,6.060606,6.060606,0.0,0.14947 +137.6097309589386,0.0,6.818182,6.818182,0.0,0.14021976 +137.61939311027527,0.0,6.818182,6.818182,0.0,0.14021976 +137.6300790309906,0.0,6.818182,6.818182,0.0,0.14021976 +137.6401059627533,0.0,6.818182,6.818182,0.0,0.14021976 +137.64986109733582,0.0,6.818182,6.818182,0.0,0.14021976 +137.66008496284485,0.0,6.818182,6.818182,0.0,0.1420698 +137.66983604431152,0.0,6.818182,6.818182,0.0,0.1420698 +137.6800980567932,0.0,6.060606,6.060606,0.0,0.1420698 +137.69011807441711,0.0,6.060606,6.060606,0.0,0.1420698 +137.69979810714722,0.0,6.060606,6.060606,0.0,0.1420698 +137.7100920677185,0.0,6.060606,6.060606,0.0,0.1531701 +137.71941614151,0.0,5.3030305,5.3030305,0.0,0.1531701 +137.7301309108734,0.0,5.3030305,5.3030305,0.0,0.1531701 +137.74009108543396,0.0,4.5454545,4.5454545,0.0,0.1531701 +137.75009107589722,0.0,4.5454545,4.5454545,0.0,0.1531701 +137.76008796691895,0.0,3.787879,3.787879,0.0,0.19017108 +137.7701280117035,0.0,3.787879,3.787879,0.0,0.19017108 +137.78010511398315,0.0,3.787879,3.787879,0.0,0.19017108 +137.78946113586426,0.0,3.030303,3.030303,0.0,0.19017108 +137.7999141216278,0.0,3.030303,3.030303,0.0,0.19017108 +137.80944991111755,0.0,3.030303,3.030303,0.0,0.21422173 +137.81945705413818,0.0,3.030303,3.030303,0.0,0.21422173 +137.83012413978577,0.0,2.2727273,2.2727273,0.0,0.21422173 +137.83960103988647,0.0,2.2727273,2.2727273,0.0,0.21422173 +137.85009908676147,0.0,1.5151515,1.5151515,0.0,0.21422173 +137.86010694503784,0.0,1.5151515,1.5151515,0.0,0.21052164 +137.86961007118225,0.0,1.5151515,1.5151515,0.0,0.21052164 +137.87987995147705,0.01,1.5151515,1.5151515,0.0,0.21052164 +137.8901560306549,0.01,0.75757575,0.75757575,0.0,0.21052164 +137.90010905265808,0.01,0.75757575,0.75757575,0.0,0.21052164 +137.91015005111694,0.01,0.75757575,0.75757575,0.0,0.22347198 +137.91942811012268,0.02,0.75757575,0.75757575,0.0,0.22347198 +137.92941308021545,0.02,0.75757575,0.75757575,0.0,0.22347198 +137.9401090145111,0.03,0.0,0.0,0.0,0.22347198 +137.9497790336609,0.03,0.0,0.0,0.0,0.22347198 +137.96012210845947,0.04,0.0,0.0,0.0,0.2586229 +137.96992897987366,0.04,0.0,0.0,0.0,0.2586229 +137.98010897636414,0.049999997,0.0,0.0,0.0,0.2586229 +137.99012899398804,0.049999997,0.0,0.0,0.0,0.2586229 +138.00012493133545,0.06,0.0,0.0,0.0,0.2586229 +138.00974106788635,0.06,0.0,0.0,0.0,0.20497148 +138.01940608024597,0.06,0.0,0.0,0.0,0.20497148 +138.02993392944336,0.07,0.0,0.0,0.0,0.20497148 +138.04013013839722,0.07,0.0,0.0,0.0,0.20497148 +138.04978895187378,0.08,0.0,0.0,0.0,0.20497148 +138.06000900268555,0.08,0.0,0.0,0.0,0.23272221 +138.07015895843506,0.08,0.0,0.0,0.0,0.23272221 +138.07967805862427,0.089999996,0.0,0.0,0.0,0.23272221 +138.09014797210693,0.089999996,0.0,0.0,0.0,0.23272221 +138.10013699531555,0.089999996,0.0,0.0,0.0,0.23272221 +138.10976004600525,0.099999994,0.0,0.0,0.0,0.22347198 +138.1194770336151,0.099999994,0.0,0.0,0.0,0.22347198 +138.12941312789917,0.099999994,0.0,0.0,0.0,0.22347198 +138.14013504981995,0.11,0.0,0.0,0.0,0.22347198 +138.15004897117615,0.11,0.0,0.0,0.0,0.22347198 +138.160138130188,0.11,0.0,0.0,0.0,0.21052164 +138.17016506195068,0.12,0.0,0.0,0.0,0.21052164 +138.1801359653473,0.12,0.0,0.0,0.0,0.21052164 +138.19014811515808,0.12,0.0,0.0,0.0,0.21052164 +138.1999020576477,0.12,0.0,0.0,0.0,0.21052164 +138.2097430229187,0.12,0.0,0.0,0.0,0.21422173 +138.22015595436096,0.12,0.0,0.0,0.0,0.21422173 +138.22964000701904,0.13,0.0,0.0,0.0,0.21422173 +138.240159034729,0.13,0.0,0.0,0.0,0.21422173 +138.2501621246338,0.13,0.0,0.0,0.0,0.21422173 +138.26014304161072,0.13,0.0,0.0,0.0,0.21052164 +138.2701699733734,0.13,0.0,0.0,0.0,0.21052164 +138.27954697608948,0.14,0.0,0.0,0.0,0.21052164 +138.28982210159302,0.14,0.0,0.0,0.0,0.21052164 +138.30014610290527,0.14,0.0,0.0,0.0,0.21052164 +138.30976510047913,0.14,0.0,0.0,0.0,0.22162192 +138.31953811645508,0.14,0.0,0.0,0.0,0.22162192 +138.33016300201416,0.14999999,0.0,0.0,0.0,0.22162192 +138.34014511108398,0.14999999,0.0,0.0,0.0,0.22162192 +138.35018801689148,0.14999999,0.0,0.0,0.0,0.22162192 +138.35950112342834,0.14999999,0.0,0.0,0.0,0.20682153 +138.3701949119568,0.14999999,0.0,0.0,0.0,0.20682153 +138.37977409362793,0.16,0.0,0.0,0.0,0.20682153 +138.39017796516418,0.16,0.0,0.0,0.0,0.20682153 +138.40017008781433,0.16,0.0,0.0,0.0,0.20682153 +138.40975403785706,0.16,0.0,0.0,0.0,0.25307277 +138.41943407058716,0.16,0.0,0.0,0.0,0.25307277 +138.43018507957458,0.16,0.0,0.0,0.0,0.25307277 +138.4396951198578,0.16,0.0,0.0,0.0,0.25307277 +138.4494550228119,0.17,0.0,0.0,0.0,0.25307277 +138.46014094352722,0.17,0.0,0.0,0.0,0.21052164 +138.4697470664978,0.17,0.0,0.0,0.0,0.21052164 +138.47950100898743,0.17,0.0,0.0,0.0,0.21052164 +138.490168094635,0.17,0.0,0.0,0.0,0.21052164 +138.50015711784363,0.17,0.0,0.0,0.0,0.21052164 +138.50975513458252,0.17,0.0,0.0,0.0,0.20497148 +138.51945996284485,0.17,0.0,0.0,0.0,0.20497148 +138.53020000457764,0.17,0.0,0.0,0.0,0.20497148 +138.54017305374146,0.17,0.0,0.0,0.0,0.20497148 +138.55019211769104,0.17,0.0,0.0,0.0,0.20497148 +138.5597050189972,0.17,0.0,0.0,0.0,0.20497148 +138.56966996192932,0.17,0.0,0.0,0.0,0.20497148 +138.5795271396637,0.17,0.0,0.0,0.0,0.20497148 +138.5902099609375,0.17,0.0,0.0,0.0,0.20497148 +138.60002994537354,0.17,0.0,0.0,0.0,0.20497148 +138.60960507392883,0.17,0.0,0.0,0.0,0.19572124 +138.6194131374359,0.17,0.0,0.0,0.0,0.19572124 +138.6302011013031,0.17,0.0,0.0,0.0,0.19572124 +138.63984203338623,0.17,0.0,0.0,0.0,0.19572124 +138.64965510368347,0.17,0.0,0.0,0.0,0.19572124 +138.65986800193787,0.17,0.0,0.0,0.0,0.20682153 +138.6702060699463,0.17,0.0,0.0,0.0,0.20682153 +138.68017292022705,0.17,0.0,0.0,0.0,0.20682153 +138.6902050971985,0.17,0.0,0.0,0.0,0.20682153 +138.69941592216492,0.17,0.0,0.0,0.0,0.20682153 +138.7096221446991,0.17,0.0,0.0,0.0,0.19387117 +138.71946001052856,0.17,0.0,0.0,0.0,0.19387117 +138.7298629283905,0.17,0.0,0.0,0.0,0.19387117 +138.7396011352539,0.17,0.0,0.0,0.0,0.19387117 +138.75007891654968,0.17,0.0,0.0,0.0,0.19387117 +138.75988698005676,0.17,0.0,0.0,0.0,0.20127137 +138.77020812034607,0.17,0.0,0.0,0.0,0.20127137 +138.78018498420715,0.17,0.0,0.0,0.0,0.20127137 +138.78949403762817,0.17,0.0,0.0,0.0,0.20127137 +138.80020594596863,0.17,0.0,0.0,0.0,0.20127137 +138.810231924057,0.17,0.0,0.0,0.0,0.18092082 +138.81944513320923,0.17,0.0,0.0,0.0,0.18092082 +138.82951092720032,0.16,0.0,0.0,0.0,0.18092082 +138.83969807624817,0.16,0.0,0.0,0.0,0.18092082 +138.849534034729,0.16,0.0,0.0,0.0,0.18092082 +138.86019206047058,0.16,0.0,0.0,0.0,0.1716706 +138.8702290058136,0.16,0.0,0.0,0.0,0.1716706 +138.87954711914062,0.16,0.0,0.0,0.0,0.1716706 +138.8902130126953,0.16,0.0,0.0,0.0,0.1716706 +138.9002239704132,0.16,0.0,0.0,0.0,0.1716706 +138.91023302078247,0.16,0.0,0.0,0.0,0.14947 +138.91942811012268,0.16,0.0,0.0,0.0,0.14947 +138.92955803871155,0.16,0.0,0.0,0.0,0.14947 +138.93947505950928,0.16,0.0,0.0,0.0,0.14947 +138.950257062912,0.17,0.0,0.0,0.0,0.14947 +138.960196018219,0.17,0.0,0.0,0.0,0.1420698 +138.9696319103241,0.17,0.0,0.0,0.0,0.1420698 +138.98020696640015,0.17,0.0,0.0,0.0,0.1420698 +138.99023699760437,0.17,0.0,0.0,0.0,0.1420698 +139.00019598007202,0.17999999,0.0,0.0,0.0,0.1420698 +139.00942397117615,0.17999999,0.0,0.0,0.0,0.1420698 +139.01942205429077,0.17999999,0.0,0.0,0.0,0.1346696 +139.02962493896484,0.19,0.0,0.0,0.0,0.1346696 +139.04022097587585,0.19,0.0,0.0,0.0,0.1346696 +139.05024814605713,0.19999999,0.0,0.0,0.0,0.1346696 +139.05970191955566,0.19999999,0.0,0.0,0.0,0.1383697 +139.07022309303284,0.19999999,0.0,0.0,0.0,0.1383697 +139.08022809028625,0.19999999,0.0,0.0,0.0,0.1383697 +139.0899031162262,0.21,0.0,0.0,0.0,0.1383697 +139.09992814064026,0.21,0.0,0.0,0.0,0.1383697 +139.10975909233093,0.21,0.0,0.0,0.0,0.12726942 +139.11979007720947,0.21,0.0,0.0,0.0,0.12726942 +139.1294310092926,0.21,0.0,0.0,0.0,0.12726942 +139.13950490951538,0.22,0.0,0.0,0.0,0.12726942 +139.1498100757599,0.22,0.0,0.0,0.0,0.12726942 +139.160227060318,0.22,0.0,0.0,0.0,0.11986922 +139.17006301879883,0.22,0.0,0.0,0.0,0.11986922 +139.18022799491882,0.22,0.0,0.0,0.0,0.11986922 +139.19022512435913,0.22,0.0,0.0,0.0,0.11986922 +139.20024013519287,0.22,0.0,0.0,0.0,0.11986922 +139.20950508117676,0.22,0.0,0.0,0.0,0.11986922 +139.2194380760193,0.22,0.0,0.0,0.0,0.116169125 +139.23005414009094,0.22,0.0,0.0,0.0,0.116169125 +139.23984003067017,0.22,0.0,0.0,0.0,0.116169125 +139.25024008750916,0.22,0.0,0.0,0.0,0.116169125 +139.25953793525696,0.22,0.0,0.0,0.0,0.07176795 +139.27023601531982,0.22,0.0,0.0,0.0,0.07176795 +139.2802541255951,0.22,0.0,0.0,0.0,0.07176795 +139.2894790172577,0.22,0.0,0.0,0.0,0.07176795 +139.3001730442047,0.22,0.0,0.0,0.0,0.07176795 +139.3097689151764,0.22,0.0,0.0,0.0,0.05696755 +139.31941413879395,0.22,0.0,0.0,0.0,0.05696755 +139.32993698120117,0.22,0.0,0.0,0.0,0.05696755 +139.34025692939758,0.22,0.0,0.0,0.0,0.05696755 +139.3502380847931,0.22,0.0,0.0,0.0,0.05696755 +139.36017394065857,0.22,0.0,0.0,0.0,0.05696755 +139.3702471256256,0.22,0.0,0.0,0.0,0.05696755 +139.38024592399597,0.22,0.0,0.0,0.0,0.05696755 +139.39025712013245,0.22,0.0,0.0,0.0,0.05696755 +139.39940690994263,0.22,0.0,0.0,0.0,0.05696755 +139.4096200466156,0.22,0.0,0.0,0.0,0.05696755 +139.41939496994019,0.22,0.0,0.0,0.0,0.051417407 +139.43025708198547,0.22,0.0,0.0,0.0,0.051417407 +139.44025111198425,0.22,0.0,0.0,0.0,0.051417407 +139.45013093948364,0.22,0.0,0.0,0.0,0.051417407 +139.46024799346924,0.22,0.0,0.0,0.0,0.034766953 +139.47025394439697,0.21,0.0,0.0,0.0,0.034766953 +139.48026299476624,0.21,0.0,0.0,0.0,0.034766953 +139.48960614204407,0.21,0.0,0.0,0.0,0.034766953 +139.49955105781555,0.21,0.0,0.0,0.0,0.034766953 +139.50975513458252,0.19999999,0.0,0.0,0.0,-0.002234026 +139.51943802833557,0.19999999,0.0,0.0,0.0,-0.002234026 +139.5302700996399,0.19999999,0.0,0.0,0.0,-0.002234026 +139.540030002594,0.19999999,0.0,0.0,0.0,-0.002234026 +139.5502541065216,0.19,0.0,0.0,0.0,-0.002234026 +139.5602569580078,0.19,0.0,0.0,0.0,-0.013334316 +139.5702760219574,0.19,0.0,0.0,0.0,-0.013334316 +139.5797040462494,0.17999999,2.2727273,2.2727273,0.0,-0.013334316 +139.5902600288391,0.17999999,6.060606,6.060606,0.0,-0.013334316 +139.6001000404358,0.17,9.848485,9.848485,0.0,-0.013334316 +139.60976910591125,0.16,13.636364,13.636364,0.0,-0.011484267 +139.61939191818237,0.14999999,16.666668,16.666668,0.0,-0.011484267 +139.62997198104858,0.14,20.454544,20.454544,0.0,-0.011484267 +139.64026713371277,0.13,23.484848,23.484848,0.0,-0.011484267 +139.65027713775635,0.12,28.030302,28.030302,0.0,-0.011484267 +139.65986108779907,0.11,33.333336,33.333336,0.0,-0.009634218 +139.67004704475403,0.11,38.636364,38.636364,0.0,-0.009634218 +139.67996907234192,0.099999994,43.939392,43.939392,0.009372071,-0.009634218 +139.69014692306519,0.089999996,49.242424,49.242424,0.018744143,-0.009634218 +139.70028805732727,0.08,53.78788,53.78788,0.028116215,-0.009634218 +139.71002912521362,0.07,58.333332,58.333332,0.037488285,-0.009634218 +139.71943593025208,0.07,61.363636,61.363636,0.046860356,-0.009634218 +139.7302839756012,0.06,64.393936,64.393936,0.05623243,-0.009634218 +139.74000000953674,0.049999997,68.18182,68.18182,0.0656045,-0.009634218 +139.74950313568115,0.049999997,59.090908,59.090908,0.07497657,-0.009634218 +139.76028108596802,0.04,43.939392,43.939392,0.08434864,-0.03553491 +139.77024507522583,0.04,31.818182,31.818182,0.09372071,-0.03553491 +139.78020811080933,0.03,21.969696,21.969696,0.09372071,-0.03553491 +139.7902970314026,0.02,23.484848,23.484848,0.10309278,-0.03553491 +139.80031299591064,0.02,28.78788,28.78788,0.11246486,-0.03553491 +139.80983591079712,0.02,33.333336,33.333336,0.12183693,-0.015184363 +139.81946110725403,0.01,38.636364,38.636364,0.131209,-0.015184363 +139.8302071094513,0.01,43.939392,43.939392,0.131209,-0.015184363 +139.8403000831604,0.01,50.0,50.0,0.14058107,-0.015184363 +139.85029006004333,0.0,55.30303,55.30303,0.14058107,-0.015184363 +139.8594470024109,0.0,61.363636,61.363636,0.14058107,-0.009634218 +139.8702940940857,0.0,65.90909,65.90909,0.14995314,-0.009634218 +139.87959003448486,0.0,65.90909,65.90909,0.15932521,-0.009634218 +139.89030694961548,0.0,57.57576,57.57576,0.15932521,-0.009634218 +139.89978694915771,0.0,49.242424,49.242424,0.15932521,-0.009634218 +139.9102919101715,0.0,43.939392,43.939392,0.15932521,-0.020734508 +139.92030310630798,0.0,40.90909,40.90909,0.16869728,-0.020734508 +139.93029308319092,0.0,38.636364,38.636364,0.16869728,-0.020734508 +139.94031310081482,0.0,37.121216,37.121216,0.17806935,-0.020734508 +139.9496431350708,0.0,36.363636,36.363636,0.17806935,-0.020734508 +139.95944595336914,0.0,34.848484,34.848484,0.18744142,-0.020734508 +139.97029304504395,0.0,34.09091,34.09091,0.18744142,-0.020734508 +139.97946405410767,0.0,32.575756,32.575756,0.20618556,-0.020734508 +139.9897141456604,0.0,32.575756,32.575756,0.20618556,-0.020734508 +139.99990701675415,0.0,33.333336,33.333336,0.21555763,-0.020734508 +140.0097050666809,0.0,34.848484,34.848484,0.22492972,0.038467064 +140.01944708824158,0.0,37.121216,37.121216,0.23430179,0.038467064 +140.02961802482605,0.0,38.636364,38.636364,0.23430179,0.038467064 +140.03985500335693,0.0,40.151516,40.151516,0.24367386,0.038467064 +140.05032205581665,0.0,41.666668,41.666668,0.24367386,0.038467064 +140.06031394004822,0.0,42.424244,42.424244,0.24367386,-0.03183481 +140.06952595710754,0.0,42.424244,42.424244,0.25304592,-0.03183481 +140.07964706420898,0.0,42.424244,42.424244,0.25304592,-0.03183481 +140.0897181034088,0.0,43.939392,43.939392,0.25304592,-0.03183481 +140.10032391548157,0.0,45.454548,45.454548,0.25304592,-0.03183481 +140.10976099967957,0.0,47.727272,47.727272,0.262418,-0.009634218 +140.1194190979004,0.0,50.0,50.0,0.262418,-0.009634218 +140.13003611564636,0.0,51.515152,51.515152,0.262418,-0.009634218 +140.13983297348022,0.0,52.272724,52.272724,0.262418,-0.009634218 +140.14943408966064,0.0,53.030304,53.030304,0.262418,-0.009634218 +140.16030502319336,0.0,52.272724,52.272724,0.262418,-0.015184363 +140.16955995559692,0.0,52.272724,52.272724,0.27179006,-0.015184363 +140.1803240776062,0.0,52.272724,52.272724,0.27179006,-0.015184363 +140.19031691551208,0.0,53.030304,53.030304,0.27179006,-0.015184363 +140.200336933136,0.0,53.78788,53.78788,0.28116214,-0.015184363 +140.2097930908203,0.0,55.30303,55.30303,0.28116214,-0.024434604 +140.21943593025208,0.0,56.060604,56.060604,0.2905342,-0.024434604 +140.2298080921173,0.0,56.060604,56.060604,0.2905342,-0.024434604 +140.23952412605286,0.0,56.060604,56.060604,0.2905342,-0.024434604 +140.25032091140747,0.0,56.060604,56.060604,0.30927837,-0.024434604 +140.2595329284668,0.0,54.545456,54.545456,0.29990628,-0.009634218 +140.26992011070251,0.0,53.78788,53.78788,0.30927837,-0.009634218 +140.2803430557251,0.0,53.030304,53.030304,0.30927837,-0.009634218 +140.2903289794922,0.0,53.78788,53.78788,0.30927837,-0.009634218 +140.3003430366516,0.0,53.78788,53.78788,0.30927837,-0.009634218 +140.30978107452393,0.0,54.545456,54.545456,0.30927837,-0.020734508 +140.3194661140442,0.0,54.545456,54.545456,0.29990628,-0.020734508 +140.32956194877625,0.0,54.545456,54.545456,0.29990628,-0.020734508 +140.3403549194336,0.0,53.78788,53.78788,0.29990628,-0.020734508 +140.34945797920227,0.0,53.030304,53.030304,0.29990628,-0.020734508 +140.36034607887268,0.0,51.515152,51.515152,0.29990628,-0.015184363 +140.37035202980042,0.0,50.0,50.0,0.2905342,-0.015184363 +140.38035702705383,0.0,49.242424,49.242424,0.28116214,-0.015184363 +140.39010000228882,0.0,49.242424,49.242424,0.28116214,-0.015184363 +140.3999741077423,0.0,49.242424,49.242424,0.28116214,-0.015184363 +140.4096279144287,0.0,49.242424,49.242424,0.2905342,-0.015184363 +140.4194700717926,0.0,49.242424,49.242424,0.28116214,-0.013334316 +140.4303479194641,0.0,49.242424,49.242424,0.27179006,-0.013334316 +140.4393961429596,0.0,48.484848,48.484848,0.27179006,-0.013334316 +140.4503481388092,0.0,48.484848,48.484848,0.27179006,-0.013334316 +140.46034812927246,0.0,46.969696,46.969696,0.27179006,-0.011484267 +140.47023701667786,0.0,45.454548,45.454548,0.27179006,-0.011484267 +140.47998714447021,0.0,43.939392,43.939392,0.28116214,-0.011484267 +140.49035596847534,0.0,42.424244,42.424244,0.28116214,-0.011484267 +140.49956703186035,0.0,42.424244,42.424244,0.27179006,-0.011484267 +140.50969910621643,0.0,42.424244,42.424244,0.27179006,-0.011484267 +140.5194480419159,0.0,42.424244,42.424244,0.27179006,-0.0077841706 +140.53009510040283,0.0,42.424244,42.424244,0.25304592,-0.0077841706 +140.54035210609436,0.0,41.666668,41.666668,0.262418,-0.0077841706 +140.55036997795105,0.0,41.666668,41.666668,0.262418,-0.0077841706 +140.56037306785583,0.0,40.90909,40.90909,0.27179006,-0.013334316 +140.57036304473877,0.0,39.39394,39.39394,0.27179006,-0.013334316 +140.58037400245667,0.0,37.878788,37.878788,0.27179006,-0.013334316 +140.58967804908752,0.0,36.363636,36.363636,0.262418,-0.013334316 +140.5997531414032,0.0,34.848484,34.848484,0.262418,-0.013334316 +140.60979104042053,0.0,34.09091,34.09091,0.262418,-0.011484267 +140.6194670200348,0.0,34.09091,34.09091,0.262418,-0.011484267 +140.6303689479828,0.0,34.09091,34.09091,0.262418,-0.011484267 +140.6394591331482,0.0,34.09091,34.09091,0.25304592,-0.011484267 +140.6503610610962,0.0,34.09091,34.09091,0.25304592,-0.011484267 +140.66013193130493,0.0,34.09091,34.09091,0.262418,-0.022584556 +140.67036199569702,0.0,33.333336,33.333336,0.262418,-0.022584556 +140.679829120636,0.0,32.575756,32.575756,0.25304592,-0.022584556 +140.68983006477356,0.0,31.818182,31.818182,0.25304592,-0.022584556 +140.70021104812622,0.0,30.303032,30.303032,0.262418,-0.022584556 +140.7097189426422,0.0,28.78788,28.78788,0.262418,-0.024434604 +140.71944499015808,0.0,27.272728,27.272728,0.25304592,-0.024434604 +140.73037195205688,0.0,26.515152,26.515152,0.25304592,-0.024434604 +140.74036693572998,0.0,25.757576,25.757576,0.25304592,-0.024434604 +140.75037598609924,0.0,25.757576,25.757576,0.24367386,-0.024434604 +140.7603781223297,0.0,26.515152,26.515152,0.24367386,-0.024434604 +140.76971101760864,0.0,26.515152,26.515152,0.25304592,-0.024434604 +140.77991795539856,0.0,27.272728,27.272728,0.25304592,-0.024434604 +140.78945207595825,0.0,27.272728,27.272728,0.25304592,-0.024434604 +140.79974794387817,0.0,27.272728,27.272728,0.24367386,-0.024434604 +140.81037402153015,0.0,26.515152,26.515152,0.25304592,-0.022584556 +140.82039499282837,0.0,26.515152,26.515152,0.25304592,-0.022584556 +140.82979202270508,0.0,25.0,25.0,0.24367386,-0.022584556 +140.8394639492035,0.0,23.484848,23.484848,0.25304592,-0.022584556 +140.85037302970886,0.0,22.727274,22.727274,0.24367386,-0.022584556 +140.85982012748718,0.0,25.0,25.0,0.24367386,-0.024434604 +140.86950206756592,0.0,30.303032,30.303032,0.24367386,-0.024434604 +140.87991213798523,0.0,35.60606,35.60606,0.24367386,-0.024434604 +140.89038109779358,0.0,40.90909,40.90909,0.24367386,-0.024434604 +140.90038990974426,0.0,46.21212,46.21212,0.24367386,-0.024434604 +140.91039991378784,0.0,51.515152,51.515152,0.24367386,-0.015184363 +140.919527053833,0.0,56.818184,56.818184,0.25304592,-0.015184363 +140.93039798736572,0.0,60.606064,60.606064,0.24367386,-0.015184363 +140.94038200378418,0.0,65.15151,65.15151,0.24367386,-0.015184363 +140.9503879547119,0.0,68.18182,68.18182,0.25304592,-0.015184363 +140.95969796180725,0.0,65.15151,65.15151,0.24367386,-0.026284654 +140.96941995620728,0.0,61.363636,61.363636,0.24367386,-0.026284654 +140.97984313964844,0.0,56.818184,56.818184,0.24367386,-0.026284654 +140.99038791656494,0.0,52.272724,52.272724,0.23430179,-0.026284654 +141.00041007995605,0.0,47.727272,47.727272,0.22492972,-0.026284654 +141.0101010799408,0.0,44.696968,44.696968,0.23430179,-0.026284654 +141.01944303512573,0.0,41.666668,41.666668,0.23430179,-0.026284654 +141.0296790599823,0.0,39.39394,39.39394,0.23430179,-0.026284654 +141.04021501541138,0.0,37.878788,37.878788,0.24367386,-0.026284654 +141.0499029159546,0.0,36.363636,36.363636,0.24367386,-0.026284654 +141.0600130558014,0.0,34.848484,34.848484,0.24367386,-0.022584556 +141.07041192054749,0.0,34.09091,34.09091,0.23430179,-0.022584556 +141.08040404319763,0.0,32.575756,32.575756,0.23430179,-0.022584556 +141.09040904045105,0.0,31.060606,31.060606,0.23430179,-0.022584556 +141.1003589630127,0.0,30.303032,30.303032,0.22492972,-0.022584556 +141.10978507995605,0.0,28.78788,28.78788,0.22492972,-0.03183481 +141.1194610595703,0.0,27.272728,27.272728,0.21555763,-0.03183481 +141.13040709495544,0.0,25.757576,25.757576,0.22492972,-0.03183481 +141.14008712768555,0.0,23.484848,23.484848,0.22492972,-0.03183481 +141.14997792243958,0.0,22.727274,22.727274,0.22492972,-0.03183481 +141.16031694412231,0.0,26.515152,26.515152,0.22492972,-0.029984765 +141.17041492462158,0.0,30.303032,30.303032,0.22492972,-0.029984765 +141.1794319152832,0.0,34.848484,34.848484,0.22492972,-0.029984765 +141.19042301177979,0.0,39.39394,39.39394,0.21555763,-0.029984765 +141.20041298866272,0.0,43.939392,43.939392,0.22492972,-0.029984765 +141.2094430923462,0.0,48.484848,48.484848,0.22492972,-0.029984765 +141.21944499015808,0.0,53.030304,53.030304,0.22492972,-0.011484267 +141.23024797439575,0.0,56.818184,56.818184,0.22492972,-0.011484267 +141.23948097229004,0.0,60.606064,60.606064,0.23430179,-0.011484267 +141.25042605400085,0.0,63.636364,63.636364,0.23430179,-0.011484267 +141.2604169845581,0.0,66.66667,66.66667,0.22492972,-0.013334316 +141.26955795288086,0.0,67.42425,67.42425,0.23430179,-0.013334316 +141.28042912483215,0.0,62.121212,62.121212,0.23430179,-0.013334316 +141.28964805603027,0.0,57.57576,57.57576,0.23430179,-0.013334316 +141.30044603347778,0.0,53.030304,53.030304,0.22492972,-0.013334316 +141.3095269203186,0.0,48.484848,48.484848,0.22492972,-0.013334316 +141.31946110725403,0.0,43.181816,43.181816,0.23430179,-0.026284654 +141.32955813407898,0.0,38.636364,38.636364,0.23430179,-0.026284654 +141.34042692184448,0.0,34.848484,34.848484,0.23430179,-0.026284654 +141.3504159450531,0.0,31.060606,31.060606,0.23430179,-0.026284654 +141.36043906211853,0.0,28.030302,28.030302,0.23430179,-0.033684865 +141.3698170185089,0.0,25.757576,25.757576,0.23430179,-0.033684865 +141.38044691085815,0.0,23.484848,23.484848,0.22492972,-0.033684865 +141.39044094085693,0.0,22.727274,22.727274,0.23430179,-0.033684865 +141.40043091773987,0.0,27.272728,27.272728,0.23430179,-0.033684865 +141.40979099273682,0.0,31.818182,31.818182,0.23430179,-0.020734508 +141.4194040298462,0.0,36.363636,36.363636,0.22492972,-0.020734508 +141.43043994903564,0.0,40.90909,40.90909,0.22492972,-0.020734508 +141.4395899772644,0.0,44.696968,44.696968,0.22492972,-0.020734508 +141.45003199577332,0.0,48.484848,48.484848,0.21555763,-0.020734508 +141.46045303344727,0.0,51.515152,51.515152,0.21555763,-0.020734508 +141.47042298316956,0.0,55.30303,55.30303,0.21555763,-0.020734508 +141.47983598709106,0.0,58.333332,58.333332,0.22492972,-0.020734508 +141.49043703079224,0.0,60.606064,60.606064,0.21555763,-0.020734508 +141.50044012069702,0.0,62.878788,62.878788,0.22492972,-0.020734508 +141.50951409339905,0.0,65.15151,65.15151,0.21555763,-0.020734508 +141.51945400238037,0.0,65.90909,65.90909,0.21555763,-0.013334316 +141.53021812438965,0.0,67.42425,67.42425,0.21555763,-0.013334316 +141.54004502296448,0.0,66.66667,66.66667,0.21555763,-0.013334316 +141.55044412612915,0.0,60.606064,60.606064,0.20618556,-0.013334316 +141.56047201156616,0.0,53.030304,53.030304,0.20618556,-0.00038397792 +141.56967496871948,0.0,47.727272,47.727272,0.21555763,-0.00038397792 +141.58044600486755,0.0,42.424244,42.424244,0.20618556,-0.00038397792 +141.59044003486633,0.0,37.878788,37.878788,0.20618556,-0.00038397792 +141.59960508346558,0.0,34.09091,34.09091,0.20618556,-0.00038397792 +141.60978507995605,0.0,31.060606,31.060606,0.20618556,-0.0077841706 +141.6204469203949,0.0,28.030302,28.030302,0.20618556,-0.0077841706 +141.63046312332153,0.0,25.757576,25.757576,0.21555763,-0.0077841706 +141.64044499397278,0.0,24.242424,24.242424,0.20618556,-0.0077841706 +141.65044403076172,0.0,21.969696,21.969696,0.1968135,-0.0077841706 +141.66005110740662,0.0,25.757576,25.757576,0.1968135,-0.0077841706 +141.6704409122467,0.0,30.303032,30.303032,0.1968135,-0.0077841706 +141.67980813980103,0.0,34.848484,34.848484,0.1968135,-0.0077841706 +141.6894760131836,0.0,38.636364,38.636364,0.1968135,-0.0077841706 +141.69959211349487,0.0,42.424244,42.424244,0.20618556,-0.0077841706 +141.709459066391,0.0,46.21212,46.21212,0.20618556,-0.0077841706 +141.71946907043457,0.0,49.242424,49.242424,0.1968135,-0.00038397792 +141.7304539680481,0.0,52.272724,52.272724,0.20618556,-0.00038397792 +141.74045610427856,0.0,54.545456,54.545456,0.1968135,-0.00038397792 +141.7504689693451,0.0,56.818184,56.818184,0.20618556,-0.00038397792 +141.76047801971436,0.0,58.333332,58.333332,0.1968135,0.01811652 +141.76945996284485,0.0,59.090908,59.090908,0.1968135,0.01811652 +141.77963399887085,0.0,59.848484,59.848484,0.1968135,0.01811652 +141.78939604759216,0.0,60.606064,60.606064,0.1968135,0.01811652 +141.80047798156738,0.0,61.363636,61.363636,0.20618556,0.01811652 +141.81047010421753,0.0,61.363636,61.363636,0.20618556,-0.0077841706 +141.81945991516113,0.0,61.363636,61.363636,0.20618556,-0.0077841706 +141.82980799674988,0.0,60.606064,60.606064,0.21555763,-0.0077841706 +141.84047412872314,0.0,59.848484,59.848484,0.21555763,-0.0077841706 +141.85055899620056,0.0,59.090908,59.090908,0.20618556,-0.0077841706 +141.85981702804565,0.0,58.333332,58.333332,0.20618556,-0.0077841706 +141.869637966156,0.0,56.818184,56.818184,0.20618556,-0.0077841706 +141.87959003448486,0.0,55.30303,55.30303,0.1968135,-0.0077841706 +141.889545917511,0.0,54.545456,54.545456,0.1968135,-0.0077841706 +141.90049600601196,0.0,53.030304,53.030304,0.18744142,-0.0077841706 +141.91047310829163,0.0,51.515152,51.515152,0.18744142,0.04401721 +141.91948699951172,0.0,49.242424,49.242424,0.18744142,0.04401721 +141.9305019378662,0.0,48.484848,48.484848,0.18744142,0.04401721 +141.93999195098877,0.0,46.969696,46.969696,0.17806935,0.04401721 +141.95048308372498,0.0,45.454548,45.454548,0.17806935,0.04401721 +141.95960593223572,0.0,43.939392,43.939392,0.16869728,0.02921681 +141.96977496147156,0.0,43.181816,43.181816,0.15932521,0.02921681 +141.9804971218109,0.0,41.666668,41.666668,0.15932521,0.02921681 +141.9904820919037,0.0,40.151516,40.151516,0.15932521,0.02921681 +142.0004940032959,0.0,39.39394,39.39394,0.14995314,0.02921681 +142.00975394248962,0.0,38.636364,38.636364,0.14995314,0.01811652 +142.01945900917053,0.0,37.878788,37.878788,0.14058107,0.01811652 +142.03048396110535,0.0,37.121216,37.121216,0.14058107,0.01811652 +142.04051613807678,0.0,36.363636,36.363636,0.14058107,0.01811652 +142.0495719909668,0.0,35.60606,35.60606,0.14058107,0.01811652 +142.05997705459595,0.0,34.848484,34.848484,0.14058107,-0.029984765 +142.0698070526123,0.0,34.09091,34.09091,0.14058107,-0.029984765 +142.08050394058228,0.0,32.575756,32.575756,0.131209,-0.029984765 +142.08994507789612,0.0,31.818182,31.818182,0.131209,-0.029984765 +142.1003339290619,0.0,31.060606,31.060606,0.131209,-0.029984765 +142.1105079650879,0.0,30.303032,30.303032,0.12183693,-0.026284654 +142.11946892738342,0.0,29.545454,29.545454,0.12183693,-0.026284654 +142.12966108322144,0.0,28.78788,28.78788,0.11246486,-0.026284654 +142.13956999778748,0.0,28.78788,28.78788,0.11246486,-0.026284654 +142.15019512176514,0.0,28.030302,28.030302,0.11246486,-0.026284654 +142.15994310379028,0.0,27.272728,27.272728,0.10309278,-0.009634218 +142.17050409317017,0.0,27.272728,27.272728,0.10309278,-0.009634218 +142.18049907684326,0.0,27.272728,27.272728,0.09372071,-0.009634218 +142.1894121170044,0.0,27.272728,27.272728,0.08434864,-0.009634218 +142.20052194595337,0.0,27.272728,27.272728,0.08434864,-0.009634218 +142.20980596542358,0.0,28.030302,28.030302,0.08434864,0.0014660703 +142.2200539112091,0.0,28.030302,28.030302,0.08434864,0.0014660703 +142.22947192192078,0.0,28.030302,28.030302,0.08434864,0.0014660703 +142.23959302902222,0.0,28.78788,28.78788,0.08434864,0.0014660703 +142.24941396713257,0.0,28.78788,28.78788,0.08434864,0.0014660703 +142.26052904129028,0.0,29.545454,29.545454,0.08434864,-0.002234026 +142.26961302757263,0.0,29.545454,29.545454,0.07497657,-0.002234026 +142.28053092956543,0.0,30.303032,30.303032,0.08434864,-0.002234026 +142.29051995277405,0.0,30.303032,30.303032,0.07497657,-0.002234026 +142.30050110816956,0.0,31.060606,31.060606,0.07497657,-0.002234026 +142.30979013442993,0.0,31.060606,31.060606,0.07497657,-0.011484267 +142.31951093673706,0.0,31.060606,31.060606,0.07497657,-0.011484267 +142.32945108413696,0.0,31.818182,31.818182,0.07497657,-0.011484267 +142.33964204788208,0.0,31.818182,31.818182,0.07497657,-0.011484267 +142.3498239517212,0.0,31.818182,31.818182,0.07497657,-0.011484267 +142.3605170249939,0.0,31.818182,31.818182,0.07497657,-0.013334316 +142.37008094787598,0.0,31.818182,31.818182,0.07497657,-0.013334316 +142.38052606582642,0.0,31.818182,31.818182,0.0656045,-0.013334316 +142.39052605628967,0.0,31.818182,31.818182,0.05623243,-0.013334316 +142.4001190662384,0.0,31.818182,31.818182,0.0656045,-0.013334316 +142.40947794914246,0.0,31.818182,31.818182,0.0656045,-0.013334316 +142.41951608657837,0.0,31.818182,31.818182,0.0656045,0.021816617 +142.42946791648865,0.0,31.818182,31.818182,0.07497657,0.021816617 +142.44051909446716,0.0,31.818182,31.818182,0.07497657,0.021816617 +142.45053100585938,0.0,31.818182,31.818182,0.08434864,0.021816617 +142.46012592315674,0.0,31.818182,31.818182,0.08434864,0.01811652 +142.47054314613342,0.0,31.818182,31.818182,0.08434864,0.01811652 +142.48029398918152,0.0,31.060606,31.060606,0.07497657,0.01811652 +142.4904170036316,0.0,31.060606,31.060606,0.07497657,0.01811652 +142.49942803382874,0.0,31.818182,31.818182,0.08434864,0.01811652 +142.5096299648285,0.0,31.818182,31.818182,0.08434864,0.01811652 +142.52008509635925,0.0,31.818182,31.818182,0.08434864,-0.024434604 +142.52951002120972,0.0,31.818182,31.818182,0.08434864,-0.024434604 +142.5394730567932,0.0,31.818182,31.818182,0.08434864,-0.024434604 +142.55031204223633,0.0,31.818182,31.818182,0.09372071,-0.024434604 +142.5605549812317,0.0,31.818182,31.818182,0.08434864,-0.00038397792 +142.56978607177734,0.0,32.575756,32.575756,0.08434864,-0.00038397792 +142.58039212226868,0.0,32.575756,32.575756,0.09372071,-0.00038397792 +142.58939599990845,0.0,33.333336,33.333336,0.09372071,-0.00038397792 +142.59974002838135,0.0,34.09091,34.09091,0.09372071,-0.00038397792 +142.6096260547638,0.0,34.09091,34.09091,0.09372071,-0.00038397792 +142.62055206298828,0.0,34.848484,34.848484,0.09372071,0.0070162313 +142.629487991333,0.0,35.60606,35.60606,0.09372071,0.0070162313 +142.6404390335083,0.0,37.121216,37.121216,0.09372071,0.0070162313 +142.65056490898132,0.0,37.878788,37.878788,0.09372071,0.0070162313 +142.65959000587463,0.0,38.636364,38.636364,0.09372071,0.0014660703 +142.6703851222992,0.0,39.39394,39.39394,0.09372071,0.0014660703 +142.67959904670715,0.0,40.90909,40.90909,0.10309278,0.0014660703 +142.68984413146973,0.0,41.666668,41.666668,0.10309278,0.0014660703 +142.7005479335785,0.0,42.424244,42.424244,0.11246486,0.0014660703 +142.70957493782043,0.0,43.181816,43.181816,0.10309278,0.0014660703 +142.72055292129517,0.0,44.696968,44.696968,0.11246486,-0.013334316 +142.72947311401367,0.0,45.454548,45.454548,0.11246486,-0.013334316 +142.7394540309906,0.0,46.21212,46.21212,0.11246486,-0.013334316 +142.74967694282532,0.0,46.969696,46.969696,0.11246486,-0.013334316 +142.75965404510498,0.0,47.727272,47.727272,0.12183693,0.0070162313 +142.7694709300995,0.0,48.484848,48.484848,0.12183693,0.0070162313 +142.77980494499207,0.0,49.242424,49.242424,0.12183693,0.0070162313 +142.79056191444397,0.0,50.0,50.0,0.12183693,0.0070162313 +142.79980993270874,0.0,50.757576,50.757576,0.12183693,0.0070162313 +142.81056308746338,0.0,50.757576,50.757576,0.12183693,-0.002234026 +142.82055592536926,0.0,51.515152,51.515152,0.12183693,-0.002234026 +142.82945704460144,0.0,52.272724,52.272724,0.11246486,-0.002234026 +142.8398461341858,0.0,53.030304,53.030304,0.11246486,-0.002234026 +142.85030698776245,0.0,53.030304,53.030304,0.12183693,-0.002234026 +142.85959792137146,0.0,53.78788,53.78788,0.11246486,-0.013334316 +142.86954712867737,0.0,54.545456,54.545456,0.11246486,-0.013334316 +142.88055801391602,0.0,54.545456,54.545456,0.11246486,-0.013334316 +142.8900330066681,0.0,55.30303,55.30303,0.12183693,-0.013334316 +142.90056896209717,0.0,55.30303,55.30303,0.12183693,-0.013334316 +142.91057705879211,0.0,55.30303,55.30303,0.12183693,-0.01888446 +142.9200210571289,0.0,56.060604,56.060604,0.12183693,-0.01888446 +142.9294729232788,0.0,56.060604,56.060604,0.12183693,-0.01888446 +142.94028902053833,0.0,56.060604,56.060604,0.12183693,-0.01888446 +142.94953298568726,0.0,56.818184,56.818184,0.131209,-0.01888446 +142.9601399898529,0.0,56.818184,56.818184,0.131209,-0.022584556 +142.9705889225006,0.0,56.818184,56.818184,0.131209,-0.022584556 +142.9802439212799,0.0,56.818184,56.818184,0.131209,-0.022584556 +142.99001812934875,0.0,56.818184,56.818184,0.131209,-0.022584556 +142.99960803985596,0.0,56.818184,56.818184,0.131209,-0.022584556 +143.01059007644653,0.0,56.818184,56.818184,0.131209,-0.0040840744 +143.01978707313538,0.0,56.818184,56.818184,0.131209,-0.0040840744 +143.02947807312012,0.0,56.818184,56.818184,0.131209,-0.0040840744 +143.04058194160461,0.0,56.818184,56.818184,0.131209,-0.0040840744 +143.05025696754456,0.0,56.818184,56.818184,0.14058107,-0.0040840744 +143.0605809688568,0.0,56.818184,56.818184,0.14058107,-0.002234026 +143.07045602798462,0.0,56.060604,56.060604,0.14058107,-0.002234026 +143.07948899269104,0.0,56.060604,56.060604,0.14058107,-0.002234026 +143.09059309959412,0.0,56.060604,56.060604,0.14058107,-0.002234026 +143.09958004951477,0.0,56.060604,56.060604,0.14058107,-0.002234026 +143.10982012748718,0.0,56.060604,56.060604,0.14058107,0.0070162313 +143.12023210525513,0.0,56.060604,56.060604,0.14058107,0.0070162313 +143.129497051239,0.0,56.060604,56.060604,0.14058107,0.0070162313 +143.1403751373291,0.0,56.060604,56.060604,0.14058107,0.0070162313 +143.1506040096283,0.0,56.060604,56.060604,0.14058107,0.0070162313 +143.16061210632324,0.0,56.060604,56.060604,0.14058107,-0.009634218 +143.16948914527893,0.0,56.060604,56.060604,0.14058107,-0.009634218 +143.1806299686432,0.0,56.060604,56.060604,0.14058107,-0.009634218 +143.18943905830383,0.0,56.060604,56.060604,0.14058107,-0.009634218 +143.20059514045715,0.0,56.060604,56.060604,0.14058107,-0.009634218 +143.2098090648651,0.0,56.060604,56.060604,0.14995314,-0.011484267 +143.2206130027771,0.0,56.060604,56.060604,0.14995314,-0.011484267 +143.2294979095459,0.0,56.060604,56.060604,0.14995314,-0.011484267 +143.2394359111786,0.0,56.060604,56.060604,0.14995314,-0.011484267 +143.24968695640564,0.0,56.060604,56.060604,0.14995314,-0.011484267 +143.25979113578796,0.0,56.060604,56.060604,0.14995314,0.0070162313 +143.2706229686737,0.0,56.060604,56.060604,0.14995314,0.0070162313 +143.28060507774353,0.0,56.818184,56.818184,0.14058107,0.0070162313 +143.2906129360199,0.0,56.818184,56.818184,0.14058107,0.0070162313 +143.30008006095886,0.0,56.818184,56.818184,0.14058107,0.0070162313 +143.3098120689392,0.0,56.818184,56.818184,0.14058107,-0.009634218 +143.32051491737366,0.0,56.818184,56.818184,0.14058107,-0.009634218 +143.32952094078064,0.0,56.818184,56.818184,0.14058107,-0.009634218 +143.34061312675476,0.0,57.57576,57.57576,0.14058107,-0.009634218 +143.3500211238861,0.0,57.57576,57.57576,0.131209,-0.009634218 +143.36062097549438,0.0,57.57576,57.57576,0.14058107,-0.011484267 +143.37060809135437,0.0,58.333332,58.333332,0.131209,-0.011484267 +143.37974905967712,0.0,58.333332,58.333332,0.131209,-0.011484267 +143.38948607444763,0.0,58.333332,58.333332,0.131209,-0.011484267 +143.3998420238495,0.0,59.090908,59.090908,0.14058107,-0.011484267 +143.40982913970947,0.0,59.090908,59.090908,0.14058107,-0.002234026 +143.41954803466797,0.0,59.848484,59.848484,0.14058107,-0.002234026 +143.42947793006897,0.0,59.848484,59.848484,0.14058107,-0.002234026 +143.44015502929688,0.0,60.606064,60.606064,0.14058107,-0.002234026 +143.45063710212708,0.0,60.606064,60.606064,0.14058107,-0.002234026 +143.45991706848145,0.0,60.606064,60.606064,0.14058107,-0.002234026 +143.47062301635742,0.0,61.363636,61.363636,0.14058107,-0.002234026 +143.4795150756836,0.0,61.363636,61.363636,0.14058107,-0.002234026 +143.49025702476501,0.0,62.121212,62.121212,0.14058107,-0.002234026 +143.50055408477783,0.0,62.121212,62.121212,0.14058107,-0.002234026 +143.50956296920776,0.0,62.878788,62.878788,0.14058107,-0.002234026 +143.5195209980011,0.0,62.878788,62.878788,0.14058107,-0.011484267 +143.52950191497803,0.0,62.878788,62.878788,0.14058107,-0.011484267 +143.5406310558319,0.0,62.878788,62.878788,0.14058107,-0.011484267 +143.55006408691406,0.0,63.636364,63.636364,0.14058107,-0.011484267 +143.5606451034546,0.0,63.636364,63.636364,0.14058107,0.008866279 +143.56975507736206,0.0,63.636364,63.636364,0.14058107,0.008866279 +143.58063411712646,0.0,63.636364,63.636364,0.131209,0.008866279 +143.59057903289795,0.0,63.636364,63.636364,0.131209,0.008866279 +143.5995659828186,0.0,63.636364,63.636364,0.131209,0.008866279 +143.60958003997803,0.0,63.636364,63.636364,0.131209,0.008866279 +143.62037205696106,0.0,64.393936,64.393936,0.131209,-0.015184363 +143.62938904762268,0.0,64.393936,64.393936,0.131209,-0.015184363 +143.6406590938568,0.0,64.393936,64.393936,0.12183693,-0.015184363 +143.65017199516296,0.0,64.393936,64.393936,0.131209,-0.015184363 +143.65956497192383,0.0,64.393936,64.393936,0.12183693,-0.0077841706 +143.67065405845642,0.0,64.393936,64.393936,0.12183693,-0.0077841706 +143.68054103851318,0.0,64.393936,64.393936,0.12183693,-0.0077841706 +143.68953800201416,0.0,63.636364,63.636364,0.12183693,-0.0077841706 +143.7006540298462,0.0,63.636364,63.636364,0.12183693,-0.0077841706 +143.70981192588806,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +143.71947503089905,0.0,63.636364,63.636364,0.131209,-0.0040840744 +143.72951197624207,0.0,63.636364,63.636364,0.131209,-0.0040840744 +143.7397699356079,0.0,62.878788,62.878788,0.131209,-0.0040840744 +143.74945998191833,0.0,62.878788,62.878788,0.12183693,-0.0040840744 +143.76065301895142,0.0,62.878788,62.878788,0.131209,-0.002234026 +143.77052998542786,0.0,62.121212,62.121212,0.131209,-0.002234026 +143.7795090675354,0.0,62.121212,62.121212,0.131209,-0.002234026 +143.79026103019714,0.0,62.121212,62.121212,0.131209,-0.002234026 +143.80058407783508,0.0,62.121212,62.121212,0.14058107,-0.002234026 +143.80940508842468,0.0,62.121212,62.121212,0.131209,-0.0466352 +143.8199601173401,0.0,61.363636,61.363636,0.131209,-0.0466352 +143.82948994636536,0.0,61.363636,61.363636,0.131209,-0.0466352 +143.84066700935364,0.0,61.363636,61.363636,0.131209,-0.0466352 +143.85000109672546,0.0,61.363636,61.363636,0.131209,-0.0466352 +143.86049914360046,0.0,61.363636,61.363636,0.131209,-0.06513569 +143.8694989681244,0.0,61.363636,61.363636,0.131209,-0.06513569 +143.8806610107422,0.0,61.363636,61.363636,0.12183693,-0.06513569 +143.89066290855408,0.0,61.363636,61.363636,0.12183693,-0.06513569 +143.89969301223755,0.0,61.363636,61.363636,0.12183693,-0.06513569 +143.9102680683136,0.0,61.363636,61.363636,0.12183693,-0.002234026 +143.92018103599548,0.0,61.363636,61.363636,0.12183693,-0.002234026 +143.92947506904602,0.0,61.363636,61.363636,0.12183693,-0.002234026 +143.940691947937,0.0,61.363636,61.363636,0.12183693,-0.002234026 +143.95052313804626,0.0,61.363636,61.363636,0.12183693,-0.002234026 +143.95948100090027,0.0,61.363636,61.363636,0.131209,0.032916907 +143.97068214416504,0.0,61.363636,61.363636,0.131209,0.032916907 +143.98034691810608,0.0,62.121212,62.121212,0.131209,0.032916907 +143.9895179271698,0.0,62.121212,62.121212,0.12183693,0.032916907 +144.00067710876465,0.0,62.121212,62.121212,0.12183693,0.032916907 +144.01003503799438,0.0,62.878788,62.878788,0.131209,0.0014660703 +144.01954913139343,0.0,62.878788,62.878788,0.12183693,0.0014660703 +144.02949905395508,0.0,63.636364,63.636364,0.12183693,0.0014660703 +144.04031491279602,0.0,63.636364,63.636364,0.131209,0.0014660703 +144.04946494102478,0.0,63.636364,63.636364,0.14058107,0.0014660703 +144.06048107147217,0.0,64.393936,64.393936,0.12183693,-0.002234026 +144.06942892074585,0.0,64.393936,64.393936,0.12183693,-0.002234026 +144.0798830986023,0.0,65.15151,65.15151,0.12183693,-0.002234026 +144.09069395065308,0.0,65.15151,65.15151,0.131209,-0.002234026 +144.09989094734192,0.0,65.90909,65.90909,0.131209,-0.002234026 +144.10939407348633,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +144.12070512771606,0.0,66.66667,66.66667,0.14058107,-0.0040840744 +144.12947607040405,0.0,66.66667,66.66667,0.14058107,-0.0040840744 +144.13942694664001,0.0,67.42425,67.42425,0.14058107,-0.0040840744 +144.14962196350098,0.0,67.42425,67.42425,0.14058107,-0.0040840744 +144.1606719493866,0.0,67.42425,67.42425,0.14058107,-0.002234026 +144.16999197006226,0.0,67.42425,67.42425,0.14058107,-0.002234026 +144.18069505691528,0.0,56.060604,56.060604,0.14058107,-0.002234026 +144.18973994255066,0.0,40.90909,40.90909,0.14995314,-0.002234026 +144.200688123703,0.0,26.515152,26.515152,0.14995314,-0.002234026 +144.20983505249023,0.0,19.69697,19.69697,0.14995314,-0.002234026 +144.22039699554443,0.0,21.212122,21.212122,0.14995314,-0.002234026 +144.22941398620605,0.0,23.484848,23.484848,0.14995314,-0.002234026 +144.2394199371338,0.0,26.515152,26.515152,0.14995314,-0.002234026 +144.25070691108704,0.0,28.78788,28.78788,0.14995314,-0.002234026 +144.26006698608398,0.0,31.060606,31.060606,0.14995314,-0.0077841706 +144.27060914039612,0.0,33.333336,33.333336,0.14995314,-0.0077841706 +144.27959513664246,0.0,35.60606,35.60606,0.14995314,-0.0077841706 +144.29023814201355,0.0,37.121216,37.121216,0.14995314,-0.0077841706 +144.3003580570221,0.0,39.39394,39.39394,0.14995314,-0.0077841706 +144.30982494354248,0.0,40.90909,40.90909,0.14995314,-0.009634218 +144.32071208953857,0.0,42.424244,42.424244,0.14995314,-0.009634218 +144.32946109771729,0.0,43.939392,43.939392,0.14995314,-0.009634218 +144.3407199382782,0.0,45.454548,45.454548,0.14995314,-0.009634218 +144.3500781059265,0.0,46.969696,46.969696,0.14995314,-0.009634218 +144.36045813560486,0.0,47.727272,47.727272,0.14995314,0.0014660703 +144.36941695213318,0.0,49.242424,49.242424,0.14995314,0.0014660703 +144.38073301315308,0.0,50.0,50.0,0.14058107,0.0014660703 +144.39017391204834,0.0,50.757576,50.757576,0.14058107,0.0014660703 +144.40035700798035,0.0,52.272724,52.272724,0.14058107,0.0014660703 +144.40982794761658,0.0,53.030304,53.030304,0.14058107,-0.011484267 +144.4207260608673,0.0,53.78788,53.78788,0.14995314,-0.011484267 +144.42948603630066,0.0,54.545456,54.545456,0.14995314,-0.011484267 +144.44027495384216,0.0,55.30303,55.30303,0.14995314,-0.011484267 +144.45028591156006,0.0,55.30303,55.30303,0.14995314,-0.011484267 +144.46073603630066,0.0,56.060604,56.060604,0.14058107,-0.002234026 +144.47032403945923,0.0,56.818184,56.818184,0.14995314,-0.002234026 +144.48071694374084,0.0,57.57576,57.57576,0.14995314,-0.002234026 +144.4903359413147,0.0,58.333332,58.333332,0.15932521,-0.002234026 +144.49957704544067,0.0,58.333332,58.333332,0.15932521,-0.002234026 +144.50980710983276,0.0,59.090908,59.090908,0.15932521,-0.002234026 +144.5194070339203,0.0,59.090908,59.090908,0.15932521,-0.002234026 +144.52948999404907,0.0,59.848484,59.848484,0.15932521,-0.002234026 +144.5393979549408,0.0,59.848484,59.848484,0.14995314,-0.002234026 +144.5505290031433,0.0,60.606064,60.606064,0.15932521,-0.002234026 +144.55941700935364,0.0,61.363636,61.363636,0.15932521,0.0014660703 +144.57066011428833,0.0,61.363636,61.363636,0.14995314,0.0014660703 +144.58033800125122,0.0,61.363636,61.363636,0.14995314,0.0014660703 +144.59063601493835,0.0,62.121212,62.121212,0.14995314,0.0014660703 +144.6006691455841,0.0,62.121212,62.121212,0.15932521,0.0014660703 +144.60983610153198,0.0,62.121212,62.121212,0.15932521,-0.00038397792 +144.61964392662048,0.0,62.878788,62.878788,0.15932521,-0.00038397792 +144.62947702407837,0.0,62.878788,62.878788,0.15932521,-0.00038397792 +144.63963103294373,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +144.6506791114807,0.0,63.636364,63.636364,0.14995314,-0.00038397792 +144.66066598892212,0.0,63.636364,63.636364,0.14995314,0.008866279 +144.67028212547302,0.0,63.636364,63.636364,0.14995314,0.008866279 +144.68064904212952,0.0,63.636364,63.636364,0.14995314,0.008866279 +144.69059109687805,0.0,63.636364,63.636364,0.14995314,0.008866279 +144.69952201843262,0.0,64.393936,64.393936,0.14995314,0.008866279 +144.70983910560608,0.0,64.393936,64.393936,0.14995314,-0.00038397792 +144.71958708763123,0.0,64.393936,64.393936,0.14995314,-0.00038397792 +144.72953009605408,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +144.74064302444458,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +144.75074410438538,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +144.75975394248962,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.77064394950867,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.78065609931946,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.7906219959259,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.80000495910645,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.80962491035461,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.82063698768616,0.0,64.393936,64.393936,0.14995314,-0.009634218 +144.82948899269104,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.84064602851868,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.85024094581604,0.0,64.393936,64.393936,0.15932521,-0.009634218 +144.8606560230255,0.0,64.393936,64.393936,0.15932521,-0.011484267 +144.87063002586365,0.0,64.393936,64.393936,0.15932521,-0.011484267 +144.88020992279053,0.0,64.393936,64.393936,0.15932521,-0.011484267 +144.8898150920868,0.0,64.393936,64.393936,0.15932521,-0.011484267 +144.89949202537537,0.0,64.393936,64.393936,0.15932521,-0.011484267 +144.91060709953308,0.0,64.393936,64.393936,0.15932521,-0.011484267 +144.92064714431763,0.0,64.393936,64.393936,0.14995314,-0.011484267 +144.92949295043945,0.0,64.393936,64.393936,0.14995314,-0.011484267 +144.94018602371216,0.0,64.393936,64.393936,0.14995314,-0.011484267 +144.9506311416626,0.0,64.393936,64.393936,0.14995314,-0.011484267 +144.96041798591614,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +144.97063398361206,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +144.98035597801208,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +144.9898989200592,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +145.00034403800964,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +145.01062893867493,0.0,64.393936,64.393936,0.14995314,-0.03183481 +145.0194959640503,0.0,64.393936,64.393936,0.14995314,-0.03183481 +145.03006505966187,0.0,64.393936,64.393936,0.14995314,-0.03183481 +145.0405969619751,0.0,64.393936,64.393936,0.15932521,-0.03183481 +145.04950499534607,0.0,64.393936,64.393936,0.14995314,-0.03183481 +145.0606279373169,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +145.07022404670715,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.07982397079468,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.08949613571167,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.1006360054016,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.11060500144958,0.0,64.393936,64.393936,0.131209,-0.0040840744 +145.12019801139832,0.0,64.393936,64.393936,0.131209,-0.0040840744 +145.1295509338379,0.0,64.393936,64.393936,0.131209,-0.0040840744 +145.13943099975586,0.0,64.393936,64.393936,0.131209,-0.0040840744 +145.1499650478363,0.0,64.393936,64.393936,0.131209,-0.0040840744 +145.16012001037598,0.0,64.393936,64.393936,0.131209,0.0033161184 +145.17007207870483,0.0,64.393936,64.393936,0.131209,0.0033161184 +145.18061804771423,0.0,64.393936,64.393936,0.131209,0.0033161184 +145.1905870437622,0.0,64.393936,64.393936,0.14058107,0.0033161184 +145.20062899589539,0.0,64.393936,64.393936,0.14058107,0.0033161184 +145.20988607406616,0.0,64.393936,64.393936,0.131209,-0.0040840744 +145.21966409683228,0.0,64.393936,64.393936,0.14058107,-0.0040840744 +145.2295241355896,0.0,64.393936,64.393936,0.14058107,-0.0040840744 +145.24061703681946,0.0,64.393936,64.393936,0.14058107,-0.0040840744 +145.25001311302185,0.0,64.393936,64.393936,0.14995314,-0.0040840744 +145.25954294204712,0.0,64.393936,64.393936,0.14058107,-0.009634218 +145.27046704292297,0.0,64.393936,64.393936,0.14995314,-0.009634218 +145.28003191947937,0.0,64.393936,64.393936,0.14995314,-0.009634218 +145.29008197784424,0.0,64.393936,64.393936,0.14995314,-0.009634218 +145.30016613006592,0.0,64.393936,64.393936,0.14058107,-0.009634218 +145.30983304977417,0.0,64.393936,64.393936,0.14058107,-0.013334316 +145.32061004638672,0.0,64.393936,64.393936,0.14995314,-0.013334316 +145.32948899269104,0.0,64.393936,64.393936,0.14058107,-0.013334316 +145.3398461341858,0.0,64.393936,64.393936,0.14995314,-0.013334316 +145.35026001930237,0.0,64.393936,64.393936,0.14995314,-0.013334316 +145.3606150150299,0.0,64.393936,64.393936,0.131209,-0.022584556 +145.37023091316223,0.0,64.393936,64.393936,0.131209,-0.022584556 +145.3806140422821,0.0,64.393936,64.393936,0.131209,-0.022584556 +145.39016604423523,0.0,64.393936,64.393936,0.131209,-0.022584556 +145.4005880355835,0.0,64.393936,64.393936,0.131209,-0.022584556 +145.40983605384827,0.0,64.393936,64.393936,0.131209,-0.0077841706 +145.42060613632202,0.0,64.393936,64.393936,0.131209,-0.0077841706 +145.4295060634613,0.0,64.393936,64.393936,0.131209,-0.0077841706 +145.44036293029785,0.0,64.393936,64.393936,0.131209,-0.0077841706 +145.45042991638184,0.0,64.393936,64.393936,0.131209,-0.0077841706 +145.46060991287231,0.0,64.393936,64.393936,0.14058107,0.019966569 +145.46962904930115,0.0,64.393936,64.393936,0.14995314,0.019966569 +145.48013496398926,0.0,64.393936,64.393936,0.14058107,0.019966569 +145.49057507514954,0.0,64.393936,64.393936,0.14995314,0.019966569 +145.49979496002197,0.0,64.393936,64.393936,0.14995314,0.019966569 +145.50983905792236,0.0,64.393936,64.393936,0.14995314,-0.002234026 +145.51955795288086,0.0,64.393936,64.393936,0.14058107,-0.002234026 +145.52952408790588,0.0,64.393936,64.393936,0.14058107,-0.002234026 +145.5394790172577,0.0,64.393936,64.393936,0.14058107,-0.002234026 +145.55059099197388,0.0,64.393936,64.393936,0.14058107,-0.002234026 +145.5598340034485,0.0,64.393936,64.393936,0.14058107,-0.011484267 +145.57012796401978,0.0,64.393936,64.393936,0.14058107,-0.011484267 +145.57950592041016,0.0,64.393936,64.393936,0.14058107,-0.011484267 +145.59055995941162,0.0,64.393936,64.393936,0.14995314,-0.011484267 +145.600359916687,0.0,64.393936,64.393936,0.14995314,-0.011484267 +145.60945892333984,0.0,64.393936,64.393936,0.14995314,-0.011484267 +145.61974000930786,0.0,64.393936,64.393936,0.14995314,-0.009634218 +145.62953305244446,0.0,64.393936,64.393936,0.14995314,-0.009634218 +145.64059400558472,0.0,64.393936,64.393936,0.14058107,-0.009634218 +145.65059804916382,0.0,64.393936,64.393936,0.14058107,-0.009634218 +145.6600890159607,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.6695659160614,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.68057298660278,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.6903259754181,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +145.69995212554932,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +145.70969104766846,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +145.71968698501587,0.0,64.393936,64.393936,0.14995314,-0.009634218 +145.72951292991638,0.0,64.393936,64.393936,0.14058107,-0.009634218 +145.7405710220337,0.0,63.636364,63.636364,0.14058107,-0.009634218 +145.75004601478577,0.0,63.636364,63.636364,0.14058107,-0.009634218 +145.76057195663452,0.0,63.636364,63.636364,0.14058107,-0.044785153 +145.77013111114502,0.0,63.636364,63.636364,0.14058107,-0.044785153 +145.7801489830017,0.0,63.636364,63.636364,0.14058107,-0.044785153 +145.79055213928223,0.0,63.636364,63.636364,0.14058107,-0.044785153 +145.8000750541687,0.0,63.636364,63.636364,0.14058107,-0.044785153 +145.80978298187256,0.0,63.636364,63.636364,0.14058107,-0.044785153 +145.8205599784851,0.0,63.636364,63.636364,0.14058107,-0.020734508 +145.8294870853424,0.0,63.636364,63.636364,0.14058107,-0.020734508 +145.84001898765564,0.0,63.636364,63.636364,0.14058107,-0.020734508 +145.85057592391968,0.0,63.636364,63.636364,0.14058107,-0.020734508 +145.86012196540833,0.0,63.636364,63.636364,0.14995314,0.04586726 +145.8700499534607,0.0,63.636364,63.636364,0.14995314,0.04586726 +145.8805661201477,0.0,63.636364,63.636364,0.14058107,0.04586726 +145.89056611061096,0.0,63.636364,63.636364,0.14058107,0.04586726 +145.89988708496094,0.0,63.636364,63.636364,0.14058107,0.04586726 +145.90941309928894,0.0,63.636364,63.636364,0.14058107,-0.033684865 +145.9205560684204,0.0,63.636364,63.636364,0.131209,-0.033684865 +145.92943811416626,0.0,63.636364,63.636364,0.131209,-0.033684865 +145.93946313858032,0.0,63.636364,63.636364,0.131209,-0.033684865 +145.949481010437,0.0,63.636364,63.636364,0.131209,-0.033684865 +145.95991802215576,0.0,63.636364,63.636364,0.131209,0.0033161184 +145.9695019721985,0.0,63.636364,63.636364,0.131209,0.0033161184 +145.9805610179901,0.0,63.636364,63.636364,0.131209,0.0033161184 +145.9899890422821,0.0,63.636364,63.636364,0.131209,0.0033161184 +146.00053906440735,0.0,63.636364,63.636364,0.131209,0.0033161184 +146.00965213775635,0.0,63.636364,63.636364,0.131209,0.0014660703 +146.01996397972107,0.0,63.636364,63.636364,0.131209,0.0014660703 +146.02951192855835,0.0,63.636364,63.636364,0.131209,0.0014660703 +146.0405421257019,0.0,63.636364,63.636364,0.131209,0.0014660703 +146.04973697662354,0.0,63.636364,63.636364,0.131209,0.0014660703 +146.05954098701477,0.0,63.636364,63.636364,0.131209,-0.009634218 +146.07043409347534,0.0,63.636364,63.636364,0.131209,-0.009634218 +146.08009696006775,0.0,63.636364,63.636364,0.131209,-0.009634218 +146.09055495262146,0.0,63.636364,63.636364,0.12183693,-0.009634218 +146.10046792030334,0.0,63.636364,63.636364,0.131209,-0.009634218 +146.10986495018005,0.0,63.636364,63.636364,0.12183693,-0.002234026 +146.12054896354675,0.0,63.636364,63.636364,0.12183693,-0.002234026 +146.1295449733734,0.0,63.636364,63.636364,0.12183693,-0.002234026 +146.1395969390869,0.0,63.636364,63.636364,0.131209,-0.002234026 +146.15055298805237,0.0,63.636364,63.636364,0.12183693,-0.002234026 +146.16055297851562,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +146.17023992538452,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +146.18053102493286,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +146.18964099884033,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +146.19991302490234,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +146.20980501174927,0.0,63.636364,63.636364,0.131209,-0.002234026 +146.22045612335205,0.0,63.636364,63.636364,0.131209,-0.002234026 +146.22944498062134,0.0,63.636364,63.636364,0.14058107,-0.002234026 +146.24053192138672,0.0,63.636364,63.636364,0.14058107,-0.002234026 +146.25041007995605,0.0,63.636364,63.636364,0.14058107,-0.002234026 +146.2603099346161,0.0,63.636364,63.636364,0.14058107,-0.0077841706 +146.27025413513184,0.0,63.636364,63.636364,0.14058107,-0.0077841706 +146.28051209449768,0.0,63.636364,63.636364,0.14058107,-0.0077841706 +146.28986501693726,0.0,63.636364,63.636364,0.14058107,-0.0077841706 +146.3005290031433,0.0,63.636364,63.636364,0.14058107,-0.0077841706 +146.3098440170288,0.0,63.636364,63.636364,0.14058107,-0.013334316 +146.31953692436218,0.0,63.636364,63.636364,0.131209,-0.013334316 +146.329519033432,0.0,63.636364,63.636364,0.131209,-0.013334316 +146.3405430316925,0.0,63.636364,63.636364,0.131209,-0.013334316 +146.35041093826294,0.0,63.636364,63.636364,0.131209,-0.013334316 +146.35957407951355,0.0,63.636364,63.636364,0.131209,-0.013334316 +146.37051510810852,0.0,63.636364,63.636364,0.131209,-0.013334316 +146.37983894348145,0.0,63.636364,63.636364,0.14058107,-0.013334316 +146.39053511619568,0.0,63.636364,63.636364,0.14058107,-0.013334316 +146.40015697479248,0.0,63.636364,63.636364,0.14058107,-0.013334316 +146.4098401069641,0.0,63.636364,63.636364,0.14058107,-0.00038397792 +146.4198820590973,0.0,63.636364,63.636364,0.14058107,-0.00038397792 +146.4295151233673,0.0,63.636364,63.636364,0.14058107,-0.00038397792 +146.43953800201416,0.0,63.636364,63.636364,0.131209,-0.00038397792 +146.4495711326599,0.0,63.636364,63.636364,0.131209,-0.00038397792 +146.4605360031128,0.0,63.636364,63.636364,0.131209,-0.011484267 +146.4697859287262,0.0,63.636364,63.636364,0.131209,-0.011484267 +146.48051404953003,0.0,63.636364,63.636364,0.131209,-0.011484267 +146.49000906944275,0.0,63.636364,63.636364,0.131209,-0.011484267 +146.50053095817566,0.0,62.878788,62.878788,0.131209,-0.011484267 +146.50984811782837,0.0,62.878788,62.878788,0.131209,0.0014660703 +146.51967692375183,0.0,62.878788,62.878788,0.131209,0.0014660703 +146.529531955719,0.0,62.878788,62.878788,0.131209,0.0014660703 +146.5396831035614,0.0,62.878788,62.878788,0.131209,0.0014660703 +146.5505359172821,0.0,62.878788,62.878788,0.131209,0.0014660703 +146.55957102775574,0.0,62.878788,62.878788,0.131209,0.049567357 +146.57052302360535,0.0,62.878788,62.878788,0.131209,0.049567357 +146.5798361301422,0.0,62.878788,62.878788,0.14058107,0.049567357 +146.59051513671875,0.0,62.878788,62.878788,0.14058107,0.049567357 +146.59984397888184,0.0,62.878788,62.878788,0.14058107,0.049567357 +146.60986804962158,0.0,62.878788,62.878788,0.14058107,-0.0077841706 +146.62051796913147,0.0,62.878788,62.878788,0.14058107,-0.0077841706 +146.6295211315155,0.0,62.878788,62.878788,0.14058107,-0.0077841706 +146.6405210494995,0.0,62.878788,62.878788,0.14995314,-0.0077841706 +146.64947199821472,0.0,62.878788,62.878788,0.14058107,-0.0077841706 +146.6605179309845,0.0,62.878788,62.878788,0.14995314,-0.033684865 +146.66966605186462,0.0,62.878788,62.878788,0.14995314,-0.033684865 +146.67962002754211,0.0,62.878788,62.878788,0.14995314,-0.033684865 +146.69052290916443,0.0,62.878788,62.878788,0.14995314,-0.033684865 +146.70050191879272,0.0,62.878788,62.878788,0.14995314,-0.033684865 +146.70985412597656,0.0,62.878788,62.878788,0.14995314,-0.011484267 +146.71992301940918,0.0,62.878788,62.878788,0.14995314,-0.011484267 +146.73053193092346,0.0,62.878788,62.878788,0.14995314,-0.011484267 +146.73969411849976,0.0,62.878788,62.878788,0.14058107,-0.011484267 +146.75049209594727,0.0,62.878788,62.878788,0.14058107,-0.011484267 +146.75952005386353,0.0,62.878788,62.878788,0.131209,-0.0040840744 +146.77052402496338,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +146.7795169353485,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +146.7904999256134,0.0,62.878788,62.878788,0.14995314,-0.0040840744 +146.79968094825745,0.0,62.878788,62.878788,0.15932521,-0.0040840744 +146.8098509311676,0.0,62.878788,62.878788,0.16869728,-0.0040840744 +146.82051396369934,0.0,62.878788,62.878788,0.16869728,-0.0040840744 +146.82949805259705,0.0,62.878788,62.878788,0.15932521,-0.0040840744 +146.84009909629822,0.0,62.878788,62.878788,0.15932521,-0.0040840744 +146.84949398040771,0.0,62.878788,62.878788,0.15932521,-0.0040840744 +146.86050295829773,0.0,62.878788,62.878788,0.15932521,-0.029984765 +146.8704550266266,0.0,62.878788,62.878788,0.14995314,-0.029984765 +146.8804919719696,0.0,62.878788,62.878788,0.14995314,-0.029984765 +146.89051008224487,0.0,63.636364,63.636364,0.14995314,-0.029984765 +146.90014100074768,0.0,63.636364,63.636364,0.14995314,-0.029984765 +146.90984201431274,0.0,63.636364,63.636364,0.14058107,-0.01888446 +146.9194531440735,0.0,63.636364,63.636364,0.14058107,-0.01888446 +146.9294719696045,0.0,62.878788,62.878788,0.14058107,-0.01888446 +146.9404969215393,0.0,62.878788,62.878788,0.14995314,-0.01888446 +146.95052695274353,0.0,62.878788,62.878788,0.14995314,-0.01888446 +146.9603500366211,0.0,62.878788,62.878788,0.14058107,-0.01888446 +146.97017097473145,0.0,62.878788,62.878788,0.14995314,-0.01888446 +146.9804949760437,0.0,62.878788,62.878788,0.14995314,-0.01888446 +146.99025511741638,0.0,62.878788,62.878788,0.14995314,-0.01888446 +147.00049304962158,0.0,62.878788,62.878788,0.14995314,-0.01888446 +147.00966501235962,0.0,62.878788,62.878788,0.14995314,-0.011484267 +147.0200960636139,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.02954006195068,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.0398600101471,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.05051708221436,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.06047892570496,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.06988096237183,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.08035802841187,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.08983898162842,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.0996379852295,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.1099510192871,0.0,62.878788,62.878788,0.14058107,-0.00038397792 +147.12044596672058,0.0,62.878788,62.878788,0.14058107,-0.00038397792 +147.12954211235046,0.0,62.878788,62.878788,0.131209,-0.00038397792 +147.1404731273651,0.0,62.878788,62.878788,0.131209,-0.00038397792 +147.1495521068573,0.0,62.878788,62.878788,0.12183693,-0.00038397792 +147.16045808792114,0.0,62.878788,62.878788,0.12183693,-0.013334316 +147.17003393173218,0.0,62.878788,62.878788,0.131209,-0.013334316 +147.17946004867554,0.0,62.878788,62.878788,0.131209,-0.013334316 +147.18963503837585,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.19978094100952,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.21046710014343,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.22044110298157,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.22953701019287,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.2395670413971,0.0,62.878788,62.878788,0.14995314,-0.0040840744 +147.25023794174194,0.0,62.878788,62.878788,0.14995314,-0.0040840744 +147.2604320049286,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.26957893371582,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.2796311378479,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.28965497016907,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.30043292045593,0.0,62.878788,62.878788,0.14058107,-0.0040840744 +147.31041598320007,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.32042598724365,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.32955408096313,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.34042692184448,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.35046100616455,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.35970497131348,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.3696060180664,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.37949895858765,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.38950395584106,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.4004499912262,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.4098379611969,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.41949200630188,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.42952609062195,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.44043803215027,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.44969606399536,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.45959901809692,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.4704020023346,0.0,62.878788,62.878788,0.14995314,-0.013334316 +147.48041105270386,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.4894061088562,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.49969696998596,0.0,62.878788,62.878788,0.14058107,-0.013334316 +147.50981402397156,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.52043104171753,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.52954006195068,0.0,62.878788,62.878788,0.14995314,-0.009634218 +147.53994512557983,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.5495901107788,0.0,62.878788,62.878788,0.14058107,-0.009634218 +147.56043100357056,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.56967210769653,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.57986307144165,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.5904040336609,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.59943103790283,0.0,62.878788,62.878788,0.14058107,-0.011484267 +147.6098129749298,0.0,62.878788,62.878788,0.14058107,-0.020734508 +147.61951112747192,0.0,62.878788,62.878788,0.14058107,-0.020734508 +147.62984013557434,0.0,62.878788,62.878788,0.14058107,-0.020734508 +147.63955402374268,0.0,62.878788,62.878788,0.14058107,-0.020734508 +147.65042996406555,0.0,62.878788,62.878788,0.14995314,-0.020734508 +147.660080909729,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.6704330444336,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.68040895462036,0.0,62.878788,62.878788,0.15932521,-0.00038397792 +147.69041204452515,0.0,62.878788,62.878788,0.15932521,-0.00038397792 +147.7004680633545,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.70986700057983,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.720153093338,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.72955107688904,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.7402720451355,0.0,62.878788,62.878788,0.14995314,-0.00038397792 +147.74962091445923,0.0,62.878788,62.878788,0.15932521,-0.00038397792 +147.7603940963745,0.0,62.878788,62.878788,0.14995314,-0.0077841706 +147.76980710029602,0.0,62.878788,62.878788,0.15932521,-0.0077841706 +147.7803919315338,0.0,62.878788,62.878788,0.15932521,-0.0077841706 +147.79040002822876,0.0,62.878788,62.878788,0.14995314,-0.0077841706 +147.8004059791565,0.0,62.878788,62.878788,0.14995314,-0.0077841706 +147.80985593795776,0.0,62.878788,62.878788,0.14995314,-0.002234026 +147.81960201263428,0.0,63.636364,63.636364,0.14058107,-0.002234026 +147.82958102226257,0.0,63.636364,63.636364,0.14058107,-0.002234026 +147.8397810459137,0.0,63.636364,63.636364,0.131209,-0.002234026 +147.85042691230774,0.0,62.878788,62.878788,0.131209,-0.002234026 +147.86039209365845,0.0,63.636364,63.636364,0.12183693,-0.011484267 +147.87037897109985,0.0,63.636364,63.636364,0.12183693,-0.011484267 +147.87970614433289,0.0,63.636364,63.636364,0.12183693,-0.011484267 +147.8903980255127,0.0,63.636364,63.636364,0.12183693,-0.011484267 +147.90039110183716,0.0,63.636364,63.636364,0.12183693,-0.011484267 +147.90938997268677,0.0,63.636364,63.636364,0.12183693,-0.011484267 +147.92039394378662,0.0,63.636364,63.636364,0.131209,-0.002234026 +147.92953896522522,0.0,63.636364,63.636364,0.131209,-0.002234026 +147.94037795066833,0.0,63.636364,63.636364,0.131209,-0.002234026 +147.95039200782776,0.0,63.636364,63.636364,0.131209,-0.002234026 +147.9603989124298,0.0,63.636364,63.636364,0.131209,-0.011484267 +147.97044110298157,0.0,63.636364,63.636364,0.131209,-0.011484267 +147.98038911819458,0.0,63.636364,63.636364,0.131209,-0.011484267 +147.9898030757904,0.0,63.636364,63.636364,0.131209,-0.011484267 +147.9995081424713,0.0,63.636364,63.636364,0.12183693,-0.011484267 +148.0097839832306,0.0,63.636364,63.636364,0.12183693,0.0014660703 +148.01970410346985,0.0,63.636364,63.636364,0.12183693,0.0014660703 +148.0295491218567,0.0,63.636364,63.636364,0.12183693,0.0014660703 +148.0394949913025,0.0,63.636364,63.636364,0.12183693,0.0014660703 +148.05028796195984,0.0,63.636364,63.636364,0.131209,0.0014660703 +148.0603699684143,0.0,63.636364,63.636364,0.131209,-0.0040840744 +148.06998109817505,0.0,63.636364,63.636364,0.131209,-0.0040840744 +148.0803771018982,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +148.089586019516,0.0,63.636364,63.636364,0.131209,-0.0040840744 +148.09957695007324,0.0,63.636364,63.636364,0.12183693,-0.0040840744 +148.11034607887268,0.0,63.636364,63.636364,0.12183693,-0.009634218 +148.12037706375122,0.0,63.636364,63.636364,0.12183693,-0.009634218 +148.12953996658325,0.0,63.636364,63.636364,0.12183693,-0.009634218 +148.13986992835999,0.0,63.636364,63.636364,0.12183693,-0.009634218 +148.1502239704132,0.0,63.636364,63.636364,0.12183693,-0.009634218 +148.15964698791504,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.17023611068726,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.179594039917,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.19035601615906,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.20035696029663,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.2103569507599,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.2203710079193,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.22955012321472,0.0,63.636364,63.636364,0.12183693,-0.026284654 +148.24037098884583,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.2503731250763,0.0,63.636364,63.636364,0.131209,-0.026284654 +148.2600610256195,0.0,63.636364,63.636364,0.131209,-0.015184363 +148.26960611343384,0.0,63.636364,63.636364,0.131209,-0.015184363 +148.28034806251526,0.0,63.636364,63.636364,0.131209,-0.015184363 +148.29035711288452,0.0,63.636364,63.636364,0.131209,-0.015184363 +148.3003580570221,0.0,63.636364,63.636364,0.131209,-0.015184363 +148.30983805656433,0.0,63.636364,63.636364,0.131209,-0.002234026 +148.3195469379425,0.0,63.636364,63.636364,0.131209,-0.002234026 +148.32952404022217,0.0,63.636364,63.636364,0.131209,-0.002234026 +148.34035396575928,0.0,64.393936,64.393936,0.131209,-0.002234026 +148.3499240875244,0.0,64.393936,64.393936,0.131209,-0.002234026 +148.3595790863037,0.0,64.393936,64.393936,0.131209,-0.020734508 +148.3695731163025,0.0,64.393936,64.393936,0.131209,-0.020734508 +148.38036108016968,0.0,64.393936,64.393936,0.12183693,-0.020734508 +148.3895800113678,0.0,64.393936,64.393936,0.131209,-0.020734508 +148.3997790813446,0.0,64.393936,64.393936,0.131209,-0.020734508 +148.40986394882202,0.0,64.393936,64.393936,0.131209,-0.022584556 +148.42036509513855,0.0,64.393936,64.393936,0.131209,-0.022584556 +148.4299840927124,0.0,64.393936,64.393936,0.131209,-0.022584556 +148.4397530555725,0.0,64.393936,64.393936,0.131209,-0.022584556 +148.4495611190796,0.0,64.393936,64.393936,0.131209,-0.022584556 +148.4601390361786,0.0,64.393936,64.393936,0.131209,-0.002234026 +148.4703290462494,0.0,64.393936,64.393936,0.131209,-0.002234026 +148.47956705093384,0.0,64.393936,64.393936,0.131209,-0.002234026 +148.49033904075623,0.0,64.393936,64.393936,0.14058107,-0.002234026 +148.5003490447998,0.0,64.393936,64.393936,0.14058107,-0.002234026 +148.50985503196716,0.0,64.393936,64.393936,0.14058107,-0.009634218 +148.51991391181946,0.0,64.393936,64.393936,0.14058107,-0.009634218 +148.52954697608948,0.0,64.393936,64.393936,0.14058107,-0.009634218 +148.5395119190216,0.0,64.393936,64.393936,0.14058107,-0.009634218 +148.55036091804504,0.0,64.393936,64.393936,0.14058107,-0.009634218 +148.56020307540894,0.0,64.393936,64.393936,0.14058107,-0.013334316 +148.5703480243683,0.0,63.636364,63.636364,0.14995314,-0.013334316 +148.58033514022827,0.0,64.393936,64.393936,0.14995314,-0.013334316 +148.59032201766968,0.0,64.393936,64.393936,0.14995314,-0.013334316 +148.60035395622253,0.0,64.393936,64.393936,0.15932521,-0.013334316 +148.60987901687622,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +148.6194679737091,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +148.629478931427,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +148.6401560306549,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +148.6503391265869,0.0,64.393936,64.393936,0.15932521,-0.0077841706 +148.66027212142944,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +148.67031693458557,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +148.68033504486084,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +148.69033408164978,0.0,64.393936,64.393936,0.15932521,-0.00038397792 +148.700257062912,0.0,64.393936,64.393936,0.14995314,-0.00038397792 +148.70987606048584,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +148.71945214271545,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +148.72942900657654,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +148.7394700050354,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +148.75033712387085,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +148.7599720954895,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.77032113075256,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.7803349494934,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.7901849746704,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.80033111572266,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.80942106246948,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.8195300102234,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.82950806617737,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.84033203125,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.85033893585205,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.86035895347595,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.8696620464325,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.8799889087677,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.88995099067688,0.0,64.393936,64.393936,0.14995314,-0.002234026 +148.90030694007874,0.0,64.393936,64.393936,0.14058107,-0.002234026 +148.90964102745056,0.0,64.393936,64.393936,0.14058107,-0.002234026 +148.91944909095764,0.0,64.393936,64.393936,0.14995314,-0.015184363 +148.92954301834106,0.0,64.393936,64.393936,0.14058107,-0.015184363 +148.94032192230225,0.0,64.393936,64.393936,0.14995314,-0.015184363 +148.9503149986267,0.0,64.393936,64.393936,0.14995314,-0.015184363 +148.9603021144867,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.9698359966278,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.98031210899353,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.99029803276062,0.0,64.393936,64.393936,0.14995314,-0.009634218 +148.99975609779358,0.0,64.393936,64.393936,0.14995314,-0.009634218 +149.01031398773193,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.0203139781952,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.0295650959015,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.0402970314026,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.0495400428772,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.0596730709076,0.0,64.393936,64.393936,0.14995314,0.0014660703 +149.07028698921204,0.0,64.393936,64.393936,0.15932521,0.0014660703 +149.0802960395813,0.0,64.393936,64.393936,0.15932521,0.0014660703 +149.08984994888306,0.0,64.393936,64.393936,0.15932521,0.0014660703 +149.10030102729797,0.0,64.393936,64.393936,0.14995314,0.0014660703 +149.1102900505066,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.12030005455017,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.12954998016357,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.13943600654602,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.14953112602234,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.16028594970703,0.0,64.393936,64.393936,0.15932521,-0.002234026 +149.16968512535095,0.0,64.393936,64.393936,0.15932521,-0.002234026 +149.17966508865356,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.1903040409088,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.2002980709076,0.0,64.393936,64.393936,0.14058107,-0.002234026 +149.21029210090637,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.21964812278748,0.0,64.393936,64.393936,0.14995314,-0.002234026 +149.22955513000488,0.0,64.393936,64.393936,0.14058107,-0.002234026 +149.24027609825134,0.0,64.393936,64.393936,0.14058107,-0.002234026 +149.25026512145996,0.0,64.393936,64.393936,0.14058107,-0.002234026 +149.26028299331665,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +149.27005791664124,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +149.28028106689453,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +149.29027009010315,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +149.29985404014587,0.0,64.393936,64.393936,0.14058107,-0.0077841706 +149.3097710609436,0.0,64.393936,64.393936,0.131209,-0.009634218 +149.31979703903198,0.0,64.393936,64.393936,0.14058107,-0.009634218 +149.32990908622742,0.0,64.393936,64.393936,0.14058107,-0.009634218 +149.33955097198486,0.0,64.393936,64.393936,0.14058107,-0.009634218 +149.350280046463,0.0,64.393936,64.393936,0.14058107,-0.009634218 +149.36019110679626,0.0,64.393936,64.393936,0.14058107,-0.01888446 +149.37027597427368,0.0,64.393936,64.393936,0.14058107,-0.01888446 +149.38005900382996,0.0,64.393936,64.393936,0.14058107,-0.01888446 +149.3902509212494,0.0,64.393936,64.393936,0.14058107,-0.01888446 +149.40028595924377,0.0,64.393936,64.393936,0.14995314,-0.01888446 +149.40976810455322,0.0,64.393936,64.393936,0.14058107,-0.01888446 +149.42025995254517,0.0,64.393936,64.393936,0.14058107,-0.00038397792 +149.42955207824707,0.0,64.393936,64.393936,0.14058107,-0.00038397792 +149.43985199928284,0.0,64.393936,64.393936,0.14995314,-0.00038397792 +149.45028495788574,0.0,64.393936,64.393936,0.14995314,-0.00038397792 +149.46024894714355,0.0,64.393936,64.393936,0.14995314,-0.0040840744 +149.47012495994568,0.0,64.393936,64.393936,0.14995314,-0.0040840744 +149.48027205467224,0.0,64.393936,64.393936,0.14995314,-0.0040840744 +149.4902789592743,0.0,64.393936,64.393936,0.14995314,-0.0040840744 +149.49990892410278,0.0,64.393936,64.393936,0.14995314,-0.0040840744 +149.5098659992218,0.0,64.393936,64.393936,0.14995314,-0.0077841706 +149.5197401046753,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +149.52956891059875,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +149.54026412963867,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +149.54959392547607,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +149.56027507781982,0.0,65.15151,65.15151,0.15932521,-0.009634218 +149.5699601173401,0.0,65.15151,65.15151,0.15932521,-0.009634218 +149.58025407791138,0.0,65.15151,65.15151,0.16869728,-0.009634218 +149.58977007865906,0.0,65.15151,65.15151,0.16869728,-0.009634218 +149.60026097297668,0.0,65.15151,65.15151,0.15932521,-0.009634218 +149.60987091064453,0.0,65.15151,65.15151,0.14995314,-0.020734508 +149.6202530860901,0.0,65.15151,65.15151,0.14995314,-0.020734508 +149.62956500053406,0.0,65.15151,65.15151,0.14995314,-0.020734508 +149.63949608802795,0.0,65.15151,65.15151,0.14995314,-0.020734508 +149.65026593208313,0.0,65.15151,65.15151,0.14995314,-0.020734508 +149.66025400161743,0.0,65.15151,65.15151,0.14995314,-0.013334316 +149.6702320575714,0.0,65.15151,65.15151,0.14995314,-0.013334316 +149.6796441078186,0.0,65.15151,65.15151,0.14995314,-0.013334316 +149.69026398658752,0.0,65.15151,65.15151,0.14995314,-0.013334316 +149.69986510276794,0.0,65.15151,65.15151,0.14058107,-0.013334316 +149.70975399017334,0.0,65.15151,65.15151,0.14058107,-0.013334316 +149.72024393081665,0.0,65.15151,65.15151,0.14995314,-0.03183481 +149.72956013679504,0.0,65.15151,65.15151,0.14058107,-0.03183481 +149.74023914337158,0.0,65.15151,65.15151,0.14058107,-0.03183481 +149.7502679824829,0.0,65.15151,65.15151,0.14995314,-0.03183481 +149.76025104522705,0.0,65.15151,65.15151,0.14995314,-0.002234026 +149.7694959640503,0.0,65.15151,65.15151,0.15932521,-0.002234026 +149.78026700019836,0.0,65.15151,65.15151,0.14995314,-0.002234026 +149.7899649143219,0.0,65.15151,65.15151,0.15932521,-0.002234026 +149.80025005340576,0.0,65.15151,65.15151,0.15932521,-0.002234026 +149.80946803092957,0.0,65.15151,65.15151,0.14995314,-0.002234026 +149.81975412368774,0.0,65.15151,65.15151,0.14995314,0.0014660703 +149.82954597473145,0.0,65.15151,65.15151,0.14995314,0.0014660703 +149.84022903442383,0.0,65.15151,65.15151,0.15932521,0.0014660703 +149.8502631187439,0.0,65.15151,65.15151,0.15932521,0.0014660703 +149.8602421283722,0.0,65.15151,65.15151,0.14995314,-0.011484267 +149.87019205093384,0.0,65.15151,65.15151,0.14995314,-0.011484267 +149.88005805015564,0.0,65.15151,65.15151,0.14995314,-0.011484267 +149.89023804664612,0.0,65.15151,65.15151,0.14995314,-0.011484267 +149.90022206306458,0.0,65.15151,65.15151,0.14995314,-0.011484267 +149.9098560810089,0.0,65.15151,65.15151,0.14995314,-0.011484267 +149.92023992538452,0.0,65.15151,65.15151,0.14995314,0.051417407 +149.9295620918274,0.0,65.15151,65.15151,0.14995314,0.051417407 +149.93970894813538,0.0,65.15151,65.15151,0.14995314,0.051417407 +149.95028805732727,0.0,65.15151,65.15151,0.14995314,0.051417407 +149.9595501422882,0.0,65.15151,65.15151,0.15932521,-0.0040840744 +149.9700210094452,0.0,65.15151,65.15151,0.15932521,-0.0040840744 +149.98023200035095,0.0,65.15151,65.15151,0.15932521,-0.0040840744 +149.99021100997925,0.0,65.15151,65.15151,0.14995314,-0.0040840744 +149.9999520778656,0.0,65.15151,65.15151,0.14995314,-0.0040840744 +150.0099060535431,0.0,65.15151,65.15151,0.15932521,-0.033684865 +150.0202100276947,0.0,65.15151,65.15151,0.15932521,-0.033684865 +150.02956104278564,0.0,65.15151,65.15151,0.14995314,-0.033684865 +150.03951001167297,0.0,65.15151,65.15151,0.14995314,-0.033684865 +150.05023097991943,0.0,65.15151,65.15151,0.14995314,-0.033684865 +150.05999898910522,0.0,65.15151,65.15151,0.14995314,-0.009634218 +150.070209980011,0.0,65.15151,65.15151,0.14995314,-0.009634218 +150.0802230834961,0.0,65.15151,65.15151,0.14995314,-0.009634218 +150.0894329547882,0.0,65.15151,65.15151,0.14995314,-0.009634218 +150.10020112991333,0.0,65.15151,65.15151,0.14995314,-0.009634218 +150.1094789505005,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.1197431087494,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.13022899627686,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.14022707939148,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.14996099472046,0.0,65.15151,65.15151,0.15932521,-0.00038397792 +150.1602029800415,0.0,65.15151,65.15151,0.15932521,-0.009634218 +150.17023396492004,0.0,65.15151,65.15151,0.15932521,-0.009634218 +150.17957305908203,0.0,65.15151,65.15151,0.15932521,-0.009634218 +150.19021105766296,0.0,65.15151,65.15151,0.14995314,-0.009634218 +150.19996309280396,0.0,65.15151,65.15151,0.15932521,-0.009634218 +150.20979595184326,0.0,65.15151,65.15151,0.15932521,-0.00038397792 +150.2195520401001,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.22941994667053,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.23995113372803,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.25022292137146,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.26020002365112,0.0,65.15151,65.15151,0.14995314,-0.011484267 +150.27020907402039,0.0,65.15151,65.15151,0.14995314,-0.011484267 +150.28012108802795,0.0,65.15151,65.15151,0.14995314,-0.011484267 +150.29021310806274,0.0,65.15151,65.15151,0.14995314,-0.011484267 +150.29963493347168,0.0,65.15151,65.15151,0.14995314,-0.011484267 +150.31019806861877,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.31963109970093,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.32954907417297,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.33945393562317,0.0,65.15151,65.15151,0.15932521,-0.002234026 +150.34965109825134,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.3601930141449,0.0,65.15151,65.15151,0.15932521,-0.00038397792 +150.3694839477539,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.3801851272583,0.0,65.15151,65.15151,0.14995314,-0.00038397792 +150.3895070552826,0.0,65.15151,65.15151,0.15932521,-0.00038397792 +150.40019011497498,0.0,65.15151,65.15151,0.15932521,-0.00038397792 +150.409893989563,0.0,65.15151,65.15151,0.14995314,-0.03183481 +150.41989707946777,0.0,65.15151,65.15151,0.15932521,-0.03183481 +150.42943596839905,0.0,65.15151,65.15151,0.14995314,-0.03183481 +150.4402050971985,0.0,65.15151,65.15151,0.14995314,-0.03183481 +150.4494650363922,0.0,65.15151,65.15151,0.14995314,-0.03183481 +150.45951294898987,0.0,65.15151,65.15151,0.15932521,-0.002234026 +150.46970510482788,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.47977900505066,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.49021005630493,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.50001192092896,0.0,65.15151,65.15151,0.14058107,-0.002234026 +150.50987696647644,0.0,65.15151,65.15151,0.14058107,-0.002234026 +150.5201759338379,0.0,65.15151,65.15151,0.14058107,-0.0040840744 +150.52958011627197,0.0,65.15151,65.15151,0.14058107,-0.0040840744 +150.54019713401794,0.0,65.15151,65.15151,0.14058107,-0.0040840744 +150.5496129989624,0.0,65.15151,65.15151,0.14995314,-0.0040840744 +150.56008791923523,0.0,65.15151,65.15151,0.14995314,-0.0077841706 +150.57021307945251,0.0,65.15151,65.15151,0.14995314,-0.0077841706 +150.5801739692688,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +150.59019207954407,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +150.59985399246216,0.0,65.15151,65.15151,0.15932521,-0.0077841706 +150.6098449230194,0.0,65.15151,65.15151,0.16869728,-0.0077841706 +150.62004399299622,0.0,65.15151,65.15151,0.16869728,-0.044785153 +150.62958693504333,0.0,65.15151,65.15151,0.17806935,-0.044785153 +150.63972902297974,0.0,65.15151,65.15151,0.17806935,-0.044785153 +150.6501269340515,0.0,65.15151,65.15151,0.17806935,-0.044785153 +150.66016292572021,0.0,65.15151,65.15151,0.16869728,0.0033161184 +150.66943907737732,0.0,65.15151,65.15151,0.16869728,0.0033161184 +150.68015813827515,0.0,65.15151,65.15151,0.16869728,0.0033161184 +150.6898491382599,0.0,65.15151,65.15151,0.16869728,0.0033161184 +150.7001669406891,0.0,65.15151,65.15151,0.16869728,0.0033161184 +150.7099039554596,0.0,65.15151,65.15151,0.16869728,-0.020734508 +150.7201600074768,0.0,65.15151,65.15151,0.16869728,-0.020734508 +150.72940397262573,0.0,65.15151,65.15151,0.15932521,-0.020734508 +150.7399079799652,0.0,65.15151,65.15151,0.15932521,-0.020734508 +150.7502031326294,0.0,65.15151,65.15151,0.14995314,-0.020734508 +150.760174036026,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.77019095420837,0.0,65.15151,65.15151,0.14995314,-0.002234026 +150.77979803085327,0.0,65.15151,65.15151,0.15932521,-0.002234026 +150.79015493392944,0.0,65.15151,65.15151,0.15932521,-0.002234026 +150.80018305778503,0.0,65.15151,65.15151,0.15932521,-0.002234026 +150.80989599227905,0.0,65.15151,65.15151,0.15932521,-0.0040840744 +150.81993794441223,0.0,65.15151,65.15151,0.14995314,-0.0040840744 +150.82955193519592,0.0,65.15151,65.15151,0.14995314,-0.0040840744 +150.84016394615173,0.0,65.15151,65.15151,0.15932521,-0.0040840744 +150.84964299201965,0.0,65.15151,65.15151,0.15932521,-0.0040840744 +150.8594150543213,0.0,65.15151,65.15151,0.14995314,-0.0077841706 +150.86977100372314,0.0,65.15151,65.15151,0.14995314,-0.0077841706 +150.88014101982117,0.0,65.15151,65.15151,0.14995314,-0.0077841706 +150.89015293121338,0.0,65.15151,65.15151,0.14058107,-0.0077841706 +150.90014505386353,0.0,65.15151,65.15151,0.14058107,-0.0077841706 +150.90988898277283,0.0,65.15151,65.15151,0.14995314,0.0014660703 +150.91965198516846,0.0,65.90909,65.90909,0.14995314,0.0014660703 +150.92956495285034,0.0,65.90909,65.90909,0.14058107,0.0014660703 +150.93960404396057,0.0,65.15151,65.15151,0.14058107,0.0014660703 +150.95019006729126,0.0,65.15151,65.15151,0.14058107,0.0014660703 +150.95971202850342,0.0,65.15151,65.15151,0.14058107,0.0014660703 +150.97017312049866,0.0,65.15151,65.15151,0.14058107,0.0014660703 +150.98016095161438,0.0,65.15151,65.15151,0.14058107,0.0014660703 +150.99015092849731,0.0,65.15151,65.15151,0.14058107,0.0014660703 +151.00013303756714,0.0,65.15151,65.15151,0.14058107,0.0014660703 +151.00949096679688,0.0,65.15151,65.15151,0.14058107,0.0014660703 +151.01982808113098,0.0,65.15151,65.15151,0.131209,-0.015184363 +151.0298810005188,0.0,65.15151,65.15151,0.14058107,-0.015184363 +151.03958892822266,0.0,65.15151,65.15151,0.14058107,-0.015184363 +151.04967999458313,0.0,65.15151,65.15151,0.131209,-0.015184363 +151.06014108657837,0.0,65.15151,65.15151,0.131209,-0.009634218 +151.07013702392578,0.0,65.15151,65.15151,0.14058107,-0.009634218 +151.08012795448303,0.0,65.15151,65.15151,0.14058107,-0.009634218 +151.09016299247742,0.0,65.15151,65.15151,0.131209,-0.009634218 +151.09946203231812,0.0,65.15151,65.15151,0.14058107,-0.009634218 +151.11013197898865,0.0,65.15151,65.15151,0.14058107,-0.0040840744 +151.12012791633606,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.12958097457886,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.13963294029236,0.0,65.15151,65.15151,0.14058107,-0.0040840744 +151.1501591205597,0.0,65.15151,65.15151,0.14058107,-0.0040840744 +151.16014504432678,0.0,65.15151,65.15151,0.131209,-0.002234026 +151.17016410827637,0.0,65.90909,65.90909,0.131209,-0.002234026 +151.18014097213745,0.0,65.90909,65.90909,0.131209,-0.002234026 +151.18958401679993,0.0,65.90909,65.90909,0.131209,-0.002234026 +151.20012307167053,0.0,65.90909,65.90909,0.131209,-0.002234026 +151.2100110054016,0.0,65.90909,65.90909,0.131209,-0.050335295 +151.21986603736877,0.0,65.90909,65.90909,0.14058107,-0.050335295 +151.22960209846497,0.0,65.90909,65.90909,0.14058107,-0.050335295 +151.24012899398804,0.0,65.15151,65.15151,0.14058107,-0.050335295 +151.25016593933105,0.0,65.90909,65.90909,0.14058107,-0.050335295 +151.26012206077576,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.26975202560425,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.27942395210266,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.28944396972656,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.30010890960693,0.0,65.90909,65.90909,0.14058107,-0.0040840744 +151.31014609336853,0.0,65.90909,65.90909,0.14058107,-0.024434604 +151.31956601142883,0.0,65.90909,65.90909,0.14058107,-0.024434604 +151.32949209213257,0.0,65.90909,65.90909,0.14058107,-0.024434604 +151.34010291099548,0.0,65.90909,65.90909,0.14058107,-0.024434604 +151.34953212738037,0.0,65.90909,65.90909,0.14058107,-0.024434604 +151.35984802246094,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.36952304840088,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.3801200389862,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.39008498191833,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.4001181125641,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.4095320701599,0.0,65.90909,65.90909,0.14995314,-0.0077841706 +151.41976404190063,0.0,65.90909,65.90909,0.14995314,-0.0077841706 +151.42956709861755,0.0,65.90909,65.90909,0.14995314,-0.0077841706 +151.44011402130127,0.0,65.90909,65.90909,0.14995314,-0.0077841706 +151.44971895217896,0.0,65.90909,65.90909,0.15932521,-0.0077841706 +151.4596450328827,0.0,65.90909,65.90909,0.15932521,-0.0040840744 +151.47008204460144,0.0,65.90909,65.90909,0.14995314,-0.0040840744 +151.4801161289215,0.0,65.90909,65.90909,0.14995314,-0.0040840744 +151.4901270866394,0.0,65.90909,65.90909,0.14995314,-0.0040840744 +151.49948906898499,0.0,65.90909,65.90909,0.14995314,-0.0040840744 +151.50989508628845,0.0,65.90909,65.90909,0.14995314,-0.009634218 +151.51987099647522,0.0,65.90909,65.90909,0.14058107,-0.009634218 +151.52957391738892,0.0,65.90909,65.90909,0.14995314,-0.009634218 +151.53959107398987,0.0,65.90909,65.90909,0.14995314,-0.009634218 +151.54973196983337,0.0,65.90909,65.90909,0.14058107,-0.009634218 +151.56010508537292,0.0,65.90909,65.90909,0.14995314,-0.002234026 +151.57012796401978,0.0,65.90909,65.90909,0.14995314,-0.002234026 +151.58010005950928,0.0,65.90909,65.90909,0.14995314,-0.002234026 +151.58944010734558,0.0,65.90909,65.90909,0.14995314,-0.002234026 +151.60009598731995,0.0,65.90909,65.90909,0.15932521,-0.002234026 +151.6099190711975,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.62007904052734,0.0,65.90909,65.90909,0.15932521,0.0014660703 +151.62942910194397,0.0,65.90909,65.90909,0.15932521,0.0014660703 +151.6397979259491,0.0,65.90909,65.90909,0.15932521,0.0014660703 +151.65012407302856,0.0,65.90909,65.90909,0.15932521,0.0014660703 +151.66008710861206,0.0,65.90909,65.90909,0.15932521,0.0014660703 +151.67007899284363,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.67955207824707,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.6900990009308,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.70008993148804,0.0,65.90909,65.90909,0.14995314,0.0014660703 +151.7098650932312,0.0,65.90909,65.90909,0.14995314,-0.013334316 +151.71984910964966,0.0,65.90909,65.90909,0.14995314,-0.013334316 +151.72960114479065,0.0,65.90909,65.90909,0.14995314,-0.013334316 +151.73956108093262,0.0,65.90909,65.90909,0.14995314,-0.013334316 +151.75009202957153,0.0,65.90909,65.90909,0.14995314,-0.013334316 +151.75956797599792,0.0,65.90909,65.90909,0.14058107,-0.020734508 +151.77008891105652,0.0,65.90909,65.90909,0.14058107,-0.020734508 +151.78008794784546,0.0,65.90909,65.90909,0.14058107,-0.020734508 +151.79006004333496,0.0,65.90909,65.90909,0.14058107,-0.020734508 +151.80008101463318,0.0,65.90909,65.90909,0.14058107,-0.020734508 +151.80987811088562,0.0,65.90909,65.90909,0.14058107,-0.0077841706 +151.81998705863953,0.0,65.90909,65.90909,0.14058107,-0.0077841706 +151.830069065094,0.0,65.90909,65.90909,0.131209,-0.0077841706 +151.8397650718689,0.0,65.90909,65.90909,0.131209,-0.0077841706 +151.84994411468506,0.0,65.90909,65.90909,0.131209,-0.0077841706 +151.86006808280945,0.0,65.90909,65.90909,0.131209,-0.020734508 +151.8700520992279,0.0,65.90909,65.90909,0.131209,-0.020734508 +151.8796079158783,0.0,65.90909,65.90909,0.131209,-0.020734508 +151.88959503173828,0.0,65.90909,65.90909,0.131209,-0.020734508 +151.90006494522095,0.0,65.90909,65.90909,0.14058107,-0.020734508 +151.90992212295532,0.0,65.90909,65.90909,0.14995314,-0.009634218 +151.9199070930481,0.0,64.393936,64.393936,0.14995314,-0.009634218 +151.92958092689514,0.0,63.636364,63.636364,0.14995314,-0.009634218 +151.9394941329956,0.0,62.878788,62.878788,0.14995314,-0.009634218 +151.95008397102356,0.0,61.363636,61.363636,0.15932521,-0.009634218 +151.96006107330322,0.0,59.848484,59.848484,0.14995314,-0.00038397792 +151.97005200386047,0.0,56.060604,56.060604,0.14058107,-0.00038397792 +151.9799039363861,0.0,56.060604,56.060604,0.14058107,-0.00038397792 +151.99003791809082,0.0,53.78788,53.78788,0.14058107,-0.00038397792 +151.99951100349426,0.0,50.757576,50.757576,0.14058107,-0.00038397792 +152.0099160671234,0.0,48.484848,48.484848,0.131209,-0.00038397792 +152.01980113983154,0.0,45.454548,45.454548,0.131209,-0.00038397792 +152.0295810699463,0.0,42.424244,42.424244,0.12183693,-0.00038397792 +152.0400640964508,0.0,39.39394,39.39394,0.11246486,-0.00038397792 +152.05014491081238,0.0,34.848484,34.848484,0.10309278,-0.00038397792 +152.06008291244507,0.0,32.575756,32.575756,0.08434864,-0.002234026 +152.0697591304779,0.0,32.575756,32.575756,0.07497657,-0.002234026 +152.08005714416504,0.0,29.545454,29.545454,0.05623243,-0.002234026 +152.08957409858704,0.0,29.545454,29.545454,0.037488285,-0.002234026 +152.10005402565002,0.0,25.757576,25.757576,0.028116215,-0.002234026 +152.1100299358368,0.0,25.757576,25.757576,0.018744143,-0.022584556 +152.11988711357117,0.0,21.969696,21.969696,0.009372071,-0.022584556 +152.12958908081055,0.0,20.454544,20.454544,0.0,-0.022584556 +152.1400580406189,0.0,18.939394,18.939394,0.0,-0.022584556 +152.15006613731384,0.0,18.939394,18.939394,0.0,-0.022584556 +152.1596200466156,0.0,15.909091,15.909091,0.0,-0.011484267 +152.1695899963379,0.0,14.39394,14.39394,0.0,-0.011484267 +152.18003511428833,0.0,12.878788,12.878788,0.0,-0.011484267 +152.19007396697998,0.0,12.878788,12.878788,0.0,-0.011484267 +152.200031042099,0.0,10.606061,10.606061,0.0,-0.011484267 +152.21005702018738,0.0,9.090909,9.090909,0.0,-0.03183481 +152.2198989391327,0.0,9.090909,9.090909,0.0,-0.03183481 +152.22959899902344,0.0,7.575758,7.575758,0.0,-0.03183481 +152.24004101753235,0.0,6.818182,6.818182,0.0,-0.03183481 +152.2494740486145,0.0,6.818182,6.818182,0.0,-0.03183481 +152.2600381374359,0.0,5.3030305,5.3030305,0.0,-0.022584556 +152.27001905441284,0.0,5.3030305,5.3030305,0.0,-0.022584556 +152.2794849872589,0.0,3.787879,3.787879,0.0,-0.022584556 +152.29005002975464,0.0,3.787879,3.787879,0.0,-0.022584556 +152.30002307891846,0.0,2.2727273,2.2727273,0.0,-0.022584556 +152.31001901626587,0.0,2.2727273,2.2727273,0.0,-0.022584556 +152.3199019432068,0.0,2.2727273,2.2727273,0.0,-0.022584556 +152.32957196235657,0.0,2.2727273,2.2727273,0.0,-0.022584556 +152.34002995491028,0.0,2.2727273,2.2727273,0.0,-0.022584556 +152.35012698173523,0.0,2.2727273,2.2727273,0.0,-0.022584556 +152.36003398895264,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.36957097053528,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.38004398345947,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.39000296592712,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.40003395080566,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.41001510620117,0.0,2.2727273,2.2727273,0.0,0.0014660703 +152.4199080467224,0.0,2.2727273,2.2727273,0.0,0.0014660703 +152.4295859336853,0.0,2.2727273,2.2727273,0.0,0.0014660703 +152.4400291442871,0.0,2.2727273,2.2727273,0.0,0.0014660703 +152.4500560760498,0.0,2.2727273,2.2727273,0.0,0.0014660703 +152.45967292785645,0.0,2.2727273,2.2727273,0.0,-0.011484267 +152.4700050354004,0.0,2.2727273,2.2727273,0.0,-0.011484267 +152.48002791404724,0.0,2.2727273,2.2727273,0.0,-0.011484267 +152.49002313613892,0.0,2.2727273,2.2727273,0.0,-0.011484267 +152.49952912330627,0.0,2.2727273,2.2727273,0.0,-0.011484267 +152.50990509986877,0.0,2.2727273,2.2727273,0.0,-0.009634218 +152.5198609828949,0.0,2.2727273,2.2727273,0.0,-0.009634218 +152.5295889377594,0.0,2.2727273,2.2727273,0.0,-0.009634218 +152.53996014595032,0.0,2.2727273,2.2727273,0.0,-0.009634218 +152.54976606369019,0.0,2.2727273,2.2727273,0.0,-0.009634218 +152.5600221157074,0.0,2.2727273,2.2727273,0.0,-0.00038397792 +152.57001304626465,0.0,2.2727273,2.2727273,0.0,-0.00038397792 +152.5794689655304,0.0,2.2727273,2.2727273,0.0,-0.00038397792 +152.58999300003052,0.0,2.2727273,2.2727273,0.0,-0.00038397792 +152.59986996650696,0.0,2.2727273,2.2727273,0.0,-0.00038397792 +152.60993313789368,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.61989212036133,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.6294960975647,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.63986802101135,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.64973998069763,0.0,2.2727273,2.2727273,0.0,-0.002234026 +152.6596450805664,0.0,2.2727273,2.2727273,0.0,-0.0040840744 +152.6700141429901,0.0,2.2727273,2.2727273,0.0,-0.0040840744 +152.68001294136047,0.0,2.2727273,2.2727273,0.0,-0.0040840744 +152.68974995613098,0.0,2.2727273,2.2727273,0.0,-0.0040840744 +152.70000505447388,0.0,3.030303,3.030303,0.0,-0.0040840744 +152.70992994308472,0.0,3.030303,3.030303,0.0,-0.002234026 +152.7200150489807,0.0,3.787879,3.787879,0.0,-0.002234026 +152.72995495796204,0.0,3.787879,3.787879,0.0,-0.002234026 +152.73959398269653,0.0,4.5454545,4.5454545,0.0,-0.002234026 +152.750018119812,0.0,4.5454545,4.5454545,0.0,-0.002234026 +152.759614944458,0.0,5.3030305,5.3030305,0.0,-0.015184363 +152.7695689201355,0.0,5.3030305,5.3030305,0.0,-0.015184363 +152.7795970439911,0.0,6.060606,6.060606,0.0,-0.015184363 +152.78998398780823,0.0,6.060606,6.060606,0.0,-0.015184363 +152.79973602294922,0.0,6.818182,6.818182,0.009372071,-0.015184363 +152.80982899665833,0.0,6.818182,6.818182,0.0,-0.015184363 +152.81989312171936,0.0,6.818182,6.818182,0.0,0.027366763 +152.82960200309753,0.0,7.575758,7.575758,0.0,0.027366763 +152.83999013900757,0.0,7.575758,7.575758,0.0,0.027366763 +152.8500099182129,0.0,8.333334,8.333334,0.009372071,0.027366763 +152.8599820137024,0.0,8.333334,8.333334,0.0,-0.013334316 +152.86943101882935,0.0,8.333334,8.333334,0.018744143,-0.013334316 +152.8799819946289,0.0,8.333334,8.333334,0.018744143,-0.013334316 +152.88972902297974,0.0,8.333334,8.333334,0.018744143,-0.013334316 +152.89998412132263,0.0,8.333334,8.333334,0.018744143,-0.013334316 +152.90992212295532,0.0,8.333334,8.333334,0.018744143,-0.029984765 +152.91988492012024,0.0,8.333334,8.333334,0.018744143,-0.029984765 +152.9295859336853,0.0,8.333334,8.333334,0.028116215,-0.029984765 +152.93998193740845,0.0,8.333334,8.333334,0.028116215,-0.029984765 +152.95000505447388,0.0,8.333334,8.333334,0.028116215,-0.029984765 +152.95997309684753,0.0,8.333334,8.333334,0.018744143,-0.0077841706 +152.9699890613556,0.0,8.333334,8.333334,0.028116215,-0.0077841706 +152.9796440601349,0.0,8.333334,8.333334,0.028116215,-0.0077841706 +152.98996090888977,0.0,8.333334,8.333334,0.037488285,-0.0077841706 +152.99996399879456,0.0,7.575758,7.575758,0.037488285,-0.0077841706 +153.00992703437805,0.0,7.575758,7.575758,0.028116215,-0.002234026 +153.01980900764465,0.0,7.575758,7.575758,0.028116215,-0.002234026 +153.0296049118042,0.0,7.575758,7.575758,0.018744143,-0.002234026 +153.03994512557983,0.0,7.575758,7.575758,0.018744143,-0.002234026 +153.04998397827148,0.0,6.818182,6.818182,0.018744143,-0.002234026 +153.05996203422546,0.0,6.818182,6.818182,0.018744143,-0.0040840744 +153.06959509849548,0.0,6.818182,6.818182,0.028116215,-0.0040840744 +153.0799810886383,0.0,6.060606,6.060606,0.028116215,-0.0040840744 +153.08997702598572,0.0,5.3030305,5.3030305,0.028116215,-0.0040840744 +153.0999801158905,0.0,5.3030305,5.3030305,0.018744143,-0.0040840744 +153.10989212989807,0.0,5.3030305,5.3030305,0.018744143,-0.026284654 +153.1194190979004,0.0,5.3030305,5.3030305,0.018744143,-0.026284654 +153.12960505485535,0.0,4.5454545,4.5454545,0.018744143,-0.026284654 +153.13995099067688,0.0,4.5454545,4.5454545,0.028116215,-0.026284654 +153.1495180130005,0.0,4.5454545,4.5454545,0.018744143,-0.026284654 +153.1599681377411,0.0,3.787879,3.787879,0.018744143,-0.01888446 +153.16998195648193,0.0,3.787879,3.787879,0.028116215,-0.01888446 +153.1799590587616,0.0,3.030303,3.030303,0.018744143,-0.01888446 +153.18943691253662,0.0,3.030303,3.030303,0.018744143,-0.01888446 +153.19997000694275,0.0,2.2727273,2.2727273,0.009372071,-0.01888446 +153.20994997024536,0.0,2.2727273,2.2727273,0.009372071,0.0033161184 +153.21983695030212,0.0,2.2727273,2.2727273,0.009372071,0.0033161184 +153.22962999343872,0.0,1.5151515,1.5151515,0.009372071,0.0033161184 +153.23996591567993,0.0,1.5151515,1.5151515,0.009372071,0.0033161184 +153.24963808059692,0.0,1.5151515,1.5151515,0.009372071,0.0033161184 +153.2599699497223,0.0,0.75757575,0.75757575,0.0,-0.009634218 +153.26995396614075,0.0,0.75757575,0.75757575,0.0,-0.009634218 +153.27956199645996,0.0,0.75757575,0.75757575,0.0,-0.009634218 +153.28996014595032,0.0,0.75757575,0.75757575,0.0,-0.009634218 +153.2996289730072,0.0,0.75757575,0.75757575,0.0,-0.009634218 +153.30968499183655,0.0,0.0,0.0,0.0,-0.002234026 +153.31995391845703,0.0,0.0,0.0,0.0,-0.002234026 +153.3295979499817,0.0,0.0,0.0,0.0,-0.002234026 +153.33995604515076,0.0,0.0,0.0,0.0,-0.002234026 +153.34995794296265,0.0,0.0,0.0,0.0,-0.002234026 +153.35996103286743,0.0,0.0,0.0,0.0,0.0014660703 +153.36961603164673,0.0,0.0,0.0,0.0,0.0014660703 +153.37996101379395,0.0,0.0,0.0,0.0,0.0014660703 +153.38991713523865,0.0,0.0,0.0,0.0,0.0014660703 +153.39959001541138,0.0,0.0,0.0,0.0,0.0014660703 +153.40993213653564,0.0,0.0,0.0,0.0,-0.0040840744 +153.4199619293213,0.0,0.0,0.0,0.0,-0.0040840744 +153.42960000038147,0.0,0.0,0.0,0.0,-0.0040840744 +153.4399471282959,0.0,0.0,0.0,0.0,-0.0040840744 +153.44995713233948,0.0,0.0,0.0,0.0,-0.0040840744 +153.45971202850342,0.0,0.0,0.0,0.0,-0.0040840744 +153.46991205215454,0.0,0.0,0.0,0.0,-0.0040840744 +153.4795699119568,0.0,0.0,0.0,0.0,-0.0040840744 +153.48939609527588,0.0,0.0,0.0,0.0,-0.0040840744 +153.49992513656616,0.0,0.0,0.0,0.0,-0.0040840744 +153.50992393493652,0.0,0.0,0.0,0.0,-0.013334316 +153.5199420452118,0.0,0.0,0.0,0.0,-0.013334316 +153.52994012832642,0.0,0.0,0.0,0.0,-0.013334316 +153.53957104682922,0.0,0.0,0.0,0.0,-0.013334316 +153.54981398582458,0.0,0.0,0.0,0.0,-0.013334316 +153.55978107452393,0.0,0.0,0.0,0.0,0.0070162313 +153.56994104385376,0.0,0.0,0.0,0.0,0.0070162313 +153.57962203025818,0.0,0.0,0.0,0.0,0.0070162313 +153.58960008621216,0.0,0.0,0.0,0.0,0.0070162313 +153.59977102279663,0.0,0.0,0.0,0.0,0.0070162313 +153.60993909835815,0.0,0.0,0.0,0.0,0.0070162313 +153.61990213394165,0.0,0.0,0.0,0.0,-0.011484267 +153.62960505485535,0.0,0.0,0.0,0.0,-0.011484267 +153.6399209499359,0.0,0.0,0.0,0.0,-0.011484267 +153.64949893951416,0.0,0.0,0.0,0.0,-0.011484267 +153.65946006774902,0.0,0.0,0.0,0.0,-0.020734508 +153.66989707946777,0.0,0.0,0.0,0.0,-0.020734508 +153.67991495132446,0.0,0.0,0.0,0.0,-0.020734508 +153.68991994857788,0.0,0.0,0.0,0.0,-0.020734508 +153.69992208480835,0.0,0.0,0.0,0.0,-0.020734508 +153.70989394187927,0.0,0.0,0.0,0.0,-0.020734508 +153.71984791755676,0.0,0.0,0.0,0.0,-0.002234026 +153.72962713241577,0.0,0.0,0.0,0.0,-0.002234026 +153.73992395401,0.0,0.0,0.0,0.0,-0.002234026 +153.749920129776,0.0,0.0,0.0,0.0,-0.002234026 +153.75992798805237,0.0,0.0,0.0,0.0,-0.009634218 +153.769917011261,0.0,0.0,0.0,0.0,-0.009634218 +153.77990102767944,0.0,0.0,0.0,0.0,-0.009634218 +153.7899100780487,0.0,0.0,0.0,0.0,-0.009634218 +153.79946112632751,0.0,0.0,0.0,0.0,-0.009634218 +153.80992007255554,0.0,0.0,0.0,0.0,-0.009634218 +153.81990694999695,0.0,0.0,0.0,0.0,-0.009634218 +153.82958912849426,0.0,0.0,0.0,0.0,-0.009634218 +153.83982491493225,0.0,0.0,0.0,0.0,-0.009634218 +153.8499140739441,0.0,0.0,0.0,0.0,-0.009634218 +153.85991501808167,0.0,0.0,0.0,0.0,0.0033161184 +153.86989307403564,0.0,0.0,0.0,0.0,0.0033161184 +153.87991499900818,0.0,0.0,0.0,0.0,0.0033161184 +153.88948106765747,0.0,0.0,0.0,0.0,0.0033161184 +153.89973402023315,0.0,0.0,0.0,0.0,0.0033161184 +153.90989112854004,0.0,0.0,0.0,0.0,0.0033161184 +153.91988801956177,0.0,0.0,0.0,0.0,0.0014660703 +153.92955112457275,0.0,0.0,0.0,0.0,0.0014660703 +153.93991208076477,0.0,0.0,0.0,0.0,0.0014660703 +153.94954800605774,0.0,0.0,0.0,0.0,0.0014660703 +153.95991396903992,0.0,0.0,0.0,0.0,-0.0077841706 +153.96967101097107,0.0,0.0,0.0,0.0,-0.0077841706 +153.97989296913147,0.0,0.0,0.0,0.0,-0.0077841706 +153.9898760318756,0.0,0.0,0.0,0.0,-0.0077841706 +153.99988913536072,0.0,0.0,0.0,0.0,-0.0077841706 +154.00991201400757,0.0,0.0,0.0,0.0,-0.0077841706 +154.0195460319519,0.0,0.0,0.0,0.0,-0.013334316 +154.02962398529053,0.0,0.0,0.0,0.0,-0.013334316 +154.03956508636475,0.0,0.0,0.0,0.0,-0.013334316 +154.04988503456116,0.0,0.0,0.0,0.0,-0.013334316 +154.05964708328247,0.0,0.0,0.0,0.0,-0.0040840744 +154.06989002227783,0.0,0.0,0.0,0.0,-0.0040840744 +154.07989311218262,0.0,0.0,0.0,0.0,-0.0040840744 +154.0898950099945,0.0,0.0,0.0,0.0,-0.0040840744 +154.09941911697388,0.0,0.0,0.0,0.0,-0.0040840744 +154.1094160079956,0.0,0.0,0.0,0.0,-0.0040840744 +154.11987805366516,0.0,0.0,0.0,0.0,-0.01888446 +154.12963700294495,0.0,0.0,0.0,0.0,-0.01888446 +154.13989901542664,0.0,0.0,0.0,0.0,-0.01888446 +154.1499059200287,0.0,0.0,0.0,0.0,-0.01888446 +154.15970993041992,0.0,0.0,0.0,0.0,0.012566376 +154.16990399360657,0.0,0.0,0.0,0.0,0.012566376 +154.17988109588623,0.0,0.0,0.0,0.0,0.012566376 +154.18953704833984,0.0,0.0,0.0,0.0,0.012566376 +154.19989800453186,0.0,0.0,0.0,0.0,0.012566376 +154.2098889350891,0.0,0.0,0.0,0.0,0.0014660703 +154.2198851108551,0.0,0.0,0.0,0.0,0.0014660703 +154.22962093353271,0.0,0.0,0.0,0.0,0.0014660703 +154.23989009857178,0.0,0.0,0.0,0.0,0.0014660703 +154.249902009964,0.0,0.0,0.0,0.0,0.0014660703 +154.25987601280212,0.0,0.0,0.0,0.0,-0.024434604 +154.26986503601074,0.0,0.0,0.0,0.0,-0.024434604 +154.27964997291565,0.0,0.0,0.0,0.0,-0.024434604 +154.28987193107605,0.0,0.0,0.0,0.0,-0.024434604 +154.2998809814453,0.0,0.0,0.0,0.0,-0.024434604 +154.30942606925964,0.0,0.0,0.0,0.0,-0.002234026 +154.31985092163086,0.0,0.0,0.0,0.0,-0.002234026 +154.32959604263306,0.0,0.0,0.0,0.0,-0.002234026 +154.33972001075745,0.0,0.0,0.0,0.0,-0.002234026 +154.34987497329712,0.0,0.0,0.0,0.0,-0.002234026 +154.35988593101501,0.0,0.0,0.0,0.0,-0.00038397792 +154.36975407600403,0.0,0.0,0.0,0.0,-0.00038397792 +154.37953114509583,0.0,0.0,0.0,0.0,-0.00038397792 +154.38985896110535,0.0,0.0,0.0,0.0,-0.00038397792 +154.3998670578003,0.0,0.0,0.0,0.0,-0.00038397792 +154.4098699092865,0.0,0.0,0.0,0.0,0.08471829 +154.41989493370056,0.0,0.0,0.0,0.0,0.08471829 +154.4296350479126,0.0,0.0,0.0,0.0,0.08471829 +154.43961906433105,0.0,0.0,0.0,0.0,0.08471829 +154.44944310188293,0.0,0.0,0.0,0.0,0.08471829 +154.45971202850342,0.0,0.0,0.0,0.0,-0.009634218 +154.46984601020813,0.0,0.0,0.0,0.0,-0.009634218 +154.4798641204834,0.0,0.0,0.0,0.0,-0.009634218 +154.4898760318756,0.0,0.0,0.0,0.0,-0.009634218 +154.49987602233887,0.0,0.0,0.0,0.0,-0.009634218 +154.50983691215515,0.0,0.0,0.0,0.0,0.0014660703 +154.51987195014954,0.0,0.0,0.0,0.0,0.0014660703 +154.5296220779419,0.0,0.0,0.0,0.0,0.0014660703 +154.53985404968262,0.0,0.0,0.0,0.0,0.0014660703 +154.5496940612793,0.0,0.0,0.0,0.0,0.0014660703 +154.55984592437744,0.0,0.0,0.0,0.0,-0.009634218 +154.56984996795654,0.0,0.0,0.0,0.0,-0.009634218 +154.57986092567444,0.0,0.0,0.0,0.0,-0.009634218 +154.58983492851257,0.0,0.0,0.0,0.0,-0.009634218 +154.599622964859,0.0,0.0,0.0,0.0,-0.009634218 +154.60987901687622,0.0,0.0,0.0,0.0,-0.009634218 +154.61985993385315,0.0,0.0,0.0,0.0,-0.00038397792 +154.62960410118103,0.0,0.0,0.0,0.0,-0.00038397792 +154.6395390033722,0.0,0.0,0.0,0.0,-0.00038397792 +154.64986991882324,0.0,0.0,0.0,0.0,-0.00038397792 +154.65984392166138,0.0,0.0,0.0,0.0,-0.0040840744 +154.66983008384705,0.0,0.0,0.0,0.0,-0.0040840744 +154.67984104156494,0.0,0.0,0.0,0.0,-0.0040840744 +154.68983697891235,0.0,0.0,0.0,0.0,-0.0040840744 +154.69986605644226,0.0,0.0,0.0,0.0,-0.0040840744 +154.70984196662903,0.0,0.0,0.0,0.0,-0.0040840744 +154.71983408927917,0.0,0.0,0.0,0.0,-0.013334316 +154.72938895225525,0.0,0.0,0.0,0.0,-0.013334316 +154.73982906341553,0.0,0.0,0.0,0.0,-0.013334316 +154.74986100196838,0.0,0.0,0.0,0.0,-0.013334316 +154.75983810424805,0.0,0.0,0.0,0.0,-0.0040840744 +154.76982808113098,0.0,0.0,0.0,0.0,-0.0040840744 +154.77939891815186,0.0,0.0,0.0,0.0,-0.0040840744 +154.7898120880127,0.0,0.0,0.0,0.0,-0.0040840744 +154.7998390197754,0.0,0.0,0.0,0.0,-0.0040840744 +154.80983710289001,0.0,0.0,0.0,0.0,-0.0040840744 +154.81983613967896,0.0,0.0,0.0,0.0,-0.0077841706 +154.82961201667786,0.0,0.0,0.0,0.0,-0.0077841706 +154.83971214294434,0.0,0.0,0.0,0.0,-0.0077841706 +154.84985494613647,0.0,0.0,0.0,0.0,-0.0077841706 +154.8598349094391,0.0,0.0,0.0,0.0,-0.026284654 +154.86956405639648,0.0,0.0,0.0,0.0,-0.026284654 +154.87984204292297,0.0,0.0,0.0,0.0,-0.026284654 +154.88983392715454,0.0,0.0,0.0,0.0,-0.026284654 +154.89981508255005,0.0,0.0,0.0,0.0,-0.026284654 +154.90980291366577,0.0,0.0,0.0,0.0,-0.026284654 +154.9198169708252,0.0,0.0,0.0,0.0,-0.024434604 +154.9296190738678,0.0,0.0,0.0,0.0,-0.024434604 +154.93982696533203,0.0,0.0,0.0,0.0,-0.024434604 +154.94976210594177,0.0,0.0,0.0,0.0,-0.024434604 +154.9598240852356,0.0,0.0,0.0,0.0,0.019966569 +154.9698281288147,0.0,0.0,0.0,0.0,0.019966569 +154.97982811927795,0.0,0.0,0.0,0.0,0.019966569 +154.98965406417847,0.0,0.0,0.0,0.0,0.019966569 +154.9998209476471,0.0,0.0,0.0,0.0,0.019966569 +155.00949501991272,0.0,0.0,0.0,0.0,0.019966569 +155.01982307434082,0.0,0.0,0.0,0.0,-0.0077841706 +155.0296459197998,0.0,0.0,0.0,0.0,-0.0077841706 +155.03983402252197,0.0,0.0,0.0,0.0,-0.0077841706 +155.04940795898438,0.0,0.0,0.0,0.0,-0.0077841706 +155.0598020553589,0.0,0.0,0.0,0.0,-0.0040840744 +155.06980514526367,0.0,0.0,0.0,0.0,-0.0040840744 +155.07978200912476,0.0,0.0,0.0,0.0,-0.0040840744 +155.08981108665466,0.0,0.0,0.0,0.0,-0.0040840744 +155.09939193725586,0.0,0.0,0.0,0.0,-0.0040840744 +155.109787940979,0.0,0.0,0.0,0.0,-0.0040840744 +155.11982202529907,0.0,0.0,0.0,0.0,-0.002234026 +155.12962198257446,0.0,0.0,0.0,0.0,-0.002234026 +155.13981199264526,0.0,0.0,0.0,0.0,-0.002234026 +155.1498100757599,0.0,0.0,0.0,0.0,-0.002234026 +155.1598129272461,0.0,0.0,0.0,0.0,-0.011484267 +155.16958594322205,0.0,0.0,0.0,0.0,-0.011484267 +155.17980098724365,0.0,0.0,0.0,0.0,-0.011484267 +155.18965697288513,0.0,0.0,0.0,0.0,-0.011484267 +155.19981408119202,0.0,0.0,0.0,0.0,-0.011484267 +155.20981192588806,0.0,0.0,0.0,0.0,-0.0040840744 +155.21979212760925,0.0,0.0,0.0,0.0,-0.0040840744 +155.22947597503662,0.0,0.0,0.0,0.0,-0.0040840744 +155.2398760318756,0.0,0.0,0.0,0.0,-0.0040840744 +155.24943113327026,0.0,0.0,0.0,0.0,-0.0040840744 +155.25942492485046,0.0,0.0,0.0,0.0,0.019966569 +155.26977801322937,0.0,0.0,0.0,0.0,0.019966569 +155.27950501441956,0.0,0.0,0.0,0.0,0.019966569 +155.2897961139679,0.0,0.0,0.0,0.0,0.019966569 +155.29978895187378,0.0,0.0,0.0,0.0,0.019966569 +155.30976605415344,0.0,0.0,0.0,0.0,-0.011484267 +155.31979608535767,0.0,0.0,0.0,0.0,-0.011484267 +155.32961893081665,0.0,0.0,0.0,0.0,-0.011484267 +155.33981204032898,0.0,0.0,0.0,0.0,-0.011484267 +155.34980511665344,0.0,0.0,0.0,0.0,-0.011484267 +155.35956501960754,0.0,0.0,0.0,0.0,-0.009634218 +155.36979699134827,0.0,0.0,0.0,0.0,-0.009634218 +155.37979412078857,0.0,0.0,0.0,0.0,-0.009634218 +155.38977599143982,0.0,0.0,0.0,0.0,-0.009634218 +155.39979100227356,0.0,0.0,0.0,0.0,-0.009634218 +155.40980410575867,0.0,0.0,0.0,0.0,-0.0077841706 +155.41978311538696,0.0,0.0,0.0,0.0,-0.0077841706 +155.42959904670715,0.0,0.0,0.0,0.0,-0.0077841706 +155.43979811668396,0.0,0.0,0.0,0.0,-0.0077841706 +155.44980907440186,0.0,0.0,0.0,0.0,-0.0077841706 +155.459792137146,0.0,0.0,0.0,0.0,0.012566376 +155.46976709365845,0.0,0.0,0.0,0.0,0.012566376 +155.47979092597961,0.0,0.0,0.0,0.0,0.012566376 +155.4895420074463,0.0,0.0,0.0,0.0,0.012566376 +155.4997820854187,0.0,0.0,0.0,0.0,0.012566376 +155.5097999572754,0.0,0.0,0.0,0.0,0.012566376 +155.51979613304138,0.0,0.0,0.0,0.0,0.012566376 +155.52963995933533,0.0,0.0,0.0,0.0,0.012566376 +155.53978204727173,0.0,0.0,0.0,0.0,0.012566376 +155.54962611198425,0.0,0.0,0.0,0.0,0.012566376 +155.5597710609436,0.0,0.0,0.0,0.0,-0.029984765 +155.56976795196533,0.0,0.0,0.0,0.0,-0.029984765 +155.5797700881958,0.0,0.0,0.0,0.0,-0.029984765 +155.5897889137268,0.0,0.0,0.0,0.0,-0.029984765 +155.599769115448,0.0,0.0,0.0,0.0,-0.029984765 +155.60978412628174,0.0,0.0,0.0,0.0,-0.029984765 +155.6196961402893,0.0,0.0,0.0,0.0,-0.011484267 +155.62963795661926,0.0,0.0,0.0,0.0,-0.011484267 +155.6397740840912,0.0,0.0,0.0,0.0,-0.011484267 +155.64980912208557,0.0,0.0,0.0,0.0,-0.011484267 +155.65977311134338,0.0,0.0,0.0,0.0,-0.0077841706 +155.66977405548096,0.0,0.0,0.0,0.0,-0.0077841706 +155.67977714538574,0.0,0.0,0.0,0.0,-0.0077841706 +155.68953895568848,0.0,0.0,0.0,0.0,-0.0077841706 +155.69970297813416,0.0,0.0,0.0,0.0,-0.0077841706 +155.70977306365967,0.0,0.0,0.0,0.0,-0.0077841706 +155.7197561264038,0.0,0.0,0.0,0.0,-0.0077841706 +155.72964310646057,0.0,0.0,0.0,0.0,-0.0077841706 +155.7397620677948,0.0,0.0,0.0,0.0,-0.0077841706 +155.74977803230286,0.0,0.0,0.0,0.0,-0.0077841706 +155.75944113731384,0.0,0.0,0.0,0.0,-0.0040840744 +155.7697479724884,0.0,0.0,0.0,0.0,-0.0040840744 +155.77978205680847,0.0,0.0,0.0,0.0,-0.0040840744 +155.78954195976257,0.0,0.0,0.0,0.0,-0.0040840744 +155.79976296424866,0.0,0.0,0.0,0.0,-0.0040840744 +155.8097529411316,0.0,0.0,0.0,0.0,-0.0040840744 +155.81978297233582,0.0,0.0,0.0,0.0,-0.022584556 +155.82942008972168,0.0,0.0,0.0,0.0,-0.022584556 +155.83975195884705,0.0,0.0,0.0,0.0,-0.022584556 +155.84977912902832,0.0,0.0,0.0,0.0,-0.022584556 +155.85975193977356,0.0,0.0,0.0,0.0,-0.009634218 +155.86974811553955,0.0,0.0,0.0,0.0,-0.009634218 +155.87940502166748,0.0,0.0,0.0,0.0,-0.009634218 +155.88974714279175,0.0,0.0,0.0,0.0,-0.009634218 +155.899747133255,0.0,0.0,0.0,0.0,-0.009634218 +155.9097580909729,0.0,0.0,0.0,0.0,-0.009634218 +155.91949892044067,0.0,0.0,0.0,0.0,-0.00038397792 +155.9296109676361,0.0,0.0,0.0,0.0,-0.00038397792 +155.93977999687195,0.0,0.0,0.0,0.0,-0.00038397792 +155.9497730731964,0.0,0.0,0.0,0.0,-0.00038397792 +155.95975399017334,0.0,0.0,0.0,0.0,-0.0040840744 +155.96976804733276,0.0,0.0,0.0,0.0,-0.0040840744 +155.9797649383545,0.0,0.0,0.0,0.0,-0.0040840744 +155.98969197273254,0.0,0.0,0.0,0.0,-0.0040840744 +155.99977111816406,0.0,0.0,0.0,0.0,-0.0040840744 +156.00959396362305,0.0,0.0,0.0,0.0,-0.0040840744 +156.01974892616272,0.0,0.0,0.0,0.0,0.0014660703 +156.02964091300964,0.0,0.0,0.0,0.0,0.0014660703 +156.03977012634277,0.0,0.0,0.0,0.0,0.0014660703 +156.04978704452515,0.0,0.0,0.0,0.0,0.0014660703 +156.05979108810425,0.0,0.0,0.0,0.0,-0.00038397792 +156.0697479248047,0.0,0.0,0.0,0.0,-0.00038397792 +156.07965898513794,0.0,0.0,0.0,0.0,-0.00038397792 +156.08975505828857,0.0,0.0,0.0,0.0,-0.00038397792 +156.099534034729,0.0,0.0,0.0,0.0,-0.00038397792 +156.1097400188446,0.0,0.0,0.0,0.0,-0.00038397792 +156.11975598335266,0.0,0.0,0.0,0.0,-0.013334316 +156.12966108322144,0.0,0.0,0.0,0.0,-0.013334316 +156.13966012001038,0.0,0.0,0.0,0.0,-0.013334316 +156.1497619152069,0.0,0.0,0.0,0.0,-0.013334316 +156.15976309776306,0.0,0.0,0.0,0.0,0.0070162313 +156.16943407058716,0.0,0.0,0.0,0.0,0.0070162313 +156.17976713180542,0.0,0.0,0.0,0.0,0.0070162313 +156.18974804878235,0.0,0.0,0.0,0.0,0.0070162313 +156.1995871067047,0.0,0.0,0.0,0.0,0.0070162313 +156.20976400375366,0.0,0.0,0.0,0.0,0.0070162313 +156.21974802017212,0.0,0.0,0.0,0.0,-0.0077841706 +156.2296941280365,0.0,0.0,0.0,0.0,-0.0077841706 +156.23974514007568,0.0,0.0,0.0,0.0,-0.0077841706 +156.24976110458374,0.0,0.0,0.0,0.0,-0.0077841706 +156.25963711738586,0.0,0.0,0.0,0.0,0.0033161184 +156.26973605155945,0.0,0.0,0.0,0.0,0.0033161184 +156.27980208396912,0.0,0.0,0.0,0.0,0.0033161184 +156.28969812393188,0.0,0.0,0.0,0.0,0.0033161184 +156.29975295066833,0.0,0.0,0.0,0.0,0.0033161184 +156.3096959590912,0.0,0.0,0.0,0.0,-0.0040840744 +156.31962704658508,0.0,0.0,0.0,0.0,-0.0040840744 +156.32960510253906,0.0,0.0,0.0,0.0,-0.0040840744 +156.33980703353882,0.0,0.0,0.0,0.0,-0.0040840744 +156.34959602355957,0.0,0.0,0.0,0.0,-0.0040840744 +156.35973596572876,0.0,0.0,0.0,0.0,-0.0040840744 +156.36974906921387,0.0,0.0,0.0,0.0,-0.0040840744 +156.3794400691986,0.0,0.0,0.0,0.0,-0.0040840744 +156.38968896865845,0.0,0.0,0.0,0.0,-0.0040840744 +156.39972591400146,0.0,0.0,0.0,0.0,-0.0040840744 +156.4094660282135,0.0,0.0,0.0,0.0,0.008866279 +156.4197211265564,0.0,0.0,0.0,0.0,0.008866279 +156.42968201637268,0.0,0.0,0.0,0.0,0.008866279 +156.4395830631256,0.0,0.0,0.0,0.0,0.008866279 +156.44975113868713,0.0,0.0,0.0,0.0,0.008866279 +156.45973992347717,0.0,0.0,0.0,0.0,-0.009634218 +156.46967792510986,0.0,0.0,0.0,0.0,-0.009634218 +156.47968697547913,0.0,0.0,0.0,0.0,-0.009634218 +156.48973298072815,0.0,0.0,0.0,0.0,-0.009634218 +156.4997160434723,0.0,0.0,0.0,0.0,-0.009634218 +156.5094609260559,0.0,0.0,0.0,0.0,-0.020734508 +156.51973414421082,0.0,0.0,0.0,0.0,-0.020734508 +156.52956700325012,0.0,0.0,0.0,0.0,-0.020734508 +156.5396831035614,0.0,0.0,0.0,0.0,-0.020734508 +156.54972410202026,0.0,0.0,0.0,0.0,-0.020734508 +156.55968308448792,0.0,0.0,0.0,0.0,-0.0040840744 +156.56968712806702,0.0,0.0,0.0,0.0,-0.0040840744 +156.5797369480133,0.0,0.0,0.0,0.0,-0.0040840744 +156.58963894844055,0.0,0.0,0.0,0.0,-0.0040840744 +156.5996870994568,0.0,0.0,0.0,0.0,-0.0040840744 +156.6096830368042,0.0,0.0,0.0,0.0,-0.002234026 +156.6195409297943,0.0,0.0,0.0,0.0,-0.002234026 +156.62968397140503,0.0,0.0,0.0,0.0,-0.002234026 +156.6396930217743,0.0,0.0,0.0,0.0,-0.002234026 +156.64976906776428,0.0,0.0,0.0,0.0,-0.002234026 +156.6597020626068,0.0,0.0,0.0,0.0,0.012566376 +156.6696650981903,0.0,0.0,0.0,0.0,0.012566376 +156.67969799041748,0.0,0.0,0.0,0.0,0.012566376 +156.68968105316162,0.0,0.0,0.0,0.0,0.012566376 +156.69967794418335,0.0,0.0,0.0,0.0,0.012566376 +156.70954203605652,0.0,0.0,0.0,0.0,0.012566376 +156.71968913078308,0.0,0.0,0.0,0.0,-0.0077841706 +156.7296760082245,0.0,0.0,0.0,0.0,-0.0077841706 +156.73947405815125,0.0,0.0,0.0,0.0,-0.0077841706 +156.74968194961548,0.0,0.0,0.0,0.0,-0.0077841706 +156.7594850063324,0.0,0.0,0.0,0.0,0.032916907 +156.7696990966797,0.0,0.0,0.0,0.0,0.032916907 +156.7796881198883,0.0,0.0,0.0,0.0,0.032916907 +156.78940796852112,0.0,0.0,0.0,0.0,0.032916907 +156.79953694343567,0.0,0.0,0.0,0.0,0.032916907 +156.8096640110016,0.0,0.0,0.0,0.0,0.032916907 +156.8196849822998,0.0,0.0,0.0,0.0,-0.015184363 +156.82956409454346,0.0,0.0,0.0,0.0,-0.015184363 +156.83965802192688,0.0,0.0,0.0,0.0,-0.015184363 +156.8496949672699,0.0,0.0,0.0,0.0,-0.015184363 +156.85967803001404,0.0,0.0,0.0,0.0,0.010716328 +156.869647026062,0.0,0.0,0.0,0.0,0.010716328 +156.87946391105652,0.0,0.0,0.0,0.0,0.010716328 +156.88951802253723,0.0,0.0,0.0,0.0,0.010716328 +156.8996820449829,0.0,0.0,0.0,0.0,0.010716328 +156.9096450805664,0.0,0.0,0.0,0.0,0.010716328 +156.91953802108765,0.0,0.0,0.0,0.0,-0.009634218 +156.9296760559082,0.0,0.0,0.0,0.0,-0.009634218 +156.93951797485352,0.0,0.0,0.0,0.0,-0.009634218 +156.94967198371887,0.0,0.0,0.0,0.0,-0.009634218 +156.95967507362366,0.0,0.0,0.0,0.0,-0.013334316 +156.9696559906006,0.0,0.0,0.0,0.0,-0.013334316 +156.979483127594,0.0,0.0,0.0,0.0,-0.013334316 +156.98964405059814,0.0,0.0,0.0,0.0,-0.013334316 +156.99949312210083,0.0,0.0,0.0,0.0,-0.013334316 +157.0096719264984,0.0,0.0,0.0,0.0,-0.013334316 +157.01965999603271,0.0,0.0,0.0,0.0,0.0014660703 +157.02964401245117,0.0,0.0,0.0,0.0,0.0014660703 +157.03966307640076,0.0,0.0,0.0,0.0,0.0014660703 +157.04951405525208,0.0,0.0,0.0,0.0,0.0014660703 +157.05965304374695,0.0,0.0,0.0,0.0,-0.002234026 +157.06948113441467,0.0,0.0,0.0,0.0,-0.002234026 +157.0796411037445,0.0,0.0,0.0,0.0,-0.002234026 +157.08964800834656,0.0,0.0,0.0,0.0,-0.002234026 +157.0996389389038,0.0,0.0,0.0,0.0,-0.002234026 +157.10962891578674,0.0,0.0,0.0,0.0,-0.002234026 +157.1196551322937,0.0,0.0,0.0,0.0,-0.024434604 +157.129634141922,0.0,0.0,0.0,0.0,-0.024434604 +157.13945293426514,0.0,0.0,0.0,0.0,-0.024434604 +157.14965391159058,0.0,0.0,0.0,0.0,-0.024434604 +157.15948390960693,0.0,0.0,0.0,0.0,-0.002234026 +157.16952204704285,0.0,0.0,0.0,0.0,-0.002234026 +157.17957592010498,0.0,0.0,0.0,0.0,-0.002234026 +157.1896209716797,0.0,0.0,0.0,0.0,-0.002234026 +157.19964003562927,0.0,0.0,0.0,0.0,-0.002234026 +157.20964694023132,0.0,0.0,0.0,0.0,-0.002234026 +157.21963500976562,0.0,0.0,0.0,0.0,-0.029984765 +157.22962093353271,0.0,0.0,0.0,0.0,-0.029984765 +157.23963403701782,0.0,0.0,0.0,0.0,-0.029984765 +157.2494339942932,0.0,0.0,0.0,0.0,-0.029984765 +157.25939893722534,0.0,0.0,0.0,0.0,-0.013334316 +157.26962208747864,0.0,0.0,0.0,0.0,-0.013334316 +157.2796311378479,0.0,0.0,0.0,0.0,-0.013334316 +157.2896499633789,0.0,0.0,0.0,0.0,-0.013334316 +157.29962992668152,0.0,0.0,0.0,0.0,-0.013334316 +157.30961108207703,0.0,0.0,0.0,0.0,-0.002234026 +157.31957602500916,0.0,0.0,0.0,0.0,-0.002234026 +157.32963109016418,0.0,0.0,0.0,0.0,-0.002234026 +157.3394250869751,0.0,0.0,0.0,0.0,-0.002234026 +157.34966111183167,0.0,0.0,0.0,0.0,-0.002234026 +157.35964107513428,0.0,0.0,0.0,0.0,-0.011484267 +157.36962795257568,0.0,0.0,0.0,0.0,-0.011484267 +157.37963199615479,0.0,0.0,0.0,0.0,-0.011484267 +157.38959407806396,0.0,0.0,0.0,0.0,-0.011484267 +157.3996160030365,0.0,0.0,0.0,0.0,-0.011484267 +157.4096541404724,0.0,0.0,0.0,0.0,-0.013334316 +157.41960906982422,0.0,0.0,0.0,0.0,-0.013334316 +157.42942094802856,0.0,0.0,0.0,0.0,-0.013334316 +157.43963313102722,0.0,0.0,0.0,0.0,-0.013334316 +157.44963097572327,0.0,0.0,0.0,0.0,-0.013334316 +157.45961499214172,0.0,0.0,0.0,0.0,-0.011484267 +157.4695520401001,0.0,0.0,0.0,0.0,-0.011484267 +157.47961401939392,0.0,0.0,0.0,0.0,-0.011484267 +157.48953890800476,0.0,0.0,0.0,0.0,-0.011484267 +157.49962091445923,0.0,0.0,0.0,0.0,-0.011484267 +157.5095989704132,0.0,0.0,0.0,0.0,-0.00038397792 +157.51941800117493,0.0,0.0,0.0,0.0,-0.00038397792 +157.52961897850037,0.0,0.0,0.0,0.0,-0.00038397792 +157.5396089553833,0.0,0.0,0.0,0.0,-0.00038397792 +157.5496311187744,0.0,0.0,0.0,0.0,-0.00038397792 +157.55957198143005,0.0,0.0,0.0,0.0,-0.024434604 +157.56960797309875,0.0,0.0,0.0,0.0,-0.024434604 +157.5796251296997,0.0,0.0,0.0,0.0,-0.024434604 +157.58958101272583,0.0,0.0,0.0,0.0,-0.024434604 +157.59962391853333,0.0,0.0,0.0,0.0,-0.024434604 +157.60961413383484,0.0,0.0,0.0,0.0,-0.002234026 +157.6196050643921,0.0,0.0,0.0,0.0,-0.002234026 +157.62958192825317,0.0,0.0,0.0,0.0,-0.002234026 +157.63960003852844,0.0,0.0,0.0,0.0,-0.002234026 +157.6495521068573,0.0,0.0,0.0,0.0,-0.002234026 +157.65961813926697,0.0,0.0,0.0,0.0,-0.0077841706 +157.66957211494446,0.0,0.0,0.0,0.0,-0.0077841706 +157.67960906028748,0.0,0.0,0.0,0.0,-0.0077841706 +157.68959498405457,0.0,0.0,0.0,0.0,-0.0077841706 +157.6996099948883,0.0,0.0,0.0,0.0,-0.0077841706 +157.70957493782043,0.0,0.0,0.0,0.0,-0.0077841706 +157.71961402893066,0.0,0.0,0.0,0.0,-0.00038397792 +157.72961497306824,0.0,0.0,0.0,0.0,-0.00038397792 +157.73958492279053,0.0,0.0,0.0,0.0,-0.00038397792 +157.7496190071106,0.0,0.0,0.0,0.0,-0.00038397792 +157.75959300994873,0.0,0.0,0.0,0.0,-0.011484267 +157.76959896087646,0.0,0.0,0.0,0.0,-0.011484267 +157.77959609031677,0.0,0.0,0.0,0.0,-0.011484267 +157.7895851135254,0.0,0.0,0.0,0.0,-0.011484267 +157.79960703849792,0.0,0.0,0.0,0.0,-0.011484267 +157.80960607528687,0.0,0.0,0.0,0.0,-0.011484267 +157.81945490837097,0.0,0.0,0.0,0.0,-0.00038397792 +157.82958102226257,0.0,0.0,0.0,0.0,-0.00038397792 +157.8395791053772,0.0,0.0,0.0,0.0,-0.00038397792 +157.84961199760437,0.0,0.0,0.0,0.0,-0.00038397792 +157.8596270084381,0.0,0.0,0.0,0.0,-0.011484267 +157.869558095932,0.0,0.0,0.0,0.0,-0.011484267 +157.87960696220398,0.0,0.0,0.0,0.0,-0.011484267 +157.88959097862244,0.0,0.0,0.0,0.0,-0.011484267 +157.899405002594,0.0,0.0,0.0,0.0,-0.011484267 +157.9094431400299,0.0,0.0,0.0,0.0,-0.011484267 +157.91959500312805,0.0,0.0,0.0,0.0,-0.002234026 +157.92957592010498,0.0,0.0,0.0,0.0,-0.002234026 +157.93958401679993,0.0,0.0,0.0,0.0,-0.002234026 +157.94958806037903,0.0,0.0,0.0,0.0,-0.002234026 +157.95958709716797,0.0,0.0,0.0,0.0,-0.0077841706 +157.96959590911865,0.0,0.0,0.0,0.0,-0.0077841706 +157.97957491874695,0.0,0.0,0.0,0.0,-0.0077841706 +157.98955607414246,0.0,0.0,0.0,0.0,-0.0077841706 +157.9994969367981,0.0,0.0,0.0,0.0,-0.0077841706 +158.00956201553345,0.0,0.0,0.0,0.0,-0.0077841706 +158.01956796646118,0.0,0.0,0.0,0.0,-0.020734508 +158.0295660495758,0.0,0.0,0.0,0.0,-0.020734508 +158.0395929813385,0.0,0.0,0.0,0.0,-0.020734508 +158.0496051311493,0.0,0.0,0.0,0.0,-0.020734508 +158.0595760345459,0.0,0.0,0.0,0.0,0.0014660703 +158.06954407691956,0.0,0.0,0.0,0.0,0.0014660703 +158.07956314086914,0.0,0.0,0.0,0.0,0.0014660703 +158.08959794044495,0.0,0.0,0.0,0.0,0.0014660703 +158.09956097602844,0.0,0.0,0.0,0.0,0.0014660703 +158.10954308509827,0.0,0.0,0.0,0.0,0.0014660703 +158.11957907676697,0.0,0.0,0.0,0.0,0.073618 +158.1295781135559,0.0,0.0,0.0,0.0,0.073618 +158.13957405090332,0.0,0.0,0.0,0.0,0.073618 +158.14959597587585,0.0,0.0,0.0,0.0,0.073618 +158.1595549583435,0.0,0.0,0.0,0.0,-0.009634218 +158.16955399513245,0.0,0.0,0.0,0.0,-0.009634218 +158.17955803871155,0.0,0.0,0.0,0.0,-0.009634218 +158.18953895568848,0.0,0.0,0.0,0.0,-0.009634218 +158.199609041214,0.0,0.0,0.0,0.0,-0.009634218 +158.20957398414612,0.0,0.0,0.0,0.0,-0.009634218 +158.2195680141449,0.0,0.0,0.0,0.0,-0.015184363 +158.22954607009888,0.0,0.0,0.0,0.0,-0.015184363 +158.23957800865173,0.0,0.0,0.0,0.0,-0.015184363 +158.24958300590515,0.0,0.0,0.0,0.0,-0.015184363 +158.2595510482788,0.0,0.0,0.0,0.0,-0.033684865 +158.26954197883606,0.0,0.0,0.0,0.0,-0.033684865 +158.27955794334412,0.0,0.0,0.0,0.0,-0.033684865 +158.28945207595825,0.0,0.0,0.0,0.0,-0.033684865 +158.2995409965515,0.0,0.0,0.0,0.0,-0.033684865 +158.30955004692078,0.0,0.0,0.0,0.0,-0.009634218 +158.31955909729004,0.0,0.0,0.0,0.0,-0.009634218 +158.32954001426697,0.0,0.0,0.0,0.0,-0.009634218 +158.33953714370728,0.0,0.0,0.0,0.0,-0.009634218 +158.34955406188965,0.0,0.0,0.0,0.0,-0.009634218 +158.35953998565674,0.0,0.0,0.0,0.0,-0.002234026 +158.369549036026,0.0,0.0,0.0,0.0,-0.002234026 +158.37950205802917,0.0,0.0,0.0,0.0,-0.002234026 +158.38939094543457,0.0,0.0,0.0,0.0,-0.002234026 +158.39954113960266,0.0,0.0,0.0,0.0,-0.002234026 +158.40955901145935,0.0,0.0,0.0,0.0,-0.015184363 +158.41941714286804,0.0,0.0,0.0,0.0,-0.015184363 +158.42953300476074,0.0,0.0,0.0,0.0,-0.015184363 +158.43954396247864,0.0,0.0,0.0,0.0,-0.015184363 +158.44956398010254,0.0,0.0,0.0,0.0,-0.015184363 +158.45954704284668,0.0,0.0,0.0,0.0,-0.002234026 +158.46953105926514,0.0,0.0,0.0,0.0,-0.002234026 +158.47952914237976,0.0,0.0,0.0,0.0,-0.002234026 +158.48955512046814,0.0,0.0,0.0,0.0,-0.002234026 +158.49953413009644,0.0,0.0,0.0,0.0,-0.002234026 +158.50950503349304,0.0,0.0,0.0,0.0,-0.00038397792 +158.51952409744263,0.0,0.0,0.0,0.0,-0.00038397792 +158.5295250415802,0.0,0.0,0.0,0.0,-0.00038397792 +158.53952813148499,0.0,0.0,0.0,0.0,-0.00038397792 +158.54955792427063,0.0,0.0,0.0,0.0,-0.00038397792 +158.55939507484436,0.0,0.0,0.0,0.0,-0.0040840744 +158.56952095031738,0.0,0.0,0.0,0.0,-0.0040840744 +158.57954001426697,0.0,0.0,0.0,0.0,-0.0040840744 +158.5895140171051,0.0,0.0,0.0,0.0,-0.0040840744 +158.5995180606842,0.0,0.0,0.0,0.0,-0.0040840744 +158.60952806472778,0.0,0.0,0.0,0.0,-0.002234026 +158.61950397491455,0.0,0.0,0.0,0.0,-0.002234026 +158.6295289993286,0.0,0.0,0.0,0.0,-0.002234026 +158.6395299434662,0.0,0.0,0.0,0.0,-0.002234026 +158.64955806732178,0.0,0.0,0.0,0.0,-0.002234026 +158.65950894355774,0.0,0.0,0.0,0.0,-0.013334316 +158.6695020198822,0.0,0.0,0.0,0.0,-0.013334316 +158.6796190738678,0.0,0.0,0.0,0.0,-0.013334316 +158.68952107429504,0.0,0.0,0.0,0.0,-0.013334316 +158.69950699806213,0.0,0.0,0.0,0.0,-0.013334316 +158.70950508117676,0.0,0.0,0.0,0.0,-0.013334316 +158.71951508522034,0.0,0.0,0.0,0.0,-0.00038397792 +158.72950291633606,0.0,0.0,0.0,0.0,-0.00038397792 +158.73953008651733,0.0,0.0,0.0,0.0,-0.00038397792 +158.7495241165161,0.0,0.0,0.0,0.0,-0.00038397792 +158.75952792167664,0.0,0.0,0.0,0.0,-0.013334316 +158.7695209980011,0.0,0.0,0.0,0.0,-0.013334316 +158.77952694892883,0.0,0.0,0.0,0.0,-0.013334316 +158.78949093818665,0.0,0.0,0.0,0.0,-0.013334316 +158.7995479106903,0.0,0.0,0.0,0.0,-0.013334316 +158.8094379901886,0.0,0.0,0.0,0.0,-0.013334316 +158.8194990158081,0.0,0.0,0.0,0.0,-0.002234026 +158.82947707176208,0.0,0.0,0.0,0.0,-0.002234026 +158.83951091766357,0.0,0.0,0.0,0.0,-0.002234026 +158.8495180606842,0.0,0.0,0.0,0.0,-0.002234026 +158.8595049381256,0.0,0.0,0.0,0.0,-0.002234026 +158.8694851398468,0.0,0.0,0.0,0.0,-0.002234026 +158.8794300556183,0.0,0.0,0.0,0.0,-0.002234026 +158.8895001411438,0.0,0.0,0.0,0.0,-0.002234026 +158.89951014518738,0.0,0.0,0.0,0.0,-0.002234026 +158.90948295593262,0.0,0.0,0.0,0.0,-0.002234026 +158.919508934021,0.0,0.0,0.0,0.0,0.0014660703 +158.9294900894165,0.0,0.0,0.0,0.0,0.0014660703 +158.9394929409027,0.0,0.0,0.0,0.0,0.0014660703 +158.94951701164246,0.0,0.0,0.0,0.0,0.0014660703 +158.9594910144806,0.0,0.0,0.0,0.0,-0.00038397792 +158.96952104568481,0.0,0.0,0.0,0.0,-0.00038397792 +158.97951197624207,0.0,0.0,0.0,0.0,-0.00038397792 +158.9894769191742,0.0,0.0,0.0,0.0,-0.00038397792 +158.99948811531067,0.0,0.0,0.0,0.0,-0.00038397792 +159.0094940662384,0.0,0.0,0.0,0.0,-0.00038397792 +159.0195050239563,0.0,0.0,0.0,0.0,-0.0077841706 +159.0294909477234,0.0,0.0,0.0,0.0,-0.0077841706 +159.039489030838,0.0,0.0,0.0,0.0,-0.0077841706 +159.0495159626007,0.0,0.0,0.0,0.0,-0.0077841706 +159.05948495864868,0.0,0.0,0.0,0.0,-0.0040840744 +159.06950306892395,0.0,0.0,0.0,0.0,-0.0040840744 +159.07948398590088,0.0,0.0,0.0,0.0,-0.0040840744 +159.08947610855103,0.0,0.0,0.0,0.0,-0.0040840744 +159.09948205947876,0.0,0.0,0.0,0.0,-0.0040840744 +159.10957407951355,0.0,0.0,0.0,0.0,-0.0040840744 +159.11947894096375,0.0,0.0,0.0,0.0,-0.009634218 +159.12949991226196,0.0,0.0,0.0,0.0,-0.009634218 +159.1394920349121,0.0,0.0,0.0,0.0,-0.009634218 +159.1494801044464,0.0,0.0,0.0,0.0,-0.009634218 +159.15949511528015,0.0,0.0,0.0,0.0,-0.009634218 +159.1694860458374,0.0,0.0,0.0,0.0,-0.009634218 +159.17949604988098,0.0,0.0,0.0,0.0,-0.009634218 +159.18945693969727,0.0,0.0,0.0,0.0,-0.009634218 +159.19939708709717,0.0,0.0,0.0,0.0,-0.009634218 +159.20947098731995,0.0,0.0,0.0,0.0,-0.009634218 +159.2194881439209,0.0,0.0,0.0,0.0,-0.026284654 +159.22946405410767,0.0,0.0,0.0,0.0,-0.026284654 +159.2393889427185,0.0,0.0,0.0,0.0,-0.026284654 +159.24950504302979,0.0,0.0,0.0,0.0,-0.026284654 +159.25947999954224,0.0,0.0,0.0,0.0,-0.0077841706 +159.26946210861206,0.0,0.0,0.0,0.0,-0.0077841706 +159.27947211265564,0.0,0.0,0.0,0.0,-0.0077841706 +159.28953409194946,0.0,0.0,0.0,0.0,-0.0077841706 +159.29950594902039,0.0,0.0,0.0,0.0,-0.0077841706 +159.30944299697876,0.0,0.0,0.0,0.0,-0.0077841706 +159.31945705413818,0.0,0.0,0.0,0.0,-0.0040840744 +159.3294699192047,0.0,0.0,0.0,0.0,-0.0040840744 +159.33947801589966,0.0,0.0,0.0,0.0,-0.0040840744 +159.3494770526886,0.0,0.0,0.0,0.0,-0.0040840744 +159.35948395729065,0.0,0.0,0.0,0.0,-0.002234026 +159.36945605278015,0.0,0.0,0.0,0.0,-0.002234026 +159.37945914268494,0.0,0.0,0.0,0.0,-0.002234026 +159.3894350528717,0.0,0.0,0.0,0.0,-0.002234026 +159.3994710445404,0.0,0.0,0.0,0.0,-0.002234026 +159.40946006774902,0.0,0.0,0.0,0.0,-0.009634218 +159.41945004463196,0.0,0.0,0.0,0.0,-0.009634218 +159.42945098876953,0.0,0.0,0.0,0.0,-0.009634218 +159.43947005271912,0.0,0.0,0.0,0.0,-0.009634218 +159.44947504997253,0.0,0.0,0.0,0.0,-0.009634218 +159.45944595336914,0.0,0.0,0.0,0.0,0.0014660703 +159.46942806243896,0.0,0.0,0.0,0.0,0.0014660703 +159.47944712638855,0.0,0.0,0.0,0.0,0.0014660703 +159.48945307731628,0.0,0.0,0.0,0.0,0.0014660703 +159.49947094917297,0.0,0.0,0.0,0.0,0.0014660703 +159.50951194763184,0.0,0.0,0.0,0.0,-0.024434604 +159.51944303512573,0.0,0.0,0.0,0.0,-0.024434604 +159.52946305274963,0.0,0.0,0.0,0.0,-0.024434604 +159.53946113586426,0.0,0.0,0.0,0.0,-0.024434604 +159.5494680404663,0.0,0.0,0.0,0.0,-0.024434604 +159.5594561100006,0.0,0.0,0.0,0.0,-0.0077841706 +159.5694510936737,0.0,0.0,0.0,0.0,-0.0077841706 +159.57944297790527,0.0,0.0,0.0,0.0,-0.0077841706 +159.589457988739,0.0,0.0,0.0,0.0,-0.0077841706 +159.5994529724121,0.0,0.0,0.0,0.0,-0.0077841706 +159.6094479560852,0.0,0.0,0.0,0.0,-0.0040840744 +159.6194429397583,0.0,0.0,0.0,0.0,-0.0040840744 +159.62943196296692,0.0,0.0,0.0,0.0,-0.0040840744 +159.6394591331482,0.0,0.0,0.0,0.0,-0.0040840744 +159.64946103096008,0.0,0.0,0.0,0.0,-0.0040840744 +159.659441947937,0.0,0.0,0.0,0.0,-0.009634218 +159.66941595077515,0.0,0.0,0.0,0.0,-0.009634218 +159.67943501472473,0.0,0.0,0.0,0.0,-0.009634218 +159.689435005188,0.0,0.0,0.0,0.0,-0.009634218 +159.69945311546326,0.0,0.0,0.0,0.0,-0.009634218 +159.70942497253418,0.0,0.0,0.0,0.0,-0.002234026 +159.7194480895996,0.0,0.0,0.0,0.0,-0.002234026 +159.72943902015686,0.0,0.0,0.0,0.0,-0.002234026 +159.73945713043213,0.0,0.0,0.0,0.0,-0.002234026 +159.74943804740906,0.0,0.0,0.0,0.0,-0.002234026 +159.7594439983368,0.0,0.0,0.0,0.0,-0.015184363 +159.76942801475525,0.0,0.0,0.0,0.0,-0.015184363 +159.7795660495758,0.0,0.0,0.0,0.0,-0.015184363 +159.78941011428833,0.0,0.0,0.0,0.0,-0.015184363 +159.7994351387024,0.0,0.0,0.0,0.0,-0.015184363 +159.80942702293396,0.0,0.0,0.0,0.0,-0.015184363 +159.81942009925842,0.0,0.0,0.0,0.0,-0.002234026 +159.82942414283752,0.0,0.0,0.0,0.0,-0.002234026 +159.8394250869751,0.0,0.0,0.0,0.0,-0.002234026 +159.84945607185364,0.0,0.0,0.0,0.0,-0.002234026 +159.8595471382141,0.0,0.0,0.0,0.0,0.0014660703 +159.8693950176239,0.0,0.0,0.0,0.0,0.0014660703 +159.87941813468933,0.0,0.0,0.0,0.0,0.0014660703 +159.88942193984985,0.0,0.0,0.0,0.0,0.0014660703 +159.8994300365448,0.0,0.0,0.0,0.0,0.0014660703 +159.90940308570862,0.0,0.0,0.0,0.0,0.0014660703 +159.91941595077515,0.0,0.0,0.0,0.0,-0.022584556 +159.92943906784058,0.0,0.0,0.0,0.0,-0.022584556 +159.9394130706787,0.0,0.0,0.0,0.0,-0.022584556 +159.94949507713318,0.0,0.0,0.0,0.0,-0.022584556 +159.9594190120697,0.0,0.0,0.0,0.0,-0.002234026 +159.96941614151,0.0,0.0,0.0,0.0,-0.002234026 +159.9794750213623,0.0,0.0,0.0,0.0,-0.002234026 +159.98939609527588,0.0,0.0,0.0,0.0,-0.002234026 +159.99943208694458,0.0,0.0,0.0,0.0,-0.002234026 +160.00951504707336,0.0,0.0,0.0,0.0,-0.002234026 +160.01945900917053,0.0,0.0,0.0,0.0,-0.026284654 +160.02939295768738,0.0,0.0,0.0,0.0,-0.026284654 +160.03945398330688,0.0,0.0,0.0,0.0,-0.026284654 +160.0494420528412,0.0,0.0,0.0,0.0,-0.026284654 +160.05942392349243,0.0,0.0,0.0,0.0,-0.0077841706 +160.06987309455872,0.0,0.0,0.0,0.0,-0.0077841706 +160.07942605018616,0.0,0.0,0.0,0.0,-0.0077841706 +160.08943510055542,0.0,0.0,0.0,0.0,-0.0077841706 +160.09939813613892,0.0,0.0,0.0,0.0,-0.0077841706 +160.10946202278137,0.0,0.0,0.0,0.0,-0.0077841706 +160.11941003799438,0.0,0.0,0.0,0.0,-0.01888446 +160.12942600250244,0.0,0.0,0.0,0.0,-0.01888446 +160.13940501213074,0.0,0.0,0.0,0.0,-0.01888446 +160.149405002594,0.0,0.0,0.0,0.0,-0.01888446 +160.15939903259277,0.0,0.0,0.0,0.0,-0.013334316 +160.1694140434265,0.0,0.0,0.0,0.0,-0.013334316 +160.1793930530548,0.0,0.0,0.0,0.0,-0.013334316 +160.18942999839783,0.0,0.0,0.0,0.0,-0.013334316 +160.1993989944458,0.0,0.0,0.0,0.0,-0.013334316 +160.20940113067627,0.0,0.0,0.0,0.0,-0.013334316 +160.21939301490784,0.0,0.0,0.0,0.0,-0.033684865 +160.2297179698944,0.0,0.0,0.0,0.0,-0.033684865 +160.23940896987915,0.0,0.0,0.0,0.0,-0.033684865 +160.24941396713257,0.0,0.0,0.0,0.0,-0.033684865 +160.25940203666687,0.0,0.0,0.0,0.0,-0.03553491 +160.26952695846558,0.0,0.0,0.0,0.0,-0.03553491 +160.27986598014832,0.0,0.0,0.0,0.0,-0.03553491 +160.28940200805664,0.0,0.0,0.0,0.0,-0.03553491 +160.29941511154175,0.0,0.0,0.0,0.0,-0.03553491 +160.30978512763977,0.0,0.0,0.0,0.0,-0.03553491 +160.31986212730408,0.0,0.0,0.0,0.0,-0.002234026 +160.32941102981567,0.0,0.0,0.0,0.0,-0.002234026 +160.3393919467926,0.0,0.0,0.0,0.0,-0.002234026 +160.34944200515747,0.0,0.0,0.0,0.0,-0.002234026 +160.35939002037048,0.0,0.0,0.0,0.0,0.0070162313 +160.3698661327362,0.0,0.0,0.0,0.0,0.0070162313 +160.3793981075287,0.0,0.0,0.0,0.0,0.0070162313 +160.38938999176025,0.0,0.0,0.0,0.0,0.0070162313 +160.3998429775238,0.0,0.0,0.0,0.0,0.0070162313 +160.4093940258026,0.0,0.0,0.0,0.0,-0.002234026 +160.4193980693817,0.0,0.0,0.0,0.0,-0.002234026 +160.429673910141,0.0,0.0,0.0,0.0,-0.002234026 +160.43939113616943,0.0,0.0,0.0,0.0,-0.002234026 +160.44945693016052,0.0,0.0,0.0,0.0,-0.002234026 +160.45985293388367,0.0,0.0,0.0,0.0,-0.0077841706 +160.46974802017212,0.0,0.0,0.0,0.0,-0.0077841706 +160.47949314117432,0.0,0.0,0.0,0.0,-0.0077841706 +160.48983693122864,0.0,0.0,0.0,0.0,-0.0077841706 +160.49986696243286,0.0,0.0,0.0,0.0,-0.0077841706 +160.50989198684692,0.0,0.0,0.0,0.0,-0.00038397792 +160.51984810829163,0.0,0.0,0.0,0.0,-0.00038397792 +160.52968192100525,0.0,0.0,0.0,0.0,-0.00038397792 +160.53942799568176,0.0,0.0,0.0,0.0,-0.00038397792 +160.54938912391663,0.0,0.0,0.0,0.0,-0.00038397792 +160.55980801582336,0.0,0.0,0.0,0.0,-0.002234026 +160.56940293312073,0.0,0.0,0.0,0.0,-0.002234026 +160.57986497879028,0.0,0.0,0.0,0.0,-0.002234026 +160.58987998962402,0.0,0.0,0.0,0.0,-0.002234026 +160.5995750427246,0.0,0.0,0.0,0.0,-0.002234026 +160.60983610153198,0.0,0.0,0.0,0.0,0.010716328 +160.61975598335266,0.0,0.0,0.0,0.0,0.010716328 +160.62942004203796,0.0,0.0,0.0,0.0,0.010716328 +160.6398410797119,0.0,0.0,0.0,0.0,0.010716328 +160.64986109733582,0.0,0.0,0.0,0.0,0.010716328 +160.65938901901245,0.0,0.0,0.0,0.0,-0.00038397792 +160.6698660850525,0.0,0.0,0.0,0.0,-0.00038397792 +160.67952299118042,0.0,0.0,0.0,0.0,-0.00038397792 +160.68985605239868,0.0,0.0,0.0,0.0,-0.00038397792 +160.6999011039734,0.0,0.0,0.0,0.0,-0.00038397792 +160.70986008644104,0.0,0.0,0.0,0.0,-0.0040840744 +160.7198839187622,0.0,0.0,0.0,0.0,-0.0040840744 +160.7297010421753,0.0,0.0,0.0,0.0,-0.0040840744 +160.73979091644287,0.0,0.0,0.0,0.0,-0.0040840744 +160.74941611289978,0.0,0.0,0.0,0.0,-0.0040840744 +160.75951194763184,0.0,0.0,0.0,0.0,-0.009634218 +160.76987099647522,0.0,0.0,0.0,0.0,-0.009634218 +160.77959895133972,0.0,0.0,0.0,0.0,-0.009634218 +160.78988695144653,0.0,0.0,0.0,0.0,-0.009634218 +160.7998559474945,0.0,0.0,0.0,0.0,-0.009634218 +160.80985498428345,0.0,0.0,0.0,0.0,-0.009634218 +160.8197500705719,0.0,0.0,0.0,0.0,-0.020734508 +160.82961297035217,0.0,0.0,0.0,0.0,-0.020734508 +160.8397250175476,0.0,0.0,0.0,0.0,-0.020734508 +160.84987711906433,0.0,0.0,0.0,0.0,-0.020734508 +160.8598599433899,0.0,0.0,0.0,0.0,-0.00038397792 +160.86956691741943,0.0,0.0,0.0,0.0,-0.00038397792 +160.8798770904541,0.0,0.0,0.0,0.0,-0.00038397792 +160.889564037323,0.0,0.0,0.0,0.0,-0.00038397792 +160.89948391914368,0.0,0.0,0.0,0.0,-0.00038397792 +160.909893989563,0.0,0.0,0.0,0.0,-0.00038397792 +160.9195830821991,0.0,0.0,0.0,0.0,-0.020734508 +160.92944502830505,0.0,0.0,0.0,0.0,-0.020734508 +160.93940806388855,0.0,0.0,0.0,0.0,-0.020734508 +160.94989013671875,0.0,0.0,0.0,0.0,-0.020734508 +160.95985913276672,0.0,0.0,0.0,0.0,-0.011484267 +160.9698839187622,0.0,0.0,0.0,0.0,-0.011484267 +160.97987508773804,0.0,0.0,0.0,0.0,-0.011484267 +160.9898829460144,0.0,0.0,0.0,0.0,-0.011484267 +160.99988412857056,0.0,0.0,0.0,0.0,-0.011484267 +161.00953102111816,0.0,0.0,0.0,0.0,-0.011484267 +161.01946997642517,0.0,0.0,0.0,0.0,-0.01888446 +161.02971506118774,0.0,0.0,0.0,0.0,-0.01888446 +161.03988599777222,0.0,0.0,0.0,0.0,-0.01888446 +161.0498719215393,0.0,0.0,0.0,0.0,-0.01888446 +161.05987906455994,0.0,0.0,0.0,0.0,-0.011484267 +161.069895029068,0.0,0.0,0.0,0.0,-0.011484267 +161.07986211776733,0.0,0.0,0.0,0.0,-0.011484267 +161.089457988739,0.0,0.0,0.0,0.0,-0.011484267 +161.09940004348755,0.0,0.0,0.0,0.0,-0.011484267 +161.10954594612122,0.0,0.0,0.0,0.0,-0.011484267 +161.11944699287415,0.0,0.0,0.0,0.0,-0.00038397792 +161.12971806526184,0.0,0.0,0.0,0.0,-0.00038397792 +161.13960599899292,0.0,0.0,0.0,0.0,-0.00038397792 +161.1495509147644,0.0,0.0,0.0,0.0,-0.00038397792 +161.1598780155182,0.0,0.0,0.0,0.0,-0.0077841706 +161.16953492164612,0.0,0.0,0.0,0.0,-0.0077841706 +161.1798849105835,0.0,0.0,0.0,0.0,-0.0077841706 +161.18991899490356,0.0,0.0,0.0,0.0,-0.0077841706 +161.19953513145447,0.0,0.0,0.0,0.0,-0.0077841706 +161.20987510681152,0.0,0.0,0.0,0.0,-0.0077841706 +161.21943998336792,0.0,0.0,0.0,0.0,-0.0040840744 +161.22989797592163,0.0,0.0,0.0,0.0,-0.0040840744 +161.2396969795227,0.0,0.0,0.0,0.0,-0.0040840744 +161.24962091445923,0.0,0.0,0.0,0.0,-0.0040840744 +161.2598900794983,0.0,0.0,0.0,0.0,-0.011484267 +161.2698791027069,0.0,0.0,0.0,0.0,-0.011484267 +161.27941608428955,0.0,0.0,0.0,0.0,-0.011484267 +161.28963994979858,0.0,0.0,0.0,0.0,-0.011484267 +161.29987406730652,0.0,0.0,0.0,0.0,-0.011484267 +161.30954599380493,0.0,0.0,0.0,0.0,-0.011484267 +161.31975412368774,0.0,0.0,0.0,0.0,-0.0077841706 +161.3296821117401,0.0,0.0,0.0,0.0,-0.0077841706 +161.33955812454224,0.0,0.0,0.0,0.0,-0.0077841706 +161.34989500045776,0.0,0.0,0.0,0.0,-0.0077841706 +161.35970902442932,0.0,0.0,0.0,0.0,-0.011484267 +161.36988806724548,0.0,0.0,0.0,0.0,-0.011484267 +161.37973999977112,0.0,0.0,0.0,0.0,-0.011484267 +161.38988995552063,0.0,0.0,0.0,0.0,-0.011484267 +161.3998920917511,0.0,0.0,0.0,0.0,-0.011484267 +161.40953612327576,0.0,0.0,0.0,0.0,-0.024434604 +161.41959404945374,0.0,0.0,0.0,0.0,-0.024434604 +161.42969393730164,0.0,0.0,0.0,0.0,-0.024434604 +161.43988013267517,0.0,0.0,0.0,0.0,-0.024434604 +161.44957304000854,0.0,0.0,0.0,0.0,-0.024434604 +161.45953512191772,0.0,0.0,0.0,0.0,-0.020734508 +161.46984910964966,0.0,0.0,0.0,0.0,-0.020734508 +161.47988605499268,0.0,0.0,0.0,0.0,-0.020734508 +161.48987913131714,0.0,0.0,0.0,0.0,-0.020734508 +161.4993929862976,0.0,0.0,0.0,0.0,-0.020734508 +161.5099160671234,0.0,0.0,0.0,0.0,-0.015184363 +161.5197570323944,0.0,0.0,0.0,0.0,-0.015184363 +161.52969694137573,0.0,0.0,0.0,0.0,-0.015184363 +161.53951811790466,0.0,0.0,0.0,0.0,-0.015184363 +161.54955101013184,0.0,0.0,0.0,0.0,-0.015184363 +161.5598919391632,0.0,0.0,0.0,0.0,-0.0040840744 +161.56943011283875,0.0,0.0,0.0,0.0,-0.0040840744 +161.57953190803528,0.0,0.0,0.0,0.0,-0.0040840744 +161.5899040699005,0.0,0.0,0.0,0.0,-0.0040840744 +161.5998980998993,0.0,0.0,0.0,0.0,-0.0040840744 +161.6098780632019,0.0,0.0,0.0,0.0,-0.002234026 +161.6194760799408,0.0,0.0,0.0,0.0,-0.002234026 +161.6294801235199,0.0,0.0,0.0,0.0,-0.002234026 +161.63986110687256,0.0,0.0,0.0,0.0,-0.002234026 +161.64990210533142,0.0,0.0,0.0,0.0,-0.002234026 +161.65942692756653,0.0,0.0,0.0,0.0,-0.009634218 +161.66964411735535,0.0,0.0,0.0,0.0,-0.009634218 +161.6798939704895,0.0,0.0,0.0,0.0,-0.009634218 +161.68990802764893,0.0,0.0,0.0,0.0,-0.009634218 +161.6999089717865,0.0,0.0,0.0,0.0,-0.009634218 +161.70990896224976,0.0,0.0,0.0,0.0,0.0014660703 +161.7194459438324,0.0,0.0,0.0,0.0,0.0014660703 +161.72972798347473,0.0,0.0,0.0,0.0,0.0014660703 +161.7397060394287,0.0,0.0,0.0,0.0,0.0014660703 +161.74945402145386,0.0,0.0,0.0,0.0,0.0014660703 +161.75989603996277,0.0,0.0,0.0,0.0,-0.013334316 +161.76988697052002,0.0,0.0,0.0,0.0,-0.013334316 +161.7798810005188,0.0,0.0,0.0,0.0,-0.013334316 +161.78991413116455,0.0,0.0,0.0,0.0,-0.013334316 +161.7996940612793,0.0,0.0,0.0,0.0,-0.013334316 +161.8099009990692,0.0,0.0,0.0,0.0,-0.013334316 +161.81978106498718,0.0,0.0,0.0,0.0,-0.009634218 +161.82970309257507,0.0,0.0,0.0,0.0,-0.009634218 +161.83952403068542,0.0,0.0,0.0,0.0,-0.009634218 +161.84991097450256,0.0,0.0,0.0,0.0,-0.009634218 +161.85988402366638,0.0,0.0,0.0,0.0,0.010716328 +161.8694760799408,0.0,0.0,0.0,0.0,0.010716328 +161.87989592552185,0.0,0.0,0.0,0.0,0.010716328 +161.88982510566711,0.0,0.0,0.0,0.0,0.010716328 +161.8999080657959,0.0,0.0,0.0,0.0,0.010716328 +161.90992093086243,0.0,0.0,0.0,0.0,0.010716328 +161.91977500915527,0.0,0.0,0.0,0.0,-0.013334316 +161.92938899993896,0.0,0.0,0.0,0.0,-0.013334316 +161.93989300727844,0.0,0.0,0.0,0.0,-0.013334316 +161.94992995262146,0.0,0.0,0.0,0.0,-0.013334316 +161.9598879814148,0.0,0.0,0.0,0.0,-0.013334316 +161.96990609169006,0.0,0.0,0.0,0.0,-0.013334316 +161.979660987854,0.0,0.0,0.0,0.0,-0.013334316 +161.98945212364197,0.0,0.0,0.0,0.0,-0.013334316 +161.9999179840088,0.0,0.0,0.0,0.0,-0.013334316 +162.0098991394043,0.0,0.0,0.0,0.0,-0.013334316 +162.01950097084045,0.0,0.0,0.0,0.0,0.023666665 +162.02990913391113,0.0,0.0,0.0,0.0,0.023666665 +162.0399010181427,0.0,0.0,0.0,0.0,0.023666665 +162.04990410804749,0.0,0.0,0.0,0.0,0.023666665 +162.05980491638184,0.0,0.0,0.0,0.0,-0.024434604 +162.06944108009338,0.0,0.0,0.0,0.0,-0.024434604 +162.07975506782532,0.0,0.0,0.0,0.0,-0.024434604 +162.0897080898285,0.0,0.0,0.0,0.0,-0.024434604 +162.09989595413208,0.0,0.0,0.0,0.0,-0.024434604 +162.10961294174194,0.0,0.0,0.0,0.0,-0.024434604 +162.1197669506073,0.0,0.0,0.0,0.0,-0.0040840744 +162.12972807884216,0.0,0.0,0.0,0.0,-0.0040840744 +162.13988709449768,0.0,0.0,0.0,0.0,-0.0040840744 +162.14963102340698,0.0,0.0,0.0,0.0,-0.0040840744 +162.15946507453918,0.0,0.0,0.0,0.0,-0.052185345 +162.1698989868164,0.0,0.0,0.0,0.0,-0.052185345 +162.17989206314087,0.0,0.0,0.0,0.0,-0.052185345 +162.1898729801178,0.0,0.0,0.0,0.0,-0.052185345 +162.19971799850464,0.0,0.0,0.0,0.0,-0.052185345 +162.20990705490112,0.0,0.0,0.0,0.0,-0.052185345 +162.21976494789124,0.0,0.0,0.0,0.0,0.021816617 +162.22974014282227,0.0,0.0,0.0,0.0,0.021816617 +162.23990297317505,0.0,0.0,0.0,0.0,0.021816617 +162.24943900108337,0.0,0.0,0.0,0.0,0.021816617 +162.2599070072174,0.0,0.0,0.0,0.0,-0.009634218 +162.26991391181946,0.0,0.0,0.0,0.0,-0.009634218 +162.27991104125977,0.0,0.0,0.0,0.0,-0.009634218 +162.28958201408386,0.0,0.0,0.0,0.0,-0.009634218 +162.29988813400269,0.0,0.0,0.0,0.0,-0.009634218 +162.30992794036865,0.0,0.0,0.0,0.0,-0.009634218 +162.3193941116333,0.0,0.0,0.0,0.0,-0.015184363 +162.32970714569092,0.0,0.0,0.0,0.0,-0.015184363 +162.33990907669067,0.0,0.0,0.0,0.0,-0.015184363 +162.3499231338501,0.0,0.0,0.0,0.0,-0.015184363 +162.3599021434784,0.0,0.0,0.0,0.0,-0.0040840744 +162.3699071407318,0.0,0.0,0.0,0.0,-0.0040840744 +162.37990713119507,0.0,0.0,0.0,0.0,-0.0040840744 +162.38992309570312,0.0,0.0,0.0,0.0,-0.0040840744 +162.3994960784912,0.0,0.0,0.0,0.0,-0.0040840744 +162.4098711013794,0.0,0.0,0.0,0.0,-0.0040840744 +162.41975498199463,0.0,0.0,0.0,0.0,-0.0077841706 +162.42972707748413,0.0,0.0,0.0,0.0,-0.0077841706 +162.4399130344391,0.0,0.0,0.0,0.0,-0.0077841706 +162.4499111175537,0.0,0.0,0.0,0.0,-0.0077841706 +162.4599039554596,0.0,0.0,0.0,0.0,-0.013334316 +162.46993803977966,0.0,0.0,0.0,0.0,-0.013334316 +162.47952008247375,0.0,0.0,0.0,0.0,-0.013334316 +162.4894049167633,0.0,0.0,0.0,0.0,-0.013334316 +162.49992299079895,0.0,0.0,0.0,0.0,-0.013334316 +162.50976395606995,0.0,0.0,0.0,0.0,-0.0040840744 +162.51975893974304,0.0,0.0,0.0,0.0,-0.0040840744 +162.52972412109375,0.0,0.0,0.0,0.0,-0.0040840744 +162.53993201255798,0.0,0.0,0.0,0.0,-0.0040840744 +162.54995012283325,0.0,0.0,0.0,0.0,-0.0040840744 +162.55958008766174,0.0,0.0,0.0,0.0,-0.011484267 +162.56939697265625,0.0,0.0,0.0,0.0,-0.011484267 +162.57991409301758,0.0,0.0,0.0,0.0,-0.011484267 +162.58992195129395,0.0,0.0,0.0,0.0,-0.011484267 +162.59958505630493,0.0,0.0,0.0,0.0,-0.011484267 +162.60988903045654,0.0,0.0,0.0,0.0,-0.01888446 +162.61975502967834,0.0,0.0,0.0,0.0,-0.01888446 +162.629723072052,0.0,0.0,0.0,0.0,-0.01888446 +162.63977313041687,0.0,0.0,0.0,0.0,-0.01888446 +162.6499149799347,0.0,0.0,0.0,0.0,-0.01888446 +162.65942192077637,0.0,0.0,0.0,0.0,-0.011484267 +162.6694300174713,0.0,0.0,0.0,0.0,-0.011484267 +162.67991495132446,0.0,0.0,0.0,0.0,-0.011484267 +162.68944191932678,0.0,0.0,0.0,0.0,-0.011484267 +162.69942498207092,0.0,0.0,0.0,0.0,-0.011484267 +162.70994210243225,0.0,0.0,0.0,0.0,-0.0040840744 +162.71976613998413,0.0,0.0,0.0,0.0,-0.0040840744 +162.7297420501709,0.0,0.0,0.0,0.0,-0.0040840744 +162.7399079799652,0.0,0.0,0.0,0.0,-0.0040840744 +162.74942207336426,0.0,0.0,0.0,0.0,-0.0040840744 +162.75952291488647,0.0,0.0,0.0,0.0,-0.009634218 +162.7699179649353,0.0,0.0,0.0,0.0,-0.009634218 +162.77942609786987,0.0,0.0,0.0,0.0,-0.009634218 +162.78942203521729,0.0,0.0,0.0,0.0,-0.009634218 +162.7999129295349,0.0,0.0,0.0,0.0,-0.009634218 +162.80993103981018,0.0,0.0,0.0,0.0,-0.009634218 +162.81939005851746,0.0,0.0,0.0,0.0,0.09581858 +162.8297209739685,0.0,0.0,0.0,0.0,0.09581858 +162.8395700454712,0.0,0.0,0.0,0.0,0.09581858 +162.84991312026978,0.0,0.0,0.0,0.0,0.09581858 +162.8599190711975,0.0,0.0,0.0,0.0,-0.033684865 +162.8699550628662,0.0,0.0,0.0,0.0,-0.033684865 +162.87992191314697,0.0,0.0,0.0,0.0,-0.033684865 +162.88939309120178,0.0,0.0,0.0,0.0,-0.033684865 +162.89991211891174,0.0,0.0,0.0,0.0,-0.033684865 +162.90962100028992,0.0,0.0,0.0,0.0,-0.033684865 +162.91989493370056,0.0,0.0,0.0,0.0,0.06066765 +162.92957592010498,0.0,0.0,0.0,0.0,0.06066765 +162.93973207473755,0.0,0.0,0.0,0.0,0.06066765 +162.9499580860138,0.0,0.0,0.0,0.0,0.06066765 +162.95990896224976,0.0,0.0,0.0,0.0,-0.0077841706 +162.96941304206848,0.0,0.0,0.0,0.0,-0.0077841706 +162.9799199104309,0.0,0.0,0.0,0.0,-0.0077841706 +162.98991513252258,0.0,0.0,0.0,0.0,-0.0077841706 +162.99973511695862,0.0,0.0,0.0,0.0,-0.0077841706 +163.00994396209717,0.0,0.0,0.0,0.0,-0.0077841706 +163.01967310905457,0.0,0.0,0.0,0.0,-0.0077841706 +163.02972793579102,0.0,0.0,0.0,0.0,-0.0077841706 +163.03983092308044,0.0,0.0,0.0,0.0,-0.0077841706 +163.0496530532837,0.0,0.0,0.0,0.0,-0.0077841706 +163.05958008766174,0.0,0.0,0.0,0.0,-0.013334316 +163.06993508338928,0.0,0.0,0.0,0.0,-0.013334316 +163.07990407943726,0.0,0.0,0.0,0.0,-0.013334316 +163.08985304832458,0.0,0.0,0.0,0.0,-0.013334316 +163.09943103790283,0.0,0.0,0.0,0.0,-0.013334316 +163.10976099967957,0.0,0.0,0.0,0.0,-0.013334316 +163.11975193023682,0.0,0.0,0.0,0.0,-0.002234026 +163.1296830177307,0.0,0.0,0.0,0.0,-0.002234026 +163.1399109363556,0.0,0.0,0.0,0.0,-0.002234026 +163.14967894554138,0.0,0.0,0.0,0.0,-0.002234026 +163.1599280834198,0.0,0.0,0.0,0.0,-0.013334316 +163.1699080467224,0.0,0.0,0.0,0.0,-0.013334316 +163.1798610687256,0.0,0.0,0.0,0.0,-0.013334316 +163.189954996109,0.0,0.0,0.0,0.0,-0.013334316 +163.19987106323242,0.0,0.0,0.0,0.0,-0.013334316 +163.20991706848145,0.0,0.0,0.0,0.0,-0.013334316 +163.2193911075592,0.0,0.0,0.0,0.0,0.0070162313 +163.22975492477417,0.0,0.0,0.0,0.0,0.0070162313 +163.23991894721985,0.0,0.0,0.0,0.0,0.0070162313 +163.24993109703064,0.0,0.0,0.0,0.0,0.0070162313 +163.25993704795837,0.0,0.0,0.0,0.0,-0.011484267 +163.26992297172546,0.0,0.0,0.0,0.0,-0.011484267 +163.27994108200073,0.0,0.0,0.0,0.0,-0.011484267 +163.2895839214325,0.0,0.0,0.0,0.0,-0.011484267 +163.29946994781494,0.0,0.0,0.0,0.0,-0.011484267 +163.30940914154053,0.0,0.0,0.0,0.0,-0.011484267 +163.31979894638062,0.0,0.0,0.0,0.0,-0.0077841706 +163.32971906661987,0.0,0.0,0.0,0.0,-0.0077841706 +163.33993005752563,0.0,0.0,0.0,0.0,-0.0077841706 +163.34995007514954,0.0,0.0,0.0,0.0,-0.0077841706 +163.3599169254303,0.0,0.0,0.0,0.0,-0.0077841706 +163.36992192268372,0.0,0.0,0.0,0.0,-0.0077841706 +163.379949092865,0.0,0.0,0.0,0.0,-0.0077841706 +163.38994002342224,0.0,0.0,0.0,0.0,-0.0077841706 +163.39994192123413,0.0,0.0,0.0,0.0,-0.0077841706 +163.40993809700012,0.0,0.0,0.0,0.0,-0.0077841706 +163.41980004310608,0.0,0.0,0.0,0.0,-0.015184363 +163.4297399520874,0.0,0.0,0.0,0.0,-0.015184363 +163.43950510025024,0.0,0.0,0.0,0.0,-0.015184363 +163.44993901252747,0.0,0.0,0.0,0.0,-0.015184363 +163.45945191383362,0.0,0.0,0.0,0.0,-0.00038397792 +163.46994805335999,0.0,0.0,0.0,0.0,-0.00038397792 +163.47994303703308,0.0,0.0,0.0,0.0,-0.00038397792 +163.4895589351654,0.0,0.0,0.0,0.0,-0.00038397792 +163.49951100349426,0.0,0.0,0.0,0.0,-0.00038397792 +163.50996804237366,0.0,0.0,0.0,0.0,-0.0040840744 +163.51977610588074,0.0,0.0,0.0,0.0,-0.0040840744 +163.5297269821167,0.0,0.0,0.0,0.0,-0.0040840744 +163.53963208198547,0.0,0.0,0.0,0.0,-0.0040840744 +163.549467086792,0.0,0.0,0.0,0.0,-0.0040840744 +163.55955290794373,0.0,0.0,0.0,0.0,0.0033161184 +163.56993412971497,0.0,0.0,0.0,0.0,0.0033161184 +163.57992100715637,0.0,0.0,0.0,0.0,0.0033161184 +163.5899429321289,0.0,0.0,0.0,0.0,0.0033161184 +163.59996104240417,0.0,0.0,0.0,0.0,0.0033161184 +163.60993599891663,0.0,0.0,0.0,0.0,-0.024434604 +163.61951899528503,0.0,0.0,0.0,0.0,-0.024434604 +163.62972807884216,0.0,0.0,0.0,0.0,-0.024434604 +163.6394259929657,0.0,0.0,0.0,0.0,-0.024434604 +163.64994502067566,0.0,0.0,0.0,0.0,-0.024434604 +163.65943503379822,0.0,0.0,0.0,0.0,-0.009634218 +163.66995000839233,0.0,0.0,0.0,0.0,-0.009634218 +163.67993211746216,0.0,0.0,0.0,0.0,-0.009634218 +163.68994808197021,0.0,0.0,0.0,0.0,-0.009634218 +163.6999650001526,0.0,0.0,0.0,0.0,-0.009634218 +163.70996499061584,0.0,0.0,0.0,0.0,0.0014660703 +163.71990203857422,0.0,0.0,0.0,0.0,0.0014660703 +163.72997212409973,0.0,0.0,0.0,0.0,0.0014660703 +163.73994302749634,0.0,0.0,0.0,0.0,0.0014660703 +163.7495470046997,0.0,0.0,0.0,0.0,0.0014660703 +163.75994205474854,0.0,0.0,0.0,0.0,-0.03553491 +163.769926071167,0.0,0.0,0.0,0.0,-0.03553491 +163.77975511550903,0.0,0.0,0.0,0.0,-0.03553491 +163.78955912590027,0.0,0.0,0.0,0.0,-0.03553491 +163.79995894432068,0.0,0.0,0.0,0.0,-0.03553491 +163.80990600585938,0.0,0.0,0.0,0.0,0.0070162313 +163.81978106498718,0.0,0.0,0.0,0.0,0.0070162313 +163.82972407341003,0.0,0.0,0.0,0.0,0.0070162313 +163.83951210975647,0.0,0.0,0.0,0.0,0.0070162313 +163.84960913658142,0.0,0.0,0.0,0.0,0.0070162313 +163.8599259853363,0.0,0.0,0.0,0.0,-0.002234026 +163.869952917099,0.0,0.0,0.0,0.0,-0.002234026 +163.87959814071655,0.0,0.0,0.0,0.0,-0.002234026 +163.88989090919495,0.0,0.0,0.0,0.0,-0.002234026 +163.89987707138062,0.0,0.0,0.0,0.0,-0.002234026 +163.9099669456482,0.0,0.0,0.0,0.0,-0.002234026 +163.91981410980225,0.0,0.0,0.0,0.0,-0.011484267 +163.92974591255188,0.0,0.0,0.0,0.0,-0.011484267 +163.93996405601501,0.0,0.0,0.0,0.0,-0.011484267 +163.9495029449463,0.0,0.0,0.0,0.0,-0.011484267 +163.95992612838745,0.0,0.0,0.0,0.0,0.0014660703 +163.96996092796326,0.0,0.0,0.0,0.0,0.0014660703 +163.97997403144836,0.0,0.0,0.0,0.0,0.0014660703 +163.98986101150513,0.0,0.0,0.0,0.0,0.0014660703 +163.99994206428528,0.0,0.0,0.0,0.0,0.0014660703 +164.00963711738586,0.0,0.0,0.0,0.0,0.0014660703 +164.01950597763062,0.0,0.0,0.0,0.0,-0.009634218 +164.02968001365662,0.0,0.0,0.0,0.0,-0.009634218 +164.03995895385742,0.0,0.0,0.0,0.0,-0.009634218 +164.0499451160431,0.0,0.0,0.0,0.0,-0.009634218 +164.05994391441345,0.0,0.0,0.0,0.0,0.04031712 +164.06996607780457,0.0,0.0,0.0,0.0,0.04031712 +164.07983899116516,0.0,0.0,0.0,0.0,0.04031712 +164.08993911743164,0.0,0.0,0.0,0.0,0.04031712 +164.09996509552002,0.0,0.0,0.0,0.0,0.04031712 +164.10989093780518,0.0,0.0,0.0,0.0,0.04031712 +164.1195240020752,0.0,0.0,0.0,0.0,-0.002234026 +164.12973403930664,0.0,0.0,0.0,0.0,-0.002234026 +164.13968992233276,0.0,0.0,0.0,0.0,-0.002234026 +164.14941501617432,0.0,0.0,0.0,0.0,-0.002234026 +164.1599519252777,0.0,0.0,0.0,0.0,0.019966569 +164.16980600357056,0.0,0.0,0.0,0.0,0.019966569 +164.179584980011,0.0,0.0,0.0,0.0,0.019966569 +164.189866065979,0.0,0.0,0.0,0.0,0.019966569 +164.19995498657227,0.0,0.0,0.0,0.0,0.019966569 +164.20995807647705,0.0,0.0,0.0,0.0,0.019966569 +164.21978497505188,0.0,0.0,0.0,0.0,-0.0040840744 +164.22975897789001,0.0,0.0,0.0,0.0,-0.0040840744 +164.2399399280548,0.0,0.0,0.0,0.0,-0.0040840744 +164.24997901916504,0.0,0.0,0.0,0.0,-0.0040840744 +164.25977611541748,0.0,0.0,0.0,0.0,-0.002234026 +164.2697389125824,0.0,0.0,0.0,0.0,-0.002234026 +164.27971696853638,0.0,0.0,0.0,0.0,-0.002234026 +164.28996801376343,0.0,0.0,0.0,0.0,-0.002234026 +164.2994201183319,0.0,0.0,0.0,0.0,-0.002234026 +164.30999302864075,0.0,0.0,0.0,0.0,-0.002234026 +164.3198001384735,0.0,0.0,0.0,0.0,-0.011484267 +164.32974100112915,0.0,0.0,0.0,0.0,-0.011484267 +164.33995604515076,0.0,0.0,0.0,0.0,-0.011484267 +164.34976196289062,0.0,0.0,0.0,0.0,-0.011484267 +164.35944414138794,0.0,0.0,0.0,0.0,-0.002234026 +164.36957693099976,0.0,0.0,0.0,0.0,-0.002234026 +164.37997603416443,0.0,0.0,0.0,0.0,-0.002234026 +164.3899700641632,0.0,0.0,0.0,0.0,-0.002234026 +164.39983296394348,0.0,0.0,0.0,0.0,-0.002234026 +164.40995812416077,0.0,0.0,0.0,0.0,-0.002234026 +164.41951298713684,0.0,0.0,0.0,0.0,0.07546805 +164.42972898483276,0.0,0.0,0.0,0.0,0.07546805 +164.43965196609497,0.0,0.0,0.0,0.0,0.07546805 +164.44997596740723,0.0,0.0,0.0,0.0,0.07546805 +164.45943593978882,0.0,0.0,0.0,0.0,-0.002234026 +164.46999311447144,0.0,0.0,0.0,0.0,-0.002234026 +164.47946190834045,0.0,0.0,0.0,0.0,-0.002234026 +164.4899480342865,0.0,0.0,0.0,0.0,-0.002234026 +164.4999771118164,0.0,0.0,0.0,0.0,-0.002234026 +164.50983691215515,0.0,0.0,0.0,0.0,-0.002234026 +164.5197720527649,0.0,0.0,0.0,0.0,-0.002234026 +164.5294120311737,0.0,0.0,0.0,0.0,-0.002234026 +164.53960800170898,0.0,0.0,0.0,0.0,-0.002234026 +164.54998207092285,0.0,0.0,0.0,0.0,-0.002234026 +164.5599639415741,0.0,0.0,0.0,0.0,-0.026284654 +164.56955313682556,0.0,0.0,0.0,0.0,-0.026284654 +164.5799491405487,0.0,0.0,0.0,0.0,-0.026284654 +164.58996605873108,0.0,0.0,0.0,0.0,-0.026284654 +164.59998297691345,0.0,0.0,0.0,0.0,-0.026284654 +164.60994601249695,0.0,0.0,0.0,0.0,-0.015184363 +164.6196630001068,0.0,0.0,0.0,0.0,-0.015184363 +164.6297800540924,0.0,0.0,0.0,0.0,-0.015184363 +164.6397500038147,0.0,0.0,0.0,0.0,-0.015184363 +164.64996004104614,0.0,0.0,0.0,0.0,-0.015184363 +164.65965700149536,0.0,0.0,0.0,0.0,-0.033684865 +164.66996312141418,0.0,0.0,0.0,0.0,-0.033684865 +164.6799509525299,0.0,0.0,0.0,0.0,-0.033684865 +164.68998098373413,0.0,0.0,0.0,0.0,-0.033684865 +164.69997000694275,0.0,0.0,0.0,0.0,-0.033684865 +164.70965814590454,0.0,0.0,0.0,0.0,-0.01888446 +164.71980690956116,0.0,0.0,0.0,0.0,-0.01888446 +164.72974610328674,0.0,0.0,0.0,0.0,-0.01888446 +164.73943996429443,0.0,0.0,0.0,0.0,-0.01888446 +164.7497570514679,0.0,0.0,0.0,0.0,-0.01888446 +164.75996708869934,0.0,0.0,0.0,0.0,-0.009634218 +164.76945900917053,0.0,0.0,0.0,0.0,-0.009634218 +164.77996397018433,0.0,0.0,0.0,0.0,-0.009634218 +164.7900071144104,0.0,0.0,0.0,0.0,-0.009634218 +164.79963994026184,0.0,0.0,0.0,0.0,-0.009634218 +164.8098919391632,0.0,0.0,0.0,0.0,-0.0077841706 +164.81978297233582,0.0,0.0,0.0,0.0,-0.0077841706 +164.82971501350403,0.0,0.0,0.0,0.0,-0.0077841706 +164.83985710144043,0.0,0.0,0.0,0.0,-0.0077841706 +164.8496880531311,0.0,0.0,0.0,0.0,-0.0077841706 +164.8598189353943,0.0,0.0,0.0,0.0,-0.0040840744 +164.86999797821045,0.0,0.0,0.0,0.0,-0.0040840744 +164.87999391555786,0.0,0.0,0.0,0.0,-0.0040840744 +164.88939905166626,0.0,0.0,0.0,0.0,-0.0040840744 +164.8997449874878,0.0,0.0,0.0,0.0,-0.0040840744 +164.90998911857605,0.0,0.0,0.0,0.0,-0.0040840744 +164.91948103904724,0.0,0.0,0.0,0.0,-0.013334316 +164.92975497245789,0.0,0.0,0.0,0.0,-0.013334316 +164.93953895568848,0.0,0.0,0.0,0.0,-0.013334316 +164.94973611831665,0.0,0.0,0.0,0.0,-0.013334316 +164.95996594429016,0.0,0.0,0.0,0.0,-0.024434604 +164.96997094154358,0.0,0.0,0.0,0.0,-0.024434604 +164.97964310646057,0.0,0.0,0.0,0.0,-0.024434604 +164.98960494995117,0.0,0.0,0.0,0.0,-0.024434604 +164.99998807907104,0.0,0.0,0.0,0.0,-0.024434604 +165.00999808311462,0.0,0.0,0.0,0.0,-0.024434604 +165.0194981098175,0.0,0.0,0.0,0.0,-0.03183481 +165.02976512908936,0.0,0.0,0.0,0.0,-0.03183481 +165.0399899482727,0.0,0.0,0.0,0.0,-0.03183481 +165.04996395111084,0.0,0.0,0.0,0.0,-0.03183481 +165.05996704101562,0.0,0.0,0.0,0.0,-0.002234026 +165.06963396072388,0.0,0.0,0.0,0.0,-0.002234026 +165.07947206497192,0.0,0.0,0.0,0.0,-0.002234026 +165.08997511863708,0.0,0.0,0.0,0.0,-0.002234026 +165.09998202323914,0.0,0.0,0.0,0.0,-0.002234026 +165.10998702049255,0.0,0.0,0.0,0.0,-0.002234026 +165.11947894096375,0.0,0.0,0.0,0.0,-0.024434604 +165.1297550201416,0.0,0.0,0.0,0.0,-0.024434604 +165.13996195793152,0.0,0.0,0.0,0.0,-0.024434604 +165.14997911453247,0.0,0.0,0.0,0.0,-0.024434604 +165.15963697433472,0.0,0.0,0.0,0.0,-0.0040840744 +165.1699709892273,0.0,0.0,0.0,0.0,-0.0040840744 +165.17945194244385,0.0,0.0,0.0,0.0,-0.0040840744 +165.18968391418457,0.0,0.0,0.0,0.0,-0.0040840744 +165.19998812675476,0.0,0.0,0.0,0.0,-0.0040840744 +165.20946192741394,0.0,0.0,0.0,0.0,-0.0040840744 +165.21980690956116,0.0,0.0,0.0,0.0,-0.0040840744 +165.2297739982605,0.0,0.0,0.0,0.0,-0.0040840744 +165.23996496200562,0.0,0.0,0.0,0.0,-0.0040840744 +165.24961709976196,0.0,0.0,0.0,0.0,-0.0040840744 +165.2596881389618,0.0,0.0,0.0,0.0,-0.015184363 +165.26998591423035,0.0,0.0,0.0,0.0,-0.015184363 +165.27998113632202,0.0,0.0,0.0,0.0,-0.015184363 +165.2899980545044,0.0,0.0,0.0,0.0,-0.015184363 +165.2994909286499,0.0,0.0,0.0,0.0,-0.015184363 +165.31001710891724,0.0,0.0,0.0,0.0,-0.015184363 +165.31979393959045,0.0,0.0,0.0,0.0,-0.009634218 +165.32972812652588,0.0,0.0,0.0,0.0,-0.009634218 +165.3396189212799,0.0,0.0,0.0,0.0,-0.009634218 +165.35000205039978,0.0,0.0,0.0,0.0,-0.009634218 +165.35997200012207,0.0,0.0,0.0,0.0,-0.011484267 +165.36997294425964,0.0,0.0,0.0,0.0,-0.011484267 +165.37998008728027,0.0,0.0,0.0,0.0,-0.011484267 +165.389564037323,0.0,0.0,0.0,0.0,-0.011484267 +165.3999960422516,0.0,0.0,0.0,0.0,-0.011484267 +165.40999007225037,0.0,0.0,0.0,0.0,-0.011484267 +165.41997504234314,0.0,0.0,0.0,0.0,-0.00038397792 +165.4296169281006,0.0,0.0,0.0,0.0,-0.00038397792 +165.43997812271118,0.0,0.0,0.0,0.0,-0.00038397792 +165.449716091156,0.0,0.0,0.0,0.0,-0.00038397792 +165.4599950313568,0.0,0.0,0.0,0.0,-0.013334316 +165.47002291679382,0.0,0.0,0.0,0.0,-0.013334316 +165.47970008850098,0.0,0.0,0.0,0.0,-0.013334316 +165.48998498916626,0.0,0.0,0.0,0.0,-0.013334316 +165.50000500679016,0.0,0.0,0.0,0.0,-0.013334316 +165.51003098487854,0.0,0.0,0.0,0.0,-0.013334316 +165.51962113380432,0.0,0.0,0.0,0.0,-0.0040840744 +165.52974605560303,0.0,0.0,0.0,0.0,-0.0040840744 +165.54002213478088,0.0,0.0,0.0,0.0,-0.0040840744 +165.549978017807,0.0,0.0,0.0,0.0,-0.0040840744 +165.55998301506042,0.0,0.0,0.0,0.0,-0.002234026 +165.56981301307678,0.0,0.0,0.0,0.0,-0.002234026 +165.57998609542847,0.0,0.0,0.0,0.0,-0.002234026 +165.58946704864502,0.0,0.0,0.0,0.0,-0.002234026 +165.5994529724121,0.0,0.0,0.0,0.0,-0.002234026 +165.60964012145996,0.0,0.0,0.0,0.0,-0.11693706 +165.61946201324463,0.0,0.0,0.0,0.0,-0.11693706 +165.6297731399536,0.0,0.0,0.0,0.0,-0.11693706 +165.63997101783752,0.0,0.0,0.0,0.0,-0.11693706 +165.64999794960022,0.0,0.0,0.0,0.0,-0.11693706 +165.6599359512329,0.0,0.0,0.0,0.0,-0.01888446 +165.6694040298462,0.0,0.0,0.0,0.0,-0.01888446 +165.67998600006104,0.0,0.0,0.0,0.0,-0.01888446 +165.68956112861633,0.0,0.0,0.0,0.0,-0.01888446 +165.69957399368286,0.0,0.0,0.0,0.0,-0.01888446 +165.71001291275024,0.0,0.0,0.0,0.0,-0.013334316 +165.7197971343994,0.0,0.0,0.0,0.0,-0.013334316 +165.72976303100586,0.0,0.0,0.0,0.0,-0.013334316 +165.73999905586243,0.0,0.0,0.0,0.0,-0.013334316 +165.74954295158386,0.0,0.0,0.0,0.0,-0.013334316 +165.76001596450806,0.0,0.0,0.0,0.0,0.01811652 +165.770005941391,0.0,0.0,0.0,0.0,0.01811652 +165.7800030708313,0.0,0.0,0.0,0.0,0.01811652 +165.7893979549408,0.0,0.0,0.0,0.0,0.01811652 +165.80268907546997,0.0,0.0,0.0,0.0,0.01811652 +165.81000399589539,0.0,0.0,0.0,0.0,0.0033161184 +165.81981205940247,0.0,0.0,0.0,0.0,0.0033161184 +165.82952308654785,0.0,0.0,0.0,0.0,0.0033161184 +165.83979511260986,0.0,0.0,0.0,0.0,0.0033161184 +165.85000109672546,0.0,0.0,0.0,0.0,0.0033161184 +165.8612880706787,0.0,0.0,0.0,0.0,-0.00038397792 +165.87000513076782,0.0,0.0,0.0,0.0,-0.00038397792 +165.87959003448486,0.0,0.0,0.0,0.0,-0.00038397792 +165.89248299598694,0.0,0.0,0.0,0.0,-0.00038397792 +165.9000039100647,0.0,0.0,0.0,0.0,-0.00038397792 +165.91000699996948,0.0,0.0,0.0,0.0,-0.0466352 +165.91942310333252,0.0,0.0,0.0,0.0,-0.0466352 +165.92975211143494,0.0,0.0,0.0,0.0,-0.0466352 +165.93999791145325,0.0,0.0,0.0,0.0,-0.0466352 +165.9494149684906,0.0,0.0,0.0,0.0,-0.0466352 +165.9594371318817,0.0,0.0,0.0,0.0,-0.002234026 +165.96939992904663,0.0,0.0,0.0,0.0,-0.002234026 +165.98160314559937,0.0,0.0,0.0,0.0,-0.002234026 +165.98999309539795,0.0,0.0,0.0,0.0,-0.002234026 +165.99940395355225,0.0,0.0,0.0,0.0,-0.002234026 +166.0100700855255,0.0,0.0,0.0,0.0,0.008866279 +166.01942706108093,0.0,0.0,0.0,0.0,0.008866279 +166.0294680595398,0.0,0.0,0.0,0.0,0.008866279 +166.03943610191345,0.0,0.0,0.0,0.0,0.008866279 +166.0498549938202,0.0,0.0,0.0,0.0,0.008866279 +166.05942106246948,0.0,0.0,0.0,0.0,0.0033161184 +166.07001304626465,0.0,0.0,0.0,0.0,0.0033161184 +166.07961511611938,0.0,0.0,0.0,0.0,0.0033161184 +166.08949995040894,0.0,0.0,0.0,0.0,0.0033161184 +166.10144805908203,0.0,0.0,0.0,0.0,0.0033161184 +166.1099829673767,0.0,0.0,0.0,0.0,0.0033161184 +166.1194200515747,0.0,0.0,0.0,0.0,-0.0077841706 +166.12976908683777,0.0,0.0,0.0,0.0,-0.0077841706 +166.1398160457611,0.0,0.0,0.0,0.0,-0.0077841706 +166.1495440006256,0.0,0.0,0.0,0.0,-0.0077841706 +166.15982699394226,0.0,0.0,0.0,0.0,0.012566376 +166.17031502723694,0.0,0.0,0.0,0.0,0.012566376 +166.18255996704102,0.0,0.0,0.0,0.0,0.012566376 +166.1900269985199,0.0,0.0,0.0,0.0,0.012566376 +166.20014810562134,0.0,0.0,0.0,0.0,0.012566376 +166.20958399772644,0.0,0.0,0.0,0.0,0.012566376 +166.219496011734,0.0,0.0,0.0,0.0,-0.024434604 +166.2296760082245,0.0,0.0,0.0,0.0,-0.024434604 +166.23956298828125,0.0,0.0,0.0,0.0,-0.024434604 +166.24939894676208,0.0,0.0,0.0,0.0,-0.024434604 +166.26063895225525,0.0,0.0,0.0,0.0,-0.022584556 +166.2699921131134,0.0,0.0,0.0,0.0,-0.022584556 +166.28167009353638,0.0,0.0,0.0,0.0,-0.022584556 +166.2901430130005,0.0,0.0,0.0,0.0,-0.022584556 +166.29969692230225,0.0,0.0,0.0,0.0,-0.022584556 +166.30959010124207,0.0,0.0,0.0,0.0,-0.022584556 +166.3195309638977,0.0,0.0,0.0,0.0,-0.00038397792 +166.32951498031616,0.0,0.0,0.0,0.0,-0.00038397792 +166.339772939682,0.0,0.0,0.0,0.0,-0.00038397792 +166.34961104393005,0.0,0.0,0.0,0.0,-0.00038397792 +166.35941410064697,0.0,0.0,0.0,0.0,0.04031712 +166.3717770576477,0.0,0.0,0.0,0.0,0.04031712 +166.38080596923828,0.0,0.0,0.0,0.0,0.04031712 +166.3898069858551,0.0,0.0,0.0,0.0,0.04031712 +166.40038394927979,0.0,0.0,0.0,0.0,0.04031712 +166.4093999862671,0.0,0.0,0.0,0.0,0.04031712 +166.41962599754333,0.0,0.0,0.0,0.0,-0.002234026 +166.4297640323639,0.0,0.0,0.0,0.0,-0.002234026 +166.44276404380798,0.0,0.0,0.0,0.0,-0.002234026 +166.44988107681274,0.0,0.0,0.0,0.0,-0.002234026 +166.46188592910767,0.0,0.0,0.0,0.0,-0.022584556 +166.47001791000366,0.0,0.0,0.0,0.0,-0.022584556 +166.47965097427368,0.0,0.0,0.0,0.0,-0.022584556 +166.48963403701782,0.0,0.0,0.0,0.0,-0.022584556 +166.49953413009644,0.0,0.0,0.0,0.0,-0.022584556 +166.5095670223236,0.0,0.0,0.0,0.0,-0.022584556 +166.5194001197815,0.0,0.0,0.0,0.0,-0.024434604 +166.5297429561615,0.0,0.0,0.0,0.0,-0.024434604 +166.54172611236572,0.0,0.0,0.0,0.0,-0.024434604 +166.54991912841797,0.0,0.0,0.0,0.0,-0.024434604 +166.5609531402588,0.0,0.0,0.0,0.0,-0.002234026 +166.56986808776855,0.0,0.0,0.0,0.0,-0.002234026 +166.57949805259705,0.0,0.0,0.0,0.0,-0.002234026 +166.59000301361084,0.0,0.0,0.0,0.0,-0.002234026 +166.599524974823,0.0,0.0,0.0,0.0,-0.002234026 +166.60970497131348,0.0,0.0,0.0,0.0,0.0014660703 +166.61981892585754,0.0,0.0,0.0,0.0,0.0014660703 +166.62949991226196,0.0,0.0,0.0,0.0,0.0014660703 +166.63990807533264,0.0,0.0,0.0,0.0,0.0014660703 +166.6498670578003,0.0,0.0,0.0,0.0,0.0014660703 +166.66014909744263,0.0,0.0,0.0,0.0,-0.01888446 +166.66993403434753,0.0,0.0,0.0,0.0,-0.01888446 +166.6805009841919,0.0,0.0,0.0,0.0,-0.01888446 +166.68950200080872,0.0,0.0,0.0,0.0,-0.01888446 +166.70278906822205,0.0,0.0,0.0,0.0,-0.01888446 +166.71000599861145,0.0,0.0,0.0,0.0,-0.011484267 +166.71998000144958,0.0,0.0,0.0,0.0,-0.011484267 +166.72978401184082,0.0,0.0,0.0,0.0,-0.011484267 +166.7394621372223,0.0,0.0,0.0,0.0,-0.011484267 +166.75003504753113,0.0,0.0,0.0,0.0,-0.011484267 +166.75980806350708,0.0,0.0,0.0,0.0,-0.020734508 +166.77050304412842,0.0,0.0,0.0,0.0,-0.020734508 +166.77949690818787,0.0,0.0,0.0,0.0,-0.020734508 +166.79003310203552,0.0,0.0,0.0,0.0,-0.020734508 +166.80158495903015,0.0,0.0,0.0,0.0,-0.020734508 +166.8104989528656,0.0,0.0,0.0,0.0,-0.009634218 +166.81960701942444,0.0,0.0,0.0,0.0,-0.009634218 +166.82950401306152,0.0,0.0,0.0,0.0,-0.009634218 +166.8403971195221,0.0,0.0,0.0,0.0,-0.009634218 +166.84939312934875,0.0,0.0,0.0,0.0,-0.009634218 +166.8604760169983,0.0,0.0,0.0,0.0,-0.011484267 +166.86949110031128,0.0,0.0,0.0,0.0,-0.011484267 +166.8818061351776,0.0,0.0,0.0,0.0,-0.011484267 +166.8906979560852,0.0,0.0,0.0,0.0,-0.011484267 +166.89962196350098,0.0,0.0,0.0,0.0,-0.011484267 +166.91003108024597,0.0,0.0,0.0,0.0,-0.002234026 +166.91983294487,0.0,0.0,0.0,0.0,-0.002234026 +166.92940998077393,0.0,0.0,0.0,0.0,-0.002234026 +166.93950390815735,0.0,0.0,0.0,0.0,-0.002234026 +166.95004200935364,0.0,0.0,0.0,0.0,-0.002234026 +166.95949506759644,0.0,0.0,0.0,0.0,-0.0040840744 +166.970379114151,0.0,0.0,0.0,0.0,-0.0040840744 +166.97983312606812,0.0,0.0,0.0,0.0,-0.0040840744 +166.9900209903717,0.0,0.0,0.0,0.0,-0.0040840744 +166.99984312057495,0.0,0.0,0.0,0.0,-0.0040840744 +167.01007294654846,0.0,0.0,0.0,0.0,-0.009634218 +167.01977014541626,0.0,0.0,0.0,0.0,-0.009634218 +167.0294530391693,0.0,0.0,0.0,0.0,-0.009634218 +167.04048109054565,0.0,0.0,0.0,0.0,-0.009634218 +167.04948210716248,0.0,0.0,0.0,0.0,-0.009634218 +167.06005311012268,0.0,0.0,0.0,0.0,-0.020734508 +167.07003712654114,0.0,0.0,0.0,0.0,-0.020734508 +167.08199310302734,0.0,0.0,0.0,0.0,-0.020734508 +167.09223008155823,0.0,0.0,0.0,0.0,-0.020734508 +167.10123014450073,0.0,0.0,0.0,0.0,-0.020734508 +167.11000800132751,0.0,0.0,0.0,0.0,-0.020734508 +167.11973595619202,0.0,0.0,0.0,0.0,-0.013334316 +167.12945699691772,0.0,0.0,0.0,0.0,-0.013334316 +167.1394670009613,0.0,0.0,0.0,0.0,-0.013334316 +167.1500380039215,0.0,0.0,0.0,0.0,-0.013334316 +167.15958714485168,0.0,0.0,0.0,0.0,-0.015184363 +167.1694610118866,0.0,0.0,0.0,0.0,-0.015184363 +167.17976212501526,0.0,0.0,0.0,0.0,-0.015184363 +167.1900520324707,0.0,0.0,0.0,0.0,-0.015184363 +167.2000651359558,0.0,0.0,0.0,0.0,-0.015184363 +167.2098319530487,0.0,0.0,0.0,0.0,-0.015184363 +167.21954011917114,0.0,0.0,0.0,0.0,-0.011484267 +167.229474067688,0.0,0.0,0.0,0.0,-0.011484267 +167.2428240776062,0.0,0.0,0.0,0.0,-0.011484267 +167.24988293647766,0.0,0.0,0.0,0.0,-0.011484267 +167.2599880695343,0.0,0.0,0.0,0.0,0.04401721 +167.27001905441284,0.0,0.0,0.0,0.0,0.04401721 +167.28093004226685,0.0,0.0,0.0,0.0,0.04401721 +167.2899260520935,0.0,0.0,0.0,0.0,0.04401721 +167.29996395111084,0.0,0.0,0.0,0.0,0.04401721 +167.30959105491638,0.0,0.0,0.0,0.0,0.04401721 +167.31953501701355,0.0,0.0,0.0,0.0,-0.009634218 +167.32976007461548,0.0,0.0,0.0,0.0,-0.009634218 +167.34143209457397,0.0,0.0,0.0,0.0,-0.009634218 +167.35004210472107,0.0,0.0,0.0,0.0,-0.009634218 +167.3617889881134,0.0,0.0,0.0,0.0,-0.009634218 +167.37076997756958,0.0,0.0,0.0,0.0,-0.009634218 +167.3797731399536,0.0,0.0,0.0,0.0,-0.009634218 +167.38943791389465,0.0,0.0,0.0,0.0,-0.009634218 +167.39941906929016,0.0,0.0,0.0,0.0,-0.009634218 +167.4095060825348,0.0,0.0,0.0,0.0,-0.009634218 +167.41982913017273,0.0,0.0,0.0,0.0,-0.00038397792 +167.42976903915405,0.0,0.0,0.0,0.0,-0.00038397792 +167.4426600933075,0.0,0.0,0.0,0.0,-0.00038397792 +167.44989800453186,0.0,0.0,0.0,0.0,-0.00038397792 +167.46060299873352,0.0,0.0,0.0,0.0,-0.011484267 +167.4695839881897,0.0,0.0,0.0,0.0,-0.011484267 +167.48019099235535,0.0,0.0,0.0,0.0,-0.011484267 +167.48940205574036,0.0,0.0,0.0,0.0,-0.011484267 +167.49948596954346,0.0,0.0,0.0,0.0,-0.011484267 +167.51004910469055,0.0,0.0,0.0,0.0,-0.011484267 +167.5195279121399,0.0,0.0,0.0,0.0,-0.00038397792 +167.5297679901123,0.0,0.0,0.0,0.0,-0.00038397792 +167.54127407073975,0.0,0.0,0.0,0.0,-0.00038397792 +167.5494260787964,0.0,0.0,0.0,0.0,-0.00038397792 +167.55952095985413,0.0,0.0,0.0,0.0,-0.0040840744 +167.57029700279236,0.0,0.0,0.0,0.0,-0.0040840744 +167.57956790924072,0.0,0.0,0.0,0.0,-0.0040840744 +167.58950400352478,0.0,0.0,0.0,0.0,-0.0040840744 +167.6028699874878,0.0,0.0,0.0,0.0,-0.0040840744 +167.61008191108704,0.0,0.0,0.0,0.0,-0.0040840744 +167.61982202529907,0.0,0.0,0.0,0.0,-0.0040840744 +167.6297779083252,0.0,0.0,0.0,0.0,-0.0040840744 +167.63940596580505,0.0,0.0,0.0,0.0,-0.0040840744 +167.64954209327698,0.0,0.0,0.0,0.0,-0.0040840744 +167.66040992736816,0.0,0.0,0.0,0.0,-0.011484267 +167.6693959236145,0.0,0.0,0.0,0.0,-0.011484267 +167.67949414253235,0.0,0.0,0.0,0.0,-0.011484267 +167.69274497032166,0.0,0.0,0.0,0.0,-0.011484267 +167.69984602928162,0.0,0.0,0.0,0.0,-0.011484267 +167.71003007888794,0.0,0.0,0.0,0.0,-0.0077841706 +167.71952605247498,0.0,0.0,0.0,0.0,-0.0077841706 +167.72980308532715,0.0,0.0,0.0,0.0,-0.0077841706 +167.7408001422882,0.0,0.0,0.0,0.0,-0.0077841706 +167.75005292892456,0.0,0.0,0.0,0.0,-0.0077841706 +167.75951194763184,0.0,0.0,0.0,0.0,-0.026284654 +167.76948595046997,0.0,0.0,0.0,0.0,-0.026284654 +167.7802290916443,0.0,0.0,0.0,0.0,-0.026284654 +167.79005193710327,0.0,0.0,0.0,0.0,-0.026284654 +167.79968214035034,0.0,0.0,0.0,0.0,-0.026284654 +167.8109951019287,0.0,0.0,0.0,0.0,-0.00038397792 +167.8195481300354,0.0,0.0,0.0,0.0,-0.00038397792 +167.8293960094452,0.0,0.0,0.0,0.0,-0.00038397792 +167.83953094482422,0.0,0.0,0.0,0.0,-0.00038397792 +167.84962511062622,0.0,0.0,0.0,0.0,-0.00038397792 +167.85947012901306,0.0,0.0,0.0,0.0,-0.009634218 +167.87004113197327,0.0,0.0,0.0,0.0,-0.009634218 +167.87983512878418,0.0,0.0,0.0,0.0,-0.009634218 +167.8918719291687,0.0,0.0,0.0,0.0,-0.009634218 +167.9008560180664,0.0,0.0,0.0,0.0,-0.009634218 +167.90983200073242,0.0,0.0,0.0,0.0,-0.015184363 +167.91949701309204,0.0,0.0,0.0,0.0,-0.015184363 +167.92976593971252,0.0,0.0,0.0,0.0,-0.015184363 +167.93972396850586,0.0,0.0,0.0,0.0,-0.015184363 +167.9494969844818,0.0,0.0,0.0,0.0,-0.015184363 +167.96004700660706,0.0,0.0,0.0,0.0,-0.009634218 +167.96963906288147,0.0,0.0,0.0,0.0,-0.009634218 +167.98091292381287,0.0,0.0,0.0,0.0,-0.009634218 +167.99005103111267,0.0,0.0,0.0,0.0,-0.009634218 +167.9997079372406,0.0,0.0,0.0,0.0,-0.009634218 +168.01013112068176,0.0,0.0,0.0,0.0,0.0014660703 +168.0208261013031,0.0,0.0,0.0,0.0,0.0014660703 +168.02981400489807,0.0,0.0,0.0,0.0,0.0014660703 +168.03943395614624,0.0,0.0,0.0,0.0,0.0014660703 +168.04990196228027,0.0,0.0,0.0,0.0,0.0014660703 +168.06010603904724,0.0,0.0,0.0,0.0,0.0014660703 +168.0700740814209,0.0,0.0,0.0,0.0,0.0014660703 +168.0805790424347,0.0,0.0,0.0,0.0,0.0014660703 +168.08956503868103,0.0,0.0,0.0,0.0,0.0014660703 +168.10193490982056,0.0,0.0,0.0,0.0,0.0014660703 +168.1100471019745,0.0,0.0,0.0,0.0,0.0014660703 +168.11981892585754,0.0,0.0,0.0,0.0,-0.002234026 +168.1294810771942,0.0,0.0,0.0,0.0,-0.002234026 +168.1416621208191,0.0,0.0,0.0,0.0,-0.002234026 +168.15005898475647,0.0,0.0,0.0,0.0,-0.002234026 +168.16144609451294,0.0,0.0,0.0,0.0,-0.0077841706 +168.16943192481995,0.0,0.0,0.0,0.0,-0.0077841706 +168.17942094802856,0.0,0.0,0.0,0.0,-0.0077841706 +168.19007205963135,0.0,0.0,0.0,0.0,-0.0077841706 +168.2006299495697,0.0,0.0,0.0,0.0,-0.0077841706 +168.2095229625702,0.0,0.0,0.0,0.0,-0.0077841706 +168.2195429801941,0.0,0.0,0.0,0.0,-0.022584556 +168.22957801818848,0.0,0.0,0.0,0.0,-0.022584556 +168.24035692214966,0.0,0.0,0.0,0.0,-0.022584556 +168.2499179840088,0.0,0.0,0.0,0.0,-0.022584556 +168.26027703285217,0.0,0.0,0.0,0.0,-0.002234026 +168.27006101608276,0.0,0.0,0.0,0.0,-0.002234026 +168.28080701828003,0.0,0.0,0.0,0.0,-0.002234026 +168.28952503204346,0.0,0.0,0.0,0.0,-0.002234026 +168.2994990348816,0.0,0.0,0.0,0.0,-0.002234026 +168.30952501296997,0.0,0.0,0.0,0.0,-0.002234026 +168.3195559978485,0.0,0.0,0.0,0.0,-0.013334316 +168.3297679424286,0.0,0.0,0.0,0.0,-0.013334316 +168.34114408493042,0.0,0.0,0.0,0.0,-0.013334316 +168.34968900680542,0.0,0.0,0.0,0.0,-0.013334316 +168.36073303222656,0.0,0.0,0.0,0.0,-0.029984765 +168.36989307403564,0.0,0.0,0.0,0.0,-0.029984765 +168.38129210472107,0.0,0.0,0.0,0.0,-0.029984765 +168.39004707336426,0.0,0.0,0.0,0.0,-0.029984765 +168.3995270729065,0.0,0.0,0.0,0.0,-0.029984765 +168.4097719192505,0.0,0.0,0.0,0.0,-0.029984765 +168.4195430278778,0.0,0.0,0.0,0.0,-0.011484267 +168.4295310974121,0.0,0.0,0.0,0.0,-0.011484267 +168.43999695777893,0.0,0.0,0.0,0.0,-0.011484267 +168.44993805885315,0.0,0.0,0.0,0.0,-0.011484267 +168.46167993545532,0.0,0.0,0.0,0.0,-0.009634218 +168.47006011009216,0.0,0.0,0.0,0.0,-0.009634218 +168.48038911819458,0.0,0.0,0.0,0.0,-0.009634218 +168.48961305618286,0.0,0.0,0.0,0.0,-0.009634218 +168.50295114517212,0.0,0.0,0.0,0.0,-0.009634218 +168.51007604599,0.0,0.0,0.0,0.0,-0.009634218 +168.5198130607605,0.0,0.0,0.0,0.0,0.0033161184 +168.52948999404907,0.0,0.0,0.0,0.0,0.0033161184 +168.53942203521729,0.0,0.0,0.0,0.0,0.0033161184 +168.55006504058838,0.0,0.0,0.0,0.0,0.0033161184 +168.55962014198303,0.0,0.0,0.0,0.0,-0.0077841706 +168.5703570842743,0.0,0.0,0.0,0.0,-0.0077841706 +168.5794551372528,0.0,0.0,0.0,0.0,-0.0077841706 +168.59005904197693,0.0,0.0,0.0,0.0,-0.0077841706 +168.60160398483276,0.0,0.0,0.0,0.0,-0.0077841706 +168.61009311676025,0.0,0.0,0.0,0.0,-0.0077841706 +168.61951613426208,0.0,0.0,0.0,0.0,-0.0077841706 +168.62958812713623,0.0,0.0,0.0,0.0,-0.0077841706 +168.6423261165619,0.0,0.0,0.0,0.0,-0.0077841706 +168.64992713928223,0.0,0.0,0.0,0.0,-0.0077841706 +168.66034197807312,0.0,0.0,0.0,0.0,-0.020734508 +168.6696219444275,0.0,0.0,0.0,0.0,-0.020734508 +168.67979407310486,0.0,0.0,0.0,0.0,-0.020734508 +168.68968892097473,0.0,0.0,0.0,0.0,-0.020734508 +168.69964814186096,0.0,0.0,0.0,0.0,-0.020734508 +168.70952701568604,0.0,0.0,0.0,0.0,-0.015184363 +168.71983408927917,0.0,0.0,0.0,0.0,-0.015184363 +168.72981214523315,0.0,0.0,0.0,0.0,-0.015184363 +168.74131798744202,0.0,0.0,0.0,0.0,-0.015184363 +168.75007605552673,0.0,0.0,0.0,0.0,-0.015184363 +168.75942206382751,0.0,0.0,0.0,0.0,-0.0077841706 +168.76979994773865,0.0,0.0,0.0,0.0,-0.0077841706 +168.77989792823792,0.0,0.0,0.0,0.0,-0.0077841706 +168.7897400856018,0.0,0.0,0.0,0.0,-0.0077841706 +168.80018997192383,0.0,0.0,0.0,0.0,-0.0077841706 +168.8107259273529,0.0,0.0,0.0,0.0,-0.01888446 +168.81976294517517,0.0,0.0,0.0,0.0,-0.01888446 +168.83008193969727,0.0,0.0,0.0,0.0,-0.01888446 +168.8402841091156,0.0,0.0,0.0,0.0,-0.01888446 +168.8498239517212,0.0,0.0,0.0,0.0,-0.01888446 +168.86013793945312,0.0,0.0,0.0,0.0,-0.009634218 +168.87007212638855,0.0,0.0,0.0,0.0,-0.009634218 +168.8795030117035,0.0,0.0,0.0,0.0,-0.009634218 +168.88942003250122,0.0,0.0,0.0,0.0,-0.009634218 +168.9007909297943,0.0,0.0,0.0,0.0,-0.009634218 +168.90967392921448,0.0,0.0,0.0,0.0,-0.00038397792 +168.919851064682,0.0,0.0,0.0,0.0,-0.00038397792 +168.92979907989502,0.0,0.0,0.0,0.0,-0.00038397792 +168.93990397453308,0.0,0.0,0.0,0.0,-0.00038397792 +168.94939804077148,0.0,0.0,0.0,0.0,-0.00038397792 +168.96109008789062,0.0,0.0,0.0,0.0,-0.00038397792 +168.97007703781128,0.0,0.0,0.0,0.0,-0.00038397792 +168.98298001289368,0.0,0.0,0.0,0.0,-0.00038397792 +168.9900929927826,0.0,0.0,0.0,0.0,-0.00038397792 +169.0022439956665,0.0,0.0,0.0,0.0,-0.00038397792 +169.01022791862488,0.0,0.0,0.0,0.0,-0.0040840744 +169.01943111419678,0.0,0.0,0.0,0.0,-0.0040840744 +169.02954006195068,0.0,0.0,0.0,0.0,-0.0040840744 +169.04195404052734,0.0,0.0,0.0,0.0,-0.0040840744 +169.04991698265076,0.0,0.0,0.0,0.0,-0.0040840744 +169.05994510650635,0.0,0.0,0.0,0.0,-0.009634218 +169.0700809955597,0.0,0.0,0.0,0.0,-0.009634218 +169.07987999916077,0.0,0.0,0.0,0.0,-0.009634218 +169.09190893173218,0.0,0.0,0.0,0.0,-0.009634218 +169.1007161140442,0.0,0.0,0.0,0.0,-0.009634218 +169.1097481250763,0.0,0.0,0.0,0.0,-0.009634218 +169.11939096450806,0.0,0.0,0.0,0.0,-0.009634218 +169.12980198860168,0.0,0.0,0.0,0.0,-0.009634218 +169.1407949924469,0.0,0.0,0.0,0.0,-0.009634218 +169.14976906776428,0.0,0.0,0.0,0.0,-0.009634218 +169.16299605369568,0.0,0.0,0.0,0.0,-0.029984765 +169.17215204238892,0.0,0.0,0.0,0.0,-0.029984765 +169.1810691356659,0.0,0.0,0.0,0.0,-0.029984765 +169.1899631023407,0.0,0.0,0.0,0.0,-0.029984765 +169.19939994812012,0.0,0.0,0.0,0.0,-0.029984765 +169.20994901657104,0.0,0.0,0.0,0.0,-0.029984765 +169.21957802772522,0.0,0.0,0.0,0.0,-0.020734508 +169.22943902015686,0.0,0.0,0.0,0.0,-0.020734508 +169.23961400985718,0.0,0.0,0.0,0.0,-0.020734508 +169.2499520778656,0.0,0.0,0.0,0.0,-0.020734508 +169.2612841129303,0.0,0.0,0.0,0.0,-0.024434604 +169.27006912231445,0.0,0.0,0.0,0.0,-0.024434604 +169.27953600883484,0.0,0.0,0.0,0.0,-0.024434604 +169.2902331352234,0.0,0.0,0.0,0.0,-0.024434604 +169.30032110214233,0.0,0.0,0.0,0.0,-0.024434604 +169.31010007858276,0.0,0.0,0.0,0.0,-0.024434604 +169.3198480606079,0.0,0.0,0.0,0.0,-0.013334316 +169.32944297790527,0.0,0.0,0.0,0.0,-0.013334316 +169.3399920463562,0.0,0.0,0.0,0.0,-0.013334316 +169.35009002685547,0.0,0.0,0.0,0.0,-0.013334316 +169.35965514183044,0.0,0.0,0.0,0.0,-0.0040840744 +169.37119913101196,0.0,0.0,0.0,0.0,-0.0040840744 +169.3802089691162,0.0,0.0,0.0,0.0,-0.0040840744 +169.39008402824402,0.0,0.0,0.0,0.0,-0.0040840744 +169.39943194389343,0.0,0.0,0.0,0.0,-0.0040840744 +169.4100821018219,0.0,0.0,0.0,0.0,-0.020734508 +169.41955494880676,0.0,0.0,0.0,0.0,-0.020734508 +169.4294331073761,0.0,0.0,0.0,0.0,-0.020734508 +169.43959593772888,0.0,0.0,0.0,0.0,-0.020734508 +169.4499490261078,0.0,0.0,0.0,0.0,-0.020734508 +169.46105909347534,0.0,0.0,0.0,0.0,-0.0077841706 +169.46949911117554,0.0,0.0,0.0,0.0,-0.0077841706 +169.48054599761963,0.0,0.0,0.0,0.0,-0.0077841706 +169.48955512046814,0.0,0.0,0.0,0.0,-0.0077841706 +169.50015807151794,0.0,0.0,0.0,0.0,-0.0077841706 +169.51013803482056,0.0,0.0,0.0,0.0,-0.0077841706 +169.5198130607605,0.0,0.0,0.0,0.0,-0.013334316 +169.52954006195068,0.0,0.0,0.0,0.0,-0.013334316 +169.542160987854,0.0,0.0,0.0,0.0,-0.013334316 +169.55008912086487,0.0,0.0,0.0,0.0,-0.013334316 +169.56013798713684,0.0,0.0,0.0,0.0,-0.00038397792 +169.56985211372375,0.0,0.0,0.0,0.0,-0.00038397792 +169.57966208457947,0.0,0.0,0.0,0.0,-0.00038397792 +169.59000611305237,0.0,0.0,0.0,0.0,-0.00038397792 +169.6000690460205,0.0,0.0,0.0,0.0,-0.00038397792 +169.61014604568481,0.0,0.0,0.0,0.0,-0.041085053 +169.61957597732544,0.0,0.0,0.0,0.0,-0.041085053 +169.62982392311096,0.0,0.0,0.0,0.0,-0.041085053 +169.64112901687622,0.0,0.0,0.0,0.0,-0.041085053 +169.64996099472046,0.0,0.0,0.0,0.0,-0.041085053 +169.6607539653778,0.0,0.0,0.0,0.0,0.014416425 +169.6697690486908,0.0,0.0,0.0,0.0,0.014416425 +169.67942214012146,0.0,0.0,0.0,0.0,0.014416425 +169.69304895401,0.0,0.0,0.0,0.0,0.014416425 +169.70307111740112,0.0,0.0,0.0,0.0,0.014416425 +169.71009302139282,0.0,0.0,0.0,0.0,-0.013334316 +169.72013306617737,0.0,0.0,0.0,0.0,-0.013334316 +169.7301890850067,0.0,0.0,0.0,0.0,-0.013334316 +169.73963403701782,0.0,0.0,0.0,0.0,-0.013334316 +169.7501311302185,0.0,0.0,0.0,0.0,-0.013334316 +169.75988101959229,0.0,0.0,0.0,0.0,-0.009634218 +169.76943612098694,0.0,0.0,0.0,0.0,-0.009634218 +169.7830650806427,0.0,0.0,0.0,0.0,-0.009634218 +169.79012799263,0.0,0.0,0.0,0.0,-0.009634218 +169.80304598808289,0.0,0.0,0.0,0.0,-0.009634218 +169.81023406982422,0.0,0.0,0.0,0.0,-0.011484267 +169.81954407691956,0.0,0.0,0.0,0.0,-0.011484267 +169.82979607582092,0.0,0.0,0.0,0.0,-0.011484267 +169.84076309204102,0.0,0.0,0.0,0.0,-0.011484267 +169.84953498840332,0.0,0.0,0.0,0.0,-0.011484267 +169.85953307151794,0.0,0.0,0.0,0.0,-0.050335295 +169.87012600898743,0.0,0.0,0.0,0.0,-0.050335295 +169.8830771446228,0.0,0.0,0.0,0.0,-0.050335295 +169.89307498931885,0.0,0.0,0.0,0.0,-0.050335295 +169.90073990821838,0.0,0.0,0.0,0.0,-0.050335295 +169.91013407707214,0.0,0.0,0.0,0.0,-0.00038397792 +169.91985893249512,0.0,0.0,0.0,0.0,-0.00038397792 +169.9295620918274,0.0,0.0,0.0,0.0,-0.00038397792 +169.9400990009308,0.0,0.0,0.0,0.0,-0.00038397792 +169.94957208633423,0.0,0.0,0.0,0.0,-0.00038397792 +169.96309304237366,0.0,0.0,0.0,0.0,-0.020734508 +169.97307896614075,0.0,0.0,0.0,0.0,-0.020734508 +169.98266506195068,0.0,0.0,0.0,0.0,-0.020734508 +169.99012994766235,0.0,0.0,0.0,0.0,-0.020734508 +170.00108408927917,0.0,0.0,0.0,0.0,-0.020734508 +170.01006197929382,0.0,0.0,0.0,0.0,-0.0077841706 +170.01951813697815,0.0,0.0,0.0,0.0,-0.0077841706 +170.02955293655396,0.0,0.0,0.0,0.0,-0.0077841706 +170.03956007957458,0.0,0.0,0.0,0.0,-0.0077841706 +170.04995703697205,0.0,0.0,0.0,0.0,-0.0077841706 +170.0630819797516,0.0,0.0,0.0,0.0,0.0070162313 +170.0701470375061,0.0,0.0,0.0,0.0,0.0070162313 +170.08096504211426,0.0,0.0,0.0,0.0,0.0070162313 +170.09031796455383,0.0,0.0,0.0,0.0,0.0070162313 +170.10005402565002,0.0,0.0,0.0,0.0,0.0070162313 +170.11008310317993,0.0,0.0,0.0,0.0,0.0070162313 +170.11958694458008,0.0,0.0,0.0,0.0,0.008866279 +170.12953400611877,0.0,0.0,0.0,0.0,0.008866279 +170.14308309555054,0.0,0.0,0.0,0.0,0.008866279 +170.15013694763184,0.0,0.0,0.0,0.0,0.008866279 +170.16163897514343,0.0,0.0,0.0,0.0,-0.002234026 +170.17054390907288,0.0,0.0,0.0,0.0,-0.002234026 +170.1795129776001,0.0,0.0,0.0,0.0,-0.002234026 +170.18944096565247,0.0,0.0,0.0,0.0,-0.002234026 +170.20093607902527,0.0,0.0,0.0,0.0,-0.002234026 +170.20993399620056,0.0,0.0,0.0,0.0,-0.002234026 +170.21954011917114,0.0,0.0,0.0,0.0,0.008866279 +170.2295949459076,0.0,0.0,0.0,0.0,0.008866279 +170.24185705184937,0.0,0.0,0.0,0.0,0.008866279 +170.2499599456787,0.0,0.0,0.0,0.0,0.008866279 +170.25968599319458,0.0,0.0,0.0,0.0,0.0033161184 +170.26976013183594,0.0,0.0,0.0,0.0,0.0033161184 +170.28003001213074,0.0,0.0,0.0,0.0,0.0033161184 +170.29081201553345,0.0,0.0,0.0,0.0,0.0033161184 +170.29976797103882,0.0,0.0,0.0,0.0,0.0033161184 +170.3095259666443,0.0,0.0,0.0,0.0,0.0033161184 +170.31943893432617,0.0,0.0,0.0,0.0,0.0033161184 +170.32984399795532,0.0,0.0,0.0,0.0,0.0033161184 +170.33991193771362,0.0,0.0,0.0,0.0,0.0033161184 +170.35013914108276,0.0,0.0,0.0,0.0,0.0033161184 +170.36096811294556,0.0,0.0,0.0,0.0,-0.029984765 +170.3699769973755,0.0,0.0,0.0,0.0,-0.029984765 +170.38046312332153,0.0,0.0,0.0,0.0,-0.029984765 +170.38961100578308,0.0,0.0,0.0,0.0,-0.029984765 +170.39966011047363,0.0,0.0,0.0,0.0,-0.029984765 +170.4101529121399,0.0,0.0,0.0,0.0,-0.0077841706 +170.41985893249512,0.0,0.0,0.0,0.0,-0.0077841706 +170.42980098724365,0.0,0.0,0.0,0.0,-0.0077841706 +170.44195199012756,0.0,0.0,0.0,0.0,-0.0077841706 +170.44956493377686,0.0,0.0,0.0,0.0,-0.0077841706 +170.4599621295929,0.0,0.0,0.0,0.0,-0.013334316 +170.4701600074768,0.0,0.0,0.0,0.0,-0.013334316 +170.47947001457214,0.0,0.0,0.0,0.0,-0.013334316 +170.48976707458496,0.0,0.0,0.0,0.0,-0.013334316 +170.50037598609924,0.0,0.0,0.0,0.0,-0.013334316 +170.5100860595703,0.0,0.0,0.0,0.0,-0.013334316 +170.52066612243652,0.0,0.0,0.0,0.0,-0.0040840744 +170.53193306922913,0.0,0.0,0.0,0.0,-0.0040840744 +170.54094099998474,0.0,0.0,0.0,0.0,-0.0040840744 +170.5499279499054,0.0,0.0,0.0,0.0,-0.0040840744 +170.55940914154053,0.0,0.0,0.0,0.0,-0.011484267 +170.5700421333313,0.0,0.0,0.0,0.0,-0.011484267 +170.57961702346802,0.0,0.0,0.0,0.0,-0.011484267 +170.58948397636414,0.0,0.0,0.0,0.0,-0.011484267 +170.59998202323914,0.0,0.0,0.0,0.0,-0.011484267 +170.60938811302185,0.0,0.0,0.0,0.0,-0.01888446 +170.61987805366516,0.0,0.0,0.0,0.0,-0.01888446 +170.62980794906616,0.0,0.0,0.0,0.0,-0.01888446 +170.63989210128784,0.0,0.0,0.0,0.0,-0.01888446 +170.6499741077423,0.0,0.0,0.0,0.0,-0.01888446 +170.6607789993286,0.0,0.0,0.0,0.0,-0.0040840744 +170.66968894004822,0.0,0.0,0.0,0.0,-0.0040840744 +170.6795210838318,0.0,0.0,0.0,0.0,-0.0040840744 +170.6931540966034,0.0,0.0,0.0,0.0,-0.0040840744 +170.70282912254333,0.0,0.0,0.0,0.0,-0.0040840744 +170.70969796180725,0.0,0.0,0.0,0.0,-0.011484267 +170.7196409702301,0.0,0.0,0.0,0.0,-0.011484267 +170.72985911369324,0.0,0.0,0.0,0.0,-0.011484267 +170.7400619983673,0.0,0.0,0.0,0.0,-0.011484267 +170.74990892410278,0.0,0.0,0.0,0.0,-0.011484267 +170.76009106636047,0.0,0.0,0.0,0.0,-0.00038397792 +170.77064609527588,0.0,0.0,0.0,0.0,-0.00038397792 +170.7794930934906,0.0,0.0,0.0,0.0,-0.00038397792 +170.79016613960266,0.0,0.0,0.0,0.0,-0.00038397792 +170.80091500282288,0.0,0.0,0.0,0.0,-0.00038397792 +170.81084394454956,0.0,0.0,0.0,0.0,-0.00038397792 +170.8198311328888,0.0,0.0,0.0,0.0,-0.00038397792 +170.82981395721436,0.0,0.0,0.0,0.0,-0.00038397792 +170.8394899368286,0.0,0.0,0.0,0.0,-0.00038397792 +170.8499879837036,0.0,0.0,0.0,0.0,-0.00038397792 +170.8594720363617,0.0,0.0,0.0,0.0,-0.009634218 +170.86953210830688,0.0,0.0,0.0,0.0,-0.009634218 +170.88282108306885,0.0,0.0,0.0,0.0,-0.009634218 +170.89126801490784,0.0,0.0,0.0,0.0,-0.009634218 +170.90070009231567,0.0,0.0,0.0,0.0,-0.009634218 +170.90979409217834,0.0,0.0,0.0,0.0,0.0014660703 +170.91951203346252,0.0,0.0,0.0,0.0,0.0014660703 +170.92981100082397,0.0,0.0,0.0,0.0,0.0014660703 +170.94033694267273,0.0,0.0,0.0,0.0,0.0014660703 +170.95016598701477,0.0,0.0,0.0,0.0,0.0014660703 +170.96318697929382,0.0,0.0,0.0,0.0,-0.0040840744 +170.9698429107666,0.0,0.0,0.0,0.0,-0.0040840744 +170.98164200782776,0.0,0.0,0.0,0.0,-0.0040840744 +170.9896879196167,0.0,0.0,0.0,0.0,-0.0040840744 +170.99943494796753,0.0,0.0,0.0,0.0,-0.0040840744 +171.00962591171265,0.0,0.0,0.0,0.0,-0.011484267 +171.01944303512573,0.0,0.0,0.0,0.0,-0.011484267 +171.02983593940735,0.0,0.0,0.0,0.0,-0.011484267 +171.03946614265442,0.0,0.0,0.0,0.0,-0.011484267 +171.049742937088,0.0,0.0,0.0,0.0,-0.011484267 +171.0618290901184,0.0,0.0,0.0,0.0,-0.011484267 +171.0701780319214,0.0,0.0,0.0,0.0,-0.011484267 +171.07963299751282,0.0,0.0,0.0,0.0,-0.011484267 +171.08976006507874,0.0,0.0,0.0,0.0,-0.011484267 +171.0994610786438,0.0,0.0,0.0,0.0,-0.011484267 +171.10984992980957,0.0,0.0,0.0,0.0,-0.0040840744 +171.11985301971436,0.0,0.0,0.0,0.0,-0.0040840744 +171.12958598136902,0.0,0.0,0.0,0.0,-0.0040840744 +171.14200091362,0.0,0.0,0.0,0.0,-0.0040840744 +171.15015602111816,0.0,0.0,0.0,0.0,-0.0040840744 +171.15983891487122,0.0,0.0,0.0,0.0,-0.002234026 +171.1698341369629,0.0,0.0,0.0,0.0,-0.002234026 +171.17972707748413,0.0,0.0,0.0,0.0,-0.002234026 +171.19017910957336,0.0,0.0,0.0,0.0,-0.002234026 +171.20165395736694,0.0,0.0,0.0,0.0,-0.002234026 +171.2094120979309,0.0,0.0,0.0,0.0,-0.03183481 +171.21968698501587,0.0,0.0,0.0,0.0,-0.03183481 +171.22984194755554,0.0,0.0,0.0,0.0,-0.03183481 +171.24005103111267,0.0,0.0,0.0,0.0,-0.03183481 +171.24998712539673,0.0,0.0,0.0,0.0,-0.03183481 +171.25989508628845,0.0,0.0,0.0,0.0,-0.0040840744 +171.26968598365784,0.0,0.0,0.0,0.0,-0.0040840744 +171.28155493736267,0.0,0.0,0.0,0.0,-0.0040840744 +171.29093313217163,0.0,0.0,0.0,0.0,-0.0040840744 +171.30076003074646,0.0,0.0,0.0,0.0,-0.0040840744 +171.30940794944763,0.0,0.0,0.0,0.0,-0.011484267 +171.31987810134888,0.0,0.0,0.0,0.0,-0.011484267 +171.3294219970703,0.0,0.0,0.0,0.0,-0.011484267 +171.33939909934998,0.0,0.0,0.0,0.0,-0.011484267 +171.35008907318115,0.0,0.0,0.0,0.0,-0.011484267 +171.35968208312988,0.0,0.0,0.0,0.0,-0.011484267 +171.3719379901886,0.0,0.0,0.0,0.0,-0.011484267 +171.38019609451294,0.0,0.0,0.0,0.0,-0.011484267 +171.39014291763306,0.0,0.0,0.0,0.0,-0.011484267 +171.39939403533936,0.0,0.0,0.0,0.0,-0.011484267 +171.40958309173584,0.0,0.0,0.0,0.0,-0.029984765 +171.42103600502014,0.0,0.0,0.0,0.0,-0.029984765 +171.43016004562378,0.0,0.0,0.0,0.0,-0.029984765 +171.4398410320282,0.0,0.0,0.0,0.0,-0.029984765 +171.44964909553528,0.0,0.0,0.0,0.0,-0.029984765 +171.4594669342041,0.0,0.0,0.0,0.0,-0.00038397792 +171.4701600074768,0.0,0.0,0.0,0.0,-0.00038397792 +171.48060512542725,0.0,0.0,0.0,0.0,-0.00038397792 +171.48957896232605,0.0,0.0,0.0,0.0,-0.00038397792 +171.50300407409668,0.0,0.0,0.0,0.0,-0.00038397792 +171.50939297676086,0.0,0.0,0.0,0.0,-0.015184363 +171.51987600326538,0.0,0.0,0.0,0.0,-0.015184363 +171.52982711791992,0.0,0.0,0.0,0.0,-0.015184363 +171.53964805603027,0.0,0.0,0.0,0.0,-0.015184363 +171.5501639842987,0.0,0.0,0.0,0.0,-0.015184363 +171.560791015625,0.0,0.0,0.0,0.0,-0.009634218 +171.56971406936646,0.0,0.0,0.0,0.0,-0.009634218 +171.58014297485352,0.0,0.0,0.0,0.0,-0.009634218 +171.59016609191895,0.0,0.0,0.0,0.0,-0.009634218 +171.60129499435425,0.0,0.0,0.0,0.0,-0.009634218 +171.60963797569275,0.0,0.0,0.0,0.0,-0.0077841706 +171.61985993385315,0.0,0.0,0.0,0.0,-0.0077841706 +171.62957096099854,0.0,0.0,0.0,0.0,-0.0077841706 +171.64101004600525,0.0,0.0,0.0,0.0,-0.0077841706 +171.64991807937622,0.0,0.0,0.0,0.0,-0.0077841706 +171.66121411323547,0.0,0.0,0.0,0.0,-0.022584556 +171.67016792297363,0.0,0.0,0.0,0.0,-0.022584556 +171.6811580657959,0.0,0.0,0.0,0.0,-0.022584556 +171.69247007369995,0.0,0.0,0.0,0.0,-0.022584556 +171.70147514343262,0.0,0.0,0.0,0.0,-0.022584556 +171.70941591262817,0.0,0.0,0.0,0.0,-0.00038397792 +171.71943593025208,0.0,0.0,0.0,0.0,-0.00038397792 +171.72984099388123,0.0,0.0,0.0,0.0,-0.00038397792 +171.7405869960785,0.0,0.0,0.0,0.0,-0.00038397792 +171.74958491325378,0.0,0.0,0.0,0.0,-0.00038397792 +171.75947403907776,0.0,0.0,0.0,0.0,-0.0077841706 +171.76939296722412,0.0,0.0,0.0,0.0,-0.0077841706 +171.78130292892456,0.0,0.0,0.0,0.0,-0.0077841706 +171.79019212722778,0.0,0.0,0.0,0.0,-0.0077841706 +171.80032110214233,0.0,0.0,0.0,0.0,-0.0077841706 +171.80964398384094,0.0,0.0,0.0,0.0,-0.002234026 +171.81955313682556,0.0,0.0,0.0,0.0,-0.002234026 +171.8298020362854,0.0,0.0,0.0,0.0,-0.002234026 +171.84144401550293,0.0,0.0,0.0,0.0,-0.002234026 +171.8498251438141,0.0,0.0,0.0,0.0,-0.002234026 +171.85945796966553,0.0,0.0,0.0,0.0,-0.0077841706 +171.87015509605408,0.0,0.0,0.0,0.0,-0.0077841706 +171.8803300857544,0.0,0.0,0.0,0.0,-0.0077841706 +171.89017701148987,0.0,0.0,0.0,0.0,-0.0077841706 +171.89958906173706,0.0,0.0,0.0,0.0,-0.0077841706 +171.90977501869202,0.0,0.0,0.0,0.0,-0.0077841706 +171.9198899269104,0.0,0.0,0.0,0.0,-0.0077841706 +171.92982506752014,0.0,0.0,0.0,0.0,-0.0077841706 +171.94055700302124,0.0,0.0,0.0,0.0,-0.0077841706 +171.9495689868927,0.0,0.0,0.0,0.0,-0.0077841706 +171.9595639705658,0.0,0.0,0.0,0.0,-0.013334316 +171.97070813179016,0.0,0.0,0.0,0.0,-0.013334316 +171.9796199798584,0.0,0.0,0.0,0.0,-0.013334316 +171.9896490573883,0.0,0.0,0.0,0.0,-0.013334316 +172.0027711391449,0.0,0.0,0.0,0.0,-0.013334316 +172.01039505004883,0.0,0.0,0.0,0.0,-0.0040840744 +172.01939296722412,0.0,0.0,0.0,0.0,-0.0040840744 +172.0298330783844,0.0,0.0,0.0,0.0,-0.0040840744 +172.03968000411987,0.0,0.0,0.0,0.0,-0.0040840744 +172.04998993873596,0.0,0.0,0.0,0.0,-0.0040840744 +172.0598180294037,0.0,0.0,0.0,0.0,-0.0040840744 +172.0698721408844,0.0,0.0,0.0,0.0,-0.0040840744 +172.07941198349,0.0,0.0,0.0,0.0,-0.0040840744 +172.09328198432922,0.0,0.0,0.0,0.0,-0.0040840744 +172.1027500629425,0.0,0.0,0.0,0.0,-0.0040840744 +172.10943913459778,0.0,0.0,0.0,0.0,-0.0077841706 +172.1198809146881,0.0,0.0,0.0,0.0,-0.0077841706 +172.1297709941864,0.0,0.0,0.0,0.0,-0.0077841706 +172.13944005966187,0.0,0.0,0.0,0.0,-0.0077841706 +172.15016508102417,0.0,0.0,0.0,0.0,-0.0077841706 +172.15971612930298,0.0,0.0,0.0,0.0,-0.022584556 +172.1695680618286,0.0,0.0,0.0,0.0,-0.022584556 +172.18329501152039,0.0,0.0,0.0,0.0,-0.022584556 +172.19021010398865,0.0,0.0,0.0,0.0,-0.022584556 +172.201434135437,0.0,0.0,0.0,0.0,-0.022584556 +172.20942306518555,0.0,0.0,0.0,0.0,-0.009634218 +172.2199330329895,0.0,0.0,0.0,0.0,-0.009634218 +172.22939491271973,0.0,0.0,0.0,0.0,-0.009634218 +172.24036598205566,0.0,0.0,0.0,0.0,-0.009634218 +172.24956107139587,0.0,0.0,0.0,0.0,-0.009634218 +172.25962114334106,0.0,0.0,0.0,0.0,-0.009634218 +172.26951599121094,0.0,0.0,0.0,0.0,-0.009634218 +172.27984404563904,0.0,0.0,0.0,0.0,-0.009634218 +172.28949213027954,0.0,0.0,0.0,0.0,-0.009634218 +172.30018305778503,0.0,0.0,0.0,0.0,-0.009634218 +172.30939412117004,0.0,0.0,0.0,0.0,-0.009634218 +172.31988191604614,0.0,0.0,0.0,0.0,-0.0077841706 +172.329824924469,0.0,0.0,0.0,0.0,-0.0077841706 +172.33941006660461,0.0,0.0,0.0,0.0,-0.0077841706 +172.34960794448853,0.0,0.0,0.0,0.0,-0.0077841706 +172.3628580570221,0.0,0.0,0.0,0.0,-0.009634218 +172.3714461326599,0.0,0.0,0.0,0.0,-0.009634218 +172.38068008422852,0.0,0.0,0.0,0.0,-0.009634218 +172.38959908485413,0.0,0.0,0.0,0.0,-0.009634218 +172.3995931148529,0.0,0.0,0.0,0.0,-0.009634218 +172.40940308570862,0.0,0.0,0.0,0.0,-0.009634218 +172.41989302635193,0.0,0.0,0.0,0.0,-0.00038397792 +172.4294080734253,0.0,0.0,0.0,0.0,-0.00038397792 +172.43959498405457,0.0,0.0,0.0,0.0,-0.00038397792 +172.45005893707275,0.0,0.0,0.0,0.0,-0.00038397792 +172.45938801765442,0.0,0.0,0.0,0.0,-0.0077841706 +172.46979904174805,0.0,0.0,0.0,0.0,-0.0077841706 +172.4806740283966,0.0,0.0,0.0,0.0,-0.0077841706 +172.49023699760437,0.0,0.0,0.0,0.0,-0.0077841706 +172.49940705299377,0.0,0.0,0.0,0.0,-0.0077841706 +172.509418964386,0.0,0.0,0.0,0.0,-0.0040840744 +172.5196030139923,0.0,0.0,0.0,0.0,-0.0040840744 +172.52959203720093,0.0,0.0,0.0,0.0,-0.0040840744 +172.54052209854126,0.0,0.0,0.0,0.0,-0.0040840744 +172.54998111724854,0.0,0.0,0.0,0.0,-0.0040840744 +172.5623230934143,0.0,0.0,0.0,0.0,-0.002234026 +172.5708749294281,0.0,0.0,0.0,0.0,-0.002234026 +172.58032512664795,0.0,0.0,0.0,0.0,-0.002234026 +172.58941292762756,0.0,0.0,0.0,0.0,-0.002234026 +172.5999629497528,0.0,0.0,0.0,0.0,-0.002234026 +172.6094160079956,0.0,0.0,0.0,0.0,-0.002234026 +172.6195809841156,0.0,0.0,0.0,0.0,-0.002234026 +172.62985801696777,0.0,0.0,0.0,0.0,-0.002234026 +172.64332795143127,0.0,0.0,0.0,0.0,-0.002234026 +172.64973092079163,0.0,0.0,0.0,0.0,-0.002234026 +172.65967392921448,0.0,0.0,0.0,0.0,-0.011484267 +172.67019510269165,0.0,0.0,0.0,0.0,-0.011484267 +172.67945194244385,0.0,0.0,0.0,0.0,-0.011484267 +172.68982005119324,0.0,0.0,0.0,0.0,-0.011484267 +172.69942998886108,0.0,0.0,0.0,0.0,-0.011484267 +172.70943212509155,0.0,0.0,0.0,0.0,-0.015184363 +172.71939992904663,0.0,0.0,0.0,0.0,-0.015184363 +172.72986602783203,0.0,0.0,0.0,0.0,-0.015184363 +172.74254608154297,0.0,0.0,0.0,0.0,-0.015184363 +172.7502031326294,0.0,0.0,0.0,0.0,-0.015184363 +172.76056814193726,0.0,0.0,0.0,0.0,-0.00038397792 +172.76957893371582,0.0,0.0,0.0,0.0,-0.00038397792 +172.77964901924133,0.0,0.0,0.0,0.0,-0.00038397792 +172.7897219657898,0.0,0.0,0.0,0.0,-0.00038397792 +172.79949712753296,0.0,0.0,0.0,0.0,-0.00038397792 +172.80948901176453,0.0,0.0,0.0,0.0,0.0014660703 +172.81943011283875,0.0,0.0,0.0,0.0,0.0014660703 +172.82983803749084,0.0,0.0,0.0,0.0,0.0014660703 +172.84165596961975,0.0,0.0,0.0,0.0,0.0014660703 +172.8500521183014,0.0,0.0,0.0,0.0,0.0014660703 +172.85968399047852,0.0,0.0,0.0,0.0,-0.013334316 +172.86951398849487,0.0,0.0,0.0,0.0,-0.013334316 +172.87969303131104,0.0,0.0,0.0,0.0,-0.013334316 +172.8895709514618,0.0,0.0,0.0,0.0,-0.013334316 +172.90123200416565,0.0,0.0,0.0,0.0,-0.013334316 +172.91021013259888,0.0,0.0,0.0,0.0,-0.015184363 +172.91976594924927,0.0,0.0,0.0,0.0,-0.015184363 +172.92982506752014,0.0,0.0,0.0,0.0,-0.015184363 +172.93945813179016,0.0,0.0,0.0,0.0,-0.015184363 +172.94976806640625,0.0,0.0,0.0,0.0,-0.015184363 +172.9594111442566,0.0,0.0,0.0,0.0,-0.011484267 +172.9705970287323,0.0,0.0,0.0,0.0,-0.011484267 +172.97958302497864,0.0,0.0,0.0,0.0,-0.011484267 +172.99019694328308,0.0,0.0,0.0,0.0,-0.011484267 +172.999666929245,0.0,0.0,0.0,0.0,-0.011484267 +173.0128481388092,0.0,0.0,0.0,0.0,-0.00038397792 +173.01987409591675,0.0,0.0,0.0,0.0,-0.00038397792 +173.029855966568,0.0,0.0,0.0,0.0,-0.00038397792 +173.03987097740173,0.0,0.0,0.0,0.0,-0.00038397792 +173.04940509796143,0.0,0.0,0.0,0.0,-0.00038397792 +173.06060194969177,0.0,0.0,0.0,0.0,0.02921681 +173.06959009170532,0.0,0.0,0.0,0.0,0.02921681 +173.08335614204407,0.0,0.0,0.0,0.0,0.02921681 +173.0923810005188,0.0,0.0,0.0,0.0,0.02921681 +173.10253310203552,0.0,0.0,0.0,0.0,0.02921681 +173.11020803451538,0.0,0.0,0.0,0.0,-0.009634218 +173.12037801742554,0.0,0.0,0.0,0.0,-0.009634218 +173.129408121109,0.0,0.0,0.0,0.0,-0.009634218 +173.13957405090332,0.0,0.0,0.0,0.0,-0.009634218 +173.14960098266602,0.0,0.0,0.0,0.0,-0.009634218 +173.15956902503967,0.0,0.0,0.0,0.0,-0.009634218 +173.17135190963745,0.0,0.0,0.0,0.0,-0.009634218 +173.17980003356934,0.0,0.0,0.0,0.0,-0.009634218 +173.19020795822144,0.0,0.0,0.0,0.0,-0.009634218 +173.20057797431946,0.0,0.0,0.0,0.0,-0.009634218 +173.20949006080627,0.0,0.0,0.0,0.0,0.0014660703 +173.21992111206055,0.0,0.0,0.0,0.0,0.0014660703 +173.22954607009888,0.0,0.0,0.0,0.0,0.0014660703 +173.24056601524353,0.0,0.0,0.0,0.0,0.0014660703 +173.24956512451172,0.0,0.0,0.0,0.0,0.0014660703 +173.26180005073547,0.0,0.0,0.0,0.0,-0.0040840744 +173.2700071334839,0.0,0.0,0.0,0.0,-0.0040840744 +173.28058505058289,0.0,0.0,0.0,0.0,-0.0040840744 +173.28954100608826,0.0,0.0,0.0,0.0,-0.0040840744 +173.30083799362183,0.0,0.0,0.0,0.0,-0.0040840744 +173.30942606925964,0.0,0.0,0.0,0.0,-0.002234026 +173.3195309638977,0.0,0.0,0.0,0.0,-0.002234026 +173.329824924469,0.0,0.0,0.0,0.0,-0.002234026 +173.33957409858704,0.0,0.0,0.0,0.0,-0.002234026 +173.34943413734436,0.0,0.0,0.0,0.0,-0.002234026 +173.36102890968323,0.0,0.0,0.0,0.0,-0.015184363 +173.36994004249573,0.0,0.0,0.0,0.0,-0.015184363 +173.38170909881592,0.0,0.0,0.0,0.0,-0.015184363 +173.3898959159851,0.0,0.0,0.0,0.0,-0.015184363 +173.39967513084412,0.0,0.0,0.0,0.0,-0.015184363 +173.40941309928894,0.0,0.0,0.0,0.0,-0.015184363 +173.41990113258362,0.0,0.0,0.0,0.0,-0.020734508 +173.42957592010498,0.0,0.0,0.0,0.0,-0.020734508 +173.43944001197815,0.0,0.0,0.0,0.0,-0.020734508 +173.45025610923767,0.0,0.0,0.0,0.0,-0.020734508 +173.4610869884491,0.0,0.0,0.0,0.0,-0.0040840744 +173.47022795677185,0.0,0.0,0.0,0.0,-0.0040840744 +173.48018598556519,0.0,0.0,0.0,0.0,-0.0040840744 +173.48954105377197,0.0,0.0,0.0,0.0,-0.0040840744 +173.49954295158386,0.0,0.0,0.0,0.0,-0.0040840744 +173.50941801071167,0.0,0.0,0.0,0.0,-0.020734508 +173.5195710659027,0.0,0.0,0.0,0.0,-0.020734508 +173.529855966568,0.0,0.0,0.0,0.0,-0.020734508 +173.53942012786865,0.0,0.0,0.0,0.0,-0.020734508 +173.55021691322327,0.0,0.0,0.0,0.0,-0.020734508 +173.55943608283997,0.0,0.0,0.0,0.0,-0.03183481 +173.5699861049652,0.0,0.0,0.0,0.0,-0.03183481 +173.579430103302,0.0,0.0,0.0,0.0,-0.03183481 +173.58957314491272,0.0,0.0,0.0,0.0,-0.03183481 +173.60042309761047,0.0,0.0,0.0,0.0,-0.03183481 +173.60946011543274,0.0,0.0,0.0,0.0,0.0070162313 +173.61949610710144,0.0,0.0,0.0,0.0,0.0070162313 +173.62985801696777,0.0,0.0,0.0,0.0,0.0070162313 +173.6413791179657,0.0,0.0,0.0,0.0,0.0070162313 +173.6500539779663,0.0,0.0,0.0,0.0,0.0070162313 +173.6602520942688,0.0,0.0,0.0,0.0,-0.0077841706 +173.66945910453796,0.0,0.0,0.0,0.0,-0.0077841706 +173.67954897880554,0.0,0.0,0.0,0.0,-0.0077841706 +173.69055104255676,0.0,0.0,0.0,0.0,-0.0077841706 +173.6995611190796,0.0,0.0,0.0,0.0,-0.0077841706 +173.70942997932434,0.0,0.0,0.0,0.0,-0.002234026 +173.71989703178406,0.0,0.0,0.0,0.0,-0.002234026 +173.72986912727356,0.0,0.0,0.0,0.0,-0.002234026 +173.73940110206604,0.0,0.0,0.0,0.0,-0.002234026 +173.75015211105347,0.0,0.0,0.0,0.0,-0.002234026 +173.7607660293579,0.0,0.0,0.0,0.0,0.0014660703 +173.76977705955505,0.0,0.0,0.0,0.0,0.0014660703 +173.77993512153625,0.0,0.0,0.0,0.0,0.0014660703 +173.78956007957458,0.0,0.0,0.0,0.0,0.0014660703 +173.80342411994934,0.0,0.0,0.0,0.0,0.0014660703 +173.80944895744324,0.0,0.0,0.0,0.0,-0.011484267 +173.81992101669312,0.0,0.0,0.0,0.0,-0.011484267 +173.82982897758484,0.0,0.0,0.0,0.0,-0.011484267 +173.83996391296387,0.0,0.0,0.0,0.0,-0.011484267 +173.8500599861145,0.0,0.0,0.0,0.0,-0.011484267 +173.85989499092102,0.0,0.0,0.0,0.0,-0.015184363 +173.87024402618408,0.0,0.0,0.0,0.0,-0.015184363 +173.87956404685974,0.0,0.0,0.0,0.0,-0.015184363 +173.89205503463745,0.0,0.0,0.0,0.0,-0.015184363 +173.90286898612976,0.0,0.0,0.0,0.0,-0.015184363 +173.91023302078247,0.0,0.0,0.0,0.0,-0.022584556 +173.92085099220276,0.0,0.0,0.0,0.0,-0.022584556 +173.9298379421234,0.0,0.0,0.0,0.0,-0.022584556 +173.93954706192017,0.0,0.0,0.0,0.0,-0.022584556 +173.94947600364685,0.0,0.0,0.0,0.0,-0.022584556 +173.95950603485107,0.0,0.0,0.0,0.0,-0.00038397792 +173.96960496902466,0.0,0.0,0.0,0.0,-0.00038397792 +173.9797351360321,0.0,0.0,0.0,0.0,-0.00038397792 +173.9902060031891,0.0,0.0,0.0,0.0,-0.00038397792 +174.00153303146362,0.0,0.0,0.0,0.0,-0.00038397792 +174.01005291938782,0.0,0.0,0.0,0.0,-0.024434604 +174.01968502998352,0.0,0.0,0.0,0.0,-0.024434604 +174.02951192855835,0.0,0.0,0.0,0.0,-0.024434604 +174.0400791168213,0.0,0.0,0.0,0.0,-0.024434604 +174.0494430065155,0.0,0.0,0.0,0.0,-0.024434604 +174.05953192710876,0.0,0.0,0.0,0.0,-0.020734508 +174.07012605667114,0.0,0.0,0.0,0.0,-0.020734508 +174.08258700370789,0.0,0.0,0.0,0.0,-0.020734508 +174.08946108818054,0.0,0.0,0.0,0.0,-0.020734508 +174.10057997703552,0.0,0.0,0.0,0.0,-0.020734508 +174.1095530986786,0.0,0.0,0.0,0.0,0.0014660703 +174.11990809440613,0.0,0.0,0.0,0.0,0.0014660703 +174.12983393669128,0.0,0.0,0.0,0.0,0.0014660703 +174.13944101333618,0.0,0.0,0.0,0.0,0.0014660703 +174.14951705932617,0.0,0.0,0.0,0.0,0.0014660703 +174.16320896148682,0.0,0.0,0.0,0.0,-0.026284654 +174.1721169948578,0.0,0.0,0.0,0.0,-0.026284654 +174.1794490814209,0.0,0.0,0.0,0.0,-0.026284654 +174.18995213508606,0.0,0.0,0.0,0.0,-0.026284654 +174.19946694374084,0.0,0.0,0.0,0.0,-0.026284654 +174.21129202842712,0.0,0.0,0.0,0.0,-0.0077841706 +174.21944999694824,0.0,0.0,0.0,0.0,-0.0077841706 +174.22949409484863,0.0,0.0,0.0,0.0,-0.0077841706 +174.239511013031,0.0,0.0,0.0,0.0,-0.0077841706 +174.2500650882721,0.0,0.0,0.0,0.0,-0.0077841706 +174.26124691963196,0.0,0.0,0.0,0.0,-0.011484267 +174.27019691467285,0.0,0.0,0.0,0.0,-0.011484267 +174.28029799461365,0.0,0.0,0.0,0.0,-0.011484267 +174.28955101966858,0.0,0.0,0.0,0.0,-0.011484267 +174.2995879650116,0.0,0.0,0.0,0.0,-0.011484267 +174.30944514274597,0.0,0.0,0.0,0.0,-0.015184363 +174.31945705413818,0.0,0.0,0.0,0.0,-0.015184363 +174.3295660018921,0.0,0.0,0.0,0.0,-0.015184363 +174.34051895141602,0.0,0.0,0.0,0.0,-0.015184363 +174.349445104599,0.0,0.0,0.0,0.0,-0.015184363 +174.35945510864258,0.0,0.0,0.0,0.0,-0.01888446 +174.370178937912,0.0,0.0,0.0,0.0,-0.01888446 +174.379399061203,0.0,0.0,0.0,0.0,-0.01888446 +174.39023303985596,0.0,0.0,0.0,0.0,-0.01888446 +174.4005250930786,0.0,0.0,0.0,0.0,-0.01888446 +174.4094409942627,0.0,0.0,0.0,0.0,-0.002234026 +174.4195261001587,0.0,0.0,0.0,0.0,-0.002234026 +174.42985105514526,0.0,0.0,0.0,0.0,-0.002234026 +174.4394040107727,0.0,0.0,0.0,0.0,-0.002234026 +174.45008301734924,0.0,0.0,0.0,0.0,-0.002234026 +174.4600429534912,0.0,0.0,0.0,0.0,-0.029984765 +174.47023701667786,0.0,0.0,0.0,0.0,-0.029984765 +174.47944712638855,0.0,0.0,0.0,0.0,-0.029984765 +174.49062395095825,0.0,0.0,0.0,0.0,-0.029984765 +174.4996190071106,0.0,0.0,0.0,0.0,-0.029984765 +174.50943112373352,0.0,0.0,0.0,0.0,0.0014660703 +174.51969003677368,0.0,0.0,0.0,0.0,0.0014660703 +174.52987599372864,0.0,0.0,0.0,0.0,0.0014660703 +174.54091596603394,0.0,0.0,0.0,0.0,0.0014660703 +174.5499129295349,0.0,0.0,0.0,0.0,0.0014660703 +174.56271505355835,0.0,0.0,0.0,0.0,-0.011484267 +174.56982612609863,0.0,0.0,0.0,0.0,-0.011484267 +174.58074307441711,0.0,0.0,0.0,0.0,-0.011484267 +174.5896360874176,0.0,0.0,0.0,0.0,-0.011484267 +174.5995090007782,0.0,0.0,0.0,0.0,-0.011484267 +174.60945010185242,0.0,0.0,0.0,0.0,-0.011484267 +174.61945414543152,0.0,0.0,0.0,0.0,-0.002234026 +174.6298439502716,0.0,0.0,0.0,0.0,-0.002234026 +174.63976407051086,0.0,0.0,0.0,0.0,-0.002234026 +174.6500689983368,0.0,0.0,0.0,0.0,-0.002234026 +174.6618139743805,0.0,0.0,0.0,0.0,-0.011484267 +174.6702311038971,0.0,0.0,0.0,0.0,-0.011484267 +174.67985701560974,0.0,0.0,0.0,0.0,-0.011484267 +174.68954706192017,0.0,0.0,0.0,0.0,-0.011484267 +174.69943404197693,0.0,0.0,0.0,0.0,-0.011484267 +174.7094259262085,0.0,0.0,0.0,0.0,-0.011484267 +174.71993112564087,0.0,0.0,0.0,0.0,0.0014660703 +174.72961401939392,0.0,0.0,0.0,0.0,0.0014660703 +174.73943305015564,0.0,0.0,0.0,0.0,0.0014660703 +174.7502360343933,0.0,0.0,0.0,0.0,0.0014660703 +174.76025891304016,0.0,0.0,0.0,0.0,-0.0077841706 +174.76941990852356,0.0,0.0,0.0,0.0,-0.0077841706 +174.7795000076294,0.0,0.0,0.0,0.0,-0.0077841706 +174.79023814201355,0.0,0.0,0.0,0.0,-0.0077841706 +174.80150604248047,0.0,0.0,0.0,0.0,-0.0077841706 +174.8094720840454,0.0,0.0,0.0,0.0,-0.015184363 +174.81949305534363,0.0,0.0,0.0,0.0,-0.015184363 +174.82955312728882,0.0,0.0,0.0,0.0,-0.015184363 +174.84042811393738,0.0,0.0,0.0,0.0,-0.015184363 +174.8494520187378,0.0,0.0,0.0,0.0,-0.015184363 +174.8600480556488,0.0,0.0,0.0,0.0,-0.009634218 +174.8695240020752,0.0,0.0,0.0,0.0,-0.009634218 +174.88241505622864,0.0,0.0,0.0,0.0,-0.009634218 +174.89138412475586,0.0,0.0,0.0,0.0,-0.009634218 +174.90036702156067,0.0,0.0,0.0,0.0,-0.009634218 +174.9094741344452,0.0,0.0,0.0,0.0,-0.026284654 +174.91950106620789,0.0,0.0,0.0,0.0,-0.026284654 +174.92951202392578,0.0,0.0,0.0,0.0,-0.026284654 +174.94112396240234,0.0,0.0,0.0,0.0,-0.026284654 +174.95015597343445,0.0,0.0,0.0,0.0,-0.026284654 +174.9593949317932,0.0,0.0,0.0,0.0,-0.0040840744 +174.97227692604065,0.0,0.0,0.0,0.0,-0.0040840744 +174.97950911521912,0.0,0.0,0.0,0.0,-0.0040840744 +174.99024105072021,0.0,0.0,0.0,0.0,-0.0040840744 +174.99945497512817,0.0,0.0,0.0,0.0,-0.0040840744 +175.00969910621643,0.0,0.0,0.0,0.0,-0.03183481 +175.01988101005554,0.0,0.0,0.0,0.0,-0.03183481 +175.02985906600952,0.0,0.0,0.0,0.0,-0.03183481 +175.03956699371338,0.0,0.0,0.0,0.0,-0.03183481 +175.0494680404663,0.0,0.0,0.0,0.0,-0.03183481 +175.06214499473572,0.0,0.0,0.0,0.0,0.019966569 +175.07024502754211,0.0,0.0,0.0,0.0,0.019966569 +175.080078125,0.0,0.0,0.0,0.0,0.019966569 +175.0896029472351,0.0,0.0,0.0,0.0,0.019966569 +175.1033079624176,0.0,0.0,0.0,0.0,0.019966569 +175.11023092269897,0.0,0.0,0.0,0.0,0.0014660703 +175.1199071407318,0.0,0.0,0.0,0.0,0.0014660703 +175.12962198257446,0.0,0.0,0.0,0.0,0.0014660703 +175.13947200775146,0.0,0.0,0.0,0.0,0.0014660703 +175.15024495124817,0.0,0.0,0.0,0.0,0.0014660703 +175.16095805168152,0.0,0.0,0.0,0.0,-0.0040840744 +175.1699619293213,0.0,0.0,0.0,0.0,-0.0040840744 +175.1794319152832,0.0,0.0,0.0,0.0,-0.0040840744 +175.19262194633484,0.0,0.0,0.0,0.0,-0.0040840744 +175.2024121284485,0.0,0.0,0.0,0.0,-0.0040840744 +175.2114291191101,0.0,0.0,0.0,0.0,-0.0040840744 +175.21955394744873,0.0,0.0,0.0,0.0,-0.0040840744 +175.22947812080383,0.0,0.0,0.0,0.0,-0.0040840744 +175.24140810966492,0.0,0.0,0.0,0.0,-0.0040840744 +175.25009512901306,0.0,0.0,0.0,0.0,-0.0040840744 +175.25947499275208,0.0,0.0,0.0,0.0,-0.013334316 +175.273677110672,0.0,0.0,0.0,0.0,-0.013334316 +175.28340911865234,0.0,0.0,0.0,0.0,-0.013334316 +175.29239511489868,0.0,0.0,0.0,0.0,-0.013334316 +175.30140495300293,0.0,0.0,0.0,0.0,-0.013334316 +175.30945897102356,0.0,0.0,0.0,0.0,-0.015184363 +175.31947994232178,0.0,0.0,0.0,0.0,-0.015184363 +175.32985496520996,0.0,0.0,0.0,0.0,-0.015184363 +175.33940291404724,0.0,0.0,0.0,0.0,-0.015184363 +175.34967708587646,0.0,0.0,0.0,0.0,-0.015184363 +175.3617639541626,0.0,0.0,0.0,0.0,-0.002234026 +175.36976194381714,0.0,0.0,0.0,0.0,-0.002234026 +175.38238406181335,0.0,0.0,0.0,0.0,-0.002234026 +175.3897581100464,0.0,0.0,0.0,0.0,-0.002234026 +175.40013003349304,0.0,0.0,0.0,0.0,-0.002234026 +175.40940308570862,0.0,0.0,0.0,0.0,-0.002234026 +175.419606924057,0.0,0.0,0.0,0.0,-0.07623599 +175.42986392974854,0.0,0.0,0.0,0.0,-0.07623599 +175.43955397605896,0.0,0.0,0.0,0.0,-0.07623599 +175.4494891166687,0.0,0.0,0.0,0.0,-0.07623599 +175.46338605880737,0.0,0.0,0.0,0.0,-0.00038397792 +175.47238492965698,0.0,0.0,0.0,0.0,-0.00038397792 +175.47963500022888,0.0,0.0,0.0,0.0,-0.00038397792 +175.49020195007324,0.0,0.0,0.0,0.0,-0.00038397792 +175.49976897239685,0.0,0.0,0.0,0.0,-0.00038397792 +175.509516954422,0.0,0.0,0.0,0.0,0.010716328 +175.51978302001953,0.0,0.0,0.0,0.0,0.010716328 +175.52946710586548,0.0,0.0,0.0,0.0,0.010716328 +175.5436041355133,0.0,0.0,0.0,0.0,0.010716328 +175.5500991344452,0.0,0.0,0.0,0.0,0.010716328 +175.562194108963,0.0,0.0,0.0,0.0,-0.020734508 +175.57107710838318,0.0,0.0,0.0,0.0,-0.020734508 +175.57998609542847,0.0,0.0,0.0,0.0,-0.020734508 +175.58946204185486,0.0,0.0,0.0,0.0,-0.020734508 +175.60128498077393,0.0,0.0,0.0,0.0,-0.020734508 +175.60946011543274,0.0,0.0,0.0,0.0,-0.009634218 +175.62132000923157,0.0,0.0,0.0,0.0,-0.009634218 +175.6321370601654,0.0,0.0,0.0,0.0,-0.009634218 +175.64238500595093,0.0,0.0,0.0,0.0,-0.009634218 +175.6498520374298,0.0,0.0,0.0,0.0,-0.009634218 +175.6602020263672,0.0,0.0,0.0,0.0,-0.0040840744 +175.6703600883484,0.0,0.0,0.0,0.0,-0.0040840744 +175.67989110946655,0.0,0.0,0.0,0.0,-0.0040840744 +175.6911609172821,0.0,0.0,0.0,0.0,-0.0040840744 +175.70012593269348,0.0,0.0,0.0,0.0,-0.0040840744 +175.7094531059265,0.0,0.0,0.0,0.0,-0.0040840744 +175.71993398666382,0.0,0.0,0.0,0.0,-0.033684865 +175.72988510131836,0.0,0.0,0.0,0.0,-0.033684865 +175.74039912223816,0.0,0.0,0.0,0.0,-0.033684865 +175.74949407577515,0.0,0.0,0.0,0.0,-0.033684865 +175.76033306121826,0.0,0.0,0.0,0.0,-0.002234026 +175.7700879573822,0.0,0.0,0.0,0.0,-0.002234026 +175.7797360420227,0.0,0.0,0.0,0.0,-0.002234026 +175.78998804092407,0.0,0.0,0.0,0.0,-0.002234026 +175.8027799129486,0.0,0.0,0.0,0.0,-0.002234026 +175.8094620704651,0.0,0.0,0.0,0.0,-0.009634218 +175.81994104385376,0.0,0.0,0.0,0.0,-0.009634218 +175.8295259475708,0.0,0.0,0.0,0.0,-0.009634218 +175.8397240638733,0.0,0.0,0.0,0.0,-0.009634218 +175.85031008720398,0.0,0.0,0.0,0.0,-0.009634218 +175.86018991470337,0.0,0.0,0.0,0.0,-0.011484267 +175.86945295333862,0.0,0.0,0.0,0.0,-0.011484267 +175.87982392311096,0.0,0.0,0.0,0.0,-0.011484267 +175.89158606529236,0.0,0.0,0.0,0.0,-0.011484267 +175.8998739719391,0.0,0.0,0.0,0.0,-0.011484267 +175.90947914123535,0.0,0.0,0.0,0.0,-0.015184363 +175.919930934906,0.0,0.0,0.0,0.0,-0.015184363 +175.9298939704895,0.0,0.0,0.0,0.0,-0.015184363 +175.94033002853394,0.0,0.0,0.0,0.0,-0.015184363 +175.94949913024902,0.0,0.0,0.0,0.0,-0.015184363 +175.95995497703552,0.0,0.0,0.0,0.0,-0.0040840744 +175.96967196464539,0.0,0.0,0.0,0.0,-0.0040840744 +175.98101496696472,0.0,0.0,0.0,0.0,-0.0040840744 +175.98991703987122,0.0,0.0,0.0,0.0,-0.0040840744 +176.00059294700623,0.0,0.0,0.0,0.0,-0.0040840744 +176.0123209953308,0.0,0.0,0.0,0.0,-0.029984765 +176.01990914344788,0.0,0.0,0.0,0.0,-0.029984765 +176.0299050807953,0.0,0.0,0.0,0.0,-0.029984765 +176.04005312919617,0.0,0.0,0.0,0.0,-0.029984765 +176.04940509796143,0.0,0.0,0.0,0.0,-0.029984765 +176.05949902534485,0.0,0.0,0.0,0.0,-0.015184363 +176.06945610046387,0.0,0.0,0.0,0.0,-0.015184363 +176.08365106582642,0.0,0.0,0.0,0.0,-0.015184363 +176.09094095230103,0.0,0.0,0.0,0.0,-0.015184363 +176.10186791419983,0.0,0.0,0.0,0.0,-0.015184363 +176.10990595817566,0.0,0.0,0.0,0.0,-0.002234026 +176.11993312835693,0.0,0.0,0.0,0.0,-0.002234026 +176.12952995300293,0.0,0.0,0.0,0.0,-0.002234026 +176.1395149230957,0.0,0.0,0.0,0.0,-0.002234026 +176.14949107170105,0.0,0.0,0.0,0.0,-0.002234026 +176.1636519432068,0.0,0.0,0.0,0.0,-0.020734508 +176.17009592056274,0.0,0.0,0.0,0.0,-0.020734508 +176.1833140850067,0.0,0.0,0.0,0.0,-0.020734508 +176.1895260810852,0.0,0.0,0.0,0.0,-0.020734508 +176.2013030052185,0.0,0.0,0.0,0.0,-0.020734508 +176.21029210090637,0.0,0.0,0.0,0.0,0.0033161184 +176.2195520401001,0.0,0.0,0.0,0.0,0.0033161184 +176.22960996627808,0.0,0.0,0.0,0.0,0.0033161184 +176.2394289970398,0.0,0.0,0.0,0.0,0.0033161184 +176.25027298927307,0.0,0.0,0.0,0.0,0.0033161184 +176.2627580165863,0.0,0.0,0.0,0.0,-0.00038397792 +176.2732880115509,0.0,0.0,0.0,0.0,-0.00038397792 +176.28229093551636,0.0,0.0,0.0,0.0,-0.00038397792 +176.29127097129822,0.0,0.0,0.0,0.0,-0.00038397792 +176.30017709732056,0.0,0.0,0.0,0.0,-0.00038397792 +176.30949091911316,0.0,0.0,0.0,0.0,-0.002234026 +176.31963396072388,0.0,0.0,0.0,0.0,-0.002234026 +176.32964205741882,0.0,0.0,0.0,0.0,-0.002234026 +176.34366393089294,0.0,0.0,0.0,0.0,-0.002234026 +176.3501579761505,0.0,0.0,0.0,0.0,-0.002234026 +176.36128211021423,0.0,0.0,0.0,0.0,-0.00038397792 +176.372230052948,0.0,0.0,0.0,0.0,-0.00038397792 +176.3812611103058,0.0,0.0,0.0,0.0,-0.00038397792 +176.39026308059692,0.0,0.0,0.0,0.0,-0.00038397792 +176.39966011047363,0.0,0.0,0.0,0.0,-0.00038397792 +176.40947699546814,0.0,0.0,0.0,0.0,-0.002234026 +176.419939994812,0.0,0.0,0.0,0.0,-0.002234026 +176.42943406105042,0.0,0.0,0.0,0.0,-0.002234026 +176.4436731338501,0.0,0.0,0.0,0.0,-0.002234026 +176.45028400421143,0.0,0.0,0.0,0.0,-0.002234026 +176.45972108840942,0.0,0.0,0.0,0.0,-0.022584556 +176.47115302085876,0.0,0.0,0.0,0.0,-0.022584556 +176.4800670146942,0.0,0.0,0.0,0.0,-0.022584556 +176.49075293540955,0.0,0.0,0.0,0.0,-0.022584556 +176.49971199035645,0.0,0.0,0.0,0.0,-0.022584556 +176.5094759464264,0.0,0.0,0.0,0.0,0.010716328 +176.5197949409485,0.0,0.0,0.0,0.0,0.010716328 +176.52988696098328,0.0,0.0,0.0,0.0,0.010716328 +176.5424280166626,0.0,0.0,0.0,0.0,0.010716328 +176.55013394355774,0.0,0.0,0.0,0.0,0.010716328 +176.56024813652039,0.0,0.0,0.0,0.0,-0.011484267 +176.56946396827698,0.0,0.0,0.0,0.0,-0.011484267 +176.58059000968933,0.0,0.0,0.0,0.0,-0.011484267 +176.58957695960999,0.0,0.0,0.0,0.0,-0.011484267 +176.6036880016327,0.0,0.0,0.0,0.0,-0.011484267 +176.60945796966553,0.0,0.0,0.0,0.0,-0.011484267 +176.61992502212524,0.0,0.0,0.0,0.0,-0.011484267 +176.62940406799316,0.0,0.0,0.0,0.0,-0.011484267 +176.64045310020447,0.0,0.0,0.0,0.0,-0.011484267 +176.65029096603394,0.0,0.0,0.0,0.0,-0.011484267 +176.6602499485016,0.0,0.0,0.0,0.0,-0.009634218 +176.66949105262756,0.0,0.0,0.0,0.0,-0.009634218 +176.6794331073761,0.0,0.0,0.0,0.0,-0.009634218 +176.6895890235901,0.0,0.0,0.0,0.0,-0.009634218 +176.6999261379242,0.0,0.0,0.0,0.0,-0.009634218 +176.70947003364563,0.0,0.0,0.0,0.0,-0.002234026 +176.71991205215454,0.0,0.0,0.0,0.0,-0.002234026 +176.72954297065735,0.0,0.0,0.0,0.0,-0.002234026 +176.74124693870544,0.0,0.0,0.0,0.0,-0.002234026 +176.75022506713867,0.0,0.0,0.0,0.0,-0.002234026 +176.7602560520172,0.0,0.0,0.0,0.0,0.02921681 +176.77027106285095,0.0,0.0,0.0,0.0,0.02921681 +176.78188705444336,0.0,0.0,0.0,0.0,0.02921681 +176.7919249534607,0.0,0.0,0.0,0.0,0.02921681 +176.80082297325134,0.0,0.0,0.0,0.0,0.02921681 +176.80956506729126,0.0,0.0,0.0,0.0,-0.009634218 +176.8194980621338,0.0,0.0,0.0,0.0,-0.009634218 +176.82989192008972,0.0,0.0,0.0,0.0,-0.009634218 +176.84023904800415,0.0,0.0,0.0,0.0,-0.009634218 +176.85014390945435,0.0,0.0,0.0,0.0,-0.009634218 +176.8603811264038,0.0,0.0,0.0,0.0,-0.0077841706 +176.86951303482056,0.0,0.0,0.0,0.0,-0.0077841706 +176.88103103637695,0.0,0.0,0.0,0.0,-0.0077841706 +176.88993096351624,0.0,0.0,0.0,0.0,-0.0077841706 +176.90321803092957,0.0,0.0,0.0,0.0,-0.0077841706 +176.90948796272278,0.0,0.0,0.0,0.0,-0.009634218 +176.91942596435547,0.0,0.0,0.0,0.0,-0.009634218 +176.92990398406982,0.0,0.0,0.0,0.0,-0.009634218 +176.93996500968933,0.0,0.0,0.0,0.0,-0.009634218 +176.94951391220093,0.0,0.0,0.0,0.0,-0.009634218 +176.95950412750244,0.0,0.0,0.0,0.0,0.008866279 +176.97012495994568,0.0,0.0,0.0,0.0,0.008866279 +176.98374009132385,0.0,0.0,0.0,0.0,0.008866279 +176.9932029247284,0.0,0.0,0.0,0.0,0.008866279 +177.0022280216217,0.0,0.0,0.0,0.0,0.008866279 +177.01119995117188,0.0,0.0,0.0,0.0,-0.009634218 +177.0194981098175,0.0,0.0,0.0,0.0,-0.009634218 +177.02945399284363,0.0,0.0,0.0,0.0,-0.009634218 +177.04058814048767,0.0,0.0,0.0,0.0,-0.009634218 +177.0494899749756,0.0,0.0,0.0,0.0,-0.009634218 +177.06053614616394,0.0,0.0,0.0,0.0,0.023666665 +177.07136297225952,0.0,0.0,0.0,0.0,0.023666665 +177.0795121192932,0.0,0.0,0.0,0.0,0.023666665 +177.0922200679779,0.0,0.0,0.0,0.0,0.023666665 +177.10121512413025,0.0,0.0,0.0,0.0,0.023666665 +177.1102249622345,0.0,0.0,0.0,0.0,0.008866279 +177.1196961402893,0.0,0.0,0.0,0.0,0.008866279 +177.1299090385437,0.0,0.0,0.0,0.0,0.008866279 +177.13944101333618,0.0,0.0,0.0,0.0,0.008866279 +177.1501829624176,0.0,0.0,0.0,0.0,0.008866279 +177.1637361049652,0.0,0.0,0.0,0.0,-0.020734508 +177.1732051372528,0.0,0.0,0.0,0.0,-0.020734508 +177.18220806121826,0.0,0.0,0.0,0.0,-0.020734508 +177.1911940574646,0.0,0.0,0.0,0.0,-0.020734508 +177.19968509674072,0.0,0.0,0.0,0.0,-0.020734508 +177.20955109596252,0.0,0.0,0.0,0.0,-0.002234026 +177.2194800376892,0.0,0.0,0.0,0.0,-0.002234026 +177.2298550605774,0.0,0.0,0.0,0.0,-0.002234026 +177.2406449317932,0.0,0.0,0.0,0.0,-0.002234026 +177.2503011226654,0.0,0.0,0.0,0.0,-0.002234026 +177.2622880935669,0.0,0.0,0.0,0.0,-0.00038397792 +177.2721779346466,0.0,0.0,0.0,0.0,-0.00038397792 +177.28120112419128,0.0,0.0,0.0,0.0,-0.00038397792 +177.29020810127258,0.0,0.0,0.0,0.0,-0.00038397792 +177.29940605163574,0.0,0.0,0.0,0.0,-0.00038397792 +177.30945301055908,0.0,0.0,0.0,0.0,-0.0077841706 +177.31984090805054,0.0,0.0,0.0,0.0,-0.0077841706 +177.3337709903717,0.0,0.0,0.0,0.0,-0.0077841706 +177.33966398239136,0.0,0.0,0.0,0.0,-0.0077841706 +177.35001492500305,0.0,0.0,0.0,0.0,-0.0077841706 +177.36082196235657,0.0,0.0,0.0,0.0,-0.020734508 +177.36956906318665,0.0,0.0,0.0,0.0,-0.020734508 +177.37991404533386,0.0,0.0,0.0,0.0,-0.020734508 +177.3894441127777,0.0,0.0,0.0,0.0,-0.020734508 +177.40108704566956,0.0,0.0,0.0,0.0,-0.020734508 +177.40948510169983,0.0,0.0,0.0,0.0,-0.029984765 +177.41994905471802,0.0,0.0,0.0,0.0,-0.029984765 +177.42990112304688,0.0,0.0,0.0,0.0,-0.029984765 +177.44011998176575,0.0,0.0,0.0,0.0,-0.029984765 +177.45034003257751,0.0,0.0,0.0,0.0,-0.029984765 +177.46026611328125,0.0,0.0,0.0,0.0,-0.011484267 +177.4694480895996,0.0,0.0,0.0,0.0,-0.011484267 +177.4795970916748,0.0,0.0,0.0,0.0,-0.011484267 +177.49120497703552,0.0,0.0,0.0,0.0,-0.011484267 +177.4998791217804,0.0,0.0,0.0,0.0,-0.011484267 +177.50946307182312,0.0,0.0,0.0,0.0,-0.011484267 +177.519935131073,0.0,0.0,0.0,0.0,0.0014660703 +177.52987909317017,0.0,0.0,0.0,0.0,0.0014660703 +177.54047012329102,0.0,0.0,0.0,0.0,0.0014660703 +177.54956102371216,0.0,0.0,0.0,0.0,0.0014660703 +177.56002402305603,0.0,0.0,0.0,0.0,-0.002234026 +177.57228994369507,0.0,0.0,0.0,0.0,-0.002234026 +177.58128595352173,0.0,0.0,0.0,0.0,-0.002234026 +177.59029912948608,0.0,0.0,0.0,0.0,-0.002234026 +177.5997350215912,0.0,0.0,0.0,0.0,-0.002234026 +177.60956406593323,0.0,0.0,0.0,0.0,0.0014660703 +177.61995601654053,0.0,0.0,0.0,0.0,0.0014660703 +177.62958192825317,0.0,0.0,0.0,0.0,0.0014660703 +177.64090394973755,0.0,0.0,0.0,0.0,0.0014660703 +177.64990210533142,0.0,0.0,0.0,0.0,0.0014660703 +177.66238808631897,0.0,0.0,0.0,0.0,-0.0040840744 +177.67140293121338,0.0,0.0,0.0,0.0,-0.0040840744 +177.68040108680725,0.0,0.0,0.0,0.0,-0.0040840744 +177.68941497802734,0.0,0.0,0.0,0.0,-0.0040840744 +177.70087814331055,0.0,0.0,0.0,0.0,-0.0040840744 +177.70949506759644,0.0,0.0,0.0,0.0,-0.002234026 +177.71957397460938,0.0,0.0,0.0,0.0,-0.002234026 +177.729807138443,0.0,0.0,0.0,0.0,-0.002234026 +177.73975896835327,0.0,0.0,0.0,0.0,-0.002234026 +177.74941611289978,0.0,0.0,0.0,0.0,-0.002234026 +177.75961208343506,0.0,0.0,0.0,0.0,-0.002234026 +177.77052092552185,0.0,0.0,0.0,0.0,-0.002234026 +177.7795479297638,0.0,0.0,0.0,0.0,-0.002234026 +177.78969597816467,0.0,0.0,0.0,0.0,-0.002234026 +177.80053400993347,0.0,0.0,0.0,0.0,-0.002234026 +177.80949997901917,0.0,0.0,0.0,0.0,-0.0040840744 +177.8199589252472,0.0,0.0,0.0,0.0,-0.0040840744 +177.82955193519592,0.0,0.0,0.0,0.0,-0.0040840744 +177.8415069580078,0.0,0.0,0.0,0.0,-0.0040840744 +177.84967803955078,0.0,0.0,0.0,0.0,-0.0040840744 +177.85988807678223,0.0,0.0,0.0,0.0,-0.0040840744 +177.8696460723877,0.0,0.0,0.0,0.0,-0.0040840744 +177.88245701789856,0.0,0.0,0.0,0.0,-0.0040840744 +177.8925280570984,0.0,0.0,0.0,0.0,-0.0040840744 +177.9015030860901,0.0,0.0,0.0,0.0,-0.0040840744 +177.90951991081238,0.0,0.0,0.0,0.0,-0.00038397792 +177.91949200630188,0.0,0.0,0.0,0.0,-0.00038397792 +177.92990112304688,0.0,0.0,0.0,0.0,-0.00038397792 +177.9414930343628,0.0,0.0,0.0,0.0,-0.00038397792 +177.95019507408142,0.0,0.0,0.0,0.0,-0.00038397792 +177.95948100090027,0.0,0.0,0.0,0.0,-0.002234026 +177.9734070301056,0.0,0.0,0.0,0.0,-0.002234026 +177.98076391220093,0.0,0.0,0.0,0.0,-0.002234026 +177.98994493484497,0.0,0.0,0.0,0.0,-0.002234026 +178.00036811828613,0.0,0.0,0.0,0.0,-0.002234026 +178.0095500946045,0.0,0.0,0.0,0.0,-0.009634218 +178.0194010734558,0.0,0.0,0.0,0.0,-0.009634218 +178.0298991203308,0.0,0.0,0.0,0.0,-0.009634218 +178.03949213027954,0.0,0.0,0.0,0.0,-0.009634218 +178.04987812042236,0.0,0.0,0.0,0.0,-0.009634218 +178.0599660873413,0.0,0.0,0.0,0.0,-0.0077841706 +178.06953597068787,0.0,0.0,0.0,0.0,-0.0077841706 +178.081237077713,0.0,0.0,0.0,0.0,-0.0077841706 +178.08974599838257,0.0,0.0,0.0,0.0,-0.0077841706 +178.10011291503906,0.0,0.0,0.0,0.0,-0.0077841706 +178.11077308654785,0.0,0.0,0.0,0.0,-0.011484267 +178.11969995498657,0.0,0.0,0.0,0.0,-0.011484267 +178.12990999221802,0.0,0.0,0.0,0.0,-0.011484267 +178.13998699188232,0.0,0.0,0.0,0.0,-0.011484267 +178.1502070426941,0.0,0.0,0.0,0.0,-0.011484267 +178.1620910167694,0.0,0.0,0.0,0.0,-0.0077841706 +178.17108511924744,0.0,0.0,0.0,0.0,-0.0077841706 +178.18009114265442,0.0,0.0,0.0,0.0,-0.0077841706 +178.19009399414062,0.0,0.0,0.0,0.0,-0.0077841706 +178.19987297058105,0.0,0.0,0.0,0.0,-0.0077841706 +178.21205806732178,0.0,0.0,0.0,0.0,-0.0077841706 +178.22104597091675,0.0,0.0,0.0,0.0,-0.0077841706 +178.23006892204285,0.0,0.0,0.0,0.0,-0.0077841706 +178.2399070262909,0.0,0.0,0.0,0.0,-0.0077841706 +178.25006103515625,0.0,0.0,0.0,0.0,-0.0077841706 +178.2609419822693,0.0,0.0,0.0,0.0,0.014416425 +178.2699339389801,0.0,0.0,0.0,0.0,0.014416425 +178.2800850868225,0.0,0.0,0.0,0.0,0.014416425 +178.29217910766602,0.0,0.0,0.0,0.0,0.014416425 +178.3021581172943,0.0,0.0,0.0,0.0,0.014416425 +178.31114602088928,0.0,0.0,0.0,0.0,-0.011484267 +178.31996607780457,0.0,0.0,0.0,0.0,-0.011484267 +178.3298909664154,0.0,0.0,0.0,0.0,-0.011484267 +178.34181308746338,0.0,0.0,0.0,0.0,-0.011484267 +178.3502049446106,0.0,0.0,0.0,0.0,-0.011484267 +178.35978507995605,0.0,0.0,0.0,0.0,-0.009634218 +178.37006402015686,0.0,0.0,0.0,0.0,-0.009634218 +178.37960410118103,0.0,0.0,0.0,0.0,-0.009634218 +178.39223313331604,0.0,0.0,0.0,0.0,-0.009634218 +178.40123510360718,0.0,0.0,0.0,0.0,-0.009634218 +178.41025400161743,0.0,0.0,0.0,0.0,-0.015184363 +178.41996312141418,0.0,0.0,0.0,0.0,-0.015184363 +178.42989897727966,0.0,0.0,0.0,0.0,-0.015184363 +178.44048595428467,0.0,0.0,0.0,0.0,-0.015184363 +178.44941401481628,0.0,0.0,0.0,0.0,-0.015184363 +178.45944094657898,0.0,0.0,0.0,0.0,-0.0077841706 +178.47332191467285,0.0,0.0,0.0,0.0,-0.0077841706 +178.48050808906555,0.0,0.0,0.0,0.0,-0.0077841706 +178.49133801460266,0.0,0.0,0.0,0.0,-0.0077841706 +178.50034594535828,0.0,0.0,0.0,0.0,-0.0077841706 +178.50945711135864,0.0,0.0,0.0,0.0,-0.0077841706 +178.51995491981506,0.0,0.0,0.0,0.0,-0.013334316 +178.5296230316162,0.0,0.0,0.0,0.0,-0.013334316 +178.53949809074402,0.0,0.0,0.0,0.0,-0.013334316 +178.55001592636108,0.0,0.0,0.0,0.0,-0.013334316 +178.55971813201904,0.0,0.0,0.0,0.0,-0.0077841706 +178.5724320411682,0.0,0.0,0.0,0.0,-0.0077841706 +178.58144998550415,0.0,0.0,0.0,0.0,-0.0077841706 +178.58961009979248,0.0,0.0,0.0,0.0,-0.0077841706 +178.59946608543396,0.0,0.0,0.0,0.0,-0.0077841706 +178.60947608947754,0.0,0.0,0.0,0.0,-0.011484267 +178.61944913864136,0.0,0.0,0.0,0.0,-0.011484267 +178.6295609474182,0.0,0.0,0.0,0.0,-0.011484267 +178.63999199867249,0.0,0.0,0.0,0.0,-0.011484267 +178.6503460407257,0.0,0.0,0.0,0.0,-0.011484267 +178.6625509262085,0.0,0.0,0.0,0.0,-0.009634218 +178.67154812812805,0.0,0.0,0.0,0.0,-0.009634218 +178.6805670261383,0.0,0.0,0.0,0.0,-0.009634218 +178.68957114219666,0.0,0.0,0.0,0.0,-0.009634218 +178.6995620727539,0.0,0.0,0.0,0.0,-0.009634218 +178.70951890945435,0.0,0.0,0.0,0.0,-0.011484267 +178.7195599079132,0.0,0.0,0.0,0.0,-0.011484267 +178.72995805740356,0.0,0.0,0.0,0.0,-0.011484267 +178.73995804786682,0.0,0.0,0.0,0.0,-0.011484267 +178.7502110004425,0.0,0.0,0.0,0.0,-0.011484267 +178.76132011413574,0.0,0.0,0.0,0.0,-0.00038397792 +178.77024006843567,0.0,0.0,0.0,0.0,-0.00038397792 +178.77967309951782,0.0,0.0,0.0,0.0,-0.00038397792 +178.79108095169067,0.0,0.0,0.0,0.0,-0.00038397792 +178.8000509738922,0.0,0.0,0.0,0.0,-0.00038397792 +178.8094780445099,0.0,0.0,0.0,0.0,-0.009634218 +178.81993007659912,0.0,0.0,0.0,0.0,-0.009634218 +178.82991695404053,0.0,0.0,0.0,0.0,-0.009634218 +178.84152793884277,0.0,0.0,0.0,0.0,-0.009634218 +178.84944891929626,0.0,0.0,0.0,0.0,-0.009634218 +178.86077094078064,0.0,0.0,0.0,0.0,-0.029984765 +178.8697910308838,0.0,0.0,0.0,0.0,-0.029984765 +178.88092613220215,0.0,0.0,0.0,0.0,-0.029984765 +178.88990592956543,0.0,0.0,0.0,0.0,-0.029984765 +178.90037608146667,0.0,0.0,0.0,0.0,-0.029984765 +178.909569978714,0.0,0.0,0.0,0.0,-0.029984765 +178.91997599601746,0.0,0.0,0.0,0.0,-0.011484267 +178.92989802360535,0.0,0.0,0.0,0.0,-0.011484267 +178.93941593170166,0.0,0.0,0.0,0.0,-0.011484267 +178.95023012161255,0.0,0.0,0.0,0.0,-0.011484267 +178.9599039554596,0.0,0.0,0.0,0.0,-0.03183481 +178.97077202796936,0.0,0.0,0.0,0.0,-0.03183481 +178.9797511100769,0.0,0.0,0.0,0.0,-0.03183481 +178.99089407920837,0.0,0.0,0.0,0.0,-0.03183481 +178.9998860359192,0.0,0.0,0.0,0.0,-0.03183481 +179.00949501991272,0.0,0.0,0.0,0.0,-0.01888446 +179.01981496810913,0.0,0.0,0.0,0.0,-0.01888446 +179.02957010269165,0.0,0.0,0.0,0.0,-0.01888446 +179.04100608825684,0.0,0.0,0.0,0.0,-0.01888446 +179.05001211166382,0.0,0.0,0.0,0.0,-0.01888446 +179.06061792373657,0.0,0.0,0.0,0.0,-0.002234026 +179.0695869922638,0.0,0.0,0.0,0.0,-0.002234026 +179.0808870792389,0.0,0.0,0.0,0.0,-0.002234026 +179.08962607383728,0.0,0.0,0.0,0.0,-0.002234026 +179.10004210472107,0.0,0.0,0.0,0.0,-0.002234026 +179.1094629764557,0.0,0.0,0.0,0.0,0.012566376 +179.1196460723877,0.0,0.0,0.0,0.0,0.012566376 +179.12992191314697,0.0,0.0,0.0,0.0,0.012566376 +179.14009308815002,0.0,0.0,0.0,0.0,0.012566376 +179.15021204948425,0.0,0.0,0.0,0.0,0.012566376 +179.15942001342773,0.0,0.0,0.0,0.0,0.0014660703 +179.17085814476013,0.0,0.0,0.0,0.0,0.0014660703 +179.17960596084595,0.0,0.0,0.0,0.0,0.0014660703 +179.18941402435303,0.0,0.0,0.0,0.0,0.0014660703 +179.2015039920807,0.0,0.0,0.0,0.0,0.0014660703 +179.21220803260803,0.0,0.0,0.0,0.0,-0.0077841706 +179.21945309638977,0.0,0.0,0.0,0.0,-0.0077841706 +179.22992396354675,0.0,0.0,0.0,0.0,-0.0077841706 +179.23969912528992,0.0,0.0,0.0,0.0,-0.0077841706 +179.24941897392273,0.0,0.0,0.0,0.0,-0.0077841706 +179.2604410648346,0.0,0.0,0.0,0.0,-0.002234026 +179.2695870399475,0.0,0.0,0.0,0.0,-0.002234026 +179.28341603279114,0.0,0.0,0.0,0.0,-0.002234026 +179.28952193260193,0.0,0.0,0.0,0.0,-0.002234026 +179.30228900909424,0.0,0.0,0.0,0.0,-0.002234026 +179.3112759590149,0.0,0.0,0.0,0.0,-0.01888446 +179.31996607780457,0.0,0.0,0.0,0.0,-0.01888446 +179.32992506027222,0.0,0.0,0.0,0.0,-0.01888446 +179.34063005447388,0.0,0.0,0.0,0.0,-0.01888446 +179.34945106506348,0.0,0.0,0.0,0.0,-0.01888446 +179.3598599433899,0.0,0.0,0.0,0.0,-0.002234026 +179.37081003189087,0.0,0.0,0.0,0.0,-0.002234026 +179.38334393501282,0.0,0.0,0.0,0.0,-0.002234026 +179.39235401153564,0.0,0.0,0.0,0.0,-0.002234026 +179.40136003494263,0.0,0.0,0.0,0.0,-0.002234026 +179.41039204597473,0.0,0.0,0.0,0.0,-0.0040840744 +179.41940093040466,0.0,0.0,0.0,0.0,-0.0040840744 +179.4294080734253,0.0,0.0,0.0,0.0,-0.0040840744 +179.44084095954895,0.0,0.0,0.0,0.0,-0.0040840744 +179.44983005523682,0.0,0.0,0.0,0.0,-0.0040840744 +179.46396493911743,0.0,0.0,0.0,0.0,-0.00038397792 +179.47346210479736,0.0,0.0,0.0,0.0,-0.00038397792 +179.48245811462402,0.0,0.0,0.0,0.0,-0.00038397792 +179.49145603179932,0.0,0.0,0.0,0.0,-0.00038397792 +179.50047612190247,0.0,0.0,0.0,0.0,-0.00038397792 +179.5095500946045,0.0,0.0,0.0,0.0,-0.00038397792 +179.5195050239563,0.0,0.0,0.0,0.0,-0.00038397792 +179.5308301448822,0.0,0.0,0.0,0.0,-0.00038397792 +179.53982305526733,0.0,0.0,0.0,0.0,-0.00038397792 +179.5496120452881,0.0,0.0,0.0,0.0,-0.00038397792 +179.56174302101135,0.0,0.0,0.0,0.0,-0.011484267 +179.570209980011,0.0,0.0,0.0,0.0,-0.011484267 +179.581228017807,0.0,0.0,0.0,0.0,-0.011484267 +179.58954191207886,0.0,0.0,0.0,0.0,-0.011484267 +179.5995659828186,0.0,0.0,0.0,0.0,-0.011484267 +179.6095199584961,0.0,0.0,0.0,0.0,-0.011484267 +179.61993193626404,0.0,0.0,0.0,0.0,-0.011484267 +179.6297950744629,0.0,0.0,0.0,0.0,-0.011484267 +179.64358401298523,0.0,0.0,0.0,0.0,-0.011484267 +179.6494710445404,0.0,0.0,0.0,0.0,-0.011484267 +179.66141605377197,0.0,0.0,0.0,0.0,-0.002234026 +179.67032408714294,0.0,0.0,0.0,0.0,-0.002234026 +179.6796851158142,0.0,0.0,0.0,0.0,-0.002234026 +179.68957114219666,0.0,0.0,0.0,0.0,-0.002234026 +179.70178508758545,0.0,0.0,0.0,0.0,-0.002234026 +179.70956707000732,0.0,0.0,0.0,0.0,-0.009634218 +179.71978211402893,0.0,0.0,0.0,0.0,-0.009634218 +179.72992706298828,0.0,0.0,0.0,0.0,-0.009634218 +179.74164700508118,0.0,0.0,0.0,0.0,-0.009634218 +179.75023102760315,0.0,0.0,0.0,0.0,-0.009634218 +179.7594771385193,0.0,0.0,0.0,0.0,0.0033161184 +179.77043795585632,0.0,0.0,0.0,0.0,0.0033161184 +179.77941012382507,0.0,0.0,0.0,0.0,0.0033161184 +179.79178094863892,0.0,0.0,0.0,0.0,0.0033161184 +179.8007869720459,0.0,0.0,0.0,0.0,0.0033161184 +179.80951714515686,0.0,0.0,0.0,0.0,-0.002234026 +179.81994795799255,0.0,0.0,0.0,0.0,-0.002234026 +179.8307590484619,0.0,0.0,0.0,0.0,-0.002234026 +179.83966898918152,0.0,0.0,0.0,0.0,-0.002234026 +179.8503839969635,0.0,0.0,0.0,0.0,-0.002234026 +179.86028504371643,0.0,0.0,0.0,0.0,-0.002234026 +179.8695170879364,0.0,0.0,0.0,0.0,-0.002234026 +179.8817961215973,0.0,0.0,0.0,0.0,-0.002234026 +179.8896689414978,0.0,0.0,0.0,0.0,-0.002234026 +179.89978194236755,0.0,0.0,0.0,0.0,-0.002234026 +179.90956091880798,0.0,0.0,0.0,0.0,0.023666665 +179.9198760986328,0.0,0.0,0.0,0.0,0.023666665 +179.93126010894775,0.0,0.0,0.0,0.0,0.023666665 +179.93972897529602,0.0,0.0,0.0,0.0,0.023666665 +179.94979000091553,0.0,0.0,0.0,0.0,0.023666665 +179.95993304252625,0.0,0.0,0.0,0.0,0.0033161184 +179.97176909446716,0.0,0.0,0.0,0.0,0.0033161184 +179.97983503341675,0.0,0.0,0.0,0.0,0.0033161184 +179.9897539615631,0.0,0.0,0.0,0.0,0.0033161184 +180.00008511543274,0.0,0.0,0.0,0.0,0.0033161184 +180.00950694084167,0.0,0.0,0.0,0.0,-0.002234026 +180.01994013786316,0.0,0.0,0.0,0.0,-0.002234026 +180.0309920310974,0.0,0.0,0.0,0.0,-0.002234026 +180.03998398780823,0.0,0.0,0.0,0.0,-0.002234026 +180.0500431060791,0.0,0.0,0.0,0.0,-0.002234026 +180.06176209449768,0.0,0.0,0.0,0.0,-0.0040840744 +180.06979894638062,0.0,0.0,0.0,0.0,-0.0040840744 +180.07974100112915,0.0,0.0,0.0,0.0,-0.0040840744 +180.09388995170593,0.0,0.0,0.0,0.0,-0.0040840744 +180.1027009487152,0.0,0.0,0.0,0.0,-0.0040840744 +180.10959601402283,0.0,0.0,0.0,0.0,-0.002234026 +180.1199231147766,0.0,0.0,0.0,0.0,-0.002234026 +180.12982606887817,0.0,0.0,0.0,0.0,-0.002234026 +180.14013504981995,0.0,0.0,0.0,0.0,-0.002234026 +180.14940309524536,0.0,0.0,0.0,0.0,-0.002234026 +180.16056394577026,0.0,0.0,0.0,0.0,-0.002234026 +180.16946697235107,0.0,0.0,0.0,0.0,-0.002234026 +180.1818859577179,0.0,0.0,0.0,0.0,-0.002234026 +180.18938994407654,0.0,0.0,0.0,0.0,-0.002234026 +180.19984698295593,0.0,0.0,0.0,0.0,-0.002234026 +180.2106819152832,0.0,0.0,0.0,0.0,-0.020734508 +180.21966099739075,0.0,0.0,0.0,0.0,-0.020734508 +180.2302610874176,0.0,0.0,0.0,0.0,-0.020734508 +180.24078106880188,0.0,0.0,0.0,0.0,-0.020734508 +180.2496919631958,0.0,0.0,0.0,0.0,-0.020734508 +180.25949001312256,0.0,0.0,0.0,0.0,-0.013334316 +180.26939392089844,0.0,0.0,0.0,0.0,-0.013334316 +180.28020191192627,0.0,0.0,0.0,0.0,-0.013334316 +180.29153299331665,0.0,0.0,0.0,0.0,-0.013334316 +180.300537109375,0.0,0.0,0.0,0.0,-0.013334316 +180.30958795547485,0.0,0.0,0.0,0.0,-0.0077841706 +180.31995105743408,0.0,0.0,0.0,0.0,-0.0077841706 +180.32990193367004,0.0,0.0,0.0,0.0,-0.0077841706 +180.34070897102356,0.0,0.0,0.0,0.0,-0.0077841706 +180.34970998764038,0.0,0.0,0.0,0.0,-0.0077841706 +180.36342597007751,0.0,0.0,0.0,0.0,-0.013334316 +180.372407913208,0.0,0.0,0.0,0.0,-0.013334316 +180.3813910484314,0.0,0.0,0.0,0.0,-0.013334316 +180.38939595222473,0.0,0.0,0.0,0.0,-0.013334316 +180.40119099617004,0.0,0.0,0.0,0.0,-0.013334316 +180.41012811660767,0.0,0.0,0.0,0.0,-0.002234026 +180.41945910453796,0.0,0.0,0.0,0.0,-0.002234026 +180.43048691749573,0.0,0.0,0.0,0.0,-0.002234026 +180.4397029876709,0.0,0.0,0.0,0.0,-0.002234026 +180.45042204856873,0.0,0.0,0.0,0.0,-0.002234026 +180.45994091033936,0.0,0.0,0.0,0.0,-0.0077841706 +180.47126698493958,0.0,0.0,0.0,0.0,-0.0077841706 +180.4802370071411,0.0,0.0,0.0,0.0,-0.0077841706 +180.4903221130371,0.0,0.0,0.0,0.0,-0.0077841706 +180.5005259513855,0.0,0.0,0.0,0.0,-0.0077841706 +180.50940203666687,0.0,0.0,0.0,0.0,-0.0077841706 +180.5199429988861,0.0,0.0,0.0,0.0,-0.0077841706 +180.52972793579102,0.0,0.0,0.0,0.0,-0.0077841706 +180.5396740436554,0.0,0.0,0.0,0.0,-0.0077841706 +180.54939794540405,0.0,0.0,0.0,0.0,-0.0077841706 +180.5611391067505,0.0,0.0,0.0,0.0,0.008866279 +180.57013511657715,0.0,0.0,0.0,0.0,0.008866279 +180.57944798469543,0.0,0.0,0.0,0.0,0.008866279 +180.58998203277588,0.0,0.0,0.0,0.0,0.008866279 +180.59961891174316,0.0,0.0,0.0,0.0,0.008866279 +180.60951709747314,0.0,0.0,0.0,0.0,-0.015184363 +180.61973309516907,0.0,0.0,0.0,0.0,-0.015184363 +180.63291192054749,0.0,0.0,0.0,0.0,-0.015184363 +180.64182806015015,0.0,0.0,0.0,0.0,-0.015184363 +180.65041708946228,0.0,0.0,0.0,0.0,-0.015184363 +180.65966200828552,0.0,0.0,0.0,0.0,-0.0077841706 +180.66939401626587,0.0,0.0,0.0,0.0,-0.0077841706 +180.68069410324097,0.0,0.0,0.0,0.0,-0.0077841706 +180.68972301483154,0.0,0.0,0.0,0.0,-0.0077841706 +180.70074796676636,0.0,0.0,0.0,0.0,-0.0077841706 +180.70959091186523,0.0,0.0,0.0,0.0,-0.009634218 +180.71987414360046,0.0,0.0,0.0,0.0,-0.009634218 +180.73097705841064,0.0,0.0,0.0,0.0,-0.009634218 +180.7398979663849,0.0,0.0,0.0,0.0,-0.009634218 +180.7493929862976,0.0,0.0,0.0,0.0,-0.009634218 +180.76093292236328,0.0,0.0,0.0,0.0,0.0070162313 +180.77077412605286,0.0,0.0,0.0,0.0,0.0070162313 +180.7797830104828,0.0,0.0,0.0,0.0,0.0070162313 +180.78940105438232,0.0,0.0,0.0,0.0,0.0070162313 +180.7994990348816,0.0,0.0,0.0,0.0,0.0070162313 +180.80952310562134,0.0,0.0,0.0,0.0,-0.022584556 +180.81995797157288,0.0,0.0,0.0,0.0,-0.022584556 +180.82944107055664,0.0,0.0,0.0,0.0,-0.022584556 +180.83969593048096,0.0,0.0,0.0,0.0,-0.022584556 +180.85009694099426,0.0,0.0,0.0,0.0,-0.022584556 +180.86086511611938,0.0,0.0,0.0,0.0,-0.024434604 +180.8693881034851,0.0,0.0,0.0,0.0,-0.024434604 +180.88072395324707,0.0,0.0,0.0,0.0,-0.024434604 +180.8897180557251,0.0,0.0,0.0,0.0,-0.024434604 +180.90008997917175,0.0,0.0,0.0,0.0,-0.024434604 +180.90950798988342,0.0,0.0,0.0,0.0,-0.024434604 +180.91995906829834,0.0,0.0,0.0,0.0,-0.0077841706 +180.92953205108643,0.0,0.0,0.0,0.0,-0.0077841706 +180.94195103645325,0.0,0.0,0.0,0.0,-0.0077841706 +180.94941592216492,0.0,0.0,0.0,0.0,-0.0077841706 +180.9599781036377,0.0,0.0,0.0,0.0,-0.009634218 +180.9707269668579,0.0,0.0,0.0,0.0,-0.009634218 +180.97971510887146,0.0,0.0,0.0,0.0,-0.009634218 +180.98939514160156,0.0,0.0,0.0,0.0,-0.009634218 +181.00145292282104,0.0,0.0,0.0,0.0,-0.009634218 +181.00951099395752,0.0,0.0,0.0,0.0,0.0014660703 +181.0194001197815,0.0,0.0,0.0,0.0,0.0014660703 +181.0311849117279,0.0,0.0,0.0,0.0,0.0014660703 +181.03953409194946,0.0,0.0,0.0,0.0,0.0014660703 +181.05008506774902,0.0,0.0,0.0,0.0,0.0014660703 +181.06071710586548,0.0,0.0,0.0,0.0,-0.0040840744 +181.06940412521362,0.0,0.0,0.0,0.0,-0.0040840744 +181.08230209350586,0.0,0.0,0.0,0.0,-0.0040840744 +181.09130907058716,0.0,0.0,0.0,0.0,-0.0040840744 +181.10027313232422,0.0,0.0,0.0,0.0,-0.0040840744 +181.10952997207642,0.0,0.0,0.0,0.0,-0.0040840744 +181.1199290752411,0.0,0.0,0.0,0.0,-0.026284654 +181.12963199615479,0.0,0.0,0.0,0.0,-0.026284654 +181.14016103744507,0.0,0.0,0.0,0.0,-0.026284654 +181.14958906173706,0.0,0.0,0.0,0.0,-0.026284654 +181.1597080230713,0.0,0.0,0.0,0.0,-0.0077841706 +181.17024207115173,0.0,0.0,0.0,0.0,-0.0077841706 +181.1811559200287,0.0,0.0,0.0,0.0,-0.0077841706 +181.1894040107727,0.0,0.0,0.0,0.0,-0.0077841706 +181.20323014259338,0.0,0.0,0.0,0.0,-0.0077841706 +181.21224808692932,0.0,0.0,0.0,0.0,0.021816617 +181.2196319103241,0.0,0.0,0.0,0.0,0.021816617 +181.2294089794159,0.0,0.0,0.0,0.0,0.021816617 +181.2402789592743,0.0,0.0,0.0,0.0,0.021816617 +181.24968194961548,0.0,0.0,0.0,0.0,0.021816617 +181.2620279788971,0.0,0.0,0.0,0.0,-0.013334316 +181.26940512657166,0.0,0.0,0.0,0.0,-0.013334316 +181.27972793579102,0.0,0.0,0.0,0.0,-0.013334316 +181.29249000549316,0.0,0.0,0.0,0.0,-0.013334316 +181.3013780117035,0.0,0.0,0.0,0.0,-0.013334316 +181.30939102172852,0.0,0.0,0.0,0.0,-0.033684865 +181.3199610710144,0.0,0.0,0.0,0.0,-0.033684865 +181.3306839466095,0.0,0.0,0.0,0.0,-0.033684865 +181.339693069458,0.0,0.0,0.0,0.0,-0.033684865 +181.34940600395203,0.0,0.0,0.0,0.0,-0.033684865 +181.36086702346802,0.0,0.0,0.0,0.0,-0.00038397792 +181.36983513832092,0.0,0.0,0.0,0.0,-0.00038397792 +181.3808720111847,0.0,0.0,0.0,0.0,-0.00038397792 +181.3894100189209,0.0,0.0,0.0,0.0,-0.00038397792 +181.3994140625,0.0,0.0,0.0,0.0,-0.00038397792 +181.41044092178345,0.0,0.0,0.0,0.0,-0.002234026 +181.41949605941772,0.0,0.0,0.0,0.0,-0.002234026 +181.4294090270996,0.0,0.0,0.0,0.0,-0.002234026 +181.43947196006775,0.0,0.0,0.0,0.0,-0.002234026 +181.4504110813141,0.0,0.0,0.0,0.0,-0.002234026 +181.4596951007843,0.0,0.0,0.0,0.0,-0.015184363 +181.46941113471985,0.0,0.0,0.0,0.0,-0.015184363 +181.47950100898743,0.0,0.0,0.0,0.0,-0.015184363 +181.491544008255,0.0,0.0,0.0,0.0,-0.015184363 +181.50042390823364,0.0,0.0,0.0,0.0,-0.015184363 +181.509418964386,0.0,0.0,0.0,0.0,-0.009634218 +181.51967692375183,0.0,0.0,0.0,0.0,-0.009634218 +181.53097105026245,0.0,0.0,0.0,0.0,-0.009634218 +181.54058194160461,0.0,0.0,0.0,0.0,-0.009634218 +181.54941201210022,0.0,0.0,0.0,0.0,-0.009634218 +181.5598430633545,0.0,0.0,0.0,0.0,-0.0077841706 +181.56956601142883,0.0,0.0,0.0,0.0,-0.0077841706 +181.58162999153137,0.0,0.0,0.0,0.0,-0.0077841706 +181.58940410614014,0.0,0.0,0.0,0.0,-0.0077841706 +181.59966707229614,0.0,0.0,0.0,0.0,-0.0077841706 +181.60954093933105,0.0,0.0,0.0,0.0,-0.009634218 +181.62146306037903,0.0,0.0,0.0,0.0,-0.009634218 +181.62941312789917,0.0,0.0,0.0,0.0,-0.009634218 +181.6394340991974,0.0,0.0,0.0,0.0,-0.009634218 +181.65044713020325,0.0,0.0,0.0,0.0,-0.009634218 +181.6627321243286,0.0,0.0,0.0,0.0,-0.0040840744 +181.66941714286804,0.0,0.0,0.0,0.0,-0.0040840744 +181.68074011802673,0.0,0.0,0.0,0.0,-0.0040840744 +181.68974995613098,0.0,0.0,0.0,0.0,-0.0040840744 +181.6995780467987,0.0,0.0,0.0,0.0,-0.0040840744 +181.70938897132874,0.0,0.0,0.0,0.0,-0.0040840744 +181.71995210647583,0.0,0.0,0.0,0.0,-0.0040840744 +181.72943091392517,0.0,0.0,0.0,0.0,-0.0040840744 +181.74381303787231,0.0,0.0,0.0,0.0,-0.0040840744 +181.74940514564514,0.0,0.0,0.0,0.0,-0.0040840744 +181.76036405563354,0.0,0.0,0.0,0.0,-0.009634218 +181.7708399295807,0.0,0.0,0.0,0.0,-0.009634218 +181.7796061038971,0.0,0.0,0.0,0.0,-0.009634218 +181.78943014144897,0.0,0.0,0.0,0.0,-0.009634218 +181.8004560470581,0.0,0.0,0.0,0.0,-0.009634218 +181.80955505371094,0.0,0.0,0.0,0.0,-0.002234026 +181.81996703147888,0.0,0.0,0.0,0.0,-0.002234026 +181.82942700386047,0.0,0.0,0.0,0.0,-0.002234026 +181.8429160118103,0.0,0.0,0.0,0.0,-0.002234026 +181.85043811798096,0.0,0.0,0.0,0.0,-0.002234026 +181.8609459400177,0.0,0.0,0.0,0.0,-0.0040840744 +181.86940503120422,0.0,0.0,0.0,0.0,-0.0040840744 +181.87964010238647,0.0,0.0,0.0,0.0,-0.0040840744 +181.88957595825195,0.0,0.0,0.0,0.0,-0.0040840744 +181.9000461101532,0.0,0.0,0.0,0.0,-0.0040840744 +181.90943694114685,0.0,0.0,0.0,0.0,-0.0040840744 +181.9199709892273,0.0,0.0,0.0,0.0,-0.03553491 +181.9321961402893,0.0,0.0,0.0,0.0,-0.03553491 +181.94202709197998,0.0,0.0,0.0,0.0,-0.03553491 +181.94941997528076,0.0,0.0,0.0,0.0,-0.03553491 +181.95969009399414,0.0,0.0,0.0,0.0,-0.0077841706 +181.96960401535034,0.0,0.0,0.0,0.0,-0.0077841706 +181.98091793060303,0.0,0.0,0.0,0.0,-0.0077841706 +181.98939394950867,0.0,0.0,0.0,0.0,-0.0077841706 +182.00068306922913,0.0,0.0,0.0,0.0,-0.0077841706 +182.00950813293457,0.0,0.0,0.0,0.0,-0.009634218 +182.01952004432678,0.0,0.0,0.0,0.0,-0.009634218 +182.02940893173218,0.0,0.0,0.0,0.0,-0.009634218 +182.0410521030426,0.0,0.0,0.0,0.0,-0.009634218 +182.04995894432068,0.0,0.0,0.0,0.0,-0.009634218 +182.05960392951965,0.0,0.0,0.0,0.0,-0.0040840744 +182.06942892074585,0.0,0.0,0.0,0.0,-0.0040840744 +182.07978796958923,0.0,0.0,0.0,0.0,-0.0040840744 +182.0897340774536,0.0,0.0,0.0,0.0,-0.0040840744 +182.1034450531006,0.0,0.0,0.0,0.0,-0.0040840744 +182.1094310283661,0.0,0.0,0.0,0.0,-0.0040840744 +182.11997199058533,0.0,0.0,0.0,0.0,-0.015184363 +182.13020491600037,0.0,0.0,0.0,0.0,-0.015184363 +182.14022207260132,0.0,0.0,0.0,0.0,-0.015184363 +182.14948105812073,0.0,0.0,0.0,0.0,-0.015184363 +182.1606719493866,0.0,0.0,0.0,0.0,0.0070162313 +182.1696479320526,0.0,0.0,0.0,0.0,0.0070162313 +182.1836860179901,0.0,0.0,0.0,0.0,0.0070162313 +182.18944001197815,0.0,0.0,0.0,0.0,0.0070162313 +182.20007395744324,0.0,0.0,0.0,0.0,0.0070162313 +182.2095251083374,0.0,0.0,0.0,0.0,-0.011484267 +182.2195339202881,0.0,0.0,0.0,0.0,-0.011484267 +182.22942996025085,0.0,0.0,0.0,0.0,-0.011484267 +182.23962092399597,0.0,0.0,0.0,0.0,-0.011484267 +182.2504861354828,0.0,0.0,0.0,0.0,-0.011484267 +182.25953698158264,0.0,0.0,0.0,0.0,0.0070162313 +182.26944303512573,0.0,0.0,0.0,0.0,0.0070162313 +182.28071999549866,0.0,0.0,0.0,0.0,0.0070162313 +182.29064297676086,0.0,0.0,0.0,0.0,0.0070162313 +182.29954600334167,0.0,0.0,0.0,0.0,0.0070162313 +182.30943298339844,0.0,0.0,0.0,0.0,0.008866279 +182.31997513771057,0.0,0.0,0.0,0.0,0.008866279 +182.32942509651184,0.0,0.0,0.0,0.0,0.008866279 +182.34042096138,0.0,0.0,0.0,0.0,0.008866279 +182.34948706626892,0.0,0.0,0.0,0.0,0.008866279 +182.36194610595703,0.0,0.0,0.0,0.0,0.019966569 +182.36949706077576,0.0,0.0,0.0,0.0,0.019966569 +182.37976598739624,0.0,0.0,0.0,0.0,0.019966569 +182.38943791389465,0.0,0.0,0.0,0.0,0.019966569 +182.40153312683105,0.0,0.0,0.0,0.0,0.019966569 +182.41053199768066,0.0,0.0,0.0,0.0,-0.011484267 +182.41953492164612,0.0,0.0,0.0,0.0,-0.011484267 +182.42942905426025,0.0,0.0,0.0,0.0,-0.011484267 +182.44215893745422,0.0,0.0,0.0,0.0,-0.011484267 +182.4504849910736,0.0,0.0,0.0,0.0,-0.011484267 +182.4599609375,0.0,0.0,0.0,0.0,-0.002234026 +182.46944212913513,0.0,0.0,0.0,0.0,-0.002234026 +182.4798879623413,0.0,0.0,0.0,0.0,-0.002234026 +182.49158692359924,0.0,0.0,0.0,0.0,-0.002234026 +182.50060510635376,0.0,0.0,0.0,0.0,-0.002234026 +182.50942993164062,0.0,0.0,0.0,0.0,-0.013334316 +182.51962614059448,0.0,0.0,0.0,0.0,-0.013334316 +182.53048300743103,0.0,0.0,0.0,0.0,-0.013334316 +182.54014801979065,0.0,0.0,0.0,0.0,-0.013334316 +182.54944705963135,0.0,0.0,0.0,0.0,-0.013334316 +182.5606369972229,0.0,0.0,0.0,0.0,-0.011484267 +182.57144212722778,0.0,0.0,0.0,0.0,-0.011484267 +182.5815999507904,0.0,0.0,0.0,0.0,-0.011484267 +182.58943605422974,0.0,0.0,0.0,0.0,-0.011484267 +182.59957695007324,0.0,0.0,0.0,0.0,-0.011484267 +182.60953903198242,0.0,0.0,0.0,0.0,-0.002234026 +182.61998009681702,0.0,0.0,0.0,0.0,-0.002234026 +182.62950611114502,0.0,0.0,0.0,0.0,-0.002234026 +182.64425897598267,0.0,0.0,0.0,0.0,-0.002234026 +182.65046310424805,0.0,0.0,0.0,0.0,-0.002234026 +182.66258692741394,0.0,0.0,0.0,0.0,-0.026284654 +182.6694450378418,0.0,0.0,0.0,0.0,-0.026284654 +182.68057012557983,0.0,0.0,0.0,0.0,-0.026284654 +182.68957209587097,0.0,0.0,0.0,0.0,-0.026284654 +182.6999180316925,0.0,0.0,0.0,0.0,-0.026284654 +182.70943307876587,0.0,0.0,0.0,0.0,-0.026284654 +182.71997809410095,0.0,0.0,0.0,0.0,-0.01888446 +182.7325839996338,0.0,0.0,0.0,0.0,-0.01888446 +182.73997807502747,0.0,0.0,0.0,0.0,-0.01888446 +182.749440908432,0.0,0.0,0.0,0.0,-0.01888446 +182.761559009552,0.0,0.0,0.0,0.0,-0.0040840744 +182.7705681324005,0.0,0.0,0.0,0.0,-0.0040840744 +182.7795650959015,0.0,0.0,0.0,0.0,-0.0040840744 +182.7894411087036,0.0,0.0,0.0,0.0,-0.0040840744 +182.80084013938904,0.0,0.0,0.0,0.0,-0.0040840744 +182.8095440864563,0.0,0.0,0.0,0.0,-0.0040840744 +182.81998205184937,0.0,0.0,0.0,0.0,-0.0040840744 +182.82945013046265,0.0,0.0,0.0,0.0,-0.0040840744 +182.84160614013672,0.0,0.0,0.0,0.0,-0.0040840744 +182.8504650592804,0.0,0.0,0.0,0.0,-0.0040840744 +182.86055302619934,0.0,0.0,0.0,0.0,-0.011484267 +182.86944699287415,0.0,0.0,0.0,0.0,-0.011484267 +182.87965512275696,0.0,0.0,0.0,0.0,-0.011484267 +182.89428806304932,0.0,0.0,0.0,0.0,-0.011484267 +182.9042670726776,0.0,0.0,0.0,0.0,-0.011484267 +182.90944504737854,0.0,0.0,0.0,0.0,-0.011484267 +182.91997814178467,0.0,0.0,0.0,0.0,-0.0040840744 +182.92940306663513,0.0,0.0,0.0,0.0,-0.0040840744 +182.94021797180176,0.0,0.0,0.0,0.0,-0.0040840744 +182.94946193695068,0.0,0.0,0.0,0.0,-0.0040840744 +182.95954608917236,0.0,0.0,0.0,0.0,0.019966569 +182.96952414512634,0.0,0.0,0.0,0.0,0.019966569 +182.98118209838867,0.0,0.0,0.0,0.0,0.019966569 +182.98944306373596,0.0,0.0,0.0,0.0,0.019966569 +183.00011110305786,0.0,0.0,0.0,0.0,0.019966569 +183.00950598716736,0.0,0.0,0.0,0.0,-0.013334316 +183.0199499130249,0.0,0.0,0.0,0.0,-0.013334316 +183.0294439792633,0.0,0.0,0.0,0.0,-0.013334316 +183.0405309200287,0.0,0.0,0.0,0.0,-0.013334316 +183.04956197738647,0.0,0.0,0.0,0.0,-0.013334316 +183.05940699577332,0.0,0.0,0.0,0.0,-0.011484267 +183.06946802139282,0.0,0.0,0.0,0.0,-0.011484267 +183.0795030593872,0.0,0.0,0.0,0.0,-0.011484267 +183.09262204170227,0.0,0.0,0.0,0.0,-0.011484267 +183.10127806663513,0.0,0.0,0.0,0.0,-0.011484267 +183.10946893692017,0.0,0.0,0.0,0.0,-0.011484267 +183.1199860572815,0.0,0.0,0.0,0.0,-0.015184363 +183.130136013031,0.0,0.0,0.0,0.0,-0.015184363 +183.13953495025635,0.0,0.0,0.0,0.0,-0.015184363 +183.1495280265808,0.0,0.0,0.0,0.0,-0.015184363 +183.1639060974121,0.0,0.0,0.0,0.0,-0.01888446 +183.16951608657837,0.0,0.0,0.0,0.0,-0.01888446 +183.18173098564148,0.0,0.0,0.0,0.0,-0.01888446 +183.18942713737488,0.0,0.0,0.0,0.0,-0.01888446 +183.19954013824463,0.0,0.0,0.0,0.0,-0.01888446 +183.2095329761505,0.0,0.0,0.0,0.0,-0.022584556 +183.21996998786926,0.0,0.0,0.0,0.0,-0.022584556 +183.2294681072235,0.0,0.0,0.0,0.0,-0.022584556 +183.24410104751587,0.0,0.0,0.0,0.0,-0.022584556 +183.25046396255493,0.0,0.0,0.0,0.0,-0.022584556 +183.25965905189514,0.0,0.0,0.0,0.0,-0.002234026 +183.26946902275085,0.0,0.0,0.0,0.0,-0.002234026 +183.2797350883484,0.0,0.0,0.0,0.0,-0.002234026 +183.29254794120789,0.0,0.0,0.0,0.0,-0.002234026 +183.3006091117859,0.0,0.0,0.0,0.0,-0.002234026 +183.3094460964203,0.0,0.0,0.0,0.0,-0.013334316 +183.31954503059387,0.0,0.0,0.0,0.0,-0.013334316 +183.32947897911072,0.0,0.0,0.0,0.0,-0.013334316 +183.34136605262756,0.0,0.0,0.0,0.0,-0.013334316 +183.34945797920227,0.0,0.0,0.0,0.0,-0.013334316 +183.35996198654175,0.0,0.0,0.0,0.0,-0.009634218 +183.37353706359863,0.0,0.0,0.0,0.0,-0.009634218 +183.38253211975098,0.0,0.0,0.0,0.0,-0.009634218 +183.38946413993835,0.0,0.0,0.0,0.0,-0.009634218 +183.4005241394043,0.0,0.0,0.0,0.0,-0.009634218 +183.40953302383423,0.0,0.0,0.0,0.0,-0.009634218 +183.41955494880676,0.0,0.0,0.0,0.0,-0.009634218 +183.42948603630066,0.0,0.0,0.0,0.0,-0.009634218 +183.44016194343567,0.0,0.0,0.0,0.0,-0.009634218 +183.45049595832825,0.0,0.0,0.0,0.0,-0.009634218 +183.46352100372314,0.0,0.0,0.0,0.0,-0.002234026 +183.46945309638977,0.0,0.0,0.0,0.0,-0.002234026 +183.48150491714478,0.0,0.0,0.0,0.0,-0.002234026 +183.49052810668945,0.0,0.0,0.0,0.0,-0.002234026 +183.4995081424713,0.0,0.0,0.0,0.0,-0.002234026 +183.50949692726135,0.0,0.0,0.0,0.0,0.019966569 +183.51951003074646,0.0,0.0,0.0,0.0,0.019966569 +183.5343301296234,0.0,0.0,0.0,0.0,0.019966569 +183.54432201385498,0.0,0.0,0.0,0.0,0.019966569 +183.54948496818542,0.0,0.0,0.0,0.0,0.019966569 +183.56005692481995,0.0,0.0,0.0,0.0,-0.0077841706 +183.57151198387146,0.0,0.0,0.0,0.0,-0.0077841706 +183.58050894737244,0.0,0.0,0.0,0.0,-0.0077841706 +183.58946204185486,0.0,0.0,0.0,0.0,-0.0077841706 +183.59976410865784,0.0,0.0,0.0,0.0,-0.0077841706 +183.60945391654968,0.0,0.0,0.0,0.0,-0.024434604 +183.61998891830444,0.0,0.0,0.0,0.0,-0.024434604 +183.62946891784668,0.0,0.0,0.0,0.0,-0.024434604 +183.64209008216858,0.0,0.0,0.0,0.0,-0.024434604 +183.64940404891968,0.0,0.0,0.0,0.0,-0.024434604 +183.66143894195557,0.0,0.0,0.0,0.0,-0.011484267 +183.66942191123962,0.0,0.0,0.0,0.0,-0.011484267 +183.6794090270996,0.0,0.0,0.0,0.0,-0.011484267 +183.68966794013977,0.0,0.0,0.0,0.0,-0.011484267 +183.7043640613556,0.0,0.0,0.0,0.0,-0.011484267 +183.70945000648499,0.0,0.0,0.0,0.0,-0.011484267 +183.7199809551239,0.0,0.0,0.0,0.0,-0.015184363 +183.73332500457764,0.0,0.0,0.0,0.0,-0.015184363 +183.7423119544983,0.0,0.0,0.0,0.0,-0.015184363 +183.74946308135986,0.0,0.0,0.0,0.0,-0.015184363 +183.76026511192322,0.0,0.0,0.0,0.0,-0.0077841706 +183.76950407028198,0.0,0.0,0.0,0.0,-0.0077841706 +183.77942395210266,0.0,0.0,0.0,0.0,-0.0077841706 +183.7894639968872,0.0,0.0,0.0,0.0,-0.0077841706 +183.8032350540161,0.0,0.0,0.0,0.0,-0.0077841706 +183.80957198143005,0.0,0.0,0.0,0.0,-0.0077841706 +183.81951713562012,0.0,0.0,0.0,0.0,-0.0077841706 +183.82949304580688,0.0,0.0,0.0,0.0,-0.0077841706 +183.84113693237305,0.0,0.0,0.0,0.0,-0.0077841706 +183.85009002685547,0.0,0.0,0.0,0.0,-0.0077841706 +183.85947108268738,0.0,0.0,0.0,0.0,-0.009634218 +183.86947202682495,0.0,0.0,0.0,0.0,-0.009634218 +183.88209199905396,0.0,0.0,0.0,0.0,-0.009634218 +183.89437913894653,0.0,0.0,0.0,0.0,-0.009634218 +183.90357494354248,0.0,0.0,0.0,0.0,-0.009634218 +183.90947103500366,0.0,0.0,0.0,0.0,-0.009634218 +183.9199879169464,0.0,0.0,0.0,0.0,-0.0040840744 +183.93031001091003,0.0,0.0,0.0,0.0,-0.0040840744 +183.93993997573853,0.0,0.0,0.0,0.0,-0.0040840744 +183.949481010437,0.0,0.0,0.0,0.0,-0.0040840744 +183.96014308929443,0.0,0.0,0.0,0.0,-0.002234026 +183.9697060585022,0.0,0.0,0.0,0.0,-0.002234026 +183.98378109931946,0.0,0.0,0.0,0.0,-0.002234026 +183.98946905136108,0.0,0.0,0.0,0.0,-0.002234026 +184.0015881061554,0.0,0.0,0.0,0.0,-0.002234026 +184.00955891609192,0.0,0.0,0.0,0.0,-0.00038397792 +184.01942801475525,0.0,0.0,0.0,0.0,-0.00038397792 +184.0294840335846,0.0,0.0,0.0,0.0,-0.00038397792 +184.0394570827484,0.0,0.0,0.0,0.0,-0.00038397792 +184.05026507377625,0.0,0.0,0.0,0.0,-0.00038397792 +184.05959296226501,0.0,0.0,0.0,0.0,-0.020734508 +184.06946992874146,0.0,0.0,0.0,0.0,-0.020734508 +184.0816559791565,0.0,0.0,0.0,0.0,-0.020734508 +184.08998012542725,0.0,0.0,0.0,0.0,-0.020734508 +184.0996549129486,0.0,0.0,0.0,0.0,-0.020734508 +184.10950112342834,0.0,0.0,0.0,0.0,-0.020734508 +184.11966013908386,0.0,0.0,0.0,0.0,-0.0077841706 +184.12943601608276,0.0,0.0,0.0,0.0,-0.0077841706 +184.14036297798157,0.0,0.0,0.0,0.0,-0.0077841706 +184.1496341228485,0.0,0.0,0.0,0.0,-0.0077841706 +184.16205596923828,0.0,0.0,0.0,0.0,-0.002234026 +184.1694040298462,0.0,0.0,0.0,0.0,-0.002234026 +184.1798701286316,0.0,0.0,0.0,0.0,-0.002234026 +184.18947505950928,0.0,0.0,0.0,0.0,-0.002234026 +184.20052814483643,0.0,0.0,0.0,0.0,-0.002234026 +184.2095069885254,0.0,0.0,0.0,0.0,-0.002234026 +184.2194139957428,0.0,0.0,0.0,0.0,-0.0077841706 +184.22948503494263,0.0,0.0,0.0,0.0,-0.0077841706 +184.2394609451294,0.0,0.0,0.0,0.0,-0.0077841706 +184.25049495697021,0.0,0.0,0.0,0.0,-0.0077841706 +184.26009511947632,0.0,0.0,0.0,0.0,-0.0040840744 +184.26950597763062,0.0,0.0,0.0,0.0,-0.0040840744 +184.28140711784363,0.0,0.0,0.0,0.0,-0.0040840744 +184.29040098190308,0.0,0.0,0.0,0.0,-0.0040840744 +184.29970598220825,0.0,0.0,0.0,0.0,-0.0040840744 +184.3094220161438,0.0,0.0,0.0,0.0,-0.00038397792 +184.3194179534912,0.0,0.0,0.0,0.0,-0.00038397792 +184.32955312728882,0.0,0.0,0.0,0.0,-0.00038397792 +184.34034204483032,0.0,0.0,0.0,0.0,-0.00038397792 +184.3495330810547,0.0,0.0,0.0,0.0,-0.00038397792 +184.36022210121155,0.0,0.0,0.0,0.0,-0.015184363 +184.37125396728516,0.0,0.0,0.0,0.0,-0.015184363 +184.38024306297302,0.0,0.0,0.0,0.0,-0.015184363 +184.3895139694214,0.0,0.0,0.0,0.0,-0.015184363 +184.39942502975464,0.0,0.0,0.0,0.0,-0.015184363 +184.4094090461731,0.0,0.0,0.0,0.0,0.0014660703 +184.4196319580078,0.0,0.0,0.0,0.0,0.0014660703 +184.42939710617065,0.0,0.0,0.0,0.0,0.0014660703 +184.44315791130066,0.0,0.0,0.0,0.0,0.0014660703 +184.45057797431946,0.0,0.0,0.0,0.0,0.0014660703 +184.4611361026764,0.0,0.0,0.0,0.0,0.0033161184 +184.4695689678192,0.0,0.0,0.0,0.0,0.0033161184 +184.48039197921753,0.0,0.0,0.0,0.0,0.0033161184 +184.49130511283875,0.0,0.0,0.0,0.0,0.0033161184 +184.49964904785156,0.0,0.0,0.0,0.0,0.0033161184 +184.5095100402832,0.0,0.0,0.0,0.0,-0.009634218 +184.51998710632324,0.0,0.0,0.0,0.0,-0.009634218 +184.5330319404602,0.0,0.0,0.0,0.0,-0.009634218 +184.54058814048767,0.0,0.0,0.0,0.0,-0.009634218 +184.54950404167175,0.0,0.0,0.0,0.0,-0.009634218 +184.55981302261353,0.0,0.0,0.0,0.0,-0.002234026 +184.57034397125244,0.0,0.0,0.0,0.0,-0.002234026 +184.58101606369019,0.0,0.0,0.0,0.0,-0.002234026 +184.58992099761963,0.0,0.0,0.0,0.0,-0.002234026 +184.5998420715332,0.0,0.0,0.0,0.0,-0.002234026 +184.61260294914246,0.0,0.0,0.0,0.0,-0.013334316 +184.61998391151428,0.0,0.0,0.0,0.0,-0.013334316 +184.63186693191528,0.0,0.0,0.0,0.0,-0.013334316 +184.640851020813,0.0,0.0,0.0,0.0,-0.013334316 +184.64983892440796,0.0,0.0,0.0,0.0,-0.013334316 +184.66033911705017,0.0,0.0,0.0,0.0,-0.00038397792 +184.67017006874084,0.0,0.0,0.0,0.0,-0.00038397792 +184.68094110488892,0.0,0.0,0.0,0.0,-0.00038397792 +184.6898500919342,0.0,0.0,0.0,0.0,-0.00038397792 +184.7037479877472,0.0,0.0,0.0,0.0,-0.00038397792 +184.70957493782043,0.0,0.0,0.0,0.0,-0.026284654 +184.71998500823975,0.0,0.0,0.0,0.0,-0.026284654 +184.73068594932556,0.0,0.0,0.0,0.0,-0.026284654 +184.73968696594238,0.0,0.0,0.0,0.0,-0.026284654 +184.7502999305725,0.0,0.0,0.0,0.0,-0.026284654 +184.75952100753784,0.0,0.0,0.0,0.0,-0.00038397792 +184.77102899551392,0.0,0.0,0.0,0.0,-0.00038397792 +184.78005599975586,0.0,0.0,0.0,0.0,-0.00038397792 +184.7916989326477,0.0,0.0,0.0,0.0,-0.00038397792 +184.8025779724121,0.0,0.0,0.0,0.0,-0.00038397792 +184.80958890914917,0.0,0.0,0.0,0.0,-0.011484267 +184.81939911842346,0.0,0.0,0.0,0.0,-0.011484267 +184.82953095436096,0.0,0.0,0.0,0.0,-0.011484267 +184.83950304985046,0.0,0.0,0.0,0.0,-0.011484267 +184.84942507743835,0.0,0.0,0.0,0.0,-0.011484267 +184.86113810539246,0.0,0.0,0.0,0.0,-0.0040840744 +184.8701651096344,0.0,0.0,0.0,0.0,-0.0040840744 +184.88190507888794,0.0,0.0,0.0,0.0,-0.0040840744 +184.89242005348206,0.0,0.0,0.0,0.0,-0.0040840744 +184.90141010284424,0.0,0.0,0.0,0.0,-0.0040840744 +184.90958213806152,0.0,0.0,0.0,0.0,-0.0040840744 +184.91974091529846,0.0,0.0,0.0,0.0,-0.0040840744 +184.9302921295166,0.0,0.0,0.0,0.0,-0.0040840744 +184.94226908683777,0.0,0.0,0.0,0.0,-0.0040840744 +184.94994497299194,0.0,0.0,0.0,0.0,-0.0040840744 +184.96025609970093,0.0,0.0,0.0,0.0,-0.0077841706 +184.97174310684204,0.0,0.0,0.0,0.0,-0.0077841706 +184.9820921421051,0.0,0.0,0.0,0.0,-0.0077841706 +184.99099898338318,0.0,0.0,0.0,0.0,-0.0077841706 +184.999902009964,0.0,0.0,0.0,0.0,-0.0077841706 +185.0095660686493,0.0,0.0,0.0,0.0,-0.01888446 +185.02028012275696,0.0,0.0,0.0,0.0,-0.01888446 +185.02998614311218,0.0,0.0,0.0,0.0,-0.01888446 +185.04136109352112,0.0,0.0,0.0,0.0,-0.01888446 +185.04953408241272,0.0,0.0,0.0,0.0,-0.01888446 +185.05959296226501,0.0,0.0,0.0,0.0,-0.0077841706 +185.07121205329895,0.0,0.0,0.0,0.0,-0.0077841706 +185.08001804351807,0.0,0.0,0.0,0.0,-0.0077841706 +185.09008598327637,0.0,0.0,0.0,0.0,-0.0077841706 +185.1004409790039,0.0,0.0,0.0,0.0,-0.0077841706 +185.10956192016602,0.0,0.0,0.0,0.0,-0.0077841706 +185.1199929714203,0.0,0.0,0.0,0.0,-0.0077841706 +185.13145399093628,0.0,0.0,0.0,0.0,-0.0077841706 +185.14043402671814,0.0,0.0,0.0,0.0,-0.0077841706 +185.14946699142456,0.0,0.0,0.0,0.0,-0.0077841706 +185.16032600402832,0.0,0.0,0.0,0.0,-0.015184363 +185.17095708847046,0.0,0.0,0.0,0.0,-0.015184363 +185.1799349784851,0.0,0.0,0.0,0.0,-0.015184363 +185.19122195243835,0.0,0.0,0.0,0.0,-0.015184363 +185.2002239227295,0.0,0.0,0.0,0.0,-0.015184363 +185.20944213867188,0.0,0.0,0.0,0.0,-0.015184363 +185.2200050354004,0.0,0.0,0.0,0.0,-0.013334316 +185.2305450439453,0.0,0.0,0.0,0.0,-0.013334316 +185.23953795433044,0.0,0.0,0.0,0.0,-0.013334316 +185.24944305419922,0.0,0.0,0.0,0.0,-0.013334316 +185.26080894470215,0.0,0.0,0.0,0.0,-0.002234026 +185.26972699165344,0.0,0.0,0.0,0.0,-0.002234026 +185.28057098388672,0.0,0.0,0.0,0.0,-0.002234026 +185.2902340888977,0.0,0.0,0.0,0.0,-0.002234026 +185.30261993408203,0.0,0.0,0.0,0.0,-0.002234026 +185.31162905693054,0.0,0.0,0.0,0.0,-0.029984765 +185.31943893432617,0.0,0.0,0.0,0.0,-0.029984765 +185.329656124115,0.0,0.0,0.0,0.0,-0.029984765 +185.34014296531677,0.0,0.0,0.0,0.0,-0.029984765 +185.35052394866943,0.0,0.0,0.0,0.0,-0.029984765 +185.35963201522827,0.0,0.0,0.0,0.0,-0.013334316 +185.37118411064148,0.0,0.0,0.0,0.0,-0.013334316 +185.3801989555359,0.0,0.0,0.0,0.0,-0.013334316 +185.39206409454346,0.0,0.0,0.0,0.0,-0.013334316 +185.40071892738342,0.0,0.0,0.0,0.0,-0.013334316 +185.40988993644714,0.0,0.0,0.0,0.0,-0.024434604 +185.41963291168213,0.0,0.0,0.0,0.0,-0.024434604 +185.4314820766449,0.0,0.0,0.0,0.0,-0.024434604 +185.44048810005188,0.0,0.0,0.0,0.0,-0.024434604 +185.44946599006653,0.0,0.0,0.0,0.0,-0.024434604 +185.4611620903015,0.0,0.0,0.0,0.0,-0.002234026 +185.47019910812378,0.0,0.0,0.0,0.0,-0.002234026 +185.48118710517883,0.0,0.0,0.0,0.0,-0.002234026 +185.49010014533997,0.0,0.0,0.0,0.0,-0.002234026 +185.50083112716675,0.0,0.0,0.0,0.0,-0.002234026 +185.50986099243164,0.0,0.0,0.0,0.0,-0.0077841706 +185.51999497413635,0.0,0.0,0.0,0.0,-0.0077841706 +185.53032302856445,0.0,0.0,0.0,0.0,-0.0077841706 +185.54217290878296,0.0,0.0,0.0,0.0,-0.0077841706 +185.55051493644714,0.0,0.0,0.0,0.0,-0.0077841706 +185.56014895439148,0.0,0.0,0.0,0.0,-0.0077841706 +185.57032704353333,0.0,0.0,0.0,0.0,-0.0077841706 +185.58192706108093,0.0,0.0,0.0,0.0,-0.0077841706 +185.59093594551086,0.0,0.0,0.0,0.0,-0.0077841706 +185.5999619960785,0.0,0.0,0.0,0.0,-0.0077841706 +185.61117911338806,0.0,0.0,0.0,0.0,-0.011484267 +185.62001013755798,0.0,0.0,0.0,0.0,-0.011484267 +185.63213801383972,0.0,0.0,0.0,0.0,-0.011484267 +185.6411371231079,0.0,0.0,0.0,0.0,-0.011484267 +185.64954495429993,0.0,0.0,0.0,0.0,-0.011484267 +185.65945291519165,0.0,0.0,0.0,0.0,-0.0077841706 +185.67199802398682,0.0,0.0,0.0,0.0,-0.0077841706 +185.68102312088013,0.0,0.0,0.0,0.0,-0.0077841706 +185.69001698493958,0.0,0.0,0.0,0.0,-0.0077841706 +185.7010269165039,0.0,0.0,0.0,0.0,-0.0077841706 +185.70945811271667,0.0,0.0,0.0,0.0,-0.0077841706 +185.7199990749359,0.0,0.0,0.0,0.0,0.008866279 +185.7303171157837,0.0,0.0,0.0,0.0,0.008866279 +185.73963403701782,0.0,0.0,0.0,0.0,0.008866279 +185.75029611587524,0.0,0.0,0.0,0.0,0.008866279 +185.76209998130798,0.0,0.0,0.0,0.0,-0.009634218 +185.7711250782013,0.0,0.0,0.0,0.0,-0.009634218 +185.78012895584106,0.0,0.0,0.0,0.0,-0.009634218 +185.7909231185913,0.0,0.0,0.0,0.0,-0.009634218 +185.79989409446716,0.0,0.0,0.0,0.0,-0.009634218 +185.8095691204071,0.0,0.0,0.0,0.0,-0.011484267 +185.8198699951172,0.0,0.0,0.0,0.0,-0.011484267 +185.82969093322754,0.0,0.0,0.0,0.0,-0.011484267 +185.8404049873352,0.0,0.0,0.0,0.0,-0.011484267 +185.84953999519348,0.0,0.0,0.0,0.0,-0.011484267 +185.85960912704468,0.0,0.0,0.0,0.0,-0.00038397792 +185.8702211380005,0.0,0.0,0.0,0.0,-0.00038397792 +185.8800070285797,0.0,0.0,0.0,0.0,-0.00038397792 +185.8897569179535,0.0,0.0,0.0,0.0,-0.00038397792 +185.90009999275208,0.0,0.0,0.0,0.0,-0.00038397792 +185.90958213806152,0.0,0.0,0.0,0.0,-0.0077841706 +185.9200119972229,0.0,0.0,0.0,0.0,-0.0077841706 +185.93328309059143,0.0,0.0,0.0,0.0,-0.0077841706 +185.94228291511536,0.0,0.0,0.0,0.0,-0.0077841706 +185.94938802719116,0.0,0.0,0.0,0.0,-0.0077841706 +185.96029806137085,0.0,0.0,0.0,0.0,-0.009634218 +185.97061491012573,0.0,0.0,0.0,0.0,-0.009634218 +185.97961497306824,0.0,0.0,0.0,0.0,-0.009634218 +185.9895899295807,0.0,0.0,0.0,0.0,-0.009634218 +186.00108098983765,0.0,0.0,0.0,0.0,-0.009634218 +186.00958609580994,0.0,0.0,0.0,0.0,-0.009634218 +186.0199739933014,0.0,0.0,0.0,0.0,-0.009634218 +186.03235411643982,0.0,0.0,0.0,0.0,-0.009634218 +186.04136991500854,0.0,0.0,0.0,0.0,-0.009634218 +186.04957008361816,0.0,0.0,0.0,0.0,-0.009634218 +186.05940413475037,0.0,0.0,0.0,0.0,-0.0077841706 +186.06943893432617,0.0,0.0,0.0,0.0,-0.0077841706 +186.08206796646118,0.0,0.0,0.0,0.0,-0.0077841706 +186.09106993675232,0.0,0.0,0.0,0.0,-0.0077841706 +186.09986400604248,0.0,0.0,0.0,0.0,-0.0077841706 +186.10958194732666,0.0,0.0,0.0,0.0,-0.0040840744 +186.11953592300415,0.0,0.0,0.0,0.0,-0.0040840744 +186.1314640045166,0.0,0.0,0.0,0.0,-0.0040840744 +186.14047598838806,0.0,0.0,0.0,0.0,-0.0040840744 +186.1495659351349,0.0,0.0,0.0,0.0,-0.0040840744 +186.1600570678711,0.0,0.0,0.0,0.0,-0.0040840744 +186.1720530986786,0.0,0.0,0.0,0.0,-0.0040840744 +186.18104696273804,0.0,0.0,0.0,0.0,-0.0040840744 +186.19004201889038,0.0,0.0,0.0,0.0,-0.0040840744 +186.20064401626587,0.0,0.0,0.0,0.0,-0.0040840744 +186.20957493782043,0.0,0.0,0.0,0.0,-0.011484267 +186.22002005577087,0.0,0.0,0.0,0.0,-0.011484267 +186.22994112968445,0.0,0.0,0.0,0.0,-0.011484267 +186.23958110809326,0.0,0.0,0.0,0.0,-0.011484267 +186.24957609176636,0.0,0.0,0.0,0.0,-0.011484267 +186.26205706596375,0.0,0.0,0.0,0.0,0.0014660703 +186.27104210853577,0.0,0.0,0.0,0.0,0.0014660703 +186.28005504608154,0.0,0.0,0.0,0.0,0.0014660703 +186.29100799560547,0.0,0.0,0.0,0.0,0.0014660703 +186.3012409210205,0.0,0.0,0.0,0.0,0.0014660703 +186.30995893478394,0.0,0.0,0.0,0.0,-0.002234026 +186.31999611854553,0.0,0.0,0.0,0.0,-0.002234026 +186.32966208457947,0.0,0.0,0.0,0.0,-0.002234026 +186.3430519104004,0.0,0.0,0.0,0.0,-0.002234026 +186.34939813613892,0.0,0.0,0.0,0.0,-0.002234026 +186.36103701591492,0.0,0.0,0.0,0.0,-0.0077841706 +186.37002396583557,0.0,0.0,0.0,0.0,-0.0077841706 +186.37962913513184,0.0,0.0,0.0,0.0,-0.0077841706 +186.39041304588318,0.0,0.0,0.0,0.0,-0.0077841706 +186.40024995803833,0.0,0.0,0.0,0.0,-0.0077841706 +186.4107370376587,0.0,0.0,0.0,0.0,-0.00038397792 +186.419753074646,0.0,0.0,0.0,0.0,-0.00038397792 +186.43302702903748,0.0,0.0,0.0,0.0,-0.00038397792 +186.44098806381226,0.0,0.0,0.0,0.0,-0.00038397792 +186.44955396652222,0.0,0.0,0.0,0.0,-0.00038397792 +186.4600179195404,0.0,0.0,0.0,0.0,-0.0040840744 +186.47062301635742,0.0,0.0,0.0,0.0,-0.0040840744 +186.47954392433167,0.0,0.0,0.0,0.0,-0.0040840744 +186.4903860092163,0.0,0.0,0.0,0.0,-0.0040840744 +186.50071597099304,0.0,0.0,0.0,0.0,-0.0040840744 +186.5095980167389,0.0,0.0,0.0,0.0,0.0014660703 +186.5199830532074,0.0,0.0,0.0,0.0,0.0014660703 +186.5313150882721,0.0,0.0,0.0,0.0,0.0014660703 +186.54101395606995,0.0,0.0,0.0,0.0,0.0014660703 +186.54941201210022,0.0,0.0,0.0,0.0,0.0014660703 +186.5597710609436,0.0,0.0,0.0,0.0,-0.0040840744 +186.57207202911377,0.0,0.0,0.0,0.0,-0.0040840744 +186.58157396316528,0.0,0.0,0.0,0.0,-0.0040840744 +186.5905511379242,0.0,0.0,0.0,0.0,-0.0040840744 +186.599534034729,0.0,0.0,0.0,0.0,-0.0040840744 +186.61300611495972,0.0,0.0,0.0,0.0,-0.0077841706 +186.6200180053711,0.0,0.0,0.0,0.0,-0.0077841706 +186.63101506233215,0.0,0.0,0.0,0.0,-0.0077841706 +186.63970708847046,0.0,0.0,0.0,0.0,-0.0077841706 +186.64957308769226,0.0,0.0,0.0,0.0,-0.0077841706 +186.6623990535736,0.0,0.0,0.0,0.0,-0.015184363 +186.67144012451172,0.0,0.0,0.0,0.0,-0.015184363 +186.68041896820068,0.0,0.0,0.0,0.0,-0.015184363 +186.68940806388855,0.0,0.0,0.0,0.0,-0.015184363 +186.70042490959167,0.0,0.0,0.0,0.0,-0.015184363 +186.70959997177124,0.0,0.0,0.0,0.0,-0.0040840744 +186.7202479839325,0.0,0.0,0.0,0.0,-0.0040840744 +186.7299780845642,0.0,0.0,0.0,0.0,-0.0040840744 +186.74330401420593,0.0,0.0,0.0,0.0,-0.0040840744 +186.7498550415039,0.0,0.0,0.0,0.0,-0.0040840744 +186.76127409934998,0.0,0.0,0.0,0.0,-0.002234026 +186.76978397369385,0.0,0.0,0.0,0.0,-0.002234026 +186.78011798858643,0.0,0.0,0.0,0.0,-0.002234026 +186.7915711402893,0.0,0.0,0.0,0.0,-0.002234026 +186.80046391487122,0.0,0.0,0.0,0.0,-0.002234026 +186.80957794189453,0.0,0.0,0.0,0.0,-0.015184363 +186.81998991966248,0.0,0.0,0.0,0.0,-0.015184363 +186.83150100708008,0.0,0.0,0.0,0.0,-0.015184363 +186.8399200439453,0.0,0.0,0.0,0.0,-0.015184363 +186.8495590686798,0.0,0.0,0.0,0.0,-0.015184363 +186.86009001731873,0.0,0.0,0.0,0.0,-0.002234026 +186.87022399902344,0.0,0.0,0.0,0.0,-0.002234026 +186.88071513175964,0.0,0.0,0.0,0.0,-0.002234026 +186.88962197303772,0.0,0.0,0.0,0.0,-0.002234026 +186.8998351097107,0.0,0.0,0.0,0.0,-0.002234026 +186.90959095954895,0.0,0.0,0.0,0.0,-0.020734508 +186.91957807540894,0.0,0.0,0.0,0.0,-0.020734508 +186.93199491500854,0.0,0.0,0.0,0.0,-0.020734508 +186.94075107574463,0.0,0.0,0.0,0.0,-0.020734508 +186.94940900802612,0.0,0.0,0.0,0.0,-0.020734508 +186.96016597747803,0.0,0.0,0.0,0.0,0.021816617 +186.96985006332397,0.0,0.0,0.0,0.0,0.021816617 +186.98196411132812,0.0,0.0,0.0,0.0,0.021816617 +186.99097895622253,0.0,0.0,0.0,0.0,0.021816617 +186.99997997283936,0.0,0.0,0.0,0.0,0.021816617 +187.0095570087433,0.0,0.0,0.0,0.0,0.021816617 +187.0200219154358,0.0,0.0,0.0,0.0,-0.022584556 +187.02989292144775,0.0,0.0,0.0,0.0,-0.022584556 +187.03978490829468,0.0,0.0,0.0,0.0,-0.022584556 +187.04958701133728,0.0,0.0,0.0,0.0,-0.022584556 +187.05942511558533,0.0,0.0,0.0,0.0,-0.0077841706 +187.07197308540344,0.0,0.0,0.0,0.0,-0.0077841706 +187.0809769630432,0.0,0.0,0.0,0.0,-0.0077841706 +187.08996200561523,0.0,0.0,0.0,0.0,-0.0077841706 +187.10267996788025,0.0,0.0,0.0,0.0,-0.0077841706 +187.10958814620972,0.0,0.0,0.0,0.0,-0.0040840744 +187.12002301216125,0.0,0.0,0.0,0.0,-0.0040840744 +187.12965393066406,0.0,0.0,0.0,0.0,-0.0040840744 +187.14052510261536,0.0,0.0,0.0,0.0,-0.0040840744 +187.149405002594,0.0,0.0,0.0,0.0,-0.0040840744 +187.15998196601868,0.0,0.0,0.0,0.0,-0.011484267 +187.1703839302063,0.0,0.0,0.0,0.0,-0.011484267 +187.17997002601624,0.0,0.0,0.0,0.0,-0.011484267 +187.19219613075256,0.0,0.0,0.0,0.0,-0.011484267 +187.20018410682678,0.0,0.0,0.0,0.0,-0.011484267 +187.2095980644226,0.0,0.0,0.0,0.0,-0.013334316 +187.21947312355042,0.0,0.0,0.0,0.0,-0.013334316 +187.23060202598572,0.0,0.0,0.0,0.0,-0.013334316 +187.23963594436646,0.0,0.0,0.0,0.0,-0.013334316 +187.24954104423523,0.0,0.0,0.0,0.0,-0.013334316 +187.26094698905945,0.0,0.0,0.0,0.0,-0.00038397792 +187.26994800567627,0.0,0.0,0.0,0.0,-0.00038397792 +187.2797191143036,0.0,0.0,0.0,0.0,-0.00038397792 +187.28940200805664,0.0,0.0,0.0,0.0,-0.00038397792 +187.29972100257874,0.0,0.0,0.0,0.0,-0.00038397792 +187.3097541332245,0.0,0.0,0.0,0.0,-0.0077841706 +187.32002711296082,0.0,0.0,0.0,0.0,-0.0077841706 +187.3297300338745,0.0,0.0,0.0,0.0,-0.0077841706 +187.34193396568298,0.0,0.0,0.0,0.0,-0.0077841706 +187.34942507743835,0.0,0.0,0.0,0.0,-0.0077841706 +187.35992813110352,0.0,0.0,0.0,0.0,-0.022584556 +187.36981391906738,0.0,0.0,0.0,0.0,-0.022584556 +187.37996101379395,0.0,0.0,0.0,0.0,-0.022584556 +187.39023900032043,0.0,0.0,0.0,0.0,-0.022584556 +187.40179300308228,0.0,0.0,0.0,0.0,-0.022584556 +187.41072297096252,0.0,0.0,0.0,0.0,-0.015184363 +187.41954708099365,0.0,0.0,0.0,0.0,-0.015184363 +187.43190693855286,0.0,0.0,0.0,0.0,-0.015184363 +187.4407241344452,0.0,0.0,0.0,0.0,-0.015184363 +187.44957208633423,0.0,0.0,0.0,0.0,-0.015184363 +187.4599940776825,0.0,0.0,0.0,0.0,-0.0077841706 +187.4711000919342,0.0,0.0,0.0,0.0,-0.0077841706 +187.4800910949707,0.0,0.0,0.0,0.0,-0.0077841706 +187.49189805984497,0.0,0.0,0.0,0.0,-0.0077841706 +187.5009081363678,0.0,0.0,0.0,0.0,-0.0077841706 +187.50989603996277,0.0,0.0,0.0,0.0,-0.009634218 +187.51993107795715,0.0,0.0,0.0,0.0,-0.009634218 +187.53091406822205,0.0,0.0,0.0,0.0,-0.009634218 +187.53990507125854,0.0,0.0,0.0,0.0,-0.009634218 +187.5494589805603,0.0,0.0,0.0,0.0,-0.009634218 +187.56095790863037,0.0,0.0,0.0,0.0,0.010716328 +187.56943011283875,0.0,0.0,0.0,0.0,0.010716328 +187.57999897003174,0.0,0.0,0.0,0.0,0.010716328 +187.59095096588135,0.0,0.0,0.0,0.0,0.010716328 +187.60002207756042,0.0,0.0,0.0,0.0,0.010716328 +187.61174297332764,0.0,0.0,0.0,0.0,-0.011484267 +187.62002801895142,0.0,0.0,0.0,0.0,-0.011484267 +187.6295680999756,0.0,0.0,0.0,0.0,-0.011484267 +187.64184308052063,0.0,0.0,0.0,0.0,-0.011484267 +187.64954209327698,0.0,0.0,0.0,0.0,-0.011484267 +187.65980505943298,0.0,0.0,0.0,0.0,-0.011484267 +187.6701729297638,0.0,0.0,0.0,0.0,-0.011484267 +187.68018293380737,0.0,0.0,0.0,0.0,-0.011484267 +187.69014596939087,0.0,0.0,0.0,0.0,-0.011484267 +187.69997000694275,0.0,0.0,0.0,0.0,-0.011484267 +187.70959997177124,0.0,0.0,0.0,0.0,-0.009634218 +187.7198920249939,0.0,0.0,0.0,0.0,-0.009634218 +187.73169112205505,0.0,0.0,0.0,0.0,-0.009634218 +187.74069595336914,0.0,0.0,0.0,0.0,-0.009634218 +187.7494659423828,0.0,0.0,0.0,0.0,-0.009634218 +187.76223492622375,0.0,0.0,0.0,0.0,-0.0077841706 +187.77121806144714,0.0,0.0,0.0,0.0,-0.0077841706 +187.77939295768738,0.0,0.0,0.0,0.0,-0.0077841706 +187.79003190994263,0.0,0.0,0.0,0.0,-0.0077841706 +187.8008749485016,0.0,0.0,0.0,0.0,-0.0077841706 +187.809494972229,0.0,0.0,0.0,0.0,-0.0077841706 +187.82003903388977,0.0,0.0,0.0,0.0,-0.013334316 +187.8293969631195,0.0,0.0,0.0,0.0,-0.013334316 +187.83953213691711,0.0,0.0,0.0,0.0,-0.013334316 +187.84961009025574,0.0,0.0,0.0,0.0,-0.013334316 +187.86132311820984,0.0,0.0,0.0,0.0,-0.022584556 +187.87024211883545,0.0,0.0,0.0,0.0,-0.022584556 +187.8818690776825,0.0,0.0,0.0,0.0,-0.022584556 +187.89086413383484,0.0,0.0,0.0,0.0,-0.022584556 +187.8998680114746,0.0,0.0,0.0,0.0,-0.022584556 +187.90955901145935,0.0,0.0,0.0,0.0,-0.0077841706 +187.92005109786987,0.0,0.0,0.0,0.0,-0.0077841706 +187.93233394622803,0.0,0.0,0.0,0.0,-0.0077841706 +187.9403281211853,0.0,0.0,0.0,0.0,-0.0077841706 +187.94944405555725,0.0,0.0,0.0,0.0,-0.0077841706 +187.96042704582214,0.0,0.0,0.0,0.0,-0.009634218 +187.96942591667175,0.0,0.0,0.0,0.0,-0.009634218 +187.98086500167847,0.0,0.0,0.0,0.0,-0.009634218 +187.98987007141113,0.0,0.0,0.0,0.0,-0.009634218 +188.0012719631195,0.0,0.0,0.0,0.0,-0.009634218 +188.00956010818481,0.0,0.0,0.0,0.0,-0.009634218 +188.01949000358582,0.0,0.0,0.0,0.0,-0.009634218 +188.03064799308777,0.0,0.0,0.0,0.0,-0.009634218 +188.03957390785217,0.0,0.0,0.0,0.0,-0.009634218 +188.04960894584656,0.0,0.0,0.0,0.0,-0.009634218 +188.0595269203186,0.0,0.0,0.0,0.0,0.0014660703 +188.07036709785461,0.0,0.0,0.0,0.0,0.0014660703 +188.07986092567444,0.0,0.0,0.0,0.0,0.0014660703 +188.09112310409546,0.0,0.0,0.0,0.0,0.0014660703 +188.10011196136475,0.0,0.0,0.0,0.0,0.0014660703 +188.10956597328186,0.0,0.0,0.0,0.0,-0.0040840744 +188.1197760105133,0.0,0.0,0.0,0.0,-0.0040840744 +188.1315929889679,0.0,0.0,0.0,0.0,-0.0040840744 +188.1398730278015,0.0,0.0,0.0,0.0,-0.0040840744 +188.14944291114807,0.0,0.0,0.0,0.0,-0.0040840744 +188.1608431339264,0.0,0.0,0.0,0.0,-0.009634218 +188.16984605789185,0.0,0.0,0.0,0.0,-0.009634218 +188.18099212646484,0.0,0.0,0.0,0.0,-0.009634218 +188.18998503684998,0.0,0.0,0.0,0.0,-0.009634218 +188.19941210746765,0.0,0.0,0.0,0.0,-0.009634218 +188.20957398414612,0.0,0.0,0.0,0.0,-0.00038397792 +188.21968913078308,0.0,0.0,0.0,0.0,-0.00038397792 +188.23008608818054,0.0,0.0,0.0,0.0,-0.00038397792 +188.2397060394287,0.0,0.0,0.0,0.0,-0.00038397792 +188.24966597557068,0.0,0.0,0.0,0.0,-0.00038397792 +188.25986313819885,0.0,0.0,0.0,0.0,-0.0077841706 +188.27085304260254,0.0,0.0,0.0,0.0,-0.0077841706 +188.27983212471008,0.0,0.0,0.0,0.0,-0.0077841706 +188.29290294647217,0.0,0.0,0.0,0.0,-0.0077841706 +188.30075597763062,0.0,0.0,0.0,0.0,-0.0077841706 +188.3118031024933,0.0,0.0,0.0,0.0,-0.020734508 +188.32004594802856,0.0,0.0,0.0,0.0,-0.020734508 +188.32947206497192,0.0,0.0,0.0,0.0,-0.020734508 +188.34087014198303,0.0,0.0,0.0,0.0,-0.020734508 +188.34943795204163,0.0,0.0,0.0,0.0,-0.020734508 +188.36041402816772,0.0,0.0,0.0,0.0,-0.0077841706 +188.3696699142456,0.0,0.0,0.0,0.0,-0.0077841706 +188.38021612167358,0.0,0.0,0.0,0.0,-0.0077841706 +188.39288210868835,0.0,0.0,0.0,0.0,-0.0077841706 +188.40188312530518,0.0,0.0,0.0,0.0,-0.0077841706 +188.41000699996948,0.0,0.0,0.0,0.0,-0.0077841706 +188.41990900039673,0.0,0.0,0.0,0.0,-0.0077841706 +188.43037796020508,0.0,0.0,0.0,0.0,-0.0077841706 +188.4398729801178,0.0,0.0,0.0,0.0,-0.0077841706 +188.44952702522278,0.0,0.0,0.0,0.0,-0.0077841706 +188.45950603485107,0.0,0.0,0.0,0.0,-0.024434604 +188.4739761352539,0.0,0.0,0.0,0.0,-0.024434604 +188.48299503326416,0.0,0.0,0.0,0.0,-0.024434604 +188.48953104019165,0.0,0.0,0.0,0.0,-0.024434604 +188.5009961128235,0.0,0.0,0.0,0.0,-0.024434604 +188.5100281238556,0.0,0.0,0.0,0.0,-0.013334316 +188.51967096328735,0.0,0.0,0.0,0.0,-0.013334316 +188.52974009513855,0.0,0.0,0.0,0.0,-0.013334316 +188.54042291641235,0.0,0.0,0.0,0.0,-0.013334316 +188.54950404167175,0.0,0.0,0.0,0.0,-0.013334316 +188.56314897537231,0.0,0.0,0.0,0.0,-0.0040840744 +188.5714349746704,0.0,0.0,0.0,0.0,-0.0040840744 +188.58212804794312,0.0,0.0,0.0,0.0,-0.0040840744 +188.5896029472351,0.0,0.0,0.0,0.0,-0.0040840744 +188.6001329421997,0.0,0.0,0.0,0.0,-0.0040840744 +188.60994601249695,0.0,0.0,0.0,0.0,0.0033161184 +188.61985301971436,0.0,0.0,0.0,0.0,0.0033161184 +188.6293969154358,0.0,0.0,0.0,0.0,0.0033161184 +188.63963508605957,0.0,0.0,0.0,0.0,0.0033161184 +188.64960312843323,0.0,0.0,0.0,0.0,0.0033161184 +188.66155910491943,0.0,0.0,0.0,0.0,-0.009634218 +188.67221307754517,0.0,0.0,0.0,0.0,-0.009634218 +188.6806390285492,0.0,0.0,0.0,0.0,-0.009634218 +188.6901650428772,0.0,0.0,0.0,0.0,-0.009634218 +188.7008399963379,0.0,0.0,0.0,0.0,-0.009634218 +188.70957493782043,0.0,0.0,0.0,0.0,0.0014660703 +188.71964502334595,0.0,0.0,0.0,0.0,0.0014660703 +188.73468494415283,0.0,0.0,0.0,0.0,0.0014660703 +188.74360394477844,0.0,0.0,0.0,0.0,0.0014660703 +188.74945402145386,0.0,0.0,0.0,0.0,0.0014660703 +188.75977897644043,0.0,0.0,0.0,0.0,-0.0040840744 +188.77032613754272,0.0,0.0,0.0,0.0,-0.0040840744 +188.78032994270325,0.0,0.0,0.0,0.0,-0.0040840744 +188.7898609638214,0.0,0.0,0.0,0.0,-0.0040840744 +188.79982709884644,0.0,0.0,0.0,0.0,-0.0040840744 +188.80958104133606,0.0,0.0,0.0,0.0,-0.03183481 +188.81972002983093,0.0,0.0,0.0,0.0,-0.03183481 +188.83270502090454,0.0,0.0,0.0,0.0,-0.03183481 +188.8416039943695,0.0,0.0,0.0,0.0,-0.03183481 +188.84966206550598,0.0,0.0,0.0,0.0,-0.03183481 +188.85940313339233,0.0,0.0,0.0,0.0,-0.009634218 +188.87043809890747,0.0,0.0,0.0,0.0,-0.009634218 +188.87945914268494,0.0,0.0,0.0,0.0,-0.009634218 +188.8898160457611,0.0,0.0,0.0,0.0,-0.009634218 +188.89985704421997,0.0,0.0,0.0,0.0,-0.009634218 +188.9096131324768,0.0,0.0,0.0,0.0,-0.011484267 +188.92132902145386,0.0,0.0,0.0,0.0,-0.011484267 +188.93005204200745,0.0,0.0,0.0,0.0,-0.011484267 +188.9396071434021,0.0,0.0,0.0,0.0,-0.011484267 +188.94946002960205,0.0,0.0,0.0,0.0,-0.011484267 +188.9605360031128,0.0,0.0,0.0,0.0,-0.002234026 +188.9695589542389,0.0,0.0,0.0,0.0,-0.002234026 +188.9797739982605,0.0,0.0,0.0,0.0,-0.002234026 +188.98970794677734,0.0,0.0,0.0,0.0,-0.002234026 +188.99990510940552,0.0,0.0,0.0,0.0,-0.002234026 +189.00960493087769,0.0,0.0,0.0,0.0,-0.024434604 +189.0198221206665,0.0,0.0,0.0,0.0,-0.024434604 +189.03262305259705,0.0,0.0,0.0,0.0,-0.024434604 +189.04163908958435,0.0,0.0,0.0,0.0,-0.024434604 +189.04951906204224,0.0,0.0,0.0,0.0,-0.024434604 +189.0596580505371,0.0,0.0,0.0,0.0,-0.013334316 +189.06980514526367,0.0,0.0,0.0,0.0,-0.013334316 +189.0795431137085,0.0,0.0,0.0,0.0,-0.013334316 +189.09026908874512,0.0,0.0,0.0,0.0,-0.013334316 +189.10002994537354,0.0,0.0,0.0,0.0,-0.013334316 +189.10958409309387,0.0,0.0,0.0,0.0,-0.013334316 +189.1213719844818,0.0,0.0,0.0,0.0,-0.013334316 +189.13004803657532,0.0,0.0,0.0,0.0,-0.013334316 +189.14073014259338,0.0,0.0,0.0,0.0,-0.013334316 +189.14945697784424,0.0,0.0,0.0,0.0,-0.013334316 +189.15980291366577,0.0,0.0,0.0,0.0,-0.024434604 +189.17130613327026,0.0,0.0,0.0,0.0,-0.024434604 +189.18021702766418,0.0,0.0,0.0,0.0,-0.024434604 +189.1940200328827,0.0,0.0,0.0,0.0,-0.024434604 +189.19950699806213,0.0,0.0,0.0,0.0,-0.024434604 +189.20961999893188,0.0,0.0,0.0,0.0,-0.0040840744 +189.22134613990784,0.0,0.0,0.0,0.0,-0.0040840744 +189.23082208633423,0.0,0.0,0.0,0.0,-0.0040840744 +189.23984694480896,0.0,0.0,0.0,0.0,-0.0040840744 +189.24966096878052,0.0,0.0,0.0,0.0,-0.0040840744 +189.2595751285553,0.0,0.0,0.0,0.0,-0.00038397792 +189.27486395835876,0.0,0.0,0.0,0.0,-0.00038397792 +189.28004693984985,0.0,0.0,0.0,0.0,-0.00038397792 +189.28958201408386,0.0,0.0,0.0,0.0,-0.00038397792 +189.30289912223816,0.0,0.0,0.0,0.0,-0.00038397792 +189.31190609931946,0.0,0.0,0.0,0.0,-0.009634218 +189.32092213630676,0.0,0.0,0.0,0.0,-0.009634218 +189.32993698120117,0.0,0.0,0.0,0.0,-0.009634218 +189.339781999588,0.0,0.0,0.0,0.0,-0.009634218 +189.3495659828186,0.0,0.0,0.0,0.0,-0.009634218 +189.36334991455078,0.0,0.0,0.0,0.0,-0.00038397792 +189.36991500854492,0.0,0.0,0.0,0.0,-0.00038397792 +189.38396906852722,0.0,0.0,0.0,0.0,-0.00038397792 +189.39064502716064,0.0,0.0,0.0,0.0,-0.00038397792 +189.40166997909546,0.0,0.0,0.0,0.0,-0.00038397792 +189.41101098060608,0.0,0.0,0.0,0.0,-0.002234026 +189.42002511024475,0.0,0.0,0.0,0.0,-0.002234026 +189.42975497245789,0.0,0.0,0.0,0.0,-0.002234026 +189.43989300727844,0.0,0.0,0.0,0.0,-0.002234026 +189.4496190547943,0.0,0.0,0.0,0.0,-0.002234026 +189.46437907218933,0.0,0.0,0.0,0.0,-0.015184363 +189.47406911849976,0.0,0.0,0.0,0.0,-0.015184363 +189.4808599948883,0.0,0.0,0.0,0.0,-0.015184363 +189.4920949935913,0.0,0.0,0.0,0.0,-0.015184363 +189.49967193603516,0.0,0.0,0.0,0.0,-0.015184363 +189.509948015213,0.0,0.0,0.0,0.0,-0.0040840744 +189.5197470188141,0.0,0.0,0.0,0.0,-0.0040840744 +189.5300750732422,0.0,0.0,0.0,0.0,-0.0040840744 +189.54087209701538,0.0,0.0,0.0,0.0,-0.0040840744 +189.54950499534607,0.0,0.0,0.0,0.0,-0.0040840744 +189.56340503692627,0.0,0.0,0.0,0.0,-0.0040840744 +189.57230710983276,0.0,0.0,0.0,0.0,-0.0040840744 +189.58121609687805,0.0,0.0,0.0,0.0,-0.0040840744 +189.59016013145447,0.0,0.0,0.0,0.0,-0.0040840744 +189.60018610954285,0.0,0.0,0.0,0.0,-0.0040840744 +189.609472990036,0.0,0.0,0.0,0.0,-0.009634218 +189.62131595611572,0.0,0.0,0.0,0.0,-0.009634218 +189.62997794151306,0.0,0.0,0.0,0.0,-0.009634218 +189.64187812805176,0.0,0.0,0.0,0.0,-0.009634218 +189.64961409568787,0.0,0.0,0.0,0.0,-0.009634218 +189.6614270210266,0.0,0.0,0.0,0.0,-0.002234026 +189.67033696174622,0.0,0.0,0.0,0.0,-0.002234026 +189.68015098571777,0.0,0.0,0.0,0.0,-0.002234026 +189.69029593467712,0.0,0.0,0.0,0.0,-0.002234026 +189.6995689868927,0.0,0.0,0.0,0.0,-0.002234026 +189.70963597297668,0.0,0.0,0.0,0.0,-0.009634218 +189.7213749885559,0.0,0.0,0.0,0.0,-0.009634218 +189.72939896583557,0.0,0.0,0.0,0.0,-0.009634218 +189.74029803276062,0.0,0.0,0.0,0.0,-0.009634218 +189.74947905540466,0.0,0.0,0.0,0.0,-0.009634218 +189.75943803787231,0.0,0.0,0.0,0.0,-0.0077841706 +189.77137804031372,0.0,0.0,0.0,0.0,-0.0077841706 +189.7803990840912,0.0,0.0,0.0,0.0,-0.0077841706 +189.78940892219543,0.0,0.0,0.0,0.0,-0.0077841706 +189.80281400680542,0.0,0.0,0.0,0.0,-0.0077841706 +189.80961513519287,0.0,0.0,0.0,0.0,-0.013334316 +189.8213701248169,0.0,0.0,0.0,0.0,-0.013334316 +189.8300530910492,0.0,0.0,0.0,0.0,-0.013334316 +189.83966302871704,0.0,0.0,0.0,0.0,-0.013334316 +189.8494679927826,0.0,0.0,0.0,0.0,-0.013334316 +189.86049008369446,0.0,0.0,0.0,0.0,-0.0040840744 +189.87029504776,0.0,0.0,0.0,0.0,-0.0040840744 +189.87949514389038,0.0,0.0,0.0,0.0,-0.0040840744 +189.89005994796753,0.0,0.0,0.0,0.0,-0.0040840744 +189.90204191207886,0.0,0.0,0.0,0.0,-0.0040840744 +189.90961909294128,0.0,0.0,0.0,0.0,-0.0077841706 +189.91985607147217,0.0,0.0,0.0,0.0,-0.0077841706 +189.93003702163696,0.0,0.0,0.0,0.0,-0.0077841706 +189.9421899318695,0.0,0.0,0.0,0.0,-0.0077841706 +189.94948196411133,0.0,0.0,0.0,0.0,-0.0077841706 +189.96013402938843,0.0,0.0,0.0,0.0,-0.009634218 +189.9695529937744,0.0,0.0,0.0,0.0,-0.009634218 +189.98053002357483,0.0,0.0,0.0,0.0,-0.009634218 +189.99112701416016,0.0,0.0,0.0,0.0,-0.009634218 +190.00003790855408,0.0,0.0,0.0,0.0,-0.009634218 +190.00964307785034,0.0,0.0,0.0,0.0,-0.00038397792 +190.02009201049805,0.0,0.0,0.0,0.0,-0.00038397792 +190.02982306480408,0.0,0.0,0.0,0.0,-0.00038397792 +190.04038405418396,0.0,0.0,0.0,0.0,-0.00038397792 +190.04965496063232,0.0,0.0,0.0,0.0,-0.00038397792 +190.05962800979614,0.0,0.0,0.0,0.0,-0.013334316 +190.07132411003113,0.0,0.0,0.0,0.0,-0.013334316 +190.08021593093872,0.0,0.0,0.0,0.0,-0.013334316 +190.0898609161377,0.0,0.0,0.0,0.0,-0.013334316 +190.1038739681244,0.0,0.0,0.0,0.0,-0.013334316 +190.10963606834412,0.0,0.0,0.0,0.0,-0.00038397792 +190.1218559741974,0.0,0.0,0.0,0.0,-0.00038397792 +190.13084602355957,0.0,0.0,0.0,0.0,-0.00038397792 +190.13982892036438,0.0,0.0,0.0,0.0,-0.00038397792 +190.14949297904968,0.0,0.0,0.0,0.0,-0.00038397792 +190.1604130268097,0.0,0.0,0.0,0.0,-0.0040840744 +190.17148804664612,0.0,0.0,0.0,0.0,-0.0040840744 +190.18477296829224,0.0,0.0,0.0,0.0,-0.0040840744 +190.19331002235413,0.0,0.0,0.0,0.0,-0.0040840744 +190.20184993743896,0.0,0.0,0.0,0.0,-0.0040840744 +190.20961904525757,0.0,0.0,0.0,0.0,-0.0077841706 +190.22070407867432,0.0,0.0,0.0,0.0,-0.0077841706 +190.22968912124634,0.0,0.0,0.0,0.0,-0.0077841706 +190.23970293998718,0.0,0.0,0.0,0.0,-0.0077841706 +190.24953699111938,0.0,0.0,0.0,0.0,-0.0077841706 +190.2645881175995,0.0,0.0,0.0,0.0,0.0014660703 +190.27462005615234,0.0,0.0,0.0,0.0,0.0014660703 +190.28011798858643,0.0,0.0,0.0,0.0,0.0014660703 +190.29259204864502,0.0,0.0,0.0,0.0,0.0014660703 +190.29982113838196,0.0,0.0,0.0,0.0,0.0014660703 +190.3105571269989,0.0,0.0,0.0,0.0,0.0033161184 +190.31954407691956,0.0,0.0,0.0,0.0,0.0033161184 +190.32968091964722,0.0,0.0,0.0,0.0,0.0033161184 +190.34103202819824,0.0,0.0,0.0,0.0,0.0033161184 +190.34950613975525,0.0,0.0,0.0,0.0,0.0033161184 +190.36446499824524,0.0,0.0,0.0,0.0,0.0014660703 +190.3710699081421,0.0,0.0,0.0,0.0,0.0014660703 +190.38243007659912,0.0,0.0,0.0,0.0,0.0014660703 +190.39143109321594,0.0,0.0,0.0,0.0,0.0014660703 +190.4004180431366,0.0,0.0,0.0,0.0,0.0014660703 +190.4094479084015,0.0,0.0,0.0,0.0,-0.0077841706 +190.4196720123291,0.0,0.0,0.0,0.0,-0.0077841706 +190.42945408821106,0.0,0.0,0.0,0.0,-0.0077841706 +190.4449610710144,0.0,0.0,0.0,0.0,-0.0077841706 +190.4496569633484,0.0,0.0,0.0,0.0,-0.0077841706 +190.4633059501648,0.0,0.0,0.0,0.0,0.0014660703 +190.47186613082886,0.0,0.0,0.0,0.0,0.0014660703 +190.4812159538269,0.0,0.0,0.0,0.0,0.0014660703 +190.49014902114868,0.0,0.0,0.0,0.0,0.0014660703 +190.49949407577515,0.0,0.0,0.0,0.0,0.0014660703 +190.5096719264984,0.0,0.0,0.0,0.0,-0.002234026 +190.5212709903717,0.0,0.0,0.0,0.0,-0.002234026 +190.53007292747498,0.0,0.0,0.0,0.0,-0.002234026 +190.5401120185852,0.0,0.0,0.0,0.0,-0.002234026 +190.5495319366455,0.0,0.0,0.0,0.0,-0.002234026 +190.55953097343445,0.0,0.0,0.0,0.0,-0.00038397792 +190.57034397125244,0.0,0.0,0.0,0.0,-0.00038397792 +190.58014798164368,0.0,0.0,0.0,0.0,-0.00038397792 +190.5906901359558,0.0,0.0,0.0,0.0,-0.00038397792 +190.59967708587646,0.0,0.0,0.0,0.0,-0.00038397792 +190.60939598083496,0.0,0.0,0.0,0.0,-0.0077841706 +190.6213550567627,0.0,0.0,0.0,0.0,-0.0077841706 +190.63008403778076,0.0,0.0,0.0,0.0,-0.0077841706 +190.64161801338196,0.0,0.0,0.0,0.0,-0.0077841706 +190.649649143219,0.0,0.0,0.0,0.0,-0.0077841706 +190.65941905975342,0.0,0.0,0.0,0.0,-0.002234026 +190.66999697685242,0.0,0.0,0.0,0.0,-0.002234026 +190.68066310882568,0.0,0.0,0.0,0.0,-0.002234026 +190.68969297409058,0.0,0.0,0.0,0.0,-0.002234026 +190.70399403572083,0.0,0.0,0.0,0.0,-0.002234026 +190.70964694023132,0.0,0.0,0.0,0.0,0.027366763 +190.72140097618103,0.0,0.0,0.0,0.0,0.027366763 +190.73007798194885,0.0,0.0,0.0,0.0,0.027366763 +190.73961997032166,0.0,0.0,0.0,0.0,0.027366763 +190.74950003623962,0.0,0.0,0.0,0.0,0.027366763 +190.7598841190338,0.0,0.0,0.0,0.0,-0.00038397792 +190.77067804336548,0.0,0.0,0.0,0.0,-0.00038397792 +190.77965712547302,0.0,0.0,0.0,0.0,-0.00038397792 +190.79311513900757,0.0,0.0,0.0,0.0,-0.00038397792 +190.7995810508728,0.0,0.0,0.0,0.0,-0.00038397792 +190.8096239566803,0.0,0.0,0.0,0.0,0.012566376 +190.81987690925598,0.0,0.0,0.0,0.0,0.012566376 +190.83006596565247,0.0,0.0,0.0,0.0,0.012566376 +190.84077095985413,0.0,0.0,0.0,0.0,0.012566376 +190.84964299201965,0.0,0.0,0.0,0.0,0.012566376 +190.86000394821167,0.0,0.0,0.0,0.0,-0.002234026 +190.86963891983032,0.0,0.0,0.0,0.0,-0.002234026 +190.8794391155243,0.0,0.0,0.0,0.0,-0.002234026 +190.89119005203247,0.0,0.0,0.0,0.0,-0.002234026 +190.90009903907776,0.0,0.0,0.0,0.0,-0.002234026 +190.9096541404724,0.0,0.0,0.0,0.0,-0.013334316 +190.9216251373291,0.0,0.0,0.0,0.0,-0.013334316 +190.93017411231995,0.0,0.0,0.0,0.0,-0.013334316 +190.93960309028625,0.0,0.0,0.0,0.0,-0.013334316 +190.94951009750366,0.0,0.0,0.0,0.0,-0.013334316 +190.95965814590454,0.0,0.0,0.0,0.0,-0.011484267 +190.96951699256897,0.0,0.0,0.0,0.0,-0.011484267 +190.9800570011139,0.0,0.0,0.0,0.0,-0.011484267 +190.99007391929626,0.0,0.0,0.0,0.0,-0.011484267 +191.00201892852783,0.0,0.0,0.0,0.0,-0.011484267 +191.0096549987793,0.0,0.0,0.0,0.0,-0.0077841706 +191.0204770565033,0.0,0.0,0.0,0.0,-0.0077841706 +191.02948713302612,0.0,0.0,0.0,0.0,-0.0077841706 +191.04026198387146,0.0,0.0,0.0,0.0,-0.0077841706 +191.04968404769897,0.0,0.0,0.0,0.0,-0.0077841706 +191.05958700180054,0.0,0.0,0.0,0.0,-0.009634218 +191.06943702697754,0.0,0.0,0.0,0.0,-0.009634218 +191.0834150314331,0.0,0.0,0.0,0.0,-0.009634218 +191.0893931388855,0.0,0.0,0.0,0.0,-0.009634218 +191.10138392448425,0.0,0.0,0.0,0.0,-0.009634218 +191.10964512825012,0.0,0.0,0.0,0.0,-0.0040840744 +191.1213550567627,0.0,0.0,0.0,0.0,-0.0040840744 +191.13006806373596,0.0,0.0,0.0,0.0,-0.0040840744 +191.1396610736847,0.0,0.0,0.0,0.0,-0.0040840744 +191.14963293075562,0.0,0.0,0.0,0.0,-0.0040840744 +191.16427493095398,0.0,0.0,0.0,0.0,-0.00038397792 +191.17123198509216,0.0,0.0,0.0,0.0,-0.00038397792 +191.18226099014282,0.0,0.0,0.0,0.0,-0.00038397792 +191.19024300575256,0.0,0.0,0.0,0.0,-0.00038397792 +191.20024013519287,0.0,0.0,0.0,0.0,-0.00038397792 +191.20963501930237,0.0,0.0,0.0,0.0,-0.011484267 +191.2204830646515,0.0,0.0,0.0,0.0,-0.011484267 +191.22968196868896,0.0,0.0,0.0,0.0,-0.011484267 +191.23973894119263,0.0,0.0,0.0,0.0,-0.011484267 +191.24973392486572,0.0,0.0,0.0,0.0,-0.011484267 +191.26311206817627,0.0,0.0,0.0,0.0,-0.0077841706 +191.2721230983734,0.0,0.0,0.0,0.0,-0.0077841706 +191.28046011924744,0.0,0.0,0.0,0.0,-0.0077841706 +191.29006910324097,0.0,0.0,0.0,0.0,-0.0077841706 +191.30124807357788,0.0,0.0,0.0,0.0,-0.0077841706 +191.31016397476196,0.0,0.0,0.0,0.0,-0.009634218 +191.3196759223938,0.0,0.0,0.0,0.0,-0.009634218 +191.32973408699036,0.0,0.0,0.0,0.0,-0.009634218 +191.34400010108948,0.0,0.0,0.0,0.0,-0.009634218 +191.34951305389404,0.0,0.0,0.0,0.0,-0.009634218 +191.36196303367615,0.0,0.0,0.0,0.0,-0.024434604 +191.370952129364,0.0,0.0,0.0,0.0,-0.024434604 +191.37994003295898,0.0,0.0,0.0,0.0,-0.024434604 +191.3895559310913,0.0,0.0,0.0,0.0,-0.024434604 +191.40065908432007,0.0,0.0,0.0,0.0,-0.024434604 +191.40967512130737,0.0,0.0,0.0,0.0,-0.002234026 +191.41994094848633,0.0,0.0,0.0,0.0,-0.002234026 +191.43006896972656,0.0,0.0,0.0,0.0,-0.002234026 +191.44282698631287,0.0,0.0,0.0,0.0,-0.002234026 +191.449716091156,0.0,0.0,0.0,0.0,-0.002234026 +191.4608199596405,0.0,0.0,0.0,0.0,-0.0040840744 +191.46977400779724,0.0,0.0,0.0,0.0,-0.0040840744 +191.4794499874115,0.0,0.0,0.0,0.0,-0.0040840744 +191.4906940460205,0.0,0.0,0.0,0.0,-0.0040840744 +191.49969291687012,0.0,0.0,0.0,0.0,-0.0040840744 +191.5098819732666,0.0,0.0,0.0,0.0,-0.020734508 +191.52079606056213,0.0,0.0,0.0,0.0,-0.020734508 +191.53007197380066,0.0,0.0,0.0,0.0,-0.020734508 +191.53992104530334,0.0,0.0,0.0,0.0,-0.020734508 +191.54953503608704,0.0,0.0,0.0,0.0,-0.020734508 +191.55963611602783,0.0,0.0,0.0,0.0,-0.011484267 +191.5699450969696,0.0,0.0,0.0,0.0,-0.011484267 +191.58036398887634,0.0,0.0,0.0,0.0,-0.011484267 +191.58967900276184,0.0,0.0,0.0,0.0,-0.011484267 +191.60013699531555,0.0,0.0,0.0,0.0,-0.011484267 +191.61316800117493,0.0,0.0,0.0,0.0,-0.020734508 +191.61976599693298,0.0,0.0,0.0,0.0,-0.020734508 +191.6300950050354,0.0,0.0,0.0,0.0,-0.020734508 +191.63989901542664,0.0,0.0,0.0,0.0,-0.020734508 +191.64948296546936,0.0,0.0,0.0,0.0,-0.020734508 +191.66166305541992,0.0,0.0,0.0,0.0,-0.013334316 +191.67066192626953,0.0,0.0,0.0,0.0,-0.013334316 +191.67965292930603,0.0,0.0,0.0,0.0,-0.013334316 +191.69020795822144,0.0,0.0,0.0,0.0,-0.013334316 +191.70102906227112,0.0,0.0,0.0,0.0,-0.013334316 +191.70940399169922,0.0,0.0,0.0,0.0,-0.013334316 +191.72010397911072,0.0,0.0,0.0,0.0,-0.00038397792 +191.73009991645813,0.0,0.0,0.0,0.0,-0.00038397792 +191.73949694633484,0.0,0.0,0.0,0.0,-0.00038397792 +191.74953413009644,0.0,0.0,0.0,0.0,-0.00038397792 +191.76066303253174,0.0,0.0,0.0,0.0,-0.015184363 +191.76965594291687,0.0,0.0,0.0,0.0,-0.015184363 +191.78000402450562,0.0,0.0,0.0,0.0,-0.015184363 +191.7913920879364,0.0,0.0,0.0,0.0,-0.015184363 +191.8003180027008,0.0,0.0,0.0,0.0,-0.015184363 +191.80966091156006,0.0,0.0,0.0,0.0,-0.002234026 +191.82015204429626,0.0,0.0,0.0,0.0,-0.002234026 +191.83039093017578,0.0,0.0,0.0,0.0,-0.002234026 +191.83943891525269,0.0,0.0,0.0,0.0,-0.002234026 +191.84969806671143,0.0,0.0,0.0,0.0,-0.002234026 +191.85964798927307,0.0,0.0,0.0,0.0,-0.01888446 +191.87034606933594,0.0,0.0,0.0,0.0,-0.01888446 +191.87941193580627,0.0,0.0,0.0,0.0,-0.01888446 +191.88945698738098,0.0,0.0,0.0,0.0,-0.01888446 +191.90045499801636,0.0,0.0,0.0,0.0,-0.01888446 +191.90964007377625,0.0,0.0,0.0,0.0,-0.020734508 +191.92136096954346,0.0,0.0,0.0,0.0,-0.020734508 +191.93007898330688,0.0,0.0,0.0,0.0,-0.020734508 +191.94065403938293,0.0,0.0,0.0,0.0,-0.020734508 +191.94964599609375,0.0,0.0,0.0,0.0,-0.020734508 +191.9604959487915,0.0,0.0,0.0,0.0,-0.00038397792 +191.9694619178772,0.0,0.0,0.0,0.0,-0.00038397792 +191.98185992240906,0.0,0.0,0.0,0.0,-0.00038397792 +191.99083495140076,0.0,0.0,0.0,0.0,-0.00038397792 +191.99982690811157,0.0,0.0,0.0,0.0,-0.00038397792 +192.0096459388733,0.0,0.0,0.0,0.0,-0.011484267 +192.0213520526886,0.0,0.0,0.0,0.0,-0.011484267 +192.0300829410553,0.0,0.0,0.0,0.0,-0.011484267 +192.03965997695923,0.0,0.0,0.0,0.0,-0.011484267 +192.0497190952301,0.0,0.0,0.0,0.0,-0.011484267 +192.05959510803223,0.0,0.0,0.0,0.0,-0.013334316 +192.07171392440796,0.0,0.0,0.0,0.0,-0.013334316 +192.08068108558655,0.0,0.0,0.0,0.0,-0.013334316 +192.0896611213684,0.0,0.0,0.0,0.0,-0.013334316 +192.09949612617493,0.0,0.0,0.0,0.0,-0.013334316 +192.10964703559875,0.0,0.0,0.0,0.0,-0.013334316 +192.12065291404724,0.0,0.0,0.0,0.0,-0.013334316 +192.1296570301056,0.0,0.0,0.0,0.0,-0.013334316 +192.1407070159912,0.0,0.0,0.0,0.0,-0.013334316 +192.1495270729065,0.0,0.0,0.0,0.0,-0.013334316 +192.1598460674286,0.0,0.0,0.0,0.0,-0.011484267 +192.17051696777344,0.0,0.0,0.0,0.0,-0.011484267 +192.17948508262634,0.0,0.0,0.0,0.0,-0.011484267 +192.19244408607483,0.0,0.0,0.0,0.0,-0.011484267 +192.20137095451355,0.0,0.0,0.0,0.0,-0.011484267 +192.20964813232422,0.0,0.0,0.0,0.0,-0.022584556 +192.21963906288147,0.0,0.0,0.0,0.0,-0.022584556 +192.2295320034027,0.0,0.0,0.0,0.0,-0.022584556 +192.23979091644287,0.0,0.0,0.0,0.0,-0.022584556 +192.24972200393677,0.0,0.0,0.0,0.0,-0.022584556 +192.26035809516907,0.0,0.0,0.0,0.0,-0.0077841706 +192.2726891040802,0.0,0.0,0.0,0.0,-0.0077841706 +192.27978706359863,0.0,0.0,0.0,0.0,-0.0077841706 +192.29051899909973,0.0,0.0,0.0,0.0,-0.0077841706 +192.29943799972534,0.0,0.0,0.0,0.0,-0.0077841706 +192.30963802337646,0.0,0.0,0.0,0.0,-0.0077841706 +192.32090711593628,0.0,0.0,0.0,0.0,-0.011484267 +192.3299069404602,0.0,0.0,0.0,0.0,-0.011484267 +192.3412001132965,0.0,0.0,0.0,0.0,-0.011484267 +192.34955596923828,0.0,0.0,0.0,0.0,-0.011484267 +192.35958099365234,0.0,0.0,0.0,0.0,-0.0040840744 +192.3707411289215,0.0,0.0,0.0,0.0,-0.0040840744 +192.3796510696411,0.0,0.0,0.0,0.0,-0.0040840744 +192.38946509361267,0.0,0.0,0.0,0.0,-0.0040840744 +192.39963793754578,0.0,0.0,0.0,0.0,-0.0040840744 +192.41084694862366,0.0,0.0,0.0,0.0,-0.013334316 +192.42000794410706,0.0,0.0,0.0,0.0,-0.013334316 +192.43007493019104,0.0,0.0,0.0,0.0,-0.013334316 +192.43999600410461,0.0,0.0,0.0,0.0,-0.013334316 +192.44973802566528,0.0,0.0,0.0,0.0,-0.013334316 +192.459890127182,0.0,0.0,0.0,0.0,-0.011484267 +192.47162413597107,0.0,0.0,0.0,0.0,-0.011484267 +192.4806249141693,0.0,0.0,0.0,0.0,-0.011484267 +192.4896171092987,0.0,0.0,0.0,0.0,-0.011484267 +192.50108313560486,0.0,0.0,0.0,0.0,-0.011484267 +192.50943994522095,0.0,0.0,0.0,0.0,-0.002234026 +192.52011108398438,0.0,0.0,0.0,0.0,-0.002234026 +192.52984404563904,0.0,0.0,0.0,0.0,-0.002234026 +192.5401430130005,0.0,0.0,0.0,0.0,-0.002234026 +192.5495629310608,0.0,0.0,0.0,0.0,-0.002234026 +192.56162905693054,0.0,0.0,0.0,0.0,-0.011484267 +192.56949090957642,0.0,0.0,0.0,0.0,-0.011484267 +192.5796320438385,0.0,0.0,0.0,0.0,-0.011484267 +192.59118795394897,0.0,0.0,0.0,0.0,-0.011484267 +192.60020399093628,0.0,0.0,0.0,0.0,-0.011484267 +192.610454082489,0.0,0.0,0.0,0.0,-0.03183481 +192.61966013908386,0.0,0.0,0.0,0.0,-0.03183481 +192.62967109680176,0.0,0.0,0.0,0.0,-0.03183481 +192.6426510810852,0.0,0.0,0.0,0.0,-0.03183481 +192.64969396591187,0.0,0.0,0.0,0.0,-0.03183481 +192.6606249809265,0.0,0.0,0.0,0.0,-0.011484267 +192.66962909698486,0.0,0.0,0.0,0.0,-0.011484267 +192.6800730228424,0.0,0.0,0.0,0.0,-0.011484267 +192.6902871131897,0.0,0.0,0.0,0.0,-0.011484267 +192.70056295394897,0.0,0.0,0.0,0.0,-0.011484267 +192.7095329761505,0.0,0.0,0.0,0.0,-0.011484267 +192.71977496147156,0.0,0.0,0.0,0.0,-0.011484267 +192.73009300231934,0.0,0.0,0.0,0.0,-0.011484267 +192.7415280342102,0.0,0.0,0.0,0.0,-0.011484267 +192.74967312812805,0.0,0.0,0.0,0.0,-0.011484267 +192.75962591171265,0.0,0.0,0.0,0.0,0.031066857 +192.77138996124268,0.0,0.0,0.0,0.0,0.031066857 +192.7797589302063,0.0,0.0,0.0,0.0,0.031066857 +192.7893989086151,0.0,0.0,0.0,0.0,0.031066857 +192.79939913749695,0.0,0.0,0.0,0.0,0.031066857 +192.8096649646759,0.0,0.0,0.0,0.0,-0.033684865 +192.82051706314087,0.0,0.0,0.0,0.0,-0.033684865 +192.83007097244263,0.0,0.0,0.0,0.0,-0.033684865 +192.84065413475037,0.0,0.0,0.0,0.0,-0.033684865 +192.84963011741638,0.0,0.0,0.0,0.0,-0.033684865 +192.8611719608307,0.0,0.0,0.0,0.0,-0.009634218 +192.8700771331787,0.0,0.0,0.0,0.0,-0.009634218 +192.8794870376587,0.0,0.0,0.0,0.0,-0.009634218 +192.894464969635,0.0,0.0,0.0,0.0,-0.009634218 +192.90363097190857,0.0,0.0,0.0,0.0,-0.009634218 +192.9096610546112,0.0,0.0,0.0,0.0,-0.029984765 +192.92137598991394,0.0,0.0,0.0,0.0,-0.029984765 +192.92997002601624,0.0,0.0,0.0,0.0,-0.029984765 +192.93964505195618,0.0,0.0,0.0,0.0,-0.029984765 +192.94958806037903,0.0,0.0,0.0,0.0,-0.029984765 +192.9605851173401,0.0,0.0,0.0,0.0,0.0014660703 +192.96960496902466,0.0,0.0,0.0,0.0,0.0014660703 +192.9846420288086,0.0,0.0,0.0,0.0,0.0014660703 +192.99364805221558,0.0,0.0,0.0,0.0,0.0014660703 +193.00262808799744,0.0,0.0,0.0,0.0,0.0014660703 +193.00970196723938,0.0,0.0,0.0,0.0,0.0014660703 +193.02019095420837,0.0,0.0,0.0,0.0,-0.022584556 +193.0296311378479,0.0,0.0,0.0,0.0,-0.022584556 +193.0395541191101,0.0,0.0,0.0,0.0,-0.022584556 +193.04981207847595,0.0,0.0,0.0,0.0,-0.022584556 +193.05971002578735,0.0,0.0,0.0,0.0,-0.011484267 +193.07463097572327,0.0,0.0,0.0,0.0,-0.011484267 +193.08268308639526,0.0,0.0,0.0,0.0,-0.011484267 +193.09264707565308,0.0,0.0,0.0,0.0,-0.011484267 +193.10164093971252,0.0,0.0,0.0,0.0,-0.011484267 +193.10965991020203,0.0,0.0,0.0,0.0,-0.015184363 +193.11965894699097,0.0,0.0,0.0,0.0,-0.015184363 +193.12964510917664,0.0,0.0,0.0,0.0,-0.015184363 +193.13970398902893,0.0,0.0,0.0,0.0,-0.015184363 +193.14957213401794,0.0,0.0,0.0,0.0,-0.015184363 +193.16223311424255,0.0,0.0,0.0,0.0,-0.002234026 +193.17007207870483,0.0,0.0,0.0,0.0,-0.002234026 +193.18120098114014,0.0,0.0,0.0,0.0,-0.002234026 +193.1910331249237,0.0,0.0,0.0,0.0,-0.002234026 +193.1999659538269,0.0,0.0,0.0,0.0,-0.002234026 +193.20965194702148,0.0,0.0,0.0,0.0,-0.002234026 +193.2213909626007,0.0,0.0,0.0,0.0,-0.015184363 +193.23012900352478,0.0,0.0,0.0,0.0,-0.015184363 +193.23969912528992,0.0,0.0,0.0,0.0,-0.015184363 +193.24971795082092,0.0,0.0,0.0,0.0,-0.015184363 +193.26041197776794,0.0,0.0,0.0,0.0,-0.0077841706 +193.2697150707245,0.0,0.0,0.0,0.0,-0.0077841706 +193.28018593788147,0.0,0.0,0.0,0.0,-0.0077841706 +193.29065799713135,0.0,0.0,0.0,0.0,-0.0077841706 +193.299654006958,0.0,0.0,0.0,0.0,-0.0077841706 +193.30965304374695,0.0,0.0,0.0,0.0,0.0070162313 +193.32027792930603,0.0,0.0,0.0,0.0,0.0070162313 +193.32953310012817,0.0,0.0,0.0,0.0,0.0070162313 +193.34214806556702,0.0,0.0,0.0,0.0,0.0070162313 +193.34957313537598,0.0,0.0,0.0,0.0,0.0070162313 +193.36042404174805,0.0,0.0,0.0,0.0,-0.022584556 +193.36968207359314,0.0,0.0,0.0,0.0,-0.022584556 +193.38068199157715,0.0,0.0,0.0,0.0,-0.022584556 +193.3896770477295,0.0,0.0,0.0,0.0,-0.022584556 +193.39970302581787,0.0,0.0,0.0,0.0,-0.022584556 +193.4103970527649,0.0,0.0,0.0,0.0,-0.009634218 +193.42005109786987,0.0,0.0,0.0,0.0,-0.009634218 +193.42977094650269,0.0,0.0,0.0,0.0,-0.009634218 +193.44065713882446,0.0,0.0,0.0,0.0,-0.009634218 +193.44956493377686,0.0,0.0,0.0,0.0,-0.009634218 +193.46168613433838,0.0,0.0,0.0,0.0,-0.0040840744 +193.47068691253662,0.0,0.0,0.0,0.0,-0.0040840744 +193.4796850681305,0.0,0.0,0.0,0.0,-0.0040840744 +193.49124908447266,0.0,0.0,0.0,0.0,-0.0040840744 +193.50024509429932,0.0,0.0,0.0,0.0,-0.0040840744 +193.51017212867737,0.0,0.0,0.0,0.0,-0.020734508 +193.52087593078613,0.0,0.0,0.0,0.0,-0.020734508 +193.52973198890686,0.0,0.0,0.0,0.0,-0.020734508 +193.5395529270172,0.0,0.0,0.0,0.0,-0.020734508 +193.54959201812744,0.0,0.0,0.0,0.0,-0.020734508 +193.56071400642395,0.0,0.0,0.0,0.0,-0.026284654 +193.569678068161,0.0,0.0,0.0,0.0,-0.026284654 +193.57997393608093,0.0,0.0,0.0,0.0,-0.026284654 +193.59008693695068,0.0,0.0,0.0,0.0,-0.026284654 +193.6002140045166,0.0,0.0,0.0,0.0,-0.026284654 +193.6100389957428,0.0,0.0,0.0,0.0,-0.00038397792 +193.62093305587769,0.0,0.0,0.0,0.0,-0.00038397792 +193.63012599945068,0.0,0.0,0.0,0.0,-0.00038397792 +193.64170002937317,0.0,0.0,0.0,0.0,-0.00038397792 +193.64974904060364,0.0,0.0,0.0,0.0,-0.00038397792 +193.6596999168396,0.0,0.0,0.0,0.0,0.0014660703 +193.66985297203064,0.0,0.0,0.0,0.0,0.0014660703 +193.67990112304688,0.0,0.0,0.0,0.0,0.0014660703 +193.6902630329132,0.0,0.0,0.0,0.0,0.0014660703 +193.69938802719116,0.0,0.0,0.0,0.0,0.0014660703 +193.7135260105133,0.0,0.0,0.0,0.0,-0.0040840744 +193.72140407562256,0.0,0.0,0.0,0.0,-0.0040840744 +193.73011994361877,0.0,0.0,0.0,0.0,-0.0040840744 +193.74069499969482,0.0,0.0,0.0,0.0,-0.0040840744 +193.74969601631165,0.0,0.0,0.0,0.0,-0.0040840744 +193.76076412200928,0.0,0.0,0.0,0.0,-0.002234026 +193.76975202560425,0.0,0.0,0.0,0.0,-0.002234026 +193.7794210910797,0.0,0.0,0.0,0.0,-0.002234026 +193.78981709480286,0.0,0.0,0.0,0.0,-0.002234026 +193.80369305610657,0.0,0.0,0.0,0.0,-0.002234026 +193.809632062912,0.0,0.0,0.0,0.0,-0.013334316 +193.82002592086792,0.0,0.0,0.0,0.0,-0.013334316 +193.83012700080872,0.0,0.0,0.0,0.0,-0.013334316 +193.83966207504272,0.0,0.0,0.0,0.0,-0.013334316 +193.84975504875183,0.0,0.0,0.0,0.0,-0.013334316 +193.8595929145813,0.0,0.0,0.0,0.0,-0.0077841706 +193.87046694755554,0.0,0.0,0.0,0.0,-0.0077841706 +193.87946391105652,0.0,0.0,0.0,0.0,-0.0077841706 +193.89139199256897,0.0,0.0,0.0,0.0,-0.0077841706 +193.90267705917358,0.0,0.0,0.0,0.0,-0.0077841706 +193.90967512130737,0.0,0.0,0.0,0.0,-0.029984765 +193.91985511779785,0.0,0.0,0.0,0.0,-0.029984765 +193.92950105667114,0.0,0.0,0.0,0.0,-0.029984765 +193.93984413146973,0.0,0.0,0.0,0.0,-0.029984765 +193.94944310188293,0.0,0.0,0.0,0.0,-0.029984765 +193.96053504943848,0.0,0.0,0.0,0.0,-0.0040840744 +193.9695689678192,0.0,0.0,0.0,0.0,-0.0040840744 +193.9836859703064,0.0,0.0,0.0,0.0,-0.0040840744 +193.98966193199158,0.0,0.0,0.0,0.0,-0.0040840744 +194.00167608261108,0.0,0.0,0.0,0.0,-0.0040840744 +194.00968313217163,0.0,0.0,0.0,0.0,-0.013334316 +194.0196521282196,0.0,0.0,0.0,0.0,-0.013334316 +194.0301010608673,0.0,0.0,0.0,0.0,-0.013334316 +194.04161190986633,0.0,0.0,0.0,0.0,-0.013334316 +194.04969811439514,0.0,0.0,0.0,0.0,-0.013334316 +194.05964303016663,0.0,0.0,0.0,0.0,-0.011484267 +194.07153511047363,0.0,0.0,0.0,0.0,-0.011484267 +194.07948994636536,0.0,0.0,0.0,0.0,-0.011484267 +194.09140396118164,0.0,0.0,0.0,0.0,-0.011484267 +194.1003019809723,0.0,0.0,0.0,0.0,-0.011484267 +194.10965704917908,0.0,0.0,0.0,0.0,-0.011484267 +194.12017393112183,0.0,0.0,0.0,0.0,-0.015184363 +194.13012099266052,0.0,0.0,0.0,0.0,-0.015184363 +194.14073300361633,0.0,0.0,0.0,0.0,-0.015184363 +194.14973211288452,0.0,0.0,0.0,0.0,-0.015184363 +194.16173005104065,0.0,0.0,0.0,0.0,0.0014660703 +194.170068025589,0.0,0.0,0.0,0.0,0.0014660703 +194.17987895011902,0.0,0.0,0.0,0.0,0.0014660703 +194.18944311141968,0.0,0.0,0.0,0.0,0.0014660703 +194.1996190547943,0.0,0.0,0.0,0.0,0.0014660703 +194.2096610069275,0.0,0.0,0.0,0.0,-0.013334316 +194.22141098976135,0.0,0.0,0.0,0.0,-0.013334316 +194.22968912124634,0.0,0.0,0.0,0.0,-0.013334316 +194.23983502388,0.0,0.0,0.0,0.0,-0.013334316 +194.25154399871826,0.0,0.0,0.0,0.0,-0.013334316 +194.26073813438416,0.0,0.0,0.0,0.0,-0.002234026 +194.2696659564972,0.0,0.0,0.0,0.0,-0.002234026 +194.280620098114,0.0,0.0,0.0,0.0,-0.002234026 +194.28961610794067,0.0,0.0,0.0,0.0,-0.002234026 +194.29986691474915,0.0,0.0,0.0,0.0,-0.002234026 +194.30968713760376,0.0,0.0,0.0,0.0,-0.020734508 +194.32090592384338,0.0,0.0,0.0,0.0,-0.020734508 +194.32991313934326,0.0,0.0,0.0,0.0,-0.020734508 +194.3409230709076,0.0,0.0,0.0,0.0,-0.020734508 +194.34973907470703,0.0,0.0,0.0,0.0,-0.020734508 +194.3607840538025,0.0,0.0,0.0,0.0,-0.009634218 +194.37062096595764,0.0,0.0,0.0,0.0,-0.009634218 +194.37960505485535,0.0,0.0,0.0,0.0,-0.009634218 +194.38970708847046,0.0,0.0,0.0,0.0,-0.009634218 +194.4019570350647,0.0,0.0,0.0,0.0,-0.009634218 +194.41096901893616,0.0,0.0,0.0,0.0,-0.013334316 +194.41997814178467,0.0,0.0,0.0,0.0,-0.013334316 +194.4300730228424,0.0,0.0,0.0,0.0,-0.013334316 +194.43988299369812,0.0,0.0,0.0,0.0,-0.013334316 +194.4516179561615,0.0,0.0,0.0,0.0,-0.013334316 +194.46060395240784,0.0,0.0,0.0,0.0,0.0014660703 +194.46960711479187,0.0,0.0,0.0,0.0,0.0014660703 +194.47956013679504,0.0,0.0,0.0,0.0,0.0014660703 +194.49187111854553,0.0,0.0,0.0,0.0,0.0014660703 +194.50104093551636,0.0,0.0,0.0,0.0,0.0014660703 +194.51004004478455,0.0,0.0,0.0,0.0,-0.0040840744 +194.5213921070099,0.0,0.0,0.0,0.0,-0.0040840744 +194.53015398979187,0.0,0.0,0.0,0.0,-0.0040840744 +194.5415940284729,0.0,0.0,0.0,0.0,-0.0040840744 +194.54976201057434,0.0,0.0,0.0,0.0,-0.0040840744 +194.55959105491638,0.0,0.0,0.0,0.0,-0.00038397792 +194.5694239139557,0.0,0.0,0.0,0.0,-0.00038397792 +194.57958698272705,0.0,0.0,0.0,0.0,-0.00038397792 +194.59049797058105,0.0,0.0,0.0,0.0,-0.00038397792 +194.59939813613892,0.0,0.0,0.0,0.0,-0.00038397792 +194.6096179485321,0.0,0.0,0.0,0.0,-0.009634218 +194.62140107154846,0.0,0.0,0.0,0.0,-0.009634218 +194.63013195991516,0.0,0.0,0.0,0.0,-0.009634218 +194.64061212539673,0.0,0.0,0.0,0.0,-0.009634218 +194.64961910247803,0.0,0.0,0.0,0.0,-0.009634218 +194.66151404380798,0.0,0.0,0.0,0.0,-0.013334316 +194.67071294784546,0.0,0.0,0.0,0.0,-0.013334316 +194.6796259880066,0.0,0.0,0.0,0.0,-0.013334316 +194.6902129650116,0.0,0.0,0.0,0.0,-0.013334316 +194.69967007637024,0.0,0.0,0.0,0.0,-0.013334316 +194.71034502983093,0.0,0.0,0.0,0.0,-0.026284654 +194.72138595581055,0.0,0.0,0.0,0.0,-0.026284654 +194.7297670841217,0.0,0.0,0.0,0.0,-0.026284654 +194.73960494995117,0.0,0.0,0.0,0.0,-0.026284654 +194.74975299835205,0.0,0.0,0.0,0.0,-0.026284654 +194.75985407829285,0.0,0.0,0.0,0.0,-0.0077841706 +194.77073502540588,0.0,0.0,0.0,0.0,-0.0077841706 +194.7802529335022,0.0,0.0,0.0,0.0,-0.0077841706 +194.79364895820618,0.0,0.0,0.0,0.0,-0.0077841706 +194.80261492729187,0.0,0.0,0.0,0.0,-0.0077841706 +194.80966997146606,0.0,0.0,0.0,0.0,-0.01888446 +194.820631980896,0.0,0.0,0.0,0.0,-0.01888446 +194.8296480178833,0.0,0.0,0.0,0.0,-0.01888446 +194.84007692337036,0.0,0.0,0.0,0.0,-0.01888446 +194.85007405281067,0.0,0.0,0.0,0.0,-0.01888446 +194.86131596565247,0.0,0.0,0.0,0.0,-0.009634218 +194.87029695510864,0.0,0.0,0.0,0.0,-0.009634218 +194.8798909187317,0.0,0.0,0.0,0.0,-0.009634218 +194.8909149169922,0.0,0.0,0.0,0.0,-0.009634218 +194.90162897109985,0.0,0.0,0.0,0.0,-0.009634218 +194.9096851348877,0.0,0.0,0.0,0.0,-0.011484267 +194.91965413093567,0.0,0.0,0.0,0.0,-0.011484267 +194.92958998680115,0.0,0.0,0.0,0.0,-0.011484267 +194.9423749446869,0.0,0.0,0.0,0.0,-0.011484267 +194.94976806640625,0.0,0.0,0.0,0.0,-0.011484267 +194.95991802215576,0.0,0.0,0.0,0.0,-0.011484267 +194.969388961792,0.0,0.0,0.0,0.0,-0.011484267 +194.9826431274414,0.0,0.0,0.0,0.0,-0.011484267 +194.99162197113037,0.0,0.0,0.0,0.0,-0.011484267 +195.00006294250488,0.0,0.0,0.0,0.0,-0.011484267 +195.0094690322876,0.0,0.0,0.0,0.0,-0.011484267 +195.0198531150818,0.0,0.0,0.0,0.0,-0.013334316 +195.02992606163025,0.0,0.0,0.0,0.0,-0.013334316 +195.04146003723145,0.0,0.0,0.0,0.0,-0.013334316 +195.05046606063843,0.0,0.0,0.0,0.0,-0.013334316 +195.05946612358093,0.0,0.0,0.0,0.0,-0.0077841706 +195.0718400478363,0.0,0.0,0.0,0.0,-0.0077841706 +195.08078002929688,0.0,0.0,0.0,0.0,-0.0077841706 +195.08967900276184,0.0,0.0,0.0,0.0,-0.0077841706 +195.09961414337158,0.0,0.0,0.0,0.0,-0.0077841706 +195.10942602157593,0.0,0.0,0.0,0.0,-0.0077841706 +195.12031197547913,0.0,0.0,0.0,0.0,-0.015184363 +195.1301510334015,0.0,0.0,0.0,0.0,-0.015184363 +195.1405529975891,0.0,0.0,0.0,0.0,-0.015184363 +195.1495749950409,0.0,0.0,0.0,0.0,-0.015184363 +195.1609981060028,0.0,0.0,0.0,0.0,-0.024434604 +195.16992211341858,0.0,0.0,0.0,0.0,-0.024434604 +195.1804759502411,0.0,0.0,0.0,0.0,-0.024434604 +195.18946599960327,0.0,0.0,0.0,0.0,-0.024434604 +195.20361709594727,0.0,0.0,0.0,0.0,-0.024434604 +195.2096779346466,0.0,0.0,0.0,0.0,-0.020734508 +195.21991109848022,0.0,0.0,0.0,0.0,-0.020734508 +195.2295970916748,0.0,0.0,0.0,0.0,-0.020734508 +195.23965692520142,0.0,0.0,0.0,0.0,-0.020734508 +195.25016903877258,0.0,0.0,0.0,0.0,-0.020734508 +195.2613410949707,0.0,0.0,0.0,0.0,-0.11693706 +195.2703459262848,0.0,0.0,0.0,0.0,-0.11693706 +195.27964901924133,0.0,0.0,0.0,0.0,-0.11693706 +195.29371404647827,0.0,0.0,0.0,0.0,-0.11693706 +195.3027310371399,0.0,0.0,0.0,0.0,-0.11693706 +195.30968809127808,0.0,0.0,0.0,0.0,0.021816617 +195.32073211669922,0.0,0.0,0.0,0.0,0.021816617 +195.32975101470947,0.0,0.0,0.0,0.0,0.021816617 +195.34222793579102,0.0,0.0,0.0,0.0,0.021816617 +195.34979009628296,0.0,0.0,0.0,0.0,0.021816617 +195.36018705368042,0.0,0.0,0.0,0.0,-0.0077841706 +195.36965203285217,0.0,0.0,0.0,0.0,-0.0077841706 +195.3824610710144,0.0,0.0,0.0,0.0,-0.0077841706 +195.39056396484375,0.0,0.0,0.0,0.0,-0.0077841706 +195.40166997909546,0.0,0.0,0.0,0.0,-0.0077841706 +195.40966606140137,0.0,0.0,0.0,0.0,-0.022584556 +195.41949009895325,0.0,0.0,0.0,0.0,-0.022584556 +195.43013501167297,0.0,0.0,0.0,0.0,-0.022584556 +195.4410490989685,0.0,0.0,0.0,0.0,-0.022584556 +195.4500651359558,0.0,0.0,0.0,0.0,-0.022584556 +195.45962595939636,0.0,0.0,0.0,0.0,-0.013334316 +195.46976900100708,0.0,0.0,0.0,0.0,-0.013334316 +195.4798879623413,0.0,0.0,0.0,0.0,-0.013334316 +195.49080610275269,0.0,0.0,0.0,0.0,-0.013334316 +195.4997010231018,0.0,0.0,0.0,0.0,-0.013334316 +195.5099470615387,0.0,0.0,0.0,0.0,-0.020734508 +195.52142691612244,0.0,0.0,0.0,0.0,-0.020734508 +195.5296289920807,0.0,0.0,0.0,0.0,-0.020734508 +195.53989911079407,0.0,0.0,0.0,0.0,-0.020734508 +195.54960203170776,0.0,0.0,0.0,0.0,-0.020734508 +195.5620939731598,0.0,0.0,0.0,0.0,-0.002234026 +195.57061100006104,0.0,0.0,0.0,0.0,-0.002234026 +195.57990097999573,0.0,0.0,0.0,0.0,-0.002234026 +195.59101104736328,0.0,0.0,0.0,0.0,-0.002234026 +195.60003304481506,0.0,0.0,0.0,0.0,-0.002234026 +195.6099090576172,0.0,0.0,0.0,0.0,-0.011484267 +195.61988711357117,0.0,0.0,0.0,0.0,-0.011484267 +195.62976813316345,0.0,0.0,0.0,0.0,-0.011484267 +195.6395881175995,0.0,0.0,0.0,0.0,-0.011484267 +195.65019607543945,0.0,0.0,0.0,0.0,-0.011484267 +195.6601209640503,0.0,0.0,0.0,0.0,-0.0040840744 +195.67186212539673,0.0,0.0,0.0,0.0,-0.0040840744 +195.6811101436615,0.0,0.0,0.0,0.0,-0.0040840744 +195.69009709358215,0.0,0.0,0.0,0.0,-0.0040840744 +195.70167207717896,0.0,0.0,0.0,0.0,-0.0040840744 +195.7101809978485,0.0,0.0,0.0,0.0,-0.009634218 +195.7196171283722,0.0,0.0,0.0,0.0,-0.009634218 +195.7293930053711,0.0,0.0,0.0,0.0,-0.009634218 +195.73991012573242,0.0,0.0,0.0,0.0,-0.009634218 +195.74978303909302,0.0,0.0,0.0,0.0,-0.009634218 +195.75960898399353,0.0,0.0,0.0,0.0,0.01811652 +195.77117705345154,0.0,0.0,0.0,0.0,0.01811652 +195.7801730632782,0.0,0.0,0.0,0.0,0.01811652 +195.791522026062,0.0,0.0,0.0,0.0,0.01811652 +195.80024814605713,0.0,0.0,0.0,0.0,0.01811652 +195.80947303771973,0.0,0.0,0.0,0.0,0.01811652 +195.81957602500916,0.0,0.0,0.0,0.0,-0.0040840744 +195.82946109771729,0.0,0.0,0.0,0.0,-0.0040840744 +195.84122395515442,0.0,0.0,0.0,0.0,-0.0040840744 +195.84961891174316,0.0,0.0,0.0,0.0,-0.0040840744 +195.86041808128357,0.0,0.0,0.0,0.0,-0.015184363 +195.86992502212524,0.0,0.0,0.0,0.0,-0.015184363 +195.88136291503906,0.0,0.0,0.0,0.0,-0.015184363 +195.89035296440125,0.0,0.0,0.0,0.0,-0.015184363 +195.90059900283813,0.0,0.0,0.0,0.0,-0.015184363 +195.90959000587463,0.0,0.0,0.0,0.0,-0.015184363 +195.9214470386505,0.0,0.0,0.0,0.0,0.014416425 +195.93015098571777,0.0,0.0,0.0,0.0,0.014416425 +195.94226598739624,0.0,0.0,0.0,0.0,0.014416425 +195.9497890472412,0.0,0.0,0.0,0.0,0.014416425 +195.96030592918396,0.0,0.0,0.0,0.0,0.014416425 +195.96956491470337,0.0,0.0,0.0,0.0,0.014416425 +195.98021507263184,0.0,0.0,0.0,0.0,0.014416425 +195.98990893363953,0.0,0.0,0.0,0.0,0.014416425 +195.99960899353027,0.0,0.0,0.0,0.0,0.014416425 +196.0096950531006,0.0,0.0,0.0,0.0,-0.044785153 +196.0233850479126,0.0,0.0,0.0,0.0,-0.044785153 +196.02963209152222,0.0,0.0,0.0,0.0,-0.044785153 +196.04030799865723,0.0,0.0,0.0,0.0,-0.044785153 +196.0503900051117,0.0,0.0,0.0,0.0,-0.044785153 +196.05938911437988,0.0,0.0,0.0,0.0,0.0014660703 +196.07008600234985,0.0,0.0,0.0,0.0,0.0014660703 +196.07946300506592,0.0,0.0,0.0,0.0,0.0014660703 +196.08960103988647,0.0,0.0,0.0,0.0,0.0014660703 +196.10443902015686,0.0,0.0,0.0,0.0,0.0014660703 +196.10969495773315,0.0,0.0,0.0,0.0,-0.015184363 +196.11975193023682,0.0,0.0,0.0,0.0,-0.015184363 +196.1299171447754,0.0,0.0,0.0,0.0,-0.015184363 +196.14046597480774,0.0,0.0,0.0,0.0,-0.015184363 +196.14945697784424,0.0,0.0,0.0,0.0,-0.015184363 +196.15996599197388,0.0,0.0,0.0,0.0,-0.01888446 +196.17060112953186,0.0,0.0,0.0,0.0,-0.01888446 +196.17959904670715,0.0,0.0,0.0,0.0,-0.01888446 +196.19325995445251,0.0,0.0,0.0,0.0,-0.01888446 +196.19949007034302,0.0,0.0,0.0,0.0,-0.01888446 +196.2097029685974,0.0,0.0,0.0,0.0,0.012566376 +196.2209029197693,0.0,0.0,0.0,0.0,0.012566376 +196.23016214370728,0.0,0.0,0.0,0.0,0.012566376 +196.2394540309906,0.0,0.0,0.0,0.0,0.012566376 +196.24986600875854,0.0,0.0,0.0,0.0,0.012566376 +196.25995993614197,0.0,0.0,0.0,0.0,-0.011484267 +196.2696099281311,0.0,0.0,0.0,0.0,-0.011484267 +196.2806351184845,0.0,0.0,0.0,0.0,-0.011484267 +196.29182696342468,0.0,0.0,0.0,0.0,-0.011484267 +196.3018410205841,0.0,0.0,0.0,0.0,-0.011484267 +196.30970907211304,0.0,0.0,0.0,0.0,-0.026284654 +196.31966400146484,0.0,0.0,0.0,0.0,-0.026284654 +196.32960605621338,0.0,0.0,0.0,0.0,-0.026284654 +196.33972096443176,0.0,0.0,0.0,0.0,-0.026284654 +196.34980010986328,0.0,0.0,0.0,0.0,-0.026284654 +196.35960412025452,0.0,0.0,0.0,0.0,-0.01888446 +196.3731551170349,0.0,0.0,0.0,0.0,-0.01888446 +196.37942695617676,0.0,0.0,0.0,0.0,-0.01888446 +196.389986038208,0.0,0.0,0.0,0.0,-0.01888446 +196.39987707138062,0.0,0.0,0.0,0.0,-0.01888446 +196.41069197654724,0.0,0.0,0.0,0.0,-0.002234026 +196.4197061061859,0.0,0.0,0.0,0.0,-0.002234026 +196.4295630455017,0.0,0.0,0.0,0.0,-0.002234026 +196.44062304496765,0.0,0.0,0.0,0.0,-0.002234026 +196.4496030807495,0.0,0.0,0.0,0.0,-0.002234026 +196.4611301422119,0.0,0.0,0.0,0.0,-0.026284654 +196.46940207481384,0.0,0.0,0.0,0.0,-0.026284654 +196.48011994361877,0.0,0.0,0.0,0.0,-0.026284654 +196.49176406860352,0.0,0.0,0.0,0.0,-0.026284654 +196.50076007843018,0.0,0.0,0.0,0.0,-0.026284654 +196.5097780227661,0.0,0.0,0.0,0.0,-0.0040840744 +196.51942801475525,0.0,0.0,0.0,0.0,-0.0040840744 +196.53016114234924,0.0,0.0,0.0,0.0,-0.0040840744 +196.5396020412445,0.0,0.0,0.0,0.0,-0.0040840744 +196.54964303970337,0.0,0.0,0.0,0.0,-0.0040840744 +196.56035208702087,0.0,0.0,0.0,0.0,-0.0077841706 +196.57037711143494,0.0,0.0,0.0,0.0,-0.0077841706 +196.58105206489563,0.0,0.0,0.0,0.0,-0.0077841706 +196.59083700180054,0.0,0.0,0.0,0.0,-0.0077841706 +196.599858045578,0.0,0.0,0.0,0.0,-0.0077841706 +196.61161398887634,0.0,0.0,0.0,0.0,-0.011484267 +196.61953902244568,0.0,0.0,0.0,0.0,-0.011484267 +196.6296329498291,0.0,0.0,0.0,0.0,-0.011484267 +196.64058303833008,0.0,0.0,0.0,0.0,-0.011484267 +196.6494860649109,0.0,0.0,0.0,0.0,-0.011484267 +196.66051411628723,0.0,0.0,0.0,0.0,-0.0040840744 +196.67192101478577,0.0,0.0,0.0,0.0,-0.0040840744 +196.679584980011,0.0,0.0,0.0,0.0,-0.0040840744 +196.68994307518005,0.0,0.0,0.0,0.0,-0.0040840744 +196.69942593574524,0.0,0.0,0.0,0.0,-0.0040840744 +196.70943403244019,0.0,0.0,0.0,0.0,0.010716328 +196.71964406967163,0.0,0.0,0.0,0.0,0.010716328 +196.72969698905945,0.0,0.0,0.0,0.0,0.010716328 +196.74241399765015,0.0,0.0,0.0,0.0,0.010716328 +196.74981808662415,0.0,0.0,0.0,0.0,0.010716328 +196.7619960308075,0.0,0.0,0.0,0.0,-0.020734508 +196.77101111412048,0.0,0.0,0.0,0.0,-0.020734508 +196.77999711036682,0.0,0.0,0.0,0.0,-0.020734508 +196.79165601730347,0.0,0.0,0.0,0.0,-0.020734508 +196.80064010620117,0.0,0.0,0.0,0.0,-0.020734508 +196.8096640110016,0.0,0.0,0.0,0.0,-0.020734508 +196.8214430809021,0.0,0.0,0.0,0.0,-0.022584556 +196.83016300201416,0.0,0.0,0.0,0.0,-0.022584556 +196.8405089378357,0.0,0.0,0.0,0.0,-0.022584556 +196.8496060371399,0.0,0.0,0.0,0.0,-0.022584556 +196.8608911037445,0.0,0.0,0.0,0.0,-0.041085053 +196.86988592147827,0.0,0.0,0.0,0.0,-0.041085053 +196.88120913505554,0.0,0.0,0.0,0.0,-0.041085053 +196.89015412330627,0.0,0.0,0.0,0.0,-0.041085053 +196.8996639251709,0.0,0.0,0.0,0.0,-0.041085053 +196.90970706939697,0.0,0.0,0.0,0.0,-0.015184363 +196.9238030910492,0.0,0.0,0.0,0.0,-0.015184363 +196.93278312683105,0.0,0.0,0.0,0.0,-0.015184363 +196.94014191627502,0.0,0.0,0.0,0.0,-0.015184363 +196.94972801208496,0.0,0.0,0.0,0.0,-0.015184363 +196.959734916687,0.0,0.0,0.0,0.0,-0.0077841706 +196.9703860282898,0.0,0.0,0.0,0.0,-0.0077841706 +196.98025798797607,0.0,0.0,0.0,0.0,-0.0077841706 +196.98967814445496,0.0,0.0,0.0,0.0,-0.0077841706 +197.00183701515198,0.0,0.0,0.0,0.0,-0.0077841706 +197.00968503952026,0.0,0.0,0.0,0.0,-0.020734508 +197.02145099639893,0.0,0.0,0.0,0.0,-0.020734508 +197.02939295768738,0.0,0.0,0.0,0.0,-0.020734508 +197.04005312919617,0.0,0.0,0.0,0.0,-0.020734508 +197.04960203170776,0.0,0.0,0.0,0.0,-0.020734508 +197.05949902534485,0.0,0.0,0.0,0.0,-0.011484267 +197.07016611099243,0.0,0.0,0.0,0.0,-0.011484267 +197.07969498634338,0.0,0.0,0.0,0.0,-0.011484267 +197.09207105636597,0.0,0.0,0.0,0.0,-0.011484267 +197.1026930809021,0.0,0.0,0.0,0.0,-0.011484267 +197.10968708992004,0.0,0.0,0.0,0.0,-0.01888446 +197.1214120388031,0.0,0.0,0.0,0.0,-0.01888446 +197.1301600933075,0.0,0.0,0.0,0.0,-0.01888446 +197.13946104049683,0.0,0.0,0.0,0.0,-0.01888446 +197.14982795715332,0.0,0.0,0.0,0.0,-0.01888446 +197.1606731414795,0.0,0.0,0.0,0.0,-0.002234026 +197.1696970462799,0.0,0.0,0.0,0.0,-0.002234026 +197.1793990135193,0.0,0.0,0.0,0.0,-0.002234026 +197.19004201889038,0.0,0.0,0.0,0.0,-0.002234026 +197.20121312141418,0.0,0.0,0.0,0.0,-0.002234026 +197.20968103408813,0.0,0.0,0.0,0.0,-0.013334316 +197.21993708610535,0.0,0.0,0.0,0.0,-0.013334316 +197.2301881313324,0.0,0.0,0.0,0.0,-0.013334316 +197.23961091041565,0.0,0.0,0.0,0.0,-0.013334316 +197.25070905685425,0.0,0.0,0.0,0.0,-0.013334316 +197.25968503952026,0.0,0.0,0.0,0.0,-0.01888446 +197.27340006828308,0.0,0.0,0.0,0.0,-0.01888446 +197.28232312202454,0.0,0.0,0.0,0.0,-0.01888446 +197.29123902320862,0.0,0.0,0.0,0.0,-0.01888446 +197.30007600784302,0.0,0.0,0.0,0.0,-0.01888446 +197.30968403816223,0.0,0.0,0.0,0.0,-0.0077841706 +197.32042503356934,0.0,0.0,0.0,0.0,-0.0077841706 +197.32944297790527,0.0,0.0,0.0,0.0,-0.0077841706 +197.34068608283997,0.0,0.0,0.0,0.0,-0.0077841706 +197.34968996047974,0.0,0.0,0.0,0.0,-0.0077841706 +197.36251997947693,0.0,0.0,0.0,0.0,-0.01888446 +197.3714461326599,0.0,0.0,0.0,0.0,-0.01888446 +197.3803391456604,0.0,0.0,0.0,0.0,-0.01888446 +197.39108800888062,0.0,0.0,0.0,0.0,-0.01888446 +197.40008997917175,0.0,0.0,0.0,0.0,-0.01888446 +197.4105179309845,0.0,0.0,0.0,0.0,-0.029984765 +197.41952204704285,0.0,0.0,0.0,0.0,-0.029984765 +197.43008303642273,0.0,0.0,0.0,0.0,-0.029984765 +197.43969011306763,0.0,0.0,0.0,0.0,-0.029984765 +197.44959592819214,0.0,0.0,0.0,0.0,-0.029984765 +197.46055793762207,0.0,0.0,0.0,0.0,-0.029984765 +197.46946501731873,0.0,0.0,0.0,0.0,-0.029984765 +197.4798059463501,0.0,0.0,0.0,0.0,-0.029984765 +197.48993301391602,0.0,0.0,0.0,0.0,-0.029984765 +197.50056910514832,0.0,0.0,0.0,0.0,-0.029984765 +197.50960206985474,0.0,0.0,0.0,0.0,-0.022584556 +197.52071595191956,0.0,0.0,0.0,0.0,-0.022584556 +197.52969908714294,0.0,0.0,0.0,0.0,-0.022584556 +197.5407919883728,0.0,0.0,0.0,0.0,-0.022584556 +197.54969811439514,0.0,0.0,0.0,0.0,-0.022584556 +197.5601511001587,0.0,0.0,0.0,0.0,-0.029984765 +197.57080602645874,0.0,0.0,0.0,0.0,-0.029984765 +197.5797951221466,0.0,0.0,0.0,0.0,-0.029984765 +197.5893919467926,0.0,0.0,0.0,0.0,-0.029984765 +197.59967708587646,0.0,0.0,0.0,0.0,-0.029984765 +197.610680103302,0.0,0.0,0.0,0.0,0.0014660703 +197.61968803405762,0.0,0.0,0.0,0.0,0.0014660703 +197.6293909549713,0.0,0.0,0.0,0.0,0.0014660703 +197.6427080631256,0.0,0.0,0.0,0.0,0.0014660703 +197.65168714523315,0.0,0.0,0.0,0.0,0.0014660703 +197.66012001037598,0.0,0.0,0.0,0.0,0.09951867 +197.66965913772583,0.0,0.0,0.0,0.0,0.09951867 +197.68073105812073,0.0,0.0,0.0,0.0,0.09951867 +197.68974208831787,0.0,0.0,0.0,0.0,0.09951867 +197.7006869316101,0.0,0.0,0.0,0.0,0.09951867 +197.70969009399414,0.0,0.0,0.0,0.0,-0.022584556 +197.7201271057129,0.0,0.0,0.0,0.0,-0.022584556 +197.7325370311737,0.0,0.0,0.0,0.0,-0.022584556 +197.74153208732605,0.0,0.0,0.0,0.0,-0.022584556 +197.74994206428528,0.0,0.0,0.0,0.0,-0.022584556 +197.75950407981873,0.0,0.0,0.0,0.0,0.0070162313 +197.7708020210266,0.0,0.0,0.0,0.0,0.0070162313 +197.77981400489807,0.0,0.0,0.0,0.0,0.0070162313 +197.79019212722778,0.0,0.0,0.0,0.0,0.0070162313 +197.7997169494629,0.0,0.0,0.0,0.0,0.0070162313 +197.80973601341248,0.0,0.0,0.0,0.0,-0.029984765 +197.82015204429626,0.0,0.0,0.0,0.0,-0.029984765 +197.82941508293152,0.0,0.0,0.0,0.0,-0.029984765 +197.8403720855713,0.0,0.0,0.0,0.0,-0.029984765 +197.85119891166687,0.0,0.0,0.0,0.0,-0.029984765 +197.86087012290955,0.0,0.0,0.0,0.0,-0.011484267 +197.86988997459412,0.0,0.0,0.0,0.0,-0.011484267 +197.87945199012756,0.0,0.0,0.0,0.0,-0.011484267 +197.88950204849243,0.0,0.0,0.0,0.0,-0.011484267 +197.90033793449402,0.0,0.0,0.0,0.0,-0.011484267 +197.90973210334778,0.0,0.0,0.0,0.0,-0.011484267 +197.921245098114,0.0,0.0,0.0,0.0,-0.011484267 +197.93016409873962,0.0,0.0,0.0,0.0,-0.011484267 +197.9418489933014,0.0,0.0,0.0,0.0,-0.011484267 +197.94985699653625,0.0,0.0,0.0,0.0,-0.011484267 +197.95965814590454,0.0,0.0,0.0,0.0,-0.011484267 +197.97071814537048,0.0,0.0,0.0,0.0,-0.011484267 +197.97953295707703,0.0,0.0,0.0,0.0,-0.011484267 +197.9902379512787,0.0,0.0,0.0,0.0,-0.011484267 +198.0013780593872,0.0,0.0,0.0,0.0,-0.011484267 +198.00970792770386,0.0,0.0,0.0,0.0,0.012566376 +198.020103931427,0.0,0.0,0.0,0.0,0.012566376 +198.03016304969788,0.0,0.0,0.0,0.0,0.012566376 +198.03990197181702,0.0,0.0,0.0,0.0,0.012566376 +198.0500349998474,0.0,0.0,0.0,0.0,0.012566376 +198.06073594093323,0.0,0.0,0.0,0.0,-0.015184363 +198.0697259902954,0.0,0.0,0.0,0.0,-0.015184363 +198.08018803596497,0.0,0.0,0.0,0.0,-0.015184363 +198.09201192855835,0.0,0.0,0.0,0.0,-0.015184363 +198.09945392608643,0.0,0.0,0.0,0.0,-0.015184363 +198.10971903800964,0.0,0.0,0.0,0.0,-0.024434604 +198.11940002441406,0.0,0.0,0.0,0.0,-0.024434604 +198.1301999092102,0.0,0.0,0.0,0.0,-0.024434604 +198.14011406898499,0.0,0.0,0.0,0.0,-0.024434604 +198.1494460105896,0.0,0.0,0.0,0.0,-0.024434604 +198.15975308418274,0.0,0.0,0.0,0.0,-0.013334316 +198.17072892189026,0.0,0.0,0.0,0.0,-0.013334316 +198.18187999725342,0.0,0.0,0.0,0.0,-0.013334316 +198.19086694717407,0.0,0.0,0.0,0.0,-0.013334316 +198.19982504844666,0.0,0.0,0.0,0.0,-0.013334316 +198.2097201347351,0.0,0.0,0.0,0.0,-0.013334316 +198.22119212150574,0.0,0.0,0.0,0.0,-0.013334316 +198.23022198677063,0.0,0.0,0.0,0.0,-0.013334316 +198.24079012870789,0.0,0.0,0.0,0.0,-0.013334316 +198.2497799396515,0.0,0.0,0.0,0.0,-0.013334316 +198.26275992393494,0.0,0.0,0.0,0.0,-0.011484267 +198.27152609825134,0.0,0.0,0.0,0.0,-0.011484267 +198.27993512153625,0.0,0.0,0.0,0.0,-0.011484267 +198.2894721031189,0.0,0.0,0.0,0.0,-0.011484267 +198.30180597305298,0.0,0.0,0.0,0.0,-0.011484267 +198.30973505973816,0.0,0.0,0.0,0.0,-0.0077841706 +198.3202531337738,0.0,0.0,0.0,0.0,-0.0077841706 +198.32939791679382,0.0,0.0,0.0,0.0,-0.0077841706 +198.33979511260986,0.0,0.0,0.0,0.0,-0.0077841706 +198.34986114501953,0.0,0.0,0.0,0.0,-0.0077841706 +198.3607530593872,0.0,0.0,0.0,0.0,-0.022584556 +198.36967706680298,0.0,0.0,0.0,0.0,-0.022584556 +198.37957501411438,0.0,0.0,0.0,0.0,-0.022584556 +198.389564037323,0.0,0.0,0.0,0.0,-0.022584556 +198.40131998062134,0.0,0.0,0.0,0.0,-0.022584556 +198.4103319644928,0.0,0.0,0.0,0.0,-0.022584556 +198.41943407058716,0.0,0.0,0.0,0.0,-0.022584556 +198.42981100082397,0.0,0.0,0.0,0.0,-0.022584556 +198.4408450126648,0.0,0.0,0.0,0.0,-0.022584556 +198.44987201690674,0.0,0.0,0.0,0.0,-0.022584556 +198.4604480266571,0.0,0.0,0.0,0.0,0.0014660703 +198.46943712234497,0.0,0.0,0.0,0.0,0.0014660703 +198.48238706588745,0.0,0.0,0.0,0.0,0.0014660703 +198.49140810966492,0.0,0.0,0.0,0.0,0.0014660703 +198.50040912628174,0.0,0.0,0.0,0.0,0.0014660703 +198.5094130039215,0.0,0.0,0.0,0.0,-0.013334316 +198.51982402801514,0.0,0.0,0.0,0.0,-0.013334316 +198.53009605407715,0.0,0.0,0.0,0.0,-0.013334316 +198.54134392738342,0.0,0.0,0.0,0.0,-0.013334316 +198.54992294311523,0.0,0.0,0.0,0.0,-0.013334316 +198.56346201896667,0.0,0.0,0.0,0.0,-0.01888446 +198.571946144104,0.0,0.0,0.0,0.0,-0.01888446 +198.5803530216217,0.0,0.0,0.0,0.0,-0.01888446 +198.59048104286194,0.0,0.0,0.0,0.0,-0.01888446 +198.59947395324707,0.0,0.0,0.0,0.0,-0.01888446 +198.6098039150238,0.0,0.0,0.0,0.0,0.014416425 +198.6222379207611,0.0,0.0,0.0,0.0,0.014416425 +198.62953805923462,0.0,0.0,0.0,0.0,0.014416425 +198.6401970386505,0.0,0.0,0.0,0.0,0.014416425 +198.65144991874695,0.0,0.0,0.0,0.0,0.014416425 +198.66252493858337,0.0,0.0,0.0,0.0,-0.015184363 +198.67154002189636,0.0,0.0,0.0,0.0,-0.015184363 +198.68055391311646,0.0,0.0,0.0,0.0,-0.015184363 +198.68954491615295,0.0,0.0,0.0,0.0,-0.015184363 +198.69942212104797,0.0,0.0,0.0,0.0,-0.015184363 +198.71209812164307,0.0,0.0,0.0,0.0,-0.024434604 +198.72047805786133,0.0,0.0,0.0,0.0,-0.024434604 +198.73008108139038,0.0,0.0,0.0,0.0,-0.024434604 +198.74359607696533,0.0,0.0,0.0,0.0,-0.024434604 +198.74947094917297,0.0,0.0,0.0,0.0,-0.024434604 +198.76063203811646,0.0,0.0,0.0,0.0,-0.0040840744 +198.7706320285797,0.0,0.0,0.0,0.0,-0.0040840744 +198.7796311378479,0.0,0.0,0.0,0.0,-0.0040840744 +198.7897970676422,0.0,0.0,0.0,0.0,-0.0040840744 +198.80198001861572,0.0,0.0,0.0,0.0,-0.0040840744 +198.80974793434143,0.0,0.0,0.0,0.0,-0.0040840744 +198.81993508338928,0.0,0.0,0.0,0.0,-0.015184363 +198.83015704154968,0.0,0.0,0.0,0.0,-0.015184363 +198.84202694892883,0.0,0.0,0.0,0.0,-0.015184363 +198.85093212127686,0.0,0.0,0.0,0.0,-0.015184363 +198.85985612869263,0.0,0.0,0.0,0.0,-0.002234026 +198.8697099685669,0.0,0.0,0.0,0.0,-0.002234026 +198.8797960281372,0.0,0.0,0.0,0.0,-0.002234026 +198.891695022583,0.0,0.0,0.0,0.0,-0.002234026 +198.8996651172638,0.0,0.0,0.0,0.0,-0.002234026 +198.9097261428833,0.0,0.0,0.0,0.0,-0.022584556 +198.92045903205872,0.0,0.0,0.0,0.0,-0.022584556 +198.9294240474701,0.0,0.0,0.0,0.0,-0.022584556 +198.94003891944885,0.0,0.0,0.0,0.0,-0.022584556 +198.94987511634827,0.0,0.0,0.0,0.0,-0.022584556 +198.95975494384766,0.0,0.0,0.0,0.0,-0.024434604 +198.96977305412292,0.0,0.0,0.0,0.0,-0.024434604 +198.98171210289001,0.0,0.0,0.0,0.0,-0.024434604 +198.99023914337158,0.0,0.0,0.0,0.0,-0.024434604 +198.99968194961548,0.0,0.0,0.0,0.0,-0.024434604 +199.00971913337708,0.0,0.0,0.0,0.0,-0.026284654 +199.01995992660522,0.0,0.0,0.0,0.0,-0.026284654 +199.03017807006836,0.0,0.0,0.0,0.0,-0.026284654 +199.0408239364624,0.0,0.0,0.0,0.0,-0.026284654 +199.04983496665955,0.0,0.0,0.0,0.0,-0.026284654 +199.05975699424744,0.0,0.0,0.0,0.0,-0.011484267 +199.07158994674683,0.0,0.0,0.0,0.0,-0.011484267 +199.08010506629944,0.0,0.0,0.0,0.0,-0.011484267 +199.0895619392395,0.0,0.0,0.0,0.0,-0.011484267 +199.10046410560608,0.0,0.0,0.0,0.0,-0.011484267 +199.10972213745117,0.0,0.0,0.0,0.0,-0.009634218 +199.12023305892944,0.0,0.0,0.0,0.0,-0.009634218 +199.1294219493866,0.0,0.0,0.0,0.0,-0.009634218 +199.13989996910095,0.0,0.0,0.0,0.0,-0.009634218 +199.14974403381348,0.0,0.0,0.0,0.0,-0.009634218 +199.16145706176758,0.0,0.0,0.0,0.0,-0.002234026 +199.17045497894287,0.0,0.0,0.0,0.0,-0.002234026 +199.1794171333313,0.0,0.0,0.0,0.0,-0.002234026 +199.18958401679993,0.0,0.0,0.0,0.0,-0.002234026 +199.20296597480774,0.0,0.0,0.0,0.0,-0.002234026 +199.20974802970886,0.0,0.0,0.0,0.0,-0.009634218 +199.22049808502197,0.0,0.0,0.0,0.0,-0.009634218 +199.2299771308899,0.0,0.0,0.0,0.0,-0.009634218 +199.23974895477295,0.0,0.0,0.0,0.0,-0.009634218 +199.25024104118347,0.0,0.0,0.0,0.0,-0.009634218 +199.26031708717346,0.0,0.0,0.0,0.0,-0.0040840744 +199.2697970867157,0.0,0.0,0.0,0.0,-0.0040840744 +199.2822301387787,0.0,0.0,0.0,0.0,-0.0040840744 +199.29290294647217,0.0,0.0,0.0,0.0,-0.0040840744 +199.3020420074463,0.0,0.0,0.0,0.0,-0.0040840744 +199.30952191352844,0.0,0.0,0.0,0.0,-0.0040840744 +199.32004714012146,0.0,0.0,0.0,0.0,-0.011484267 +199.32972598075867,0.0,0.0,0.0,0.0,-0.011484267 +199.34108996391296,0.0,0.0,0.0,0.0,-0.011484267 +199.34989213943481,0.0,0.0,0.0,0.0,-0.011484267 +199.3650939464569,0.0,0.0,0.0,0.0,-0.01888446 +199.36968398094177,0.0,0.0,0.0,0.0,-0.01888446 +199.3802890777588,0.0,0.0,0.0,0.0,-0.01888446 +199.39148092269897,0.0,0.0,0.0,0.0,-0.01888446 +199.40111112594604,0.0,0.0,0.0,0.0,-0.01888446 +199.4101459980011,0.0,0.0,0.0,0.0,-0.015184363 +199.41972708702087,0.0,0.0,0.0,0.0,-0.015184363 +199.42980194091797,0.0,0.0,0.0,0.0,-0.015184363 +199.4400520324707,0.0,0.0,0.0,0.0,-0.015184363 +199.44940400123596,0.0,0.0,0.0,0.0,-0.015184363 +199.46257901191711,0.0,0.0,0.0,0.0,-0.03183481 +199.47316002845764,0.0,0.0,0.0,0.0,-0.03183481 +199.47939896583557,0.0,0.0,0.0,0.0,-0.03183481 +199.48987698554993,0.0,0.0,0.0,0.0,-0.03183481 +199.50018191337585,0.0,0.0,0.0,0.0,-0.03183481 +199.50971698760986,0.0,0.0,0.0,0.0,-0.08733628 +199.51991510391235,0.0,0.0,0.0,0.0,-0.08733628 +199.5299310684204,0.0,0.0,0.0,0.0,-0.08733628 +199.5416419506073,0.0,0.0,0.0,0.0,-0.08733628 +199.54990196228027,0.0,0.0,0.0,0.0,-0.08733628 +199.56081295013428,0.0,0.0,0.0,0.0,-0.06698574 +199.57179808616638,0.0,0.0,0.0,0.0,-0.06698574 +199.5812430381775,0.0,0.0,0.0,0.0,-0.06698574 +199.59025502204895,0.0,0.0,0.0,0.0,-0.06698574 +199.59952402114868,0.0,0.0,0.0,0.0,-0.06698574 +199.61079597473145,0.0,0.0,0.0,0.0,-0.085486226 +199.6197760105133,0.0,0.0,0.0,0.0,-0.085486226 +199.63019800186157,0.0,0.0,0.0,0.0,-0.085486226 +199.64034414291382,0.0,0.0,0.0,0.0,-0.085486226 +199.65298891067505,0.0,0.0,0.0,0.0,-0.085486226 +199.661602973938,0.0,0.0,0.0,0.0,-0.08733628 +199.67005491256714,0.0,0.0,0.0,0.0,-0.08733628 +199.67971897125244,0.0,0.0,0.0,0.0,-0.08733628 +199.6897280216217,0.0,0.0,0.0,0.0,-0.08733628 +199.7006320953369,0.0,0.0,0.0,0.0,-0.08733628 +199.70945596694946,0.0,0.0,0.0,0.0,-0.09843658 +199.720468044281,0.0,0.0,0.0,0.0,-0.09843658 +199.7301549911499,0.0,0.0,0.0,0.0,-0.09843658 +199.74212002754211,0.0,0.0,0.0,0.0,-0.09843658 +199.74990105628967,0.0,0.0,0.0,0.0,-0.09843658 +199.75993013381958,0.0,0.0,0.0,0.0,-0.07993608 +199.77037906646729,0.0,0.0,0.0,0.0,-0.07993608 +199.77949595451355,0.0,0.0,0.0,0.0,-0.07993608 +199.79047107696533,0.0,0.0,0.0,0.0,-0.07993608 +199.7994511127472,0.0,0.0,0.0,0.0,-0.07993608 +199.8097620010376,0.0,0.0,0.0,0.0,-0.10583678 +199.82045793533325,0.0,0.0,0.0,0.0,-0.10583678 +199.83018612861633,0.0,0.0,0.0,0.0,-0.10583678 +199.839457988739,0.0,0.0,0.0,0.0,-0.10583678 +199.85144305229187,0.0,0.0,0.0,0.0,-0.10583678 +199.86044192314148,0.0,0.0,0.0,0.0,-0.0577355 +199.86947298049927,0.0,0.0,0.0,0.0,-0.0577355 +199.88007712364197,0.0,0.0,0.0,0.0,-0.0577355 +199.89364004135132,0.0,0.0,0.0,0.0,-0.0577355 +199.89953804016113,0.0,0.0,0.0,0.0,-0.0577355 +199.90974307060242,0.0,0.0,0.0,0.0,-0.07438594 +199.92038798332214,0.0,0.0,0.0,0.0,-0.07438594 +199.9294250011444,0.0,0.0,0.0,0.0,-0.07438594 +199.94048810005188,0.0,0.0,0.0,0.0,-0.07438594 +199.9499020576477,0.0,0.0,0.0,0.0,-0.07438594 +199.95951795578003,0.0,0.0,0.0,0.0,-0.05588545 +199.9694790840149,0.0,0.0,0.0,0.0,-0.05588545 +199.98144006729126,0.0,0.0,0.0,0.0,-0.05588545 +199.99168491363525,0.0,0.0,0.0,0.0,-0.05588545 +200.00057792663574,0.0,0.0,0.0,0.0,-0.05588545 +200.009516954422,0.0,0.0,0.0,0.0,-0.05588545 +200.01960110664368,0.0,0.0,0.0,0.0,-0.054035395 +200.03020405769348,0.0,0.0,0.0,0.0,-0.054035395 +200.04062509536743,0.0,0.0,0.0,0.0,-0.054035395 +200.0496461391449,0.0,0.0,0.0,0.0,-0.054035395 +200.06003594398499,0.0,0.0,0.0,0.0,-0.042935103 +200.0718879699707,0.0,0.0,0.0,0.0,-0.042935103 +200.080796957016,0.0,0.0,0.0,0.0,-0.042935103 +200.0896999835968,0.0,0.0,0.0,0.0,-0.042935103 +200.09952998161316,0.0,0.0,0.0,0.0,-0.042935103 +200.1097400188446,0.0,0.0,0.0,0.0,-0.072535895 +200.12047410011292,0.0,0.0,0.0,0.0,-0.072535895 +200.1302149295807,0.0,0.0,0.0,0.0,-0.072535895 +200.13971710205078,0.0,0.0,0.0,0.0,-0.072535895 +200.14989113807678,0.0,0.0,0.0,0.0,-0.072535895 +200.16050910949707,0.0,0.0,0.0,0.0,-0.0466352 +200.16979813575745,0.0,0.0,0.0,0.0,-0.0466352 +200.18474411964417,0.0,0.0,0.0,0.0,-0.0466352 +200.19164514541626,0.0,0.0,0.0,0.0,-0.0466352 +200.20276999473572,0.0,0.0,0.0,0.0,-0.0466352 +200.20975303649902,0.0,0.0,0.0,0.0,-0.072535895 +200.22046208381653,0.0,0.0,0.0,0.0,-0.072535895 +200.2295961380005,0.0,0.0,0.0,0.0,-0.072535895 +200.23975801467896,0.0,0.0,0.0,0.0,-0.072535895 +200.25014996528625,0.0,0.0,0.0,0.0,-0.072535895 +200.2598991394043,0.0,0.0,0.0,0.0,-0.042935103 +200.27334308624268,0.0,0.0,0.0,0.0,-0.042935103 +200.28379607200623,0.0,0.0,0.0,0.0,-0.042935103 +200.2905170917511,0.0,0.0,0.0,0.0,-0.042935103 +200.30097794532776,0.0,0.0,0.0,0.0,-0.042935103 +200.30974102020264,0.0,0.0,0.0,0.0,-0.0577355 +200.31978106498718,0.0,0.0,0.0,0.0,-0.0577355 +200.3296229839325,0.0,0.0,0.0,0.0,-0.0577355 +200.33941006660461,0.0,0.0,0.0,0.0,-0.0577355 +200.3498990535736,0.0,0.0,0.0,0.0,-0.0577355 +200.3596179485321,0.0,0.0,0.0,0.0,-0.07623599 +200.37379097938538,0.0,0.0,0.0,0.0,-0.07623599 +200.3827941417694,0.0,0.0,0.0,0.0,-0.07623599 +200.39096903800964,0.0,0.0,0.0,0.0,-0.07623599 +200.40077996253967,0.0,0.0,0.0,0.0,-0.07623599 +200.40978598594666,0.0,0.0,0.0,0.0,-0.050335295 +200.41947102546692,0.0,0.0,0.0,0.0,-0.050335295 +200.4294629096985,0.0,0.0,0.0,0.0,-0.050335295 +200.44579792022705,0.0,0.0,0.0,0.0,-0.050335295 +200.45121097564697,0.0,0.0,0.0,0.0,-0.050335295 +200.46379709243774,0.0,0.0,0.0,0.0,-0.042935103 +200.4699649810791,0.0,0.0,0.0,0.0,-0.042935103 +200.4817910194397,0.0,0.0,0.0,0.0,-0.042935103 +200.48961400985718,0.0,0.0,0.0,0.0,-0.042935103 +200.49967098236084,0.0,0.0,0.0,0.0,-0.042935103 +200.51366710662842,0.0,0.0,0.0,0.0,0.012566376 +200.52044010162354,0.0,0.0,0.0,0.0,0.012566376 +200.53016996383667,0.0,0.0,0.0,0.0,0.012566376 +200.54422307014465,0.0,0.0,0.0,0.0,0.012566376 +200.5499370098114,0.0,0.0,0.0,0.0,0.012566376 +200.56030702590942,0.0,0.0,0.0,0.0,-0.05588545 +200.57098007202148,0.0,0.0,0.0,0.0,-0.05588545 +200.57989192008972,0.0,0.0,0.0,0.0,-0.05588545 +200.58979606628418,0.0,0.0,0.0,0.0,-0.05588545 +200.6010479927063,0.0,0.0,0.0,0.0,-0.05588545 +200.60959100723267,0.0,0.0,0.0,0.0,-0.05588545 +200.61966013908386,0.0,0.0,0.0,0.0,-0.05588545 +200.6302011013031,0.0,0.0,0.0,0.0,-0.05588545 +200.64227604866028,0.0,0.0,0.0,0.0,-0.05588545 +200.6511731147766,0.0,0.0,0.0,0.0,-0.05588545 +200.6600739955902,0.0,0.0,0.0,0.0,-0.050335295 +200.66957092285156,0.0,0.0,0.0,0.0,-0.050335295 +200.67978405952454,0.0,0.0,0.0,0.0,-0.050335295 +200.68946313858032,0.0,0.0,0.0,0.0,-0.050335295 +200.70463013648987,0.0,0.0,0.0,0.0,-0.050335295 +200.710294008255,0.0,0.0,0.0,0.0,-0.06143559 +200.720458984375,0.0,0.0,0.0,0.0,-0.06143559 +200.72967195510864,0.0,0.0,0.0,0.0,-0.06143559 +200.74026107788086,0.0,0.0,0.0,0.0,-0.06143559 +200.74965906143188,0.0,0.0,0.0,0.0,-0.06143559 +200.75975799560547,0.0,0.0,0.0,0.0,-0.050335295 +200.76977396011353,0.0,0.0,0.0,0.0,-0.050335295 +200.78423500061035,0.0,0.0,0.0,0.0,-0.050335295 +200.79375195503235,0.0,0.0,0.0,0.0,-0.050335295 +200.80074310302734,0.0,0.0,0.0,0.0,-0.050335295 +200.8097550868988,0.0,0.0,0.0,0.0,-0.015184363 +200.8197479248047,0.0,0.0,0.0,0.0,-0.015184363 +200.82943511009216,0.0,0.0,0.0,0.0,-0.015184363 +200.8413689136505,0.0,0.0,0.0,0.0,-0.015184363 +200.8507730960846,0.0,0.0,0.0,0.0,-0.015184363 +200.8597810268402,0.0,0.0,0.0,0.0,-0.0577355 +200.87174701690674,0.0,0.0,0.0,0.0,-0.0577355 +200.87966108322144,0.0,0.0,0.0,0.0,-0.0577355 +200.8917520046234,0.0,0.0,0.0,0.0,-0.0577355 +200.90067195892334,0.0,0.0,0.0,0.0,-0.0577355 +200.90957713127136,0.0,0.0,0.0,0.0,-0.0577355 +200.92050004005432,0.0,0.0,0.0,0.0,-0.0466352 +200.92956614494324,0.0,0.0,0.0,0.0,-0.0466352 +200.94058895111084,0.0,0.0,0.0,0.0,-0.0466352 +200.94966912269592,0.0,0.0,0.0,0.0,-0.0466352 +200.9618639945984,0.0,0.0,0.0,0.0,-0.0466352 +200.9719409942627,0.0,0.0,0.0,0.0,-0.0466352 +200.98087310791016,0.0,0.0,0.0,0.0,-0.0466352 +200.9897711277008,0.0,0.0,0.0,0.0,-0.0466352 +201.00002908706665,0.0,0.0,0.0,0.0,-0.0466352 +201.0096881389618,0.0,0.0,0.0,0.0,-0.0466352 +201.02045798301697,0.0,0.0,0.0,0.0,-0.0577355 +201.0301971435547,0.0,0.0,0.0,0.0,-0.0577355 +201.0395381450653,0.0,0.0,0.0,0.0,-0.0577355 +201.04948496818542,0.0,0.0,0.0,0.0,-0.0577355 +201.06107306480408,0.0,0.0,0.0,0.0,-0.041085053 +201.06998991966248,0.0,0.0,0.0,0.0,-0.041085053 +201.07955813407898,0.0,0.0,0.0,0.0,-0.041085053 +201.09297609329224,0.0,0.0,0.0,0.0,-0.041085053 +201.10106492042542,0.0,0.0,0.0,0.0,-0.041085053 +201.1097640991211,0.0,0.0,0.0,0.0,-0.05588545 +201.12039804458618,0.0,0.0,0.0,0.0,-0.05588545 +201.12976598739624,0.0,0.0,0.0,0.0,-0.05588545 +201.1395001411438,0.0,0.0,0.0,0.0,-0.05588545 +201.14991211891174,0.0,0.0,0.0,0.0,-0.05588545 +201.1653130054474,0.0,0.0,0.0,0.0,-0.0577355 +201.16941213607788,0.0,0.0,0.0,0.0,-0.0577355 +201.1802260875702,0.0,0.0,0.0,0.0,-0.0577355 +201.1902151107788,0.0,0.0,0.0,0.0,-0.0577355 +201.20061111450195,0.0,0.0,0.0,0.0,-0.0577355 +201.20978498458862,0.0,0.0,0.0,0.0,-0.06143559 +201.21979904174805,0.0,0.0,0.0,0.0,-0.06143559 +201.22952508926392,0.0,0.0,0.0,0.0,-0.06143559 +201.24597001075745,0.0,0.0,0.0,0.0,-0.06143559 +201.2513871192932,0.0,0.0,0.0,0.0,-0.06143559 +201.26417899131775,0.0,0.0,0.0,0.0,-0.05588545 +201.26970601081848,0.0,0.0,0.0,0.0,-0.05588545 +201.28216099739075,0.0,0.0,0.0,0.0,-0.05588545 +201.29113793373108,0.0,0.0,0.0,0.0,-0.05588545 +201.30010414123535,0.0,0.0,0.0,0.0,-0.05588545 +201.3097629547119,0.0,0.0,0.0,0.0,-0.0577355 +201.31953310966492,0.0,0.0,0.0,0.0,-0.0577355 +201.3301911354065,0.0,0.0,0.0,0.0,-0.0577355 +201.3414659500122,0.0,0.0,0.0,0.0,-0.0577355 +201.34994506835938,0.0,0.0,0.0,0.0,-0.0577355 +201.36025404930115,0.0,0.0,0.0,0.0,-0.029984765 +201.37198400497437,0.0,0.0,0.0,0.0,-0.029984765 +201.3809790611267,0.0,0.0,0.0,0.0,-0.029984765 +201.38995099067688,0.0,0.0,0.0,0.0,-0.029984765 +201.39974999427795,0.0,0.0,0.0,0.0,-0.029984765 +201.40965509414673,0.0,0.0,0.0,0.0,-0.029984765 +201.42047810554504,0.0,0.0,0.0,0.0,-0.052185345 +201.42953896522522,0.0,0.0,0.0,0.0,-0.052185345 +201.43968296051025,0.0,0.0,0.0,0.0,-0.052185345 +201.45073914527893,0.0,0.0,0.0,0.0,-0.052185345 +201.46067905426025,0.0,0.0,0.0,0.0,-0.052185345 +201.46951413154602,0.0,0.0,0.0,0.0,-0.052185345 +201.47981810569763,0.0,0.0,0.0,0.0,-0.052185345 +201.4898121356964,0.0,0.0,0.0,0.0,-0.052185345 +201.49973702430725,0.0,0.0,0.0,0.0,-0.052185345 +201.51066207885742,0.0,0.0,0.0,0.0,-0.026284654 +201.52047896385193,0.0,0.0,0.0,0.0,-0.026284654 +201.52980709075928,0.0,0.0,0.0,0.0,-0.026284654 +201.54075694084167,0.0,0.0,0.0,0.0,-0.026284654 +201.5499451160431,0.0,0.0,0.0,0.0,-0.026284654 +201.55985713005066,0.0,0.0,0.0,0.0,-0.044785153 +201.5696620941162,0.0,0.0,0.0,0.0,-0.044785153 +201.57943201065063,0.0,0.0,0.0,0.0,-0.044785153 +201.5897979736328,0.0,0.0,0.0,0.0,-0.044785153 +201.60081696510315,0.0,0.0,0.0,0.0,-0.044785153 +201.61306595802307,0.0,0.0,0.0,0.0,-0.0466352 +201.61992692947388,0.0,0.0,0.0,0.0,-0.0466352 +201.63021612167358,0.0,0.0,0.0,0.0,-0.0466352 +201.64044904708862,0.0,0.0,0.0,0.0,-0.0466352 +201.6505241394043,0.0,0.0,0.0,0.0,-0.0466352 +201.6595320701599,0.0,0.0,0.0,0.0,-0.06143559 +201.66981410980225,0.0,0.0,0.0,0.0,-0.06143559 +201.67986297607422,0.0,0.0,0.0,0.0,-0.06143559 +201.69392013549805,0.0,0.0,0.0,0.0,-0.06143559 +201.70183897018433,0.0,0.0,0.0,0.0,-0.06143559 +201.7117359638214,0.0,0.0,0.0,0.0,-0.0577355 +201.72048497200012,0.0,0.0,0.0,0.0,-0.0577355 +201.7296121120453,0.0,0.0,0.0,0.0,-0.0577355 +201.7403700351715,0.0,0.0,0.0,0.0,-0.0577355 +201.7499361038208,0.0,0.0,0.0,0.0,-0.0577355 +201.75986194610596,0.0,0.0,0.0,0.0,-0.042935103 +201.76990795135498,0.0,0.0,0.0,0.0,-0.042935103 +201.78304409980774,0.0,0.0,0.0,0.0,-0.042935103 +201.7894139289856,0.0,0.0,0.0,0.0,-0.042935103 +201.80086612701416,0.0,0.0,0.0,0.0,-0.042935103 +201.80976796150208,0.0,0.0,0.0,0.0,-0.054035395 +201.82006096839905,0.0,0.0,0.0,0.0,-0.054035395 +201.8301990032196,0.0,0.0,0.0,0.0,-0.054035395 +201.8408601284027,0.0,0.0,0.0,0.0,-0.054035395 +201.84944200515747,0.0,0.0,0.0,0.0,-0.054035395 +201.85997104644775,0.0,0.0,0.0,0.0,-0.039235007 +201.8721730709076,0.0,0.0,0.0,0.0,-0.039235007 +201.88106608390808,0.0,0.0,0.0,0.0,-0.039235007 +201.88997197151184,0.0,0.0,0.0,0.0,-0.039235007 +201.9021439552307,0.0,0.0,0.0,0.0,-0.039235007 +201.9095640182495,0.0,0.0,0.0,0.0,-0.039235007 +201.91981101036072,0.0,0.0,0.0,0.0,-0.054035395 +201.93022799491882,0.0,0.0,0.0,0.0,-0.054035395 +201.9398910999298,0.0,0.0,0.0,0.0,-0.054035395 +201.94995307922363,0.0,0.0,0.0,0.0,-0.054035395 +201.96128797531128,0.0,0.0,0.0,0.0,-0.052185345 +201.9695119857788,0.0,0.0,0.0,0.0,-0.052185345 +201.98073601722717,0.0,0.0,0.0,0.0,-0.052185345 +201.99133896827698,0.0,0.0,0.0,0.0,-0.052185345 +202.00096201896667,0.0,0.0,0.0,0.0,-0.052185345 +202.00978112220764,0.0,0.0,0.0,0.0,-0.05588545 +202.02089595794678,0.0,0.0,0.0,0.0,-0.05588545 +202.02952313423157,0.0,0.0,0.0,0.0,-0.05588545 +202.04009413719177,0.0,0.0,0.0,0.0,-0.05588545 +202.04984998703003,0.0,0.0,0.0,0.0,-0.05588545 +202.06386709213257,0.0,0.0,0.0,0.0,-0.039235007 +202.07285714149475,0.0,0.0,0.0,0.0,-0.039235007 +202.0818259716034,0.0,0.0,0.0,0.0,-0.039235007 +202.09081602096558,0.0,0.0,0.0,0.0,-0.039235007 +202.09979605674744,0.0,0.0,0.0,0.0,-0.039235007 +202.10976600646973,0.0,0.0,0.0,0.0,-0.0577355 +202.1198890209198,0.0,0.0,0.0,0.0,-0.0577355 +202.13018608093262,0.0,0.0,0.0,0.0,-0.0577355 +202.13955211639404,0.0,0.0,0.0,0.0,-0.0577355 +202.14996099472046,0.0,0.0,0.0,0.0,-0.0577355 +202.1626889705658,0.0,0.0,0.0,0.0,-0.06143559 +202.17168498039246,0.0,0.0,0.0,0.0,-0.06143559 +202.17982602119446,0.0,0.0,0.0,0.0,-0.06143559 +202.18965792655945,0.0,0.0,0.0,0.0,-0.06143559 +202.20092797279358,0.0,0.0,0.0,0.0,-0.06143559 +202.20959305763245,0.0,0.0,0.0,0.0,-0.06143559 +202.21977710723877,0.0,0.0,0.0,0.0,-0.050335295 +202.22946500778198,0.0,0.0,0.0,0.0,-0.050335295 +202.2399070262909,0.0,0.0,0.0,0.0,-0.050335295 +202.250638961792,0.0,0.0,0.0,0.0,-0.050335295 +202.26154804229736,0.0,0.0,0.0,0.0,-0.041085053 +202.26996302604675,0.0,0.0,0.0,0.0,-0.041085053 +202.27952003479004,0.0,0.0,0.0,0.0,-0.041085053 +202.2909140586853,0.0,0.0,0.0,0.0,-0.041085053 +202.29992604255676,0.0,0.0,0.0,0.0,-0.041085053 +202.30977606773376,0.0,0.0,0.0,0.0,-0.06513569 +202.32049202919006,0.0,0.0,0.0,0.0,-0.06513569 +202.33020305633545,0.0,0.0,0.0,0.0,-0.06513569 +202.34243512153625,0.0,0.0,0.0,0.0,-0.06513569 +202.34996700286865,0.0,0.0,0.0,0.0,-0.06513569 +202.360023021698,0.0,0.0,0.0,0.0,-0.052185345 +202.3693881034851,0.0,0.0,0.0,0.0,-0.052185345 +202.38025212287903,0.0,0.0,0.0,0.0,-0.052185345 +202.38990998268127,0.0,0.0,0.0,0.0,-0.052185345 +202.40038800239563,0.0,0.0,0.0,0.0,-0.052185345 +202.40977311134338,0.0,0.0,0.0,0.0,-0.06698574 +202.42005109786987,0.0,0.0,0.0,0.0,-0.06698574 +202.43022298812866,0.0,0.0,0.0,0.0,-0.06698574 +202.43982791900635,0.0,0.0,0.0,0.0,-0.06698574 +202.45024704933167,0.0,0.0,0.0,0.0,-0.06698574 +202.4604880809784,0.0,0.0,0.0,0.0,-0.0466352 +202.46950602531433,0.0,0.0,0.0,0.0,-0.0466352 +202.4799199104309,0.0,0.0,0.0,0.0,-0.0466352 +202.49046397209167,0.0,0.0,0.0,0.0,-0.0466352 +202.4995629787445,0.0,0.0,0.0,0.0,-0.0466352 +202.51273894309998,0.0,0.0,0.0,0.0,-0.042935103 +202.52047395706177,0.0,0.0,0.0,0.0,-0.042935103 +202.52943396568298,0.0,0.0,0.0,0.0,-0.042935103 +202.54008412361145,0.0,0.0,0.0,0.0,-0.042935103 +202.54963207244873,0.0,0.0,0.0,0.0,-0.042935103 +202.56094312667847,0.0,0.0,0.0,0.0,-0.072535895 +202.56988310813904,0.0,0.0,0.0,0.0,-0.072535895 +202.58053302764893,0.0,0.0,0.0,0.0,-0.072535895 +202.5895140171051,0.0,0.0,0.0,0.0,-0.072535895 +202.60037112236023,0.0,0.0,0.0,0.0,-0.072535895 +202.6113760471344,0.0,0.0,0.0,0.0,-0.05588545 +202.61967396736145,0.0,0.0,0.0,0.0,-0.05588545 +202.62983798980713,0.0,0.0,0.0,0.0,-0.05588545 +202.64132809638977,0.0,0.0,0.0,0.0,-0.05588545 +202.6509509086609,0.0,0.0,0.0,0.0,-0.05588545 +202.65995502471924,0.0,0.0,0.0,0.0,-0.052185345 +202.67059803009033,0.0,0.0,0.0,0.0,-0.052185345 +202.67960000038147,0.0,0.0,0.0,0.0,-0.052185345 +202.6922550201416,0.0,0.0,0.0,0.0,-0.052185345 +202.69991993904114,0.0,0.0,0.0,0.0,-0.052185345 +202.70957207679749,0.0,0.0,0.0,0.0,-0.0577355 +202.71979212760925,0.0,0.0,0.0,0.0,-0.0577355 +202.73024702072144,0.0,0.0,0.0,0.0,-0.0577355 +202.74093008041382,0.0,0.0,0.0,0.0,-0.0577355 +202.74993014335632,0.0,0.0,0.0,0.0,-0.0577355 +202.76068496704102,0.0,0.0,0.0,0.0,-0.050335295 +202.76967191696167,0.0,0.0,0.0,0.0,-0.050335295 +202.78139114379883,0.0,0.0,0.0,0.0,-0.050335295 +202.79030799865723,0.0,0.0,0.0,0.0,-0.050335295 +202.80065298080444,0.0,0.0,0.0,0.0,-0.050335295 +202.80962491035461,0.0,0.0,0.0,0.0,-0.042935103 +202.82194113731384,0.0,0.0,0.0,0.0,-0.042935103 +202.8299241065979,0.0,0.0,0.0,0.0,-0.042935103 +202.83994507789612,0.0,0.0,0.0,0.0,-0.042935103 +202.85074496269226,0.0,0.0,0.0,0.0,-0.042935103 +202.85973191261292,0.0,0.0,0.0,0.0,-0.050335295 +202.87053298950195,0.0,0.0,0.0,0.0,-0.050335295 +202.87947010993958,0.0,0.0,0.0,0.0,-0.050335295 +202.8904950618744,0.0,0.0,0.0,0.0,-0.050335295 +202.89948391914368,0.0,0.0,0.0,0.0,-0.050335295 +202.9097990989685,0.0,0.0,0.0,0.0,-0.052185345 +202.92050004005432,0.0,0.0,0.0,0.0,-0.052185345 +202.9299349784851,0.0,0.0,0.0,0.0,-0.052185345 +202.94081807136536,0.0,0.0,0.0,0.0,-0.052185345 +202.94982504844666,0.0,0.0,0.0,0.0,-0.052185345 +202.95968294143677,0.0,0.0,0.0,0.0,-0.0577355 +202.96948504447937,0.0,0.0,0.0,0.0,-0.0577355 +202.98004698753357,0.0,0.0,0.0,0.0,-0.0577355 +202.99088311195374,0.0,0.0,0.0,0.0,-0.0577355 +203.00192308425903,0.0,0.0,0.0,0.0,-0.0577355 +203.00979709625244,0.0,0.0,0.0,0.0,-0.06698574 +203.01994609832764,0.0,0.0,0.0,0.0,-0.06698574 +203.03021502494812,0.0,0.0,0.0,0.0,-0.06698574 +203.03989100456238,0.0,0.0,0.0,0.0,-0.06698574 +203.05220913887024,0.0,0.0,0.0,0.0,-0.06698574 +203.0611970424652,0.0,0.0,0.0,0.0,-0.06698574 +203.07020092010498,0.0,0.0,0.0,0.0,-0.06698574 +203.08295106887817,0.0,0.0,0.0,0.0,-0.06698574 +203.08997011184692,0.0,0.0,0.0,0.0,-0.06698574 +203.10013699531555,0.0,0.0,0.0,0.0,-0.06698574 +203.10979413986206,0.0,0.0,0.0,0.0,-0.041085053 +203.1201150417328,0.0,0.0,0.0,0.0,-0.041085053 +203.12994813919067,0.0,0.0,0.0,0.0,-0.041085053 +203.14207696914673,0.0,0.0,0.0,0.0,-0.041085053 +203.14998197555542,0.0,0.0,0.0,0.0,-0.041085053 +203.1600420475006,0.0,0.0,0.0,0.0,-0.039235007 +203.17298913002014,0.0,0.0,0.0,0.0,-0.039235007 +203.1819770336151,0.0,0.0,0.0,0.0,-0.039235007 +203.19098210334778,0.0,0.0,0.0,0.0,-0.039235007 +203.19996309280396,0.0,0.0,0.0,0.0,-0.039235007 +203.2096221446991,0.0,0.0,0.0,0.0,-0.039235007 +203.21998405456543,0.0,0.0,0.0,0.0,-0.03183481 +203.23023295402527,0.0,0.0,0.0,0.0,-0.03183481 +203.24090695381165,0.0,0.0,0.0,0.0,-0.03183481 +203.2498800754547,0.0,0.0,0.0,0.0,-0.03183481 +203.26271390914917,0.0,0.0,0.0,0.0,-0.052185345 +203.26956009864807,0.0,0.0,0.0,0.0,-0.052185345 +203.28053307533264,0.0,0.0,0.0,0.0,-0.052185345 +203.2894570827484,0.0,0.0,0.0,0.0,-0.052185345 +203.30108308792114,0.0,0.0,0.0,0.0,-0.052185345 +203.3097860813141,0.0,0.0,0.0,0.0,-0.0577355 +203.3205211162567,0.0,0.0,0.0,0.0,-0.0577355 +203.330246925354,0.0,0.0,0.0,0.0,-0.0577355 +203.3397340774536,0.0,0.0,0.0,0.0,-0.0577355 +203.34997296333313,0.0,0.0,0.0,0.0,-0.0577355 +203.36077094078064,0.0,0.0,0.0,0.0,-0.052185345 +203.36967206001282,0.0,0.0,0.0,0.0,-0.052185345 +203.38001108169556,0.0,0.0,0.0,0.0,-0.052185345 +203.3911440372467,0.0,0.0,0.0,0.0,-0.052185345 +203.40014696121216,0.0,0.0,0.0,0.0,-0.052185345 +203.4097809791565,0.0,0.0,0.0,0.0,-0.05588545 +203.42051911354065,0.0,0.0,0.0,0.0,-0.05588545 +203.42959713935852,0.0,0.0,0.0,0.0,-0.05588545 +203.4409749507904,0.0,0.0,0.0,0.0,-0.05588545 +203.44979810714722,0.0,0.0,0.0,0.0,-0.05588545 +203.46099495887756,0.0,0.0,0.0,0.0,-0.06698574 +203.47001600265503,0.0,0.0,0.0,0.0,-0.06698574 +203.48000812530518,0.0,0.0,0.0,0.0,-0.06698574 +203.4902400970459,0.0,0.0,0.0,0.0,-0.06698574 +203.50147199630737,0.0,0.0,0.0,0.0,-0.06698574 +203.50988912582397,0.0,0.0,0.0,0.0,-0.054035395 +203.51942992210388,0.0,0.0,0.0,0.0,-0.054035395 +203.53009390830994,0.0,0.0,0.0,0.0,-0.054035395 +203.54092693328857,0.0,0.0,0.0,0.0,-0.054035395 +203.55000400543213,0.0,0.0,0.0,0.0,-0.054035395 +203.56000900268555,0.0,0.0,0.0,0.0,-0.06698574 +203.57128500938416,0.0,0.0,0.0,0.0,-0.06698574 +203.58030200004578,0.0,0.0,0.0,0.0,-0.06698574 +203.5913200378418,0.0,0.0,0.0,0.0,-0.06698574 +203.59990310668945,0.0,0.0,0.0,0.0,-0.06698574 +203.61003994941711,0.0,0.0,0.0,0.0,-0.05588545 +203.62051010131836,0.0,0.0,0.0,0.0,-0.05588545 +203.63023209571838,0.0,0.0,0.0,0.0,-0.05588545 +203.64103507995605,0.0,0.0,0.0,0.0,-0.05588545 +203.6500370502472,0.0,0.0,0.0,0.0,-0.05588545 +203.66135811805725,0.0,0.0,0.0,0.0,-0.054035395 +203.67037510871887,0.0,0.0,0.0,0.0,-0.054035395 +203.67943811416626,0.0,0.0,0.0,0.0,-0.054035395 +203.69016313552856,0.0,0.0,0.0,0.0,-0.054035395 +203.69942903518677,0.0,0.0,0.0,0.0,-0.054035395 +203.7095091342926,0.0,0.0,0.0,0.0,-0.06698574 +203.72016501426697,0.0,0.0,0.0,0.0,-0.06698574 +203.72946500778198,0.0,0.0,0.0,0.0,-0.06698574 +203.7394881248474,0.0,0.0,0.0,0.0,-0.06698574 +203.74998903274536,0.0,0.0,0.0,0.0,-0.06698574 +203.7604639530182,0.0,0.0,0.0,0.0,-0.050335295 +203.76948308944702,0.0,0.0,0.0,0.0,-0.050335295 +203.7796380519867,0.0,0.0,0.0,0.0,-0.050335295 +203.79356908798218,0.0,0.0,0.0,0.0,-0.050335295 +203.80101609230042,0.0,0.0,0.0,0.0,-0.050335295 +203.81111097335815,0.0,0.0,0.0,0.0,-0.0466352 +203.82052898406982,0.0,0.0,0.0,0.0,-0.0466352 +203.8300449848175,0.0,0.0,0.0,0.0,-0.0466352 +203.84024596214294,0.0,0.0,0.0,0.0,-0.0466352 +203.85058212280273,0.0,0.0,0.0,0.0,-0.0466352 +203.8595929145813,0.0,0.0,0.0,0.0,-0.044785153 +203.86984705924988,0.0,0.0,0.0,0.0,-0.044785153 +203.88097500801086,0.0,0.0,0.0,0.0,-0.044785153 +203.89212608337402,0.0,0.0,0.0,0.0,-0.044785153 +203.90206813812256,0.0,0.0,0.0,0.0,-0.044785153 +203.9098129272461,0.0,0.0,0.0,0.0,-0.050335295 +203.9200849533081,0.0,0.0,0.0,0.0,-0.050335295 +203.93023014068604,0.0,0.0,0.0,0.0,-0.050335295 +203.94004797935486,0.0,0.0,0.0,0.0,-0.050335295 +203.94968700408936,0.0,0.0,0.0,0.0,-0.050335295 +203.95969200134277,0.0,0.0,0.0,0.0,-0.05588545 +203.96947693824768,0.0,0.0,0.0,0.0,-0.05588545 +203.98306512832642,0.0,0.0,0.0,0.0,-0.05588545 +203.99043607711792,0.0,0.0,0.0,0.0,-0.05588545 +204.00014400482178,0.0,0.0,0.0,0.0,-0.05588545 +204.0097849369049,0.0,0.0,0.0,0.0,-0.029984765 +204.02025294303894,0.0,0.0,0.0,0.0,-0.029984765 +204.03025007247925,0.0,0.0,0.0,0.0,-0.029984765 +204.0397720336914,0.0,0.0,0.0,0.0,-0.029984765 +204.0495409965515,0.0,0.0,0.0,0.0,-0.029984765 +204.06105399131775,0.0,0.0,0.0,0.0,-0.042935103 +204.07308292388916,0.0,0.0,0.0,0.0,-0.042935103 +204.08207893371582,0.0,0.0,0.0,0.0,-0.042935103 +204.09109592437744,0.0,0.0,0.0,0.0,-0.042935103 +204.099671125412,0.0,0.0,0.0,0.0,-0.042935103 +204.10939812660217,0.0,0.0,0.0,0.0,-0.042935103 +204.12047004699707,0.0,0.0,0.0,0.0,-0.054035395 +204.12985396385193,0.0,0.0,0.0,0.0,-0.054035395 +204.13941407203674,0.0,0.0,0.0,0.0,-0.054035395 +204.15394806861877,0.0,0.0,0.0,0.0,-0.054035395 +204.15974593162537,0.0,0.0,0.0,0.0,-0.052185345 +204.17178010940552,0.0,0.0,0.0,0.0,-0.052185345 +204.1806869506836,0.0,0.0,0.0,0.0,-0.052185345 +204.18960905075073,0.0,0.0,0.0,0.0,-0.052185345 +204.20190691947937,0.0,0.0,0.0,0.0,-0.052185345 +204.2098000049591,0.0,0.0,0.0,0.0,-0.052185345 +204.2199249267578,0.0,0.0,0.0,0.0,-0.052185345 +204.22946310043335,0.0,0.0,0.0,0.0,-0.052185345 +204.24305701255798,0.0,0.0,0.0,0.0,-0.052185345 +204.2519829273224,0.0,0.0,0.0,0.0,-0.052185345 +204.26016402244568,0.0,0.0,0.0,0.0,-0.042935103 +204.26980996131897,0.0,0.0,0.0,0.0,-0.042935103 +204.28002405166626,0.0,0.0,0.0,0.0,-0.042935103 +204.29198694229126,0.0,0.0,0.0,0.0,-0.042935103 +204.30099296569824,0.0,0.0,0.0,0.0,-0.042935103 +204.3097860813141,0.0,0.0,0.0,0.0,-0.044785153 +204.32053804397583,0.0,0.0,0.0,0.0,-0.044785153 +204.3302459716797,0.0,0.0,0.0,0.0,-0.044785153 +204.33976411819458,0.0,0.0,0.0,0.0,-0.044785153 +204.349995136261,0.0,0.0,0.0,0.0,-0.044785153 +204.36109113693237,0.0,0.0,0.0,0.0,-0.054035395 +204.3701000213623,0.0,0.0,0.0,0.0,-0.054035395 +204.38199996948242,0.0,0.0,0.0,0.0,-0.054035395 +204.39016699790955,0.0,0.0,0.0,0.0,-0.054035395 +204.39998698234558,0.0,0.0,0.0,0.0,-0.054035395 +204.40979194641113,0.0,0.0,0.0,0.0,-0.022584556 +204.42054295539856,0.0,0.0,0.0,0.0,-0.022584556 +204.430242061615,0.0,0.0,0.0,0.0,-0.022584556 +204.44209098815918,0.0,0.0,0.0,0.0,-0.022584556 +204.44946098327637,0.0,0.0,0.0,0.0,-0.022584556 +204.46008706092834,0.0,0.0,0.0,0.0,-0.041085053 +204.47186493873596,0.0,0.0,0.0,0.0,-0.041085053 +204.48086094856262,0.0,0.0,0.0,0.0,-0.041085053 +204.48983502388,0.0,0.0,0.0,0.0,-0.041085053 +204.50114512443542,0.0,0.0,0.0,0.0,-0.041085053 +204.51043891906738,0.0,0.0,0.0,0.0,-0.042935103 +204.5201699733734,0.0,0.0,0.0,0.0,-0.042935103 +204.53207802772522,0.0,0.0,0.0,0.0,-0.042935103 +204.53945112228394,0.0,0.0,0.0,0.0,-0.042935103 +204.55009698867798,0.0,0.0,0.0,0.0,-0.042935103 +204.56123614311218,0.0,0.0,0.0,0.0,-0.0466352 +204.57072710990906,0.0,0.0,0.0,0.0,-0.0466352 +204.5797040462494,0.0,0.0,0.0,0.0,-0.0466352 +204.59063601493835,0.0,0.0,0.0,0.0,-0.0466352 +204.59956192970276,0.0,0.0,0.0,0.0,-0.0466352 +204.6130621433258,0.0,0.0,0.0,0.0,-0.09473648 +204.62051391601562,0.0,0.0,0.0,0.0,-0.09473648 +204.62949514389038,0.0,0.0,0.0,0.0,-0.09473648 +204.6400649547577,0.0,0.0,0.0,0.0,-0.09473648 +204.6502480506897,0.0,0.0,0.0,0.0,-0.09473648 +204.65952897071838,0.0,0.0,0.0,0.0,-0.044785153 +204.66957211494446,0.0,0.0,0.0,0.0,-0.044785153 +204.67978501319885,0.0,0.0,0.0,0.0,-0.044785153 +204.68958401679993,0.0,0.0,0.0,0.0,-0.044785153 +204.70306396484375,0.0,0.0,0.0,0.0,-0.044785153 +204.71112513542175,0.0,0.0,0.0,0.0,-0.041085053 +204.72052311897278,0.0,0.0,0.0,0.0,-0.041085053 +204.7300500869751,0.0,0.0,0.0,0.0,-0.041085053 +204.741455078125,0.0,0.0,0.0,0.0,-0.041085053 +204.7495150566101,0.0,0.0,0.0,0.0,-0.041085053 +204.759428024292,0.0,0.0,0.0,0.0,-0.06513569 +204.77126598358154,0.0,0.0,0.0,0.0,-0.06513569 +204.78024291992188,0.0,0.0,0.0,0.0,-0.06513569 +204.79307198524475,0.0,0.0,0.0,0.0,-0.06513569 +204.80206394195557,0.0,0.0,0.0,0.0,-0.06513569 +204.81105709075928,0.0,0.0,0.0,0.0,-0.044785153 +204.82005906105042,0.0,0.0,0.0,0.0,-0.044785153 +204.83022713661194,0.0,0.0,0.0,0.0,-0.044785153 +204.83978009223938,0.0,0.0,0.0,0.0,-0.044785153 +204.85043001174927,0.0,0.0,0.0,0.0,-0.044785153 +204.85943293571472,0.0,0.0,0.0,0.0,-0.050335295 +204.86983513832092,0.0,0.0,0.0,0.0,-0.050335295 +204.88051795959473,0.0,0.0,0.0,0.0,-0.050335295 +204.89166808128357,0.0,0.0,0.0,0.0,-0.050335295 +204.9010670185089,0.0,0.0,0.0,0.0,-0.050335295 +204.90979599952698,0.0,0.0,0.0,0.0,-0.03553491 +204.92042994499207,0.0,0.0,0.0,0.0,-0.03553491 +204.9294729232788,0.0,0.0,0.0,0.0,-0.03553491 +204.94050097465515,0.0,0.0,0.0,0.0,-0.03553491 +204.94951510429382,0.0,0.0,0.0,0.0,-0.03553491 +204.9640600681305,0.0,0.0,0.0,0.0,-0.041085053 +204.9708800315857,0.0,0.0,0.0,0.0,-0.041085053 +204.98203301429749,0.0,0.0,0.0,0.0,-0.041085053 +204.9910490512848,0.0,0.0,0.0,0.0,-0.041085053 +205.0000340938568,0.0,0.0,0.0,0.0,-0.041085053 +205.0095660686493,0.0,0.0,0.0,0.0,-0.041085053 +205.01998114585876,0.0,0.0,0.0,0.0,-0.05588545 +205.03023409843445,0.0,0.0,0.0,0.0,-0.05588545 +205.03957509994507,0.0,0.0,0.0,0.0,-0.05588545 +205.05254411697388,0.0,0.0,0.0,0.0,-0.05588545 +205.0630271434784,0.0,0.0,0.0,0.0,-0.054035395 +205.0719699859619,0.0,0.0,0.0,0.0,-0.054035395 +205.08019995689392,0.0,0.0,0.0,0.0,-0.054035395 +205.0898039340973,0.0,0.0,0.0,0.0,-0.054035395 +205.100839138031,0.0,0.0,0.0,0.0,-0.054035395 +205.10982394218445,0.0,0.0,0.0,0.0,-0.054035395 +205.12052392959595,0.0,0.0,0.0,0.0,-0.054035395 +205.12964296340942,0.0,0.0,0.0,0.0,-0.054035395 +205.1399440765381,0.0,0.0,0.0,0.0,-0.054035395 +205.15218591690063,0.0,0.0,0.0,0.0,-0.054035395 +205.1611089706421,0.0,0.0,0.0,0.0,-0.052185345 +205.1700119972229,0.0,0.0,0.0,0.0,-0.052185345 +205.18001699447632,0.0,0.0,0.0,0.0,-0.052185345 +205.190691947937,0.0,0.0,0.0,0.0,-0.052185345 +205.19966006278992,0.0,0.0,0.0,0.0,-0.052185345 +205.20979499816895,0.0,0.0,0.0,0.0,-0.041085053 +205.2197229862213,0.0,0.0,0.0,0.0,-0.041085053 +205.23024702072144,0.0,0.0,0.0,0.0,-0.041085053 +205.2412109375,0.0,0.0,0.0,0.0,-0.041085053 +205.2495141029358,0.0,0.0,0.0,0.0,-0.041085053 +205.26101398468018,0.0,0.0,0.0,0.0,-0.0466352 +205.27000999450684,0.0,0.0,0.0,0.0,-0.0466352 +205.27954411506653,0.0,0.0,0.0,0.0,-0.0466352 +205.28950214385986,0.0,0.0,0.0,0.0,-0.0466352 +205.3002529144287,0.0,0.0,0.0,0.0,-0.0466352 +205.30981492996216,0.0,0.0,0.0,0.0,-0.0466352 +205.3204529285431,0.0,0.0,0.0,0.0,-0.06328564 +205.3302481174469,0.0,0.0,0.0,0.0,-0.06328564 +205.34201192855835,0.0,0.0,0.0,0.0,-0.06328564 +205.35101008415222,0.0,0.0,0.0,0.0,-0.06328564 +205.36000514030457,0.0,0.0,0.0,0.0,-0.06883579 +205.37036991119385,0.0,0.0,0.0,0.0,-0.06883579 +205.3805329799652,0.0,0.0,0.0,0.0,-0.06883579 +205.39085912704468,0.0,0.0,0.0,0.0,-0.06883579 +205.3998749256134,0.0,0.0,0.0,0.0,-0.06883579 +205.40981602668762,0.0,0.0,0.0,0.0,-0.06328564 +205.4195201396942,0.0,0.0,0.0,0.0,-0.06328564 +205.4294469356537,0.0,0.0,0.0,0.0,-0.06328564 +205.44024109840393,0.0,0.0,0.0,0.0,-0.06328564 +205.45000410079956,0.0,0.0,0.0,0.0,-0.06328564 +205.45982098579407,0.0,0.0,0.0,0.0,-0.041085053 +205.47191214561462,0.0,0.0,0.0,0.0,-0.041085053 +205.480938911438,0.0,0.0,0.0,0.0,-0.041085053 +205.48974514007568,0.0,0.0,0.0,0.0,-0.041085053 +205.4997100830078,0.0,0.0,0.0,0.0,-0.041085053 +205.51159691810608,0.0,0.0,0.0,0.0,-0.054035395 +205.52051401138306,0.0,0.0,0.0,0.0,-0.054035395 +205.5302460193634,0.0,0.0,0.0,0.0,-0.054035395 +205.53998804092407,0.0,0.0,0.0,0.0,-0.054035395 +205.54970693588257,0.0,0.0,0.0,0.0,-0.054035395 +205.56020498275757,0.0,0.0,0.0,0.0,-0.0466352 +205.57100296020508,0.0,0.0,0.0,0.0,-0.0466352 +205.5799400806427,0.0,0.0,0.0,0.0,-0.0466352 +205.59089708328247,0.0,0.0,0.0,0.0,-0.0466352 +205.60300612449646,0.0,0.0,0.0,0.0,-0.0466352 +205.6119909286499,0.0,0.0,0.0,0.0,0.07546805 +205.62050008773804,0.0,0.0,0.0,0.0,0.07546805 +205.63000011444092,0.0,0.0,0.0,0.0,0.07546805 +205.63988614082336,0.0,0.0,0.0,0.0,0.07546805 +205.65126299858093,0.0,0.0,0.0,0.0,0.07546805 +205.66016793251038,0.0,0.0,0.0,0.0,-0.06698574 +205.67008113861084,0.0,0.0,0.0,0.0,-0.06698574 +205.6839919090271,0.0,0.0,0.0,0.0,-0.06698574 +205.6894030570984,0.0,0.0,0.0,0.0,-0.06698574 +205.69979691505432,0.0,0.0,0.0,0.0,-0.06698574 +205.71098113059998,0.0,0.0,0.0,0.0,-0.0466352 +205.71997809410095,0.0,0.0,0.0,0.0,-0.0466352 +205.72974300384521,0.0,0.0,0.0,0.0,-0.0466352 +205.74038791656494,0.0,0.0,0.0,0.0,-0.0466352 +205.75109910964966,0.0,0.0,0.0,0.0,-0.0466352 +205.76013112068176,0.0,0.0,0.0,0.0,-0.052185345 +205.77106714248657,0.0,0.0,0.0,0.0,-0.052185345 +205.78300094604492,0.0,0.0,0.0,0.0,-0.052185345 +205.79199504852295,0.0,0.0,0.0,0.0,-0.052185345 +205.8010151386261,0.0,0.0,0.0,0.0,-0.052185345 +205.81001210212708,0.0,0.0,0.0,0.0,-0.041085053 +205.81956005096436,0.0,0.0,0.0,0.0,-0.041085053 +205.829528093338,0.0,0.0,0.0,0.0,-0.041085053 +205.84118700027466,0.0,0.0,0.0,0.0,-0.041085053 +205.85019898414612,0.0,0.0,0.0,0.0,-0.041085053 +205.86402201652527,0.0,0.0,0.0,0.0,-0.052185345 +205.8730001449585,0.0,0.0,0.0,0.0,-0.052185345 +205.8802890777588,0.0,0.0,0.0,0.0,-0.052185345 +205.89100909233093,0.0,0.0,0.0,0.0,-0.052185345 +205.9000120162964,0.0,0.0,0.0,0.0,-0.052185345 +205.9094340801239,0.0,0.0,0.0,0.0,-0.052185345 +205.92054104804993,0.0,0.0,0.0,0.0,-0.050335295 +205.9302499294281,0.0,0.0,0.0,0.0,-0.050335295 +205.94010996818542,0.0,0.0,0.0,0.0,-0.050335295 +205.9495120048523,0.0,0.0,0.0,0.0,-0.050335295 +205.96197700500488,0.0,0.0,0.0,0.0,-0.044785153 +205.9720151424408,0.0,0.0,0.0,0.0,-0.044785153 +205.98101902008057,0.0,0.0,0.0,0.0,-0.044785153 +205.98952412605286,0.0,0.0,0.0,0.0,-0.044785153 +206.0031509399414,0.0,0.0,0.0,0.0,-0.044785153 +206.00981497764587,0.0,0.0,0.0,0.0,-0.06143559 +206.01962614059448,0.0,0.0,0.0,0.0,-0.06143559 +206.0302529335022,0.0,0.0,0.0,0.0,-0.06143559 +206.04151010513306,0.0,0.0,0.0,0.0,-0.06143559 +206.0494589805603,0.0,0.0,0.0,0.0,-0.06143559 +206.06061005592346,0.0,0.0,0.0,0.0,-0.041085053 +206.07019710540771,0.0,0.0,0.0,0.0,-0.041085053 +206.07966113090515,0.0,0.0,0.0,0.0,-0.041085053 +206.09305095672607,0.0,0.0,0.0,0.0,-0.041085053 +206.101576089859,0.0,0.0,0.0,0.0,-0.041085053 +206.10981512069702,0.0,0.0,0.0,0.0,-0.052185345 +206.1203761100769,0.0,0.0,0.0,0.0,-0.052185345 +206.1294870376587,0.0,0.0,0.0,0.0,-0.052185345 +206.14107012748718,0.0,0.0,0.0,0.0,-0.052185345 +206.15038990974426,0.0,0.0,0.0,0.0,-0.052185345 +206.16097807884216,0.0,0.0,0.0,0.0,-0.0466352 +206.1699719429016,0.0,0.0,0.0,0.0,-0.0466352 +206.18047904968262,0.0,0.0,0.0,0.0,-0.0466352 +206.19243812561035,0.0,0.0,0.0,0.0,-0.0466352 +206.20145106315613,0.0,0.0,0.0,0.0,-0.0466352 +206.20981693267822,0.0,0.0,0.0,0.0,-0.0466352 +206.21945095062256,0.0,0.0,0.0,0.0,-0.0466352 +206.2298400402069,0.0,0.0,0.0,0.0,-0.0466352 +206.23949193954468,0.0,0.0,0.0,0.0,-0.0466352 +206.25084495544434,0.0,0.0,0.0,0.0,-0.0466352 +206.25982308387756,0.0,0.0,0.0,0.0,-0.0577355 +206.27108597755432,0.0,0.0,0.0,0.0,-0.0577355 +206.28029012680054,0.0,0.0,0.0,0.0,-0.0577355 +206.28970003128052,0.0,0.0,0.0,0.0,-0.0577355 +206.30052614212036,0.0,0.0,0.0,0.0,-0.0577355 +206.30953693389893,0.0,0.0,0.0,0.0,-0.0577355 +206.31967997550964,0.0,0.0,0.0,0.0,-0.029984765 +206.33025312423706,0.0,0.0,0.0,0.0,-0.029984765 +206.3393919467926,0.0,0.0,0.0,0.0,-0.029984765 +206.34969806671143,0.0,0.0,0.0,0.0,-0.029984765 +206.36102199554443,0.0,0.0,0.0,0.0,-0.03183481 +206.3725860118866,0.0,0.0,0.0,0.0,-0.03183481 +206.38007593154907,0.0,0.0,0.0,0.0,-0.03183481 +206.39058995246887,0.0,0.0,0.0,0.0,-0.03183481 +206.3996000289917,0.0,0.0,0.0,0.0,-0.03183481 +206.40981698036194,0.0,0.0,0.0,0.0,-0.029984765 +206.42052507400513,0.0,0.0,0.0,0.0,-0.029984765 +206.42947006225586,0.0,0.0,0.0,0.0,-0.029984765 +206.43951606750488,0.0,0.0,0.0,0.0,-0.029984765 +206.45333313941956,0.0,0.0,0.0,0.0,-0.029984765 +206.46223711967468,0.0,0.0,0.0,0.0,-0.0577355 +206.470153093338,0.0,0.0,0.0,0.0,-0.0577355 +206.4800751209259,0.0,0.0,0.0,0.0,-0.0577355 +206.4896731376648,0.0,0.0,0.0,0.0,-0.0577355 +206.5024220943451,0.0,0.0,0.0,0.0,-0.0577355 +206.5112099647522,0.0,0.0,0.0,0.0,0.05696755 +206.52038311958313,0.0,0.0,0.0,0.0,0.05696755 +206.52947998046875,0.0,0.0,0.0,0.0,0.05696755 +206.54128193855286,0.0,0.0,0.0,0.0,0.05696755 +206.55134296417236,0.0,0.0,0.0,0.0,0.05696755 +206.56027913093567,0.0,0.0,0.0,0.0,-0.054035395 +206.57072710990906,0.0,0.0,0.0,0.0,-0.054035395 +206.57940793037415,0.0,0.0,0.0,0.0,-0.054035395 +206.59227013587952,0.0,0.0,0.0,0.0,-0.054035395 +206.6001660823822,0.0,0.0,0.0,0.0,-0.054035395 +206.61022901535034,0.0,0.0,0.0,0.0,-0.041085053 +206.61993503570557,0.0,0.0,0.0,0.0,-0.041085053 +206.63027906417847,0.0,0.0,0.0,0.0,-0.041085053 +206.6394920349121,0.0,0.0,0.0,0.0,-0.041085053 +206.64939713478088,0.0,0.0,0.0,0.0,-0.041085053 +206.66078305244446,0.0,0.0,0.0,0.0,-0.072535895 +206.66978311538696,0.0,0.0,0.0,0.0,-0.072535895 +206.68212294578552,0.0,0.0,0.0,0.0,-0.072535895 +206.69110107421875,0.0,0.0,0.0,0.0,-0.072535895 +206.70007801055908,0.0,0.0,0.0,0.0,-0.072535895 +206.70994591712952,0.0,0.0,0.0,0.0,-0.13543756 +206.72053909301758,0.0,0.0,0.0,0.0,-0.13543756 +206.7294590473175,0.0,0.0,0.0,0.0,-0.13543756 +206.7418510913849,0.0,0.0,0.0,0.0,-0.13543756 +206.75084400177002,0.0,0.0,0.0,0.0,-0.13543756 +206.75977897644043,0.0,0.0,0.0,0.0,-0.052185345 +206.77058911323547,0.0,0.0,0.0,0.0,-0.052185345 +206.78097200393677,0.0,0.0,0.0,0.0,-0.052185345 +206.78995609283447,0.0,0.0,0.0,0.0,-0.052185345 +206.7999210357666,0.0,0.0,0.0,0.0,-0.052185345 +206.80979013442993,0.0,0.0,0.0,0.0,-0.0466352 +206.81982898712158,0.0,0.0,0.0,0.0,-0.0466352 +206.83025813102722,0.0,0.0,0.0,0.0,-0.0466352 +206.84088706970215,0.0,0.0,0.0,0.0,-0.0466352 +206.8498890399933,0.0,0.0,0.0,0.0,-0.0466352 +206.86011791229248,0.0,0.0,0.0,0.0,-0.07993608 +206.8708209991455,0.0,0.0,0.0,0.0,-0.07993608 +206.8798050880432,0.0,0.0,0.0,0.0,-0.07993608 +206.889897108078,0.0,0.0,0.0,0.0,-0.07993608 +206.89939999580383,0.0,0.0,0.0,0.0,-0.07993608 +206.90983390808105,0.0,0.0,0.0,0.0,-0.042935103 +206.92054390907288,0.0,0.0,0.0,0.0,-0.042935103 +206.9295039176941,0.0,0.0,0.0,0.0,-0.042935103 +206.9399540424347,0.0,0.0,0.0,0.0,-0.042935103 +206.95093393325806,0.0,0.0,0.0,0.0,-0.042935103 +206.96066403388977,0.0,0.0,0.0,0.0,-0.041085053 +206.96964597702026,0.0,0.0,0.0,0.0,-0.041085053 +206.97987604141235,0.0,0.0,0.0,0.0,-0.041085053 +206.99012207984924,0.0,0.0,0.0,0.0,-0.041085053 +207.0000820159912,0.0,0.0,0.0,0.0,-0.041085053 +207.0098249912262,0.0,0.0,0.0,0.0,-0.050335295 +207.02055311203003,0.0,0.0,0.0,0.0,-0.050335295 +207.02979397773743,0.0,0.0,0.0,0.0,-0.050335295 +207.0414481163025,0.0,0.0,0.0,0.0,-0.050335295 +207.05033993721008,0.0,0.0,0.0,0.0,-0.050335295 +207.05948901176453,0.0,0.0,0.0,0.0,-0.054035395 +207.06986713409424,0.0,0.0,0.0,0.0,-0.054035395 +207.0819981098175,0.0,0.0,0.0,0.0,-0.054035395 +207.09291696548462,0.0,0.0,0.0,0.0,-0.054035395 +207.10206198692322,0.0,0.0,0.0,0.0,-0.054035395 +207.1098301410675,0.0,0.0,0.0,0.0,-0.05588545 +207.12005805969238,0.0,0.0,0.0,0.0,-0.05588545 +207.13054513931274,0.0,0.0,0.0,0.0,-0.05588545 +207.1394739151001,0.0,0.0,0.0,0.0,-0.05588545 +207.1508469581604,0.0,0.0,0.0,0.0,-0.05588545 +207.15986394882202,0.0,0.0,0.0,0.0,-0.044785153 +207.17411494255066,0.0,0.0,0.0,0.0,-0.044785153 +207.18097496032715,0.0,0.0,0.0,0.0,-0.044785153 +207.19115591049194,0.0,0.0,0.0,0.0,-0.044785153 +207.20111894607544,0.0,0.0,0.0,0.0,-0.044785153 +207.2098410129547,0.0,0.0,0.0,0.0,-0.06513569 +207.21968007087708,0.0,0.0,0.0,0.0,-0.06513569 +207.22953009605408,0.0,0.0,0.0,0.0,-0.06513569 +207.2408471107483,0.0,0.0,0.0,0.0,-0.06513569 +207.2498481273651,0.0,0.0,0.0,0.0,-0.06513569 +207.26415014266968,0.0,0.0,0.0,0.0,-0.0466352 +207.27036905288696,0.0,0.0,0.0,0.0,-0.0466352 +207.28205609321594,0.0,0.0,0.0,0.0,-0.0466352 +207.29098391532898,0.0,0.0,0.0,0.0,-0.0466352 +207.29988503456116,0.0,0.0,0.0,0.0,-0.0466352 +207.30982208251953,0.0,0.0,0.0,0.0,-0.044785153 +207.32002997398376,0.0,0.0,0.0,0.0,-0.044785153 +207.33025193214417,0.0,0.0,0.0,0.0,-0.044785153 +207.33982110023499,0.0,0.0,0.0,0.0,-0.044785153 +207.3533580303192,0.0,0.0,0.0,0.0,-0.044785153 +207.3605260848999,0.0,0.0,0.0,0.0,-0.041085053 +207.37119507789612,0.0,0.0,0.0,0.0,-0.041085053 +207.37999296188354,0.0,0.0,0.0,0.0,-0.041085053 +207.39021611213684,0.0,0.0,0.0,0.0,-0.041085053 +207.4009051322937,0.0,0.0,0.0,0.0,-0.041085053 +207.40982913970947,0.0,0.0,0.0,0.0,-0.06698574 +207.42055010795593,0.0,0.0,0.0,0.0,-0.06698574 +207.42983102798462,0.0,0.0,0.0,0.0,-0.06698574 +207.44088411331177,0.0,0.0,0.0,0.0,-0.06698574 +207.451406955719,0.0,0.0,0.0,0.0,-0.06698574 +207.46034002304077,0.0,0.0,0.0,0.0,-0.042935103 +207.4696979522705,0.0,0.0,0.0,0.0,-0.042935103 +207.4802861213684,0.0,0.0,0.0,0.0,-0.042935103 +207.49076008796692,0.0,0.0,0.0,0.0,-0.042935103 +207.4997320175171,0.0,0.0,0.0,0.0,-0.042935103 +207.50992894172668,0.0,0.0,0.0,0.0,-0.013334316 +207.51979899406433,0.0,0.0,0.0,0.0,-0.013334316 +207.52958512306213,0.0,0.0,0.0,0.0,-0.013334316 +207.54056096076965,0.0,0.0,0.0,0.0,-0.013334316 +207.54948496818542,0.0,0.0,0.0,0.0,-0.013334316 +207.56134510040283,0.0,0.0,0.0,0.0,-0.042935103 +207.57033610343933,0.0,0.0,0.0,0.0,-0.042935103 +207.5806131362915,0.0,0.0,0.0,0.0,-0.042935103 +207.58960509300232,0.0,0.0,0.0,0.0,-0.042935103 +207.60077595710754,0.0,0.0,0.0,0.0,-0.042935103 +207.60976696014404,0.0,0.0,0.0,0.0,-0.052185345 +207.6205370426178,0.0,0.0,0.0,0.0,-0.052185345 +207.629714012146,0.0,0.0,0.0,0.0,-0.052185345 +207.63988208770752,0.0,0.0,0.0,0.0,-0.052185345 +207.6499800682068,0.0,0.0,0.0,0.0,-0.052185345 +207.66040802001953,0.0,0.0,0.0,0.0,-0.0466352 +207.66942405700684,0.0,0.0,0.0,0.0,-0.0466352 +207.6794729232788,0.0,0.0,0.0,0.0,-0.0466352 +207.6907570362091,0.0,0.0,0.0,0.0,-0.0466352 +207.69975900650024,0.0,0.0,0.0,0.0,-0.0466352 +207.70991396903992,0.0,0.0,0.0,0.0,-0.06143559 +207.72057795524597,0.0,0.0,0.0,0.0,-0.06143559 +207.73028707504272,0.0,0.0,0.0,0.0,-0.06143559 +207.741446018219,0.0,0.0,0.0,0.0,-0.06143559 +207.75048398971558,0.0,0.0,0.0,0.0,-0.06143559 +207.7594690322876,0.0,0.0,0.0,0.0,-0.044785153 +207.7698631286621,0.0,0.0,0.0,0.0,-0.044785153 +207.7807469367981,0.0,0.0,0.0,0.0,-0.044785153 +207.78971409797668,0.0,0.0,0.0,0.0,-0.044785153 +207.80299592018127,0.0,0.0,0.0,0.0,-0.044785153 +207.81219696998596,0.0,0.0,0.0,0.0,-0.06698574 +207.81962513923645,0.0,0.0,0.0,0.0,-0.06698574 +207.83026313781738,0.0,0.0,0.0,0.0,-0.06698574 +207.8405179977417,0.0,0.0,0.0,0.0,-0.06698574 +207.8495090007782,0.0,0.0,0.0,0.0,-0.06698574 +207.86143112182617,0.0,0.0,0.0,0.0,-0.050335295 +207.8703169822693,0.0,0.0,0.0,0.0,-0.050335295 +207.87969493865967,0.0,0.0,0.0,0.0,-0.050335295 +207.89454102516174,0.0,0.0,0.0,0.0,-0.050335295 +207.89982295036316,0.0,0.0,0.0,0.0,-0.050335295 +207.90951204299927,0.0,0.0,0.0,0.0,-0.050335295 +207.9203119277954,0.0,0.0,0.0,0.0,-0.06513569 +207.93055891990662,0.0,0.0,0.0,0.0,-0.06513569 +207.93955993652344,0.0,0.0,0.0,0.0,-0.06513569 +207.95053601264954,0.0,0.0,0.0,0.0,-0.06513569 +207.95943307876587,0.0,0.0,0.0,0.0,-0.050335295 +207.96966314315796,0.0,0.0,0.0,0.0,-0.050335295 +207.9801731109619,0.0,0.0,0.0,0.0,-0.050335295 +207.9902560710907,0.0,0.0,0.0,0.0,-0.050335295 +207.9996531009674,0.0,0.0,0.0,0.0,-0.050335295 +208.00984597206116,0.0,0.0,0.0,0.0,-0.054035395 +208.01956701278687,0.0,0.0,0.0,0.0,-0.054035395 +208.02964901924133,0.0,0.0,0.0,0.0,-0.054035395 +208.0396249294281,0.0,0.0,0.0,0.0,-0.054035395 +208.0506191253662,0.0,0.0,0.0,0.0,-0.054035395 +208.05962991714478,0.0,0.0,0.0,0.0,-0.054035395 +208.0706090927124,0.0,0.0,0.0,0.0,-0.054035395 +208.08149409294128,0.0,0.0,0.0,0.0,-0.054035395 +208.08942008018494,0.0,0.0,0.0,0.0,-0.054035395 +208.10169100761414,0.0,0.0,0.0,0.0,-0.054035395 +208.10985708236694,0.0,0.0,0.0,0.0,-0.072535895 +208.1195240020752,0.0,0.0,0.0,0.0,-0.072535895 +208.1302969455719,0.0,0.0,0.0,0.0,-0.072535895 +208.14059114456177,0.0,0.0,0.0,0.0,-0.072535895 +208.14959597587585,0.0,0.0,0.0,0.0,-0.072535895 +208.1598379611969,0.0,0.0,0.0,0.0,-0.0466352 +208.17329907417297,0.0,0.0,0.0,0.0,-0.0466352 +208.17979311943054,0.0,0.0,0.0,0.0,-0.0466352 +208.19069695472717,0.0,0.0,0.0,0.0,-0.0466352 +208.20003509521484,0.0,0.0,0.0,0.0,-0.0466352 +208.20958614349365,0.0,0.0,0.0,0.0,-0.0466352 +208.2195611000061,0.0,0.0,0.0,0.0,-0.041085053 +208.23028993606567,0.0,0.0,0.0,0.0,-0.041085053 +208.23956894874573,0.0,0.0,0.0,0.0,-0.041085053 +208.25351095199585,0.0,0.0,0.0,0.0,-0.041085053 +208.2624111175537,0.0,0.0,0.0,0.0,-0.044785153 +208.2713339328766,0.0,0.0,0.0,0.0,-0.044785153 +208.28024101257324,0.0,0.0,0.0,0.0,-0.044785153 +208.2898190021515,0.0,0.0,0.0,0.0,-0.044785153 +208.29943203926086,0.0,0.0,0.0,0.0,-0.044785153 +208.30984592437744,0.0,0.0,0.0,0.0,-0.052185345 +208.31955099105835,0.0,0.0,0.0,0.0,-0.052185345 +208.32952094078064,0.0,0.0,0.0,0.0,-0.052185345 +208.34261798858643,0.0,0.0,0.0,0.0,-0.052185345 +208.35074591636658,0.0,0.0,0.0,0.0,-0.052185345 +208.3604600429535,0.0,0.0,0.0,0.0,-0.042935103 +208.37130403518677,0.0,0.0,0.0,0.0,-0.042935103 +208.38030099868774,0.0,0.0,0.0,0.0,-0.042935103 +208.38989305496216,0.0,0.0,0.0,0.0,-0.042935103 +208.40098595619202,0.0,0.0,0.0,0.0,-0.042935103 +208.40948700904846,0.0,0.0,0.0,0.0,-0.042935103 +208.41950511932373,0.0,0.0,0.0,0.0,-0.0577355 +208.4302840232849,0.0,0.0,0.0,0.0,-0.0577355 +208.4406521320343,0.0,0.0,0.0,0.0,-0.0577355 +208.44958400726318,0.0,0.0,0.0,0.0,-0.0577355 +208.4608190059662,0.0,0.0,0.0,0.0,-0.03553491 +208.47014999389648,0.0,0.0,0.0,0.0,-0.03553491 +208.47992706298828,0.0,0.0,0.0,0.0,-0.03553491 +208.49114394187927,0.0,0.0,0.0,0.0,-0.03553491 +208.49939513206482,0.0,0.0,0.0,0.0,-0.03553491 +208.50948095321655,0.0,0.0,0.0,0.0,-0.03553491 +208.51957607269287,0.0,0.0,0.0,0.0,-0.0577355 +208.52980208396912,0.0,0.0,0.0,0.0,-0.0577355 +208.5420229434967,0.0,0.0,0.0,0.0,-0.0577355 +208.54984402656555,0.0,0.0,0.0,0.0,-0.0577355 +208.55996298789978,0.0,0.0,0.0,0.0,-0.042935103 +208.56999111175537,0.0,0.0,0.0,0.0,-0.042935103 +208.58145904541016,0.0,0.0,0.0,0.0,-0.042935103 +208.59045791625977,0.0,0.0,0.0,0.0,-0.042935103 +208.59945702552795,0.0,0.0,0.0,0.0,-0.042935103 +208.61005806922913,0.0,0.0,0.0,0.0,-0.050335295 +208.61952590942383,0.0,0.0,0.0,0.0,-0.050335295 +208.63029408454895,0.0,0.0,0.0,0.0,-0.050335295 +208.6408360004425,0.0,0.0,0.0,0.0,-0.050335295 +208.6495180130005,0.0,0.0,0.0,0.0,-0.050335295 +208.6600570678711,0.0,0.0,0.0,0.0,-0.06698574 +208.6713900566101,0.0,0.0,0.0,0.0,-0.06698574 +208.67983198165894,0.0,0.0,0.0,0.0,-0.06698574 +208.68943810462952,0.0,0.0,0.0,0.0,-0.06698574 +208.70373392105103,0.0,0.0,0.0,0.0,-0.06698574 +208.71272897720337,0.0,0.0,0.0,0.0,-0.044785153 +208.7195529937744,0.0,0.0,0.0,0.0,-0.044785153 +208.73029112815857,0.0,0.0,0.0,0.0,-0.044785153 +208.73960900306702,0.0,0.0,0.0,0.0,-0.044785153 +208.7501289844513,0.0,0.0,0.0,0.0,-0.044785153 +208.76142406463623,0.0,0.0,0.0,0.0,-0.0466352 +208.76967406272888,0.0,0.0,0.0,0.0,-0.0466352 +208.77941298484802,0.0,0.0,0.0,0.0,-0.0466352 +208.79159998893738,0.0,0.0,0.0,0.0,-0.0466352 +208.80247402191162,0.0,0.0,0.0,0.0,-0.0466352 +208.80980491638184,0.0,0.0,0.0,0.0,-0.05588545 +208.8205509185791,0.0,0.0,0.0,0.0,-0.05588545 +208.82953810691833,0.0,0.0,0.0,0.0,-0.05588545 +208.84014201164246,0.0,0.0,0.0,0.0,-0.05588545 +208.85079193115234,0.0,0.0,0.0,0.0,-0.05588545 +208.85968613624573,0.0,0.0,0.0,0.0,-0.041085053 +208.87071299552917,0.0,0.0,0.0,0.0,-0.041085053 +208.88344597816467,0.0,0.0,0.0,0.0,-0.041085053 +208.88981413841248,0.0,0.0,0.0,0.0,-0.041085053 +208.90076208114624,0.0,0.0,0.0,0.0,-0.041085053 +208.91041493415833,0.0,0.0,0.0,0.0,-0.044785153 +208.91940093040466,0.0,0.0,0.0,0.0,-0.044785153 +208.93024492263794,0.0,0.0,0.0,0.0,-0.044785153 +208.9398009777069,0.0,0.0,0.0,0.0,-0.044785153 +208.95035409927368,0.0,0.0,0.0,0.0,-0.044785153 +208.9643280506134,0.0,0.0,0.0,0.0,-0.072535895 +208.97331595420837,0.0,0.0,0.0,0.0,-0.072535895 +208.97971105575562,0.0,0.0,0.0,0.0,-0.072535895 +208.99130606651306,0.0,0.0,0.0,0.0,-0.072535895 +209.00026202201843,0.0,0.0,0.0,0.0,-0.072535895 +209.0098659992218,0.0,0.0,0.0,0.0,-0.054035395 +209.01955795288086,0.0,0.0,0.0,0.0,-0.054035395 +209.02948713302612,0.0,0.0,0.0,0.0,-0.054035395 +209.04034209251404,0.0,0.0,0.0,0.0,-0.054035395 +209.0537850856781,0.0,0.0,0.0,0.0,-0.054035395 +209.0631639957428,0.0,0.0,0.0,0.0,-0.0466352 +209.06981301307678,0.0,0.0,0.0,0.0,-0.0466352 +209.08112907409668,0.0,0.0,0.0,0.0,-0.0466352 +209.0901539325714,0.0,0.0,0.0,0.0,-0.0466352 +209.10036706924438,0.0,0.0,0.0,0.0,-0.0466352 +209.10986495018005,0.0,0.0,0.0,0.0,-0.06143559 +209.11958694458008,0.0,0.0,0.0,0.0,-0.06143559 +209.13029503822327,0.0,0.0,0.0,0.0,-0.06143559 +209.14110898971558,0.0,0.0,0.0,0.0,-0.06143559 +209.15221214294434,0.0,0.0,0.0,0.0,-0.06143559 +209.16199207305908,0.0,0.0,0.0,0.0,-0.041085053 +209.17098999023438,0.0,0.0,0.0,0.0,-0.041085053 +209.17997813224792,0.0,0.0,0.0,0.0,-0.041085053 +209.18949604034424,0.0,0.0,0.0,0.0,-0.041085053 +209.19980311393738,0.0,0.0,0.0,0.0,-0.041085053 +209.20941400527954,0.0,0.0,0.0,0.0,-0.041085053 +209.2195589542389,0.0,0.0,0.0,0.0,-0.06328564 +209.2294590473175,0.0,0.0,0.0,0.0,-0.06328564 +209.24287104606628,0.0,0.0,0.0,0.0,-0.06328564 +209.25045609474182,0.0,0.0,0.0,0.0,-0.06328564 +209.26070594787598,0.0,0.0,0.0,0.0,-0.044785153 +209.26972603797913,0.0,0.0,0.0,0.0,-0.044785153 +209.2814600467682,0.0,0.0,0.0,0.0,-0.044785153 +209.2904770374298,0.0,0.0,0.0,0.0,-0.044785153 +209.29946899414062,0.0,0.0,0.0,0.0,-0.044785153 +209.3098599910736,0.0,0.0,0.0,0.0,-0.06883579 +209.3195779323578,0.0,0.0,0.0,0.0,-0.06883579 +209.32979202270508,0.0,0.0,0.0,0.0,-0.06883579 +209.34105110168457,0.0,0.0,0.0,0.0,-0.06883579 +209.34995198249817,0.0,0.0,0.0,0.0,-0.06883579 +209.35958409309387,0.0,0.0,0.0,0.0,-0.054035395 +209.37152791023254,0.0,0.0,0.0,0.0,-0.054035395 +209.38055610656738,0.0,0.0,0.0,0.0,-0.054035395 +209.38953804969788,0.0,0.0,0.0,0.0,-0.054035395 +209.40021014213562,0.0,0.0,0.0,0.0,-0.054035395 +209.40987396240234,0.0,0.0,0.0,0.0,-0.05588545 +209.41960906982422,0.0,0.0,0.0,0.0,-0.05588545 +209.43020796775818,0.0,0.0,0.0,0.0,-0.05588545 +209.44053602218628,0.0,0.0,0.0,0.0,-0.05588545 +209.44954299926758,0.0,0.0,0.0,0.0,-0.05588545 +209.45978999137878,0.0,0.0,0.0,0.0,-0.042935103 +209.47058296203613,0.0,0.0,0.0,0.0,-0.042935103 +209.47961401939392,0.0,0.0,0.0,0.0,-0.042935103 +209.49020791053772,0.0,0.0,0.0,0.0,-0.042935103 +209.50147199630737,0.0,0.0,0.0,0.0,-0.042935103 +209.5097780227661,0.0,0.0,0.0,0.0,-0.042935103 +209.51963090896606,0.0,0.0,0.0,0.0,-0.024434604 +209.53029203414917,0.0,0.0,0.0,0.0,-0.024434604 +209.54265809059143,0.0,0.0,0.0,0.0,-0.024434604 +209.55166006088257,0.0,0.0,0.0,0.0,-0.024434604 +209.5606460571289,0.0,0.0,0.0,0.0,-0.07623599 +209.56967306137085,0.0,0.0,0.0,0.0,-0.07623599 +209.5801920890808,0.0,0.0,0.0,0.0,-0.07623599 +209.58975791931152,0.0,0.0,0.0,0.0,-0.07623599 +209.59951496124268,0.0,0.0,0.0,0.0,-0.07623599 +209.61125993728638,0.0,0.0,0.0,0.0,-0.0466352 +209.6202471256256,0.0,0.0,0.0,0.0,-0.0466352 +209.63271403312683,0.0,0.0,0.0,0.0,-0.0466352 +209.6408851146698,0.0,0.0,0.0,0.0,-0.0466352 +209.65069103240967,0.0,0.0,0.0,0.0,-0.0466352 +209.65971112251282,0.0,0.0,0.0,0.0,-0.044785153 +209.67016506195068,0.0,0.0,0.0,0.0,-0.044785153 +209.67972803115845,0.0,0.0,0.0,0.0,-0.044785153 +209.68979692459106,0.0,0.0,0.0,0.0,-0.044785153 +209.70093512535095,0.0,0.0,0.0,0.0,-0.044785153 +209.71007013320923,0.0,0.0,0.0,0.0,-0.05588545 +209.71959114074707,0.0,0.0,0.0,0.0,-0.05588545 +209.73029804229736,0.0,0.0,0.0,0.0,-0.05588545 +209.74077892303467,0.0,0.0,0.0,0.0,-0.05588545 +209.74976992607117,0.0,0.0,0.0,0.0,-0.05588545 +209.75990104675293,0.0,0.0,0.0,0.0,-0.054035395 +209.77195596694946,0.0,0.0,0.0,0.0,-0.054035395 +209.78064894676208,0.0,0.0,0.0,0.0,-0.054035395 +209.7909369468689,0.0,0.0,0.0,0.0,-0.054035395 +209.79992294311523,0.0,0.0,0.0,0.0,-0.054035395 +209.81282305717468,0.0,0.0,0.0,0.0,-0.054035395 +209.81957411766052,0.0,0.0,0.0,0.0,-0.054035395 +209.83028197288513,0.0,0.0,0.0,0.0,-0.054035395 +209.83984398841858,0.0,0.0,0.0,0.0,-0.054035395 +209.84969401359558,0.0,0.0,0.0,0.0,-0.054035395 +209.8618290424347,0.0,0.0,0.0,0.0,-0.050335295 +209.8718020915985,0.0,0.0,0.0,0.0,-0.050335295 +209.88080501556396,0.0,0.0,0.0,0.0,-0.050335295 +209.88978910446167,0.0,0.0,0.0,0.0,-0.050335295 +209.90248203277588,0.0,0.0,0.0,0.0,-0.050335295 +209.91060996055603,0.0,0.0,0.0,0.0,-0.042935103 +209.91942191123962,0.0,0.0,0.0,0.0,-0.042935103 +209.92940211296082,0.0,0.0,0.0,0.0,-0.042935103 +209.94007992744446,0.0,0.0,0.0,0.0,-0.042935103 +209.94944095611572,0.0,0.0,0.0,0.0,-0.042935103 +209.96166801452637,0.0,0.0,0.0,0.0,-0.042935103 +209.9706609249115,0.0,0.0,0.0,0.0,-0.042935103 +209.9796380996704,0.0,0.0,0.0,0.0,-0.042935103 +209.9904339313507,0.0,0.0,0.0,0.0,-0.042935103 +210.0004940032959,0.0,0.0,0.0,0.0,-0.042935103 +210.00940608978271,0.0,0.0,0.0,0.0,-0.042935103 +210.01958394050598,0.0,0.0,0.0,0.0,-0.072535895 +210.03006505966187,0.0,0.0,0.0,0.0,-0.072535895 +210.04057812690735,0.0,0.0,0.0,0.0,-0.072535895 +210.05051803588867,0.0,0.0,0.0,0.0,-0.072535895 +210.0605001449585,0.0,0.0,0.0,0.0,-0.050335295 +210.06949996948242,0.0,0.0,0.0,0.0,-0.050335295 +210.08033895492554,0.0,0.0,0.0,0.0,-0.050335295 +210.08964204788208,0.0,0.0,0.0,0.0,-0.050335295 +210.09969997406006,0.0,0.0,0.0,0.0,-0.050335295 +210.1096329689026,0.0,0.0,0.0,0.0,-0.050335295 +210.11957907676697,0.0,0.0,0.0,0.0,-0.07623599 +210.1302990913391,0.0,0.0,0.0,0.0,-0.07623599 +210.14136505126953,0.0,0.0,0.0,0.0,-0.07623599 +210.15033102035522,0.0,0.0,0.0,0.0,-0.07623599 +210.16091895103455,0.0,0.0,0.0,0.0,-0.052185345 +210.16984295845032,0.0,0.0,0.0,0.0,-0.052185345 +210.18157196044922,0.0,0.0,0.0,0.0,-0.052185345 +210.19113111495972,0.0,0.0,0.0,0.0,-0.052185345 +210.20014810562134,0.0,0.0,0.0,0.0,-0.052185345 +210.20948696136475,0.0,0.0,0.0,0.0,-0.052185345 +210.21957302093506,0.0,0.0,0.0,0.0,-0.026284654 +210.2303340435028,0.0,0.0,0.0,0.0,-0.026284654 +210.23959493637085,0.0,0.0,0.0,0.0,-0.026284654 +210.25006103515625,0.0,0.0,0.0,0.0,-0.026284654 +210.26318407058716,0.0,0.0,0.0,0.0,-0.052185345 +210.27219796180725,0.0,0.0,0.0,0.0,-0.052185345 +210.2812111377716,0.0,0.0,0.0,0.0,-0.052185345 +210.29023003578186,0.0,0.0,0.0,0.0,-0.052185345 +210.30002403259277,0.0,0.0,0.0,0.0,-0.052185345 +210.3098850250244,0.0,0.0,0.0,0.0,-0.0577355 +210.31959509849548,0.0,0.0,0.0,0.0,-0.0577355 +210.3300211429596,0.0,0.0,0.0,0.0,-0.0577355 +210.33999013900757,0.0,0.0,0.0,0.0,-0.0577355 +210.35326409339905,0.0,0.0,0.0,0.0,-0.0577355 +210.36159300804138,0.0,0.0,0.0,0.0,-0.054035395 +210.36956000328064,0.0,0.0,0.0,0.0,-0.054035395 +210.38027501106262,0.0,0.0,0.0,0.0,-0.054035395 +210.38950109481812,0.0,0.0,0.0,0.0,-0.054035395 +210.4001750946045,0.0,0.0,0.0,0.0,-0.054035395 +210.40985703468323,0.0,0.0,0.0,0.0,-0.0577355 +210.41963505744934,0.0,0.0,0.0,0.0,-0.0577355 +210.43022394180298,0.0,0.0,0.0,0.0,-0.0577355 +210.4433310031891,0.0,0.0,0.0,0.0,-0.0577355 +210.4494390487671,0.0,0.0,0.0,0.0,-0.0577355 +210.46136593818665,0.0,0.0,0.0,0.0,-0.044785153 +210.47035002708435,0.0,0.0,0.0,0.0,-0.044785153 +210.47995901107788,0.0,0.0,0.0,0.0,-0.044785153 +210.49031496047974,0.0,0.0,0.0,0.0,-0.044785153 +210.49950695037842,0.0,0.0,0.0,0.0,-0.044785153 +210.5096719264984,0.0,0.0,0.0,0.0,-0.044785153 +210.52442002296448,0.0,0.0,0.0,0.0,-0.07623599 +210.53034496307373,0.0,0.0,0.0,0.0,-0.07623599 +210.54030895233154,0.0,0.0,0.0,0.0,-0.07623599 +210.55142498016357,0.0,0.0,0.0,0.0,-0.07623599 +210.56044507026672,0.0,0.0,0.0,0.0,-0.0466352 +210.56945395469666,0.0,0.0,0.0,0.0,-0.0466352 +210.57979106903076,0.0,0.0,0.0,0.0,-0.0466352 +210.59052801132202,0.0,0.0,0.0,0.0,-0.0466352 +210.59951400756836,0.0,0.0,0.0,0.0,-0.0466352 +210.6112699508667,0.0,0.0,0.0,0.0,-0.050335295 +210.61958503723145,0.0,0.0,0.0,0.0,-0.050335295 +210.62956500053406,0.0,0.0,0.0,0.0,-0.050335295 +210.64151811599731,0.0,0.0,0.0,0.0,-0.050335295 +210.65053391456604,0.0,0.0,0.0,0.0,-0.050335295 +210.65952897071838,0.0,0.0,0.0,0.0,-0.015184363 +210.67135500907898,0.0,0.0,0.0,0.0,-0.015184363 +210.6803479194641,0.0,0.0,0.0,0.0,-0.015184363 +210.6903851032257,0.0,0.0,0.0,0.0,-0.015184363 +210.70457196235657,0.0,0.0,0.0,0.0,-0.015184363 +210.71347403526306,0.0,0.0,0.0,0.0,-0.052185345 +210.7195749282837,0.0,0.0,0.0,0.0,-0.052185345 +210.73032307624817,0.0,0.0,0.0,0.0,-0.052185345 +210.74020409584045,0.0,0.0,0.0,0.0,-0.052185345 +210.7496199607849,0.0,0.0,0.0,0.0,-0.052185345 +210.75945496559143,0.0,0.0,0.0,0.0,-0.052185345 +210.77018308639526,0.0,0.0,0.0,0.0,-0.052185345 +210.7847499847412,0.0,0.0,0.0,0.0,-0.052185345 +210.79334092140198,0.0,0.0,0.0,0.0,-0.052185345 +210.80260396003723,0.0,0.0,0.0,0.0,-0.052185345 +210.81149196624756,0.0,0.0,0.0,0.0,-0.044785153 +210.819580078125,0.0,0.0,0.0,0.0,-0.044785153 +210.82951998710632,0.0,0.0,0.0,0.0,-0.044785153 +210.83970713615417,0.0,0.0,0.0,0.0,-0.044785153 +210.85103511810303,0.0,0.0,0.0,0.0,-0.044785153 +210.8600161075592,0.0,0.0,0.0,0.0,-0.052185345 +210.8725380897522,0.0,0.0,0.0,0.0,-0.052185345 +210.88072204589844,0.0,0.0,0.0,0.0,-0.052185345 +210.88940000534058,0.0,0.0,0.0,0.0,-0.052185345 +210.90066695213318,0.0,0.0,0.0,0.0,-0.052185345 +210.90955114364624,0.0,0.0,0.0,0.0,-0.044785153 +210.91957592964172,0.0,0.0,0.0,0.0,-0.044785153 +210.9297740459442,0.0,0.0,0.0,0.0,-0.044785153 +210.94084405899048,0.0,0.0,0.0,0.0,-0.044785153 +210.94984698295593,0.0,0.0,0.0,0.0,-0.044785153 +210.962788105011,0.0,0.0,0.0,0.0,-0.05588545 +210.97195506095886,0.0,0.0,0.0,0.0,-0.05588545 +210.98087191581726,0.0,0.0,0.0,0.0,-0.05588545 +210.98979091644287,0.0,0.0,0.0,0.0,-0.05588545 +211.00183701515198,0.0,0.0,0.0,0.0,-0.05588545 +211.00987792015076,0.0,0.0,0.0,0.0,-0.0577355 +211.01961398124695,0.0,0.0,0.0,0.0,-0.0577355 +211.03031992912292,0.0,0.0,0.0,0.0,-0.0577355 +211.03968000411987,0.0,0.0,0.0,0.0,-0.0577355 +211.05217695236206,0.0,0.0,0.0,0.0,-0.0577355 +211.0610740184784,0.0,0.0,0.0,0.0,-0.06698574 +211.06999397277832,0.0,0.0,0.0,0.0,-0.06698574 +211.0802800655365,0.0,0.0,0.0,0.0,-0.06698574 +211.09183192253113,0.0,0.0,0.0,0.0,-0.06698574 +211.09951090812683,0.0,0.0,0.0,0.0,-0.06698574 +211.10981702804565,0.0,0.0,0.0,0.0,-0.06698574 +211.1196150779724,0.0,0.0,0.0,0.0,-0.044785153 +211.1295440196991,0.0,0.0,0.0,0.0,-0.044785153 +211.14128398895264,0.0,0.0,0.0,0.0,-0.044785153 +211.14944291114807,0.0,0.0,0.0,0.0,-0.044785153 +211.1638081073761,0.0,0.0,0.0,0.0,-0.050335295 +211.17282509803772,0.0,0.0,0.0,0.0,-0.050335295 +211.18113493919373,0.0,0.0,0.0,0.0,-0.050335295 +211.19081211090088,0.0,0.0,0.0,0.0,-0.050335295 +211.1998209953308,0.0,0.0,0.0,0.0,-0.050335295 +211.20951104164124,0.0,0.0,0.0,0.0,-0.050335295 +211.2195770740509,0.0,0.0,0.0,0.0,-0.054035395 +211.23006510734558,0.0,0.0,0.0,0.0,-0.054035395 +211.24481391906738,0.0,0.0,0.0,0.0,-0.054035395 +211.2496259212494,0.0,0.0,0.0,0.0,-0.054035395 +211.26281213760376,0.0,0.0,0.0,0.0,-0.044785153 +211.27183508872986,0.0,0.0,0.0,0.0,-0.044785153 +211.2808210849762,0.0,0.0,0.0,0.0,-0.044785153 +211.28982090950012,0.0,0.0,0.0,0.0,-0.044785153 +211.30019092559814,0.0,0.0,0.0,0.0,-0.044785153 +211.30988812446594,0.0,0.0,0.0,0.0,-0.054035395 +211.31952595710754,0.0,0.0,0.0,0.0,-0.054035395 +211.3314609527588,0.0,0.0,0.0,0.0,-0.054035395 +211.33953213691711,0.0,0.0,0.0,0.0,-0.054035395 +211.35282611846924,0.0,0.0,0.0,0.0,-0.054035395 +211.36115097999573,0.0,0.0,0.0,0.0,-0.044785153 +211.37083292007446,0.0,0.0,0.0,0.0,-0.044785153 +211.37981390953064,0.0,0.0,0.0,0.0,-0.044785153 +211.39003801345825,0.0,0.0,0.0,0.0,-0.044785153 +211.3997700214386,0.0,0.0,0.0,0.0,-0.044785153 +211.40987706184387,0.0,0.0,0.0,0.0,-0.0466352 +211.41960501670837,0.0,0.0,0.0,0.0,-0.0466352 +211.430340051651,0.0,0.0,0.0,0.0,-0.0466352 +211.44282293319702,0.0,0.0,0.0,0.0,-0.0466352 +211.45149111747742,0.0,0.0,0.0,0.0,-0.0466352 +211.46080899238586,0.0,0.0,0.0,0.0,-0.041085053 +211.469820022583,0.0,0.0,0.0,0.0,-0.041085053 +211.479887008667,0.0,0.0,0.0,0.0,-0.041085053 +211.48976111412048,0.0,0.0,0.0,0.0,-0.041085053 +211.5052809715271,0.0,0.0,0.0,0.0,-0.041085053 +211.50988507270813,0.0,0.0,0.0,0.0,-0.054035395 +211.51958894729614,0.0,0.0,0.0,0.0,-0.054035395 +211.53033208847046,0.0,0.0,0.0,0.0,-0.054035395 +211.54180312156677,0.0,0.0,0.0,0.0,-0.054035395 +211.55082893371582,0.0,0.0,0.0,0.0,-0.054035395 +211.55982494354248,0.0,0.0,0.0,0.0,-0.042935103 +211.5695149898529,0.0,0.0,0.0,0.0,-0.042935103 +211.5852711200714,0.0,0.0,0.0,0.0,-0.042935103 +211.59529495239258,0.0,0.0,0.0,0.0,-0.042935103 +211.60018801689148,0.0,0.0,0.0,0.0,-0.042935103 +211.61365604400635,0.0,0.0,0.0,0.0,-0.044785153 +211.61959600448608,0.0,0.0,0.0,0.0,-0.044785153 +211.63031911849976,0.0,0.0,0.0,0.0,-0.044785153 +211.64037895202637,0.0,0.0,0.0,0.0,-0.044785153 +211.64980602264404,0.0,0.0,0.0,0.0,-0.044785153 +211.65946006774902,0.0,0.0,0.0,0.0,-0.054035395 +211.67528891563416,0.0,0.0,0.0,0.0,-0.054035395 +211.68366408348083,0.0,0.0,0.0,0.0,-0.054035395 +211.693843126297,0.0,0.0,0.0,0.0,-0.054035395 +211.7001349925995,0.0,0.0,0.0,0.0,-0.054035395 +211.71100401878357,0.0,0.0,0.0,0.0,-0.052185345 +211.71959805488586,0.0,0.0,0.0,0.0,-0.052185345 +211.7295401096344,0.0,0.0,0.0,0.0,-0.052185345 +211.73976612091064,0.0,0.0,0.0,0.0,-0.052185345 +211.74943709373474,0.0,0.0,0.0,0.0,-0.052185345 +211.76282596588135,0.0,0.0,0.0,0.0,-0.050335295 +211.77376103401184,0.0,0.0,0.0,0.0,-0.050335295 +211.7829611301422,0.0,0.0,0.0,0.0,-0.050335295 +211.7899091243744,0.0,0.0,0.0,0.0,-0.050335295 +211.8007791042328,0.0,0.0,0.0,0.0,-0.050335295 +211.80970311164856,0.0,0.0,0.0,0.0,-0.041085053 +211.8195879459381,0.0,0.0,0.0,0.0,-0.041085053 +211.82975506782532,0.0,0.0,0.0,0.0,-0.041085053 +211.83953595161438,0.0,0.0,0.0,0.0,-0.041085053 +211.8542721271515,0.0,0.0,0.0,0.0,-0.041085053 +211.86017298698425,0.0,0.0,0.0,0.0,-0.039235007 +211.87210512161255,0.0,0.0,0.0,0.0,-0.039235007 +211.88103413581848,0.0,0.0,0.0,0.0,-0.039235007 +211.88993191719055,0.0,0.0,0.0,0.0,-0.039235007 +211.89942002296448,0.0,0.0,0.0,0.0,-0.039235007 +211.91073298454285,0.0,0.0,0.0,0.0,-0.050335295 +211.9196081161499,0.0,0.0,0.0,0.0,-0.050335295 +211.92956113815308,0.0,0.0,0.0,0.0,-0.050335295 +211.94286608695984,0.0,0.0,0.0,0.0,-0.050335295 +211.95230507850647,0.0,0.0,0.0,0.0,-0.050335295 +211.96122813224792,0.0,0.0,0.0,0.0,-0.042935103 +211.97016501426697,0.0,0.0,0.0,0.0,-0.042935103 +211.9827151298523,0.0,0.0,0.0,0.0,-0.042935103 +211.98951601982117,0.0,0.0,0.0,0.0,-0.042935103 +212.00069999694824,0.0,0.0,0.0,0.0,-0.042935103 +212.00971794128418,0.0,0.0,0.0,0.0,-0.042935103 +212.0195939540863,0.0,0.0,0.0,0.0,-0.06883579 +212.03033804893494,0.0,0.0,0.0,0.0,-0.06883579 +212.04144406318665,0.0,0.0,0.0,0.0,-0.06883579 +212.05035305023193,0.0,0.0,0.0,0.0,-0.06883579 +212.05947709083557,0.0,0.0,0.0,0.0,0.06066765 +212.07147407531738,0.0,0.0,0.0,0.0,0.06066765 +212.08170199394226,0.0,0.0,0.0,0.0,0.06066765 +212.09071111679077,0.0,0.0,0.0,0.0,0.06066765 +212.09970593452454,0.0,0.0,0.0,0.0,0.06066765 +212.10971808433533,0.0,0.0,0.0,0.0,0.06066765 +212.11959600448608,0.0,0.0,0.0,0.0,-0.044785153 +212.13034296035767,0.0,0.0,0.0,0.0,-0.044785153 +212.13945603370667,0.0,0.0,0.0,0.0,-0.044785153 +212.1534140110016,0.0,0.0,0.0,0.0,-0.044785153 +212.16137313842773,0.0,0.0,0.0,0.0,-0.0466352 +212.1716980934143,0.0,0.0,0.0,0.0,-0.0466352 +212.18071293830872,0.0,0.0,0.0,0.0,-0.0466352 +212.18968796730042,0.0,0.0,0.0,0.0,-0.0466352 +212.1999590396881,0.0,0.0,0.0,0.0,-0.0466352 +212.2099061012268,0.0,0.0,0.0,0.0,-0.06143559 +212.21965193748474,0.0,0.0,0.0,0.0,-0.06143559 +212.2298390865326,0.0,0.0,0.0,0.0,-0.06143559 +212.2403221130371,0.0,0.0,0.0,0.0,-0.06143559 +212.25018906593323,0.0,0.0,0.0,0.0,-0.06143559 +212.26156306266785,0.0,0.0,0.0,0.0,-0.050335295 +212.27055311203003,0.0,0.0,0.0,0.0,-0.050335295 +212.27953910827637,0.0,0.0,0.0,0.0,-0.050335295 +212.29002904891968,0.0,0.0,0.0,0.0,-0.050335295 +212.2998559474945,0.0,0.0,0.0,0.0,-0.050335295 +212.3099091053009,0.0,0.0,0.0,0.0,-0.06328564 +212.31944298744202,0.0,0.0,0.0,0.0,-0.06328564 +212.33033800125122,0.0,0.0,0.0,0.0,-0.06328564 +212.33959293365479,0.0,0.0,0.0,0.0,-0.06328564 +212.35142397880554,0.0,0.0,0.0,0.0,-0.06328564 +212.36040902137756,0.0,0.0,0.0,0.0,-0.06143559 +212.36966395378113,0.0,0.0,0.0,0.0,-0.06143559 +212.37980198860168,0.0,0.0,0.0,0.0,-0.06143559 +212.39523792266846,0.0,0.0,0.0,0.0,-0.06143559 +212.40165901184082,0.0,0.0,0.0,0.0,-0.06143559 +212.4098949432373,0.0,0.0,0.0,0.0,-0.03183481 +212.41960191726685,0.0,0.0,0.0,0.0,-0.03183481 +212.430321931839,0.0,0.0,0.0,0.0,-0.03183481 +212.4401581287384,0.0,0.0,0.0,0.0,-0.03183481 +212.44941592216492,0.0,0.0,0.0,0.0,-0.03183481 +212.459645986557,0.0,0.0,0.0,0.0,-0.050335295 +212.47021102905273,0.0,0.0,0.0,0.0,-0.050335295 +212.48114204406738,0.0,0.0,0.0,0.0,-0.050335295 +212.48944211006165,0.0,0.0,0.0,0.0,-0.050335295 +212.50412607192993,0.0,0.0,0.0,0.0,-0.050335295 +212.5099060535431,0.0,0.0,0.0,0.0,-0.054035395 +212.51962900161743,0.0,0.0,0.0,0.0,-0.054035395 +212.53037691116333,0.0,0.0,0.0,0.0,-0.054035395 +212.54005813598633,0.0,0.0,0.0,0.0,-0.054035395 +212.54951095581055,0.0,0.0,0.0,0.0,-0.054035395 +212.56026601791382,0.0,0.0,0.0,0.0,-0.042935103 +212.5737109184265,0.0,0.0,0.0,0.0,-0.042935103 +212.57951998710632,0.0,0.0,0.0,0.0,-0.042935103 +212.5939610004425,0.0,0.0,0.0,0.0,-0.042935103 +212.60289192199707,0.0,0.0,0.0,0.0,-0.042935103 +212.61180806159973,0.0,0.0,0.0,0.0,-0.054035395 +212.61956691741943,0.0,0.0,0.0,0.0,-0.054035395 +212.62963700294495,0.0,0.0,0.0,0.0,-0.054035395 +212.6395881175995,0.0,0.0,0.0,0.0,-0.054035395 +212.6503450870514,0.0,0.0,0.0,0.0,-0.054035395 +212.66134214401245,0.0,0.0,0.0,0.0,-0.0577355 +212.67420291900635,0.0,0.0,0.0,0.0,-0.0577355 +212.6831021308899,0.0,0.0,0.0,0.0,-0.0577355 +212.6920199394226,0.0,0.0,0.0,0.0,-0.0577355 +212.7009220123291,0.0,0.0,0.0,0.0,-0.0577355 +212.70985412597656,0.0,0.0,0.0,0.0,-0.050335295 +212.7196090221405,0.0,0.0,0.0,0.0,-0.050335295 +212.7295961380005,0.0,0.0,0.0,0.0,-0.050335295 +212.74041295051575,0.0,0.0,0.0,0.0,-0.050335295 +212.74941897392273,0.0,0.0,0.0,0.0,-0.050335295 +212.7597939968109,0.0,0.0,0.0,0.0,-0.050335295 +212.77005004882812,0.0,0.0,0.0,0.0,-0.050335295 +212.78113198280334,0.0,0.0,0.0,0.0,-0.050335295 +212.79005098342896,0.0,0.0,0.0,0.0,-0.050335295 +212.80058193206787,0.0,0.0,0.0,0.0,-0.050335295 +212.80957293510437,0.0,0.0,0.0,0.0,-0.041085053 +212.81958603858948,0.0,0.0,0.0,0.0,-0.041085053 +212.83033514022827,0.0,0.0,0.0,0.0,-0.041085053 +212.83950400352478,0.0,0.0,0.0,0.0,-0.041085053 +212.84990000724792,0.0,0.0,0.0,0.0,-0.041085053 +212.86132907867432,0.0,0.0,0.0,0.0,-0.042935103 +212.87023997306824,0.0,0.0,0.0,0.0,-0.042935103 +212.879821062088,0.0,0.0,0.0,0.0,-0.042935103 +212.89045596122742,0.0,0.0,0.0,0.0,-0.042935103 +212.89943313598633,0.0,0.0,0.0,0.0,-0.042935103 +212.90957808494568,0.0,0.0,0.0,0.0,-0.033684865 +212.91962814331055,0.0,0.0,0.0,0.0,-0.033684865 +212.92958807945251,0.0,0.0,0.0,0.0,-0.033684865 +212.94151711463928,0.0,0.0,0.0,0.0,-0.033684865 +212.95040106773376,0.0,0.0,0.0,0.0,-0.033684865 +212.96232509613037,0.0,0.0,0.0,0.0,-0.0577355 +212.97132205963135,0.0,0.0,0.0,0.0,-0.0577355 +212.98029398918152,0.0,0.0,0.0,0.0,-0.0577355 +212.98941493034363,0.0,0.0,0.0,0.0,-0.0577355 +212.99954891204834,0.0,0.0,0.0,0.0,-0.0577355 +213.00992703437805,0.0,0.0,0.0,0.0,-0.052185345 +213.01965999603271,0.0,0.0,0.0,0.0,-0.052185345 +213.02993893623352,0.0,0.0,0.0,0.0,-0.052185345 +213.03949809074402,0.0,0.0,0.0,0.0,-0.052185345 +213.05215692520142,0.0,0.0,0.0,0.0,-0.052185345 +213.06009197235107,0.0,0.0,0.0,0.0,-0.013334316 +213.0701539516449,0.0,0.0,0.0,0.0,-0.013334316 +213.08031296730042,0.0,0.0,0.0,0.0,-0.013334316 +213.08954310417175,0.0,0.0,0.0,0.0,-0.013334316 +213.0994291305542,0.0,0.0,0.0,0.0,-0.013334316 +213.10972094535828,0.0,0.0,0.0,0.0,-0.013334316 +213.1196050643921,0.0,0.0,0.0,0.0,-0.06143559 +213.13035202026367,0.0,0.0,0.0,0.0,-0.06143559 +213.13962697982788,0.0,0.0,0.0,0.0,-0.06143559 +213.15100693702698,0.0,0.0,0.0,0.0,-0.06143559 +213.159903049469,0.0,0.0,0.0,0.0,-0.052185345 +213.17051100730896,0.0,0.0,0.0,0.0,-0.052185345 +213.17950296401978,0.0,0.0,0.0,0.0,-0.052185345 +213.19077110290527,0.0,0.0,0.0,0.0,-0.052185345 +213.1998040676117,0.0,0.0,0.0,0.0,-0.052185345 +213.20991611480713,0.0,0.0,0.0,0.0,-0.054035395 +213.21962714195251,0.0,0.0,0.0,0.0,-0.054035395 +213.22939014434814,0.0,0.0,0.0,0.0,-0.054035395 +213.24085998535156,0.0,0.0,0.0,0.0,-0.054035395 +213.2498381137848,0.0,0.0,0.0,0.0,-0.054035395 +213.25952005386353,0.0,0.0,0.0,0.0,-0.029984765 +213.26949095726013,0.0,0.0,0.0,0.0,-0.029984765 +213.28011012077332,0.0,0.75757575,0.75757575,0.0,-0.029984765 +213.28946208953857,0.0,3.030303,3.030303,0.0,-0.029984765 +213.30042004585266,0.0,5.3030305,5.3030305,0.0,-0.029984765 +213.3099069595337,0.0,7.575758,7.575758,0.0,-0.06143559 +213.31963109970093,0.0,10.606061,10.606061,0.0,-0.06143559 +213.33034300804138,0.0,12.878788,12.878788,0.0,-0.06143559 +213.3396921157837,0.0,15.909091,15.909091,0.0,-0.06143559 +213.35051202774048,0.0,18.939394,18.939394,0.0,-0.06143559 +213.35950207710266,0.0,21.969696,21.969696,0.0,-0.044785153 +213.37092113494873,0.0,25.757576,25.757576,0.0,-0.044785153 +213.3799409866333,0.0,29.545454,29.545454,0.0,-0.044785153 +213.39360213279724,0.0,33.333336,33.333336,0.0,-0.044785153 +213.3994381427765,0.0,37.121216,37.121216,0.0,-0.044785153 +213.40963196754456,0.0,40.90909,40.90909,0.0,-0.044785153 +213.419615983963,0.0,44.696968,44.696968,0.0,-0.039235007 +213.42958903312683,0.0,49.242424,49.242424,0.0,-0.039235007 +213.44046998023987,0.0,53.030304,53.030304,0.0,-0.039235007 +213.44939994812012,0.0,56.818184,56.818184,0.0,-0.039235007 +213.4609990119934,0.0,60.606064,60.606064,0.0,-0.0466352 +213.47000002861023,0.0,63.636364,63.636364,0.009372071,-0.0466352 +213.48343706130981,0.0,67.42425,67.42425,0.018744143,-0.0466352 +213.49242496490479,0.0,60.606064,60.606064,0.018744143,-0.0466352 +213.4997489452362,0.0,44.696968,44.696968,0.028116215,-0.0466352 +213.50991201400757,0.0,30.303032,30.303032,0.037488285,-0.0577355 +213.5196521282196,0.0,20.454544,20.454544,0.046860356,-0.0577355 +213.52959609031677,0.0,23.484848,23.484848,0.046860356,-0.0577355 +213.53946900367737,0.0,29.545454,29.545454,0.05623243,-0.0577355 +213.54980993270874,0.0,34.848484,34.848484,0.0656045,-0.0577355 +213.56008911132812,0.0,40.151516,40.151516,0.0656045,-0.042935103 +213.5732810497284,0.0,45.454548,45.454548,0.0656045,-0.042935103 +213.5822629928589,0.0,50.757576,50.757576,0.07497657,-0.042935103 +213.5912549495697,0.0,55.30303,55.30303,0.07497657,-0.042935103 +213.6002209186554,0.0,60.606064,60.606064,0.08434864,-0.042935103 +213.60978293418884,0.0,65.15151,65.15151,0.08434864,-0.042935103 +213.61962008476257,0.0,67.42425,67.42425,0.09372071,-0.03183481 +213.62955904006958,0.0,59.090908,59.090908,0.10309278,-0.03183481 +213.63942193984985,0.0,50.0,50.0,0.10309278,-0.03183481 +213.65017294883728,0.0,43.181816,43.181816,0.11246486,-0.03183481 +213.66088795661926,0.0,37.878788,37.878788,0.11246486,-0.044785153 +213.67212200164795,0.0,33.333336,33.333336,0.12183693,-0.044785153 +213.67976999282837,0.0,29.545454,29.545454,0.12183693,-0.044785153 +213.68999004364014,0.0,26.515152,26.515152,0.12183693,-0.044785153 +213.70145511627197,0.0,24.242424,24.242424,0.131209,-0.044785153 +213.7100920677185,0.0,22.727274,22.727274,0.131209,-0.044785153 +213.71945691108704,0.0,25.0,25.0,0.131209,-0.044785153 +213.73036098480225,0.0,31.818182,31.818182,0.14058107,-0.044785153 +213.74024295806885,0.0,38.636364,38.636364,0.14058107,-0.044785153 +213.75104403495789,0.0,44.696968,44.696968,0.14058107,-0.044785153 +213.76125502586365,0.0,50.757576,50.757576,0.14995314,-0.026284654 +213.77019500732422,0.0,56.818184,56.818184,0.14995314,-0.026284654 +213.7799289226532,0.0,62.121212,62.121212,0.15932521,-0.026284654 +213.78962397575378,0.0,67.42425,67.42425,0.15932521,-0.026284654 +213.8004720211029,0.0,67.42425,67.42425,0.15932521,-0.026284654 +213.8094789981842,0.0,63.636364,63.636364,0.15932521,-0.06328564 +213.8196370601654,0.0,59.848484,59.848484,0.15932521,-0.06328564 +213.83031797409058,0.0,56.818184,56.818184,0.15932521,-0.06328564 +213.84144711494446,0.0,53.78788,53.78788,0.15932521,-0.06328564 +213.84947299957275,0.0,51.515152,51.515152,0.15932521,-0.06328564 +213.86081790924072,0.0,50.0,50.0,0.15932521,-0.042935103 +213.86979293823242,0.0,47.727272,47.727272,0.16869728,-0.042935103 +213.8814709186554,0.0,46.21212,46.21212,0.15932521,-0.042935103 +213.8904550075531,0.0,44.696968,44.696968,0.16869728,-0.042935103 +213.8995521068573,0.0,43.939392,43.939392,0.16869728,-0.042935103 +213.9114100933075,0.0,42.424244,42.424244,0.16869728,-0.041085053 +213.9203360080719,0.0,41.666668,41.666668,0.16869728,-0.041085053 +213.92958903312683,0.0,40.90909,40.90909,0.16869728,-0.041085053 +213.93958401679993,0.0,40.151516,40.151516,0.16869728,-0.041085053 +213.95065593719482,0.0,40.151516,40.151516,0.16869728,-0.041085053 +213.95962595939636,0.0,39.39394,39.39394,0.16869728,-0.06698574 +213.97145891189575,0.0,39.39394,39.39394,0.17806935,-0.06698574 +213.98046708106995,0.0,39.39394,39.39394,0.16869728,-0.06698574 +213.98948001861572,0.0,38.636364,38.636364,0.17806935,-0.06698574 +214.00150108337402,0.0,38.636364,38.636364,0.17806935,-0.06698574 +214.00991702079773,0.0,38.636364,38.636364,0.17806935,-0.054035395 +214.01952695846558,0.0,38.636364,38.636364,0.17806935,-0.054035395 +214.0296471118927,0.0,38.636364,38.636364,0.18744142,-0.054035395 +214.0404920578003,0.0,38.636364,38.636364,0.18744142,-0.054035395 +214.04947996139526,0.0,38.636364,38.636364,0.17806935,-0.054035395 +214.0614640712738,0.0,38.636364,38.636364,0.18744142,-0.039235007 +214.06962609291077,0.0,39.39394,39.39394,0.17806935,-0.039235007 +214.07947206497192,0.0,39.39394,39.39394,0.17806935,-0.039235007 +214.090961933136,0.0,39.39394,39.39394,0.17806935,-0.039235007 +214.09987211227417,0.0,39.39394,39.39394,0.17806935,-0.039235007 +214.109601020813,0.0,39.39394,39.39394,0.17806935,-0.039235007 +214.11962294578552,0.0,40.151516,40.151516,0.16869728,-0.07623599 +214.1303460597992,0.0,40.151516,40.151516,0.16869728,-0.07623599 +214.13952803611755,0.0,40.151516,40.151516,0.17806935,-0.07623599 +214.15145707130432,0.0,40.151516,40.151516,0.16869728,-0.07623599 +214.16046500205994,0.0,40.151516,40.151516,0.17806935,-0.044785153 +214.16948103904724,0.0,40.90909,40.90909,0.17806935,-0.044785153 +214.1800971031189,0.0,40.90909,40.90909,0.17806935,-0.044785153 +214.1906681060791,0.0,40.90909,40.90909,0.17806935,-0.044785153 +214.19958305358887,0.0,40.90909,40.90909,0.16869728,-0.044785153 +214.20991206169128,0.0,41.666668,41.666668,0.16869728,-0.085486226 +214.21964406967163,0.0,41.666668,41.666668,0.17806935,-0.085486226 +214.23035597801208,0.0,41.666668,41.666668,0.17806935,-0.085486226 +214.24148106575012,0.0,41.666668,41.666668,0.17806935,-0.085486226 +214.2504689693451,0.0,42.424244,42.424244,0.17806935,-0.085486226 +214.2594940662384,0.0,42.424244,42.424244,0.17806935,-0.050335295 +214.27173614501953,0.0,42.424244,42.424244,0.17806935,-0.050335295 +214.28075003623962,0.0,42.424244,42.424244,0.18744142,-0.050335295 +214.28976702690125,0.0,43.181816,43.181816,0.18744142,-0.050335295 +214.30106401443481,0.0,43.181816,43.181816,0.18744142,-0.050335295 +214.30992794036865,0.0,43.181816,43.181816,0.18744142,-0.0577355 +214.3196120262146,0.0,43.181816,43.181816,0.18744142,-0.0577355 +214.32958602905273,0.0,43.181816,43.181816,0.18744142,-0.0577355 +214.34050512313843,0.0,43.939392,43.939392,0.18744142,-0.0577355 +214.34946703910828,0.0,43.939392,43.939392,0.18744142,-0.0577355 +214.36182808876038,0.0,43.939392,43.939392,0.18744142,-0.0466352 +214.37082314491272,0.0,43.939392,43.939392,0.18744142,-0.0466352 +214.37981796264648,0.0,43.939392,43.939392,0.18744142,-0.0466352 +214.39093208312988,0.0,43.939392,43.939392,0.18744142,-0.0466352 +214.39939904212952,0.0,44.696968,44.696968,0.17806935,-0.0466352 +214.40990805625916,0.0,44.696968,44.696968,0.17806935,-0.054035395 +214.41965198516846,0.0,44.696968,44.696968,0.18744142,-0.054035395 +214.42969703674316,0.0,44.696968,44.696968,0.18744142,-0.054035395 +214.43951392173767,0.0,44.696968,44.696968,0.18744142,-0.054035395 +214.45019793510437,0.0,44.696968,44.696968,0.18744142,-0.054035395 +214.4594850540161,0.0,44.696968,44.696968,0.18744142,-0.01888446 +214.46989393234253,0.0,44.696968,44.696968,0.18744142,-0.01888446 +214.48082304000854,0.0,44.696968,44.696968,0.18744142,-0.01888446 +214.48978900909424,0.0,44.696968,44.696968,0.18744142,-0.01888446 +214.50100803375244,0.0,44.696968,44.696968,0.18744142,-0.01888446 +214.5099229812622,0.0,44.696968,44.696968,0.18744142,-0.01888446 +214.51967310905457,0.0,44.696968,44.696968,0.18744142,-0.050335295 +214.52960109710693,0.0,45.454548,45.454548,0.18744142,-0.050335295 +214.54196310043335,0.0,44.696968,44.696968,0.18744142,-0.050335295 +214.55093812942505,0.0,45.454548,45.454548,0.18744142,-0.050335295 +214.55996799468994,0.0,45.454548,45.454548,0.18744142,-0.06328564 +214.57066202163696,0.0,44.696968,44.696968,0.17806935,-0.06328564 +214.57964992523193,0.0,44.696968,44.696968,0.17806935,-0.06328564 +214.58943605422974,0.0,44.696968,44.696968,0.17806935,-0.06328564 +214.60151410102844,0.0,44.696968,44.696968,0.17806935,-0.06328564 +214.60992312431335,0.0,44.696968,44.696968,0.17806935,-0.05588545 +214.6194999217987,0.0,44.696968,44.696968,0.17806935,-0.05588545 +214.6303551197052,0.0,44.696968,44.696968,0.18744142,-0.05588545 +214.64101696014404,0.0,44.696968,44.696968,0.18744142,-0.05588545 +214.65002393722534,0.0,44.696968,44.696968,0.18744142,-0.05588545 +214.66043090820312,0.0,44.696968,44.696968,0.18744142,-0.11693706 +214.66951608657837,0.0,44.696968,44.696968,0.17806935,-0.11693706 +214.67958307266235,0.0,43.939392,43.939392,0.18744142,-0.11693706 +214.69152212142944,0.0,43.939392,43.939392,0.17806935,-0.11693706 +214.70052003860474,0.0,43.939392,43.939392,0.17806935,-0.11693706 +214.70951509475708,0.0,43.939392,43.939392,0.17806935,-0.06328564 +214.71939396858215,0.0,43.939392,43.939392,0.18744142,-0.06328564 +214.7310869693756,0.0,43.181816,43.181816,0.18744142,-0.06328564 +214.74008798599243,0.0,43.181816,43.181816,0.18744142,-0.06328564 +214.75040411949158,0.0,43.181816,43.181816,0.18744142,-0.06328564 +214.75939106941223,0.0,42.424244,42.424244,0.18744142,-0.0577355 +214.7725019454956,0.0,42.424244,42.424244,0.18744142,-0.0577355 +214.78036093711853,0.0,42.424244,42.424244,0.18744142,-0.0577355 +214.7904920578003,0.0,41.666668,41.666668,0.18744142,-0.0577355 +214.79949307441711,0.0,41.666668,41.666668,0.18744142,-0.0577355 +214.81064105033875,0.0,40.90909,40.90909,0.18744142,-0.044785153 +214.81964206695557,0.0,40.90909,40.90909,0.18744142,-0.044785153 +214.829754114151,0.0,40.90909,40.90909,0.18744142,-0.044785153 +214.8397500514984,0.0,40.151516,40.151516,0.18744142,-0.044785153 +214.8494839668274,0.0,40.151516,40.151516,0.18744142,-0.044785153 +214.8599030971527,0.0,39.39394,39.39394,0.18744142,-0.06698574 +214.87148594856262,0.0,39.39394,39.39394,0.18744142,-0.06698574 +214.88051009178162,0.0,38.636364,38.636364,0.18744142,-0.06698574 +214.88949394226074,0.0,38.636364,38.636364,0.17806935,-0.06698574 +214.90085411071777,0.0,37.878788,37.878788,0.17806935,-0.06698574 +214.91105914115906,0.0,37.878788,37.878788,0.18744142,-0.054035395 +214.9196560382843,0.0,37.878788,37.878788,0.18744142,-0.054035395 +214.9294469356537,0.0,37.121216,37.121216,0.18744142,-0.054035395 +214.93938994407654,0.0,36.363636,36.363636,0.18744142,-0.054035395 +214.95250606536865,0.0,36.363636,36.363636,0.18744142,-0.054035395 +214.96084713935852,0.0,35.60606,35.60606,0.18744142,-0.050335295 +214.97050309181213,0.0,35.60606,35.60606,0.18744142,-0.050335295 +214.9795639514923,0.0,34.848484,34.848484,0.18744142,-0.050335295 +214.99128913879395,0.0,34.848484,34.848484,0.18744142,-0.050335295 +215.00022912025452,0.0,34.09091,34.09091,0.18744142,-0.050335295 +215.0102870464325,0.0,34.09091,34.09091,0.1968135,-0.06698574 +215.01964712142944,0.0,33.333336,33.333336,0.1968135,-0.06698574 +215.0303599834442,0.0,33.333336,33.333336,0.1968135,-0.06698574 +215.0424680709839,0.0,32.575756,32.575756,0.1968135,-0.06698574 +215.05147910118103,0.0,31.818182,31.818182,0.1968135,-0.06698574 +215.06047105789185,0.0,31.818182,31.818182,0.1968135,-0.041085053 +215.06947898864746,0.0,31.060606,31.060606,0.1968135,-0.041085053 +215.08044004440308,0.0,31.060606,31.060606,0.1968135,-0.041085053 +215.08951091766357,0.0,30.303032,30.303032,0.1968135,-0.041085053 +215.10037207603455,0.0,29.545454,29.545454,0.1968135,-0.041085053 +215.1095471382141,0.0,29.545454,29.545454,0.1968135,-0.041085053 +215.1196050643921,0.0,28.78788,28.78788,0.1968135,-0.0466352 +215.13038301467896,0.0,28.78788,28.78788,0.18744142,-0.0466352 +215.14147901535034,0.0,28.030302,28.030302,0.18744142,-0.0466352 +215.15047192573547,0.0,27.272728,27.272728,0.18744142,-0.0466352 +215.15945506095886,0.0,27.272728,27.272728,0.1968135,-0.044785153 +215.16959500312805,0.0,26.515152,26.515152,0.1968135,-0.044785153 +215.18143510818481,0.0,25.757576,25.757576,0.1968135,-0.044785153 +215.19037008285522,0.0,25.757576,25.757576,0.1968135,-0.044785153 +215.19945812225342,0.0,25.0,25.0,0.18744142,-0.044785153 +215.20991396903992,0.0,24.242424,24.242424,0.1968135,-0.052185345 +215.21963906288147,0.0,23.484848,23.484848,0.18744142,-0.052185345 +215.23038697242737,0.0,23.484848,23.484848,0.18744142,-0.052185345 +215.2395179271698,0.0,22.727274,22.727274,0.1968135,-0.052185345 +215.2494261264801,0.0,24.242424,24.242424,0.1968135,-0.052185345 +215.2612500190735,0.0,29.545454,29.545454,0.18744142,-0.044785153 +215.27150797843933,0.0,34.848484,34.848484,0.1968135,-0.044785153 +215.28051590919495,0.0,40.151516,40.151516,0.1968135,-0.044785153 +215.2895209789276,0.0,44.696968,44.696968,0.1968135,-0.044785153 +215.29962396621704,0.0,49.242424,49.242424,0.1968135,-0.044785153 +215.30993103981018,0.0,53.030304,53.030304,0.1968135,-0.050335295 +215.31964206695557,0.0,56.818184,56.818184,0.1968135,-0.050335295 +215.3300530910492,0.0,60.606064,60.606064,0.1968135,-0.050335295 +215.33940601348877,0.0,63.636364,63.636364,0.18744142,-0.050335295 +215.35248708724976,0.0,66.66667,66.66667,0.18744142,-0.050335295 +215.3614490032196,0.0,66.66667,66.66667,0.1968135,-0.0466352 +215.37027096748352,0.0,62.121212,62.121212,0.1968135,-0.0466352 +215.37942600250244,0.0,56.818184,56.818184,0.1968135,-0.0466352 +215.38945412635803,0.0,51.515152,51.515152,0.1968135,-0.0466352 +215.4013810157776,0.0,47.727272,47.727272,0.1968135,-0.0466352 +215.40992903709412,0.0,43.181816,43.181816,0.1968135,-0.042935103 +215.41945004463196,0.0,38.636364,38.636364,0.1968135,-0.042935103 +215.42957210540771,0.0,34.09091,34.09091,0.18744142,-0.042935103 +215.4423429965973,0.0,30.303032,30.303032,0.18744142,-0.042935103 +215.45130610466003,0.0,26.515152,26.515152,0.18744142,-0.042935103 +215.46028995513916,0.0,21.969696,21.969696,0.17806935,-0.044785153 +215.46964693069458,0.0,23.484848,23.484848,0.17806935,-0.044785153 +215.47973799705505,0.0,25.757576,25.757576,0.17806935,-0.044785153 +215.4905641078949,0.0,28.78788,28.78788,0.16869728,-0.044785153 +215.49946308135986,0.0,31.060606,31.060606,0.16869728,-0.044785153 +215.5099470615387,0.0,33.333336,33.333336,0.16869728,-0.033684865 +215.51965498924255,0.0,34.848484,34.848484,0.16869728,-0.033684865 +215.53037810325623,0.0,36.363636,36.363636,0.15932521,-0.033684865 +215.54116702079773,0.0,37.878788,37.878788,0.15932521,-0.033684865 +215.55016112327576,0.0,38.636364,38.636364,0.14995314,-0.033684865 +215.5597219467163,0.0,39.39394,39.39394,0.14995314,-0.050335295 +215.57080507278442,0.0,39.39394,39.39394,0.14995314,-0.050335295 +215.57972502708435,0.0,39.39394,39.39394,0.14995314,-0.050335295 +215.59134101867676,0.0,39.39394,39.39394,0.14058107,-0.050335295 +215.6000199317932,0.0,38.636364,38.636364,0.14058107,-0.050335295 +215.60994005203247,0.0,37.878788,37.878788,0.14058107,-0.054035395 +215.62203407287598,0.0,36.363636,36.363636,0.131209,-0.054035395 +215.62946796417236,0.0,34.848484,34.848484,0.131209,-0.054035395 +215.64000797271729,0.0,34.09091,34.09091,0.12183693,-0.054035395 +215.6497859954834,0.0,32.575756,32.575756,0.11246486,-0.054035395 +215.65998792648315,0.0,31.060606,31.060606,0.11246486,-0.05588545 +215.6723301410675,0.0,29.545454,29.545454,0.11246486,-0.05588545 +215.6813280582428,0.0,28.030302,28.030302,0.10309278,-0.05588545 +215.69031596183777,0.0,27.272728,27.272728,0.09372071,-0.05588545 +215.69954299926758,0.0,25.757576,25.757576,0.09372071,-0.05588545 +215.71190690994263,0.0,25.0,25.0,0.08434864,-0.0466352 +215.7196569442749,0.0,24.242424,24.242424,0.08434864,-0.0466352 +215.72988605499268,0.0,22.727274,22.727274,0.07497657,-0.0466352 +215.7398431301117,0.0,21.969696,21.969696,0.0656045,-0.0466352 +215.75330996513367,0.0,20.454544,20.454544,0.0656045,-0.0466352 +215.76016998291016,0.0,19.69697,19.69697,0.05623243,-0.039235007 +215.77130699157715,0.0,18.939394,18.939394,0.05623243,-0.039235007 +215.7799141407013,0.0,17.424242,17.424242,0.046860356,-0.039235007 +215.7927849292755,0.0,16.666668,16.666668,0.046860356,-0.039235007 +215.80177402496338,0.0,15.909091,15.909091,0.046860356,-0.039235007 +215.81075501441956,0.0,15.151516,15.151516,0.037488285,-0.020734508 +215.81964302062988,0.0,14.39394,14.39394,0.028116215,-0.020734508 +215.8295431137085,0.0,13.636364,13.636364,0.018744143,-0.020734508 +215.8432960510254,0.0,12.878788,12.878788,0.018744143,-0.020734508 +215.85229802131653,0.0,12.121212,12.121212,0.018744143,-0.020734508 +215.86129713058472,0.0,11.363637,11.363637,0.009372071,-0.0466352 +215.87026810646057,0.0,10.606061,10.606061,0.0,-0.0466352 +215.88265800476074,0.0,10.606061,10.606061,0.0,-0.0466352 +215.88953399658203,0.0,9.848485,9.848485,0.0,-0.0466352 +215.90063095092773,0.0,9.090909,9.090909,0.0,-0.0466352 +215.90956592559814,0.0,9.090909,9.090909,0.0,-0.054035395 +215.91967797279358,0.0,8.333334,8.333334,0.0,-0.054035395 +215.9294090270996,0.0,7.575758,7.575758,0.0,-0.054035395 +215.9422631263733,0.0,7.575758,7.575758,0.0,-0.054035395 +215.95126509666443,0.0,6.818182,6.818182,0.0,-0.054035395 +215.96027898788452,0.0,6.818182,6.818182,0.0,-0.120637156 +215.97136211395264,0.0,6.818182,6.818182,0.0,-0.120637156 +215.97953510284424,0.0,6.060606,6.060606,0.0,-0.120637156 +215.9897711277008,0.0,6.060606,6.060606,0.0,-0.120637156 +215.99949598312378,0.0,5.3030305,5.3030305,0.0,-0.120637156 +216.01005005836487,0.0,5.3030305,5.3030305,0.0,-0.0577355 +216.01963710784912,0.0,5.3030305,5.3030305,0.0,-0.0577355 +216.03038811683655,0.0,4.5454545,4.5454545,0.0,-0.0577355 +216.04125809669495,0.0,4.5454545,4.5454545,0.0,-0.0577355 +216.05023503303528,0.0,4.5454545,4.5454545,0.0,-0.0577355 +216.06106400489807,0.0,4.5454545,4.5454545,0.0,-0.050335295 +216.06975102424622,0.0,3.787879,3.787879,0.0,-0.050335295 +216.08035397529602,0.0,3.787879,3.787879,0.0,-0.050335295 +216.0911159515381,0.0,3.787879,3.787879,0.0,-0.050335295 +216.10011410713196,0.0,3.787879,3.787879,0.0,-0.050335295 +216.10993909835815,0.0,3.787879,3.787879,0.0,-0.0577355 +216.119647026062,0.0,3.030303,3.030303,0.0,-0.0577355 +216.1295030117035,0.0,3.030303,3.030303,0.0,-0.0577355 +216.14021801948547,0.0,3.030303,3.030303,0.0,-0.0577355 +216.1501269340515,0.0,3.030303,3.030303,0.0,-0.0577355 +216.16122603416443,0.0,3.030303,3.030303,0.0,-0.041085053 +216.17022895812988,0.0,3.030303,3.030303,0.0,-0.041085053 +216.18118810653687,0.0,3.030303,3.030303,0.0,-0.041085053 +216.1902151107788,0.0,3.030303,3.030303,0.0,-0.041085053 +216.203222990036,0.0,2.2727273,2.2727273,0.0,-0.041085053 +216.20993399620056,0.0,2.2727273,2.2727273,0.0,-0.05588545 +216.2196979522705,0.0,2.2727273,2.2727273,0.0,-0.05588545 +216.22939109802246,0.0,2.2727273,2.2727273,0.0,-0.05588545 +216.23945808410645,0.0,2.2727273,2.2727273,0.0,-0.05588545 +216.25105595588684,0.0,2.2727273,2.2727273,0.0,-0.05588545 +216.2600610256195,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.27125906944275,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.28008198738098,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.29281902313232,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.29949808120728,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.3099329471588,0.0,2.2727273,2.2727273,0.0,-0.054035395 +216.319561958313,0.0,2.2727273,2.2727273,0.0,-0.054035395 +216.32940292358398,0.0,2.2727273,2.2727273,0.0,-0.054035395 +216.34092497825623,0.0,2.2727273,2.2727273,0.0,-0.054035395 +216.34989714622498,0.0,2.2727273,2.2727273,0.0,-0.054035395 +216.3613440990448,0.0,2.2727273,2.2727273,0.0,-0.041085053 +216.37035608291626,0.0,2.2727273,2.2727273,0.0,-0.041085053 +216.38109397888184,0.0,2.2727273,2.2727273,0.0,-0.041085053 +216.390860080719,0.0,2.2727273,2.2727273,0.0,-0.041085053 +216.39979195594788,0.0,2.2727273,2.2727273,0.0,-0.041085053 +216.4099531173706,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.41942596435547,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.43023991584778,0.0,2.2727273,2.2727273,0.0,-0.050335295 +216.43974900245667,0.0,1.5151515,1.5151515,0.0,-0.050335295 +216.45143508911133,0.0,1.5151515,1.5151515,0.0,-0.050335295 +216.46041893959045,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.4694390296936,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.47940611839294,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.4893879890442,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.5001459121704,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.50994300842285,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.51967811584473,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.52960109710693,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.53946900367737,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.550528049469,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.5595190525055,0.0,1.5151515,1.5151515,0.0,-0.041085053 +216.57212591171265,0.0,1.5151515,1.5151515,0.0,-0.041085053 +216.58113408088684,0.0,1.5151515,1.5151515,0.0,-0.041085053 +216.5901279449463,0.0,1.5151515,1.5151515,0.0,-0.041085053 +216.60149097442627,0.0,1.5151515,1.5151515,0.0,-0.041085053 +216.60994005203247,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.6194429397583,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.63040208816528,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.6404731273651,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.64950609207153,0.0,1.5151515,1.5151515,0.0,-0.052185345 +216.6621389389038,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.67002701759338,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.6801130771637,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.6913390159607,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.70034003257751,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.70995712280273,0.0,1.5151515,1.5151515,0.0,-0.033684865 +216.71966314315796,0.0,1.5151515,1.5151515,0.0,-0.033684865 +216.72938799858093,0.0,1.5151515,1.5151515,0.0,-0.033684865 +216.73966312408447,0.0,1.5151515,1.5151515,0.0,-0.033684865 +216.75207901000977,0.0,1.5151515,1.5151515,0.0,-0.033684865 +216.76107692718506,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.77008509635925,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.77970910072327,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.79020810127258,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.7994179725647,0.0,1.5151515,1.5151515,0.0,-0.054035395 +216.80984210968018,0.0,1.5151515,1.5151515,0.0,-0.06328564 +216.81968593597412,0.0,1.5151515,1.5151515,0.0,-0.06328564 +216.82940196990967,0.0,1.5151515,1.5151515,0.0,-0.06328564 +216.83989810943604,0.0,1.5151515,1.5151515,0.0,-0.06328564 +216.8510799407959,0.0,1.5151515,1.5151515,0.0,-0.06328564 +216.86007404327393,0.0,1.5151515,1.5151515,0.0,-0.0466352 +216.87107396125793,0.0,1.5151515,1.5151515,0.0,-0.0466352 +216.88007307052612,0.0,1.5151515,1.5151515,0.0,-0.0466352 +216.8895299434662,0.0,1.5151515,1.5151515,0.0,-0.0466352 +216.90177702903748,0.0,1.5151515,1.5151515,0.0,-0.0466352 +216.9107711315155,0.0,1.5151515,1.5151515,0.0,-0.09288643 +216.91967701911926,0.0,1.5151515,1.5151515,0.0,-0.09288643 +216.92940092086792,0.0,1.5151515,1.5151515,0.0,-0.09288643 +216.94104313850403,0.0,1.5151515,1.5151515,0.0,-0.09288643 +216.95006203651428,0.0,1.5151515,1.5151515,0.0,-0.09288643 +216.9600751399994,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.9698929786682,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.98284697532654,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.99183201789856,0.0,1.5151515,1.5151515,0.0,-0.044785153 +216.99962210655212,0.0,1.5151515,1.5151515,0.0,-0.044785153 +217.00985312461853,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.01967811584473,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.03038597106934,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.04005002975464,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.0505359172821,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.05945205688477,0.0,1.5151515,1.5151515,0.0,-0.041085053 +217.0719039440155,0.0,1.5151515,1.5151515,0.0,-0.041085053 +217.08189511299133,0.0,1.5151515,1.5151515,0.0,-0.041085053 +217.09089994430542,0.0,1.5151515,1.5151515,0.0,-0.041085053 +217.09989094734192,0.0,1.5151515,1.5151515,0.0,-0.041085053 +217.10996413230896,0.0,1.5151515,1.5151515,0.0,-0.050335295 +217.11940503120422,0.0,1.5151515,1.5151515,0.0,-0.050335295 +217.1294720172882,0.0,1.5151515,1.5151515,0.0,-0.050335295 +217.13969707489014,0.0,1.5151515,1.5151515,0.0,-0.050335295 +217.14948892593384,0.0,1.5151515,1.5151515,0.0,-0.050335295 +217.16293811798096,0.0,1.5151515,1.5151515,0.0,-0.06143559 +217.16999292373657,0.0,1.5151515,1.5151515,0.0,-0.06143559 +217.18096613883972,0.0,1.5151515,1.5151515,0.0,-0.06143559 +217.1898970603943,0.0,1.5151515,1.5151515,0.0,-0.06143559 +217.20201897621155,0.0,1.5151515,1.5151515,0.0,-0.06143559 +217.20994591712952,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.21942710876465,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.22939109802246,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.23944997787476,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.25301098823547,0.0,1.5151515,1.5151515,0.0,-0.06328564 +217.2620129585266,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.27104091644287,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.28003811836243,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.29123401641846,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.29963302612305,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.30996298789978,0.0,1.5151515,1.5151515,0.0,-0.05588545 +217.31989002227783,0.0,1.5151515,1.5151515,0.0,-0.05588545 +217.33273792266846,0.0,1.5151515,1.5151515,0.0,-0.05588545 +217.3396770954132,0.0,1.5151515,1.5151515,0.0,-0.05588545 +217.35209202766418,0.0,1.5151515,1.5151515,0.0,-0.05588545 +217.36109113693237,0.0,1.5151515,1.5151515,0.0,-0.044785153 +217.36970806121826,0.0,1.5151515,1.5151515,0.0,-0.044785153 +217.38037300109863,0.0,1.5151515,1.5151515,0.0,-0.044785153 +217.390967130661,0.0,1.5151515,1.5151515,0.0,-0.044785153 +217.39994311332703,0.0,1.5151515,1.5151515,0.0,-0.044785153 +217.4099440574646,0.0,1.5151515,1.5151515,0.0,-0.024434604 +217.41945695877075,0.0,1.5151515,1.5151515,0.0,-0.024434604 +217.4294080734253,0.0,1.5151515,1.5151515,0.0,-0.024434604 +217.44215607643127,0.0,1.5151515,1.5151515,0.0,-0.024434604 +217.44988298416138,0.0,1.5151515,1.5151515,0.0,-0.024434604 +217.46016311645508,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.46949410438538,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.48093795776367,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.48991799354553,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.50002694129944,0.0,1.5151515,1.5151515,0.0,-0.042935103 +217.50994610786438,0.0,1.5151515,1.5151515,0.0,-0.0577355 +217.5194389820099,0.0,1.5151515,1.5151515,0.0,-0.0577355 +217.5303831100464,0.0,1.5151515,1.5151515,0.0,-0.0577355 +217.54079699516296,0.0,2.2727273,2.2727273,0.0,-0.0577355 +217.54970407485962,0.0,2.2727273,2.2727273,0.0,-0.0577355 +217.56076192855835,0.0,2.2727273,2.2727273,0.0,-0.054035395 +217.5708990097046,0.0,2.2727273,2.2727273,0.0,-0.054035395 +217.57983207702637,0.0,2.2727273,2.2727273,0.0,-0.054035395 +217.58985590934753,0.0,2.2727273,2.2727273,0.0,-0.054035395 +217.60318207740784,0.0,2.2727273,2.2727273,0.0,-0.054035395 +217.60996508598328,0.0,2.2727273,2.2727273,0.0,-0.029984765 +217.61942791938782,0.0,2.2727273,2.2727273,0.0,-0.029984765 +217.62940502166748,0.0,2.2727273,2.2727273,0.0,-0.029984765 +217.64029097557068,0.0,2.2727273,2.2727273,0.0,-0.029984765 +217.6494951248169,0.0,2.2727273,2.2727273,0.0,-0.029984765 +217.6608910560608,0.0,2.2727273,2.2727273,0.0,-0.044785153 +217.66987895965576,0.0,2.2727273,2.2727273,0.0,-0.044785153 +217.67968702316284,0.0,2.2727273,2.2727273,0.0,-0.044785153 +217.69187092781067,0.0,2.2727273,2.2727273,0.0,-0.044785153 +217.70008397102356,0.0,2.2727273,2.2727273,0.0,-0.044785153 +217.70981192588806,0.0,2.2727273,2.2727273,0.0,-0.044785153 +217.71941804885864,0.0,2.2727273,2.2727273,0.0,-0.06328564 +217.72938799858093,0.0,2.2727273,2.2727273,0.0,-0.06328564 +217.7410430908203,0.0,2.2727273,2.2727273,0.0,-0.06328564 +217.75086212158203,0.0,2.2727273,2.2727273,0.0,-0.06328564 +217.75984692573547,0.0,2.2727273,2.2727273,0.0,-0.03553491 +217.76953196525574,0.0,2.2727273,2.2727273,0.0,-0.03553491 +217.77956700325012,0.0,2.2727273,2.2727273,0.0,-0.03553491 +217.7903549671173,0.0,2.2727273,2.2727273,0.0,-0.03553491 +217.80107498168945,0.0,2.2727273,2.2727273,0.0,-0.03553491 +217.81142497062683,0.0,2.2727273,2.2727273,0.0,-0.039235007 +217.81943798065186,0.0,2.2727273,2.2727273,0.0,-0.039235007 +217.82944107055664,0.0,2.2727273,2.2727273,0.0,-0.039235007 +217.8394479751587,0.0,2.2727273,2.2727273,0.0,-0.039235007 +217.8498499393463,0.0,2.2727273,2.2727273,0.0,-0.039235007 +217.86093497276306,0.0,2.2727273,2.2727273,0.0,-0.06513569 +217.87055110931396,0.0,2.2727273,2.2727273,0.0,-0.06513569 +217.8794710636139,0.0,2.2727273,2.2727273,0.0,-0.06513569 +217.89249801635742,0.0,2.2727273,2.2727273,0.0,-0.06513569 +217.9014880657196,0.0,2.2727273,2.2727273,0.0,-0.06513569 +217.91031908988953,0.0,2.2727273,2.2727273,0.0,-0.041085053 +217.91945004463196,0.0,2.2727273,2.2727273,0.0,-0.041085053 +217.92943000793457,0.0,2.2727273,2.2727273,0.0,-0.041085053 +217.9398319721222,0.0,2.2727273,2.2727273,0.0,-0.041085053 +217.9507701396942,0.0,2.2727273,2.2727273,0.0,-0.041085053 +217.9596769809723,0.0,2.2727273,2.2727273,0.0,-0.0466352 +217.96974802017212,0.0,2.2727273,2.2727273,0.0,-0.0466352 +217.98256993293762,0.0,2.2727273,2.2727273,0.0,-0.0466352 +217.9915599822998,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.0004711151123,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.00956010818481,0.0,2.2727273,2.2727273,0.0,-0.050335295 +218.01943802833557,0.0,2.2727273,2.2727273,0.0,-0.050335295 +218.02941608428955,0.0,2.2727273,2.2727273,0.0,-0.050335295 +218.03943705558777,0.0,2.2727273,2.2727273,0.0,-0.050335295 +218.05214309692383,0.0,2.2727273,2.2727273,0.0,-0.050335295 +218.0605490207672,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.0714659690857,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.08160209655762,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.09063410758972,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.09963011741638,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.1097810268402,0.0,2.2727273,2.2727273,0.0,-0.041085053 +218.1198079586029,0.0,2.2727273,2.2727273,0.0,-0.041085053 +218.13154911994934,0.0,2.2727273,2.2727273,0.0,-0.041085053 +218.13950896263123,0.0,2.2727273,2.2727273,0.0,-0.041085053 +218.15078997612,0.0,2.2727273,2.2727273,0.0,-0.041085053 +218.16267704963684,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.1698191165924,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.17962098121643,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.18967604637146,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.20036506652832,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.20970511436462,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.21940398216248,0.0,2.2727273,2.2727273,0.0,-0.06143559 +218.22941613197327,0.0,2.2727273,2.2727273,0.0,-0.06143559 +218.2437241077423,0.0,2.2727273,2.2727273,0.0,-0.06143559 +218.2527139186859,0.0,2.2727273,2.2727273,0.0,-0.06143559 +218.26173400878906,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.27071809768677,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.27973914146423,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.28953099250793,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.29961395263672,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.30995512008667,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.3194670677185,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.32942605018616,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.34277200698853,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.3498821258545,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.35963606834412,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.36974906921387,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.38040494918823,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.3897819519043,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.39943599700928,0.0,2.2727273,2.2727273,0.0,-0.0577355 +218.4099760055542,0.0,3.030303,3.030303,0.0,-0.05588545 +218.41947102546692,0.0,3.030303,3.030303,0.0,-0.05588545 +218.42944192886353,0.0,2.2727273,2.2727273,0.0,-0.05588545 +218.44024896621704,0.0,2.2727273,2.2727273,0.0,-0.05588545 +218.44997096061707,0.0,2.2727273,2.2727273,0.0,-0.05588545 +218.4598569869995,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.47025203704834,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.47975707054138,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.48960208892822,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.50276494026184,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.5099720954895,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.51943111419678,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.53024101257324,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.54091811180115,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.54993796348572,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.56010508537292,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.56974911689758,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.5821750164032,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.59261107444763,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.60154104232788,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.60958313941956,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.61960697174072,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.62941312789917,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.63997292518616,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.6499400138855,0.0,2.2727273,2.2727273,0.0,-0.044785153 +218.6597421169281,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.66957998275757,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.68025398254395,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.69067406654358,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.69959902763367,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.70997214317322,0.0,2.2727273,2.2727273,0.0,-0.029984765 +218.7194380760193,0.0,2.2727273,2.2727273,0.0,-0.029984765 +218.72940397262573,0.0,2.2727273,2.2727273,0.0,-0.029984765 +218.7397711277008,0.0,2.2727273,2.2727273,0.0,-0.029984765 +218.74950194358826,0.0,2.2727273,2.2727273,0.0,-0.029984765 +218.761981010437,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.7707121372223,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.77980995178223,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.7895131111145,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.80062699317932,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.81112003326416,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.81943702697754,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.82942700386047,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.8397409915924,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.85113406181335,0.0,2.2727273,2.2727273,0.0,-0.0466352 +218.86005091667175,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.87418508529663,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.87948203086853,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.89217400550842,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.90117692947388,0.0,2.2727273,2.2727273,0.0,-0.042935103 +218.90989112854004,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.91944193840027,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.9294400215149,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.94024205207825,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.95360207557678,0.0,2.2727273,2.2727273,0.0,-0.054035395 +218.96422910690308,0.0,2.2727273,2.2727273,0.0,-0.033684865 +218.9732310771942,0.0,2.2727273,2.2727273,0.0,-0.033684865 +218.98223900794983,0.0,2.2727273,2.2727273,0.0,-0.033684865 +218.991229057312,0.0,2.2727273,2.2727273,0.0,-0.033684865 +219.00025701522827,0.0,2.2727273,2.2727273,0.0,-0.033684865 +219.00947499275208,0.0,2.2727273,2.2727273,0.0,-0.054035395 +219.01971793174744,0.0,2.2727273,2.2727273,0.0,-0.054035395 +219.03006601333618,0.0,2.2727273,2.2727273,0.0,-0.054035395 +219.03942203521729,0.0,2.2727273,2.2727273,0.0,-0.054035395 +219.05167198181152,0.0,2.2727273,2.2727273,0.0,-0.054035395 +219.06010913848877,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.07214307785034,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.08111691474915,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.09012913703918,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.099524974823,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.10960698127747,0.0,2.2727273,2.2727273,0.0,-0.06513569 +219.11944603919983,0.0,2.2727273,2.2727273,0.0,-0.06513569 +219.12940192222595,0.0,2.2727273,2.2727273,0.0,-0.06513569 +219.139564037323,0.0,2.2727273,2.2727273,0.0,-0.06513569 +219.15299797058105,0.0,2.2727273,2.2727273,0.0,-0.06513569 +219.16198801994324,0.0,2.2727273,2.2727273,0.0,-0.06328564 +219.1696789264679,0.0,2.2727273,2.2727273,0.0,-0.06328564 +219.17995500564575,0.0,2.2727273,2.2727273,0.0,-0.06328564 +219.18938899040222,0.0,2.2727273,2.2727273,0.0,-0.06328564 +219.19943594932556,0.0,2.2727273,2.2727273,0.0,-0.06328564 +219.2099859714508,0.0,2.2727273,2.2727273,0.0,-0.026284654 +219.21944093704224,0.0,2.2727273,2.2727273,0.0,-0.026284654 +219.2294089794159,0.0,2.2727273,2.2727273,0.0,-0.026284654 +219.24285101890564,0.0,2.2727273,2.2727273,0.0,-0.026284654 +219.2518241405487,0.0,2.2727273,2.2727273,0.0,-0.026284654 +219.26080012321472,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.26939702033997,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.2794930934906,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.2896831035614,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.29942107200623,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.30997705459595,0.0,2.2727273,2.2727273,0.0,-0.03553491 +219.3194649219513,0.0,2.2727273,2.2727273,0.0,-0.03553491 +219.32943606376648,0.0,2.2727273,2.2727273,0.0,-0.03553491 +219.34133100509644,0.0,2.2727273,2.2727273,0.0,-0.03553491 +219.3502321243286,0.0,2.2727273,2.2727273,0.0,-0.03553491 +219.3596329689026,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.36951303482056,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.3796889781952,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.39465999603271,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.39946103096008,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.40964698791504,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.4194779396057,0.0,2.2727273,2.2727273,0.0,-0.0466352 +219.42943000793457,0.0,2.2727273,2.2727273,0.0,-0.0466352 +219.44052696228027,0.0,2.2727273,2.2727273,0.0,-0.0466352 +219.44950413703918,0.0,2.2727273,2.2727273,0.0,-0.0466352 +219.45958495140076,0.0,2.2727273,2.2727273,0.0,-0.05588545 +219.46968412399292,0.0,2.2727273,2.2727273,0.0,-0.05588545 +219.48316597938538,0.0,2.2727273,2.2727273,0.0,-0.05588545 +219.49284291267395,0.0,2.2727273,2.2727273,0.0,-0.05588545 +219.50178599357605,0.0,2.2727273,2.2727273,0.0,-0.05588545 +219.5099790096283,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.51945900917053,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.52953600883484,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.54063606262207,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.54965901374817,0.0,2.2727273,2.2727273,0.0,-0.0577355 +219.5596580505371,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.5707769393921,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.581964969635,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.59087800979614,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.59979891777039,0.0,2.2727273,2.2727273,0.0,-0.042935103 +219.60998606681824,0.0,2.2727273,2.2727273,0.0,-0.044785153 +219.61944913864136,0.0,2.2727273,2.2727273,0.0,-0.044785153 +219.62940502166748,0.0,2.2727273,2.2727273,0.0,-0.044785153 +219.63972806930542,0.0,3.030303,3.030303,0.0,-0.044785153 +219.6496560573578,0.0,3.030303,3.030303,0.0,-0.044785153 +219.6603491306305,0.0,3.030303,3.030303,0.0,-0.0577355 +219.6694359779358,0.0,3.030303,3.030303,0.0,-0.0577355 +219.67978405952454,0.0,3.030303,3.030303,0.0,-0.0577355 +219.69096612930298,0.0,3.030303,3.030303,0.0,-0.0577355 +219.70109009742737,0.0,3.030303,3.030303,0.0,-0.0577355 +219.70996713638306,0.0,3.030303,3.030303,0.0,-0.06328564 +219.71947503089905,0.0,3.030303,3.030303,0.0,-0.06328564 +219.72943496704102,0.0,3.030303,3.030303,0.0,-0.06328564 +219.73964405059814,0.0,3.030303,3.030303,0.0,-0.06328564 +219.75106811523438,0.0,3.030303,3.030303,0.0,-0.06328564 +219.76016998291016,0.0,3.030303,3.030303,0.0,-0.054035395 +219.77298092842102,0.0,3.030303,3.030303,0.0,-0.054035395 +219.78195595741272,0.0,3.030303,3.030303,0.0,-0.054035395 +219.79030299186707,0.0,3.030303,3.030303,0.0,-0.054035395 +219.79993295669556,0.0,3.030303,3.030303,0.0,-0.054035395 +219.81088495254517,0.0,3.030303,3.030303,0.0,-0.026284654 +219.81988406181335,0.0,3.030303,3.030303,0.0,-0.026284654 +219.82963013648987,0.0,3.030303,3.030303,0.0,-0.026284654 +219.84036111831665,0.0,3.030303,3.030303,0.0,-0.026284654 +219.8518581390381,0.0,3.030303,3.030303,0.0,-0.026284654 +219.86027598381042,0.0,3.030303,3.030303,0.0,-0.0466352 +219.8718159198761,0.0,3.030303,3.030303,0.0,-0.0466352 +219.87943291664124,0.0,3.030303,3.030303,0.0,-0.0466352 +219.88944292068481,0.0,3.030303,3.030303,0.0,-0.0466352 +219.89947414398193,0.0,3.030303,3.030303,0.0,-0.0466352 +219.90997195243835,0.0,3.030303,3.030303,0.0,-0.050335295 +219.91951394081116,0.0,3.030303,3.030303,0.0,-0.050335295 +219.92945194244385,0.0,3.030303,3.030303,0.0,-0.050335295 +219.94369506835938,0.0,3.030303,3.030303,0.0,-0.050335295 +219.95267605781555,0.0,3.030303,3.030303,0.0,-0.050335295 +219.9611039161682,0.0,3.030303,3.030303,0.0,-0.052185345 +219.9695279598236,0.0,3.030303,3.030303,0.0,-0.052185345 +219.97964596748352,0.0,3.030303,3.030303,0.0,-0.052185345 +219.99103498458862,0.0,3.030303,3.030303,0.0,-0.052185345 +220.0000410079956,0.0,3.030303,3.030303,0.0,-0.052185345 +220.00960206985474,0.0,3.030303,3.030303,0.0,-0.044785153 +220.01962399482727,0.0,3.030303,3.030303,0.0,-0.044785153 +220.0294210910797,0.0,3.030303,3.030303,0.0,-0.044785153 +220.04255604743958,0.0,3.030303,3.030303,0.0,-0.044785153 +220.0502610206604,0.0,3.030303,3.030303,0.0,-0.044785153 +220.0605080127716,0.0,3.030303,3.030303,0.0,-0.039235007 +220.06947994232178,0.0,3.030303,3.030303,0.0,-0.039235007 +220.08100605010986,0.0,3.030303,3.030303,0.0,-0.039235007 +220.0898060798645,0.0,3.030303,3.030303,0.0,-0.039235007 +220.0996220111847,0.0,3.030303,3.030303,0.0,-0.039235007 +220.1132309436798,0.0,3.030303,3.030303,0.0,-0.0466352 +220.1194610595703,0.0,3.030303,3.030303,0.0,-0.0466352 +220.12943410873413,0.0,3.030303,3.030303,0.0,-0.0466352 +220.141371011734,0.0,3.030303,3.030303,0.0,-0.0466352 +220.15037894248962,0.0,3.030303,3.030303,0.0,-0.0466352 +220.16119813919067,0.0,3.030303,3.030303,0.0,-0.042935103 +220.17015600204468,0.0,3.030303,3.030303,0.0,-0.042935103 +220.17959594726562,0.0,3.030303,3.030303,0.0,-0.042935103 +220.18954992294312,0.0,3.030303,3.030303,0.0,-0.042935103 +220.199401140213,0.0,3.030303,3.030303,0.0,-0.042935103 +220.2099850177765,0.0,3.030303,3.030303,0.0,-0.050335295 +220.21946501731873,0.0,3.030303,3.030303,0.0,-0.050335295 +220.22943592071533,0.0,3.030303,3.030303,0.0,-0.050335295 +220.24024391174316,0.0,3.030303,3.030303,0.0,-0.050335295 +220.25034093856812,0.0,3.030303,3.030303,0.0,-0.050335295 +220.2612190246582,0.0,3.030303,3.030303,0.0,-0.013334316 +220.26993012428284,0.0,3.030303,3.030303,0.0,-0.013334316 +220.27953696250916,0.0,3.030303,3.030303,0.0,-0.013334316 +220.29179000854492,0.0,3.030303,3.030303,0.0,-0.013334316 +220.3031210899353,0.0,3.030303,3.030303,0.0,-0.013334316 +220.30998992919922,0.0,3.030303,3.030303,0.0,-0.052185345 +220.31946396827698,0.0,3.030303,3.030303,0.0,-0.052185345 +220.32943105697632,0.0,3.030303,3.030303,0.0,-0.052185345 +220.3394639492035,0.0,3.030303,3.030303,0.0,-0.052185345 +220.35129594802856,0.0,3.030303,3.030303,0.0,-0.052185345 +220.3602809906006,0.0,3.030303,3.030303,0.0,-0.050335295 +220.3695089817047,0.0,3.030303,3.030303,0.0,-0.050335295 +220.38190698623657,0.0,3.030303,3.030303,0.0,-0.050335295 +220.3929431438446,0.0,3.030303,3.030303,0.0,-0.050335295 +220.39945101737976,0.0,3.030303,3.030303,0.0,-0.050335295 +220.41000199317932,0.0,3.030303,3.030303,0.0,-0.042935103 +220.4194691181183,0.0,3.030303,3.030303,0.0,-0.042935103 +220.4294469356537,0.0,3.030303,3.030303,0.0,-0.042935103 +220.440190076828,0.0,3.030303,3.030303,0.0,-0.042935103 +220.450266122818,0.0,3.030303,3.030303,0.0,-0.042935103 +220.45957398414612,0.0,3.030303,3.030303,0.0,-0.039235007 +220.47319102287292,0.0,3.030303,3.030303,0.0,-0.039235007 +220.479984998703,0.0,3.030303,3.030303,0.0,-0.039235007 +220.49100804328918,0.0,3.030303,3.030303,0.0,-0.039235007 +220.49992394447327,0.0,3.030303,3.030303,0.0,-0.039235007 +220.50983095169067,0.0,3.030303,3.030303,0.0,-0.039235007 +220.51946997642517,0.0,3.030303,3.030303,0.0,-0.08363618 +220.52942514419556,0.0,3.030303,3.030303,0.0,-0.08363618 +220.54030299186707,0.0,3.030303,3.030303,0.0,-0.08363618 +220.54941606521606,0.0,3.030303,3.030303,0.0,-0.08363618 +220.56231594085693,0.0,3.030303,3.030303,0.0,-0.039235007 +220.5702109336853,0.0,3.030303,3.030303,0.0,-0.039235007 +220.58015394210815,0.0,3.030303,3.030303,0.0,-0.039235007 +220.5907120704651,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.5996789932251,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.61000609397888,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.6194670200348,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.62942504882812,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.63942909240723,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.6497540473938,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.66036891937256,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.67139101028442,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.67957210540771,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.68953394889832,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.69959592819214,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.71000909805298,0.0,2.2727273,2.2727273,0.0,-0.041085053 +220.72042608261108,0.0,2.2727273,2.2727273,0.0,-0.041085053 +220.72941207885742,0.0,2.2727273,2.2727273,0.0,-0.041085053 +220.73945307731628,0.0,2.2727273,2.2727273,0.0,-0.041085053 +220.74948906898499,0.0,2.2727273,2.2727273,0.0,-0.041085053 +220.76141905784607,0.0,2.2727273,2.2727273,0.0,-0.05588545 +220.7697949409485,0.0,2.2727273,2.2727273,0.0,-0.05588545 +220.7793951034546,0.0,2.2727273,2.2727273,0.0,-0.05588545 +220.7916021347046,0.0,2.2727273,2.2727273,0.0,-0.05588545 +220.80136895179749,0.0,2.2727273,2.2727273,0.0,-0.05588545 +220.81037306785583,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.81962513923645,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.8294539451599,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.84071493148804,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.85129404067993,0.0,2.2727273,2.2727273,0.0,-0.039235007 +220.86026692390442,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.87080097198486,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.88236904144287,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.88985800743103,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.90037608146667,0.0,2.2727273,2.2727273,0.0,-0.054035395 +220.9096920490265,0.0,2.2727273,2.2727273,0.0,-0.044785153 +220.91946005821228,0.0,2.2727273,2.2727273,0.0,-0.044785153 +220.92940092086792,0.0,2.2727273,2.2727273,0.0,-0.044785153 +220.94113206863403,0.0,2.2727273,2.2727273,0.0,-0.044785153 +220.95013213157654,0.0,2.2727273,2.2727273,0.0,-0.044785153 +220.9601149559021,0.0,2.2727273,2.2727273,0.0,-0.033684865 +220.97232913970947,0.0,2.2727273,2.2727273,0.0,-0.033684865 +220.98125004768372,0.0,2.2727273,2.2727273,0.0,-0.033684865 +220.99018812179565,0.0,2.2727273,2.2727273,0.0,-0.033684865 +220.99959111213684,0.0,2.2727273,2.2727273,0.0,-0.033684865 +221.0130159854889,0.0,2.2727273,2.2727273,0.0,-0.050335295 +221.01949501037598,0.0,2.2727273,2.2727273,0.0,-0.050335295 +221.0294270515442,0.0,2.2727273,2.2727273,0.0,-0.050335295 +221.03996109962463,0.0,2.2727273,2.2727273,0.0,-0.050335295 +221.05258011817932,0.0,2.2727273,2.2727273,0.0,-0.050335295 +221.06150102615356,0.0,2.2727273,2.2727273,0.0,-0.042935103 +221.07012104988098,0.0,2.2727273,2.2727273,0.0,-0.042935103 +221.08030700683594,0.0,2.2727273,2.2727273,0.0,-0.042935103 +221.08981013298035,0.0,2.2727273,2.2727273,0.0,-0.042935103 +221.0995991230011,0.0,2.2727273,2.2727273,0.0,-0.042935103 +221.11184692382812,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.1196300983429,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.12946796417236,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.14170908927917,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.1506130695343,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.15953493118286,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.17028307914734,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.17951107025146,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.19271206855774,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.19942808151245,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.2100009918213,0.0,2.2727273,2.2727273,0.0,-0.06143559 +221.21946597099304,0.0,2.2727273,2.2727273,0.0,-0.06143559 +221.2294590473175,0.0,2.2727273,2.2727273,0.0,-0.06143559 +221.23948311805725,0.0,2.2727273,2.2727273,0.0,-0.06143559 +221.25125312805176,0.0,2.2727273,2.2727273,0.0,-0.06143559 +221.2602379322052,0.0,2.2727273,2.2727273,0.0,-0.039235007 +221.2699329853058,0.0,2.2727273,2.2727273,0.0,-0.039235007 +221.28043699264526,0.0,2.2727273,2.2727273,0.0,-0.039235007 +221.29153203964233,0.0,2.2727273,2.2727273,0.0,-0.039235007 +221.300518989563,0.0,2.2727273,2.2727273,0.0,-0.039235007 +221.30950593948364,0.0,2.2727273,2.2727273,0.0,-0.039235007 +221.31948399543762,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.3294539451599,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.341215133667,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.3499710559845,0.0,2.2727273,2.2727273,0.0,-0.0577355 +221.36000800132751,0.0,2.2727273,2.2727273,0.0,-0.0466352 +221.3706259727478,0.0,2.2727273,2.2727273,0.0,-0.0466352 +221.3813989162445,0.0,2.2727273,2.2727273,0.0,-0.0466352 +221.39036893844604,0.0,3.030303,3.030303,0.0,-0.0466352 +221.3996319770813,0.0,2.2727273,2.2727273,0.0,-0.0466352 +221.4100079536438,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.41949009895325,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.42945003509521,0.0,2.2727273,2.2727273,0.0,-0.052185345 +221.44017100334167,0.0,3.030303,3.030303,0.0,-0.052185345 +221.45006799697876,0.0,3.030303,3.030303,0.0,-0.052185345 +221.4606580734253,0.0,3.030303,3.030303,0.0,-0.044785153 +221.47124791145325,0.0,3.030303,3.030303,0.0,-0.044785153 +221.47992300987244,0.0,3.030303,3.030303,0.0,-0.044785153 +221.48945808410645,0.0,3.030303,3.030303,0.0,-0.044785153 +221.4994339942932,0.0,3.030303,3.030303,0.0,-0.044785153 +221.51001691818237,0.0,3.030303,3.030303,0.0,-0.05588545 +221.52112102508545,0.0,3.030303,3.030303,0.0,-0.05588545 +221.53015112876892,0.0,3.030303,3.030303,0.0,-0.05588545 +221.54013514518738,0.0,3.030303,3.030303,0.0,-0.05588545 +221.54944396018982,0.0,3.030303,3.030303,0.0,-0.05588545 +221.5605010986328,0.0,3.030303,3.030303,0.0,-0.05588545 +221.56941413879395,0.0,3.030303,3.030303,0.0,-0.05588545 +221.57945895195007,0.0,3.030303,3.030303,0.0,-0.05588545 +221.5917661190033,0.0,3.030303,3.030303,0.0,-0.05588545 +221.59941291809082,0.0,3.030303,3.030303,0.0,-0.05588545 +221.60989809036255,0.0,3.030303,3.030303,0.0,-0.05588545 +221.61946606636047,0.0,3.030303,3.030303,0.0,-0.050335295 +221.62945699691772,0.0,3.030303,3.030303,0.0,-0.050335295 +221.64068508148193,0.0,3.030303,3.030303,0.0,-0.050335295 +221.64959597587585,0.0,3.030303,3.030303,0.0,-0.050335295 +221.65995502471924,0.0,3.030303,3.030303,0.0,-0.05588545 +221.67284297943115,0.0,3.030303,3.030303,0.0,-0.05588545 +221.679505109787,0.0,3.030303,3.030303,0.0,-0.05588545 +221.69009613990784,0.0,3.030303,3.030303,0.0,-0.05588545 +221.69944310188293,0.0,3.030303,3.030303,0.0,-0.05588545 +221.7100179195404,0.0,3.030303,3.030303,0.0,-0.026284654 +221.71949291229248,0.0,3.030303,3.030303,0.0,-0.026284654 +221.72944402694702,0.0,3.030303,3.030303,0.0,-0.026284654 +221.73986792564392,0.0,3.030303,3.030303,0.0,-0.026284654 +221.7498059272766,0.0,3.030303,3.030303,0.0,-0.026284654 +221.7638120651245,0.0,3.030303,3.030303,0.0,-0.044785153 +221.77202892303467,0.0,3.030303,3.030303,0.0,-0.044785153 +221.78204202651978,0.0,3.030303,3.030303,0.0,-0.044785153 +221.7910499572754,0.0,3.030303,3.030303,0.0,-0.044785153 +221.79941296577454,0.0,3.030303,3.030303,0.0,-0.044785153 +221.8094310760498,0.0,3.030303,3.030303,0.0,-0.052185345 +221.81954097747803,0.0,3.030303,3.030303,0.0,-0.052185345 +221.82957196235657,0.0,3.030303,3.030303,0.0,-0.052185345 +221.83966898918152,0.0,3.030303,3.030303,0.0,-0.052185345 +221.85119605064392,0.0,3.030303,3.030303,0.0,-0.052185345 +221.86302614212036,0.0,3.030303,3.030303,0.0,-0.042935103 +221.8698079586029,0.0,3.030303,3.030303,0.0,-0.042935103 +221.88102006912231,0.0,3.030303,3.030303,0.0,-0.042935103 +221.8900170326233,0.0,3.030303,3.030303,0.0,-0.042935103 +221.8994209766388,0.0,3.030303,3.030303,0.0,-0.042935103 +221.91153693199158,0.0,3.030303,3.030303,0.0,-0.050335295 +221.91948413848877,0.0,3.030303,3.030303,0.0,-0.050335295 +221.92950201034546,0.0,3.787879,3.787879,0.0,-0.050335295 +221.94131994247437,0.0,3.787879,3.787879,0.0,-0.050335295 +221.95253109931946,0.0,3.787879,3.787879,0.0,-0.050335295 +221.96044397354126,0.0,3.787879,3.787879,0.0,-0.044785153 +221.97034907341003,0.0,3.787879,3.787879,0.0,-0.044785153 +221.97964191436768,0.0,3.787879,3.787879,0.0,-0.044785153 +221.99042105674744,0.0,3.787879,3.787879,0.0,-0.044785153 +221.99959897994995,0.0,3.787879,3.787879,0.0,-0.044785153 +222.0103521347046,0.0,3.787879,3.787879,0.0,-0.052185345 +222.01957392692566,0.0,3.787879,3.787879,0.0,-0.052185345 +222.02942991256714,0.0,3.787879,3.787879,0.0,-0.052185345 +222.04163312911987,0.0,3.030303,3.030303,0.0,-0.052185345 +222.05053997039795,0.0,3.030303,3.030303,0.0,-0.052185345 +222.05943393707275,0.0,3.787879,3.787879,0.0,-0.042935103 +222.06945705413818,0.0,3.787879,3.787879,0.0,-0.042935103 +222.08049201965332,0.0,3.787879,3.787879,0.0,-0.042935103 +222.08947896957397,0.0,3.787879,3.787879,0.0,-0.042935103 +222.0994610786438,0.0,3.787879,3.787879,0.0,-0.042935103 +222.11291599273682,0.0,3.787879,3.787879,0.0,-0.042935103 +222.11948704719543,0.0,3.787879,3.787879,0.0,-0.042935103 +222.12943601608276,0.0,3.787879,3.787879,0.0,-0.042935103 +222.139652967453,0.0,3.787879,3.787879,0.0,-0.042935103 +222.15089893341064,0.0,3.787879,3.787879,0.0,-0.042935103 +222.1599040031433,0.0,3.787879,3.787879,0.0,-0.050335295 +222.17056798934937,0.0,3.787879,3.787879,0.0,-0.050335295 +222.17957711219788,0.0,3.787879,3.787879,0.0,-0.050335295 +222.18993592262268,0.0,3.787879,3.787879,0.0,-0.050335295 +222.19946813583374,0.0,3.787879,3.787879,0.0,-0.050335295 +222.21001505851746,0.0,3.787879,3.787879,0.0,-0.0577355 +222.2194800376892,0.0,3.787879,3.787879,0.0,-0.0577355 +222.22943902015686,0.0,3.787879,3.787879,0.0,-0.0577355 +222.2408790588379,0.0,3.787879,3.787879,0.0,-0.0577355 +222.24987292289734,0.0,3.787879,3.787879,0.0,-0.0577355 +222.2596709728241,0.0,3.787879,3.787879,0.0,-0.0466352 +222.2696340084076,0.0,3.787879,3.787879,0.0,-0.0466352 +222.27992391586304,0.0,3.787879,3.787879,0.0,-0.0466352 +222.29113292694092,0.0,3.787879,3.787879,0.0,-0.0466352 +222.29946994781494,0.0,3.787879,3.787879,0.0,-0.0466352 +222.31001210212708,0.0,3.787879,3.787879,0.0,-0.0466352 +222.31950902938843,0.0,3.787879,3.787879,0.0,-0.03553491 +222.32946300506592,0.0,3.787879,3.787879,0.0,-0.03553491 +222.3398630619049,0.0,3.787879,3.787879,0.0,-0.03553491 +222.3506760597229,0.0,3.787879,3.787879,0.0,-0.03553491 +222.35970401763916,0.0,3.787879,3.787879,0.0,-0.039235007 +222.36976194381714,0.0,3.787879,3.787879,0.0,-0.039235007 +222.38022899627686,0.0,3.787879,3.787879,0.0,-0.039235007 +222.3896119594574,0.0,3.787879,3.787879,0.0,-0.039235007 +222.39947605133057,0.0,3.787879,3.787879,0.0,-0.039235007 +222.41002702713013,0.0,3.787879,3.787879,0.0,-0.0466352 +222.4193890094757,0.0,3.787879,3.787879,0.0,-0.0466352 +222.42946910858154,0.0,3.787879,3.787879,0.0,-0.0466352 +222.439453125,0.0,3.787879,3.787879,0.0,-0.0466352 +222.44975304603577,0.0,3.030303,3.030303,0.0,-0.0466352 +222.4595971107483,0.0,3.030303,3.030303,0.0,-0.044785153 +222.47123193740845,0.0,3.030303,3.030303,0.0,-0.044785153 +222.48382091522217,0.0,3.030303,3.030303,0.0,-0.044785153 +222.4927990436554,0.0,3.030303,3.030303,0.0,-0.044785153 +222.49950408935547,0.0,3.030303,3.030303,0.0,-0.044785153 +222.51003694534302,0.0,3.030303,3.030303,0.0,-0.054035395 +222.51949405670166,0.0,3.030303,3.030303,0.0,-0.054035395 +222.52945804595947,0.0,3.030303,3.030303,0.0,-0.054035395 +222.53941702842712,0.0,3.030303,3.030303,0.0,-0.054035395 +222.54944109916687,0.0,3.030303,3.030303,0.0,-0.054035395 +222.5643870830536,0.0,3.030303,3.030303,0.0,-0.052185345 +222.57217693328857,0.0,3.030303,3.030303,0.0,-0.052185345 +222.58248209953308,0.0,3.030303,3.030303,0.0,-0.052185345 +222.59177803993225,0.0,3.030303,3.030303,0.0,-0.052185345 +222.5995171070099,0.0,3.030303,3.030303,0.0,-0.052185345 +222.6097640991211,0.0,3.030303,3.030303,0.0,-0.052185345 +222.6194589138031,0.0,3.030303,3.030303,0.0,-0.0577355 +222.62943506240845,0.0,3.030303,3.030303,0.0,-0.0577355 +222.63962507247925,0.0,3.030303,3.030303,0.0,-0.0577355 +222.64947295188904,0.0,3.030303,3.030303,0.0,-0.0577355 +222.65967297554016,0.0,3.030303,3.030303,0.0,-0.0466352 +222.67274808883667,0.0,3.030303,3.030303,0.0,-0.0466352 +222.6814169883728,0.0,3.030303,3.030303,0.0,-0.0466352 +222.69073510169983,0.0,3.030303,3.030303,0.0,-0.0466352 +222.69949507713318,0.0,3.030303,3.030303,0.0,-0.0466352 +222.70985507965088,0.0,3.030303,3.030303,0.0,-0.0466352 +222.71950697898865,0.0,3.030303,3.030303,0.0,-0.0466352 +222.72948098182678,0.0,3.030303,3.030303,0.0,-0.0466352 +222.74439191818237,0.0,3.030303,3.030303,0.0,-0.0466352 +222.75372004508972,0.0,3.030303,3.030303,0.0,-0.0466352 +222.76272296905518,0.0,3.030303,3.030303,0.0,-0.052185345 +222.76947212219238,0.0,3.030303,3.030303,0.0,-0.052185345 +222.7794029712677,0.0,3.030303,3.030303,0.0,-0.052185345 +222.78971099853516,0.0,3.030303,3.030303,0.0,-0.052185345 +222.7995569705963,0.0,3.030303,3.030303,0.0,-0.052185345 +222.81000304222107,0.0,3.030303,3.030303,0.0,-0.052185345 +222.81964302062988,0.0,3.030303,3.030303,0.0,-0.06513569 +222.8294620513916,0.0,3.030303,3.030303,0.0,-0.06513569 +222.84232592582703,0.0,3.030303,3.030303,0.0,-0.06513569 +222.85242199897766,0.0,3.030303,3.030303,0.0,-0.06513569 +222.86134004592896,0.0,3.030303,3.030303,0.0,-0.044785153 +222.87024211883545,0.0,3.030303,3.030303,0.0,-0.044785153 +222.87967491149902,0.0,3.030303,3.030303,0.0,-0.044785153 +222.89091801643372,0.0,3.030303,3.030303,0.0,-0.044785153 +222.89952397346497,0.0,3.030303,3.030303,0.0,-0.044785153 +222.91035103797913,0.0,3.030303,3.030303,0.0,-0.052185345 +222.91953897476196,0.0,3.030303,3.030303,0.0,-0.052185345 +222.92946600914001,0.0,3.030303,3.030303,0.0,-0.052185345 +222.94085597991943,0.0,3.030303,3.030303,0.0,-0.052185345 +222.95044994354248,0.0,3.030303,3.030303,0.0,-0.052185345 +222.960107088089,0.0,3.030303,3.030303,0.0,-0.03553491 +222.96969509124756,0.0,3.030303,3.030303,0.0,-0.03553491 +222.98078203201294,0.0,3.030303,3.030303,0.0,-0.03553491 +222.98974990844727,0.0,3.030303,3.030303,0.0,-0.03553491 +222.99958205223083,0.0,3.030303,3.030303,0.0,-0.03553491 +223.01280403137207,0.0,3.030303,3.030303,0.0,-0.06698574 +223.01951098442078,0.0,3.030303,3.030303,0.0,-0.06698574 +223.02939105033875,0.0,3.030303,3.030303,0.0,-0.06698574 +223.03952598571777,0.0,3.030303,3.030303,0.0,-0.06698574 +223.0502200126648,0.0,3.030303,3.030303,0.0,-0.06698574 +223.05971312522888,0.0,3.030303,3.030303,0.0,-0.042935103 +223.0706090927124,0.0,3.030303,3.030303,0.0,-0.042935103 +223.07961106300354,0.0,3.030303,3.030303,0.0,-0.042935103 +223.09297800064087,0.0,3.030303,3.030303,0.0,-0.042935103 +223.09953808784485,0.0,3.030303,3.030303,0.0,-0.042935103 +223.11081504821777,0.0,3.030303,3.030303,0.0,0.06066765 +223.11948204040527,0.0,3.030303,3.030303,0.0,0.06066765 +223.12944793701172,0.0,3.030303,3.030303,0.0,0.06066765 +223.1400010585785,0.0,3.030303,3.030303,0.0,0.06066765 +223.1496889591217,0.0,3.030303,3.030303,0.0,0.06066765 +223.15940499305725,0.0,3.030303,3.030303,0.0,-0.0577355 +223.1694700717926,0.0,3.030303,3.030303,0.0,-0.0577355 +223.18096804618835,0.0,3.030303,3.030303,0.0,-0.0577355 +223.1910150051117,0.0,3.030303,3.030303,0.0,-0.0577355 +223.1995460987091,0.0,3.030303,3.030303,0.0,-0.0577355 +223.2113480567932,0.0,3.030303,3.030303,0.0,-0.052185345 +223.2216899394989,0.0,3.030303,3.030303,0.0,-0.052185345 +223.23069190979004,0.0,3.030303,3.030303,0.0,-0.052185345 +223.2396969795227,0.0,3.030303,3.030303,0.0,-0.052185345 +223.24951791763306,0.0,3.030303,3.030303,0.0,-0.052185345 +223.26028609275818,0.0,3.030303,3.030303,0.0,-0.050335295 +223.27119612693787,0.0,3.030303,3.030303,0.0,-0.050335295 +223.2794599533081,0.0,3.030303,3.030303,0.0,-0.050335295 +223.29022812843323,0.0,3.030303,3.030303,0.0,-0.050335295 +223.29956912994385,0.0,3.030303,3.030303,0.0,-0.050335295 +223.3095579147339,0.0,3.030303,3.030303,0.0,-0.050335295 +223.31951093673706,0.0,3.030303,3.030303,0.0,-0.039235007 +223.32948207855225,0.0,3.030303,3.030303,0.0,-0.039235007 +223.34019303321838,0.0,3.030303,3.030303,0.0,-0.039235007 +223.35035300254822,0.0,3.030303,3.030303,0.0,-0.039235007 +223.36030793190002,0.0,3.030303,3.030303,0.0,-0.052185345 +223.37435007095337,0.0,3.030303,3.030303,0.0,-0.052185345 +223.38368797302246,0.0,3.030303,3.030303,0.0,-0.052185345 +223.39268803596497,0.0,3.030303,3.030303,0.0,-0.052185345 +223.39955806732178,0.0,3.030303,3.030303,0.0,-0.052185345 +223.41004705429077,0.0,3.030303,3.030303,0.0,-0.050335295 +223.41951394081116,0.0,3.030303,3.030303,0.0,-0.050335295 +223.42946696281433,0.0,3.030303,3.030303,0.0,-0.050335295 +223.44041800498962,0.0,3.030303,3.030303,0.0,-0.050335295 +223.44959497451782,0.0,3.030303,3.030303,0.0,-0.050335295 +223.4643120765686,0.0,3.030303,3.030303,0.0,-0.0577355 +223.47368097305298,0.0,3.030303,3.030303,0.0,-0.0577355 +223.48269605636597,0.0,3.030303,3.030303,0.0,-0.0577355 +223.4916911125183,0.0,3.030303,3.030303,0.0,-0.0577355 +223.49957513809204,0.0,3.030303,3.030303,0.0,-0.0577355 +223.50956511497498,0.0,3.030303,3.030303,0.0,-0.0577355 +223.51951599121094,0.0,3.787879,3.787879,0.0,-0.050335295 +223.52946400642395,0.0,3.787879,3.787879,0.0,-0.050335295 +223.53949403762817,0.0,3.787879,3.787879,0.0,-0.050335295 +223.5523920059204,0.0,3.787879,3.787879,0.0,-0.050335295 +223.56006407737732,0.0,3.787879,3.787879,0.0,-0.0466352 +223.57269406318665,0.0,3.787879,3.787879,0.0,-0.0466352 +223.57994413375854,0.0,3.787879,3.787879,0.0,-0.0466352 +223.59068393707275,0.0,3.787879,3.787879,0.0,-0.0466352 +223.5995991230011,0.0,3.787879,3.787879,0.0,-0.0466352 +223.6097230911255,0.0,3.787879,3.787879,0.0,-0.0466352 +223.61951303482056,0.0,3.787879,3.787879,0.0,-0.054035395 +223.62946701049805,0.0,3.787879,3.787879,0.0,-0.054035395 +223.64002799987793,0.0,3.787879,3.787879,0.0,-0.054035395 +223.65368103981018,0.0,3.787879,3.787879,0.0,-0.054035395 +223.6618480682373,0.0,3.787879,3.787879,0.0,-0.0577355 +223.6716821193695,0.0,3.787879,3.787879,0.0,-0.0577355 +223.68068313598633,0.0,3.787879,3.787879,0.0,-0.0577355 +223.68967700004578,0.0,3.787879,3.787879,0.0,-0.0577355 +223.69946002960205,0.0,3.787879,3.787879,0.0,-0.0577355 +223.71004104614258,0.0,3.787879,3.787879,0.0,-0.054035395 +223.71951603889465,0.0,3.787879,3.787879,0.0,-0.054035395 +223.7294750213623,0.0,3.787879,3.787879,0.0,-0.054035395 +223.7433581352234,0.0,3.787879,3.787879,0.0,-0.054035395 +223.7519359588623,0.0,3.787879,3.787879,0.0,-0.054035395 +223.7611789703369,0.0,3.787879,3.787879,0.0,-0.0466352 +223.77008700370789,0.0,3.787879,3.787879,0.0,-0.0466352 +223.7796700000763,0.0,3.787879,3.787879,0.0,-0.0466352 +223.78944301605225,0.0,3.787879,3.787879,0.0,-0.0466352 +223.79959797859192,0.0,3.787879,3.787879,0.0,-0.0466352 +223.80971908569336,0.0,3.787879,3.787879,0.0,-0.0466352 +223.81951093673706,0.0,3.787879,3.787879,0.0,-0.0466352 +223.82949805259705,0.0,3.787879,3.787879,0.0,-0.0466352 +223.84137797355652,0.0,3.787879,3.787879,0.0,-0.0466352 +223.85026693344116,0.0,3.787879,3.787879,0.0,-0.0466352 +223.86068201065063,0.0,3.787879,3.787879,0.0,-0.05588545 +223.8696551322937,0.0,3.787879,3.787879,0.0,-0.05588545 +223.88177514076233,0.0,3.787879,3.787879,0.0,-0.05588545 +223.89079093933105,0.0,3.787879,3.787879,0.0,-0.05588545 +223.89963912963867,0.0,3.787879,3.787879,0.0,-0.05588545 +223.91039896011353,0.0,3.787879,3.787879,0.0,-0.052185345 +223.91952300071716,0.0,3.787879,3.787879,0.0,-0.052185345 +223.92947793006897,0.0,3.787879,3.787879,0.0,-0.052185345 +223.94164609909058,0.0,3.787879,3.787879,0.0,-0.052185345 +223.94991993904114,0.0,3.787879,3.787879,0.0,-0.052185345 +223.95964312553406,0.0,3.787879,3.787879,0.0,-0.052185345 +223.9718301296234,0.0,3.787879,3.787879,0.0,-0.052185345 +223.98084092140198,0.0,3.787879,3.787879,0.0,-0.052185345 +223.98983192443848,0.0,3.787879,3.787879,0.0,-0.052185345 +223.99941301345825,0.0,3.787879,3.787879,0.0,-0.052185345 +224.01063108444214,0.0,3.787879,3.787879,0.0,-0.0466352 +224.0195231437683,0.0,3.787879,3.787879,0.0,-0.0466352 +224.02945804595947,0.0,3.787879,3.787879,0.0,-0.0466352 +224.04064512252808,0.0,3.787879,3.787879,0.0,-0.0466352 +224.04965996742249,0.0,3.787879,3.787879,0.0,-0.0466352 +224.0618851184845,0.0,3.787879,3.787879,0.0,-0.044785153 +224.07091403007507,0.0,3.787879,3.787879,0.0,-0.044785153 +224.07988810539246,0.0,3.787879,3.787879,0.0,-0.044785153 +224.09082794189453,0.0,3.787879,3.787879,0.0,-0.044785153 +224.09963011741638,0.0,3.787879,3.787879,0.0,-0.044785153 +224.11246514320374,0.0,3.787879,3.787879,0.0,-0.052185345 +224.12068009376526,0.0,3.787879,3.787879,0.0,-0.052185345 +224.12950611114502,0.0,3.787879,3.787879,0.0,-0.052185345 +224.13947010040283,0.0,3.787879,3.787879,0.0,-0.052185345 +224.1519820690155,0.0,3.787879,3.787879,0.0,-0.052185345 +224.16098308563232,0.0,3.787879,3.787879,0.0,-0.042935103 +224.16999912261963,0.0,3.787879,3.787879,0.0,-0.042935103 +224.1799190044403,0.0,3.787879,3.787879,0.0,-0.042935103 +224.19360494613647,0.0,3.787879,3.787879,0.0,-0.042935103 +224.19966912269592,0.0,3.787879,3.787879,0.0,-0.042935103 +224.20985507965088,0.0,3.787879,3.787879,0.0,-0.0466352 +224.21951699256897,0.0,3.787879,3.787879,0.0,-0.0466352 +224.22948813438416,0.0,3.787879,3.787879,0.0,-0.0466352 +224.24204802513123,0.0,3.787879,3.787879,0.0,-0.0466352 +224.25105810165405,0.0,3.787879,3.787879,0.0,-0.0466352 +224.26005601882935,0.0,3.787879,3.787879,0.0,-0.052185345 +224.27087593078613,0.0,3.787879,3.787879,0.0,-0.052185345 +224.2835841178894,0.0,3.787879,3.787879,0.0,-0.052185345 +224.292573928833,0.0,3.787879,3.787879,0.0,-0.052185345 +224.29964303970337,0.0,3.787879,3.787879,0.0,-0.052185345 +224.31006693840027,0.0,3.787879,3.787879,0.0,-0.054035395 +224.31949710845947,0.0,3.787879,3.787879,0.0,-0.054035395 +224.32947397232056,0.0,3.787879,3.787879,0.0,-0.054035395 +224.3397719860077,0.0,3.787879,3.787879,0.0,-0.054035395 +224.35016894340515,0.0,3.787879,3.787879,0.0,-0.054035395 +224.36103701591492,0.0,3.787879,3.787879,0.0,-0.042935103 +224.37344098091125,0.0,3.787879,3.787879,0.0,-0.042935103 +224.3801109790802,0.0,3.787879,3.787879,0.0,-0.042935103 +224.39140510559082,0.0,3.787879,3.787879,0.0,-0.042935103 +224.39967012405396,0.0,3.787879,3.787879,0.0,-0.042935103 +224.40957808494568,0.0,3.787879,3.787879,0.0,-0.042935103 +224.41955494880676,0.0,3.787879,3.787879,0.0,-0.054035395 +224.4295370578766,0.0,3.787879,3.787879,0.0,-0.054035395 +224.44019198417664,0.0,3.787879,3.787879,0.0,-0.054035395 +224.45426392555237,0.0,3.787879,3.787879,0.0,-0.054035395 +224.46180701255798,0.0,3.787879,3.787879,0.0,-0.052185345 +224.46972012519836,0.0,3.787879,3.787879,0.0,-0.052185345 +224.48124313354492,0.0,3.787879,3.787879,0.0,-0.052185345 +224.48943901062012,0.0,3.787879,3.787879,0.0,-0.052185345 +224.49967002868652,0.0,3.787879,3.787879,0.0,-0.052185345 +224.5095090866089,0.0,3.787879,3.787879,0.0,-0.052185345 +224.51968097686768,0.0,3.787879,3.787879,0.0,-0.052185345 +224.5294749736786,0.0,3.787879,3.787879,0.0,-0.052185345 +224.54137802124023,0.0,3.787879,3.787879,0.0,-0.052185345 +224.5496311187744,0.0,3.787879,3.787879,0.0,-0.052185345 +224.56216096878052,0.0,3.787879,3.787879,0.0,-0.054035395 +224.57110810279846,0.0,3.787879,3.787879,0.0,-0.054035395 +224.57950901985168,0.0,3.787879,3.787879,0.0,-0.054035395 +224.58951592445374,0.0,3.787879,3.787879,0.0,-0.054035395 +224.59942293167114,0.0,3.787879,3.787879,0.0,-0.054035395 +224.60959792137146,0.0,3.787879,3.787879,0.0,-0.054035395 +224.61952710151672,0.0,3.787879,3.787879,0.0,-0.0466352 +224.62955498695374,0.0,3.787879,3.787879,0.0,-0.0466352 +224.64229202270508,0.0,3.787879,3.787879,0.0,-0.0466352 +224.65056610107422,0.0,3.787879,3.787879,0.0,-0.0466352 +224.66095113754272,0.0,3.787879,3.787879,0.0,-0.039235007 +224.66986393928528,0.0,3.787879,3.787879,0.0,-0.039235007 +224.67948007583618,0.0,3.787879,3.787879,0.0,-0.039235007 +224.69154691696167,0.0,3.787879,3.787879,0.0,-0.039235007 +224.69941306114197,0.0,3.787879,3.787879,0.0,-0.039235007 +224.71004700660706,0.0,3.787879,3.787879,0.0,-0.039235007 +224.7194139957428,0.0,3.787879,3.787879,0.0,-0.039235007 +224.72947597503662,0.0,3.787879,3.787879,0.0,-0.039235007 +224.74114799499512,0.0,3.030303,3.030303,0.0,-0.039235007 +224.75007605552673,0.0,3.030303,3.030303,0.0,-0.039235007 +224.7598009109497,0.0,3.030303,3.030303,0.0,-0.044785153 +224.76947402954102,0.0,3.030303,3.030303,0.0,-0.044785153 +224.78247714042664,0.0,3.030303,3.030303,0.0,-0.044785153 +224.7914810180664,0.0,3.030303,3.030303,0.0,-0.044785153 +224.79942512512207,0.0,3.030303,3.030303,0.0,-0.044785153 +224.80949091911316,0.0,3.030303,3.030303,0.0,-0.044785153 +224.81954097747803,0.0,3.030303,3.030303,0.0,-0.06513569 +224.82949209213257,0.0,3.030303,3.030303,0.0,-0.06513569 +224.8406789302826,0.0,3.030303,3.030303,0.0,-0.06513569 +224.84965896606445,0.0,3.030303,3.030303,0.0,-0.06513569 +224.85942006111145,0.0,3.030303,3.030303,0.0,-0.050335295 +224.872554063797,0.0,3.030303,3.030303,0.0,-0.050335295 +224.88155794143677,0.0,3.030303,3.030303,0.0,-0.050335295 +224.89056706428528,0.0,3.030303,3.030303,0.0,-0.050335295 +224.89942598342896,0.0,3.030303,3.030303,0.0,-0.050335295 +224.91047596931458,0.0,3.030303,3.030303,0.0,-0.041085053 +224.9214949607849,0.0,3.030303,3.030303,0.0,-0.041085053 +224.93053698539734,0.0,3.030303,3.030303,0.0,-0.041085053 +224.9394941329956,0.0,3.030303,3.030303,0.0,-0.041085053 +224.94939303398132,0.0,3.030303,3.030303,0.0,-0.041085053 +224.96181797981262,0.0,3.030303,3.030303,0.0,-0.042935103 +224.9700310230255,0.0,3.030303,3.030303,0.0,-0.042935103 +224.97950100898743,0.0,3.030303,3.030303,0.0,-0.042935103 +224.98948192596436,0.0,3.030303,3.030303,0.0,-0.042935103 +224.99942207336426,0.0,3.030303,3.030303,0.0,-0.042935103 +225.01136708259583,0.0,3.030303,3.030303,0.0,-0.039235007 +225.01954197883606,0.0,3.030303,3.030303,0.0,-0.039235007 +225.0295479297638,0.0,3.030303,3.030303,0.0,-0.039235007 +225.0393979549408,0.0,3.030303,3.030303,0.0,-0.039235007 +225.04940509796143,0.0,3.030303,3.030303,0.0,-0.039235007 +225.06017303466797,0.0,3.030303,3.030303,0.0,-0.044785153 +225.07067894935608,0.0,3.030303,3.030303,0.0,-0.044785153 +225.07969403266907,0.0,3.030303,3.030303,0.0,-0.044785153 +225.08996510505676,0.0,3.030303,3.030303,0.0,-0.044785153 +225.09943914413452,0.0,3.030303,3.030303,0.0,-0.044785153 +225.11023902893066,0.0,3.030303,3.030303,0.0,-0.0466352 +225.11942505836487,0.0,3.030303,3.030303,0.0,-0.0466352 +225.1293981075287,0.0,3.030303,3.030303,0.0,-0.0466352 +225.142156124115,0.0,3.030303,3.030303,0.0,-0.0466352 +225.1510500907898,0.0,3.030303,3.030303,0.0,-0.0466352 +225.15996313095093,0.0,3.030303,3.030303,0.0,-0.044785153 +225.1694691181183,0.0,3.030303,3.030303,0.0,-0.044785153 +225.18135499954224,0.0,3.030303,3.030303,0.0,-0.044785153 +225.19107913970947,0.0,3.030303,3.030303,0.0,-0.044785153 +225.19946098327637,0.0,3.030303,3.030303,0.0,-0.044785153 +225.21035194396973,0.0,3.030303,3.030303,0.0,-0.0466352 +225.21961402893066,0.0,3.030303,3.030303,0.0,-0.0466352 +225.22951006889343,0.0,3.030303,3.030303,0.0,-0.0466352 +225.24013590812683,0.0,3.030303,3.030303,0.0,-0.0466352 +225.25038599967957,0.0,3.030303,3.030303,0.0,-0.0466352 +225.2598021030426,0.0,3.030303,3.030303,0.0,-0.0466352 +225.271968126297,0.0,3.030303,3.030303,0.0,-0.0466352 +225.280944108963,0.0,3.030303,3.030303,0.0,-0.0466352 +225.28967213630676,0.0,3.030303,3.030303,0.0,-0.0466352 +225.29951095581055,0.0,3.030303,3.030303,0.0,-0.0466352 +225.31001806259155,0.0,3.787879,3.787879,0.0,-0.06698574 +225.3195080757141,0.0,3.787879,3.787879,0.0,-0.06698574 +225.32949209213257,0.0,3.787879,3.787879,0.0,-0.06698574 +225.34085702896118,0.0,3.787879,3.787879,0.0,-0.06698574 +225.34987092018127,0.0,3.787879,3.787879,0.0,-0.06698574 +225.36181902885437,0.0,3.787879,3.787879,0.0,-0.0466352 +225.37081599235535,0.0,3.787879,3.787879,0.0,-0.0466352 +225.37980008125305,0.0,3.787879,3.787879,0.0,-0.0466352 +225.39035606384277,0.0,3.787879,3.787879,0.0,-0.0466352 +225.39948296546936,0.0,3.787879,3.787879,0.0,-0.0466352 +225.40943503379822,0.0,3.787879,3.787879,0.0,-0.0466352 +225.4195499420166,0.0,3.787879,3.787879,0.0,-0.050335295 +225.42950201034546,0.0,3.787879,3.787879,0.0,-0.050335295 +225.43994092941284,0.0,3.787879,3.787879,0.0,-0.050335295 +225.45067191123962,0.0,3.787879,3.787879,0.0,-0.050335295 +225.46065998077393,0.0,3.787879,3.787879,0.0,-0.044785153 +225.46964812278748,0.0,3.787879,3.787879,0.0,-0.044785153 +225.48031902313232,0.0,3.787879,3.787879,0.0,-0.044785153 +225.4896149635315,0.0,3.787879,3.787879,0.0,-0.044785153 +225.4995141029358,0.0,3.787879,3.787879,0.0,-0.044785153 +225.51001906394958,0.0,3.787879,3.787879,0.0,-0.039235007 +225.51954698562622,0.0,3.787879,3.787879,0.0,-0.039235007 +225.52949690818787,0.0,3.787879,3.787879,0.0,-0.039235007 +225.54151391983032,0.0,3.787879,3.787879,0.0,-0.039235007 +225.55049109458923,0.0,3.787879,3.787879,0.0,-0.039235007 +225.55946803092957,0.0,3.787879,3.787879,0.0,-0.050335295 +225.56979513168335,0.0,3.787879,3.787879,0.0,-0.050335295 +225.5817790031433,0.0,3.787879,3.787879,0.0,-0.050335295 +225.58975291252136,0.0,3.787879,3.787879,0.0,-0.050335295 +225.59950494766235,0.0,3.787879,3.787879,0.0,-0.050335295 +225.61003708839417,0.0,3.787879,3.787879,0.0,-0.0466352 +225.6195249557495,0.0,3.787879,3.787879,0.0,-0.0466352 +225.62947511672974,0.0,3.787879,3.787879,0.0,-0.0466352 +225.64020109176636,0.0,3.787879,3.787879,0.0,-0.0466352 +225.64998507499695,0.0,3.787879,3.787879,0.0,-0.0466352 +225.66028809547424,0.0,3.787879,3.787879,0.0,-0.039235007 +225.6694700717926,0.0,3.787879,3.787879,0.0,-0.039235007 +225.6830871105194,0.0,3.787879,3.787879,0.0,-0.039235007 +225.69098210334778,0.0,3.787879,3.787879,0.0,-0.039235007 +225.6995289325714,0.0,3.787879,3.787879,0.0,-0.039235007 +225.71002197265625,0.0,3.787879,3.787879,0.0,-0.042935103 +225.71953105926514,0.0,3.787879,3.787879,0.0,-0.042935103 +225.7295560836792,0.0,3.787879,3.787879,0.0,-0.042935103 +225.74129796028137,0.0,3.787879,3.787879,0.0,-0.042935103 +225.75028800964355,0.0,3.787879,3.787879,0.0,-0.042935103 +225.75952410697937,0.0,3.787879,3.787879,0.0,-0.06513569 +225.77015805244446,0.0,3.787879,3.787879,0.0,-0.06513569 +225.78216099739075,0.0,3.787879,3.787879,0.0,-0.06513569 +225.79117393493652,0.0,3.787879,3.787879,0.0,-0.06513569 +225.79952192306519,0.0,3.787879,3.787879,0.0,-0.06513569 +225.8100390434265,0.0,3.787879,3.787879,0.0,-0.0577355 +225.81949710845947,0.0,3.787879,3.787879,0.0,-0.0577355 +225.83006691932678,0.0,3.787879,3.787879,0.0,-0.0577355 +225.83947801589966,0.0,3.787879,3.787879,0.0,-0.0577355 +225.85191798210144,0.0,3.787879,3.787879,0.0,-0.0577355 +225.8630919456482,0.0,3.787879,3.787879,0.0,-0.039235007 +225.87222599983215,0.0,3.787879,3.787879,0.0,-0.039235007 +225.88122391700745,0.0,4.5454545,4.5454545,0.0,-0.039235007 +225.8902280330658,0.0,4.5454545,4.5454545,0.0,-0.039235007 +225.89959692955017,0.0,4.5454545,4.5454545,0.0,-0.039235007 +225.90961694717407,0.0,4.5454545,4.5454545,0.0,-0.042935103 +225.91953992843628,0.0,4.5454545,4.5454545,0.0,-0.042935103 +225.92951798439026,0.0,4.5454545,4.5454545,0.0,-0.042935103 +225.939523935318,0.0,3.787879,3.787879,0.0,-0.042935103 +225.950532913208,0.0,3.787879,3.787879,0.0,-0.042935103 +225.96097612380981,0.0,3.787879,3.787879,0.0,-0.044785153 +225.97071409225464,0.0,3.787879,3.787879,0.0,-0.044785153 +225.97963309288025,0.0,3.787879,3.787879,0.0,-0.044785153 +225.9907250404358,0.0,3.787879,3.787879,0.0,-0.044785153 +225.9995141029358,0.0,3.787879,3.787879,0.0,-0.044785153 +226.01122999191284,0.0,4.5454545,4.5454545,0.0,-0.03183481 +226.01953792572021,0.0,4.5454545,4.5454545,0.0,-0.03183481 +226.0295009613037,0.0,4.5454545,4.5454545,0.0,-0.03183481 +226.0406630039215,0.0,4.5454545,4.5454545,0.0,-0.03183481 +226.05089592933655,0.0,4.5454545,4.5454545,0.0,-0.03183481 +226.05982398986816,0.0,4.5454545,4.5454545,0.0,-0.054035395 +226.07033896446228,0.0,4.5454545,4.5454545,0.0,-0.054035395 +226.08055305480957,0.0,4.5454545,4.5454545,0.0,-0.054035395 +226.08954405784607,0.0,4.5454545,4.5454545,0.0,-0.054035395 +226.09955096244812,0.0,4.5454545,4.5454545,0.0,-0.054035395 +226.1102259159088,0.0,4.5454545,4.5454545,0.0,-0.041085053 +226.1195330619812,0.0,4.5454545,4.5454545,0.0,-0.041085053 +226.12949514389038,0.0,4.5454545,4.5454545,0.0,-0.041085053 +226.13998794555664,0.0,4.5454545,4.5454545,0.0,-0.041085053 +226.1514060497284,0.0,4.5454545,4.5454545,0.0,-0.041085053 +226.15992093086243,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.16939306259155,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.17938995361328,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.19118094444275,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.1996569633484,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.2100179195404,0.0,4.5454545,4.5454545,0.0,-0.050335295 +226.21954607963562,0.0,4.5454545,4.5454545,0.0,-0.050335295 +226.22949409484863,0.0,4.5454545,4.5454545,0.0,-0.050335295 +226.2414300441742,0.0,4.5454545,4.5454545,0.0,-0.050335295 +226.2504379749298,0.0,4.5454545,4.5454545,0.0,-0.050335295 +226.25945901870728,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.2701539993286,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.28114199638367,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.2898690700531,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.2994270324707,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.3095600605011,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.31953406333923,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.329509973526,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.34048795700073,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.34949803352356,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.3621609210968,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.37112593650818,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.38013100624084,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.38953709602356,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.39955592155457,0.0,4.5454545,4.5454545,0.0,-0.05588545 +226.4100639820099,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.41954708099365,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.4295139312744,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.43953704833984,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.45191502571106,0.0,4.5454545,4.5454545,0.0,-0.020734508 +226.46082210540771,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.46975207328796,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.48027896881104,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.49119591712952,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.4995801448822,0.0,4.5454545,4.5454545,0.0,-0.0466352 +226.5100839138031,0.0,3.787879,3.787879,0.0,-0.052185345 +226.51956796646118,0.0,3.787879,3.787879,0.0,-0.052185345 +226.5294930934906,0.0,3.787879,3.787879,0.0,-0.052185345 +226.54104614257812,0.0,3.787879,3.787879,0.0,-0.052185345 +226.54974508285522,0.0,3.787879,3.787879,0.0,-0.052185345 +226.56010913848877,0.0,3.787879,3.787879,0.0,-0.054035395 +226.57408499717712,0.0,3.787879,3.787879,0.0,-0.054035395 +226.5836079120636,0.0,3.787879,3.787879,0.0,-0.054035395 +226.58956003189087,0.0,3.787879,3.787879,0.0,-0.054035395 +226.59957313537598,0.0,3.787879,3.787879,0.0,-0.054035395 +226.61008596420288,0.0,3.787879,3.787879,0.0,-0.054035395 +226.61954808235168,0.0,3.787879,3.787879,0.0,-0.054035395 +226.63019514083862,0.0,3.787879,3.787879,0.0,-0.054035395 +226.64110112190247,0.0,3.787879,3.787879,0.0,-0.054035395 +226.6500871181488,0.0,3.787879,3.787879,0.0,-0.054035395 +226.66064596176147,0.0,3.787879,3.787879,0.0,-0.042935103 +226.6734480857849,0.0,3.787879,3.787879,0.0,-0.042935103 +226.67952513694763,0.0,3.787879,3.787879,0.0,-0.042935103 +226.69139313697815,0.0,3.787879,3.787879,0.0,-0.042935103 +226.69958090782166,0.0,3.787879,3.787879,0.0,-0.042935103 +226.70973205566406,0.0,3.787879,3.787879,0.0,-0.042935103 +226.71953010559082,0.0,3.787879,3.787879,0.0,-0.054035395 +226.72949600219727,0.0,3.787879,3.787879,0.0,-0.054035395 +226.73948311805725,0.0,3.787879,3.787879,0.0,-0.054035395 +226.7533791065216,0.0,3.787879,3.787879,0.0,-0.054035395 +226.76135301589966,0.0,3.787879,3.787879,0.0,-0.041085053 +226.76987504959106,0.0,3.787879,3.787879,0.0,-0.041085053 +226.7812340259552,0.0,3.787879,3.787879,0.0,-0.041085053 +226.7902250289917,0.0,3.787879,3.787879,0.0,-0.041085053 +226.79948592185974,0.0,3.787879,3.787879,0.0,-0.041085053 +226.8094871044159,0.0,3.787879,3.787879,0.0,-0.041085053 +226.81955695152283,0.0,3.787879,3.787879,0.0,-0.039235007 +226.82951593399048,0.0,3.787879,3.787879,0.0,-0.039235007 +226.84086203575134,0.0,3.787879,3.787879,0.0,-0.039235007 +226.851793050766,0.0,3.787879,3.787879,0.0,-0.039235007 +226.85990810394287,0.0,3.787879,3.787879,0.0,-0.039235007 +226.87049794197083,0.0,3.787879,3.787879,0.0,-0.039235007 +226.87973308563232,0.0,3.787879,3.787879,0.0,-0.039235007 +226.88984298706055,0.0,3.787879,3.787879,0.0,-0.039235007 +226.89961004257202,0.0,3.787879,3.787879,0.0,-0.039235007 +226.91103100776672,0.0,3.787879,3.787879,0.0,-0.054035395 +226.91956210136414,0.0,3.787879,3.787879,0.0,-0.054035395 +226.92951202392578,0.0,3.787879,3.787879,0.0,-0.054035395 +226.93952798843384,0.0,3.787879,3.787879,0.0,-0.054035395 +226.95013213157654,0.0,3.787879,3.787879,0.0,-0.054035395 +226.95998191833496,0.0,3.787879,3.787879,0.0,-0.05588545 +226.96992111206055,0.0,3.787879,3.787879,0.0,-0.05588545 +226.97991609573364,0.0,3.787879,3.787879,0.0,-0.05588545 +226.99099802970886,0.0,3.787879,3.787879,0.0,-0.05588545 +226.9995400905609,0.0,3.787879,3.787879,0.0,-0.05588545 +227.0100290775299,0.0,3.787879,3.787879,0.0,-0.06143559 +227.01956009864807,0.0,3.787879,3.787879,0.0,-0.06143559 +227.02950191497803,0.0,3.787879,3.787879,0.0,-0.06143559 +227.0401771068573,0.0,3.787879,3.787879,0.0,-0.06143559 +227.0507619380951,0.0,3.787879,3.787879,0.0,-0.06143559 +227.05973100662231,0.0,3.787879,3.787879,0.0,-0.044785153 +227.0694501399994,0.0,3.787879,3.787879,0.0,-0.044785153 +227.08110213279724,0.0,3.787879,3.787879,0.0,-0.044785153 +227.0909960269928,0.0,3.787879,3.787879,0.0,-0.044785153 +227.09962606430054,0.0,3.787879,3.787879,0.0,-0.044785153 +227.11144614219666,0.0,3.787879,3.787879,0.0,-0.050335295 +227.11952996253967,0.0,3.787879,3.787879,0.0,-0.050335295 +227.12951493263245,0.0,3.787879,3.787879,0.0,-0.050335295 +227.1405849456787,0.0,3.787879,3.787879,0.0,-0.050335295 +227.14957094192505,0.0,3.787879,3.787879,0.0,-0.050335295 +227.1600480079651,0.0,3.787879,3.787879,0.0,-0.06698574 +227.1710159778595,0.0,3.787879,3.787879,0.0,-0.06698574 +227.17951798439026,0.0,3.787879,3.787879,0.0,-0.06698574 +227.18999099731445,0.0,3.787879,3.787879,0.0,-0.06698574 +227.19943714141846,0.0,3.787879,3.787879,0.0,-0.06698574 +227.20947003364563,0.0,3.787879,3.787879,0.0,-0.052185345 +227.21955108642578,0.0,3.787879,3.787879,0.0,-0.052185345 +227.22950410842896,0.0,3.787879,3.787879,0.0,-0.052185345 +227.23940205574036,0.0,3.787879,3.787879,0.0,-0.052185345 +227.2500970363617,0.0,3.787879,3.787879,0.0,-0.052185345 +227.26029706001282,0.0,3.787879,3.787879,0.0,-0.054035395 +227.2710039615631,0.0,3.787879,3.787879,0.0,-0.054035395 +227.27998399734497,0.0,3.787879,3.787879,0.0,-0.054035395 +227.28966307640076,0.0,3.787879,3.787879,0.0,-0.054035395 +227.29966497421265,0.0,3.787879,3.787879,0.0,-0.054035395 +227.3100709915161,0.0,3.787879,3.787879,0.0,-0.041085053 +227.3195719718933,0.0,3.787879,3.787879,0.0,-0.041085053 +227.32956099510193,0.0,3.787879,3.787879,0.0,-0.041085053 +227.3401689529419,0.0,3.787879,3.787879,0.0,-0.041085053 +227.35198593139648,0.0,3.787879,3.787879,0.0,-0.041085053 +227.35971403121948,0.0,3.787879,3.787879,0.0,-0.06143559 +227.3698570728302,0.0,3.787879,3.787879,0.0,-0.06143559 +227.3815140724182,0.0,3.787879,3.787879,0.0,-0.06143559 +227.39024114608765,0.0,3.787879,3.787879,0.0,-0.06143559 +227.39964509010315,0.0,3.787879,3.787879,0.0,-0.06143559 +227.41007208824158,0.0,3.787879,3.787879,0.0,-0.020734508 +227.41954803466797,0.0,3.787879,3.787879,0.0,-0.020734508 +227.4295210838318,0.0,3.787879,3.787879,0.0,-0.020734508 +227.44116592407227,0.0,3.787879,3.787879,0.0,-0.020734508 +227.44956302642822,0.0,3.787879,3.787879,0.0,-0.020734508 +227.45957207679749,0.0,3.787879,3.787879,0.0,-0.0466352 +227.4713909626007,0.0,3.787879,3.787879,0.0,-0.0466352 +227.48198413848877,0.0,3.787879,3.787879,0.0,-0.0466352 +227.49097514152527,0.0,3.787879,3.787879,0.0,-0.0466352 +227.49967193603516,0.0,3.787879,3.787879,0.0,-0.0466352 +227.51009106636047,0.0,3.787879,3.787879,0.0,-0.06328564 +227.52018404006958,0.0,3.787879,3.787879,0.0,-0.06328564 +227.53026700019836,0.0,3.787879,3.787879,0.0,-0.06328564 +227.5395200252533,0.0,3.787879,3.787879,0.0,-0.06328564 +227.54994702339172,0.0,3.787879,3.787879,0.0,-0.06328564 +227.56284499168396,0.0,3.787879,3.787879,0.0,-0.044785153 +227.57181811332703,0.0,3.787879,3.787879,0.0,-0.044785153 +227.5808129310608,0.0,3.787879,3.787879,0.0,-0.044785153 +227.58940505981445,0.0,3.787879,3.787879,0.0,-0.044785153 +227.59939813613892,0.0,3.787879,3.787879,0.0,-0.044785153 +227.6100709438324,0.0,3.787879,3.787879,0.0,-0.054035395 +227.6195900440216,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.62950706481934,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.6399531364441,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.6494779586792,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.660089969635,0.0,4.5454545,4.5454545,0.0,-0.0466352 +227.67066597938538,0.0,4.5454545,4.5454545,0.0,-0.0466352 +227.67963409423828,0.0,4.5454545,4.5454545,0.0,-0.0466352 +227.69022607803345,0.0,4.5454545,4.5454545,0.0,-0.0466352 +227.6996819972992,0.0,4.5454545,4.5454545,0.0,-0.0466352 +227.7095811367035,0.0,4.5454545,4.5454545,0.0,-0.0466352 +227.71943593025208,0.0,4.5454545,4.5454545,0.0,-0.024434604 +227.72952914237976,0.0,4.5454545,4.5454545,0.0,-0.024434604 +227.74200797080994,0.0,4.5454545,4.5454545,0.0,-0.024434604 +227.75152492523193,0.0,4.5454545,4.5454545,0.0,-0.024434604 +227.76049900054932,0.0,4.5454545,4.5454545,0.0,-0.044785153 +227.76946997642517,0.0,4.5454545,4.5454545,0.0,-0.044785153 +227.77976202964783,0.0,4.5454545,4.5454545,0.0,-0.044785153 +227.79049706459045,0.0,4.5454545,4.5454545,0.0,-0.044785153 +227.79939603805542,0.0,4.5454545,4.5454545,0.0,-0.044785153 +227.81009793281555,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.81945610046387,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.82950901985168,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.84008598327637,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.85032296180725,0.0,4.5454545,4.5454545,0.0,-0.054035395 +227.85994696617126,0.0,4.5454545,4.5454545,0.0,-0.050335295 +227.8715419769287,0.0,4.5454545,4.5454545,0.0,-0.050335295 +227.8805329799652,0.0,4.5454545,4.5454545,0.0,-0.050335295 +227.8895559310913,0.0,4.5454545,4.5454545,0.0,-0.050335295 +227.89942407608032,0.0,4.5454545,4.5454545,0.0,-0.050335295 +227.90989208221436,0.0,4.5454545,4.5454545,0.0,-0.050335295 +227.91955399513245,0.0,4.5454545,4.5454545,0.0,-0.05588545 +227.92952799797058,0.0,4.5454545,4.5454545,0.0,-0.05588545 +227.94015312194824,0.0,4.5454545,4.5454545,0.0,-0.05588545 +227.94964909553528,0.0,4.5454545,4.5454545,0.0,-0.05588545 +227.96158003807068,0.0,4.5454545,4.5454545,0.0,-0.042935103 +227.97061014175415,0.0,4.5454545,4.5454545,0.0,-0.042935103 +227.97960495948792,0.0,4.5454545,4.5454545,0.0,-0.042935103 +227.9908721446991,0.0,4.5454545,4.5454545,0.0,-0.042935103 +227.99941992759705,0.0,4.5454545,4.5454545,0.0,-0.042935103 +228.00963807106018,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.0195710659027,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.02949905395508,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.03988099098206,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.05166006088257,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.0606710910797,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.06968593597412,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.08064699172974,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.08987307548523,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.099445104599,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.10958909988403,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.11954593658447,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.1295289993286,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.14071202278137,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.15073990821838,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.15974307060242,0.0,4.5454545,4.5454545,0.0,-0.042935103 +228.1698489189148,0.0,4.5454545,4.5454545,0.0,-0.042935103 +228.1798710823059,0.0,4.5454545,4.5454545,0.0,-0.042935103 +228.18968796730042,0.0,4.5454545,4.5454545,0.0,-0.042935103 +228.19943714141846,0.0,4.5454545,4.5454545,0.0,-0.042935103 +228.20968413352966,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.21955704689026,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.22952103614807,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.24080300331116,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.2498071193695,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.26085114479065,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.2698540687561,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.28155398368835,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.29053902626038,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.29944491386414,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.31009006500244,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.32187795639038,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.33087801933289,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.33988308906555,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.35013103485107,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.35984206199646,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.3714120388031,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.3795189857483,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.39393496513367,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.39946794509888,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.41010093688965,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.41956496238708,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.42954802513123,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.4394359588623,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.44943809509277,0.0,4.5454545,4.5454545,0.0,-0.044785153 +228.4603819847107,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.47024607658386,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.48221111297607,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.49029994010925,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.4994659423828,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.50953006744385,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.51945304870605,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.52955603599548,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.53980207443237,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.5504651069641,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.559641122818,0.0,4.5454545,4.5454545,0.0,-0.050335295 +228.5694990158081,0.0,4.5454545,4.5454545,0.0,-0.050335295 +228.58053612709045,0.0,4.5454545,4.5454545,0.0,-0.050335295 +228.5907621383667,0.0,4.5454545,4.5454545,0.0,-0.050335295 +228.59960007667542,0.0,4.5454545,4.5454545,0.0,-0.050335295 +228.6100800037384,0.0,4.5454545,4.5454545,0.0,-0.050335295 +228.61956810951233,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.6295349597931,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.64092803001404,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.64990901947021,0.0,4.5454545,4.5454545,0.0,-0.054035395 +228.66204810142517,0.0,4.5454545,4.5454545,0.0,-0.0466352 +228.67097210884094,0.0,4.5454545,4.5454545,0.0,-0.0466352 +228.67988300323486,0.0,4.5454545,4.5454545,0.0,-0.0466352 +228.68956208229065,0.0,4.5454545,4.5454545,0.0,-0.0466352 +228.69949102401733,0.0,4.5454545,4.5454545,0.0,-0.0466352 +228.71009707450867,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.71954107284546,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.72952795028687,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.73979210853577,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.75118708610535,0.0,4.5454545,4.5454545,0.0,-0.052185345 +228.76009607315063,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.77218413352966,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.78119206428528,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.79020810127258,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.79955101013184,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.80969214439392,0.0,4.5454545,4.5454545,0.0,-0.039235007 +228.81952095031738,0.0,4.5454545,4.5454545,0.0,-0.06698574 +228.82954907417297,0.0,4.5454545,4.5454545,0.0,-0.06698574 +228.84027194976807,0.0,4.5454545,4.5454545,0.0,-0.06698574 +228.8532109260559,0.0,4.5454545,4.5454545,0.0,-0.06698574 +228.86222910881042,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.87122511863708,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.88024497032166,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.8906900882721,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.89950895309448,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.91008710861206,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.91952300071716,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.92943811416626,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.94100713729858,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.94945812225342,0.0,4.5454545,4.5454545,0.0,-0.0577355 +228.9601240158081,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.97029900550842,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.98065304756165,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.9896719455719,0.0,4.5454545,4.5454545,0.0,-0.05588545 +228.99950695037842,0.0,4.5454545,4.5454545,0.0,-0.05588545 +229.00960111618042,0.0,4.5454545,4.5454545,0.0,-0.0466352 +229.0193920135498,0.0,4.5454545,4.5454545,0.0,-0.0466352 +229.02951502799988,0.0,4.5454545,4.5454545,0.0,-0.0466352 +229.0420560836792,0.0,4.5454545,4.5454545,0.0,-0.0466352 +229.05136013031006,0.0,4.5454545,4.5454545,0.0,-0.0466352 +229.06034398078918,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.0706639289856,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.07940912246704,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.08980011940002,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.09954404830933,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.1138870716095,0.0,4.5454545,4.5454545,0.0,-0.0577355 +229.11956691741943,0.0,4.5454545,4.5454545,0.0,-0.0577355 +229.12952613830566,0.0,4.5454545,4.5454545,0.0,-0.0577355 +229.14004707336426,0.0,4.5454545,4.5454545,0.0,-0.0577355 +229.15039801597595,0.0,4.5454545,4.5454545,0.0,-0.0577355 +229.15942692756653,0.0,4.5454545,4.5454545,0.0,-0.013334316 +229.16963601112366,0.0,4.5454545,4.5454545,0.0,-0.013334316 +229.180016040802,0.0,4.5454545,4.5454545,0.0,-0.013334316 +229.18945407867432,0.0,4.5454545,4.5454545,0.0,-0.013334316 +229.19952297210693,0.0,4.5454545,4.5454545,0.0,-0.013334316 +229.21037411689758,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.21958804130554,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.22955298423767,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.24048900604248,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.24946403503418,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.25963807106018,0.0,4.5454545,4.5454545,0.0,-0.06143559 +229.26986694335938,0.0,4.5454545,4.5454545,0.0,-0.06143559 +229.27956700325012,0.0,4.5454545,4.5454545,0.0,-0.06143559 +229.29386401176453,0.0,4.5454545,4.5454545,0.0,-0.06143559 +229.299556016922,0.0,4.5454545,4.5454545,0.0,-0.06143559 +229.30939102172852,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.319580078125,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.32954001426697,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.3395540714264,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.34965014457703,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.3596920967102,0.0,4.5454545,4.5454545,0.0,-0.042935103 +229.3698010444641,0.0,4.5454545,4.5454545,0.0,-0.042935103 +229.3838300704956,0.0,4.5454545,4.5454545,0.0,-0.042935103 +229.3928301334381,0.0,4.5454545,4.5454545,0.0,-0.042935103 +229.3995509147644,0.0,4.5454545,4.5454545,0.0,-0.042935103 +229.4100980758667,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.4195659160614,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.42950105667114,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.43963313102722,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.44955801963806,0.0,4.5454545,4.5454545,0.0,-0.044785153 +229.46230697631836,0.0,4.5454545,4.5454545,0.0,-0.054035395 +229.4702911376953,0.0,4.5454545,4.5454545,0.0,-0.054035395 +229.4819540977478,0.0,4.5454545,4.5454545,0.0,-0.054035395 +229.49086499214172,0.0,4.5454545,4.5454545,0.0,-0.054035395 +229.49956512451172,0.0,4.5454545,4.5454545,0.0,-0.054035395 +229.5100920200348,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.51957893371582,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.52952408790588,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.5417239665985,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.54979491233826,0.0,4.5454545,4.5454545,0.0,-0.050335295 +229.56219005584717,0.0,4.5454545,4.5454545,0.0,-0.0466352 +229.5710780620575,0.0,5.3030305,5.3030305,0.0,-0.0466352 +229.57999992370605,0.0,5.3030305,5.3030305,0.0,-0.0466352 +229.59173202514648,0.0,5.3030305,5.3030305,0.0,-0.0466352 +229.5995810031891,0.0,5.3030305,5.3030305,0.0,-0.0466352 +229.6097331047058,0.0,5.3030305,5.3030305,0.0,-0.0466352 +229.6195731163025,0.0,5.3030305,5.3030305,0.0,-0.06143559 +229.62959098815918,0.0,5.3030305,5.3030305,0.0,-0.06143559 +229.64008402824402,0.0,5.3030305,5.3030305,0.0,-0.06143559 +229.65127205848694,0.0,5.3030305,5.3030305,0.0,-0.06143559 +229.66018414497375,0.0,5.3030305,5.3030305,0.0,-0.050335295 +229.6727819442749,0.0,5.3030305,5.3030305,0.0,-0.050335295 +229.68078708648682,0.0,5.3030305,5.3030305,0.0,-0.050335295 +229.6908049583435,0.0,5.3030305,5.3030305,0.0,-0.050335295 +229.69958305358887,0.0,5.3030305,5.3030305,0.0,-0.050335295 +229.70958399772644,0.0,5.3030305,5.3030305,0.0,-0.050335295 +229.7195689678192,0.0,5.3030305,5.3030305,0.0,-0.052185345 +229.72954106330872,0.0,5.3030305,5.3030305,0.0,-0.052185345 +229.74039793014526,0.0,5.3030305,5.3030305,0.0,-0.052185345 +229.7538139820099,0.0,5.3030305,5.3030305,0.0,-0.052185345 +229.7603509426117,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.77185010910034,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.77965903282166,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.78986811637878,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.79958701133728,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.8101499080658,0.0,5.3030305,5.3030305,0.0,-0.020734508 +229.81959795951843,0.0,5.3030305,5.3030305,0.0,-0.020734508 +229.8295340538025,0.0,5.3030305,5.3030305,0.0,-0.020734508 +229.84383702278137,0.0,5.3030305,5.3030305,0.0,-0.020734508 +229.85290813446045,0.0,5.3030305,5.3030305,0.0,-0.020734508 +229.8602020740509,0.0,5.3030305,5.3030305,0.0,-0.05588545 +229.87092399597168,0.0,5.3030305,5.3030305,0.0,-0.05588545 +229.8799159526825,0.0,5.3030305,5.3030305,0.0,-0.05588545 +229.88954305648804,0.0,5.3030305,5.3030305,0.0,-0.05588545 +229.89962792396545,0.0,5.3030305,5.3030305,0.0,-0.05588545 +229.90972995758057,0.0,5.3030305,5.3030305,0.0,-0.05588545 +229.91940212249756,0.0,5.3030305,5.3030305,0.0,-0.024434604 +229.9295539855957,0.0,5.3030305,5.3030305,0.0,-0.024434604 +229.94297313690186,0.0,5.3030305,5.3030305,0.0,-0.024434604 +229.95142912864685,0.0,5.3030305,5.3030305,0.0,-0.024434604 +229.96095895767212,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.96996402740479,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.97939610481262,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.9896149635315,0.0,5.3030305,5.3030305,0.0,-0.044785153 +229.99960207939148,0.0,5.3030305,5.3030305,0.0,-0.044785153 +230.0138189792633,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.01978206634521,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.03037810325623,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.04154896736145,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.05101203918457,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.06001210212708,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.06942296028137,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.07941007614136,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.0938160419464,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.09961414337158,0.0,5.3030305,5.3030305,0.0,-0.039235007 +230.10981011390686,0.0,5.3030305,5.3030305,0.0,-0.050335295 +230.1193881034851,0.0,5.3030305,5.3030305,0.0,-0.050335295 +230.12958407402039,0.0,5.3030305,5.3030305,0.0,-0.050335295 +230.13982701301575,0.0,5.3030305,5.3030305,0.0,-0.050335295 +230.150071144104,0.0,5.3030305,5.3030305,0.0,-0.050335295 +230.15959191322327,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.17263507843018,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.18057513237,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.1938030719757,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.19963908195496,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.21274709701538,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.2195861339569,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.22954392433167,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.23950695991516,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.24941492080688,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.26001906394958,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.27102613449097,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.2819550037384,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.29004192352295,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.29964303970337,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.3107979297638,0.0,5.3030305,5.3030305,0.0,-0.06328564 +230.31959009170532,0.0,5.3030305,5.3030305,0.0,-0.06328564 +230.3295600414276,0.0,5.3030305,5.3030305,0.0,-0.06328564 +230.33941006660461,0.0,5.3030305,5.3030305,0.0,-0.06328564 +230.35294699668884,0.0,5.3030305,5.3030305,0.0,-0.06328564 +230.36377096176147,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.36948204040527,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.38009214401245,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.39101791381836,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.39939904212952,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.41013193130493,0.0,5.3030305,5.3030305,0.0,-0.05588545 +230.41959404945374,0.0,5.3030305,5.3030305,0.0,-0.05588545 +230.4296009540558,0.0,5.3030305,5.3030305,0.0,-0.05588545 +230.44277095794678,0.0,5.3030305,5.3030305,0.0,-0.05588545 +230.4533920288086,0.0,5.3030305,5.3030305,0.0,-0.05588545 +230.46229791641235,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.47122502326965,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.48012614250183,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.4917049407959,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.49965405464172,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.50946307182312,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.51940202713013,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.529550075531,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.5425159931183,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.55144000053406,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.56035995483398,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.5725700855255,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.58157300949097,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.5904381275177,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.59948897361755,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.60960602760315,0.0,5.3030305,5.3030305,0.0,-0.054035395 +230.6195559501648,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.62955713272095,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.63941597938538,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.64950013160706,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.66125512123108,0.0,5.3030305,5.3030305,0.0,-0.03553491 +230.67143511772156,0.0,5.3030305,5.3030305,0.0,-0.03553491 +230.6804039478302,0.0,5.3030305,5.3030305,0.0,-0.03553491 +230.68938994407654,0.0,5.3030305,5.3030305,0.0,-0.03553491 +230.6994469165802,0.0,5.3030305,5.3030305,0.0,-0.03553491 +230.71012496948242,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.71940398216248,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.7295401096344,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.74074912071228,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.75165510177612,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.7612910270691,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.76998209953308,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.78050112724304,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.78953504562378,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.79969596862793,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.80993914604187,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.81940698623657,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.82957792282104,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.84216403961182,0.0,5.3030305,5.3030305,0.0,-0.029984765 +230.84999895095825,0.0,4.5454545,4.5454545,0.0,-0.029984765 +230.86011695861816,0.0,4.5454545,4.5454545,0.0,-0.0466352 +230.86947393417358,0.0,4.5454545,4.5454545,0.0,-0.0466352 +230.87951612472534,0.0,4.5454545,4.5454545,0.0,-0.0466352 +230.89016199111938,0.0,5.3030305,5.3030305,0.0,-0.0466352 +230.89945101737976,0.0,4.5454545,4.5454545,0.0,-0.0466352 +230.9101459980011,0.0,4.5454545,4.5454545,0.0,-0.041085053 +230.92298007011414,0.0,4.5454545,4.5454545,0.0,-0.041085053 +230.92954301834106,0.0,4.5454545,4.5454545,0.0,-0.041085053 +230.94094800949097,0.0,4.5454545,4.5454545,0.0,-0.041085053 +230.94992995262146,0.0,5.3030305,5.3030305,0.0,-0.041085053 +230.9594829082489,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.96952891349792,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.9795379638672,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.9893901348114,0.0,5.3030305,5.3030305,0.0,-0.042935103 +230.9997010231018,0.0,5.3030305,5.3030305,0.0,-0.042935103 +231.01102900505066,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.01943802833557,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.02940106391907,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.03976893424988,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.04949402809143,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.05949306488037,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.06942009925842,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.0837540626526,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.09032201766968,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.09943103790283,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.10946702957153,0.0,5.3030305,5.3030305,0.0,-0.039235007 +231.11955904960632,0.0,5.3030305,5.3030305,0.0,-0.039235007 +231.1295280456543,0.0,5.3030305,5.3030305,0.0,-0.039235007 +231.1396689414978,0.0,5.3030305,5.3030305,0.0,-0.039235007 +231.14951705932617,0.0,5.3030305,5.3030305,0.0,-0.039235007 +231.1596040725708,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.1722640991211,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.18353009223938,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.19251108169556,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.1994969844818,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.21050095558167,0.0,5.3030305,5.3030305,0.0,-0.050335295 +231.21941614151,0.0,5.3030305,5.3030305,0.0,-0.050335295 +231.22946000099182,0.0,5.3030305,5.3030305,0.0,-0.050335295 +231.2394859790802,0.0,5.3030305,5.3030305,0.0,-0.050335295 +231.25116610527039,0.0,5.3030305,5.3030305,0.0,-0.050335295 +231.25958108901978,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.27323007583618,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.28150606155396,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.2896270751953,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.29972195625305,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.30948901176453,0.0,5.3030305,5.3030305,0.0,-0.054035395 +231.31960892677307,0.0,5.3030305,5.3030305,0.0,-0.054035395 +231.32949304580688,0.0,5.3030305,5.3030305,0.0,-0.054035395 +231.33953714370728,0.0,5.3030305,5.3030305,0.0,-0.054035395 +231.34977006912231,0.0,5.3030305,5.3030305,0.0,-0.054035395 +231.3624770641327,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.3714120388031,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.37975406646729,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.3901720046997,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.39973902702332,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.41008496284485,0.0,5.3030305,5.3030305,0.0,-0.06513569 +231.4194209575653,0.0,5.3030305,5.3030305,0.0,-0.06513569 +231.4295039176941,0.0,5.3030305,5.3030305,0.0,-0.06513569 +231.44255805015564,0.0,5.3030305,5.3030305,0.0,-0.06513569 +231.45159697532654,0.0,5.3030305,5.3030305,0.0,-0.06513569 +231.45958805084229,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.46939492225647,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.48000693321228,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.49147009849548,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.49973702430725,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.50949501991272,0.0,5.3030305,5.3030305,0.0,-0.044785153 +231.51952409744263,0.0,5.3030305,5.3030305,0.0,-0.05588545 +231.52954411506653,0.0,5.3030305,5.3030305,0.0,-0.05588545 +231.54071807861328,0.0,5.3030305,5.3030305,0.0,-0.05588545 +231.54960703849792,0.0,5.3030305,5.3030305,0.0,-0.05588545 +231.56088495254517,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.5698800086975,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.58146214485168,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.59004306793213,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.59947991371155,0.0,5.3030305,5.3030305,0.0,-0.0466352 +231.61013412475586,0.0,5.3030305,5.3030305,0.0,-0.03183481 +231.6195991039276,0.0,5.3030305,5.3030305,0.0,-0.03183481 +231.62958192825317,0.0,5.3030305,5.3030305,0.0,-0.03183481 +231.63954496383667,0.0,5.3030305,5.3030305,0.0,-0.03183481 +231.65073204040527,0.0,5.3030305,5.3030305,0.0,-0.03183481 +231.65972113609314,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.671462059021,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.67961192131042,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.68947005271912,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.6994390487671,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.71000599861145,0.0,5.3030305,5.3030305,0.0,-0.041085053 +231.72087812423706,0.0,5.3030305,5.3030305,0.0,-0.054035395 +231.73159909248352,0.0,6.060606,6.060606,0.0,-0.054035395 +231.74059796333313,0.0,6.060606,6.060606,0.0,-0.054035395 +231.74957013130188,0.0,6.060606,6.060606,0.0,-0.054035395 +231.76144814491272,0.0,6.060606,6.060606,0.0,-0.05588545 +231.77044892311096,0.0,6.060606,6.060606,0.0,-0.05588545 +231.7794589996338,0.0,6.060606,6.060606,0.0,-0.05588545 +231.78957104682922,0.0,6.060606,6.060606,0.0,-0.05588545 +231.79977893829346,0.0,6.060606,6.060606,0.0,-0.05588545 +231.8095579147339,0.0,6.060606,6.060606,0.0,-0.05588545 +231.8194329738617,0.0,6.060606,6.060606,0.0,-0.0466352 +231.82957291603088,0.0,6.060606,6.060606,0.0,-0.0466352 +231.8394169807434,0.0,6.060606,6.060606,0.0,-0.0466352 +231.85144591331482,0.0,6.060606,6.060606,0.0,-0.0466352 +231.86044001579285,0.0,6.060606,6.060606,0.0,-0.052185345 +231.86947011947632,0.0,6.060606,6.060606,0.0,-0.052185345 +231.87952303886414,0.0,6.060606,6.060606,0.0,-0.052185345 +231.89332604408264,0.0,6.060606,6.060606,0.0,-0.052185345 +231.89980006217957,0.0,6.060606,6.060606,0.0,-0.052185345 +231.90963101387024,0.0,6.060606,6.060606,0.0,-0.052185345 +231.91961693763733,0.0,6.060606,6.060606,0.0,-0.05588545 +231.92956805229187,0.0,6.060606,6.060606,0.0,-0.05588545 +231.93947911262512,0.0,6.060606,6.060606,0.0,-0.05588545 +231.95041394233704,0.0,6.060606,6.060606,0.0,-0.05588545 +231.95941400527954,0.0,6.060606,6.060606,0.0,-0.054035395 +231.9694471359253,0.0,6.060606,6.060606,0.0,-0.054035395 +231.98317098617554,0.0,6.060606,6.060606,0.0,-0.054035395 +231.99158191680908,0.0,6.060606,6.060606,0.0,-0.054035395 +231.99981212615967,0.0,6.060606,6.060606,0.0,-0.054035395 +232.01009702682495,0.0,6.060606,6.060606,0.0,-0.054035395 +232.01944208145142,0.0,6.060606,6.060606,0.0,-0.054035395 +232.02956199645996,0.0,6.060606,6.060606,0.0,-0.054035395 +232.03968596458435,0.0,6.060606,6.060606,0.0,-0.054035395 +232.04940509796143,0.0,6.060606,6.060606,0.0,-0.054035395 +232.05946111679077,0.0,6.060606,6.060606,0.0,-0.06328564 +232.06944513320923,0.0,6.060606,6.060606,0.0,-0.06328564 +232.08196592330933,0.0,6.060606,6.060606,0.0,-0.06328564 +232.09095692634583,0.0,6.060606,6.060606,0.0,-0.06328564 +232.09980702400208,0.0,6.060606,6.060606,0.0,-0.06328564 +232.10946607589722,0.0,6.060606,6.060606,0.0,-0.052185345 +232.1195809841156,0.0,6.060606,6.060606,0.0,-0.052185345 +232.1295690536499,0.0,6.060606,6.060606,0.0,-0.052185345 +232.13939905166626,0.0,6.060606,6.060606,0.0,-0.052185345 +232.1495110988617,0.0,6.060606,6.060606,0.0,-0.052185345 +232.1595859527588,0.0,6.060606,6.060606,0.0,-0.052185345 +232.17182803153992,0.0,6.060606,6.060606,0.0,-0.052185345 +232.1800239086151,0.0,6.060606,6.060606,0.0,-0.052185345 +232.18981099128723,0.0,6.060606,6.060606,0.0,-0.052185345 +232.19958806037903,0.0,6.060606,6.060606,0.0,-0.052185345 +232.21142506599426,0.0,6.060606,6.060606,0.0,-0.044785153 +232.21959805488586,0.0,6.060606,6.060606,0.0,-0.044785153 +232.22942900657654,0.0,6.060606,6.060606,0.0,-0.044785153 +232.23958706855774,0.0,6.060606,6.060606,0.0,-0.044785153 +232.2510290145874,0.0,6.060606,6.060606,0.0,-0.044785153 +232.25950813293457,0.0,6.060606,6.060606,0.0,-0.0577355 +232.27068710327148,0.0,6.060606,6.060606,0.0,-0.0577355 +232.27968096733093,0.0,6.060606,6.060606,0.0,-0.0577355 +232.2894790172577,0.0,6.060606,6.060606,0.0,-0.0577355 +232.2998309135437,0.0,6.060606,6.060606,0.0,-0.0577355 +232.31043100357056,0.0,6.060606,6.060606,0.0,-0.044785153 +232.31940913200378,0.0,6.060606,6.060606,0.0,-0.044785153 +232.32953000068665,0.0,6.060606,6.060606,0.0,-0.044785153 +232.34259605407715,0.0,6.060606,6.060606,0.0,-0.044785153 +232.35155296325684,0.0,6.060606,6.060606,0.0,-0.044785153 +232.3604860305786,0.0,6.060606,6.060606,0.0,-0.054035395 +232.36939907073975,0.0,6.060606,6.060606,0.0,-0.054035395 +232.37963700294495,0.0,6.060606,6.060606,0.0,-0.054035395 +232.39023113250732,0.0,6.060606,6.060606,0.0,-0.054035395 +232.39984107017517,0.0,6.060606,6.060606,0.0,-0.054035395 +232.40950107574463,0.0,6.060606,6.060606,0.0,-0.054035395 +232.41963005065918,0.0,6.060606,6.060606,0.0,-0.06513569 +232.4295780658722,0.0,6.060606,6.060606,0.0,-0.06513569 +232.4406599998474,0.0,6.060606,6.060606,0.0,-0.06513569 +232.44958591461182,0.0,6.060606,6.060606,0.0,-0.06513569 +232.4594531059265,0.0,6.060606,6.060606,0.0,-0.039235007 +232.4724681377411,0.0,6.060606,6.060606,0.0,-0.039235007 +232.48147797584534,0.0,6.060606,6.060606,0.0,-0.039235007 +232.4904589653015,0.0,5.3030305,5.3030305,0.0,-0.039235007 +232.49946808815002,0.0,5.3030305,5.3030305,0.0,-0.039235007 +232.50979208946228,0.0,5.3030305,5.3030305,0.0,-0.039235007 +232.5194320678711,0.0,5.3030305,5.3030305,0.0,-0.05588545 +232.5295810699463,0.0,5.3030305,5.3030305,0.0,-0.05588545 +232.54027891159058,0.0,5.3030305,5.3030305,0.0,-0.05588545 +232.54957008361816,0.0,5.3030305,5.3030305,0.0,-0.05588545 +232.55955600738525,0.0,5.3030305,5.3030305,0.0,-0.0466352 +232.57052397727966,0.0,5.3030305,5.3030305,0.0,-0.0466352 +232.58048009872437,0.0,5.3030305,5.3030305,0.0,-0.0466352 +232.58959698677063,0.0,5.3030305,5.3030305,0.0,-0.0466352 +232.59984612464905,0.0,5.3030305,5.3030305,0.0,-0.0466352 +232.60939002037048,0.0,5.3030305,5.3030305,0.0,-0.0466352 +232.6194291114807,0.0,5.3030305,5.3030305,0.0,-0.052185345 +232.62957906723022,0.0,5.3030305,5.3030305,0.0,-0.052185345 +232.6396279335022,0.0,5.3030305,5.3030305,0.0,-0.052185345 +232.64942812919617,0.0,5.3030305,5.3030305,0.0,-0.052185345 +232.6614761352539,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.67046093940735,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.6794629096985,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.68994212150574,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.69941306114197,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.71016597747803,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.7194209098816,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.72957301139832,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.73988699913025,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.7508089542389,0.0,5.3030305,5.3030305,0.0,-0.050335295 +232.7604730129242,0.0,5.3030305,5.3030305,0.0,-0.041085053 +232.7694640159607,0.0,5.3030305,5.3030305,0.0,-0.041085053 +232.77939105033875,0.0,5.3030305,5.3030305,0.0,-0.041085053 +232.78940200805664,0.0,5.3030305,5.3030305,0.0,-0.041085053 +232.79987406730652,0.0,5.3030305,5.3030305,0.0,-0.041085053 +232.80985307693481,0.0,5.3030305,5.3030305,0.0,-0.041085053 +232.81939101219177,0.0,5.3030305,5.3030305,0.0,-0.054035395 +232.8295590877533,0.0,5.3030305,5.3030305,0.0,-0.054035395 +232.8414671421051,0.0,5.3030305,5.3030305,0.0,-0.054035395 +232.8494210243225,0.0,5.3030305,5.3030305,0.0,-0.054035395 +232.85943508148193,0.0,5.3030305,5.3030305,0.0,-0.03553491 +232.86955499649048,0.0,5.3030305,5.3030305,0.0,-0.03553491 +232.87940192222595,0.0,5.3030305,5.3030305,0.0,-0.03553491 +232.89000010490417,0.0,5.3030305,5.3030305,0.0,-0.03553491 +232.89967799186707,0.0,5.3030305,5.3030305,0.0,-0.03553491 +232.91016101837158,0.0,5.3030305,5.3030305,0.0,-0.022584556 +232.9196319580078,0.0,5.3030305,5.3030305,0.0,-0.022584556 +232.9296009540558,0.0,5.3030305,5.3030305,0.0,-0.022584556 +232.93966507911682,0.0,5.3030305,5.3030305,0.0,-0.022584556 +232.94941902160645,0.0,5.3030305,5.3030305,0.0,-0.022584556 +232.96013808250427,0.0,5.3030305,5.3030305,0.0,-0.06143559 +232.96941995620728,0.0,5.3030305,5.3030305,0.0,-0.06143559 +232.97943997383118,0.0,5.3030305,5.3030305,0.0,-0.06143559 +232.98953795433044,0.0,5.3030305,5.3030305,0.0,-0.06143559 +232.99955201148987,0.0,5.3030305,5.3030305,0.0,-0.06143559 +233.0101671218872,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.0194170475006,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.02939009666443,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.03944897651672,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.05020594596863,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.0594310760498,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.07037806510925,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.07943511009216,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.0911660194397,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.09991192817688,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.1094160079956,0.0,5.3030305,5.3030305,0.0,-0.044785153 +233.11948609352112,0.0,5.3030305,5.3030305,0.0,-0.044785153 +233.12941312789917,0.0,5.3030305,5.3030305,0.0,-0.044785153 +233.1402621269226,0.0,5.3030305,5.3030305,0.0,-0.044785153 +233.1494390964508,0.0,5.3030305,5.3030305,0.0,-0.044785153 +233.16021704673767,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.16949200630188,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.18026304244995,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.18941807746887,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.19991207122803,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.20955109596252,0.0,5.3030305,5.3030305,0.0,-0.013334316 +233.21944212913513,0.0,5.3030305,5.3030305,0.0,-0.013334316 +233.22946691513062,0.0,5.3030305,5.3030305,0.0,-0.013334316 +233.2394289970398,0.0,5.3030305,5.3030305,0.0,-0.013334316 +233.25007891654968,0.0,5.3030305,5.3030305,0.0,-0.013334316 +233.25943899154663,0.0,5.3030305,5.3030305,0.0,-0.041085053 +233.26942491531372,0.0,5.3030305,5.3030305,0.0,-0.041085053 +233.28243803977966,0.0,5.3030305,5.3030305,0.0,-0.041085053 +233.29144501686096,0.0,5.3030305,5.3030305,0.0,-0.041085053 +233.2999210357666,0.0,5.3030305,5.3030305,0.0,-0.041085053 +233.30943894386292,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.31939506530762,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.32944107055664,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.33991599082947,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.34946012496948,0.0,5.3030305,5.3030305,0.0,-0.052185345 +233.35951399803162,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.3698079586029,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.3794310092926,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.3897681236267,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.39946699142456,0.0,5.3030305,5.3030305,0.0,-0.0466352 +233.41017508506775,0.0,5.3030305,5.3030305,0.0,-0.042935103 +233.41948795318604,0.0,5.3030305,5.3030305,0.0,-0.042935103 +233.42976999282837,0.0,5.3030305,5.3030305,0.0,-0.042935103 +233.4395351409912,0.0,5.3030305,5.3030305,0.0,-0.042935103 +233.45345997810364,0.0,5.3030305,5.3030305,0.0,-0.042935103 +233.46245312690735,0.0,5.3030305,5.3030305,0.0,-0.05588545 +233.47147798538208,0.0,5.3030305,5.3030305,0.0,-0.05588545 +233.47956109046936,0.0,5.3030305,5.3030305,0.0,-0.05588545 +233.4894790649414,0.0,5.3030305,5.3030305,0.0,-0.05588545 +233.49974393844604,0.0,5.3030305,5.3030305,0.0,-0.05588545 +233.5095829963684,0.0,5.3030305,5.3030305,0.0,-0.05588545 +233.51939296722412,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.52957606315613,0.0,5.3030305,5.3030305,0.0,-0.050335295 +233.53999996185303,0.0,6.060606,6.060606,0.0,-0.050335295 +233.5524640083313,0.0,6.060606,6.060606,0.0,-0.050335295 +233.5594880580902,0.0,6.060606,6.060606,0.0,-0.033684865 +233.57049107551575,0.0,6.060606,6.060606,0.0,-0.033684865 +233.57947707176208,0.0,6.060606,6.060606,0.0,-0.033684865 +233.59025406837463,0.0,6.060606,6.060606,0.0,-0.033684865 +233.59947991371155,0.0,6.060606,6.060606,0.0,-0.033684865 +233.6094949245453,0.0,6.060606,6.060606,0.0,-0.033684865 +233.6195969581604,0.0,6.060606,6.060606,0.0,-0.041085053 +233.6296010017395,0.0,6.060606,6.060606,0.0,-0.041085053 +233.6410391330719,0.0,6.060606,6.060606,0.0,-0.041085053 +233.65147805213928,0.0,6.060606,6.060606,0.0,-0.041085053 +233.66049313545227,0.0,6.060606,6.060606,0.0,-0.044785153 +233.66948795318604,0.0,6.060606,6.060606,0.0,-0.044785153 +233.6794729232788,0.0,6.060606,6.060606,0.0,-0.044785153 +233.68970108032227,0.0,6.060606,6.060606,0.0,-0.044785153 +233.69951796531677,0.0,6.060606,6.060606,0.0,-0.044785153 +233.71016812324524,0.0,6.060606,6.060606,0.0,-0.044785153 +233.71962809562683,0.0,6.060606,6.060606,0.0,-0.044785153 +233.729474067688,0.0,6.060606,6.060606,0.0,-0.044785153 +233.73952794075012,0.0,6.060606,6.060606,0.0,-0.044785153 +233.75006103515625,0.0,6.060606,6.060606,0.0,-0.044785153 +233.75942206382751,0.0,6.060606,6.060606,0.0,-0.052185345 +233.77078795433044,0.0,6.060606,6.060606,0.0,-0.052185345 +233.7798080444336,0.0,6.060606,6.060606,0.0,-0.052185345 +233.7895851135254,0.0,6.060606,6.060606,0.0,-0.052185345 +233.79952812194824,0.0,6.060606,6.060606,0.0,-0.052185345 +233.81016302108765,0.0,6.060606,6.060606,0.0,-0.0466352 +233.81964302062988,0.0,6.060606,6.060606,0.0,-0.0466352 +233.82946491241455,0.0,6.060606,6.060606,0.0,-0.0466352 +233.8397810459137,0.0,6.060606,6.060606,0.0,-0.0466352 +233.849515914917,0.0,6.060606,6.060606,0.0,-0.0466352 +233.85939812660217,0.0,6.060606,6.060606,0.0,-0.044785153 +233.86984705924988,0.0,6.060606,6.060606,0.0,-0.044785153 +233.8794231414795,0.0,6.060606,6.060606,0.0,-0.044785153 +233.88962197303772,0.0,6.060606,6.060606,0.0,-0.044785153 +233.89997506141663,0.0,6.060606,6.060606,0.0,-0.044785153 +233.91016697883606,0.0,6.060606,6.060606,0.0,-0.054035395 +233.9196310043335,0.0,6.060606,6.060606,0.0,-0.054035395 +233.92948698997498,0.0,6.060606,6.060606,0.0,-0.054035395 +233.93948793411255,0.0,6.060606,6.060606,0.0,-0.054035395 +233.95085906982422,0.0,6.060606,6.060606,0.0,-0.054035395 +233.9598469734192,0.0,6.060606,6.060606,0.0,-0.042935103 +233.96955704689026,0.0,6.060606,6.060606,0.0,-0.042935103 +233.97978591918945,0.0,6.060606,6.060606,0.0,-0.042935103 +233.99059104919434,0.0,6.060606,6.060606,0.0,-0.042935103 +233.99996709823608,0.0,6.060606,6.060606,0.0,-0.042935103 +234.00949501991272,0.0,6.060606,6.060606,0.0,-0.015184363 +234.0194320678711,0.0,6.060606,6.060606,0.0,-0.015184363 +234.02951097488403,0.0,6.060606,6.060606,0.0,-0.015184363 +234.0397880077362,0.0,6.060606,6.060606,0.0,-0.015184363 +234.04967212677002,0.0,6.060606,6.060606,0.0,-0.015184363 +234.05951595306396,0.0,6.060606,6.060606,0.0,-0.054035395 +234.07151103019714,0.0,6.060606,6.060606,0.0,-0.054035395 +234.08041906356812,0.0,6.060606,6.060606,0.0,-0.054035395 +234.0895230770111,0.0,6.060606,6.060606,0.0,-0.054035395 +234.0999789237976,0.0,6.060606,6.060606,0.0,-0.054035395 +234.110445022583,0.0,6.060606,6.060606,0.0,-0.039235007 +234.11956691741943,0.0,6.060606,6.060606,0.0,-0.039235007 +234.12958693504333,0.0,6.060606,6.060606,0.0,-0.039235007 +234.13951992988586,0.0,6.060606,6.060606,0.0,-0.039235007 +234.1495280265808,0.0,6.060606,6.060606,0.0,-0.039235007 +234.160630941391,0.0,6.060606,6.060606,0.0,-0.06143559 +234.16955709457397,0.0,6.060606,6.060606,0.0,-0.06143559 +234.18244099617004,0.0,6.060606,6.060606,0.0,-0.06143559 +234.19142293930054,0.0,6.060606,6.060606,0.0,-0.06143559 +234.20001196861267,0.0,6.060606,6.060606,0.0,-0.06143559 +234.2095320224762,0.0,6.060606,6.060606,0.0,-0.0466352 +234.2196180820465,0.0,6.060606,6.060606,0.0,-0.0466352 +234.22951793670654,0.0,6.060606,6.060606,0.0,-0.0466352 +234.23954510688782,0.0,6.060606,6.060606,0.0,-0.0466352 +234.24975991249084,0.0,6.060606,6.060606,0.0,-0.0466352 +234.26341199874878,0.0,6.060606,6.060606,0.0,-0.044785153 +234.27188396453857,0.0,6.060606,6.060606,0.0,-0.044785153 +234.27952599525452,0.0,6.060606,6.060606,0.0,-0.044785153 +234.29040694236755,0.0,6.060606,6.060606,0.0,-0.044785153 +234.29954600334167,0.0,6.060606,6.060606,0.0,-0.044785153 +234.3102159500122,0.0,6.060606,6.060606,0.0,-0.041085053 +234.31958413124084,0.0,6.060606,6.060606,0.0,-0.041085053 +234.32954096794128,0.0,6.060606,6.060606,0.0,-0.041085053 +234.33945298194885,0.0,6.060606,6.060606,0.0,-0.041085053 +234.3533890247345,0.0,6.060606,6.060606,0.0,-0.041085053 +234.35945010185242,0.0,6.060606,6.060606,0.0,-0.044785153 +234.37137413024902,0.0,6.060606,6.060606,0.0,-0.044785153 +234.38038992881775,0.0,6.060606,6.060606,0.0,-0.044785153 +234.38953614234924,0.0,6.060606,6.060606,0.0,-0.044785153 +234.4000060558319,0.0,6.060606,6.060606,0.0,-0.044785153 +234.40954494476318,0.0,6.060606,6.060606,0.0,-0.044785153 +234.4195499420166,0.0,6.060606,6.060606,0.0,-0.06883579 +234.42961311340332,0.0,6.060606,6.060606,0.0,-0.06883579 +234.443372964859,0.0,6.060606,6.060606,0.0,-0.06883579 +234.45238399505615,0.0,6.060606,6.060606,0.0,-0.06883579 +234.46136713027954,0.0,6.060606,6.060606,0.0,-0.044785153 +234.47035098075867,0.0,6.060606,6.060606,0.0,-0.044785153 +234.47955107688904,0.0,6.060606,6.060606,0.0,-0.044785153 +234.4898669719696,0.0,6.060606,6.060606,0.0,-0.044785153 +234.4994170665741,0.0,6.060606,6.060606,0.0,-0.044785153 +234.5095500946045,0.0,6.060606,6.060606,0.0,-0.044785153 +234.5196509361267,0.0,6.060606,6.060606,0.0,-0.06143559 +234.5295910835266,0.0,6.060606,6.060606,0.0,-0.06143559 +234.53960609436035,0.0,6.060606,6.060606,0.0,-0.06143559 +234.55136513710022,0.0,6.060606,6.060606,0.0,-0.06143559 +234.5603380203247,0.0,6.060606,6.060606,0.0,-0.03553491 +234.56957507133484,0.0,6.060606,6.060606,0.0,-0.03553491 +234.57955312728882,0.0,6.060606,6.060606,0.0,-0.03553491 +234.59043908119202,0.0,6.060606,6.060606,0.0,-0.03553491 +234.5995581150055,0.0,6.060606,6.060606,0.0,-0.03553491 +234.61020493507385,0.0,6.060606,6.060606,0.0,-0.05588545 +234.61947393417358,0.0,6.060606,6.060606,0.0,-0.05588545 +234.62962007522583,0.0,6.060606,6.060606,0.0,-0.05588545 +234.6413230895996,0.0,6.060606,6.060606,0.0,-0.05588545 +234.64960193634033,0.0,6.060606,6.060606,0.0,-0.05588545 +234.65955114364624,0.0,6.060606,6.060606,0.0,-0.044785153 +234.66957092285156,0.0,6.060606,6.060606,0.0,-0.044785153 +234.6805191040039,0.0,6.060606,6.060606,0.0,-0.044785153 +234.68959498405457,0.0,6.060606,6.060606,0.0,-0.044785153 +234.70004606246948,0.0,6.060606,6.060606,0.0,-0.044785153 +234.71017599105835,0.0,5.3030305,5.3030305,0.0,-0.072535895 +234.71965098381042,0.0,5.3030305,5.3030305,0.0,-0.072535895 +234.72958612442017,0.0,5.3030305,5.3030305,0.0,-0.072535895 +234.73989391326904,0.0,5.3030305,5.3030305,0.0,-0.072535895 +234.74939703941345,0.0,5.3030305,5.3030305,0.0,-0.072535895 +234.7595820426941,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.77061009407043,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.77961802482605,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.79336500167847,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.79959511756897,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.81020593643188,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.81965899467468,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.82959699630737,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.83940505981445,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.84939193725586,0.0,5.3030305,5.3030305,0.0,-0.044785153 +234.86068606376648,0.0,5.3030305,5.3030305,0.0,-0.042935103 +234.86970496177673,0.0,5.3030305,5.3030305,0.0,-0.042935103 +234.88244199752808,0.0,5.3030305,5.3030305,0.0,-0.042935103 +234.89136910438538,0.0,5.3030305,5.3030305,0.0,-0.042935103 +234.90006494522095,0.0,5.3030305,5.3030305,0.0,-0.042935103 +234.90959310531616,0.0,5.3030305,5.3030305,0.0,-0.042935103 +234.91966605186462,0.0,5.3030305,5.3030305,0.0,-0.029984765 +234.9295871257782,0.0,5.3030305,5.3030305,0.0,-0.029984765 +234.93961095809937,0.0,5.3030305,5.3030305,0.0,-0.029984765 +234.94961404800415,0.0,5.3030305,5.3030305,0.0,-0.029984765 +234.95978212356567,0.0,5.3030305,5.3030305,0.0,-0.054035395 +234.9715530872345,0.0,5.3030305,5.3030305,0.0,-0.054035395 +234.9796380996704,0.0,5.3030305,5.3030305,0.0,-0.054035395 +234.9896080493927,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.00006008148193,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.00939011573792,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.01941108703613,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.0294280052185,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.0408661365509,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.0498571395874,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.05944991111755,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.06960201263428,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.08230590820312,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.08942914009094,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.09939002990723,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.10961294174194,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.12192296981812,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.12964701652527,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.13939714431763,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.14952397346497,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.15939807891846,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.1694049835205,0.0,6.060606,6.060606,0.0,-0.050335295 +235.18092012405396,0.0,6.060606,6.060606,0.0,-0.050335295 +235.18940591812134,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.1996340751648,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.20955300331116,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.21951413154602,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.22960901260376,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.2396080493927,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.2494180202484,0.0,5.3030305,5.3030305,0.0,-0.039235007 +235.2594039440155,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.2693989276886,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.27940893173218,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.2893979549408,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.29941701889038,0.0,5.3030305,5.3030305,0.0,-0.041085053 +235.30940008163452,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.31939911842346,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.32944893836975,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.33941102027893,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.34941411018372,0.0,5.3030305,5.3030305,0.0,-0.054035395 +235.35942101478577,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.36941504478455,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.37942099571228,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.38940811157227,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.39941000938416,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.40943002700806,0.0,5.3030305,5.3030305,0.0,-0.050335295 +235.4194369316101,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.4294149875641,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.43943309783936,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.44941592216492,0.0,5.3030305,5.3030305,0.0,-0.042935103 +235.4594190120697,0.0,6.060606,6.060606,0.0,-0.0577355 +235.46953511238098,0.0,6.060606,6.060606,0.0,-0.0577355 +235.47942996025085,0.0,6.060606,6.060606,0.0,-0.0577355 +235.4894299507141,0.0,6.060606,6.060606,0.0,-0.0577355 +235.49942708015442,0.0,6.060606,6.060606,0.0,-0.0577355 +235.50945401191711,0.0,6.060606,6.060606,0.0,-0.0577355 +235.51941800117493,0.0,6.060606,6.060606,0.0,-0.024434604 +235.52941608428955,0.0,6.060606,6.060606,0.0,-0.024434604 +235.53945207595825,0.0,6.060606,6.060606,0.0,-0.024434604 +235.54942893981934,0.0,6.060606,6.060606,0.0,-0.024434604 +235.55941700935364,0.0,6.060606,6.060606,0.0,-0.054035395 +235.56944012641907,0.0,6.060606,6.060606,0.0,-0.054035395 +235.5794379711151,0.0,6.060606,6.060606,0.0,-0.054035395 +235.58941507339478,0.0,6.060606,6.060606,0.0,-0.054035395 +235.59943914413452,0.0,6.060606,6.060606,0.0,-0.054035395 +235.6094241142273,0.0,6.060606,6.060606,0.0,-0.054035395 +235.61943006515503,0.0,6.060606,6.060606,0.0,-0.041085053 +235.62945294380188,0.0,6.060606,6.060606,0.0,-0.041085053 +235.63943004608154,0.0,6.060606,6.060606,0.0,-0.041085053 +235.64952301979065,0.0,6.060606,6.060606,0.0,-0.041085053 +235.6594500541687,0.0,6.060606,6.060606,0.0,-0.041085053 +235.66944408416748,0.0,6.060606,6.060606,0.0,-0.041085053 +235.6794469356537,0.0,6.060606,6.060606,0.0,-0.041085053 +235.68944811820984,0.0,6.060606,6.060606,0.0,-0.041085053 +235.69942808151245,0.0,6.060606,6.060606,0.0,-0.041085053 +235.70963597297668,0.0,6.060606,6.060606,0.0,-0.041085053 +235.7194471359253,0.0,6.060606,6.060606,0.0,-0.050335295 +235.72963213920593,0.0,6.060606,6.060606,0.0,-0.050335295 +235.7396399974823,0.0,6.060606,6.060606,0.0,-0.050335295 +235.74944305419922,0.0,6.060606,6.060606,0.0,-0.050335295 +235.7594690322876,0.0,6.060606,6.060606,0.0,-0.05588545 +235.76943802833557,0.0,6.060606,6.060606,0.0,-0.05588545 +235.779452085495,0.0,6.060606,6.060606,0.0,-0.05588545 +235.7894630432129,0.0,6.060606,6.060606,0.0,-0.05588545 +235.79944705963135,0.0,6.060606,6.060606,0.0,-0.05588545 +235.80944800376892,0.0,6.060606,6.060606,0.0,-0.05588545 +235.81947803497314,0.0,6.060606,6.060606,0.0,-0.0466352 +235.82946610450745,0.0,6.060606,6.060606,0.0,-0.0466352 +235.83959412574768,0.0,6.060606,6.060606,0.0,-0.0466352 +235.8494679927826,0.0,6.060606,6.060606,0.0,-0.0466352 +235.85945296287537,0.0,6.060606,6.060606,0.0,-0.0577355 +235.86945796012878,0.0,6.060606,6.060606,0.0,-0.0577355 +235.87945795059204,0.0,6.060606,6.060606,0.0,-0.0577355 +235.8896849155426,0.0,6.060606,6.060606,0.0,-0.0577355 +235.89946603775024,0.0,6.060606,6.060606,0.0,-0.0577355 +235.90947198867798,0.0,6.060606,6.060606,0.0,-0.0577355 +235.91946005821228,0.0,6.060606,6.060606,0.0,-0.07438594 +235.92944812774658,0.0,6.060606,6.060606,0.0,-0.07438594 +235.9394669532776,0.0,6.060606,6.060606,0.0,-0.07438594 +235.94944596290588,0.0,6.060606,6.060606,0.0,-0.07438594 +235.95946502685547,0.0,6.060606,6.060606,0.0,-0.039235007 +235.96956396102905,0.0,6.060606,6.060606,0.0,-0.039235007 +235.9794681072235,0.0,6.060606,6.060606,0.0,-0.039235007 +235.98947095870972,0.0,6.060606,6.060606,0.0,-0.039235007 +235.9995789527893,0.0,6.060606,6.060606,0.0,-0.039235007 +236.00946712493896,0.0,6.060606,6.060606,0.0,-0.044785153 +236.01946711540222,0.0,6.060606,6.060606,0.0,-0.044785153 +236.02946400642395,0.0,6.060606,6.060606,0.0,-0.044785153 +236.0394639968872,0.0,6.060606,6.060606,0.0,-0.044785153 +236.04946112632751,0.0,6.060606,6.060606,0.0,-0.044785153 +236.05954813957214,0.0,6.060606,6.060606,0.0,-0.044785153 +236.0694830417633,0.0,6.060606,6.060606,0.0,-0.044785153 +236.07948303222656,0.0,6.818182,6.818182,0.0,-0.044785153 +236.08946990966797,0.0,6.818182,6.818182,0.0,-0.044785153 +236.099543094635,0.0,6.818182,6.818182,0.0,-0.044785153 +236.10948991775513,0.0,6.818182,6.818182,0.0,-0.044785153 +236.11948204040527,0.0,6.818182,6.818182,0.0,-0.044785153 +236.12957096099854,0.0,6.818182,6.818182,0.0,-0.044785153 +236.13964414596558,0.0,6.818182,6.818182,0.0,-0.044785153 +236.14948797225952,0.0,6.060606,6.060606,0.0,-0.044785153 +236.1594910621643,0.0,6.060606,6.060606,0.0,-0.0466352 +236.16948914527893,0.0,6.818182,6.818182,0.0,-0.0466352 +236.1795060634613,0.0,6.818182,6.818182,0.0,-0.0466352 +236.18950200080872,0.0,6.818182,6.818182,0.0,-0.0466352 +236.19949293136597,0.0,6.818182,6.818182,0.0,-0.0466352 +236.20949697494507,0.0,6.060606,6.060606,0.0,-0.052185345 +236.21942806243896,0.0,6.060606,6.060606,0.0,-0.052185345 +236.2295229434967,0.0,6.060606,6.060606,0.0,-0.052185345 +236.2394940853119,0.0,6.060606,6.060606,0.0,-0.052185345 +236.24950003623962,0.0,6.060606,6.060606,0.0,-0.052185345 +236.25948905944824,0.0,6.060606,6.060606,0.0,-0.0466352 +236.2694890499115,0.0,6.818182,6.818182,0.0,-0.0466352 +236.27950596809387,0.0,6.818182,6.818182,0.0,-0.0466352 +236.28949213027954,0.0,6.818182,6.818182,0.0,-0.0466352 +236.2994830608368,0.0,6.818182,6.818182,0.0,-0.0466352 +236.3095121383667,0.0,6.818182,6.818182,0.0,-0.050335295 +236.31950306892395,0.0,6.818182,6.818182,0.0,-0.050335295 +236.32949495315552,0.0,6.818182,6.818182,0.0,-0.050335295 +236.33951592445374,0.0,6.818182,6.818182,0.0,-0.050335295 +236.34949398040771,0.0,6.818182,6.818182,0.0,-0.050335295 +236.3595631122589,0.0,6.818182,6.818182,0.0,-0.052185345 +236.3695170879364,0.0,6.818182,6.818182,0.0,-0.052185345 +236.37951493263245,0.0,6.818182,6.818182,0.0,-0.052185345 +236.38963103294373,0.0,6.818182,6.818182,0.0,-0.052185345 +236.39952397346497,0.0,6.818182,6.818182,0.0,-0.052185345 +236.40950298309326,0.0,6.818182,6.818182,0.0,-0.052185345 +236.41958808898926,0.0,6.818182,6.818182,0.0,-0.052185345 +236.4295220375061,0.0,6.818182,6.818182,0.0,-0.052185345 +236.4395170211792,0.0,6.818182,6.818182,0.0,-0.052185345 +236.44951605796814,0.0,6.818182,6.818182,0.0,-0.052185345 +236.45951008796692,0.0,6.818182,6.818182,0.0,-0.0466352 +236.4695179462433,0.0,6.818182,6.818182,0.0,-0.0466352 +236.47950911521912,0.0,6.060606,6.060606,0.0,-0.0466352 +236.48950791358948,0.0,6.060606,6.060606,0.0,-0.0466352 +236.4995141029358,0.0,6.060606,6.060606,0.0,-0.0466352 +236.50939202308655,0.0,6.060606,6.060606,0.0,-0.0466352 +236.51951599121094,0.0,6.060606,6.060606,0.0,-0.054035395 +236.52957606315613,0.0,6.060606,6.060606,0.0,-0.054035395 +236.53953909873962,0.0,6.060606,6.060606,0.0,-0.054035395 +236.54954409599304,0.0,6.060606,6.060606,0.0,-0.054035395 +236.55952095985413,0.0,6.060606,6.060606,0.0,-0.041085053 +236.56953811645508,0.0,6.060606,6.060606,0.0,-0.041085053 +236.5795259475708,0.0,6.060606,6.060606,0.0,-0.041085053 +236.58954000473022,0.0,6.060606,6.060606,0.0,-0.041085053 +236.59945797920227,0.0,6.060606,6.060606,0.0,-0.041085053 +236.6095221042633,0.0,6.060606,6.060606,0.0,-0.041085053 +236.6195409297943,0.0,6.060606,6.060606,0.0,-0.052185345 +236.62953209877014,0.0,6.060606,6.060606,0.0,-0.052185345 +236.63953804969788,0.0,6.060606,6.060606,0.0,-0.052185345 +236.64954805374146,0.0,6.060606,6.060606,0.0,-0.052185345 +236.65953993797302,0.0,6.060606,6.060606,0.0,-0.050335295 +236.669536113739,0.0,6.060606,6.060606,0.0,-0.050335295 +236.6795220375061,0.0,6.060606,6.060606,0.0,-0.050335295 +236.68951892852783,0.0,6.060606,6.060606,0.0,-0.050335295 +236.69955396652222,0.0,6.060606,6.060606,0.0,-0.050335295 +236.70952200889587,0.0,6.060606,6.060606,0.0,-0.050335295 +236.71954202651978,0.0,6.060606,6.060606,0.0,-0.0466352 +236.72956705093384,0.0,6.060606,6.060606,0.0,-0.0466352 +236.73953795433044,0.0,6.060606,6.060606,0.0,-0.0466352 +236.74953603744507,0.0,6.060606,6.060606,0.0,-0.0466352 +236.75953197479248,0.0,6.060606,6.060606,0.0,-0.039235007 +236.76954793930054,0.0,6.060606,6.060606,0.0,-0.039235007 +236.77956795692444,0.0,6.060606,6.060606,0.0,-0.039235007 +236.7895529270172,0.0,6.060606,6.060606,0.0,-0.039235007 +236.7995569705963,0.0,6.060606,6.060606,0.0,-0.039235007 +236.80952501296997,0.0,6.060606,6.060606,0.0,-0.039235007 +236.81953597068787,0.0,6.060606,6.060606,0.0,-0.0466352 +236.8295500278473,0.0,6.060606,6.060606,0.0,-0.0466352 +236.83953309059143,0.0,6.060606,6.060606,0.0,-0.0466352 +236.84955596923828,0.0,6.060606,6.060606,0.0,-0.0466352 +236.85954213142395,0.0,6.060606,6.060606,0.0,-0.039235007 +236.8695559501648,0.0,6.060606,6.060606,0.0,-0.039235007 +236.87953805923462,0.0,6.060606,6.060606,0.0,-0.039235007 +236.88955998420715,0.0,6.060606,6.060606,0.0,-0.039235007 +236.89944505691528,0.0,6.060606,6.060606,0.0,-0.039235007 +236.90958094596863,0.0,6.060606,6.060606,0.0,-0.039235007 +236.91955494880676,0.0,6.060606,6.060606,0.0,-0.044785153 +236.9294970035553,0.0,6.060606,6.060606,0.0,-0.044785153 +236.93954491615295,0.0,6.060606,6.060606,0.0,-0.044785153 +236.94955492019653,0.0,6.060606,6.060606,0.0,-0.044785153 +236.95957112312317,0.0,6.060606,6.060606,0.0,-0.042935103 +236.9694221019745,0.0,6.060606,6.060606,0.0,-0.042935103 +236.97957491874695,0.0,6.060606,6.060606,0.0,-0.042935103 +236.98954105377197,0.0,6.060606,6.060606,0.0,-0.042935103 +236.99958205223083,0.0,6.060606,6.060606,0.0,-0.042935103 +237.00956511497498,0.0,6.060606,6.060606,0.0,-0.042935103 +237.01956510543823,0.0,6.060606,6.060606,0.0,-0.054035395 +237.0295660495758,0.0,6.060606,6.060606,0.0,-0.054035395 +237.03942799568176,0.0,6.060606,6.060606,0.0,-0.054035395 +237.04955410957336,0.0,6.060606,6.060606,0.0,-0.054035395 +237.0595679283142,0.0,6.060606,6.060606,0.0,-0.050335295 +237.069571018219,0.0,6.060606,6.060606,0.0,-0.050335295 +237.07957911491394,0.0,6.060606,6.060606,0.0,-0.050335295 +237.0895700454712,0.0,6.060606,6.060606,0.0,-0.050335295 +237.09958410263062,0.0,6.060606,6.060606,0.0,-0.050335295 +237.1095781326294,0.0,6.060606,6.060606,0.0,-0.050335295 +237.11956191062927,0.0,6.060606,6.060606,0.0,-0.050335295 +237.12958097457886,0.0,6.060606,6.060606,0.0,-0.050335295 +237.1395800113678,0.0,6.060606,6.060606,0.0,-0.050335295 +237.14958691596985,0.0,6.060606,6.060606,0.0,-0.050335295 +237.15957498550415,0.0,6.060606,6.060606,0.0,-0.052185345 +237.1695830821991,0.0,6.060606,6.060606,0.0,-0.052185345 +237.1795151233673,0.0,6.060606,6.060606,0.0,-0.052185345 +237.1896140575409,0.0,6.060606,6.060606,0.0,-0.052185345 +237.19956302642822,0.0,6.060606,6.060606,0.0,-0.052185345 +237.20958995819092,0.0,6.060606,6.060606,0.0,-0.0466352 +237.2195749282837,0.0,6.060606,6.060606,0.0,-0.0466352 +237.22960114479065,0.0,6.060606,6.060606,0.0,-0.0466352 +237.23957204818726,0.0,6.060606,6.060606,0.0,-0.0466352 +237.2495801448822,0.0,6.060606,6.060606,0.0,-0.0466352 +237.2595911026001,0.0,6.060606,6.060606,0.0,-0.041085053 +237.2694981098175,0.0,6.060606,6.060606,0.0,-0.041085053 +237.27960300445557,0.0,6.060606,6.060606,0.0,-0.041085053 +237.28959798812866,0.0,6.060606,6.060606,0.0,-0.041085053 +237.299574136734,0.0,6.060606,6.060606,0.0,-0.041085053 +237.30959010124207,0.0,6.060606,6.060606,0.0,-0.041085053 +237.3196201324463,0.0,6.060606,6.060606,0.0,-0.041085053 +237.32958698272705,0.0,6.060606,6.060606,0.0,-0.041085053 +237.33959102630615,0.0,6.060606,6.060606,0.0,-0.041085053 +237.34958410263062,0.0,6.060606,6.060606,0.0,-0.041085053 +237.35948991775513,0.0,6.060606,6.060606,0.0,-0.039235007 +237.36941194534302,0.0,6.060606,6.060606,0.0,-0.039235007 +237.37958598136902,0.0,6.060606,6.060606,0.0,-0.039235007 +237.38959002494812,0.0,6.060606,6.060606,0.0,-0.039235007 +237.39960503578186,0.0,6.060606,6.060606,0.0,-0.039235007 +237.4096131324768,0.0,6.060606,6.060606,0.0,-0.039235007 +237.41961097717285,0.0,6.060606,6.060606,0.0,-0.020734508 +237.42960810661316,0.0,6.060606,6.060606,0.0,-0.020734508 +237.43961000442505,0.0,6.060606,6.060606,0.0,-0.020734508 +237.44963693618774,0.0,6.060606,6.060606,0.0,-0.020734508 +237.45962500572205,0.0,6.060606,6.060606,0.0,-0.0466352 +237.46959495544434,0.0,6.060606,6.060606,0.0,-0.0466352 +237.47959899902344,0.0,6.060606,6.060606,0.0,-0.0466352 +237.4896011352539,0.0,6.060606,6.060606,0.0,-0.0466352 +237.49941992759705,0.0,6.060606,6.060606,0.0,-0.0466352 +237.5096459388733,0.0,6.060606,6.060606,0.0,-0.0466352 +237.5196189880371,0.0,6.060606,6.060606,0.0,-0.033684865 +237.52962112426758,0.0,6.060606,6.060606,0.0,-0.033684865 +237.5394630432129,0.0,6.060606,6.060606,0.0,-0.033684865 +237.5496311187744,0.0,6.060606,6.060606,0.0,-0.033684865 +237.55962991714478,0.0,6.060606,6.060606,0.0,-0.0466352 +237.56966710090637,0.0,6.060606,6.060606,0.0,-0.0466352 +237.57961893081665,0.0,6.060606,6.060606,0.0,-0.0466352 +237.58964610099792,0.0,6.060606,6.060606,0.0,-0.0466352 +237.59947800636292,0.0,6.060606,6.060606,0.0,-0.0466352 +237.6096260547638,0.0,6.060606,6.060606,0.0,-0.0466352 +237.61964106559753,0.0,6.060606,6.060606,0.0,-0.0466352 +237.62946105003357,0.0,6.818182,6.818182,0.0,-0.0466352 +237.6396119594574,0.0,6.818182,6.818182,0.0,-0.0466352 +237.64961194992065,0.0,6.818182,6.818182,0.0,-0.0466352 +237.6596131324768,0.0,6.818182,6.818182,0.0,-0.050335295 +237.66966104507446,0.0,6.818182,6.818182,0.0,-0.050335295 +237.67962908744812,0.0,6.818182,6.818182,0.0,-0.050335295 +237.6896390914917,0.0,6.818182,6.818182,0.0,-0.050335295 +237.69962692260742,0.0,6.818182,6.818182,0.0,-0.050335295 +237.70962405204773,0.0,6.818182,6.818182,0.0,-0.050335295 +237.71941614151,0.0,6.818182,6.818182,0.0,-0.03553491 +237.72962093353271,0.0,6.818182,6.818182,0.0,-0.03553491 +237.73963904380798,0.0,6.818182,6.818182,0.0,-0.03553491 +237.74964809417725,0.0,6.818182,6.818182,0.0,-0.03553491 +237.75964403152466,0.0,6.818182,6.818182,0.0,-0.0466352 +237.76962614059448,0.0,6.818182,6.818182,0.0,-0.0466352 +237.77964210510254,0.0,6.818182,6.818182,0.0,-0.0466352 +237.78962206840515,0.0,6.818182,6.818182,0.0,-0.0466352 +237.7996380329132,0.0,6.818182,6.818182,0.0,-0.0466352 +237.8094379901886,0.0,6.818182,6.818182,0.0,-0.0466352 +237.8196210861206,0.0,6.818182,6.818182,0.0,-0.020734508 +237.82963395118713,0.0,6.818182,6.818182,0.0,-0.020734508 +237.83964014053345,0.0,6.818182,6.818182,0.0,-0.020734508 +237.8496401309967,0.0,6.818182,6.818182,0.0,-0.020734508 +237.85963797569275,0.0,6.818182,6.818182,0.0,-0.050335295 +237.86964011192322,0.0,6.818182,6.818182,0.0,-0.050335295 +237.8796410560608,0.0,6.818182,6.818182,0.0,-0.050335295 +237.88964104652405,0.0,6.818182,6.818182,0.0,-0.050335295 +237.89941000938416,0.0,6.818182,6.818182,0.0,-0.050335295 +237.90964698791504,0.0,6.818182,6.818182,0.0,-0.050335295 +237.91953492164612,0.0,6.818182,6.818182,0.0,-0.0577355 +237.9296679496765,0.0,6.818182,6.818182,0.0,-0.0577355 +237.93940591812134,0.0,6.818182,6.818182,0.0,-0.0577355 +237.94963812828064,0.0,6.818182,6.818182,0.0,-0.0577355 +237.959655046463,0.0,6.818182,6.818182,0.0,-0.00038397792 +237.96966409683228,0.0,6.818182,6.818182,0.0,-0.00038397792 +237.97964906692505,0.0,6.818182,6.818182,0.0,-0.00038397792 +237.98966908454895,0.0,6.818182,6.818182,0.0,-0.00038397792 +237.999666929245,0.0,6.818182,6.818182,0.0,-0.00038397792 +238.00966596603394,0.0,6.818182,6.818182,0.0,-0.00038397792 +238.01963901519775,0.0,6.818182,6.818182,0.0,-0.0466352 +238.02941799163818,0.0,6.818182,6.818182,0.0,-0.0466352 +238.0396900177002,0.0,6.818182,6.818182,0.0,-0.0466352 +238.04945492744446,0.0,6.818182,6.818182,0.0,-0.0466352 +238.05965495109558,0.0,6.818182,6.818182,0.0,-0.03553491 +238.06967091560364,0.0,6.818182,6.818182,0.0,-0.03553491 +238.07956504821777,0.0,6.818182,6.818182,0.0,-0.03553491 +238.08966612815857,0.0,6.818182,6.818182,0.0,-0.03553491 +238.09965896606445,0.0,6.818182,6.818182,0.0,-0.03553491 +238.10966610908508,0.0,6.818182,6.818182,0.0,-0.0466352 +238.11966395378113,0.0,6.818182,6.818182,0.0,-0.0466352 +238.12967205047607,0.0,6.818182,6.818182,0.0,-0.0466352 +238.1396849155426,0.0,6.818182,6.818182,0.0,-0.0466352 +238.1496560573578,0.0,6.818182,6.818182,0.0,-0.0466352 +238.15938901901245,0.0,6.818182,6.818182,0.0,-0.052185345 +238.16966104507446,0.0,6.818182,6.818182,0.0,-0.052185345 +238.17938995361328,0.0,6.818182,6.818182,0.0,-0.052185345 +238.18939995765686,0.0,6.818182,6.818182,0.0,-0.052185345 +238.19939708709717,0.0,6.818182,6.818182,0.0,-0.052185345 +238.20968914031982,0.0,6.818182,6.818182,0.0,-0.05588545 +238.21939611434937,0.0,6.818182,6.818182,0.0,-0.05588545 +238.22949314117432,0.0,6.818182,6.818182,0.0,-0.05588545 +238.2393970489502,0.0,6.818182,6.818182,0.0,-0.05588545 +238.24940013885498,0.0,6.818182,6.818182,0.0,-0.05588545 +238.25969004631042,0.0,6.818182,6.818182,0.0,-0.042935103 +238.26967310905457,0.0,6.818182,6.818182,0.0,-0.042935103 +238.27939796447754,0.0,6.818182,6.818182,0.0,-0.042935103 +238.28939414024353,0.0,6.818182,6.818182,0.0,-0.042935103 +238.29939198493958,0.0,6.818182,6.818182,0.0,-0.042935103 +238.30940413475037,0.0,6.818182,6.818182,0.0,-0.042935103 +238.31958198547363,0.0,6.818182,6.818182,0.0,-0.042935103 +238.3293969631195,0.0,6.818182,6.818182,0.0,-0.042935103 +238.3393909931183,0.0,6.818182,6.818182,0.0,-0.042935103 +238.34953713417053,0.0,6.818182,6.818182,0.0,-0.042935103 +238.3594081401825,0.0,6.818182,6.818182,0.0,-0.042935103 +238.36941194534302,0.0,6.818182,6.818182,0.0,-0.042935103 +238.3794059753418,0.0,6.818182,6.818182,0.0,-0.042935103 +238.38940596580505,0.0,6.818182,6.818182,0.0,-0.042935103 +238.39941692352295,0.0,6.818182,6.818182,0.0,-0.042935103 +238.40939593315125,0.0,6.818182,6.818182,0.0,-0.042935103 +238.41943192481995,0.0,6.818182,6.818182,0.0,-0.072535895 +238.42951202392578,0.0,6.818182,6.818182,0.0,-0.072535895 +238.43948602676392,0.0,6.818182,6.818182,0.0,-0.072535895 +238.44940304756165,0.0,6.818182,6.818182,0.0,-0.072535895 +238.45940399169922,0.0,6.818182,6.818182,0.0,-0.0577355 +238.4695689678192,0.0,6.818182,6.818182,0.0,-0.0577355 +238.47939896583557,0.0,6.818182,6.818182,0.0,-0.0577355 +238.489431142807,0.0,6.818182,6.818182,0.0,-0.0577355 +238.49941992759705,0.0,6.818182,6.818182,0.0,-0.0577355 +238.50951504707336,0.0,6.818182,6.818182,0.0,-0.0577355 +238.51939702033997,0.0,6.818182,6.818182,0.0,-0.029984765 +238.52942204475403,0.0,6.818182,6.818182,0.0,-0.029984765 +238.53941297531128,0.0,6.818182,6.818182,0.0,-0.029984765 +238.54942202568054,0.0,6.818182,6.818182,0.0,-0.029984765 +238.55942392349243,0.0,6.818182,6.818182,0.0,-0.041085053 +238.56940698623657,0.0,6.818182,6.818182,0.0,-0.041085053 +238.57944107055664,0.0,6.818182,6.818182,0.0,-0.041085053 +238.58942294120789,0.0,6.818182,6.818182,0.0,-0.041085053 +238.59960794448853,0.0,6.060606,6.060606,0.0,-0.041085053 +238.60942697525024,0.0,6.060606,6.060606,0.0,-0.041085053 +238.61948895454407,0.0,6.060606,6.060606,0.0,-0.06143559 +238.6294231414795,0.0,6.060606,6.060606,0.0,-0.06143559 +238.63944697380066,0.0,6.060606,6.060606,0.0,-0.06143559 +238.64942908287048,0.0,6.060606,6.060606,0.0,-0.06143559 +238.6594479084015,0.0,6.060606,6.060606,0.0,-0.0466352 +238.669429063797,0.0,6.060606,6.060606,0.0,-0.0466352 +238.67945098876953,0.0,6.060606,6.060606,0.0,-0.0466352 +238.68942713737488,0.0,6.060606,6.060606,0.0,-0.0466352 +238.6994469165802,0.0,6.060606,6.060606,0.0,-0.0466352 +238.70942997932434,0.0,6.060606,6.060606,0.0,-0.0466352 +238.71943593025208,0.0,6.060606,6.060606,0.0,-0.06698574 +238.72944808006287,0.0,6.060606,6.060606,0.0,-0.06698574 +238.7394299507141,0.0,6.060606,6.060606,0.0,-0.06698574 +238.74944400787354,0.0,6.060606,6.060606,0.0,-0.06698574 +238.7594439983368,0.0,6.060606,6.060606,0.0,-0.042935103 +238.76942801475525,0.0,6.060606,6.060606,0.0,-0.042935103 +238.77943205833435,0.0,6.060606,6.060606,0.0,-0.042935103 +238.7894320487976,0.0,6.060606,6.060606,0.0,-0.042935103 +238.7994360923767,0.0,6.060606,6.060606,0.0,-0.042935103 +238.80944299697876,0.0,6.060606,6.060606,0.0,-0.042935103 +238.8194899559021,0.0,6.060606,6.060606,0.0,-0.0466352 +238.82944512367249,0.0,6.060606,6.060606,0.0,-0.0466352 +238.839448928833,0.0,6.060606,6.060606,0.0,-0.0466352 +238.84944891929626,0.0,6.060606,6.060606,0.0,-0.0466352 +238.85944294929504,0.0,6.060606,6.060606,0.0,-0.05588545 +238.8694441318512,0.0,6.060606,6.060606,0.0,-0.05588545 +238.87945294380188,0.0,6.060606,6.060606,0.0,-0.05588545 +238.88944911956787,0.0,6.060606,6.060606,0.0,-0.05588545 +238.8994550704956,0.0,6.060606,6.060606,0.0,-0.05588545 +238.90945196151733,0.0,6.060606,6.060606,0.0,-0.05588545 +238.91965293884277,0.0,6.060606,6.060606,0.0,-0.0466352 +238.92963314056396,0.0,6.060606,6.060606,0.0,-0.0466352 +238.93946313858032,0.0,6.060606,6.060606,0.0,-0.0466352 +238.94945001602173,0.0,6.060606,6.060606,0.0,-0.0466352 +238.95944809913635,0.0,6.060606,6.060606,0.0,-0.042935103 +238.96958708763123,0.0,6.060606,6.060606,0.0,-0.042935103 +238.9794590473175,0.0,6.060606,6.060606,0.0,-0.042935103 +238.9894459247589,0.0,6.060606,6.060606,0.0,-0.042935103 +238.9995551109314,0.0,6.060606,6.060606,0.0,-0.042935103 +239.00945591926575,0.0,6.060606,6.060606,0.0,-0.042935103 +239.01945900917053,0.0,6.060606,6.060606,0.0,-0.0577355 +239.02945709228516,0.0,6.060606,6.060606,0.0,-0.0577355 +239.03947591781616,0.0,6.060606,6.060606,0.0,-0.0577355 +239.04946398735046,0.0,6.060606,6.060606,0.0,-0.0577355 +239.05947995185852,0.0,6.060606,6.060606,0.0,-0.042935103 +239.06947112083435,0.0,6.060606,6.060606,0.0,-0.042935103 +239.07946300506592,0.0,6.060606,6.060606,0.0,-0.042935103 +239.08946108818054,0.0,6.060606,6.060606,0.0,-0.042935103 +239.09946203231812,0.0,6.060606,6.060606,0.0,-0.042935103 +239.10946106910706,0.0,6.060606,6.060606,0.0,-0.041085053 +239.11948895454407,0.0,6.060606,6.060606,0.0,-0.041085053 +239.12948203086853,0.0,6.060606,6.060606,0.0,-0.041085053 +239.13949298858643,0.0,6.060606,6.060606,0.0,-0.041085053 +239.14947199821472,0.0,6.060606,6.060606,0.0,-0.041085053 +239.15948009490967,0.0,6.060606,6.060606,0.0,-0.033684865 +239.16946697235107,0.0,6.060606,6.060606,0.0,-0.033684865 +239.17948007583618,0.0,6.060606,6.060606,0.0,-0.033684865 +239.1894850730896,0.0,6.060606,6.060606,0.0,-0.033684865 +239.1994869709015,0.0,6.060606,6.060606,0.0,-0.033684865 +239.20948696136475,0.0,6.060606,6.060606,0.0,-0.039235007 +239.21947693824768,0.0,6.060606,6.060606,0.0,-0.039235007 +239.22948098182678,0.0,6.060606,6.060606,0.0,-0.039235007 +239.23948192596436,0.0,6.060606,6.060606,0.0,-0.039235007 +239.24946308135986,0.0,6.060606,6.060606,0.0,-0.039235007 +239.25950598716736,0.0,6.060606,6.060606,0.0,-0.052185345 +239.26947498321533,0.0,6.060606,6.060606,0.0,-0.052185345 +239.27948713302612,0.0,6.060606,6.060606,0.0,-0.052185345 +239.28947591781616,0.0,6.060606,6.060606,0.0,-0.052185345 +239.29949402809143,0.0,6.060606,6.060606,0.0,-0.052185345 +239.309494972229,0.0,6.060606,6.060606,0.0,-0.03553491 +239.31949710845947,0.0,6.060606,6.060606,0.0,-0.03553491 +239.32965993881226,0.0,6.060606,6.060606,0.0,-0.03553491 +239.339497089386,0.0,6.060606,6.060606,0.0,-0.03553491 +239.3495011329651,0.0,6.060606,6.060606,0.0,-0.03553491 +239.35950708389282,0.0,6.060606,6.060606,0.0,-0.05588545 +239.36948800086975,0.0,6.060606,6.060606,0.0,-0.05588545 +239.37949299812317,0.0,6.060606,6.060606,0.0,-0.05588545 +239.38949394226074,0.0,6.060606,6.060606,0.0,-0.05588545 +239.39948797225952,0.0,6.060606,6.060606,0.0,-0.05588545 +239.40949702262878,0.0,6.060606,6.060606,0.0,-0.039235007 +239.4195110797882,0.0,6.060606,6.060606,0.0,-0.039235007 +239.42950201034546,0.0,6.060606,6.060606,0.0,-0.039235007 +239.4394919872284,0.0,6.060606,6.060606,0.0,-0.039235007 +239.44948506355286,0.0,6.060606,6.060606,0.0,-0.039235007 +239.45950198173523,0.0,6.060606,6.060606,0.0,-0.0577355 +239.4695019721985,0.0,6.818182,6.818182,0.0,-0.0577355 +239.47951698303223,0.0,6.818182,6.818182,0.0,-0.0577355 +239.48953700065613,0.0,6.818182,6.818182,0.0,-0.0577355 +239.49951195716858,0.0,6.818182,6.818182,0.0,-0.0577355 +239.50962495803833,0.0,6.818182,6.818182,0.0,-0.0577355 +239.51950192451477,0.0,6.818182,6.818182,0.0,-0.042935103 +239.52956795692444,0.0,6.818182,6.818182,0.0,-0.042935103 +239.53951406478882,0.0,6.818182,6.818182,0.0,-0.042935103 +239.54950714111328,0.0,6.818182,6.818182,0.0,-0.042935103 +239.5595200061798,0.0,6.818182,6.818182,0.0,-0.050335295 +239.56952214241028,0.0,6.818182,6.818182,0.0,-0.050335295 +239.579519033432,0.0,6.818182,6.818182,0.0,-0.050335295 +239.58952403068542,0.0,6.818182,6.818182,0.0,-0.050335295 +239.59941697120667,0.0,6.818182,6.818182,0.0,-0.050335295 +239.60946393013,0.0,6.818182,6.818182,0.0,-0.050335295 +239.61967206001282,0.0,6.818182,6.818182,0.0,-0.042935103 +239.62951493263245,0.0,6.818182,6.818182,0.0,-0.042935103 +239.63952612876892,0.0,6.818182,6.818182,0.0,-0.042935103 +239.64951300621033,0.0,6.818182,6.818182,0.0,-0.042935103 +239.6595060825348,0.0,6.818182,6.818182,0.0,-0.039235007 +239.6695249080658,0.0,6.818182,6.818182,0.0,-0.039235007 +239.67968606948853,0.0,6.818182,6.818182,0.0,-0.039235007 +239.68953013420105,0.0,6.818182,6.818182,0.0,-0.039235007 +239.69952201843262,0.0,6.818182,6.818182,0.0,-0.039235007 +239.70952796936035,0.0,6.818182,6.818182,0.0,-0.039235007 +239.71953296661377,0.0,6.818182,6.818182,0.0,-0.05588545 +239.72953009605408,0.0,6.818182,6.818182,0.0,-0.05588545 +239.7394199371338,0.0,6.818182,6.818182,0.0,-0.05588545 +239.74953508377075,0.0,6.818182,6.818182,0.0,-0.05588545 +239.75954413414001,0.0,6.818182,6.818182,0.0,-0.0466352 +239.7695291042328,0.0,6.818182,6.818182,0.0,-0.0466352 +239.7795329093933,0.0,6.818182,6.818182,0.0,-0.0466352 +239.7895269393921,0.0,6.818182,6.818182,0.0,-0.0466352 +239.7995150089264,0.0,6.818182,6.818182,0.0,-0.0466352 +239.80953097343445,0.0,6.818182,6.818182,0.0,-0.0466352 +239.8196840286255,0.0,6.818182,6.818182,0.0,-0.052185345 +239.82953906059265,0.0,6.818182,6.818182,0.0,-0.052185345 +239.8395459651947,0.0,6.818182,6.818182,0.0,-0.052185345 +239.84954690933228,0.0,6.818182,6.818182,0.0,-0.052185345 +239.85954999923706,0.0,6.818182,6.818182,0.0,-0.041085053 +239.8696150779724,0.0,6.818182,6.818182,0.0,-0.041085053 +239.8795359134674,0.0,6.818182,6.818182,0.0,-0.041085053 +239.88955402374268,0.0,6.818182,6.818182,0.0,-0.041085053 +239.8995349407196,0.0,6.818182,6.818182,0.0,-0.041085053 +239.9095549583435,0.0,6.818182,6.818182,0.0,-0.041085053 +239.91954708099365,0.0,6.818182,6.818182,0.0,-0.044785153 +239.9295301437378,0.0,6.818182,6.818182,0.0,-0.044785153 +239.9395411014557,0.0,6.818182,6.818182,0.0,-0.044785153 +239.94954895973206,0.0,6.818182,6.818182,0.0,-0.044785153 +239.9595329761505,0.0,6.818182,6.818182,0.0,-0.054035395 +239.96939706802368,0.0,6.818182,6.818182,0.0,-0.054035395 +239.97955107688904,0.0,6.818182,6.818182,0.0,-0.054035395 +239.98953890800476,0.0,6.818182,6.818182,0.0,-0.054035395 +239.99957394599915,0.0,6.818182,6.818182,0.0,-0.054035395 +240.00955295562744,0.0,6.818182,6.818182,0.0,-0.054035395 +240.01956391334534,0.0,6.818182,6.818182,0.0,-0.041085053 +240.02954292297363,0.0,6.818182,6.818182,0.0,-0.041085053 +240.03955507278442,0.0,6.818182,6.818182,0.0,-0.041085053 +240.04956603050232,0.0,6.818182,6.818182,0.0,-0.041085053 +240.0595850944519,0.0,6.818182,6.818182,0.0,-0.05588545 +240.06955099105835,0.0,6.818182,6.818182,0.0,-0.05588545 +240.0795500278473,0.0,6.818182,6.818182,0.0,-0.05588545 +240.08955907821655,0.0,6.818182,6.818182,0.0,-0.05588545 +240.09956407546997,0.0,6.818182,6.818182,0.0,-0.05588545 +240.10955905914307,0.0,6.818182,6.818182,0.0,-0.052185345 +240.1195571422577,0.0,6.818182,6.818182,0.0,-0.052185345 +240.12956500053406,0.0,6.818182,6.818182,0.0,-0.052185345 +240.1395721435547,0.0,6.818182,6.818182,0.0,-0.052185345 +240.1496651172638,0.0,6.818182,6.818182,0.0,-0.052185345 +240.15955591201782,0.0,6.818182,6.818182,0.0,-0.05588545 +240.16956496238708,0.0,6.818182,6.818182,0.0,-0.05588545 +240.17956805229187,0.0,6.818182,6.818182,0.0,-0.05588545 +240.18957996368408,0.0,6.818182,6.818182,0.0,-0.05588545 +240.19958305358887,0.0,6.818182,6.818182,0.0,-0.05588545 +240.2094850540161,0.0,6.818182,6.818182,0.0,-0.041085053 +240.21957302093506,0.0,6.818182,6.818182,0.0,-0.041085053 +240.22957611083984,0.0,6.818182,6.818182,0.0,-0.041085053 +240.23958110809326,0.0,6.818182,6.818182,0.0,-0.041085053 +240.2495949268341,0.0,6.818182,6.818182,0.0,-0.041085053 +240.2595751285553,0.0,6.818182,6.818182,0.0,-0.041085053 +240.26956796646118,0.0,6.818182,6.818182,0.0,-0.041085053 +240.2795729637146,0.0,6.818182,6.818182,0.0,-0.041085053 +240.2896010875702,0.0,6.818182,6.818182,0.0,-0.041085053 +240.29958605766296,0.0,6.818182,6.818182,0.0,-0.041085053 +240.30940198898315,0.0,6.818182,6.818182,0.0,-0.05588545 +240.31960105895996,0.0,6.818182,6.818182,0.0,-0.05588545 +240.3294961452484,0.0,6.818182,6.818182,0.0,-0.05588545 +240.33958292007446,0.0,6.818182,6.818182,0.0,-0.05588545 +240.3495810031891,0.0,6.818182,6.818182,0.0,-0.05588545 +240.35938811302185,0.0,6.818182,6.818182,0.0,-0.072535895 +240.3695991039276,0.0,6.818182,6.818182,0.0,-0.072535895 +240.37959098815918,0.0,6.818182,6.818182,0.0,-0.072535895 +240.3895890712738,0.0,6.818182,6.818182,0.0,-0.072535895 +240.39958095550537,0.0,6.818182,6.818182,0.0,-0.072535895 +240.4094910621643,0.0,6.818182,6.818182,0.0,-0.0577355 +240.4196059703827,0.0,6.818182,6.818182,0.0,-0.0577355 +240.42961812019348,0.0,6.818182,6.818182,0.0,-0.0577355 +240.43959593772888,0.0,6.818182,6.818182,0.0,-0.0577355 +240.44959712028503,0.0,6.818182,6.818182,0.0,-0.0577355 +240.45960593223572,0.0,6.818182,6.818182,0.0,-0.042935103 +240.46960711479187,0.0,6.818182,6.818182,0.0,-0.042935103 +240.47962093353271,0.0,6.818182,6.818182,0.0,-0.042935103 +240.48960995674133,0.0,6.818182,6.818182,0.0,-0.042935103 +240.49942111968994,0.0,6.818182,6.818182,0.0,-0.042935103 +240.5096080303192,0.0,6.818182,6.818182,0.0,-0.042935103 +240.5196189880371,0.0,6.818182,6.818182,0.0,-0.06513569 +240.52960014343262,0.0,6.818182,6.818182,0.0,-0.06513569 +240.53961610794067,0.0,6.818182,6.818182,0.0,-0.06513569 +240.5495970249176,0.0,6.818182,6.818182,0.0,-0.06513569 +240.55960202217102,0.0,6.818182,6.818182,0.0,-0.050335295 +240.56959295272827,0.0,6.818182,6.818182,0.0,-0.050335295 +240.5796000957489,0.0,6.818182,6.818182,0.0,-0.050335295 +240.5894799232483,0.0,6.818182,6.818182,0.0,-0.050335295 +240.59966802597046,0.0,6.818182,6.818182,0.0,-0.050335295 +240.6095941066742,0.0,6.818182,6.818182,0.0,-0.050335295 +240.61960697174072,0.0,6.818182,6.818182,0.0,-0.050335295 +240.62961506843567,0.0,6.818182,6.818182,0.0,-0.050335295 +240.63959908485413,0.0,6.818182,6.818182,0.0,-0.050335295 +240.64962697029114,0.0,6.818182,6.818182,0.0,-0.050335295 +240.65961408615112,0.0,6.818182,6.818182,0.0,-0.050335295 +240.66962695121765,0.0,6.818182,6.818182,0.0,-0.050335295 +240.67941093444824,0.0,6.818182,6.818182,0.0,-0.050335295 +240.6894600391388,0.0,6.818182,6.818182,0.0,-0.050335295 +240.6996190547943,0.0,6.818182,6.818182,0.0,-0.050335295 +240.70961499214172,0.0,6.818182,6.818182,0.0,-0.050335295 +240.71963596343994,0.0,6.818182,6.818182,0.0,-0.050335295 +240.72961497306824,0.0,6.818182,6.818182,0.0,-0.050335295 +240.73963499069214,0.0,6.818182,6.818182,0.0,-0.050335295 +240.74961495399475,0.0,6.818182,6.818182,0.0,-0.050335295 +240.7596390247345,0.0,6.818182,6.818182,0.0,-0.042935103 +240.76940894126892,0.0,6.818182,6.818182,0.0,-0.042935103 +240.77952003479004,0.0,6.818182,6.818182,0.0,-0.042935103 +240.7896330356598,0.0,6.060606,6.060606,0.0,-0.042935103 +240.79955196380615,0.0,6.060606,6.060606,0.0,-0.042935103 +240.8096420764923,0.0,6.060606,6.060606,0.0,-0.042935103 +240.8196210861206,0.0,6.060606,6.060606,0.0,-0.0466352 +240.8296389579773,0.0,6.060606,6.060606,0.0,-0.0466352 +240.8396430015564,0.0,6.060606,6.060606,0.0,-0.0466352 +240.84964513778687,0.0,6.060606,6.060606,0.0,-0.0466352 +240.8595221042633,0.0,6.060606,6.060606,0.0,-0.042935103 +240.86962604522705,0.0,6.060606,6.060606,0.0,-0.042935103 +240.87963104248047,0.0,6.060606,6.060606,0.0,-0.042935103 +240.8896200656891,0.0,6.060606,6.060606,0.0,-0.042935103 +240.89964509010315,0.0,6.060606,6.060606,0.0,-0.042935103 +240.90964198112488,0.0,6.060606,6.060606,0.0,-0.042935103 +240.9196400642395,0.0,6.060606,6.060606,0.0,-0.042935103 +240.92964100837708,0.0,6.060606,6.060606,0.0,-0.042935103 +240.9396460056305,0.0,6.060606,6.060606,0.0,-0.042935103 +240.94951105117798,0.0,6.060606,6.060606,0.0,-0.042935103 +240.95963597297668,0.0,6.060606,6.060606,0.0,-0.052185345 +240.96966195106506,0.0,6.060606,6.060606,0.0,-0.052185345 +240.9796440601349,0.0,6.060606,6.060606,0.0,-0.052185345 +240.98964500427246,0.0,6.060606,6.060606,0.0,-0.052185345 +240.9996600151062,0.0,6.060606,6.060606,0.0,-0.052185345 +241.00963711738586,0.0,6.060606,6.060606,0.0,-0.052185345 +241.01963710784912,0.0,6.060606,6.060606,0.0,-0.044785153 +241.02945613861084,0.0,6.060606,6.060606,0.0,-0.044785153 +241.03963994979858,0.0,6.060606,6.060606,0.0,-0.044785153 +241.04964900016785,0.0,6.060606,6.060606,0.0,-0.044785153 +241.0594139099121,0.0,6.060606,6.060606,0.0,-0.050335295 +241.06965899467468,0.0,6.060606,6.060606,0.0,-0.050335295 +241.0796480178833,0.0,6.060606,6.060606,0.0,-0.050335295 +241.0896589756012,0.0,6.060606,6.060606,0.0,-0.050335295 +241.0995581150055,0.0,6.060606,6.060606,0.0,-0.050335295 +241.1096739768982,0.0,6.060606,6.060606,0.0,-0.044785153 +241.11965203285217,0.0,6.060606,6.060606,0.0,-0.044785153 +241.12942910194397,0.0,6.060606,6.060606,0.0,-0.044785153 +241.13964796066284,0.0,6.060606,6.060606,0.0,-0.044785153 +241.14968299865723,0.0,6.060606,6.060606,0.0,-0.044785153 +241.15967106819153,0.0,6.060606,6.060606,0.0,-0.042935103 +241.1696479320526,0.0,6.060606,6.060606,0.0,-0.042935103 +241.17967104911804,0.0,6.060606,6.060606,0.0,-0.042935103 +241.1896140575409,0.0,6.060606,6.060606,0.0,-0.042935103 +241.19966793060303,0.0,6.060606,6.060606,0.0,-0.042935103 +241.20940899848938,0.0,6.060606,6.060606,0.0,-0.03183481 +241.21942591667175,0.0,6.060606,6.060606,0.0,-0.03183481 +241.22950410842896,0.0,6.060606,6.060606,0.0,-0.03183481 +241.23966312408447,0.0,6.060606,6.060606,0.0,-0.03183481 +241.24967908859253,0.0,6.060606,6.060606,0.0,-0.03183481 +241.25967597961426,0.0,6.060606,6.060606,0.0,-0.050335295 +241.26966404914856,0.0,6.060606,6.060606,0.0,-0.050335295 +241.27966904640198,0.0,6.060606,6.060606,0.0,-0.050335295 +241.28960514068604,0.0,6.060606,6.060606,0.0,-0.050335295 +241.29948592185974,0.0,6.060606,6.060606,0.0,-0.050335295 +241.3096649646759,0.0,6.060606,6.060606,0.0,-0.052185345 +241.31969213485718,0.0,6.060606,6.060606,0.0,-0.052185345 +241.32966804504395,0.0,6.060606,6.060606,0.0,-0.052185345 +241.339693069458,0.0,6.060606,6.060606,0.0,-0.052185345 +241.349671125412,0.0,6.060606,6.060606,0.0,-0.052185345 +241.35940408706665,0.0,6.060606,6.060606,0.0,-0.039235007 +241.36969304084778,0.0,6.060606,6.060606,0.0,-0.039235007 +241.37969207763672,0.0,6.060606,6.060606,0.0,-0.039235007 +241.3896770477295,0.0,6.060606,6.060606,0.0,-0.039235007 +241.3996810913086,0.0,6.060606,6.060606,0.0,-0.039235007 +241.40967893600464,0.0,6.060606,6.060606,0.0,-0.0466352 +241.41969799995422,0.0,6.060606,6.060606,0.0,-0.0466352 +241.4296851158142,0.0,6.060606,6.060606,0.0,-0.0466352 +241.4396951198578,0.0,6.060606,6.060606,0.0,-0.0466352 +241.4496729373932,0.0,6.060606,6.060606,0.0,-0.0466352 +241.45968103408813,0.0,6.060606,6.060606,0.0,-0.0466352 +241.46969604492188,0.0,6.060606,6.060606,0.0,-0.0466352 +241.47968912124634,0.0,6.060606,6.060606,0.0,-0.0466352 +241.489431142807,0.0,6.060606,6.060606,0.0,-0.0466352 +241.49968194961548,0.0,6.818182,6.818182,0.0,-0.0466352 +241.5096950531006,0.0,6.818182,6.818182,0.0,-0.0466352 +241.51970291137695,0.0,6.818182,6.818182,0.0,-0.050335295 +241.52968096733093,0.0,6.818182,6.818182,0.0,-0.050335295 +241.53963804244995,0.0,6.818182,6.818182,0.0,-0.050335295 +241.54968905448914,0.0,6.818182,6.818182,0.0,-0.050335295 +241.55955910682678,0.0,6.818182,6.818182,0.0,-0.17428859 +241.5696940422058,0.0,6.818182,6.818182,0.0,-0.17428859 +241.5796959400177,0.0,6.818182,6.818182,0.0,-0.17428859 +241.58970093727112,0.0,6.818182,6.818182,0.0,-0.17428859 +241.59940695762634,0.0,6.818182,6.818182,0.0,-0.17428859 +241.60971808433533,0.0,6.818182,6.818182,0.0,-0.17428859 +241.61946392059326,0.0,6.818182,6.818182,0.0,-0.050335295 +241.62969994544983,0.0,6.818182,6.818182,0.0,-0.050335295 +241.63968706130981,0.0,6.818182,6.818182,0.0,-0.050335295 +241.64941000938416,0.0,6.818182,6.818182,0.0,-0.050335295 +241.6597080230713,0.0,6.818182,6.818182,0.0,-0.052185345 +241.66971111297607,0.0,6.818182,6.818182,0.0,-0.052185345 +241.67969703674316,0.0,6.818182,6.818182,0.0,-0.052185345 +241.68969798088074,0.0,6.818182,6.818182,0.0,-0.052185345 +241.69947504997253,0.0,6.818182,6.818182,0.0,-0.052185345 +241.70971608161926,0.0,6.818182,6.818182,0.0,-0.052185345 +241.71969604492188,0.0,6.818182,6.818182,0.0,-0.044785153 +241.7297101020813,0.0,6.818182,6.818182,0.0,-0.044785153 +241.73970007896423,0.0,6.818182,6.818182,0.0,-0.044785153 +241.74972200393677,0.0,6.818182,6.818182,0.0,-0.044785153 +241.75970602035522,0.0,6.818182,6.818182,0.0,-0.054035395 +241.76969695091248,0.0,6.818182,6.818182,0.0,-0.054035395 +241.7797019481659,0.0,6.818182,6.818182,0.0,-0.054035395 +241.789715051651,0.0,6.818182,6.818182,0.0,-0.054035395 +241.79973006248474,0.0,6.818182,6.818182,0.0,-0.054035395 +241.8097140789032,0.0,6.818182,6.818182,0.0,-0.054035395 +241.81973099708557,0.0,6.818182,6.818182,0.0,-0.06513569 +241.8297290802002,0.0,6.818182,6.818182,0.0,-0.06513569 +241.83963894844055,0.0,6.818182,6.818182,0.0,-0.06513569 +241.84973096847534,0.0,6.818182,6.818182,0.0,-0.06513569 +241.85971999168396,0.0,6.818182,6.818182,0.0,-0.024434604 +241.86973404884338,0.0,6.818182,6.818182,0.0,-0.024434604 +241.87971711158752,0.0,6.818182,6.818182,0.0,-0.024434604 +241.88973212242126,0.0,6.818182,6.818182,0.0,-0.024434604 +241.89973497390747,0.0,6.818182,6.818182,0.0,-0.024434604 +241.9097399711609,0.0,6.818182,6.818182,0.0,-0.024434604 +241.91973114013672,0.0,6.818182,6.818182,0.0,-0.050335295 +241.9297170639038,0.0,6.818182,6.818182,0.0,-0.050335295 +241.9397280216217,0.0,6.818182,6.818182,0.0,-0.050335295 +241.9497299194336,0.0,6.818182,6.818182,0.0,-0.050335295 +241.95941996574402,0.0,6.818182,6.818182,0.0,-0.042935103 +241.96973514556885,0.0,6.818182,6.818182,0.0,-0.042935103 +241.9797260761261,0.0,6.818182,6.818182,0.0,-0.042935103 +241.98974800109863,0.0,6.818182,6.818182,0.0,-0.042935103 +241.9997320175171,0.0,6.818182,6.818182,0.0,-0.042935103 +242.0097451210022,0.0,6.818182,6.818182,0.0,-0.042935103 +242.0197410583496,0.0,6.818182,6.818182,0.0,-0.0466352 +242.02974390983582,0.0,6.818182,6.818182,0.0,-0.0466352 +242.0397400856018,0.0,6.818182,6.818182,0.0,-0.0466352 +242.04947900772095,0.0,6.818182,6.818182,0.0,-0.0466352 +242.0597379207611,0.0,6.818182,6.818182,0.0,-0.044785153 +242.0697319507599,0.0,6.818182,6.818182,0.0,-0.044785153 +242.0797619819641,0.0,6.818182,6.818182,0.0,-0.044785153 +242.08965802192688,0.0,6.818182,6.818182,0.0,-0.044785153 +242.09974598884583,0.0,6.818182,6.818182,0.0,-0.044785153 +242.10974597930908,0.0,6.818182,6.818182,0.0,-0.039235007 +242.11973690986633,0.0,6.818182,6.818182,0.0,-0.039235007 +242.12973308563232,0.0,6.818182,6.818182,0.0,-0.039235007 +242.13951706886292,0.0,6.818182,6.818182,0.0,-0.039235007 +242.149747133255,0.0,6.818182,6.818182,0.0,-0.039235007 +242.159765958786,0.0,6.818182,6.818182,0.0,-0.0466352 +242.1697609424591,0.0,6.818182,6.818182,0.0,-0.0466352 +242.1795289516449,0.0,6.818182,6.818182,0.0,-0.0466352 +242.18948793411255,0.0,6.818182,6.818182,0.0,-0.0466352 +242.19976711273193,0.0,6.818182,6.818182,0.0,-0.0466352 +242.20974802970886,0.0,6.818182,6.818182,0.0,-0.042935103 +242.21973991394043,0.0,6.818182,6.818182,0.0,-0.042935103 +242.2295651435852,0.0,6.818182,6.818182,0.0,-0.042935103 +242.2397530078888,0.0,6.818182,6.818182,0.0,-0.042935103 +242.24977111816406,0.0,6.818182,6.818182,0.0,-0.042935103 +242.25975108146667,0.0,6.818182,6.818182,0.0,-0.044785153 +242.2693920135498,0.0,6.818182,6.818182,0.0,-0.044785153 +242.27977395057678,0.0,6.818182,6.818182,0.0,-0.044785153 +242.28976202011108,0.0,6.818182,6.818182,0.0,-0.044785153 +242.2997510433197,0.0,6.818182,6.818182,0.0,-0.044785153 +242.30975699424744,0.0,6.818182,6.818182,0.0,-0.042935103 +242.31963896751404,0.0,6.818182,6.818182,0.0,-0.042935103 +242.32975006103516,0.0,6.818182,6.818182,0.0,-0.042935103 +242.33947706222534,0.0,6.818182,6.818182,0.0,-0.042935103 +242.34977197647095,0.0,6.818182,6.818182,0.0,-0.042935103 +242.3597650527954,0.0,6.818182,6.818182,0.0,-0.054035395 +242.36954402923584,0.0,6.818182,6.818182,0.0,-0.054035395 +242.3797779083252,0.0,6.818182,6.818182,0.0,-0.054035395 +242.3897840976715,0.0,6.818182,6.818182,0.0,-0.054035395 +242.39978408813477,0.0,6.818182,6.818182,0.0,-0.054035395 +242.40969395637512,0.0,7.575758,7.575758,0.0,-0.06143559 +242.419762134552,0.0,7.575758,7.575758,0.0,-0.06143559 +242.4295470714569,0.0,7.575758,7.575758,0.0,-0.06143559 +242.4397840499878,0.0,6.818182,6.818182,0.0,-0.06143559 +242.44977402687073,0.0,6.818182,6.818182,0.0,-0.06143559 +242.45954513549805,0.0,6.818182,6.818182,0.0,-0.052185345 +242.46977305412292,0.0,6.818182,6.818182,0.0,-0.052185345 +242.4797821044922,0.0,6.818182,6.818182,0.0,-0.052185345 +242.48978805541992,0.0,6.818182,6.818182,0.0,-0.052185345 +242.4997959136963,0.0,6.818182,6.818182,0.0,-0.052185345 +242.50979804992676,0.0,6.818182,6.818182,0.0,-0.052185345 +242.51963210105896,0.0,6.818182,6.818182,0.0,-0.041085053 +242.52967596054077,0.0,6.818182,6.818182,0.0,-0.041085053 +242.53980493545532,0.0,6.818182,6.818182,0.0,-0.041085053 +242.54978799819946,0.0,6.818182,6.818182,0.0,-0.041085053 +242.5598030090332,0.0,6.818182,6.818182,0.0,-0.052185345 +242.5698001384735,0.0,6.818182,6.818182,0.0,-0.052185345 +242.5797839164734,0.0,6.818182,6.818182,0.0,-0.052185345 +242.58980894088745,0.0,6.818182,6.818182,0.0,-0.052185345 +242.59945392608643,0.0,6.818182,6.818182,0.0,-0.052185345 +242.6097960472107,0.0,6.818182,6.818182,0.0,-0.052185345 +242.61980509757996,0.0,6.818182,6.818182,0.0,-0.050335295 +242.6298110485077,0.0,6.818182,6.818182,0.0,-0.050335295 +242.63979601860046,0.0,6.818182,6.818182,0.0,-0.050335295 +242.64979100227356,0.0,6.818182,6.818182,0.0,-0.050335295 +242.65973901748657,0.0,6.818182,6.818182,0.0,-0.041085053 +242.66981101036072,0.0,6.818182,6.818182,0.0,-0.041085053 +242.67967009544373,0.0,6.818182,6.818182,0.0,-0.041085053 +242.68939208984375,0.0,6.818182,6.818182,0.0,-0.041085053 +242.69979310035706,0.0,6.818182,6.818182,0.0,-0.041085053 +242.70963311195374,0.0,6.818182,6.818182,0.0,-0.041085053 +242.71978998184204,0.0,6.818182,6.818182,0.0,-0.052185345 +242.72970509529114,0.0,6.818182,6.818182,0.0,-0.052185345 +242.7398121356964,0.0,6.818182,6.818182,0.0,-0.052185345 +242.74980998039246,0.0,6.818182,6.818182,0.0,-0.052185345 +242.75979614257812,0.0,6.818182,6.818182,0.0,-0.039235007 +242.7698199748993,0.0,6.818182,6.818182,0.0,-0.039235007 +242.77979612350464,0.0,6.818182,6.818182,0.0,-0.039235007 +242.7896490097046,0.0,6.818182,6.818182,0.0,-0.039235007 +242.79946112632751,0.0,6.818182,6.818182,0.0,-0.039235007 +242.80981302261353,0.0,6.818182,6.818182,0.0,-0.039235007 +242.8198161125183,0.0,6.818182,6.818182,0.0,-0.052185345 +242.8298270702362,0.0,6.818182,6.818182,0.0,-0.052185345 +242.83969402313232,0.0,6.818182,6.818182,0.0,-0.052185345 +242.84981298446655,0.0,6.818182,6.818182,0.0,-0.052185345 +242.85981392860413,0.0,6.818182,6.818182,0.0,-0.041085053 +242.86981296539307,0.0,6.818182,6.818182,0.0,-0.041085053 +242.87980699539185,0.0,6.818182,6.818182,0.0,-0.041085053 +242.88982510566711,0.0,6.818182,6.818182,0.0,-0.041085053 +242.89981293678284,0.0,6.818182,6.818182,0.0,-0.041085053 +242.90981101989746,0.0,6.818182,6.818182,0.0,-0.041085053 +242.91959309577942,0.0,6.818182,6.818182,0.0,-0.044785153 +242.9297170639038,0.0,6.818182,6.818182,0.0,-0.044785153 +242.93983101844788,0.0,6.818182,6.818182,0.0,-0.044785153 +242.94982409477234,0.0,6.818182,6.818182,0.0,-0.044785153 +242.95981693267822,0.0,6.818182,6.818182,0.0,-0.039235007 +242.96983695030212,0.0,6.818182,6.818182,0.0,-0.039235007 +242.97983193397522,0.0,6.818182,6.818182,0.0,-0.039235007 +242.98962712287903,0.0,6.818182,6.818182,0.0,-0.039235007 +242.99982404708862,0.0,6.818182,6.818182,0.0,-0.039235007 +243.009437084198,0.0,6.818182,6.818182,0.0,-0.039235007 +243.01982593536377,0.0,6.818182,6.818182,0.0,-0.054035395 +243.0296859741211,0.0,6.818182,6.818182,0.0,-0.054035395 +243.03983807563782,0.0,6.818182,6.818182,0.0,-0.054035395 +243.04953002929688,0.0,6.818182,6.818182,0.0,-0.054035395 +243.05982208251953,0.0,6.818182,6.818182,0.0,-0.044785153 +243.06983304023743,0.0,6.818182,6.818182,0.0,-0.044785153 +243.07951712608337,0.0,6.818182,6.818182,0.0,-0.044785153 +243.08962893486023,0.0,6.818182,6.818182,0.0,-0.044785153 +243.09983110427856,0.0,6.818182,6.818182,0.0,-0.044785153 +243.1098279953003,0.0,6.818182,6.818182,0.0,-0.06513569 +243.11982107162476,0.0,6.818182,6.818182,0.0,-0.06513569 +243.12969994544983,0.0,6.818182,6.818182,0.0,-0.06513569 +243.13969612121582,0.0,6.818182,6.818182,0.0,-0.06513569 +243.14984512329102,0.0,6.818182,6.818182,0.0,-0.06513569 +243.15983891487122,0.0,6.818182,6.818182,0.0,-0.0466352 +243.16983795166016,0.0,6.818182,6.818182,0.0,-0.0466352 +243.1794900894165,0.0,6.818182,6.818182,0.0,-0.0466352 +243.18984007835388,0.0,6.818182,6.818182,0.0,-0.0466352 +243.19945096969604,0.0,6.818182,6.818182,0.0,-0.0466352 +243.20986890792847,0.0,6.818182,6.818182,0.0,-0.0466352 +243.21985411643982,0.0,6.818182,6.818182,0.0,-0.0466352 +243.22968292236328,0.0,6.818182,6.818182,0.0,-0.0466352 +243.23964095115662,0.0,6.818182,6.818182,0.0,-0.0466352 +243.2498791217804,0.0,6.818182,6.818182,0.0,-0.0466352 +243.25986313819885,0.0,6.818182,6.818182,0.0,-0.044785153 +243.26987504959106,0.0,6.818182,6.818182,0.0,-0.044785153 +243.27987813949585,0.0,6.818182,6.818182,0.0,-0.044785153 +243.2898669242859,0.0,6.818182,6.818182,0.0,-0.044785153 +243.2998549938202,0.0,6.818182,6.818182,0.0,-0.044785153 +243.30940699577332,0.0,6.818182,6.818182,0.0,-0.0466352 +243.3194179534912,0.0,6.818182,6.818182,0.0,-0.0466352 +243.32948303222656,0.0,6.818182,6.818182,0.0,-0.0466352 +243.3394501209259,0.0,6.818182,6.818182,0.0,-0.0466352 +243.34986114501953,0.0,6.818182,6.818182,0.0,-0.0466352 +243.35987305641174,0.0,6.818182,6.818182,0.0,-0.041085053 +243.369873046875,0.0,6.818182,6.818182,0.0,-0.041085053 +243.37986207008362,0.0,6.818182,6.818182,0.0,-0.041085053 +243.389878988266,0.0,6.818182,6.818182,0.0,-0.041085053 +243.39988493919373,0.0,6.818182,6.818182,0.0,-0.041085053 +243.40949511528015,0.0,6.818182,6.818182,0.0,-0.072535895 +243.419517993927,0.0,6.818182,6.818182,0.0,-0.072535895 +243.42973804473877,0.0,6.818182,6.818182,0.0,-0.072535895 +243.43987011909485,0.0,6.818182,6.818182,0.0,-0.072535895 +243.44987106323242,0.0,6.818182,6.818182,0.0,-0.072535895 +243.459881067276,0.0,6.818182,6.818182,0.0,-0.044785153 +243.46987891197205,0.0,6.818182,6.818182,0.0,-0.044785153 +243.47989201545715,0.0,6.818182,6.818182,0.0,-0.044785153 +243.48986196517944,0.0,6.818182,6.818182,0.0,-0.044785153 +243.49956703186035,0.0,6.818182,6.818182,0.0,-0.044785153 +243.5098741054535,0.0,6.818182,6.818182,0.0,-0.044785153 +243.51988005638123,0.0,6.818182,6.818182,0.0,-0.052185345 +243.5297110080719,0.0,6.818182,6.818182,0.0,-0.052185345 +243.5398850440979,0.0,6.818182,6.818182,0.0,-0.052185345 +243.54988813400269,0.0,6.818182,6.818182,0.0,-0.052185345 +243.5598909854889,0.0,6.818182,6.818182,0.0,-0.041085053 +243.56989002227783,0.0,6.818182,6.818182,0.0,-0.041085053 +243.5795431137085,0.0,6.818182,6.818182,0.0,-0.041085053 +243.5896279811859,0.0,7.575758,7.575758,0.0,-0.041085053 +243.59987807273865,0.0,7.575758,7.575758,0.0,-0.041085053 +243.60989093780518,0.0,7.575758,7.575758,0.0,-0.041085053 +243.61989212036133,0.0,7.575758,7.575758,0.0,-0.044785153 +243.62991404533386,0.0,7.575758,7.575758,0.0,-0.044785153 +243.6394739151001,0.0,7.575758,7.575758,0.0,-0.044785153 +243.64989709854126,0.0,7.575758,7.575758,0.0,-0.044785153 +243.65989112854004,0.0,7.575758,7.575758,0.0,-0.041085053 +243.66989398002625,0.0,7.575758,7.575758,0.0,-0.041085053 +243.679701089859,0.0,7.575758,7.575758,0.0,-0.041085053 +243.6899070739746,0.0,7.575758,7.575758,0.0,-0.041085053 +243.69990396499634,0.0,7.575758,7.575758,0.0,-0.041085053 +243.70990300178528,0.0,7.575758,7.575758,0.0,-0.041085053 +243.71988701820374,0.0,7.575758,7.575758,0.0,-0.052185345 +243.72951793670654,0.0,7.575758,7.575758,0.0,-0.052185345 +243.73990297317505,0.0,7.575758,7.575758,0.0,-0.052185345 +243.7498860359192,0.0,7.575758,7.575758,0.0,-0.052185345 +243.75990414619446,0.0,7.575758,7.575758,0.0,-0.0466352 +243.7696340084076,0.0,7.575758,7.575758,0.0,-0.0466352 +243.77991008758545,0.0,7.575758,7.575758,0.0,-0.0466352 +243.78989791870117,0.0,7.575758,7.575758,0.0,-0.0466352 +243.79988503456116,0.0,7.575758,7.575758,0.0,-0.0466352 +243.80991005897522,0.0,7.575758,7.575758,0.0,-0.0466352 +243.81963992118835,0.0,7.575758,7.575758,0.0,-0.06328564 +243.8293969631195,0.0,7.575758,7.575758,0.0,-0.06328564 +243.83990812301636,0.0,7.575758,7.575758,0.0,-0.06328564 +243.8499050140381,0.0,7.575758,7.575758,0.0,-0.06328564 +243.85947799682617,0.0,7.575758,7.575758,0.0,-0.039235007 +243.8698980808258,0.0,7.575758,7.575758,0.0,-0.039235007 +243.87992596626282,0.0,7.575758,7.575758,0.0,-0.039235007 +243.88991594314575,0.0,7.575758,7.575758,0.0,-0.039235007 +243.89992308616638,0.0,7.575758,7.575758,0.0,-0.039235007 +243.9094579219818,0.0,7.575758,7.575758,0.0,-0.039235007 +243.91990208625793,0.0,7.575758,7.575758,0.0,-0.044785153 +243.9297330379486,0.0,7.575758,7.575758,0.0,-0.044785153 +243.9397919178009,0.0,7.575758,7.575758,0.0,-0.044785153 +243.94993805885315,0.0,7.575758,7.575758,0.0,-0.044785153 +243.9599370956421,0.0,7.575758,7.575758,0.0,-0.0466352 +243.9699249267578,0.0,7.575758,7.575758,0.0,-0.0466352 +243.97993397712708,0.0,7.575758,7.575758,0.0,-0.0466352 +243.98965191841125,0.0,7.575758,7.575758,0.0,-0.0466352 +243.99981307983398,0.0,7.575758,7.575758,0.0,-0.0466352 +244.009938955307,0.0,7.575758,7.575758,0.0,-0.0466352 +244.019926071167,0.0,7.575758,7.575758,0.0,-0.06143559 +244.0297360420227,0.0,7.575758,7.575758,0.0,-0.06143559 +244.03992700576782,0.0,7.575758,7.575758,0.0,-0.06143559 +244.04993200302124,0.0,7.575758,7.575758,0.0,-0.06143559 +244.05992603302002,0.0,7.575758,7.575758,0.0,-0.06513569 +244.0698230266571,0.0,7.575758,7.575758,0.0,-0.06513569 +244.0799219608307,0.0,7.575758,7.575758,0.0,-0.06513569 +244.0897741317749,0.0,7.575758,7.575758,0.0,-0.06513569 +244.09994292259216,0.0,7.575758,7.575758,0.0,-0.06513569 +244.10993099212646,0.0,7.575758,7.575758,0.0,-0.044785153 +244.11993408203125,0.0,7.575758,7.575758,0.0,-0.044785153 +244.1297149658203,0.0,7.575758,7.575758,0.0,-0.044785153 +244.13962197303772,0.0,7.575758,7.575758,0.0,-0.044785153 +244.14993596076965,0.0,7.575758,7.575758,0.0,-0.044785153 +244.15994691848755,0.0,7.575758,7.575758,0.0,-0.044785153 +244.1699299812317,0.0,7.575758,7.575758,0.0,-0.044785153 +244.17977499961853,0.0,7.575758,7.575758,0.0,-0.044785153 +244.1899471282959,0.0,7.575758,7.575758,0.0,-0.044785153 +244.1999409198761,0.0,7.575758,7.575758,0.0,-0.044785153 +244.20981192588806,0.0,7.575758,7.575758,0.0,-0.0466352 +244.21993613243103,0.0,7.575758,7.575758,0.0,-0.0466352 +244.22945094108582,0.0,7.575758,7.575758,0.0,-0.0466352 +244.23994994163513,0.0,7.575758,7.575758,0.0,-0.0466352 +244.24994111061096,0.0,7.575758,7.575758,0.0,-0.0466352 +244.25993394851685,0.0,7.575758,7.575758,0.0,-0.052185345 +244.26973795890808,0.0,7.575758,7.575758,0.0,-0.052185345 +244.2799470424652,0.0,7.575758,7.575758,0.0,-0.052185345 +244.2899580001831,0.0,7.575758,7.575758,0.0,-0.052185345 +244.29964995384216,0.0,7.575758,7.575758,0.0,-0.052185345 +244.30995106697083,0.0,7.575758,7.575758,0.0,-0.041085053 +244.31951308250427,0.0,7.575758,7.575758,0.0,-0.041085053 +244.32971811294556,0.0,7.575758,7.575758,0.0,-0.041085053 +244.3399429321289,0.0,7.575758,7.575758,0.0,-0.041085053 +244.34985399246216,0.0,7.575758,7.575758,0.0,-0.041085053 +244.35974192619324,0.0,7.575758,7.575758,0.0,-0.041085053 +244.36995792388916,0.0,7.575758,7.575758,0.0,-0.041085053 +244.3795940876007,0.0,7.575758,7.575758,0.0,-0.041085053 +244.3895080089569,0.0,7.575758,7.575758,0.0,-0.041085053 +244.39947509765625,0.0,7.575758,7.575758,0.0,-0.041085053 +244.40995502471924,0.0,7.575758,7.575758,0.0,-0.050335295 +244.4199550151825,0.0,7.575758,7.575758,0.0,-0.050335295 +244.42973399162292,0.0,7.575758,7.575758,0.0,-0.050335295 +244.43995809555054,0.0,7.575758,7.575758,0.0,-0.050335295 +244.449716091156,0.0,7.575758,7.575758,0.0,-0.050335295 +244.45995092391968,0.0,7.575758,7.575758,0.0,-0.03553491 +244.46995496749878,0.0,7.575758,7.575758,0.0,-0.03553491 +244.47965502738953,0.0,7.575758,7.575758,0.0,-0.03553491 +244.48995995521545,0.0,7.575758,7.575758,0.0,-0.03553491 +244.49940991401672,0.0,7.575758,7.575758,0.0,-0.03553491 +244.5099699497223,0.0,7.575758,7.575758,0.0,-0.03553491 +244.51996994018555,0.0,7.575758,7.575758,0.0,-0.06328564 +244.52997398376465,0.0,7.575758,7.575758,0.0,-0.06328564 +244.539705991745,0.0,7.575758,7.575758,0.0,-0.06328564 +244.54996991157532,0.0,7.575758,7.575758,0.0,-0.06328564 +244.55972695350647,0.0,7.575758,7.575758,0.0,-0.044785153 +244.56997203826904,0.0,7.575758,7.575758,0.0,-0.044785153 +244.57998394966125,0.0,7.575758,7.575758,0.0,-0.044785153 +244.58947610855103,0.0,7.575758,7.575758,0.0,-0.044785153 +244.5999801158905,0.0,7.575758,7.575758,0.0,-0.044785153 +244.60968708992004,0.0,7.575758,7.575758,0.0,-0.044785153 +244.6198070049286,0.0,7.575758,7.575758,0.0,-0.06143559 +244.6296820640564,0.0,7.575758,7.575758,0.0,-0.06143559 +244.63999700546265,0.0,7.575758,7.575758,0.0,-0.06143559 +244.64999794960022,0.0,7.575758,7.575758,0.0,-0.06143559 +244.6600000858307,0.0,6.818182,6.818182,0.0,-0.054035395 +244.6699891090393,0.0,6.818182,6.818182,0.0,-0.054035395 +244.67955994606018,0.0,6.818182,6.818182,0.0,-0.054035395 +244.6899709701538,0.0,6.818182,6.818182,0.0,-0.054035395 +244.70000100135803,0.0,6.818182,6.818182,0.0,-0.054035395 +244.7100019454956,0.0,6.818182,6.818182,0.0,-0.054035395 +244.71970200538635,0.0,6.818182,6.818182,0.0,-0.0466352 +244.72971606254578,0.0,6.818182,6.818182,0.0,-0.0466352 +244.73958802223206,0.0,6.818182,6.818182,0.0,-0.0466352 +244.7499930858612,0.0,6.818182,6.818182,0.0,-0.0466352 +244.75998497009277,0.0,6.818182,6.818182,0.0,-0.042935103 +244.76962804794312,0.0,6.818182,6.818182,0.0,-0.042935103 +244.77999711036682,0.0,6.818182,6.818182,0.0,-0.042935103 +244.78950309753418,0.0,6.818182,6.818182,0.0,-0.042935103 +244.79999613761902,0.0,6.818182,6.818182,0.0,-0.042935103 +244.8096649646759,0.0,6.818182,6.818182,0.0,-0.042935103 +244.8199999332428,0.0,6.818182,6.818182,0.0,-0.0466352 +244.82977509498596,0.0,6.818182,6.818182,0.0,-0.0466352 +244.84000611305237,0.0,6.818182,6.818182,0.0,-0.0466352 +244.84999895095825,0.0,6.818182,6.818182,0.0,-0.0466352 +244.85970401763916,0.0,6.818182,6.818182,0.0,-0.0466352 +244.86947011947632,0.0,6.818182,6.818182,0.0,-0.0466352 +244.88001012802124,0.0,6.818182,6.818182,0.0,-0.0466352 +244.889545917511,0.0,6.818182,6.818182,0.0,-0.0466352 +244.89962601661682,0.0,6.818182,6.818182,0.0,-0.0466352 +244.91002202033997,0.0,6.818182,6.818182,0.0,-0.0466352 +244.91959309577942,0.0,6.818182,6.818182,0.0,-0.0577355 +244.92973399162292,0.0,6.818182,6.818182,0.0,-0.0577355 +244.93948698043823,0.0,6.818182,6.818182,0.0,-0.0577355 +244.94979310035706,0.0,6.818182,6.818182,0.0,-0.0577355 +244.96002006530762,0.0,6.818182,6.818182,0.0,-0.06698574 +244.96975994110107,0.0,6.818182,6.818182,0.0,-0.06698574 +244.98001503944397,0.0,6.818182,6.818182,0.0,-0.06698574 +244.98961091041565,0.0,6.818182,6.818182,0.0,-0.06698574 +244.99939608573914,0.0,6.818182,6.818182,0.0,-0.06698574 +245.00944304466248,0.0,6.818182,6.818182,0.0,-0.06698574 +245.0200219154358,0.0,6.818182,6.818182,0.0,-0.039235007 +245.02971196174622,0.0,6.818182,6.818182,0.0,-0.039235007 +245.0398509502411,0.0,6.818182,6.818182,0.0,-0.039235007 +245.0494909286499,0.0,6.818182,6.818182,0.0,-0.039235007 +245.05951809883118,0.0,6.818182,6.818182,0.0,-0.0466352 +245.07002210617065,0.0,6.818182,6.818182,0.0,-0.0466352 +245.0796139240265,0.0,6.818182,6.818182,0.0,-0.0466352 +245.090008020401,0.0,6.818182,6.818182,0.0,-0.0466352 +245.10002493858337,0.0,6.818182,6.818182,0.0,-0.0466352 +245.11002898216248,0.0,6.818182,6.818182,0.0,-0.0466352 +245.12002611160278,0.0,6.818182,6.818182,0.0,-0.0466352 +245.12972807884216,0.0,6.818182,6.818182,0.0,-0.0466352 +245.1400430202484,0.0,6.818182,6.818182,0.0,-0.0466352 +245.15002608299255,0.0,6.818182,6.818182,0.0,-0.0466352 +245.16002011299133,0.0,6.818182,6.818182,0.0,-0.072535895 +245.16960906982422,0.0,6.818182,6.818182,0.0,-0.072535895 +245.17970895767212,0.0,6.818182,6.818182,0.0,-0.072535895 +245.1900429725647,0.0,6.818182,6.818182,0.0,-0.072535895 +245.20003414154053,0.0,6.818182,6.818182,0.0,-0.072535895 +245.2100350856781,0.0,6.818182,6.818182,0.0,-0.06883579 +245.22003698349,0.0,6.818182,6.818182,0.0,-0.06883579 +245.22972297668457,0.0,6.818182,6.818182,0.0,-0.06883579 +245.2400450706482,0.0,6.818182,6.818182,0.0,-0.06883579 +245.25003004074097,0.0,6.818182,6.818182,0.0,-0.06883579 +245.25958800315857,0.0,6.818182,6.818182,0.0,-0.06883579 +245.27004599571228,0.0,6.818182,6.818182,0.0,-0.06883579 +245.28003406524658,0.0,6.818182,6.818182,0.0,-0.06883579 +245.29004096984863,0.0,6.818182,6.818182,0.0,-0.06883579 +245.2994101047516,0.0,6.818182,6.818182,0.0,-0.06883579 +245.3100550174713,0.0,6.818182,6.818182,0.0,-0.044785153 +245.32002902030945,0.0,6.818182,6.818182,0.0,-0.044785153 +245.32964491844177,0.0,6.818182,6.818182,0.0,-0.044785153 +245.34003591537476,0.0,6.818182,6.818182,0.0,-0.044785153 +245.34961009025574,0.0,6.818182,6.818182,0.0,-0.044785153 +245.35986304283142,0.0,6.818182,6.818182,0.0,-0.03553491 +245.3700499534607,0.0,6.818182,6.818182,0.0,-0.03553491 +245.37959098815918,0.0,6.818182,6.818182,0.0,-0.03553491 +245.38972997665405,0.0,6.818182,6.818182,0.0,-0.03553491 +245.40006303787231,0.0,6.818182,6.818182,0.0,-0.03553491 +245.4100420475006,0.0,6.818182,6.818182,0.0,-0.050335295 +245.42005014419556,0.0,6.818182,6.818182,0.0,-0.050335295 +245.42976593971252,0.0,6.818182,6.818182,0.0,-0.050335295 +245.43960809707642,0.0,6.818182,6.818182,0.0,-0.050335295 +245.449688911438,0.0,6.818182,6.818182,0.0,-0.050335295 +245.4597990512848,0.0,6.818182,6.818182,0.0,-0.054035395 +245.47004508972168,0.0,7.575758,7.575758,0.0,-0.054035395 +245.48006296157837,0.0,7.575758,7.575758,0.0,-0.054035395 +245.49005913734436,0.0,7.575758,7.575758,0.0,-0.054035395 +245.50005292892456,0.0,7.575758,7.575758,0.0,-0.054035395 +245.51007199287415,0.0,7.575758,7.575758,0.0,-0.054035395 +245.5200629234314,0.0,7.575758,7.575758,0.0,-0.042935103 +245.52958607673645,0.0,7.575758,7.575758,0.0,-0.042935103 +245.53955912590027,0.0,7.575758,7.575758,0.0,-0.042935103 +245.55007004737854,0.0,7.575758,7.575758,0.0,-0.042935103 +245.56005096435547,0.0,7.575758,7.575758,0.0,-0.052185345 +245.57006692886353,0.0,7.575758,7.575758,0.0,-0.052185345 +245.58005499839783,0.0,7.575758,7.575758,0.0,-0.052185345 +245.5900571346283,0.0,7.575758,7.575758,0.0,-0.052185345 +245.60007691383362,0.0,7.575758,7.575758,0.0,-0.052185345 +245.6100630760193,0.0,7.575758,7.575758,0.0,-0.052185345 +245.61958599090576,0.0,7.575758,7.575758,0.0,-0.07438594 +245.62939190864563,0.0,7.575758,7.575758,0.0,-0.07438594 +245.64007592201233,0.0,7.575758,7.575758,0.0,-0.07438594 +245.65007400512695,0.0,7.575758,7.575758,0.0,-0.07438594 +245.66006112098694,0.0,7.575758,7.575758,0.0,-0.050335295 +245.67012000083923,0.0,7.575758,7.575758,0.0,-0.050335295 +245.6794581413269,0.0,7.575758,7.575758,0.0,-0.050335295 +245.69009399414062,0.0,7.575758,7.575758,0.0,-0.050335295 +245.70006394386292,0.0,7.575758,7.575758,0.0,-0.050335295 +245.70956707000732,0.0,7.575758,7.575758,0.0,-0.050335295 +245.72008395195007,0.0,7.575758,7.575758,0.0,-0.0577355 +245.72973608970642,0.0,7.575758,7.575758,0.0,-0.0577355 +245.7400779724121,0.0,7.575758,7.575758,0.0,-0.0577355 +245.75009608268738,0.0,7.575758,7.575758,0.0,-0.0577355 +245.76009607315063,0.0,7.575758,7.575758,0.0,-0.052185345 +245.76951003074646,0.0,7.575758,7.575758,0.0,-0.052185345 +245.77992701530457,0.0,7.575758,7.575758,0.0,-0.052185345 +245.7894549369812,0.0,7.575758,7.575758,0.0,-0.052185345 +245.7995331287384,0.0,7.575758,7.575758,0.0,-0.052185345 +245.8100950717926,0.0,7.575758,7.575758,0.0,-0.052185345 +245.82011604309082,0.0,7.575758,7.575758,0.0,-0.24829055 +245.8296720981598,0.0,7.575758,7.575758,0.0,-0.24829055 +245.84008598327637,0.0,7.575758,7.575758,0.0,-0.24829055 +245.8501260280609,0.0,7.575758,7.575758,0.0,-0.24829055 +245.85960292816162,0.0,7.575758,7.575758,0.0,-0.044785153 +245.86962604522705,0.0,7.575758,7.575758,0.0,-0.044785153 +245.8801131248474,0.0,7.575758,7.575758,0.0,-0.044785153 +245.8895239830017,0.0,7.575758,7.575758,0.0,-0.044785153 +245.90011191368103,0.0,7.575758,7.575758,0.0,-0.044785153 +245.90985202789307,0.0,7.575758,7.575758,0.0,-0.044785153 +245.91954612731934,0.0,7.575758,7.575758,0.0,-0.14098771 +245.92974495887756,0.0,7.575758,7.575758,0.0,-0.14098771 +245.9400990009308,0.0,7.575758,7.575758,0.0,-0.14098771 +245.949697971344,0.0,7.575758,7.575758,0.0,-0.14098771 +245.96008610725403,0.0,7.575758,7.575758,0.0,-0.050335295 +245.97013306617737,0.0,7.575758,7.575758,0.0,-0.050335295 +245.97950792312622,0.0,7.575758,7.575758,0.0,-0.050335295 +245.99013900756836,0.0,7.575758,7.575758,0.0,-0.050335295 +246.0000901222229,0.0,7.575758,7.575758,0.0,-0.050335295 +246.01012992858887,0.0,7.575758,7.575758,0.0,-0.050335295 +246.02010893821716,0.0,7.575758,7.575758,0.0,-0.052185345 +246.02973914146423,0.0,7.575758,7.575758,0.0,-0.052185345 +246.03976893424988,0.0,7.575758,7.575758,0.0,-0.052185345 +246.05013012886047,0.0,7.575758,7.575758,0.0,-0.052185345 +246.06012296676636,0.0,7.575758,7.575758,0.0,-0.0466352 +246.06948494911194,0.0,7.575758,7.575758,0.0,-0.0466352 +246.0801351070404,0.0,7.575758,7.575758,0.0,-0.0466352 +246.0901529788971,0.0,7.575758,7.575758,0.0,-0.0466352 +246.10004901885986,0.0,7.575758,7.575758,0.0,-0.0466352 +246.11013007164001,0.0,7.575758,7.575758,0.0,-0.0577355 +246.1201069355011,0.0,7.575758,7.575758,0.0,-0.0577355 +246.12975406646729,0.0,7.575758,7.575758,0.0,-0.0577355 +246.14012002944946,0.0,7.575758,7.575758,0.0,-0.0577355 +246.15013098716736,0.0,7.575758,7.575758,0.0,-0.0577355 +246.15947008132935,0.0,7.575758,7.575758,0.0,-0.041085053 +246.16965913772583,0.0,7.575758,7.575758,0.0,-0.041085053 +246.17962408065796,0.0,7.575758,7.575758,0.0,-0.041085053 +246.19014811515808,0.0,7.575758,7.575758,0.0,-0.041085053 +246.2001349925995,0.0,7.575758,7.575758,0.0,-0.041085053 +246.21014499664307,0.0,7.575758,7.575758,0.0,-0.06513569 +246.21990299224854,0.0,7.575758,7.575758,0.0,-0.06513569 +246.2301640510559,0.0,7.575758,7.575758,0.0,-0.06513569 +246.23975801467896,0.0,7.575758,7.575758,0.0,-0.06513569 +246.2493920326233,0.0,7.575758,7.575758,0.0,-0.06513569 +246.2601330280304,0.0,7.575758,7.575758,0.0,-0.0466352 +246.2694549560547,0.0,7.575758,7.575758,0.0,-0.0466352 +246.27954292297363,0.0,7.575758,7.575758,0.0,-0.0466352 +246.2901589870453,0.0,7.575758,7.575758,0.0,-0.0466352 +246.299574136734,0.0,7.575758,7.575758,0.0,-0.0466352 +246.30999994277954,0.0,7.575758,7.575758,0.0,-0.054035395 +246.32015204429626,0.0,7.575758,7.575758,0.0,-0.054035395 +246.32974910736084,0.0,7.575758,7.575758,0.0,-0.054035395 +246.33948493003845,0.0,7.575758,7.575758,0.0,-0.054035395 +246.35015201568604,0.0,7.575758,7.575758,0.0,-0.054035395 +246.35973000526428,0.0,7.575758,7.575758,0.0,-0.052185345 +246.37016797065735,0.0,7.575758,7.575758,0.0,-0.052185345 +246.380126953125,0.0,7.575758,7.575758,0.0,-0.052185345 +246.39015197753906,0.0,7.575758,7.575758,0.0,-0.052185345 +246.40008306503296,0.0,7.575758,7.575758,0.0,-0.052185345 +246.41016292572021,0.0,7.575758,7.575758,0.0,-0.042935103 +246.4196081161499,0.0,7.575758,7.575758,0.0,-0.042935103 +246.42946100234985,0.0,7.575758,7.575758,0.0,-0.042935103 +246.4399540424347,0.0,7.575758,7.575758,0.0,-0.042935103 +246.44969010353088,0.0,7.575758,7.575758,0.0,-0.042935103 +246.46015000343323,0.0,7.575758,7.575758,0.0,-0.0577355 +246.4701759815216,0.0,7.575758,7.575758,0.0,-0.0577355 +246.4801480770111,0.0,7.575758,7.575758,0.0,-0.0577355 +246.49017810821533,0.0,7.575758,7.575758,0.0,-0.0577355 +246.50014805793762,0.0,7.575758,7.575758,0.0,-0.0577355 +246.50991797447205,0.0,7.575758,7.575758,0.0,-0.0577355 +246.51945996284485,0.0,7.575758,7.575758,0.0,-0.06143559 +246.5297291278839,0.0,7.575758,7.575758,0.0,-0.06143559 +246.54016399383545,0.0,7.575758,7.575758,0.0,-0.06143559 +246.5501630306244,0.0,7.575758,7.575758,0.0,-0.06143559 +246.5594301223755,0.0,7.575758,7.575758,0.0,-0.06143559 +246.56977796554565,0.0,7.575758,7.575758,0.0,-0.06143559 +246.58015608787537,0.0,7.575758,7.575758,0.0,-0.06143559 +246.5901701450348,0.0,7.575758,7.575758,0.0,-0.06143559 +246.599750995636,0.0,7.575758,7.575758,0.0,-0.06143559 +246.60947012901306,0.0,7.575758,7.575758,0.0,-0.06143559 +246.6201639175415,0.0,7.575758,7.575758,0.0,-0.0466352 +246.62974309921265,0.0,7.575758,7.575758,0.0,-0.0466352 +246.64015913009644,0.0,7.575758,7.575758,0.0,-0.0466352 +246.6501920223236,0.0,7.575758,7.575758,0.0,-0.0466352 +246.6601619720459,0.0,7.575758,7.575758,0.0,-0.050335295 +246.670184135437,0.0,7.575758,7.575758,0.0,-0.050335295 +246.67962503433228,0.0,7.575758,7.575758,0.0,-0.050335295 +246.68956208229065,0.0,7.575758,7.575758,0.0,-0.050335295 +246.69947504997253,0.0,7.575758,7.575758,0.0,-0.050335295 +246.71019411087036,0.0,7.575758,7.575758,0.0,-0.050335295 +246.72018098831177,0.0,7.575758,7.575758,0.0,-0.050335295 +246.72977304458618,0.0,7.575758,7.575758,0.0,-0.050335295 +246.74017000198364,0.0,7.575758,7.575758,0.0,-0.050335295 +246.7500319480896,0.0,7.575758,7.575758,0.0,-0.050335295 +246.7601809501648,0.0,7.575758,7.575758,0.0,-0.041085053 +246.76942992210388,0.0,7.575758,7.575758,0.0,-0.041085053 +246.77943205833435,0.0,7.575758,7.575758,0.0,-0.041085053 +246.78943610191345,0.0,7.575758,7.575758,0.0,-0.041085053 +246.8001639842987,0.0,7.575758,7.575758,0.0,-0.041085053 +246.8101360797882,0.0,7.575758,7.575758,0.0,-0.041085053 +246.8201789855957,0.0,7.575758,7.575758,0.0,-0.06328564 +246.8297860622406,0.0,7.575758,7.575758,0.0,-0.06328564 +246.84018397331238,0.0,7.575758,7.575758,0.0,-0.06328564 +246.84986114501953,0.0,7.575758,7.575758,0.0,-0.06328564 +246.85958003997803,0.0,7.575758,7.575758,0.0,-0.041085053 +246.87020802497864,0.0,7.575758,7.575758,0.0,-0.041085053 +246.8794400691986,0.0,7.575758,7.575758,0.0,-0.041085053 +246.890212059021,0.0,7.575758,7.575758,0.0,-0.041085053 +246.90019702911377,0.0,7.575758,7.575758,0.0,-0.041085053 +246.91021013259888,0.0,7.575758,7.575758,0.0,-0.041085053 +246.91944408416748,0.0,7.575758,7.575758,0.0,-0.0466352 +246.92976307868958,0.0,7.575758,7.575758,0.0,-0.0466352 +246.940181016922,0.0,7.575758,7.575758,0.0,-0.0466352 +246.9496021270752,0.0,7.575758,7.575758,0.0,-0.0466352 +246.96019411087036,0.0,7.575758,7.575758,0.0,-0.042935103 +246.96945595741272,0.0,7.575758,7.575758,0.0,-0.042935103 +246.98018193244934,0.0,7.575758,7.575758,0.0,-0.042935103 +246.9902150630951,0.0,7.575758,7.575758,0.0,-0.042935103 +247.00019907951355,0.0,7.575758,7.575758,0.0,-0.042935103 +247.01020097732544,0.0,7.575758,7.575758,0.0,-0.042935103 +247.02020502090454,0.0,7.575758,7.575758,0.0,-0.029984765 +247.0302119255066,0.0,7.575758,7.575758,0.0,-0.029984765 +247.03968596458435,0.0,7.575758,7.575758,0.0,-0.029984765 +247.05023002624512,0.0,7.575758,7.575758,0.0,-0.029984765 +247.05947303771973,0.0,7.575758,7.575758,0.0,-0.041085053 +247.06957006454468,0.0,7.575758,7.575758,0.0,-0.041085053 +247.08000111579895,0.0,7.575758,7.575758,0.0,-0.041085053 +247.0897409915924,0.0,7.575758,7.575758,0.0,-0.041085053 +247.10019612312317,0.0,7.575758,7.575758,0.0,-0.041085053 +247.11022400856018,0.0,7.575758,7.575758,0.0,-0.06143559 +247.12021803855896,0.0,7.575758,7.575758,0.0,-0.06143559 +247.1297469139099,0.0,7.575758,7.575758,0.0,-0.06143559 +247.1402051448822,0.0,7.575758,7.575758,0.0,-0.06143559 +247.14943599700928,0.0,7.575758,7.575758,0.0,-0.06143559 +247.16021013259888,0.0,7.575758,7.575758,0.0,-0.052185345 +247.1702380180359,0.0,7.575758,7.575758,0.0,-0.052185345 +247.1795301437378,0.0,7.575758,7.575758,0.0,-0.052185345 +247.18972992897034,0.0,7.575758,7.575758,0.0,-0.052185345 +247.20021104812622,0.0,7.575758,7.575758,0.0,-0.052185345 +247.21002101898193,0.0,7.575758,7.575758,0.0,-0.0466352 +247.21964693069458,0.0,7.575758,7.575758,0.0,-0.0466352 +247.229749917984,0.0,7.575758,7.575758,0.0,-0.0466352 +247.23939609527588,0.0,7.575758,7.575758,0.0,-0.0466352 +247.2502360343933,0.0,7.575758,7.575758,0.0,-0.0466352 +247.25975608825684,0.0,7.575758,7.575758,0.0,-0.06698574 +247.2702329158783,0.0,7.575758,7.575758,0.0,-0.06698574 +247.28022408485413,0.0,7.575758,7.575758,0.0,-0.06698574 +247.29027104377747,0.0,7.575758,7.575758,0.0,-0.06698574 +247.30024099349976,0.0,7.575758,7.575758,0.0,-0.06698574 +247.3094789981842,0.0,7.575758,7.575758,0.0,-0.0466352 +247.32022404670715,0.0,7.575758,7.575758,0.0,-0.0466352 +247.32939195632935,0.0,7.575758,7.575758,0.0,-0.0466352 +247.33994603157043,0.0,7.575758,7.575758,0.0,-0.0466352 +247.35023999214172,0.0,7.575758,7.575758,0.0,-0.0466352 +247.36022806167603,0.0,7.575758,7.575758,0.0,-0.06698574 +247.37024092674255,0.0,7.575758,7.575758,0.0,-0.06698574 +247.3802559375763,0.0,7.575758,7.575758,0.0,-0.06698574 +247.39026308059692,0.0,7.575758,7.575758,0.0,-0.06698574 +247.39999198913574,0.0,7.575758,7.575758,0.0,-0.06698574 +247.41023993492126,0.0,7.575758,7.575758,0.0,-0.044785153 +247.42016100883484,0.0,7.575758,7.575758,0.0,-0.044785153 +247.42977714538574,0.0,7.575758,7.575758,0.0,-0.044785153 +247.44023895263672,0.0,7.575758,7.575758,0.0,-0.044785153 +247.45025396347046,0.0,7.575758,7.575758,0.0,-0.044785153 +247.45986413955688,0.0,7.575758,7.575758,0.0,-0.03553491 +247.4698610305786,0.0,7.575758,7.575758,0.0,-0.03553491 +247.48017597198486,0.0,7.575758,7.575758,0.0,-0.03553491 +247.49008202552795,0.0,7.575758,7.575758,0.0,-0.03553491 +247.50025010108948,0.0,7.575758,7.575758,0.0,-0.03553491 +247.5095019340515,0.0,7.575758,7.575758,0.0,-0.03553491 +247.520250082016,0.0,7.575758,7.575758,0.0,-0.044785153 +247.52976202964783,0.0,7.575758,7.575758,0.0,-0.044785153 +247.5393989086151,0.0,7.575758,7.575758,0.0,-0.044785153 +247.5502381324768,0.0,7.575758,7.575758,0.0,-0.044785153 +247.5602469444275,0.0,7.575758,7.575758,0.0,-0.044785153 +247.56947708129883,0.0,7.575758,7.575758,0.0,-0.044785153 +247.5801601409912,0.0,7.575758,7.575758,0.0,-0.044785153 +247.5894799232483,0.0,7.575758,7.575758,0.0,-0.044785153 +247.5995900630951,0.0,7.575758,7.575758,0.0,-0.044785153 +247.6102430820465,0.0,7.575758,7.575758,0.0,-0.044785153 +247.62024998664856,0.0,7.575758,7.575758,0.0,-0.020734508 +247.62952494621277,0.0,7.575758,7.575758,0.0,-0.020734508 +247.64024806022644,0.0,7.575758,7.575758,0.0,-0.020734508 +247.65027809143066,0.0,7.575758,7.575758,0.0,-0.020734508 +247.65985894203186,0.0,7.575758,7.575758,0.0,-0.06143559 +247.66966009140015,0.0,7.575758,7.575758,0.0,-0.06143559 +247.6802670955658,0.0,7.575758,7.575758,0.0,-0.06143559 +247.69026899337769,0.0,7.575758,7.575758,0.0,-0.06143559 +247.70024704933167,0.0,7.575758,7.575758,0.0,-0.06143559 +247.71027398109436,0.0,7.575758,7.575758,0.0,-0.06143559 +247.71956992149353,0.0,7.575758,7.575758,0.0,-0.054035395 +247.72963309288025,0.0,7.575758,7.575758,0.0,-0.054035395 +247.7402560710907,0.0,7.575758,7.575758,0.0,-0.054035395 +247.7496919631958,0.0,7.575758,7.575758,0.0,-0.054035395 +247.76028108596802,0.0,7.575758,7.575758,0.0,-0.05588545 +247.77027201652527,0.0,7.575758,7.575758,0.0,-0.05588545 +247.78025698661804,0.0,7.575758,7.575758,0.0,-0.05588545 +247.79025793075562,0.0,8.333334,8.333334,0.0,-0.05588545 +247.8002769947052,0.0,8.333334,8.333334,0.0,-0.05588545 +247.81026601791382,0.0,8.333334,8.333334,0.0,-0.05588545 +247.82028198242188,0.0,8.333334,8.333334,0.0,-0.052185345 +247.8297779560089,0.0,8.333334,8.333334,0.0,-0.052185345 +247.83954191207886,0.0,8.333334,8.333334,0.0,-0.052185345 +247.85028409957886,0.0,8.333334,8.333334,0.0,-0.052185345 +247.85941100120544,0.0,8.333334,8.333334,0.0,-0.052185345 +247.87028193473816,0.0,8.333334,8.333334,0.0,-0.052185345 +247.8802900314331,0.0,8.333334,8.333334,0.0,-0.052185345 +247.89026713371277,0.0,8.333334,8.333334,0.0,-0.052185345 +247.9002709388733,0.0,8.333334,8.333334,0.0,-0.052185345 +247.9102840423584,0.0,8.333334,8.333334,0.0,-0.052185345 +247.9202971458435,0.0,8.333334,8.333334,0.0,-0.085486226 +247.9300799369812,0.0,8.333334,8.333334,0.0,-0.085486226 +247.93976998329163,0.0,8.333334,8.333334,0.0,-0.085486226 +247.94948601722717,0.0,8.333334,8.333334,0.0,-0.085486226 +247.96026992797852,0.0,8.333334,8.333334,0.0,-0.039235007 +247.9702911376953,0.0,8.333334,8.333334,0.0,-0.039235007 +247.97964811325073,0.0,8.333334,8.333334,0.0,-0.039235007 +247.9894621372223,0.0,8.333334,8.333334,0.0,-0.039235007 +248.00029706954956,0.0,8.333334,8.333334,0.0,-0.039235007 +248.01030898094177,0.0,8.333334,8.333334,0.0,-0.039235007 +248.02030897140503,0.0,8.333334,8.333334,0.0,-0.054035395 +248.02975392341614,0.0,8.333334,8.333334,0.0,-0.054035395 +248.03959894180298,0.0,8.333334,8.333334,0.0,-0.054035395 +248.0501310825348,0.0,8.333334,8.333334,0.0,-0.054035395 +248.0602879524231,0.0,8.333334,8.333334,0.0,-0.0466352 +248.07028913497925,0.0,8.333334,8.333334,0.0,-0.0466352 +248.07950496673584,0.0,8.333334,8.333334,0.0,-0.0466352 +248.0902919769287,0.0,8.333334,8.333334,0.0,-0.0466352 +248.10006093978882,0.0,8.333334,8.333334,0.0,-0.0466352 +248.11009001731873,0.0,8.333334,8.333334,0.0,-0.041085053 +248.1203169822693,0.0,8.333334,8.333334,0.0,-0.041085053 +248.12965393066406,0.0,8.333334,8.333334,0.0,-0.041085053 +248.14029812812805,0.0,8.333334,8.333334,0.0,-0.041085053 +248.15033411979675,0.0,8.333334,8.333334,0.0,-0.041085053 +248.15968894958496,0.0,8.333334,8.333334,0.0,-0.0466352 +248.17029404640198,0.0,8.333334,8.333334,0.0,-0.0466352 +248.18022203445435,0.0,8.333334,8.333334,0.0,-0.0466352 +248.1899230480194,0.0,8.333334,8.333334,0.0,-0.0466352 +248.2003149986267,0.0,8.333334,8.333334,0.0,-0.0466352 +248.21031403541565,0.0,8.333334,8.333334,0.0,-0.044785153 +248.21951913833618,0.0,8.333334,8.333334,0.0,-0.044785153 +248.22976207733154,0.0,8.333334,8.333334,0.0,-0.044785153 +248.23987913131714,0.0,8.333334,8.333334,0.0,-0.044785153 +248.25031995773315,0.0,8.333334,8.333334,0.0,-0.044785153 +248.2603030204773,0.0,8.333334,8.333334,0.0,-0.039235007 +248.27032494544983,0.0,8.333334,8.333334,0.0,-0.039235007 +248.27975797653198,0.0,8.333334,8.333334,0.0,-0.039235007 +248.29031205177307,0.0,8.333334,8.333334,0.0,-0.039235007 +248.30030703544617,0.0,8.333334,8.333334,0.0,-0.039235007 +248.30982613563538,0.0,8.333334,8.333334,0.0,-0.042935103 +248.32009196281433,0.0,8.333334,8.333334,0.0,-0.042935103 +248.32977509498596,0.0,8.333334,8.333334,0.0,-0.042935103 +248.34034395217896,0.0,8.333334,8.333334,0.0,-0.042935103 +248.35032391548157,0.0,8.333334,8.333334,0.0,-0.042935103 +248.3603241443634,0.0,8.333334,8.333334,0.0,-0.0577355 +248.3695900440216,0.0,8.333334,8.333334,0.0,-0.0577355 +248.3803379535675,0.0,8.333334,8.333334,0.0,-0.0577355 +248.39032411575317,0.0,8.333334,8.333334,0.0,-0.0577355 +248.39992809295654,0.0,8.333334,8.333334,0.0,-0.0577355 +248.4094169139862,0.0,8.333334,8.333334,0.0,-0.041085053 +248.4203360080719,0.0,8.333334,8.333334,0.0,-0.041085053 +248.4297969341278,0.0,8.333334,8.333334,0.0,-0.041085053 +248.4400451183319,0.0,8.333334,8.333334,0.0,-0.041085053 +248.45034313201904,0.0,8.333334,8.333334,0.0,-0.041085053 +248.45943307876587,0.0,8.333334,8.333334,0.0,-0.0466352 +248.47032713890076,0.0,8.333334,8.333334,0.0,-0.0466352 +248.48032903671265,0.0,8.333334,8.333334,0.0,-0.0466352 +248.489825963974,0.0,8.333334,8.333334,0.0,-0.0466352 +248.5003490447998,0.0,8.333334,8.333334,0.0,-0.0466352 +248.51034712791443,0.0,8.333334,8.333334,0.0,-0.0466352 +248.51975393295288,0.0,8.333334,8.333334,0.0,-0.06328564 +248.52975797653198,0.0,8.333334,8.333334,0.0,-0.06328564 +248.54028606414795,0.0,7.575758,7.575758,0.0,-0.06328564 +248.55034708976746,0.0,7.575758,7.575758,0.0,-0.06328564 +248.56032705307007,0.0,7.575758,7.575758,0.0,-0.041085053 +248.56955814361572,0.0,7.575758,7.575758,0.0,-0.041085053 +248.58013701438904,0.0,7.575758,7.575758,0.0,-0.041085053 +248.59035205841064,0.0,7.575758,7.575758,0.0,-0.041085053 +248.60034608840942,0.0,7.575758,7.575758,0.0,-0.041085053 +248.6099729537964,0.0,7.575758,7.575758,0.0,-0.041085053 +248.62033796310425,0.0,7.575758,7.575758,0.0,-0.041085053 +248.62977004051208,0.0,7.575758,7.575758,0.0,-0.041085053 +248.6403410434723,0.0,7.575758,7.575758,0.0,-0.041085053 +248.6497359275818,0.0,7.575758,7.575758,0.0,-0.041085053 +248.6603500843048,0.0,7.575758,7.575758,0.0,-0.054035395 +248.67024207115173,0.0,7.575758,7.575758,0.0,-0.054035395 +248.67947506904602,0.0,7.575758,7.575758,0.0,-0.054035395 +248.69035410881042,0.0,7.575758,7.575758,0.0,-0.054035395 +248.69982600212097,0.0,7.575758,7.575758,0.0,-0.054035395 +248.71034812927246,0.0,7.575758,7.575758,0.0,-0.054035395 +248.7196500301361,0.0,7.575758,7.575758,0.0,-0.13913766 +248.7299439907074,0.0,7.575758,7.575758,0.0,-0.13913766 +248.74037098884583,0.0,7.575758,7.575758,0.0,-0.13913766 +248.75035500526428,0.0,7.575758,7.575758,0.0,-0.13913766 +248.75986313819885,0.0,7.575758,7.575758,0.0,-0.0466352 +248.76954793930054,0.0,7.575758,7.575758,0.0,-0.0466352 +248.77977108955383,0.0,7.575758,7.575758,0.0,-0.0466352 +248.79035997390747,0.0,7.575758,7.575758,0.0,-0.0466352 +248.80035996437073,0.0,7.575758,7.575758,0.0,-0.0466352 +248.8097529411316,0.0,7.575758,7.575758,0.0,-0.0466352 +248.8203001022339,0.0,7.575758,7.575758,0.0,-0.06328564 +248.8297679424286,0.0,7.575758,7.575758,0.0,-0.06328564 +248.84036207199097,0.0,7.575758,7.575758,0.0,-0.06328564 +248.8502390384674,0.0,7.575758,7.575758,0.0,-0.06328564 +248.8595929145813,0.0,7.575758,7.575758,0.0,-0.044785153 +248.86947202682495,0.0,7.575758,7.575758,0.0,-0.044785153 +248.88038110733032,0.0,7.575758,7.575758,0.0,-0.044785153 +248.89038395881653,0.0,7.575758,7.575758,0.0,-0.044785153 +248.89957213401794,0.0,7.575758,7.575758,0.0,-0.044785153 +248.91037702560425,0.0,7.575758,7.575758,0.0,-0.044785153 +248.9203760623932,0.0,7.575758,7.575758,0.0,-0.050335295 +248.9297571182251,0.0,7.575758,7.575758,0.0,-0.050335295 +248.94037199020386,0.0,7.575758,7.575758,0.0,-0.050335295 +248.94958305358887,0.0,7.575758,7.575758,0.0,-0.050335295 +248.9597029685974,0.0,7.575758,7.575758,0.0,-0.050335295 +248.9703869819641,0.0,7.575758,7.575758,0.0,-0.050335295 +248.9795160293579,0.0,7.575758,7.575758,0.0,-0.050335295 +248.98941206932068,0.0,7.575758,7.575758,0.0,-0.050335295 +249.00019907951355,0.0,7.575758,7.575758,0.0,-0.050335295 +249.01039910316467,0.0,7.575758,7.575758,0.0,-0.050335295 +249.02039003372192,0.0,7.575758,7.575758,0.0,-0.041085053 +249.02976202964783,0.0,7.575758,7.575758,0.0,-0.041085053 +249.03963494300842,0.0,7.575758,7.575758,0.0,-0.041085053 +249.05038499832153,0.0,7.575758,7.575758,0.0,-0.041085053 +249.059720993042,0.0,7.575758,7.575758,0.0,-0.041085053 +249.07025909423828,0.0,7.575758,7.575758,0.0,-0.041085053 +249.0804009437561,0.0,7.575758,7.575758,0.0,-0.041085053 +249.089604139328,0.0,7.575758,7.575758,0.0,-0.041085053 +249.1003930568695,0.0,7.575758,7.575758,0.0,-0.041085053 +249.11039996147156,0.0,7.575758,7.575758,0.0,-0.0466352 +249.12040209770203,0.0,7.575758,7.575758,0.0,-0.0466352 +249.12957406044006,0.0,7.575758,7.575758,0.0,-0.0466352 +249.13993906974792,0.0,7.575758,7.575758,0.0,-0.0466352 +249.15038800239563,0.0,7.575758,7.575758,0.0,-0.0466352 +249.1600639820099,0.0,7.575758,7.575758,0.0,-0.0466352 +249.169753074646,0.0,7.575758,7.575758,0.0,-0.0466352 +249.18038511276245,0.0,7.575758,7.575758,0.0,-0.0466352 +249.19039106369019,0.0,7.575758,7.575758,0.0,-0.0466352 +249.20040011405945,0.0,7.575758,7.575758,0.0,-0.0466352 +249.2104151248932,0.0,7.575758,7.575758,0.0,-0.029984765 +249.21957111358643,0.0,7.575758,7.575758,0.0,-0.029984765 +249.22979307174683,0.0,7.575758,7.575758,0.0,-0.029984765 +249.2404179573059,0.0,7.575758,7.575758,0.0,-0.029984765 +249.24989104270935,0.0,7.575758,7.575758,0.0,-0.029984765 +249.25998711585999,0.0,7.575758,7.575758,0.0,-0.0466352 +249.27041006088257,0.0,7.575758,7.575758,0.0,-0.0466352 +249.27958703041077,0.0,7.575758,7.575758,0.0,-0.0466352 +249.28991198539734,0.0,7.575758,7.575758,0.0,-0.0466352 +249.3003270626068,0.0,7.575758,7.575758,0.0,-0.0466352 +249.3094539642334,0.0,7.575758,7.575758,0.0,-0.015184363 +249.32004809379578,0.0,7.575758,7.575758,0.0,-0.015184363 +249.32982397079468,0.0,7.575758,7.575758,0.0,-0.015184363 +249.3397240638733,0.0,7.575758,7.575758,0.0,-0.015184363 +249.34946393966675,0.0,7.575758,7.575758,0.0,-0.015184363 +249.36041808128357,0.0,7.575758,7.575758,0.0,-0.050335295 +249.37041592597961,0.0,7.575758,7.575758,0.0,-0.050335295 +249.38042092323303,0.0,7.575758,7.575758,0.0,-0.050335295 +249.38944697380066,0.0,7.575758,7.575758,0.0,-0.050335295 +249.39995503425598,0.0,7.575758,7.575758,0.0,-0.050335295 +249.40984511375427,0.0,7.575758,7.575758,0.0,-0.06328564 +249.42033410072327,0.0,7.575758,7.575758,0.0,-0.06328564 +249.42954897880554,0.0,7.575758,7.575758,0.0,-0.06328564 +249.4404420852661,0.0,7.575758,7.575758,0.0,-0.06328564 +249.4504370689392,0.0,7.575758,7.575758,0.0,-0.06328564 +249.46041798591614,0.0,7.575758,7.575758,0.0,-0.0466352 +249.46965098381042,0.0,7.575758,7.575758,0.0,-0.0466352 +249.4803431034088,0.0,7.575758,7.575758,0.0,-0.0466352 +249.49004793167114,0.0,7.575758,7.575758,0.0,-0.0466352 +249.50044703483582,0.0,7.575758,7.575758,0.0,-0.0466352 +249.51042914390564,0.0,7.575758,7.575758,0.0,-0.0466352 +249.51955699920654,0.0,7.575758,7.575758,0.0,-0.039235007 +249.52978110313416,0.0,7.575758,7.575758,0.0,-0.039235007 +249.54042792320251,0.0,7.575758,7.575758,0.0,-0.039235007 +249.54984092712402,0.0,7.575758,7.575758,0.0,-0.039235007 +249.56027913093567,0.0,7.575758,7.575758,0.0,-0.050335295 +249.57035613059998,0.0,7.575758,7.575758,0.0,-0.050335295 +249.58015298843384,0.0,7.575758,7.575758,0.0,-0.050335295 +249.59043407440186,0.0,7.575758,7.575758,0.0,-0.050335295 +249.6002221107483,0.0,7.575758,7.575758,0.0,-0.050335295 +249.60946393013,0.0,8.333334,8.333334,0.0,-0.050335295 +249.62042713165283,0.0,8.333334,8.333334,0.0,-0.052185345 +249.6300449371338,0.0,8.333334,8.333334,0.0,-0.052185345 +249.6394979953766,0.0,8.333334,8.333334,0.0,-0.052185345 +249.6504271030426,0.0,8.333334,8.333334,0.0,-0.052185345 +249.6603720188141,0.0,7.575758,7.575758,0.0,-0.06698574 +249.66961193084717,0.0,8.333334,8.333334,0.0,-0.06698574 +249.68044900894165,0.0,8.333334,8.333334,0.0,-0.06698574 +249.69007396697998,0.0,8.333334,8.333334,0.0,-0.06698574 +249.700453042984,0.0,8.333334,8.333334,0.0,-0.06698574 +249.71024107933044,0.0,8.333334,8.333334,0.0,-0.06698574 +249.72046494483948,0.0,8.333334,8.333334,0.0,-0.022584556 +249.72970700263977,0.0,8.333334,8.333334,0.0,-0.022584556 +249.74024295806885,0.0,8.333334,8.333334,0.0,-0.022584556 +249.75036597251892,0.0,8.333334,8.333334,0.0,-0.022584556 +249.75977110862732,0.0,8.333334,8.333334,0.0,-0.042935103 +249.77048110961914,0.0,8.333334,8.333334,0.0,-0.042935103 +249.77992296218872,0.0,8.333334,8.333334,0.0,-0.042935103 +249.79047393798828,0.0,8.333334,8.333334,0.0,-0.042935103 +249.80046892166138,0.0,8.333334,8.333334,0.0,-0.042935103 +249.81037712097168,0.0,8.333334,8.333334,0.0,-0.0466352 +249.820454120636,0.0,8.333334,8.333334,0.0,-0.0466352 +249.82980704307556,0.0,8.333334,8.333334,0.0,-0.0466352 +249.8403880596161,0.0,8.333334,8.333334,0.0,-0.0466352 +249.8504660129547,0.0,8.333334,8.333334,0.0,-0.0466352 +249.8593990802765,0.0,8.333334,8.333334,0.0,-0.044785153 +249.86977005004883,0.0,8.333334,8.333334,0.0,-0.044785153 +249.8795759677887,0.0,8.333334,8.333334,0.0,-0.044785153 +249.89046692848206,0.0,8.333334,8.333334,0.0,-0.044785153 +249.90047407150269,0.0,8.333334,8.333334,0.0,-0.044785153 +249.90964102745056,0.0,8.333334,8.333334,0.0,-0.044785153 +249.92045402526855,0.0,8.333334,8.333334,0.0,-0.0577355 +249.92980098724365,0.0,8.333334,8.333334,0.0,-0.0577355 +249.94046092033386,0.0,8.333334,8.333334,0.0,-0.0577355 +249.94950795173645,0.0,8.333334,8.333334,0.0,-0.0577355 +249.95962595939636,0.0,8.333334,8.333334,0.0,-0.054035395 +249.9704749584198,0.0,8.333334,8.333334,0.0,-0.054035395 +249.98048400878906,0.0,8.333334,8.333334,0.0,-0.054035395 +249.99050307273865,0.0,8.333334,8.333334,0.0,-0.054035395 +250.00005197525024,0.0,8.333334,8.333334,0.0,-0.054035395 +250.01036095619202,0.0,8.333334,8.333334,0.0,-0.042935103 +250.02040791511536,0.0,8.333334,8.333334,0.0,-0.042935103 +250.02939200401306,0.0,8.333334,8.333334,0.0,-0.042935103 +250.03959107398987,0.0,8.333334,8.333334,0.0,-0.042935103 +250.04946899414062,0.0,8.333334,8.333334,0.0,-0.042935103 +250.0600619316101,0.0,8.333334,8.333334,0.0,-0.072535895 +250.07048511505127,0.0,8.333334,8.333334,0.0,-0.072535895 +250.08048510551453,0.0,8.333334,8.333334,0.0,-0.072535895 +250.0904929637909,0.0,8.333334,8.333334,0.0,-0.072535895 +250.10048913955688,0.0,8.333334,8.333334,0.0,-0.072535895 +250.11038303375244,0.0,8.333334,8.333334,0.0,-0.042935103 +250.12024903297424,0.0,8.333334,8.333334,0.0,-0.042935103 +250.1296570301056,0.0,8.333334,8.333334,0.0,-0.042935103 +250.13958311080933,0.0,8.333334,8.333334,0.0,-0.042935103 +250.15048098564148,0.0,8.333334,8.333334,0.0,-0.042935103 +250.16050696372986,0.0,8.333334,8.333334,0.0,-0.042935103 +250.16945791244507,0.0,8.333334,8.333334,0.0,-0.042935103 +250.18032503128052,0.0,8.333334,8.333334,0.0,-0.042935103 +250.19048500061035,0.0,8.333334,8.333334,0.0,-0.042935103 +250.20038509368896,0.0,8.333334,8.333334,0.0,-0.042935103 +250.20958614349365,0.0,8.333334,8.333334,0.0,-0.05588545 +250.21976399421692,0.0,8.333334,8.333334,0.0,-0.05588545 +250.22978496551514,0.0,8.333334,8.333334,0.0,-0.05588545 +250.24051213264465,0.0,8.333334,8.333334,0.0,-0.05588545 +250.25048899650574,0.0,8.333334,8.333334,0.0,-0.05588545 +250.2599139213562,0.0,8.333334,8.333334,0.0,-0.0466352 +250.2705020904541,0.0,8.333334,8.333334,0.0,-0.0466352 +250.28051114082336,0.0,8.333334,8.333334,0.0,-0.0466352 +250.2896590232849,0.0,8.333334,8.333334,0.0,-0.0466352 +250.3005120754242,0.0,8.333334,8.333334,0.0,-0.0466352 +250.3098590373993,0.0,8.333334,8.333334,0.0,-0.07623599 +250.3196189403534,0.0,8.333334,8.333334,0.0,-0.07623599 +250.32981395721436,0.0,8.333334,8.333334,0.0,-0.07623599 +250.34050607681274,0.0,8.333334,8.333334,0.0,-0.07623599 +250.3505129814148,0.0,8.333334,8.333334,0.0,-0.07623599 +250.36052703857422,0.0,8.333334,8.333334,0.0,-0.052185345 +250.36988592147827,0.0,8.333334,8.333334,0.0,-0.052185345 +250.38039708137512,0.0,8.333334,8.333334,0.0,-0.052185345 +250.38939499855042,0.0,8.333334,8.333334,0.0,-0.052185345 +250.39985704421997,0.0,8.333334,8.333334,0.0,-0.052185345 +250.4105200767517,0.0,8.333334,8.333334,0.0,-0.029984765 +250.42052507400513,0.0,8.333334,8.333334,0.0,-0.029984765 +250.42940092086792,0.0,8.333334,8.333334,0.0,-0.029984765 +250.44051694869995,0.0,8.333334,8.333334,0.0,-0.029984765 +250.45009899139404,0.0,8.333334,8.333334,0.0,-0.029984765 +250.46051812171936,0.0,8.333334,8.333334,0.0,-0.054035395 +250.46972703933716,0.0,8.333334,8.333334,0.0,-0.054035395 +250.4798059463501,0.0,8.333334,8.333334,0.0,-0.054035395 +250.48974204063416,0.0,8.333334,8.333334,0.0,-0.054035395 +250.50053310394287,0.0,8.333334,8.333334,0.0,-0.054035395 +250.51036500930786,0.0,8.333334,8.333334,0.0,-0.044785153 +250.51976013183594,0.0,8.333334,8.333334,0.0,-0.044785153 +250.52978491783142,0.0,8.333334,8.333334,0.0,-0.044785153 +250.54052996635437,0.0,8.333334,8.333334,0.0,-0.044785153 +250.5505211353302,0.0,7.575758,7.575758,0.0,-0.044785153 +250.5598349571228,0.0,7.575758,7.575758,0.0,-0.05588545 +250.56939601898193,0.0,7.575758,7.575758,0.0,-0.05588545 +250.57957792282104,0.0,7.575758,7.575758,0.0,-0.05588545 +250.59052300453186,0.0,7.575758,7.575758,0.0,-0.05588545 +250.60053300857544,0.0,7.575758,7.575758,0.0,-0.05588545 +250.610356092453,0.0,7.575758,7.575758,0.0,-0.05588545 +250.6194019317627,0.0,7.575758,7.575758,0.0,-0.05588545 +250.6297869682312,0.0,7.575758,7.575758,0.0,-0.05588545 +250.64053606987,0.0,7.575758,7.575758,0.0,-0.05588545 +250.64967393875122,0.0,7.575758,7.575758,0.0,-0.05588545 +250.65940499305725,0.0,7.575758,7.575758,0.0,-0.033684865 +250.6694610118866,0.0,7.575758,7.575758,0.0,-0.033684865 +250.68054008483887,0.0,7.575758,7.575758,0.0,-0.033684865 +250.69054913520813,0.0,7.575758,7.575758,0.0,-0.033684865 +250.6996259689331,0.0,7.575758,7.575758,0.0,-0.033684865 +250.71008205413818,0.0,7.575758,7.575758,0.0,-0.033684865 +250.72055196762085,0.0,7.575758,7.575758,0.0,-0.06513569 +250.7298140525818,0.0,7.575758,7.575758,0.0,-0.06513569 +250.74039506912231,0.0,7.575758,7.575758,0.0,-0.06513569 +250.74941611289978,0.0,7.575758,7.575758,0.0,-0.06513569 +250.7603530883789,0.0,7.575758,7.575758,0.0,-0.0466352 +250.77056407928467,0.0,7.575758,7.575758,0.0,-0.0466352 +250.7796220779419,0.0,7.575758,7.575758,0.0,-0.0466352 +250.79054999351501,0.0,7.575758,7.575758,0.0,-0.0466352 +250.80054712295532,0.0,7.575758,7.575758,0.0,-0.0466352 +250.8103621006012,0.0,7.575758,7.575758,0.0,-0.052185345 +250.81962203979492,0.0,7.575758,7.575758,0.0,-0.052185345 +250.82980799674988,0.0,7.575758,7.575758,0.0,-0.052185345 +250.8394079208374,0.0,7.575758,7.575758,0.0,-0.052185345 +250.85044693946838,0.0,7.575758,7.575758,0.0,-0.052185345 +250.85945200920105,0.0,7.575758,7.575758,0.0,-0.042935103 +250.87057209014893,0.0,7.575758,7.575758,0.0,-0.042935103 +250.87948393821716,0.0,7.575758,7.575758,0.0,-0.042935103 +250.8905599117279,0.0,7.575758,7.575758,0.0,-0.042935103 +250.90055513381958,0.0,7.575758,7.575758,0.0,-0.042935103 +250.90945506095886,0.0,7.575758,7.575758,0.0,-0.042935103 +250.92035913467407,0.0,7.575758,7.575758,0.0,-0.041085053 +250.92940497398376,0.0,7.575758,7.575758,0.0,-0.041085053 +250.94020414352417,0.0,7.575758,7.575758,0.0,-0.041085053 +250.9495370388031,0.0,7.575758,7.575758,0.0,-0.041085053 +250.9605610370636,0.0,7.575758,7.575758,0.0,-0.03553491 +250.9695119857788,0.0,7.575758,7.575758,0.0,-0.03553491 +250.9805829524994,0.0,7.575758,7.575758,0.0,-0.03553491 +250.99057793617249,0.0,7.575758,7.575758,0.0,-0.03553491 +251.00056910514832,0.0,7.575758,7.575758,0.0,-0.03553491 +251.0103690624237,0.0,7.575758,7.575758,0.0,-0.0577355 +251.01939797401428,0.0,7.575758,7.575758,0.0,-0.0577355 +251.02979111671448,0.0,7.575758,7.575758,0.0,-0.0577355 +251.0395119190216,0.0,7.575758,7.575758,0.0,-0.0577355 +251.05057001113892,0.0,7.575758,7.575758,0.0,-0.0577355 +251.06056809425354,0.0,7.575758,7.575758,0.0,-0.052185345 +251.07056403160095,0.0,7.575758,7.575758,0.0,-0.052185345 +251.08059000968933,0.0,7.575758,7.575758,0.0,-0.052185345 +251.09058499336243,0.0,7.575758,7.575758,0.0,-0.052185345 +251.1004250049591,0.0,7.575758,7.575758,0.0,-0.052185345 +251.1094150543213,0.0,7.575758,7.575758,0.0,-0.08733628 +251.1205780506134,0.0,7.575758,7.575758,0.0,-0.08733628 +251.12972497940063,0.0,7.575758,7.575758,0.0,-0.08733628 +251.1405861377716,0.0,7.575758,7.575758,0.0,-0.08733628 +251.1497929096222,0.0,7.575758,7.575758,0.0,-0.08733628 +251.16059112548828,0.0,7.575758,7.575758,0.0,-0.06698574 +251.16947197914124,0.0,7.575758,7.575758,0.0,-0.06698574 +251.18059992790222,0.0,7.575758,7.575758,0.0,-0.06698574 +251.1897749900818,0.0,7.575758,7.575758,0.0,-0.06698574 +251.1994321346283,0.0,7.575758,7.575758,0.0,-0.06698574 +251.20985198020935,0.0,7.575758,7.575758,0.0,-0.0466352 +251.21981692314148,0.0,7.575758,7.575758,0.0,-0.0466352 +251.2298219203949,0.0,7.575758,7.575758,0.0,-0.0466352 +251.24059295654297,0.0,7.575758,7.575758,0.0,-0.0466352 +251.25058698654175,0.0,7.575758,7.575758,0.0,-0.0466352 +251.2606110572815,0.0,7.575758,7.575758,0.0,-0.020734508 +251.2699749469757,0.0,7.575758,7.575758,0.0,-0.020734508 +251.28042197227478,0.0,7.575758,7.575758,0.0,-0.020734508 +251.28940510749817,0.0,7.575758,7.575758,0.0,-0.020734508 +251.29940795898438,0.0,7.575758,7.575758,0.0,-0.020734508 +251.30988693237305,0.0,7.575758,7.575758,0.0,-0.052185345 +251.3195390701294,0.0,7.575758,7.575758,0.0,-0.052185345 +251.33010005950928,0.0,7.575758,7.575758,0.0,-0.052185345 +251.33979511260986,0.0,7.575758,7.575758,0.0,-0.052185345 +251.35019612312317,0.0,7.575758,7.575758,0.0,-0.052185345 +251.36059498786926,0.0,7.575758,7.575758,0.0,-0.033684865 +251.37027597427368,0.0,7.575758,7.575758,0.0,-0.033684865 +251.3794240951538,0.0,7.575758,7.575758,0.0,-0.033684865 +251.39061212539673,0.0,7.575758,7.575758,0.0,-0.033684865 +251.3999741077423,0.0,7.575758,7.575758,0.0,-0.033684865 +251.41059708595276,0.0,7.575758,7.575758,0.0,-0.03183481 +251.42061400413513,0.0,7.575758,7.575758,0.0,-0.03183481 +251.42960405349731,0.0,7.575758,7.575758,0.0,-0.03183481 +251.44059491157532,0.0,7.575758,7.575758,0.0,-0.03183481 +251.44995713233948,0.0,7.575758,7.575758,0.0,-0.03183481 +251.46013498306274,0.0,7.575758,7.575758,0.0,-0.041085053 +251.46940898895264,0.0,7.575758,7.575758,0.0,-0.041085053 +251.48061609268188,0.0,7.575758,7.575758,0.0,-0.041085053 +251.4900929927826,0.0,7.575758,7.575758,0.0,-0.041085053 +251.50061202049255,0.0,7.575758,7.575758,0.0,-0.041085053 +251.51039600372314,0.0,7.575758,7.575758,0.0,-0.054035395 +251.51948809623718,0.0,7.575758,7.575758,0.0,-0.054035395 +251.5298159122467,0.0,7.575758,7.575758,0.0,-0.054035395 +251.54062795639038,0.0,7.575758,7.575758,0.0,-0.054035395 +251.55001306533813,0.0,8.333334,8.333334,0.0,-0.054035395 +251.55950903892517,0.0,8.333334,8.333334,0.0,-0.033684865 +251.57045197486877,0.0,8.333334,8.333334,0.0,-0.033684865 +251.58017110824585,0.0,8.333334,8.333334,0.0,-0.033684865 +251.59062910079956,0.0,8.333334,8.333334,0.0,-0.033684865 +251.59969997406006,0.0,8.333334,8.333334,0.0,-0.033684865 +251.61037302017212,0.0,8.333334,8.333334,0.0,-0.050335295 +251.6206340789795,0.0,8.333334,8.333334,0.0,-0.050335295 +251.6298270225525,0.0,8.333334,8.333334,0.0,-0.050335295 +251.63987398147583,0.0,8.333334,8.333334,0.0,-0.050335295 +251.65063500404358,0.0,8.333334,8.333334,0.0,-0.050335295 +251.66063499450684,0.0,8.333334,8.333334,0.0,-0.041085053 +251.67024493217468,0.0,8.333334,8.333334,0.0,-0.041085053 +251.67988204956055,0.0,8.333334,8.333334,0.0,-0.041085053 +251.6902370452881,0.0,8.333334,8.333334,0.0,-0.041085053 +251.70063591003418,0.0,8.333334,8.333334,0.0,-0.041085053 +251.70964002609253,0.0,8.333334,8.333334,0.0,-0.041085053 +251.72065496444702,0.0,8.333334,8.333334,0.0,-0.0466352 +251.72974014282227,0.0,8.333334,8.333334,0.0,-0.0466352 +251.73979592323303,0.0,8.333334,8.333334,0.0,-0.0466352 +251.75038409233093,0.0,8.333334,8.333334,0.0,-0.0466352 +251.7600860595703,0.0,8.333334,8.333334,0.0,-0.054035395 +251.77063393592834,0.0,8.333334,8.333334,0.0,-0.054035395 +251.78063702583313,0.0,8.333334,8.333334,0.0,-0.054035395 +251.7906460762024,0.0,8.333334,8.333334,0.0,-0.054035395 +251.80063009262085,0.0,8.333334,8.333334,0.0,-0.054035395 +251.8104031085968,0.0,8.333334,8.333334,0.0,-0.07438594 +251.81941103935242,0.0,8.333334,8.333334,0.0,-0.07438594 +251.82982897758484,0.0,8.333334,8.333334,0.0,-0.07438594 +251.84028792381287,0.0,8.333334,8.333334,0.0,-0.07438594 +251.8504250049591,0.0,8.333334,8.333334,0.0,-0.07438594 +251.85943412780762,0.0,8.333334,8.333334,0.0,-0.042935103 +251.8706409931183,0.0,8.333334,8.333334,0.0,-0.042935103 +251.88064098358154,0.0,8.333334,8.333334,0.0,-0.042935103 +251.89066004753113,0.0,8.333334,8.333334,0.0,-0.042935103 +251.90042304992676,0.0,8.333334,8.333334,0.0,-0.042935103 +251.90939712524414,0.0,8.333334,8.333334,0.0,-0.042935103 +251.92044806480408,0.0,8.333334,8.333334,0.0,-0.026284654 +251.92982602119446,0.0,8.333334,8.333334,0.0,-0.026284654 +251.9405379295349,0.0,8.333334,8.333334,0.0,-0.026284654 +251.94954299926758,0.0,8.333334,8.333334,0.0,-0.026284654 +251.96064805984497,0.0,8.333334,8.333334,0.0,-0.041085053 +251.9694380760193,0.0,8.333334,8.333334,0.0,-0.041085053 +251.9806649684906,0.0,8.333334,8.333334,0.0,-0.041085053 +251.99025297164917,0.0,8.333334,8.333334,0.0,-0.041085053 +252.00036597251892,0.0,8.333334,8.333334,0.0,-0.041085053 +252.0095899105072,0.0,8.333334,8.333334,0.0,-0.041085053 +252.02065205574036,0.0,8.333334,8.333334,0.0,-0.039235007 +252.02981400489807,0.0,8.333334,8.333334,0.0,-0.039235007 +252.03964495658875,0.0,8.333334,8.333334,0.0,-0.039235007 +252.05065202713013,0.0,8.333334,8.333334,0.0,-0.039235007 +252.0606551170349,0.0,8.333334,8.333334,0.0,-0.054035395 +252.07066011428833,0.0,8.333334,8.333334,0.0,-0.054035395 +252.0800280570984,0.0,8.333334,8.333334,0.0,-0.054035395 +252.08972311019897,0.0,8.333334,8.333334,0.0,-0.054035395 +252.1001660823822,0.0,8.333334,8.333334,0.0,-0.054035395 +252.1103959083557,0.0,8.333334,8.333334,0.0,-0.052185345 +252.12067914009094,0.0,8.333334,8.333334,0.0,-0.052185345 +252.12973809242249,0.0,8.333334,8.333334,0.0,-0.052185345 +252.14067792892456,0.0,8.333334,8.333334,0.0,-0.052185345 +252.1495840549469,0.0,8.333334,8.333334,0.0,-0.052185345 +252.16066813468933,0.0,8.333334,8.333334,0.0,-0.052185345 +252.16990113258362,0.0,8.333334,8.333334,0.0,-0.052185345 +252.17984890937805,0.0,8.333334,8.333334,0.0,-0.052185345 +252.1903200149536,0.0,8.333334,8.333334,0.0,-0.052185345 +252.20069313049316,0.0,8.333334,8.333334,0.0,-0.052185345 +252.2099471092224,0.0,8.333334,8.333334,0.0,-0.052185345 +252.21938800811768,0.0,8.333334,8.333334,0.0,-0.052185345 +252.22956705093384,0.0,8.333334,8.333334,0.0,-0.052185345 +252.24068403244019,0.0,8.333334,8.333334,0.0,-0.052185345 +252.25009107589722,0.0,8.333334,8.333334,0.0,-0.052185345 +252.25976014137268,0.0,8.333334,8.333334,0.0,-0.044785153 +252.27037501335144,0.0,8.333334,8.333334,0.0,-0.044785153 +252.2806761264801,0.0,8.333334,8.333334,0.0,-0.044785153 +252.2906789779663,0.0,8.333334,8.333334,0.0,-0.044785153 +252.30067992210388,0.0,8.333334,8.333334,0.0,-0.044785153 +252.30992007255554,0.0,8.333334,8.333334,0.0,-0.044785153 +252.32069396972656,0.0,8.333334,8.333334,0.0,-0.044785153 +252.3298180103302,0.0,8.333334,8.333334,0.0,-0.044785153 +252.33987498283386,0.0,8.333334,8.333334,0.0,-0.044785153 +252.34960198402405,0.0,8.333334,8.333334,0.0,-0.044785153 +252.35939598083496,0.0,8.333334,8.333334,0.0,-0.0466352 +252.37070393562317,0.0,8.333334,8.333334,0.0,-0.0466352 +252.3806929588318,0.0,8.333334,8.333334,0.0,-0.0466352 +252.3906979560852,0.0,8.333334,8.333334,0.0,-0.0466352 +252.39999413490295,0.0,8.333334,8.333334,0.0,-0.0466352 +252.41049098968506,0.0,8.333334,8.333334,0.0,-0.015184363 +252.41941499710083,0.0,8.333334,8.333334,0.0,-0.015184363 +252.42985796928406,0.0,8.333334,8.333334,0.0,-0.015184363 +252.43948793411255,0.0,8.333334,8.333334,0.0,-0.015184363 +252.45032906532288,0.0,8.333334,8.333334,0.0,-0.015184363 +252.4607129096985,0.0,8.333334,8.333334,0.0,0.038467064 +252.46942806243896,0.0,8.333334,8.333334,0.0,0.038467064 +252.4798939228058,0.0,8.333334,8.333334,0.0,0.038467064 +252.49006009101868,0.0,8.333334,8.333334,0.0,0.038467064 +252.49960708618164,0.0,8.333334,8.333334,0.0,0.038467064 +252.5103919506073,0.0,8.333334,8.333334,0.0,-0.039235007 +252.52036213874817,0.0,8.333334,8.333334,0.0,-0.039235007 +252.52982902526855,0.0,8.333334,8.333334,0.0,-0.039235007 +252.54033613204956,0.0,8.333334,8.333334,0.0,-0.039235007 +252.5507049560547,0.0,8.333334,8.333334,0.0,-0.039235007 +252.56069803237915,0.0,8.333334,8.333334,0.0,-0.05588545 +252.57071900367737,0.0,8.333334,8.333334,0.0,-0.05588545 +252.57980108261108,0.0,8.333334,8.333334,0.0,-0.05588545 +252.5907220840454,0.0,8.333334,8.333334,0.0,-0.05588545 +252.59974813461304,0.0,8.333334,8.333334,0.0,-0.05588545 +252.6102271080017,0.0,8.333334,8.333334,0.0,-0.05588545 +252.61941409111023,0.0,8.333334,8.333334,0.0,-0.041085053 +252.6298110485077,0.0,7.575758,7.575758,0.0,-0.041085053 +252.64073300361633,0.0,7.575758,7.575758,0.0,-0.041085053 +252.65072798728943,0.0,7.575758,7.575758,0.0,-0.041085053 +252.6600091457367,0.0,7.575758,7.575758,0.0,-0.0466352 +252.67024493217468,0.0,7.575758,7.575758,0.0,-0.0466352 +252.68071603775024,0.0,7.575758,7.575758,0.0,-0.0466352 +252.69008708000183,0.0,7.575758,7.575758,0.0,-0.0466352 +252.70004796981812,0.0,7.575758,7.575758,0.0,-0.0466352 +252.71038603782654,0.0,7.575758,7.575758,0.0,-0.06883579 +252.7203221321106,0.0,7.575758,7.575758,0.0,-0.06883579 +252.72972106933594,0.0,7.575758,7.575758,0.0,-0.06883579 +252.7402229309082,0.0,7.575758,7.575758,0.0,-0.06883579 +252.7502019405365,0.0,7.575758,7.575758,0.0,-0.06883579 +252.76033306121826,0.0,7.575758,7.575758,0.0,-0.050335295 +252.76961493492126,0.0,7.575758,7.575758,0.0,-0.050335295 +252.78072309494019,0.0,7.575758,7.575758,0.0,-0.050335295 +252.7899191379547,0.0,7.575758,7.575758,0.0,-0.050335295 +252.80074095726013,0.0,7.575758,7.575758,0.0,-0.050335295 +252.8103370666504,0.0,7.575758,7.575758,0.0,-0.050335295 +252.82040309906006,0.0,7.575758,7.575758,0.0,-0.054035395 +252.82982110977173,0.0,7.575758,7.575758,0.0,-0.054035395 +252.84027791023254,0.0,7.575758,7.575758,0.0,-0.054035395 +252.85042309761047,0.0,7.575758,7.575758,0.0,-0.054035395 +252.85945010185242,0.0,7.575758,7.575758,0.0,-0.015184363 +252.870747089386,0.0,7.575758,7.575758,0.0,-0.015184363 +252.87978291511536,0.0,7.575758,7.575758,0.0,-0.015184363 +252.88948798179626,0.0,7.575758,7.575758,0.0,-0.015184363 +252.90014910697937,0.0,7.575758,7.575758,0.0,-0.015184363 +252.9095540046692,0.0,7.575758,7.575758,0.0,-0.015184363 +252.91951203346252,0.0,7.575758,7.575758,0.0,-0.050335295 +252.92984890937805,0.0,7.575758,7.575758,0.0,-0.050335295 +252.94053196907043,0.0,7.575758,7.575758,0.0,-0.050335295 +252.9495599269867,0.0,7.575758,7.575758,0.0,-0.050335295 +252.9606580734253,0.0,7.575758,7.575758,0.0,-0.039235007 +252.9696400165558,0.0,7.575758,7.575758,0.0,-0.039235007 +252.98075604438782,0.0,7.575758,7.575758,0.0,-0.039235007 +252.9895749092102,0.0,7.575758,7.575758,0.0,-0.039235007 +253.00075006484985,0.0,7.575758,7.575758,0.0,-0.039235007 +253.00959396362305,0.0,7.575758,7.575758,0.0,-0.039235007 +253.02074098587036,0.0,7.575758,7.575758,0.0,-0.041085053 +253.03018307685852,0.0,7.575758,7.575758,0.0,-0.041085053 +253.03961205482483,0.0,7.575758,7.575758,0.0,-0.041085053 +253.05048894882202,0.0,7.575758,7.575758,0.0,-0.041085053 +253.05947709083557,0.0,7.575758,7.575758,0.0,-0.05588545 +253.06988191604614,0.0,7.575758,7.575758,0.0,-0.05588545 +253.08033394813538,0.0,7.575758,7.575758,0.0,-0.05588545 +253.090754032135,0.0,7.575758,7.575758,0.0,-0.05588545 +253.09982109069824,0.0,7.575758,7.575758,0.0,-0.05588545 +253.1104030609131,0.0,7.575758,7.575758,0.0,-0.0466352 +253.11948108673096,0.0,7.575758,7.575758,0.0,-0.0466352 +253.1296830177307,0.0,7.575758,7.575758,0.0,-0.0466352 +253.14037799835205,0.0,7.575758,7.575758,0.0,-0.0466352 +253.15007305145264,0.0,7.575758,7.575758,0.0,-0.0466352 +253.1607849597931,0.0,7.575758,7.575758,0.0,-0.050335295 +253.17032194137573,0.0,7.575758,7.575758,0.0,-0.050335295 +253.18076992034912,0.0,7.575758,7.575758,0.0,-0.050335295 +253.19076991081238,0.0,7.575758,7.575758,0.0,-0.050335295 +253.20076203346252,0.0,7.575758,7.575758,0.0,-0.050335295 +253.21077394485474,0.0,7.575758,7.575758,0.0,-0.044785153 +253.2197721004486,0.0,7.575758,7.575758,0.0,-0.044785153 +253.2298300266266,0.0,7.575758,7.575758,0.0,-0.044785153 +253.2394199371338,0.0,7.575758,7.575758,0.0,-0.044785153 +253.24939799308777,0.0,7.575758,7.575758,0.0,-0.044785153 +253.26032996177673,0.0,7.575758,7.575758,0.0,-0.042935103 +253.2707860469818,0.0,7.575758,7.575758,0.0,-0.042935103 +253.28077292442322,0.0,7.575758,7.575758,0.0,-0.042935103 +253.290785074234,0.0,7.575758,7.575758,0.0,-0.042935103 +253.3007731437683,0.0,7.575758,7.575758,0.0,-0.042935103 +253.30983710289001,0.0,7.575758,7.575758,0.0,-0.033684865 +253.31939101219177,0.0,7.575758,7.575758,0.0,-0.033684865 +253.32984495162964,0.0,7.575758,7.575758,0.0,-0.033684865 +253.3400890827179,0.0,7.575758,7.575758,0.0,-0.033684865 +253.35032296180725,0.0,7.575758,7.575758,0.0,-0.033684865 +253.3608000278473,0.0,7.575758,7.575758,0.0,-0.042935103 +253.37080001831055,0.0,7.575758,7.575758,0.0,-0.042935103 +253.3803460597992,0.0,7.575758,7.575758,0.0,-0.042935103 +253.39067912101746,0.0,7.575758,7.575758,0.0,-0.042935103 +253.3996160030365,0.0,7.575758,7.575758,0.0,-0.042935103 +253.40994906425476,0.0,7.575758,7.575758,0.0,-0.06698574 +253.42077708244324,0.0,7.575758,7.575758,0.0,-0.06698574 +253.42985606193542,0.0,7.575758,7.575758,0.0,-0.06698574 +253.44032311439514,0.0,7.575758,7.575758,0.0,-0.06698574 +253.45080494880676,0.0,7.575758,7.575758,0.0,-0.06698574 +253.46079301834106,0.0,7.575758,7.575758,0.0,-0.050335295 +253.47079801559448,0.0,8.333334,8.333334,0.0,-0.050335295 +253.47980308532715,0.0,8.333334,8.333334,0.0,-0.050335295 +253.48997807502747,0.0,8.333334,8.333334,0.0,-0.050335295 +253.49980998039246,0.0,8.333334,8.333334,0.0,-0.050335295 +253.5095500946045,0.0,8.333334,8.333334,0.0,-0.050335295 +253.52080512046814,0.0,8.333334,8.333334,0.0,-0.042935103 +253.52983498573303,0.0,8.333334,8.333334,0.0,-0.042935103 +253.54078793525696,0.0,8.333334,8.333334,0.0,-0.042935103 +253.5507950782776,0.0,8.333334,8.333334,0.0,-0.042935103 +253.56001710891724,0.0,8.333334,8.333334,0.0,-0.06698574 +253.5708179473877,0.0,8.333334,8.333334,0.0,-0.06698574 +253.58007907867432,0.0,8.333334,8.333334,0.0,-0.06698574 +253.58967399597168,0.0,8.333334,8.333334,0.0,-0.06698574 +253.60080909729004,0.0,8.333334,8.333334,0.0,-0.06698574 +253.6104040145874,0.0,8.333334,8.333334,0.0,-0.042935103 +253.6203179359436,0.0,8.333334,8.333334,0.0,-0.042935103 +253.62982511520386,0.0,8.333334,8.333334,0.0,-0.042935103 +253.64018511772156,0.0,8.333334,8.333334,0.0,-0.042935103 +253.65082502365112,0.0,8.333334,8.333334,0.0,-0.042935103 +253.65961813926697,0.0,8.333334,8.333334,0.0,-0.052185345 +253.67016005516052,0.0,8.333334,8.333334,0.0,-0.052185345 +253.6795301437378,0.0,8.333334,8.333334,0.0,-0.052185345 +253.6896710395813,0.0,8.333334,8.333334,0.0,-0.052185345 +253.70081996917725,0.0,8.333334,8.333334,0.0,-0.052185345 +253.71031594276428,0.0,8.333334,8.333334,0.0,-0.052185345 +253.72038912773132,0.0,8.333334,8.333334,0.0,-0.050335295 +253.72984313964844,0.0,8.333334,8.333334,0.0,-0.050335295 +253.74082899093628,0.0,8.333334,8.333334,0.0,-0.050335295 +253.7497501373291,0.0,8.333334,8.333334,0.0,-0.050335295 +253.7602219581604,0.0,8.333334,8.333334,0.0,-0.06328564 +253.7694010734558,0.0,8.333334,8.333334,0.0,-0.06328564 +253.78084301948547,0.0,8.333334,8.333334,0.0,-0.06328564 +253.79070711135864,0.0,8.333334,8.333334,0.0,-0.06328564 +253.80030703544617,0.0,8.333334,8.333334,0.0,-0.06328564 +253.80952095985413,0.0,8.333334,8.333334,0.0,-0.06328564 +253.82082104682922,0.0,8.333334,8.333334,0.0,-0.041085053 +253.83083605766296,0.0,8.333334,8.333334,0.0,-0.041085053 +253.84082698822021,0.0,8.333334,8.333334,0.0,-0.041085053 +253.85027503967285,0.0,8.333334,8.333334,0.0,-0.041085053 +253.85949993133545,0.0,8.333334,8.333334,0.0,-0.039235007 +253.87083101272583,0.0,8.333334,8.333334,0.0,-0.039235007 +253.87985706329346,0.0,8.333334,8.333334,0.0,-0.039235007 +253.88963103294373,0.0,8.333334,8.333334,0.0,-0.039235007 +253.89972496032715,0.0,8.333334,8.333334,0.0,-0.039235007 +253.91040706634521,0.0,8.333334,8.333334,0.0,-0.05588545 +253.9208369255066,0.0,8.333334,8.333334,0.0,-0.05588545 +253.92984414100647,0.0,8.333334,8.333334,0.0,-0.05588545 +253.94016098976135,0.0,8.333334,8.333334,0.0,-0.05588545 +253.95084309577942,0.0,8.333334,8.333334,0.0,-0.05588545 +253.96003007888794,0.0,8.333334,8.333334,0.0,-0.042935103 +253.9698350429535,0.0,8.333334,8.333334,0.0,-0.042935103 +253.9802930355072,0.0,8.333334,8.333334,0.0,-0.042935103 +253.99084496498108,0.0,9.090909,9.090909,0.0,-0.042935103 +254.0008521080017,0.0,9.090909,9.090909,0.0,-0.042935103 +254.01040506362915,0.0,9.090909,9.090909,0.0,-0.050335295 +254.02085995674133,0.0,9.090909,9.090909,0.0,-0.050335295 +254.0298089981079,0.0,9.090909,9.090909,0.0,-0.050335295 +254.03942203521729,0.0,9.090909,9.090909,0.0,-0.050335295 +254.05004405975342,0.0,9.090909,9.090909,0.0,-0.050335295 +254.0608570575714,0.0,9.090909,9.090909,0.0,-0.072535895 +254.07028102874756,0.0,9.090909,9.090909,0.0,-0.072535895 +254.0808460712433,0.0,9.090909,9.090909,0.0,-0.072535895 +254.0908510684967,0.0,9.090909,9.090909,0.0,-0.072535895 +254.10086512565613,0.0,9.090909,9.090909,0.0,-0.072535895 +254.11042404174805,0.0,9.090909,9.090909,0.0,-0.06883579 +254.11989212036133,0.0,9.090909,9.090909,0.0,-0.06883579 +254.12950897216797,0.0,9.090909,9.090909,0.0,-0.06883579 +254.14027905464172,0.0,9.090909,9.090909,0.0,-0.06883579 +254.15085196495056,0.0,9.090909,9.090909,0.0,-0.06883579 +254.15940809249878,0.0,9.090909,9.090909,0.0,-0.054035395 +254.17087292671204,0.0,9.090909,9.090909,0.0,-0.054035395 +254.18085408210754,0.0,9.090909,9.090909,0.0,-0.054035395 +254.19087195396423,0.0,9.090909,9.090909,0.0,-0.054035395 +254.20037412643433,0.0,9.090909,9.090909,0.0,-0.054035395 +254.20976209640503,0.0,9.090909,9.090909,0.0,-0.033684865 +254.21957898139954,0.0,9.090909,9.090909,0.0,-0.033684865 +254.22944498062134,0.0,9.090909,9.090909,0.0,-0.033684865 +254.24085998535156,0.0,9.090909,9.090909,0.0,-0.033684865 +254.25028014183044,0.0,9.090909,9.090909,0.0,-0.033684865 +254.2608859539032,0.0,8.333334,8.333334,0.0,-0.054035395 +254.27086091041565,0.0,8.333334,8.333334,0.0,-0.054035395 +254.28086113929749,0.0,8.333334,8.333334,0.0,-0.054035395 +254.28989791870117,0.0,9.090909,9.090909,0.0,-0.054035395 +254.29949593544006,0.0,9.090909,9.090909,0.0,-0.054035395 +254.30966806411743,0.0,9.090909,9.090909,0.0,-0.054035395 +254.32085990905762,0.0,9.090909,9.090909,0.0,-0.054035395 +254.32986307144165,0.0,9.090909,9.090909,0.0,-0.054035395 +254.34026503562927,0.0,9.090909,9.090909,0.0,-0.054035395 +254.35087394714355,0.0,9.090909,9.090909,0.0,-0.054035395 +254.36088109016418,0.0,9.090909,9.090909,0.0,-0.044785153 +254.37076902389526,0.0,9.090909,9.090909,0.0,-0.044785153 +254.3796820640564,0.0,9.090909,9.090909,0.0,-0.044785153 +254.3895149230957,0.0,9.090909,9.090909,0.0,-0.044785153 +254.399493932724,0.0,8.333334,8.333334,0.0,-0.044785153 +254.41088199615479,0.0,8.333334,8.333334,0.0,-0.052185345 +254.41987013816833,0.0,8.333334,8.333334,0.0,-0.052185345 +254.4298620223999,0.0,8.333334,8.333334,0.0,-0.052185345 +254.4408941268921,0.0,8.333334,8.333334,0.0,-0.052185345 +254.45087313652039,0.0,8.333334,8.333334,0.0,-0.052185345 +254.45983910560608,0.0,8.333334,8.333334,0.0,-0.0466352 +254.47036695480347,0.0,8.333334,8.333334,0.0,-0.0466352 +254.48090410232544,0.0,8.333334,8.333334,0.0,-0.0466352 +254.48984909057617,0.0,8.333334,8.333334,0.0,-0.0466352 +254.50078296661377,0.0,8.333334,8.333334,0.0,-0.0466352 +254.51041102409363,0.0,8.333334,8.333334,0.0,-0.044785153 +254.52010202407837,0.0,8.333334,8.333334,0.0,-0.044785153 +254.52982902526855,0.0,8.333334,8.333334,0.0,-0.044785153 +254.5400140285492,0.0,8.333334,8.333334,0.0,-0.044785153 +254.54982995986938,0.0,8.333334,8.333334,0.0,-0.044785153 +254.56022691726685,0.0,8.333334,8.333334,0.0,-0.050335295 +254.5708999633789,0.0,8.333334,8.333334,0.0,-0.050335295 +254.5799491405487,0.0,8.333334,8.333334,0.0,-0.050335295 +254.5908920764923,0.0,8.333334,8.333334,0.0,-0.050335295 +254.6008861064911,0.0,8.333334,8.333334,0.0,-0.050335295 +254.61020302772522,0.0,8.333334,8.333334,0.0,-0.050335295 +254.62023997306824,0.0,8.333334,8.333334,0.0,-0.06513569 +254.6298370361328,0.0,8.333334,8.333334,0.0,-0.06513569 +254.64005994796753,0.0,8.333334,8.333334,0.0,-0.06513569 +254.65008091926575,0.0,8.333334,8.333334,0.0,-0.06513569 +254.66092014312744,0.0,8.333334,8.333334,0.0,-0.06143559 +254.67004799842834,0.0,8.333334,8.333334,0.0,-0.06143559 +254.67978191375732,0.0,8.333334,8.333334,0.0,-0.06143559 +254.69091701507568,0.0,8.333334,8.333334,0.0,-0.06143559 +254.70019698143005,0.0,8.333334,8.333334,0.0,-0.06143559 +254.70940399169922,0.0,8.333334,8.333334,0.0,-0.06143559 +254.72091913223267,0.0,8.333334,8.333334,0.0,-0.06143559 +254.73092103004456,0.0,8.333334,8.333334,0.0,-0.06143559 +254.7398669719696,0.0,8.333334,8.333334,0.0,-0.06143559 +254.74947905540466,0.0,8.333334,8.333334,0.0,-0.06143559 +254.76011896133423,0.0,8.333334,8.333334,0.0,-0.044785153 +254.77091002464294,0.0,8.333334,8.333334,0.0,-0.044785153 +254.7806921005249,0.0,8.333334,8.333334,0.0,-0.044785153 +254.78958892822266,0.0,8.333334,8.333334,0.0,-0.044785153 +254.80092597007751,0.0,8.333334,8.333334,0.0,-0.044785153 +254.80938911437988,0.0,8.333334,8.333334,0.0,-0.044785153 +254.820130109787,0.0,8.333334,8.333334,0.0,-0.050335295 +254.82978701591492,0.0,8.333334,8.333334,0.0,-0.050335295 +254.84093403816223,0.0,8.333334,8.333334,0.0,-0.050335295 +254.85022807121277,0.0,8.333334,8.333334,0.0,-0.050335295 +254.86094403266907,0.0,8.333334,8.333334,0.0,-0.05588545 +254.86979794502258,0.0,8.333334,8.333334,0.0,-0.05588545 +254.8801989555359,0.0,8.333334,8.333334,0.0,-0.05588545 +254.89093494415283,0.0,8.333334,8.333334,0.0,-0.05588545 +254.89958500862122,0.0,8.333334,8.333334,0.0,-0.05588545 +254.91043496131897,0.0,8.333334,8.333334,0.0,-0.0466352 +254.91962695121765,0.0,8.333334,8.333334,0.0,-0.0466352 +254.92981100082397,0.0,8.333334,8.333334,0.0,-0.0466352 +254.93968200683594,0.0,8.333334,8.333334,0.0,-0.0466352 +254.9499819278717,0.0,8.333334,8.333334,0.0,-0.0466352 +254.96094393730164,0.0,8.333334,8.333334,0.0,-0.05588545 +254.97021102905273,0.0,8.333334,8.333334,0.0,-0.05588545 +254.98093605041504,0.0,8.333334,8.333334,0.0,-0.05588545 +254.99094796180725,0.0,8.333334,8.333334,0.0,-0.05588545 +255.00050401687622,0.0,8.333334,8.333334,0.0,-0.05588545 +255.00949692726135,0.0,8.333334,8.333334,0.0,-0.05588545 +255.01948595046997,0.0,8.333334,8.333334,0.0,-0.022584556 +255.02984595298767,0.0,8.333334,8.333334,0.0,-0.022584556 +255.04094696044922,0.0,8.333334,8.333334,0.0,-0.022584556 +255.05094408988953,0.0,8.333334,8.333334,0.0,-0.022584556 +255.0601909160614,0.0,8.333334,8.333334,0.0,-0.052185345 +255.06964206695557,0.0,8.333334,8.333334,0.0,-0.052185345 +255.079735994339,0.0,8.333334,8.333334,0.0,-0.052185345 +255.0903880596161,0.0,8.333334,8.333334,0.0,-0.052185345 +255.10094809532166,0.0,8.333334,8.333334,0.0,-0.052185345 +255.1098611354828,0.0,8.333334,8.333334,0.0,-0.06513569 +255.12012600898743,0.0,8.333334,8.333334,0.0,-0.06513569 +255.12949514389038,0.0,8.333334,8.333334,0.0,-0.06513569 +255.13983011245728,0.0,8.333334,8.333334,0.0,-0.06513569 +255.15021300315857,0.0,8.333334,8.333334,0.0,-0.06513569 +255.1594409942627,0.0,8.333334,8.333334,0.0,-0.052185345 +255.17096209526062,0.0,8.333334,8.333334,0.0,-0.052185345 +255.18023991584778,0.0,8.333334,8.333334,0.0,-0.052185345 +255.19061303138733,0.0,8.333334,8.333334,0.0,-0.052185345 +255.1994960308075,0.0,8.333334,8.333334,0.0,-0.052185345 +255.2105541229248,0.0,8.333334,8.333334,0.0,-0.054035395 +255.21956491470337,0.0,8.333334,8.333334,0.0,-0.054035395 +255.2298550605774,0.0,8.333334,8.333334,0.0,-0.054035395 +255.24020409584045,0.0,8.333334,8.333334,0.0,-0.054035395 +255.25097107887268,0.0,8.333334,8.333334,0.0,-0.054035395 +255.2609760761261,0.0,8.333334,8.333334,0.0,-0.015184363 +255.2700800895691,0.0,8.333334,8.333334,0.0,-0.015184363 +255.27969002723694,0.0,8.333334,8.333334,0.0,-0.015184363 +255.28984093666077,0.0,8.333334,8.333334,0.0,-0.015184363 +255.30064010620117,0.0,8.333334,8.333334,0.0,-0.015184363 +255.30966806411743,0.0,8.333334,8.333334,0.0,-0.052185345 +255.3201560974121,0.0,8.333334,8.333334,0.0,-0.052185345 +255.329528093338,0.0,8.333334,8.333334,0.0,-0.052185345 +255.3409731388092,0.0,8.333334,8.333334,0.0,-0.052185345 +255.35097193717957,0.0,8.333334,8.333334,0.0,-0.052185345 +255.35988807678223,0.0,8.333334,8.333334,0.0,-0.050335295 +255.37097191810608,0.0,8.333334,8.333334,0.0,-0.050335295 +255.3809621334076,0.0,8.333334,8.333334,0.0,-0.050335295 +255.3907561302185,0.0,8.333334,8.333334,0.0,-0.050335295 +255.3996229171753,0.0,8.333334,8.333334,0.0,-0.050335295 +255.41096711158752,0.0,8.333334,8.333334,0.0,-0.044785153 +255.42013597488403,0.0,8.333334,8.333334,0.0,-0.044785153 +255.42988896369934,0.0,8.333334,8.333334,0.0,-0.044785153 +255.44011306762695,0.0,8.333334,8.333334,0.0,-0.044785153 +255.4497721195221,0.0,8.333334,8.333334,0.0,-0.044785153 +255.45947813987732,0.0,8.333334,8.333334,0.0,-0.044785153 +255.47096991539001,0.0,8.333334,8.333334,0.0,-0.044785153 +255.48083901405334,0.0,8.333334,8.333334,0.0,-0.044785153 +255.4898579120636,0.0,8.333334,8.333334,0.0,-0.044785153 +255.50033903121948,0.0,8.333334,8.333334,0.0,-0.044785153 +255.51017713546753,0.0,8.333334,8.333334,0.0,-0.044785153 +255.51954793930054,0.0,8.333334,8.333334,0.0,-0.044785153 +255.5306360721588,0.0,8.333334,8.333334,0.0,-0.044785153 +255.53960013389587,0.0,8.333334,8.333334,0.0,-0.044785153 +255.54948806762695,0.0,8.333334,8.333334,0.0,-0.044785153 +255.5604419708252,0.0,8.333334,8.333334,0.0,-0.042935103 +255.57100105285645,0.0,8.333334,8.333334,0.0,-0.042935103 +255.57953310012817,0.0,8.333334,8.333334,0.0,-0.042935103 +255.58942294120789,0.0,8.333334,8.333334,0.0,-0.042935103 +255.60016512870789,0.0,8.333334,8.333334,0.0,-0.042935103 +255.6094081401825,0.0,8.333334,8.333334,0.0,-0.042935103 +255.61950993537903,0.0,8.333334,8.333334,0.0,-0.024434604 +255.62945914268494,0.0,8.333334,8.333334,0.0,-0.024434604 +255.64098501205444,0.0,8.333334,8.333334,0.0,-0.024434604 +255.6509850025177,0.0,8.333334,8.333334,0.0,-0.024434604 +255.66099095344543,0.0,8.333334,8.333334,0.0,-0.050335295 +255.67002701759338,0.0,8.333334,8.333334,0.0,-0.050335295 +255.68056893348694,0.0,8.333334,8.333334,0.0,-0.050335295 +255.6896209716797,0.0,8.333334,8.333334,0.0,-0.050335295 +255.70098900794983,0.0,8.333334,8.333334,0.0,-0.050335295 +255.7103099822998,0.0,8.333334,8.333334,0.0,-0.050335295 +255.71951699256897,0.0,8.333334,8.333334,0.0,-0.05588545 +255.72977900505066,0.0,8.333334,8.333334,0.0,-0.05588545 +255.74100995063782,0.0,8.333334,8.333334,0.0,-0.05588545 +255.75099396705627,0.0,8.333334,8.333334,0.0,-0.05588545 +255.76011395454407,0.0,8.333334,8.333334,0.0,-0.0466352 +255.76981210708618,0.0,8.333334,8.333334,0.0,-0.0466352 +255.78016209602356,0.0,8.333334,8.333334,0.0,-0.0466352 +255.78984999656677,0.0,8.333334,8.333334,0.0,-0.0466352 +255.8001570701599,0.0,8.333334,8.333334,0.0,-0.0466352 +255.8104329109192,0.0,8.333334,8.333334,0.0,-0.042935103 +255.82013201713562,0.0,8.333334,8.333334,0.0,-0.042935103 +255.8298671245575,0.0,8.333334,8.333334,0.0,-0.042935103 +255.8410120010376,0.0,8.333334,8.333334,0.0,-0.042935103 +255.85002899169922,0.0,8.333334,8.333334,0.0,-0.042935103 +255.861004114151,0.0,9.090909,9.090909,0.0,-0.039235007 +255.870197057724,0.0,9.090909,9.090909,0.0,-0.039235007 +255.88102912902832,0.0,9.090909,9.090909,0.0,-0.039235007 +255.89001607894897,0.0,9.090909,9.090909,0.0,-0.039235007 +255.9010419845581,0.0,9.090909,9.090909,0.0,-0.039235007 +255.91045498847961,0.0,9.090909,9.090909,0.0,-0.05588545 +255.92016291618347,0.0,9.090909,9.090909,0.0,-0.05588545 +255.92989492416382,0.0,9.090909,9.090909,0.0,-0.05588545 +255.94007396697998,0.0,9.090909,9.090909,0.0,-0.05588545 +255.95101714134216,0.0,9.090909,9.090909,0.0,-0.05588545 +255.9595820903778,0.0,9.090909,9.090909,0.0,-0.050335295 +255.97016096115112,0.0,9.090909,9.090909,0.0,-0.050335295 +255.97988605499268,0.0,9.090909,9.090909,0.0,-0.050335295 +255.99103808403015,0.0,9.090909,9.090909,0.0,-0.050335295 +256.0010390281677,0.0,9.090909,9.090909,0.0,-0.050335295 +256.01045203208923,0.0,9.090909,9.090909,0.0,-0.06513569 +256.0193889141083,0.0,9.090909,9.090909,0.0,-0.06513569 +256.0298550128937,0.0,9.090909,9.090909,0.0,-0.06513569 +256.04107093811035,0.0,9.090909,9.090909,0.0,-0.06513569 +256.0502099990845,0.0,9.090909,9.090909,0.0,-0.06513569 +256.0603029727936,0.0,9.090909,9.090909,0.0,-0.044785153 +256.0697569847107,0.0,9.090909,9.090909,0.0,-0.044785153 +256.0810639858246,0.0,9.090909,9.090909,0.0,-0.044785153 +256.0906591415405,0.0,9.090909,9.090909,0.0,-0.044785153 +256.0995819568634,0.0,9.090909,9.090909,0.0,-0.044785153 +256.1095290184021,0.0,9.090909,9.090909,0.0,-0.052185345 +256.12012004852295,0.0,9.090909,9.090909,0.0,-0.052185345 +256.12944412231445,0.0,9.090909,9.090909,0.0,-0.052185345 +256.14020895957947,0.0,9.090909,9.090909,0.0,-0.052185345 +256.1506381034851,0.0,9.090909,9.090909,0.0,-0.052185345 +256.15959906578064,0.0,9.090909,9.090909,0.0,-0.054035395 +256.1708779335022,0.0,9.090909,9.090909,0.0,-0.054035395 +256.1797649860382,0.0,9.090909,9.090909,0.0,-0.054035395 +256.19105100631714,0.0,9.090909,9.090909,0.0,-0.054035395 +256.2010531425476,0.0,9.090909,9.090909,0.0,-0.054035395 +256.210529088974,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2195360660553,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2295660972595,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2394540309906,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2494580745697,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2599639892578,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2710700035095,0.0,9.090909,9.090909,0.0,-0.050335295 +256.2810571193695,0.0,9.090909,9.090909,0.0,-0.050335295 +256.29106402397156,0.0,9.090909,9.090909,0.0,-0.050335295 +256.30064702033997,0.0,9.090909,9.090909,0.0,-0.050335295 +256.3096139431,0.0,9.090909,9.090909,0.0,-0.042935103 +256.32013297080994,0.0,9.090909,9.090909,0.0,-0.042935103 +256.32987093925476,0.0,9.090909,9.090909,0.0,-0.042935103 +256.34020709991455,0.0,9.090909,9.090909,0.0,-0.042935103 +256.3510639667511,0.0,9.090909,9.090909,0.0,-0.042935103 +256.3610680103302,0.0,9.090909,9.090909,0.0,-0.05588545 +256.37022614479065,0.0,9.090909,9.090909,0.0,-0.05588545 +256.37976813316345,0.0,9.090909,9.090909,0.0,-0.05588545 +256.39071011543274,0.0,9.090909,9.090909,0.0,-0.05588545 +256.3997390270233,0.0,9.090909,9.090909,0.0,-0.05588545 +256.4098000526428,0.0,9.090909,9.090909,0.0,-0.041085053 +256.4201910495758,0.0,9.090909,9.090909,0.0,-0.041085053 +256.4293911457062,0.0,9.090909,9.090909,0.0,-0.041085053 +256.4398629665375,0.0,9.090909,9.090909,0.0,-0.041085053 +256.4510760307312,0.0,9.090909,9.090909,0.0,-0.041085053 +256.46106791496277,0.0,9.090909,9.090909,0.0,-0.052185345 +256.47107791900635,0.0,9.090909,9.090909,0.0,-0.052185345 +256.4805541038513,0.0,9.090909,9.090909,0.0,-0.052185345 +256.4898281097412,0.0,9.090909,9.090909,0.0,-0.052185345 +256.50019907951355,0.0,9.090909,9.090909,0.0,-0.052185345 +256.5095419883728,0.0,9.090909,9.090909,0.0,-0.052185345 +256.5201721191406,0.0,9.090909,9.090909,0.0,-0.024434604 +256.5298681259155,0.0,9.090909,9.090909,0.0,-0.024434604 +256.54088497161865,0.0,9.090909,9.090909,0.0,-0.024434604 +256.5510630607605,0.0,8.333334,8.333334,0.0,-0.024434604 +256.56108593940735,0.0,8.333334,8.333334,0.0,-0.05588545 +256.57089591026306,0.0,8.333334,8.333334,0.0,-0.05588545 +256.57991194725037,0.0,8.333334,8.333334,0.0,-0.05588545 +256.5897431373596,0.0,8.333334,8.333334,0.0,-0.05588545 +256.59987807273865,0.0,8.333334,8.333334,0.0,-0.05588545 +256.6095929145813,0.0,8.333334,8.333334,0.0,-0.05588545 +256.6200659275055,0.0,8.333334,8.333334,0.0,-0.052185345 +256.6298451423645,0.0,8.333334,8.333334,0.0,-0.052185345 +256.64107394218445,0.0,8.333334,8.333334,0.0,-0.052185345 +256.6511039733887,0.0,8.333334,8.333334,0.0,-0.052185345 +256.66100907325745,0.0,8.333334,8.333334,0.0,-0.06698574 +256.6699321269989,0.0,8.333334,8.333334,0.0,-0.06698574 +256.6801941394806,0.0,8.333334,8.333334,0.0,-0.06698574 +256.6897430419922,0.0,8.333334,8.333334,0.0,-0.06698574 +256.7010769844055,0.0,8.333334,8.333334,0.0,-0.06698574 +256.71028208732605,0.0,8.333334,8.333334,0.0,-0.06698574 +256.72013902664185,0.0,8.333334,8.333334,0.0,-0.052185345 +256.7298729419708,0.0,8.333334,8.333334,0.0,-0.052185345 +256.7402460575104,0.0,8.333334,8.333334,0.0,-0.052185345 +256.75015902519226,0.0,8.333334,8.333334,0.0,-0.052185345 +256.7595419883728,0.0,8.333334,8.333334,0.0,-0.050335295 +256.7702429294586,0.0,8.333334,8.333334,0.0,-0.050335295 +256.7796161174774,0.0,8.333334,8.333334,0.0,-0.050335295 +256.7911081314087,0.0,8.333334,8.333334,0.0,-0.050335295 +256.80109906196594,0.0,8.333334,8.333334,0.0,-0.050335295 +256.81045508384705,0.0,8.333334,8.333334,0.0,-0.042935103 +256.82013511657715,0.0,8.333334,8.333334,0.0,-0.042935103 +256.82987904548645,0.0,8.333334,8.333334,0.0,-0.042935103 +256.84110498428345,0.0,8.333334,8.333334,0.0,-0.042935103 +256.84947514533997,0.0,8.333334,8.333334,0.0,-0.042935103 +256.8602120876312,0.0,8.333334,8.333334,0.0,-0.042935103 +256.8694770336151,0.0,8.333334,8.333334,0.0,-0.042935103 +256.8811089992523,0.0,8.333334,8.333334,0.0,-0.042935103 +256.89023303985596,0.0,8.333334,8.333334,0.0,-0.042935103 +256.90111207962036,0.0,8.333334,8.333334,0.0,-0.042935103 +256.91045904159546,0.0,8.333334,8.333334,0.0,-0.022584556 +256.9194619655609,0.0,8.333334,8.333334,0.0,-0.022584556 +256.9299039840698,0.0,8.333334,8.333334,0.0,-0.022584556 +256.940288066864,0.0,8.333334,8.333334,0.0,-0.022584556 +256.9502329826355,0.0,8.333334,8.333334,0.0,-0.022584556 +256.95944714546204,0.0,8.333334,8.333334,0.0,-0.050335295 +256.9711320400238,0.0,8.333334,8.333334,0.0,-0.050335295 +256.98111605644226,0.0,8.333334,8.333334,0.0,-0.050335295 +256.99073910713196,0.0,8.333334,8.333334,0.0,-0.050335295 +256.9996380805969,0.0,8.333334,8.333334,0.0,-0.050335295 +257.0104410648346,0.0,8.333334,8.333334,0.0,-0.052185345 +257.0201930999756,0.0,8.333334,8.333334,0.0,-0.052185345 +257.0298709869385,0.0,8.333334,8.333334,0.0,-0.052185345 +257.03939414024353,0.0,8.333334,8.333334,0.0,-0.052185345 +257.04939913749695,0.0,8.333334,8.333334,0.0,-0.052185345 +257.06113505363464,0.0,8.333334,8.333334,0.0,-0.05588545 +257.070946931839,0.0,8.333334,8.333334,0.0,-0.05588545 +257.0798590183258,0.0,8.333334,8.333334,0.0,-0.05588545 +257.091117143631,0.0,8.333334,8.333334,0.0,-0.05588545 +257.1011369228363,0.0,8.333334,8.333334,0.0,-0.05588545 +257.1096279621124,0.0,8.333334,8.333334,0.0,-0.06698574 +257.1198539733887,0.0,8.333334,8.333334,0.0,-0.06698574 +257.1295130252838,0.0,8.333334,8.333334,0.0,-0.06698574 +257.1411221027374,0.0,8.333334,8.333334,0.0,-0.06698574 +257.15016508102417,0.0,8.333334,8.333334,0.0,-0.06698574 +257.1600580215454,0.0,8.333334,8.333334,0.0,-0.03183481 +257.17112398147583,0.0,8.333334,8.333334,0.0,-0.03183481 +257.1811490058899,0.0,8.333334,8.333334,0.0,-0.03183481 +257.1911270618439,0.0,8.333334,8.333334,0.0,-0.03183481 +257.20114398002625,0.0,8.333334,8.333334,0.0,-0.03183481 +257.21061396598816,0.0,8.333334,8.333334,0.0,-0.0466352 +257.21962904930115,0.0,8.333334,8.333334,0.0,-0.0466352 +257.2311451435089,0.0,8.333334,8.333334,0.0,-0.0466352 +257.24002599716187,0.0,8.333334,8.333334,0.0,-0.0466352 +257.2511489391327,0.0,8.333334,8.333334,0.0,-0.0466352 +257.2611529827118,0.0,8.333334,8.333334,0.0,-0.050335295 +257.2711570262909,0.0,8.333334,8.333334,0.0,-0.050335295 +257.2799000740051,0.0,8.333334,8.333334,0.0,-0.050335295 +257.28988909721375,0.0,8.333334,8.333334,0.0,-0.050335295 +257.3007221221924,0.0,8.333334,8.333334,0.0,-0.050335295 +257.3097219467163,0.0,8.333334,8.333334,0.0,-0.044785153 +257.32017493247986,0.0,8.333334,8.333334,0.0,-0.044785153 +257.3299009799957,0.0,8.333334,8.333334,0.0,-0.044785153 +257.3410151004791,0.0,8.333334,8.333334,0.0,-0.044785153 +257.3511459827423,0.0,8.333334,8.333334,0.0,-0.044785153 +257.3611669540405,0.0,8.333334,8.333334,0.0,-0.020734508 +257.3711631298065,0.0,8.333334,8.333334,0.0,-0.020734508 +257.3811550140381,0.0,8.333334,8.333334,0.0,-0.020734508 +257.39023208618164,0.0,8.333334,8.333334,0.0,-0.020734508 +257.3996319770813,0.0,8.333334,8.333334,0.0,-0.020734508 +257.4095129966736,0.0,8.333334,8.333334,0.0,-0.054035395 +257.420175075531,0.0,8.333334,8.333334,0.0,-0.054035395 +257.4299120903015,0.0,8.333334,8.333334,0.0,-0.054035395 +257.4411549568176,0.0,8.333334,8.333334,0.0,-0.054035395 +257.451180934906,0.0,8.333334,8.333334,0.0,-0.054035395 +257.4611511230469,0.0,8.333334,8.333334,0.0,-0.072535895 +257.4709451198578,0.0,8.333334,8.333334,0.0,-0.072535895 +257.48050904273987,0.0,8.333334,8.333334,0.0,-0.072535895 +257.48948907852173,0.0,8.333334,8.333334,0.0,-0.072535895 +257.50117897987366,0.0,8.333334,8.333334,0.0,-0.072535895 +257.51044392585754,0.0,8.333334,8.333334,0.0,-0.050335295 +257.5201771259308,0.0,8.333334,8.333334,0.0,-0.050335295 +257.52987408638,0.0,8.333334,8.333334,0.0,-0.050335295 +257.540030002594,0.0,8.333334,8.333334,0.0,-0.050335295 +257.55117893218994,0.0,8.333334,8.333334,0.0,-0.050335295 +257.5610361099243,0.0,8.333334,8.333334,0.0,-0.050335295 +257.5699679851532,0.0,8.333334,8.333334,0.0,-0.050335295 +257.5800211429596,0.0,8.333334,8.333334,0.0,-0.050335295 +257.591187953949,0.0,9.090909,9.090909,0.0,-0.050335295 +257.6009130477905,0.0,9.090909,9.090909,0.0,-0.050335295 +257.6104609966278,0.0,9.090909,9.090909,0.0,-0.054035395 +257.6197259426117,0.0,9.090909,9.090909,0.0,-0.054035395 +257.6295380592346,0.0,9.090909,9.090909,0.0,-0.054035395 +257.6412000656128,0.0,9.090909,9.090909,0.0,-0.054035395 +257.65015602111816,0.0,9.090909,9.090909,0.0,-0.054035395 +257.66017603874207,0.0,9.090909,9.090909,0.0,-0.050335295 +257.6699321269989,0.0,9.090909,9.090909,0.0,-0.050335295 +257.6811821460724,0.0,9.090909,9.090909,0.0,-0.050335295 +257.6911940574646,0.0,9.090909,9.090909,0.0,-0.050335295 +257.7011740207672,0.0,9.090909,9.090909,0.0,-0.050335295 +257.71045112609863,0.0,9.090909,9.090909,0.0,-0.054035395 +257.7201681137085,0.0,9.090909,9.090909,0.0,-0.054035395 +257.72989296913147,0.0,9.090909,9.090909,0.0,-0.054035395 +257.7410480976105,0.0,9.090909,9.090909,0.0,-0.054035395 +257.7500491142273,0.0,9.090909,9.090909,0.0,-0.054035395 +257.7602069377899,0.0,9.090909,9.090909,0.0,-0.052185345 +257.76945209503174,0.0,9.090909,9.090909,0.0,-0.052185345 +257.7811920642853,0.0,9.090909,9.090909,0.0,-0.052185345 +257.7911949157715,0.0,9.090909,9.090909,0.0,-0.052185345 +257.79966711997986,0.0,9.090909,9.090909,0.0,-0.052185345 +257.8104519844055,0.0,9.090909,9.090909,0.0,-0.041085053 +257.81947898864746,0.0,9.090909,9.090909,0.0,-0.041085053 +257.8299090862274,0.0,9.090909,9.090909,0.0,-0.041085053 +257.83990502357483,0.0,9.090909,9.090909,0.0,-0.041085053 +257.85022711753845,0.0,9.090909,9.090909,0.0,-0.041085053 +257.85942912101746,0.0,9.090909,9.090909,0.0,-0.054035395 +257.87092995643616,0.0,9.090909,9.090909,0.0,-0.054035395 +257.88121700286865,0.0,9.090909,9.090909,0.0,-0.054035395 +257.89000701904297,0.0,9.090909,9.090909,0.0,-0.054035395 +257.8996889591217,0.0,9.090909,9.090909,0.0,-0.054035395 +257.90951704978943,0.0,9.090909,9.090909,0.0,-0.054035395 +257.9201500415802,0.0,9.090909,9.090909,0.0,-0.0466352 +257.92978405952454,0.0,9.090909,9.090909,0.0,-0.0466352 +257.94018602371216,0.0,9.090909,9.090909,0.0,-0.0466352 +257.94942593574524,0.0,9.090909,9.090909,0.0,-0.0466352 +257.9612081050873,0.0,9.090909,9.090909,0.0,-0.052185345 +257.9709849357605,0.0,9.090909,9.090909,0.0,-0.052185345 +257.9799039363861,0.0,9.090909,9.090909,0.0,-0.052185345 +257.99073100090027,0.0,9.090909,9.090909,0.0,-0.052185345 +258.00122594833374,0.0,9.090909,9.090909,0.0,-0.052185345 +258.01045513153076,0.0,9.090909,9.090909,0.0,-0.054035395 +258.0196430683136,0.0,9.090909,9.090909,0.0,-0.054035395 +258.0298960208893,0.0,9.090909,9.090909,0.0,-0.054035395 +258.0394790172577,0.0,9.090909,9.090909,0.0,-0.054035395 +258.05122995376587,0.0,9.090909,9.090909,0.0,-0.054035395 +258.05975008010864,0.0,9.090909,9.090909,0.0,-0.03553491 +258.0712180137634,0.0,9.090909,9.090909,0.0,-0.03553491 +258.0812430381775,0.0,9.090909,9.090909,0.0,-0.03553491 +258.0912170410156,0.0,9.090909,9.090909,0.0,-0.03553491 +258.1005129814148,0.0,9.090909,9.090909,0.0,-0.03553491 +258.1094970703125,0.0,9.090909,9.090909,0.0,-0.042935103 +258.1201739311218,0.0,9.090909,9.090909,0.0,-0.042935103 +258.12942004203796,0.0,9.090909,9.090909,0.0,-0.042935103 +258.1398870944977,0.0,9.090909,9.090909,0.0,-0.042935103 +258.14949893951416,0.0,9.090909,9.090909,0.0,-0.042935103 +258.1603720188141,0.0,9.090909,9.090909,0.0,-0.042935103 +258.1712279319763,0.0,9.090909,9.090909,0.0,-0.042935103 +258.18121910095215,0.0,9.090909,9.090909,0.0,-0.042935103 +258.1896641254425,0.0,9.090909,9.090909,0.0,-0.042935103 +258.2011709213257,0.0,9.090909,9.090909,0.0,-0.042935103 +258.210165977478,0.0,9.090909,9.090909,0.0,-0.07438594 +258.219703912735,0.0,9.090909,9.090909,0.0,-0.07438594 +258.2294509410858,0.0,9.090909,9.090909,0.0,-0.07438594 +258.2396049499512,0.0,9.090909,9.090909,0.0,-0.07438594 +258.25057911872864,0.0,9.090909,9.090909,0.0,-0.07438594 +258.26124000549316,0.0,9.090909,9.090909,0.0,-0.041085053 +258.27124309539795,0.0,9.090909,9.090909,0.0,-0.041085053 +258.28020310401917,0.0,9.090909,9.090909,0.0,-0.041085053 +258.2911469936371,0.0,9.090909,9.090909,0.0,-0.041085053 +258.30015897750854,0.0,9.090909,9.090909,0.0,-0.041085053 +258.3096139431,0.0,9.090909,9.090909,0.0,-0.054035395 +258.3195879459381,0.0,9.090909,9.090909,0.0,-0.054035395 +258.3298261165619,0.0,9.090909,9.090909,0.0,-0.054035395 +258.34039998054504,0.0,9.090909,9.090909,0.0,-0.054035395 +258.3512661457062,0.0,9.090909,9.090909,0.0,-0.054035395 +258.36106991767883,0.0,9.090909,9.090909,0.0,-0.050335295 +258.370059967041,0.0,9.090909,9.090909,0.0,-0.050335295 +258.38048911094666,0.0,9.090909,9.090909,0.0,-0.050335295 +258.38979411125183,0.0,9.090909,9.090909,0.0,-0.050335295 +258.3998610973358,0.0,9.090909,9.090909,0.0,-0.050335295 +258.41124510765076,0.0,9.090909,9.090909,0.0,-0.042935103 +258.4195599555969,0.0,9.090909,9.090909,0.0,-0.042935103 +258.42991304397583,0.0,9.090909,9.090909,0.0,-0.042935103 +258.44126200675964,0.0,9.090909,9.090909,0.0,-0.042935103 +258.44953298568726,0.0,9.090909,9.090909,0.0,-0.042935103 +258.45991611480713,0.0,9.090909,9.090909,0.0,-0.044785153 +258.46996998786926,0.0,9.090909,9.090909,0.0,-0.044785153 +258.4801571369171,0.0,8.333334,8.333334,0.0,-0.044785153 +258.48996591567993,0.0,8.333334,8.333334,0.0,-0.044785153 +258.5012640953064,0.0,8.333334,8.333334,0.0,-0.044785153 +258.5104489326477,0.0,8.333334,8.333334,0.0,-0.044785153 +258.5201699733734,0.0,8.333334,8.333334,0.0,-0.054035395 +258.52989506721497,0.0,8.333334,8.333334,0.0,-0.054035395 +258.5407829284668,0.0,8.333334,8.333334,0.0,-0.054035395 +258.54974699020386,0.0,8.333334,8.333334,0.0,-0.054035395 +258.55949902534485,0.0,8.333334,8.333334,0.0,-0.041085053 +258.5701870918274,0.0,8.333334,8.333334,0.0,-0.041085053 +258.5794870853424,0.0,8.333334,8.333334,0.0,-0.041085053 +258.59126806259155,0.0,8.333334,8.333334,0.0,-0.041085053 +258.60127210617065,0.0,8.333334,8.333334,0.0,-0.041085053 +258.61046409606934,0.0,8.333334,8.333334,0.0,-0.05588545 +258.62015104293823,0.0,8.333334,8.333334,0.0,-0.05588545 +258.629909992218,0.0,8.333334,8.333334,0.0,-0.05588545 +258.6395959854126,0.0,8.333334,8.333334,0.0,-0.05588545 +258.65114092826843,0.0,8.333334,8.333334,0.0,-0.05588545 +258.6601650714874,0.0,8.333334,8.333334,0.0,-0.06328564 +258.6701970100403,0.0,8.333334,8.333334,0.0,-0.06328564 +258.68125891685486,0.0,8.333334,8.333334,0.0,-0.06328564 +258.6902530193329,0.0,8.333334,8.333334,0.0,-0.06328564 +258.701131105423,0.0,8.333334,8.333334,0.0,-0.06328564 +258.70940494537354,0.0,8.333334,8.333334,0.0,-0.06328564 +258.7194459438324,0.0,8.333334,8.333334,0.0,-0.06513569 +258.72945499420166,0.0,8.333334,8.333334,0.0,-0.06513569 +258.7394950389862,0.0,8.333334,8.333334,0.0,-0.06513569 +258.750195980072,0.0,8.333334,8.333334,0.0,-0.06513569 +258.76030111312866,0.0,8.333334,8.333334,0.0,-0.041085053 +258.76956009864807,0.0,8.333334,8.333334,0.0,-0.041085053 +258.78044605255127,0.0,8.333334,8.333334,0.0,-0.041085053 +258.7907121181488,0.0,8.333334,8.333334,0.0,-0.041085053 +258.7996470928192,0.0,8.333334,8.333334,0.0,-0.041085053 +258.8103229999542,0.0,8.333334,8.333334,0.0,-0.041085053 +258.82018995285034,0.0,8.333334,8.333334,0.0,-0.06513569 +258.82990193367004,0.0,8.333334,8.333334,0.0,-0.06513569 +258.84017395973206,0.0,8.333334,8.333334,0.0,-0.06513569 +258.8503739833832,0.0,8.333334,8.333334,0.0,-0.06513569 +258.85940408706665,0.0,8.333334,8.333334,0.0,-0.06883579 +258.8708999156952,0.0,8.333334,8.333334,0.0,-0.06883579 +258.8798110485077,0.0,8.333334,8.333334,0.0,-0.06883579 +258.8911859989166,0.0,8.333334,8.333334,0.0,-0.06883579 +258.9001569747925,0.0,8.333334,8.333334,0.0,-0.06883579 +258.91048097610474,0.0,8.333334,8.333334,0.0,-0.0466352 +258.91940808296204,0.0,8.333334,8.333334,0.0,-0.0466352 +258.9301950931549,0.0,8.333334,8.333334,0.0,-0.0466352 +258.9404721260071,0.0,8.333334,8.333334,0.0,-0.0466352 +258.949511051178,0.0,8.333334,8.333334,0.0,-0.0466352 +258.95999908447266,0.0,8.333334,8.333334,0.0,-0.054035395 +258.97130012512207,0.0,8.333334,8.333334,0.0,-0.054035395 +258.9798080921173,0.0,8.333334,8.333334,0.0,-0.054035395 +258.99003195762634,0.0,8.333334,8.333334,0.0,-0.054035395 +259.00131011009216,0.0,8.333334,8.333334,0.0,-0.054035395 +259.0097539424896,0.0,8.333334,8.333334,0.0,-0.054035395 +259.01959896087646,0.0,8.333334,8.333334,0.0,-0.029984765 +259.0298819541931,0.0,8.333334,8.333334,0.0,-0.029984765 +259.03961205482483,0.0,8.333334,8.333334,0.0,-0.029984765 +259.0505130290985,0.0,8.333334,8.333334,0.0,-0.029984765 +259.06131505966187,0.0,8.333334,8.333334,0.0,-0.041085053 +259.0708930492401,0.0,8.333334,8.333334,0.0,-0.041085053 +259.07987904548645,0.0,8.333334,8.333334,0.0,-0.041085053 +259.0913140773773,0.0,8.333334,8.333334,0.0,-0.041085053 +259.10115909576416,0.0,8.333334,8.333334,0.0,-0.041085053 +259.11017894744873,0.0,8.333334,8.333334,0.0,-0.06328564 +259.11944913864136,0.0,8.333334,8.333334,0.0,-0.06328564 +259.12969613075256,0.0,8.333334,8.333334,0.0,-0.06328564 +259.1408519744873,0.0,8.333334,8.333334,0.0,-0.06328564 +259.1513321399689,0.0,8.333334,8.333334,0.0,-0.06328564 +259.15971302986145,0.0,8.333334,8.333334,0.0,-0.050335295 +259.1697199344635,0.0,8.333334,8.333334,0.0,-0.050335295 +259.18133091926575,0.0,8.333334,8.333334,0.0,-0.050335295 +259.1911389827728,0.0,8.333334,8.333334,0.0,-0.050335295 +259.2001450061798,0.0,8.333334,8.333334,0.0,-0.050335295 +259.20948696136475,0.0,8.333334,8.333334,0.0,-0.06328564 +259.2198131084442,0.0,8.333334,8.333334,0.0,-0.06328564 +259.2299020290375,0.0,8.333334,8.333334,0.0,-0.06328564 +259.2413511276245,0.0,8.333334,8.333334,0.0,-0.06328564 +259.25007605552673,0.0,8.333334,8.333334,0.0,-0.06328564 +259.2595660686493,0.0,8.333334,8.333334,0.0,-0.044785153 +259.2713260650635,0.0,8.333334,8.333334,0.0,-0.044785153 +259.2807810306549,0.0,8.333334,8.333334,0.0,-0.044785153 +259.28970313072205,0.0,8.333334,8.333334,0.0,-0.044785153 +259.30092191696167,0.0,8.333334,8.333334,0.0,-0.044785153 +259.309907913208,0.0,8.333334,8.333334,0.0,-0.050335295 +259.3201699256897,0.0,8.333334,8.333334,0.0,-0.050335295 +259.3299250602722,0.0,8.333334,8.333334,0.0,-0.050335295 +259.3404269218445,0.0,8.333334,8.333334,0.0,-0.050335295 +259.3494300842285,0.0,8.333334,8.333334,0.0,-0.050335295 +259.35963702201843,0.0,8.333334,8.333334,0.0,-0.042935103 +259.3699049949646,0.0,8.333334,8.333334,0.0,-0.042935103 +259.3801779747009,0.0,8.333334,8.333334,0.0,-0.042935103 +259.39101004600525,0.0,8.333334,8.333334,0.0,-0.042935103 +259.4000279903412,0.0,8.333334,8.333334,0.0,-0.042935103 +259.4109981060028,0.0,8.333334,8.333334,0.0,-0.050335295 +259.4200179576874,0.0,8.333334,8.333334,0.0,-0.050335295 +259.42992997169495,0.0,8.333334,8.333334,0.0,-0.050335295 +259.44118905067444,0.0,8.333334,8.333334,0.0,-0.050335295 +259.45011496543884,0.0,8.333334,8.333334,0.0,-0.050335295 +259.4611461162567,0.0,8.333334,8.333334,0.0,-0.054035395 +259.4701750278473,0.0,8.333334,8.333334,0.0,-0.054035395 +259.48107409477234,0.0,8.333334,8.333334,0.0,-0.054035395 +259.49008297920227,0.0,8.333334,8.333334,0.0,-0.054035395 +259.5013520717621,0.0,8.333334,8.333334,0.0,-0.054035395 +259.5096471309662,0.0,8.333334,8.333334,0.0,-0.054035395 +259.5201270580292,0.0,8.333334,8.333334,0.0,-0.052185345 +259.5298879146576,0.0,8.333334,8.333334,0.0,-0.052185345 +259.54134607315063,0.0,8.333334,8.333334,0.0,-0.052185345 +259.54995107650757,0.0,8.333334,8.333334,0.0,-0.052185345 +259.5601451396942,0.0,8.333334,8.333334,0.0,-0.044785153 +259.57118105888367,0.0,9.090909,9.090909,0.0,-0.044785153 +259.58019495010376,0.0,9.090909,9.090909,0.0,-0.044785153 +259.59135603904724,0.0,9.090909,9.090909,0.0,-0.044785153 +259.5996630191803,0.0,9.090909,9.090909,0.0,-0.044785153 +259.60993695259094,0.0,9.090909,9.090909,0.0,-0.044785153 +259.6201720237732,0.0,9.090909,9.090909,0.0,-0.044785153 +259.62946605682373,0.0,9.090909,9.090909,0.0,-0.044785153 +259.6411259174347,0.0,9.090909,9.090909,0.0,-0.044785153 +259.6501660346985,0.0,9.090909,9.090909,0.0,-0.044785153 +259.6612570285797,0.0,9.090909,9.090909,0.0,-0.0466352 +259.6702890396118,0.0,9.090909,9.090909,0.0,-0.0466352 +259.67989802360535,0.0,9.090909,9.090909,0.0,-0.0466352 +259.6906490325928,0.0,9.090909,9.090909,0.0,-0.0466352 +259.6995470523834,0.0,9.090909,9.090909,0.0,-0.0466352 +259.71050000190735,0.0,9.090909,9.090909,0.0,-0.044785153 +259.7199490070343,0.0,9.090909,9.090909,0.0,-0.044785153 +259.72990798950195,0.0,9.090909,9.090909,0.0,-0.044785153 +259.7401189804077,0.0,9.090909,9.090909,0.0,-0.044785153 +259.75137591362,0.0,9.090909,9.090909,0.0,-0.044785153 +259.7603769302368,0.0,9.090909,9.090909,0.0,-0.0466352 +259.77082800865173,0.0,9.090909,9.090909,0.0,-0.0466352 +259.77975606918335,0.0,9.090909,9.090909,0.0,-0.0466352 +259.7896499633789,0.0,9.090909,9.090909,0.0,-0.0466352 +259.8013710975647,0.0,9.090909,9.090909,0.0,-0.0466352 +259.80983996391296,0.0,9.090909,9.090909,0.0,-0.0466352 +259.8211119174957,0.0,9.090909,9.090909,0.0,-0.050335295 +259.8299491405487,0.0,9.090909,9.090909,0.0,-0.050335295 +259.8399040699005,0.0,9.090909,9.090909,0.0,-0.050335295 +259.8504629135132,0.0,9.090909,9.090909,0.0,-0.050335295 +259.8594720363617,0.0,9.090909,9.090909,0.0,-0.050335295 +259.8704900741577,0.0,9.090909,9.090909,0.0,-0.050335295 +259.87949109077454,0.0,9.090909,9.090909,0.0,-0.050335295 +259.89139199256897,0.0,9.090909,9.090909,0.0,-0.050335295 +259.90138602256775,0.0,9.090909,9.090909,0.0,-0.050335295 +259.9104800224304,0.0,9.090909,9.090909,0.0,-0.050335295 +259.92012095451355,0.0,8.333334,8.333334,0.0,-0.050335295 +259.9299409389496,0.0,9.090909,9.090909,0.0,-0.050335295 +259.9398159980774,0.0,9.090909,9.090909,0.0,-0.050335295 +259.9495370388031,0.0,9.090909,9.090909,0.0,-0.050335295 +259.9603350162506,0.0,8.333334,8.333334,0.0,-0.0466352 +259.9710841178894,0.0,9.090909,9.090909,0.0,-0.0466352 +259.9813950061798,0.0,8.333334,8.333334,0.0,-0.0466352 +259.9902341365814,0.0,8.333334,8.333334,0.0,-0.0466352 +260.0009000301361,0.0,9.090909,9.090909,0.0,-0.0466352 +260.00958609580994,0.0,9.090909,9.090909,0.0,-0.0466352 +260.02020502090454,0.0,9.090909,9.090909,0.0,-0.041085053 +260.0299141407013,0.0,8.333334,8.333334,0.0,-0.041085053 +260.0396411418915,0.0,8.333334,8.333334,0.0,-0.041085053 +260.050213098526,0.0,8.333334,8.333334,0.0,-0.041085053 +260.0614011287689,0.0,8.333334,8.333334,0.0,-0.052185345 +260.0697650909424,0.0,8.333334,8.333334,0.0,-0.052185345 +260.08140897750854,0.0,9.090909,9.090909,0.0,-0.052185345 +260.0911090373993,0.0,9.090909,9.090909,0.0,-0.052185345 +260.09945702552795,0.0,9.090909,9.090909,0.0,-0.052185345 +260.1094000339508,0.0,9.090909,9.090909,0.0,-0.052185345 +260.12018609046936,0.0,9.090909,9.090909,0.0,-0.044785153 +260.1297130584717,0.0,9.090909,9.090909,0.0,-0.044785153 +260.1400170326233,0.0,9.090909,9.090909,0.0,-0.044785153 +260.1514060497284,0.0,9.090909,9.090909,0.0,-0.044785153 +260.16140699386597,0.0,8.333334,8.333334,0.0,-0.054035395 +260.17141604423523,0.0,9.090909,9.090909,0.0,-0.054035395 +260.18067812919617,0.0,9.090909,9.090909,0.0,-0.054035395 +260.1895680427551,0.0,9.090909,9.090909,0.0,-0.054035395 +260.1997010707855,0.0,9.090909,9.090909,0.0,-0.054035395 +260.2108111381531,0.0,9.090909,9.090909,0.0,-0.072535895 +260.2198169231415,0.0,8.333334,8.333334,0.0,-0.072535895 +260.2298619747162,0.0,9.090909,9.090909,0.0,-0.072535895 +260.24141693115234,0.0,8.333334,8.333334,0.0,-0.072535895 +260.24964714050293,0.0,8.333334,8.333334,0.0,-0.072535895 +260.2608530521393,0.0,9.090909,9.090909,0.0,-0.042935103 +260.26978302001953,0.0,9.090909,9.090909,0.0,-0.042935103 +260.27980613708496,0.0,9.090909,9.090909,0.0,-0.042935103 +260.2914090156555,0.0,9.090909,9.090909,0.0,-0.042935103 +260.30091309547424,0.0,9.090909,9.090909,0.0,-0.042935103 +260.3099241256714,0.0,9.090909,9.090909,0.0,-0.050335295 +260.3197250366211,0.0,9.090909,9.090909,0.0,-0.050335295 +260.32965111732483,0.0,9.090909,9.090909,0.0,-0.050335295 +260.3398139476776,0.0,9.090909,9.090909,0.0,-0.050335295 +260.34996604919434,0.0,9.090909,9.090909,0.0,-0.050335295 +260.36111307144165,0.0,9.090909,9.090909,0.0,-0.06883579 +260.37013006210327,0.0,9.090909,9.090909,0.0,-0.06883579 +260.38072514533997,0.0,9.090909,9.090909,0.0,-0.06883579 +260.3909990787506,0.0,9.090909,9.090909,0.0,-0.06883579 +260.4000129699707,0.0,9.090909,9.090909,0.0,-0.06883579 +260.4095621109009,0.0,9.090909,9.090909,0.0,-0.039235007 +260.4202370643616,0.0,9.090909,9.090909,0.0,-0.039235007 +260.4299509525299,0.0,9.090909,9.090909,0.0,-0.039235007 +260.44144892692566,0.0,9.090909,9.090909,0.0,-0.039235007 +260.4511251449585,0.0,9.090909,9.090909,0.0,-0.039235007 +260.4596059322357,0.0,9.090909,9.090909,0.0,-0.06143559 +260.47086811065674,0.0,9.090909,9.090909,0.0,-0.06143559 +260.4811120033264,0.0,9.090909,9.090909,0.0,-0.06143559 +260.48997497558594,0.0,9.090909,9.090909,0.0,-0.06143559 +260.49942111968994,0.0,9.090909,9.090909,0.0,-0.06143559 +260.50947999954224,0.0,9.090909,9.090909,0.0,-0.06143559 +260.52023100852966,0.0,9.090909,9.090909,0.0,-0.06143559 +260.52990794181824,0.0,8.333334,8.333334,0.0,-0.06143559 +260.54111313819885,0.0,8.333334,8.333334,0.0,-0.06143559 +260.5501310825348,0.0,8.333334,8.333334,0.0,-0.06143559 +260.5613670349121,0.0,8.333334,8.333334,0.0,-0.0466352 +260.5711889266968,0.0,8.333334,8.333334,0.0,-0.0466352 +260.5801920890808,0.0,8.333334,8.333334,0.0,-0.0466352 +260.58942103385925,0.0,8.333334,8.333334,0.0,-0.0466352 +260.59944200515747,0.0,8.333334,8.333334,0.0,-0.0466352 +260.6104850769043,0.0,8.333334,8.333334,0.0,-0.052185345 +260.6213319301605,0.0,8.333334,8.333334,0.0,-0.052185345 +260.63110995292664,0.0,8.333334,8.333334,0.0,-0.052185345 +260.6400980949402,0.0,8.333334,8.333334,0.0,-0.052185345 +260.65135502815247,0.0,8.333334,8.333334,0.0,-0.052185345 +260.66113114356995,0.0,8.333334,8.333334,0.0,-0.05588545 +260.6700949668884,0.0,8.333334,8.333334,0.0,-0.05588545 +260.67939496040344,0.0,8.333334,8.333334,0.0,-0.05588545 +260.6896629333496,0.0,8.333334,8.333334,0.0,-0.05588545 +260.70004510879517,0.0,8.333334,8.333334,0.0,-0.05588545 +260.7104980945587,0.0,8.333334,8.333334,0.0,-0.0577355 +260.7194929122925,0.0,8.333334,8.333334,0.0,-0.0577355 +260.72991394996643,0.0,8.333334,8.333334,0.0,-0.0577355 +260.741229057312,0.0,8.333334,8.333334,0.0,-0.0577355 +260.74953603744507,0.0,8.333334,8.333334,0.0,-0.0577355 +260.75980591773987,0.0,8.333334,8.333334,0.0,-0.0466352 +260.7713520526886,0.0,8.333334,8.333334,0.0,-0.0466352 +260.7794871330261,0.0,8.333334,8.333334,0.0,-0.0466352 +260.7904851436615,0.0,8.333334,8.333334,0.0,-0.0466352 +260.8013370037079,0.0,8.333334,8.333334,0.0,-0.0466352 +260.8095190525055,0.0,8.333334,8.333334,0.0,-0.0466352 +260.8200960159302,0.0,8.333334,8.333334,0.0,-0.0466352 +260.829922914505,0.0,8.333334,8.333334,0.0,-0.0466352 +260.83997893333435,0.0,8.333334,8.333334,0.0,-0.0466352 +260.8494620323181,0.0,8.333334,8.333334,0.0,-0.0466352 +260.8594551086426,0.0,8.333334,8.333334,0.0,-0.06328564 +260.8713481426239,0.0,8.333334,8.333334,0.0,-0.06328564 +260.8813509941101,0.0,8.333334,8.333334,0.0,-0.06328564 +260.89134907722473,0.0,8.333334,8.333334,0.0,-0.06328564 +260.9010829925537,0.0,8.333334,8.333334,0.0,-0.06328564 +260.9100799560547,0.0,8.333334,8.333334,0.0,-0.06328564 +260.92012906074524,0.0,8.333334,8.333334,0.0,-0.041085053 +260.9299371242523,0.0,8.333334,8.333334,0.0,-0.041085053 +260.93960404396057,0.0,8.333334,8.333334,0.0,-0.041085053 +260.9495539665222,0.0,8.333334,8.333334,0.0,-0.041085053 +260.95958709716797,0.0,8.333334,8.333334,0.0,-0.039235007 +260.9706521034241,0.0,8.333334,8.333334,0.0,-0.039235007 +260.9793930053711,0.0,8.333334,8.333334,0.0,-0.039235007 +260.99110412597656,0.0,8.333334,8.333334,0.0,-0.039235007 +261.0001051425934,0.0,8.333334,8.333334,0.0,-0.039235007 +261.0094289779663,0.0,8.333334,8.333334,0.0,-0.039235007 +261.0201880931854,0.0,8.333334,8.333334,0.0,-0.050335295 +261.02946305274963,0.0,8.333334,8.333334,0.0,-0.050335295 +261.03964400291443,0.0,8.333334,8.333334,0.0,-0.050335295 +261.0499451160431,0.0,8.333334,8.333334,0.0,-0.050335295 +261.06080293655396,0.0,8.333334,8.333334,0.0,-0.042935103 +261.0713291168213,0.0,8.333334,8.333334,0.0,-0.042935103 +261.08049607276917,0.0,8.333334,8.333334,0.0,-0.042935103 +261.08942699432373,0.0,8.333334,8.333334,0.0,-0.042935103 +261.10130190849304,0.0,8.333334,8.333334,0.0,-0.042935103 +261.1102979183197,0.0,8.333334,8.333334,0.0,-0.042935103 +261.1202070713043,0.0,8.333334,8.333334,0.0,-0.042935103 +261.1297290325165,0.0,8.333334,8.333334,0.0,-0.042935103 +261.1413779258728,0.0,8.333334,8.333334,0.0,-0.042935103 +261.15131402015686,0.0,8.333334,8.333334,0.0,-0.042935103 +261.16071701049805,0.0,8.333334,8.333334,0.0,-0.052185345 +261.1696090698242,0.0,8.333334,8.333334,0.0,-0.052185345 +261.1801280975342,0.0,8.333334,8.333334,0.0,-0.052185345 +261.19116592407227,0.0,8.333334,8.333334,0.0,-0.052185345 +261.2001619338989,0.0,8.333334,8.333334,0.0,-0.052185345 +261.21083402633667,0.0,8.333334,8.333334,0.0,-0.054035395 +261.2198369503021,0.0,8.333334,8.333334,0.0,-0.054035395 +261.2299289703369,0.0,8.333334,8.333334,0.0,-0.054035395 +261.24032497406006,0.0,8.333334,8.333334,0.0,-0.054035395 +261.24982810020447,0.0,8.333334,8.333334,0.0,-0.054035395 +261.26113295555115,0.0,8.333334,8.333334,0.0,-0.044785153 +261.27016496658325,0.0,8.333334,8.333334,0.0,-0.044785153 +261.27941393852234,0.0,8.333334,8.333334,0.0,-0.044785153 +261.28998613357544,0.0,8.333334,8.333334,0.0,-0.044785153 +261.3009250164032,0.0,8.333334,8.333334,0.0,-0.044785153 +261.30994510650635,0.0,8.333334,8.333334,0.0,-0.041085053 +261.3202049732208,0.0,8.333334,8.333334,0.0,-0.041085053 +261.32994508743286,0.0,8.333334,8.333334,0.0,-0.041085053 +261.3413209915161,0.0,8.333334,8.333334,0.0,-0.041085053 +261.35114002227783,0.0,8.333334,8.333334,0.0,-0.041085053 +261.3601429462433,0.0,8.333334,8.333334,0.0,-0.044785153 +261.36939001083374,0.0,8.333334,8.333334,0.0,-0.044785153 +261.3798179626465,0.0,8.333334,8.333334,0.0,-0.044785153 +261.3910241127014,0.0,8.333334,8.333334,0.0,-0.044785153 +261.40004801750183,0.0,8.333334,8.333334,0.0,-0.044785153 +261.4102249145508,0.0,8.333334,8.333334,0.0,-0.044785153 +261.4202151298523,0.0,8.333334,8.333334,0.0,-0.044785153 +261.42995405197144,0.0,8.333334,8.333334,0.0,-0.044785153 +261.44116592407227,0.0,8.333334,8.333334,0.0,-0.044785153 +261.4501850605011,0.0,8.333334,8.333334,0.0,-0.044785153 +261.4606730937958,0.0,8.333334,8.333334,0.0,-0.05588545 +261.46963906288147,0.0,8.333334,8.333334,0.0,-0.05588545 +261.4811301231384,0.0,8.333334,8.333334,0.0,-0.05588545 +261.4901599884033,0.0,8.333334,8.333334,0.0,-0.05588545 +261.49959206581116,0.0,8.333334,8.333334,0.0,-0.05588545 +261.51051592826843,0.0,8.333334,8.333334,0.0,-0.041085053 +261.51959013938904,0.0,8.333334,8.333334,0.0,-0.041085053 +261.52995204925537,0.0,8.333334,8.333334,0.0,-0.041085053 +261.53994393348694,0.0,8.333334,8.333334,0.0,-0.041085053 +261.5497679710388,0.0,8.333334,8.333334,0.0,-0.041085053 +261.5594871044159,0.0,8.333334,8.333334,0.0,-0.042935103 +261.570631980896,0.0,8.333334,8.333334,0.0,-0.042935103 +261.57953095436096,0.0,8.333334,8.333334,0.0,-0.042935103 +261.5912790298462,0.0,8.333334,8.333334,0.0,-0.042935103 +261.60127210617065,0.0,8.333334,8.333334,0.0,-0.042935103 +261.6094899177551,0.0,8.333334,8.333334,0.0,-0.042935103 +261.6201870441437,0.0,8.333334,8.333334,0.0,-0.039235007 +261.6299180984497,0.0,8.333334,8.333334,0.0,-0.039235007 +261.64033603668213,0.0,8.333334,8.333334,0.0,-0.039235007 +261.6506779193878,0.0,8.333334,8.333334,0.0,-0.039235007 +261.6597330570221,0.0,8.333334,8.333334,0.0,-0.06698574 +261.66990900039673,0.0,8.333334,8.333334,0.0,-0.06698574 +261.68126010894775,0.0,8.333334,8.333334,0.0,-0.06698574 +261.69127893447876,0.0,8.333334,8.333334,0.0,-0.06698574 +261.70124793052673,0.0,8.333334,8.333334,0.0,-0.06698574 +261.71051812171936,0.0,8.333334,8.333334,0.0,-0.052185345 +261.7202069759369,0.0,8.333334,8.333334,0.0,-0.052185345 +261.7299129962921,0.0,8.333334,8.333334,0.0,-0.052185345 +261.73993492126465,0.0,8.333334,8.333334,0.0,-0.052185345 +261.7512700557709,0.0,8.333334,8.333334,0.0,-0.052185345 +261.75994300842285,0.0,8.333334,8.333334,0.0,-0.054035395 +261.76941204071045,0.0,8.333334,8.333334,0.0,-0.054035395 +261.78125500679016,0.0,8.333334,8.333334,0.0,-0.054035395 +261.79126501083374,0.0,8.333334,8.333334,0.0,-0.054035395 +261.8010051250458,0.0,8.333334,8.333334,0.0,-0.054035395 +261.8102231025696,0.0,9.090909,9.090909,0.0,-0.054035395 +261.8196659088135,0.0,8.333334,8.333334,0.0,-0.0466352 +261.829402923584,0.0,8.333334,8.333334,0.0,-0.0466352 +261.8412890434265,0.0,8.333334,8.333334,0.0,-0.0466352 +261.8504819869995,0.0,8.333334,8.333334,0.0,-0.0466352 +261.8594980239868,0.0,9.090909,9.090909,0.0,-0.039235007 +261.87125992774963,0.0,9.090909,9.090909,0.0,-0.039235007 +261.8812470436096,0.0,9.090909,9.090909,0.0,-0.039235007 +261.8900611400604,0.0,9.090909,9.090909,0.0,-0.039235007 +261.90019392967224,0.0,9.090909,9.090909,0.0,-0.039235007 +261.90941405296326,0.0,9.090909,9.090909,0.0,-0.039235007 +261.9202129840851,0.0,9.090909,9.090909,0.0,-0.09843658 +261.9299569129944,0.0,9.090909,9.090909,0.0,-0.09843658 +261.94056510925293,0.0,9.090909,9.090909,0.0,-0.09843658 +261.9495599269867,0.0,9.090909,9.090909,0.0,-0.09843658 +261.9612629413605,0.0,9.090909,9.090909,0.0,-0.050335295 +261.9702241420746,0.0,9.090909,9.090909,0.0,-0.050335295 +261.98044300079346,0.0,9.090909,9.090909,0.0,-0.050335295 +261.9902150630951,0.0,9.090909,9.090909,0.0,-0.050335295 +261.9996929168701,0.0,9.090909,9.090909,0.0,-0.050335295 +262.0105230808258,0.0,9.090909,9.090909,0.0,-0.039235007 +262.0194730758667,0.0,9.090909,9.090909,0.0,-0.039235007 +262.0299320220947,0.0,9.090909,9.090909,0.0,-0.039235007 +262.03964710235596,0.0,9.090909,9.090909,0.0,-0.039235007 +262.0512340068817,0.0,9.090909,9.090909,0.0,-0.039235007 +262.06043696403503,0.0,9.090909,9.090909,0.0,-0.0577355 +262.0695490837097,0.0,9.090909,9.090909,0.0,-0.0577355 +262.0802080631256,0.0,9.090909,9.090909,0.0,-0.0577355 +262.08951902389526,0.0,9.090909,9.090909,0.0,-0.0577355 +262.10121393203735,0.0,9.090909,9.090909,0.0,-0.0577355 +262.1105110645294,0.0,9.090909,9.090909,0.0,-0.050335295 +262.1202161312103,0.0,9.090909,9.090909,0.0,-0.050335295 +262.12946009635925,0.0,9.090909,9.090909,0.0,-0.050335295 +262.1407849788666,0.0,9.090909,9.090909,0.0,-0.050335295 +262.1497149467468,0.0,9.090909,9.090909,0.0,-0.050335295 +262.16121101379395,0.0,9.090909,9.090909,0.0,-0.050335295 +262.1702289581299,0.0,9.090909,9.090909,0.0,-0.050335295 +262.17944407463074,0.0,9.090909,9.090909,0.0,-0.050335295 +262.1912260055542,0.0,9.090909,9.090909,0.0,-0.050335295 +262.1996200084686,0.0,9.090909,9.090909,0.0,-0.050335295 +262.2108130455017,0.0,9.090909,9.090909,0.0,-0.044785153 +262.2198169231415,0.0,9.090909,9.090909,0.0,-0.044785153 +262.22989296913147,0.0,9.090909,9.090909,0.0,-0.044785153 +262.24125599861145,0.0,9.090909,9.090909,0.0,-0.044785153 +262.25122594833374,0.0,9.090909,9.090909,0.0,-0.044785153 +262.2597210407257,0.0,9.090909,9.090909,0.0,-0.041085053 +262.26942110061646,0.0,9.090909,9.090909,0.0,-0.041085053 +262.279904127121,0.0,9.090909,9.090909,0.0,-0.041085053 +262.2912061214447,0.0,9.090909,9.090909,0.0,-0.041085053 +262.3008849620819,0.0,9.090909,9.090909,0.0,-0.041085053 +262.3099031448364,0.0,9.090909,9.090909,0.0,-0.0466352 +262.3212230205536,0.0,9.090909,9.090909,0.0,-0.0466352 +262.33123111724854,0.0,9.090909,9.090909,0.0,-0.0466352 +262.34107995033264,0.0,9.090909,9.090909,0.0,-0.0466352 +262.3500509262085,0.0,9.090909,9.090909,0.0,-0.0466352 +262.361221075058,0.0,9.090909,9.090909,0.0,-0.042935103 +262.36939096450806,0.0,9.090909,9.090909,0.0,-0.042935103 +262.3799750804901,0.0,9.090909,9.090909,0.0,-0.042935103 +262.38995909690857,0.0,9.090909,9.090909,0.0,-0.042935103 +262.4000060558319,0.0,8.333334,8.333334,0.0,-0.042935103 +262.4098689556122,0.0,9.090909,9.090909,0.0,-0.042935103 +262.4196889400482,0.0,8.333334,8.333334,0.0,-0.042935103 +262.42947912216187,0.0,8.333334,8.333334,0.0,-0.042935103 +262.4398739337921,0.0,8.333334,8.333334,0.0,-0.042935103 +262.45120906829834,0.0,8.333334,8.333334,0.0,-0.042935103 +262.46118807792664,0.0,8.333334,8.333334,0.0,-0.041085053 +262.4700999259949,0.0,8.333334,8.333334,0.0,-0.041085053 +262.4810690879822,0.0,8.333334,8.333334,0.0,-0.041085053 +262.4900920391083,0.0,8.333334,8.333334,0.0,-0.041085053 +262.50006008148193,0.0,8.333334,8.333334,0.0,-0.041085053 +262.51106309890747,0.0,8.333334,8.333334,0.0,-0.042935103 +262.5202069282532,0.0,8.333334,8.333334,0.0,-0.042935103 +262.5296959877014,0.0,8.333334,8.333334,0.0,-0.042935103 +262.53979301452637,0.0,8.333334,8.333334,0.0,-0.042935103 +262.5506489276886,0.0,8.333334,8.333334,0.0,-0.042935103 +262.55954813957214,0.0,8.333334,8.333334,0.0,-0.050335295 +262.57117891311646,0.0,8.333334,8.333334,0.0,-0.050335295 +262.5801830291748,0.0,8.333334,8.333334,0.0,-0.050335295 +262.591206073761,0.0,8.333334,8.333334,0.0,-0.050335295 +262.6012101173401,0.0,8.333334,8.333334,0.0,-0.050335295 +262.6096110343933,0.0,8.333334,8.333334,0.0,-0.050335295 +262.6195499897003,0.0,8.333334,8.333334,0.0,-0.05588545 +262.6299431324005,0.0,8.333334,8.333334,0.0,-0.05588545 +262.63974595069885,0.0,8.333334,8.333334,0.0,-0.05588545 +262.6511809825897,0.0,8.333334,8.333334,0.0,-0.05588545 +262.66117095947266,0.0,8.333334,8.333334,0.0,-0.03553491 +262.66971802711487,0.0,8.333334,8.333334,0.0,-0.03553491 +262.6811771392822,0.0,8.333334,8.333334,0.0,-0.03553491 +262.69117999076843,0.0,8.333334,8.333334,0.0,-0.03553491 +262.7003870010376,0.0,8.333334,8.333334,0.0,-0.03553491 +262.71025705337524,0.0,8.333334,8.333334,0.0,-0.03553491 +262.71947503089905,0.0,8.333334,8.333334,0.0,-0.033684865 +262.72996401786804,0.0,8.333334,8.333334,0.0,-0.033684865 +262.7401671409607,0.0,8.333334,8.333334,0.0,-0.033684865 +262.7511830329895,0.0,8.333334,8.333334,0.0,-0.033684865 +262.7596080303192,0.0,8.333334,8.333334,0.0,-0.042935103 +262.76940298080444,0.0,8.333334,8.333334,0.0,-0.042935103 +262.78115701675415,0.0,8.333334,8.333334,0.0,-0.042935103 +262.79022693634033,0.0,8.333334,8.333334,0.0,-0.042935103 +262.7996530532837,0.0,8.333334,8.333334,0.0,-0.042935103 +262.81051206588745,0.0,8.333334,8.333334,0.0,-0.039235007 +262.82024002075195,0.0,7.575758,7.575758,0.0,-0.039235007 +262.82995104789734,0.0,7.575758,7.575758,0.0,-0.039235007 +262.8412010669708,0.0,7.575758,7.575758,0.0,-0.039235007 +262.8496220111847,0.0,7.575758,7.575758,0.0,-0.039235007 +262.8594880104065,0.0,7.575758,7.575758,0.0,-0.050335295 +262.87110209465027,0.0,7.575758,7.575758,0.0,-0.050335295 +262.8800780773163,0.0,7.575758,7.575758,0.0,-0.050335295 +262.89025807380676,0.0,7.575758,7.575758,0.0,-0.050335295 +262.9011631011963,0.0,7.575758,7.575758,0.0,-0.050335295 +262.9105279445648,0.0,7.575758,7.575758,0.0,-0.06328564 +262.92023396492004,0.0,7.575758,7.575758,0.0,-0.06328564 +262.9295630455017,0.0,7.575758,7.575758,0.0,-0.06328564 +262.94054913520813,0.0,7.575758,7.575758,0.0,-0.06328564 +262.9495749473572,0.0,7.575758,7.575758,0.0,-0.06328564 +262.96055006980896,0.0,7.575758,7.575758,0.0,-0.050335295 +262.96946907043457,0.0,7.575758,7.575758,0.0,-0.050335295 +262.98027300834656,0.0,7.575758,7.575758,0.0,-0.050335295 +262.9911720752716,0.0,7.575758,7.575758,0.0,-0.050335295 +262.9999289512634,0.0,7.575758,7.575758,0.0,-0.050335295 +263.01052594184875,0.0,7.575758,7.575758,0.0,-0.050335295 +263.020220041275,0.0,7.575758,7.575758,0.0,-0.050335295 +263.0299379825592,0.0,7.575758,7.575758,0.0,-0.050335295 +263.03964710235596,0.0,7.575758,7.575758,0.0,-0.050335295 +263.04967212677,0.0,7.575758,7.575758,0.0,-0.050335295 +263.0595359802246,0.0,7.575758,7.575758,0.0,-0.06143559 +263.07028102874756,0.0,7.575758,7.575758,0.0,-0.06143559 +263.0811560153961,0.0,7.575758,7.575758,0.0,-0.06143559 +263.0911569595337,0.0,7.575758,7.575758,0.0,-0.06143559 +263.10113406181335,0.0,7.575758,7.575758,0.0,-0.06143559 +263.11053705215454,0.0,7.575758,7.575758,0.0,-0.050335295 +263.1202161312103,0.0,7.575758,7.575758,0.0,-0.050335295 +263.12970495224,0.0,7.575758,7.575758,0.0,-0.050335295 +263.1406280994415,0.0,7.575758,7.575758,0.0,-0.050335295 +263.1496090888977,0.0,7.575758,7.575758,0.0,-0.050335295 +263.1602849960327,0.0,7.575758,7.575758,0.0,-0.044785153 +263.1693971157074,0.0,7.575758,7.575758,0.0,-0.044785153 +263.1811349391937,0.0,7.575758,7.575758,0.0,-0.044785153 +263.18948912620544,0.0,7.575758,7.575758,0.0,-0.044785153 +263.20115399360657,0.0,7.575758,7.575758,0.0,-0.044785153 +263.2100920677185,0.0,7.575758,7.575758,0.0,-0.0077841706 +263.2198021411896,0.0,7.575758,7.575758,0.0,-0.0077841706 +263.230446100235,0.0,7.575758,7.575758,0.0,-0.0077841706 +263.23943305015564,0.0,7.575758,7.575758,0.0,-0.0077841706 +263.2502770423889,0.0,7.575758,7.575758,0.0,-0.0077841706 +263.2611229419708,0.0,7.575758,7.575758,0.0,-0.042935103 +263.2711400985718,0.0,7.575758,7.575758,0.0,-0.042935103 +263.2811369895935,0.0,7.575758,7.575758,0.0,-0.042935103 +263.2902789115906,0.0,7.575758,7.575758,0.0,-0.042935103 +263.3002519607544,0.0,7.575758,7.575758,0.0,-0.042935103 +263.3098530769348,0.0,7.575758,7.575758,0.0,-0.050335295 +263.31944704055786,0.0,7.575758,7.575758,0.0,-0.050335295 +263.32997703552246,0.0,7.575758,7.575758,0.0,-0.050335295 +263.3402991294861,0.0,7.575758,7.575758,0.0,-0.050335295 +263.34953594207764,0.0,7.575758,7.575758,0.0,-0.050335295 +263.36114597320557,0.0,7.575758,7.575758,0.0,-0.052185345 +263.3704631328583,0.0,7.575758,7.575758,0.0,-0.052185345 +263.3811240196228,0.0,7.575758,7.575758,0.0,-0.052185345 +263.39092111587524,0.0,7.575758,7.575758,0.0,-0.052185345 +263.39994502067566,0.0,7.575758,7.575758,0.0,-0.052185345 +263.4095160961151,0.0,7.575758,7.575758,0.0,-0.052185345 +263.4202251434326,0.0,7.575758,7.575758,0.0,-0.052185345 +263.4299669265747,0.0,7.575758,7.575758,0.0,-0.052185345 +263.4411630630493,0.0,7.575758,7.575758,0.0,-0.052185345 +263.4503870010376,0.0,7.575758,7.575758,0.0,-0.052185345 +263.4595510959625,0.0,7.575758,7.575758,0.0,-0.054035395 +263.46958208084106,0.0,7.575758,7.575758,0.0,-0.054035395 +263.4805181026459,0.0,7.575758,7.575758,0.0,-0.054035395 +263.4900231361389,0.0,7.575758,7.575758,0.0,-0.054035395 +263.49969601631165,0.0,7.575758,7.575758,0.0,-0.054035395 +263.51112604141235,0.0,7.575758,7.575758,0.0,-0.05588545 +263.52024102211,0.0,7.575758,7.575758,0.0,-0.05588545 +263.5299401283264,0.0,7.575758,7.575758,0.0,-0.05588545 +263.5397391319275,0.0,7.575758,7.575758,0.0,-0.05588545 +263.55112409591675,0.0,7.575758,7.575758,0.0,-0.05588545 +263.56112003326416,0.0,7.575758,7.575758,0.0,-0.044785153 +263.5710699558258,0.0,7.575758,7.575758,0.0,-0.044785153 +263.5800850391388,0.0,7.575758,7.575758,0.0,-0.044785153 +263.58977603912354,0.0,6.818182,6.818182,0.0,-0.044785153 +263.6011199951172,0.0,6.818182,6.818182,0.0,-0.044785153 +263.61030101776123,0.0,6.818182,6.818182,0.0,-0.044785153 +263.61991691589355,0.0,6.060606,6.060606,0.0,-0.042935103 +263.62994408607483,0.0,5.3030305,5.3030305,0.0,-0.042935103 +263.6411440372467,0.0,4.5454545,4.5454545,0.0,-0.042935103 +263.6511149406433,0.0,3.787879,3.787879,0.0,-0.042935103 +263.6610839366913,0.0,3.787879,3.787879,0.0,-0.041085053 +263.6702001094818,0.0,3.787879,3.787879,0.0,-0.041085053 +263.6796259880066,0.0,3.030303,3.030303,0.0,-0.041085053 +263.69056510925293,0.0,3.030303,3.030303,0.0,-0.041085053 +263.7001140117645,0.0,2.2727273,2.2727273,0.0,-0.041085053 +263.70947313308716,0.0,2.2727273,2.2727273,0.0,-0.041085053 +263.7202260494232,0.0,1.5151515,1.5151515,0.0,-0.054035395 +263.7299540042877,0.0,1.5151515,1.5151515,0.0,-0.054035395 +263.73993611335754,0.0,1.5151515,1.5151515,0.0,-0.054035395 +263.7511179447174,0.0,0.75757575,0.75757575,0.0,-0.054035395 +263.7602491378784,0.0,0.75757575,0.75757575,0.0,-0.052185345 +263.7694809436798,0.0,0.0,0.0,0.0,-0.052185345 +263.7802951335907,0.0,0.0,0.0,0.0,-0.052185345 +263.7902801036835,0.0,0.0,0.0,0.0,-0.052185345 +263.8010981082916,0.0,0.0,0.0,0.0,-0.052185345 +263.81053614616394,0.0,0.0,0.0,0.0,-0.06698574 +263.8195331096649,0.0,0.0,0.0,0.0,-0.06698574 +263.8299779891968,0.0,0.0,0.0,0.0,-0.06698574 +263.8402109146118,0.0,0.0,0.0,0.0,-0.06698574 +263.85030698776245,0.0,0.0,0.0,0.0,-0.06698574 +263.8595130443573,0.0,0.0,0.0,0.0,-0.0466352 +263.8710970878601,0.0,0.0,0.0,0.0,-0.0466352 +263.8802800178528,0.0,0.0,0.0,0.0,-0.0466352 +263.8910930156708,0.0,0.0,0.0,0.0,-0.0466352 +263.9010879993439,0.0,0.0,0.0,0.0,-0.0466352 +263.91053795814514,0.0,0.0,0.0,0.0,-0.0466352 +263.92017698287964,0.0,0.0,0.0,0.0,-0.0466352 +263.9299781322479,0.0,0.0,0.0,0.0,-0.0466352 +263.9401240348816,0.0,0.0,0.0,0.0,-0.0466352 +263.949422121048,0.0,0.0,0.0,0.0,-0.0466352 +263.9610779285431,0.0,0.0,0.0,0.0,-0.0466352 +263.9701590538025,0.0,0.0,0.0,0.0,-0.0466352 +263.9811170101166,0.0,0.75757575,0.75757575,0.0,-0.0466352 +263.99108505249023,0.0,2.2727273,2.2727273,0.0,-0.0466352 +264.00108003616333,0.0,4.5454545,4.5454545,0.0,-0.0466352 +264.0103120803833,0.0,4.5454545,4.5454545,0.0,-0.0466352 +264.0208640098572,0.0,6.060606,6.060606,0.0,-0.05588545 +264.0297770500183,0.0,7.575758,7.575758,0.0,-0.05588545 +264.03953409194946,0.0,9.090909,9.090909,0.0,-0.05588545 +264.0510940551758,0.0,10.606061,10.606061,0.0,-0.05588545 +264.05952501296997,0.0,10.606061,10.606061,0.0,-0.024434604 +264.0710940361023,0.0,13.636364,13.636364,0.0,-0.024434604 +264.0810730457306,0.0,15.909091,15.909091,0.0,-0.024434604 +264.0899500846863,0.0,15.909091,15.909091,0.0,-0.024434604 +264.1001079082489,0.0,17.424242,17.424242,0.0,-0.024434604 +264.1099419593811,0.0,18.181818,18.181818,0.0,-0.024434604 +264.11980295181274,0.0,18.939394,18.939394,0.0,-0.0466352 +264.12962198257446,0.0,19.69697,19.69697,0.0,-0.0466352 +264.14109206199646,0.0,21.212122,21.212122,0.0,-0.0466352 +264.1503040790558,0.0,21.969696,21.969696,0.0,-0.0466352 +264.16107296943665,0.0,22.727274,22.727274,0.0,-0.024434604 +264.17108392715454,0.0,24.242424,24.242424,0.0,-0.024434604 +264.1797709465027,0.0,24.242424,24.242424,0.0,-0.024434604 +264.1901569366455,0.0,24.242424,24.242424,0.0,-0.024434604 +264.2006549835205,0.0,25.0,25.0,0.0,-0.024434604 +264.2096359729767,0.0,25.757576,25.757576,0.0,-0.044785153 +264.2196841239929,0.0,25.757576,25.757576,0.0,-0.044785153 +264.22951102256775,0.0,26.515152,26.515152,0.0,-0.044785153 +264.2403450012207,0.0,26.515152,26.515152,0.0,-0.044785153 +264.25080013275146,0.0,27.272728,27.272728,0.0,-0.044785153 +264.26104712486267,0.0,28.030302,28.030302,0.0,-0.041085053 +264.2703330516815,0.0,28.030302,28.030302,0.0,-0.041085053 +264.28108406066895,0.0,28.78788,28.78788,0.0,-0.041085053 +264.2905080318451,0.0,28.78788,28.78788,0.0,-0.041085053 +264.29949593544006,0.0,29.545454,29.545454,0.0,-0.041085053 +264.30978894233704,0.0,29.545454,29.545454,0.0,-0.029984765 +264.31941413879395,0.0,30.303032,30.303032,0.0,-0.029984765 +264.32998991012573,0.0,31.060606,31.060606,0.0,-0.029984765 +264.341068983078,0.0,31.060606,31.060606,0.0,-0.029984765 +264.3504891395569,0.0,31.818182,31.818182,0.0,-0.029984765 +264.3594229221344,0.0,32.575756,32.575756,0.0,-0.0466352 +264.3708460330963,0.0,32.575756,32.575756,0.0,-0.0466352 +264.3803300857544,0.0,33.333336,33.333336,0.0,-0.0466352 +264.39086413383484,0.0,33.333336,33.333336,0.0,-0.0466352 +264.3998601436615,0.0,33.333336,33.333336,0.0,-0.0466352 +264.4110391139984,0.0,34.09091,34.09091,0.0,-0.033684865 +264.42000699043274,0.0,34.09091,34.09091,0.0,-0.033684865 +264.4297330379486,0.0,34.09091,34.09091,0.0,-0.033684865 +264.43961811065674,0.0,34.09091,34.09091,0.0,-0.033684865 +264.4510500431061,0.0,34.09091,34.09091,0.0,-0.033684865 +264.46102595329285,0.0,34.09091,34.09091,0.0,-0.06143559 +264.470174074173,0.0,34.09091,34.09091,0.0,-0.06143559 +264.48017501831055,0.0,33.333336,33.333336,0.0,-0.06143559 +264.48995995521545,0.0,33.333336,33.333336,0.0,-0.06143559 +264.50101804733276,0.0,33.333336,33.333336,0.0,-0.06143559 +264.5098879337311,0.0,32.575756,32.575756,0.0,-0.05588545 +264.51947498321533,0.0,32.575756,32.575756,0.0,-0.05588545 +264.5299451351166,0.0,31.818182,31.818182,0.0,-0.05588545 +264.54104495048523,0.0,31.818182,31.818182,0.0,-0.05588545 +264.5510210990906,0.0,31.818182,31.818182,0.0,-0.05588545 +264.55999302864075,0.0,31.060606,31.060606,0.0,-0.044785153 +264.5702950954437,0.0,31.060606,31.060606,0.0,-0.044785153 +264.58005714416504,0.0,30.303032,30.303032,0.0,-0.044785153 +264.5910520553589,0.0,30.303032,30.303032,0.0,-0.044785153 +264.5999970436096,0.0,30.303032,30.303032,0.0,-0.044785153 +264.61055994033813,0.0,29.545454,29.545454,0.0,-0.07438594 +264.6195089817047,0.0,28.78788,28.78788,0.0,-0.07438594 +264.62996196746826,0.0,28.78788,28.78788,0.0,-0.07438594 +264.6408200263977,0.0,28.030302,28.030302,0.0,-0.07438594 +264.6498169898987,0.0,28.030302,28.030302,0.0,-0.07438594 +264.6603319644928,0.0,27.272728,27.272728,0.0,-0.044785153 +264.6701600551605,0.0,26.515152,26.515152,0.0,-0.044785153 +264.6796700954437,0.0,26.515152,26.515152,0.0,-0.044785153 +264.69030594825745,0.0,25.757576,25.757576,0.0,-0.044785153 +264.7010109424591,0.0,25.757576,25.757576,0.0,-0.044785153 +264.7105519771576,0.0,25.0,25.0,0.0,-0.042935103 +264.7200119495392,0.0,25.0,25.0,0.0,-0.042935103 +264.72995710372925,0.0,25.0,25.0,0.0,-0.042935103 +264.7396490573883,0.0,24.242424,24.242424,0.0,-0.042935103 +264.7499740123749,0.0,24.242424,24.242424,0.0,-0.042935103 +264.7602450847626,0.0,24.242424,24.242424,0.0,-0.054035395 +264.76945400238037,0.0,23.484848,23.484848,0.0,-0.054035395 +264.7803349494934,0.0,23.484848,23.484848,0.0,-0.054035395 +264.78955602645874,0.0,23.484848,23.484848,0.0,-0.054035395 +264.8010129928589,0.0,23.484848,23.484848,0.0,-0.054035395 +264.81054306030273,0.0,23.484848,23.484848,0.0,-0.054035395 +264.82000613212585,0.0,22.727274,22.727274,0.0,-0.0466352 +264.8294961452484,0.0,22.727274,22.727274,0.0,-0.0466352 +264.84054613113403,0.0,22.727274,22.727274,0.0,-0.0466352 +264.8494620323181,0.0,22.727274,22.727274,0.0,-0.0466352 +264.8610191345215,0.0,22.727274,22.727274,0.0,-0.0466352 +264.8703451156616,0.0,22.727274,22.727274,0.0,-0.0466352 +264.8799340724945,0.0,21.969696,21.969696,0.0,-0.0466352 +264.8910140991211,0.0,21.969696,21.969696,0.0,-0.0466352 +264.90099692344666,0.0,21.969696,21.969696,0.0,-0.0466352 +264.9103491306305,0.0,21.969696,21.969696,0.0,-0.0466352 +264.9195680618286,0.0,21.969696,21.969696,0.0,-0.042935103 +264.92962193489075,0.0,21.969696,21.969696,0.0,-0.042935103 +264.93995809555054,0.0,21.969696,21.969696,0.0,-0.042935103 +264.94945001602173,0.0,21.969696,21.969696,0.0,-0.042935103 +264.9603350162506,0.0,21.969696,21.969696,0.0,-0.042935103 +264.97102093696594,0.0,21.969696,21.969696,0.0,-0.042935103 +264.9809889793396,0.0,21.969696,21.969696,0.0,-0.042935103 +264.9910171031952,0.0,21.969696,21.969696,0.0,-0.042935103 +265.0001890659332,0.0,21.969696,21.969696,0.0,-0.042935103 +265.0097999572754,0.0,21.212122,21.212122,0.0,-0.042935103 +265.02002906799316,0.0,21.212122,21.212122,0.0,-0.042935103 +265.0299870967865,0.0,21.212122,21.212122,0.0,-0.042935103 +265.0395529270172,0.0,21.212122,21.212122,0.0,-0.042935103 +265.0503239631653,0.0,21.212122,21.212122,0.0,-0.042935103 +265.0609760284424,0.0,20.454544,20.454544,0.0,-0.03553491 +265.0699830055237,0.0,20.454544,20.454544,0.0,-0.03553491 +265.08100295066833,0.0,20.454544,20.454544,0.0,-0.03553491 +265.09000396728516,0.0,20.454544,20.454544,0.0,-0.03553491 +265.1009840965271,0.0,19.69697,19.69697,0.0,-0.03553491 +265.1105570793152,0.0,18.939394,18.939394,0.0,-0.050335295 +265.1199839115143,0.0,18.939394,18.939394,0.0,-0.050335295 +265.1296260356903,0.0,18.181818,18.181818,0.0,-0.050335295 +265.13986992836,0.0,17.424242,17.424242,0.0,-0.050335295 +265.15101504325867,0.0,17.424242,17.424242,0.0,-0.050335295 +265.1609990596771,0.0,16.666668,16.666668,0.0,-0.14653786 +265.1702079772949,0.0,16.666668,16.666668,0.0,-0.14653786 +265.1794490814209,0.0,16.666668,16.666668,0.0,-0.14653786 +265.1910021305084,0.0,15.909091,15.909091,0.0,-0.14653786 +265.201003074646,0.0,15.909091,15.909091,0.0,-0.14653786 +265.2107300758362,0.0,15.909091,15.909091,0.0,-0.044785153 +265.21975207328796,0.0,15.151516,15.151516,0.0,-0.044785153 +265.22999811172485,0.0,15.151516,15.151516,0.0,-0.044785153 +265.24101305007935,0.0,15.151516,15.151516,0.0,-0.044785153 +265.2502410411835,0.0,15.151516,15.151516,0.0,-0.044785153 +265.26071190834045,0.0,14.39394,14.39394,0.0,-0.052185345 +265.269681930542,0.0,14.39394,14.39394,0.0,-0.052185345 +265.28097701072693,0.0,13.636364,13.636364,0.0,-0.052185345 +265.29097604751587,0.0,13.636364,13.636364,0.0,-0.052185345 +265.3008029460907,0.0,13.636364,13.636364,0.0,-0.052185345 +265.3098270893097,0.0,13.636364,13.636364,0.0,-0.0466352 +265.32000708580017,0.0,12.878788,12.878788,0.0,-0.0466352 +265.32997608184814,0.0,12.878788,12.878788,0.0,-0.0466352 +265.33946204185486,0.0,12.878788,12.878788,0.0,-0.0466352 +265.35055208206177,0.0,12.878788,12.878788,0.0,-0.0466352 +265.3595440387726,0.0,12.878788,12.878788,0.0,-0.0577355 +265.3709809780121,0.0,12.121212,12.121212,0.0,-0.0577355 +265.38096809387207,0.0,12.121212,12.121212,0.0,-0.0577355 +265.3909230232239,0.0,12.121212,12.121212,0.0,-0.0577355 +265.39981293678284,0.0,12.121212,12.121212,0.0,-0.0577355 +265.4103240966797,0.0,12.121212,12.121212,0.0,-0.042935103 +265.4194619655609,0.0,12.121212,12.121212,0.0,-0.042935103 +265.4299831390381,0.0,12.121212,12.121212,0.0,-0.042935103 +265.44039511680603,0.0,11.363637,11.363637,0.0,-0.042935103 +265.450963973999,0.0,11.363637,11.363637,0.0,-0.042935103 +265.4609501361847,0.0,11.363637,11.363637,0.0,-0.044785153 +265.4709680080414,0.0,11.363637,11.363637,0.0,-0.044785153 +265.4796531200409,0.0,11.363637,11.363637,0.0,-0.044785153 +265.4900441169739,0.0,11.363637,11.363637,0.0,-0.044785153 +265.4998519420624,0.0,11.363637,11.363637,0.0,-0.044785153 +265.51097798347473,0.0,11.363637,11.363637,0.0,-0.0466352 +265.5200550556183,0.0,11.363637,11.363637,0.0,-0.0466352 +265.5295960903168,0.0,11.363637,11.363637,0.0,-0.0466352 +265.54096603393555,0.0,11.363637,11.363637,0.0,-0.0466352 +265.550411939621,0.0,11.363637,11.363637,0.0,-0.0466352 +265.5609600543976,0.0,12.121212,12.121212,0.0,-0.054035395 +265.57096099853516,0.0,12.121212,12.121212,0.0,-0.054035395 +265.580050945282,0.0,12.121212,12.121212,0.0,-0.054035395 +265.5903220176697,0.0,12.121212,12.121212,0.0,-0.054035395 +265.60097312927246,0.0,12.121212,12.121212,0.0,-0.054035395 +265.6105570793152,0.0,12.121212,12.121212,0.0,-0.06328564 +265.620001077652,0.0,12.878788,12.878788,0.0,-0.06328564 +265.62993693351746,0.0,12.878788,12.878788,0.0,-0.06328564 +265.6409819126129,0.0,12.878788,12.878788,0.0,-0.06328564 +265.6509690284729,0.0,13.636364,13.636364,0.0,-0.06328564 +265.6597321033478,0.0,13.636364,13.636364,0.0,-0.044785153 +265.6702480316162,0.0,13.636364,13.636364,0.0,-0.044785153 +265.6793990135193,0.0,13.636364,13.636364,0.0,-0.044785153 +265.6909520626068,0.0,13.636364,13.636364,0.0,-0.044785153 +265.70086693763733,0.0,13.636364,13.636364,0.0,-0.044785153 +265.7099540233612,0.0,14.39394,14.39394,0.0,-0.044785153 +265.7201991081238,0.0,14.39394,14.39394,0.0,-0.0577355 +265.7309401035309,0.0,14.39394,14.39394,0.0,-0.0577355 +265.7404091358185,0.0,14.39394,14.39394,0.0,-0.0577355 +265.75095200538635,0.0,15.151516,15.151516,0.0,-0.0577355 +265.76034808158875,0.0,15.151516,15.151516,0.0,-0.0466352 +265.77034401893616,0.0,15.151516,15.151516,0.0,-0.0466352 +265.77998995780945,0.0,15.151516,15.151516,0.0,-0.0466352 +265.7896831035614,0.0,15.151516,15.151516,0.0,-0.0466352 +265.7998139858246,0.0,15.909091,15.909091,0.0,-0.0466352 +265.8105480670929,0.0,15.909091,15.909091,0.0,-0.054035395 +265.81975507736206,0.0,15.909091,15.909091,0.0,-0.054035395 +265.8295750617981,0.0,15.909091,15.909091,0.0,-0.054035395 +265.84095907211304,0.0,15.909091,15.909091,0.0,-0.054035395 +265.85042691230774,0.0,15.909091,15.909091,0.0,-0.054035395 +265.8594329357147,0.0,15.909091,15.909091,0.0,-0.044785153 +265.870934009552,0.0,15.909091,15.909091,0.0,-0.044785153 +265.8807089328766,0.0,15.909091,15.909091,0.0,-0.044785153 +265.8896870613098,0.0,15.909091,15.909091,0.0,-0.044785153 +265.90080404281616,0.0,15.909091,15.909091,0.0,-0.044785153 +265.90972208976746,0.0,15.909091,15.909091,0.0,-0.044785153 +265.91963291168213,0.0,15.909091,15.909091,0.0,-0.05588545 +265.93000507354736,0.0,16.666668,16.666668,0.0,-0.05588545 +265.9405210018158,0.0,16.666668,16.666668,0.0,-0.05588545 +265.9495470523834,0.0,16.666668,16.666668,0.0,-0.05588545 +265.9603431224823,0.0,16.666668,16.666668,0.0,-0.052185345 +265.97054505348206,0.0,16.666668,16.666668,0.0,-0.052185345 +265.97954392433167,0.0,16.666668,16.666668,0.0,-0.052185345 +265.98991203308105,0.0,16.666668,16.666668,0.0,-0.052185345 +266.00092601776123,0.0,16.666668,16.666668,0.0,-0.052185345 +266.0094530582428,0.0,16.666668,16.666668,0.0,-0.052185345 +266.0200400352478,0.0,17.424242,17.424242,0.0,-0.05588545 +266.02997398376465,0.0,17.424242,17.424242,0.0,-0.05588545 +266.0395369529724,0.0,17.424242,17.424242,0.0,-0.05588545 +266.0495901107788,0.0,18.181818,18.181818,0.0,-0.05588545 +266.0604281425476,0.0,18.181818,18.181818,0.0,-0.041085053 +266.06940603256226,0.0,18.939394,18.939394,0.0,-0.041085053 +266.0805130004883,0.0,18.939394,18.939394,0.0,-0.041085053 +266.09091091156006,0.0,19.69697,19.69697,0.0,-0.041085053 +266.10090708732605,0.0,19.69697,19.69697,0.0,-0.041085053 +266.11029410362244,0.0,20.454544,20.454544,0.0,-0.041085053 +266.119992017746,0.0,20.454544,20.454544,0.0,-0.044785153 +266.12970900535583,0.0,21.212122,21.212122,0.0,-0.044785153 +266.14056396484375,0.0,22.727274,22.727274,0.0,-0.044785153 +266.1502900123596,0.0,23.484848,23.484848,0.0,-0.044785153 +266.15944504737854,0.0,24.242424,24.242424,0.0,-0.041085053 +266.1709110736847,0.0,25.0,25.0,0.0,-0.041085053 +266.17951798439026,0.0,25.0,25.0,0.0,-0.041085053 +266.1909170150757,0.0,27.272728,27.272728,0.0,-0.041085053 +266.20091009140015,0.0,30.303032,30.303032,0.0,-0.041085053 +266.2108030319214,0.0,30.303032,30.303032,0.0,-0.041085053 +266.2195551395416,0.0,31.818182,31.818182,0.0,-0.041085053 +266.22998094558716,0.0,33.333336,33.333336,0.0,-0.041085053 +266.2394070625305,0.0,34.848484,34.848484,0.0,-0.041085053 +266.25091099739075,0.0,36.363636,36.363636,0.0,-0.041085053 +266.2608880996704,0.0,36.363636,36.363636,0.0,-0.06143559 +266.2709059715271,0.0,38.636364,38.636364,0.0,-0.06143559 +266.2809109687805,0.0,40.90909,40.90909,0.0,-0.06143559 +266.29077100753784,0.0,40.90909,40.90909,0.0,-0.06143559 +266.3008849620819,0.0,41.666668,41.666668,0.0,-0.06143559 +266.30949997901917,0.0,43.181816,43.181816,0.0,-0.0466352 +266.3194770812988,0.0,43.181816,43.181816,0.0,-0.0466352 +266.3295819759369,0.0,43.939392,43.939392,0.0,-0.0466352 +266.3408989906311,0.0,44.696968,44.696968,0.0,-0.0466352 +266.35062408447266,0.0,45.454548,45.454548,0.009372071,-0.0466352 +266.36090898513794,0.0,45.454548,45.454548,0.009372071,-0.05588545 +266.37005496025085,0.0,45.454548,45.454548,0.009372071,-0.05588545 +266.38088393211365,0.0,46.21212,46.21212,0.009372071,-0.05588545 +266.39088892936707,0.0,46.21212,46.21212,0.018744143,-0.05588545 +266.39980912208557,0.0,46.21212,46.21212,0.018744143,-0.05588545 +266.40939712524414,0.0,46.969696,46.969696,0.018744143,-0.033684865 +266.41986203193665,0.0,46.969696,46.969696,0.018744143,-0.033684865 +266.42999505996704,0.0,46.969696,46.969696,0.018744143,-0.033684865 +266.43948912620544,0.0,46.969696,46.969696,0.018744143,-0.033684865 +266.4508900642395,0.0,46.969696,46.969696,0.018744143,-0.033684865 +266.4598879814148,0.0,46.969696,46.969696,0.028116215,-0.06698574 +266.47090005874634,0.0,46.969696,46.969696,0.028116215,-0.06698574 +266.48001503944397,0.0,46.969696,46.969696,0.028116215,-0.06698574 +266.49012899398804,0.0,46.969696,46.969696,0.028116215,-0.06698574 +266.499400138855,0.0,46.21212,46.21212,0.028116215,-0.06698574 +266.50962805747986,0.0,46.21212,46.21212,0.028116215,-0.0466352 +266.5200469493866,0.0,46.21212,46.21212,0.028116215,-0.0466352 +266.5299699306488,0.0,45.454548,45.454548,0.028116215,-0.0466352 +266.5409071445465,0.0,45.454548,45.454548,0.028116215,-0.0466352 +266.5508999824524,0.0,45.454548,45.454548,0.028116215,-0.0466352 +266.56020498275757,0.0,45.454548,45.454548,0.028116215,-0.050335295 +266.5694749355316,0.0,44.696968,44.696968,0.028116215,-0.050335295 +266.5801930427551,0.0,44.696968,44.696968,0.028116215,-0.050335295 +266.58943796157837,0.0,44.696968,44.696968,0.028116215,-0.050335295 +266.59961104393005,0.0,43.939392,43.939392,0.028116215,-0.050335295 +266.61057114601135,0.0,43.939392,43.939392,0.028116215,-0.039235007 +266.62087512016296,0.0,43.939392,43.939392,0.028116215,-0.039235007 +266.63000297546387,0.0,43.181816,43.181816,0.028116215,-0.039235007 +266.6400260925293,0.0,43.181816,43.181816,0.028116215,-0.039235007 +266.6508791446686,0.0,42.424244,42.424244,0.028116215,-0.039235007 +266.659471988678,0.0,42.424244,42.424244,0.028116215,-0.05588545 +266.6703209877014,0.0,41.666668,41.666668,0.028116215,-0.05588545 +266.67954206466675,0.0,40.90909,40.90909,0.028116215,-0.05588545 +266.68949604034424,0.0,40.151516,40.151516,0.028116215,-0.05588545 +266.7001941204071,0.0,39.39394,39.39394,0.028116215,-0.05588545 +266.71057295799255,0.0,38.636364,38.636364,0.028116215,-0.03553491 +266.72003293037415,0.0,37.878788,37.878788,0.028116215,-0.03553491 +266.72957491874695,0.0,37.121216,37.121216,0.028116215,-0.03553491 +266.74086713790894,0.0,36.363636,36.363636,0.028116215,-0.03553491 +266.75087213516235,0.0,35.60606,35.60606,0.028116215,-0.03553491 +266.7604010105133,0.0,35.60606,35.60606,0.028116215,-0.042935103 +266.7696030139923,0.0,33.333336,33.333336,0.028116215,-0.042935103 +266.77974009513855,0.0,32.575756,32.575756,0.028116215,-0.042935103 +266.79055094718933,0.0,31.060606,31.060606,0.028116215,-0.042935103 +266.8008589744568,0.0,29.545454,29.545454,0.028116215,-0.042935103 +266.80978512763977,0.0,29.545454,29.545454,0.028116215,-0.042935103 +266.8200161457062,0.0,27.272728,27.272728,0.018744143,-0.0466352 +266.8299949169159,0.0,25.757576,25.757576,0.018744143,-0.0466352 +266.8397169113159,0.0,25.0,25.0,0.018744143,-0.0466352 +266.85041403770447,0.0,23.484848,23.484848,0.009372071,-0.0466352 +266.85939598083496,0.0,22.727274,22.727274,0.009372071,-0.052185345 +266.870845079422,0.0,21.212122,21.212122,0.009372071,-0.052185345 +266.88086700439453,0.0,19.69697,19.69697,0.009372071,-0.052185345 +266.8900101184845,0.0,19.69697,19.69697,0.009372071,-0.052185345 +266.89982891082764,0.0,18.939394,18.939394,0.0,-0.052185345 +266.91057991981506,0.0,17.424242,17.424242,0.0,-0.041085053 +266.9200520515442,0.0,16.666668,16.666668,0.0,-0.041085053 +266.93000507354736,0.0,15.909091,15.909091,0.0,-0.041085053 +266.9404010772705,0.0,15.151516,15.151516,0.0,-0.041085053 +266.94943714141846,0.0,14.39394,14.39394,0.0,-0.041085053 +266.9594039916992,0.0,14.39394,14.39394,0.0,-0.039235007 +266.9702410697937,0.0,13.636364,13.636364,0.0,-0.039235007 +266.98083901405334,0.0,12.878788,12.878788,0.0,-0.039235007 +266.9908559322357,0.0,12.121212,12.121212,0.0,-0.039235007 +267.00084400177,0.0,11.363637,11.363637,0.0,-0.039235007 +267.01057410240173,0.0,11.363637,11.363637,0.0,-0.054035395 +267.01997995376587,0.0,10.606061,10.606061,0.0,-0.054035395 +267.02999210357666,0.0,10.606061,10.606061,0.0,-0.054035395 +267.0394251346588,0.0,9.848485,9.848485,0.0,-0.054035395 +267.0504550933838,0.0,9.090909,9.090909,0.0,-0.054035395 +267.06083393096924,0.0,9.090909,9.090909,0.0,-0.042935103 +267.0695149898529,0.0,8.333334,8.333334,0.0,-0.042935103 +267.08084297180176,0.0,7.575758,7.575758,0.0,-0.042935103 +267.0903239250183,0.0,7.575758,7.575758,0.0,-0.042935103 +267.1008360385895,0.0,6.818182,6.818182,0.0,-0.042935103 +267.11058497428894,0.0,6.060606,6.060606,0.0,-0.026284654 +267.1200349330902,0.0,6.060606,6.060606,0.0,-0.026284654 +267.12943601608276,0.0,5.3030305,5.3030305,0.0,-0.026284654 +267.13955998420715,0.0,5.3030305,5.3030305,0.0,-0.026284654 +267.15082597732544,0.0,4.5454545,4.5454545,0.0,-0.026284654 +267.16082406044006,0.0,3.787879,3.787879,0.0,-0.050335295 +267.17083191871643,0.0,3.787879,3.787879,0.0,-0.050335295 +267.18080592155457,0.0,3.787879,3.787879,0.0,-0.050335295 +267.1893889904022,0.0,3.030303,3.030303,0.0,-0.050335295 +267.2002069950104,0.0,3.030303,3.030303,0.0,-0.050335295 +267.21045994758606,0.0,2.2727273,2.2727273,0.0,-0.041085053 +267.21950507164,0.0,2.2727273,2.2727273,0.0,-0.041085053 +267.2295911312103,0.0,1.5151515,1.5151515,0.0,-0.041085053 +267.24084401130676,0.0,1.5151515,1.5151515,0.0,-0.041085053 +267.25082302093506,0.0,0.75757575,0.75757575,0.0,-0.041085053 +267.26080799102783,0.0,0.75757575,0.75757575,0.0,-0.054035395 +267.27082204818726,0.0,0.0,0.0,0.0,-0.054035395 +267.2808139324188,0.0,0.0,0.0,0.0,-0.054035395 +267.29082798957825,0.0,0.0,0.0,0.0,-0.054035395 +267.2999680042267,0.0,0.0,0.0,0.0,-0.054035395 +267.3094699382782,0.0,0.0,0.0,0.0,-0.044785153 +267.3200349807739,0.0,0.0,0.0,0.0,-0.044785153 +267.3300211429596,0.0,0.0,0.0,0.0,-0.044785153 +267.3408410549164,0.0,0.0,0.0,0.0,-0.044785153 +267.35034704208374,0.0,0.0,0.0,0.0,-0.044785153 +267.36080408096313,0.0,0.0,0.0,0.0,-0.033684865 +267.3696370124817,0.0,0.0,0.0,0.0,-0.033684865 +267.38017892837524,0.0,0.0,0.0,0.0,-0.033684865 +267.3903830051422,0.0,0.0,0.0,0.0,-0.033684865 +267.3993890285492,0.0,0.0,0.0,0.0,-0.033684865 +267.41082310676575,0.0,0.0,0.0,0.0,-0.07623599 +267.42081093788147,0.0,0.0,0.0,0.0,-0.07623599 +267.4308280944824,0.0,0.0,0.0,0.0,-0.07623599 +267.44065403938293,0.0,0.0,0.0,0.0,-0.07623599 +267.45081090927124,0.0,0.0,0.0,0.0,-0.07623599 +267.46037101745605,0.0,0.0,0.0,0.0,-0.050335295 +267.4708020687103,0.0,0.0,0.0,0.0,-0.050335295 +267.47958993911743,0.0,0.0,0.0,0.0,-0.050335295 +267.4895040988922,0.0,0.0,0.0,0.0,-0.050335295 +267.50040197372437,0.0,0.0,0.0,0.0,-0.050335295 +267.5108070373535,0.0,3.787879,3.787879,0.0,-0.0466352 +267.52006912231445,0.0,3.787879,3.787879,0.0,-0.0466352 +267.52999210357666,0.0,11.363637,11.363637,0.0,-0.0466352 +267.54057002067566,0.0,15.909091,15.909091,0.0,-0.0466352 +267.54947304725647,0.0,21.969696,21.969696,0.0,-0.0466352 +267.5608160495758,0.0,27.272728,27.272728,0.0,-0.0466352 +267.57007813453674,0.0,27.272728,27.272728,0.0,-0.0466352 +267.5794949531555,0.0,40.151516,40.151516,0.0,-0.0466352 +267.5908010005951,0.0,46.969696,46.969696,0.0,-0.0466352 +267.6008050441742,0.0,61.363636,61.363636,0.0,-0.0466352 +267.6098871231079,0.0,61.363636,61.363636,0.0,-0.0466352 +267.62003803253174,0.0,68.18182,68.18182,0.0,-0.050335295 +267.6296510696411,0.0,56.060604,56.060604,0.009372071,-0.050335295 +267.64002108573914,0.0,44.696968,44.696968,0.018744143,-0.050335295 +267.65079402923584,0.0,36.363636,36.363636,0.028116215,-0.050335295 +267.6599090099335,0.0,36.363636,36.363636,0.037488285,-0.042935103 +267.6694960594177,0.0,28.78788,28.78788,0.05623243,-0.042935103 +267.6807861328125,0.0,28.030302,28.030302,0.05623243,-0.042935103 +267.6907980442047,0.0,31.818182,31.818182,0.0656045,-0.042935103 +267.700767993927,0.0,31.818182,31.818182,0.07497657,-0.042935103 +267.7098579406738,0.0,34.848484,34.848484,0.08434864,-0.042935103 +267.71950507164,0.0,38.636364,38.636364,0.09372071,-0.0466352 +267.7300069332123,0.0,43.181816,43.181816,0.10309278,-0.0466352 +267.7402250766754,0.0,48.484848,48.484848,0.11246486,-0.0466352 +267.7497589588165,0.0,54.545456,54.545456,0.131209,-0.0466352 +267.75949692726135,0.0,59.848484,59.848484,0.14058107,-0.0466352 +267.7708029747009,0.0,65.15151,65.15151,0.14995314,-0.0466352 +267.7807779312134,0.0,65.15151,65.15151,0.15932521,-0.0466352 +267.79001092910767,0.0,78.030304,78.030304,0.16869728,-0.0466352 +267.8007950782776,0.0,83.333336,83.333336,0.16869728,-0.0466352 +267.810585975647,0.0,83.333336,83.333336,0.17806935,-0.033684865 +267.82004499435425,0.0,93.93939,93.93939,0.18744142,-0.033684865 +267.8298361301422,0.0,99.242424,99.242424,0.18744142,-0.033684865 +267.83963108062744,0.0,103.78788,103.78788,0.1968135,-0.033684865 +267.84950494766235,0.0,107.57576,107.57576,0.20618556,-0.033684865 +267.8594620227814,0.0,112.12121,112.12121,0.20618556,-0.0466352 +267.8702120780945,0.0,116.666664,116.666664,0.22492972,-0.0466352 +267.8807969093323,0.0,119.69697,119.69697,0.22492972,-0.0466352 +267.8907871246338,0.0,126.51515,126.51515,0.23430179,-0.0466352 +267.9007771015167,0.0,126.51515,126.51515,0.23430179,-0.0466352 +267.9100670814514,0.0,130.30302,130.30302,0.24367386,-0.0466352 +267.92004799842834,0.0,132.57574,132.57574,0.25304592,-0.05588545 +267.92947006225586,0.0,135.60606,135.60606,0.25304592,-0.05588545 +267.9395270347595,0.0,137.87878,137.87878,0.25304592,-0.05588545 +267.94952297210693,0.0,140.15152,140.15152,0.262418,-0.05588545 +267.96079206466675,0.0,142.42424,142.42424,0.262418,-0.054035395 +267.9707770347595,0.0,146.9697,146.9697,0.27179006,-0.054035395 +267.98076605796814,0.0,146.9697,146.9697,0.27179006,-0.054035395 +267.9907720088959,0.0,149.24243,149.24243,0.27179006,-0.054035395 +268.0002090930939,0.0,149.24243,149.24243,0.27179006,-0.054035395 +268.01032304763794,0.0,152.27274,152.27274,0.27179006,-0.054035395 +268.0195059776306,0.0,153.78789,153.78789,0.28116214,-0.0466352 +268.02953600883484,0.0,155.30302,155.30302,0.28116214,-0.0466352 +268.03948998451233,0.0,156.81818,156.81818,0.28116214,-0.0466352 +268.0497100353241,0.0,158.33333,158.33333,0.2905342,-0.0466352 +268.06075406074524,0.0,159.09091,159.09091,0.2905342,-0.054035395 +268.070769071579,0.0,160.60606,160.60606,0.2905342,-0.054035395 +268.08076095581055,0.0,162.87878,162.87878,0.2905342,-0.054035395 +268.0906329154968,0.0,162.87878,162.87878,0.29990628,-0.054035395 +268.1001751422882,0.0,163.63635,163.63635,0.29990628,-0.054035395 +268.1096749305725,0.0,164.39395,164.39395,0.29990628,-0.054035395 +268.11956691741943,0.0,165.9091,165.9091,0.29990628,-0.0466352 +268.1294491291046,0.0,166.66667,166.66667,0.29990628,-0.0466352 +268.14078307151794,0.0,167.42424,167.42424,0.29990628,-0.0466352 +268.1506359577179,0.0,168.18182,168.18182,0.29990628,-0.0466352 +268.16075801849365,0.0,168.93939,168.93939,0.30927837,-0.044785153 +268.17074704170227,0.0,170.45454,170.45454,0.30927837,-0.044785153 +268.18077206611633,0.0,170.45454,170.45454,0.30927837,-0.044785153 +268.1900110244751,0.0,171.9697,171.9697,0.30927837,-0.044785153 +268.19982504844666,0.0,172.72726,172.72726,0.30927837,-0.044785153 +268.20958709716797,0.0,173.48485,173.48485,0.30927837,-0.052185345 +268.21976613998413,0.0,175.0,175.0,0.30927837,-0.052185345 +268.23001408576965,0.0,175.75757,175.75757,0.31865042,-0.052185345 +268.24077701568604,0.0,177.27272,177.27272,0.31865042,-0.052185345 +268.250736951828,0.0,178.78787,178.78787,0.31865042,-0.052185345 +268.2598969936371,0.0,178.78787,178.78787,0.31865042,-0.0466352 +268.2707600593567,0.0,183.33334,183.33334,0.31865042,-0.0466352 +268.2798550128937,0.0,183.33334,183.33334,0.31865042,-0.0466352 +268.2906119823456,0.0,187.87878,187.87878,0.31865042,-0.0466352 +268.2996029853821,0.0,190.90909,190.90909,0.3280225,-0.0466352 +268.309818983078,0.0,194.69696,194.69696,0.3280225,-0.06883579 +268.3207530975342,0.0,196.9697,196.9697,0.3280225,-0.06883579 +268.33003401756287,0.0,196.9697,196.9697,0.33739457,-0.06883579 +268.34001111984253,0.0,203.78787,203.78787,0.34676665,-0.06883579 +268.3507499694824,0.0,207.57576,207.57576,0.34676665,-0.06883579 +268.36021995544434,0.0,207.57576,207.57576,0.3561387,-0.052185345 +268.36966705322266,0.0,214.39394,214.39394,0.3561387,-0.052185345 +268.3801600933075,0.0,217.42424,217.42424,0.3561387,-0.052185345 +268.3896059989929,0.0,221.21211,221.21211,0.3561387,-0.052185345 +268.39990305900574,0.0,224.24242,224.24242,0.3561387,-0.052185345 +268.41079592704773,0.0,227.27274,227.27274,0.3655108,-0.03553491 +268.4200689792633,0.0,227.27274,227.27274,0.3655108,-0.03553491 +268.43002009391785,0.0,233.33333,233.33333,0.3655108,-0.03553491 +268.44024991989136,0.0,236.36363,236.36363,0.3655108,-0.03553491 +268.45052313804626,0.0,238.63635,238.63635,0.3655108,-0.03553491 +268.45952701568604,0.0,240.90909,240.90909,0.3655108,-0.044785153 +268.47061705589294,0.0,243.93939,243.93939,0.3655108,-0.044785153 +268.4796209335327,0.0,245.45454,245.45454,0.3655108,-0.044785153 +268.4899981021881,0.0,247.72728,247.72728,0.3655108,-0.044785153 +268.49999594688416,0.0,250.0,250.0,0.3655108,-0.044785153 +268.51076006889343,0.0,251.51515,251.51515,0.3655108,-0.052185345 +268.5200641155243,0.0,251.51515,251.51515,0.37488285,-0.052185345 +268.5295081138611,0.0,255.30302,255.30302,0.37488285,-0.052185345 +268.5403800010681,0.0,256.81818,256.81818,0.37488285,-0.052185345 +268.550754070282,0.0,258.3333,258.3333,0.37488285,-0.052185345 +268.56062412261963,0.0,258.3333,258.3333,0.37488285,-0.050335295 +268.5696179866791,0.0,261.36362,261.36362,0.37488285,-0.050335295 +268.5800869464874,0.0,262.87878,262.87878,0.37488285,-0.050335295 +268.5903251171112,0.0,265.1515,265.1515,0.37488285,-0.050335295 +268.6007421016693,0.0,266.6667,266.6667,0.38425493,-0.050335295 +268.609717130661,0.0,266.6667,266.6667,0.38425493,-0.050335295 +268.6198139190674,0.0,271.21213,271.21213,0.38425493,-0.041085053 +268.62945008277893,0.0,273.48486,273.48486,0.393627,-0.041085053 +268.64075803756714,0.0,275.0,275.0,0.393627,-0.041085053 +268.6500289440155,0.0,275.0,275.0,0.393627,-0.041085053 +268.6596360206604,0.0,280.30304,280.30304,0.393627,-0.05588545 +268.66961693763733,0.0,283.33334,283.33334,0.40299907,-0.05588545 +268.6807339191437,0.0,286.36362,286.36362,0.40299907,-0.05588545 +268.6899399757385,0.0,286.36362,286.36362,0.40299907,-0.05588545 +268.70072412490845,0.0,292.42422,292.42422,0.41237113,-0.05588545 +268.7105379104614,0.0,296.96973,296.96973,0.41237113,-0.05588545 +268.7200300693512,0.0,300.0,300.0,0.4217432,-0.020734508 +268.73002910614014,0.0,303.78787,303.78787,0.4217432,-0.020734508 +268.74063992500305,0.0,308.33334,308.33334,0.4217432,-0.020734508 +268.7496249675751,0.0,312.87878,312.87878,0.43111527,-0.020734508 +268.75969099998474,0.0,316.66666,316.66666,0.43111527,-0.0466352 +268.77016711235046,0.0,321.21213,321.21213,0.43111527,-0.0466352 +268.7799861431122,0.0,325.75757,325.75757,0.44048735,-0.0466352 +268.7907290458679,0.0,330.30304,330.30304,0.44048735,-0.0466352 +268.8007321357727,0.0,339.39395,339.39395,0.44048735,-0.0466352 +268.80986309051514,0.0,339.39395,339.39395,0.44985944,-0.0466352 +268.8200640678406,0.0,343.9394,343.9394,0.44985944,-0.07623599 +268.83004212379456,0.0,349.24243,349.24243,0.4592315,-0.07623599 +268.83964109420776,0.0,353.0303,353.0303,0.4592315,-0.07623599 +268.8502631187439,0.0,357.57574,357.57574,0.46860358,-0.07623599 +268.8595161437988,0.0,361.36365,361.36365,0.46860358,-0.042935103 +268.87070894241333,0.0,365.15152,365.15152,0.47797564,-0.042935103 +268.8807210922241,0.0,372.72726,372.72726,0.47797564,-0.042935103 +268.8907120227814,0.0,375.75757,375.75757,0.47797564,-0.042935103 +268.89971113204956,0.0,375.75757,375.75757,0.48734772,-0.042935103 +268.9099519252777,0.0,378.78787,378.78787,0.48734772,-0.042935103 +268.9200689792633,0.0,381.81818,381.81818,0.49671978,-0.054035395 +268.9296350479126,0.0,384.0909,384.0909,0.49671978,-0.054035395 +268.9394619464874,0.0,387.12122,387.12122,0.49671978,-0.054035395 +268.9507210254669,0.0,389.39392,389.39392,0.49671978,-0.054035395 +268.9606890678406,0.0,393.9394,393.9394,0.49671978,-0.052185345 +268.9707260131836,0.0,395.45456,395.45456,0.49671978,-0.052185345 +268.98057198524475,0.0,395.45456,395.45456,0.49671978,-0.052185345 +268.9895660877228,0.0,397.7273,397.7273,0.49671978,-0.052185345 +269.000107049942,0.0,399.24243,399.24243,0.49671978,-0.052185345 +269.0106289386749,0.0,400.75757,400.75757,0.49671978,-0.052185345 +269.01950693130493,0.0,402.27274,402.27274,0.49671978,-0.0466352 +269.03003096580505,0.0,403.0303,403.0303,0.49671978,-0.0466352 +269.03942799568176,0.0,404.54547,404.54547,0.49671978,-0.0466352 +269.05066895484924,0.0,405.30304,405.30304,0.49671978,-0.0466352 +269.06065797805786,0.0,405.30304,405.30304,0.49671978,-0.029984765 +269.0703990459442,0.0,406.81818,406.81818,0.50609183,-0.029984765 +269.0793881416321,0.0,406.81818,406.81818,0.50609183,-0.029984765 +269.09066796302795,0.0,407.57574,407.57574,0.50609183,-0.029984765 +269.0998520851135,0.0,407.57574,407.57574,0.50609183,-0.029984765 +269.1096451282501,0.0,408.33334,408.33334,0.50609183,-0.029984765 +269.12046909332275,0.0,408.33334,408.33334,0.50609183,-0.042935103 +269.129487991333,0.0,408.33334,408.33334,0.50609183,-0.042935103 +269.14070200920105,0.0,408.33334,408.33334,0.50609183,-0.042935103 +269.15032601356506,0.0,408.33334,408.33334,0.51546395,-0.042935103 +269.1602680683136,0.0,407.57574,407.57574,0.51546395,-0.0466352 +269.1694951057434,0.0,407.57574,407.57574,0.50609183,-0.0466352 +269.180025100708,0.0,407.57574,407.57574,0.51546395,-0.0466352 +269.19062209129333,0.0,406.81818,406.81818,0.51546395,-0.0466352 +269.1996099948883,0.0,406.81818,406.81818,0.51546395,-0.0466352 +269.21053314208984,0.0,406.0606,406.0606,0.524836,-0.042935103 +269.21953892707825,0.0,406.0606,406.0606,0.51546395,-0.042935103 +269.23002099990845,0.0,405.30304,405.30304,0.51546395,-0.042935103 +269.2403390407562,0.0,404.54547,404.54547,0.524836,-0.042935103 +269.2500789165497,0.0,403.78787,403.78787,0.524836,-0.042935103 +269.25949597358704,0.0,403.0303,403.0303,0.51546395,-0.050335295 +269.2706620693207,0.0,402.27274,402.27274,0.51546395,-0.050335295 +269.2806169986725,0.0,402.27274,402.27274,0.51546395,-0.050335295 +269.28961205482483,0.0,399.24243,399.24243,0.51546395,-0.050335295 +269.2998230457306,0.0,398.48486,398.48486,0.51546395,-0.050335295 +269.309632062912,0.0,396.21213,396.21213,0.51546395,-0.06328564 +269.3200581073761,0.0,394.697,394.697,0.51546395,-0.06328564 +269.33000898361206,0.0,393.18182,393.18182,0.524836,-0.06328564 +269.3399250507355,0.0,390.90912,390.90912,0.524836,-0.06328564 +269.35066509246826,0.0,388.63635,388.63635,0.524836,-0.06328564 +269.36066007614136,0.0,383.3333,383.3333,0.51546395,-0.039235007 +269.3706181049347,0.0,383.3333,383.3333,0.51546395,-0.039235007 +269.37963604927063,0.0,378.78787,378.78787,0.51546395,-0.039235007 +269.39056611061096,0.0,374.24243,374.24243,0.51546395,-0.039235007 +269.3997039794922,0.0,369.69696,369.69696,0.51546395,-0.039235007 +269.4097731113434,0.0,364.39395,364.39395,0.50609183,-0.0466352 +269.42007303237915,0.0,359.8485,359.8485,0.50609183,-0.0466352 +269.4294979572296,0.0,354.54544,354.54544,0.50609183,-0.0466352 +269.43983006477356,0.0,349.24243,349.24243,0.50609183,-0.0466352 +269.45066499710083,0.0,343.18182,343.18182,0.49671978,-0.0466352 +269.4606440067291,0.0,343.18182,343.18182,0.48734772,-0.0466352 +269.4696350097656,0.0,326.51514,326.51514,0.47797564,-0.0466352 +269.48066306114197,0.0,317.42422,317.42422,0.46860358,-0.0466352 +269.48979902267456,0.0,317.42422,317.42422,0.4592315,-0.0466352 +269.49957394599915,0.0,296.2121,296.2121,0.44985944,-0.0466352 +269.5096790790558,0.0,284.84848,284.84848,0.43111527,-0.052185345 +269.5195789337158,0.0,272.7273,272.7273,0.4217432,-0.052185345 +269.53003001213074,0.0,261.36362,261.36362,0.41237113,-0.052185345 +269.54065203666687,0.0,250.0,250.0,0.40299907,-0.052185345 +269.5506589412689,0.0,237.87878,237.87878,0.38425493,-0.052185345 +269.5596749782562,0.0,237.87878,237.87878,0.37488285,-0.050335295 +269.57062911987305,0.0,214.39394,214.39394,0.3655108,-0.050335295 +269.5798649787903,0.0,214.39394,214.39394,0.3561387,-0.050335295 +269.5898940563202,0.0,190.15152,190.15152,0.33739457,-0.050335295 +269.60044598579407,0.0,177.27272,177.27272,0.3280225,-0.050335295 +269.609414100647,0.0,164.39395,164.39395,0.31865042,-0.050335295 +269.6200649738312,0.0,152.27274,152.27274,0.29990628,-0.052185345 +269.630028963089,0.0,140.15152,140.15152,0.2905342,-0.052185345 +269.64063906669617,0.0,128.0303,128.0303,0.28116214,-0.052185345 +269.6496419906616,0.0,128.0303,128.0303,0.262418,-0.052185345 +269.6606159210205,0.0,106.06061,106.06061,0.25304592,-0.041085053 +269.66994309425354,0.0,95.454544,95.454544,0.24367386,-0.041085053 +269.68062591552734,0.0,84.84849,84.84849,0.23430179,-0.041085053 +269.6897280216217,0.0,84.84849,84.84849,0.22492972,-0.041085053 +269.7006139755249,0.0,65.15151,65.15151,0.20618556,-0.041085053 +269.710618019104,0.0,55.30303,55.30303,0.1968135,-0.041085053 +269.7200560569763,0.0,55.30303,55.30303,0.18744142,-0.0466352 +269.7300341129303,0.0,37.121216,37.121216,0.17806935,-0.0466352 +269.7396421432495,0.0,28.030302,28.030302,0.16869728,-0.0466352 +269.7502911090851,0.0,20.454544,20.454544,0.15932521,-0.0466352 +269.75944805145264,0.0,18.181818,18.181818,0.14058107,-0.050335295 +269.77063393592834,0.0,16.666668,16.666668,0.131209,-0.050335295 +269.78014492988586,0.0,16.666668,16.666668,0.11246486,-0.050335295 +269.79061913490295,0.0,14.39394,14.39394,0.09372071,-0.050335295 +269.800616979599,0.0,12.121212,12.121212,0.09372071,-0.050335295 +269.8106179237366,0.0,11.363637,11.363637,0.07497657,-0.050335295 +269.81953406333923,0.0,11.363637,11.363637,0.0656045,-0.052185345 +269.8296480178833,0.0,10.606061,10.606061,0.046860356,-0.052185345 +269.8394091129303,0.0,9.848485,9.848485,0.037488285,-0.052185345 +269.8500850200653,0.01,9.090909,9.090909,0.028116215,-0.052185345 +269.8603000640869,0.01,8.333334,8.333334,0.009372071,-0.052185345 +269.86996698379517,0.02,7.575758,7.575758,0.0,-0.052185345 +269.8806040287018,0.02,6.818182,6.818182,0.0,-0.052185345 +269.890625,0.03,5.3030305,5.3030305,0.0,-0.052185345 +269.9005970954895,0.03,5.3030305,5.3030305,0.0,-0.052185345 +269.9096019268036,0.04,5.3030305,5.3030305,0.0,-0.052185345 +269.91964411735535,0.04,4.5454545,4.5454545,0.0,-0.041085053 +269.92959094047546,0.049999997,3.787879,3.787879,0.0,-0.041085053 +269.94016194343567,0.049999997,3.787879,3.787879,0.0,-0.041085053 +269.94962906837463,0.049999997,3.030303,3.030303,0.0,-0.041085053 +269.95981311798096,0.06,3.030303,3.030303,0.0,-0.052185345 +269.9706039428711,0.06,2.2727273,2.2727273,0.0,-0.052185345 +269.9805700778961,0.06,2.2727273,2.2727273,0.0,-0.052185345 +269.99060106277466,0.07,1.5151515,1.5151515,0.0,-0.052185345 +269.99985814094543,0.07,1.5151515,1.5151515,0.0,-0.052185345 +270.009663105011,0.08,0.75757575,0.75757575,0.0,-0.052185345 +270.019513130188,0.08,0.75757575,0.75757575,0.0,-0.044785153 +270.03005814552307,0.089999996,0.75757575,0.75757575,0.0,-0.044785153 +270.0400400161743,0.089999996,0.0,0.0,0.0,-0.044785153 +270.0496520996094,0.089999996,0.0,0.0,0.0,-0.044785153 +270.06056904792786,0.089999996,0.0,0.0,0.0,-0.06143559 +270.0706009864807,0.099999994,0.0,0.0,0.0,-0.06143559 +270.0795829296112,0.099999994,0.0,0.0,0.0,-0.06143559 +270.09058904647827,0.099999994,0.0,0.0,0.0,-0.06143559 +270.0996780395508,0.099999994,0.0,0.0,0.0,-0.06143559 +270.1105990409851,0.099999994,0.0,0.0,0.0,-0.06143559 +270.12006092071533,0.099999994,0.0,0.0,0.0,-0.0577355 +270.13003492355347,0.11,0.0,0.0,0.0,-0.0577355 +270.1395149230957,0.11,0.0,0.0,0.0,-0.0577355 +270.15058493614197,0.11,0.0,0.0,0.0,-0.0577355 +270.1602249145508,0.11,0.0,0.0,0.0,-0.044785153 +270.1694669723511,0.11,0.0,0.0,0.0,-0.044785153 +270.1805729866028,0.12,0.0,0.0,0.0,-0.044785153 +270.18963599205017,0.12,0.0,0.0,0.0,-0.044785153 +270.2005829811096,0.12,0.0,0.0,0.0,-0.044785153 +270.2095510959625,0.12,0.0,0.0,0.0,-0.044785153 +270.2195100784302,0.12,0.0,0.0,0.0,-0.054035395 +270.23002004623413,0.12,0.0,0.0,0.0,-0.054035395 +270.24042892456055,0.12,0.0,0.0,0.0,-0.054035395 +270.2506000995636,0.12,0.0,0.0,0.0,-0.054035395 +270.26055693626404,0.12,0.0,0.0,0.0,-0.026284654 +270.2705900669098,0.13,0.0,0.0,0.0,-0.026284654 +270.27966713905334,0.13,0.0,0.0,0.0,-0.026284654 +270.2905900478363,0.13,0.0,0.0,0.0,-0.026284654 +270.30048298835754,0.13,0.0,0.0,0.0,-0.026284654 +270.3095099925995,0.13,0.0,0.0,0.0,-0.052185345 +270.31943106651306,0.13,0.0,0.0,0.0,-0.052185345 +270.32948994636536,0.13,0.0,0.0,0.0,-0.052185345 +270.3395221233368,0.13,0.0,0.0,0.0,-0.052185345 +270.3505699634552,0.13,0.0,0.0,0.0,-0.052185345 +270.360582113266,0.13,0.0,0.0,0.0,-0.0577355 +270.3696799278259,0.13,0.0,0.0,0.0,-0.0577355 +270.37975001335144,0.13,0.0,0.0,0.0,-0.0577355 +270.3905670642853,0.13,0.0,0.0,0.0,-0.0577355 +270.39958691596985,0.13,0.0,0.0,0.0,-0.0577355 +270.40967893600464,0.14,0.0,0.0,0.0,-0.029984765 +270.42024207115173,0.14,0.0,0.0,0.0,-0.029984765 +270.43006205558777,0.14,0.0,0.0,0.0,-0.029984765 +270.44058203697205,0.14,0.0,0.0,0.0,-0.029984765 +270.4505789279938,0.14,0.0,0.0,0.0,-0.029984765 +270.459685087204,0.14,0.0,0.0,0.0,-0.024434604 +270.4694380760193,0.14,0.0,0.0,0.0,-0.024434604 +270.4805750846863,0.14,0.0,0.0,0.0,-0.024434604 +270.4897110462189,0.14,0.0,0.0,0.0,-0.024434604 +270.500529050827,0.14,0.0,0.0,0.0,-0.024434604 +270.5105531215668,0.14,0.0,0.0,0.0,-0.044785153 +270.51951813697815,0.14,0.0,0.0,0.0,-0.044785153 +270.53003311157227,0.14,0.0,0.0,0.0,-0.044785153 +270.54058504104614,0.14,0.0,0.0,0.0,-0.044785153 +270.5497019290924,0.14,0.0,0.0,0.0,-0.044785153 +270.5605490207672,0.14,0.0,0.0,0.0,-0.06513569 +270.5700891017914,0.14,0.0,0.0,0.0,-0.06513569 +270.5797209739685,0.14,0.0,0.0,0.0,-0.06513569 +270.5905439853668,0.14,0.0,0.0,0.0,-0.06513569 +270.59940910339355,0.14,0.0,0.0,0.0,-0.06513569 +270.60962200164795,0.14999999,0.0,0.0,0.0,-0.06513569 +270.62008690834045,0.14999999,0.0,0.0,0.0,-0.029984765 +270.63004899024963,0.14999999,0.0,0.0,0.0,-0.029984765 +270.6397280693054,0.14999999,0.0,0.0,0.0,-0.029984765 +270.6502859592438,0.14999999,0.0,0.0,0.0,-0.029984765 +270.660521030426,0.14999999,0.0,0.0,0.0,-0.024434604 +270.66982197761536,0.14999999,0.0,0.0,0.0,-0.024434604 +270.68055295944214,0.14999999,0.0,0.0,0.0,-0.024434604 +270.68939113616943,0.14999999,0.0,0.0,0.0,-0.024434604 +270.7005319595337,0.16,0.0,0.0,0.0,-0.024434604 +270.7104561328888,0.16,0.0,0.0,0.0,-0.024434604 +270.7200810909271,0.16,0.0,0.0,0.0,-0.029984765 +270.7297661304474,0.16,0.0,0.0,0.0,-0.029984765 +270.7393901348114,0.17,0.0,0.0,0.0,-0.029984765 +270.7505509853363,0.17,0.0,0.0,0.0,-0.029984765 +270.75972604751587,0.17,0.0,0.0,0.0,0.010716328 +270.7705271244049,0.17,0.0,0.0,0.0,0.010716328 +270.780513048172,0.17,0.0,0.0,0.0,0.010716328 +270.7897651195526,0.17999999,0.0,0.0,0.0,0.010716328 +270.8005211353302,0.17999999,0.0,0.0,0.0,0.010716328 +270.8105409145355,0.17999999,0.0,0.0,0.0,0.010716328 +270.81956791877747,0.17999999,0.0,0.0,0.0,-0.011484267 +270.8305289745331,0.17999999,0.0,0.0,0.0,-0.011484267 +270.8405439853668,0.19,0.0,0.0,0.0,-0.011484267 +270.84965801239014,0.19,0.0,0.0,0.0,-0.011484267 +270.85947608947754,0.19,0.0,0.0,0.0,0.0014660703 +270.8705461025238,0.19,0.0,0.0,0.0,0.0014660703 +270.8800160884857,0.19,0.0,0.0,0.0,0.0014660703 +270.89054107666016,0.19999999,0.0,0.0,0.0,0.0014660703 +270.8997731208801,0.19999999,0.0,0.0,0.0,0.0014660703 +270.90982699394226,0.21,0.0,0.0,0.0,0.0014660703 +270.9200830459595,0.21,0.0,0.0,0.0,0.012566376 +270.93005990982056,0.21,0.0,0.0,0.0,0.012566376 +270.93962001800537,0.21,0.0,0.0,0.0,0.012566376 +270.94944310188293,0.21,0.0,0.0,0.0,0.012566376 +270.960510969162,0.22,0.0,0.0,0.0,0.0033161184 +270.97053694725037,0.22,0.0,0.0,0.0,0.0033161184 +270.9799609184265,0.22,0.0,0.0,0.0,0.0033161184 +270.9902720451355,0.22,0.0,0.0,0.0,0.0033161184 +270.99994111061096,0.22,0.0,0.0,0.0,0.0033161184 +271.01050901412964,0.22999999,0.0,0.0,0.0,0.0033161184 +271.0194671154022,0.22999999,0.0,0.0,0.0,0.008866279 +271.0295569896698,0.22999999,0.0,0.0,0.0,0.008866279 +271.03965306282043,0.22999999,0.0,0.0,0.0,0.008866279 +271.050518989563,0.22999999,0.0,0.0,0.0,0.008866279 +271.060063123703,0.22999999,0.0,0.0,0.0,0.014416425 +271.07050800323486,0.22999999,0.0,0.0,0.0,0.014416425 +271.0805220603943,0.24,0.0,0.0,0.0,0.014416425 +271.09018301963806,0.24,0.0,0.0,0.0,0.014416425 +271.10049510002136,0.24,0.0,0.0,0.0,0.014416425 +271.1105201244354,0.24,0.0,0.0,0.0,0.014416425 +271.11948704719543,0.24,0.0,0.0,0.0,0.027366763 +271.12985491752625,0.24,0.0,0.0,0.0,0.027366763 +271.14033102989197,0.24,0.0,0.0,0.0,0.027366763 +271.1504991054535,0.24,0.0,0.0,0.0,0.027366763 +271.16051506996155,0.25,0.0,0.0,0.0,0.008866279 +271.17051005363464,0.25,0.0,0.0,0.0,0.008866279 +271.1802771091461,0.25,0.0,0.0,0.0,0.008866279 +271.19051599502563,0.25,0.0,0.0,0.0,0.008866279 +271.1994249820709,0.25,0.0,0.0,0.0,0.008866279 +271.2095079421997,0.25,0.0,0.0,0.0,0.008866279 +271.22003507614136,0.25,0.0,0.0,0.0,0.02921681 +271.2295620441437,0.25,0.0,0.0,0.0,0.02921681 +271.24052000045776,0.25,0.0,0.0,0.0,0.02921681 +271.2502660751343,0.25,0.0,0.0,0.0,0.02921681 +271.26046895980835,0.25,0.0,0.0,0.0,0.05696755 +271.2703769207001,0.25,0.0,0.0,0.0,0.05696755 +271.2794210910797,0.25,0.0,0.0,0.0,0.05696755 +271.2904851436615,0.25,0.0,0.0,0.0,0.05696755 +271.29950308799744,0.25,0.0,0.0,0.0,0.05696755 +271.30963110923767,0.26,0.0,0.0,0.0,0.068067834 +271.3194980621338,0.26,0.0,0.0,0.0,0.068067834 +271.33007192611694,0.26,0.0,0.0,0.0,0.068067834 +271.34050011634827,0.26,0.0,0.0,0.0,0.068067834 +271.34961199760437,0.26,0.0,0.0,0.0,0.068067834 +271.3604950904846,0.26,0.0,0.0,0.0,0.08286824 +271.36947202682495,0.26,0.0,0.0,0.0,0.08286824 +271.38026309013367,0.26,0.0,0.0,0.0,0.08286824 +271.38944697380066,0.26,0.0,0.0,0.0,0.08286824 +271.40043807029724,0.26,0.0,0.0,0.0,0.08286824 +271.4094469547272,0.26,0.0,0.0,0.0,0.08286824 +271.42009806632996,0.26999998,0.0,0.0,0.0,0.08286824 +271.429407119751,0.26999998,0.0,0.0,0.0,0.08286824 +271.44050693511963,0.26999998,0.0,0.0,0.0,0.08286824 +271.45048999786377,0.26999998,0.0,0.0,0.0,0.08286824 +271.45964193344116,0.26999998,0.0,0.0,0.0,0.09581858 +271.47005009651184,0.26999998,0.0,0.0,0.0,0.09581858 +271.4794280529022,0.26999998,0.0,0.0,0.0,0.09581858 +271.4904899597168,0.26999998,0.0,0.0,0.0,0.09581858 +271.4996540546417,0.26999998,0.0,0.0,0.0,0.09581858 +271.5102460384369,0.28,0.0,0.0,0.0,0.09951867 +271.5200889110565,0.28,0.0,0.0,0.0,0.09951867 +271.53006410598755,0.28,0.0,0.0,0.0,0.09951867 +271.5404739379883,0.28,0.0,0.0,0.0,0.09951867 +271.54976296424866,0.28,0.0,0.0,0.0,0.09951867 +271.5604019165039,0.28,0.0,0.0,0.0,0.08656834 +271.5704801082611,0.28,0.0,0.0,0.0,0.08656834 +271.5804569721222,0.28,0.0,0.0,0.0,0.08656834 +271.5898480415344,0.28,0.0,0.0,0.0,0.08656834 +271.6004641056061,0.28,0.0,0.0,0.0,0.08656834 +271.6094489097595,0.28,0.0,0.0,0.0,0.08656834 +271.6201009750366,0.29,0.0,0.0,0.0,0.10506884 +271.6300699710846,0.29,0.0,0.0,0.0,0.10506884 +271.6393949985504,0.29,0.0,0.0,0.0,0.10506884 +271.65037512779236,0.29,0.0,0.0,0.0,0.10506884 +271.6604471206665,0.29,0.0,0.0,0.0,0.07546805 +271.67046904563904,0.29,0.0,0.0,0.0,0.07546805 +271.68003702163696,0.29,0.0,0.0,0.0,0.07546805 +271.6904630661011,0.29,0.0,0.0,0.0,0.07546805 +271.7004361152649,0.29,0.0,0.0,0.0,0.07546805 +271.7104580402374,0.29,0.0,0.0,0.0,0.07546805 +271.71960401535034,0.29,0.0,0.0,0.0,0.09581858 +271.72981905937195,0.29,0.0,0.0,0.0,0.09581858 +271.7400641441345,0.29,0.0,0.0,0.0,0.09581858 +271.75046396255493,0.29,0.0,0.0,0.0,0.09581858 +271.7594349384308,0.29,0.0,0.0,0.0,0.093968526 +271.7702100276947,0.29999998,0.0,0.0,0.0,0.093968526 +271.7804319858551,0.29999998,0.0,0.0,0.0,0.093968526 +271.7904601097107,0.29999998,0.0,0.0,0.0,0.093968526 +271.79983592033386,0.29999998,0.0,0.0,0.0,0.093968526 +271.8104600906372,0.29999998,0.0,0.0,0.0,0.093968526 +271.82008504867554,0.29999998,0.0,0.0,0.0,0.093968526 +271.83006405830383,0.29999998,0.0,0.0,0.0,0.093968526 +271.8404700756073,0.29999998,0.0,0.0,0.0,0.093968526 +271.8499119281769,0.29999998,0.0,0.0,0.0,0.093968526 +271.86042499542236,0.29999998,0.0,0.0,0.0,0.08841839 +271.8694519996643,0.29999998,0.0,0.0,0.0,0.08841839 +271.8800389766693,0.31,0.0,0.0,0.0,0.08841839 +271.8904390335083,0.31,0.0,0.0,0.0,0.08841839 +271.9001569747925,0.31,0.0,0.0,0.0,0.08841839 +271.91022396087646,0.31,0.0,0.0,0.0,0.08841839 +271.9194691181183,0.31,0.0,0.0,0.0,0.09211848 +271.9295029640198,0.32,0.0,0.0,0.0,0.09211848 +271.9404389858246,0.32,0.0,0.0,0.0,0.09211848 +271.9504590034485,0.32,0.0,0.0,0.0,0.09211848 +271.95967507362366,0.32,0.0,0.0,0.0,0.10506884 +271.9704360961914,0.32999998,0.0,0.0,0.0,0.10506884 +271.9804289340973,0.32999998,0.0,0.0,0.0,0.10506884 +271.99043893814087,0.32999998,0.0,0.0,0.0,0.10506884 +271.99998903274536,0.32999998,0.0,0.0,0.0,0.10506884 +272.01023411750793,0.34,0.0,0.0,0.0,0.10506884 +272.0194499492645,0.34,0.0,0.0,0.0,0.09211848 +272.03004908561707,0.34,0.0,0.0,0.0,0.09211848 +272.04045391082764,0.34,0.0,0.0,0.0,0.09211848 +272.0493941307068,0.34,0.0,0.0,0.0,0.09211848 +272.06007409095764,0.35,0.0,0.0,0.0,0.093968526 +272.070436000824,0.35,0.0,0.0,0.0,0.093968526 +272.0804400444031,0.35,0.0,0.0,0.0,0.093968526 +272.0904049873352,0.35,0.0,0.0,0.0,0.093968526 +272.09942603111267,0.35999998,0.0,0.0,0.0,0.093968526 +272.11042499542236,0.35999998,0.0,0.0,0.0,0.093968526 +272.1202609539032,0.35999998,0.0,0.0,0.0,0.093968526 +272.1296100616455,0.35999998,0.0,0.0,0.0,0.093968526 +272.14005303382874,0.35999998,0.0,0.0,0.0,0.093968526 +272.1504430770874,0.35999998,0.0,0.0,0.0,0.093968526 +272.1601619720459,0.35999998,0.0,0.0,0.0,0.09766865 +272.16951394081116,0.37,0.0,0.0,0.0,0.09766865 +272.1803460121155,0.37,0.0,0.0,0.0,0.09766865 +272.1895270347595,0.37,0.0,0.0,0.0,0.09766865 +272.19961309432983,0.37,0.0,0.0,0.0,0.09766865 +272.2098591327667,0.37,0.0,0.0,0.0,0.09766865 +272.22008299827576,0.37,0.0,0.0,0.0,0.08471829 +272.2300729751587,0.38,0.0,0.0,0.0,0.08471829 +272.24031805992126,0.38,0.0,0.0,0.0,0.08471829 +272.2504229545593,0.38,0.0,0.0,0.0,0.08471829 +272.2595589160919,0.38,0.0,0.0,0.0,0.09211848 +272.27042603492737,0.38,0.0,0.0,0.0,0.09211848 +272.2796230316162,0.38,0.0,0.0,0.0,0.09211848 +272.29007291793823,0.38,0.0,0.0,0.0,0.09211848 +272.3001561164856,0.39,0.0,0.0,0.0,0.09211848 +272.3104100227356,0.39,0.0,0.0,0.0,0.06621779 +272.3200979232788,0.39,0.0,0.0,0.0,0.06621779 +272.3294789791107,0.39,0.0,0.0,0.0,0.06621779 +272.34042596817017,0.39,0.0,0.0,0.0,0.06621779 +272.35042214393616,0.39,0.0,0.0,0.0,0.06621779 +272.3604130744934,0.39,0.0,0.0,0.0,0.09766865 +272.3697340488434,0.39,0.0,0.0,0.0,0.09766865 +272.3803870677948,0.39,0.0,0.0,0.0,0.09766865 +272.390419960022,0.39,0.0,0.0,0.0,0.09766865 +272.40039706230164,0.39,0.0,0.0,0.0,0.09766865 +272.4094009399414,0.39,0.0,0.0,0.0,0.09211848 +272.41965913772583,0.39999998,0.0,0.0,0.0,0.09211848 +272.4300880432129,0.39999998,0.0,0.0,0.0,0.09211848 +272.4404809474945,0.39999998,0.0,0.0,0.0,0.09211848 +272.45041012763977,0.39999998,0.0,0.0,0.0,0.09211848 +272.4594111442566,0.39999998,0.0,0.0,0.0,0.09211848 +272.4699900150299,0.39999998,0.0,0.0,0.0,0.09211848 +272.4804120063782,0.39999998,0.0,0.0,0.0,0.09211848 +272.49039793014526,0.39999998,0.0,0.0,0.0,0.09211848 +272.4994230270386,0.39999998,0.0,0.0,0.0,0.09211848 +272.509850025177,0.39999998,0.0,0.0,0.0,0.068067834 +272.5204019546509,0.39999998,0.0,0.0,0.0,0.068067834 +272.52993512153625,0.39999998,0.0,0.0,0.0,0.068067834 +272.5396270751953,0.39999998,0.0,0.0,0.0,0.068067834 +272.5498299598694,0.39999998,0.0,0.0,0.0,0.068067834 +272.5603880882263,0.39999998,0.0,0.0,0.0,0.04586726 +272.5703821182251,0.39999998,0.0,0.0,0.0,0.04586726 +272.5800769329071,0.39999998,0.0,0.0,0.0,0.04586726 +272.5900070667267,0.39999998,0.0,0.0,0.0,0.04586726 +272.6000361442566,0.39999998,0.0,0.0,0.0,0.04586726 +272.6096029281616,0.39999998,0.0,0.0,0.0,0.05696755 +272.6198379993439,0.39999998,0.0,0.0,0.0,0.05696755 +272.63007712364197,0.39999998,0.0,0.0,0.0,0.05696755 +272.6397759914398,0.39999998,0.0,0.0,0.0,0.05696755 +272.6497230529785,0.39999998,0.0,0.0,0.0,0.05696755 +272.66037106513977,0.39999998,0.0,0.0,0.0,0.038467064 +272.6703851222992,0.39999998,0.0,0.0,0.0,0.038467064 +272.6801450252533,0.39999998,0.0,0.0,0.0,0.038467064 +272.69022607803345,0.39999998,0.0,0.0,0.0,0.038467064 +272.7000570297241,0.39999998,0.0,0.0,0.0,0.038467064 +272.7102789878845,0.39999998,0.0,0.0,0.0,0.038467064 +272.72008991241455,0.39999998,0.0,0.0,0.0,0.023666665 +272.729679107666,0.39999998,0.0,0.0,0.0,0.023666665 +272.7401111125946,0.39999998,0.0,0.0,0.0,0.023666665 +272.7503809928894,0.41,0.0,0.0,0.0,0.023666665 +272.75957703590393,0.41,0.0,0.0,0.0,-0.013334316 +272.7703731060028,0.41,0.0,0.0,0.0,-0.013334316 +272.7803020477295,0.41,0.0,0.0,0.0,-0.013334316 +272.78941893577576,0.41,0.0,0.0,0.0,-0.013334316 +272.7999529838562,0.41,0.0,0.0,0.0,-0.013334316 +272.8101589679718,0.41,0.0,0.0,0.0,-0.013334316 +272.8196151256561,0.41,0.0,0.0,0.0,-0.013334316 +272.83007311820984,0.41,0.0,0.0,0.0,-0.013334316 +272.84037804603577,0.41,0.0,0.0,0.0,-0.013334316 +272.85038113594055,0.41,0.0,0.0,0.0,-0.013334316 +272.86017513275146,0.41,0.0,0.0,0.0,-0.009634218 +272.8694369792938,0.41,0.0,0.0,0.0,-0.009634218 +272.8796269893646,0.41,0.0,0.0,0.0,-0.009634218 +272.89037895202637,0.41,0.0,0.0,0.0,-0.009634218 +272.90035009384155,0.41,0.0,0.0,0.0,-0.009634218 +272.90957403182983,0.41,0.0,0.0,0.0,-0.009634218 +272.91951298713684,0.41,0.0,0.0,0.0,-0.01888446 +272.930095911026,0.41,0.0,0.0,0.0,-0.01888446 +272.9401080608368,0.41,0.0,0.0,0.0,-0.01888446 +272.94963812828064,0.41,0.0,0.0,0.0,-0.01888446 +272.9603509902954,0.41,0.0,0.0,0.0,-0.039235007 +272.96966791152954,0.41,0.0,0.0,0.0,-0.039235007 +272.98035407066345,0.41,0.0,0.0,0.0,-0.039235007 +272.9903700351715,0.41,0.0,0.0,0.0,-0.039235007 +272.99950194358826,0.41,0.0,0.0,0.0,-0.039235007 +273.01022696495056,0.41,0.0,0.0,0.0,-0.039235007 +273.02012491226196,0.41,0.0,0.0,0.0,-0.01888446 +273.02986907958984,0.41,0.0,0.0,0.0,-0.01888446 +273.04039192199707,0.41,0.0,0.0,0.0,-0.01888446 +273.0503640174866,0.41,0.0,0.0,0.0,-0.01888446 +273.0596261024475,0.41,0.0,0.0,0.0,-0.020734508 +273.0700991153717,0.41,0.0,0.0,0.0,-0.020734508 +273.08035612106323,0.41,0.0,0.0,0.0,-0.020734508 +273.0894501209259,0.41,0.0,0.0,0.0,-0.020734508 +273.09943199157715,0.41,0.0,0.0,0.0,-0.020734508 +273.11005997657776,0.41,0.0,0.0,0.0,-0.020734508 +273.12011098861694,0.41,0.0,0.0,0.0,-0.015184363 +273.1300621032715,0.41,0.0,0.0,0.0,-0.015184363 +273.14036297798157,0.41,0.0,0.0,0.0,-0.015184363 +273.150239944458,0.42,0.0,0.0,0.0,-0.015184363 +273.1603319644928,0.42,0.0,0.0,0.0,-0.0040840744 +273.1703519821167,0.42,0.0,0.0,0.0,-0.0040840744 +273.18032002449036,0.42,0.0,0.0,0.0,-0.0040840744 +273.18950510025024,0.42,0.0,0.0,0.0,-0.0040840744 +273.2000689506531,0.42,0.0,0.0,0.0,-0.0040840744 +273.2103409767151,0.42,0.0,0.0,0.0,-0.0040840744 +273.2201099395752,0.42,0.0,0.0,0.0,-0.015184363 +273.2300570011139,0.42,0.0,0.0,0.0,-0.015184363 +273.2403790950775,0.42,0.0,0.0,0.0,-0.015184363 +273.24941396713257,0.42,0.0,0.0,0.0,-0.015184363 +273.2603049278259,0.42,0.0,0.0,0.0,-0.020734508 +273.26960492134094,0.42,0.0,0.0,0.0,-0.020734508 +273.2794659137726,0.42,0.0,0.0,0.0,-0.020734508 +273.290344953537,0.42,0.0,0.0,0.0,-0.020734508 +273.2999770641327,0.42,0.0,0.0,0.0,-0.020734508 +273.3103461265564,0.42,0.0,0.0,0.0,-0.03553491 +273.31958198547363,0.42,0.0,0.0,0.0,-0.03553491 +273.3300540447235,0.42,0.0,0.0,0.0,-0.03553491 +273.339595079422,0.42,0.0,0.0,0.0,-0.03553491 +273.3502480983734,0.42,0.0,0.0,0.0,-0.03553491 +273.35967803001404,0.42,0.0,0.0,0.0,-0.0040840744 +273.3696439266205,0.42,0.0,0.0,0.0,-0.0040840744 +273.37951397895813,0.42,0.0,0.0,0.0,-0.0040840744 +273.39009499549866,0.42,0.0,0.0,0.0,-0.0040840744 +273.400337934494,0.42,0.0,0.0,0.0,-0.0040840744 +273.4103410243988,0.42,0.0,0.0,0.0,0.012566376 +273.4202980995178,0.42,0.0,0.0,0.0,0.012566376 +273.429790019989,0.42,0.0,0.0,0.0,0.012566376 +273.43991708755493,0.42999998,0.0,0.0,0.0,0.012566376 +273.4502041339874,0.42999998,0.0,0.0,0.0,0.012566376 +273.45972990989685,0.44,0.0,0.0,0.0,-0.013334316 +273.4703280925751,0.44,0.0,0.0,0.0,-0.013334316 +273.48031210899353,0.45,0.0,0.0,0.0,-0.013334316 +273.49033308029175,0.45,0.0,0.0,0.0,-0.013334316 +273.49971199035645,0.45,0.0,0.0,0.0,-0.013334316 +273.5099461078644,0.45,0.0,0.0,0.0,0.012566376 +273.51996302604675,0.45,0.0,0.0,0.0,0.012566376 +273.52940607070923,0.45,0.0,0.0,0.0,0.012566376 +273.54032707214355,0.45,0.0,0.0,0.0,0.012566376 +273.54980206489563,0.45,0.0,0.0,0.0,0.012566376 +273.56030797958374,0.45,0.0,0.0,0.0,0.0014660703 +273.5703229904175,0.45,0.0,0.0,0.0,0.0014660703 +273.58029794692993,0.45,0.0,0.0,0.0,0.0014660703 +273.58969807624817,0.45,0.0,0.0,0.0,0.0014660703 +273.6003301143646,0.45,0.0,0.0,0.0,0.0014660703 +273.61014699935913,0.45,0.0,0.0,0.0,0.0014660703 +273.6200339794159,0.45,0.0,0.0,0.0,0.0014660703 +273.63007402420044,0.45,0.0,0.0,0.0,0.0014660703 +273.63986110687256,0.45,0.0,0.0,0.0,0.0014660703 +273.65032291412354,0.45999998,0.0,0.0,0.0,0.0014660703 +273.66028094291687,0.45999998,0.0,0.0,0.0,0.019966569 +273.6703259944916,0.45999998,0.0,0.0,0.0,0.019966569 +273.68031096458435,0.45999998,0.0,0.0,0.0,0.019966569 +273.6894750595093,0.45999998,0.0,0.0,0.0,0.019966569 +273.7002899646759,0.45999998,0.0,0.0,0.0,0.019966569 +273.7096390724182,0.45999998,0.0,0.0,0.0,0.019966569 +273.7194490432739,0.45999998,0.0,0.0,0.0,0.031066857 +273.7299339771271,0.45999998,0.0,0.0,0.0,0.031066857 +273.7403130531311,0.45999998,0.0,0.0,0.0,0.031066857 +273.7503111362457,0.45999998,0.0,0.0,0.0,0.031066857 +273.7603089809418,0.45999998,0.0,0.0,0.0,0.012566376 +273.7696809768677,0.45999998,0.0,0.0,0.0,0.012566376 +273.78029012680054,0.45999998,0.0,0.0,0.0,0.012566376 +273.79030895233154,0.45999998,0.0,0.0,0.0,0.012566376 +273.7994809150696,0.45999998,0.0,0.0,0.0,0.012566376 +273.8102939128876,0.45999998,0.0,0.0,0.0,0.012566376 +273.82003903388977,0.45999998,0.0,0.0,0.0,0.012566376 +273.8298189640045,0.45999998,0.0,0.0,0.0,0.012566376 +273.8403000831604,0.47,0.0,0.0,0.0,0.012566376 +273.84987807273865,0.47,0.0,0.0,0.0,0.012566376 +273.860258102417,0.47,0.0,0.0,0.0,0.04586726 +273.87028312683105,0.47,0.0,0.0,0.0,0.04586726 +273.8802900314331,0.47,0.0,0.0,0.0,0.04586726 +273.88964200019836,0.47,0.0,0.0,0.0,0.04586726 +273.9002821445465,0.47,0.0,0.0,0.0,0.04586726 +273.91012692451477,0.47,0.0,0.0,0.0,0.04586726 +273.9201350212097,0.47,0.0,0.0,0.0,0.06066765 +273.9300880432129,0.47,0.0,0.0,0.0,0.06066765 +273.93940591812134,0.47,0.0,0.0,0.0,0.06066765 +273.95027709007263,0.47,0.0,0.0,0.0,0.06066765 +273.9602689743042,0.48,0.0,0.0,0.0,0.038467064 +273.9703221321106,0.48,0.0,0.0,0.0,0.038467064 +273.9797930717468,0.48,0.0,0.0,0.0,0.038467064 +273.990296125412,0.48,0.0,0.0,0.0,0.038467064 +274.00019693374634,0.48,0.0,0.0,0.0,0.038467064 +274.0102710723877,0.48,0.0,0.0,0.0,0.038467064 +274.0201461315155,0.48,0.0,0.0,0.0,0.038467064 +274.02943205833435,0.48,0.0,0.0,0.0,0.038467064 +274.0402879714966,0.48,0.0,0.0,0.0,0.038467064 +274.050283908844,0.48,0.0,0.0,0.0,0.038467064 +274.06025099754333,0.48,0.0,0.0,0.0,0.077318095 +274.06972002983093,0.48,0.0,0.0,0.0,0.077318095 +274.0802791118622,0.48,0.0,0.0,0.0,0.077318095 +274.09027910232544,0.48,0.0,0.0,0.0,0.077318095 +274.0995099544525,0.48,0.0,0.0,0.0,0.077318095 +274.1101520061493,0.48,0.0,0.0,0.0,0.077318095 +274.12012100219727,0.48,0.0,0.0,0.0,0.053267453 +274.1300880908966,0.48,0.0,0.0,0.0,0.053267453 +274.140291929245,0.48,0.0,0.0,0.0,0.053267453 +274.1502721309662,0.48,0.0,0.0,0.0,0.053267453 +274.159658908844,0.48,0.0,0.0,0.0,0.05696755 +274.1702561378479,0.48,0.0,0.0,0.0,0.05696755 +274.17939496040344,0.48,0.0,0.0,0.0,0.05696755 +274.1902849674225,0.48,0.0,0.0,0.0,0.05696755 +274.20025610923767,0.48,0.0,0.0,0.0,0.05696755 +274.20967292785645,0.48,0.0,0.0,0.0,0.05696755 +274.2202389240265,0.48,0.0,0.0,0.0,0.073618 +274.2302589416504,0.48,0.0,0.0,0.0,0.073618 +274.2401170730591,0.48,0.0,0.0,0.0,0.073618 +274.24958992004395,0.48,0.0,0.0,0.0,0.073618 +274.25987005233765,0.48,0.0,0.0,0.0,0.077318095 +274.2696189880371,0.48,0.0,0.0,0.0,0.077318095 +274.27944111824036,0.48999998,0.0,0.0,0.0,0.077318095 +274.29026794433594,0.48999998,0.0,0.0,0.0,0.077318095 +274.3002269268036,0.48999998,0.0,0.0,0.0,0.077318095 +274.310271024704,0.48999998,0.0,0.0,0.0,0.07546805 +274.32012701034546,0.48999998,0.0,0.0,0.0,0.07546805 +274.32974195480347,0.48999998,0.0,0.0,0.0,0.07546805 +274.3395309448242,0.48999998,0.0,0.0,0.0,0.07546805 +274.34947896003723,0.48999998,0.0,0.0,0.0,0.07546805 +274.3602430820465,0.48999998,0.0,0.0,0.0,0.062517695 +274.3695299625397,0.48999998,0.0,0.0,0.0,0.062517695 +274.38022208213806,0.48999998,0.0,0.0,0.0,0.062517695 +274.39025807380676,0.48999998,0.0,0.0,0.0,0.062517695 +274.4002649784088,0.5,0.0,0.0,0.0,0.062517695 +274.41023802757263,0.5,0.0,0.0,0.0,0.073618 +274.4198651313782,0.5,0.0,0.0,0.0,0.073618 +274.42954301834106,0.5,0.0,0.0,0.0,0.073618 +274.4396331310272,0.5,0.0,0.0,0.0,0.073618 +274.4502420425415,0.5,0.0,0.0,0.0,0.073618 +274.45958495140076,0.5,0.0,0.0,0.0,0.06621779 +274.4702339172363,0.5,0.0,0.0,0.0,0.06621779 +274.4795699119568,0.5,0.0,0.0,0.0,0.06621779 +274.4902319908142,0.5,0.0,0.0,0.0,0.06621779 +274.5001149177551,0.5,0.0,0.0,0.0,0.06621779 +274.51025009155273,0.51,0.0,0.0,0.0,0.06621779 +274.520143032074,0.51,0.0,0.0,0.0,0.06621779 +274.5297939777374,0.51,0.0,0.0,0.0,0.06621779 +274.54000306129456,0.51,0.0,0.0,0.0,0.06621779 +274.54962611198425,0.51,0.0,0.0,0.0,0.06621779 +274.56022906303406,0.51,0.0,0.0,0.0,0.06066765 +274.5702359676361,0.51,0.0,0.0,0.0,0.06066765 +274.58021807670593,0.51,0.0,0.0,0.0,0.06066765 +274.5895850658417,0.51,0.0,0.0,0.0,0.06066765 +274.60022592544556,0.51,0.0,0.0,0.0,0.06066765 +274.61022901535034,0.51,0.0,0.0,0.0,0.0551175 +274.61997413635254,0.51,0.0,0.0,0.0,0.0551175 +274.6294279098511,0.52,0.0,0.0,0.0,0.0551175 +274.6397089958191,0.52,0.0,0.0,0.0,0.0551175 +274.6502330303192,0.52,0.0,0.0,0.0,0.0551175 +274.6601490974426,0.52,0.0,0.0,0.0,0.04401721 +274.6698200702667,0.52,0.0,0.0,0.0,0.04401721 +274.67950892448425,0.52,0.0,0.0,0.0,0.04401721 +274.6902220249176,0.53,0.0,0.0,0.0,0.04401721 +274.70019602775574,0.53,0.0,0.0,0.0,0.04401721 +274.71011996269226,0.53,0.0,0.0,0.0,0.04401721 +274.7201421260834,0.53999996,0.0,0.0,0.0,0.062517695 +274.7297611236572,0.53999996,0.0,0.0,0.0,0.062517695 +274.7402150630951,0.53999996,0.0,0.0,0.0,0.062517695 +274.75000405311584,0.55,0.0,0.0,0.0,0.062517695 +274.76013803482056,0.55,0.0,0.0,0.0,0.051417407 +274.76951694488525,0.55,0.0,0.0,0.0,0.051417407 +274.7801139354706,0.56,0.0,0.0,0.0,0.051417407 +274.7902240753174,0.56,0.0,0.0,0.0,0.051417407 +274.80021810531616,0.56,0.0,0.0,0.0,0.051417407 +274.81022095680237,0.56,0.0,0.0,0.0,0.051417407 +274.8197901248932,0.56,0.0,0.0,0.0,0.05696755 +274.82950592041016,0.57,0.0,0.0,0.0,0.05696755 +274.8402259349823,0.57,0.0,0.0,0.0,0.05696755 +274.8502390384674,0.57,0.0,0.0,0.0,0.05696755 +274.8601770401001,0.57,0.0,0.0,0.0,0.04586726 +274.87001299858093,0.57,0.0,0.0,0.0,0.04586726 +274.880224943161,0.57,0.0,0.0,0.0,0.04586726 +274.88958191871643,0.57,0.0,0.0,0.0,0.04586726 +274.89945912361145,0.58,0.0,0.0,0.0,0.04586726 +274.90985107421875,0.58,0.0,0.0,0.0,0.04586726 +274.9201281070709,0.58,0.0,0.0,0.0,0.053267453 +274.930144071579,0.58,0.0,0.0,0.0,0.053267453 +274.94021010398865,0.58,0.0,0.0,0.0,0.053267453 +274.9502320289612,0.58,0.0,0.0,0.0,0.053267453 +274.95994305610657,0.58,0.0,0.0,0.0,0.053267453 +274.9702160358429,0.58,0.0,0.0,0.0,0.053267453 +274.97950291633606,0.58,0.0,0.0,0.0,0.053267453 +274.989618062973,0.58,0.0,0.0,0.0,0.053267453 +274.99955701828003,0.58,0.0,0.0,0.0,0.053267453 +275.01022005081177,0.58,0.0,0.0,0.0,0.053267453 +275.020122051239,0.58,0.0,0.0,0.0,0.062517695 +275.03008913993835,0.58,0.0,0.0,0.0,0.062517695 +275.0397801399231,0.58,0.0,0.0,0.0,0.062517695 +275.0498459339142,0.58,0.0,0.0,0.0,0.062517695 +275.0601830482483,0.58,0.0,0.0,0.0,0.062517695 +275.0702271461487,0.58,0.0,0.0,0.0,0.062517695 +275.0797710418701,0.58,0.0,0.0,0.0,0.062517695 +275.08993101119995,0.58,0.0,0.0,0.0,0.062517695 +275.1001830101013,0.58,0.0,0.0,0.0,0.062517695 +275.11022996902466,0.58,0.0,0.0,0.0,0.062517695 +275.120178937912,0.58,0.0,0.0,0.0,0.08101819 +275.1301989555359,0.59,0.0,0.0,0.0,0.08101819 +275.13978004455566,0.59,0.0,0.0,0.0,0.08101819 +275.15016412734985,0.59,0.0,0.0,0.0,0.08101819 +275.15995597839355,0.59,0.0,0.0,0.0,0.06621779 +275.16996908187866,0.59,0.0,0.0,0.0,0.06621779 +275.1799900531769,0.59,0.0,0.0,0.0,0.06621779 +275.1902301311493,0.58,0.0,0.0,0.0,0.06621779 +275.20018911361694,0.58,0.0,0.0,0.0,0.06621779 +275.21020913124084,0.58,0.0,0.0,0.0,0.06621779 +275.2201280593872,0.58,0.0,0.0,0.0,0.09766865 +275.2296919822693,0.58,0.0,0.0,0.0,0.09766865 +275.2401371002197,0.58,0.0,0.0,0.0,0.09766865 +275.25020694732666,0.57,0.0,0.0,0.0,0.09766865 +275.26011204719543,0.57,0.0,0.0,0.0,0.110618964 +275.2700250148773,0.57,0.0,0.0,0.0,0.110618964 +275.2801151275635,0.57,0.0,0.0,0.0,0.110618964 +275.2902090549469,0.57,0.0,0.0,0.0,0.110618964 +275.3001470565796,0.57,0.0,0.0,0.0,0.110618964 +275.31003403663635,0.57,0.0,0.0,0.0,0.10876893 +275.319589138031,0.57,0.0,0.0,0.0,0.10876893 +275.3295531272888,0.57,0.0,0.0,0.0,0.10876893 +275.3401710987091,0.57,0.0,0.0,0.0,0.10876893 +275.3502049446106,0.57,0.0,0.0,0.0,0.10876893 +275.36009407043457,0.57,0.0,0.0,0.0,0.110618964 +275.37006092071533,0.57,0.0,0.0,0.0,0.110618964 +275.38014101982117,0.57,0.0,0.0,0.0,0.110618964 +275.39022397994995,0.57,0.0,0.0,0.0,0.110618964 +275.40017104148865,0.57,0.0,0.0,0.0,0.110618964 +275.40941309928894,0.56,0.0,0.0,0.0,0.114319056 +275.4200351238251,0.56,0.0,0.0,0.0,0.114319056 +275.43013095855713,0.56,0.0,0.0,0.0,0.114319056 +275.4401710033417,0.56,0.0,0.0,0.0,0.114319056 +275.4494481086731,0.56,0.0,0.0,0.0,0.114319056 +275.4601421356201,0.56,0.0,0.0,0.0,0.10691887 +275.47019600868225,0.56,0.0,0.0,0.0,0.10691887 +275.48015904426575,0.56,0.0,0.0,0.0,0.10691887 +275.4895989894867,0.56,0.0,0.0,0.0,0.10691887 +275.49943113327026,0.57,0.0,0.0,0.0,0.10691887 +275.5095660686493,0.57,0.0,0.0,0.0,0.10506884 +275.5201539993286,0.57,0.0,0.0,0.0,0.10506884 +275.53008008003235,0.57,0.0,0.0,0.0,0.10506884 +275.539617061615,0.57,0.0,0.0,0.0,0.10506884 +275.55017495155334,0.57,0.0,0.0,0.0,0.10506884 +275.5601689815521,0.57,0.0,0.0,0.0,0.116169125 +275.5697751045227,0.57,0.0,0.0,0.0,0.116169125 +275.5801191329956,0.57,0.0,0.0,0.0,0.116169125 +275.59018111228943,0.57,0.0,0.0,0.0,0.116169125 +275.5995750427246,0.57,0.0,0.0,0.0,0.116169125 +275.6101610660553,0.56,0.0,0.0,0.0,0.08656834 +275.6201229095459,0.56,0.0,0.0,0.0,0.08656834 +275.62974095344543,0.55,0.0,0.0,0.0,0.08656834 +275.6401650905609,0.55,0.0,0.0,0.0,0.08656834 +275.64995193481445,0.55,0.0,0.0,0.0,0.08656834 +275.65966796875,0.55,0.0,0.0,0.0,0.04031712 +275.6701719760895,0.55,0.0,0.0,0.0,0.04031712 +275.68015599250793,0.55,0.0,0.0,0.0,0.04031712 +275.6901590824127,0.55,0.0,0.0,0.0,0.04031712 +275.7001221179962,0.55,0.0,0.0,0.0,0.04031712 +275.7101740837097,0.55,0.0,0.0,0.0,0.04031712 +275.71988701820374,0.55,0.0,0.0,0.0,0.053267453 +275.73015093803406,0.56,0.0,0.0,0.0,0.053267453 +275.7401521205902,0.56,0.0,0.0,0.0,0.053267453 +275.7501540184021,0.56,0.0,0.0,0.0,0.053267453 +275.76013708114624,0.55,0.0,0.0,0.0,0.06066765 +275.7701630592346,0.55,0.0,0.0,0.0,0.06066765 +275.7801139354706,0.55,0.0,0.0,0.0,0.06066765 +275.7901620864868,0.53999996,0.0,0.0,0.0,0.06066765 +275.7996220588684,0.53999996,0.0,0.0,0.0,0.06066765 +275.8100619316101,0.53,0.0,0.0,0.0,0.06066765 +275.8195049762726,0.53,0.0,0.0,0.0,0.042167164 +275.8301610946655,0.53,0.0,0.0,0.0,0.042167164 +275.8401701450348,0.52,0.0,0.0,0.0,0.042167164 +275.8501489162445,0.52,0.0,0.0,0.0,0.042167164 +275.8601140975952,0.52,0.0,0.0,0.0,0.034766953 +275.8701639175415,0.52,0.0,0.0,0.0,0.034766953 +275.8801169395447,0.51,0.0,0.0,0.0,0.034766953 +275.89016008377075,0.51,0.0,0.0,0.0,0.034766953 +275.9001040458679,0.51,0.0,0.0,0.0,0.034766953 +275.9095411300659,0.5,0.0,0.0,0.0,0.034766953 +275.92012906074524,0.5,0.0,0.0,0.0,0.08841839 +275.9297740459442,0.5,0.0,0.0,0.0,0.08841839 +275.9401409626007,0.48999998,0.0,0.0,0.0,0.08841839 +275.95013308525085,0.48,0.0,0.0,0.0,0.08841839 +275.96013498306274,0.47,0.0,0.0,0.0,0.09211848 +275.9701750278473,0.47,0.0,0.0,0.0,0.09211848 +275.9795489311218,0.47,0.0,0.0,0.0,0.09211848 +275.99016404151917,0.47,0.0,0.0,0.0,0.09211848 +275.9996020793915,0.47,0.0,0.0,0.0,0.09211848 +276.0101270675659,0.47,0.0,0.0,0.0,0.09211848 +276.02007603645325,0.47,0.0,0.0,0.0,0.077318095 +276.03012704849243,0.45999998,0.0,0.0,0.0,0.077318095 +276.0395679473877,0.45999998,0.0,0.0,0.0,0.077318095 +276.05015110969543,0.45999998,0.0,0.0,0.0,0.077318095 +276.0597231388092,0.45999998,0.0,0.0,0.0,0.08286824 +276.069531917572,0.45,0.0,0.0,0.0,0.08286824 +276.08010601997375,0.45,0.0,0.0,0.0,0.08286824 +276.0895149707794,0.45,0.0,0.0,0.0,0.08286824 +276.10009598731995,0.44,0.0,0.0,0.0,0.08286824 +276.11010003089905,0.42999998,0.0,0.0,0.0,0.08286824 +276.12010192871094,0.42999998,0.0,0.0,0.0,0.116169125 +276.13013100624084,0.42,0.0,0.0,0.0,0.116169125 +276.1398959159851,0.42,0.0,0.0,0.0,0.116169125 +276.15012311935425,0.42,0.0,0.0,0.0,0.116169125 +276.1601150035858,0.41,0.0,0.0,0.0,0.08471829 +276.17012095451355,0.39999998,0.0,0.0,0.0,0.08471829 +276.1796770095825,0.39999998,0.0,0.0,0.0,0.08471829 +276.1901309490204,0.39,0.0,0.0,0.0,0.08471829 +276.2001130580902,0.37,0.0,0.0,0.0,0.08471829 +276.2100350856781,0.37,0.0,0.0,0.0,0.08471829 +276.22006392478943,0.35999998,0.0,0.0,0.0,0.077318095 +276.23012804985046,0.35,0.0,0.0,0.0,0.077318095 +276.24011611938477,0.32,1.5151515,1.5151515,0.0,0.077318095 +276.24963998794556,0.32,1.5151515,1.5151515,0.0,0.077318095 +276.26008200645447,0.29999998,2.2727273,2.2727273,0.0,0.077318095 +276.26980805397034,0.29,3.787879,3.787879,0.0,0.077318095 +276.2795739173889,0.26999998,4.5454545,4.5454545,0.0,0.077318095 +276.29013109207153,0.26,5.3030305,5.3030305,0.0,0.077318095 +276.29999804496765,0.26,5.3030305,5.3030305,0.0,0.077318095 +276.30975699424744,0.22,6.060606,6.060606,0.0,0.068067834 +276.32008504867554,0.21,6.818182,6.818182,0.0,0.068067834 +276.3300840854645,0.19,9.090909,9.090909,0.0,0.068067834 +276.3400990962982,0.19,9.090909,9.090909,0.0,0.068067834 +276.35009598731995,0.17,9.848485,9.848485,0.0,0.068067834 +276.35993099212646,0.17,9.848485,9.848485,0.0,0.068067834 +276.3697199821472,0.16,11.363637,11.363637,0.0,0.068067834 +276.3800539970398,0.14999999,12.878788,12.878788,0.0,0.068067834 +276.3899199962616,0.14,13.636364,13.636364,0.0,0.068067834 +276.40009808540344,0.14,14.39394,14.39394,0.0,0.068067834 +276.4100730419159,0.12,15.151516,15.151516,0.0,0.08471829 +276.42006492614746,0.12,15.151516,15.151516,0.0,0.08471829 +276.4300911426544,0.11,16.666668,16.666668,0.0,0.08471829 +276.4401021003723,0.099999994,19.69697,19.69697,0.0,0.08471829 +276.450021982193,0.099999994,19.69697,19.69697,0.0,0.08471829 +276.4600660800934,0.089999996,21.969696,21.969696,0.0,0.0551175 +276.46947503089905,0.089999996,24.242424,24.242424,0.0,0.0551175 +276.4799039363861,0.08,27.272728,27.272728,0.0,0.0551175 +276.4900839328766,0.07,32.575756,32.575756,0.0,0.0551175 +276.5000569820404,0.07,32.575756,32.575756,0.0,0.0551175 +276.51007199287415,0.06,45.454548,45.454548,0.009372071,0.019966569 +276.52008509635925,0.04,58.333332,58.333332,0.018744143,0.019966569 +276.53009700775146,0.04,65.90909,65.90909,0.028116215,0.019966569 +276.5400769710541,0.04,65.90909,65.90909,0.037488285,0.019966569 +276.54964113235474,0.03,64.393936,64.393936,0.05623243,0.019966569 +276.5600700378418,0.03,53.78788,53.78788,0.0656045,0.032916907 +276.56983709335327,0.03,53.78788,53.78788,0.07497657,0.032916907 +276.57977294921875,0.02,40.90909,40.90909,0.08434864,0.032916907 +276.5900740623474,0.01,38.636364,38.636364,0.10309278,0.032916907 +276.6000671386719,0.01,44.696968,44.696968,0.11246486,0.032916907 +276.61008310317993,0.0,49.242424,49.242424,0.12183693,-0.002234026 +276.62004494667053,0.0,49.242424,49.242424,0.131209,-0.002234026 +276.6298129558563,0.0,54.545456,54.545456,0.14995314,-0.002234026 +276.63942313194275,0.0,58.333332,58.333332,0.15932521,-0.002234026 +276.6500611305237,0.0,61.363636,61.363636,0.16869728,-0.002234026 +276.6598300933838,0.0,61.363636,61.363636,0.17806935,-0.08363618 +276.6700761318207,0.0,69.69697,69.69697,0.18744142,-0.08363618 +276.6800789833069,0.0,78.030304,78.030304,0.1968135,-0.08363618 +276.69006514549255,0.0,81.81818,81.81818,0.21555763,-0.08363618 +276.70004892349243,0.0,81.81818,81.81818,0.22492972,-0.08363618 +276.7100179195404,0.0,84.84849,84.84849,0.23430179,-0.08363618 +276.7200610637665,0.0,87.12121,87.12121,0.23430179,-0.033684865 +276.729572057724,0.0,87.12121,87.12121,0.24367386,-0.033684865 +276.7400689125061,0.0,96.21212,96.21212,0.24367386,-0.033684865 +276.7495880126953,0.0,101.51515,101.51515,0.25304592,-0.033684865 +276.76004910469055,0.0,106.06061,106.06061,0.262418,-0.0466352 +276.7700560092926,0.0,111.36363,111.36363,0.262418,-0.0466352 +276.77962493896484,0.0,111.36363,111.36363,0.262418,-0.0466352 +276.79006910324097,0.0,115.15152,115.15152,0.27179006,-0.0466352 +276.8000500202179,0.0,122.72727,122.72727,0.27179006,-0.0466352 +276.81006503105164,0.0,127.27273,127.27273,0.27179006,-0.0466352 +276.81968212127686,0.0,127.27273,127.27273,0.28116214,-0.020734508 +276.8300549983978,0.0,130.30302,130.30302,0.28116214,-0.020734508 +276.83969497680664,0.0,130.30302,130.30302,0.28116214,-0.020734508 +276.85006308555603,0.0,133.33334,133.33334,0.28116214,-0.020734508 +276.8600289821625,0.0,133.33334,133.33334,0.2905342,-0.020734508 +276.87004709243774,0.0,139.39394,139.39394,0.29990628,-0.020734508 +276.88004899024963,0.0,143.93939,143.93939,0.29990628,-0.020734508 +276.89005398750305,0.0,143.93939,143.93939,0.29990628,-0.020734508 +276.9000210762024,0.0,143.93939,143.93939,0.30927837,-0.020734508 +276.9094250202179,0.0,144.69696,144.69696,0.30927837,-0.020734508 +276.92003893852234,0.0,145.45454,145.45454,0.30927837,-0.020734508 +276.92961597442627,0.0,145.45454,145.45454,0.31865042,-0.020734508 +276.9400489330292,0.0,148.48486,148.48486,0.30927837,-0.020734508 +276.9500479698181,0.0,150.0,150.0,0.30927837,-0.020734508 +276.95939803123474,0.0,150.0,150.0,0.30927837,-0.033684865 +276.97005891799927,0.0,149.24243,149.24243,0.31865042,-0.033684865 +276.9800190925598,0.0,149.24243,149.24243,0.31865042,-0.033684865 +276.990061044693,0.0,148.48486,148.48486,0.31865042,-0.033684865 +276.9995000362396,0.0,148.48486,148.48486,0.31865042,-0.033684865 +277.0100510120392,0.0,150.0,150.0,0.30927837,-0.033684865 +277.01957297325134,0.0,150.0,150.0,0.31865042,-0.044785153 +277.03005599975586,0.0,150.0,150.0,0.31865042,-0.044785153 +277.0395939350128,0.0,150.0,150.0,0.31865042,-0.044785153 +277.0499589443207,0.0,146.9697,146.9697,0.31865042,-0.044785153 +277.0600039958954,0.0,146.21211,146.21211,0.31865042,-0.041085053 +277.0700500011444,0.0,143.18181,143.18181,0.31865042,-0.041085053 +277.0800590515137,0.0,138.63637,138.63637,0.30927837,-0.041085053 +277.0895690917969,0.0,138.63637,138.63637,0.30927837,-0.041085053 +277.10001707077026,0.0,135.60606,135.60606,0.29990628,-0.041085053 +277.1095380783081,0.0,131.81818,131.81818,0.29990628,-0.041085053 +277.119745016098,0.0,128.78787,128.78787,0.2905342,-0.0466352 +277.1300280094147,0.0,126.51515,126.51515,0.28116214,-0.0466352 +277.13954496383667,0.0,126.51515,126.51515,0.28116214,-0.0466352 +277.15003299713135,0.0,123.48485,123.48485,0.28116214,-0.0466352 +277.1600229740143,0.0,120.454544,120.454544,0.28116214,-0.03553491 +277.17004108428955,0.0,117.42424,117.42424,0.28116214,-0.03553491 +277.1796700954437,0.0,117.42424,117.42424,0.27179006,-0.03553491 +277.1900351047516,0.0,115.15152,115.15152,0.27179006,-0.03553491 +277.19948291778564,0.0,115.15152,115.15152,0.27179006,-0.03553491 +277.2100200653076,0.0,112.878784,112.878784,0.28116214,-0.03553491 +277.22001099586487,0.0,112.878784,112.878784,0.28116214,-0.042935103 +277.2299621105194,0.0,114.39394,114.39394,0.28116214,-0.042935103 +277.2400529384613,0.0,115.15152,115.15152,0.28116214,-0.042935103 +277.2500219345093,0.0,116.666664,116.666664,0.28116214,-0.042935103 +277.2600131034851,0.0,116.666664,116.666664,0.28116214,-0.039235007 +277.2697710990906,0.0,118.181816,118.181816,0.27179006,-0.039235007 +277.2794260978699,0.0,120.454544,120.454544,0.27179006,-0.039235007 +277.2894411087036,0.0,124.242424,124.242424,0.27179006,-0.039235007 +277.2999939918518,0.0,127.27273,127.27273,0.28116214,-0.039235007 +277.3100290298462,0.0,131.06061,131.06061,0.28116214,-0.03553491 +277.32003903388977,0.0,137.12122,137.12122,0.27179006,-0.03553491 +277.33000898361206,0.0,140.15152,140.15152,0.27179006,-0.03553491 +277.34003806114197,0.0,140.15152,140.15152,0.28116214,-0.03553491 +277.3500199317932,0.0,143.93939,143.93939,0.2905342,-0.03553491 +277.35984110832214,0.0,143.93939,143.93939,0.2905342,-0.044785153 +277.369411945343,0.0,152.27274,152.27274,0.2905342,-0.044785153 +277.37999391555786,0.0,156.06061,156.06061,0.2905342,-0.044785153 +277.390016078949,0.0,159.84848,159.84848,0.29990628,-0.044785153 +277.40001606941223,0.0,162.1212,162.1212,0.30927837,-0.044785153 +277.41002011299133,0.0,161.36363,161.36363,0.30927837,-0.024434604 +277.42000007629395,0.0,161.36363,161.36363,0.31865042,-0.024434604 +277.4295301437378,0.0,161.36363,161.36363,0.30927837,-0.024434604 +277.4400279521942,0.0,162.1212,162.1212,0.31865042,-0.024434604 +277.44939398765564,0.0,162.1212,162.1212,0.3280225,-0.024434604 +277.4596791267395,0.0,162.87878,162.87878,0.30927837,-0.08733628 +277.470006942749,0.0,162.87878,162.87878,0.30927837,-0.08733628 +277.48001503944397,0.0,161.36363,161.36363,0.30927837,-0.08733628 +277.4898920059204,0.0,161.36363,161.36363,0.30927837,-0.08733628 +277.5000240802765,0.0,159.09091,159.09091,0.31865042,-0.08733628 +277.51000213623047,0.0,156.06061,156.06061,0.30927837,-0.13173746 +277.5199511051178,0.0,156.06061,156.06061,0.30927837,-0.13173746 +277.5295660495758,0.0,153.0303,153.0303,0.30927837,-0.13173746 +277.54002714157104,0.0,150.75758,150.75758,0.30927837,-0.13173746 +277.54967308044434,0.0,148.48486,148.48486,0.31865042,-0.13173746 +277.5600109100342,0.0,146.9697,146.9697,0.30927837,-0.12248721 +277.5699989795685,0.0,140.90909,140.90909,0.30927837,-0.12248721 +277.5800139904022,0.0,140.90909,140.90909,0.30927837,-0.12248721 +277.5900020599365,0.0,136.36365,136.36365,0.30927837,-0.12248721 +277.59999108314514,0.0,127.27273,127.27273,0.29990628,-0.12248721 +277.60976696014404,0.0,127.27273,127.27273,0.29990628,-0.26679102 +277.61984395980835,0.0,120.454544,120.454544,0.2905342,-0.26679102 +277.6299879550934,0.0,112.12121,112.12121,0.27179006,-0.26679102 +277.6399779319763,0.0,112.12121,112.12121,0.262418,-0.26679102 +277.64999198913574,0.0,95.454544,95.454544,0.25304592,-0.26679102 +277.6600069999695,0.0,95.454544,95.454544,0.24367386,-0.26679102 +277.6699900627136,0.0,75.757576,75.757576,0.24367386,-0.26679102 +277.68001103401184,0.0,59.090908,59.090908,0.22492972,-0.26679102 +277.6899321079254,0.0,59.090908,59.090908,0.22492972,-0.26679102 +277.69986391067505,0.0,52.272724,52.272724,0.21555763,-0.26679102 +277.70999908447266,0.0,45.454548,45.454548,0.1968135,-0.26679102 +277.7194550037384,0.0,45.454548,45.454548,0.1968135,-0.28344148 +277.72990798950195,0.0,35.60606,35.60606,0.18744142,-0.28344148 +277.74002504348755,0.0,31.060606,31.060606,0.17806935,-0.28344148 +277.749804019928,0.0,25.757576,25.757576,0.16869728,-0.28344148 +277.7599980831146,0.0,21.212122,21.212122,0.15932521,-0.2723412 +277.770015001297,0.0,23.484848,23.484848,0.15932521,-0.2723412 +277.77998304367065,0.0,23.484848,23.484848,0.15932521,-0.2723412 +277.78977394104004,0.0,25.757576,25.757576,0.14995314,-0.2723412 +277.7999999523163,0.0,28.030302,28.030302,0.14995314,-0.2723412 +277.8099970817566,0.0,34.09091,34.09091,0.14058107,-0.2723412 +277.8194260597229,0.0,34.09091,34.09091,0.14058107,-0.2723412 +277.82955598831177,0.0,37.878788,37.878788,0.14058107,-0.2723412 +277.8400239944458,0.0,40.151516,40.151516,0.14058107,-0.2723412 +277.8500020503998,0.0,45.454548,45.454548,0.14058107,-0.2723412 +277.85998702049255,0.0,45.454548,45.454548,0.14058107,-0.3111922 +277.8699960708618,0.0,47.727272,47.727272,0.14058107,-0.3111922 +277.8797791004181,0.0,47.727272,47.727272,0.14995314,-0.3111922 +277.8900010585785,0.0,51.515152,51.515152,0.14995314,-0.3111922 +277.8999819755554,0.0,51.515152,51.515152,0.14995314,-0.3111922 +277.9094491004944,0.0,56.818184,56.818184,0.14995314,-0.3111922 +277.9195969104767,0.0,57.57576,57.57576,0.14058107,-0.27974138 +277.92998909950256,0.0,57.57576,57.57576,0.131209,-0.27974138 +277.93953800201416,0.0,57.57576,57.57576,0.131209,-0.27974138 +277.94999599456787,0.0,54.545456,54.545456,0.131209,-0.27974138 +277.95999002456665,0.0,49.242424,49.242424,0.12183693,-0.28899163 +277.96999406814575,0.0,46.969696,46.969696,0.10309278,-0.28899163 +277.979984998703,0.0,46.969696,46.969696,0.09372071,-0.28899163 +277.9899990558624,0.0,43.939392,43.939392,0.08434864,-0.28899163 +277.99954414367676,0.0,43.939392,43.939392,0.07497657,-0.28899163 +278.00960302352905,0.0,39.39394,39.39394,0.05623243,-0.28899163 +278.01940298080444,0.0,37.878788,37.878788,0.046860356,-0.28714156 +278.0299870967865,0.0,35.60606,35.60606,0.037488285,-0.28714156 +278.0399889945984,0.0,31.818182,31.818182,0.028116215,-0.28714156 +278.04998993873596,0.0,30.303032,30.303032,0.018744143,-0.28714156 +278.05993914604187,0.0,30.303032,30.303032,0.009372071,-0.29084167 +278.06998109817505,0.0,28.78788,28.78788,0.009372071,-0.29084167 +278.0800049304962,0.0,26.515152,26.515152,0.0,-0.29084167 +278.0896589756012,0.0,26.515152,26.515152,0.0,-0.29084167 +278.0997769832611,0.0,25.0,25.0,0.0,-0.29084167 +278.10997700691223,0.0,25.0,25.0,0.0,-0.29084167 +278.119980096817,0.0,24.242424,24.242424,0.0,-0.30934215 +278.1299719810486,0.0,24.242424,24.242424,0.0,-0.30934215 +278.1396849155426,0.0,24.242424,24.242424,0.0,-0.30934215 +278.1499650478363,0.0,24.242424,24.242424,0.0,-0.30934215 +278.159991979599,0.0,23.484848,23.484848,0.0,-0.40739474 +278.1695339679718,0.0,23.484848,23.484848,0.0,-0.40739474 +278.17980098724365,0.0,23.484848,23.484848,0.0,-0.40739474 +278.18993496894836,0.0,23.484848,23.484848,0.0,-0.40739474 +278.1999680995941,0.0,24.242424,24.242424,0.0,-0.40739474 +278.2099690437317,0.0,25.0,25.0,0.0,-0.40739474 +278.219927072525,0.0,25.0,25.0,0.0,-0.38519418 +278.2299680709839,0.0,25.757576,25.757576,0.0,-0.38519418 +278.2399809360504,0.0,26.515152,26.515152,0.0,-0.38519418 +278.24997901916504,0.0,26.515152,26.515152,0.0,-0.38519418 +278.2599129676819,0.0,26.515152,26.515152,0.0,-0.38519418 +278.26962995529175,0.0,25.757576,25.757576,0.0,-0.38519418 +278.27995109558105,0.0,25.757576,25.757576,0.0,-0.38519418 +278.2899560928345,0.0,25.0,25.0,0.0,-0.38519418 +278.29991006851196,0.0,25.0,25.0,0.0,-0.38519418 +278.3099410533905,0.0,25.0,25.0,0.0,-0.4184951 +278.31998109817505,0.0,25.0,25.0,0.0,-0.4184951 +278.3299810886383,0.0,25.0,25.0,0.0,-0.4184951 +278.3399419784546,0.0,25.0,25.0,0.0,-0.4184951 +278.349445104599,0.0,25.0,25.0,0.0,-0.4184951 +278.3598611354828,0.0,24.242424,24.242424,0.0,-0.41109487 +278.3699400424957,0.0,24.242424,24.242424,0.0,-0.41109487 +278.379919052124,0.0,24.242424,24.242424,0.0,-0.41109487 +278.3899700641632,0.0,22.727274,22.727274,0.0,-0.41109487 +278.39959597587585,0.0,22.727274,22.727274,0.0,-0.41109487 +278.40995693206787,0.0,21.969696,21.969696,0.0,-0.4184951 +278.4199221134186,0.0,21.969696,21.969696,0.0,-0.4184951 +278.42966413497925,0.0,21.969696,21.969696,0.0,-0.4184951 +278.43993306159973,0.0,21.969696,21.969696,0.0,-0.4184951 +278.4497940540314,0.0,21.969696,21.969696,0.0,-0.4184951 +278.45945405960083,0.0,21.969696,21.969696,0.0,-0.42959538 +278.46944403648376,0.0,21.212122,21.212122,0.0,-0.42959538 +278.4799349308014,0.0,20.454544,20.454544,0.0,-0.42959538 +278.4895100593567,0.0,20.454544,20.454544,0.0,-0.42959538 +278.49992203712463,0.0,19.69697,19.69697,0.0,-0.42959538 +278.5098581314087,0.0,18.939394,18.939394,0.0,-0.41479495 +278.51992106437683,0.0,18.939394,18.939394,0.0,-0.41479495 +278.5295329093933,0.0,18.939394,18.939394,0.0,-0.41479495 +278.5397219657898,0.0,18.939394,18.939394,0.0,-0.41479495 +278.5494930744171,0.0,18.939394,18.939394,0.0,-0.41479495 +278.5596179962158,0.0,18.939394,18.939394,0.0,-0.40554473 +278.56992411613464,0.0,18.939394,18.939394,0.0,-0.40554473 +278.5799081325531,0.0,18.939394,18.939394,0.0,-0.40554473 +278.5899419784546,0.0,18.181818,18.181818,0.0,-0.40554473 +278.59990906715393,0.0,18.181818,18.181818,0.0,-0.40554473 +278.60990691185,0.0,18.181818,18.181818,0.0,-0.4184951 +278.61990094184875,0.0,18.181818,18.181818,0.0,-0.4184951 +278.62964606285095,0.0,18.939394,18.939394,0.0,-0.4184951 +278.6395721435547,0.0,19.69697,19.69697,0.0,-0.4184951 +278.64978194236755,0.0,20.454544,20.454544,0.0,-0.4184951 +278.6594879627228,0.0,20.454544,20.454544,0.0,-0.49249703 +278.6699159145355,0.0,21.212122,21.212122,0.0,-0.49249703 +278.6799199581146,0.0,20.454544,20.454544,0.0,-0.49249703 +278.6899230480194,0.0,20.454544,20.454544,0.0,-0.49249703 +278.69989013671875,0.0,20.454544,20.454544,0.0,-0.49249703 +278.7099039554596,0.0,20.454544,20.454544,0.0,-0.49249703 +278.7195770740509,0.0,20.454544,20.454544,0.0,-0.4832468 +278.7294819355011,0.0,20.454544,20.454544,0.0,-0.4832468 +278.7399230003357,0.0,20.454544,20.454544,0.0,-0.4832468 +278.74990010261536,0.0,20.454544,20.454544,0.0,-0.4832468 +278.75990891456604,0.0,21.212122,21.212122,0.0,-0.4943471 +278.7699019908905,0.0,21.212122,21.212122,0.0,-0.4943471 +278.7798819541931,0.0,21.212122,21.212122,0.0,-0.4943471 +278.78942108154297,0.0,20.454544,20.454544,0.0,-0.4943471 +278.7999060153961,0.0,20.454544,20.454544,0.0,-0.4943471 +278.8095450401306,0.0,20.454544,20.454544,0.0,-0.4943471 +278.81958293914795,0.0,18.939394,18.939394,0.0,-0.49064696 +278.8298809528351,0.0,18.939394,18.939394,0.0,-0.49064696 +278.8395869731903,0.0,18.939394,18.939394,0.0,-0.49064696 +278.8499000072479,0.0,18.939394,18.939394,0.0,-0.49064696 +278.85989212989807,0.0,18.939394,18.939394,0.0,-0.48694688 +278.86988592147827,0.0,18.939394,18.939394,0.0,-0.48694688 +278.8798849582672,0.0,18.939394,18.939394,0.0,-0.48694688 +278.8899071216583,0.0,18.181818,18.181818,0.0,-0.48694688 +278.8995110988617,0.0,18.181818,18.181818,0.0,-0.48694688 +278.9096920490265,0.0,18.181818,18.181818,0.0,-0.48694688 +278.91957807540894,0.0,17.424242,17.424242,0.0,-0.48694688 +278.9299011230469,0.0,16.666668,16.666668,0.0,-0.48694688 +278.9395589828491,0.0,16.666668,16.666668,0.0,-0.48694688 +278.94988894462585,0.0,16.666668,16.666668,0.0,-0.48694688 +278.95988297462463,0.0,16.666668,16.666668,0.0,-0.48694688 +278.9698951244354,0.0,16.666668,16.666668,0.0,-0.48694688 +278.9798541069031,0.0,16.666668,16.666668,0.0,-0.48694688 +278.9894931316376,0.0,15.909091,15.909091,0.0,-0.48694688 +278.99978399276733,0.0,15.909091,15.909091,0.0,-0.48694688 +279.00989294052124,0.0,15.151516,15.151516,0.0,-0.48694688 +279.0194730758667,0.0,15.151516,15.151516,0.0,-0.50174725 +279.02969908714294,0.0,14.39394,14.39394,0.0,-0.50174725 +279.0399069786072,0.0,13.636364,13.636364,0.0,-0.50174725 +279.0496029853821,0.0,13.636364,13.636364,0.0,-0.50174725 +279.0598609447479,0.0,12.878788,12.878788,0.0,-0.4943471 +279.06987500190735,0.0,12.878788,12.878788,0.0,-0.4943471 +279.07945013046265,0.0,12.878788,12.878788,0.0,-0.4943471 +279.08986711502075,0.0,12.121212,12.121212,0.0,-0.4943471 +279.0998659133911,0.0,12.121212,12.121212,0.0,-0.4943471 +279.10954999923706,0.0,11.363637,11.363637,0.0,-0.4943471 +279.119882106781,0.0,10.606061,10.606061,0.0,-0.49989724 +279.12986397743225,0.0,9.090909,9.090909,0.0,-0.49989724 +279.139897108078,0.0,9.090909,9.090909,0.0,-0.49989724 +279.14986205101013,0.0,8.333334,8.333334,0.0,-0.49989724 +279.15987610816956,0.0,7.575758,7.575758,0.0,-0.49989724 +279.16958713531494,0.0,7.575758,7.575758,0.0,-0.49989724 +279.1798589229584,0.0,6.818182,6.818182,0.0,-0.49989724 +279.18987798690796,0.0,6.060606,6.060606,0.0,-0.49989724 +279.1995611190796,0.0,6.060606,6.060606,0.0,-0.49989724 +279.2098660469055,0.0,5.3030305,5.3030305,0.0,-0.49989724 +279.2198369503021,0.0,5.3030305,5.3030305,0.0,-0.5128476 +279.22986793518066,0.0,4.5454545,4.5454545,0.0,-0.5128476 +279.2398819923401,0.0,3.787879,3.787879,0.0,-0.5128476 +279.2496030330658,0.0,3.787879,3.787879,0.0,-0.5128476 +279.25983691215515,0.0,3.030303,3.030303,0.0,-0.529498 +279.2698550224304,0.0,3.030303,3.030303,0.0,-0.529498 +279.2798719406128,0.0,2.2727273,2.2727273,0.0,-0.529498 +279.28984093666077,0.0,2.2727273,2.2727273,0.0,-0.529498 +279.29982900619507,0.0,1.5151515,1.5151515,0.0,-0.529498 +279.30984711647034,0.0,1.5151515,1.5151515,0.0,-0.5054473 +279.3198709487915,0.0,1.5151515,1.5151515,0.0,-0.5054473 +279.3298010826111,0.0,1.5151515,1.5151515,0.0,-0.5054473 +279.33986806869507,0.0,0.75757575,0.75757575,0.0,-0.5054473 +279.3495559692383,0.0,0.75757575,0.75757575,0.0,-0.5054473 +279.35983991622925,0.0,0.75757575,0.75757575,0.0,-0.5220978 +279.3698539733887,0.0,0.0,0.0,0.0,-0.5220978 +279.37982296943665,0.0,0.0,0.0,0.0,-0.5220978 +279.38986110687256,0.0,0.0,0.0,0.0,-0.5220978 +279.39984607696533,0.0,0.0,0.0,0.0,-0.5220978 +279.4095311164856,0.0,0.0,0.0,0.0,-0.54244834 +279.4198260307312,0.0,0.0,0.0,0.0,-0.54244834 +279.42984104156494,0.0,0.0,0.0,0.0,-0.54244834 +279.4393939971924,0.0,0.0,0.0,0.0,-0.54244834 +279.44984197616577,0.0,0.0,0.0,0.0,-0.54244834 +279.45982909202576,0.0,0.0,0.0,0.0,-0.5257979 +279.46983194351196,0.0,0.0,0.0,0.0,-0.5257979 +279.47985792160034,0.0,0.0,0.0,0.0,-0.5257979 +279.4898419380188,0.0,0.0,0.0,0.0,-0.5257979 +279.49981594085693,0.0,0.0,0.0,0.0,-0.5257979 +279.50985193252563,0.0,0.0,0.0,0.0,-0.5590988 +279.5198540687561,0.0,0.0,0.0,0.0,-0.5590988 +279.52983498573303,0.0,0.0,0.0,0.0,-0.5590988 +279.5398690700531,0.0,0.0,0.0,0.0,-0.5590988 +279.5498380661011,0.0,0.0,0.0,0.0,-0.5590988 +279.55984592437744,0.0,0.0,0.0,0.0,-0.5775993 +279.5698449611664,0.01,0.0,0.0,0.0,-0.5775993 +279.5798280239105,0.01,0.0,0.0,0.0,-0.5775993 +279.58979392051697,0.01,0.0,0.0,0.0,-0.5775993 +279.59984493255615,0.01,0.0,0.0,0.0,-0.5775993 +279.60984206199646,0.02,0.0,0.0,0.0,-0.58129936 +279.6194009780884,0.02,0.0,0.0,0.0,-0.58129936 +279.62982201576233,0.03,0.0,0.0,0.0,-0.58129936 +279.6394131183624,0.03,0.0,0.0,0.0,-0.58129936 +279.6495039463043,0.04,0.0,0.0,0.0,-0.58129936 +279.6595709323883,0.049999997,0.0,0.0,0.0,-0.57944936 +279.66982102394104,0.06,0.0,0.0,0.0,-0.57944936 +279.67984199523926,0.07,0.0,0.0,0.0,-0.57944936 +279.68983006477356,0.08,0.0,0.0,0.0,-0.57944936 +279.6998109817505,0.08,0.0,0.0,0.0,-0.57944936 +279.70981907844543,0.08,0.0,0.0,0.0,-0.57944936 +279.71982407569885,0.089999996,0.0,0.0,0.0,-0.59609973 +279.7295010089874,0.089999996,0.0,0.0,0.0,-0.59609973 +279.7397711277008,0.099999994,0.0,0.0,0.0,-0.59609973 +279.74973702430725,0.099999994,0.0,0.0,0.0,-0.59609973 +279.7598240375519,0.11,0.0,0.0,0.0,-0.6201504 +279.7698209285736,0.12,0.0,0.0,0.0,-0.6201504 +279.7798080444336,0.12,0.0,0.0,0.0,-0.6201504 +279.7898111343384,0.12,0.0,0.0,0.0,-0.6201504 +279.79981994628906,0.13,0.0,0.0,0.0,-0.6201504 +279.8098020553589,0.13,0.0,0.0,0.0,-0.6201504 +279.81961011886597,0.13,0.0,0.0,0.0,-0.6146003 +279.8298170566559,0.13,0.0,0.0,0.0,-0.6146003 +279.8398311138153,0.14,0.0,0.0,0.0,-0.6146003 +279.84982109069824,0.14,0.0,0.0,0.0,-0.6146003 +279.85978507995605,0.14,0.0,0.0,0.0,-0.59794986 +279.86982011795044,0.14999999,0.0,0.0,0.0,-0.59794986 +279.87980914115906,0.16,0.0,0.0,0.0,-0.59794986 +279.88981008529663,0.17,0.0,0.0,0.0,-0.59794986 +279.8997781276703,0.17,0.0,0.0,0.0,-0.59794986 +279.9097170829773,0.17,0.0,0.0,0.0,-0.59794986 +279.91983008384705,0.17,0.0,0.0,0.0,-0.58129936 +279.9298219680786,0.17999999,0.0,0.0,0.0,-0.58129936 +279.93980598449707,0.17999999,0.0,0.0,0.0,-0.58129936 +279.9498209953308,0.17999999,0.0,0.0,0.0,-0.58129936 +279.9597899913788,0.17999999,0.0,0.0,0.0,-0.57944936 +279.9698169231415,0.17999999,0.0,0.0,0.0,-0.57944936 +279.9797830581665,0.17999999,0.0,0.0,0.0,-0.57944936 +279.9898009300232,0.17999999,0.0,0.0,0.0,-0.57944936 +279.99978613853455,0.17999999,0.0,0.0,0.0,-0.57944936 +280.0097990036011,0.17999999,0.0,0.0,0.0,-0.57944936 +280.01978611946106,0.17999999,0.0,0.0,0.0,-0.57944936 +280.02963399887085,0.17999999,0.0,0.0,0.0,-0.57944936 +280.039803981781,0.17999999,0.0,0.0,0.0,-0.57944936 +280.0497930049896,0.17999999,0.0,0.0,0.0,-0.57944936 +280.0596420764923,0.17999999,0.0,0.0,0.0,-0.57204914 +280.0695140361786,0.17999999,0.0,0.0,0.0,-0.57204914 +280.0797960758209,0.17999999,0.0,0.0,0.0,-0.57204914 +280.08977913856506,0.17999999,0.0,0.0,0.0,-0.57204914 +280.09976506233215,0.17999999,0.0,0.0,0.0,-0.57204914 +280.1097819805145,0.19,0.0,0.0,0.0,-0.57204914 +280.1194269657135,0.19,0.0,0.0,0.0,-0.5646489 +280.12979793548584,0.19,0.0,0.0,0.0,-0.5646489 +280.1397919654846,0.19,0.0,0.0,0.0,-0.5646489 +280.1497161388397,0.19,0.0,0.0,0.0,-0.5646489 +280.15978813171387,0.17999999,0.0,0.0,0.0,-0.53874826 +280.1697750091553,0.17999999,0.0,0.0,0.0,-0.53874826 +280.1796770095825,0.17999999,0.0,0.0,0.0,-0.53874826 +280.18977093696594,0.17999999,0.0,0.0,0.0,-0.53874826 +280.1997809410095,0.17999999,0.0,0.0,0.0,-0.53874826 +280.20964908599854,0.17999999,0.0,0.0,0.0,-0.53874826 +280.21976613998413,0.17999999,0.0,0.0,0.0,-0.53874826 +280.22978806495667,0.17999999,0.0,0.0,0.0,-0.53874826 +280.2397770881653,0.17999999,0.0,0.0,0.0,-0.53874826 +280.2497730255127,0.17,0.0,0.0,0.0,-0.53874826 +280.25975012779236,0.17,0.0,0.0,0.0,-0.5054473 +280.2697870731354,0.17,0.0,0.0,0.0,-0.5054473 +280.2797689437866,0.17,0.0,0.0,0.0,-0.5054473 +280.28981709480286,0.17,0.0,0.0,0.0,-0.5054473 +280.299751996994,0.17,0.0,0.0,0.0,-0.5054473 +280.3097770214081,0.17,0.0,0.0,0.0,-0.48509687 +280.31951093673706,0.17,0.0,0.0,0.0,-0.48509687 +280.3297390937805,0.17,0.0,0.0,0.0,-0.48509687 +280.3397800922394,0.17,0.0,0.0,0.0,-0.48509687 +280.3497610092163,0.17,0.0,0.0,0.0,-0.48509687 +280.35977697372437,0.16,0.0,0.0,0.0,-0.44624582 +280.3697609901428,0.16,0.0,0.0,0.0,-0.44624582 +280.37974405288696,0.16,0.0,0.0,0.0,-0.44624582 +280.3897681236267,0.16,0.0,0.0,0.0,-0.44624582 +280.39978098869324,0.16,0.0,0.0,0.0,-0.44624582 +280.40977001190186,0.16,0.0,0.0,0.0,-0.46104622 +280.41970014572144,0.14999999,0.0,0.0,0.0,-0.46104622 +280.4297649860382,0.14999999,0.0,0.0,0.0,-0.46104622 +280.4398019313812,0.14999999,0.0,0.0,0.0,-0.46104622 +280.4496200084686,0.14999999,0.0,0.0,0.0,-0.46104622 +280.4597511291504,0.14999999,0.0,0.0,0.0,-0.47399658 +280.46975898742676,0.14999999,0.0,0.0,0.0,-0.47399658 +280.47946095466614,0.14999999,0.0,0.0,0.0,-0.47399658 +280.48974609375,0.14,0.0,0.0,0.0,-0.47399658 +280.49973011016846,0.14,0.0,0.0,0.0,-0.47399658 +280.5096490383148,0.14,0.0,0.0,0.0,-0.47954667 +280.5197730064392,0.14,0.0,0.0,0.0,-0.47954667 +280.52940607070923,0.14,0.0,0.0,0.0,-0.47954667 +280.5396800041199,0.13,0.0,0.0,0.0,-0.47954667 +280.5494239330292,0.13,0.0,0.0,0.0,-0.47954667 +280.5596890449524,0.13,0.0,0.0,0.0,-0.4721465 +280.56974506378174,0.13,0.0,0.0,0.0,-0.4721465 +280.5794699192047,0.13,0.0,0.0,0.0,-0.4721465 +280.5897569656372,0.12,0.0,0.0,0.0,-0.4721465 +280.5995900630951,0.12,0.0,0.0,0.0,-0.4721465 +280.6097569465637,0.12,0.0,0.0,0.0,-0.47954667 +280.6196050643921,0.12,0.0,0.0,0.0,-0.47954667 +280.62974309921265,0.12,0.0,0.0,0.0,-0.47954667 +280.6395299434662,0.12,0.0,0.0,0.0,-0.47954667 +280.6497600078583,0.11,0.0,0.0,0.0,-0.47954667 +280.6597180366516,0.11,0.0,0.0,0.0,-0.5239479 +280.66960191726685,0.11,0.0,0.0,0.0,-0.5239479 +280.6797389984131,0.11,0.0,0.0,0.0,-0.5239479 +280.6895351409912,0.11,0.0,0.0,0.0,-0.5239479 +280.6997230052948,0.099999994,0.0,0.0,0.0,-0.5239479 +280.7097511291504,0.099999994,0.0,0.0,0.0,-0.5239479 +280.71975111961365,0.099999994,0.0,0.0,0.0,-0.53874826 +280.7296350002289,0.099999994,0.0,0.0,0.0,-0.53874826 +280.73975801467896,0.089999996,0.0,0.0,0.0,-0.53874826 +280.7497510910034,0.089999996,0.0,0.0,0.0,-0.53874826 +280.75973296165466,0.08,0.0,0.0,0.0,-0.5461484 +280.76974296569824,0.08,0.0,0.0,0.0,-0.5461484 +280.7794940471649,0.08,0.0,0.0,0.0,-0.5461484 +280.7897279262543,0.08,0.0,0.0,0.0,-0.5461484 +280.7995331287384,0.08,0.0,0.0,0.0,-0.5461484 +280.8097550868988,0.08,0.0,0.0,0.0,-0.5461484 +280.81972193717957,0.08,0.0,0.0,0.0,-0.5442984 +280.829745054245,0.07,0.0,0.0,0.0,-0.5442984 +280.83977699279785,0.07,0.0,0.0,0.0,-0.5442984 +280.8497290611267,0.07,0.0,0.0,0.0,-0.5442984 +280.8597149848938,0.07,0.0,0.0,0.0,-0.6146003 +280.86945104599,0.07,0.0,0.0,0.0,-0.6146003 +280.8797359466553,0.06,0.0,0.0,0.0,-0.6146003 +280.8894190788269,0.06,0.0,0.0,0.0,-0.6146003 +280.89971899986267,0.06,0.0,0.0,0.0,-0.6146003 +280.90972113609314,0.06,0.0,0.0,0.0,-0.6146003 +280.9197359085083,0.049999997,0.0,0.0,0.0,-0.61275023 +280.9294090270996,0.049999997,0.0,0.0,0.0,-0.61275023 +280.93972396850586,0.049999997,0.0,0.0,0.0,-0.61275023 +280.9493989944458,0.049999997,0.0,0.0,0.0,-0.61275023 +280.95973205566406,0.049999997,0.0,0.0,0.0,-0.6627016 +280.9696090221405,0.049999997,0.0,0.0,0.0,-0.6627016 +280.9797189235687,0.049999997,0.0,0.0,0.0,-0.6627016 +280.9897229671478,0.049999997,0.0,0.0,0.0,-0.6627016 +280.99971294403076,0.049999997,0.0,0.0,0.0,-0.6627016 +281.00970911979675,0.04,0.0,0.0,0.0,-0.6627016 +281.0196850299835,0.04,0.0,0.0,0.0,-0.66825175 +281.0297169685364,0.04,0.0,0.0,0.0,-0.66825175 +281.03974294662476,0.04,0.0,0.0,0.0,-0.66825175 +281.0497190952301,0.04,0.0,0.0,0.0,-0.66825175 +281.05943393707275,0.04,0.0,0.0,0.0,-0.5868495 +281.0697331428528,0.04,0.0,0.0,0.0,-0.5868495 +281.07971596717834,0.04,0.0,0.0,0.0,-0.5868495 +281.08970403671265,0.04,0.0,0.0,0.0,-0.5868495 +281.0996971130371,0.04,0.0,0.0,0.0,-0.5868495 +281.1097090244293,0.04,0.0,0.0,0.0,-0.5868495 +281.1197099685669,0.04,0.0,0.0,0.0,-0.4943471 +281.1295530796051,0.04,0.0,0.0,0.0,-0.4943471 +281.13973093032837,0.04,0.0,0.0,0.0,-0.4943471 +281.1497211456299,0.04,0.0,0.0,0.0,-0.4943471 +281.15972208976746,0.04,0.0,0.0,0.0,-0.5257979 +281.16972398757935,0.04,0.0,0.0,0.0,-0.5257979 +281.17968797683716,0.04,0.0,0.0,0.0,-0.5257979 +281.1893889904022,0.04,0.0,0.0,0.0,-0.5257979 +281.1997001171112,0.04,0.0,0.0,0.0,-0.5257979 +281.20971298217773,0.03,0.0,0.0,0.0,-0.5257979 +281.2196991443634,0.03,0.0,0.0,0.0,-0.64235103 +281.22939109802246,0.03,0.0,0.0,0.0,-0.64235103 +281.23973512649536,0.03,0.0,0.0,0.0,-0.64235103 +281.24969506263733,0.03,0.0,0.0,0.0,-0.64235103 +281.2596869468689,0.03,0.0,0.0,0.0,-0.63125074 +281.26971411705017,0.03,0.0,0.0,0.0,-0.63125074 +281.27969002723694,0.04,0.0,0.0,0.0,-0.63125074 +281.2897119522095,0.049999997,0.0,0.0,0.0,-0.63125074 +281.2995569705963,0.049999997,0.0,0.0,0.0,-0.63125074 +281.3096880912781,0.049999997,0.0,0.0,0.0,-0.6460511 +281.31939601898193,0.049999997,0.0,0.0,0.0,-0.6460511 +281.32969999313354,0.06,0.0,0.0,0.0,-0.6460511 +281.3397150039673,0.06,0.0,0.0,0.0,-0.6460511 +281.34971714019775,0.07,0.0,0.0,0.0,-0.6460511 +281.35970997810364,0.07,0.0,0.0,0.0,-0.6294007 +281.3696870803833,0.08,0.0,0.0,0.0,-0.6294007 +281.37950110435486,0.08,0.0,0.0,0.0,-0.6294007 +281.38958191871643,0.08,0.0,0.0,0.0,-0.6294007 +281.3996880054474,0.08,0.0,0.0,0.0,-0.6294007 +281.4094181060791,0.08,0.0,0.0,0.0,-0.6460511 +281.4196181297302,0.08,0.0,0.0,0.0,-0.6460511 +281.42941904067993,0.08,0.0,0.0,0.0,-0.6460511 +281.4397361278534,0.08,0.0,0.0,0.0,-0.6460511 +281.449697971344,0.08,0.0,0.0,0.0,-0.6460511 +281.4593949317932,0.08,0.0,0.0,0.0,-0.6201504 +281.46967005729675,0.08,0.0,0.0,0.0,-0.6201504 +281.4796841144562,0.08,0.0,0.0,0.0,-0.6201504 +281.48968505859375,0.08,0.0,0.0,0.0,-0.6201504 +281.49966311454773,0.08,0.0,0.0,0.0,-0.6201504 +281.5096809864044,0.08,0.0,0.0,0.0,-0.44069567 +281.51967310905457,0.08,0.0,0.0,0.0,-0.44069567 +281.5296890735626,0.089999996,0.0,0.0,0.0,-0.44069567 +281.53968501091003,0.089999996,0.0,0.0,0.0,-0.44069567 +281.5494611263275,0.099999994,0.0,0.0,0.0,-0.44069567 +281.5596799850464,0.099999994,0.0,0.0,0.0,-0.4573461 +281.5696759223938,0.12,0.0,0.0,0.0,-0.4573461 +281.5796711444855,0.12,0.0,0.0,0.0,-0.4573461 +281.58955097198486,0.12,0.0,0.0,0.0,-0.4573461 +281.5996630191803,0.12,0.0,0.0,0.0,-0.4573461 +281.60966992378235,0.13,0.0,0.0,0.0,-0.6960024 +281.6194541454315,0.13,0.0,0.0,0.0,-0.6960024 +281.6296601295471,0.13,0.0,0.0,0.0,-0.6960024 +281.6395809650421,0.13,0.0,0.0,0.0,-0.6960024 +281.64967608451843,0.12,0.0,0.0,0.0,-0.6960024 +281.65964794158936,0.12,0.0,0.0,0.0,-0.7108028 +281.66965508461,0.11,0.0,0.0,0.0,-0.7108028 +281.67967200279236,0.11,0.0,0.0,0.0,-0.7108028 +281.689661026001,0.11,0.0,0.0,0.0,-0.7108028 +281.69963002204895,0.11,0.0,0.0,0.0,-0.7108028 +281.7095489501953,0.11,0.0,0.0,0.0,-0.7108028 +281.7196669578552,0.12,0.0,0.0,0.0,-0.7052527 +281.729651927948,0.13,0.0,0.0,0.0,-0.7052527 +281.7396650314331,0.13,0.0,0.0,0.0,-0.7052527 +281.7496690750122,0.14,0.0,0.0,0.0,-0.7052527 +281.75965309143066,0.14999999,0.0,0.0,0.0,-0.7052527 +281.76964712142944,0.16,0.0,0.0,0.0,-0.7052527 +281.7796320915222,0.16,0.0,0.0,0.0,-0.7052527 +281.7895131111145,0.16,0.0,0.0,0.0,-0.7052527 +281.7995660305023,0.17,0.0,0.0,0.0,-0.7052527 +281.80964398384094,0.17,0.0,0.0,0.0,-0.7052527 +281.8193929195404,0.17,0.0,0.0,0.0,-0.7071027 +281.8296449184418,0.17,0.0,0.0,0.0,-0.7071027 +281.8396761417389,0.17,0.0,0.0,0.0,-0.7071027 +281.84964203834534,0.17,0.0,0.0,0.0,-0.7071027 +281.85963201522827,0.17,0.0,0.0,0.0,-0.6257006 +281.8696401119232,0.17,0.0,0.0,0.0,-0.6257006 +281.87964606285095,0.17,0.0,0.0,0.0,-0.6257006 +281.88964796066284,0.17999999,0.0,0.0,0.0,-0.6257006 +281.8996329307556,0.17999999,0.0,0.0,0.0,-0.6257006 +281.9096450805664,0.19,0.0,0.0,0.0,-0.6257006 +281.91964292526245,0.19999999,0.0,0.0,0.0,-0.47029644 +281.92965507507324,0.19999999,0.0,0.0,0.0,-0.47029644 +281.9396641254425,0.19999999,0.0,0.0,0.0,-0.47029644 +281.9496569633484,0.21,0.0,0.0,0.0,-0.47029644 +281.9596481323242,0.22,0.0,0.0,0.0,-0.47954667 +281.9696350097656,0.22,0.0,0.0,0.0,-0.47954667 +281.97962498664856,0.22,0.0,0.0,0.0,-0.47954667 +281.98964500427246,0.22999999,0.0,0.0,0.0,-0.47954667 +281.9996340274811,0.22999999,0.0,0.0,0.0,-0.47954667 +282.0096471309662,0.22999999,0.0,0.0,0.0,-0.47954667 +282.0196261405945,0.22999999,0.0,0.0,0.0,-0.453646 +282.0296370983124,0.22999999,0.0,0.0,0.0,-0.453646 +282.03966307640076,0.24,0.0,0.0,0.0,-0.453646 +282.0494771003723,0.24,0.0,0.0,0.0,-0.453646 +282.05961894989014,0.24,0.0,0.0,0.0,-0.4203451 +282.06963205337524,0.24,0.0,0.0,0.0,-0.4203451 +282.07964396476746,0.25,0.0,0.0,0.0,-0.4203451 +282.0896210670471,0.26,0.0,0.0,0.0,-0.4203451 +282.0996210575104,0.26,0.0,0.0,0.0,-0.4203451 +282.10963892936707,0.26999998,0.0,0.0,0.0,-0.4203451 +282.11944007873535,0.26999998,0.0,0.0,0.0,-0.40369472 +282.12968397140503,0.29,0.0,0.0,0.0,-0.40369472 +282.13964891433716,0.29,0.0,0.0,0.0,-0.40369472 +282.14963006973267,0.29999998,0.0,0.0,0.0,-0.40369472 +282.15961599349976,0.29999998,0.0,0.0,0.0,-0.44809586 +282.1696400642395,0.29999998,0.0,0.0,0.0,-0.44809586 +282.17960596084595,0.29999998,0.0,0.0,0.0,-0.44809586 +282.1896231174469,0.29999998,0.0,0.0,0.0,-0.44809586 +282.1994400024414,0.29999998,0.0,0.0,0.0,-0.44809586 +282.2096221446991,0.29999998,0.0,0.0,0.0,-0.44809586 +282.2194640636444,0.29999998,0.0,0.0,0.0,-0.43144545 +282.2296359539032,0.31,0.0,0.0,0.0,-0.43144545 +282.2396409511566,0.32,0.0,0.0,0.0,-0.43144545 +282.24963903427124,0.32,0.0,0.0,0.0,-0.43144545 +282.2595920562744,0.32,0.0,0.0,0.0,-0.4277453 +282.26961302757263,0.32999998,0.0,0.0,0.0,-0.4277453 +282.2796559333801,0.34,0.0,0.0,0.0,-0.4277453 +282.28961300849915,0.34,0.0,0.0,0.0,-0.4277453 +282.2996051311493,0.34,0.0,0.0,0.0,-0.4277453 +282.3096001148224,0.35,0.0,0.0,0.0,-0.4184951 +282.31938910484314,0.35,0.0,0.0,0.0,-0.4184951 +282.3293950557709,0.35,0.0,0.0,0.0,-0.4184951 +282.3396100997925,0.35,0.0,0.0,0.0,-0.4184951 +282.34960293769836,0.35999998,0.0,0.0,0.0,-0.4184951 +282.3596119880676,0.35999998,0.0,0.0,0.0,-0.39259437 +282.36943006515503,0.35999998,0.0,0.0,0.0,-0.39259437 +282.3795840740204,0.35999998,0.0,0.0,0.0,-0.39259437 +282.3896200656891,0.37,0.0,0.0,0.0,-0.39259437 +282.39962005615234,0.37,0.0,0.0,0.0,-0.39259437 +282.4095981121063,0.37,0.0,0.0,0.0,-0.4388456 +282.4195899963379,0.37,0.0,0.0,0.0,-0.4388456 +282.4296021461487,0.38,0.0,0.0,0.0,-0.4388456 +282.43961095809937,0.38,0.0,0.0,0.0,-0.4388456 +282.44959712028503,0.38,0.0,0.0,0.0,-0.4388456 +282.45951199531555,0.38,0.0,0.0,0.0,-0.32969272 +282.469605922699,0.38,0.0,0.0,0.0,-0.32969272 +282.4795820713043,0.38,0.0,0.0,0.0,-0.32969272 +282.48960399627686,0.38,0.0,0.0,0.0,-0.32969272 +282.4995701313019,0.38,0.0,0.0,0.0,-0.32969272 +282.5094599723816,0.38,0.0,0.0,0.0,-0.22608997 +282.5195951461792,0.38,0.0,0.0,0.0,-0.22608997 +282.52961111068726,0.38,0.0,0.0,0.0,-0.22608997 +282.5396111011505,0.38,0.0,0.0,0.0,-0.22608997 +282.5495970249176,0.39,0.0,0.0,0.0,-0.22608997 +282.5595951080322,0.39,0.0,0.0,0.0,-0.17428859 +282.56960892677307,0.39,0.0,0.0,0.0,-0.17428859 +282.57957196235657,0.39,0.0,0.0,0.0,-0.17428859 +282.5896019935608,0.39,0.0,0.0,0.0,-0.17428859 +282.59944200515747,0.39,0.0,0.0,0.0,-0.17428859 +282.60938906669617,0.39,0.0,0.0,0.0,-0.085486226 +282.61952805519104,0.38,0.0,0.0,0.0,-0.085486226 +282.6295909881592,0.38,0.0,0.0,0.0,-0.085486226 +282.63960313796997,0.38,0.0,0.0,0.0,-0.085486226 +282.6495819091797,0.38,0.0,0.0,0.0,-0.085486226 +282.6594319343567,0.38,0.0,0.0,0.0,0.010716328 +282.6695740222931,0.37,0.0,0.0,0.0,0.010716328 +282.67958903312683,0.37,0.0,0.0,0.0,0.010716328 +282.68957901000977,0.37,0.0,0.0,0.0,0.010716328 +282.6995499134064,0.37,0.0,0.0,0.0,0.010716328 +282.70956897735596,0.37,0.0,0.0,0.0,0.010716328 +282.7194769382477,0.37,0.0,0.0,0.0,0.021816617 +282.7295880317688,0.35999998,0.0,0.0,0.0,0.021816617 +282.7395861148834,0.35999998,0.0,0.0,0.0,0.021816617 +282.74951696395874,0.35999998,0.0,0.0,0.0,0.021816617 +282.75957703590393,0.35,0.0,0.0,0.0,0.032916907 +282.7695870399475,0.34,0.0,0.0,0.0,0.032916907 +282.7795560359955,0.34,0.0,0.0,0.0,0.032916907 +282.7895679473877,0.34,0.0,0.0,0.0,0.032916907 +282.799574136734,0.32999998,0.0,0.0,0.0,0.032916907 +282.8095920085907,0.32,0.0,0.0,0.0,0.032916907 +282.81955313682556,0.32,0.0,0.0,0.0,0.02921681 +282.82958793640137,0.32,0.0,0.0,0.0,0.02921681 +282.8394820690155,0.32,0.0,0.0,0.0,0.02921681 +282.8495659828186,0.29999998,0.0,0.0,0.0,0.02921681 +282.8594250679016,0.29999998,0.0,0.0,0.0,0.051417407 +282.869558095932,0.29,0.0,0.0,0.0,0.051417407 +282.8794860839844,0.29,0.0,0.0,0.0,0.051417407 +282.88957595825195,0.26999998,0.0,0.0,0.0,0.051417407 +282.89955401420593,0.26999998,0.0,0.0,0.0,0.051417407 +282.90958309173584,0.26,0.0,0.0,0.0,0.051417407 +282.91941714286804,0.26,0.0,0.0,0.0,0.116169125 +282.9294390678406,0.22999999,2.2727273,2.2727273,0.0,0.116169125 +282.93958806991577,0.22,7.575758,7.575758,0.0,0.116169125 +282.9495589733124,0.19999999,12.878788,12.878788,0.0,0.116169125 +282.9595730304718,0.17,24.242424,24.242424,0.0,0.09766865 +282.96955609321594,0.16,31.060606,31.060606,0.0,0.09766865 +282.9795300960541,0.16,31.060606,31.060606,0.0,0.09766865 +282.98957204818726,0.14999999,38.636364,38.636364,0.0,0.09766865 +282.99955201148987,0.12,55.30303,55.30303,0.0,0.09766865 +283.00960206985474,0.11,62.878788,62.878788,0.009372071,0.09766865 +283.0193901062012,0.11,62.878788,62.878788,0.028116215,0.15872025 +283.0295650959015,0.099999994,66.66667,66.66667,0.046860356,0.15872025 +283.039587020874,0.08,43.939392,43.939392,0.0656045,0.15872025 +283.04956698417664,0.07,35.60606,35.60606,0.08434864,0.15872025 +283.0595841407776,0.07,35.60606,35.60606,0.09372071,0.16427042 +283.069561958313,0.07,28.030302,28.030302,0.11246486,0.16427042 +283.0795509815216,0.049999997,25.0,25.0,0.12183693,0.16427042 +283.08956003189087,0.04,34.09091,34.09091,0.131209,0.16427042 +283.0995509624481,0.04,34.09091,34.09091,0.14058107,0.16427042 +283.10955691337585,0.04,43.939392,43.939392,0.14995314,0.16427042 +283.11954498291016,0.02,59.848484,59.848484,0.15932521,0.16797051 +283.1295630931854,0.02,67.42425,67.42425,0.16869728,0.16797051 +283.1395990848541,0.02,67.42425,67.42425,0.17806935,0.16797051 +283.14952301979065,0.01,66.66667,66.66667,0.18744142,0.16797051 +283.1595079898834,0.01,61.363636,61.363636,0.1968135,0.16982053 +283.16955494880676,0.0,56.818184,56.818184,0.20618556,0.16982053 +283.1795139312744,0.0,56.818184,56.818184,0.1968135,0.16982053 +283.1895570755005,0.0,51.515152,51.515152,0.20618556,0.16982053 +283.19956398010254,0.0,50.0,50.0,0.20618556,0.16982053 +283.20954608917236,0.0,50.0,50.0,0.21555763,0.16982053 +283.2195110321045,0.0,50.0,50.0,0.22492972,0.22532202 +283.2295410633087,0.0,50.0,50.0,0.22492972,0.22532202 +283.2395770549774,0.0,49.242424,49.242424,0.22492972,0.22532202 +283.24943113327026,0.0,49.242424,49.242424,0.22492972,0.22532202 +283.25951409339905,0.0,49.242424,49.242424,0.23430179,0.22347198 +283.2695710659027,0.0,50.757576,50.757576,0.24367386,0.22347198 +283.2796149253845,0.0,56.060604,56.060604,0.262418,0.22347198 +283.2895429134369,0.0,59.090908,59.090908,0.27179006,0.22347198 +283.2995059490204,0.0,59.090908,59.090908,0.27179006,0.22347198 +283.3095109462738,0.0,62.121212,62.121212,0.28116214,0.24937265 +283.31955003738403,0.0,64.393936,64.393936,0.2905342,0.24937265 +283.32955598831177,0.0,65.90909,65.90909,0.2905342,0.24937265 +283.33954405784607,0.0,65.90909,65.90909,0.2905342,0.24937265 +283.34953594207764,0.0,64.393936,64.393936,0.29990628,0.24937265 +283.3595321178436,0.0,62.878788,62.878788,0.29990628,0.2438225 +283.3694920539856,0.0,62.878788,62.878788,0.29990628,0.2438225 +283.3795199394226,0.0,61.363636,61.363636,0.29990628,0.2438225 +283.38952803611755,0.0,58.333332,58.333332,0.2905342,0.2438225 +283.3995170593262,0.0,58.333332,58.333332,0.2905342,0.2438225 +283.40952610969543,0.0,54.545456,54.545456,0.2905342,0.25307277 +283.4194989204407,0.0,54.545456,54.545456,0.2905342,0.25307277 +283.4294729232788,0.0,50.757576,50.757576,0.28116214,0.25307277 +283.4395520687103,0.0,48.484848,48.484848,0.28116214,0.25307277 +283.4495279788971,0.0,42.424244,42.424244,0.28116214,0.25307277 +283.45951104164124,0.0,42.424244,42.424244,0.27179006,0.23457228 +283.4695360660553,0.0,40.151516,40.151516,0.28116214,0.23457228 +283.47952699661255,0.0,33.333336,33.333336,0.27179006,0.23457228 +283.48950600624084,0.0,29.545454,29.545454,0.27179006,0.23457228 +283.49950194358826,0.0,29.545454,29.545454,0.27179006,0.23457228 +283.5094349384308,0.0,24.242424,24.242424,0.262418,0.22532202 +283.51951909065247,0.0,21.969696,21.969696,0.25304592,0.22532202 +283.529629945755,0.0,25.0,25.0,0.25304592,0.22532202 +283.53953313827515,0.0,25.0,25.0,0.25304592,0.22532202 +283.54952597618103,0.0,26.515152,26.515152,0.24367386,0.22532202 +283.5595660209656,0.0,28.78788,28.78788,0.25304592,0.27527332 +283.56951904296875,0.0,31.060606,31.060606,0.24367386,0.27527332 +283.57947993278503,0.0,31.060606,31.060606,0.24367386,0.27527332 +283.58954191207886,0.0,34.09091,34.09091,0.23430179,0.27527332 +283.599534034729,0.0,40.151516,40.151516,0.23430179,0.27527332 +283.60942912101746,0.0,40.151516,40.151516,0.23430179,0.31782445 +283.61948895454407,0.0,43.181816,43.181816,0.23430179,0.31782445 +283.62952399253845,0.0,45.454548,45.454548,0.23430179,0.31782445 +283.639564037323,0.0,49.242424,49.242424,0.23430179,0.31782445 +283.6495020389557,0.0,50.0,50.0,0.23430179,0.31782445 +283.6594491004944,0.0,50.0,50.0,0.22492972,0.3418751 +283.669517993927,0.0,50.0,50.0,0.23430179,0.3418751 +283.6795210838318,0.0,51.515152,51.515152,0.23430179,0.3418751 +283.68949699401855,0.0,52.272724,52.272724,0.23430179,0.3418751 +283.6994800567627,0.0,52.272724,52.272724,0.22492972,0.3418751 +283.70951199531555,0.0,53.030304,53.030304,0.22492972,0.3418751 +283.71950602531433,0.0,52.272724,52.272724,0.21555763,0.3714759 +283.72953510284424,0.0,50.757576,50.757576,0.20618556,0.3714759 +283.7395119667053,0.0,50.757576,50.757576,0.1968135,0.3714759 +283.74957609176636,0.0,49.242424,49.242424,0.1968135,0.3714759 +283.7595360279083,0.0,44.696968,44.696968,0.18744142,0.4288274 +283.76949095726013,0.0,42.424244,42.424244,0.17806935,0.4288274 +283.77961707115173,0.0,42.424244,42.424244,0.16869728,0.4288274 +283.78949999809265,0.0,40.151516,40.151516,0.15932521,0.4288274 +283.7994849681854,0.0,35.60606,35.60606,0.14995314,0.4288274 +283.8094229698181,0.0,35.60606,35.60606,0.14058107,0.4288274 +283.81946206092834,0.0,33.333336,33.333336,0.12183693,0.43622762 +283.8296129703522,0.0,31.060606,31.060606,0.10309278,0.43622762 +283.8395149707794,0.0,27.272728,27.272728,0.09372071,0.43622762 +283.8495020866394,0.0,25.757576,25.757576,0.07497657,0.43622762 +283.85948300361633,0.0,25.757576,25.757576,0.0656045,0.49542922 +283.8694911003113,0.0,23.484848,23.484848,0.05623243,0.49542922 +283.8794960975647,0.0,20.454544,20.454544,0.046860356,0.49542922 +283.88949704170227,0.0,19.69697,19.69697,0.028116215,0.49542922 +283.8995261192322,0.0,19.69697,19.69697,0.028116215,0.49542922 +283.90950298309326,0.0,18.181818,18.181818,0.009372071,0.49542922 +283.9195830821991,0.0,15.909091,15.909091,0.0,0.48062876 +283.9295001029968,0.0,15.909091,15.909091,0.0,0.48062876 +283.93948197364807,0.0,14.39394,14.39394,0.0,0.48062876 +283.94949102401733,0.0,13.636364,13.636364,0.0,0.48062876 +283.9594900608063,0.01,11.363637,11.363637,0.0,0.54353046 +283.96949791908264,0.01,10.606061,10.606061,0.0,0.54353046 +283.9794590473175,0.01,10.606061,10.606061,0.0,0.54353046 +283.98947501182556,0.0,9.848485,9.848485,0.0,0.54353046 +283.9994909763336,0.0,8.333334,8.333334,0.0,0.54353046 +284.00948214530945,0.0,7.575758,7.575758,0.0,0.54353046 +284.01946806907654,0.0,7.575758,7.575758,0.0,0.6119823 +284.02951407432556,0.0,6.818182,6.818182,0.0,0.6119823 +284.03948998451233,0.0,6.060606,6.060606,0.0,0.6119823 +284.0494840145111,0.0,5.3030305,5.3030305,0.0,0.6119823 +284.05944895744324,0.0,5.3030305,5.3030305,0.0,0.62123257 +284.0694799423218,0.0,5.3030305,5.3030305,0.0,0.62123257 +284.0794839859009,0.01,4.5454545,4.5454545,0.0,0.62123257 +284.08947801589966,0.01,3.787879,3.787879,0.0,0.62123257 +284.09952092170715,0.01,3.787879,3.787879,0.0,0.62123257 +284.10948491096497,0.01,3.787879,3.787879,0.0,0.62123257 +284.1194660663605,0.02,3.030303,3.030303,0.0,0.62493265 +284.129478931427,0.02,2.2727273,2.2727273,0.0,0.62493265 +284.13947892189026,0.02,2.2727273,2.2727273,0.0,0.62493265 +284.14947605133057,0.02,2.2727273,2.2727273,0.0,0.62493265 +284.15942907333374,0.02,2.2727273,2.2727273,0.0,0.64528316 +284.1694600582123,0.02,1.5151515,1.5151515,0.0,0.64528316 +284.179456949234,0.02,1.5151515,1.5151515,0.0,0.64528316 +284.18960213661194,0.03,0.75757575,0.75757575,0.0,0.64528316 +284.19945096969604,0.03,0.75757575,0.75757575,0.0,0.64528316 +284.2094769477844,0.03,0.75757575,0.75757575,0.0,0.64528316 +284.2194321155548,0.03,0.75757575,0.75757575,0.0,0.6323328 +284.22946095466614,0.03,0.0,0.0,0.0,0.6323328 +284.2394700050354,0.03,0.0,0.0,0.0,0.6323328 +284.2494819164276,0.03,0.0,0.0,0.0,0.6323328 +284.259446144104,0.03,0.0,0.0,0.0,0.62493265 +284.269464969635,0.03,0.0,0.0,0.0,0.62493265 +284.27942991256714,0.03,0.0,0.0,0.0,0.62493265 +284.28946709632874,0.03,0.0,0.0,0.0,0.62493265 +284.29944014549255,0.03,0.0,0.0,0.0,0.62493265 +284.3094880580902,0.03,0.0,0.0,0.0,0.7673864 +284.3194489479065,0.03,0.0,0.0,0.0,0.7673864 +284.3294589519501,0.03,0.0,0.0,0.0,0.7673864 +284.33945298194885,0.03,0.0,0.0,0.0,0.7673864 +284.3494601249695,0.03,0.0,0.0,0.0,0.7673864 +284.3594470024109,0.03,0.0,0.0,0.0,0.8210379 +284.36944913864136,0.04,0.0,0.0,0.0,0.8210379 +284.3794391155243,0.04,0.0,0.0,0.0,0.8210379 +284.3894600868225,0.04,0.0,0.0,0.0,0.8210379 +284.3994560241699,0.049999997,0.0,0.0,0.0,0.8210379 +284.4094400405884,0.049999997,0.0,0.0,0.0,0.8561887 +284.419429063797,0.049999997,0.0,0.0,0.0,0.8561887 +284.42947006225586,0.049999997,0.0,0.0,0.0,0.8561887 +284.43946504592896,0.06,0.0,0.0,0.0,0.8561887 +284.44943594932556,0.06,0.0,0.0,0.0,0.8561887 +284.45943808555603,0.06,0.0,0.0,0.0,0.8099375 +284.4694399833679,0.07,0.0,0.0,0.0,0.8099375 +284.4794490337372,0.07,0.0,0.0,0.0,0.8099375 +284.4894471168518,0.08,0.0,0.0,0.0,0.8099375 +284.4994330406189,0.08,0.0,0.0,0.0,0.8099375 +284.5094311237335,0.08,0.0,0.0,0.0,0.82843804 +284.51945304870605,0.089999996,0.0,0.0,0.0,0.82843804 +284.5295920372009,0.089999996,0.0,0.0,0.0,0.82843804 +284.5394389629364,0.089999996,0.0,0.0,0.0,0.82843804 +284.54948902130127,0.099999994,0.0,0.0,0.0,0.82843804 +284.5594370365143,0.099999994,0.0,0.0,0.0,0.81733775 +284.56942796707153,0.11,0.0,0.0,0.0,0.81733775 +284.57940793037415,0.11,0.0,0.0,0.0,0.81733775 +284.58944296836853,0.11,0.0,0.0,0.0,0.81733775 +284.59943199157715,0.12,0.0,0.0,0.0,0.81733775 +284.6093919277191,0.12,0.0,0.0,0.0,0.82288784 +284.6195559501648,0.12,0.0,0.0,0.0,0.82288784 +284.62943410873413,0.13,0.0,0.0,0.0,0.82288784 +284.6394340991974,0.14,0.0,0.0,0.0,0.82288784 +284.6494300365448,0.14,0.0,0.0,0.0,0.82288784 +284.65946197509766,0.14,0.0,0.0,0.0,0.81178766 +284.66941714286804,0.14999999,0.0,0.0,0.0,0.81178766 +284.6794340610504,0.14999999,0.0,0.0,0.0,0.81178766 +284.6894221305847,0.16,0.0,0.0,0.0,0.81178766 +284.69940400123596,0.16,0.0,0.0,0.0,0.81178766 +284.70941710472107,0.16,0.0,0.0,0.0,0.81178766 +284.71942710876465,0.17,0.0,0.0,0.0,0.82288784 +284.72946095466614,0.17,0.0,0.0,0.0,0.82288784 +284.73960304260254,0.17,0.0,0.0,0.0,0.82288784 +284.74946093559265,0.17999999,0.0,0.0,0.0,0.82288784 +284.7594270706177,0.19,0.0,0.0,0.0,0.81733775 +284.7694239616394,0.19,0.0,0.0,0.0,0.81733775 +284.7801821231842,0.19999999,0.0,0.0,0.0,0.81733775 +284.7894039154053,0.19999999,0.0,0.0,0.0,0.81733775 +284.7994019985199,0.21,0.0,0.0,0.0,0.81733775 +284.8094160556793,0.21,0.0,0.0,0.0,0.81733775 +284.8194019794464,0.21,0.0,0.0,0.0,0.84323835 +284.82946610450745,0.22,0.0,0.0,0.0,0.84323835 +284.83942699432373,0.22,0.0,0.0,0.0,0.84323835 +284.8493981361389,0.22,0.0,0.0,0.0,0.84323835 +284.86017894744873,0.22999999,0.0,0.0,0.0,0.8561887 +284.86943912506104,0.22999999,0.0,0.0,0.0,0.8561887 +284.8794140815735,0.22999999,0.0,0.0,0.0,0.8561887 +284.88940691947937,0.22999999,0.0,0.0,0.0,0.8561887 +284.8996341228485,0.22999999,0.0,0.0,0.0,0.8561887 +284.9094169139862,0.24,0.0,0.0,0.0,0.8561887 +284.91941809654236,0.24,0.0,0.0,0.0,0.8691391 +284.9294481277466,0.24,0.0,0.0,0.0,0.8691391 +284.9394130706787,0.24,0.0,0.0,0.0,0.8691391 +284.94939398765564,0.25,0.0,0.0,0.0,0.8691391 +284.9593999385834,0.25,0.0,0.0,0.0,0.82288784 +284.96940994262695,0.25,0.0,0.0,0.0,0.82288784 +284.979975938797,0.25,0.0,0.0,0.0,0.82288784 +284.9895739555359,0.25,0.0,0.0,0.0,0.82288784 +284.99941301345825,0.26,0.0,0.0,0.0,0.82288784 +285.009437084198,0.26,0.0,0.0,0.0,0.82288784 +285.01954102516174,0.26,0.0,0.0,0.0,0.83768827 +285.02946496009827,0.26,0.0,0.0,0.0,0.83768827 +285.0394251346588,0.26,0.0,0.0,0.0,0.83768827 +285.04939794540405,0.26999998,0.0,0.0,0.0,0.83768827 +285.0601749420166,0.26999998,0.0,0.0,0.0,0.8580388 +285.0694251060486,0.26999998,0.0,0.0,0.0,0.8580388 +285.0793890953064,0.26999998,0.0,0.0,0.0,0.8580388 +285.0893940925598,0.26999998,0.0,0.0,0.0,0.8580388 +285.09945797920227,0.26999998,0.0,0.0,0.0,0.8580388 +285.10938906669617,0.26999998,0.0,0.0,0.0,0.8580388 +285.1193959712982,0.28,0.0,0.0,0.0,0.8561887 +285.12941098213196,0.28,0.0,0.0,0.0,0.8561887 +285.13939905166626,0.28,0.0,0.0,0.0,0.8561887 +285.14953207969666,0.28,0.0,0.0,0.0,0.8561887 +285.1593990325928,0.29,0.0,0.0,0.0,0.82843804 +285.1695399284363,0.29,0.0,0.0,0.0,0.82843804 +285.1801829338074,0.29,0.0,0.0,0.0,0.82843804 +285.1895661354065,0.29,0.0,0.0,0.0,0.82843804 +285.20017194747925,0.29999998,0.0,0.0,0.0,0.82843804 +285.20938992500305,0.29999998,0.0,0.0,0.0,0.82843804 +285.2195780277252,0.29999998,0.0,0.0,0.0,0.8524887 +285.229434967041,0.29999998,0.0,0.0,0.0,0.8524887 +285.23940205574036,0.29999998,0.0,0.0,0.0,0.8524887 +285.25021505355835,0.29999998,0.0,0.0,0.0,0.8524887 +285.2594850063324,0.29999998,0.0,0.0,0.0,0.8450884 +285.27019691467285,0.29999998,0.0,0.0,0.0,0.8450884 +285.27959299087524,0.31,0.0,0.0,0.0,0.8450884 +285.2901909351349,0.31,0.0,0.0,0.0,0.8450884 +285.300173997879,0.32,0.0,0.0,0.0,0.8450884 +285.30971813201904,0.32,0.0,0.0,0.0,0.78033674 +285.3201539516449,0.32,0.0,0.0,0.0,0.78033674 +285.3301830291748,0.32999998,0.0,0.0,0.0,0.78033674 +285.3394601345062,0.32999998,0.0,0.0,0.0,0.78033674 +285.3494460582733,0.32999998,0.0,0.0,0.0,0.78033674 +285.3601830005646,0.32999998,0.0,0.0,0.0,0.78033674 +285.3693881034851,0.34,0.0,0.0,0.0,0.78033674 +285.3795850276947,0.34,0.0,0.0,0.0,0.78033674 +285.3899290561676,0.34,0.0,0.0,0.0,0.78033674 +285.4001770019531,0.34,0.0,0.0,0.0,0.78033674 +285.41016912460327,0.34,0.0,0.0,0.0,0.7729366 +285.4201729297638,0.35,0.0,0.0,0.0,0.7729366 +285.42947793006897,0.35,0.0,0.0,0.0,0.7729366 +285.4394540786743,0.35,0.0,0.0,0.0,0.7729366 +285.4501950740814,0.35,0.0,0.0,0.0,0.7729366 +285.45969891548157,0.35,0.0,0.0,0.0,0.75813615 +285.4701659679413,0.35999998,0.0,0.0,0.0,0.75813615 +285.479532957077,0.37,0.0,0.0,0.0,0.75813615 +285.4895100593567,0.37,0.0,0.0,0.0,0.75813615 +285.5002110004425,0.37,0.0,0.0,0.0,0.75813615 +285.5101959705353,0.37,0.0,0.0,0.0,0.752586 +285.52018094062805,0.38,0.0,0.0,0.0,0.752586 +285.5295970439911,0.38,0.0,0.0,0.0,0.752586 +285.53939604759216,0.38,0.0,0.0,0.0,0.752586 +285.5498390197754,0.38,0.0,0.0,0.0,0.752586 +285.55949997901917,0.39,0.0,0.0,0.0,0.7451858 +285.5701949596405,0.39,0.0,0.0,0.0,0.7451858 +285.5793979167938,0.39,0.0,0.0,0.0,0.7451858 +285.5902020931244,0.39,0.0,0.0,0.0,0.7451858 +285.6001579761505,0.39999998,0.0,0.0,0.0,0.7451858 +285.60946893692017,0.39999998,0.0,0.0,0.0,0.7710865 +285.619588136673,0.39999998,0.0,0.0,0.0,0.7710865 +285.6294369697571,0.39999998,0.0,0.0,0.0,0.7710865 +285.6393971443176,0.39999998,0.0,0.0,0.0,0.7710865 +285.6502170562744,0.39999998,0.0,0.0,0.0,0.7710865 +285.6601870059967,0.41,0.0,0.0,0.0,0.73963565 +285.67019391059875,0.41,0.0,0.0,0.0,0.73963565 +285.68017411231995,0.41,0.0,0.0,0.0,0.73963565 +285.69022703170776,0.41,0.0,0.0,0.0,0.73963565 +285.7001130580902,0.41,0.0,0.0,0.0,0.73963565 +285.7102220058441,0.41,0.0,0.0,0.0,0.73963565 +285.7195670604706,0.42,0.0,0.0,0.0,0.72668535 +285.72943806648254,0.42,0.0,0.0,0.0,0.72668535 +285.7395920753479,0.42,0.0,0.0,0.0,0.72668535 +285.7502450942993,0.42,0.0,0.0,0.0,0.72668535 +285.7595019340515,0.42999998,0.0,0.0,0.0,0.70633477 +285.7698619365692,0.42999998,0.0,0.0,0.0,0.70633477 +285.7802240848541,0.42999998,0.0,0.0,0.0,0.70633477 +285.7900929450989,0.42999998,0.0,0.0,0.0,0.70633477 +285.79986000061035,0.42999998,0.0,0.0,0.0,0.70633477 +285.80957794189453,0.44,0.0,0.0,0.0,0.70633477 +285.8201849460602,0.44,0.0,0.0,0.0,0.6952345 +285.8294699192047,0.44,0.0,0.0,0.0,0.6952345 +285.84018993377686,0.44,0.0,0.0,0.0,0.6952345 +285.84955501556396,0.44,0.0,0.0,0.0,0.6952345 +285.8602149486542,0.44,0.0,0.0,0.0,0.70263463 +285.870090007782,0.44,0.0,0.0,0.0,0.70263463 +285.8800609111786,0.45,0.0,0.0,0.0,0.70263463 +285.8894510269165,0.45,0.0,0.0,0.0,0.70263463 +285.89976596832275,0.45,0.0,0.0,0.0,0.70263463 +285.91020798683167,0.45,0.0,0.0,0.0,0.70263463 +285.9195489883423,0.45,0.0,0.0,0.0,0.6915344 +285.9294590950012,0.45,0.0,0.0,0.0,0.6915344 +285.9402210712433,0.45,0.0,0.0,0.0,0.6915344 +285.9502069950104,0.45,0.0,0.0,0.0,0.6915344 +285.96019291877747,0.45,0.0,0.0,0.0,0.69338447 +285.9694640636444,0.45,0.0,0.0,0.0,0.69338447 +285.9801859855652,0.45999998,0.0,0.0,0.0,0.69338447 +285.9899580478668,0.45999998,0.0,0.0,0.0,0.69338447 +285.99943804740906,0.45999998,0.0,0.0,0.0,0.69338447 +286.0095679759979,0.45999998,0.0,0.0,0.0,0.69338447 +286.0202040672302,0.45999998,0.0,0.0,0.0,0.676734 +286.0294909477234,0.45999998,0.0,0.0,0.0,0.676734 +286.04017210006714,0.45999998,0.0,0.0,0.0,0.676734 +286.04954409599304,0.45999998,0.0,0.0,0.0,0.676734 +286.0598449707031,0.45999998,0.0,0.0,0.0,0.59533185 +286.0702040195465,0.45999998,0.0,0.0,0.0,0.59533185 +286.08014392852783,0.45999998,0.0,0.0,0.0,0.59533185 +286.08940505981445,0.45999998,0.0,0.0,0.0,0.59533185 +286.09972190856934,0.45999998,0.0,0.0,0.0,0.59533185 +286.1102271080017,0.45999998,0.0,0.0,0.0,0.59533185 +286.11990308761597,0.45999998,0.0,0.0,0.0,0.52317995 +286.1296260356903,0.45999998,0.0,0.0,0.0,0.52317995 +286.14019799232483,0.45999998,0.0,0.0,0.0,0.52317995 +286.14993691444397,0.45999998,0.0,0.0,0.0,0.52317995 +286.1601650714874,0.45999998,0.0,0.0,0.0,0.5416804 +286.1701920032501,0.45999998,0.0,0.0,0.0,0.5416804 +286.1794819831848,0.45999998,0.0,0.0,0.0,0.5416804 +286.1898910999298,0.45999998,0.0,0.0,0.0,0.5416804 +286.20019793510437,0.45999998,0.0,0.0,0.0,0.5416804 +286.2098231315613,0.45999998,0.0,0.0,0.0,0.5416804 +286.22022795677185,0.47,0.0,0.0,0.0,0.5009793 +286.2295000553131,0.47,0.0,0.0,0.0,0.5009793 +286.23988008499146,0.47,0.0,0.0,0.0,0.5009793 +286.2502369880676,0.47,0.0,0.0,0.0,0.5009793 +286.25992012023926,0.47,0.0,0.0,0.0,0.52317995 +286.2695219516754,0.47,0.0,0.0,0.0,0.52317995 +286.2801089286804,0.47,0.0,0.0,0.0,0.52317995 +286.28958797454834,0.47,0.0,0.0,0.0,0.52317995 +286.3001940250397,0.47,0.0,0.0,0.0,0.52317995 +286.3102400302887,0.48,0.0,0.0,0.0,0.52317995 +286.32017993927,0.48,0.0,0.0,0.0,0.52317995 +286.32947993278503,0.48,0.0,0.0,0.0,0.52317995 +286.3402199745178,0.48,0.0,0.0,0.0,0.52317995 +286.3502321243286,0.48,0.0,0.0,0.0,0.52317995 +286.3597180843353,0.48,0.0,0.0,0.0,0.55278075 +286.3702161312103,0.48999998,0.0,0.0,0.0,0.55278075 +286.3795909881592,0.48999998,0.0,0.0,0.0,0.55278075 +286.38984513282776,0.48999998,0.0,0.0,0.0,0.55278075 +286.4002010822296,0.48999998,0.0,0.0,0.0,0.55278075 +286.4102280139923,0.48999998,0.0,0.0,0.0,0.50467944 +286.41982197761536,0.48999998,0.0,0.0,0.0,0.50467944 +286.42946791648865,0.48999998,0.0,0.0,0.0,0.50467944 +286.4402070045471,0.5,0.0,0.0,0.0,0.50467944 +286.449903011322,0.5,0.0,0.0,0.0,0.50467944 +286.4595899581909,0.5,0.0,0.0,0.0,0.46397835 +286.46950793266296,0.5,0.0,0.0,0.0,0.46397835 +286.48020911216736,0.5,0.0,0.0,0.0,0.46397835 +286.49022698402405,0.51,0.0,0.0,0.0,0.46397835 +286.49950098991394,0.51,0.0,0.0,0.0,0.46397835 +286.5097601413727,0.51,0.0,0.0,0.0,0.4621283 +286.5197629928589,0.51,0.0,0.0,0.0,0.4621283 +286.529461145401,0.51,0.0,0.0,0.0,0.4621283 +286.53955006599426,0.51,0.0,0.0,0.0,0.4621283 +286.5502300262451,0.51,0.0,0.0,0.0,0.4621283 +286.55959701538086,0.52,0.0,0.0,0.0,0.42512733 +286.57021594047546,0.52,0.0,0.0,0.0,0.42512733 +286.5795819759369,0.52,0.0,0.0,0.0,0.42512733 +286.5893919467926,0.52,0.0,0.0,0.0,0.42512733 +286.59970903396606,0.52,0.0,0.0,0.0,0.42512733 +286.6102271080017,0.52,0.0,0.0,0.0,0.4454778 +286.61975502967834,0.52,0.0,0.0,0.0,0.4454778 +286.62946009635925,0.53,0.0,0.0,0.0,0.4454778 +286.6395080089569,0.53,0.0,0.0,0.0,0.4454778 +286.6496729850769,0.53999996,0.0,0.0,0.0,0.4454778 +286.6602020263672,0.53999996,0.0,0.0,0.0,0.39182645 +286.6702320575714,0.55,0.0,0.0,0.0,0.39182645 +286.679790019989,0.55,0.0,0.0,0.0,0.39182645 +286.689670085907,0.56,0.0,0.0,0.0,0.39182645 +286.69996905326843,0.56,0.0,0.0,0.0,0.39182645 +286.7102360725403,0.56,0.0,0.0,0.0,0.39182645 +286.7202310562134,0.57,0.0,0.0,0.0,0.3862763 +286.72946190834045,0.57,0.0,0.0,0.0,0.3862763 +286.73992705345154,0.57,0.0,0.0,0.0,0.3862763 +286.75023007392883,0.57,0.0,0.0,0.0,0.3862763 +286.76021695137024,0.58,0.0,0.0,0.0,0.38257617 +286.77023005485535,0.58,0.0,0.0,0.0,0.38257617 +286.7796130180359,0.58,0.0,0.0,0.0,0.38257617 +286.79023814201355,0.58,0.0,0.0,0.0,0.38257617 +286.80020809173584,0.58,0.0,0.0,0.0,0.38257617 +286.81023693084717,0.59,0.0,0.0,0.0,0.38257617 +286.819678068161,0.59,0.0,0.0,0.0,0.2845236 +286.82945013046265,0.59,0.0,0.0,0.0,0.2845236 +286.84025406837463,0.59999996,0.0,0.0,0.0,0.2845236 +286.85024213790894,0.59999996,0.0,0.0,0.0,0.2845236 +286.86024713516235,0.61,0.0,0.0,0.0,0.24567257 +286.86947202682495,0.61,0.0,0.0,0.0,0.24567257 +286.88019704818726,0.61,0.0,0.0,0.0,0.24567257 +286.889888048172,0.61,0.0,0.0,0.0,0.24567257 +286.9002249240875,0.61,0.0,0.0,0.0,0.24567257 +286.9095470905304,0.61,0.0,0.0,0.0,0.24567257 +286.9202129840851,0.61,0.0,0.0,0.0,0.2586229 +286.9294400215149,0.62,0.0,0.0,0.0,0.2586229 +286.9402389526367,0.62,0.0,0.0,0.0,0.2586229 +286.9495179653168,0.62,0.0,0.0,0.0,0.2586229 +286.9595539569855,0.62,0.0,0.0,0.0,0.22717209 +286.97024512290955,0.62,0.0,0.0,0.0,0.22717209 +286.9802191257477,0.62,0.0,0.0,0.0,0.22717209 +286.9902250766754,0.62,0.0,0.0,0.0,0.22717209 +287.0000059604645,0.62,0.0,0.0,0.0,0.22717209 +287.0102379322052,0.62,0.0,0.0,0.0,0.22717209 +287.019464969635,0.62,0.0,0.0,0.0,0.18832105 +287.02974104881287,0.62,0.0,0.0,0.0,0.18832105 +287.0394620895386,0.63,0.0,0.0,0.0,0.18832105 +287.049546957016,0.63,0.0,0.0,0.0,0.18832105 +287.0597620010376,0.63,0.0,0.0,0.0,0.1457699 +287.0702259540558,0.63,0.0,0.0,0.0,0.1457699 +287.08021903038025,0.63,0.0,0.0,0.0,0.1457699 +287.0902011394501,0.63,0.0,0.0,0.0,0.1457699 +287.0994191169739,0.63,0.0,0.0,0.0,0.1457699 +287.1095161437988,0.63,0.0,0.0,0.0,0.1457699 +287.12024307250977,0.63,0.0,0.0,0.0,0.077318095 +287.1294391155243,0.63,0.0,0.0,0.0,0.077318095 +287.1395161151886,0.63,0.0,0.0,0.0,0.077318095 +287.1502420902252,0.63,0.0,0.0,0.0,0.077318095 +287.1601960659027,0.63,0.0,0.0,0.0,0.0551175 +287.1695740222931,0.63,0.0,0.0,0.0,0.0551175 +287.18024802207947,0.63,0.0,0.0,0.0,0.0551175 +287.18946599960327,0.63,0.0,0.0,0.0,0.0551175 +287.1996500492096,0.63,0.0,0.0,0.0,0.0551175 +287.2102379798889,0.63,0.0,0.0,0.0,0.0551175 +287.22026109695435,0.63,0.0,0.0,0.0,0.038467064 +287.2294399738312,0.63,0.0,0.0,0.0,0.038467064 +287.23978996276855,0.63,0.0,0.0,0.0,0.038467064 +287.2502410411835,0.63,0.0,0.0,0.0,0.038467064 +287.2602541446686,0.63,0.0,0.0,0.0,0.008866279 +287.27022790908813,0.63,0.0,0.0,0.0,0.008866279 +287.27945709228516,0.63,0.0,0.0,0.0,0.008866279 +287.2897970676422,0.63,0.0,0.0,0.0,0.008866279 +287.2994339466095,0.63,0.0,0.0,0.0,0.008866279 +287.3102390766144,0.63,0.0,0.0,0.0,-0.013334316 +287.319461107254,0.64,0.0,0.0,0.0,-0.013334316 +287.32944202423096,0.64,0.0,0.0,0.0,-0.013334316 +287.34024596214294,0.64,0.0,0.0,0.0,-0.013334316 +287.35024094581604,0.64,0.0,0.0,0.0,-0.013334316 +287.3595290184021,0.64,0.0,0.0,0.0,-0.0040840744 +287.36960792541504,0.64,0.0,0.0,0.0,-0.0040840744 +287.3798921108246,0.64,0.0,0.0,0.0,-0.0040840744 +287.39008712768555,0.65,0.0,0.0,0.0,-0.0040840744 +287.40023612976074,0.65,0.0,0.0,0.0,-0.0040840744 +287.40948009490967,0.65,0.0,0.0,0.0,-0.002234026 +287.42023491859436,0.65,0.0,0.0,0.0,-0.002234026 +287.42945098876953,0.65,0.0,0.0,0.0,-0.002234026 +287.4397130012512,0.65,0.0,0.0,0.0,-0.002234026 +287.44962096214294,0.65,0.0,0.0,0.0,-0.002234026 +287.45977210998535,0.65,0.0,0.0,0.0,-0.03183481 +287.4700131416321,0.65,0.0,0.0,0.0,-0.03183481 +287.4802179336548,0.65999997,0.0,0.0,0.0,-0.03183481 +287.4902219772339,0.65999997,0.0,0.0,0.0,-0.03183481 +287.49944710731506,0.65999997,0.0,0.0,0.0,-0.03183481 +287.5102369785309,0.65999997,0.0,0.0,0.0,-0.00038397792 +287.5199120044708,0.65999997,0.0,0.0,0.0,-0.00038397792 +287.52942991256714,0.66999996,0.0,0.0,0.0,-0.00038397792 +287.540246963501,0.66999996,0.0,0.0,0.0,-0.00038397792 +287.5499269962311,0.66999996,0.0,0.0,0.0,-0.00038397792 +287.559396982193,0.66999996,0.0,0.0,0.0,-0.002234026 +287.57023000717163,0.66999996,0.0,0.0,0.0,-0.002234026 +287.58025312423706,0.66999996,0.0,0.0,0.0,-0.002234026 +287.5894420146942,0.68,0.0,0.0,0.0,-0.002234026 +287.6000909805298,0.68,0.0,0.0,0.0,-0.002234026 +287.6094319820404,0.68,0.0,0.0,0.0,-0.00038397792 +287.61940908432007,0.69,0.0,0.0,0.0,-0.00038397792 +287.62939500808716,0.69,0.0,0.0,0.0,-0.00038397792 +287.6401081085205,0.7,0.0,0.0,0.0,-0.00038397792 +287.6502330303192,0.7,0.0,0.0,0.0,-0.00038397792 +287.65951800346375,0.7,0.0,0.0,0.0,0.032916907 +287.6702289581299,0.71,0.0,0.0,0.0,0.032916907 +287.67945098876953,0.71,0.0,0.0,0.0,0.032916907 +287.6895821094513,0.71,0.0,0.0,0.0,0.032916907 +287.69939613342285,0.71,0.0,0.0,0.0,0.032916907 +287.70952796936035,0.71,0.0,0.0,0.0,0.032916907 +287.7202570438385,0.71,0.0,0.0,0.0,0.031066857 +287.72952103614807,0.71,0.0,0.0,0.0,0.031066857 +287.73943400382996,0.71,0.0,0.0,0.0,0.031066857 +287.74945092201233,0.71,0.0,0.0,0.0,0.031066857 +287.7595419883728,0.71999997,0.0,0.0,0.0,0.04031712 +287.76942801475525,0.71999997,0.0,0.0,0.0,0.04031712 +287.7793891429901,0.71999997,0.0,0.0,0.0,0.04031712 +287.78941011428833,0.72999996,0.0,0.0,0.0,0.04031712 +287.80023097991943,0.72999996,0.0,0.0,0.0,0.04031712 +287.80942702293396,0.72999996,0.0,0.0,0.0,0.04031712 +287.81952810287476,0.72999996,0.0,0.0,0.0,0.027366763 +287.82946014404297,0.74,0.0,0.0,0.0,0.027366763 +287.83944296836853,0.74,0.0,0.0,0.0,0.027366763 +287.84943103790283,0.74,0.0,0.0,0.0,0.027366763 +287.85949897766113,0.75,0.0,0.0,0.0,0.032916907 +287.86941409111023,0.75,0.0,0.0,0.0,0.032916907 +287.8794150352478,0.76,0.0,0.0,0.0,0.032916907 +287.89022994041443,0.76,0.0,0.0,0.0,0.032916907 +287.8993880748749,0.77,0.0,0.0,0.0,0.032916907 +287.90942311286926,0.77,0.0,0.0,0.0,0.032916907 +287.91940999031067,0.78,0.0,0.0,0.0,0.032916907 +287.9293990135193,0.78,0.0,0.0,0.0,0.032916907 +287.9394180774689,0.78999996,0.0,0.0,0.0,0.032916907 +287.9494869709015,0.78999996,0.0,0.0,0.0,0.032916907 +287.96024799346924,0.79999995,0.0,0.0,0.0,0.008866279 +287.9702670574188,0.79999995,0.0,0.0,0.0,0.008866279 +287.9800319671631,0.81,0.0,0.0,0.0,0.008866279 +287.98939514160156,0.81,0.0,0.0,0.0,0.008866279 +287.9994270801544,0.82,0.0,0.0,0.0,0.008866279 +288.00941610336304,0.82,0.0,0.0,0.0,0.008866279 +288.0194709300995,0.83,0.0,0.0,0.0,0.031066857 +288.02942395210266,0.83,0.0,0.0,0.0,0.031066857 +288.03957891464233,0.84,0.0,0.0,0.0,0.031066857 +288.0494120121002,0.84999996,0.0,0.0,0.0,0.031066857 +288.0595259666443,0.84999996,0.0,0.0,0.0,0.027366763 +288.0694019794464,0.85999995,0.0,0.0,0.0,0.027366763 +288.07941913604736,0.87,0.0,0.0,0.0,0.027366763 +288.08939003944397,0.87,0.0,0.0,0.0,0.027366763 +288.0995559692383,0.88,0.0,0.0,0.0,0.027366763 +288.1094069480896,0.88,0.0,0.0,0.0,0.027366763 +288.11940598487854,0.87,0.0,0.0,0.0,0.02921681 +288.1295690536499,0.85999995,0.0,0.0,0.0,0.02921681 +288.1402449607849,0.84999996,0.0,0.0,0.0,0.02921681 +288.15252900123596,0.84,0.0,0.0,0.0,0.02921681 +288.15953493118286,0.82,0.0,0.0,0.0,0.031066857 +288.1694030761719,0.79999995,0.0,0.0,0.0,0.031066857 +288.1795871257782,0.77,0.0,0.0,0.0,0.031066857 +288.190062046051,0.74,0.0,0.0,0.0,0.031066857 +288.199579000473,0.71,0.0,0.0,0.0,0.031066857 +288.2094991207123,0.66999996,0.0,0.0,0.0,0.031066857 +288.21952199935913,0.64,0.0,0.0,0.0,0.031066857 +288.22939014434814,0.59999996,0.0,0.0,0.0,0.031066857 +288.2394149303436,0.56,0.0,0.0,0.0,0.031066857 +288.25055599212646,0.53,2.2727273,2.2727273,0.0,0.031066857 +288.2595090866089,0.5,4.5454545,4.5454545,0.0,0.04031712 +288.2707750797272,0.47,7.575758,7.575758,0.0,0.04031712 +288.2793929576874,0.44,11.363637,11.363637,0.0,0.04031712 +288.289598941803,0.42,16.666668,16.666668,0.0,0.04031712 +288.3000240325928,0.39,22.727274,22.727274,0.0,0.04031712 +288.3094849586487,0.37,29.545454,29.545454,0.0,0.04031712 +288.3213210105896,0.35,34.848484,34.848484,0.0,0.014416425 +288.3295910358429,0.32999998,40.151516,40.151516,0.0,0.014416425 +288.3396329879761,0.31,46.21212,46.21212,0.0,0.014416425 +288.3493900299072,0.29,53.030304,53.030304,0.0,0.014416425 +288.3595321178436,0.26999998,60.606064,60.606064,0.018744143,0.021816617 +288.370423078537,0.25,68.18182,68.18182,0.018744143,0.021816617 +288.3795690536499,0.22999999,59.848484,59.848484,0.018744143,0.021816617 +288.38942313194275,0.22,47.727272,47.727272,0.037488285,0.021816617 +288.39945101737976,0.19999999,39.39394,39.39394,0.05623243,0.021816617 +288.4094920158386,0.19,34.848484,34.848484,0.0656045,0.021816617 +288.4195680618286,0.17999999,33.333336,33.333336,0.0656045,-0.039235007 +288.4295799732208,0.16,34.09091,34.09091,0.07497657,-0.039235007 +288.43939208984375,0.14999999,36.363636,36.363636,0.10309278,-0.039235007 +288.45154905319214,0.14,42.424244,42.424244,0.12183693,-0.039235007 +288.45951199531555,0.13,50.757576,50.757576,0.12183693,-0.013334316 +288.46957993507385,0.12,60.606064,60.606064,0.14058107,-0.013334316 +288.47996497154236,0.11,70.454544,70.454544,0.16869728,-0.013334316 +288.48944902420044,0.099999994,81.0606,81.0606,0.18744142,-0.013334316 +288.49939703941345,0.089999996,89.393936,89.393936,0.18744142,-0.013334316 +288.50945806503296,0.089999996,96.969696,96.969696,0.20618556,-0.013334316 +288.5205760002136,0.08,105.303024,105.303024,0.24367386,-0.033684865 +288.5296149253845,0.07,113.63637,113.63637,0.25304592,-0.033684865 +288.5400221347809,0.06,123.48485,123.48485,0.25304592,-0.033684865 +288.5493891239166,0.06,131.06061,131.06061,0.27179006,-0.033684865 +288.5595541000366,0.049999997,137.87878,137.87878,0.2905342,-0.0077841706 +288.56944608688354,0.04,143.18181,143.18181,0.29990628,-0.0077841706 +288.5793979167938,0.04,149.24243,149.24243,0.29990628,-0.0077841706 +288.58941102027893,0.03,155.30302,155.30302,0.30927837,-0.0077841706 +288.59964299201965,0.03,160.60606,160.60606,0.33739457,-0.0077841706 +288.6095221042633,0.02,166.66667,166.66667,0.33739457,0.08841839 +288.62025213241577,0.02,170.45454,170.45454,0.34676665,0.08841839 +288.6295530796051,0.02,173.48485,173.48485,0.34676665,0.08841839 +288.6401000022888,0.01,175.75757,175.75757,0.34676665,0.08841839 +288.6498589515686,0.01,179.54544,179.54544,0.3561387,0.08841839 +288.65951204299927,0.01,183.33334,183.33334,0.3561387,0.032916907 +288.66957807540894,0.01,185.60606,185.60606,0.3561387,0.032916907 +288.6840400695801,0.01,187.12122,187.12122,0.3561387,0.032916907 +288.69403409957886,0.01,187.87878,187.87878,0.3655108,0.032916907 +288.7002580165863,0.01,188.63637,188.63637,0.3655108,0.032916907 +288.71157908439636,0.01,190.15152,190.15152,0.37488285,0.0033161184 +288.7201569080353,0.01,192.42424,192.42424,0.37488285,0.0033161184 +288.72958302497864,0.01,194.69696,194.69696,0.37488285,0.0033161184 +288.73953199386597,0.01,196.21213,196.21213,0.37488285,0.0033161184 +288.74950408935547,0.01,196.21213,196.21213,0.37488285,0.0033161184 +288.7593970298767,0.01,196.21213,196.21213,0.38425493,0.0033161184 +288.77191495895386,0.01,196.21213,196.21213,0.393627,-0.07623599 +288.78024911880493,0.01,196.9697,196.9697,0.393627,-0.07623599 +288.79046511650085,0.01,196.21213,196.21213,0.393627,-0.07623599 +288.80186891555786,0.01,194.69696,194.69696,0.38425493,-0.07623599 +288.811576128006,0.01,191.66666,191.66666,0.37488285,-0.072535895 +288.8202610015869,0.01,186.36363,186.36363,0.37488285,-0.072535895 +288.8295249938965,0.01,181.81819,181.81819,0.3655108,-0.072535895 +288.83959794044495,0.01,177.27272,177.27272,0.3655108,-0.072535895 +288.8507831096649,0.01,172.72726,172.72726,0.3561387,-0.072535895 +288.85951113700867,0.01,167.42424,167.42424,0.3561387,-0.07993608 +288.8725199699402,0.0,162.1212,162.1212,0.34676665,-0.07993608 +288.8832039833069,0.0,155.30302,155.30302,0.33739457,-0.07993608 +288.88956594467163,0.0,148.48486,148.48486,0.3280225,-0.07993608 +288.90028405189514,0.0,142.42424,142.42424,0.31865042,-0.07993608 +288.9099209308624,0.0,135.60606,135.60606,0.30927837,-0.07993608 +288.9195909500122,0.0,128.78787,128.78787,0.30927837,-0.07808603 +288.92951703071594,0.0,120.454544,120.454544,0.30927837,-0.07808603 +288.93945693969727,0.0,112.878784,112.878784,0.30927837,-0.07808603 +288.94956493377686,0.0,104.54545,104.54545,0.29990628,-0.07808603 +288.9595329761505,0.0,95.454544,95.454544,0.2905342,-0.020734508 +288.97228813171387,0.0,87.878784,87.878784,0.27179006,-0.020734508 +288.9794020652771,0.0,81.0606,81.0606,0.27179006,-0.020734508 +288.98957109451294,0.0,75.0,75.0,0.262418,-0.020734508 +288.99949312210083,0.0,69.69697,69.69697,0.262418,-0.020734508 +289.0102651119232,0.0,64.393936,64.393936,0.262418,-0.020734508 +289.0195310115814,0.0,59.090908,59.090908,0.262418,0.04586726 +289.02940797805786,0.0,53.78788,53.78788,0.25304592,0.04586726 +289.03958201408386,0.0,50.757576,50.757576,0.25304592,0.04586726 +289.0503239631653,0.0,48.484848,48.484848,0.25304592,0.04586726 +289.0594799518585,0.0,46.969696,46.969696,0.25304592,0.06621779 +289.0702700614929,0.0,45.454548,45.454548,0.24367386,0.06621779 +289.07957100868225,0.0,43.181816,43.181816,0.24367386,0.06621779 +289.09134101867676,0.0,40.90909,40.90909,0.24367386,0.06621779 +289.10025691986084,0.0,37.878788,37.878788,0.23430179,0.06621779 +289.1095390319824,0.0,35.60606,35.60606,0.23430179,0.06621779 +289.11948704719543,0.0,34.09091,34.09091,0.22492972,0.07546805 +289.1295130252838,0.0,34.09091,34.09091,0.22492972,0.07546805 +289.14025807380676,0.0,33.333336,33.333336,0.22492972,0.07546805 +289.1504650115967,0.0,32.575756,32.575756,0.21555763,0.07546805 +289.15951895713806,0.0,31.818182,31.818182,0.22492972,0.06621779 +289.1705219745636,0.0,29.545454,29.545454,0.22492972,0.06621779 +289.1794240474701,0.0,28.030302,28.030302,0.22492972,0.06621779 +289.1900041103363,0.0,28.030302,28.030302,0.22492972,0.06621779 +289.1995360851288,0.0,28.78788,28.78788,0.23430179,0.06621779 +289.2115180492401,0.0,28.78788,28.78788,0.23430179,0.06621779 +289.22014904022217,0.0,28.030302,28.030302,0.23430179,0.11986922 +289.22949600219727,0.0,27.272728,27.272728,0.23430179,0.11986922 +289.239541053772,0.0,25.0,25.0,0.22492972,0.11986922 +289.2495539188385,0.0,22.727274,22.727274,0.23430179,0.11986922 +289.2594630718231,0.0,24.242424,24.242424,0.23430179,0.19942135 +289.2714741230011,0.0,28.030302,28.030302,0.23430179,0.19942135 +289.2804811000824,0.0,32.575756,32.575756,0.23430179,0.19942135 +289.28952193260193,0.0,36.363636,36.363636,0.22492972,0.19942135 +289.29941511154175,0.0,39.39394,39.39394,0.22492972,0.19942135 +289.3099329471588,0.0,40.90909,40.90909,0.22492972,0.19942135 +289.31971192359924,0.0,42.424244,42.424244,0.22492972,0.20497148 +289.32948112487793,0.0,43.939392,43.939392,0.20618556,0.20497148 +289.3402919769287,0.0,45.454548,45.454548,0.21555763,0.20497148 +289.35248708724976,0.0,46.969696,46.969696,0.21555763,0.20497148 +289.3595280647278,0.0,46.969696,46.969696,0.20618556,0.27157325 +289.3704559803009,0.0,46.21212,46.21212,0.20618556,0.27157325 +289.3794951438904,0.0,44.696968,44.696968,0.20618556,0.27157325 +289.38954305648804,0.0,42.424244,42.424244,0.1968135,0.27157325 +289.39990401268005,0.0,40.90909,40.90909,0.1968135,0.27157325 +289.4095139503479,0.0,38.636364,38.636364,0.18744142,0.22162192 +289.4202620983124,0.0,37.121216,37.121216,0.17806935,0.22162192 +289.4294970035553,0.0,34.848484,34.848484,0.17806935,0.22162192 +289.4402139186859,0.0,33.333336,33.333336,0.15932521,0.22162192 +289.4514091014862,0.0,31.060606,31.060606,0.14995314,0.22162192 +289.4594740867615,0.0,28.78788,28.78788,0.14995314,0.31967452 +289.46950006484985,0.0,27.272728,27.272728,0.14058107,0.31967452 +289.4795069694519,0.0,25.757576,25.757576,0.11246486,0.31967452 +289.48949694633484,0.0,23.484848,23.484848,0.10309278,0.31967452 +289.5002861022949,0.0,21.969696,21.969696,0.08434864,0.31967452 +289.50950813293457,0.0,21.212122,21.212122,0.07497657,0.46027827 +289.52337098121643,0.0,19.69697,19.69697,0.05623243,0.46027827 +289.5323660373688,0.01,18.181818,18.181818,0.046860356,0.46027827 +289.5395429134369,0.01,17.424242,17.424242,0.046860356,0.46027827 +289.5503430366516,0.01,15.909091,15.909091,0.028116215,0.46027827 +289.55949091911316,0.01,15.151516,15.151516,0.018744143,0.488029 +289.5694890022278,0.01,13.636364,13.636364,0.009372071,0.488029 +289.5794780254364,0.02,12.878788,12.878788,0.009372071,0.488029 +289.5912790298462,0.02,12.121212,12.121212,0.009372071,0.488029 +289.60174012184143,0.02,11.363637,11.363637,0.0,0.488029 +289.6094751358032,0.02,10.606061,10.606061,0.0,0.52317995 +289.620285987854,0.02,9.848485,9.848485,0.0,0.52317995 +289.6294810771942,0.01,9.090909,9.090909,0.0,0.52317995 +289.63955998420715,0.01,8.333334,8.333334,0.0,0.52317995 +289.6495101451874,0.01,8.333334,8.333334,0.0,0.52317995 +289.65943694114685,0.01,7.575758,7.575758,0.0,0.56018096 +289.6700849533081,0.01,6.818182,6.818182,0.0,0.56018096 +289.68414211273193,0.01,6.060606,6.060606,0.0,0.56018096 +289.6918499469757,0.01,6.060606,6.060606,0.0,0.56018096 +289.7000160217285,0.01,5.3030305,5.3030305,0.0,0.56018096 +289.7115969657898,0.01,5.3030305,5.3030305,0.0,0.56018096 +289.719624042511,0.01,4.5454545,4.5454545,0.0,0.56018096 +289.7294659614563,0.01,4.5454545,4.5454545,0.0,0.56018096 +289.73950004577637,0.02,3.787879,3.787879,0.0,0.56018096 +289.7499029636383,0.02,3.787879,3.787879,0.0,0.56018096 +289.7594220638275,0.02,3.787879,3.787879,0.0,0.56018096 +289.76951003074646,0.02,3.030303,3.030303,0.0,0.5897817 +289.7797050476074,0.03,3.030303,3.030303,0.0,0.5897817 +289.7921099662781,0.03,2.2727273,2.2727273,0.0,0.5897817 +289.8010160923004,0.04,2.2727273,2.2727273,0.0,0.5897817 +289.80973410606384,0.04,2.2727273,2.2727273,0.0,0.5897817 +289.8202130794525,0.049999997,1.5151515,1.5151515,0.0,0.5657311 +289.829528093338,0.049999997,1.5151515,1.5151515,0.0,0.5657311 +289.83941197395325,0.06,1.5151515,1.5151515,0.0,0.5657311 +289.84949707984924,0.06,1.5151515,1.5151515,0.0,0.5657311 +289.8594169616699,0.07,1.5151515,1.5151515,0.0,0.55278075 +289.8723261356354,0.07,0.75757575,0.75757575,0.0,0.55278075 +289.8807170391083,0.07,0.75757575,0.75757575,0.0,0.55278075 +289.89016699790955,0.08,0.75757575,0.75757575,0.0,0.55278075 +289.89946007728577,0.08,0.75757575,0.75757575,0.0,0.55278075 +289.910197019577,0.089999996,0.75757575,0.75757575,0.0,0.55278075 +289.9194779396057,0.089999996,0.0,0.0,0.0,0.56018096 +289.92948293685913,0.089999996,0.0,0.0,0.0,0.56018096 +289.9394910335541,0.099999994,0.0,0.0,0.0,0.56018096 +289.9516501426697,0.099999994,0.0,0.0,0.0,0.56018096 +289.95946311950684,0.099999994,0.0,0.0,0.0,0.59533185 +289.97038412094116,0.11,0.0,0.0,0.0,0.59533185 +289.9795150756836,0.11,0.0,0.0,0.0,0.59533185 +289.9910900592804,0.11,0.0,0.0,0.0,0.59533185 +290.00006914138794,0.12,0.0,0.0,0.0,0.59533185 +290.00947999954224,0.12,0.0,0.0,0.0,0.59533185 +290.01949095726013,0.12,0.0,0.0,0.0,0.715585 +290.029452085495,0.12,0.0,0.0,0.0,0.715585 +290.04014801979065,0.13,0.0,0.0,0.0,0.715585 +290.050607919693,0.13,0.0,0.0,0.0,0.715585 +290.0594000816345,0.13,0.0,0.0,0.0,0.7599862 +290.0720229148865,0.13,0.0,0.0,0.0,0.7599862 +290.0797829627991,0.13,0.0,0.0,0.0,0.7599862 +290.08985590934753,0.14,0.0,0.0,0.0,0.7599862 +290.0994429588318,0.14,0.0,0.0,0.0,0.7599862 +290.1094739437103,0.14,0.0,0.0,0.0,0.7599862 +290.11960101127625,0.14,0.0,0.0,0.0,0.7599862 +290.12953901290894,0.14,0.0,0.0,0.0,0.7599862 +290.13974499702454,0.14,0.0,0.0,0.0,0.7599862 +290.1529700756073,0.14999999,0.0,0.0,0.0,0.7599862 +290.15940499305725,0.14999999,0.0,0.0,0.0,0.7599862 +290.17094707489014,0.14999999,0.0,0.0,0.0,0.7673864 +290.17993807792664,0.14999999,0.0,0.0,0.0,0.7673864 +290.1893961429596,0.14999999,0.0,0.0,0.0,0.7673864 +290.1995151042938,0.14999999,0.0,0.0,0.0,0.7673864 +290.20976209640503,0.16,0.0,0.0,0.0,0.7673864 +290.2198131084442,0.16,0.0,0.0,0.0,0.7488859 +290.229562997818,0.16,0.0,0.0,0.0,0.7488859 +290.240159034729,0.16,0.0,0.0,0.0,0.7488859 +290.24957513809204,0.17,0.0,0.0,0.0,0.7488859 +290.2593939304352,0.17,0.0,0.0,0.0,0.70633477 +290.26988410949707,0.17,0.0,0.0,0.0,0.70633477 +290.28044414520264,0.17,0.0,0.0,0.0,0.70633477 +290.2895519733429,0.17,0.0,0.0,0.0,0.70633477 +290.2999269962311,0.17999999,0.0,0.0,0.0,0.70633477 +290.30940794944763,0.17999999,0.0,0.0,0.0,0.70633477 +290.3225920200348,0.19,0.0,0.0,0.0,0.713735 +290.32948899269104,0.19,0.0,0.0,0.0,0.713735 +290.3394339084625,0.19,0.0,0.0,0.0,0.713735 +290.3497519493103,0.19999999,0.0,0.0,0.0,0.713735 +290.359482049942,0.19999999,0.0,0.0,0.0,0.69338447 +290.3706040382385,0.19999999,0.0,0.0,0.0,0.69338447 +290.3795940876007,0.21,0.0,0.0,0.0,0.69338447 +290.38951992988586,0.21,0.0,0.0,0.0,0.69338447 +290.39944100379944,0.22,0.0,0.0,0.0,0.69338447 +290.4094281196594,0.22,0.0,0.0,0.0,0.6304828 +290.42029094696045,0.22999999,0.0,0.0,0.0,0.6304828 +290.43163108825684,0.22999999,0.0,0.0,0.0,0.6304828 +290.4395101070404,0.24,0.0,0.0,0.0,0.6304828 +290.4494659900665,0.24,0.0,0.0,0.0,0.6304828 +290.4594440460205,0.25,0.0,0.0,0.0,0.66748375 +290.4695510864258,0.25,0.0,0.0,0.0,0.66748375 +290.4794690608978,0.26,0.0,0.0,0.0,0.66748375 +290.48954796791077,0.26,0.0,0.0,0.0,0.66748375 +290.50032901763916,0.26999998,0.0,0.0,0.0,0.66748375 +290.50939893722534,0.28,0.0,0.0,0.0,0.4917291 +290.5199251174927,0.29,0.0,0.0,0.0,0.4917291 +290.52950406074524,0.29999998,0.0,0.0,0.0,0.4917291 +290.5396890640259,0.29999998,0.0,0.0,0.0,0.4917291 +290.54941391944885,0.31,0.0,0.0,0.0,0.4917291 +290.5594139099121,0.32,0.0,0.0,0.0,0.4084769 +290.57042694091797,0.32999998,0.0,0.0,0.0,0.4084769 +290.57952404022217,0.32999998,0.0,0.0,0.0,0.4084769 +290.5936539173126,0.34,0.0,0.0,0.0,0.4084769 +290.59945011138916,0.35,0.0,0.0,0.0,0.4084769 +290.609393119812,0.35,0.0,0.0,0.0,0.41402704 +290.6203279495239,0.35999998,0.0,0.0,0.0,0.41402704 +290.62952303886414,0.35999998,0.0,0.0,0.0,0.41402704 +290.6401491165161,0.37,0.0,0.0,0.0,0.41402704 +290.6500520706177,0.37,0.0,0.0,0.0,0.41402704 +290.6595821380615,0.38,0.0,0.0,0.0,0.43807763 +290.66961002349854,0.38,0.0,0.0,0.0,0.43807763 +290.68340492248535,0.38,0.0,0.0,0.0,0.43807763 +290.68949007987976,0.39,0.0,0.0,0.0,0.43807763 +290.70030999183655,0.39,0.0,0.0,0.0,0.43807763 +290.70939898490906,0.39,0.0,0.0,0.0,0.4621283 +290.7194061279297,0.39999998,0.0,0.0,0.0,0.4621283 +290.7294890880585,0.39999998,0.0,0.0,0.0,0.4621283 +290.7396469116211,0.39999998,0.0,0.0,0.0,0.4621283 +290.7494390010834,0.41,0.0,0.0,0.0,0.4621283 +290.7593901157379,0.41,0.0,0.0,0.0,0.47507864 +290.7725429534912,0.41,0.0,0.0,0.0,0.47507864 +290.7803349494934,0.42,0.0,0.0,0.0,0.47507864 +290.7902319431305,0.42,0.0,0.0,0.0,0.47507864 +290.79953694343567,0.42999998,0.0,0.0,0.0,0.47507864 +290.8095669746399,0.42999998,0.0,0.0,0.0,0.47507864 +290.8200099468231,0.44,0.0,0.0,0.0,0.4621283 +290.82950091362,0.44,0.0,0.0,0.0,0.4621283 +290.83954310417175,0.44,0.0,0.0,0.0,0.4621283 +290.84995913505554,0.44,0.0,0.0,0.0,0.4621283 +290.8595700263977,0.45,0.0,0.0,0.0,0.4288274 +290.86955308914185,0.45,0.0,0.0,0.0,0.4288274 +290.87958002090454,0.45,0.0,0.0,0.0,0.4288274 +290.89043712615967,0.45999998,0.0,0.0,0.0,0.4288274 +290.8995430469513,0.45999998,0.0,0.0,0.0,0.4288274 +290.9103801250458,0.47,0.0,0.0,0.0,0.4288274 +290.9205651283264,0.47,0.0,0.0,0.0,0.35482547 +290.92953610420227,0.47,0.0,0.0,0.0,0.35482547 +290.9401431083679,0.48,0.0,0.0,0.0,0.35482547 +290.9494059085846,0.48,0.0,0.0,0.0,0.35482547 +290.95965600013733,0.48,0.0,0.0,0.0,0.37332594 +290.97138810157776,0.48,0.0,0.0,0.0,0.37332594 +290.9803159236908,0.48999998,0.0,0.0,0.0,0.37332594 +290.98953890800476,0.48999998,0.0,0.0,0.0,0.37332594 +290.99954891204834,0.48999998,0.0,0.0,0.0,0.37332594 +291.0107469558716,0.48999998,0.0,0.0,0.0,0.37332594 +291.0197329521179,0.5,0.0,0.0,0.0,0.3492753 +291.02953600883484,0.5,0.0,0.0,0.0,0.3492753 +291.0395679473877,0.5,0.0,0.0,0.0,0.3492753 +291.0494430065155,0.5,0.0,0.0,0.0,0.3492753 +291.0603361129761,0.5,0.0,0.0,0.0,0.3455752 +291.07033705711365,0.5,0.0,0.0,0.0,0.3455752 +291.0795440673828,0.5,0.0,0.0,0.0,0.3455752 +291.0907211303711,0.5,0.0,0.0,0.0,0.3455752 +291.10030698776245,0.51,0.0,0.0,0.0,0.3455752 +291.10990500450134,0.51,0.0,0.0,0.0,0.3455752 +291.11939096450806,0.51,0.0,0.0,0.0,0.29932398 +291.1295850276947,0.51,0.0,0.0,0.0,0.29932398 +291.1400020122528,0.51,0.0,0.0,0.0,0.29932398 +291.1512770652771,0.51,0.0,0.0,0.0,0.29932398 +291.16026997566223,0.51,0.0,0.0,0.0,0.2771234 +291.16955494880676,0.51,0.0,0.0,0.0,0.2771234 +291.1803181171417,0.51,0.0,0.0,0.0,0.2771234 +291.18940901756287,0.51,0.0,0.0,0.0,0.2771234 +291.1994979381561,0.51,0.0,0.0,0.0,0.2771234 +291.20959091186523,0.51,0.0,0.0,0.0,0.2771234 +291.219496011734,0.51,0.0,0.0,0.0,0.2771234 +291.232234954834,0.51,0.0,0.0,0.0,0.2771234 +291.2401931285858,0.51,0.0,0.0,0.0,0.2771234 +291.25023913383484,0.51,0.0,0.0,0.0,0.2771234 +291.25955510139465,0.51,0.0,0.0,0.0,0.26602313 +291.2716689109802,0.51,0.0,0.0,0.0,0.26602313 +291.28060507774353,0.51,0.0,0.0,0.0,0.26602313 +291.2895579338074,0.51,0.0,0.0,0.0,0.26602313 +291.29951095581055,0.51,0.0,0.0,0.0,0.26602313 +291.3094699382782,0.51,0.0,0.0,0.0,0.26602313 +291.3200330734253,0.51,0.0,0.0,0.0,0.2549228 +291.32952213287354,0.51,0.0,0.0,0.0,0.2549228 +291.34019708633423,0.51,0.0,0.0,0.0,0.2549228 +291.34945011138916,0.51,0.0,0.0,0.0,0.2549228 +291.3607931137085,0.51,0.0,0.0,0.0,0.2438225 +291.369686126709,0.51,0.0,0.0,0.0,0.2438225 +291.3803129196167,0.51,0.0,0.0,0.0,0.2438225 +291.38955092430115,0.51,0.0,0.0,0.0,0.2438225 +291.3995931148529,0.51,0.0,0.0,0.0,0.2438225 +291.40954995155334,0.51,0.0,0.0,0.0,0.22717209 +291.42031693458557,0.51,0.0,0.0,0.0,0.22717209 +291.4295189380646,0.51,0.0,0.0,0.0,0.22717209 +291.4393970966339,0.51,0.0,0.0,0.0,0.22717209 +291.44989013671875,0.51,0.0,0.0,0.0,0.22717209 +291.45950412750244,0.51,0.0,0.0,0.0,0.19202115 +291.47016501426697,0.51,0.0,0.0,0.0,0.19202115 +291.4796459674835,0.51,0.0,0.0,0.0,0.19202115 +291.4895749092102,0.51,0.0,0.0,0.0,0.19202115 +291.4994649887085,0.51,0.0,0.0,0.0,0.19202115 +291.51110792160034,0.51,0.0,0.0,0.0,0.19017108 +291.51955914497375,0.51,0.0,0.0,0.0,0.19017108 +291.5293951034546,0.51,0.0,0.0,0.0,0.19017108 +291.53942012786865,0.5,0.0,0.0,0.0,0.19017108 +291.5517530441284,0.5,0.0,0.0,0.0,0.19017108 +291.5600130558014,0.5,0.0,0.0,0.0,0.19017108 +291.5697889328003,0.5,0.0,0.0,0.0,0.19017108 +291.58034205436707,0.5,0.0,0.0,0.0,0.19017108 +291.5895879268646,0.5,0.0,0.0,0.0,0.19017108 +291.6010971069336,0.5,0.0,0.0,0.0,0.19017108 +291.61008501052856,0.5,0.0,0.0,0.0,0.18462092 +291.6195480823517,0.5,0.0,0.0,0.0,0.18462092 +291.6295280456543,0.5,0.0,0.0,0.0,0.18462092 +291.6401970386505,0.5,0.0,0.0,0.0,0.18462092 +291.6495580673218,0.48999998,0.0,0.0,0.0,0.18462092 +291.65939497947693,0.48999998,0.0,0.0,0.0,0.20127137 +291.66945791244507,0.48999998,0.0,0.0,0.0,0.20127137 +291.679563999176,0.48999998,0.0,0.0,0.0,0.20127137 +291.690486907959,0.48999998,0.0,0.0,0.0,0.20127137 +291.69957304000854,0.48999998,0.0,0.0,0.0,0.20127137 +291.7095410823822,0.48999998,0.0,0.0,0.0,0.19017108 +291.72262597084045,0.48999998,0.0,0.0,0.0,0.19017108 +291.7295169830322,0.48999998,0.0,0.0,0.0,0.19017108 +291.74034905433655,0.48999998,0.0,0.0,0.0,0.19017108 +291.75008511543274,0.5,0.0,0.0,0.0,0.19017108 +291.75953698158264,0.5,0.0,0.0,0.0,0.1827709 +291.76975202560425,0.5,0.0,0.0,0.0,0.1827709 +291.7796139717102,0.5,0.0,0.0,0.0,0.1827709 +291.789999961853,0.5,0.0,0.0,0.0,0.1827709 +291.80343413352966,0.5,0.0,0.0,0.0,0.1827709 +291.8116171360016,0.5,0.0,0.0,0.0,0.20127137 +291.8195769786835,0.48999998,0.0,0.0,0.0,0.20127137 +291.82954001426697,0.48999998,0.0,0.0,0.0,0.20127137 +291.8395869731903,0.48999998,0.0,0.0,0.0,0.20127137 +291.84951400756836,0.48999998,0.0,0.0,0.0,0.20127137 +291.85979104042053,0.48,0.0,0.0,0.0,0.18832105 +291.87097001075745,0.48,0.0,0.0,0.0,0.18832105 +291.87997603416443,0.48,0.0,0.0,0.0,0.18832105 +291.8943409919739,0.48,0.0,0.0,0.0,0.18832105 +291.90035009384155,0.48,0.0,0.0,0.0,0.18832105 +291.90957903862,0.48,0.0,0.0,0.0,0.18832105 +291.9208700656891,0.47,0.0,0.0,0.0,0.1790708 +291.92944407463074,0.47,0.0,0.0,0.0,0.1790708 +291.93960309028625,0.47,0.0,0.0,0.0,0.1790708 +291.95006012916565,0.47,0.0,0.0,0.0,0.1790708 +291.95953392982483,0.47,0.0,0.0,0.0,0.18832105 +291.96993494033813,0.47,0.0,0.0,0.0,0.18832105 +291.9803340435028,0.45999998,0.0,0.0,0.0,0.18832105 +291.9895350933075,0.45999998,0.0,0.0,0.0,0.18832105 +292.0023491382599,0.45999998,0.0,0.0,0.0,0.18832105 +292.01054406166077,0.45999998,0.0,0.0,0.0,0.18832105 +292.0201599597931,0.45999998,0.0,0.0,0.0,0.1346696 +292.02958607673645,0.45999998,0.0,0.0,0.0,0.1346696 +292.0394959449768,0.45999998,0.0,0.0,0.0,0.1346696 +292.0494909286499,0.45999998,0.0,0.0,0.0,0.1346696 +292.0598850250244,0.45999998,0.0,0.0,0.0,0.1346696 +292.0736379623413,0.45999998,0.0,0.0,0.0,0.1346696 +292.0795319080353,0.45999998,0.0,0.0,0.0,0.1346696 +292.0914931297302,0.45,0.0,0.0,0.0,0.1346696 +292.10034704208374,0.45,0.0,0.0,0.0,0.1346696 +292.1095521450043,0.44,0.0,0.0,0.0,0.1346696 +292.1196539402008,0.44,0.0,0.0,0.0,0.12911949 +292.13040494918823,0.42999998,0.0,0.0,0.0,0.12911949 +292.1395409107208,0.42999998,0.0,0.0,0.0,0.12911949 +292.14987206459045,0.42,0.0,0.0,0.0,0.12911949 +292.1594910621643,0.42,0.0,0.0,0.0,0.09211848 +292.16950011253357,0.42,0.0,0.0,0.0,0.09211848 +292.1801071166992,0.42999998,0.0,0.0,0.0,0.09211848 +292.1895980834961,0.42999998,0.0,0.0,0.0,0.09211848 +292.2007300853729,0.42999998,0.0,0.0,0.0,0.09211848 +292.2097370624542,0.42,0.0,0.0,0.0,0.09211848 +292.2203769683838,0.42,0.0,0.0,0.0,0.20312142 +292.22957611083984,0.41,0.0,0.0,0.0,0.20312142 +292.2398319244385,0.39999998,0.0,0.0,0.0,0.20312142 +292.2513360977173,0.39,0.0,0.0,0.0,0.20312142 +292.26033997535706,0.38,0.0,0.0,0.0,0.18832105 +292.26975893974304,0.37,0.0,0.0,0.0,0.18832105 +292.2817850112915,0.35999998,0.0,0.0,0.0,0.18832105 +292.2896089553833,0.35,0.0,0.0,0.0,0.18832105 +292.29942202568054,0.35,0.0,0.0,0.0,0.18832105 +292.30949902534485,0.34,0.0,0.0,0.0,0.18832105 +292.31974601745605,0.34,0.0,0.0,0.0,0.16427042 +292.32954001426697,0.32999998,0.0,0.0,0.0,0.16427042 +292.3403799533844,0.32999998,0.0,0.0,0.0,0.16427042 +292.349956035614,0.32999998,0.0,0.0,0.0,0.16427042 +292.35946798324585,0.32999998,0.0,0.0,0.0,0.16982053 +292.3713960647583,0.32,0.0,0.0,0.0,0.16982053 +292.37992000579834,0.32,0.0,0.0,0.0,0.16982053 +292.38994002342224,0.31,0.0,0.0,0.0,0.16982053 +292.4008979797363,0.29999998,0.0,0.0,0.0,0.16982053 +292.40991401672363,0.29999998,0.0,0.0,0.0,0.19942135 +292.4196150302887,0.29,0.0,0.0,0.0,0.19942135 +292.42947912216187,0.28,0.0,0.0,0.0,0.19942135 +292.43979001045227,0.26999998,0.0,0.0,0.0,0.19942135 +292.453027009964,0.26999998,0.0,0.0,0.0,0.19942135 +292.45939207077026,0.26,0.0,0.0,0.0,0.16427042 +292.47105503082275,0.26,0.0,0.0,0.0,0.16427042 +292.4800491333008,0.25,0.0,0.0,0.0,0.16427042 +292.48942613601685,0.24,0.0,0.0,0.0,0.16427042 +292.50006008148193,0.22999999,0.0,0.0,0.0,0.16427042 +292.50951194763184,0.22999999,0.0,0.0,0.0,0.17352064 +292.51953196525574,0.22,0.0,0.0,0.0,0.17352064 +292.5295441150665,0.21,0.0,0.0,0.0,0.17352064 +292.5393970012665,0.21,0.0,0.0,0.0,0.17352064 +292.5513000488281,0.19999999,0.0,0.0,0.0,0.17352064 +292.55950593948364,0.19999999,0.0,0.0,0.0,0.15132006 +292.5702040195465,0.19,0.0,0.0,0.0,0.15132006 +292.5794439315796,0.19,0.0,0.0,0.0,0.15132006 +292.59024310112,0.19,0.0,0.0,0.0,0.15132006 +292.59950709342957,0.17999999,0.0,0.0,0.0,0.15132006 +292.6093969345093,0.17999999,0.0,0.0,0.0,0.14947 +292.6194031238556,0.17999999,0.0,0.0,0.0,0.14947 +292.62953901290894,0.17,0.0,0.0,0.0,0.14947 +292.6395061016083,0.17,0.0,0.0,0.0,0.14947 +292.65129494667053,0.17,0.0,0.0,0.0,0.14947 +292.65941405296326,0.16,0.0,0.0,0.0,0.14761995 +292.6695821285248,0.16,0.0,0.0,0.0,0.14761995 +292.6797080039978,0.16,0.0,0.0,0.0,0.14761995 +292.68959498405457,0.16,0.0,0.0,0.0,0.14761995 +292.70038414001465,0.14999999,0.0,0.0,0.0,0.14761995 +292.71442794799805,0.14999999,0.0,0.0,0.0,0.1827709 +292.72164392471313,0.14,0.0,0.0,0.0,0.1827709 +292.72956013679504,0.14,0.0,0.0,0.0,0.1827709 +292.74035692214966,0.13,0.0,0.0,0.0,0.1827709 +292.7504379749298,0.12,0.0,0.0,0.0,0.1827709 +292.7594110965729,0.12,0.0,0.0,0.0,0.22717209 +292.76990008354187,0.11,0.0,0.0,0.0,0.22717209 +292.7796130180359,0.099999994,0.0,0.0,0.0,0.22717209 +292.78951597213745,0.099999994,0.0,0.0,0.0,0.22717209 +292.8044250011444,0.089999996,0.0,0.0,0.0,0.22717209 +292.8116250038147,0.08,0.0,0.0,0.0,0.23642232 +292.8193950653076,0.08,0.0,0.0,0.0,0.23642232 +292.8295509815216,0.07,0.0,0.0,0.0,0.23642232 +292.8401389122009,0.07,0.0,0.0,0.0,0.23642232 +292.84961700439453,0.07,0.0,0.0,0.0,0.23642232 +292.8594229221344,0.06,0.0,0.0,0.0,0.23087217 +292.8696310520172,0.06,0.0,0.0,0.0,0.23087217 +292.87963604927063,0.06,0.0,0.0,0.0,0.23087217 +292.89360904693604,0.049999997,0.0,0.0,0.0,0.23087217 +292.8994069099426,0.049999997,0.0,0.0,0.0,0.23087217 +292.91143012046814,0.049999997,0.0,0.0,0.0,0.23087217 +292.9203450679779,0.049999997,0.0,0.0,0.0,0.22717209 +292.9295070171356,0.04,0.0,0.0,0.0,0.22717209 +292.9393949508667,0.04,0.0,0.0,0.0,0.22717209 +292.9494171142578,0.04,0.0,0.0,0.0,0.22717209 +292.95959210395813,0.04,0.0,0.0,0.0,0.17722073 +292.9696180820465,0.04,0.0,0.0,0.0,0.17722073 +292.98035192489624,0.04,0.0,0.0,0.0,0.17722073 +292.989550113678,0.03,0.0,0.0,0.0,0.17722073 +293.00057196617126,0.03,0.0,0.0,0.0,0.17722073 +293.0096070766449,0.03,0.0,0.0,0.0,0.17722073 +293.0193910598755,0.03,0.0,0.0,0.0,0.19387117 +293.02957010269165,0.03,0.0,0.0,0.0,0.19387117 +293.03939414024353,0.03,0.0,0.0,0.0,0.19387117 +293.0495879650116,0.03,0.0,0.0,0.0,0.19387117 +293.05951595306396,0.03,0.0,0.0,0.0,0.20312142 +293.0693919658661,0.02,0.0,0.0,0.0,0.20312142 +293.0794770717621,0.02,0.0,0.0,0.0,0.20312142 +293.0897250175476,0.02,0.0,0.0,0.0,0.20312142 +293.099406003952,0.02,0.0,0.0,0.0,0.20312142 +293.1109609603882,0.02,0.0,0.0,0.0,0.20312142 +293.1199641227722,0.02,0.0,0.0,0.0,0.1716706 +293.1295449733734,0.02,0.0,0.0,0.0,0.1716706 +293.13960909843445,0.02,0.0,0.0,0.0,0.1716706 +293.14950013160706,0.02,0.0,0.0,0.0,0.1716706 +293.1610379219055,0.02,0.0,0.0,0.0,0.17722073 +293.1699569225311,0.02,0.0,0.0,0.0,0.17722073 +293.17992305755615,0.02,0.0,0.0,0.0,0.17722073 +293.1920471191406,0.03,0.0,0.0,0.0,0.17722073 +293.2010600566864,0.03,0.0,0.0,0.0,0.17722073 +293.20938992500305,0.03,0.0,0.0,0.0,0.17722073 +293.2194130420685,0.03,0.0,0.0,0.0,0.26602313 +293.22960591316223,0.03,0.0,0.0,0.0,0.26602313 +293.23958706855774,0.03,0.0,0.0,0.0,0.26602313 +293.2501881122589,0.03,0.0,0.0,0.0,0.26602313 +293.2595009803772,0.03,0.0,0.0,0.0,0.338175 +293.26939392089844,0.02,0.0,0.0,0.0,0.338175 +293.2793970108032,0.02,0.0,0.0,0.0,0.338175 +293.2894060611725,0.02,0.0,0.0,0.0,0.338175 +293.2993919849396,0.02,0.0,0.0,0.0,0.338175 +293.3094539642334,0.01,0.0,0.0,0.0,0.338175 +293.31958413124084,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.32961106300354,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.33951592445374,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.349396944046,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.36326003074646,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.36939096450806,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.3794150352478,0.01,0.75757575,0.75757575,0.0,0.3418751 +293.3903090953827,0.01,1.5151515,1.5151515,0.0,0.3418751 +293.3995659351349,0.01,1.5151515,1.5151515,0.0,0.3418751 +293.4095950126648,0.01,0.75757575,0.75757575,0.0,0.37702608 +293.41959500312805,0.01,0.75757575,0.75757575,0.0,0.37702608 +293.42955112457275,0.01,1.5151515,1.5151515,0.0,0.37702608 +293.43940591812134,0.01,1.5151515,1.5151515,0.0,0.37702608 +293.4504201412201,0.01,1.5151515,1.5151515,0.0,0.37702608 +293.4594271183014,0.01,1.5151515,1.5151515,0.0,0.39922667 +293.4693920612335,0.01,1.5151515,1.5151515,0.0,0.39922667 +293.4804251194,0.01,1.5151515,1.5151515,0.0,0.39922667 +293.4895980358124,0.01,1.5151515,1.5151515,0.0,0.39922667 +293.4994549751282,0.01,1.5151515,1.5151515,0.0,0.39922667 +293.5093901157379,0.01,1.5151515,1.5151515,0.0,0.4084769 +293.5194180011749,0.02,1.5151515,1.5151515,0.0,0.4084769 +293.529580116272,0.02,1.5151515,1.5151515,0.0,0.4084769 +293.5394039154053,0.02,1.5151515,1.5151515,0.0,0.4084769 +293.55090713500977,0.02,1.5151515,1.5151515,0.0,0.4084769 +293.55962896347046,0.02,1.5151515,1.5151515,0.0,0.48062876 +293.56940507888794,0.02,1.5151515,1.5151515,0.0,0.48062876 +293.57960391044617,0.02,1.5151515,1.5151515,0.0,0.48062876 +293.58951592445374,0.03,1.5151515,1.5151515,0.0,0.48062876 +293.59940910339355,0.03,1.5151515,1.5151515,0.0,0.48062876 +293.60948395729065,0.03,1.5151515,1.5151515,0.0,0.38257617 +293.6194019317627,0.04,1.5151515,1.5151515,0.0,0.38257617 +293.6295371055603,0.049999997,1.5151515,1.5151515,0.0,0.38257617 +293.64023303985596,0.049999997,1.5151515,1.5151515,0.0,0.38257617 +293.6511471271515,0.06,2.2727273,2.2727273,0.0,0.38257617 +293.65942001342773,0.06,2.2727273,2.2727273,0.0,0.27897343 +293.669734954834,0.06,2.2727273,2.2727273,0.0,0.27897343 +293.679407119751,0.07,2.2727273,2.2727273,0.0,0.27897343 +293.6894040107727,0.07,2.2727273,2.2727273,0.0,0.27897343 +293.6993930339813,0.07,2.2727273,2.2727273,0.0,0.27897343 +293.7094039916992,0.08,2.2727273,2.2727273,0.0,0.27897343 +293.7194061279297,0.08,2.2727273,2.2727273,0.0,0.27897343 +293.72955894470215,0.089999996,2.2727273,2.2727273,0.0,0.27897343 +293.73940205574036,0.089999996,2.2727273,2.2727273,0.0,0.27897343 +293.7494559288025,0.099999994,2.2727273,2.2727273,0.0,0.27897343 +293.7594270706177,0.099999994,2.2727273,2.2727273,0.0,0.3233746 +293.7693979740143,0.099999994,2.2727273,2.2727273,0.0,0.3233746 +293.779403924942,0.11,2.2727273,2.2727273,0.0,0.3233746 +293.7893979549408,0.11,2.2727273,2.2727273,0.0,0.3233746 +293.7993919849396,0.11,2.2727273,2.2727273,0.0,0.3233746 +293.8104410171509,0.11,2.2727273,2.2727273,0.0,0.3233746 +293.81943106651306,0.11,2.2727273,2.2727273,0.0,0.34002507 +293.82940006256104,0.11,2.2727273,2.2727273,0.0,0.34002507 +293.8393919467926,0.12,2.2727273,2.2727273,0.0,0.34002507 +293.84940099716187,0.12,2.2727273,2.2727273,0.0,0.34002507 +293.8596119880676,0.12,2.2727273,2.2727273,0.0,0.35482547 +293.8694050312042,0.12,2.2727273,2.2727273,0.0,0.35482547 +293.8794140815735,0.12,2.2727273,2.2727273,0.0,0.35482547 +293.8898799419403,0.13,2.2727273,2.2727273,0.0,0.35482547 +293.8994300365448,0.13,2.2727273,2.2727273,0.0,0.35482547 +293.9093930721283,0.13,2.2727273,2.2727273,0.0,0.35482547 +293.9196979999542,0.13,2.2727273,2.2727273,0.0,0.46027827 +293.92959904670715,0.13,2.2727273,2.2727273,0.0,0.46027827 +293.9394021034241,0.13,1.5151515,1.5151515,0.0,0.46027827 +293.94947695732117,0.13,1.5151515,1.5151515,0.0,0.46027827 +293.95939803123474,0.13,1.5151515,1.5151515,0.0,0.45287812 +293.96941614151,0.13,1.5151515,1.5151515,0.0,0.45287812 +293.97940611839294,0.13,1.5151515,1.5151515,0.0,0.45287812 +293.98957109451294,0.14,1.5151515,1.5151515,0.0,0.45287812 +293.9994089603424,0.14,1.5151515,1.5151515,0.0,0.45287812 +294.0094211101532,0.14,1.5151515,1.5151515,0.0,0.45287812 +294.01941108703613,0.14,1.5151515,1.5151515,0.0,0.46397835 +294.0295879840851,0.14,2.2727273,2.2727273,0.0,0.46397835 +294.0396411418915,0.14,2.2727273,2.2727273,0.0,0.46397835 +294.0493941307068,0.14,2.2727273,2.2727273,0.0,0.46397835 +294.0594279766083,0.14,2.2727273,2.2727273,0.0,0.40292668 +294.06942200660706,0.14,2.2727273,2.2727273,0.0,0.40292668 +294.08378195762634,0.14999999,2.2727273,2.2727273,0.0,0.40292668 +294.08939695358276,0.14999999,2.2727273,2.2727273,0.0,0.40292668 +294.0994291305542,0.14999999,2.2727273,2.2727273,0.0,0.40292668 +294.1094009876251,0.16,2.2727273,2.2727273,0.0,0.40292668 +294.11960101127625,0.16,1.5151515,1.5151515,0.0,0.3862763 +294.12957406044006,0.16,1.5151515,1.5151515,0.0,0.3862763 +294.13943099975586,0.17,1.5151515,1.5151515,0.0,0.3862763 +294.1493971347809,0.17,1.5151515,1.5151515,0.0,0.3862763 +294.1595969200134,0.17,1.5151515,1.5151515,0.0,0.3881263 +294.16939091682434,0.17,1.5151515,1.5151515,0.0,0.3881263 +294.17942214012146,0.17,1.5151515,1.5151515,0.0,0.3881263 +294.1894271373749,0.17,1.5151515,1.5151515,0.0,0.3881263 +294.1993899345398,0.17,0.75757575,0.75757575,0.0,0.3881263 +294.20940804481506,0.17,0.75757575,0.75757575,0.0,0.3881263 +294.21943712234497,0.17,0.75757575,0.75757575,0.0,0.39922667 +294.2295889854431,0.17,0.75757575,0.75757575,0.0,0.39922667 +294.23960399627686,0.16,0.75757575,0.75757575,0.0,0.39922667 +294.249547958374,0.16,0.75757575,0.75757575,0.0,0.39922667 +294.2594311237335,0.16,0.0,0.0,0.0,0.31042427 +294.26939511299133,0.16,0.75757575,0.75757575,0.0,0.31042427 +294.2794270515442,0.16,0.75757575,0.75757575,0.0,0.31042427 +294.2894380092621,0.16,0.75757575,0.75757575,0.0,0.31042427 +294.2994089126587,0.16,0.75757575,0.75757575,0.0,0.31042427 +294.30941796302795,0.17,0.75757575,0.75757575,0.0,0.31042427 +294.3194191455841,0.17,0.0,0.0,0.0,0.02921681 +294.32959604263306,0.17999999,0.0,0.0,0.0,0.02921681 +294.33949398994446,0.19,0.0,0.0,0.0,0.02921681 +294.3494279384613,0.19,0.0,0.0,0.0,0.02921681 +294.3594260215759,0.19,0.0,0.0,0.0,0.15132006 +294.36940598487854,0.19,0.0,0.0,0.0,0.15132006 +294.37943601608276,0.19,0.0,0.0,0.0,0.15132006 +294.3893949985504,0.19,0.0,0.0,0.0,0.15132006 +294.3994140625,0.19,0.0,0.0,0.0,0.15132006 +294.40958404541016,0.19,0.0,0.0,0.0,0.15132006 +294.4194300174713,0.19,0.0,0.0,0.0,0.19572124 +294.42958402633667,0.19,0.0,0.0,0.0,0.19572124 +294.43940901756287,0.19,0.0,0.0,0.0,0.19572124 +294.4493930339813,0.19,0.0,0.0,0.0,0.19572124 +294.459440946579,0.19,0.0,0.0,0.0,0.31412435 +294.46942710876465,0.19,0.0,0.0,0.0,0.31412435 +294.47939109802246,0.19,0.0,0.0,0.0,0.31412435 +294.4894211292267,0.19,0.0,0.0,0.0,0.31412435 +294.4994430541992,0.19,0.0,0.0,0.0,0.31412435 +294.5095729827881,0.19,0.0,0.0,0.0,0.34372514 +294.519415140152,0.19999999,0.0,0.0,0.0,0.34372514 +294.5295419692993,0.19999999,0.75757575,0.75757575,0.0,0.34372514 +294.53944396972656,0.19999999,0.0,0.0,0.0,0.34372514 +294.5494050979614,0.19999999,0.0,0.0,0.0,0.34372514 +294.55946493148804,0.19999999,0.0,0.0,0.0,0.35112536 +294.56943106651306,0.19999999,0.0,0.0,0.0,0.35112536 +294.5794589519501,0.19999999,0.75757575,0.75757575,0.0,0.35112536 +294.58952808380127,0.19999999,0.75757575,0.75757575,0.0,0.35112536 +294.5994391441345,0.19999999,0.0,0.0,0.0,0.35112536 +294.60941100120544,0.19999999,0.0,0.0,0.0,0.33262488 +294.6194670200348,0.19999999,0.75757575,0.75757575,0.0,0.33262488 +294.6294400691986,0.19999999,0.75757575,0.75757575,0.0,0.33262488 +294.63940596580505,0.19999999,0.75757575,0.75757575,0.0,0.33262488 +294.6494879722595,0.19999999,0.75757575,0.75757575,0.0,0.33262488 +294.6594500541687,0.19999999,0.75757575,0.75757575,0.0,0.31412435 +294.66939997673035,0.19999999,0.75757575,0.75757575,0.0,0.31412435 +294.679407119751,0.21,0.75757575,0.75757575,0.0,0.31412435 +294.68956208229065,0.21,0.75757575,0.75757575,0.0,0.31412435 +294.6994209289551,0.21,0.0,0.0,0.0,0.31412435 +294.7094190120697,0.19999999,0.0,0.0,0.0,0.31967452 +294.7194359302521,0.19999999,0.0,0.0,0.0,0.31967452 +294.7295730113983,0.19999999,0.0,0.0,0.0,0.31967452 +294.7394371032715,0.19999999,0.0,0.0,0.0,0.31967452 +294.7494070529938,0.19999999,0.0,0.0,0.0,0.31967452 +294.7594349384308,0.19999999,0.0,0.0,0.0,0.29932398 +294.76939606666565,0.19999999,0.0,0.0,0.0,0.29932398 +294.77945709228516,0.19999999,0.0,0.0,0.0,0.29932398 +294.78943610191345,0.19999999,0.0,0.0,0.0,0.29932398 +294.7994110584259,0.19,0.0,0.0,0.0,0.29932398 +294.8094129562378,0.19,0.0,0.0,0.0,0.29932398 +294.819473028183,0.19,0.0,0.0,0.0,0.2808235 +294.8295900821686,0.19,0.0,0.0,0.0,0.2808235 +294.8395609855652,0.19,0.0,0.0,0.0,0.2808235 +294.8494379520416,0.19,0.0,0.0,0.0,0.2808235 +294.85944509506226,0.17999999,0.0,0.0,0.0,0.2771234 +294.86942195892334,0.17999999,0.0,0.0,0.0,0.2771234 +294.8794310092926,0.17999999,0.0,0.0,0.0,0.2771234 +294.88945412635803,0.17999999,0.0,0.0,0.0,0.2771234 +294.89952397346497,0.17999999,0.0,0.0,0.0,0.2771234 +294.90942192077637,0.17999999,0.0,0.0,0.0,0.2771234 +294.919429063797,0.17999999,0.0,0.0,0.0,0.31227434 +294.9295229911804,0.17999999,0.0,0.0,0.0,0.31227434 +294.9394271373749,0.17999999,0.0,0.0,0.0,0.31227434 +294.9494140148163,0.17999999,0.0,0.0,0.0,0.31227434 +294.959419965744,0.17999999,0.0,0.0,0.0,0.38257617 +294.9694290161133,0.17999999,0.0,0.0,0.0,0.38257617 +294.9795820713043,0.17,0.0,0.0,0.0,0.38257617 +294.989431142807,0.17,0.0,0.0,0.0,0.38257617 +294.9994270801544,0.17,0.0,0.0,0.0,0.38257617 +295.00945496559143,0.17,0.0,0.0,0.0,0.38257617 +295.0194499492645,0.16,0.0,0.0,0.0,0.6064321 +295.0295970439911,0.16,0.0,0.0,0.0,0.6064321 +295.0394470691681,0.16,0.0,0.0,0.0,0.6064321 +295.04943799972534,0.14999999,0.0,0.0,0.0,0.6064321 +295.0595841407776,0.14999999,0.0,0.0,0.0,0.6286328 +295.06944394111633,0.14999999,0.0,0.0,0.0,0.6286328 +295.07940793037415,0.14999999,0.0,0.0,0.0,0.6286328 +295.08942914009094,0.14,0.0,0.0,0.0,0.6286328 +295.0994460582733,0.14,0.0,0.0,0.0,0.6286328 +295.1094150543213,0.14,0.0,0.0,0.0,0.6286328 +295.11943912506104,0.13,0.0,0.0,0.0,0.61938244 +295.1295781135559,0.13,0.0,0.0,0.0,0.61938244 +295.13939094543457,0.13,0.0,0.0,0.0,0.61938244 +295.1494219303131,0.13,0.0,0.0,0.0,0.61938244 +295.15943002700806,0.12,0.0,0.0,0.0,0.6545334 +295.16943311691284,0.12,0.0,0.0,0.0,0.6545334 +295.1794431209564,0.12,0.0,0.0,0.0,0.6545334 +295.18943214416504,0.12,0.0,0.0,0.0,0.6545334 +295.19943404197693,0.11,0.0,0.0,0.0,0.6545334 +295.2094440460205,0.11,0.0,0.0,0.0,0.6545334 +295.2194700241089,0.11,0.0,0.0,0.0,0.6286328 +295.22958612442017,0.11,0.0,0.0,0.0,0.6286328 +295.23944211006165,0.099999994,0.0,0.0,0.0,0.6286328 +295.2494421005249,0.099999994,0.0,0.0,0.0,0.6286328 +295.2594721317291,0.099999994,0.0,0.0,0.0,0.52502996 +295.2694489955902,0.099999994,0.0,0.0,0.0,0.52502996 +295.27943897247314,0.099999994,0.0,0.0,0.0,0.52502996 +295.2894561290741,0.099999994,0.0,0.0,0.0,0.52502996 +295.2994520664215,0.089999996,0.0,0.0,0.0,0.52502996 +295.3094320297241,0.089999996,0.0,0.0,0.0,0.52502996 +295.31944608688354,0.089999996,0.0,0.0,0.0,0.35112536 +295.3296010494232,0.089999996,0.0,0.0,0.0,0.35112536 +295.33944606781006,0.089999996,0.0,0.0,0.0,0.35112536 +295.34943294525146,0.089999996,0.75757575,0.75757575,0.0,0.35112536 +295.3594379425049,0.08,0.75757575,0.75757575,0.0,0.43992776 +295.36943006515503,0.08,1.5151515,1.5151515,0.0,0.43992776 +295.37945795059204,0.08,1.5151515,1.5151515,0.0,0.43992776 +295.38943099975586,0.07,1.5151515,1.5151515,0.0,0.43992776 +295.39942812919617,0.07,1.5151515,1.5151515,0.0,0.43992776 +295.40945410728455,0.06,1.5151515,1.5151515,0.0,0.43992776 +295.4194700717926,0.06,2.2727273,2.2727273,0.0,0.4695285 +295.42959094047546,0.049999997,2.2727273,2.2727273,0.0,0.4695285 +295.4394619464874,0.049999997,2.2727273,2.2727273,0.0,0.4695285 +295.4494299888611,0.049999997,3.787879,3.787879,0.0,0.4695285 +295.45947313308716,0.04,6.060606,6.060606,0.0,0.4917291 +295.46943712234497,0.04,8.333334,8.333334,0.0,0.4917291 +295.4794330596924,0.04,11.363637,11.363637,0.0,0.4917291 +295.4894390106201,0.03,14.39394,14.39394,0.0,0.4917291 +295.49946308135986,0.03,18.939394,18.939394,0.0,0.4917291 +295.5094509124756,0.02,22.727274,22.727274,0.0,0.41587704 +295.51943802833557,0.02,28.030302,28.030302,0.0,0.41587704 +295.5294671058655,0.02,34.09091,34.09091,0.018744143,0.41587704 +295.5395829677582,0.02,40.151516,40.151516,0.018744143,0.41587704 +295.54947209358215,0.02,45.454548,45.454548,0.028116215,0.41587704 +295.5595591068268,0.01,50.757576,50.757576,0.046860356,0.38442627 +295.56944608688354,0.01,57.57576,57.57576,0.0656045,0.38442627 +295.57944893836975,0.01,64.393936,64.393936,0.0656045,0.38442627 +295.5894470214844,0.01,66.66667,66.66667,0.07497657,0.38442627 +295.5994601249695,0.01,53.030304,53.030304,0.10309278,0.38442627 +295.60944509506226,0.01,40.151516,40.151516,0.11246486,0.39182645 +295.6194040775299,0.01,40.151516,40.151516,0.11246486,0.39182645 +295.62959003448486,0.01,28.78788,28.78788,0.131209,0.39182645 +295.6394290924072,0.0,25.0,25.0,0.14058107,0.39182645 +295.6494560241699,0.0,31.818182,31.818182,0.14995314,0.39182645 +295.65947914123535,0.0,39.39394,39.39394,0.14995314,0.3714759 +295.669438123703,0.0,44.696968,44.696968,0.15932521,0.3714759 +295.67957305908203,0.0,49.242424,49.242424,0.16869728,0.3714759 +295.6894590854645,0.0,54.545456,54.545456,0.17806935,0.3714759 +295.6994879245758,0.0,60.606064,60.606064,0.17806935,0.3714759 +295.7094259262085,0.0,65.90909,65.90909,0.17806935,0.375176 +295.7194459438324,0.0,66.66667,66.66667,0.17806935,0.375176 +295.7295980453491,0.0,59.848484,59.848484,0.18744142,0.375176 +295.73948311805725,0.0,51.515152,51.515152,0.18744142,0.375176 +295.74944496154785,0.0,45.454548,45.454548,0.18744142,0.375176 +295.75944900512695,0.0,40.90909,40.90909,0.1968135,0.2438225 +295.7694399356842,0.0,38.636364,38.636364,0.1968135,0.2438225 +295.7796049118042,0.0,36.363636,36.363636,0.1968135,0.2438225 +295.78946113586426,0.0,34.848484,34.848484,0.20618556,0.2438225 +295.79943108558655,0.0,32.575756,32.575756,0.21555763,0.2438225 +295.8094470500946,0.0,31.060606,31.060606,0.20618556,0.2438225 +295.81947112083435,0.0,30.303032,30.303032,0.20618556,0.053267453 +295.82961893081665,0.0,30.303032,30.303032,0.21555763,0.053267453 +295.83944606781006,0.0,31.818182,31.818182,0.22492972,0.053267453 +295.84945607185364,0.0,32.575756,32.575756,0.22492972,0.053267453 +295.85947608947754,0.0,32.575756,32.575756,0.22492972,0.042167164 +295.86946201324463,0.0,31.818182,31.818182,0.23430179,0.042167164 +295.8794569969177,0.0,31.818182,31.818182,0.23430179,0.042167164 +295.8894250392914,0.0,32.575756,32.575756,0.23430179,0.042167164 +295.89947414398193,0.0,34.09091,34.09091,0.23430179,0.042167164 +295.90946412086487,0.0,35.60606,35.60606,0.24367386,0.042167164 +295.9194231033325,0.0,37.121216,37.121216,0.24367386,-0.054035395 +295.92959213256836,0.0,37.121216,37.121216,0.25304592,-0.054035395 +295.93960213661194,0.0,37.121216,37.121216,0.25304592,-0.054035395 +295.94944190979004,0.0,37.121216,37.121216,0.25304592,-0.054035395 +295.9593880176544,0.0,38.636364,38.636364,0.25304592,-0.096586525 +295.9694449901581,0.0,40.90909,40.90909,0.25304592,-0.096586525 +295.979465007782,0.0,43.181816,43.181816,0.25304592,-0.096586525 +295.98944091796875,0.0,45.454548,45.454548,0.25304592,-0.096586525 +295.9994580745697,0.0,46.21212,46.21212,0.25304592,-0.096586525 +296.0094630718231,0.0,46.21212,46.21212,0.25304592,-0.096586525 +296.0194549560547,0.0,46.21212,46.21212,0.25304592,-0.07993608 +296.02963399887085,0.0,46.969696,46.969696,0.25304592,-0.07993608 +296.039400100708,0.0,49.242424,49.242424,0.25304592,-0.07993608 +296.0494351387024,0.0,51.515152,51.515152,0.25304592,-0.07993608 +296.05960607528687,0.0,53.030304,53.030304,0.25304592,-0.013334316 +296.0695071220398,0.0,54.545456,54.545456,0.25304592,-0.013334316 +296.0794560909271,0.0,54.545456,54.545456,0.24367386,-0.013334316 +296.0894560813904,0.0,54.545456,54.545456,0.24367386,-0.013334316 +296.0995030403137,0.0,56.060604,56.060604,0.24367386,-0.013334316 +296.1094379425049,0.0,58.333332,58.333332,0.25304592,-0.013334316 +296.11962699890137,0.0,60.606064,60.606064,0.25304592,0.032916907 +296.1295909881592,0.0,62.878788,62.878788,0.25304592,0.032916907 +296.1394410133362,0.0,64.393936,64.393936,0.25304592,0.032916907 +296.1494460105896,0.0,65.15151,65.15151,0.25304592,0.032916907 +296.1594741344452,0.0,65.15151,65.15151,0.25304592,0.019966569 +296.1696300506592,0.0,65.15151,65.15151,0.25304592,0.019966569 +296.1794741153717,0.0,65.90909,65.90909,0.25304592,0.019966569 +296.18947196006775,0.0,66.66667,66.66667,0.262418,0.019966569 +296.1994469165802,0.0,67.42425,67.42425,0.262418,0.019966569 +296.20944714546204,0.0,68.18182,68.18182,0.262418,0.019966569 +296.21946811676025,0.0,68.18182,68.18182,0.262418,0.034766953 +296.2295949459076,0.0,67.42425,67.42425,0.262418,0.034766953 +296.23947501182556,0.0,66.66667,66.66667,0.25304592,0.034766953 +296.2494730949402,0.0,65.90909,65.90909,0.25304592,0.034766953 +296.25946402549744,0.0,66.66667,66.66667,0.25304592,0.008866279 +296.26946806907654,0.0,68.18182,68.18182,0.25304592,0.008866279 +296.2794539928436,0.0,68.93939,68.93939,0.25304592,0.008866279 +296.2894790172577,0.0,69.69697,69.69697,0.25304592,0.008866279 +296.2995071411133,0.0,70.454544,70.454544,0.25304592,0.008866279 +296.3094530105591,0.0,69.69697,69.69697,0.25304592,0.008866279 +296.31947112083435,0.0,68.18182,68.18182,0.27179006,-0.009634218 +296.3295500278473,0.0,68.18182,68.18182,0.25304592,-0.009634218 +296.33947110176086,0.0,68.93939,68.93939,0.25304592,-0.009634218 +296.3494701385498,0.0,69.69697,69.69697,0.25304592,-0.009634218 +296.35945200920105,0.0,70.454544,70.454544,0.25304592,-0.024434604 +296.36947202682495,0.0,70.454544,70.454544,0.25304592,-0.024434604 +296.3795499801636,0.0,70.454544,70.454544,0.25304592,-0.024434604 +296.38939905166626,0.0,68.93939,68.93939,0.24367386,-0.024434604 +296.39945793151855,0.0,66.66667,66.66667,0.25304592,-0.024434604 +296.4094660282135,0.0,65.15151,65.15151,0.24367386,-0.024434604 +296.41946506500244,0.0,64.393936,64.393936,0.24367386,-0.042935103 +296.4296119213104,0.0,62.878788,62.878788,0.24367386,-0.042935103 +296.4394841194153,0.0,62.121212,62.121212,0.23430179,-0.042935103 +296.4495050907135,0.0,60.606064,60.606064,0.22492972,-0.042935103 +296.4595251083374,0.0,58.333332,58.333332,0.22492972,-0.033684865 +296.4694631099701,0.0,56.060604,56.060604,0.22492972,-0.033684865 +296.47945404052734,0.0,53.030304,53.030304,0.21555763,-0.033684865 +296.4894709587097,0.0,50.0,50.0,0.21555763,-0.033684865 +296.49948596954346,0.0,48.484848,48.484848,0.21555763,-0.033684865 +296.50961804389954,0.0,47.727272,47.727272,0.21555763,-0.041085053 +296.5194640159607,0.0,46.21212,46.21212,0.22492972,-0.041085053 +296.5296130180359,0.0,45.454548,45.454548,0.22492972,-0.041085053 +296.53960704803467,0.0,43.939392,43.939392,0.22492972,-0.041085053 +296.5494599342346,0.0,41.666668,41.666668,0.22492972,-0.041085053 +296.5594630241394,0.0,39.39394,39.39394,0.23430179,0.0014660703 +296.5694890022278,0.0,35.60606,35.60606,0.23430179,0.0014660703 +296.57948112487793,0.0,33.333336,33.333336,0.23430179,0.0014660703 +296.5894629955292,0.0,32.575756,32.575756,0.23430179,0.0014660703 +296.5995171070099,0.0,31.818182,31.818182,0.22492972,0.0014660703 +296.6094501018524,0.0,31.818182,31.818182,0.23430179,-0.11138691 +296.6194999217987,0.0,31.060606,31.060606,0.23430179,-0.11138691 +296.6295840740204,0.0,30.303032,30.303032,0.23430179,-0.11138691 +296.639447927475,0.0,29.545454,29.545454,0.23430179,-0.11138691 +296.6494629383087,0.0,28.030302,28.030302,0.23430179,-0.11138691 +296.6595151424408,0.0,25.757576,25.757576,0.23430179,-0.11138691 +296.6694390773773,0.0,24.242424,24.242424,0.23430179,-0.11138691 +296.6794500350952,0.0,24.242424,24.242424,0.22492972,-0.11138691 +296.6896290779114,0.0,24.242424,24.242424,0.22492972,-0.11138691 +296.6995120048523,0.0,24.242424,24.242424,0.22492972,-0.11138691 +296.7094569206238,0.0,24.242424,24.242424,0.22492972,-0.11693706 +296.71950912475586,0.0,24.242424,24.242424,0.23430179,-0.11693706 +296.7295980453491,0.0,23.484848,23.484848,0.23430179,-0.11693706 +296.7394859790802,0.0,22.727274,22.727274,0.23430179,-0.11693706 +296.749470949173,0.0,25.757576,25.757576,0.22492972,-0.11693706 +296.75949001312256,0.0,30.303032,30.303032,0.22492972,-0.15393804 +296.7694799900055,0.0,35.60606,35.60606,0.21555763,-0.15393804 +296.77946496009827,0.0,35.60606,35.60606,0.21555763,-0.15393804 +296.7894721031189,0.0,40.90909,40.90909,0.21555763,-0.15393804 +296.79946398735046,0.0,49.242424,49.242424,0.20618556,-0.15393804 +296.809623003006,0.0,51.515152,51.515152,0.20618556,-0.13913766 +296.8195240497589,0.0,54.545456,54.545456,0.20618556,-0.13913766 +296.8295750617981,0.0,56.060604,56.060604,0.20618556,-0.13913766 +296.8394651412964,0.0,56.818184,56.818184,0.20618556,-0.13913766 +296.84948110580444,0.0,57.57576,57.57576,0.20618556,-0.13913766 +296.85952496528625,0.0,59.090908,59.090908,0.20618556,-0.1705885 +296.8694689273834,0.0,60.606064,60.606064,0.1968135,-0.1705885 +296.87947511672974,0.0,61.363636,61.363636,0.1968135,-0.1705885 +296.88945603370667,0.0,62.121212,62.121212,0.1968135,-0.1705885 +296.8994839191437,0.0,62.121212,62.121212,0.1968135,-0.1705885 +296.90950107574463,0.0,62.121212,62.121212,0.18744142,-0.1705885 +296.9194519519806,0.0,61.363636,61.363636,0.18744142,-0.19278908 +296.92938804626465,0.0,60.606064,60.606064,0.18744142,-0.19278908 +296.93951392173767,0.0,59.090908,59.090908,0.17806935,-0.19278908 +296.9494740962982,0.0,58.333332,58.333332,0.16869728,-0.19278908 +296.9594609737396,0.0,58.333332,58.333332,0.16869728,-0.23534022 +296.9694700241089,0.0,58.333332,58.333332,0.16869728,-0.23534022 +296.97942900657654,0.0,58.333332,58.333332,0.16869728,-0.23534022 +296.98948192596436,0.0,59.090908,59.090908,0.16869728,-0.23534022 +296.99946904182434,0.0,59.090908,59.090908,0.15932521,-0.23534022 +297.0095090866089,0.0,59.090908,59.090908,0.14995314,-0.23534022 +297.01944613456726,0.0,59.090908,59.090908,0.14995314,-0.30194196 +297.0296471118927,0.0,58.333332,58.333332,0.14995314,-0.30194196 +297.0394940376282,0.0,56.060604,56.060604,0.14995314,-0.30194196 +297.04946994781494,0.0,55.30303,55.30303,0.14058107,-0.30194196 +297.0595510005951,0.0,54.545456,54.545456,0.14058107,-0.33894297 +297.069482088089,0.0,53.78788,53.78788,0.14058107,-0.33894297 +297.0798499584198,0.0,53.78788,53.78788,0.14058107,-0.33894297 +297.08946895599365,0.0,53.030304,53.030304,0.131209,-0.33894297 +297.0994870662689,0.0,52.272724,52.272724,0.131209,-0.33894297 +297.10998010635376,0.0,50.757576,50.757576,0.131209,-0.33894297 +297.11947202682495,0.0,48.484848,48.484848,0.12183693,-0.44624582 +297.129595041275,0.0,46.969696,46.969696,0.12183693,-0.44624582 +297.1394839286804,0.0,44.696968,44.696968,0.12183693,-0.44624582 +297.14947295188904,0.0,43.181816,43.181816,0.11246486,-0.44624582 +297.15948009490967,0.0,40.90909,40.90909,0.10309278,-0.45919618 +297.16946506500244,0.0,39.39394,39.39394,0.10309278,-0.45919618 +297.17959094047546,0.0,38.636364,38.636364,0.09372071,-0.45919618 +297.1895320415497,0.0,37.878788,37.878788,0.09372071,-0.45919618 +297.2030301094055,0.0,37.121216,37.121216,0.08434864,-0.45919618 +297.20946502685547,0.0,36.363636,36.363636,0.07497657,-0.45919618 +297.21949791908264,0.0,36.363636,36.363636,0.0656045,-0.5146976 +297.23005294799805,0.0,36.363636,36.363636,0.0656045,-0.5146976 +297.2396171092987,0.0,36.363636,36.363636,0.0656045,-0.5146976 +297.249498128891,0.0,36.363636,36.363636,0.0656045,-0.5146976 +297.2595100402832,0.0,36.363636,36.363636,0.05623243,-0.5701991 +297.26947498321533,0.0,36.363636,36.363636,0.05623243,-0.5701991 +297.28250098228455,0.0,37.121216,37.121216,0.05623243,-0.5701991 +297.29055094718933,0.0,37.878788,37.878788,0.05623243,-0.5701991 +297.29955410957336,0.0,38.636364,38.636364,0.05623243,-0.5701991 +297.3111870288849,0.0,39.39394,39.39394,0.05623243,-0.5701991 +297.3201959133148,0.0,40.151516,40.151516,0.046860356,-0.59609973 +297.329509973526,0.0,41.666668,41.666668,0.046860356,-0.59609973 +297.33947110176086,0.0,42.424244,42.424244,0.046860356,-0.59609973 +297.35033798217773,0.0,42.424244,42.424244,0.046860356,-0.59609973 +297.3593909740448,0.0,42.424244,42.424244,0.05623243,-0.6238505 +297.3698990345001,0.0,41.666668,41.666668,0.046860356,-0.6238505 +297.37949204444885,0.0,41.666668,41.666668,0.046860356,-0.6238505 +297.39228892326355,0.0,40.90909,40.90909,0.046860356,-0.6238505 +297.40131092071533,0.0,40.151516,40.151516,0.046860356,-0.6238505 +297.410315990448,0.0,40.151516,40.151516,0.046860356,-0.6238505 +297.4195680618286,0.0,40.90909,40.90909,0.046860356,-0.66825175 +297.42954897880554,0.0,40.90909,40.90909,0.046860356,-0.66825175 +297.4405400753021,0.0,40.90909,40.90909,0.046860356,-0.66825175 +297.4495451450348,0.0,41.666668,41.666668,0.037488285,-0.66825175 +297.4594941139221,0.0,41.666668,41.666668,0.046860356,-0.8810074 +297.4704520702362,0.0,41.666668,41.666668,0.046860356,-0.8810074 +297.48173213005066,0.0,41.666668,41.666668,0.046860356,-0.8810074 +297.4899251461029,0.0,40.90909,40.90909,0.046860356,-0.8810074 +297.49948596954346,0.0,40.151516,40.151516,0.046860356,-0.8810074 +297.50940108299255,0.0,40.151516,40.151516,0.046860356,-0.89580774 +297.51985812187195,0.0,39.39394,39.39394,0.046860356,-0.89580774 +297.52939105033875,0.0,39.39394,39.39394,0.046860356,-0.89580774 +297.5395109653473,0.0,39.39394,39.39394,0.05623243,-0.89580774 +297.55001497268677,0.0,40.151516,40.151516,0.05623243,-0.89580774 +297.5594229698181,0.0,40.90909,40.90909,0.05623243,-0.90690804 +297.5719590187073,0.0,41.666668,41.666668,0.046860356,-0.90690804 +297.57947301864624,0.0,41.666668,41.666668,0.046860356,-0.90690804 +297.5897741317749,0.0,41.666668,41.666668,0.046860356,-0.90690804 +297.5995469093323,0.0,41.666668,41.666668,0.046860356,-0.90690804 +297.6097891330719,0.0,40.151516,40.151516,0.046860356,-0.9291086 +297.6194911003113,0.0,39.39394,39.39394,0.037488285,-0.9291086 +297.62983107566833,0.0,37.878788,37.878788,0.037488285,-0.9291086 +297.64051699638367,0.0,35.60606,35.60606,0.037488285,-0.9291086 +297.65094900131226,0.0,34.09091,34.09091,0.037488285,-0.9291086 +297.6594989299774,0.0,32.575756,32.575756,0.037488285,-0.9309587 +297.6699640750885,0.0,30.303032,30.303032,0.037488285,-0.9309587 +297.6806640625,0.0,28.78788,28.78788,0.028116215,-0.9309587 +297.6896650791168,0.0,27.272728,27.272728,0.028116215,-0.9309587 +297.69947504997253,0.0,25.757576,25.757576,0.018744143,-0.9309587 +297.71109890937805,0.0,24.242424,24.242424,0.009372071,-0.9180083 +297.72010707855225,0.0,22.727274,22.727274,0.0,-0.9180083 +297.7303810119629,0.0,21.212122,21.212122,0.0,-0.9180083 +297.73949694633484,0.0,19.69697,19.69697,0.0,-0.9180083 +297.7495141029358,0.01,18.181818,18.181818,0.0,-0.9180083 +297.7597460746765,0.01,17.424242,17.424242,0.0,-0.9198584 +297.77075695991516,0.01,15.909091,15.909091,0.0,-0.9198584 +297.7794909477234,0.01,15.151516,15.151516,0.0,-0.9198584 +297.7896430492401,0.01,14.39394,14.39394,0.0,-0.9198584 +297.8013219833374,0.02,12.878788,12.878788,0.0,-0.9198584 +297.81033992767334,0.02,12.121212,12.121212,0.0,-0.92170846 +297.81960105895996,0.02,11.363637,11.363637,0.0,-0.92170846 +297.8294620513916,0.02,10.606061,10.606061,0.0,-0.92170846 +297.83972907066345,0.03,9.848485,9.848485,0.0,-0.92170846 +297.85179710388184,0.03,9.090909,9.090909,0.0,-0.92170846 +297.85948395729065,0.04,9.090909,9.090909,0.0,-0.9254085 +297.8697590827942,0.04,8.333334,8.333334,0.0,-0.9254085 +297.8795850276947,0.049999997,7.575758,7.575758,0.0,-0.9254085 +297.8897030353546,0.06,6.818182,6.818182,0.0,-0.9254085 +297.89950799942017,0.06,6.060606,6.060606,0.0,-0.9254085 +297.9095859527588,0.06,6.060606,6.060606,0.0,-0.9254085 +297.91942596435547,0.07,5.3030305,5.3030305,0.0,-0.9365089 +297.92939710617065,0.07,5.3030305,5.3030305,0.0,-0.9365089 +297.93949913978577,0.08,4.5454545,4.5454545,0.0,-0.9365089 +297.95090103149414,0.08,4.5454545,4.5454545,0.0,-0.9365089 +297.95990800857544,0.089999996,3.787879,3.787879,0.0,-0.92355853 +297.96953201293945,0.089999996,3.787879,3.787879,0.0,-0.92355853 +297.97947692871094,0.099999994,3.030303,3.030303,0.0,-0.92355853 +297.9907081127167,0.099999994,3.030303,3.030303,0.0,-0.92355853 +297.9996111392975,0.11,2.2727273,2.2727273,0.0,-0.92355853 +298.0094060897827,0.11,2.2727273,2.2727273,0.0,-0.92355853 +298.0195050239563,0.11,2.2727273,2.2727273,0.0,-0.9513092 +298.03032207489014,0.12,1.5151515,1.5151515,0.0,-0.9513092 +298.0405240058899,0.12,1.5151515,1.5151515,0.0,-0.9513092 +298.050008058548,0.12,1.5151515,1.5151515,0.0,-0.9513092 +298.05946612358093,0.13,0.75757575,0.75757575,0.0,-0.869907 +298.0708861351013,0.14,0.75757575,0.75757575,0.0,-0.869907 +298.0798010826111,0.14,0.75757575,0.75757575,0.0,-0.869907 +298.0899541378021,0.14999999,0.75757575,0.75757575,0.0,-0.869907 +298.0995330810547,0.16,0.0,0.0,0.0,-0.869907 +298.1116991043091,0.16,0.0,0.0,0.0,-0.7515039 +298.12037897109985,0.17,0.0,0.0,0.0,-0.7515039 +298.13038206100464,0.17999999,0.0,0.0,0.0,-0.7515039 +298.1394910812378,0.19,0.0,0.0,0.0,-0.7515039 +298.1493909358978,0.19,0.0,0.0,0.0,-0.7515039 +298.1599910259247,0.19999999,0.0,0.0,0.0,-0.78295475 +298.1699559688568,0.19999999,0.0,0.0,0.0,-0.78295475 +298.1795310974121,0.21,0.0,0.0,0.0,-0.78295475 +298.1894271373749,0.21,0.0,0.0,0.0,-0.78295475 +298.20315194129944,0.21,0.0,0.0,0.0,-0.78295475 +298.210813999176,0.22,0.0,0.0,0.0,-0.78295475 +298.2195200920105,0.22,0.0,0.0,0.0,-0.84400636 +298.2302050590515,0.22,0.0,0.0,0.0,-0.84400636 +298.23941111564636,0.22,0.0,0.0,0.0,-0.84400636 +298.2495000362396,0.22999999,0.0,0.0,0.0,-0.84400636 +298.25951194763184,0.22999999,0.0,0.0,0.0,-0.85695666 +298.27031993865967,0.22999999,0.0,0.0,0.0,-0.85695666 +298.27958393096924,0.22999999,0.0,0.0,0.0,-0.85695666 +298.2924349308014,0.24,0.0,0.0,0.0,-0.85695666 +298.2995090484619,0.24,0.0,0.0,0.0,-0.85695666 +298.31128907203674,0.24,0.0,0.0,0.0,-0.85695666 +298.3201849460602,0.24,0.0,0.0,0.0,-0.8495565 +298.32951307296753,0.25,0.0,0.0,0.0,-0.8495565 +298.3395299911499,0.25,0.0,0.0,0.0,-0.8495565 +298.35022711753845,0.26,0.0,0.0,0.0,-0.8495565 +298.3605020046234,0.26,0.0,0.0,0.0,-0.8606568 +298.3695330619812,0.26,0.0,0.0,0.0,-0.8606568 +298.37952709198,0.26,0.0,0.0,0.0,-0.8606568 +298.3916440010071,0.26,0.0,0.0,0.0,-0.8606568 +298.40054202079773,0.26,0.0,0.0,0.0,-0.8606568 +298.40946912765503,0.26,0.0,0.0,0.0,-0.8606568 +298.41948199272156,0.26,0.0,0.0,0.0,-0.8588068 +298.42966508865356,0.25,0.0,0.0,0.0,-0.8588068 +298.4405429363251,0.25,0.0,0.0,0.0,-0.8588068 +298.4506981372833,0.25,0.0,0.0,0.0,-0.8588068 +298.4595100879669,0.25,0.0,0.0,0.0,-0.85695666 +298.47005701065063,0.25,0.0,0.0,0.0,-0.85695666 +298.4807469844818,0.25,0.0,0.0,0.0,-0.85695666 +298.48964405059814,0.25,0.0,0.0,0.0,-0.85695666 +298.4995160102844,0.25,0.0,0.0,0.0,-0.85695666 +298.509418964386,0.25,0.0,0.0,0.0,-0.82920593 +298.5216851234436,0.26,0.0,0.0,0.0,-0.82920593 +298.5303909778595,0.26,0.0,0.0,0.0,-0.82920593 +298.5394780635834,0.26,0.0,0.0,0.0,-0.82920593 +298.54994201660156,0.26,0.0,0.0,0.0,-0.82920593 +298.5607271194458,0.26999998,0.0,0.0,0.0,-0.8458564 +298.56982612609863,0.26999998,0.0,0.0,0.0,-0.8458564 +298.5795199871063,0.26999998,0.0,0.0,0.0,-0.8458564 +298.5901629924774,0.26999998,0.0,0.0,0.0,-0.8458564 +298.5995969772339,0.26999998,0.0,0.0,0.0,-0.8458564 +298.6123309135437,0.26999998,0.0,0.0,0.0,-0.8255059 +298.6195390224457,0.28,0.0,0.0,0.0,-0.8255059 +298.6303799152374,0.28,0.0,0.0,0.0,-0.8255059 +298.639466047287,0.26999998,0.0,0.0,0.0,-0.8255059 +298.65001702308655,0.26999998,0.0,0.0,0.0,-0.8255059 +298.6594970226288,0.26999998,0.0,0.0,0.0,-0.79590505 +298.6694140434265,0.26999998,0.0,0.0,0.0,-0.79590505 +298.6801390647888,0.26999998,0.0,0.0,0.0,-0.79590505 +298.6896870136261,0.26999998,0.0,0.0,0.0,-0.79590505 +298.69950699806213,0.26999998,0.0,0.0,0.0,-0.79590505 +298.71062898635864,0.26999998,0.0,0.0,0.0,-0.7496539 +298.7213101387024,0.26999998,0.0,0.0,0.0,-0.7496539 +298.7293949127197,0.26999998,0.0,0.0,0.0,-0.7496539 +298.7394149303436,0.26999998,0.0,0.0,0.0,-0.7496539 +298.75156903266907,0.26999998,0.0,0.0,0.0,-0.7496539 +298.75988602638245,0.26,0.0,0.0,0.0,-0.6460511 +298.7700819969177,0.26,0.0,0.0,0.0,-0.6460511 +298.77953600883484,0.26,0.0,0.0,0.0,-0.6460511 +298.7925319671631,0.26,0.0,0.0,0.0,-0.6460511 +298.7994010448456,0.26,0.0,0.0,0.0,-0.6460511 +298.81039094924927,0.26,0.0,0.0,0.0,-0.36854377 +298.81955909729004,0.26,0.0,0.0,0.0,-0.36854377 +298.82939195632935,0.26,0.0,0.0,0.0,-0.36854377 +298.840548992157,0.26,0.0,0.0,0.0,-0.36854377 +298.8510479927063,0.26,0.0,0.0,0.0,-0.36854377 +298.85951805114746,0.26,0.0,0.0,0.0,-0.4277453 +298.8694770336151,0.26,0.0,0.0,0.0,-0.4277453 +298.88168501853943,0.25,0.0,0.0,0.0,-0.4277453 +298.8905739784241,0.25,0.0,0.0,0.0,-0.4277453 +298.8995249271393,0.25,0.0,0.0,0.0,-0.4277453 +298.9107360839844,0.24,0.0,0.0,0.0,-0.4277453 +298.9197680950165,0.24,0.0,0.0,0.0,-0.4832468 +298.93042492866516,0.24,0.0,0.0,0.0,-0.4832468 +298.9396209716797,0.24,0.0,0.0,0.0,-0.4832468 +298.95001697540283,0.24,0.0,0.0,0.0,-0.4832468 +298.959440946579,0.24,0.0,0.0,0.0,-0.49064696 +298.970782995224,0.22999999,0.0,0.0,0.0,-0.49064696 +298.9795069694519,0.22999999,0.0,0.0,0.0,-0.49064696 +298.991336107254,0.22999999,0.0,0.0,0.0,-0.49064696 +298.9997639656067,0.22999999,0.0,0.0,0.0,-0.49064696 +299.009948015213,0.22999999,0.0,0.0,0.0,-0.49064696 +299.0195279121399,0.22,0.0,0.0,0.0,-0.50174725 +299.0294179916382,0.22,0.0,0.0,0.0,-0.50174725 +299.0394070148468,0.22,0.0,0.0,0.0,-0.50174725 +299.05003905296326,0.22,0.0,0.0,0.0,-0.50174725 +299.05948305130005,0.22,0.0,0.0,0.0,-0.5220978 +299.07309103012085,0.22,0.0,0.0,0.0,-0.5220978 +299.0795419216156,0.22,0.0,0.0,0.0,-0.5220978 +299.0911591053009,0.21,0.0,0.0,0.0,-0.5220978 +299.09955406188965,0.21,0.0,0.0,0.0,-0.5220978 +299.1094501018524,0.21,0.0,0.0,0.0,-0.5220978 +299.12092208862305,0.19999999,0.0,0.0,0.0,-0.5350482 +299.1293890476227,0.19999999,0.0,0.0,0.0,-0.5350482 +299.13951206207275,0.19,0.0,0.0,0.0,-0.5350482 +299.1530411243439,0.19,0.0,0.0,0.0,-0.5350482 +299.16330194473267,0.17999999,0.0,0.0,0.0,-0.5479985 +299.17230892181396,0.17999999,0.0,0.0,0.0,-0.5479985 +299.1795370578766,0.17,0.0,0.0,0.0,-0.5479985 +299.1903409957886,0.17,0.0,0.0,0.0,-0.5479985 +299.20188307762146,0.16,0.0,0.0,0.0,-0.5479985 +299.2108690738678,0.14999999,0.0,0.0,0.0,-0.5479985 +299.2194039821625,0.14999999,0.0,0.0,0.0,-0.5146976 +299.2293930053711,0.14999999,0.0,0.0,0.0,-0.5146976 +299.2393910884857,0.14,0.0,0.0,0.0,-0.5146976 +299.25121998786926,0.14,0.0,0.0,0.0,-0.5146976 +299.25955605506897,0.13,0.0,0.0,0.0,-0.4184951 +299.271537065506,0.13,0.0,0.0,0.0,-0.4184951 +299.2805371284485,0.12,0.0,0.0,0.0,-0.4184951 +299.2895619869232,0.12,0.0,0.0,0.0,-0.4184951 +299.2995460033417,0.11,0.0,0.0,0.0,-0.4184951 +299.3098249435425,0.11,0.0,0.0,0.0,-0.4184951 +299.3202750682831,0.099999994,0.0,0.0,0.0,-0.14283776 +299.3294360637665,0.099999994,0.0,0.0,0.0,-0.14283776 +299.3395481109619,0.089999996,0.0,0.0,0.0,-0.14283776 +299.3494460582733,0.089999996,0.0,0.0,0.0,-0.14283776 +299.36176109313965,0.08,0.0,0.0,0.0,0.021816617 +299.3693890571594,0.08,0.0,0.0,0.0,0.021816617 +299.3795609474182,0.07,0.0,0.0,0.0,0.021816617 +299.38956093788147,0.07,0.0,0.0,0.0,0.021816617 +299.3997781276703,0.06,0.0,0.0,0.0,0.021816617 +299.4097981452942,0.06,0.0,0.0,0.0,0.021816617 +299.4194779396057,0.049999997,0.0,0.0,0.0,0.20497148 +299.42940402030945,0.049999997,0.0,0.0,0.0,0.20497148 +299.4394280910492,0.04,0.0,0.0,0.0,0.20497148 +299.4502320289612,0.04,0.0,0.0,0.0,0.20497148 +299.45955300331116,0.03,0.0,0.0,0.0,0.3233746 +299.4697730541229,0.03,0.0,0.0,0.0,0.3233746 +299.4806890487671,0.02,0.0,0.0,0.0,0.3233746 +299.4896960258484,0.02,0.0,0.0,0.0,0.3233746 +299.49954104423523,0.02,0.0,0.0,0.0,0.3233746 +299.509535074234,0.02,0.0,0.0,0.0,0.38442627 +299.51958203315735,0.02,0.0,0.0,0.0,0.38442627 +299.5294189453125,0.02,0.0,0.0,0.0,0.38442627 +299.53956413269043,0.02,0.0,0.0,0.0,0.38442627 +299.549987077713,0.03,0.0,0.0,0.0,0.38442627 +299.56011509895325,0.03,0.0,0.0,0.0,0.38442627 +299.5706489086151,0.03,0.0,0.0,0.0,0.38442627 +299.5795331001282,0.03,0.0,0.0,0.0,0.38442627 +299.5902600288391,0.03,0.0,0.0,0.0,0.38442627 +299.5996220111847,0.03,0.0,0.0,0.0,0.38442627 +299.6123559474945,0.03,0.75757575,0.75757575,0.0,0.5305801 +299.61953711509705,0.03,0.75757575,0.75757575,0.0,0.5305801 +299.62939190864563,0.03,1.5151515,1.5151515,0.0,0.5305801 +299.64053201675415,0.03,2.2727273,2.2727273,0.0,0.5305801 +299.650269985199,0.03,2.2727273,2.2727273,0.0,0.5305801 +299.6594240665436,0.03,3.030303,3.030303,0.0,0.5583309 +299.66944313049316,0.03,3.030303,3.030303,0.0,0.5583309 +299.6807150840759,0.03,3.030303,3.030303,0.0,0.5583309 +299.6897270679474,0.03,3.030303,3.030303,0.0,0.5583309 +299.69953298568726,0.03,2.2727273,2.2727273,0.0,0.5583309 +299.7101650238037,0.03,2.2727273,2.2727273,0.0,0.57868135 +299.7223720550537,0.03,1.5151515,1.5151515,0.0,0.57868135 +299.7313959598541,0.03,0.75757575,0.75757575,0.0,0.57868135 +299.73953795433044,0.03,0.75757575,0.75757575,0.0,0.57868135 +299.7494180202484,0.04,0.0,0.0,0.0,0.57868135 +299.759535074234,0.04,0.0,0.0,0.0,0.5916317 +299.7708389759064,0.04,0.0,0.0,0.0,0.5916317 +299.779443025589,0.04,0.0,0.0,0.0,0.5916317 +299.78952503204346,0.049999997,0.0,0.0,0.0,0.5916317 +299.7995059490204,0.049999997,0.0,0.0,0.0,0.5916317 +299.81251192092896,0.049999997,0.0,0.0,0.0,0.5916317 +299.8195729255676,0.06,0.0,0.0,0.0,0.5916317 +299.82939195632935,0.06,0.0,0.0,0.0,0.5916317 +299.8394150733948,0.07,0.0,0.0,0.0,0.5916317 +299.8495020866394,0.07,0.0,0.0,0.0,0.5916317 +299.85954308509827,0.08,0.0,0.0,0.0,0.5916317 +299.8699629306793,0.08,0.0,0.0,0.0,0.5916317 +299.87969613075256,0.089999996,0.0,0.0,0.0,0.5916317 +299.89365911483765,0.089999996,0.0,0.0,0.0,0.5916317 +299.89956402778625,0.099999994,0.0,0.0,0.0,0.5916317 +299.91170501708984,0.099999994,0.0,0.0,0.0,0.5916317 +299.92072105407715,0.11,0.0,0.0,0.0,0.60088205 +299.9296021461487,0.12,0.0,0.0,0.0,0.60088205 +299.93944811820984,0.12,0.0,0.0,0.0,0.60088205 +299.9510099887848,0.13,0.0,0.0,0.0,0.60088205 +299.95991802215576,0.14,0.0,0.0,0.0,0.59533185 +299.96967101097107,0.14,0.0,0.0,0.0,0.59533185 +299.9795320034027,0.14999999,0.0,0.0,0.0,0.59533185 +299.9928250312805,0.16,0.0,0.0,0.0,0.59533185 +300.0018529891968,0.17,0.0,0.0,0.0,0.59533185 +300.0108630657196,0.17,0.0,0.0,0.0,0.59533185 +300.01941895484924,0.17999999,0.0,0.0,0.0,0.5860816 +300.0295569896698,0.19,0.0,0.0,0.0,0.5860816 +300.03943490982056,0.19,0.0,0.0,0.0,0.5860816 +300.0502369403839,0.19999999,0.0,0.0,0.0,0.5860816 +300.0594320297241,0.21,0.0,0.0,0.0,0.5990319 +300.073961019516,0.21,0.0,0.0,0.0,0.5990319 +300.0812940597534,0.22,0.0,0.0,0.0,0.5990319 +300.0919990539551,0.22,0.0,0.0,0.0,0.5990319 +300.09957003593445,0.22999999,0.0,0.0,0.0,0.5990319 +300.11004400253296,0.24,0.0,0.0,0.0,0.5990319 +300.120325088501,0.24,0.0,0.0,0.0,0.6082822 +300.12943506240845,0.25,0.0,0.0,0.0,0.6082822 +300.13943910598755,0.25,0.0,0.0,0.0,0.6082822 +300.150151014328,0.26,0.0,0.0,0.0,0.6082822 +300.16090393066406,0.26,0.0,0.0,0.0,0.61753243 +300.1694700717926,0.26999998,0.0,0.0,0.0,0.61753243 +300.1795480251312,0.26999998,0.0,0.0,0.0,0.61753243 +300.1907389163971,0.28,0.0,0.0,0.0,0.61753243 +300.2001540660858,0.28,0.0,0.0,0.0,0.61753243 +300.2094249725342,0.29,0.0,0.0,0.0,0.61753243 +300.2195930480957,0.29,0.0,0.0,0.0,0.641583 +300.22940707206726,0.29999998,0.0,0.0,0.0,0.641583 +300.23942613601685,0.29999998,0.0,0.0,0.0,0.641583 +300.2540490627289,0.31,0.0,0.0,0.0,0.641583 +300.2595729827881,0.31,0.0,0.0,0.0,0.57498133 +300.27187991142273,0.32,0.0,0.0,0.0,0.57498133 +300.28077697753906,0.32,0.0,0.0,0.0,0.57498133 +300.2896900177002,0.32999998,0.0,0.0,0.0,0.57498133 +300.2994749546051,0.32999998,0.0,0.0,0.0,0.57498133 +300.31164598464966,0.34,0.0,0.0,0.0,0.57498133 +300.3195559978485,0.34,0.0,0.0,0.0,0.57498133 +300.32940101623535,0.34,0.0,0.0,0.0,0.57498133 +300.3395719528198,0.35,0.0,0.0,0.0,0.57498133 +300.35211396217346,0.35,0.0,0.0,0.0,0.57498133 +300.3599169254303,0.35,0.0,0.0,0.0,0.55278075 +300.36991906166077,0.35999998,0.0,0.0,0.0,0.55278075 +300.37959003448486,0.35999998,0.0,0.0,0.0,0.55278075 +300.3894770145416,0.35999998,0.0,0.0,0.0,0.55278075 +300.401771068573,0.37,0.0,0.0,0.0,0.55278075 +300.4097020626068,0.37,0.0,0.0,0.0,0.55278075 +300.41954803466797,0.37,0.0,0.0,0.0,0.59533185 +300.42944598197937,0.38,0.0,0.0,0.0,0.59533185 +300.4394431114197,0.38,0.0,0.0,0.0,0.59533185 +300.45016503334045,0.38,0.0,0.0,0.0,0.59533185 +300.4595830440521,0.39,0.0,0.0,0.0,0.60088205 +300.4697709083557,0.39,0.0,0.0,0.0,0.60088205 +300.47963213920593,0.39,0.0,0.0,0.0,0.60088205 +300.48986291885376,0.39999998,0.0,0.0,0.0,0.60088205 +300.4995861053467,0.39999998,0.0,0.0,0.0,0.60088205 +300.50991010665894,0.39999998,0.0,0.0,0.0,0.62123257 +300.5214431285858,0.41,0.0,0.0,0.0,0.62123257 +300.5294289588928,0.41,0.0,0.0,0.0,0.62123257 +300.5395839214325,0.41,0.0,0.0,0.0,0.62123257 +300.55071902275085,0.41,0.0,0.0,0.0,0.62123257 +300.55988597869873,0.41,0.0,0.0,0.0,0.6101322 +300.56980204582214,0.41,0.0,0.0,0.0,0.6101322 +300.5794870853424,0.41,0.0,0.0,0.0,0.6101322 +300.59102606773376,0.41,0.0,0.0,0.0,0.6101322 +300.6000409126282,0.41,0.0,0.0,0.0,0.6101322 +300.60939502716064,0.42,0.0,0.0,0.0,0.639733 +300.61946511268616,0.42,0.0,0.0,0.0,0.639733 +300.63074707984924,0.42,0.0,0.0,0.0,0.639733 +300.63939905166626,0.42,0.0,0.0,0.0,0.639733 +300.65016293525696,0.42,0.0,0.0,0.0,0.639733 +300.6595859527588,0.42,0.0,0.0,0.0,0.6082822 +300.67213797569275,0.42999998,0.0,0.0,0.0,0.6082822 +300.6806380748749,0.42999998,0.0,0.0,0.0,0.6082822 +300.69019293785095,0.42999998,0.0,0.0,0.0,0.6082822 +300.69956612586975,0.42999998,0.0,0.0,0.0,0.6082822 +300.7096691131592,0.42999998,0.0,0.0,0.0,0.6082822 +300.7217321395874,0.42999998,0.0,0.0,0.0,0.6082822 +300.7294030189514,0.42999998,0.0,0.0,0.0,0.6082822 +300.7395701408386,0.42999998,0.0,0.0,0.0,0.6082822 +300.74969506263733,0.42999998,0.0,0.0,0.0,0.6082822 +300.76206707954407,0.42999998,0.0,0.0,0.0,0.56018096 +300.77096605300903,0.42999998,0.0,0.0,0.0,0.56018096 +300.7796001434326,0.44,0.0,0.0,0.0,0.56018096 +300.7940230369568,0.44,0.0,0.0,0.0,0.56018096 +300.80284810066223,0.44,0.0,0.0,0.0,0.56018096 +300.81055998802185,0.44,0.0,0.0,0.0,0.4454778 +300.8195779323578,0.44,0.0,0.0,0.0,0.4454778 +300.8294110298157,0.44,0.0,0.0,0.0,0.4454778 +300.8394250869751,0.44,0.0,0.0,0.0,0.4454778 +300.8511710166931,0.45,0.0,0.0,0.0,0.4454778 +300.8595631122589,0.45,0.0,0.0,0.0,0.4214272 +300.8704059123993,0.45,0.0,0.0,0.0,0.4214272 +300.8794150352478,0.45,0.0,0.0,0.0,0.4214272 +300.8929431438446,0.45,0.0,0.0,0.0,0.4214272 +300.89958596229553,0.45,0.0,0.0,0.0,0.4214272 +300.9109101295471,0.45,0.0,0.0,0.0,0.4214272 +300.9199130535126,0.45,0.0,0.0,0.0,0.42512733 +300.92941308021545,0.45,0.0,0.0,0.0,0.42512733 +300.9395070075989,0.45,0.0,0.0,0.0,0.42512733 +300.95155906677246,0.45,0.0,0.0,0.0,0.42512733 +300.9605610370636,0.45,0.0,0.0,0.0,0.41957718 +300.96956491470337,0.45999998,0.0,0.0,0.0,0.41957718 +300.9795789718628,0.45999998,0.0,0.0,0.0,0.41957718 +300.9911870956421,0.45999998,0.0,0.0,0.0,0.41957718 +301.0008211135864,0.45999998,0.0,0.0,0.0,0.41957718 +301.0095570087433,0.47,0.0,0.0,0.0,0.41957718 +301.0195860862732,0.47,0.0,0.0,0.0,0.4084769 +301.02953696250916,0.47,0.0,0.0,0.0,0.4084769 +301.0394649505615,0.48,0.0,0.0,0.0,0.4084769 +301.050714969635,0.48,0.0,0.0,0.0,0.4084769 +301.0595989227295,0.48,0.0,0.0,0.0,0.37332594 +301.07044506073,0.48,0.0,0.0,0.0,0.37332594 +301.08131408691406,0.48999998,0.0,0.0,0.0,0.37332594 +301.09075593948364,0.48999998,0.0,0.0,0.0,0.37332594 +301.09958600997925,0.48999998,0.0,0.0,0.0,0.37332594 +301.10951113700867,0.48999998,0.0,0.0,0.0,0.37332594 +301.11986899375916,0.5,0.0,0.0,0.0,0.3215246 +301.1293969154358,0.5,0.0,0.0,0.0,0.3215246 +301.1394591331482,0.5,0.0,0.0,0.0,0.3215246 +301.1498830318451,0.5,0.0,0.0,0.0,0.3215246 +301.16020107269287,0.51,0.0,0.0,0.0,0.31782445 +301.17170095443726,0.51,0.0,0.0,0.0,0.31782445 +301.1795790195465,0.51,0.0,0.0,0.0,0.31782445 +301.1896770000458,0.51,0.0,0.0,0.0,0.31782445 +301.200345993042,0.51,0.0,0.0,0.0,0.31782445 +301.21003794670105,0.51,0.0,0.0,0.0,0.31782445 +301.2195920944214,0.51,0.0,0.0,0.0,0.2697232 +301.2294170856476,0.52,0.0,0.0,0.0,0.2697232 +301.23945212364197,0.52,0.0,0.0,0.0,0.2697232 +301.2520821094513,0.52,0.0,0.0,0.0,0.2697232 +301.25961995124817,0.53,0.0,0.0,0.0,0.21237166 +301.26940512657166,0.53,0.0,0.0,0.0,0.21237166 +301.27960109710693,0.53999996,0.0,0.0,0.0,0.21237166 +301.29120111465454,0.53999996,0.0,0.0,0.0,0.21237166 +301.2995870113373,0.53999996,0.0,0.0,0.0,0.21237166 +301.3117480278015,0.53999996,0.0,0.0,0.0,0.22347198 +301.3211829662323,0.55,0.0,0.0,0.0,0.22347198 +301.32942509651184,0.55,0.0,0.0,0.0,0.22347198 +301.3395800590515,0.53999996,0.0,0.0,0.0,0.22347198 +301.35004901885986,0.53999996,0.0,0.0,0.0,0.22347198 +301.36056208610535,0.53999996,0.0,0.0,0.0,0.21052164 +301.3695421218872,0.53999996,0.0,0.0,0.0,0.21052164 +301.37961196899414,0.53999996,0.0,0.0,0.0,0.21052164 +301.3903810977936,0.53999996,0.0,0.0,0.0,0.21052164 +301.39956402778625,0.53999996,0.0,0.0,0.0,0.21052164 +301.40950202941895,0.53999996,0.0,0.0,0.0,0.21052164 +301.41956996917725,0.53999996,0.0,0.0,0.0,0.16797051 +301.43024802207947,0.55,0.0,0.0,0.0,0.16797051 +301.4394700527191,0.55,0.0,0.0,0.0,0.16797051 +301.45003509521484,0.55,0.0,0.0,0.0,0.16797051 +301.4594850540161,0.55,0.0,0.0,0.0,0.22347198 +301.4715220928192,0.55,0.0,0.0,0.0,0.22347198 +301.47941398620605,0.55,0.0,0.0,0.0,0.22347198 +301.48953890800476,0.55,0.0,0.0,0.0,0.22347198 +301.4995310306549,0.55,0.0,0.0,0.0,0.22347198 +301.510409116745,0.55,0.0,0.0,0.0,0.21422173 +301.5195429325104,0.55,0.0,0.0,0.0,0.21422173 +301.52944803237915,0.55,0.0,0.0,0.0,0.21422173 +301.5396089553833,0.55,0.0,0.0,0.0,0.21422173 +301.54943108558655,0.55,0.0,0.0,0.0,0.21422173 +301.55951499938965,0.55,0.0,0.0,0.0,0.19202115 +301.5706961154938,0.55,0.0,0.0,0.0,0.19202115 +301.57960295677185,0.55,0.0,0.0,0.0,0.19202115 +301.5901870727539,0.55,0.0,0.0,0.0,0.19202115 +301.59950709342957,0.55,0.0,0.0,0.0,0.19202115 +301.60966992378235,0.56,0.0,0.0,0.0,0.16057031 +301.6195900440216,0.56,0.0,0.0,0.0,0.16057031 +301.62941694259644,0.56,0.0,0.0,0.0,0.16057031 +301.63950991630554,0.56,0.0,0.0,0.0,0.16057031 +301.6494929790497,0.56,0.0,0.0,0.0,0.16057031 +301.65940403938293,0.56,0.0,0.0,0.0,0.1531701 +301.6698520183563,0.56,0.0,0.0,0.0,0.1531701 +301.67970514297485,0.56,0.0,0.0,0.0,0.1531701 +301.6903450489044,0.56,0.0,0.0,0.0,0.1531701 +301.6995859146118,0.57,0.0,0.0,0.0,0.1531701 +301.70957112312317,0.57,0.0,0.0,0.0,0.14021976 +301.7201189994812,0.57,0.0,0.0,0.0,0.14021976 +301.72953510284424,0.57,0.0,0.0,0.0,0.14021976 +301.7396020889282,0.57,0.0,0.0,0.0,0.14021976 +301.750972032547,0.57,0.0,0.0,0.0,0.14021976 +301.75991010665894,0.57,0.0,0.0,0.0,0.1420698 +301.7719030380249,0.57,0.0,0.0,0.0,0.1420698 +301.77961111068726,0.57,0.0,0.0,0.0,0.1420698 +301.7899329662323,0.57,0.0,0.0,0.0,0.1420698 +301.80129313468933,0.57,0.0,0.0,0.0,0.1420698 +301.8102970123291,0.57,0.0,0.0,0.0,0.1346696 +301.8195309638977,0.57,0.0,0.0,0.0,0.1346696 +301.82941913604736,0.57,0.0,0.0,0.0,0.1346696 +301.8394660949707,0.57,0.0,0.0,0.0,0.1346696 +301.85003113746643,0.57,0.0,0.0,0.0,0.1346696 +301.8596079349518,0.57,0.0,0.0,0.0,0.110618964 +301.871041059494,0.57,0.0,0.0,0.0,0.110618964 +301.8800621032715,0.57,0.0,0.0,0.0,0.110618964 +301.88994097709656,0.57,0.0,0.0,0.0,0.110618964 +301.8996031284332,0.57,0.0,0.0,0.0,0.110618964 +301.9114201068878,0.57,0.0,0.0,0.0,0.110618964 +301.92032408714294,0.57,0.0,0.0,0.0,0.068067834 +301.92942690849304,0.57,0.0,0.0,0.0,0.068067834 +301.93962502479553,0.57,0.0,0.0,0.0,0.068067834 +301.94995307922363,0.56,0.0,0.0,0.0,0.068067834 +301.96120405197144,0.56,0.0,0.0,0.0,0.019966569 +301.970242023468,0.56,0.0,0.0,0.0,0.019966569 +301.97959208488464,0.56,0.0,0.0,0.0,0.019966569 +301.990257024765,0.56,0.0,0.0,0.0,0.019966569 +302.00053906440735,0.56,0.0,0.0,0.0,0.019966569 +302.00946497917175,0.56,0.0,0.0,0.0,0.019966569 +302.01959013938904,0.56,0.0,0.0,0.0,0.021816617 +302.02946400642395,0.56,0.0,0.0,0.0,0.021816617 +302.0394220352173,0.56,0.0,0.0,0.0,0.021816617 +302.0508589744568,0.56,0.0,0.0,0.0,0.021816617 +302.0594630241394,0.56,0.0,0.0,0.0,0.023666665 +302.0711770057678,0.56,0.0,0.0,0.0,0.023666665 +302.080157995224,0.56,0.0,0.0,0.0,0.023666665 +302.08967995643616,0.56,0.0,0.0,0.0,0.023666665 +302.09962606430054,0.56,0.0,0.0,0.0,0.023666665 +302.10994696617126,0.56,0.0,0.0,0.0,0.023666665 +302.1205949783325,0.56,0.0,0.0,0.0,0.019966569 +302.1294209957123,0.56,0.0,0.0,0.0,0.019966569 +302.1396141052246,0.56,0.0,0.0,0.0,0.019966569 +302.15049409866333,0.56,0.0,0.0,0.0,0.019966569 +302.1594979763031,0.56,0.0,0.0,0.0,0.04031712 +302.1698679924011,0.56,0.0,0.0,0.0,0.04031712 +302.1796009540558,0.56,0.0,0.0,0.0,0.04031712 +302.1927080154419,0.56,0.0,0.0,0.0,0.04031712 +302.2011969089508,0.56,0.0,0.0,0.0,0.04031712 +302.210736989975,0.56,0.0,0.0,0.0,0.04031712 +302.21961998939514,0.56,0.0,0.0,0.0,0.0070162313 +302.22941303253174,0.56,0.0,0.0,0.0,0.0070162313 +302.2394759654999,0.56,0.0,0.0,0.0,0.0070162313 +302.24961400032043,0.56,0.0,0.0,0.0,0.0070162313 +302.25963306427,0.56,0.0,0.0,0.0,0.010716328 +302.27385210990906,0.56,0.0,0.0,0.0,0.010716328 +302.28288102149963,0.56,0.0,0.0,0.0,0.010716328 +302.29189801216125,0.56,0.0,0.0,0.0,0.010716328 +302.2996070384979,0.56,0.0,0.0,0.0,0.010716328 +302.309907913208,0.56,0.0,0.0,0.0,0.010716328 +302.32135009765625,0.56,0.0,0.0,0.0,-0.002234026 +302.33026695251465,0.56,0.0,0.0,0.0,-0.002234026 +302.33945393562317,0.56,0.0,0.0,0.0,-0.002234026 +302.35005807876587,0.56,0.0,0.0,0.0,-0.002234026 +302.3596079349518,0.56,0.0,0.0,0.0,-0.0077841706 +302.36981105804443,0.56,0.0,0.0,0.0,-0.0077841706 +302.3796229362488,0.56,0.0,0.0,0.0,-0.0077841706 +302.39108204841614,0.56,0.0,0.0,0.0,-0.0077841706 +302.40008306503296,0.56,0.0,0.0,0.0,-0.0077841706 +302.4104630947113,0.56,0.0,0.0,0.0,-0.0077841706 +302.419634103775,0.56,0.0,0.0,0.0,0.010716328 +302.42944407463074,0.56,0.0,0.0,0.0,0.010716328 +302.43947196006775,0.56,0.0,0.0,0.0,0.010716328 +302.45420813560486,0.56,0.0,0.0,0.0,0.010716328 +302.45960998535156,0.56,0.0,0.0,0.0,0.042167164 +302.47222900390625,0.56,0.0,0.0,0.0,0.042167164 +302.48123812675476,0.56,0.0,0.0,0.0,0.042167164 +302.4902651309967,0.56,0.0,0.0,0.0,0.042167164 +302.49959993362427,0.56,0.0,0.0,0.0,0.042167164 +302.509565114975,0.56,0.0,0.0,0.0,0.02921681 +302.51994609832764,0.56,0.0,0.0,0.0,0.02921681 +302.52941608428955,0.56,0.0,0.0,0.0,0.02921681 +302.53964591026306,0.56,0.0,0.0,0.0,0.02921681 +302.55305910110474,0.56,0.0,0.0,0.0,0.02921681 +302.56194496154785,0.56,0.0,0.0,0.0,0.073618 +302.5708529949188,0.55,0.0,0.0,0.0,0.073618 +302.57961893081665,0.55,0.0,0.0,0.0,0.073618 +302.58942008018494,0.55,0.0,0.0,0.0,0.073618 +302.6010150909424,0.55,0.0,0.0,0.0,0.073618 +302.6100170612335,0.55,0.0,0.0,0.0,0.04031712 +302.6196360588074,0.55,0.0,0.0,0.0,0.04031712 +302.6294209957123,0.55,0.0,0.0,0.0,0.04031712 +302.63949513435364,0.55,0.0,0.0,0.0,0.04031712 +302.65105414390564,0.55,0.0,0.0,0.0,0.04031712 +302.6596260070801,0.55,0.0,0.0,0.0,0.0551175 +302.6705701351166,0.55,0.0,0.0,0.0,0.0551175 +302.6795880794525,0.55,0.0,0.0,0.0,0.0551175 +302.6902689933777,0.55,0.0,0.0,0.0,0.0551175 +302.6996190547943,0.55,0.0,0.0,0.0,0.0551175 +302.7098469734192,0.55,0.0,0.0,0.0,0.049567357 +302.72072291374207,0.55,0.0,0.0,0.0,0.049567357 +302.72942304611206,0.55,0.0,0.0,0.0,0.049567357 +302.7396309375763,0.55,0.0,0.0,0.0,0.049567357 +302.7500500679016,0.55,0.0,0.0,0.0,0.049567357 +302.75963592529297,0.55,0.0,0.0,0.0,0.027366763 +302.7695960998535,0.55,0.0,0.0,0.0,0.027366763 +302.7796320915222,0.55,0.0,0.0,0.0,0.027366763 +302.79023694992065,0.55,0.0,0.0,0.0,0.027366763 +302.79978799819946,0.55,0.0,0.0,0.0,0.027366763 +302.81146001815796,0.55,0.0,0.0,0.0,0.04401721 +302.8196349143982,0.55,0.0,0.0,0.0,0.04401721 +302.8294630050659,0.55,0.0,0.0,0.0,0.04401721 +302.8394989967346,0.55,0.0,0.0,0.0,0.04401721 +302.85088992118835,0.55,0.0,0.0,0.0,0.04401721 +302.8596000671387,0.55,0.0,0.0,0.0,0.049567357 +302.8712909221649,0.55,0.0,0.0,0.0,0.049567357 +302.8803060054779,0.53999996,0.0,0.0,0.0,0.049567357 +302.88956594467163,0.53999996,0.0,0.0,0.0,0.049567357 +302.8996350765228,0.53999996,0.0,0.0,0.0,0.049567357 +302.9094741344452,0.53999996,0.0,0.0,0.0,0.049567357 +302.9207820892334,0.53999996,0.0,0.0,0.0,0.031066857 +302.92943811416626,0.53999996,0.0,0.0,0.0,0.031066857 +302.9396479129791,0.53999996,0.0,0.0,0.0,0.031066857 +302.9495220184326,0.53999996,0.0,0.0,0.0,0.031066857 +302.9614119529724,0.53999996,0.0,0.0,0.0,0.042167164 +302.9704110622406,0.53999996,0.0,0.0,0.0,0.042167164 +302.9794211387634,0.53999996,0.0,0.0,0.0,0.042167164 +302.98968505859375,0.55,0.0,0.0,0.0,0.042167164 +303.0041289329529,0.55,0.0,0.0,0.0,0.042167164 +303.01175808906555,0.55,0.0,0.0,0.0,0.012566376 +303.0195369720459,0.55,0.0,0.0,0.0,0.012566376 +303.02945613861084,0.55,0.0,0.0,0.0,0.012566376 +303.0395529270172,0.53999996,0.0,0.0,0.0,0.012566376 +303.05153799057007,0.53999996,0.0,0.0,0.0,0.012566376 +303.0596330165863,0.53999996,0.0,0.0,0.0,0.010716328 +303.0695331096649,0.53999996,0.0,0.0,0.0,0.010716328 +303.08037209510803,0.53999996,0.0,0.0,0.0,0.010716328 +303.09151005744934,0.53,0.0,0.0,0.0,0.010716328 +303.09965896606445,0.53,0.0,0.0,0.0,0.010716328 +303.1117570400238,0.53,0.0,0.0,0.0,0.023666665 +303.1213240623474,0.53,0.0,0.0,0.0,0.023666665 +303.1298909187317,0.53,0.0,0.0,0.0,0.023666665 +303.13963413238525,0.53,0.0,0.0,0.0,0.023666665 +303.14957094192505,0.53,0.0,0.0,0.0,0.023666665 +303.1596269607544,0.53,0.0,0.0,0.0,0.014416425 +303.1706359386444,0.53,0.0,0.0,0.0,0.014416425 +303.17963004112244,0.53,0.0,0.0,0.0,0.014416425 +303.1894290447235,0.53,0.0,0.0,0.0,0.014416425 +303.20248198509216,0.53,0.0,0.0,0.0,0.014416425 +303.2112419605255,0.53,0.0,0.0,0.0,0.014416425 +303.2196431159973,0.52,0.0,0.0,0.0,0.0014660703 +303.2294371128082,0.52,0.0,0.0,0.0,0.0014660703 +303.2394800186157,0.52,0.0,0.0,0.0,0.0014660703 +303.2495391368866,0.52,0.0,0.0,0.0,0.0014660703 +303.259654045105,0.52,0.0,0.0,0.0,0.014416425 +303.2718961238861,0.52,0.0,0.0,0.0,0.014416425 +303.2794370651245,0.52,0.0,0.0,0.0,0.014416425 +303.2926640510559,0.52,0.0,0.0,0.0,0.014416425 +303.29964900016785,0.52,0.0,0.0,0.0,0.014416425 +303.3104660511017,0.52,0.0,0.0,0.0,0.014416425 +303.3193950653076,0.52,0.0,0.0,0.0,0.032916907 +303.32947611808777,0.52,0.0,0.0,0.0,0.032916907 +303.3394989967346,0.51,0.0,0.0,0.0,0.032916907 +303.3510160446167,0.51,0.0,0.0,0.0,0.032916907 +303.36155891418457,0.51,0.0,0.0,0.0,0.027366763 +303.3701391220093,0.5,0.0,0.0,0.0,0.027366763 +303.3796579837799,0.5,0.0,0.0,0.0,0.027366763 +303.39068698883057,0.48999998,0.0,0.0,0.0,0.027366763 +303.39959812164307,0.48999998,0.0,0.0,0.0,0.027366763 +303.40988397598267,0.48999998,0.0,0.0,0.0,0.027366763 +303.41964197158813,0.48999998,0.0,0.0,0.0,0.04401721 +303.42945408821106,0.48,0.0,0.0,0.0,0.04401721 +303.43951201438904,0.48,0.0,0.0,0.0,0.04401721 +303.452064037323,0.48,0.0,0.0,0.0,0.04401721 +303.45963406562805,0.48,0.0,0.0,0.0,0.04586726 +303.47091794013977,0.48,0.0,0.0,0.0,0.04586726 +303.4796040058136,0.48,0.0,0.0,0.0,0.04586726 +303.49099612236023,0.48,0.0,0.0,0.0,0.04586726 +303.49964904785156,0.48,0.0,0.0,0.0,0.04586726 +303.51043701171875,0.48,0.0,0.0,0.0,0.042167164 +303.5194320678711,0.48,0.0,0.0,0.0,0.042167164 +303.5294680595398,0.48,0.0,0.0,0.0,0.042167164 +303.5396919250488,0.47,0.0,0.0,0.0,0.042167164 +303.55025911331177,0.47,0.0,0.0,0.0,0.042167164 +303.5594000816345,0.47,0.0,0.0,0.0,0.049567357 +303.57214999198914,0.47,0.0,0.0,0.0,0.049567357 +303.57964611053467,0.47,0.0,0.0,0.0,0.049567357 +303.59020805358887,0.47,0.0,0.0,0.0,0.049567357 +303.5997450351715,0.47,0.0,0.0,0.0,0.049567357 +303.60947012901306,0.47,0.0,0.0,0.0,0.034766953 +303.6196689605713,0.45999998,0.0,0.0,0.0,0.034766953 +303.6294391155243,0.45999998,0.0,0.0,0.0,0.034766953 +303.6395010948181,0.45999998,0.0,0.0,0.0,0.034766953 +303.65329909324646,0.45999998,0.0,0.0,0.0,0.034766953 +303.65966296195984,0.45999998,0.0,0.0,0.0,0.008866279 +303.6702561378479,0.45999998,0.0,0.0,0.0,0.008866279 +303.68034291267395,0.45999998,0.0,0.0,0.0,0.008866279 +303.6903700828552,0.45999998,0.0,0.0,0.0,0.008866279 +303.69963812828064,0.45999998,0.0,0.0,0.0,0.008866279 +303.70943903923035,0.45999998,0.0,0.0,0.0,0.010716328 +303.7197000980377,0.45999998,0.0,0.0,0.0,0.010716328 +303.72941493988037,0.45999998,0.0,0.0,0.0,0.010716328 +303.7396619319916,0.45999998,0.0,0.0,0.0,0.010716328 +303.7497179508209,0.45999998,0.0,0.0,0.0,0.010716328 +303.76152205467224,0.45,0.0,0.0,0.0,0.014416425 +303.7705280780792,0.45,0.0,0.0,0.0,0.014416425 +303.77956104278564,0.45,0.0,0.0,0.0,0.014416425 +303.7903380393982,0.45,0.0,0.0,0.0,0.014416425 +303.80016899108887,0.45,0.0,0.0,0.0,0.014416425 +303.809623003006,0.45,0.0,0.0,0.0,0.014416425 +303.8196630477905,0.44,0.0,0.0,0.0,0.014416425 +303.8294529914856,0.44,0.0,0.0,0.0,0.014416425 +303.8395109176636,0.44,0.0,0.0,0.0,0.014416425 +303.8506760597229,0.44,0.0,0.0,0.0,0.014416425 +303.85965299606323,0.44,0.0,0.0,0.0,0.010716328 +303.86974000930786,0.44,0.0,0.0,0.0,0.010716328 +303.87949204444885,0.44,0.0,0.0,0.0,0.010716328 +303.889456987381,0.44,0.0,0.0,0.0,0.010716328 +303.8996570110321,0.44,0.0,0.0,0.0,0.010716328 +303.9117679595947,0.42999998,0.0,0.0,0.0,0.027366763 +303.9207639694214,0.42999998,0.0,0.0,0.0,0.027366763 +303.9294500350952,0.42999998,0.0,0.0,0.0,0.027366763 +303.93966603279114,0.42999998,0.0,0.0,0.0,0.027366763 +303.9509301185608,0.42999998,0.0,0.0,0.0,0.027366763 +303.95994091033936,0.42999998,0.0,0.0,0.0,0.027366763 +303.9700720310211,0.42999998,0.0,0.0,0.0,0.027366763 +303.97954201698303,0.42,0.0,0.0,0.0,0.027366763 +303.9925880432129,0.42,0.0,0.0,0.0,0.027366763 +304.00501894950867,0.42,0.0,0.0,0.0,0.027366763 +304.011785030365,0.42,0.0,0.0,0.0,0.032916907 +304.0196650028229,0.42,0.0,0.0,0.0,0.032916907 +304.02977895736694,0.42,0.0,0.0,0.0,0.032916907 +304.03944301605225,0.42,0.0,0.0,0.0,0.032916907 +304.0501310825348,0.42,0.0,0.0,0.0,0.032916907 +304.0594711303711,0.42,0.0,0.0,0.0,0.02921681 +304.06964206695557,0.42,0.0,0.0,0.0,0.02921681 +304.0800919532776,0.42,0.0,0.0,0.0,0.02921681 +304.09482312202454,0.41,0.0,0.0,0.0,0.02921681 +304.099445104599,0.41,0.0,0.0,0.0,0.02921681 +304.1117699146271,0.41,0.0,0.0,0.0,0.019966569 +304.12073493003845,0.39999998,0.0,0.0,0.0,0.019966569 +304.1294689178467,0.39999998,0.0,0.0,0.0,0.019966569 +304.13966703414917,0.39999998,0.0,0.0,0.0,0.019966569 +304.1494359970093,0.39999998,0.0,0.0,0.0,0.019966569 +304.15973806381226,0.39999998,0.0,0.0,0.0,0.019966569 +304.1750180721283,0.39999998,0.0,0.0,0.0,0.019966569 +304.1796669960022,0.39999998,0.0,0.0,0.0,0.019966569 +304.1896800994873,0.39999998,0.0,0.0,0.0,0.019966569 +304.20174193382263,0.39999998,0.0,0.0,0.0,0.019966569 +304.21067214012146,0.39999998,0.0,0.0,0.0,0.019966569 +304.2195861339569,0.39999998,0.0,0.0,0.0,0.0070162313 +304.2294509410858,0.39,0.0,0.0,0.0,0.0070162313 +304.23948407173157,0.39,0.0,0.0,0.0,0.0070162313 +304.2498309612274,0.38,0.0,0.0,0.0,0.0070162313 +304.2596740722656,0.38,0.0,0.0,0.0,0.0070162313 +304.27305603027344,0.37,0.0,0.0,0.0,0.0070162313 +304.28195810317993,0.37,0.0,0.0,0.0,0.0070162313 +304.29087591171265,0.35999998,0.0,0.0,0.0,0.0070162313 +304.29966497421265,0.35,0.0,0.0,0.0,0.0070162313 +304.30959606170654,0.35,0.0,0.0,0.0,0.0070162313 +304.31994891166687,0.34,0.0,0.0,0.0,-0.0040840744 +304.3294689655304,0.34,0.0,0.0,0.0,-0.0040840744 +304.33965706825256,0.32999998,0.0,0.0,0.0,-0.0040840744 +304.3532450199127,0.32999998,0.0,0.0,0.0,-0.0040840744 +304.3621621131897,0.32,0.0,0.0,0.0,0.0033161184 +304.3710820674896,0.32,0.0,0.0,0.0,0.0033161184 +304.3796660900116,0.31,0.0,0.0,0.0,0.0033161184 +304.39129996299744,0.31,0.0,0.0,0.0,0.0033161184 +304.4011061191559,0.29999998,0.0,0.0,0.0,0.0033161184 +304.4101331233978,0.29999998,0.0,0.0,0.0,0.0033161184 +304.41966009140015,0.29999998,0.0,0.0,0.0,0.01811652 +304.42947006225586,0.29,0.0,0.0,0.0,0.01811652 +304.4395389556885,0.29,0.0,0.0,0.0,0.01811652 +304.4498801231384,0.28,0.0,0.0,0.0,0.01811652 +304.45965695381165,0.26999998,0.0,0.0,0.0,0.0033161184 +304.470379114151,0.26,0.0,0.0,0.0,0.0033161184 +304.48212695121765,0.25,0.0,0.0,0.0,0.0033161184 +304.4911050796509,0.22999999,0.0,0.0,0.0,0.0033161184 +304.49967098236084,0.21,0.0,0.0,0.0,0.0033161184 +304.51005697250366,0.19999999,0.0,0.0,0.0,0.0014660703 +304.5201370716095,0.19,0.0,0.0,0.0,0.0014660703 +304.5294740200043,0.17999999,0.75757575,0.75757575,0.0,0.0014660703 +304.5396909713745,0.17,3.787879,3.787879,0.0,0.0014660703 +304.5540750026703,0.14999999,6.818182,6.818182,0.0,0.0014660703 +304.56307196617126,0.14,9.090909,9.090909,0.0,-0.0077841706 +304.5720579624176,0.13,11.363637,11.363637,0.0,-0.0077841706 +304.5796740055084,0.12,13.636364,13.636364,0.0,-0.0077841706 +304.59006905555725,0.11,15.909091,15.909091,0.0,-0.0077841706 +304.59955406188965,0.099999994,18.939394,18.939394,0.0,-0.0077841706 +304.60947012901306,0.089999996,21.212122,21.212122,0.0,-0.013334316 +304.6196789741516,0.08,22.727274,22.727274,0.0,-0.013334316 +304.6295120716095,0.07,25.0,25.0,0.0,-0.013334316 +304.6395330429077,0.07,27.272728,27.272728,0.0,-0.013334316 +304.653058052063,0.06,29.545454,29.545454,0.0,-0.013334316 +304.6596930027008,0.049999997,31.060606,31.060606,0.0,-0.01888446 +304.67105293273926,0.049999997,31.818182,31.818182,0.009372071,-0.01888446 +304.68006205558777,0.04,32.575756,32.575756,0.009372071,-0.01888446 +304.69042801856995,0.03,33.333336,33.333336,0.018744143,-0.01888446 +304.6994321346283,0.03,33.333336,33.333336,0.018744143,-0.01888446 +304.70948791503906,0.02,32.575756,32.575756,0.018744143,-0.044785153 +304.7207760810852,0.02,31.818182,31.818182,0.028116215,-0.044785153 +304.72947001457214,0.01,31.818182,31.818182,0.028116215,-0.044785153 +304.73967599868774,0.01,32.575756,32.575756,0.037488285,-0.044785153 +304.75157499313354,0.0,32.575756,32.575756,0.037488285,-0.044785153 +304.761039018631,0.0,32.575756,32.575756,0.046860356,-0.042935103 +304.77002692222595,0.0,33.333336,33.333336,0.046860356,-0.042935103 +304.7794759273529,0.0,34.848484,34.848484,0.046860356,-0.042935103 +304.78962206840515,0.0,35.60606,35.60606,0.046860356,-0.042935103 +304.7994239330292,0.0,36.363636,36.363636,0.05623243,-0.042935103 +304.80949211120605,0.0,36.363636,36.363636,0.05623243,-0.0466352 +304.81968092918396,0.0,36.363636,36.363636,0.0656045,-0.0466352 +304.8330249786377,0.0,37.121216,37.121216,0.0656045,-0.0466352 +304.83954191207886,0.0,37.878788,37.878788,0.0656045,-0.0466352 +304.85056805610657,0.0,37.878788,37.878788,0.0656045,-0.0466352 +304.8596611022949,0.0,37.878788,37.878788,0.0656045,-0.03553491 +304.8696141242981,0.0,39.39394,39.39394,0.0656045,-0.03553491 +304.87945103645325,0.0,40.151516,40.151516,0.0656045,-0.03553491 +304.88951897621155,0.0,41.666668,41.666668,0.07497657,-0.03553491 +304.89962697029114,0.0,42.424244,42.424244,0.07497657,-0.03553491 +304.91180300712585,0.0,42.424244,42.424244,0.07497657,-0.026284654 +304.92076301574707,0.0,43.939392,43.939392,0.08434864,-0.026284654 +304.92946696281433,0.0,44.696968,44.696968,0.08434864,-0.026284654 +304.9396951198578,0.0,45.454548,45.454548,0.09372071,-0.026284654 +304.9500050544739,0.0,46.21212,46.21212,0.09372071,-0.026284654 +304.9594271183014,0.0,46.969696,46.969696,0.09372071,-0.015184363 +304.96965312957764,0.0,48.484848,48.484848,0.10309278,-0.015184363 +304.97958612442017,0.0,51.515152,51.515152,0.10309278,-0.015184363 +304.99479699134827,0.0,53.030304,53.030304,0.10309278,-0.015184363 +305.003231048584,0.0,53.78788,53.78788,0.11246486,-0.015184363 +305.01179695129395,0.0,55.30303,55.30303,0.12183693,-0.024434604 +305.0196750164032,0.0,57.57576,57.57576,0.12183693,-0.024434604 +305.02946305274963,0.0,60.606064,60.606064,0.131209,-0.024434604 +305.03955698013306,0.0,62.878788,62.878788,0.131209,-0.024434604 +305.0511269569397,0.0,64.393936,64.393936,0.14058107,-0.024434604 +305.0596799850464,0.0,67.42425,67.42425,0.14058107,-0.039235007 +305.06967997550964,0.0,62.878788,62.878788,0.14058107,-0.039235007 +305.08387207984924,0.0,47.727272,47.727272,0.14058107,-0.039235007 +305.0906789302826,0.0,34.09091,34.09091,0.14058107,-0.039235007 +305.09957909584045,0.0,21.212122,21.212122,0.14058107,-0.039235007 +305.11060094833374,0.0,22.727274,22.727274,0.14995314,-0.039235007 +305.1194980144501,0.0,29.545454,29.545454,0.14995314,-0.041085053 +305.12944507598877,0.0,36.363636,36.363636,0.15932521,-0.041085053 +305.13968300819397,0.0,43.181816,43.181816,0.15932521,-0.041085053 +305.1503210067749,0.0,47.727272,47.727272,0.15932521,-0.041085053 +305.159471988678,0.0,53.030304,53.030304,0.15932521,-0.033684865 +305.17004203796387,0.0,59.090908,59.090908,0.16869728,-0.033684865 +305.179673910141,0.0,65.90909,65.90909,0.18744142,-0.033684865 +305.19077706336975,0.0,67.42425,67.42425,0.18744142,-0.033684865 +305.19967103004456,0.0,59.848484,59.848484,0.18744142,-0.033684865 +305.2109339237213,0.0,53.78788,53.78788,0.18744142,-0.033684865 +305.21968603134155,0.0,50.0,50.0,0.18744142,-0.002234026 +305.2294571399689,0.0,48.484848,48.484848,0.18744142,-0.002234026 +305.23953890800476,0.0,46.969696,46.969696,0.17806935,-0.002234026 +305.2494990825653,0.0,44.696968,44.696968,0.18744142,-0.002234026 +305.2597050666809,0.0,43.939392,43.939392,0.1968135,-0.002234026 +305.27096605300903,0.0,45.454548,45.454548,0.20618556,-0.002234026 +305.27985310554504,0.0,46.969696,46.969696,0.21555763,-0.002234026 +305.29187202453613,0.0,49.242424,49.242424,0.21555763,-0.002234026 +305.299693107605,0.0,50.757576,50.757576,0.21555763,-0.002234026 +305.30963706970215,0.0,51.515152,51.515152,0.22492972,-0.002234026 +305.3207769393921,0.0,54.545456,54.545456,0.22492972,-0.022584556 +305.3294689655304,0.0,57.57576,57.57576,0.23430179,-0.022584556 +305.33965611457825,0.0,60.606064,60.606064,0.23430179,-0.022584556 +305.35113310813904,0.0,62.878788,62.878788,0.23430179,-0.022584556 +305.35949206352234,0.0,64.393936,64.393936,0.25304592,0.027366763 +305.37284994125366,0.0,65.90909,65.90909,0.25304592,0.027366763 +305.37970304489136,0.0,68.93939,68.93939,0.25304592,0.027366763 +305.39082312583923,0.0,71.21212,71.21212,0.25304592,0.027366763 +305.3998100757599,0.0,73.48485,73.48485,0.27179006,0.027366763 +305.4117739200592,0.0,74.24243,74.24243,0.27179006,0.027366763 +305.41969108581543,0.0,75.757576,75.757576,0.27179006,-0.024434604 +305.42948508262634,0.0,77.27273,77.27273,0.28116214,-0.024434604 +305.4395680427551,0.0,79.545456,79.545456,0.28116214,-0.024434604 +305.4537971019745,0.0,81.81818,81.81818,0.28116214,-0.024434604 +305.45968103408813,0.0,82.57576,82.57576,0.28116214,-0.03553491 +305.4704029560089,0.0,83.333336,83.333336,0.28116214,-0.03553491 +305.4807770252228,0.0,84.09091,84.09091,0.2905342,-0.03553491 +305.4894120693207,0.0,86.36363,86.36363,0.2905342,-0.03553491 +305.4996929168701,0.0,87.878784,87.878784,0.2905342,-0.03553491 +305.50953912734985,0.0,89.393936,89.393936,0.29990628,-0.03553491 +305.5199739933014,0.0,89.393936,89.393936,0.29990628,-0.03553491 +305.5294380187988,0.0,89.393936,89.393936,0.29990628,-0.03553491 +305.5397300720215,0.0,90.909096,90.909096,0.30927837,-0.03553491 +305.55008697509766,0.0,92.42424,92.42424,0.29990628,-0.03553491 +305.5617470741272,0.0,93.181816,93.181816,0.30927837,-0.042935103 +305.57074999809265,0.0,93.93939,93.93939,0.30927837,-0.042935103 +305.5796890258789,0.0,93.181816,93.181816,0.30927837,-0.042935103 +305.59105801582336,0.0,93.181816,93.181816,0.30927837,-0.042935103 +305.6005759239197,0.0,95.454544,95.454544,0.30927837,-0.042935103 +305.6094899177551,0.0,97.72728,97.72728,0.30927837,-0.06513569 +305.6195909976959,0.0,100.0,100.0,0.30927837,-0.06513569 +305.62946105003357,0.0,100.757576,100.757576,0.31865042,-0.06513569 +305.63953495025635,0.0,101.51515,101.51515,0.31865042,-0.06513569 +305.65172505378723,0.0,103.030304,103.030304,0.30927837,-0.06513569 +305.65952706336975,0.0,106.06061,106.06061,0.30927837,-0.08733628 +305.6697359085083,0.0,108.333336,108.333336,0.30927837,-0.08733628 +305.6807839870453,0.0,110.60606,110.60606,0.31865042,-0.08733628 +305.6896619796753,0.0,112.12121,112.12121,0.31865042,-0.08733628 +305.6997039318085,0.0,114.39394,114.39394,0.31865042,-0.08733628 +305.70949602127075,0.0,117.42424,117.42424,0.3280225,-0.039235007 +305.72371006011963,0.0,121.21213,121.21213,0.3280225,-0.039235007 +305.7298309803009,0.0,125.757576,125.757576,0.3280225,-0.039235007 +305.73947501182556,0.0,129.54546,129.54546,0.3280225,-0.039235007 +305.7503559589386,0.0,131.81818,131.81818,0.33739457,-0.039235007 +305.75968194007874,0.0,134.8485,134.8485,0.34676665,0.0014660703 +305.76989102363586,0.0,138.63637,138.63637,0.34676665,0.0014660703 +305.77965092658997,0.0,143.93939,143.93939,0.34676665,0.0014660703 +305.7902410030365,0.0,147.72726,147.72726,0.3561387,0.0014660703 +305.799467086792,0.0,151.51515,151.51515,0.3655108,0.0014660703 +305.8120529651642,0.0,153.78789,153.78789,0.3655108,-0.015184363 +305.8197159767151,0.0,156.81818,156.81818,0.3655108,-0.015184363 +305.8294770717621,0.0,160.60606,160.60606,0.37488285,-0.015184363 +305.83950304985046,0.0,165.9091,165.9091,0.38425493,-0.015184363 +305.84964513778687,0.0,171.21213,171.21213,0.393627,-0.015184363 +305.85969591140747,0.0,175.75757,175.75757,0.393627,0.0070162313 +305.8715879917145,0.0,178.78787,178.78787,0.393627,0.0070162313 +305.8803560733795,0.0,181.06061,181.06061,0.393627,0.0070162313 +305.88961601257324,0.0,184.09091,184.09091,0.393627,0.0070162313 +305.89971113204956,0.0,187.87878,187.87878,0.40299907,0.0070162313 +305.9101469516754,0.0,191.66666,191.66666,0.40299907,0.0070162313 +305.92077112197876,0.0,194.69696,194.69696,0.40299907,0.019966569 +305.9295029640198,0.0,197.72728,197.72728,0.41237113,0.019966569 +305.93957710266113,0.0,199.24243,199.24243,0.41237113,0.019966569 +305.9526810646057,0.0,201.51515,201.51515,0.41237113,0.019966569 +305.96169805526733,0.0,204.54546,204.54546,0.41237113,0.01811652 +305.9707250595093,0.0,207.57576,207.57576,0.4217432,0.01811652 +305.97969913482666,0.0,211.36365,211.36365,0.4217432,0.01811652 +305.9926941394806,0.0,212.8788,212.8788,0.43111527,0.01811652 +306.00026297569275,0.0,213.63637,213.63637,0.43111527,0.01811652 +306.00949811935425,0.0,214.39394,214.39394,0.4217432,0.01811652 +306.01945304870605,0.0,215.90909,215.90909,0.4217432,0.01811652 +306.02949500083923,0.0,218.18182,218.18182,0.4217432,0.01811652 +306.03957509994507,0.0,219.69698,219.69698,0.44048735,0.01811652 +306.0497760772705,0.0,221.9697,221.9697,0.44048735,0.01811652 +306.05972504615784,0.0,222.72726,222.72726,0.43111527,0.0033161184 +306.06981205940247,0.0,221.9697,221.9697,0.44048735,0.0033161184 +306.0818200111389,0.0,221.9697,221.9697,0.44048735,0.0033161184 +306.0906300544739,0.0,222.72726,222.72726,0.43111527,0.0033161184 +306.09964299201965,0.0,223.48485,223.48485,0.43111527,0.0033161184 +306.1104910373688,0.0,223.48485,223.48485,0.43111527,0.0033161184 +306.1195080280304,0.0,223.48485,223.48485,0.43111527,0.019966569 +306.1294960975647,0.0,222.72726,222.72726,0.44048735,0.019966569 +306.1393880844116,0.0,221.21211,221.21211,0.44048735,0.019966569 +306.15039801597595,0.0,220.45454,220.45454,0.44048735,0.019966569 +306.15992498397827,0.0,220.45454,220.45454,0.43111527,0.01811652 +306.170175075531,0.0,221.21211,221.21211,0.43111527,0.01811652 +306.17985796928406,0.0,221.21211,221.21211,0.43111527,0.01811652 +306.19144201278687,0.0,221.21211,221.21211,0.4217432,0.01811652 +306.1999900341034,0.0,220.45454,220.45454,0.4217432,0.01811652 +306.2094440460205,0.0,218.93939,218.93939,0.43111527,0.01811652 +306.2195761203766,0.0,217.42424,217.42424,0.43111527,0.014416425 +306.22947001457214,0.0,217.42424,217.42424,0.43111527,0.014416425 +306.2395899295807,0.0,218.18182,218.18182,0.44048735,0.014416425 +306.2500469684601,0.0,218.18182,218.18182,0.43111527,0.014416425 +306.2594919204712,0.0,217.42424,217.42424,0.43111527,0.019966569 +306.2694640159607,0.0,216.66667,216.66667,0.43111527,0.019966569 +306.27942299842834,0.0,214.39394,214.39394,0.43111527,0.019966569 +306.29040598869324,0.0,212.8788,212.8788,0.43111527,0.019966569 +306.2994079589844,0.0,212.8788,212.8788,0.43111527,0.019966569 +306.3117980957031,0.0,212.12122,212.12122,0.43111527,0.014416425 +306.32080698013306,0.0,212.12122,212.12122,0.43111527,0.014416425 +306.32949209213257,0.0,211.36365,211.36365,0.43111527,0.014416425 +306.33959102630615,0.0,209.84848,209.84848,0.43111527,0.014416425 +306.34958600997925,0.0,207.57576,207.57576,0.43111527,0.014416425 +306.36238193511963,0.0,205.30302,205.30302,0.43111527,0.08286824 +306.37136697769165,0.0,203.78787,203.78787,0.4217432,0.08286824 +306.38035798072815,0.0,203.0303,203.0303,0.4217432,0.08286824 +306.3937039375305,0.0,203.0303,203.0303,0.4217432,0.08286824 +306.3994839191437,0.0,202.27274,202.27274,0.4217432,0.08286824 +306.40993094444275,0.0,200.75758,200.75758,0.41237113,0.08286824 +306.42040491104126,0.0,198.48485,198.48485,0.41237113,0.032916907 +306.42954111099243,0.0,195.45456,195.45456,0.4217432,0.032916907 +306.43956112861633,0.0,192.42424,192.42424,0.4217432,0.032916907 +306.4511480331421,0.0,190.15152,190.15152,0.41237113,0.032916907 +306.4613299369812,0.0,188.63637,188.63637,0.41237113,0.04586726 +306.47034311294556,0.0,185.60606,185.60606,0.41237113,0.04586726 +306.48277592658997,0.0,182.57576,182.57576,0.4217432,0.04586726 +306.4916980266571,0.0,178.78787,178.78787,0.41237113,0.04586726 +306.4997329711914,0.0,174.24242,174.24242,0.41237113,0.04586726 +306.50949907302856,0.0,169.69698,169.69698,0.41237113,0.09581858 +306.5203881263733,0.0,165.15152,165.15152,0.40299907,0.09581858 +306.5296049118042,0.0,162.1212,162.1212,0.40299907,0.09581858 +306.53975009918213,0.0,159.84848,159.84848,0.38425493,0.09581858 +306.54989194869995,0.0,158.33333,158.33333,0.393627,0.09581858 +306.5603070259094,0.0,156.81818,156.81818,0.38425493,0.11801915 +306.57190012931824,0.0,154.54546,154.54546,0.38425493,0.11801915 +306.57949805259705,0.0,152.27274,152.27274,0.38425493,0.11801915 +306.58971214294434,0.0,149.24243,149.24243,0.38425493,0.11801915 +306.60148096084595,0.0,146.21211,146.21211,0.38425493,0.11801915 +306.61048007011414,0.0,144.69696,144.69696,0.393627,0.20127137 +306.61949706077576,0.0,143.93939,143.93939,0.38425493,0.20127137 +306.62949109077454,0.0,143.18181,143.18181,0.38425493,0.20127137 +306.63969111442566,0.0,141.66667,141.66667,0.37488285,0.20127137 +306.65026211738586,0.0,139.39394,139.39394,0.37488285,0.20127137 +306.6594660282135,0.0,135.60606,135.60606,0.37488285,0.3270747 +306.66974091529846,0.0,131.81818,131.81818,0.37488285,0.3270747 +306.68257093429565,0.0,128.0303,128.0303,0.37488285,0.3270747 +306.69156193733215,0.0,125.0,125.0,0.37488285,0.3270747 +306.7005920410156,0.0,123.48485,123.48485,0.37488285,0.3270747 +306.7095899581909,0.0,121.969696,121.969696,0.37488285,0.338175 +306.72077894210815,0.0,121.21213,121.21213,0.3655108,0.338175 +306.72947692871094,0.0,120.454544,120.454544,0.37488285,0.338175 +306.7395689487457,0.0,118.93939,118.93939,0.37488285,0.338175 +306.7501640319824,0.0,115.909096,115.909096,0.38425493,0.338175 +306.7598669528961,0.0,113.63637,113.63637,0.38425493,0.35112536 +306.77078795433044,0.0,110.60606,110.60606,0.37488285,0.35112536 +306.7816641330719,0.0,109.09091,109.09091,0.37488285,0.35112536 +306.78962302207947,0.0,107.57576,107.57576,0.3655108,0.35112536 +306.79969000816345,0.0,106.06061,106.06061,0.3655108,0.35112536 +306.80949091911316,0.0,103.78788,103.78788,0.3561387,0.34002507 +306.82079696655273,0.0,101.51515,101.51515,0.3561387,0.34002507 +306.8295021057129,0.0,99.242424,99.242424,0.34676665,0.34002507 +306.83970403671265,0.0,95.454544,95.454544,0.34676665,0.34002507 +306.85024404525757,0.0,92.42424,92.42424,0.34676665,0.34002507 +306.8609199523926,0.0,89.393936,89.393936,0.34676665,0.3270747 +306.8717200756073,0.0,87.878784,87.878784,0.34676665,0.3270747 +306.8807771205902,0.0,86.36363,86.36363,0.34676665,0.3270747 +306.8897681236267,0.0,85.606064,85.606064,0.3561387,0.3270747 +306.8994541168213,0.0,84.84849,84.84849,0.3561387,0.3270747 +306.90972805023193,0.0,84.09091,84.09091,0.3655108,0.3270747 +306.91949701309204,0.0,83.333336,83.333336,0.3561387,0.43437755 +306.9295709133148,0.0,82.57576,82.57576,0.3561387,0.43437755 +306.93961811065674,0.0,80.30303,80.30303,0.34676665,0.43437755 +306.95102190971375,0.0,79.545456,79.545456,0.3561387,0.43437755 +306.9618310928345,0.0,78.78788,78.78788,0.34676665,0.43622762 +306.9708330631256,0.0,79.545456,79.545456,0.34676665,0.43622762 +306.97984790802,0.0,80.30303,80.30303,0.34676665,0.43622762 +306.9896140098572,0.0,81.81818,81.81818,0.34676665,0.43622762 +306.9997589588165,0.0,82.57576,82.57576,0.34676665,0.43622762 +307.01008701324463,0.0,83.333336,83.333336,0.3561387,0.43622762 +307.02079606056213,0.0,82.57576,82.57576,0.3561387,0.45657814 +307.0295259952545,0.0,81.81818,81.81818,0.34676665,0.45657814 +307.0397870540619,0.0,79.545456,79.545456,0.34676665,0.45657814 +307.04975414276123,0.0,78.78788,78.78788,0.34676665,0.45657814 +307.06003499031067,0.0,78.030304,78.030304,0.3561387,0.488029 +307.06994104385376,0.0,78.030304,78.030304,0.3561387,0.488029 +307.07943892478943,0.0,78.030304,78.030304,0.34676665,0.488029 +307.0910539627075,0.0,78.030304,78.030304,0.34676665,0.488029 +307.10004210472107,0.0,78.030304,78.030304,0.34676665,0.488029 +307.1118199825287,0.0,77.27273,77.27273,0.34676665,0.4621283 +307.120796918869,0.0,76.51515,76.51515,0.33739457,0.4621283 +307.1294901371002,0.0,74.24243,74.24243,0.3280225,0.4621283 +307.1395869255066,0.0,71.969696,71.969696,0.3280225,0.4621283 +307.15030312538147,0.0,68.93939,68.93939,0.3280225,0.4621283 +307.16003704071045,0.0,66.66667,66.66667,0.3280225,0.43622762 +307.169970035553,0.0,63.636364,63.636364,0.3280225,0.43622762 +307.17986011505127,0.0,61.363636,61.363636,0.31865042,0.43622762 +307.19002509117126,0.0,59.090908,59.090908,0.31865042,0.43622762 +307.20480704307556,0.0,56.818184,56.818184,0.31865042,0.43622762 +307.21182203292847,0.0,54.545456,54.545456,0.30927837,0.4288274 +307.2207839488983,0.0,51.515152,51.515152,0.2905342,0.4288274 +307.2295010089874,0.0,49.242424,49.242424,0.27179006,0.4288274 +307.23978304862976,0.0,45.454548,45.454548,0.27179006,0.4288274 +307.2501540184021,0.0,43.181816,43.181816,0.27179006,0.4288274 +307.26010298728943,0.0,40.90909,40.90909,0.262418,0.26047295 +307.27099108695984,0.0,39.39394,39.39394,0.262418,0.26047295 +307.27999091148376,0.0,38.636364,38.636364,0.262418,0.26047295 +307.29397201538086,0.0,37.121216,37.121216,0.25304592,0.26047295 +307.3028709888458,0.0,35.60606,35.60606,0.25304592,0.26047295 +307.30993914604187,0.0,33.333336,33.333336,0.25304592,0.26047295 +307.3207139968872,0.0,30.303032,30.303032,0.24367386,-0.23534022 +307.3294930458069,0.0,26.515152,26.515152,0.24367386,-0.23534022 +307.33960008621216,0.0,21.969696,21.969696,0.22492972,-0.23534022 +307.3497951030731,0.0,21.212122,21.212122,0.21555763,-0.23534022 +307.35950803756714,0.0,21.969696,21.969696,0.21555763,-0.5054473 +307.36995792388916,0.0,23.484848,23.484848,0.20618556,-0.5054473 +307.3824260234833,0.0,24.242424,24.242424,0.20618556,-0.5054473 +307.3907561302185,0.0,25.0,25.0,0.1968135,-0.5054473 +307.4009199142456,0.0,25.0,25.0,0.18744142,-0.5054473 +307.4098410606384,0.0,25.0,25.0,0.18744142,-0.5054473 +307.4212501049042,0.0,25.0,25.0,0.17806935,-0.54244834 +307.4298040866852,0.01,24.242424,24.242424,0.17806935,-0.54244834 +307.4395070075989,0.02,24.242424,24.242424,0.16869728,-0.54244834 +307.4495210647583,0.02,23.484848,23.484848,0.16869728,-0.54244834 +307.4595820903778,0.03,22.727274,22.727274,0.15932521,-0.38519418 +307.46998500823975,0.03,22.727274,22.727274,0.15932521,-0.38519418 +307.4807651042938,0.04,21.969696,21.969696,0.15932521,-0.38519418 +307.49003195762634,0.04,21.212122,21.212122,0.14995314,-0.38519418 +307.50023102760315,0.049999997,21.212122,21.212122,0.14058107,-0.38519418 +307.5105550289154,0.06,20.454544,20.454544,0.14058107,0.08471829 +307.5203261375427,0.06,20.454544,20.454544,0.14058107,0.08471829 +307.5295560359955,0.07,20.454544,20.454544,0.12183693,0.08471829 +307.5396809577942,0.08,21.212122,21.212122,0.12183693,0.08471829 +307.5498640537262,0.08,21.212122,21.212122,0.12183693,0.08471829 +307.5613329410553,0.089999996,21.212122,21.212122,0.12183693,0.26417306 +307.57015013694763,0.089999996,21.212122,21.212122,0.11246486,0.26417306 +307.5834159851074,0.099999994,21.212122,21.212122,0.11246486,0.26417306 +307.592404127121,0.099999994,20.454544,20.454544,0.11246486,0.26417306 +307.60143303871155,0.11,20.454544,20.454544,0.11246486,0.26417306 +307.6104381084442,0.11,19.69697,19.69697,0.11246486,0.23827238 +307.61945605278015,0.12,19.69697,19.69697,0.11246486,0.23827238 +307.62949299812317,0.13,18.939394,18.939394,0.11246486,0.23827238 +307.6396520137787,0.13,18.181818,18.181818,0.10309278,0.23827238 +307.65013003349304,0.14,17.424242,17.424242,0.10309278,0.23827238 +307.65952801704407,0.14999999,15.909091,15.909091,0.10309278,0.22162192 +307.6721451282501,0.16,15.151516,15.151516,0.09372071,0.22162192 +307.68252301216125,0.17,14.39394,14.39394,0.08434864,0.22162192 +307.69154691696167,0.17,12.878788,12.878788,0.0656045,0.22162192 +307.7002520561218,0.17999999,12.121212,12.121212,0.05623243,0.22162192 +307.7095561027527,0.19,11.363637,11.363637,0.046860356,0.073618 +307.7199900150299,0.19999999,10.606061,10.606061,0.037488285,0.073618 +307.7294979095459,0.22,9.848485,9.848485,0.018744143,0.073618 +307.73957204818726,0.22999999,9.090909,9.090909,0.018744143,0.073618 +307.75465202331543,0.24,8.333334,8.333334,0.009372071,0.073618 +307.75953793525696,0.25,7.575758,7.575758,0.009372071,-0.5128476 +307.77001905441284,0.26,6.818182,6.818182,0.0,-0.5128476 +307.78109908103943,0.28,6.060606,6.060606,0.0,-0.5128476 +307.7907021045685,0.29,5.3030305,5.3030305,0.0,-0.5128476 +307.79970598220825,0.31,4.5454545,4.5454545,0.0,-0.5128476 +307.8101770877838,0.32,3.787879,3.787879,0.0,-0.65530133 +307.81979298591614,0.34,3.787879,3.787879,0.0,-0.65530133 +307.8294949531555,0.35,3.030303,3.030303,0.0,-0.65530133 +307.839812040329,0.35999998,2.2727273,2.2727273,0.0,-0.65530133 +307.85380005836487,0.38,2.2727273,2.2727273,0.0,-0.65530133 +307.8607430458069,0.39,1.5151515,1.5151515,0.0,-0.1705885 +307.87181997299194,0.39999998,1.5151515,1.5151515,0.0,-0.1705885 +307.8797779083252,0.41,1.5151515,1.5151515,0.0,-0.1705885 +307.8898639678955,0.42,0.75757575,0.75757575,0.0,-0.1705885 +307.8999969959259,0.42999998,0.75757575,0.75757575,0.0,-0.1705885 +307.9097249507904,0.42999998,0.0,0.0,0.0,-0.1705885 +307.9201431274414,0.44,0.0,0.0,0.0,0.29747394 +307.9295129776001,0.45,0.0,0.0,0.0,0.29747394 +307.9395830631256,0.47,0.0,0.0,0.0,0.29747394 +307.95298504829407,0.48,0.0,0.0,0.0,0.29747394 +307.9595239162445,0.48999998,0.0,0.0,0.0,0.58423156 +307.9696490764618,0.48999998,0.0,0.0,0.0,0.58423156 +307.9800410270691,0.5,0.0,0.0,0.0,0.58423156 +307.9894530773163,0.51,0.0,0.0,0.0,0.58423156 +307.9995050430298,0.52,0.0,0.0,0.0,0.58423156 +308.011794090271,0.52,0.0,0.0,0.0,0.8524887 +308.02084708213806,0.53,0.0,0.0,0.0,0.8524887 +308.02952098846436,0.53999996,0.0,0.0,0.0,0.8524887 +308.0397651195526,0.53999996,0.0,0.0,0.0,0.8524887 +308.05123591423035,0.55,0.0,0.0,0.0,0.8524887 +308.06039094924927,0.55,0.0,0.0,0.0,1.0078928 +308.07020902633667,0.55,0.0,0.0,0.0,1.0078928 +308.08061504364014,0.55,0.0,0.0,0.0,1.0078928 +308.0894560813904,0.55,0.0,0.0,0.0,1.0078928 +308.10084199905396,0.55,0.0,0.0,0.0,1.0078928 +308.11178493499756,0.55,0.0,0.0,0.0,1.0078928 +308.1208231449127,0.55,0.0,0.0,0.0,1.0097427 +308.1294951438904,0.55,0.0,0.0,0.0,1.0097427 +308.1395981311798,0.55,0.0,0.0,0.0,1.0097427 +308.14949893951416,0.55,0.0,0.0,0.0,1.0097427 +308.1603329181671,0.55,0.0,0.0,0.0,0.9079901 +308.17057514190674,0.55,0.0,0.0,0.0,0.9079901 +308.17956614494324,0.55,0.0,0.0,0.0,0.9079901 +308.19371509552,0.56,0.0,0.0,0.0,0.9079901 +308.2020969390869,0.56,0.0,0.0,0.0,0.9079901 +308.21177411079407,0.56,0.0,0.0,0.0,0.9634916 +308.2195200920105,0.57,0.0,0.0,0.0,0.9634916 +308.22969102859497,0.57,0.0,0.0,0.0,0.9634916 +308.2397930622101,0.57,0.0,0.0,0.0,0.9634916 +308.25050711631775,0.57,0.0,0.0,0.0,0.9634916 +308.259535074234,0.56,0.0,0.0,0.0,1.0060427 +308.2695369720459,0.56,0.0,0.0,0.0,1.0060427 +308.2795379161835,0.56,0.0,0.0,0.0,1.0060427 +308.2920470237732,0.55,0.0,0.0,0.0,1.0060427 +308.3009829521179,0.55,0.0,0.0,0.0,1.0060427 +308.30990409851074,0.53999996,0.0,0.0,0.0,1.0060427 +308.3208029270172,0.53999996,0.0,0.0,0.0,1.1114955 +308.3295259475708,0.53,0.0,0.0,0.0,1.1114955 +308.3396270275116,0.53,0.0,0.0,0.0,1.1114955 +308.34964203834534,0.52,0.0,0.0,0.0,1.1114955 +308.35951709747314,0.52,0.0,0.0,0.0,1.094845 +308.3722801208496,0.51,0.0,0.0,0.0,1.094845 +308.3794310092926,0.51,0.0,0.0,0.0,1.094845 +308.390095949173,0.5,0.0,0.0,0.0,1.094845 +308.4011540412903,0.5,0.0,0.0,0.0,1.094845 +308.41177797317505,0.5,0.0,0.0,0.0,1.1059453 +308.4208130836487,0.5,0.0,0.0,0.0,1.1059453 +308.42952013015747,0.5,0.0,0.0,0.0,1.1059453 +308.4395079612732,0.5,0.0,0.0,0.0,1.1059453 +308.4494581222534,0.5,0.0,0.0,0.0,1.1059453 +308.45953011512756,0.51,0.0,0.0,0.0,1.091145 +308.47028708457947,0.51,0.0,0.0,0.0,1.091145 +308.4797170162201,0.51,0.0,0.0,0.0,1.091145 +308.49391198158264,0.52,0.0,0.0,0.0,1.091145 +308.50235509872437,0.52,0.0,0.0,0.0,1.091145 +308.51039695739746,0.52,0.0,0.0,0.0,1.0393436 +308.52083802223206,0.52,0.0,0.0,0.0,1.0393436 +308.52952694892883,0.53,0.0,0.0,0.0,1.0393436 +308.5393919944763,0.53,0.0,0.0,0.0,1.0393436 +308.54949712753296,0.53,0.0,0.0,0.0,1.0393436 +308.5595269203186,0.53999996,0.0,0.0,0.0,1.0485939 +308.57342195510864,0.53999996,0.0,0.0,0.0,1.0485939 +308.5840849876404,0.53999996,0.0,0.0,0.0,1.0485939 +308.589821100235,0.53999996,0.0,0.0,0.0,1.0485939 +308.6021559238434,0.53,0.0,0.0,0.0,1.0485939 +308.6097979545593,0.53,0.0,0.0,0.0,1.0485939 +308.62016105651855,0.53,0.0,0.0,0.0,1.0485939 +308.629408121109,0.53,0.0,0.0,0.0,1.0485939 +308.6396179199219,0.53,0.0,0.0,0.0,1.0485939 +308.6549029350281,0.53999996,0.0,0.0,0.0,1.0485939 +308.660728931427,0.53999996,0.0,0.0,0.0,1.0393436 +308.67426013946533,0.53999996,0.0,0.0,0.0,1.0393436 +308.6824641227722,0.53999996,0.0,0.0,0.0,1.0393436 +308.6922950744629,0.53999996,0.0,0.0,0.0,1.0393436 +308.7013099193573,0.53999996,0.0,0.0,0.0,1.0393436 +308.7103180885315,0.55,0.0,0.0,0.0,0.75628614 +308.7195460796356,0.55,0.0,0.0,0.0,0.75628614 +308.7295091152191,0.55,0.0,0.0,0.0,0.75628614 +308.73963594436646,0.55,0.0,0.0,0.0,0.75628614 +308.7508580684662,0.56,0.0,0.0,0.0,0.75628614 +308.7642960548401,0.56,0.0,0.0,0.0,0.50467944 +308.7698459625244,0.56,0.0,0.0,0.0,0.50467944 +308.78222608566284,0.56,0.0,0.0,0.0,0.50467944 +308.7895429134369,0.56,0.0,0.0,0.0,0.50467944 +308.80003094673157,0.56,0.0,0.0,0.0,0.50467944 +308.8096001148224,0.56,0.0,0.0,0.0,0.5102296 +308.8199510574341,0.55,0.0,0.0,0.0,0.5102296 +308.82950592041016,0.55,0.0,0.0,0.0,0.5102296 +308.83977007865906,0.55,0.0,0.0,0.0,0.5102296 +308.8520050048828,0.55,0.0,0.0,0.0,0.5102296 +308.86009907722473,0.55,0.0,0.0,0.0,0.5120796 +308.8699390888214,0.56,0.0,0.0,0.0,0.5120796 +308.88024497032166,0.56,0.0,0.0,0.0,0.5120796 +308.89024209976196,0.56,0.0,0.0,0.0,0.5120796 +308.8996560573578,0.56,0.0,0.0,0.0,0.5120796 +308.91018891334534,0.56,0.0,0.0,0.0,0.5120796 +308.91972494125366,0.55,0.0,0.0,0.0,0.5213299 +308.92954111099243,0.55,0.0,0.0,0.0,0.5213299 +308.93950295448303,0.55,0.0,0.0,0.0,0.5213299 +308.9515120983124,0.55,0.0,0.0,0.0,0.5213299 +308.960412979126,0.55,0.0,0.0,0.0,0.51577973 +308.9711420536041,0.55,0.0,0.0,0.0,0.51577973 +308.9801399707794,0.55,0.0,0.0,0.0,0.51577973 +308.9897301197052,0.55,0.0,0.0,0.0,0.51577973 +308.9999921321869,0.55,0.0,0.0,0.0,0.51577973 +309.01028394699097,0.55,0.0,0.0,0.0,0.51577973 +309.02084493637085,0.55,0.0,0.0,0.0,0.51392967 +309.02952694892883,0.55,0.0,0.0,0.0,0.51392967 +309.03979992866516,0.55,0.0,0.0,0.0,0.51392967 +309.0495331287384,0.55,0.0,0.0,0.0,0.51392967 +309.0610899925232,0.55,0.0,0.0,0.0,0.52317995 +309.0700969696045,0.55,0.0,0.0,0.0,0.52317995 +309.0798180103302,0.53999996,0.0,0.0,0.0,0.52317995 +309.0905029773712,0.53999996,0.0,0.0,0.0,0.52317995 +309.099534034729,0.53999996,0.0,0.0,0.0,0.52317995 +309.11184096336365,0.53,0.0,0.0,0.0,0.52502996 +309.1207959651947,0.53,0.0,0.0,0.0,0.52502996 +309.12973403930664,0.52,0.0,0.0,0.0,0.52502996 +309.13953614234924,0.52,0.0,0.0,0.0,0.52502996 +309.15104603767395,0.51,0.0,0.0,0.0,0.52502996 +309.1600389480591,0.51,0.0,0.0,0.0,0.52317995 +309.16991209983826,0.5,0.0,0.0,0.0,0.52317995 +309.1806719303131,0.5,0.0,0.0,0.0,0.52317995 +309.1896929740906,0.48999998,0.0,0.0,0.0,0.52317995 +309.20099806785583,0.48999998,0.0,0.0,0.0,0.52317995 +309.209450006485,0.48,0.0,0.0,0.0,0.52317995 +309.22082591056824,0.48,0.0,0.0,0.0,0.48987904 +309.22952914237976,0.48,0.0,0.0,0.0,0.48987904 +309.23979210853577,0.47,0.0,0.0,0.0,0.48987904 +309.25002002716064,0.47,0.0,0.0,0.0,0.48987904 +309.2599890232086,0.45999998,0.0,0.0,0.0,0.45657814 +309.26997208595276,0.45,0.0,0.0,0.0,0.45657814 +309.27984404563904,0.45,0.0,0.0,0.0,0.45657814 +309.2900929450989,0.44,0.0,0.0,0.0,0.45657814 +309.30398201942444,0.42,0.0,0.0,0.0,0.45657814 +309.3103609085083,0.41,0.0,0.0,0.0,0.45657814 +309.3208041191101,0.39999998,0.0,0.0,0.0,0.488029 +309.32951498031616,0.39,0.0,0.0,0.0,0.488029 +309.33966994285583,0.38,0.0,0.0,0.0,0.488029 +309.3500759601593,0.37,0.0,0.0,0.0,0.488029 +309.3609960079193,0.35999998,0.0,0.0,0.0,0.3455752 +309.37002897262573,0.35999998,0.0,0.0,0.0,0.3455752 +309.3849799633026,0.35,0.0,0.0,0.0,0.3455752 +309.3901650905609,0.34,0.0,0.0,0.0,0.3455752 +309.40295696258545,0.32999998,0.0,0.0,0.0,0.3455752 +309.4117829799652,0.32999998,0.0,0.0,0.0,0.3455752 +309.4197311401367,0.32,0.0,0.0,0.0,0.093968526 +309.42952013015747,0.32,0.0,0.0,0.0,0.093968526 +309.4398419857025,0.31,0.0,0.0,0.0,0.093968526 +309.45049691200256,0.31,0.0,0.0,0.0,0.093968526 +309.4594249725342,0.29999998,0.0,0.0,0.0,0.068067834 +309.4719560146332,0.29,0.0,0.0,0.0,0.068067834 +309.4826729297638,0.29,0.0,0.0,0.0,0.068067834 +309.49296402931213,0.28,0.0,0.0,0.0,0.068067834 +309.5019619464874,0.28,0.0,0.0,0.0,0.068067834 +309.5109529495239,0.26999998,0.0,0.0,0.0,-0.14098771 +309.51995611190796,0.26999998,0.0,0.0,0.0,-0.14098771 +309.5295350551605,0.26,0.0,0.0,0.0,-0.14098771 +309.53959608078003,0.26,0.0,0.0,0.0,-0.14098771 +309.5503160953522,0.26,0.0,0.0,0.0,-0.14098771 +309.5595359802246,0.26,0.0,0.0,0.0,-0.19093902 +309.57293605804443,0.25,0.0,0.0,0.0,-0.19093902 +309.5829589366913,0.25,0.0,0.0,0.0,-0.19093902 +309.5894980430603,0.25,0.0,0.0,0.0,-0.19093902 +309.60095596313477,0.25,0.0,0.0,0.0,-0.19093902 +309.60995292663574,0.25,0.0,0.0,0.0,-0.33524287 +309.6198139190674,0.24,0.0,0.0,0.0,-0.33524287 +309.6294491291046,0.24,0.0,0.0,0.0,-0.33524287 +309.63985109329224,0.22999999,0.0,0.0,0.0,-0.33524287 +309.64950609207153,0.22999999,0.0,0.0,0.0,-0.33524287 +309.663950920105,0.22999999,0.0,0.0,0.0,-0.38519418 +309.6729209423065,0.22,0.0,0.0,0.0,-0.38519418 +309.67965292930603,0.22,0.0,0.0,0.0,-0.38519418 +309.69024205207825,0.22,0.0,0.0,0.0,-0.38519418 +309.6998999118805,0.22,0.0,0.0,0.0,-0.38519418 +309.7104959487915,0.22,0.0,0.0,0.0,-0.37594396 +309.71951508522034,0.22,0.0,0.0,0.0,-0.37594396 +309.72951006889343,0.22,0.75757575,0.75757575,0.0,-0.37594396 +309.73961305618286,0.22,0.75757575,0.75757575,0.0,-0.37594396 +309.7535469532013,0.22,0.75757575,0.75757575,0.0,-0.37594396 +309.76090812683105,0.22,0.75757575,0.75757575,0.0,-0.4573461 +309.7696690559387,0.22,0.75757575,0.75757575,0.0,-0.4573461 +309.7802309989929,0.22,0.75757575,0.75757575,0.0,-0.4573461 +309.78987312316895,0.22,1.5151515,1.5151515,0.0,-0.4573461 +309.8005919456482,0.22,1.5151515,1.5151515,0.0,-0.4573461 +309.8094570636749,0.21,1.5151515,1.5151515,0.0,-0.7367035 +309.8208100795746,0.21,2.2727273,2.2727273,0.0,-0.7367035 +309.8295340538025,0.19999999,2.2727273,2.2727273,0.0,-0.7367035 +309.8398001194,0.19,2.2727273,2.2727273,0.0,-0.7367035 +309.8513820171356,0.19,2.2727273,2.2727273,0.0,-0.7367035 +309.86053705215454,0.17999999,2.2727273,2.2727273,0.0,-0.7681544 +309.8694610595703,0.17999999,2.2727273,2.2727273,0.0,-0.7681544 +309.87984108924866,0.17,2.2727273,2.2727273,0.0,-0.7681544 +309.8898310661316,0.17,2.2727273,2.2727273,0.0,-0.7681544 +309.89969992637634,0.17,3.030303,3.030303,0.0,-0.7681544 +309.91029810905457,0.16,3.030303,3.030303,0.0,-0.7681544 +309.91974902153015,0.16,3.030303,3.030303,0.0,-0.7718544 +309.93079900741577,0.14999999,3.030303,3.030303,0.0,-0.7718544 +309.93967294692993,0.14999999,3.030303,3.030303,0.0,-0.7718544 +309.9496669769287,0.14999999,3.030303,3.030303,0.0,-0.7718544 +309.9608271121979,0.14999999,3.030303,3.030303,0.0,-0.7626042 +309.96982312202454,0.14,3.030303,3.030303,0.0,-0.7626042 +309.9795410633087,0.14,3.787879,3.787879,0.0,-0.7626042 +309.989550113678,0.14,3.787879,3.787879,0.0,-0.7626042 +310.0010941028595,0.14999999,3.787879,3.787879,0.0,-0.7626042 +310.010155916214,0.14999999,4.5454545,4.5454545,0.0,-0.7626042 +310.0208430290222,0.14999999,4.5454545,4.5454545,0.0,-0.65530133 +310.0295379161835,0.14999999,4.5454545,4.5454545,0.0,-0.65530133 +310.0398690700531,0.16,4.5454545,4.5454545,0.0,-0.65530133 +310.05077600479126,0.16,4.5454545,4.5454545,0.0,-0.65530133 +310.0597689151764,0.16,4.5454545,4.5454545,0.0,-0.6886023 +310.0699830055237,0.16,4.5454545,4.5454545,0.0,-0.6886023 +310.07991099357605,0.16,4.5454545,4.5454545,0.0,-0.6886023 +310.0895550251007,0.16,4.5454545,4.5454545,0.0,-0.6886023 +310.1002960205078,0.16,4.5454545,4.5454545,0.0,-0.6886023 +310.10954999923706,0.14999999,4.5454545,4.5454545,0.0,-0.6886023 +310.1207880973816,0.14999999,5.3030305,5.3030305,0.0,-0.58129936 +310.1294901371002,0.14999999,5.3030305,5.3030305,0.0,-0.58129936 +310.1396610736847,0.14999999,5.3030305,5.3030305,0.0,-0.58129936 +310.14971709251404,0.16,5.3030305,5.3030305,0.0,-0.58129936 +310.1610200405121,0.17,5.3030305,5.3030305,0.0,-0.340793 +310.17002606391907,0.17999999,6.060606,6.060606,0.0,-0.340793 +310.18133997917175,0.19,6.818182,6.818182,0.0,-0.340793 +310.19027304649353,0.19999999,6.818182,6.818182,0.0,-0.340793 +310.19948291778564,0.21,7.575758,7.575758,0.0,-0.340793 +310.2118549346924,0.22,8.333334,8.333334,0.0,-0.377794 +310.2208240032196,0.22,8.333334,8.333334,0.0,-0.377794 +310.22952604293823,0.22,8.333334,8.333334,0.0,-0.377794 +310.2394449710846,0.22,8.333334,8.333334,0.0,-0.377794 +310.25111198425293,0.22,8.333334,8.333334,0.0,-0.377794 +310.25941705703735,0.22,8.333334,8.333334,0.0,-0.38704422 +310.27046513557434,0.21,7.575758,7.575758,0.0,-0.38704422 +310.28003001213074,0.21,7.575758,7.575758,0.0,-0.38704422 +310.2896671295166,0.21,6.818182,6.818182,0.0,-0.38704422 +310.29976201057434,0.22,6.818182,6.818182,0.0,-0.38704422 +310.3103139400482,0.22,6.060606,6.060606,0.0,-0.38704422 +310.32063007354736,0.22,6.060606,6.060606,0.0,-0.39259437 +310.32952904701233,0.22999999,6.060606,6.060606,0.0,-0.39259437 +310.33967208862305,0.22999999,6.060606,6.060606,0.0,-0.39259437 +310.35024213790894,0.24,6.060606,6.060606,0.0,-0.39259437 +310.35942912101746,0.24,5.3030305,5.3030305,0.0,-0.379644 +310.3694930076599,0.24,5.3030305,5.3030305,0.0,-0.379644 +310.37980008125305,0.25,5.3030305,5.3030305,0.0,-0.379644 +310.3895089626312,0.26,5.3030305,5.3030305,0.0,-0.379644 +310.4015779495239,0.26,5.3030305,5.3030305,0.0,-0.379644 +310.4105930328369,0.26999998,5.3030305,5.3030305,0.0,-0.379644 +310.41956996917725,0.26999998,5.3030305,5.3030305,0.0,-0.377794 +310.42955493927,0.26999998,5.3030305,5.3030305,0.0,-0.377794 +310.43980407714844,0.28,4.5454545,4.5454545,0.0,-0.377794 +310.4519319534302,0.28,4.5454545,4.5454545,0.0,-0.377794 +310.46094608306885,0.29,4.5454545,4.5454545,0.0,-0.379644 +310.4699649810791,0.29,4.5454545,4.5454545,0.0,-0.379644 +310.48255705833435,0.29999998,4.5454545,4.5454545,0.0,-0.379644 +310.4915580749512,0.29999998,4.5454545,4.5454545,0.0,-0.379644 +310.49954104423523,0.31,4.5454545,4.5454545,0.0,-0.379644 +310.50954413414,0.31,4.5454545,4.5454545,0.0,-0.48139673 +310.52000999450684,0.31,3.787879,3.787879,0.0,-0.48139673 +310.52953600883484,0.31,3.787879,3.787879,0.0,-0.48139673 +310.5394229888916,0.31,3.787879,3.787879,0.0,-0.48139673 +310.5511209964752,0.32,3.030303,3.030303,0.0,-0.48139673 +310.56012511253357,0.32,3.030303,3.030303,0.0,-0.39259437 +310.56989192962646,0.32,3.030303,3.030303,0.0,-0.39259437 +310.5815200805664,0.32,3.030303,3.030303,0.0,-0.39259437 +310.58977913856506,0.32999998,3.030303,3.030303,0.0,-0.39259437 +310.59950709342957,0.32999998,3.030303,3.030303,0.0,-0.39259437 +310.610857963562,0.34,3.030303,3.030303,0.0,-0.3888943 +310.6198251247406,0.34,3.030303,3.030303,0.0,-0.3888943 +310.629506111145,0.34,2.2727273,2.2727273,0.0,-0.3888943 +310.6398539543152,0.35,2.2727273,2.2727273,0.0,-0.3888943 +310.65029191970825,0.35,2.2727273,2.2727273,0.0,-0.3888943 +310.65949511528015,0.35,2.2727273,2.2727273,0.0,-0.3888943 +310.67057609558105,0.35,2.2727273,2.2727273,0.0,-0.3888943 +310.68043994903564,0.35999998,1.5151515,1.5151515,0.0,-0.3888943 +310.6895909309387,0.35999998,1.5151515,1.5151515,0.0,-0.3888943 +310.70158791542053,0.35999998,1.5151515,1.5151515,0.0,-0.3888943 +310.71060705184937,0.35999998,1.5151515,1.5151515,0.0,-0.3981445 +310.71959495544434,0.35999998,0.75757575,0.75757575,0.0,-0.3981445 +310.7295229434967,0.35999998,0.75757575,0.75757575,0.0,-0.3981445 +310.740464925766,0.35999998,0.75757575,0.75757575,0.0,-0.3981445 +310.74948596954346,0.35999998,0.75757575,0.75757575,0.0,-0.3981445 +310.75961208343506,0.35999998,0.75757575,0.75757575,0.0,-0.34634316 +310.76948499679565,0.35999998,0.75757575,0.75757575,0.0,-0.34634316 +310.77939796447754,0.35999998,0.75757575,0.75757575,0.0,-0.34634316 +310.7916920185089,0.35999998,0.0,0.0,0.93720716,-0.34634316 +310.8006970882416,0.35999998,0.0,0.0,0.93720716,-0.34634316 +310.80971693992615,0.35999998,0.0,0.0,0.93720716,-0.2501406 +310.8205349445343,0.35999998,0.0,0.0,0.93720716,-0.2501406 +310.83063411712646,0.35999998,0.0,0.0,0.93720716,-0.2501406 +310.839555978775,0.37,0.0,0.0,0.93720716,-0.2501406 +310.8498070240021,0.37,0.0,0.0,0.93720716,-0.2501406 +310.85948610305786,0.37,0.0,0.0,0.93720716,-0.22608997 +310.87021112442017,0.37,0.0,0.0,0.93720716,-0.22608997 +310.8817961215973,0.37,0.0,0.0,0.93720716,-0.22608997 +310.88942694664,0.37,0.0,0.0,0.90909094,-0.22608997 +310.89981412887573,0.37,0.0,0.0,0.8434864,-0.22608997 +310.91037011146545,0.37,0.0,0.0,0.7966261,-0.22608997 +310.9198501110077,0.37,0.0,0.0,0.7497657,-0.17613864 +310.9293999671936,0.37,0.0,0.0,0.6935333,-0.17613864 +310.94129395484924,0.37,0.0,0.0,0.6466729,-0.17613864 +310.9502909183502,0.37,0.0,0.0,0.6091846,-0.17613864 +310.9594900608063,0.37,0.0,0.0,0.5623243,-0.06143559 +310.97022104263306,0.37,0.0,0.0,0.53420806,-0.06143559 +310.9809069633484,0.38,0.0,0.0,0.48734772,-0.06143559 +310.9896430969238,0.38,0.0,0.0,0.4592315,-0.06143559 +311.00045704841614,0.38,0.0,0.0,0.4217432,-0.06143559 +311.01023292541504,0.38,0.0,0.0,0.393627,-0.06143559 +311.0196580886841,0.38,0.0,0.0,0.3655108,-0.07993608 +311.02952003479004,0.38,0.0,0.0,0.33739457,-0.07993608 +311.04025411605835,0.38,0.0,0.0,0.30927837,-0.07993608 +311.0521140098572,0.38,0.0,0.0,0.28116214,-0.07993608 +311.0604829788208,0.38,0.0,0.0,0.25304592,-0.06513569 +311.0710039138794,0.38,0.0,0.0,0.23430179,-0.06513569 +311.0800280570984,0.38,0.0,0.0,0.20618556,-0.06513569 +311.0904381275177,0.38,0.0,0.0,0.18744142,-0.06513569 +311.10117506980896,0.39,0.0,0.0,0.16869728,-0.06513569 +311.1097459793091,0.39,0.0,0.0,0.15932521,-0.06513569 +311.1198580265045,0.39,0.0,0.0,0.14058107,-0.039235007 +311.12953209877014,0.39999998,0.0,0.0,0.131209,-0.039235007 +311.14214611053467,0.39999998,0.0,0.0,0.11246486,-0.039235007 +311.14967012405396,0.39999998,0.0,0.0,0.10309278,-0.039235007 +311.16113114356995,0.39999998,0.0,0.0,0.08434864,-0.026284654 +311.1701591014862,0.39999998,0.0,0.0,0.07497657,-0.026284654 +311.179575920105,0.39999998,0.0,0.0,0.0656045,-0.026284654 +311.1913421154022,0.41,0.0,0.0,0.046860356,-0.026284654 +311.200364112854,0.41,0.0,0.0,0.037488285,-0.026284654 +311.21060705184937,0.41,0.0,0.0,0.028116215,-0.026284654 +311.2198169231415,0.41,0.0,0.0,0.028116215,0.032916907 +311.22953510284424,0.42,0.0,0.0,0.009372071,0.032916907 +311.2408490180969,0.42,0.0,0.0,0.009372071,0.032916907 +311.25086307525635,0.42,0.0,0.0,0.0,0.032916907 +311.2597780227661,0.42,0.0,0.0,0.0,0.09211848 +311.272136926651,0.42999998,0.0,0.0,0.0,0.09211848 +311.2797141075134,0.42999998,0.0,0.0,0.0,0.09211848 +311.2905330657959,0.42999998,0.0,0.0,0.0,0.09211848 +311.2995340824127,0.42999998,0.0,0.0,0.0,0.09211848 +311.3101649284363,0.44,0.0,0.0,0.0,0.09211848 +311.3198571205139,0.44,0.0,0.0,0.0,0.093968526 +311.3295409679413,0.44,0.0,0.0,0.0,0.093968526 +311.33998799324036,0.45,0.0,0.0,0.0,0.093968526 +311.3502321243286,0.45,0.0,0.0,0.0,0.093968526 +311.3595299720764,0.45,0.0,0.0,0.0,0.17352064 +311.37165212631226,0.45,0.0,0.0,0.0,0.17352064 +311.3806929588318,0.45,0.0,0.0,0.0,0.17352064 +311.3896949291229,0.45,0.0,0.0,0.0,0.17352064 +311.40011405944824,0.45,0.0,0.0,0.0,0.17352064 +311.40970396995544,0.45,0.0,0.0,0.0,0.17352064 +311.4198679924011,0.45,0.0,0.0,0.0,0.1790708 +311.42956614494324,0.45,0.0,0.0,0.0,0.1790708 +311.4404089450836,0.45,0.0,0.0,0.0,0.1790708 +311.44942808151245,0.44,0.0,0.0,0.0,0.1790708 +311.4618229866028,0.44,0.0,0.0,0.0,0.17352064 +311.4699709415436,0.44,0.0,0.0,0.0,0.17352064 +311.47985005378723,0.44,0.0,0.0,0.0,0.17352064 +311.49013209342957,0.44,0.0,0.0,0.0,0.17352064 +311.5003800392151,0.44,0.0,0.0,0.0,0.17352064 +311.50949811935425,0.44,0.0,0.0,0.0,0.1716706 +311.51988911628723,0.44,0.0,0.0,0.0,0.1716706 +311.52955198287964,0.44,0.0,0.0,0.0,0.1716706 +311.539510011673,0.42999998,0.0,0.0,0.0,0.1716706 +311.55199098587036,0.42999998,0.0,0.0,0.0,0.1716706 +311.56102299690247,0.42999998,0.0,0.0,0.0,0.18092082 +311.5700271129608,0.42999998,0.0,0.0,0.0,0.18092082 +311.5800759792328,0.42999998,0.0,0.0,0.0,0.18092082 +311.5894989967346,0.42999998,0.0,0.0,0.0,0.18092082 +311.60065603256226,0.42999998,0.0,0.0,0.0,0.18092082 +311.6115629673004,0.42999998,0.0,0.0,0.0,0.15687022 +311.62056612968445,0.42999998,0.0,0.0,0.0,0.15687022 +311.6295690536499,0.42999998,0.0,0.0,0.0,0.15687022 +311.64208006858826,0.42,0.0,0.0,0.0,0.15687022 +311.6511790752411,0.42,0.0,0.0,0.0,0.15687022 +311.66020798683167,0.42,0.0,0.0,0.0,0.14021976 +311.66968512535095,0.42,0.0,0.0,0.0,0.14021976 +311.67956709861755,0.42,0.0,0.0,0.0,0.14021976 +311.6895430088043,0.42,0.0,0.0,0.0,0.14021976 +311.6996660232544,0.42,0.0,0.0,0.0,0.14021976 +311.71064496040344,0.42,0.0,0.0,0.0,0.1420698 +311.71963596343994,0.42,0.0,0.0,0.0,0.1420698 +311.72944712638855,0.42,0.0,0.0,0.0,0.1420698 +311.74099111557007,0.42,0.0,0.0,0.0,0.1420698 +311.7499179840088,0.41,0.0,0.0,0.0,0.1420698 +311.75958013534546,0.41,0.0,0.0,0.0,0.14947 +311.7720799446106,0.41,0.0,0.0,0.0,0.14947 +311.7816801071167,0.39999998,0.0,0.0,0.0,0.14947 +311.79171800613403,0.39999998,0.0,0.0,0.0,0.14947 +311.7997770309448,0.39999998,0.0,0.0,0.0,0.14947 +311.809730052948,0.39999998,0.0,0.0,0.0,0.14947 +311.8198039531708,0.39999998,0.0,0.0,0.0,0.15687022 +311.82955598831177,0.39999998,0.0,0.0,0.0,0.15687022 +311.8405330181122,0.39999998,0.0,0.0,0.0,0.15687022 +311.84953212738037,0.39999998,0.0,0.0,0.0,0.15687022 +311.86070108413696,0.39999998,0.0,0.0,0.0,0.1346696 +311.8720920085907,0.39999998,0.0,0.0,0.0,0.1346696 +311.8818061351776,0.39999998,0.0,0.0,0.0,0.1346696 +311.89083099365234,0.39,0.0,0.0,0.0,0.1346696 +311.89983105659485,0.39,0.0,0.0,0.0,0.1346696 +311.91035509109497,0.39,0.0,0.0,0.0,0.1346696 +311.91984009742737,0.39,0.0,0.0,0.0,0.13096951 +311.92956495285034,0.39,0.0,0.0,0.0,0.13096951 +311.93968200683594,0.39,0.0,0.0,0.0,0.13096951 +311.9520649909973,0.38,0.0,0.0,0.0,0.13096951 +311.9618661403656,0.38,0.0,0.0,0.0,0.1457699 +311.9697639942169,0.38,0.0,0.0,0.0,0.1457699 +311.98091197013855,0.38,0.0,0.0,0.0,0.1457699 +311.9899170398712,0.38,0.0,0.0,0.0,0.1457699 +311.9994490146637,0.38,0.0,0.0,0.0,0.1457699 +312.01109504699707,0.38,0.0,0.0,0.0,0.1457699 +312.0198531150818,0.38,0.0,0.0,0.0,0.15132006 +312.02956199645996,0.38,0.0,0.0,0.0,0.15132006 +312.0420501232147,0.37,0.0,0.0,0.0,0.15132006 +312.0495181083679,0.37,0.0,0.0,0.0,0.15132006 +312.05983996391296,0.35999998,0.0,0.0,0.0,0.16057031 +312.07074213027954,0.35999998,0.0,0.0,0.0,0.16057031 +312.0796549320221,0.35,0.0,0.0,0.0,0.16057031 +312.0920341014862,0.35,0.0,0.0,0.0,0.16057031 +312.1008689403534,0.34,0.0,0.0,0.0,0.16057031 +312.1094949245453,0.34,0.0,0.0,0.0,0.16057031 +312.1197979450226,0.32999998,0.0,0.0,0.0,0.14947 +312.12952709198,0.32999998,0.0,0.0,0.0,0.14947 +312.14202094078064,0.32,0.0,0.0,0.0,0.14947 +312.1503019332886,0.32,0.0,0.0,0.0,0.14947 +312.1598300933838,0.31,0.0,0.0,0.0,0.14761995 +312.16949009895325,0.29999998,0.0,0.0,0.0,0.14761995 +312.1803209781647,0.29999998,0.0,0.0,0.0,0.14761995 +312.1898491382599,0.29,0.0,0.0,0.0,0.14761995 +312.20075702667236,0.29,0.0,0.0,0.0,0.14761995 +312.209753036499,0.28,0.0,0.0,0.0,0.14761995 +312.219829082489,0.28,0.0,0.0,0.0,0.1531701 +312.22954392433167,0.28,0.0,0.0,0.0,0.1531701 +312.240021944046,0.26999998,0.0,0.0,0.0,0.1531701 +312.250785112381,0.26999998,0.0,0.0,0.0,0.1531701 +312.26010298728943,0.26999998,0.0,0.0,0.0,0.14761995 +312.2720420360565,0.26,0.0,0.0,0.0,0.14761995 +312.28145694732666,0.26,0.0,0.0,0.0,0.14761995 +312.28958201408386,0.26,0.0,0.0,0.0,0.14761995 +312.29971194267273,0.25,0.0,0.0,0.0,0.14761995 +312.3111629486084,0.25,0.0,0.0,0.0,0.14021976 +312.3197019100189,0.25,0.0,0.0,0.0,0.14021976 +312.3295650482178,0.25,0.0,0.0,0.0,0.14021976 +312.3411419391632,0.24,0.0,0.0,0.0,0.14021976 +312.3501579761505,0.24,0.0,0.0,0.0,0.14021976 +312.3620240688324,0.24,0.0,0.0,0.0,0.14947 +312.3716731071472,0.24,0.0,0.0,0.0,0.14947 +312.3806719779968,0.24,0.0,0.0,0.0,0.14947 +312.38965606689453,0.22999999,0.0,0.0,0.0,0.14947 +312.3994460105896,0.22999999,0.0,0.0,0.0,0.14947 +312.4098310470581,0.22999999,0.0,0.0,0.0,0.14947 +312.4198520183563,0.22999999,0.0,0.0,0.0,0.1716706 +312.42957401275635,0.22999999,0.0,0.0,0.0,0.1716706 +312.4398899078369,0.22,0.0,0.0,0.0,0.1716706 +312.44990611076355,0.22,0.0,0.0,0.0,0.1716706 +312.4615309238434,0.22,0.0,0.0,0.0,0.14021976 +312.47064304351807,0.22,0.0,0.0,0.0,0.14021976 +312.4796380996704,0.22,0.0,0.0,0.0,0.14021976 +312.48956394195557,0.22,0.0,0.0,0.0,0.14021976 +312.5020089149475,0.21,0.0,0.0,0.0,0.14021976 +312.51083111763,0.21,0.0,0.0,0.0,0.034766953 +312.52125000953674,0.21,0.0,0.0,0.0,0.034766953 +312.5302839279175,0.19999999,0.0,0.0,0.0,0.034766953 +312.5395390987396,0.19999999,0.0,0.0,0.0,0.034766953 +312.5516219139099,0.19,0.0,0.0,0.0,0.034766953 +312.5597081184387,0.19,0.0,0.0,0.0,0.1457699 +312.5695869922638,0.17999999,0.0,0.0,0.0,0.1457699 +312.5797679424286,0.17999999,0.0,0.0,0.0,0.1457699 +312.59000396728516,0.17999999,0.0,0.0,0.0,0.1457699 +312.60200905799866,0.17,0.0,0.0,0.0,0.1457699 +312.6113359928131,0.17,0.0,0.0,0.0,0.15132006 +312.6198720932007,0.17,0.0,0.0,0.0,0.15132006 +312.62954902648926,0.17,0.0,0.0,0.0,0.15132006 +312.6408910751343,0.16,0.0,0.0,0.0,0.15132006 +312.6499869823456,0.16,0.0,0.0,0.0,0.15132006 +312.65960001945496,0.16,0.0,0.0,0.0,0.1531701 +312.6699159145355,0.14999999,0.0,0.0,0.0,0.1531701 +312.6801221370697,0.14999999,0.0,0.0,0.0,0.1531701 +312.6907870769501,0.14999999,0.0,0.0,0.0,0.1531701 +312.70137310028076,0.14999999,0.0,0.0,0.0,0.1531701 +312.7099850177765,0.14,0.0,0.0,0.0,0.1420698 +312.7194130420685,0.14,0.0,0.0,0.0,0.1420698 +312.72952795028687,0.13,0.0,0.0,0.0,0.1420698 +312.74028992652893,0.13,0.0,0.0,0.0,0.1420698 +312.7495081424713,0.13,0.0,0.0,0.0,0.1420698 +312.7595999240875,0.12,0.0,0.0,0.0,0.1531701 +312.7709159851074,0.12,0.0,0.0,0.0,0.1531701 +312.78116106987,0.12,0.0,0.0,0.0,0.1531701 +312.79145097732544,0.11,0.0,0.0,0.0,0.1531701 +312.80045890808105,0.11,0.0,0.0,0.0,0.1531701 +312.8094620704651,0.099999994,0.0,0.0,0.0,0.1531701 +312.81938910484314,0.099999994,0.0,0.0,0.0,0.16242035 +312.8295741081238,0.089999996,0.0,0.0,0.0,0.16242035 +312.8394811153412,0.089999996,0.0,0.0,0.0,0.16242035 +312.84955501556396,0.08,0.0,0.0,0.0,0.16242035 +312.8593981266022,0.07,0.0,0.0,0.0,0.14947 +312.8720009326935,0.07,0.0,0.0,0.0,0.14947 +312.88150095939636,0.07,0.0,0.0,0.0,0.14947 +312.89050006866455,0.06,0.0,0.0,0.0,0.14947 +312.89950299263,0.06,0.0,0.0,0.0,0.14947 +312.9111580848694,0.049999997,0.0,0.0,0.0,0.14947 +312.91986203193665,0.049999997,0.0,0.0,0.0,0.14947 +312.92945313453674,0.04,0.0,0.0,0.0,0.14947 +312.9403259754181,0.04,0.0,0.0,0.0,0.14947 +312.9519929885864,0.04,0.0,0.0,0.0,0.14947 +312.9618909358978,0.04,0.0,0.0,0.0,0.16242035 +312.969703912735,0.03,0.0,0.0,0.0,0.16242035 +312.9797320365906,0.02,0.0,0.0,0.0,0.16242035 +312.98959708213806,0.02,0.0,0.0,0.0,0.16242035 +313.00140404701233,0.02,0.0,0.0,0.0,0.16242035 +313.0103940963745,0.01,0.0,0.0,0.0,0.16242035 +313.0198769569397,0.01,0.0,0.0,0.0,0.1457699 +313.02957797050476,0.0,0.0,0.0,0.0,0.1457699 +313.0395441055298,0.0,0.0,0.0,0.0,0.1457699 +313.05101704597473,0.0,0.0,0.0,0.0,0.1457699 +313.05993008613586,0.0,0.0,0.0,0.0,0.1531701 +313.0706820487976,0.0,0.0,0.0,0.0,0.1531701 +313.0796890258789,0.0,0.0,0.0,0.0,0.1531701 +313.09135603904724,0.0,0.0,0.0,0.0,0.1531701 +313.10009503364563,0.0,0.0,0.0,0.0,0.1531701 +313.1111681461334,0.0,0.0,0.0,0.0,0.15687022 +313.11961007118225,0.0,0.0,0.0,0.0,0.15687022 +313.1295509338379,0.0,0.0,0.0,0.0,0.15687022 +313.1401569843292,0.0,0.0,0.0,0.0,0.15687022 +313.1517560482025,0.0,0.0,0.0,0.0,0.15687022 +313.16076397895813,0.0,0.0,0.0,0.0,0.1531701 +313.1697599887848,0.0,0.0,0.0,0.0,0.1531701 +313.17992210388184,0.0,0.0,0.0,0.0,0.1531701 +313.19029808044434,0.0,0.0,0.0,0.0,0.1531701 +313.2018210887909,0.0,0.0,0.0,0.0,0.1531701 +313.2100110054016,0.0,0.0,0.0,0.0,0.1531701 +313.21985912323,0.0,0.0,0.0,0.0,0.13651967 +313.229474067688,0.0,0.0,0.0,0.0,0.13651967 +313.2418029308319,0.0,0.0,0.0,0.0,0.13651967 +313.25068497657776,0.0,0.0,0.0,0.0,0.13651967 +313.25940704345703,0.0,0.0,0.0,0.0,0.1420698 +313.2712481021881,0.0,0.0,0.0,0.0,0.1420698 +313.2802519798279,0.0,0.0,0.0,0.0,0.1420698 +313.28940296173096,0.0,0.0,0.0,0.0,0.1420698 +313.30019211769104,0.0,0.0,0.0,0.0,0.1420698 +313.3095049858093,0.0,0.0,0.0,0.0,0.1420698 +313.32191491127014,0.0,0.0,0.0,0.0,0.10691887 +313.33188796043396,0.0,0.0,0.0,0.0,0.10691887 +313.3409090042114,0.0,0.0,0.0,0.0,0.10691887 +313.34989404678345,0.0,0.0,0.0,0.0,0.10691887 +313.35994005203247,0.0,0.0,0.0,0.0,0.16242035 +313.3702199459076,0.0,0.0,0.0,0.0,0.16242035 +313.37941098213196,0.0,0.0,0.0,0.0,0.16242035 +313.38956904411316,0.0,0.0,0.0,0.0,0.16242035 +313.4001669883728,0.0,0.0,0.0,0.0,0.16242035 +313.41193199157715,0.0,0.0,0.0,0.0,0.16427042 +313.41988492012024,0.0,0.0,0.0,0.0,0.16427042 +313.4295780658722,0.0,0.0,0.0,0.0,0.16427042 +313.43996810913086,0.0,0.0,0.0,0.0,0.16427042 +313.45038890838623,0.0,0.0,0.0,0.0,0.16427042 +313.4601330757141,0.0,0.0,0.0,0.0,0.15872025 +313.46954107284546,0.0,0.0,0.0,0.0,0.15872025 +313.48131108283997,0.0,0.0,0.0,0.0,0.15872025 +313.49024200439453,0.0,0.0,0.0,0.0,0.15872025 +313.5019509792328,0.0,0.0,0.0,0.0,0.15872025 +313.509388923645,0.0,0.0,0.0,0.0,0.1716706 +313.51985001564026,0.0,0.0,0.0,0.0,0.1716706 +313.5295910835266,0.0,0.0,0.0,0.0,0.1716706 +313.54107904434204,0.0,0.75757575,0.75757575,0.0,0.1716706 +313.55009412765503,0.0,0.75757575,0.75757575,0.0,0.1716706 +313.55945897102356,0.0,0.75757575,0.75757575,0.0,0.15687022 +313.5705749988556,0.0,0.0,0.0,0.0,0.15687022 +313.58049297332764,0.0,0.0,0.0,0.0,0.15687022 +313.5895221233368,0.0,0.75757575,0.75757575,0.0,0.15687022 +313.60038900375366,0.0,0.75757575,0.75757575,0.0,0.15687022 +313.61111307144165,0.0,0.75757575,0.75757575,0.0,0.1420698 +313.61988401412964,0.0,0.75757575,0.75757575,0.0,0.1420698 +313.6295509338379,0.0,0.75757575,0.75757575,0.0,0.1420698 +313.6400480270386,0.0,0.75757575,0.75757575,0.0,0.1420698 +313.6496560573578,0.0,0.75757575,0.75757575,0.0,0.1420698 +313.66165804862976,0.0,0.75757575,0.75757575,0.0,0.14947 +313.67066407203674,0.0,0.75757575,0.75757575,0.0,0.14947 +313.67968797683716,0.0,0.75757575,0.75757575,0.0,0.14947 +313.6919150352478,0.0,0.75757575,0.75757575,0.0,0.14947 +313.7011921405792,0.0,1.5151515,1.5151515,0.0,0.14947 +313.70953011512756,0.0,1.5151515,1.5151515,0.0,0.13651967 +313.7194299697876,0.0,1.5151515,1.5151515,0.0,0.13651967 +313.7295780181885,0.0,1.5151515,1.5151515,0.0,0.13651967 +313.7397689819336,0.0,1.5151515,1.5151515,0.0,0.13651967 +313.7502920627594,0.0,1.5151515,1.5151515,0.0,0.13651967 +313.76082491874695,0.0,1.5151515,1.5151515,0.0,0.1457699 +313.76984190940857,0.0,1.5151515,1.5151515,0.0,0.1457699 +313.7818109989166,0.0,1.5151515,1.5151515,0.0,0.1457699 +313.7907290458679,0.0,1.5151515,1.5151515,0.0,0.1457699 +313.7996361255646,0.0,1.5151515,1.5151515,0.0,0.1457699 +313.8108100891113,0.0,1.5151515,1.5151515,0.0,0.1457699 +313.8198890686035,0.0,2.2727273,2.2727273,0.0,0.1420698 +313.82956409454346,0.0,2.2727273,2.2727273,0.0,0.1420698 +313.84190702438354,0.0,2.2727273,2.2727273,0.0,0.1420698 +313.85100197792053,0.0,2.2727273,2.2727273,0.0,0.1420698 +313.85997700691223,0.0,1.5151515,1.5151515,0.0,0.14021976 +313.8708679676056,0.0,1.5151515,1.5151515,0.0,0.14021976 +313.8798580169678,0.0,2.2727273,2.2727273,0.0,0.14021976 +313.890398979187,0.0,2.2727273,2.2727273,0.0,0.14021976 +313.8994309902191,0.0,2.2727273,2.2727273,0.0,0.14021976 +313.9098401069641,0.0,2.2727273,2.2727273,0.0,0.14021976 +313.91988801956177,0.0,2.2727273,2.2727273,0.0,0.13651967 +313.9295930862427,0.0,2.2727273,2.2727273,0.0,0.13651967 +313.9411721229553,0.0,3.030303,3.030303,0.0,0.13651967 +313.9502091407776,0.0,3.030303,3.030303,0.0,0.13651967 +313.95941400527954,0.0,3.787879,3.787879,0.0,0.12356931 +313.9714639186859,0.0,5.3030305,5.3030305,0.0,0.12356931 +313.9802119731903,0.0,7.575758,7.575758,0.0,0.12356931 +313.9894769191742,0.0,9.848485,9.848485,0.0,0.12356931 +313.999773979187,0.0,11.363637,11.363637,0.0,0.12356931 +314.00944113731384,0.0,13.636364,13.636364,0.0,0.12356931 +314.0198609828949,0.0,15.151516,15.151516,0.009372071,0.12356931 +314.0295090675354,0.0,15.909091,15.909091,0.009372071,0.12356931 +314.0402600765228,0.0,17.424242,17.424242,0.018744143,0.12356931 +314.04941511154175,0.0,18.181818,18.181818,0.018744143,0.12356931 +314.0593960285187,0.0,19.69697,19.69697,0.028116215,0.116169125 +314.0705020427704,0.0,21.212122,21.212122,0.028116215,0.116169125 +314.07950496673584,0.0,22.727274,22.727274,0.028116215,0.116169125 +314.0894651412964,0.0,24.242424,24.242424,0.037488285,0.116169125 +314.10188698768616,0.0,26.515152,26.515152,0.037488285,0.116169125 +314.11116909980774,0.0,26.515152,26.515152,0.046860356,0.10876893 +314.1195020675659,0.0,29.545454,29.545454,0.046860356,0.10876893 +314.12957096099854,0.0,31.060606,31.060606,0.046860356,0.10876893 +314.13956904411316,0.0,32.575756,32.575756,0.05623243,0.10876893 +314.15154004096985,0.0,33.333336,33.333336,0.05623243,0.10876893 +314.1593930721283,0.0,35.60606,35.60606,0.0656045,0.08286824 +314.16953802108765,0.0,37.878788,37.878788,0.0656045,0.08286824 +314.17967796325684,0.0,40.90909,40.90909,0.07497657,0.08286824 +314.19175004959106,0.0,43.181816,43.181816,0.07497657,0.08286824 +314.200660943985,0.0,45.454548,45.454548,0.08434864,0.08286824 +314.2095251083374,0.0,47.727272,47.727272,0.08434864,0.08286824 +314.2205579280853,0.0,50.0,50.0,0.09372071,0.062517695 +314.22960209846497,0.0,50.757576,50.757576,0.09372071,0.062517695 +314.2395849227905,0.0,51.515152,51.515152,0.10309278,0.062517695 +314.2505919933319,0.0,52.272724,52.272724,0.09372071,0.062517695 +314.25960206985474,0.0,53.030304,53.030304,0.10309278,0.021816617 +314.26947808265686,0.0,55.30303,55.30303,0.11246486,0.021816617 +314.2808611392975,0.0,57.57576,57.57576,0.11246486,0.021816617 +314.2897710800171,0.0,59.848484,59.848484,0.12183693,0.021816617 +314.30184602737427,0.0,62.121212,62.121212,0.12183693,0.021816617 +314.3108649253845,0.0,64.393936,64.393936,0.12183693,0.021816617 +314.3198630809784,0.0,65.90909,65.90909,0.12183693,-0.013334316 +314.3295750617981,0.0,68.18182,68.18182,0.12183693,-0.013334316 +314.3406240940094,0.0,56.060604,56.060604,0.131209,-0.013334316 +314.34964394569397,0.0,40.90909,40.90909,0.12183693,-0.013334316 +314.3596019744873,0.0,27.272728,27.272728,0.131209,-0.022584556 +314.3699779510498,0.0,20.454544,20.454544,0.131209,-0.022584556 +314.38135409355164,0.0,25.757576,25.757576,0.14058107,-0.022584556 +314.3898079395294,0.0,31.818182,31.818182,0.14058107,-0.022584556 +314.3994331359863,0.0,37.878788,37.878788,0.14058107,-0.022584556 +314.41003799438477,0.0,43.939392,43.939392,0.14995314,-0.041085053 +314.41985607147217,0.0,50.0,50.0,0.14995314,-0.041085053 +314.4295630455017,0.0,54.545456,54.545456,0.15932521,-0.041085053 +314.439728975296,0.0,58.333332,58.333332,0.15932521,-0.041085053 +314.44955492019653,0.0,62.878788,62.878788,0.16869728,-0.041085053 +314.4613890647888,0.0,67.42425,67.42425,0.16869728,-0.0466352 +314.47171211242676,0.0,65.15151,65.15151,0.17806935,-0.0466352 +314.4818470478058,0.0,57.57576,57.57576,0.17806935,-0.0466352 +314.4912340641022,0.0,57.57576,57.57576,0.17806935,-0.0466352 +314.50022196769714,0.0,47.727272,47.727272,0.17806935,-0.0466352 +314.50946497917175,0.0,44.696968,44.696968,0.18744142,-0.054035395 +314.5199019908905,0.0,42.424244,42.424244,0.18744142,-0.054035395 +314.5294840335846,0.0,40.151516,40.151516,0.18744142,-0.054035395 +314.5395200252533,0.0,38.636364,38.636364,0.1968135,-0.054035395 +314.5518491268158,0.0,37.121216,37.121216,0.1968135,-0.054035395 +314.55951404571533,0.0,37.121216,37.121216,0.20618556,-0.050335295 +314.5701630115509,0.0,36.363636,36.363636,0.21555763,-0.050335295 +314.5809769630432,0.0,37.878788,37.878788,0.21555763,-0.050335295 +314.5904190540314,0.0,40.151516,40.151516,0.22492972,-0.050335295 +314.59945607185364,0.0,43.181816,43.181816,0.22492972,-0.050335295 +314.6094000339508,0.0,46.21212,46.21212,0.22492972,-0.06328564 +314.61953496932983,0.0,50.0,50.0,0.23430179,-0.06328564 +314.6295111179352,0.0,53.030304,53.030304,0.23430179,-0.06328564 +314.6407859325409,0.0,56.060604,56.060604,0.24367386,-0.06328564 +314.6518280506134,0.0,59.090908,59.090908,0.25304592,-0.06328564 +314.6593930721283,0.0,61.363636,61.363636,0.25304592,-0.054035395 +314.6712119579315,0.0,64.393936,64.393936,0.25304592,-0.054035395 +314.6805899143219,0.0,67.42425,67.42425,0.262418,-0.054035395 +314.6895999908447,0.0,71.969696,71.969696,0.27179006,-0.054035395 +314.699746131897,0.0,76.51515,76.51515,0.27179006,-0.054035395 +314.7099769115448,0.0,81.81818,81.81818,0.28116214,-0.089186326 +314.7194490432739,0.0,86.36363,86.36363,0.28116214,-0.089186326 +314.7295780181885,0.0,90.909096,90.909096,0.27179006,-0.089186326 +314.73946714401245,0.0,95.454544,95.454544,0.28116214,-0.089186326 +314.7500669956207,0.0,99.242424,99.242424,0.28116214,-0.089186326 +314.7617509365082,0.0,103.030304,103.030304,0.2905342,-0.054035395 +314.7707769870758,0.0,106.06061,106.06061,0.2905342,-0.054035395 +314.77979612350464,0.0,108.333336,108.333336,0.29990628,-0.054035395 +314.7894880771637,0.0,109.84849,109.84849,0.29990628,-0.054035395 +314.79951906204224,0.0,112.12121,112.12121,0.30927837,-0.054035395 +314.8094279766083,0.0,115.15152,115.15152,0.30927837,-0.054035395 +314.8199129104614,0.0,118.93939,118.93939,0.31865042,-0.06513569 +314.8295810222626,0.0,122.72727,122.72727,0.31865042,-0.06513569 +314.8418231010437,0.0,126.51515,126.51515,0.31865042,-0.06513569 +314.8512260913849,0.0,126.51515,126.51515,0.31865042,-0.06513569 +314.859393119812,0.0,134.09091,134.09091,0.3280225,-0.06143559 +314.86998295783997,0.0,137.12122,137.12122,0.33739457,-0.06143559 +314.88116002082825,0.0,140.15152,140.15152,0.33739457,-0.06143559 +314.8902111053467,0.0,142.42424,142.42424,0.33739457,-0.06143559 +314.89941000938416,0.0,143.93939,143.93939,0.33739457,-0.06143559 +314.9111850261688,0.0,144.69696,144.69696,0.33739457,-0.06143559 +314.9195189476013,0.0,146.21211,146.21211,0.34676665,-0.06143559 +314.92958402633667,0.0,149.24243,149.24243,0.3561387,-0.06143559 +314.94029998779297,0.0,152.27274,152.27274,0.3655108,-0.06143559 +314.9511139392853,0.0,156.06061,156.06061,0.3655108,-0.06143559 +314.9601619243622,0.0,159.84848,159.84848,0.3655108,-0.05588545 +314.97125697135925,0.0,163.63635,163.63635,0.3655108,-0.05588545 +314.9798059463501,0.0,167.42424,167.42424,0.3655108,-0.05588545 +314.9894859790802,0.0,170.45454,170.45454,0.3655108,-0.05588545 +315.00181102752686,0.0,173.48485,173.48485,0.3655108,-0.05588545 +315.0111770629883,0.0,173.48485,173.48485,0.37488285,-0.06143559 +315.02048993110657,0.0,178.0303,178.0303,0.37488285,-0.06143559 +315.0293960571289,0.0,179.54544,179.54544,0.37488285,-0.06143559 +315.039794921875,0.0,180.30304,180.30304,0.38425493,-0.06143559 +315.0495491027832,0.0,181.81819,181.81819,0.38425493,-0.06143559 +315.0595519542694,0.0,182.57576,182.57576,0.393627,-0.05588545 +315.07033705711365,0.0,184.84848,184.84848,0.38425493,-0.05588545 +315.0795440673828,0.0,187.12122,187.12122,0.38425493,-0.05588545 +315.09175992012024,0.0,189.39394,189.39394,0.393627,-0.05588545 +315.099632024765,0.0,191.66666,191.66666,0.393627,-0.05588545 +315.10957312583923,0.0,193.93939,193.93939,0.393627,-0.05588545 +315.11990308761597,0.0,196.21213,196.21213,0.40299907,-0.06698574 +315.12957096099854,0.0,198.48485,198.48485,0.40299907,-0.06698574 +315.14044713974,0.0,200.75758,200.75758,0.40299907,-0.06698574 +315.1494860649109,0.0,202.27274,202.27274,0.40299907,-0.06698574 +315.1599850654602,0.0,203.0303,203.0303,0.41237113,-0.089186326 +315.16949701309204,0.0,204.54546,204.54546,0.41237113,-0.089186326 +315.1796009540558,0.0,204.54546,204.54546,0.41237113,-0.089186326 +315.1897659301758,0.0,204.54546,204.54546,0.41237113,-0.089186326 +315.2017970085144,0.0,204.54546,204.54546,0.41237113,-0.089186326 +315.2111759185791,0.0,204.54546,204.54546,0.4217432,-0.07623599 +315.2198760509491,0.0,205.30302,205.30302,0.4217432,-0.07623599 +315.229553937912,0.0,206.81818,206.81818,0.4217432,-0.07623599 +315.23964500427246,0.0,207.57576,207.57576,0.41237113,-0.07623599 +315.2502450942993,0.0,209.0909,209.0909,0.41237113,-0.07623599 +315.2594211101532,0.0,210.60605,210.60605,0.41237113,-0.0577355 +315.2699611186981,0.0,211.36365,211.36365,0.41237113,-0.0577355 +315.28012704849243,0.0,211.36365,211.36365,0.41237113,-0.0577355 +315.2917799949646,0.0,212.12122,212.12122,0.41237113,-0.0577355 +315.3017930984497,0.0,212.12122,212.12122,0.41237113,-0.0577355 +315.3096659183502,0.0,212.12122,212.12122,0.41237113,-0.0577355 +315.3198800086975,0.0,212.8788,212.8788,0.41237113,-0.07438594 +315.3295919895172,0.0,212.8788,212.8788,0.40299907,-0.07438594 +315.3399889469147,0.0,212.12122,212.12122,0.40299907,-0.07438594 +315.34965801239014,0.0,210.60605,210.60605,0.41237113,-0.07438594 +315.3617911338806,0.0,209.84848,209.84848,0.41237113,-0.06698574 +315.3716621398926,0.0,209.84848,209.84848,0.41237113,-0.06698574 +315.3809471130371,0.0,208.33333,208.33333,0.4217432,-0.06698574 +315.38968801498413,0.0,207.57576,207.57576,0.4217432,-0.06698574 +315.4017870426178,0.0,207.57576,207.57576,0.4217432,-0.06698574 +315.40939712524414,0.0,207.57576,207.57576,0.4217432,-0.07808603 +315.4198980331421,0.0,206.06061,206.06061,0.4217432,-0.07808603 +315.42960500717163,0.0,205.30302,205.30302,0.4217432,-0.07808603 +315.4397220611572,0.0,204.54546,204.54546,0.4217432,-0.07808603 +315.45175313949585,0.0,203.78787,203.78787,0.4217432,-0.07808603 +315.4617829322815,0.0,203.0303,203.0303,0.41237113,-0.072535895 +315.4717860221863,0.0,202.27274,202.27274,0.41237113,-0.072535895 +315.4796099662781,0.0,202.27274,202.27274,0.41237113,-0.072535895 +315.4917540550232,0.0,201.51515,201.51515,0.41237113,-0.072535895 +315.50109696388245,0.0,200.75758,200.75758,0.41237113,-0.072535895 +315.5095109939575,0.0,199.24243,199.24243,0.41237113,-0.06328564 +315.51940298080444,0.0,197.72728,197.72728,0.41237113,-0.06328564 +315.5296220779419,0.0,195.45456,195.45456,0.41237113,-0.06328564 +315.5417721271515,0.0,193.18181,193.18181,0.40299907,-0.06328564 +315.5517840385437,0.0,190.15152,190.15152,0.40299907,-0.06328564 +315.5593991279602,0.0,190.15152,190.15152,0.40299907,-0.06883579 +315.569806098938,0.0,188.63637,188.63637,0.40299907,-0.06883579 +315.58059000968933,0.0,187.87878,187.87878,0.40299907,-0.06883579 +315.5906939506531,0.0,187.87878,187.87878,0.40299907,-0.06883579 +315.5995910167694,0.0,187.12122,187.12122,0.40299907,-0.06883579 +315.6095221042633,0.0,186.36363,186.36363,0.40299907,-0.06513569 +315.61989998817444,0.0,185.60606,185.60606,0.40299907,-0.06513569 +315.6295909881592,0.0,185.60606,185.60606,0.40299907,-0.06513569 +315.6404061317444,0.0,185.60606,185.60606,0.393627,-0.06513569 +315.6515460014343,0.0,185.60606,185.60606,0.393627,-0.06513569 +315.6593940258026,0.0,185.60606,185.60606,0.393627,-0.0577355 +315.6708700656891,0.0,185.60606,185.60606,0.393627,-0.0577355 +315.67979407310486,0.0,185.60606,185.60606,0.38425493,-0.0577355 +315.69042205810547,0.0,185.60606,185.60606,0.38425493,-0.0577355 +315.69946098327637,0.0,184.84848,184.84848,0.38425493,-0.0577355 +315.70940804481506,0.0,184.09091,184.09091,0.38425493,-0.05588545 +315.71984791755676,0.0,182.57576,182.57576,0.38425493,-0.05588545 +315.729572057724,0.0,181.06061,181.06061,0.393627,-0.05588545 +315.73966908454895,0.0,178.78787,178.78787,0.393627,-0.05588545 +315.7496540546417,0.0,177.27272,177.27272,0.393627,-0.05588545 +315.75940108299255,0.0,176.51515,176.51515,0.393627,-0.07623599 +315.7715640068054,0.0,175.0,175.0,0.40299907,-0.07623599 +315.7799050807953,0.0,175.0,175.0,0.40299907,-0.07623599 +315.7896020412445,0.0,174.24242,174.24242,0.40299907,-0.07623599 +315.8001959323883,0.0,175.0,175.0,0.40299907,-0.07623599 +315.81118297576904,0.0,175.75757,175.75757,0.40299907,-0.05588545 +315.8198881149292,0.0,175.75757,175.75757,0.393627,-0.05588545 +315.82959508895874,0.0,176.51515,176.51515,0.393627,-0.05588545 +315.8401629924774,0.0,177.27272,177.27272,0.393627,-0.05588545 +315.8517301082611,0.0,177.27272,177.27272,0.40299907,-0.05588545 +315.85938906669617,0.0,178.0303,178.0303,0.40299907,-0.07438594 +315.8699460029602,0.0,178.78787,178.78787,0.40299907,-0.07438594 +315.8797380924225,0.0,179.54544,179.54544,0.40299907,-0.07438594 +315.889524936676,0.0,180.30304,180.30304,0.40299907,-0.07438594 +315.90173411369324,0.0,181.81819,181.81819,0.40299907,-0.07438594 +315.9110209941864,0.0,181.81819,181.81819,0.40299907,-0.07438594 +315.9203460216522,0.0,182.57576,182.57576,0.40299907,-0.07808603 +315.9296269416809,0.0,183.33334,183.33334,0.393627,-0.07808603 +315.9395740032196,0.0,182.57576,182.57576,0.393627,-0.07808603 +315.95174407958984,0.0,182.57576,182.57576,0.393627,-0.07808603 +315.95938897132874,0.0,182.57576,182.57576,0.393627,-0.06143559 +315.9698979854584,0.0,180.30304,180.30304,0.393627,-0.06143559 +315.98037695884705,0.0,178.0303,178.0303,0.393627,-0.06143559 +315.98940110206604,0.0,176.51515,176.51515,0.393627,-0.06143559 +316.00051498413086,0.0,175.0,175.0,0.393627,-0.06143559 +316.00942301750183,0.0,174.24242,174.24242,0.393627,-0.06143559 +316.01991510391235,0.0,172.72726,172.72726,0.393627,-0.06143559 +316.0296280384064,0.0,172.72726,172.72726,0.393627,-0.06143559 +316.0417470932007,0.0,171.9697,171.9697,0.393627,-0.06143559 +316.05101108551025,0.0,171.9697,171.9697,0.393627,-0.06143559 +316.05939292907715,0.0,172.72726,172.72726,0.393627,-0.06698574 +316.0704939365387,0.0,173.48485,173.48485,0.393627,-0.06698574 +316.07951402664185,0.0,174.24242,174.24242,0.393627,-0.06698574 +316.0896370410919,0.0,175.0,175.0,0.393627,-0.06698574 +316.1017200946808,0.0,175.75757,175.75757,0.393627,-0.06698574 +316.11118602752686,0.0,175.75757,175.75757,0.393627,-0.054035395 +316.1198899745941,0.0,177.27272,177.27272,0.393627,-0.054035395 +316.1295371055603,0.0,177.27272,177.27272,0.393627,-0.054035395 +316.1402039527893,0.0,178.0303,178.0303,0.393627,-0.054035395 +316.1499750614166,0.0,178.78787,178.78787,0.393627,-0.054035395 +316.1594319343567,0.0,178.78787,178.78787,0.393627,-0.0466352 +316.1696479320526,0.0,179.54544,179.54544,0.40299907,-0.0466352 +316.18171405792236,0.0,179.54544,179.54544,0.40299907,-0.0466352 +316.19171595573425,0.0,179.54544,179.54544,0.393627,-0.0466352 +316.20052194595337,0.0,179.54544,179.54544,0.393627,-0.0466352 +316.21118807792664,0.0,179.54544,179.54544,0.40299907,-0.0577355 +316.21967005729675,0.0,179.54544,179.54544,0.393627,-0.0577355 +316.2295970916748,0.0,179.54544,179.54544,0.393627,-0.0577355 +316.2399880886078,0.0,178.78787,178.78787,0.393627,-0.0577355 +316.2494020462036,0.0,178.0303,178.0303,0.393627,-0.0577355 +316.25939893722534,0.0,178.0303,178.0303,0.393627,-0.06513569 +316.2712709903717,0.0,177.27272,177.27272,0.393627,-0.06513569 +316.2796940803528,0.0,176.51515,176.51515,0.393627,-0.06513569 +316.29169511795044,0.0,175.75757,175.75757,0.393627,-0.06513569 +316.3017020225525,0.0,174.24242,174.24242,0.40299907,-0.06513569 +316.3111879825592,0.0,174.24242,174.24242,0.40299907,-0.07623599 +316.3198730945587,0.0,171.9697,171.9697,0.40299907,-0.07623599 +316.32960200309753,0.0,170.45454,170.45454,0.40299907,-0.07623599 +316.33957505226135,0.0,168.93939,168.93939,0.393627,-0.07623599 +316.3498740196228,0.0,167.42424,167.42424,0.393627,-0.07623599 +316.3594009876251,0.0,165.9091,165.9091,0.393627,-0.06513569 +316.36987805366516,0.0,164.39395,164.39395,0.393627,-0.06513569 +316.3805351257324,0.0,162.1212,162.1212,0.393627,-0.06513569 +316.39169907569885,0.0,161.36363,161.36363,0.38425493,-0.06513569 +316.39966106414795,0.0,159.84848,159.84848,0.38425493,-0.06513569 +316.4104120731354,0.0,159.09091,159.09091,0.38425493,-0.072535895 +316.41991901397705,0.0,157.57576,157.57576,0.38425493,-0.072535895 +316.42959904670715,0.0,157.57576,157.57576,0.38425493,-0.072535895 +316.4400029182434,0.0,156.81818,156.81818,0.38425493,-0.072535895 +316.45167207717896,0.0,156.81818,156.81818,0.38425493,-0.072535895 +316.4593961238861,0.0,156.81818,156.81818,0.37488285,-0.044785153 +316.4717049598694,0.0,156.81818,156.81818,0.37488285,-0.044785153 +316.4794490337372,0.0,156.81818,156.81818,0.37488285,-0.044785153 +316.4906470775604,0.0,157.57576,157.57576,0.37488285,-0.044785153 +316.49954104423523,0.0,158.33333,158.33333,0.37488285,-0.044785153 +316.5094120502472,0.0,159.09091,159.09091,0.37488285,-0.0577355 +316.51995301246643,0.0,159.09091,159.09091,0.37488285,-0.0577355 +316.5296220779419,0.0,159.84848,159.84848,0.37488285,-0.0577355 +316.5394070148468,0.0,160.60606,160.60606,0.37488285,-0.0577355 +316.5501289367676,0.0,160.60606,160.60606,0.38425493,-0.0577355 +316.5594139099121,0.0,161.36363,161.36363,0.37488285,-0.06883579 +316.57083892822266,0.0,162.1212,162.1212,0.38425493,-0.06883579 +316.57974910736084,0.0,162.87878,162.87878,0.38425493,-0.06883579 +316.5909731388092,0.0,163.63635,163.63635,0.393627,-0.06883579 +316.59998202323914,0.0,165.15152,165.15152,0.393627,-0.06883579 +316.6095199584961,0.0,165.9091,165.9091,0.393627,-0.085486226 +316.61993503570557,0.0,166.66667,166.66667,0.393627,-0.085486226 +316.62960600852966,0.0,167.42424,167.42424,0.38425493,-0.085486226 +316.63997197151184,0.0,168.18182,168.18182,0.38425493,-0.085486226 +316.6510739326477,0.0,168.93939,168.93939,0.38425493,-0.085486226 +316.6595690250397,0.0,169.69698,169.69698,0.38425493,-0.05588545 +316.6703579425812,0.0,170.45454,170.45454,0.38425493,-0.05588545 +316.6809649467468,0.0,171.21213,171.21213,0.38425493,-0.05588545 +316.6899359226227,0.0,171.9697,171.9697,0.38425493,-0.05588545 +316.70032691955566,0.0,171.9697,171.9697,0.38425493,-0.05588545 +316.7095510959625,0.0,172.72726,172.72726,0.38425493,-0.06698574 +316.71962809562683,0.0,172.72726,172.72726,0.38425493,-0.06698574 +316.7313029766083,0.0,173.48485,173.48485,0.38425493,-0.06698574 +316.7402129173279,0.0,174.24242,174.24242,0.38425493,-0.06698574 +316.7516760826111,0.0,174.24242,174.24242,0.38425493,-0.06698574 +316.7594130039215,0.0,174.24242,174.24242,0.38425493,-0.06698574 +316.77086997032166,0.0,175.0,175.0,0.38425493,-0.06698574 +316.77951312065125,0.0,175.0,175.0,0.37488285,-0.06698574 +316.7904040813446,0.0,175.75757,175.75757,0.37488285,-0.06698574 +316.800420999527,0.0,175.75757,175.75757,0.37488285,-0.06698574 +316.80942606925964,0.0,175.75757,175.75757,0.38425493,-0.06698574 +316.8199179172516,0.0,175.75757,175.75757,0.38425493,-0.089186326 +316.829607963562,0.0,175.75757,175.75757,0.38425493,-0.089186326 +316.8416750431061,0.0,175.75757,175.75757,0.38425493,-0.089186326 +316.8505311012268,0.0,175.75757,175.75757,0.393627,-0.089186326 +316.8593990802765,0.0,175.75757,175.75757,0.393627,-0.06513569 +316.86945509910583,0.0,175.0,175.0,0.393627,-0.06513569 +316.8804850578308,0.0,174.24242,174.24242,0.393627,-0.06513569 +316.88948011398315,0.0,173.48485,173.48485,0.393627,-0.06513569 +316.89944791793823,0.0,171.21213,171.21213,0.393627,-0.06513569 +316.90949296951294,0.0,169.69698,169.69698,0.393627,-0.06513569 +316.9199070930481,0.0,168.18182,168.18182,0.393627,-0.044785153 +316.92962312698364,0.0,165.15152,165.15152,0.393627,-0.044785153 +316.9416480064392,0.0,162.87878,162.87878,0.38425493,-0.044785153 +316.95061802864075,0.0,159.84848,159.84848,0.38425493,-0.044785153 +316.95941710472107,0.0,157.57576,157.57576,0.38425493,-0.050335295 +316.970547914505,0.0,154.54546,154.54546,0.37488285,-0.050335295 +316.9795620441437,0.0,151.51515,151.51515,0.37488285,-0.050335295 +316.98947191238403,0.0,149.24243,149.24243,0.3655108,-0.050335295 +316.9994809627533,0.0,147.72726,147.72726,0.3655108,-0.050335295 +317.01120710372925,0.0,145.45454,145.45454,0.3655108,-0.054035395 +317.01993703842163,0.0,143.93939,143.93939,0.3655108,-0.054035395 +317.02962493896484,0.0,142.42424,142.42424,0.3655108,-0.054035395 +317.04050397872925,0.0,141.66667,141.66667,0.37488285,-0.054035395 +317.0494689941406,0.0,140.90909,140.90909,0.3655108,-0.054035395 +317.05941891670227,0.0,140.15152,140.15152,0.3561387,-0.06328564 +317.0696120262146,0.0,139.39394,139.39394,0.34676665,-0.06328564 +317.07946395874023,0.0,139.39394,139.39394,0.34676665,-0.06328564 +317.0909011363983,0.0,138.63637,138.63637,0.34676665,-0.06328564 +317.10164499282837,0.0,138.63637,138.63637,0.34676665,-0.06328564 +317.11122012138367,0.0,138.63637,138.63637,0.34676665,-0.06143559 +317.11989092826843,0.0,137.87878,137.87878,0.34676665,-0.06143559 +317.12947607040405,0.0,137.12122,137.12122,0.33739457,-0.06143559 +317.13977003097534,0.0,137.12122,137.12122,0.33739457,-0.06143559 +317.15013694763184,0.0,136.36365,136.36365,0.3280225,-0.06143559 +317.15942001342773,0.0,135.60606,135.60606,0.33739457,-0.07623599 +317.1694691181183,0.0,135.60606,135.60606,0.33739457,-0.07623599 +317.1809160709381,0.0,134.8485,134.8485,0.33739457,-0.07623599 +317.19162797927856,0.0,134.8485,134.8485,0.33739457,-0.07623599 +317.2001130580902,0.0,134.8485,134.8485,0.33739457,-0.07623599 +317.21102809906006,0.0,134.09091,134.09091,0.33739457,-0.07623599 +317.21989703178406,0.0,134.09091,134.09091,0.33739457,-0.0466352 +317.2296071052551,0.0,134.09091,134.09091,0.33739457,-0.0466352 +317.2407760620117,0.0,133.33334,133.33334,0.34676665,-0.0466352 +317.24978399276733,0.0,133.33334,133.33334,0.33739457,-0.0466352 +317.2594311237335,0.0,133.33334,133.33334,0.33739457,-0.06513569 +317.2708320617676,0.0,133.33334,133.33334,0.33739457,-0.06513569 +317.28163599967957,0.0,133.33334,133.33334,0.33739457,-0.06513569 +317.2900071144104,0.0,133.33334,133.33334,0.34676665,-0.06513569 +317.3010730743408,0.0,133.33334,133.33334,0.34676665,-0.06513569 +317.3100371360779,0.0,134.09091,134.09091,0.34676665,-0.06513569 +317.3194489479065,0.0,134.09091,134.09091,0.34676665,-0.05588545 +317.32963013648987,0.0,134.09091,134.09091,0.34676665,-0.05588545 +317.33948802948,0.0,134.8485,134.8485,0.34676665,-0.05588545 +317.34945797920227,0.0,134.8485,134.8485,0.33739457,-0.05588545 +317.3594229221344,0.0,135.60606,135.60606,0.33739457,-0.0577355 +317.3694701194763,0.0,135.60606,135.60606,0.33739457,-0.0577355 +317.38163805007935,0.0,136.36365,136.36365,0.34676665,-0.0577355 +317.3895080089569,0.0,136.36365,136.36365,0.34676665,-0.0577355 +317.3995659351349,0.0,137.12122,137.12122,0.34676665,-0.0577355 +317.40940594673157,0.0,137.87878,137.87878,0.34676665,-0.06698574 +317.41992712020874,0.0,137.87878,137.87878,0.34676665,-0.06698574 +317.4296410083771,0.0,138.63637,138.63637,0.34676665,-0.06698574 +317.4394829273224,0.0,138.63637,138.63637,0.34676665,-0.06698574 +317.45159697532654,0.0,138.63637,138.63637,0.34676665,-0.06698574 +317.4594340324402,0.0,139.39394,139.39394,0.34676665,-0.0577355 +317.47051310539246,0.0,139.39394,139.39394,0.34676665,-0.0577355 +317.4798800945282,0.0,139.39394,139.39394,0.34676665,-0.0577355 +317.48977398872375,0.0,139.39394,139.39394,0.34676665,-0.0577355 +317.5007700920105,0.0,140.15152,140.15152,0.34676665,-0.0577355 +317.50940895080566,0.0,140.15152,140.15152,0.34676665,-0.052185345 +317.51955699920654,0.0,140.15152,140.15152,0.34676665,-0.052185345 +317.52948808670044,0.0,139.39394,139.39394,0.34676665,-0.052185345 +317.541610956192,0.0,139.39394,139.39394,0.34676665,-0.052185345 +317.54945397377014,0.0,139.39394,139.39394,0.34676665,-0.052185345 +317.5594091415405,0.0,138.63637,138.63637,0.34676665,-0.06698574 +317.57063913345337,0.0,138.63637,138.63637,0.34676665,-0.06698574 +317.5796239376068,0.0,137.87878,137.87878,0.34676665,-0.06698574 +317.59161496162415,0.0,137.87878,137.87878,0.34676665,-0.06698574 +317.60099601745605,0.0,137.87878,137.87878,0.34676665,-0.06698574 +317.60942697525024,0.0,136.36365,136.36365,0.34676665,-0.054035395 +317.61951994895935,0.0,136.36365,136.36365,0.34676665,-0.054035395 +317.6296350955963,0.0,135.60606,135.60606,0.34676665,-0.054035395 +317.6396200656891,0.0,134.8485,134.8485,0.33739457,-0.054035395 +317.6496260166168,0.0,134.09091,134.09091,0.34676665,-0.054035395 +317.65942311286926,0.0,133.33334,133.33334,0.34676665,-0.085486226 +317.6694829463959,0.0,133.33334,133.33334,0.34676665,-0.085486226 +317.68055391311646,0.0,132.57574,132.57574,0.34676665,-0.085486226 +317.6910591125488,0.0,131.81818,131.81818,0.34676665,-0.085486226 +317.7000720500946,0.0,131.06061,131.06061,0.34676665,-0.085486226 +317.70942902565,0.0,130.30302,130.30302,0.34676665,-0.050335295 +317.71990609169006,0.0,129.54546,129.54546,0.34676665,-0.050335295 +317.7294421195984,0.0,128.0303,128.0303,0.34676665,-0.050335295 +317.74089908599854,0.0,126.51515,126.51515,0.33739457,-0.050335295 +317.74938893318176,0.0,123.48485,123.48485,0.33739457,-0.050335295 +317.75954699516296,0.0,119.69697,119.69697,0.3280225,-0.05588545 +317.7709209918976,0.0,115.15152,115.15152,0.3280225,-0.05588545 +317.7796139717102,0.0,107.57576,107.57576,0.31865042,-0.05588545 +317.7898700237274,0.0,100.757576,100.757576,0.30927837,-0.05588545 +317.799556016922,0.0,91.66667,91.66667,0.29990628,-0.05588545 +317.80967807769775,0.0,82.57576,82.57576,0.2905342,-0.05588545 +317.8199050426483,0.0,72.72727,72.72727,0.27179006,-0.044785153 +317.82962799072266,0.0,63.636364,63.636364,0.262418,-0.044785153 +317.83947706222534,0.0,53.78788,53.78788,0.24367386,-0.044785153 +317.8501751422882,0.0,43.939392,43.939392,0.22492972,-0.044785153 +317.85941100120544,0.0,34.09091,34.09091,0.20618556,-0.054035395 +317.8712010383606,0.0,25.757576,25.757576,0.18744142,-0.054035395 +317.8802020549774,0.0,18.939394,18.939394,0.15932521,-0.054035395 +317.8895890712738,0.0,17.424242,17.424242,0.14995314,-0.054035395 +317.9016261100769,0.0,15.909091,15.909091,0.12183693,-0.054035395 +317.9096989631653,0.0,15.909091,15.909091,0.11246486,-0.054035395 +317.9199209213257,0.0,12.878788,12.878788,0.09372071,-0.085486226 +317.9296281337738,0.0,12.121212,12.121212,0.07497657,-0.085486226 +317.94158005714417,0.0,10.606061,10.606061,0.0656045,-0.085486226 +317.9512369632721,0.0,10.606061,10.606061,0.046860356,-0.085486226 +317.9594190120697,0.0,9.090909,9.090909,0.037488285,-0.07438594 +317.97009205818176,0.0,8.333334,8.333334,0.028116215,-0.07438594 +317.9796299934387,0.0,7.575758,7.575758,0.009372071,-0.07438594 +317.9915609359741,0.0,6.818182,6.818182,0.0,-0.07438594 +318.0015790462494,0.01,5.3030305,5.3030305,0.0,-0.07438594 +318.01092195510864,0.01,5.3030305,5.3030305,0.0,-0.07438594 +318.0199201107025,0.02,4.5454545,4.5454545,0.0,-0.052185345 +318.0296211242676,0.03,3.787879,3.787879,0.0,-0.052185345 +318.03974509239197,0.04,3.030303,3.030303,0.0,-0.052185345 +318.050332069397,0.049999997,3.030303,3.030303,0.0,-0.052185345 +318.0594389438629,0.06,2.2727273,2.2727273,0.0,-0.06328564 +318.06960010528564,0.07,1.5151515,1.5151515,0.0,-0.06328564 +318.0799629688263,0.07,1.5151515,1.5151515,0.0,-0.06328564 +318.091539144516,0.08,0.75757575,0.75757575,0.0,-0.06328564 +318.0995669364929,0.089999996,0.75757575,0.75757575,0.0,-0.06328564 +318.1097631454468,0.099999994,0.0,0.0,0.0,-0.06328564 +318.119952917099,0.11,0.0,0.0,0.0,-0.085486226 +318.12961411476135,0.12,0.0,0.0,0.0,-0.085486226 +318.1394739151001,0.13,0.0,0.0,0.0,-0.085486226 +318.1504011154175,0.13,0.0,0.0,0.0,-0.085486226 +318.1595890522003,0.14,0.0,0.0,0.0,-0.06698574 +318.1698040962219,0.14999999,0.0,0.0,0.0,-0.06698574 +318.18155312538147,0.16,0.0,0.0,0.0,-0.06698574 +318.190633058548,0.16,0.0,0.0,0.0,-0.06698574 +318.19961404800415,0.17,0.0,0.0,0.0,-0.06698574 +318.2107789516449,0.17,0.0,0.0,0.0,-0.06698574 +318.2196969985962,0.17999999,0.0,0.0,0.0,-0.050335295 +318.22961711883545,0.19,0.0,0.0,0.0,-0.050335295 +318.2404639720917,0.19,0.0,0.0,0.0,-0.050335295 +318.2494750022888,0.19999999,0.0,0.0,0.0,-0.050335295 +318.25944805145264,0.21,0.0,0.0,0.0,-0.044785153 +318.2715039253235,0.21,0.0,0.0,0.0,-0.044785153 +318.27972507476807,0.22,0.0,0.0,0.0,-0.044785153 +318.2894780635834,0.22,0.0,0.0,0.0,-0.044785153 +318.2998559474945,0.22999999,0.0,0.0,0.0,-0.044785153 +318.31153202056885,0.24,0.0,0.0,0.0,-0.044785153 +318.3199269771576,0.24,0.0,0.0,0.0,-0.054035395 +318.32961893081665,0.25,0.0,0.0,0.0,-0.054035395 +318.33955097198486,0.25,0.0,0.0,0.0,-0.054035395 +318.3504629135132,0.26,0.0,0.0,0.0,-0.054035395 +318.35942792892456,0.26,0.0,0.0,0.0,-0.0577355 +318.3703989982605,0.26999998,0.0,0.0,0.0,-0.0577355 +318.38017892837524,0.28,0.0,0.0,0.0,-0.0577355 +318.39153003692627,0.28,0.0,0.0,0.0,-0.0577355 +318.39988803863525,0.28,0.0,0.0,0.0,-0.0577355 +318.40943598747253,0.29999998,0.0,0.0,0.0,-0.07438594 +318.42063093185425,0.29999998,0.0,0.0,0.0,-0.07438594 +318.42963910102844,0.31,0.0,0.0,0.0,-0.07438594 +318.4415500164032,0.32,0.0,0.0,0.0,-0.07438594 +318.451336145401,0.32,0.0,0.0,0.0,-0.07438594 +318.45943307876587,0.32999998,0.0,0.0,0.0,-0.07438594 +318.46953892707825,0.34,0.0,0.0,0.0,-0.07438594 +318.4796209335327,0.35,0.0,0.0,0.0,-0.07438594 +318.4899981021881,0.35,0.0,0.0,0.0,-0.07438594 +318.50091791152954,0.35999998,0.0,0.0,0.0,-0.07438594 +318.509418964386,0.37,0.0,0.0,0.0,-0.06143559 +318.51974511146545,0.37,0.0,0.0,0.0,-0.06143559 +318.5296471118927,0.38,0.0,0.0,0.0,-0.06143559 +318.5406811237335,0.39,0.0,0.0,0.0,-0.06143559 +318.5495889186859,0.39,0.0,0.0,0.0,-0.06143559 +318.5595030784607,0.39999998,0.0,0.0,0.0,-0.06328564 +318.5715470314026,0.39999998,0.0,0.0,0.0,-0.06328564 +318.58151602745056,0.41,0.0,0.0,0.0,-0.06328564 +318.5915729999542,0.42,0.0,0.0,0.0,-0.06328564 +318.60079407691956,0.42,0.0,0.0,0.0,-0.06328564 +318.6094260215759,0.42999998,0.0,0.0,0.0,-0.050335295 +318.619952917099,0.42999998,0.0,0.0,0.0,-0.050335295 +318.6296329498291,0.42999998,0.0,0.0,0.0,-0.050335295 +318.64028000831604,0.44,0.0,0.0,0.0,-0.050335295 +318.6514940261841,0.44,0.0,0.0,0.0,-0.050335295 +318.6594181060791,0.45,0.0,0.0,0.0,-0.050335295 +318.6715319156647,0.45,0.0,0.0,0.0,-0.050335295 +318.68150997161865,0.45999998,0.0,0.0,0.0,-0.050335295 +318.68968510627747,0.45999998,0.0,0.0,0.0,-0.050335295 +318.6999170780182,0.45999998,0.0,0.0,0.0,-0.050335295 +318.7094159126282,0.45999998,0.0,0.0,0.0,-0.089186326 +318.7199149131775,0.47,0.0,0.0,0.0,-0.089186326 +318.7296259403229,0.47,0.0,0.0,0.0,-0.089186326 +318.74150109291077,0.47,0.0,0.0,0.0,-0.089186326 +318.75151014328003,0.48,0.0,0.0,0.0,-0.089186326 +318.7594349384308,0.48,0.0,0.0,0.0,-0.07438594 +318.77128410339355,0.48,0.0,0.0,0.0,-0.07438594 +318.77961802482605,0.48999998,0.0,0.0,0.0,-0.07438594 +318.79007291793823,0.48999998,0.0,0.0,0.0,-0.07438594 +318.7995090484619,0.48999998,0.0,0.0,0.0,-0.07438594 +318.81124210357666,0.5,0.0,0.0,0.0,-0.07438594 +318.8199129104614,0.5,0.0,0.0,0.0,-0.052185345 +318.82961893081665,0.5,0.0,0.0,0.0,-0.052185345 +318.841509103775,0.51,0.0,0.0,0.0,-0.052185345 +318.85039496421814,0.51,0.0,0.0,0.0,-0.052185345 +318.85942912101746,0.51,0.0,0.0,0.0,-0.07438594 +318.8705461025238,0.52,0.0,0.0,0.0,-0.07438594 +318.87944293022156,0.52,0.0,0.0,0.0,-0.07438594 +318.8895330429077,0.52,0.0,0.0,0.0,-0.07438594 +318.9012620449066,0.52,0.0,0.0,0.0,-0.07438594 +318.91025495529175,0.53,0.0,0.0,0.0,-0.07438594 +318.91995096206665,0.53,0.0,0.0,0.0,-0.05588545 +318.92965292930603,0.53,0.0,0.0,0.0,-0.05588545 +318.9415099620819,0.53,0.0,0.0,0.0,-0.05588545 +318.9501700401306,0.53,0.0,0.0,0.0,-0.05588545 +318.95943307876587,0.53999996,0.0,0.0,0.0,-0.050335295 +318.9703540802002,0.53999996,0.0,0.0,0.0,-0.050335295 +318.97959303855896,0.53999996,0.0,0.0,0.0,-0.050335295 +318.9912440776825,0.53999996,0.0,0.0,0.0,-0.050335295 +319.00024700164795,0.53999996,0.0,0.0,0.0,-0.050335295 +319.0114760398865,0.53999996,0.0,0.0,0.0,-0.050335295 +319.0199429988861,0.55,0.0,0.0,0.0,-0.05588545 +319.0296440124512,0.55,0.0,0.0,0.0,-0.05588545 +319.0399479866028,0.55,0.0,0.0,0.0,-0.05588545 +319.05147790908813,0.55,0.0,0.0,0.0,-0.05588545 +319.05943608283997,0.55,0.0,0.0,0.0,-0.0577355 +319.0695080757141,0.55,0.0,0.0,0.0,-0.0577355 +319.08021306991577,0.55,0.0,0.0,0.0,-0.0577355 +319.0902330875397,0.55,0.0,0.0,0.0,-0.0577355 +319.09950709342957,0.55,0.0,0.0,0.0,-0.0577355 +319.10986399650574,0.55,0.0,0.0,0.0,-0.0577355 +319.11995792388916,0.55,0.0,0.0,0.0,-0.050335295 +319.12961196899414,0.55,0.0,0.0,0.0,-0.050335295 +319.14001202583313,0.55,0.0,0.0,0.0,-0.050335295 +319.1505699157715,0.55,0.0,0.0,0.0,-0.050335295 +319.15944504737854,0.55,0.0,0.0,0.0,-0.07808603 +319.1711599826813,0.55,0.0,0.0,0.0,-0.07808603 +319.1801550388336,0.55,0.0,0.0,0.0,-0.07808603 +319.1914870738983,0.55,0.0,0.0,0.0,-0.07808603 +319.1999909877777,0.55,0.0,0.0,0.0,-0.07808603 +319.20945596694946,0.55,0.0,0.0,0.0,-0.07808603 +319.21992111206055,0.55,0.0,0.0,0.0,-0.06883579 +319.2296350002289,0.55,0.0,0.0,0.0,-0.06883579 +319.2406759262085,0.55,0.0,0.0,0.0,-0.06883579 +319.2497000694275,0.55,0.0,0.0,0.0,-0.06883579 +319.25944113731384,0.55,0.0,0.0,0.0,-0.0577355 +319.2701539993286,0.55,0.0,0.0,0.0,-0.0577355 +319.28066897392273,0.55,0.0,0.0,0.0,-0.0577355 +319.2895851135254,0.55,0.0,0.0,0.0,-0.0577355 +319.30115699768066,0.55,0.0,0.0,0.0,-0.0577355 +319.31149792671204,0.55,0.0,0.0,0.0,-0.0577355 +319.32149291038513,0.55,0.0,0.0,0.0,-0.0577355 +319.329656124115,0.55,0.0,0.0,0.0,-0.0577355 +319.33960008621216,0.55,0.0,0.0,0.0,-0.0577355 +319.35108709335327,0.55,0.0,0.0,0.0,-0.0577355 +319.35946702957153,0.55,0.0,0.0,0.0,-0.1594882 +319.3695230484009,0.55,0.0,0.0,0.0,-0.1594882 +319.3814949989319,0.53999996,0.0,0.0,0.0,-0.1594882 +319.3914749622345,0.53999996,0.0,0.0,0.0,-0.1594882 +319.4014821052551,0.53999996,0.0,0.0,0.0,-0.1594882 +319.4094309806824,0.53999996,0.0,0.0,0.0,-0.0577355 +319.4199481010437,0.53999996,0.0,0.0,0.0,-0.0577355 +319.4296429157257,0.53999996,0.0,0.0,0.0,-0.0577355 +319.4394769668579,0.53999996,0.0,0.0,0.0,-0.0577355 +319.4500389099121,0.53999996,0.0,0.0,0.0,-0.0577355 +319.4594249725342,0.53999996,0.0,0.0,0.0,-0.06328564 +319.47035002708435,0.53999996,0.0,0.0,0.0,-0.06328564 +319.4814820289612,0.53,0.0,0.0,0.0,-0.06328564 +319.49146795272827,0.53,0.0,0.0,0.0,-0.06328564 +319.5006170272827,0.53,0.0,0.0,0.0,-0.06328564 +319.5094449520111,0.53,0.0,0.0,0.0,-0.0466352 +319.5199520587921,0.53,0.0,0.0,0.0,-0.0466352 +319.52964210510254,0.53,0.0,0.0,0.0,-0.0466352 +319.5394380092621,0.53,0.0,0.0,0.0,-0.0466352 +319.5514850616455,0.53,0.0,0.0,0.0,-0.0466352 +319.55944204330444,0.53,0.0,0.0,0.0,-0.06698574 +319.57149505615234,0.52,0.0,0.0,0.0,-0.06698574 +319.5814559459686,0.52,0.0,0.0,0.0,-0.06698574 +319.59147095680237,0.52,0.0,0.0,0.0,-0.06698574 +319.600368976593,0.52,0.0,0.0,0.0,-0.06698574 +319.6094319820404,0.51,0.0,0.0,0.0,-0.042935103 +319.61947798728943,0.51,0.0,0.0,0.0,-0.042935103 +319.62962913513184,0.51,0.0,0.0,0.0,-0.042935103 +319.6395630836487,0.5,0.0,0.0,0.0,-0.042935103 +319.65144896507263,0.5,0.0,0.0,0.0,-0.042935103 +319.6594400405884,0.5,0.0,0.0,0.0,-0.050335295 +319.66983008384705,0.5,0.0,0.0,0.0,-0.050335295 +319.6807839870453,0.5,0.0,0.0,0.0,-0.050335295 +319.6908221244812,0.5,0.0,0.0,0.0,-0.050335295 +319.69972491264343,0.5,0.0,0.0,0.0,-0.050335295 +319.7094531059265,0.5,0.0,0.0,0.0,-0.041085053 +319.71989607810974,0.5,0.0,0.0,0.0,-0.041085053 +319.7293930053711,0.48999998,0.0,0.0,0.0,-0.041085053 +319.74146604537964,0.48999998,0.0,0.0,0.0,-0.041085053 +319.7514491081238,0.48999998,0.0,0.0,0.0,-0.041085053 +319.759437084198,0.48999998,0.0,0.0,0.0,-0.054035395 +319.770898103714,0.48999998,0.0,0.0,0.0,-0.054035395 +319.7800009250641,0.48999998,0.0,0.0,0.0,-0.054035395 +319.7903051376343,0.48,0.0,0.0,0.0,-0.054035395 +319.8001549243927,0.48,0.0,0.0,0.0,-0.054035395 +319.8098440170288,0.48,0.0,0.0,0.0,-0.054035395 +319.81995391845703,0.48,0.0,0.0,0.0,-0.072535895 +319.8296411037445,0.48,0.0,0.0,0.0,-0.072535895 +319.8414499759674,0.48,0.0,0.0,0.0,-0.072535895 +319.8500909805298,0.48,0.0,0.0,0.0,-0.072535895 +319.8594651222229,0.48,0.0,0.0,0.0,-0.072535895 +319.871376991272,0.48,0.0,0.0,0.0,-0.024434604 +319.8804099559784,0.48,0.0,0.0,0.0,-0.024434604 +319.8895890712738,0.48,0.0,0.0,0.0,-0.024434604 +319.89978194236755,0.48,0.0,0.0,0.0,-0.024434604 +319.9104070663452,0.48,0.0,0.0,0.0,-0.024434604 +319.9199650287628,0.48,0.0,0.0,0.0,-0.015184363 +319.9296450614929,0.48,0.0,0.0,0.0,-0.015184363 +319.9404480457306,0.48,0.0,0.0,0.0,-0.015184363 +319.951416015625,0.48,0.0,0.0,0.0,-0.015184363 +319.95945596694946,0.48,0.0,0.0,0.0,-0.011484267 +319.9704611301422,0.48,0.0,0.0,0.0,-0.011484267 +319.9794819355011,0.48,0.0,0.0,0.0,-0.011484267 +319.98960304260254,0.48,0.0,0.0,0.0,-0.011484267 +320.0013999938965,0.48,0.0,0.0,0.0,-0.011484267 +320.01110100746155,0.48,0.0,0.0,0.0,-0.011484267 +320.0199770927429,0.48,0.0,0.0,0.0,-0.0040840744 +320.02960896492004,0.48,0.0,0.0,0.0,-0.0040840744 +320.04141497612,0.48,0.0,0.0,0.0,-0.0040840744 +320.0513961315155,0.48,0.0,0.0,0.0,-0.0040840744 +320.0594439506531,0.47,0.0,0.0,0.0,-0.0077841706 +320.0695550441742,0.47,0.0,0.0,0.0,-0.0077841706 +320.07968497276306,0.47,0.0,0.0,0.0,-0.0077841706 +320.09138107299805,0.48,0.0,0.0,0.0,-0.0077841706 +320.0995509624481,0.48,0.0,0.0,0.0,-0.0077841706 +320.1098139286041,0.48,0.0,0.0,0.0,-0.0077841706 +320.1195819377899,0.48,0.0,0.0,0.0,0.012566376 +320.1313810348511,0.48,0.0,0.0,0.0,0.012566376 +320.13970494270325,0.48,0.0,0.0,0.0,0.012566376 +320.15067195892334,0.48,0.0,0.0,0.0,0.012566376 +320.15945410728455,0.48,0.0,0.0,0.0,0.027366763 +320.1696529388428,0.48,0.0,0.0,0.0,0.027366763 +320.17969393730164,0.48,0.0,0.0,0.0,0.027366763 +320.1896369457245,0.48,0.0,0.0,0.0,0.027366763 +320.1997969150543,0.48,0.0,0.0,0.0,0.027366763 +320.2113609313965,0.48,0.0,0.0,0.0,0.027366763 +320.21967911720276,0.48,0.0,0.0,0.0,0.023666665 +320.2296631336212,0.48,0.0,0.0,0.0,0.023666665 +320.24075508117676,0.48,0.0,0.0,0.0,0.023666665 +320.2495129108429,0.48,0.0,0.0,0.0,0.023666665 +320.2594599723816,0.48,0.0,0.0,0.0,0.023666665 +320.27023005485535,0.48,0.0,0.0,0.0,0.023666665 +320.2813980579376,0.48,0.0,0.0,0.0,0.023666665 +320.2913649082184,0.48,0.0,0.0,0.0,0.023666665 +320.30137300491333,0.48,0.0,0.0,0.0,0.023666665 +320.31139397621155,0.48,0.0,0.0,0.0,0.023666665 +320.3196630477905,0.48,0.0,0.0,0.0,0.021816617 +320.32965898513794,0.48,0.0,0.0,0.0,0.021816617 +320.33939909935,0.48,0.0,0.0,0.0,0.021816617 +320.3495469093323,0.48,0.0,0.0,0.0,0.021816617 +320.3594081401825,0.48,0.0,0.0,0.0,0.021816617 +320.36945509910583,0.48,0.0,0.0,0.0,0.031066857 +320.3796980381012,0.48,0.0,0.0,0.0,0.031066857 +320.3913700580597,0.48,0.0,0.0,0.0,0.031066857 +320.4013719558716,0.48,0.0,0.0,0.0,0.031066857 +320.4094400405884,0.48,0.0,0.0,0.0,-0.08363618 +320.4196939468384,0.48,0.0,0.0,0.0,-0.08363618 +320.42963194847107,0.48,0.0,0.0,0.0,-0.08363618 +320.43948793411255,0.48,0.0,0.0,0.0,-0.08363618 +320.45116996765137,0.48,0.0,0.0,0.0,-0.08363618 +320.4595501422882,0.48,0.0,0.0,0.0,0.02921681 +320.4698190689087,0.48,0.0,0.0,0.0,0.02921681 +320.48136711120605,0.48,0.0,0.0,0.0,0.02921681 +320.4913659095764,0.48,0.0,0.0,0.0,0.02921681 +320.5013630390167,0.48,0.0,0.0,0.0,0.02921681 +320.5094521045685,0.48,0.0,0.0,0.0,0.051417407 +320.5196969509125,0.48,0.0,0.0,0.0,0.051417407 +320.5294349193573,0.48,0.0,0.0,0.0,0.051417407 +320.53952193260193,0.48,0.0,0.0,0.0,0.051417407 +320.54947805404663,0.48999998,0.0,0.0,0.0,0.051417407 +320.5594530105591,0.48999998,0.0,0.0,0.0,0.0033161184 +320.5713601112366,0.48999998,0.0,0.0,0.0,0.0033161184 +320.5795109272003,0.48999998,0.0,0.0,0.0,0.0033161184 +320.59111404418945,0.48999998,0.0,0.0,0.0,0.0033161184 +320.6000111103058,0.48999998,0.0,0.0,0.0,0.0033161184 +320.6094570159912,0.48999998,0.0,0.0,0.0,0.031066857 +320.6193950176239,0.48999998,0.0,0.0,0.0,0.031066857 +320.6296389102936,0.48,0.0,0.0,0.0,0.031066857 +320.6395049095154,0.48,0.0,0.0,0.0,0.031066857 +320.65132308006287,0.48,0.0,0.0,0.0,0.031066857 +320.65944504737854,0.48,0.0,0.0,0.0,0.019966569 +320.6713089942932,0.48,0.0,0.0,0.0,0.019966569 +320.6802270412445,0.48999998,0.0,0.0,0.0,0.019966569 +320.69116401672363,0.48999998,0.0,0.0,0.0,0.019966569 +320.7001850605011,0.48999998,0.0,0.0,0.0,0.019966569 +320.70942401885986,0.48999998,0.0,0.0,0.0,0.019966569 +320.7196719646454,0.48999998,0.0,0.0,0.0,0.034766953 +320.72966599464417,0.48999998,0.0,0.0,0.0,0.034766953 +320.7413640022278,0.48999998,0.0,0.0,0.0,0.034766953 +320.7513339519501,0.48999998,0.0,0.0,0.0,0.034766953 +320.7594680786133,0.48999998,0.0,0.0,0.0,-0.00038397792 +320.76984095573425,0.48999998,0.0,0.0,0.0,-0.00038397792 +320.781240940094,0.48999998,0.0,0.0,0.0,-0.00038397792 +320.78974413871765,0.48999998,0.0,0.0,0.0,-0.00038397792 +320.7994599342346,0.48999998,0.0,0.0,0.0,-0.00038397792 +320.8100061416626,0.48999998,0.0,0.0,0.0,-0.00038397792 +320.8196759223938,0.48999998,0.0,0.0,0.0,0.021816617 +320.82964301109314,0.48999998,0.0,0.0,0.0,0.021816617 +320.8406779766083,0.48999998,0.0,0.0,0.0,0.021816617 +320.8496050834656,0.48999998,0.0,0.0,0.0,0.021816617 +320.85946798324585,0.48999998,0.0,0.0,0.0,0.019966569 +320.87118101119995,0.48999998,0.0,0.0,0.0,0.019966569 +320.88018012046814,0.48999998,0.0,0.0,0.0,0.019966569 +320.8893930912018,0.5,0.0,0.0,0.0,0.019966569 +320.899542093277,0.5,0.0,0.0,0.0,0.019966569 +320.9100079536438,0.5,0.0,0.0,0.0,0.019966569 +320.9197120666504,0.5,0.0,0.0,0.0,0.027366763 +320.9296610355377,0.5,0.0,0.0,0.0,0.027366763 +320.9413330554962,0.51,0.0,0.0,0.0,0.027366763 +320.9513330459595,0.51,0.0,0.0,0.0,0.027366763 +320.95945501327515,0.51,0.0,0.0,0.0,0.032916907 +320.9701340198517,0.51,0.0,0.0,0.0,0.032916907 +320.97940611839294,0.51,0.0,0.0,0.0,0.032916907 +320.990355014801,0.51,0.0,0.0,0.0,0.032916907 +321.00115394592285,0.51,0.0,0.0,0.0,0.032916907 +321.009437084198,0.51,0.0,0.0,0.0,0.032916907 +321.0213260650635,0.51,0.0,0.0,0.0,0.038467064 +321.0299320220947,0.51,0.0,0.0,0.0,0.038467064 +321.0396680831909,0.52,0.0,0.0,0.0,0.038467064 +321.05106592178345,0.52,0.0,0.0,0.0,0.038467064 +321.05945110321045,0.52,0.0,0.0,0.0,0.012566376 +321.06950306892395,0.52,0.0,0.0,0.0,0.012566376 +321.08052706718445,0.52,0.0,0.0,0.0,0.012566376 +321.0895459651947,0.52,0.0,0.0,0.0,0.012566376 +321.10131096839905,0.52,0.0,0.0,0.0,0.012566376 +321.1113340854645,0.52,0.0,0.0,0.0,0.012566376 +321.1197090148926,0.52,0.0,0.0,0.0,0.021816617 +321.12964606285095,0.52,0.0,0.0,0.0,0.021816617 +321.13954496383667,0.52,0.0,0.0,0.0,0.021816617 +321.1499779224396,0.52,0.0,0.0,0.0,0.021816617 +321.1594650745392,0.52,0.0,0.0,0.0,0.023666665 +321.1705241203308,0.52,0.0,0.0,0.0,0.023666665 +321.17945194244385,0.52,0.0,0.0,0.0,0.023666665 +321.1913139820099,0.52,0.0,0.0,0.0,0.023666665 +321.20130801200867,0.52,0.0,0.0,0.0,0.023666665 +321.2112739086151,0.52,0.0,0.0,0.0,0.023666665 +321.21966791152954,0.52,0.0,0.0,0.0,0.0070162313 +321.22966408729553,0.52,0.0,0.0,0.0,0.0070162313 +321.2399151325226,0.52,0.0,0.0,0.0,0.0070162313 +321.24967408180237,0.52,0.0,0.0,0.0,0.0070162313 +321.2594540119171,0.52,0.0,0.0,0.0,0.019966569 +321.2698860168457,0.53,0.0,0.0,0.0,0.019966569 +321.2812919616699,0.53,0.0,0.0,0.0,0.019966569 +321.29005098342896,0.53,0.0,0.0,0.0,0.019966569 +321.3013050556183,0.53,0.0,0.0,0.0,0.019966569 +321.31129598617554,0.53,0.0,0.0,0.0,0.019966569 +321.319699048996,0.53,0.0,0.0,0.0,0.031066857 +321.32965993881226,0.53,0.0,0.0,0.0,0.031066857 +321.33976912498474,0.52,0.0,0.0,0.0,0.031066857 +321.3510580062866,0.52,0.0,0.0,0.0,0.031066857 +321.35945296287537,0.52,0.0,0.0,0.0,0.01811652 +321.37129497528076,0.52,0.0,0.0,0.0,0.01811652 +321.37988805770874,0.52,0.0,0.0,0.0,0.01811652 +321.3912959098816,0.51,0.0,0.0,0.0,0.01811652 +321.40128111839294,0.51,0.0,0.0,0.0,0.01811652 +321.40946412086487,0.51,0.0,0.0,0.0,0.010716328 +321.4197220802307,0.51,0.0,0.0,0.0,0.010716328 +321.429701089859,0.51,0.0,0.0,0.0,0.010716328 +321.44123005867004,0.51,0.0,0.0,0.0,0.010716328 +321.4502410888672,0.51,0.0,0.0,0.0,0.010716328 +321.4594759941101,0.51,0.0,0.0,0.0,0.008866279 +321.4704279899597,0.51,0.0,0.0,0.0,0.008866279 +321.48128509521484,0.5,0.0,0.0,0.0,0.008866279 +321.4896619319916,0.5,0.0,0.0,0.0,0.008866279 +321.5002899169922,0.5,0.0,0.0,0.0,0.008866279 +321.5094609260559,0.5,0.0,0.0,0.0,0.031066857 +321.5197169780731,0.5,0.0,0.0,0.0,0.031066857 +321.5296959877014,0.5,0.0,0.0,0.0,0.031066857 +321.5404131412506,0.5,0.0,0.0,0.0,0.031066857 +321.54943013191223,0.5,0.0,0.0,0.0,0.031066857 +321.5594549179077,0.5,0.0,0.0,0.0,0.023666665 +321.5712959766388,0.51,0.0,0.0,0.0,0.023666665 +321.5805220603943,0.51,0.0,0.0,0.0,0.023666665 +321.58942008018494,0.51,0.0,0.0,0.0,0.023666665 +321.59966707229614,0.51,0.0,0.0,0.0,0.023666665 +321.60946702957153,0.51,0.0,0.0,0.0,0.021816617 +321.61971497535706,0.51,0.0,0.0,0.0,0.021816617 +321.62964701652527,0.5,0.0,0.0,0.0,0.021816617 +321.6395890712738,0.5,0.0,0.0,0.0,0.021816617 +321.651242017746,0.5,0.0,0.0,0.0,0.021816617 +321.65945410728455,0.5,0.0,0.0,0.0,0.019966569 +321.6696500778198,0.5,0.0,0.0,0.0,0.019966569 +321.68017196655273,0.48999998,0.0,0.0,0.0,0.019966569 +321.6896059513092,0.48999998,0.0,0.0,0.0,0.019966569 +321.7001061439514,0.48999998,0.0,0.0,0.0,0.019966569 +321.7094659805298,0.48999998,0.0,0.0,0.0,0.042167164 +321.7196979522705,0.48999998,0.0,0.0,0.0,0.042167164 +321.72965002059937,0.48999998,0.0,0.0,0.0,0.042167164 +321.7409429550171,0.48999998,0.0,0.0,0.0,0.042167164 +321.7498519420624,0.48999998,0.0,0.0,0.0,0.042167164 +321.75946497917175,0.48999998,0.0,0.0,0.0,0.02921681 +321.770534992218,0.48999998,0.0,0.0,0.0,0.02921681 +321.77954602241516,0.48999998,0.0,0.0,0.0,0.02921681 +321.79019594192505,0.48999998,0.0,0.0,0.0,0.02921681 +321.80126214027405,0.48999998,0.0,0.0,0.0,0.02921681 +321.80948400497437,0.48999998,0.0,0.0,0.0,0.02921681 +321.81993293762207,0.48,0.0,0.0,0.0,0.023666665 +321.83008193969727,0.48,0.0,0.0,0.0,0.023666665 +321.8412630558014,0.48,0.0,0.0,0.0,0.023666665 +321.85124611854553,0.48,0.0,0.0,0.0,0.023666665 +321.85946393013,0.47,0.0,0.0,0.0,0.042167164 +321.86948108673096,0.47,0.0,0.0,0.0,0.042167164 +321.8796911239624,0.47,0.0,0.0,0.0,0.042167164 +321.8896679878235,0.47,0.0,0.0,0.0,0.042167164 +321.90107107162476,0.47,0.0,0.0,0.0,0.042167164 +321.9101300239563,0.47,0.0,0.0,0.0,0.042167164 +321.9194121360779,0.47,0.0,0.0,0.0,0.04401721 +321.92967796325684,0.47,0.0,0.0,0.0,0.04401721 +321.9402320384979,0.47,0.0,0.0,0.0,0.04401721 +321.95040011405945,0.47,0.0,0.0,0.0,0.04401721 +321.9594440460205,0.47,0.0,0.0,0.0,0.04401721 +321.970330953598,0.47,0.0,0.0,0.0,0.02921681 +321.9812650680542,0.47,0.0,0.0,0.0,0.02921681 +321.99050402641296,0.47,0.0,0.0,0.0,0.02921681 +321.9994070529938,0.47,0.0,0.0,0.0,0.02921681 +322.0112109184265,0.47,0.0,0.0,0.0,0.02921681 +322.01971912384033,0.47,0.0,0.0,0.0,0.02921681 +322.0296800136566,0.47,0.0,0.0,0.0,0.02921681 +322.0403060913086,0.47,0.0,0.0,0.0,0.02921681 +322.049427986145,0.47,0.0,0.0,0.0,0.02921681 +322.0594711303711,0.47,0.0,0.0,0.0,0.04401721 +322.0695049762726,0.47,0.0,0.0,0.0,0.04401721 +322.0796000957489,0.47,0.0,0.0,0.0,0.04401721 +322.0904109477997,0.47,0.0,0.0,0.0,0.04401721 +322.0994200706482,0.47,0.0,0.0,0.0,0.04401721 +322.1112530231476,0.47,0.0,0.0,0.0,0.04401721 +322.1197280883789,0.47,0.0,0.0,0.0,0.027366763 +322.1296739578247,0.45999998,0.0,0.0,0.0,0.027366763 +322.13946509361267,0.45999998,0.0,0.0,0.0,0.027366763 +322.1504600048065,0.45999998,0.0,0.0,0.0,0.027366763 +322.1594650745392,0.45999998,0.0,0.0,0.0,0.027366763 +322.169508934021,0.45999998,0.0,0.0,0.0,0.027366763 +322.18053793907166,0.47,0.0,0.0,0.0,0.027366763 +322.1895351409912,0.47,0.0,0.0,0.0,0.027366763 +322.200315952301,0.47,0.0,0.0,0.0,0.027366763 +322.21049904823303,0.47,0.0,0.0,0.0,0.027366763 +322.21969199180603,0.48,0.0,0.0,0.0,-0.00038397792 +322.229660987854,0.48,0.0,0.0,0.0,-0.00038397792 +322.2399859428406,0.48,0.0,0.0,0.0,-0.00038397792 +322.2495470046997,0.48,0.0,0.0,0.0,-0.00038397792 +322.25947308540344,0.48,0.0,0.0,0.0,0.034766953 +322.27065205574036,0.48,0.0,0.0,0.0,0.034766953 +322.2796700000763,0.48,0.0,0.0,0.0,0.034766953 +322.28976798057556,0.48,0.0,0.0,0.0,0.034766953 +322.30108094215393,0.48,0.0,0.0,0.0,0.034766953 +322.3100690841675,0.48,0.0,0.0,0.0,0.034766953 +322.31972098350525,0.48,0.0,0.0,0.0,0.021816617 +322.32969093322754,0.48,0.0,0.0,0.0,0.021816617 +322.3396260738373,0.48,0.0,0.0,0.0,0.021816617 +322.35122299194336,0.48,0.0,0.0,0.0,0.021816617 +322.3594779968262,0.48,0.0,0.0,0.0,0.031066857 +322.369784116745,0.48,0.0,0.0,0.0,0.031066857 +322.3812029361725,0.48,0.0,0.0,0.0,0.031066857 +322.3910300731659,0.48,0.0,0.0,0.0,0.031066857 +322.4000220298767,0.48,0.0,0.0,0.0,0.031066857 +322.40953302383423,0.48,0.0,0.0,0.0,0.04031712 +322.41970705986023,0.48,0.0,0.0,0.0,0.04031712 +322.42969608306885,0.48,0.0,0.0,0.0,0.04031712 +322.4412159919739,0.48,0.0,0.0,0.0,0.04031712 +322.4509119987488,0.48,0.0,0.0,0.0,0.04031712 +322.4594180583954,0.48,0.0,0.0,0.0,0.04031712 +322.4698441028595,0.47,0.0,0.0,0.0,0.032916907 +322.480633020401,0.47,0.0,0.0,0.0,0.032916907 +322.4895439147949,0.47,0.0,0.0,0.0,0.032916907 +322.4999749660492,0.47,0.0,0.0,0.0,0.032916907 +322.5095069408417,0.47,0.0,0.0,0.0,0.032916907 +322.5197150707245,0.45999998,0.0,0.0,0.0,0.031066857 +322.52969002723694,0.45999998,0.0,0.0,0.0,0.031066857 +322.5404829978943,0.45999998,0.0,0.0,0.0,0.031066857 +322.5501329898834,0.45999998,0.0,0.0,0.0,0.031066857 +322.5594811439514,0.45999998,0.0,0.0,0.0,0.04586726 +322.5697600841522,0.45999998,0.0,0.0,0.0,0.04586726 +322.5799369812012,0.45999998,0.0,0.0,0.0,0.04586726 +322.58948802948,0.45999998,0.0,0.0,0.0,0.04586726 +322.60080909729004,0.45999998,0.0,0.0,0.0,0.04586726 +322.6094810962677,0.45999998,0.0,0.0,0.0,0.09211848 +322.6197409629822,0.45999998,0.0,0.0,0.0,0.09211848 +322.62965393066406,0.45999998,0.0,0.0,0.0,0.09211848 +322.64025497436523,0.45,0.0,0.0,0.0,0.09211848 +322.64993691444397,0.45,0.0,0.0,0.0,0.09211848 +322.65947914123535,0.45,0.0,0.0,0.0,0.10321877 +322.6699011325836,0.45,0.0,0.0,0.0,0.10321877 +322.680202960968,0.44,0.0,0.0,0.0,0.10321877 +322.6909120082855,0.44,0.0,0.0,0.0,0.10321877 +322.69992303848267,0.42999998,0.0,0.0,0.0,0.10321877 +322.70946502685547,0.42999998,0.0,0.0,0.0,0.10691887 +322.7194631099701,0.42999998,0.0,0.0,0.0,0.10691887 +322.7297079563141,0.42999998,0.0,0.0,0.0,0.10691887 +322.73943305015564,0.42999998,0.0,0.0,0.0,0.10691887 +322.7508759498596,0.42999998,0.0,0.0,0.0,0.10691887 +322.7594931125641,0.42999998,0.0,0.0,0.0,0.09766865 +322.771192073822,0.42999998,0.0,0.0,0.0,0.09766865 +322.78099298477173,0.42999998,0.0,0.0,0.0,0.09766865 +322.78997707366943,0.42,0.0,0.0,0.0,0.09766865 +322.8011701107025,0.42,0.0,0.0,0.0,0.09766865 +322.81033205986023,0.42,0.0,0.0,0.0,0.09766865 +322.81963992118835,0.42,0.0,0.0,0.0,0.114319056 +322.82960200309753,0.42,0.0,0.0,0.0,0.114319056 +322.8408110141754,0.42,0.0,0.0,0.0,0.114319056 +322.8494510650635,0.42,0.0,0.0,0.0,0.114319056 +322.85948395729065,0.42,0.0,0.0,0.0,0.093968526 +322.87105202674866,0.42,0.0,0.0,0.0,0.093968526 +322.88008308410645,0.42,0.0,0.0,0.0,0.093968526 +322.8905210494995,0.42,0.0,0.0,0.0,0.093968526 +322.8994240760803,0.42,0.0,0.0,0.0,0.093968526 +322.9096279144287,0.42,0.0,0.0,0.0,0.093968526 +322.91970801353455,0.42,0.0,0.0,0.0,0.05696755 +322.9296820163727,0.42,0.0,0.0,0.0,0.05696755 +322.9397599697113,0.42,0.0,0.0,0.0,0.05696755 +322.95058608055115,0.42,0.0,0.0,0.0,0.05696755 +322.95948696136475,0.42,0.0,0.0,0.0,0.034766953 +322.9695019721985,0.42,0.0,0.0,0.0,0.034766953 +322.9794499874115,0.42,0.0,0.0,0.0,0.034766953 +322.99116706848145,0.42,0.0,0.0,0.0,0.034766953 +322.9999089241028,0.42,0.0,0.0,0.0,0.034766953 +323.00992012023926,0.41,0.0,0.0,0.0,0.034766953 +323.0197379589081,0.41,0.0,0.0,0.0,0.034766953 +323.02972507476807,0.39999998,0.0,0.0,0.0,0.034766953 +323.04116010665894,0.39999998,0.0,0.0,0.0,0.034766953 +323.0508699417114,0.39999998,0.0,0.0,0.0,0.034766953 +323.059485912323,0.39,0.0,0.0,0.0,0.031066857 +323.0711901187897,0.39,0.0,0.0,0.0,0.031066857 +323.08115100860596,0.39999998,0.0,0.0,0.0,0.031066857 +323.0910110473633,0.39999998,0.0,0.0,0.0,0.031066857 +323.1000289916992,0.39999998,0.0,0.0,0.0,0.031066857 +323.1094789505005,0.39999998,0.0,0.0,0.0,0.031066857 +323.1196849346161,0.41,0.0,0.0,0.0,0.04586726 +323.12967896461487,0.41,0.0,0.0,0.0,0.04586726 +323.1399531364441,0.41,0.0,0.0,0.0,0.04586726 +323.1503300666809,0.41,0.0,0.0,0.0,0.04586726 +323.15952610969543,0.41,0.0,0.0,0.0,0.049567357 +323.17114996910095,0.39999998,0.0,0.0,0.0,0.049567357 +323.18114709854126,0.39999998,0.0,0.0,0.0,0.049567357 +323.1901960372925,0.39999998,0.0,0.0,0.0,0.049567357 +323.2006390094757,0.39999998,0.0,0.0,0.0,0.049567357 +323.2096269130707,0.39999998,0.0,0.0,0.0,0.049567357 +323.21970796585083,0.39,0.0,0.0,0.0,0.051417407 +323.2296941280365,0.39,0.0,0.0,0.0,0.051417407 +323.2394881248474,0.39,0.0,0.0,0.0,0.051417407 +323.24941205978394,0.39,0.0,0.0,0.0,0.051417407 +323.2595109939575,0.39,0.0,0.0,0.0,0.06436774 +323.2711970806122,0.39,0.0,0.0,0.0,0.06436774 +323.28030014038086,0.39,0.0,0.0,0.0,0.06436774 +323.290589094162,0.39,0.0,0.0,0.0,0.06436774 +323.2995960712433,0.39,0.0,0.0,0.0,0.06436774 +323.30948996543884,0.38,0.0,0.0,0.0,0.06436774 +323.31973004341125,0.38,0.0,0.0,0.0,0.062517695 +323.32969403266907,0.38,0.0,0.0,0.0,0.062517695 +323.33948707580566,0.38,0.0,0.0,0.0,0.062517695 +323.3511469364166,0.38,0.0,0.0,0.0,0.062517695 +323.35949993133545,0.38,0.0,0.0,0.0,0.09211848 +323.36950612068176,0.38,0.0,0.0,0.0,0.09211848 +323.37940311431885,0.38,0.0,0.0,0.0,0.09211848 +323.38941192626953,0.38,0.0,0.0,0.0,0.09211848 +323.4011290073395,0.37,0.0,0.0,0.0,0.09211848 +323.40948009490967,0.37,0.0,0.0,0.0,0.062517695 +323.41973996162415,0.37,0.0,0.0,0.0,0.062517695 +323.42955493927,0.37,0.0,0.0,0.0,0.062517695 +323.4395020008087,0.37,0.0,0.0,0.0,0.062517695 +323.4511179924011,0.37,0.0,0.0,0.0,0.062517695 +323.45948696136475,0.37,0.0,0.0,0.0,0.062517695 +323.4695749282837,0.37,0.0,0.0,0.0,0.062517695 +323.47951912879944,0.37,0.0,0.0,0.0,0.062517695 +323.4911069869995,0.37,0.0,0.0,0.0,0.062517695 +323.49950909614563,0.37,0.0,0.0,0.0,0.062517695 +323.5095009803772,0.37,0.0,0.0,0.0,0.0551175 +323.5196690559387,0.37,0.0,0.0,0.0,0.0551175 +323.53110909461975,0.37,0.0,0.0,0.0,0.0551175 +323.5408351421356,0.37,0.0,0.0,0.0,0.0551175 +323.54974007606506,0.37,0.0,0.0,0.0,0.0551175 +323.5595009326935,0.37,0.0,0.0,0.0,0.051417407 +323.56945610046387,0.37,0.0,0.0,0.0,0.051417407 +323.57968306541443,0.37,0.0,0.0,0.0,0.051417407 +323.58956813812256,0.37,0.0,0.0,0.0,0.051417407 +323.6006181240082,0.35999998,0.0,0.0,0.0,0.051417407 +323.6094889640808,0.35999998,0.0,0.0,0.0,0.09211848 +323.6197431087494,0.35,0.0,0.0,0.0,0.09211848 +323.6295669078827,0.34,0.0,0.0,0.0,0.09211848 +323.640939950943,0.32999998,0.0,0.0,0.0,0.09211848 +323.6499581336975,0.32,0.0,0.0,0.0,0.09211848 +323.6594121456146,0.31,0.0,0.0,0.0,0.09211848 +323.6711220741272,0.29999998,0.0,0.0,0.0,0.08101819 +323.679927110672,0.29999998,0.0,0.0,0.0,0.08101819 +323.6903820037842,0.28,0.0,0.0,0.0,0.08101819 +323.6993999481201,0.26999998,0.0,0.0,0.0,0.08101819 +323.7094750404358,0.26,0.0,0.0,0.0,0.07176795 +323.71969294548035,0.25,0.0,0.0,0.0,0.07176795 +323.72969913482666,0.25,0.0,0.0,0.0,0.07176795 +323.739874124527,0.24,0.0,0.0,0.0,0.07176795 +323.75109004974365,0.22999999,0.0,0.0,0.0,0.07176795 +323.75947999954224,0.22999999,0.0,0.0,0.0,0.06621779 +323.7698230743408,0.21,0.0,0.0,0.0,0.06621779 +323.78092408180237,0.19999999,0.0,0.0,0.0,0.06621779 +323.78991508483887,0.19,0.0,0.0,0.0,0.06621779 +323.80109190940857,0.19,0.0,0.0,0.0,0.06621779 +323.8110740184784,0.19,0.0,0.0,0.0,0.06621779 +323.81971502304077,0.17,0.0,0.0,0.0,0.07176795 +323.82969903945923,0.16,0.0,0.0,0.0,0.07176795 +323.8395290374756,0.14999999,0.0,0.0,0.0,0.07176795 +323.8510670661926,0.14999999,0.0,0.0,0.0,0.07176795 +323.8595070838928,0.14,1.5151515,1.5151515,0.0,0.051417407 +323.87041211128235,0.13,3.787879,3.787879,0.0,0.051417407 +323.8800039291382,0.12,6.818182,6.818182,0.0,0.051417407 +323.8896780014038,0.11,8.333334,8.333334,0.0,0.051417407 +323.9011061191559,0.099999994,10.606061,10.606061,0.0,0.051417407 +323.909588098526,0.099999994,10.606061,10.606061,0.0,0.051417407 +323.91974401474,0.08,16.666668,16.666668,0.0,0.021816617 +323.9295160770416,0.07,20.454544,20.454544,0.0,0.021816617 +323.9410810470581,0.07,25.757576,25.757576,0.0,0.021816617 +323.94983291625977,0.07,25.757576,25.757576,0.0,0.021816617 +323.9594910144806,0.049999997,33.333336,33.333336,0.0,0.021816617 +323.9700839519501,0.04,37.878788,37.878788,0.0,-0.00038397792 +323.9810950756073,0.04,43.181816,43.181816,0.009372071,-0.00038397792 +323.99094009399414,0.04,43.181816,43.181816,0.018744143,-0.00038397792 +324.0010769367218,0.03,53.030304,53.030304,0.028116215,-0.00038397792 +324.01025795936584,0.03,53.030304,53.030304,0.037488285,-0.00038397792 +324.01956009864807,0.02,59.090908,59.090908,0.05623243,-0.07623599 +324.02971506118774,0.01,62.121212,62.121212,0.0656045,-0.07623599 +324.0397160053253,0.01,65.90909,65.90909,0.07497657,-0.07623599 +324.0510640144348,0.0,65.15151,65.15151,0.07497657,-0.07623599 +324.0594871044159,0.0,50.0,50.0,0.08434864,-0.09843658 +324.0711030960083,0.0,37.121216,37.121216,0.09372071,-0.09843658 +324.08106899261475,0.0,23.484848,23.484848,0.09372071,-0.09843658 +324.091068983078,0.0,23.484848,23.484848,0.10309278,-0.09843658 +324.10018396377563,0.0,25.757576,25.757576,0.12183693,-0.09843658 +324.10969710350037,0.0,36.363636,36.363636,0.12183693,-0.09843658 +324.1196999549866,0.0,46.21212,46.21212,0.131209,-0.10583678 +324.12968707084656,0.0,54.545456,54.545456,0.14058107,-0.10583678 +324.1409230232239,0.0,62.878788,62.878788,0.15932521,-0.10583678 +324.14947509765625,0.0,69.69697,69.69697,0.16869728,-0.10583678 +324.159481048584,0.0,67.42425,67.42425,0.16869728,-0.072535895 +324.1710801124573,0.0,65.15151,65.15151,0.17806935,-0.072535895 +324.1810829639435,0.0,62.878788,62.878788,0.17806935,-0.072535895 +324.19016194343567,0.0,62.878788,62.878788,0.18744142,-0.072535895 +324.19983291625977,0.0,59.090908,59.090908,0.1968135,-0.072535895 +324.2094271183014,0.0,59.090908,59.090908,0.1968135,-0.072535895 +324.21970295906067,0.0,60.606064,60.606064,0.20618556,-0.054035395 +324.2297170162201,0.0,62.121212,62.121212,0.20618556,-0.054035395 +324.23956394195557,0.0,63.636364,63.636364,0.21555763,-0.054035395 +324.25025701522827,0.0,63.636364,63.636364,0.21555763,-0.054035395 +324.2595069408417,0.0,63.636364,63.636364,0.22492972,-0.050335295 +324.27108812332153,0.0,65.15151,65.15151,0.23430179,-0.050335295 +324.2797420024872,0.0,65.15151,65.15151,0.23430179,-0.050335295 +324.2899739742279,0.0,68.93939,68.93939,0.24367386,-0.050335295 +324.29967308044434,0.0,70.454544,70.454544,0.24367386,-0.050335295 +324.3110520839691,0.0,71.21212,71.21212,0.24367386,-0.050335295 +324.3197190761566,0.0,71.21212,71.21212,0.24367386,-0.072535895 +324.32971000671387,0.0,71.969696,71.969696,0.25304592,-0.072535895 +324.3394150733948,0.0,73.48485,73.48485,0.25304592,-0.072535895 +324.3510699272156,0.0,75.757576,75.757576,0.25304592,-0.072535895 +324.3595061302185,0.0,75.757576,75.757576,0.25304592,-0.0466352 +324.3700249195099,0.0,78.78788,78.78788,0.27179006,-0.0466352 +324.38013195991516,0.0,78.78788,78.78788,0.27179006,-0.0466352 +324.3897819519043,0.0,79.545456,79.545456,0.27179006,-0.0466352 +324.40103793144226,0.0,81.0606,81.0606,0.27179006,-0.0466352 +324.409805059433,0.0,81.0606,81.0606,0.27179006,-0.0466352 +324.42047595977783,0.0,84.84849,84.84849,0.28116214,-0.072535895 +324.4293899536133,0.0,86.36363,86.36363,0.28116214,-0.072535895 +324.4396770000458,0.0,86.36363,86.36363,0.28116214,-0.072535895 +324.4494700431824,0.0,85.606064,85.606064,0.28116214,-0.072535895 +324.4594910144806,0.0,86.36363,86.36363,0.27179006,-0.085486226 +324.47029209136963,0.0,87.878784,87.878784,0.27179006,-0.085486226 +324.48106694221497,0.0,89.393936,89.393936,0.27179006,-0.085486226 +324.4910180568695,0.0,89.393936,89.393936,0.28116214,-0.085486226 +324.5010359287262,0.0,89.393936,89.393936,0.28116214,-0.085486226 +324.50949001312256,0.0,89.393936,89.393936,0.28116214,-0.050335295 +324.51957392692566,0.0,87.12121,87.12121,0.2905342,-0.050335295 +324.52964997291565,0.0,86.36363,86.36363,0.2905342,-0.050335295 +324.53989005088806,0.0,86.36363,86.36363,0.28116214,-0.050335295 +324.54991006851196,0.0,85.606064,85.606064,0.28116214,-0.050335295 +324.55949997901917,0.0,84.09091,84.09091,0.28116214,-0.0577355 +324.56946301460266,0.0,81.81818,81.81818,0.28116214,-0.0577355 +324.5810329914093,0.0,78.78788,78.78788,0.28116214,-0.0577355 +324.5910589694977,0.0,75.0,75.0,0.28116214,-0.0577355 +324.5998430252075,0.0,75.0,75.0,0.28116214,-0.0577355 +324.609503030777,0.0,72.72727,72.72727,0.27179006,-0.06143559 +324.61973214149475,0.0,70.454544,70.454544,0.262418,-0.06143559 +324.6296761035919,0.0,67.42425,67.42425,0.262418,-0.06143559 +324.63985800743103,0.0,63.636364,63.636364,0.262418,-0.06143559 +324.650573015213,0.0,59.848484,59.848484,0.262418,-0.06143559 +324.6595039367676,0.0,56.818184,56.818184,0.262418,-0.09843658 +324.669930934906,0.0,54.545456,54.545456,0.25304592,-0.09843658 +324.6810231208801,0.0,52.272724,52.272724,0.24367386,-0.09843658 +324.68996000289917,0.0,52.272724,52.272724,0.23430179,-0.09843658 +324.6997609138489,0.0,47.727272,47.727272,0.23430179,-0.09843658 +324.70950198173523,0.0,44.696968,44.696968,0.22492972,-0.19463913 +324.71973991394043,0.0,41.666668,41.666668,0.23430179,-0.19463913 +324.7297101020813,0.0,39.39394,39.39394,0.23430179,-0.19463913 +324.7396020889282,0.0,38.636364,38.636364,0.23430179,-0.19463913 +324.7497479915619,0.0,37.878788,37.878788,0.23430179,-0.19463913 +324.75950598716736,0.0,37.121216,37.121216,0.22492972,-0.1594882 +324.76942110061646,0.0,35.60606,35.60606,0.22492972,-0.1594882 +324.78056812286377,0.0,32.575756,32.575756,0.23430179,-0.1594882 +324.78984093666077,0.0,30.303032,30.303032,0.23430179,-0.1594882 +324.79981207847595,0.0,28.030302,28.030302,0.23430179,-0.1594882 +324.80950808525085,0.0,28.030302,28.030302,0.23430179,-0.19648919 +324.8197479248047,0.0,28.030302,28.030302,0.22492972,-0.19648919 +324.829528093338,0.0,28.030302,28.030302,0.21555763,-0.19648919 +324.83988308906555,0.0,28.030302,28.030302,0.21555763,-0.19648919 +324.8503119945526,0.0,27.272728,27.272728,0.20618556,-0.19648919 +324.85949897766113,0.0,25.757576,25.757576,0.20618556,-0.3185924 +324.8709170818329,0.0,25.0,25.0,0.20618556,-0.3185924 +324.8799419403076,0.0,25.0,25.0,0.20618556,-0.3185924 +324.89099407196045,0.0,25.0,25.0,0.20618556,-0.3185924 +324.900691986084,0.0,25.0,25.0,0.21555763,-0.3185924 +324.909707069397,0.0,25.0,25.0,0.21555763,-0.3185924 +324.9194049835205,0.0,25.0,25.0,0.21555763,-0.27049115 +324.92970395088196,0.0,23.484848,23.484848,0.21555763,-0.27049115 +324.93941712379456,0.0,22.727274,22.727274,0.21555763,-0.27049115 +324.95099997520447,0.0,23.484848,23.484848,0.20618556,-0.27049115 +324.9595220088959,0.0,23.484848,23.484848,0.20618556,-0.28159142 +324.9700059890747,0.0,25.757576,25.757576,0.1968135,-0.28159142 +324.9810080528259,0.0,27.272728,27.272728,0.1968135,-0.28159142 +324.9906470775604,0.0,27.272728,27.272728,0.1968135,-0.28159142 +324.99963998794556,0.0,27.272728,27.272728,0.1968135,-0.28159142 +325.0107100009918,0.0,26.515152,26.515152,0.20618556,-0.28159142 +325.01960492134094,0.0,25.0,25.0,0.20618556,-0.27049115 +325.02953696250916,0.0,25.0,25.0,0.20618556,-0.27049115 +325.0398061275482,0.0,25.0,25.0,0.21555763,-0.27049115 +325.0509440898895,0.0,25.757576,25.757576,0.20618556,-0.27049115 +325.05950713157654,0.0,25.757576,25.757576,0.20618556,-0.27049115 +325.0710129737854,0.0,25.757576,25.757576,0.20618556,-0.27049115 +325.0806031227112,0.0,25.757576,25.757576,0.1968135,-0.27049115 +325.0896110534668,0.0,23.484848,23.484848,0.1968135,-0.27049115 +325.0997939109802,0.0,22.727274,22.727274,0.1968135,-0.27049115 +325.1103551387787,0.0,26.515152,26.515152,0.1968135,-0.27049115 +325.1194031238556,0.0,32.575756,32.575756,0.1968135,-0.27049115 +325.1297011375427,0.0,37.121216,37.121216,0.1968135,-0.27049115 +325.1409869194031,0.0,40.90909,40.90909,0.1968135,-0.27049115 +325.1501820087433,0.0,40.90909,40.90909,0.1968135,-0.27049115 +325.1595079898834,0.0,45.454548,45.454548,0.18744142,-0.264941 +325.17057609558105,0.0,46.21212,46.21212,0.18744142,-0.264941 +325.1795620918274,0.0,46.969696,46.969696,0.18744142,-0.264941 +325.19025802612305,0.0,47.727272,47.727272,0.1968135,-0.264941 +325.2005729675293,0.0,48.484848,48.484848,0.1968135,-0.264941 +325.20960092544556,0.0,49.242424,49.242424,0.18744142,-0.264941 +325.219407081604,0.0,49.242424,49.242424,0.17806935,-0.2723412 +325.2309830188751,0.0,49.242424,49.242424,0.17806935,-0.2723412 +325.2402079105377,0.0,49.242424,49.242424,0.16869728,-0.2723412 +325.25095105171204,0.0,48.484848,48.484848,0.16869728,-0.2723412 +325.2595670223236,0.0,47.727272,47.727272,0.15932521,-0.2612409 +325.26942205429077,0.0,46.969696,46.969696,0.14995314,-0.2612409 +325.2797169685364,0.0,47.727272,47.727272,0.15932521,-0.2612409 +325.2908229827881,0.0,47.727272,47.727272,0.14995314,-0.2612409 +325.2998540401459,0.0,48.484848,48.484848,0.14995314,-0.2612409 +325.3102250099182,0.0,49.242424,49.242424,0.14995314,-0.2612409 +325.3197419643402,0.0,49.242424,49.242424,0.14995314,-0.3629936 +325.329726934433,0.0,48.484848,48.484848,0.14058107,-0.3629936 +325.3404140472412,0.0,47.727272,47.727272,0.131209,-0.3629936 +325.35046792030334,0.0,46.969696,46.969696,0.131209,-0.3629936 +325.35945296287537,0.0,46.21212,46.21212,0.131209,-0.3629936 +325.3709909915924,0.0,46.21212,46.21212,0.131209,-0.37224382 +325.380970954895,0.0,46.21212,46.21212,0.12183693,-0.37224382 +325.38943696022034,0.0,46.21212,46.21212,0.11246486,-0.37224382 +325.3999819755554,0.0,46.21212,46.21212,0.11246486,-0.37224382 +325.40951013565063,0.0,45.454548,45.454548,0.11246486,-0.37224382 +325.41976594924927,0.0,43.939392,43.939392,0.10309278,-0.35744345 +325.4295949935913,0.0,43.181816,43.181816,0.10309278,-0.35744345 +325.4404170513153,0.0,42.424244,42.424244,0.10309278,-0.35744345 +325.4494049549103,0.0,41.666668,41.666668,0.10309278,-0.35744345 +325.45952796936035,0.0,40.90909,40.90909,0.09372071,-0.3444931 +325.47098302841187,0.0,40.151516,40.151516,0.08434864,-0.3444931 +325.4803011417389,0.0,40.151516,40.151516,0.08434864,-0.3444931 +325.49055099487305,0.0,37.878788,37.878788,0.08434864,-0.3444931 +325.50083804130554,0.0,36.363636,36.363636,0.07497657,-0.3444931 +325.5094950199127,0.0,34.848484,34.848484,0.07497657,-0.3888943 +325.51943612098694,0.0,33.333336,33.333336,0.0656045,-0.3888943 +325.5297429561615,0.0,32.575756,32.575756,0.0656045,-0.3888943 +325.53960514068604,0.0,31.818182,31.818182,0.0656045,-0.3888943 +325.55095291137695,0.0,31.060606,31.060606,0.0656045,-0.3888943 +325.55952405929565,0.0,31.060606,31.060606,0.0656045,-0.42219514 +325.5705199241638,0.0,29.545454,29.545454,0.05623243,-0.42219514 +325.57956194877625,0.0,28.78788,28.78788,0.05623243,-0.42219514 +325.5899660587311,0.0,28.030302,28.030302,0.05623243,-0.42219514 +325.6005001068115,0.0,27.272728,27.272728,0.05623243,-0.42219514 +325.60949206352234,0.0,25.757576,25.757576,0.05623243,-0.42219514 +325.6194019317627,0.0,25.0,25.0,0.046860356,-0.5146976 +325.6296319961548,0.0,24.242424,24.242424,0.046860356,-0.5146976 +325.64040899276733,0.0,23.484848,23.484848,0.037488285,-0.5146976 +325.64957308769226,0.0,22.727274,22.727274,0.037488285,-0.5146976 +325.65951204299927,0.0,21.969696,21.969696,0.028116215,-0.48694688 +325.66979598999023,0.0,21.969696,21.969696,0.028116215,-0.48694688 +325.6809389591217,0.0,21.212122,21.212122,0.028116215,-0.48694688 +325.69055795669556,0.0,21.212122,21.212122,0.028116215,-0.48694688 +325.69957304000854,0.0,19.69697,19.69697,0.018744143,-0.48694688 +325.70948600769043,0.0,18.939394,18.939394,0.018744143,-0.48694688 +325.7197389602661,0.0,18.181818,18.181818,0.009372071,-0.49249703 +325.72971296310425,0.0,17.424242,17.424242,0.009372071,-0.49249703 +325.7409601211548,0.0,17.424242,17.424242,0.009372071,-0.49249703 +325.75036692619324,0.0,17.424242,17.424242,0.0,-0.49249703 +325.75951409339905,0.0,16.666668,16.666668,0.0,-0.48139673 +325.7709369659424,0.0,15.909091,15.909091,0.0,-0.48139673 +325.77961897850037,0.0,15.909091,15.909091,0.0,-0.48139673 +325.7896189689636,0.0,15.151516,15.151516,0.0,-0.48139673 +325.80010890960693,0.0,15.151516,15.151516,0.0,-0.48139673 +325.80951595306396,0.0,14.39394,14.39394,0.0,-0.48139673 +325.81944394111633,0.0,14.39394,14.39394,0.0,-0.48139673 +325.82973408699036,0.0,14.39394,14.39394,0.0,-0.48139673 +325.8394629955292,0.0,14.39394,14.39394,0.0,-0.48139673 +325.8502631187439,0.0,14.39394,14.39394,0.0,-0.48139673 +325.85955810546875,0.0,13.636364,13.636364,0.0,-0.4758466 +325.87067699432373,0.0,13.636364,13.636364,0.0,-0.4758466 +325.8796811103821,0.0,13.636364,13.636364,0.0,-0.4758466 +325.88954496383667,0.0,12.878788,12.878788,0.0,-0.4758466 +325.9002079963684,0.0,12.121212,12.121212,0.0,-0.4758466 +325.9096939563751,0.0,12.121212,12.121212,0.0,-0.4758466 +325.9195580482483,0.0,11.363637,11.363637,0.0,-0.4684464 +325.92970395088196,0.0,11.363637,11.363637,0.0,-0.4684464 +325.9404981136322,0.0,10.606061,10.606061,0.0,-0.4684464 +325.9495379924774,0.0,9.848485,9.848485,0.0,-0.4684464 +325.9595100879669,0.0,9.848485,9.848485,0.0,-0.4758466 +325.9697480201721,0.0,9.848485,9.848485,0.0,-0.4758466 +325.98000597953796,0.0,9.090909,9.090909,0.0,-0.4758466 +325.99093198776245,0.0,8.333334,8.333334,0.0,-0.4758466 +325.9999051094055,0.0,8.333334,8.333334,0.0,-0.4758466 +326.01091599464417,0.0,7.575758,7.575758,0.0,-0.4758466 +326.0197639465332,0.0,6.818182,6.818182,0.0,-0.48509687 +326.0297269821167,0.0,6.818182,6.818182,0.0,-0.48509687 +326.03971791267395,0.0,6.060606,6.060606,0.0,-0.48509687 +326.05007791519165,0.0,6.060606,6.060606,0.0,-0.48509687 +326.05951714515686,0.0,5.3030305,5.3030305,0.0,-0.49989724 +326.06994700431824,0.0,5.3030305,5.3030305,0.0,-0.49989724 +326.0801000595093,0.0,4.5454545,4.5454545,0.0,-0.49989724 +326.0909061431885,0.0,4.5454545,4.5454545,0.0,-0.49989724 +326.1007070541382,0.0,3.787879,3.787879,0.0,-0.49989724 +326.1109049320221,0.0,3.787879,3.787879,0.0,-0.49989724 +326.1209261417389,0.0,3.030303,3.030303,0.0,-0.47029644 +326.12975811958313,0.0,3.030303,3.030303,0.0,-0.47029644 +326.13972997665405,0.0,2.2727273,2.2727273,0.0,-0.47029644 +326.14988899230957,0.0,2.2727273,2.2727273,0.0,-0.47029644 +326.15951800346375,0.0,2.2727273,2.2727273,0.0,-0.4425457 +326.1698100566864,0.0,1.5151515,1.5151515,0.0,-0.4425457 +326.18090200424194,0.0,1.5151515,1.5151515,0.0,-0.4425457 +326.19091296195984,0.0,0.75757575,0.75757575,0.0,-0.4425457 +326.2008991241455,0.0,0.75757575,0.75757575,0.0,-0.4425457 +326.21089911460876,0.0,0.75757575,0.75757575,0.0,-0.4425457 +326.2197539806366,0.0,0.75757575,0.75757575,0.0,-0.48509687 +326.22973108291626,0.01,0.75757575,0.75757575,0.0,-0.48509687 +326.23942613601685,0.01,0.0,0.0,0.0,-0.48509687 +326.2494161128998,0.01,0.0,0.0,0.0,-0.48509687 +326.25952410697937,0.01,0.0,0.0,0.0,-0.50174725 +326.27091693878174,0.01,0.0,0.0,0.0,-0.50174725 +326.2799549102783,0.01,0.0,0.0,0.0,-0.50174725 +326.2903230190277,0.01,0.0,0.0,0.0,-0.50174725 +326.2998991012573,0.01,0.0,0.0,0.0,-0.50174725 +326.31029891967773,0.01,0.0,0.0,0.0,-0.50174725 +326.3197410106659,0.01,0.0,0.0,0.0,-0.4943471 +326.3296320438385,0.01,0.0,0.0,0.0,-0.4943471 +326.3398151397705,0.01,0.0,0.0,0.0,-0.4943471 +326.3509011268616,0.01,0.0,0.0,0.0,-0.4943471 +326.3595359325409,0.01,0.0,0.0,0.0,-0.5165477 +326.37089109420776,0.02,0.75757575,0.75757575,0.0,-0.5165477 +326.3809061050415,0.02,0.75757575,0.75757575,0.0,-0.5165477 +326.3909001350403,0.02,1.5151515,1.5151515,0.0,-0.5165477 +326.40048599243164,0.02,1.5151515,1.5151515,0.0,-0.5165477 +326.4095060825348,0.02,1.5151515,1.5151515,0.0,-0.5165477 +326.41961002349854,0.02,2.2727273,2.2727273,0.0,-0.5350482 +326.4297389984131,0.02,3.030303,3.030303,0.0,-0.5350482 +326.4405300617218,0.02,3.787879,3.787879,0.0,-0.5350482 +326.4508740901947,0.02,3.787879,3.787879,0.0,-0.5350482 +326.4595150947571,0.02,4.5454545,4.5454545,0.0,-0.5590988 +326.47090101242065,0.02,5.3030305,5.3030305,0.0,-0.5590988 +326.48088693618774,0.02,6.818182,6.818182,0.0,-0.5590988 +326.49004793167114,0.02,6.818182,6.818182,0.0,-0.5590988 +326.49970293045044,0.02,8.333334,8.333334,0.0,-0.5590988 +326.5095410346985,0.02,9.090909,9.090909,0.0,-0.5590988 +326.5196659564972,0.02,11.363637,11.363637,0.0,-0.59609973 +326.52973198890686,0.02,12.878788,12.878788,0.0,-0.59609973 +326.54087710380554,0.02,14.39394,14.39394,0.0,-0.59609973 +326.54986596107483,0.02,14.39394,14.39394,0.0,-0.59609973 +326.5595109462738,0.02,15.909091,15.909091,0.0,-0.57204914 +326.57025814056396,0.02,16.666668,16.666668,0.0,-0.57204914 +326.58086800575256,0.02,16.666668,16.666668,0.0,-0.57204914 +326.58992099761963,0.02,16.666668,16.666668,0.0,-0.57204914 +326.600261926651,0.02,16.666668,16.666668,0.0,-0.57204914 +326.60953402519226,0.02,17.424242,17.424242,0.0,-0.5997999 +326.6197860240936,0.02,18.181818,18.181818,0.0,-0.5997999 +326.6295530796051,0.02,18.939394,18.939394,0.0,-0.5997999 +326.6402680873871,0.02,18.939394,18.939394,0.0,-0.5997999 +326.65042304992676,0.02,19.69697,19.69697,0.0,-0.5997999 +326.6595799922943,0.02,19.69697,19.69697,0.0,-0.5646489 +326.67089200019836,0.02,19.69697,19.69697,0.0,-0.5646489 +326.680153131485,0.02,19.69697,19.69697,0.0,-0.5646489 +326.6893949508667,0.02,18.939394,18.939394,0.0,-0.5646489 +326.6995689868927,0.02,18.939394,18.939394,0.0,-0.5646489 +326.7093970775604,0.02,18.181818,18.181818,0.0,-0.5646489 +326.7197570800781,0.02,17.424242,17.424242,0.0,-0.63495076 +326.7297260761261,0.02,16.666668,16.666668,0.009372071,-0.63495076 +326.73955392837524,0.02,15.151516,15.151516,0.0,-0.63495076 +326.7508599758148,0.02,14.39394,14.39394,0.0,-0.63495076 +326.7595250606537,0.02,14.39394,14.39394,0.0,-0.5886996 +326.76941299438477,0.02,12.878788,12.878788,0.0,-0.5886996 +326.780394077301,0.02,12.121212,12.121212,0.0,-0.5886996 +326.789391040802,0.03,11.363637,11.363637,0.0,-0.5886996 +326.80086612701416,0.03,10.606061,10.606061,0.0,-0.5886996 +326.8095200061798,0.03,10.606061,10.606061,0.0,-0.5905496 +326.81973099708557,0.03,9.090909,9.090909,0.0,-0.5905496 +326.8297429084778,0.04,8.333334,8.333334,0.0,-0.5905496 +326.8408579826355,0.04,7.575758,7.575758,0.0,-0.5905496 +326.8508291244507,0.04,7.575758,7.575758,0.0,-0.5905496 +326.85955595970154,0.04,6.060606,6.060606,0.0,-0.5905496 +326.86961007118225,0.049999997,5.3030305,5.3030305,0.0,-0.6090501 +326.8794279098511,0.049999997,4.5454545,4.5454545,0.0,-0.6090501 +326.89084100723267,0.049999997,3.787879,3.787879,0.0,-0.6090501 +326.89992094039917,0.049999997,3.787879,3.787879,0.0,-0.6090501 +326.9108419418335,0.049999997,3.030303,3.030303,0.0,-0.6090501 +326.9208481311798,0.06,2.2727273,2.2727273,0.0,-0.5572487 +326.93083691596985,0.06,2.2727273,2.2727273,0.0,-0.5572487 +326.94085597991943,0.06,1.5151515,1.5151515,0.0,-0.5572487 +326.9496009349823,0.06,1.5151515,1.5151515,0.0,-0.5572487 +326.9595351219177,0.07,0.75757575,0.75757575,0.0,-0.5128476 +326.96958112716675,0.07,0.75757575,0.75757575,0.0,-0.5128476 +326.97958612442017,0.08,0.0,0.0,0.0,-0.5128476 +326.989953994751,0.08,0.0,0.0,0.0,-0.5128476 +327.00084805488586,0.089999996,0.0,0.0,0.0,-0.5128476 +327.01082396507263,0.089999996,0.0,0.0,0.0,-0.5128476 +327.019779920578,0.099999994,0.0,0.0,0.0,-0.5331981 +327.0297420024872,0.099999994,0.0,0.0,0.0,-0.5331981 +327.0408351421356,0.099999994,0.0,0.0,0.0,-0.5331981 +327.05007696151733,0.099999994,0.0,0.0,0.0,-0.5331981 +327.0594871044159,0.11,0.0,0.0,0.0,-0.5331981 +327.07086205482483,0.12,0.0,0.0,0.0,-0.54984856 +327.0794529914856,0.12,0.0,0.0,0.0,-0.54984856 +327.09080600738525,0.13,0.0,0.0,0.0,-0.54984856 +327.1008310317993,0.13,0.0,0.0,0.0,-0.54984856 +327.1108350753784,0.14,0.0,0.0,0.0,-0.54984856 +327.1198019981384,0.14,0.0,0.0,0.0,-0.5646489 +327.12970995903015,0.14,0.0,0.0,0.0,-0.5646489 +327.1400260925293,0.14,0.0,0.0,0.0,-0.5646489 +327.14949011802673,0.14999999,0.0,0.0,0.0,-0.5646489 +327.1595370769501,0.14999999,0.0,0.0,0.0,-0.5775993 +327.1708290576935,0.16,0.0,0.0,0.0,-0.5775993 +327.1808340549469,0.16,0.0,0.0,0.0,-0.5775993 +327.189453125,0.16,0.0,0.0,0.0,-0.5775993 +327.2008340358734,0.17,0.0,0.0,0.0,-0.5775993 +327.20959997177124,0.17,0.0,0.0,0.0,-0.5775993 +327.2197759151459,0.17,0.0,0.0,0.0,-0.57204914 +327.2296540737152,0.17999999,0.0,0.0,0.0,-0.57204914 +327.23951292037964,0.17999999,0.0,0.0,0.0,-0.57204914 +327.24951004981995,0.17999999,0.0,0.0,0.0,-0.57204914 +327.2595410346985,0.19,0.0,0.0,0.0,-0.5775993 +327.2708420753479,0.19,0.0,0.0,0.0,-0.5775993 +327.2808039188385,0.19,0.0,0.0,0.0,-0.5775993 +327.2907829284668,0.19,0.0,0.0,0.0,-0.5775993 +327.30080699920654,0.19,0.0,0.0,0.0,-0.5775993 +327.30985403060913,0.19,0.0,0.0,0.0,-0.5775993 +327.3197600841522,0.19999999,0.0,0.0,0.0,-0.6201504 +327.3297350406647,0.19999999,0.0,0.0,0.0,-0.6201504 +327.3396100997925,0.19999999,0.0,0.0,0.0,-0.6201504 +327.3508150577545,0.19999999,0.0,0.0,0.0,-0.6201504 +327.3595471382141,0.19999999,0.0,0.0,0.0,-0.568349 +327.3708131313324,0.19999999,0.0,0.0,0.0,-0.568349 +327.3805990219116,0.19999999,0.0,0.0,0.0,-0.568349 +327.3900589942932,0.19999999,0.0,0.0,0.0,-0.568349 +327.39973497390747,0.19999999,0.0,0.0,0.0,-0.568349 +327.41008496284485,0.19999999,0.0,0.0,0.0,-0.568349 +327.41978311538696,0.19999999,0.0,0.0,0.0,-0.5646489 +327.42975401878357,0.19,0.0,0.0,0.0,-0.5646489 +327.44068813323975,0.19,0.0,0.0,0.0,-0.5646489 +327.4507920742035,0.17999999,0.0,0.0,0.0,-0.5646489 +327.45952010154724,0.17999999,0.0,0.0,0.0,-0.5553987 +327.46964502334595,0.17,0.0,0.0,0.0,-0.5553987 +327.4807999134064,0.16,0.0,0.0,0.0,-0.5553987 +327.4907879829407,0.16,0.0,0.0,0.0,-0.5553987 +327.50001311302185,0.14999999,0.0,0.0,0.0,-0.5553987 +327.5093951225281,0.14,0.0,0.0,0.0,-0.5553987 +327.519504070282,0.14,0.0,0.0,0.0,-0.5165477 +327.5297439098358,0.14,0.0,0.0,0.0,-0.5165477 +327.54080295562744,0.13,0.0,0.0,0.0,-0.5165477 +327.5504550933838,0.13,0.0,0.0,0.0,-0.5165477 +327.55956506729126,0.13,0.0,0.0,0.0,-0.54984856 +327.5696220397949,0.12,0.0,0.0,0.0,-0.54984856 +327.58080792427063,0.12,0.0,0.0,0.0,-0.54984856 +327.58994913101196,0.12,0.0,0.0,0.0,-0.54984856 +327.5997121334076,0.12,0.0,0.0,0.0,-0.54984856 +327.6094160079956,0.12,0.0,0.0,0.0,-0.54984856 +327.61981105804443,0.11,0.0,0.0,0.0,-0.568349 +327.62972807884216,0.11,0.0,0.0,0.0,-0.568349 +327.63956594467163,0.11,0.0,0.0,0.0,-0.568349 +327.6507611274719,0.11,0.0,0.0,0.0,-0.568349 +327.6594030857086,0.099999994,0.0,0.0,0.0,-0.568349 +327.670814037323,0.099999994,0.0,0.0,0.0,-0.56094885 +327.67989706993103,0.099999994,0.0,0.0,0.0,-0.56094885 +327.68956112861633,0.099999994,0.0,0.0,0.0,-0.56094885 +327.6994149684906,0.099999994,0.0,0.0,0.0,-0.56094885 +327.7094910144806,0.099999994,0.0,0.0,0.0,-0.56094885 +327.7197730541229,0.089999996,0.0,0.0,0.0,-0.5572487 +327.72946190834045,0.089999996,0.0,0.0,0.0,-0.5572487 +327.740788936615,0.089999996,0.0,0.0,0.0,-0.5572487 +327.7495391368866,0.089999996,0.0,0.0,0.0,-0.5572487 +327.7595510482788,0.089999996,0.0,0.0,0.0,-0.5572487 +327.76982593536377,0.089999996,0.0,0.0,0.0,-0.5572487 +327.78051710128784,0.089999996,0.0,0.0,0.0,-0.5572487 +327.78953099250793,0.089999996,0.0,0.0,0.0,-0.5572487 +327.7999930381775,0.089999996,0.0,0.0,0.0,-0.5572487 +327.8094379901886,0.089999996,0.0,0.0,0.0,-0.5572487 +327.820436000824,0.089999996,0.0,0.0,0.0,-0.5590988 +327.8294699192047,0.089999996,0.0,0.0,0.0,-0.5590988 +327.8394739627838,0.089999996,0.0,0.0,0.0,-0.5590988 +327.8507490158081,0.089999996,0.0,0.0,0.0,-0.5590988 +327.8595459461212,0.089999996,0.0,0.0,0.0,-0.5590988 +327.8706269264221,0.08,0.0,0.0,0.0,-0.5590988 +327.8796350955963,0.08,0.0,0.0,0.0,-0.5590988 +327.8907630443573,0.08,0.0,0.0,0.0,-0.5590988 +327.9007730484009,0.08,0.0,0.0,0.0,-0.5590988 +327.91077709198,0.08,0.0,0.0,0.0,-0.5590988 +327.91977405548096,0.08,0.0,0.0,0.0,-0.568349 +327.92968010902405,0.08,0.0,0.0,0.0,-0.568349 +327.9406659603119,0.08,0.0,0.0,0.0,-0.568349 +327.94966197013855,0.08,0.0,0.0,0.0,-0.568349 +327.95955204963684,0.08,0.0,0.0,0.0,-0.5146976 +327.96973395347595,0.089999996,0.0,0.0,0.0,-0.5146976 +327.9807679653168,0.089999996,0.0,0.0,0.0,-0.5146976 +327.9899220466614,0.089999996,0.0,0.0,0.0,-0.5146976 +328.0007600784302,0.089999996,0.0,0.0,0.0,-0.5146976 +328.01073002815247,0.089999996,0.0,0.0,0.0,-0.5146976 +328.0197629928589,0.099999994,0.0,0.0,0.0,-0.5442984 +328.0297269821167,0.099999994,0.0,0.0,0.0,-0.5442984 +328.0395951271057,0.099999994,0.0,0.0,0.0,-0.5442984 +328.04947996139526,0.099999994,0.0,0.0,0.0,-0.5442984 +328.05953001976013,0.099999994,0.0,0.0,0.0,-0.54984856 +328.07077503204346,0.099999994,0.0,0.0,0.0,-0.54984856 +328.0807590484619,0.099999994,0.0,0.0,0.0,-0.54984856 +328.090735912323,0.099999994,0.0,0.0,0.0,-0.54984856 +328.1007659435272,0.099999994,0.0,0.0,0.0,-0.54984856 +328.10991501808167,0.099999994,0.0,0.0,0.0,-0.54984856 +328.1198139190674,0.099999994,0.0,0.0,0.0,-0.5479985 +328.12950706481934,0.099999994,0.0,0.0,0.0,-0.5479985 +328.1407561302185,0.099999994,0.0,0.0,0.0,-0.5479985 +328.14994192123413,0.099999994,0.0,0.0,0.0,-0.5479985 +328.1595220565796,0.089999996,0.0,0.0,0.0,-0.5479985 +328.1699171066284,0.089999996,0.0,0.0,0.0,-0.5442984 +328.1807510852814,0.099999994,0.0,0.0,0.0,-0.5442984 +328.1907479763031,0.099999994,0.0,0.0,0.0,-0.5442984 +328.20075392723083,0.099999994,0.0,0.0,0.0,-0.5442984 +328.20982599258423,0.099999994,0.0,0.0,0.0,-0.5442984 +328.2194619178772,0.099999994,0.0,0.0,0.0,-0.5350482 +328.22974014282227,0.099999994,0.0,0.0,0.0,-0.5350482 +328.2400641441345,0.099999994,0.0,0.0,0.0,-0.5350482 +328.24970293045044,0.11,0.0,0.0,0.0,-0.5350482 +328.2595479488373,0.11,0.0,0.0,0.0,-0.53874826 +328.27078104019165,0.11,0.0,0.0,0.0,-0.53874826 +328.2796211242676,0.11,0.0,0.0,0.0,-0.53874826 +328.29002594947815,0.11,0.0,0.0,0.0,-0.53874826 +328.30041694641113,0.11,0.0,0.0,0.0,-0.53874826 +328.30947709083557,0.099999994,0.0,0.0,0.0,-0.53874826 +328.31977105140686,0.099999994,0.0,0.0,0.0,-0.64050096 +328.3297619819641,0.099999994,0.0,0.0,0.0,-0.64050096 +328.33985900878906,0.099999994,0.0,0.0,0.0,-0.64050096 +328.3502879142761,0.089999996,0.0,0.0,0.0,-0.64050096 +328.35955691337585,0.089999996,0.0,0.0,0.0,-0.5868495 +328.3702480792999,0.089999996,0.0,0.0,0.0,-0.5868495 +328.38006806373596,0.089999996,0.0,0.0,0.0,-0.5868495 +328.39035296440125,0.089999996,0.0,0.0,0.0,-0.5868495 +328.40073013305664,0.089999996,0.0,0.0,0.0,-0.5868495 +328.4103560447693,0.089999996,0.0,0.0,0.0,-0.5868495 +328.41978907585144,0.089999996,0.0,0.0,0.0,-0.5572487 +328.42957305908203,0.099999994,0.0,0.0,0.0,-0.5572487 +328.44071793556213,0.099999994,0.0,0.0,0.0,-0.5572487 +328.45044112205505,0.099999994,0.0,0.0,0.0,-0.5572487 +328.4595990180969,0.12,0.0,0.0,0.0,-0.5572487 +328.47075390815735,0.12,0.0,0.0,0.0,-0.62200046 +328.48029112815857,0.12,0.0,0.0,0.0,-0.62200046 +328.49073100090027,0.13,0.0,0.0,0.0,-0.62200046 +328.5007290840149,0.14,0.0,0.0,0.0,-0.62200046 +328.50949692726135,0.14,0.0,0.0,0.0,-0.62200046 +328.51944613456726,0.14,0.0,0.0,0.0,-0.6645516 +328.5297701358795,0.13,0.0,0.0,0.0,-0.6645516 +328.53955698013306,0.13,0.0,0.0,0.0,-0.6645516 +328.5496389865875,0.13,0.0,0.0,0.0,-0.6645516 +328.55954098701477,0.12,0.0,0.0,0.0,-0.67565185 +328.57023906707764,0.12,0.0,0.0,0.0,-0.67565185 +328.58073806762695,0.12,0.0,0.0,0.0,-0.67565185 +328.59070205688477,0.12,0.0,0.0,0.0,-0.67565185 +328.6005561351776,0.12,0.0,0.0,0.0,-0.67565185 +328.6095640659332,0.13,0.0,0.0,0.0,-0.67565185 +328.6193940639496,0.13,0.0,0.0,0.0,-0.61090016 +328.63074493408203,0.14,0.0,0.0,0.0,-0.61090016 +328.6402199268341,0.14,0.0,0.0,0.0,-0.61090016 +328.65071201324463,0.14999999,0.0,0.0,0.0,-0.61090016 +328.6595540046692,0.14999999,0.0,0.0,0.0,-0.6072001 +328.66970205307007,0.14999999,0.0,0.0,0.0,-0.6072001 +328.6797311306,0.16,0.0,0.0,0.0,-0.6072001 +328.6906681060791,0.16,0.0,0.0,0.0,-0.6072001 +328.699667930603,0.16,0.0,0.0,0.0,-0.6072001 +328.70953702926636,0.16,0.0,0.0,0.0,-0.6072001 +328.7197690010071,0.16,0.0,0.0,0.0,-0.6072001 +328.72974610328674,0.16,0.0,0.0,0.0,-0.6072001 +328.74073791503906,0.16,0.0,0.0,0.0,-0.6072001 +328.75013399124146,0.16,0.0,0.0,0.0,-0.6072001 +328.75955510139465,0.16,0.0,0.0,0.0,-0.54984856 +328.7702839374542,0.16,0.0,0.0,0.0,-0.54984856 +328.78011202812195,0.16,0.0,0.0,0.0,-0.54984856 +328.7897889614105,0.16,0.0,0.0,0.0,-0.54984856 +328.7997889518738,0.17,0.0,0.0,0.0,-0.54984856 +328.8095121383667,0.17,0.0,0.0,0.0,-0.54984856 +328.8197591304779,0.17,0.0,0.0,0.0,-0.5165477 +328.8297679424286,0.17999999,0.0,0.0,0.0,-0.5165477 +328.8400499820709,0.17999999,0.0,0.0,0.0,-0.5165477 +328.85069704055786,0.17999999,0.0,0.0,0.0,-0.5165477 +328.8595631122589,0.17999999,0.0,0.0,0.0,-0.5257979 +328.8707311153412,0.17999999,0.0,0.0,0.0,-0.5257979 +328.879919052124,0.17999999,0.0,0.0,0.0,-0.5257979 +328.8900029659271,0.19,0.0,0.0,0.0,-0.5257979 +328.90035796165466,0.19,0.0,0.0,0.0,-0.5257979 +328.9100499153137,0.19,0.0,0.0,0.0,-0.5257979 +328.9197950363159,0.19,0.0,0.0,0.0,-0.49249703 +328.92975997924805,0.19,0.0,0.0,0.0,-0.49249703 +328.940486907959,0.19,0.0,0.0,0.0,-0.49249703 +328.9494080543518,0.19,0.0,0.0,0.0,-0.49249703 +328.95956110954285,0.19,0.0,0.0,0.0,-0.49619716 +328.9700400829315,0.19,0.0,0.0,0.0,-0.49619716 +328.9802100658417,0.19,0.0,0.0,0.0,-0.49619716 +328.98939204216003,0.19,0.0,0.0,0.0,-0.49619716 +329.0003900527954,0.19,0.0,0.0,0.0,-0.49619716 +329.0106670856476,0.19,0.0,0.0,0.0,-0.49619716 +329.01940512657166,0.19,0.0,0.0,0.0,-0.4721465 +329.0293929576874,0.19,0.0,0.0,0.0,-0.4721465 +329.04070496559143,0.19,0.0,0.0,0.0,-0.4721465 +329.0506501197815,0.19,0.0,0.0,0.0,-0.4721465 +329.05954909324646,0.19,0.0,0.0,0.0,-0.39444444 +329.07039499282837,0.19,0.0,0.0,0.0,-0.39444444 +329.0794110298157,0.19,0.0,0.0,0.0,-0.39444444 +329.09065198898315,0.19,0.0,0.0,0.0,-0.39444444 +329.10068798065186,0.19,0.0,0.0,0.0,-0.39444444 +329.10972905158997,0.19,0.0,0.0,0.0,-0.39444444 +329.1198079586029,0.19,0.0,0.0,0.0,-0.34634316 +329.1297640800476,0.19,0.0,0.0,0.0,-0.34634316 +329.1406750679016,0.19,0.0,0.0,0.0,-0.34634316 +329.1502959728241,0.19,0.0,0.0,0.0,-0.34634316 +329.1595160961151,0.19,0.0,0.0,0.0,-0.34634316 +329.1694929599762,0.19,0.0,0.0,0.0,-0.35374334 +329.1806631088257,0.19,0.0,0.0,0.0,-0.35374334 +329.1899211406708,0.19,0.0,0.0,0.0,-0.35374334 +329.1997871398926,0.17999999,0.0,0.0,0.0,-0.35374334 +329.2093999385834,0.17999999,0.0,0.0,0.0,-0.35374334 +329.219514131546,0.17999999,0.0,0.0,0.0,-0.3074921 +329.22974491119385,0.17999999,0.0,0.0,0.0,-0.3074921 +329.240394115448,0.17999999,0.0,0.0,0.0,-0.3074921 +329.2494180202484,0.17999999,0.0,0.0,0.0,-0.3074921 +329.2595601081848,0.17999999,0.0,0.0,0.0,-0.30194196 +329.2700879573822,0.17999999,0.0,0.0,0.0,-0.30194196 +329.28067898750305,0.17999999,0.0,0.0,0.0,-0.30194196 +329.28950691223145,0.17999999,0.0,0.0,0.0,-0.30194196 +329.30065298080444,0.17,0.0,0.0,0.0,-0.30194196 +329.3106551170349,0.17,0.0,0.0,0.0,-0.30194196 +329.3197400569916,0.17,0.0,0.0,0.0,-0.30934215 +329.3297510147095,0.17,0.0,0.0,0.0,-0.30934215 +329.33953309059143,0.17999999,0.0,0.0,0.0,-0.30934215 +329.349848985672,0.17999999,0.0,0.0,0.0,-0.30934215 +329.35955810546875,0.17999999,0.0,0.0,0.0,-0.25754082 +329.37064909935,0.17999999,0.0,0.0,0.0,-0.25754082 +329.3796720504761,0.17999999,0.0,0.0,0.0,-0.25754082 +329.39065408706665,0.17999999,0.0,0.0,0.0,-0.25754082 +329.40065908432007,0.17999999,0.0,0.0,0.0,-0.25754082 +329.4106249809265,0.17999999,0.0,0.0,0.0,-0.25754082 +329.41954612731934,0.17999999,0.0,0.0,0.0,-0.2464405 +329.4296169281006,0.17999999,0.0,0.0,0.0,-0.2464405 +329.4394021034241,0.17999999,0.0,0.0,0.0,-0.2464405 +329.4506199359894,0.17999999,0.0,0.0,0.0,-0.2464405 +329.4595580101013,0.17999999,0.0,0.0,0.0,-0.20018928 +329.46960711479187,0.17999999,0.0,0.0,0.0,-0.20018928 +329.4806261062622,0.17999999,0.0,0.0,0.0,-0.20018928 +329.4906270503998,0.17999999,0.0,0.0,0.0,-0.20018928 +329.5006489753723,0.17999999,0.0,0.0,0.0,-0.20018928 +329.50956296920776,0.17999999,0.0,0.0,0.0,-0.12803736 +329.51960611343384,0.19,0.0,0.0,0.0,-0.12803736 +329.53016209602356,0.19,0.0,0.0,0.0,-0.12803736 +329.5394170284271,0.19,0.0,0.0,0.0,-0.12803736 +329.54959893226624,0.19,0.0,0.0,0.0,-0.12803736 +329.55954098701477,0.19,0.0,0.0,0.0,-0.12803736 +329.5706419944763,0.19,0.0,0.0,0.0,-0.11138691 +329.5806300640106,0.19,0.0,0.0,0.0,-0.11138691 +329.5906250476837,0.19,0.0,0.0,0.0,-0.11138691 +329.5998239517212,0.19,0.0,0.0,0.0,-0.11138691 +329.60958313941956,0.19999999,0.0,0.0,0.0,-0.11138691 +329.6203429698944,0.19999999,0.0,0.0,0.0,-0.01888446 +329.62976598739624,0.19999999,0.0,0.0,0.0,-0.01888446 +329.64047408103943,0.19999999,0.0,0.0,0.0,-0.01888446 +329.64947295188904,0.19999999,0.0,0.0,0.0,-0.01888446 +329.6595780849457,0.19999999,0.0,0.0,0.0,0.01811652 +329.6706349849701,0.19999999,0.0,0.0,0.0,0.01811652 +329.6796541213989,0.19999999,0.0,0.0,0.0,0.01811652 +329.6905851364136,0.19999999,0.0,0.0,0.0,0.01811652 +329.69999504089355,0.21,0.0,0.0,0.0,0.01811652 +329.7093930244446,0.21,0.0,0.0,0.0,0.01811652 +329.719496011734,0.21,0.0,0.0,0.0,0.08286824 +329.7294890880585,0.21,0.0,0.0,0.0,0.08286824 +329.7394030094147,0.21,0.0,0.0,0.0,0.08286824 +329.75062108039856,0.19999999,0.0,0.0,0.0,0.08286824 +329.7595589160919,0.19999999,0.0,0.0,0.0,0.1827709 +329.7706320285797,0.19999999,0.0,0.0,0.0,0.1827709 +329.78062295913696,0.19999999,0.0,0.0,0.0,0.1827709 +329.7901289463043,0.19999999,0.0,0.0,0.0,0.1827709 +329.8006269931793,0.19,0.0,0.0,0.0,0.1827709 +329.80953311920166,0.19,0.0,0.0,0.0,0.1827709 +329.81952810287476,0.17999999,0.0,0.0,0.0,0.3270747 +329.8297829627991,0.17999999,0.0,0.0,0.0,0.3270747 +329.8404121398926,0.17,0.0,0.0,0.0,0.3270747 +329.85059213638306,0.16,0.0,0.0,0.0,0.3270747 +329.8595690727234,0.14999999,0.0,0.0,0.0,0.31782445 +329.8706331253052,0.14,0.0,0.0,0.0,0.31782445 +329.8801839351654,0.14,0.0,0.0,0.0,0.31782445 +329.89058899879456,0.12,0.0,0.0,0.0,0.31782445 +329.89982199668884,0.11,0.0,0.0,0.0,0.31782445 +329.90940594673157,0.099999994,0.0,0.0,0.0,0.31782445 +329.92031812667847,0.089999996,0.0,0.0,0.0,0.34372514 +329.9294979572296,0.08,0.0,0.0,0.0,0.34372514 +329.939738035202,0.07,0.0,0.0,0.0,0.34372514 +329.95061898231506,0.06,0.0,0.0,0.0,0.34372514 +329.9595580101013,0.06,0.0,0.0,0.0,0.3455752 +329.97026205062866,0.049999997,0.0,0.0,0.0,0.3455752 +329.9805860519409,0.04,0.0,0.0,0.0,0.3455752 +329.9899890422821,0.04,0.0,0.0,0.0,0.3455752 +329.99990797042847,0.03,1.5151515,1.5151515,0.0,0.3455752 +330.0095839500427,0.02,4.5454545,4.5454545,0.0,0.3455752 +330.02060294151306,0.02,7.575758,7.575758,0.0,0.36777583 +330.02980494499207,0.02,7.575758,7.575758,0.0,0.36777583 +330.0405979156494,0.01,12.878788,12.878788,0.0,0.36777583 +330.05058908462524,0.01,12.878788,12.878788,0.0,0.36777583 +330.0595819950104,0.0,20.454544,20.454544,0.0,0.38072613 +330.0694029331207,0.0,25.757576,25.757576,0.009372071,0.38072613 +330.08015298843384,0.0,31.060606,31.060606,0.018744143,0.38072613 +330.08994793891907,0.0,36.363636,36.363636,0.037488285,0.38072613 +330.10060811042786,0.0,41.666668,41.666668,0.05623243,0.38072613 +330.10944414138794,0.0,41.666668,41.666668,0.0656045,0.38072613 +330.1205840110779,0.0,50.0,50.0,0.07497657,0.36222565 +330.1297791004181,0.0,50.0,50.0,0.08434864,0.36222565 +330.14059591293335,0.0,55.30303,55.30303,0.10309278,0.36222565 +330.15046405792236,0.0,55.30303,55.30303,0.11246486,0.36222565 +330.15947794914246,0.0,59.848484,59.848484,0.12183693,0.36222565 +330.1701579093933,0.0,61.363636,61.363636,0.131209,0.40662682 +330.17979311943054,0.0,62.121212,62.121212,0.131209,0.40662682 +330.19058108329773,0.0,62.121212,62.121212,0.14058107,0.40662682 +330.199823141098,0.0,62.121212,62.121212,0.14058107,0.40662682 +330.2094371318817,0.0,59.090908,59.090908,0.14058107,0.40662682 +330.22059202194214,0.0,56.818184,56.818184,0.14058107,0.4288274 +330.229768037796,0.0,56.818184,56.818184,0.14058107,0.4288274 +330.2405490875244,0.0,51.515152,51.515152,0.131209,0.4288274 +330.249568939209,0.0,48.484848,48.484848,0.131209,0.4288274 +330.2595589160919,0.0,46.21212,46.21212,0.12183693,0.3862763 +330.2695310115814,0.0,43.939392,43.939392,0.11246486,0.3862763 +330.28058314323425,0.0,41.666668,41.666668,0.11246486,0.3862763 +330.2905650138855,0.0,41.666668,41.666668,0.11246486,0.3862763 +330.300213098526,0.0,37.878788,37.878788,0.10309278,0.3862763 +330.3094379901886,0.0,36.363636,36.363636,0.10309278,0.3862763 +330.3205690383911,0.0,34.09091,34.09091,0.10309278,0.44177777 +330.329882144928,0.0,34.09091,34.09091,0.10309278,0.44177777 +330.3394510746002,0.0,32.575756,32.575756,0.09372071,0.44177777 +330.3505549430847,0.0,31.818182,31.818182,0.10309278,0.44177777 +330.3595790863037,0.0,31.818182,31.818182,0.10309278,0.4621283 +330.37056493759155,0.0,34.09091,34.09091,0.11246486,0.4621283 +330.38057708740234,0.0,36.363636,36.363636,0.12183693,0.4621283 +330.3897650241852,0.0,36.363636,36.363636,0.12183693,0.4621283 +330.40057492256165,0.0,42.424244,42.424244,0.131209,0.4621283 +330.4094591140747,0.0,42.424244,42.424244,0.14058107,0.4621283 +330.41965794563293,0.0,49.242424,49.242424,0.14058107,0.45842817 +330.429790019989,0.0,53.030304,53.030304,0.14995314,0.45842817 +330.44055008888245,0.0,56.818184,56.818184,0.15932521,0.45842817 +330.44987297058105,0.0,56.818184,56.818184,0.16869728,0.45842817 +330.45959401130676,0.0,62.878788,62.878788,0.16869728,0.46397835 +330.4698669910431,0.0,65.15151,65.15151,0.16869728,0.46397835 +330.4804561138153,0.0,65.90909,65.90909,0.16869728,0.46397835 +330.49053406715393,0.0,66.66667,66.66667,0.16869728,0.46397835 +330.49985003471375,0.0,65.15151,65.15151,0.17806935,0.46397835 +330.509614944458,0.0,63.636364,63.636364,0.17806935,0.46397835 +330.51986598968506,0.0,61.363636,61.363636,0.17806935,0.4621283 +330.5296039581299,0.0,59.090908,59.090908,0.17806935,0.4621283 +330.5399179458618,0.0,56.060604,56.060604,0.17806935,0.4621283 +330.5494239330292,0.0,53.030304,53.030304,0.16869728,0.4621283 +330.5595750808716,0.0,50.0,50.0,0.15932521,0.488029 +330.5705609321594,0.0,46.969696,46.969696,0.15932521,0.488029 +330.5800669193268,0.0,43.939392,43.939392,0.131209,0.488029 +330.5899670124054,0.0,40.90909,40.90909,0.12183693,0.488029 +330.6005561351776,0.0,37.878788,37.878788,0.11246486,0.488029 +330.60965394973755,0.0,37.878788,37.878788,0.09372071,0.488029 +330.62054896354675,0.0,33.333336,33.333336,0.07497657,0.5675811 +330.62975692749023,0.0,33.333336,33.333336,0.0656045,0.5675811 +330.64054703712463,0.0,28.78788,28.78788,0.046860356,0.5675811 +330.64980006217957,0.0,28.78788,28.78788,0.028116215,0.5675811 +330.65957713127136,0.0,24.242424,24.242424,0.018744143,0.5583309 +330.67057704925537,0.0,22.727274,22.727274,0.009372071,0.5583309 +330.68052911758423,0.0,19.69697,19.69697,0.0,0.5583309 +330.6905360221863,0.0,19.69697,19.69697,0.0,0.5583309 +330.70003509521484,0.0,18.181818,18.181818,0.0,0.5583309 +330.70947194099426,0.0,16.666668,16.666668,0.0,0.5583309 +330.7197859287262,0.0,15.151516,15.151516,0.0,0.5490806 +330.7294261455536,0.0,14.39394,14.39394,0.0,0.5490806 +330.74041414260864,0.0,12.878788,12.878788,0.0,0.5490806 +330.75053811073303,0.0,11.363637,11.363637,0.0,0.5490806 +330.75957107543945,0.0,11.363637,11.363637,0.0,0.5879317 +330.77053809165955,0.0,9.848485,9.848485,0.0,0.5879317 +330.7805349826813,0.0,8.333334,8.333334,0.0,0.5879317 +330.7901749610901,0.0,8.333334,8.333334,0.0,0.5879317 +330.80053901672363,0.0,6.818182,6.818182,0.0,0.5879317 +330.8094871044159,0.0,6.818182,6.818182,0.0,0.5879317 +330.81961703300476,0.0,5.3030305,5.3030305,0.0,0.5860816 +330.82952094078064,0.0,4.5454545,4.5454545,0.0,0.5860816 +330.84053897857666,0.0,3.787879,3.787879,0.0,0.5860816 +330.8496150970459,0.0,3.787879,3.787879,0.0,0.5860816 +330.8595769405365,0.0,3.030303,3.030303,0.0,0.5990319 +330.87055492401123,0.0,2.2727273,2.2727273,0.0,0.5990319 +330.8802969455719,0.0,2.2727273,2.2727273,0.0,0.5990319 +330.89032196998596,0.0,1.5151515,1.5151515,0.0,0.5990319 +330.8995931148529,0.0,0.75757575,0.75757575,0.0,0.5990319 +330.9095001220703,0.0,0.75757575,0.75757575,0.0,0.5990319 +330.92051100730896,0.0,0.0,0.0,0.0,0.60273206 +330.92977595329285,0.0,0.0,0.0,0.0,0.60273206 +330.9405310153961,0.01,0.0,0.0,0.0,0.60273206 +330.9505159854889,0.02,0.0,0.0,0.0,0.60273206 +330.9595949649811,0.02,0.0,0.0,0.0,0.59533185 +330.97043108940125,0.02,0.0,0.0,0.0,0.59533185 +330.9794371128082,0.02,0.0,0.0,0.0,0.59533185 +330.9894950389862,0.03,0.0,0.0,0.0,0.59533185 +330.9995701313019,0.03,0.0,0.0,0.0,0.59533185 +331.0094950199127,0.03,0.0,0.0,0.0,0.59533185 +331.02052092552185,0.03,0.0,0.0,0.0,0.5990319 +331.02979707717896,0.03,0.0,0.0,0.0,0.5990319 +331.04049801826477,0.03,0.0,0.0,0.0,0.5990319 +331.05049991607666,0.03,0.0,0.0,0.0,0.5990319 +331.05958008766174,0.03,0.0,0.0,0.0,0.6989346 +331.0695769786835,0.03,0.0,0.0,0.0,0.6989346 +331.07939100265503,0.03,0.0,0.0,0.0,0.6989346 +331.08961510658264,0.03,0.0,0.0,0.0,0.6989346 +331.1005039215088,0.03,0.0,0.0,0.0,0.6989346 +331.1095321178436,0.03,0.0,0.0,0.0,0.6989346 +331.120521068573,0.03,0.0,0.0,0.0,0.73223543 +331.12977504730225,0.03,0.0,0.0,0.0,0.73223543 +331.14050793647766,0.03,0.0,0.0,0.0,0.73223543 +331.14984011650085,0.03,0.0,0.0,0.0,0.73223543 +331.1595809459686,0.03,0.0,0.0,0.0,0.71743506 +331.1705069541931,0.03,0.0,0.0,0.0,0.71743506 +331.17987298965454,0.03,0.0,0.0,0.0,0.71743506 +331.1904990673065,0.03,0.0,0.0,0.0,0.71743506 +331.20048809051514,0.03,0.0,0.0,0.0,0.71743506 +331.20952796936035,0.03,0.0,0.0,0.0,0.71743506 +331.2205080986023,0.03,0.0,0.0,0.0,0.824738 +331.2295551300049,0.03,0.0,0.0,0.0,0.824738 +331.239431142807,0.04,0.0,0.0,0.0,0.824738 +331.2498481273651,0.04,0.0,0.0,0.0,0.824738 +331.25958013534546,0.04,0.0,0.0,0.0,0.826588 +331.2700951099396,0.04,0.0,0.0,0.0,0.826588 +331.2794871330261,0.04,0.0,0.0,0.0,0.826588 +331.29047203063965,0.04,0.0,0.0,0.0,0.826588 +331.299546957016,0.049999997,0.0,0.0,0.0,0.826588 +331.30953097343445,0.049999997,0.0,0.0,0.0,0.826588 +331.3196461200714,0.049999997,0.0,0.0,0.0,0.8561887 +331.3297960758209,0.049999997,0.0,0.0,0.0,0.8561887 +331.3399851322174,0.06,0.0,0.0,0.0,0.8561887 +331.3494610786438,0.06,0.0,0.0,0.0,0.8561887 +331.35958313941956,0.07,0.0,0.0,0.0,0.84323835 +331.36964893341064,0.07,0.0,0.0,0.0,0.84323835 +331.38049602508545,0.08,0.0,0.0,0.0,0.84323835 +331.39048504829407,0.099999994,0.0,0.0,0.0,0.84323835 +331.39989614486694,0.099999994,0.0,0.0,0.0,0.84323835 +331.40938997268677,0.099999994,0.0,0.0,0.0,0.84323835 +331.4204730987549,0.11,0.0,0.0,0.0,0.8783893 +331.429790019989,0.11,0.0,0.0,0.0,0.8783893 +331.4404721260071,0.12,0.0,0.0,0.0,0.8783893 +331.45047402381897,0.12,0.0,0.0,0.0,0.8783893 +331.45957493782043,0.13,0.0,0.0,0.0,0.9338909 +331.47050404548645,0.13,0.0,0.0,0.0,0.9338909 +331.48006892204285,0.13,0.0,0.0,0.0,0.9338909 +331.4904570579529,0.14,0.0,0.0,0.0,0.9338909 +331.5002830028534,0.14,0.0,0.0,0.0,0.9338909 +331.50954699516296,0.14999999,0.0,0.0,0.0,0.9338909 +331.51997995376587,0.14999999,0.0,0.0,0.0,1.017143 +331.52978801727295,0.14999999,0.0,0.0,0.0,1.017143 +331.5401179790497,0.16,0.0,0.0,0.0,1.017143 +331.54996514320374,0.16,0.0,0.0,0.0,1.017143 +331.5596139431,0.16,0.0,0.0,0.0,1.017143 +331.5704679489136,0.17,0.0,0.0,0.0,1.017143 +331.5804810523987,0.17,0.0,0.0,0.0,1.017143 +331.5896351337433,0.17,0.0,0.0,0.0,1.017143 +331.60047698020935,0.17999999,0.0,0.0,0.0,1.017143 +331.6094250679016,0.17999999,0.0,0.0,0.0,1.017143 +331.61944913864136,0.17999999,0.0,0.0,0.0,1.0078928 +331.6294541358948,0.19,0.0,0.0,0.0,1.0078928 +331.6401319503784,0.19,0.0,0.0,0.0,1.0078928 +331.6494710445404,0.19,0.0,0.0,0.0,1.0078928 +331.65959906578064,0.19,0.0,0.0,0.0,1.0097427 +331.67047214508057,0.19999999,0.0,0.0,0.0,1.0097427 +331.680447101593,0.19999999,0.0,0.0,0.0,1.0097427 +331.6904470920563,0.19999999,0.0,0.0,0.0,1.0097427 +331.69981694221497,0.19999999,0.0,0.0,0.0,1.0097427 +331.70964002609253,0.21,0.0,0.0,0.0,1.0097427 +331.7204530239105,0.21,0.0,0.0,0.0,1.0041928 +331.72974395751953,0.21,0.0,0.0,0.0,1.0041928 +331.74046206474304,0.22,0.0,0.0,0.0,1.0041928 +331.75046491622925,0.22,0.0,0.0,0.0,1.0041928 +331.75959491729736,0.22,0.0,0.0,0.0,0.9967925 +331.77045702934265,0.22,0.0,0.0,0.0,0.9967925 +331.7804479598999,0.22999999,0.0,0.0,0.0,0.9967925 +331.7897000312805,0.22999999,0.0,0.0,0.0,0.9967925 +331.7997579574585,0.22999999,0.0,0.0,0.0,0.9967925 +331.8095989227295,0.22999999,0.0,0.0,0.0,0.9967925 +331.82047390937805,0.22999999,0.0,0.0,0.0,1.0041928 +331.82948112487793,0.22999999,0.0,0.0,0.0,1.0041928 +331.8404359817505,0.24,0.0,0.0,0.0,1.0041928 +331.85043001174927,0.24,0.0,0.0,0.0,1.0041928 +331.8595850467682,0.24,0.0,0.0,0.0,0.9597914 +331.8704710006714,0.25,0.0,0.0,0.0,0.9597914 +331.87959694862366,0.25,0.0,0.0,0.0,0.9597914 +331.8894200325012,0.25,0.0,0.0,0.0,0.9597914 +331.9004340171814,0.26,0.0,0.0,0.0,0.9597914 +331.9095950126648,0.26,0.0,0.0,0.0,0.9597914 +331.9196560382843,0.26,0.0,0.0,0.0,0.8987398 +331.92939591407776,0.26,0.0,0.0,0.0,0.8987398 +331.9404511451721,0.26,0.0,0.0,0.0,0.8987398 +331.94991993904114,0.26,0.0,0.0,0.0,0.8987398 +331.9595880508423,0.26,0.0,0.0,0.0,0.9431411 +331.96950697898865,0.26,0.0,0.0,0.0,0.9431411 +331.9801239967346,0.26,0.0,0.0,0.0,0.9431411 +331.9904329776764,0.26,0.0,0.0,0.0,0.9431411 +332.0004289150238,0.26,0.0,0.0,0.0,0.9431411 +332.0096139907837,0.26,0.0,0.0,0.0,0.9431411 +332.0194981098175,0.26,0.0,0.0,0.0,0.9320408 +332.0304250717163,0.26999998,0.0,0.0,0.0,0.9320408 +332.04015612602234,0.26999998,0.0,0.0,0.0,0.9320408 +332.050430059433,0.26999998,0.0,0.0,0.0,0.9320408 +332.05942702293396,0.26999998,0.0,0.0,0.0,0.9320408 +332.0703270435333,0.26999998,0.0,0.0,0.0,0.9375909 +332.0804250240326,0.26999998,0.0,0.0,0.0,0.9375909 +332.08981704711914,0.26999998,0.0,0.0,0.0,0.9375909 +332.09978914260864,0.26999998,0.0,0.0,0.0,0.9375909 +332.10961294174194,0.28,0.0,0.0,0.0,0.9375909 +332.1204330921173,0.28,0.0,0.0,0.0,0.94129103 +332.1297891139984,0.28,0.0,0.0,0.0,0.94129103 +332.13970613479614,0.28,0.0,0.0,0.0,0.94129103 +332.14955592155457,0.28,0.0,0.0,0.0,0.94129103 +332.15960812568665,0.28,0.0,0.0,0.0,0.9375909 +332.1694860458374,0.28,0.0,0.0,0.0,0.9375909 +332.1804189682007,0.28,0.0,0.0,0.0,0.9375909 +332.19024205207825,0.28,0.0,0.0,0.0,0.9375909 +332.2004210948944,0.29,0.0,0.0,0.0,0.9375909 +332.20962500572205,0.29,0.0,0.0,0.0,0.9375909 +332.219929933548,0.29,0.0,0.0,0.0,0.91354024 +332.22976899147034,0.29,0.0,0.0,0.0,0.91354024 +332.24041295051575,0.29,0.0,0.0,0.0,0.91354024 +332.25023198127747,0.29,0.0,0.0,0.0,0.91354024 +332.25958704948425,0.29999998,0.0,0.0,0.0,0.9283407 +332.27042412757874,0.29999998,0.0,0.0,0.0,0.9283407 +332.2794899940491,0.29999998,0.0,0.0,0.0,0.9283407 +332.28940892219543,0.29999998,0.0,0.0,0.0,0.9283407 +332.29969692230225,0.31,0.0,0.0,0.0,0.9283407 +332.309623003006,0.31,0.0,0.0,0.0,0.9283407 +332.32017397880554,0.31,0.0,0.0,0.0,0.8321382 +332.32979798316956,0.31,0.0,0.0,0.0,0.8321382 +332.34040904045105,0.32,0.0,0.0,0.0,0.8321382 +332.3498160839081,0.32,0.0,0.0,0.0,0.8321382 +332.3595881462097,0.32,0.0,0.0,0.0,0.8524887 +332.37041091918945,0.32,0.0,0.0,0.0,0.8524887 +332.3795630931854,0.32999998,0.0,0.0,0.0,0.8524887 +332.3904039859772,0.32999998,0.0,0.0,0.0,0.8524887 +332.40040707588196,0.32999998,0.0,0.0,0.0,0.8524887 +332.409392118454,0.32999998,0.0,0.0,0.0,0.8524887 +332.4204111099243,0.34,0.0,0.0,0.0,0.75813615 +332.4298241138458,0.34,0.0,0.0,0.0,0.75813615 +332.439994096756,0.34,0.0,0.0,0.0,0.75813615 +332.449490070343,0.35,0.0,0.0,0.0,0.75813615 +332.4596071243286,0.35,0.0,0.0,0.0,0.6508333 +332.4694709777832,0.35999998,0.0,0.0,0.0,0.6508333 +332.48041105270386,0.35999998,0.0,0.0,0.0,0.6508333 +332.4903841018677,0.35999998,0.0,0.0,0.0,0.6508333 +332.50001192092896,0.37,0.0,0.0,0.0,0.6508333 +332.50957703590393,0.37,0.0,0.0,0.0,0.6508333 +332.5203981399536,0.38,0.0,0.0,0.0,0.6230826 +332.5298011302948,0.38,0.0,0.0,0.0,0.6230826 +332.53960394859314,0.38,0.0,0.0,0.0,0.6230826 +332.54967308044434,0.39,0.0,0.0,0.0,0.6230826 +332.55952191352844,0.39,0.0,0.0,0.0,0.6230826 +332.5703959465027,0.39,0.0,0.0,0.0,0.62493265 +332.580384016037,0.39,0.0,0.0,0.0,0.62493265 +332.5899260044098,0.39,0.0,0.0,0.0,0.62493265 +332.60038113594055,0.39999998,0.0,0.0,0.0,0.62493265 +332.60966992378235,0.39999998,0.0,0.0,0.0,0.62493265 +332.61961698532104,0.39999998,0.0,0.0,0.0,0.641583 +332.62978291511536,0.39999998,0.0,0.0,0.0,0.641583 +332.64039492607117,0.41,0.0,0.0,0.0,0.641583 +332.6494331359863,0.41,0.0,0.0,0.0,0.641583 +332.6595950126648,0.41,0.0,0.0,0.0,0.639733 +332.66962599754333,0.41,0.0,0.0,0.0,0.639733 +332.6798429489136,0.41,0.0,0.0,0.0,0.639733 +332.6898090839386,0.42,0.0,0.0,0.0,0.639733 +332.70039200782776,0.42,0.0,0.0,0.0,0.639733 +332.70967197418213,0.42,0.0,0.0,0.0,0.639733 +332.71946597099304,0.42,0.0,0.0,0.0,0.64898324 +332.7297821044922,0.42,0.0,0.0,0.0,0.64898324 +332.74024510383606,0.42,0.0,0.0,0.0,0.64898324 +332.75023794174194,0.42,0.0,0.0,0.0,0.64898324 +332.75961804389954,0.42,0.0,0.0,0.0,0.66008353 +332.7697811126709,0.42,0.0,0.0,0.0,0.66008353 +332.7803659439087,0.42,0.0,0.0,0.0,0.66008353 +332.7902829647064,0.42,0.0,0.0,0.0,0.66008353 +332.79962396621704,0.42,0.0,0.0,0.0,0.66008353 +332.809690952301,0.42,0.0,0.0,0.0,0.66008353 +332.8203580379486,0.42,0.0,0.0,0.0,0.64343315 +332.8294241428375,0.42,0.0,0.0,0.0,0.64343315 +332.8394310474396,0.42,0.0,0.0,0.0,0.64343315 +332.85033202171326,0.42,0.0,0.0,0.0,0.64343315 +332.8596110343933,0.42,0.0,0.0,0.0,0.64343315 +332.87037897109985,0.42,0.0,0.0,0.0,0.64343315 +332.87944507598877,0.42,0.0,0.0,0.0,0.64343315 +332.8903479576111,0.42999998,0.0,0.0,0.0,0.64343315 +332.89975690841675,0.42999998,0.0,0.0,0.0,0.64343315 +332.9094009399414,0.42999998,0.0,0.0,0.0,0.64343315 +332.920361995697,0.42999998,0.0,0.0,0.0,0.6563835 +332.9295799732208,0.42999998,0.0,0.0,0.0,0.6563835 +332.93979001045227,0.42,0.0,0.0,0.0,0.6563835 +332.9495370388031,0.42,0.0,0.0,0.0,0.6563835 +332.9595949649811,0.42,0.0,0.0,0.0,0.5657311 +332.9703691005707,0.42999998,0.0,0.0,0.0,0.5657311 +332.980348110199,0.42999998,0.0,0.0,0.0,0.5657311 +332.98991298675537,0.42999998,0.0,0.0,0.0,0.5657311 +333.000363111496,0.42999998,0.0,0.0,0.0,0.5657311 +333.00941801071167,0.42999998,0.0,0.0,0.0,0.5657311 +333.01976013183594,0.42999998,0.0,0.0,0.0,0.47877875 +333.0298240184784,0.42999998,0.0,0.0,0.0,0.47877875 +333.0395519733429,0.42999998,0.0,0.0,0.0,0.47877875 +333.0503170490265,0.44,0.0,0.0,0.0,0.47877875 +333.059592962265,0.44,0.0,0.0,0.0,0.47507864 +333.0696659088135,0.44,0.0,0.0,0.0,0.47507864 +333.0800349712372,0.44,0.0,0.0,0.0,0.47507864 +333.09033012390137,0.44,0.0,0.0,0.0,0.47507864 +333.10035395622253,0.44,0.0,0.0,0.0,0.47507864 +333.10942792892456,0.44,0.0,0.0,0.0,0.47507864 +333.12005496025085,0.44,0.0,0.0,0.0,0.4621283 +333.1294779777527,0.44,0.0,0.0,0.0,0.4621283 +333.1403410434723,0.44,0.0,0.0,0.0,0.4621283 +333.1503291130066,0.45,0.0,0.0,0.0,0.4621283 +333.15960812568665,0.45,0.0,0.0,0.0,0.47507864 +333.17017698287964,0.45,0.0,0.0,0.0,0.47507864 +333.1803550720215,0.45,0.0,0.0,0.0,0.47507864 +333.18967294692993,0.45,0.0,0.0,0.0,0.47507864 +333.20010709762573,0.45,0.0,0.0,0.0,0.47507864 +333.20941710472107,0.45,0.0,0.0,0.0,0.47507864 +333.2194309234619,0.45,0.0,0.0,0.0,0.5028294 +333.2297959327698,0.45,0.0,0.0,0.0,0.5028294 +333.24034905433655,0.45,0.0,0.0,0.0,0.5028294 +333.2495930194855,0.45,0.0,0.0,0.0,0.5028294 +333.25961804389954,0.45,0.0,0.0,0.0,0.47877875 +333.26940512657166,0.45,0.0,0.0,0.0,0.47877875 +333.2803499698639,0.45999998,0.0,0.0,0.0,0.47877875 +333.29025292396545,0.45999998,0.0,0.0,0.0,0.47877875 +333.300332069397,0.45999998,0.0,0.0,0.0,0.47877875 +333.3094410896301,0.45999998,0.0,0.0,0.0,0.47877875 +333.31970596313477,0.45999998,0.0,0.0,0.0,0.46397835 +333.32960391044617,0.45999998,0.0,0.0,0.0,0.46397835 +333.34034299850464,0.45999998,0.0,0.0,0.0,0.46397835 +333.35034108161926,0.45999998,0.0,0.0,0.0,0.46397835 +333.3594341278076,0.45999998,0.0,0.0,0.0,0.46397835 +333.36960101127625,0.45999998,0.0,0.0,0.0,0.4676785 +333.38031697273254,0.45999998,0.0,0.0,0.0,0.4676785 +333.3894281387329,0.45999998,0.0,0.0,0.0,0.4676785 +333.4003291130066,0.47,0.0,0.0,0.0,0.4676785 +333.4094491004944,0.47,0.0,0.0,0.0,0.4676785 +333.42033791542053,0.47,0.0,0.0,0.0,0.4454778 +333.4298050403595,0.47,0.0,0.0,0.0,0.4454778 +333.44031500816345,0.47,0.0,0.0,0.0,0.4454778 +333.4495520591736,0.47,0.0,0.0,0.0,0.4454778 +333.4596059322357,0.47,0.0,0.0,0.0,0.36592576 +333.4703450202942,0.47,0.0,0.0,0.0,0.36592576 +333.4795949459076,0.47,0.0,0.0,0.0,0.36592576 +333.49028301239014,0.47,0.0,0.0,0.0,0.36592576 +333.50031208992004,0.47,0.0,0.0,0.0,0.36592576 +333.5094590187073,0.47,0.0,0.0,0.0,0.36592576 +333.5203220844269,0.47,0.0,0.0,0.0,0.29007375 +333.52983713150024,0.47,0.0,0.0,0.0,0.29007375 +333.5396671295166,0.47,0.0,0.0,0.0,0.29007375 +333.55032300949097,0.47,0.0,0.0,0.0,0.29007375 +333.55961513519287,0.47,0.0,0.0,0.0,0.2845236 +333.56975507736206,0.47,0.0,0.0,0.0,0.2845236 +333.5793960094452,0.47,0.0,0.0,0.0,0.2845236 +333.5903069972992,0.45999998,0.0,0.0,0.0,0.2845236 +333.59964203834534,0.45999998,0.0,0.0,0.0,0.2845236 +333.6094660758972,0.45999998,0.0,0.0,0.0,0.2845236 +333.6194260120392,0.45999998,0.0,0.0,0.0,0.23642232 +333.6296820640564,0.45999998,0.0,0.0,0.0,0.23642232 +333.64029812812805,0.45999998,0.0,0.0,0.0,0.23642232 +333.6502830982208,0.45999998,0.0,0.0,0.0,0.23642232 +333.65962409973145,0.45999998,0.0,0.0,0.0,0.21237166 +333.6703131198883,0.45999998,0.0,0.0,0.0,0.21237166 +333.6802921295166,0.45999998,0.0,0.0,0.0,0.21237166 +333.69028091430664,0.45999998,0.0,0.0,0.0,0.21237166 +333.70030903816223,0.45999998,0.0,0.0,0.0,0.21237166 +333.7094910144806,0.45999998,0.0,0.0,0.0,0.21237166 +333.7200210094452,0.45999998,0.0,0.0,0.0,0.15872025 +333.7302610874176,0.45999998,0.0,0.0,0.0,0.15872025 +333.74030804634094,0.45999998,0.0,0.0,0.0,0.15872025 +333.74972200393677,0.45999998,0.0,0.0,0.0,0.15872025 +333.7596220970154,0.45999998,0.0,0.0,0.0,0.15872025 +333.7702920436859,0.45999998,0.0,0.0,0.0,0.15872025 +333.77947306632996,0.45999998,0.0,0.0,0.0,0.15872025 +333.79031109809875,0.45999998,0.0,0.0,0.0,0.15872025 +333.80030512809753,0.45999998,0.0,0.0,0.0,0.15872025 +333.80948209762573,0.45999998,0.0,0.0,0.0,0.15872025 +333.82030391693115,0.45999998,0.0,0.0,0.0,0.0070162313 +333.8298120498657,0.45999998,0.0,0.0,0.0,0.0070162313 +333.8396260738373,0.45999998,0.0,0.0,0.0,0.0070162313 +333.8502550125122,0.45999998,0.0,0.0,0.0,0.0070162313 +333.8596169948578,0.45999998,0.0,0.0,0.0,-0.024434604 +333.87031412124634,0.45999998,0.0,0.0,0.0,-0.024434604 +333.880273103714,0.45999998,0.0,0.0,0.0,-0.024434604 +333.89026713371277,0.45999998,0.0,0.0,0.0,-0.024434604 +333.9002890586853,0.45999998,0.0,0.0,0.0,-0.024434604 +333.9094829559326,0.45999998,0.0,0.0,0.0,-0.024434604 +333.9202721118927,0.45999998,0.0,0.0,0.0,-0.050335295 +333.9298219680786,0.45999998,0.0,0.0,0.0,-0.050335295 +333.9394130706787,0.45999998,0.0,0.0,0.0,-0.050335295 +333.950266122818,0.45999998,0.0,0.0,0.0,-0.050335295 +333.9596109390259,0.45999998,0.0,0.0,0.0,-0.052185345 +333.96958804130554,0.45999998,0.0,0.0,0.0,-0.052185345 +333.9802930355072,0.45999998,0.0,0.0,0.0,-0.052185345 +333.9900629520416,0.45999998,0.0,0.0,0.0,-0.052185345 +333.9994840621948,0.45999998,0.0,0.0,0.0,-0.052185345 +334.00949692726135,0.45999998,0.0,0.0,0.0,-0.052185345 +334.0199189186096,0.45999998,0.0,0.0,0.0,-0.0466352 +334.02939796447754,0.45999998,0.0,0.0,0.0,-0.0466352 +334.04027700424194,0.45999998,0.0,0.0,0.0,-0.0466352 +334.0502390861511,0.45999998,0.0,0.0,0.0,-0.0466352 +334.05962896347046,0.45999998,0.0,0.0,0.0,-0.072535895 +334.0703010559082,0.45999998,0.0,0.0,0.0,-0.072535895 +334.08025908470154,0.45999998,0.0,0.0,0.0,-0.072535895 +334.08958196640015,0.45999998,0.0,0.0,0.0,-0.072535895 +334.0998730659485,0.45999998,0.0,0.0,0.0,-0.072535895 +334.10950112342834,0.45999998,0.0,0.0,0.0,-0.072535895 +334.1197690963745,0.45999998,0.0,0.0,0.0,-0.054035395 +334.1297869682312,0.45999998,0.0,0.0,0.0,-0.054035395 +334.1402790546417,0.45999998,0.0,0.0,0.0,-0.054035395 +334.1502809524536,0.45999998,0.0,0.0,0.0,-0.054035395 +334.1595051288605,0.45999998,0.0,0.0,0.0,-0.054035395 +334.1702561378479,0.45999998,0.0,0.0,0.0,-0.0466352 +334.1796770095825,0.45999998,0.0,0.0,0.0,-0.0466352 +334.1894829273224,0.45999998,0.0,0.0,0.0,-0.0466352 +334.19976592063904,0.45999998,0.0,0.0,0.0,-0.0466352 +334.2095379829407,0.45,0.0,0.0,0.0,-0.0466352 +334.22026896476746,0.45,0.0,0.0,0.0,-0.024434604 +334.2298309803009,0.45,0.0,0.0,0.0,-0.024434604 +334.24025797843933,0.45,0.0,0.0,0.0,-0.024434604 +334.2502279281616,0.45,0.0,0.0,0.0,-0.024434604 +334.2596139907837,0.45,0.0,0.0,0.0,-0.033684865 +334.26972699165344,0.45,0.0,0.0,0.0,-0.033684865 +334.27971506118774,0.45,0.0,0.0,0.0,-0.033684865 +334.28967905044556,0.45,0.0,0.0,0.0,-0.033684865 +334.30008697509766,0.45,0.0,0.0,0.0,-0.033684865 +334.3096721172333,0.45,0.0,0.0,0.0,-0.033684865 +334.3202450275421,0.45,0.0,0.0,0.0,-0.011484267 +334.3298330307007,0.45,0.0,0.0,0.0,-0.011484267 +334.3402490615845,0.45,0.0,0.0,0.0,-0.011484267 +334.3499231338501,0.45,0.0,0.0,0.0,-0.011484267 +334.35961294174194,0.45,0.0,0.0,0.0,0.008866279 +334.3702530860901,0.45,0.0,0.0,0.0,0.008866279 +334.3796000480652,0.45,0.0,0.0,0.0,0.008866279 +334.39024591445923,0.44,0.0,0.0,0.0,0.008866279 +334.4002311229706,0.44,0.0,0.0,0.0,0.008866279 +334.40952610969543,0.44,0.0,0.0,0.0,0.008866279 +334.41941499710083,0.44,0.0,0.0,0.0,0.021816617 +334.42983293533325,0.42999998,0.0,0.0,0.0,0.021816617 +334.4402449131012,0.42999998,0.0,0.0,0.0,0.021816617 +334.4499111175537,0.42999998,0.0,0.0,0.0,0.021816617 +334.4596230983734,0.42999998,0.0,0.0,0.0,0.027366763 +334.4695200920105,0.42999998,0.0,0.0,0.0,0.027366763 +334.4802269935608,0.42999998,0.0,0.0,0.0,0.027366763 +334.48940110206604,0.42999998,0.0,0.0,0.0,0.027366763 +334.50022196769714,0.42999998,0.0,0.0,0.0,0.027366763 +334.5095500946045,0.42999998,0.0,0.0,0.0,0.027366763 +334.5202181339264,0.42,0.0,0.0,0.0,-0.00038397792 +334.5294620990753,0.42,0.0,0.0,0.0,-0.00038397792 +334.53997898101807,0.42,0.0,0.0,0.0,-0.00038397792 +334.5496230125427,0.42,0.0,0.0,0.0,-0.00038397792 +334.5594251155853,0.42,0.0,0.0,0.0,-0.00038397792 +334.57022500038147,0.42,0.0,0.0,0.0,-0.01888446 +334.5795531272888,0.42,0.0,0.0,0.0,-0.01888446 +334.5902180671692,0.42,0.0,0.0,0.0,-0.01888446 +334.5995180606842,0.42,0.0,0.0,0.0,-0.01888446 +334.6095440387726,0.41,0.0,0.0,0.0,-0.01888446 +334.62003993988037,0.41,0.0,0.0,0.0,0.010716328 +334.6296730041504,0.41,0.0,0.0,0.0,0.010716328 +334.63982009887695,0.41,0.0,0.0,0.0,0.010716328 +334.6502220630646,0.41,0.0,0.0,0.0,0.010716328 +334.6594090461731,0.41,0.0,0.0,0.0,0.010716328 +334.66969108581543,0.41,0.0,0.0,0.0,-0.002234026 +334.67974400520325,0.41,0.0,0.0,0.0,-0.002234026 +334.69021010398865,0.39999998,0.0,0.0,0.0,-0.002234026 +334.69984006881714,0.39999998,0.0,0.0,0.0,-0.002234026 +334.7095670700073,0.39999998,0.0,0.0,0.0,-0.002234026 +334.7201449871063,0.39999998,0.0,0.0,0.0,0.008866279 +334.72984313964844,0.39,0.0,0.0,0.0,0.008866279 +334.74021792411804,0.39,0.0,0.0,0.0,0.008866279 +334.74964904785156,0.39,0.0,0.0,0.0,0.008866279 +334.75963401794434,0.39,0.0,0.0,0.0,0.012566376 +334.7702419757843,0.38,0.0,0.0,0.0,0.012566376 +334.78022503852844,0.38,0.0,0.0,0.0,0.012566376 +334.7902240753174,0.38,0.0,0.0,0.0,0.012566376 +334.8002190589905,0.37,0.0,0.0,0.0,0.012566376 +334.8095769882202,0.37,0.0,0.0,0.0,0.012566376 +334.8194260597229,0.37,0.0,0.0,0.0,0.012566376 +334.82983803749084,0.37,0.0,0.0,0.0,0.012566376 +334.84020590782166,0.37,0.0,0.0,0.0,0.012566376 +334.85002303123474,0.37,0.0,0.0,0.0,0.012566376 +334.8596160411835,0.35999998,0.0,0.0,0.0,0.034766953 +334.8702540397644,0.35999998,0.0,0.0,0.0,0.034766953 +334.8801200389862,0.35999998,0.0,0.0,0.0,0.034766953 +334.8902099132538,0.34,0.0,0.0,0.0,0.034766953 +334.9001929759979,0.32999998,0.0,0.0,0.0,0.034766953 +334.90957498550415,0.32999998,0.0,0.0,0.0,0.034766953 +334.9202060699463,0.32,0.0,0.0,0.0,0.04031712 +334.9298429489136,0.32,0.0,0.0,0.0,0.04031712 +334.94018507003784,0.31,0.0,0.0,0.0,0.04031712 +334.9502079486847,0.29999998,0.0,0.0,0.0,0.04031712 +334.9596309661865,0.29999998,0.0,0.0,0.0,0.049567357 +334.9702241420746,0.29999998,0.0,0.0,0.0,0.049567357 +334.9801781177521,0.29999998,0.0,0.0,0.0,0.049567357 +334.99021196365356,0.29999998,0.0,0.0,0.0,0.049567357 +334.999449968338,0.29999998,0.0,0.0,0.0,0.049567357 +335.0096130371094,0.29999998,0.0,0.0,0.0,0.049567357 +335.02018904685974,0.29,0.0,0.0,0.0,0.027366763 +335.02982902526855,0.29,0.0,0.0,0.0,0.027366763 +335.0401830673218,0.29,0.0,0.0,0.0,0.027366763 +335.05016708374023,0.29,0.0,0.0,0.0,0.027366763 +335.05962800979614,0.28,0.0,0.0,0.0,0.021816617 +335.070228099823,0.26999998,0.0,0.0,0.0,0.021816617 +335.0801920890808,0.26,0.0,0.0,0.0,0.021816617 +335.08953404426575,0.26,0.0,0.0,0.0,0.021816617 +335.09951305389404,0.25,0.0,0.0,0.0,0.021816617 +335.1096029281616,0.24,0.0,0.0,0.0,0.021816617 +335.12017607688904,0.22999999,0.0,0.0,0.0,-0.011484267 +335.12955594062805,0.22999999,0.0,0.0,0.0,-0.011484267 +335.14016795158386,0.19999999,0.0,0.0,0.0,-0.011484267 +335.15018701553345,0.17999999,0.0,0.0,0.0,-0.011484267 +335.15964102745056,0.17999999,0.0,0.0,0.0,-0.020734508 +335.1696889400482,0.16,0.0,0.0,0.0,-0.020734508 +335.1796569824219,0.14999999,0.0,0.0,0.0,-0.020734508 +335.1902070045471,0.14,1.5151515,1.5151515,0.0,-0.020734508 +335.2001860141754,0.12,8.333334,8.333334,0.0,-0.020734508 +335.2096140384674,0.12,8.333334,8.333334,0.0,-0.020734508 +335.2197251319885,0.099999994,13.636364,13.636364,0.0,-0.06328564 +335.2296669483185,0.089999996,18.939394,18.939394,0.0,-0.06328564 +335.2401809692383,0.089999996,24.242424,24.242424,0.0,-0.06328564 +335.25016713142395,0.089999996,24.242424,24.242424,0.009372071,-0.06328564 +335.2596380710602,0.07,37.121216,37.121216,0.028116215,-0.042935103 +335.2697100639343,0.06,43.181816,43.181816,0.046860356,-0.042935103 +335.28016996383667,0.049999997,51.515152,51.515152,0.0656045,-0.042935103 +335.29016399383545,0.049999997,51.515152,51.515152,0.08434864,-0.042935103 +335.3001780509949,0.04,68.18182,68.18182,0.09372071,-0.042935103 +335.30961513519287,0.04,68.18182,68.18182,0.10309278,-0.042935103 +335.3201780319214,0.02,46.21212,46.21212,0.11246486,-0.022584556 +335.3298509120941,0.02,46.21212,46.21212,0.131209,-0.022584556 +335.3395080566406,0.01,25.757576,25.757576,0.14995314,-0.022584556 +335.3501760959625,0.01,21.969696,21.969696,0.15932521,-0.022584556 +335.3596420288086,0.01,21.969696,21.969696,0.16869728,0.008866279 +335.3695020675659,0.0,39.39394,39.39394,0.17806935,0.008866279 +335.38017201423645,0.0,49.242424,49.242424,0.18744142,0.008866279 +335.39016914367676,0.0,62.121212,62.121212,0.1968135,0.008866279 +335.39947295188904,0.0,62.121212,62.121212,0.1968135,0.008866279 +335.40963196754456,0.0,68.93939,68.93939,0.20618556,0.008866279 +335.4196689128876,0.0,65.15151,65.15151,0.21555763,-0.0040840744 +335.43017292022705,0.0,60.606064,60.606064,0.22492972,-0.0040840744 +335.44015192985535,0.0,51.515152,51.515152,0.21555763,-0.0040840744 +335.4496579170227,0.0,51.515152,51.515152,0.23430179,-0.0040840744 +335.4596469402313,0.0,46.969696,46.969696,0.23430179,0.010716328 +335.4702060222626,0.0,44.696968,44.696968,0.23430179,0.010716328 +335.47981691360474,0.0,44.696968,44.696968,0.24367386,0.010716328 +335.48990297317505,0.0,42.424244,42.424244,0.25304592,0.010716328 +335.4998481273651,0.0,42.424244,42.424244,0.25304592,0.010716328 +335.5096299648285,0.0,42.424244,42.424244,0.262418,0.010716328 +335.52014207839966,0.0,41.666668,41.666668,0.25304592,-0.033684865 +335.52985310554504,0.0,41.666668,41.666668,0.262418,-0.033684865 +335.5396089553833,0.0,42.424244,42.424244,0.262418,-0.033684865 +335.54979491233826,0.0,43.181816,43.181816,0.262418,-0.033684865 +335.5596299171448,0.0,45.454548,45.454548,0.27179006,-0.024434604 +335.5701861381531,0.0,47.727272,47.727272,0.27179006,-0.024434604 +335.58003306388855,0.0,49.242424,49.242424,0.27179006,-0.024434604 +335.5901520252228,0.0,49.242424,49.242424,0.28116214,-0.024434604 +335.60015201568604,0.0,49.242424,49.242424,0.28116214,-0.024434604 +335.6096489429474,0.0,49.242424,49.242424,0.2905342,-0.024434604 +335.62014412879944,0.0,50.757576,50.757576,0.2905342,-0.039235007 +335.6295340061188,0.0,50.757576,50.757576,0.2905342,-0.039235007 +335.6397030353546,0.0,54.545456,54.545456,0.2905342,-0.039235007 +335.65014696121216,0.0,55.30303,55.30303,0.2905342,-0.039235007 +335.6596441268921,0.0,55.30303,55.30303,0.2905342,-0.054035395 +335.670184135437,0.0,55.30303,55.30303,0.29990628,-0.054035395 +335.6794910430908,0.0,55.30303,55.30303,0.29990628,-0.054035395 +335.69011998176575,0.0,56.818184,56.818184,0.29990628,-0.054035395 +335.700129032135,0.0,59.090908,59.090908,0.30927837,-0.054035395 +335.7096600532532,0.0,59.090908,59.090908,0.29990628,-0.054035395 +335.71945309638977,0.0,62.121212,62.121212,0.29990628,-0.029984765 +335.72955203056335,0.0,62.878788,62.878788,0.2905342,-0.029984765 +335.740140914917,0.0,61.363636,61.363636,0.29990628,-0.029984765 +335.75015091896057,0.0,61.363636,61.363636,0.30927837,-0.029984765 +335.7596230506897,0.0,61.363636,61.363636,0.30927837,-0.00038397792 +335.7696249485016,0.0,62.121212,62.121212,0.30927837,-0.00038397792 +335.78012704849243,0.0,62.121212,62.121212,0.30927837,-0.00038397792 +335.7898030281067,0.0,62.121212,62.121212,0.30927837,-0.00038397792 +335.8001239299774,0.0,59.848484,59.848484,0.30927837,-0.00038397792 +335.80966305732727,0.0,59.848484,59.848484,0.30927837,-0.00038397792 +335.8193950653076,0.0,53.78788,53.78788,0.30927837,0.032916907 +335.8295180797577,0.0,51.515152,51.515152,0.30927837,0.032916907 +335.84012508392334,0.0,50.0,50.0,0.30927837,0.032916907 +335.8499801158905,0.0,50.0,50.0,0.29990628,0.032916907 +335.85939502716064,0.0,49.242424,49.242424,0.29990628,0.032916907 +335.87016105651855,0.0,48.484848,48.484848,0.30927837,0.06436774 +335.8800070285797,0.0,48.484848,48.484848,0.30927837,0.06436774 +335.89010095596313,0.0,46.21212,46.21212,0.30927837,0.06436774 +335.9001441001892,0.0,44.696968,44.696968,0.30927837,0.06436774 +335.90938997268677,0.0,44.696968,44.696968,0.31865042,0.06436774 +335.92011308670044,0.0,43.939392,43.939392,0.30927837,0.12356931 +335.9298429489136,0.0,43.939392,43.939392,0.30927837,0.12356931 +335.9401159286499,0.0,43.181816,43.181816,0.30927837,0.12356931 +335.94992303848267,0.0,43.181816,43.181816,0.30927837,0.12356931 +335.9596309661865,0.0,41.666668,41.666668,0.30927837,0.15687022 +335.9701280593872,0.0,40.151516,40.151516,0.30927837,0.15687022 +335.9801061153412,0.0,37.878788,37.878788,0.30927837,0.15687022 +335.98942613601685,0.0,37.878788,37.878788,0.30927837,0.15687022 +335.9995930194855,0.0,37.121216,37.121216,0.29990628,0.15687022 +336.009388923645,0.0,37.121216,37.121216,0.29990628,0.15687022 +336.01941204071045,0.0,36.363636,36.363636,0.30927837,0.1716706 +336.0298569202423,0.0,36.363636,36.363636,0.30927837,0.1716706 +336.0400700569153,0.0,34.848484,34.848484,0.29990628,0.1716706 +336.0500750541687,0.0,33.333336,33.333336,0.29990628,0.1716706 +336.0596399307251,0.0,31.060606,31.060606,0.29990628,0.19387117 +336.0700831413269,0.0,30.303032,30.303032,0.29990628,0.19387117 +336.08010601997375,0.0,29.545454,29.545454,0.29990628,0.19387117 +336.08971309661865,0.0,29.545454,29.545454,0.29990628,0.19387117 +336.0994110107422,0.0,24.242424,24.242424,0.2905342,0.19387117 +336.1094219684601,0.0,21.212122,21.212122,0.2905342,0.19387117 +336.12012100219727,0.0,21.969696,21.969696,0.28116214,0.27157325 +336.1298339366913,0.0,21.969696,21.969696,0.27179006,0.27157325 +336.14011096954346,0.0,21.969696,21.969696,0.262418,0.27157325 +336.15013694763184,0.0,20.454544,20.454544,0.262418,0.27157325 +336.1596429347992,0.0,20.454544,20.454544,0.23430179,0.2845236 +336.1701331138611,0.0,18.939394,18.939394,0.22492972,0.2845236 +336.17945098876953,0.0,17.424242,17.424242,0.20618556,0.2845236 +336.18940806388855,0.0,15.909091,15.909091,0.18744142,0.2845236 +336.2000880241394,0.0,15.151516,15.151516,0.17806935,0.2845236 +336.20940804481506,0.0,15.151516,15.151516,0.16869728,0.2845236 +336.2201089859009,0.0,12.121212,12.121212,0.14995314,0.30672416 +336.2298529148102,0.0,12.121212,12.121212,0.12183693,0.30672416 +336.24009108543396,0.0,10.606061,10.606061,0.10309278,0.30672416 +336.24993205070496,0.0,10.606061,10.606061,0.08434864,0.30672416 +336.2596549987793,0.0,8.333334,8.333334,0.0656045,0.30117404 +336.26990699768066,0.0,7.575758,7.575758,0.05623243,0.30117404 +336.28008794784546,0.0,6.818182,6.818182,0.046860356,0.30117404 +336.2896981239319,0.0,6.818182,6.818182,0.028116215,0.30117404 +336.300087928772,0.0,5.3030305,5.3030305,0.009372071,0.30117404 +336.3094289302826,0.0,5.3030305,5.3030305,0.0,0.30117404 +336.319540977478,0.0,3.787879,3.787879,0.0,0.31227434 +336.33006596565247,0.0,3.787879,3.787879,0.0,0.31227434 +336.33983612060547,0.0,3.030303,3.030303,0.0,0.31227434 +336.35001707077026,0.0,2.2727273,2.2727273,0.0,0.31227434 +336.35963702201843,0.0,2.2727273,2.2727273,0.0,0.37332594 +336.370080947876,0.0,1.5151515,1.5151515,0.0,0.37332594 +336.3800950050354,0.0,0.75757575,0.75757575,0.0,0.37332594 +336.39007806777954,0.0,0.0,0.0,0.0,0.37332594 +336.3997631072998,0.0,0.0,0.0,0.0,0.37332594 +336.4094400405884,0.0,0.0,0.0,0.0,0.37332594 +336.42007994651794,0.0,0.0,0.0,0.0,0.375176 +336.4297239780426,0.0,0.0,0.0,0.0,0.375176 +336.43961906433105,0.0,0.0,0.0,0.0,0.375176 +336.4500620365143,0.0,0.0,0.0,0.0,0.375176 +336.4596440792084,0.01,0.0,0.0,0.0,0.38257617 +336.4700961112976,0.01,0.0,0.0,0.0,0.38257617 +336.4799520969391,0.01,0.0,0.0,0.0,0.38257617 +336.49005699157715,0.02,0.0,0.0,0.0,0.38257617 +336.4998369216919,0.02,0.0,0.0,0.0,0.38257617 +336.5094950199127,0.03,0.0,0.0,0.0,0.38257617 +336.51965498924255,0.03,0.0,0.0,0.0,0.3862763 +336.52987003326416,0.03,0.0,0.0,0.0,0.3862763 +336.54008293151855,0.04,0.0,0.0,0.0,0.3862763 +336.5494530200958,0.04,0.0,0.0,0.0,0.3862763 +336.5596549510956,0.04,0.0,0.0,0.0,0.4214272 +336.56969714164734,0.049999997,0.0,0.0,0.0,0.4214272 +336.580050945282,0.049999997,0.0,0.0,0.0,0.4214272 +336.58999705314636,0.049999997,0.0,0.0,0.0,0.4214272 +336.60006308555603,0.06,0.0,0.0,0.0,0.4214272 +336.6094539165497,0.06,0.0,0.0,0.0,0.4214272 +336.62005710601807,0.06,0.0,0.0,0.0,0.4288274 +336.62985491752625,0.06,0.0,0.0,0.0,0.4288274 +336.6395001411438,0.07,0.0,0.0,0.0,0.4288274 +336.650043964386,0.07,0.0,0.0,0.0,0.4288274 +336.6596429347992,0.08,0.0,0.0,0.0,0.41772708 +336.6700749397278,0.08,0.0,0.0,0.0,0.41772708 +336.6800501346588,0.089999996,0.0,0.0,0.0,0.41772708 +336.6894760131836,0.089999996,0.0,0.0,0.0,0.41772708 +336.699599981308,0.089999996,0.0,0.0,0.0,0.41772708 +336.7094569206238,0.099999994,0.0,0.0,0.0,0.41772708 +336.72004413604736,0.099999994,0.0,0.0,0.0,0.44177777 +336.72942900657654,0.099999994,0.0,0.0,0.0,0.44177777 +336.74004197120667,0.11,0.0,0.0,0.0,0.44177777 +336.7500569820404,0.11,0.0,0.0,0.0,0.44177777 +336.75964403152466,0.11,0.0,0.0,0.0,0.4454778 +336.77006793022156,0.11,0.0,0.0,0.0,0.4454778 +336.7800669670105,0.12,0.0,0.0,0.0,0.4454778 +336.78942108154297,0.12,0.0,0.0,0.0,0.4454778 +336.8000519275665,0.12,0.0,0.0,0.0,0.4454778 +336.80946493148804,0.12,0.0,0.0,0.0,0.4454778 +336.8195300102234,0.12,0.0,0.0,0.0,0.45287812 +336.8298330307007,0.12,0.0,0.0,0.0,0.45287812 +336.84003710746765,0.12,0.0,0.0,0.0,0.45287812 +336.8500280380249,0.12,0.0,0.0,0.0,0.45287812 +336.8596429824829,0.12,0.0,0.0,0.0,0.451028 +336.8694660663605,0.13,0.0,0.0,0.0,0.451028 +336.8800461292267,0.13,0.0,0.0,0.0,0.451028 +336.8898649215698,0.13,0.0,0.0,0.0,0.451028 +336.89949107170105,0.13,0.0,0.0,0.0,0.451028 +336.90948700904846,0.13,0.0,0.0,0.0,0.451028 +336.92003893852234,0.13,0.0,0.0,0.0,0.4843289 +336.9298689365387,0.13,0.0,0.0,0.0,0.4843289 +336.94003200531006,0.13,0.0,0.0,0.0,0.4843289 +336.9500319957733,0.13,0.0,0.0,0.0,0.4843289 +336.9596610069275,0.13,0.0,0.0,0.0,0.4843289 +336.96975207328796,0.13,0.0,0.0,0.0,0.61938244 +336.98002409935,0.13,0.0,0.0,0.0,0.61938244 +336.9900200366974,0.13,0.0,0.0,0.0,0.61938244 +336.9997389316559,0.13,0.0,0.0,0.0,0.61938244 +337.0094840526581,0.13,0.0,0.0,0.0,0.61938244 +337.020015001297,0.13,0.0,0.0,0.0,0.63788295 +337.02986907958984,0.13,0.0,0.0,0.0,0.63788295 +337.0400619506836,0.13,0.0,0.0,0.0,0.63788295 +337.04976296424866,0.13,0.0,0.0,0.0,0.63788295 +337.05946612358093,0.13,0.0,0.0,0.0,0.63788295 +337.0700409412384,0.13,0.0,0.0,0.0,0.6101322 +337.0800280570984,0.13,0.0,0.0,0.0,0.6101322 +337.08988404273987,0.13,0.0,0.0,0.0,0.6101322 +337.10001492500305,0.13,0.0,0.0,0.0,0.6101322 +337.1094880104065,0.13,0.0,0.0,0.0,0.6101322 +337.1199839115143,0.13,0.0,0.0,0.0,0.5472306 +337.1299970149994,0.13,0.0,0.0,0.0,0.5472306 +337.13991594314575,0.13,0.0,0.0,0.0,0.5472306 +337.150013923645,0.14,0.0,0.0,0.0,0.5472306 +337.1596601009369,0.14,0.0,0.0,0.0,0.5472306 +337.1700360774994,0.14,0.0,0.0,0.0,0.5583309 +337.1800310611725,0.14,0.0,0.0,0.0,0.5583309 +337.189857006073,0.14,0.0,0.0,0.0,0.5583309 +337.2000050544739,0.14,0.0,0.0,0.0,0.5583309 +337.209538936615,0.14,0.0,0.0,0.0,0.5583309 +337.21956992149353,0.13,0.0,0.0,0.0,0.563881 +337.22956705093384,0.14,0.0,0.0,0.0,0.563881 +337.240021944046,0.14,0.0,0.0,0.0,0.563881 +337.24998211860657,0.14,0.0,0.0,0.0,0.563881 +337.2595009803772,0.14,0.0,0.0,0.0,0.563881 +337.2700309753418,0.14999999,0.0,0.0,0.0,0.45657814 +337.28001499176025,0.16,0.0,0.0,0.0,0.45657814 +337.2896490097046,0.16,0.0,0.0,0.0,0.45657814 +337.2997739315033,0.16,0.0,0.0,0.0,0.45657814 +337.30951499938965,0.17,0.0,0.0,0.0,0.45657814 +337.3199989795685,0.17,0.0,0.0,0.0,0.43807763 +337.32945013046265,0.17,0.0,0.0,0.0,0.43807763 +337.3399930000305,0.17999999,0.0,0.0,0.0,0.43807763 +337.3500020503998,0.17999999,0.0,0.0,0.0,0.43807763 +337.3596739768982,0.17999999,0.0,0.0,0.0,0.43992776 +337.37002301216125,0.19,0.0,0.0,0.0,0.43992776 +337.3800039291382,0.19,0.0,0.0,0.0,0.43992776 +337.39000391960144,0.19,0.0,0.0,0.0,0.43992776 +337.40000200271606,0.19999999,0.0,0.0,0.0,0.43992776 +337.4094579219818,0.19999999,0.0,0.0,0.0,0.43992776 +337.41954708099365,0.21,0.0,0.0,0.0,0.41772708 +337.42947006225586,0.21,0.0,0.0,0.0,0.41772708 +337.43999695777893,0.21,0.0,0.0,0.0,0.41772708 +337.44998502731323,0.21,0.0,0.0,0.0,0.41772708 +337.4595959186554,0.22,0.0,0.0,0.0,0.41772708 +337.47000908851624,0.22,0.0,0.0,0.0,0.4269774 +337.47999906539917,0.22999999,0.0,0.0,0.0,0.4269774 +337.48997712135315,0.22999999,0.0,0.0,0.0,0.4269774 +337.49994111061096,0.22999999,0.0,0.0,0.0,0.4269774 +337.509535074234,0.22999999,0.0,0.0,0.0,0.4269774 +337.5195951461792,0.22999999,0.0,0.0,0.0,0.43067744 +337.5298581123352,0.22999999,0.0,0.0,0.0,0.43067744 +337.5399920940399,0.22999999,0.0,0.0,0.0,0.43067744 +337.54949593544006,0.22999999,0.0,0.0,0.0,0.43067744 +337.55964612960815,0.24,0.0,0.0,0.0,0.4269774 +337.5700080394745,0.24,0.0,0.0,0.0,0.4269774 +337.5799889564514,0.24,0.0,0.0,0.0,0.4269774 +337.5898630619049,0.24,0.0,0.0,0.0,0.4269774 +337.5997519493103,0.25,0.0,0.0,0.0,0.4269774 +337.60953998565674,0.25,0.0,0.0,0.0,0.4269774 +337.6200051307678,0.26,0.0,0.0,0.0,0.4454778 +337.6295199394226,0.26,0.0,0.0,0.0,0.4454778 +337.63999795913696,0.26999998,0.0,0.0,0.0,0.4454778 +337.64970302581787,0.26999998,0.0,0.0,0.0,0.4454778 +337.6596689224243,0.28,0.0,0.0,0.0,0.39367646 +337.6694760322571,0.28,0.0,0.0,0.0,0.39367646 +337.679799079895,0.28,0.0,0.0,0.0,0.39367646 +337.68990302085876,0.29,0.0,0.0,0.0,0.39367646 +337.69997096061707,0.29,0.0,0.0,0.0,0.39367646 +337.70955204963684,0.29,0.0,0.0,0.0,0.39367646 +337.7199881076813,0.29999998,0.0,0.0,0.0,0.43992776 +337.7298629283905,0.29999998,0.0,0.0,0.0,0.43992776 +337.73961997032166,0.29999998,0.0,0.0,0.0,0.43992776 +337.74998807907104,0.31,0.0,0.0,0.0,0.43992776 +337.7596719264984,0.31,0.0,0.0,0.0,0.41772708 +337.76974511146545,0.32,0.0,0.0,0.0,0.41772708 +337.7799971103668,0.32,0.0,0.0,0.0,0.41772708 +337.7899520397186,0.32,0.0,0.0,0.0,0.41772708 +337.79995799064636,0.32999998,0.0,0.0,0.0,0.41772708 +337.8096489906311,0.32999998,0.0,0.0,0.0,0.41772708 +337.8199510574341,0.34,0.0,0.0,0.0,0.43437755 +337.82986307144165,0.34,0.0,0.0,0.0,0.43437755 +337.8399770259857,0.35,0.0,0.0,0.0,0.43437755 +337.8499710559845,0.35,0.0,0.0,0.0,0.43437755 +337.85966396331787,0.35999998,0.0,0.0,0.0,0.4103269 +337.86999106407166,0.35999998,0.0,0.0,0.0,0.4103269 +337.87994599342346,0.37,0.0,0.0,0.0,0.4103269 +337.8899440765381,0.37,0.0,0.0,0.0,0.4103269 +337.8999819755554,0.37,0.0,0.0,0.0,0.4103269 +337.90955901145935,0.37,0.0,0.0,0.0,0.4103269 +337.91952896118164,0.38,0.0,0.0,0.0,0.36407572 +337.92986607551575,0.38,0.0,0.0,0.0,0.36407572 +337.93941593170166,0.39,0.0,0.0,0.0,0.36407572 +337.9496200084686,0.39,0.0,0.0,0.0,0.36407572 +337.95966506004333,0.39999998,0.0,0.0,0.0,0.2919238 +337.9699881076813,0.39999998,0.0,0.0,0.0,0.2919238 +337.9799840450287,0.41,0.0,0.0,0.0,0.2919238 +337.98997497558594,0.41,0.0,0.0,0.0,0.2919238 +337.99951100349426,0.41,0.0,0.0,0.0,0.2919238 +338.0096049308777,0.42,0.0,0.0,0.0,0.2919238 +338.01997900009155,0.42,0.0,0.0,0.0,0.2919238 +338.029461145401,0.42,0.0,0.0,0.0,0.2919238 +338.0395030975342,0.42999998,0.0,0.0,0.0,0.2919238 +338.0499601364136,0.42999998,0.0,0.0,0.0,0.2919238 +338.05947399139404,0.42999998,0.0,0.0,0.0,0.2919238 +338.0694670677185,0.42999998,0.0,0.0,0.0,0.2919238 +338.0799629688263,0.44,0.0,0.0,0.0,0.2919238 +338.08993196487427,0.44,0.0,0.0,0.0,0.2919238 +338.09986114501953,0.44,0.0,0.0,0.0,0.2919238 +338.1096179485321,0.44,0.0,0.0,0.0,0.2919238 +338.1195800304413,0.44,0.0,0.0,0.0,0.2808235 +338.12953209877014,0.44,0.0,0.0,0.0,0.2808235 +338.139967918396,0.45,0.0,0.0,0.0,0.2808235 +338.14963006973267,0.45,0.0,0.0,0.0,0.2808235 +338.1596601009369,0.45,0.0,0.0,0.0,0.29932398 +338.169960975647,0.45,0.0,0.0,0.0,0.29932398 +338.1799569129944,0.45,0.0,0.0,0.0,0.29932398 +338.189964056015,0.45999998,0.0,0.0,0.0,0.29932398 +338.19950795173645,0.45999998,0.0,0.0,0.0,0.29932398 +338.2095971107483,0.45999998,0.0,0.0,0.0,0.29932398 +338.2195830345154,0.45999998,0.0,0.0,0.0,0.29007375 +338.22946310043335,0.45999998,0.0,0.0,0.0,0.29007375 +338.2397699356079,0.45999998,0.0,0.0,0.0,0.29007375 +338.2499051094055,0.45999998,0.0,0.0,0.0,0.29007375 +338.25967502593994,0.45999998,0.0,0.0,0.0,0.25677285 +338.2699680328369,0.45999998,0.0,0.0,0.0,0.25677285 +338.2799611091614,0.45999998,0.0,0.0,0.0,0.25677285 +338.28992891311646,0.45999998,0.0,0.0,0.0,0.25677285 +338.2999529838562,0.45999998,0.0,0.0,0.0,0.25677285 +338.30943393707275,0.45999998,0.0,0.0,0.0,0.25677285 +338.3199551105499,0.45999998,0.0,0.0,0.0,0.14947 +338.32952904701233,0.45999998,0.0,0.0,0.0,0.14947 +338.3399450778961,0.45999998,0.0,0.0,0.0,0.14947 +338.349937915802,0.47,0.0,0.0,0.0,0.14947 +338.35967111587524,0.47,0.0,0.0,0.0,0.18092082 +338.3699541091919,0.47,0.0,0.0,0.0,0.18092082 +338.37939500808716,0.47,0.0,0.0,0.0,0.18092082 +338.38995814323425,0.47,0.0,0.0,0.0,0.18092082 +338.39940905570984,0.47,0.0,0.0,0.0,0.18092082 +338.4096131324768,0.45999998,0.0,0.0,0.0,0.18092082 +338.4199330806732,0.45999998,0.0,0.0,0.0,0.16797051 +338.4294090270996,0.45999998,0.0,0.0,0.0,0.16797051 +338.43991804122925,0.45999998,0.0,0.0,0.0,0.16797051 +338.4494330883026,0.45999998,0.0,0.0,0.0,0.16797051 +338.45957112312317,0.45999998,0.0,0.0,0.0,0.16797051 +338.4695749282837,0.45,0.0,0.0,0.0,0.1420698 +338.4799470901489,0.45,0.0,0.0,0.0,0.1420698 +338.4899001121521,0.45,0.0,0.0,0.0,0.1420698 +338.4999120235443,0.45,0.0,0.0,0.0,0.1420698 +338.50961899757385,0.45,0.0,0.0,0.0,0.1420698 +338.5199279785156,0.45999998,0.0,0.0,0.0,0.12541938 +338.529648065567,0.45999998,0.0,0.0,0.0,0.12541938 +338.53992795944214,0.45999998,0.0,0.0,0.0,0.12541938 +338.54993295669556,0.45999998,0.0,0.0,0.0,0.12541938 +338.55965995788574,0.45999998,0.0,0.0,0.0,0.1346696 +338.56995010375977,0.45999998,0.0,0.0,0.0,0.1346696 +338.579421043396,0.45999998,0.0,0.0,0.0,0.1346696 +338.5895929336548,0.45999998,0.0,0.0,0.0,0.1346696 +338.5999450683594,0.45999998,0.0,0.0,0.0,0.1346696 +338.609414100647,0.45999998,0.0,0.0,0.0,0.1346696 +338.6199150085449,0.45999998,0.0,0.0,0.0,0.1383697 +338.6297800540924,0.45999998,0.0,0.0,0.0,0.1383697 +338.63989901542664,0.45999998,0.0,0.0,0.0,0.1383697 +338.6498610973358,0.45999998,0.0,0.0,0.0,0.1383697 +338.6596701145172,0.45999998,0.0,0.0,0.0,0.13651967 +338.6699330806732,0.45,0.0,0.0,0.0,0.13651967 +338.6794710159302,0.45,0.0,0.0,0.0,0.13651967 +338.6898760795593,0.45,0.0,0.0,0.0,0.13651967 +338.6995689868927,0.45,0.0,0.0,0.0,0.13651967 +338.70965600013733,0.45,0.0,0.0,0.0,0.13651967 +338.71962094306946,0.45,0.0,0.0,0.0,0.1420698 +338.72986698150635,0.45,0.0,0.0,0.0,0.1420698 +338.7396430969238,0.45,0.0,0.0,0.0,0.1420698 +338.7498869895935,0.45,0.0,0.0,0.0,0.1420698 +338.75965905189514,0.45,0.0,0.0,0.0,0.22162192 +338.76988101005554,0.44,0.0,0.0,0.0,0.22162192 +338.77987694740295,0.44,0.0,0.0,0.0,0.22162192 +338.7897410392761,0.44,0.0,0.0,0.0,0.22162192 +338.7998869419098,0.44,0.0,0.0,0.0,0.22162192 +338.8096721172333,0.44,0.0,0.0,0.0,0.22162192 +338.81943011283875,0.44,0.0,0.0,0.0,0.14021976 +338.8297641277313,0.44,0.0,0.0,0.0,0.14021976 +338.839891910553,0.44,0.0,0.0,0.0,0.14021976 +338.84940695762634,0.44,0.0,0.0,0.0,0.14021976 +338.8596839904785,0.42999998,0.0,0.0,0.0,0.17722073 +338.8698990345001,0.42999998,0.0,0.0,0.0,0.17722073 +338.8798770904541,0.42,0.0,0.0,0.0,0.17722073 +338.8898649215698,0.42,0.0,0.0,0.0,0.17722073 +338.8998849391937,0.42,0.0,0.0,0.0,0.17722073 +338.90967297554016,0.42,0.0,0.0,0.0,0.17722073 +338.91988611221313,0.41,0.0,0.0,0.0,0.17352064 +338.92941403388977,0.41,0.0,0.0,0.0,0.17352064 +338.9394040107727,0.39999998,0.0,0.0,0.0,0.17352064 +338.9498379230499,0.39,0.0,0.0,0.0,0.17352064 +338.9596700668335,0.39,0.0,0.0,0.0,0.17722073 +338.9699001312256,0.39,0.0,0.0,0.0,0.17722073 +338.9793999195099,0.39,0.0,0.0,0.0,0.17722073 +338.98987007141113,0.39,0.0,0.0,0.0,0.17722073 +338.9998710155487,0.38,0.0,0.0,0.0,0.17722073 +339.0096809864044,0.38,0.0,0.0,0.0,0.17722073 +339.01951694488525,0.38,0.0,0.0,0.0,0.20127137 +339.02954602241516,0.38,0.0,0.0,0.0,0.20127137 +339.03984904289246,0.37,0.0,0.0,0.0,0.20127137 +339.04982805252075,0.37,0.0,0.0,0.0,0.20127137 +339.05941796302795,0.37,0.0,0.0,0.0,0.20127137 +339.0698890686035,0.35999998,0.0,0.0,0.0,0.11801915 +339.0798509120941,0.35999998,0.0,0.0,0.0,0.11801915 +339.08982396125793,0.35999998,0.0,0.0,0.0,0.11801915 +339.09986114501953,0.37,0.0,0.0,0.0,0.11801915 +339.10942697525024,0.37,0.0,0.0,0.0,0.11801915 +339.1194291114807,0.38,0.0,0.0,0.0,0.07176795 +339.1298189163208,0.38,0.0,0.0,0.0,0.07176795 +339.1398630142212,0.38,0.0,0.0,0.0,0.07176795 +339.14985394477844,0.39,0.0,0.0,0.0,0.07176795 +339.1596870422363,0.39,0.0,0.0,0.0,0.114319056 +339.1698660850525,0.39,0.0,0.0,0.0,0.114319056 +339.1798379421234,0.39,0.0,0.0,0.0,0.114319056 +339.1898491382599,0.38,0.0,0.0,0.0,0.114319056 +339.199805021286,0.38,0.0,0.0,0.0,0.114319056 +339.2094259262085,0.38,0.0,0.0,0.0,0.114319056 +339.21985697746277,0.38,0.0,0.0,0.0,0.08841839 +339.22986006736755,0.38,0.0,0.0,0.0,0.08841839 +339.2397539615631,0.38,0.0,0.0,0.0,0.08841839 +339.24951696395874,0.38,0.0,0.0,0.0,0.08841839 +339.25967597961426,0.39,0.0,0.0,0.0,0.17722073 +339.2696170806885,0.39,0.0,0.0,0.0,0.17722073 +339.27983498573303,0.39,0.0,0.0,0.0,0.17722073 +339.2898199558258,0.39,0.0,0.0,0.0,0.17722073 +339.299437046051,0.39,0.0,0.0,0.0,0.17722073 +339.3097059726715,0.39,0.0,0.0,0.0,0.17722073 +339.3198540210724,0.39,0.0,0.0,0.0,0.27157325 +339.3298110961914,0.39,0.0,0.0,0.0,0.27157325 +339.3396649360657,0.37,0.0,0.0,0.0,0.27157325 +339.3494780063629,0.35999998,0.0,0.0,0.0,0.27157325 +339.35970401763916,0.35,0.0,0.0,0.0,0.22717209 +339.369784116745,0.35,0.0,0.0,0.0,0.22717209 +339.37938809394836,0.34,0.0,0.0,0.0,0.22717209 +339.3894510269165,0.34,0.0,0.0,0.0,0.22717209 +339.39984107017517,0.32999998,0.0,0.0,0.0,0.22717209 +339.40969800949097,0.32999998,0.0,0.0,0.0,0.22717209 +339.41976714134216,0.32999998,0.0,0.0,0.0,0.20127137 +339.42967200279236,0.32,0.0,0.0,0.0,0.20127137 +339.4398319721222,0.32,0.0,0.0,0.0,0.20127137 +339.44980812072754,0.32,0.0,0.0,0.0,0.20127137 +339.45966506004333,0.31,0.0,0.0,0.0,0.22717209 +339.4697849750519,0.31,0.0,0.0,0.0,0.22717209 +339.4794580936432,0.29999998,0.0,0.0,0.0,0.22717209 +339.48944997787476,0.29999998,0.0,0.0,0.0,0.22717209 +339.49983406066895,0.29,0.0,0.0,0.0,0.22717209 +339.5097370147705,0.29,0.0,0.0,0.0,0.22717209 +339.51983404159546,0.28,0.0,0.0,0.0,0.1827709 +339.52944707870483,0.28,0.0,0.0,0.0,0.1827709 +339.5397701263428,0.28,0.0,0.0,0.0,0.1827709 +339.54983401298523,0.26999998,0.0,0.0,0.0,0.1827709 +339.5596921443939,0.26999998,0.0,0.0,0.0,0.23827238 +339.56948494911194,0.26999998,0.0,0.0,0.0,0.23827238 +339.5798330307007,0.26,0.0,0.0,0.0,0.23827238 +339.5898070335388,0.26,0.0,0.0,0.0,0.23827238 +339.5998320579529,0.25,0.0,0.0,0.0,0.23827238 +339.609717130661,0.25,0.0,0.0,0.0,0.23827238 +339.61948895454407,0.25,0.0,0.0,0.0,0.21422173 +339.6294460296631,0.25,0.0,0.0,0.0,0.21422173 +339.6398079395294,0.24,0.0,0.0,0.0,0.21422173 +339.64962792396545,0.24,0.0,0.0,0.0,0.21422173 +339.6594150066376,0.24,0.0,0.0,0.0,0.21422173 +339.6698350906372,0.24,0.0,0.0,0.0,0.17352064 +339.6798059940338,0.25,0.0,0.0,0.0,0.17352064 +339.68979501724243,0.25,0.0,0.0,0.0,0.17352064 +339.69980001449585,0.25,0.0,0.0,0.0,0.17352064 +339.70951199531555,0.25,0.0,0.0,0.0,0.17352064 +339.71980595588684,0.25,0.0,0.0,0.0,0.16797051 +339.7297749519348,0.25,0.0,0.0,0.0,0.16797051 +339.7395660877228,0.26,0.0,0.0,0.0,0.16797051 +339.74951910972595,0.26,0.0,0.0,0.0,0.16797051 +339.7595419883728,0.26,0.0,0.0,0.0,0.16797051 +339.76979899406433,0.25,0.0,0.0,0.0,0.1716706 +339.77980399131775,0.25,0.0,0.0,0.0,0.1716706 +339.78979992866516,0.26,0.0,0.0,0.0,0.1716706 +339.79946208000183,0.26,0.0,0.0,0.0,0.1716706 +339.8097620010376,0.26,0.0,0.0,0.0,0.1716706 +339.81980991363525,0.26,0.0,0.0,0.0,0.16797051 +339.8295030593872,0.26,0.0,0.0,0.0,0.16797051 +339.83954191207886,0.26,0.0,0.0,0.0,0.16797051 +339.84978699684143,0.26,0.0,0.0,0.0,0.16797051 +339.8594229221344,0.26,0.0,0.0,0.0,0.16797051 +339.8698179721832,0.25,0.0,0.0,0.0,0.19942135 +339.879802942276,0.25,0.0,0.0,0.0,0.19942135 +339.8896129131317,0.25,0.0,0.0,0.0,0.19942135 +339.89980697631836,0.24,0.0,0.0,0.0,0.19942135 +339.90974402427673,0.24,0.0,0.0,0.0,0.19942135 +339.9194550514221,0.24,0.0,0.0,0.0,0.19387117 +339.9294180870056,0.22999999,0.0,0.0,0.0,0.19387117 +339.93978905677795,0.22999999,0.0,0.0,0.0,0.19387117 +339.94980692863464,0.22999999,0.0,0.0,0.0,0.19387117 +339.9596710205078,0.22999999,0.0,0.0,0.0,0.22347198 +339.9694559574127,0.22999999,0.0,0.0,0.0,0.22347198 +339.9797840118408,0.22,0.0,0.0,0.0,0.22347198 +339.98979210853577,0.22,0.0,0.0,0.0,0.22347198 +339.9997899532318,0.22,0.0,0.0,0.0,0.22347198 +340.00950813293457,0.22,0.0,0.0,0.0,0.22347198 +340.01977801322937,0.22,0.0,0.0,0.0,0.20497148 +340.0294771194458,0.22,0.0,0.0,0.0,0.20497148 +340.0397801399231,0.22,0.0,0.0,0.0,0.20497148 +340.04975295066833,0.22,0.0,0.0,0.0,0.20497148 +340.0596821308136,0.21,0.0,0.0,0.0,0.22347198 +340.06959104537964,0.21,0.0,0.0,0.0,0.22347198 +340.0797710418701,0.21,0.0,0.0,0.0,0.22347198 +340.0897500514984,0.21,0.0,0.0,0.0,0.22347198 +340.0997679233551,0.19999999,0.0,0.0,0.0,0.22347198 +340.10976696014404,0.19999999,0.0,0.0,0.0,0.22347198 +340.11953806877136,0.19999999,0.0,0.0,0.0,0.21237166 +340.1297550201416,0.19,0.0,0.0,0.0,0.21237166 +340.1397650241852,0.19,0.0,0.0,0.0,0.21237166 +340.14978408813477,0.17999999,0.0,0.0,0.0,0.21237166 +340.15967893600464,0.17999999,0.0,0.0,0.0,0.24937265 +340.16950607299805,0.17999999,0.0,0.0,0.0,0.24937265 +340.1797659397125,0.17,0.0,0.0,0.0,0.24937265 +340.18976306915283,0.16,0.0,0.0,0.0,0.24937265 +340.1997630596161,0.14999999,0.0,0.0,0.0,0.24937265 +340.2098000049591,0.14999999,0.0,0.0,0.0,0.24937265 +340.2197759151459,0.14,0.0,0.0,0.0,0.37702608 +340.2297580242157,0.12,0.0,0.0,0.0,0.37702608 +340.2397699356079,0.11,0.0,0.0,0.0,0.37702608 +340.24947595596313,0.11,0.0,0.0,0.0,0.37702608 +340.2596960067749,0.099999994,0.0,0.0,0.0,0.31782445 +340.26976895332336,0.089999996,0.0,0.0,0.0,0.31782445 +340.279550075531,0.089999996,0.0,0.0,0.0,0.31782445 +340.28975009918213,0.08,0.0,0.0,0.0,0.31782445 +340.2994530200958,0.07,0.0,0.0,0.0,0.31782445 +340.30979108810425,0.07,0.0,0.0,0.0,0.31782445 +340.31975197792053,0.06,0.0,0.0,0.0,0.31042427 +340.32967495918274,0.06,0.0,0.0,0.0,0.31042427 +340.33975410461426,0.06,0.0,0.0,0.0,0.31042427 +340.3494119644165,0.06,0.0,0.0,0.0,0.31042427 +340.359570980072,0.049999997,0.0,0.0,0.0,0.31042427 +340.36974692344666,0.049999997,0.0,0.0,0.0,0.3307748 +340.3797450065613,0.04,0.0,0.0,0.0,0.3307748 +340.38960099220276,0.04,0.0,0.0,0.0,0.3307748 +340.39977192878723,0.04,0.0,0.0,0.0,0.3307748 +340.40950298309326,0.04,0.0,0.0,0.0,0.3307748 +340.4197449684143,0.02,0.0,0.0,0.0,0.35112536 +340.4297389984131,0.01,0.0,0.0,0.0,0.35112536 +340.4395730495453,0.01,0.0,0.0,0.0,0.35112536 +340.44969511032104,0.01,0.0,0.0,0.0,0.35112536 +340.4596860408783,0.0,0.0,0.0,0.0,0.30857423 +340.46950507164,0.0,0.0,0.0,0.0,0.30857423 +340.4797420501709,0.0,0.0,0.0,0.0,0.30857423 +340.4897429943085,0.0,0.0,0.0,0.0,0.30857423 +340.4997570514679,0.0,0.0,0.0,0.0,0.30857423 +340.50969195365906,0.0,0.0,0.0,0.0,0.31782445 +340.5197410583496,0.0,0.0,0.0,0.0,0.31782445 +340.5297119617462,0.0,0.0,0.0,0.0,0.31782445 +340.5395369529724,0.01,0.0,0.0,0.0,0.31782445 +340.5497329235077,0.01,0.0,0.0,0.0,0.31782445 +340.55968403816223,0.01,0.0,0.0,0.0,0.30117404 +340.56974697113037,0.02,0.0,0.0,0.0,0.30117404 +340.57956314086914,0.02,0.0,0.0,0.0,0.30117404 +340.589723110199,0.02,0.0,0.0,0.0,0.30117404 +340.59973406791687,0.03,0.0,0.0,0.0,0.30117404 +340.60971212387085,0.03,0.0,0.0,0.0,0.30117404 +340.619745016098,0.03,0.0,0.0,0.0,0.30117404 +340.6295449733734,0.03,0.0,0.0,0.0,0.30117404 +340.63973808288574,0.03,0.0,0.0,0.0,0.30117404 +340.64970898628235,0.03,0.0,0.0,0.0,0.30117404 +340.65942907333374,0.03,0.0,0.0,0.0,0.30117404 +340.6695659160614,0.03,0.0,0.0,0.0,0.26047295 +340.6797161102295,0.03,0.0,0.0,0.0,0.26047295 +340.6897120475769,0.03,0.0,0.0,0.0,0.26047295 +340.6997320652008,0.03,0.0,0.0,0.0,0.26047295 +340.7096869945526,0.03,0.0,0.0,0.0,0.2586229 +340.71971893310547,0.03,0.0,0.0,0.0,0.2586229 +340.72951912879944,0.03,0.0,0.0,0.0,0.2586229 +340.7396330833435,0.03,0.0,0.0,0.0,0.2586229 +340.7497510910034,0.03,0.0,0.0,0.0,0.2586229 +340.7597110271454,0.04,0.0,0.0,0.0,0.2586229 +340.76971197128296,0.04,0.0,0.0,0.0,0.24567257 +340.77972197532654,0.04,0.0,0.0,0.0,0.24567257 +340.789724111557,0.049999997,0.0,0.0,0.0,0.24567257 +340.7996060848236,0.049999997,0.0,0.0,0.0,0.24567257 +340.80967903137207,0.049999997,0.0,0.0,0.0,0.24567257 +340.81971406936646,0.049999997,0.0,0.0,0.0,0.24567257 +340.82951307296753,0.049999997,0.0,0.0,0.0,0.24567257 +340.8397319316864,0.04,0.0,0.0,0.0,0.24567257 +340.8495600223541,0.04,0.0,0.0,0.0,0.24567257 +340.85971093177795,0.04,0.0,0.0,0.0,0.24567257 +340.86971712112427,0.04,0.0,0.0,0.0,0.26417306 +340.87970209121704,0.049999997,0.0,0.0,0.0,0.26417306 +340.8895080089569,0.049999997,0.0,0.0,0.0,0.26417306 +340.8995831012726,0.049999997,0.0,0.0,0.0,0.26417306 +340.9097149372101,0.049999997,0.0,0.0,0.0,0.26417306 +340.9197130203247,0.049999997,0.0,0.0,0.0,0.37702608 +340.9295799732208,0.049999997,0.0,0.0,0.0,0.37702608 +340.9397051334381,0.049999997,0.0,0.0,0.0,0.37702608 +340.94953298568726,0.049999997,0.0,0.0,0.0,0.37702608 +340.9596960544586,0.049999997,0.0,0.0,0.0,0.37702608 +340.96970295906067,0.049999997,0.0,0.0,0.0,0.44177777 +340.97971200942993,0.049999997,0.0,0.0,0.0,0.44177777 +340.98960995674133,0.049999997,0.0,0.0,0.0,0.44177777 +340.9996929168701,0.049999997,0.0,0.0,0.0,0.44177777 +341.0096950531006,0.049999997,0.0,0.0,0.0,0.44177777 +341.0197100639343,0.049999997,0.0,0.0,0.0,0.43992776 +341.0297050476074,0.049999997,0.0,0.0,0.0,0.43992776 +341.03938913345337,0.049999997,0.0,0.0,0.0,0.43992776 +341.049684047699,0.049999997,0.0,0.0,0.0,0.43992776 +341.05975103378296,0.049999997,0.0,0.0,0.0,0.43992776 +341.06974697113037,0.04,0.0,0.0,0.0,0.4454778 +341.07966804504395,0.04,0.0,0.0,0.0,0.4454778 +341.08966612815857,0.04,0.0,0.0,0.0,0.4454778 +341.0994110107422,0.04,0.0,0.0,0.0,0.4454778 +341.1097071170807,0.04,0.0,0.0,0.0,0.4454778 +341.11970806121826,0.049999997,0.0,0.0,0.0,0.36592576 +341.12955498695374,0.049999997,0.0,0.0,0.0,0.36592576 +341.13969802856445,0.049999997,0.0,0.0,0.0,0.36592576 +341.1494081020355,0.049999997,0.0,0.0,0.0,0.36592576 +341.1596999168396,0.049999997,0.0,0.0,0.0,0.36592576 +341.1696960926056,0.06,0.0,0.0,0.0,0.2549228 +341.1794059276581,0.06,0.0,0.0,0.0,0.2549228 +341.1893939971924,0.06,0.0,0.0,0.0,0.2549228 +341.1996989250183,0.06,0.0,0.0,0.0,0.2549228 +341.2096600532532,0.06,0.0,0.0,0.0,0.2549228 +341.21939492225647,0.06,0.0,0.0,0.0,0.23642232 +341.2297041416168,0.06,0.0,0.0,0.0,0.23642232 +341.23953890800476,0.06,0.0,0.0,0.0,0.23642232 +341.249666929245,0.06,0.0,0.0,0.0,0.23642232 +341.2594130039215,0.06,0.0,0.0,0.0,0.23642232 +341.26948714256287,0.06,0.0,0.0,0.0,0.23457228 +341.2796149253845,0.06,0.0,0.0,0.0,0.23457228 +341.2896480560303,0.06,0.0,0.0,0.0,0.23457228 +341.2994041442871,0.049999997,0.0,0.0,0.0,0.23457228 +341.30939197540283,0.049999997,0.0,0.0,0.0,0.23457228 +341.3194169998169,0.049999997,0.0,0.0,0.0,0.19572124 +341.3296821117401,0.049999997,0.0,0.0,0.0,0.19572124 +341.3396830558777,0.049999997,0.0,0.0,0.0,0.19572124 +341.34942507743835,0.049999997,0.0,0.0,0.0,0.19572124 +341.3594129085541,0.049999997,0.0,0.0,0.0,0.19572124 +341.3696720600128,0.049999997,0.0,0.0,0.0,0.18462092 +341.3796670436859,0.049999997,0.0,0.0,0.0,0.18462092 +341.3896849155426,0.049999997,0.0,0.0,0.0,0.18462092 +341.3994240760803,0.049999997,0.0,0.0,0.0,0.18462092 +341.40968012809753,0.06,0.0,0.0,0.0,0.18462092 +341.41945695877075,0.07,0.0,0.0,0.0,0.1716706 +341.42939496040344,0.08,0.0,0.0,0.0,0.1716706 +341.4394180774689,0.089999996,0.0,0.0,0.0,0.1716706 +341.44942712783813,0.099999994,0.0,0.0,0.0,0.1716706 +341.45966696739197,0.12,0.0,0.0,0.0,0.1716706 +341.4696829319,0.13,0.0,0.0,0.0,0.21237166 +341.4794409275055,0.13,0.0,0.0,0.0,0.21237166 +341.48963713645935,0.14,0.0,0.0,0.0,0.21237166 +341.49966406822205,0.14,0.0,0.0,0.0,0.21237166 +341.5096490383148,0.14,0.0,0.0,0.0,0.21237166 +341.5196750164032,0.14,0.0,0.0,0.0,0.28822368 +341.529629945755,0.14,0.0,0.0,0.0,0.28822368 +341.5395390987396,0.14,0.0,0.0,0.0,0.28822368 +341.5496461391449,0.14,0.0,0.0,0.0,0.28822368 +341.5596671104431,0.14,0.0,0.0,0.0,0.28822368 +341.56945991516113,0.14,0.0,0.0,0.0,0.26602313 +341.5794460773468,0.14,0.0,0.0,0.0,0.26602313 +341.58944511413574,0.14,0.0,0.0,0.0,0.26602313 +341.59966707229614,0.14,0.0,0.0,0.0,0.26602313 +341.60962295532227,0.14,0.0,0.0,0.0,0.26602313 +341.61942505836487,0.14999999,0.0,0.0,0.0,0.26602313 +341.629390001297,0.14999999,0.0,0.0,0.0,0.26602313 +341.6396470069885,0.14999999,0.0,0.0,0.0,0.26602313 +341.6496341228485,0.14999999,0.0,0.0,0.0,0.26602313 +341.6596839427948,0.14999999,0.0,0.0,0.0,0.26602313 +341.6696629524231,0.14999999,0.0,0.0,0.0,0.24752259 +341.67945313453674,0.14999999,0.0,0.0,0.0,0.24752259 +341.68963599205017,0.14999999,0.0,0.0,0.0,0.24752259 +341.6996400356293,0.14,0.0,0.0,0.0,0.24752259 +341.70938992500305,0.14,0.0,0.0,0.0,0.24752259 +341.71963596343994,0.13,0.0,0.0,0.0,0.26047295 +341.72944498062134,0.13,0.0,0.0,0.0,0.26047295 +341.739648103714,0.12,0.0,0.0,0.0,0.26047295 +341.74964213371277,0.099999994,0.0,0.0,0.0,0.26047295 +341.75964307785034,0.089999996,0.0,0.0,0.0,0.26047295 +341.76945209503174,0.089999996,0.0,0.0,0.0,0.24937265 +341.7794699668884,0.08,0.0,0.0,0.0,0.24937265 +341.78965497016907,0.08,0.0,0.0,0.0,0.24937265 +341.7994589805603,0.08,0.0,0.0,0.0,0.24937265 +341.8094561100006,0.06,0.0,0.0,0.0,0.24937265 +341.819461107254,0.06,0.0,0.0,0.0,0.21237166 +341.8294401168823,0.06,0.0,0.0,0.0,0.21237166 +341.83943796157837,0.049999997,0.0,0.0,0.0,0.21237166 +341.8496060371399,0.049999997,0.0,0.0,0.0,0.21237166 +341.85953402519226,0.04,0.0,0.0,0.0,0.21237166 +341.86966013908386,0.04,0.0,0.0,0.0,0.26047295 +341.8796401023865,0.03,0.0,0.0,0.0,0.26047295 +341.88957595825195,0.03,0.0,0.0,0.0,0.26047295 +341.8996341228485,0.03,0.0,0.0,0.0,0.26047295 +341.90945410728455,0.03,0.0,0.0,0.0,0.26047295 +341.919625043869,0.02,0.0,0.0,0.0,0.30672416 +341.92942690849304,0.02,0.0,0.0,0.0,0.30672416 +341.9396300315857,0.01,0.0,0.0,0.0,0.30672416 +341.9495370388031,0.01,0.0,0.0,0.0,0.30672416 +341.95964193344116,0.01,0.0,0.0,0.0,0.30672416 +341.9694731235504,0.01,0.0,0.0,0.0,0.30857423 +341.97950196266174,0.0,0.0,0.0,0.0,0.30857423 +341.98961997032166,0.0,0.0,0.0,0.0,0.30857423 +341.9994671344757,0.0,0.0,0.0,0.0,0.30857423 +342.00948095321655,0.0,0.0,0.0,0.0,0.30857423 +342.0196280479431,0.0,0.0,0.0,0.0,0.31412435 +342.02943301200867,0.0,0.0,0.0,0.0,0.31412435 +342.03963708877563,0.0,0.0,0.0,0.0,0.31412435 +342.0496230125427,0.0,0.0,0.0,0.0,0.31412435 +342.0595099925995,0.0,0.0,0.0,0.0,0.31412435 +342.0696530342102,0.0,0.0,0.0,0.0,0.3270747 +342.0796151161194,0.0,0.0,0.0,0.0,0.3270747 +342.0895240306854,0.0,0.0,0.0,0.0,0.3270747 +342.09952211380005,0.0,0.0,0.0,0.0,0.3270747 +342.1096329689026,0.0,0.0,0.0,0.0,0.3270747 +342.1196279525757,0.0,0.0,0.0,0.0,0.3270747 +342.12952303886414,0.0,0.0,0.0,0.0,0.3270747 +342.1394169330597,0.0,0.0,0.0,0.0,0.3270747 +342.1494851112366,0.0,0.0,0.0,0.0,0.3270747 +342.1596260070801,0.0,0.0,0.0,0.0,0.3270747 +342.16965103149414,0.0,0.0,0.0,0.0,0.338175 +342.17961406707764,0.0,0.0,0.0,0.0,0.338175 +342.1894860267639,0.0,0.0,0.0,0.0,0.338175 +342.1996240615845,0.0,0.0,0.0,0.0,0.338175 +342.20959997177124,0.0,0.0,0.0,0.0,0.338175 +342.2194199562073,0.0,0.0,0.0,0.0,0.3270747 +342.22950506210327,0.0,0.0,0.0,0.0,0.3270747 +342.2394781112671,0.01,0.0,0.0,0.0,0.3270747 +342.2495319843292,0.02,0.0,0.0,0.0,0.3270747 +342.2596061229706,0.02,0.0,0.0,0.0,0.3270747 +342.26961302757263,0.03,0.0,0.0,0.0,0.35112536 +342.2794189453125,0.03,0.0,0.0,0.0,0.35112536 +342.28958892822266,0.04,0.0,0.0,0.0,0.35112536 +342.2995071411133,0.04,0.0,0.0,0.0,0.35112536 +342.3095049858093,0.049999997,0.0,0.0,0.0,0.35112536 +342.31950092315674,0.049999997,0.0,0.0,0.0,0.3418751 +342.3294610977173,0.049999997,0.0,0.0,0.0,0.3418751 +342.33960914611816,0.06,0.0,0.0,0.0,0.3418751 +342.34961700439453,0.07,0.0,0.0,0.0,0.3418751 +342.3595039844513,0.07,0.0,0.0,0.0,0.3418751 +342.36950397491455,0.07,0.0,0.0,0.0,0.38442627 +342.3795781135559,0.07,0.0,0.0,0.0,0.38442627 +342.38960695266724,0.08,0.0,0.0,0.0,0.38442627 +342.3996160030365,0.08,0.0,0.0,0.0,0.38442627 +342.40948700904846,0.08,0.0,0.0,0.0,0.38442627 +342.41952300071716,0.08,0.0,0.0,0.0,0.4103269 +342.42946195602417,0.089999996,0.0,0.0,0.0,0.4103269 +342.43960404396057,0.089999996,0.0,0.0,0.0,0.4103269 +342.44956493377686,0.089999996,0.0,0.0,0.0,0.4103269 +342.4595060348511,0.089999996,0.0,0.0,0.0,0.4103269 +342.4696409702301,0.089999996,0.0,0.0,0.0,0.3881263 +342.4796121120453,0.099999994,0.0,0.0,0.0,0.3881263 +342.48950600624084,0.099999994,0.0,0.0,0.0,0.3881263 +342.4995789527893,0.099999994,0.0,0.0,0.0,0.3881263 +342.50941014289856,0.099999994,0.0,0.0,0.0,0.3881263 +342.51940512657166,0.099999994,0.0,0.0,0.0,0.39182645 +342.52947306632996,0.11,0.0,0.0,0.0,0.39182645 +342.5395839214325,0.11,0.0,0.0,0.0,0.39182645 +342.5494990348816,0.11,0.0,0.0,0.0,0.39182645 +342.55958890914917,0.12,0.0,0.0,0.0,0.39182645 +342.56962299346924,0.12,0.0,0.0,0.0,0.39922667 +342.57961893081665,0.12,0.0,0.0,0.0,0.39922667 +342.5895800590515,0.13,0.0,0.0,0.0,0.39922667 +342.59954595565796,0.13,0.0,0.0,0.0,0.39922667 +342.6095521450043,0.13,0.0,0.0,0.0,0.39922667 +342.6195409297943,0.13,0.0,0.0,0.0,0.4676785 +342.62949895858765,0.13,0.0,0.0,0.0,0.4676785 +342.6395311355591,0.13,0.0,0.0,0.0,0.4676785 +342.649542093277,0.13,0.0,0.0,0.0,0.4676785 +342.65959095954895,0.14,0.0,0.0,0.0,0.4676785 +342.6694600582123,0.14,0.0,0.0,0.0,0.4621283 +342.6796009540558,0.14,0.0,0.0,0.0,0.4621283 +342.6894760131836,0.14,0.0,0.0,0.0,0.4621283 +342.6995949745178,0.14,0.0,0.0,0.0,0.4621283 +342.7095229625702,0.14,0.0,0.0,0.0,0.4621283 +342.7195680141449,0.14999999,0.0,0.0,0.0,0.4214272 +342.7294890880585,0.14999999,0.0,0.0,0.0,0.4214272 +342.7395830154419,0.14999999,0.0,0.0,0.0,0.4214272 +342.749547958374,0.14999999,0.0,0.0,0.0,0.4214272 +342.7595739364624,0.14999999,0.0,0.0,0.0,0.4214272 +342.7695851325989,0.14999999,0.0,0.0,0.0,0.3492753 +342.7794699668884,0.16,0.0,0.0,0.0,0.3492753 +342.78958201408386,0.16,0.0,0.0,0.0,0.3492753 +342.7995710372925,0.16,0.0,0.0,0.0,0.3492753 +342.8095510005951,0.16,0.0,0.0,0.0,0.3492753 +342.81957602500916,0.14999999,0.0,0.0,0.0,0.34372514 +342.8294451236725,0.14999999,0.0,0.0,0.0,0.34372514 +342.83956813812256,0.14999999,0.0,0.0,0.0,0.34372514 +342.8495719432831,0.14999999,0.0,0.0,0.0,0.34372514 +342.85955905914307,0.13,0.0,0.0,0.0,0.34372514 +342.8695819377899,0.12,0.0,0.0,0.0,0.3529754 +342.8795690536499,0.11,0.0,0.0,0.0,0.3529754 +342.88956809043884,0.11,0.0,0.0,0.0,0.3529754 +342.89955711364746,0.099999994,0.0,0.0,0.0,0.3529754 +342.9095540046692,0.08,3.030303,3.030303,0.0,0.3529754 +342.9195599555969,0.07,7.575758,7.575758,0.0,0.34372514 +342.9295039176941,0.07,7.575758,7.575758,0.0,0.34372514 +342.93958592414856,0.06,10.606061,10.606061,0.0,0.34372514 +342.94955110549927,0.049999997,18.939394,18.939394,0.0,0.34372514 +342.95957612991333,0.04,25.0,25.0,0.0,0.34372514 +342.9695839881897,0.04,25.0,25.0,0.0,0.338175 +342.9795479774475,0.04,31.818182,31.818182,0.009372071,0.338175 +342.98959398269653,0.02,42.424244,42.424244,0.028116215,0.338175 +342.9995620250702,0.02,46.21212,46.21212,0.046860356,0.338175 +343.00945591926575,0.02,46.21212,46.21212,0.05623243,0.338175 +343.0195779800415,0.01,52.272724,52.272724,0.07497657,0.27897343 +343.0295159816742,0.01,52.272724,52.272724,0.08434864,0.27897343 +343.0395519733429,0.0,64.393936,64.393936,0.10309278,0.27897343 +343.04957008361816,0.0,64.393936,64.393936,0.11246486,0.27897343 +343.0595691204071,0.0,51.515152,51.515152,0.12183693,0.27897343 +343.06956911087036,0.0,27.272728,27.272728,0.131209,0.26417306 +343.0795979499817,0.0,27.272728,27.272728,0.14058107,0.26417306 +343.0895791053772,0.0,20.454544,20.454544,0.14995314,0.26417306 +343.09957098960876,0.0,25.757576,25.757576,0.15932521,0.26417306 +343.10958194732666,0.0,37.121216,37.121216,0.15932521,0.26417306 +343.11956906318665,0.0,42.424244,42.424244,0.16869728,0.1827709 +343.1295750141144,0.0,42.424244,42.424244,0.16869728,0.1827709 +343.1394760608673,0.0,47.727272,47.727272,0.17806935,0.1827709 +343.14941906929016,0.0,51.515152,51.515152,0.18744142,0.1827709 +343.15957593917847,0.0,56.818184,56.818184,0.18744142,0.1827709 +343.16957807540894,0.0,56.818184,56.818184,0.1968135,0.14021976 +343.17958402633667,0.0,68.18182,68.18182,0.1968135,0.14021976 +343.1895890235901,0.0,56.060604,56.060604,0.20618556,0.14021976 +343.1995871067047,0.0,48.484848,48.484848,0.20618556,0.14021976 +343.2096040248871,0.0,48.484848,48.484848,0.21555763,0.14021976 +343.21957993507385,0.0,42.424244,42.424244,0.22492972,0.04031712 +343.22949600219727,0.0,42.424244,42.424244,0.22492972,0.04031712 +343.2395520210266,0.0,36.363636,36.363636,0.22492972,0.04031712 +343.24956703186035,0.0,34.848484,34.848484,0.22492972,0.04031712 +343.25959396362305,0.0,34.09091,34.09091,0.23430179,0.04031712 +343.26959800720215,0.0,30.303032,30.303032,0.23430179,0.06066765 +343.2796440124512,0.0,28.78788,28.78788,0.23430179,0.06066765 +343.2894549369812,0.0,28.78788,28.78788,0.23430179,0.06066765 +343.2995910644531,0.0,28.78788,28.78788,0.23430179,0.06066765 +343.3096089363098,0.0,28.78788,28.78788,0.23430179,0.06066765 +343.3195879459381,0.0,31.060606,31.060606,0.24367386,0.010716328 +343.32950592041016,0.0,31.060606,31.060606,0.23430179,0.010716328 +343.33959913253784,0.0,33.333336,33.333336,0.23430179,0.010716328 +343.3495919704437,0.0,34.09091,34.09091,0.23430179,0.010716328 +343.35960507392883,0.0,36.363636,36.363636,0.22492972,0.010716328 +343.3695170879364,0.0,36.363636,36.363636,0.22492972,0.038467064 +343.37942910194397,0.0,39.39394,39.39394,0.22492972,0.038467064 +343.3893880844116,0.0,42.424244,42.424244,0.23430179,0.038467064 +343.3995759487152,0.0,46.21212,46.21212,0.24367386,0.038467064 +343.4096009731293,0.0,49.242424,49.242424,0.24367386,0.038467064 +343.41962695121765,0.0,51.515152,51.515152,0.24367386,-0.015184363 +343.429505109787,0.0,51.515152,51.515152,0.24367386,-0.015184363 +343.43961811065674,0.0,55.30303,55.30303,0.25304592,-0.015184363 +343.4496030807495,0.0,55.30303,55.30303,0.25304592,-0.015184363 +343.4596230983734,0.0,62.121212,62.121212,0.262418,-0.015184363 +343.4695870876312,0.0,62.121212,62.121212,0.25304592,-0.0077841706 +343.47940397262573,0.0,68.93939,68.93939,0.25304592,-0.0077841706 +343.489413022995,0.0,70.454544,70.454544,0.25304592,-0.0077841706 +343.49938893318176,0.0,71.21212,71.21212,0.262418,-0.0077841706 +343.5096139907837,0.0,71.21212,71.21212,0.27179006,-0.0077841706 +343.51940298080444,0.0,71.21212,71.21212,0.27179006,-0.020734508 +343.5295329093933,0.0,72.72727,72.72727,0.27179006,-0.020734508 +343.53962993621826,0.0,74.24243,74.24243,0.27179006,-0.020734508 +343.5493919849396,0.0,74.24243,74.24243,0.27179006,-0.020734508 +343.5593979358673,0.0,75.0,75.0,0.27179006,-0.020734508 +343.5693941116333,0.0,73.48485,73.48485,0.27179006,-0.0040840744 +343.579607963562,0.0,71.21212,71.21212,0.27179006,-0.0040840744 +343.5894091129303,0.0,68.93939,68.93939,0.262418,-0.0040840744 +343.59961104393005,0.0,65.90909,65.90909,0.27179006,-0.0040840744 +343.6093990802765,0.0,65.90909,65.90909,0.27179006,-0.0040840744 +343.6193959712982,0.0,60.606064,60.606064,0.27179006,-0.054035395 +343.62952709198,0.0,57.57576,57.57576,0.27179006,-0.054035395 +343.63939213752747,0.0,53.78788,53.78788,0.27179006,-0.054035395 +343.6496329307556,0.0,50.757576,50.757576,0.262418,-0.054035395 +343.65960693359375,0.0,46.21212,46.21212,0.262418,-0.054035395 +343.6695411205292,0.0,41.666668,41.666668,0.25304592,-0.05588545 +343.67940402030945,0.0,38.636364,38.636364,0.262418,-0.05588545 +343.6893889904022,0.0,35.60606,35.60606,0.25304592,-0.05588545 +343.6994090080261,0.0,33.333336,33.333336,0.25304592,-0.05588545 +343.70942306518555,0.0,31.818182,31.818182,0.25304592,-0.05588545 +343.71939492225647,0.0,30.303032,30.303032,0.24367386,-0.10953687 +343.72950410842896,0.0,28.030302,28.030302,0.24367386,-0.10953687 +343.7394061088562,0.0,25.0,25.0,0.24367386,-0.10953687 +343.7494161128998,0.0,21.969696,21.969696,0.23430179,-0.10953687 +343.7594361305237,0.0,23.484848,23.484848,0.24367386,-0.10953687 +343.76941204071045,0.0,27.272728,27.272728,0.24367386,-0.12618731 +343.77956199645996,0.0,32.575756,32.575756,0.24367386,-0.12618731 +343.7895131111145,0.0,37.121216,37.121216,0.24367386,-0.12618731 +343.799427986145,0.0,40.90909,40.90909,0.22492972,-0.12618731 +343.80940794944763,0.0,45.454548,45.454548,0.22492972,-0.12618731 +343.8193941116333,0.0,49.242424,49.242424,0.22492972,-0.12803736 +343.8295040130615,0.0,51.515152,51.515152,0.23430179,-0.12803736 +343.83941102027893,0.0,53.78788,53.78788,0.22492972,-0.12803736 +343.8494200706482,0.0,56.060604,56.060604,0.22492972,-0.12803736 +343.85942006111145,0.0,59.090908,59.090908,0.23430179,-0.12803736 +343.86942195892334,0.0,62.121212,62.121212,0.23430179,-0.12618731 +343.8794219493866,0.0,65.90909,65.90909,0.23430179,-0.12618731 +343.8894190788269,0.0,68.18182,68.18182,0.23430179,-0.12618731 +343.89944100379944,0.0,63.636364,63.636364,0.23430179,-0.12618731 +343.9094281196594,0.0,59.090908,59.090908,0.23430179,-0.12618731 +343.91956996917725,0.0,53.78788,53.78788,0.23430179,-0.152088 +343.92943501472473,0.0,48.484848,48.484848,0.23430179,-0.152088 +343.9394290447235,0.0,43.939392,43.939392,0.24367386,-0.152088 +343.9494481086731,0.0,40.90909,40.90909,0.24367386,-0.152088 +343.9594349861145,0.0,38.636364,38.636364,0.24367386,-0.152088 +343.9694290161133,0.0,37.121216,37.121216,0.25304592,-0.18353882 +343.97948694229126,0.0,34.848484,34.848484,0.25304592,-0.18353882 +343.9894380569458,0.0,33.333336,33.333336,0.25304592,-0.18353882 +343.9994249343872,0.0,31.060606,31.060606,0.25304592,-0.18353882 +344.0094289779663,0.0,28.030302,28.030302,0.24367386,-0.18353882 +344.0195801258087,0.0,25.0,25.0,0.24367386,-0.20388938 +344.0295310020447,0.0,21.969696,21.969696,0.24367386,-0.20388938 +344.0394380092621,0.0,24.242424,24.242424,0.24367386,-0.20388938 +344.04958605766296,0.0,29.545454,29.545454,0.24367386,-0.20388938 +344.059494972229,0.0,34.848484,34.848484,0.23430179,-0.20388938 +344.06943702697754,0.0,39.39394,39.39394,0.23430179,-0.20203933 +344.0794610977173,0.0,43.181816,43.181816,0.23430179,-0.20203933 +344.08942914009094,0.0,45.454548,45.454548,0.24367386,-0.20203933 +344.0994710922241,0.0,46.969696,46.969696,0.23430179,-0.20203933 +344.1094341278076,0.0,47.727272,47.727272,0.24367386,-0.20203933 +344.11943793296814,0.0,47.727272,47.727272,0.23430179,-0.26864108 +344.1295440196991,0.0,46.969696,46.969696,0.23430179,-0.26864108 +344.1394259929657,0.0,46.969696,46.969696,0.23430179,-0.26864108 +344.14961314201355,0.0,46.969696,46.969696,0.22492972,-0.26864108 +344.15944504737854,0.0,46.969696,46.969696,0.22492972,-0.26864108 +344.16944193840027,0.0,46.21212,46.21212,0.20618556,-0.264941 +344.17943692207336,0.0,46.21212,46.21212,0.20618556,-0.264941 +344.1894500255585,0.0,45.454548,45.454548,0.1968135,-0.264941 +344.1994459629059,0.0,44.696968,44.696968,0.1968135,-0.264941 +344.20946407318115,0.0,43.939392,43.939392,0.18744142,-0.264941 +344.21945214271545,0.0,42.424244,42.424244,0.18744142,-0.3555934 +344.22952604293823,0.0,41.666668,41.666668,0.18744142,-0.3555934 +344.2394349575043,0.0,41.666668,41.666668,0.18744142,-0.3555934 +344.2494521141052,0.0,41.666668,41.666668,0.18744142,-0.3555934 +344.25946402549744,0.0,41.666668,41.666668,0.17806935,-0.3555934 +344.2695779800415,0.0,41.666668,41.666668,0.16869728,-0.42589524 +344.2794599533081,0.0,41.666668,41.666668,0.17806935,-0.42589524 +344.2894699573517,0.0,41.666668,41.666668,0.16869728,-0.42589524 +344.29946303367615,0.0,41.666668,41.666668,0.16869728,-0.42589524 +344.3094539642334,0.0,41.666668,41.666668,0.16869728,-0.42589524 +344.31944513320923,0.0,41.666668,41.666668,0.16869728,-0.44624582 +344.32951402664185,0.0,40.90909,40.90909,0.15932521,-0.44624582 +344.339467048645,0.0,40.90909,40.90909,0.15932521,-0.44624582 +344.3494520187378,0.0,41.666668,41.666668,0.15932521,-0.44624582 +344.3594501018524,0.0,41.666668,41.666668,0.15932521,-0.44624582 +344.36945509910583,0.0,41.666668,41.666668,0.15932521,-0.4721465 +344.37945795059204,0.0,41.666668,41.666668,0.15932521,-0.4721465 +344.38947796821594,0.0,40.90909,40.90909,0.14995314,-0.4721465 +344.39945697784424,0.0,39.39394,39.39394,0.14995314,-0.4721465 +344.40946912765503,0.0,37.121216,37.121216,0.14058107,-0.4721465 +344.41947197914124,0.0,34.848484,34.848484,0.14058107,-0.49989724 +344.4295160770416,0.0,33.333336,33.333336,0.12183693,-0.49989724 +344.4394700527191,0.0,31.060606,31.060606,0.11246486,-0.49989724 +344.4494979381561,0.0,29.545454,29.545454,0.10309278,-0.49989724 +344.45946407318115,0.0,27.272728,27.272728,0.10309278,-0.49989724 +344.4694781303406,0.0,25.757576,25.757576,0.09372071,-0.5054473 +344.4794850349426,0.0,24.242424,24.242424,0.08434864,-0.5054473 +344.48946499824524,0.0,22.727274,22.727274,0.0656045,-0.5054473 +344.49946093559265,0.0,21.212122,21.212122,0.05623243,-0.5054473 +344.5094850063324,0.0,19.69697,19.69697,0.046860356,-0.5054473 +344.51947712898254,0.0,18.181818,18.181818,0.028116215,-0.566499 +344.5295159816742,0.0,17.424242,17.424242,0.018744143,-0.566499 +344.53948402404785,0.0,15.909091,15.909091,0.009372071,-0.566499 +344.5495009422302,0.0,15.151516,15.151516,0.009372071,-0.566499 +344.55948305130005,0.0,13.636364,13.636364,0.0,-0.566499 +344.5694770812988,0.0,12.878788,12.878788,0.0,-0.5923997 +344.5794839859009,0.0,12.121212,12.121212,0.0,-0.5923997 +344.5894820690155,0.0,11.363637,11.363637,0.0,-0.5923997 +344.59948110580444,0.0,10.606061,10.606061,0.0,-0.5923997 +344.60958194732666,0.0,9.848485,9.848485,0.0,-0.5923997 +344.61949396133423,0.0,9.090909,9.090909,0.0,-0.6460511 +344.62953209877014,0.0,8.333334,8.333334,0.0,-0.6460511 +344.63950300216675,0.0,7.575758,7.575758,0.0,-0.6460511 +344.64948296546936,0.0,6.818182,6.818182,0.0,-0.6460511 +344.6595070362091,0.0,6.818182,6.818182,0.0,-0.6460511 +344.6694989204407,0.0,6.060606,6.060606,0.0,-0.6978525 +344.6795709133148,0.0,5.3030305,5.3030305,0.0,-0.6978525 +344.68950295448303,0.0,4.5454545,4.5454545,0.0,-0.6978525 +344.6994891166687,0.0,4.5454545,4.5454545,0.0,-0.6978525 +344.7094979286194,0.0,3.787879,3.787879,0.0,-0.6978525 +344.7195191383362,0.0,3.787879,3.787879,0.0,-0.81255555 +344.72950410842896,0.0,3.787879,3.787879,0.0,-0.81255555 +344.7393960952759,0.0,3.030303,3.030303,0.0,-0.81255555 +344.74951004981995,0.0,3.030303,3.030303,0.0,-0.81255555 +344.75950598716736,0.0,3.030303,3.030303,0.0,-0.81255555 +344.76950693130493,0.0,2.2727273,2.2727273,0.0,-0.79590505 +344.7795069217682,0.0,2.2727273,2.2727273,0.0,-0.79590505 +344.7894949913025,0.0,2.2727273,2.2727273,0.0,-0.79590505 +344.7994909286499,0.0,1.5151515,1.5151515,0.0,-0.79590505 +344.8094849586487,0.0,1.5151515,1.5151515,0.0,-0.79590505 +344.8194971084595,0.0,1.5151515,1.5151515,0.0,-0.8218058 +344.82951402664185,0.0,0.75757575,0.75757575,0.0,-0.8218058 +344.8395309448242,0.0,0.75757575,0.75757575,0.0,-0.8218058 +344.8494961261749,0.0,0.75757575,0.75757575,0.0,-0.8218058 +344.85948300361633,0.0,0.75757575,0.75757575,0.0,-0.8218058 +344.8695011138916,0.0,0.0,0.0,0.0,-0.81810564 +344.8795781135559,0.0,0.0,0.0,0.0,-0.81810564 +344.88951802253723,0.0,0.0,0.0,0.0,-0.81810564 +344.899521112442,0.0,0.0,0.0,0.0,-0.81810564 +344.9095160961151,0.0,0.0,0.0,0.0,-0.81810564 +344.9195439815521,0.0,0.0,0.0,0.0,-0.60349995 +344.9295189380646,0.0,0.0,0.0,0.0,-0.60349995 +344.93953800201416,0.0,0.0,0.0,0.0,-0.60349995 +344.94952607154846,0.0,0.0,0.0,0.0,-0.60349995 +344.95952010154724,0.0,0.0,0.0,0.0,-0.60349995 +344.96939492225647,0.0,0.0,0.0,0.0,-0.63495076 +344.97950410842896,0.0,0.0,0.0,0.0,-0.63495076 +344.98954701423645,0.0,0.0,0.0,0.0,-0.63495076 +344.9995081424713,0.0,0.0,0.0,0.0,-0.63495076 +345.0095341205597,0.0,0.0,0.0,0.0,-0.63495076 +345.01951694488525,0.0,0.0,0.0,0.0,-0.7478038 +345.0295259952545,0.0,0.0,0.0,0.0,-0.7478038 +345.03953099250793,0.0,0.0,0.0,0.0,-0.7478038 +345.04953694343567,0.0,0.0,0.0,0.0,-0.7478038 +345.0595121383667,0.0,0.0,0.0,0.0,-0.7478038 +345.06951808929443,0.0,0.0,0.0,0.0,-0.7700044 +345.07953000068665,0.0,0.0,0.0,0.0,-0.7700044 +345.0895299911499,0.0,0.0,0.0,0.0,-0.7700044 +345.0995590686798,0.0,0.0,0.0,0.0,-0.7700044 +345.1095509529114,0.0,0.0,0.0,0.0,-0.7700044 +345.11953496932983,0.0,0.0,0.0,0.0,-0.8051553 +345.1295311450958,0.0,0.0,0.0,0.0,-0.8051553 +345.1395161151886,0.0,0.0,0.0,0.0,-0.8051553 +345.1495449542999,0.0,0.0,0.0,0.0,-0.8051553 +345.15952491760254,0.0,0.0,0.0,0.0,-0.8051553 +345.1693890094757,0.0,0.0,0.0,0.0,-0.8754572 +345.17954993247986,0.0,0.0,0.0,0.0,-0.8754572 +345.18954205513,0.0,0.0,0.0,0.0,-0.8754572 +345.19954895973206,0.0,0.0,0.0,0.0,-0.8754572 +345.20955991744995,0.0,0.0,0.0,0.0,-0.8754572 +345.21953797340393,0.0,0.0,0.0,0.0,-1.053062 +345.22945499420166,0.0,0.0,0.0,0.0,-1.053062 +345.2395510673523,0.0,0.0,0.0,0.0,-1.053062 +345.24953508377075,0.0,0.0,0.0,0.0,-1.053062 +345.2595319747925,0.0,0.0,0.0,0.0,-1.053062 +345.2695300579071,0.0,0.0,0.0,0.0,-1.0364114 +345.2795479297638,0.0,0.0,0.0,0.0,-1.0364114 +345.28954696655273,0.0,0.0,0.0,0.0,-1.0364114 +345.2995479106903,0.0,0.0,0.0,0.0,-1.0364114 +345.3095510005951,0.0,0.0,0.0,0.0,-1.0364114 +345.3195390701294,0.0,0.0,0.0,0.0,-1.0049607 +345.3295509815216,0.0,0.0,0.0,0.0,-1.0049607 +345.33954095840454,0.0,0.0,0.0,0.0,-1.0049607 +345.3495600223541,0.0,0.0,0.0,0.0,-1.0049607 +345.35954213142395,0.0,0.0,0.0,0.0,-1.0049607 +345.3695740699768,0.0,0.0,0.0,0.0,-0.98646015 +345.3796560764313,0.0,0.0,0.0,0.0,-0.98646015 +345.3895490169525,0.0,0.0,0.0,0.0,-0.98646015 +345.39946603775024,0.0,0.0,0.0,0.0,-0.98646015 +345.4095549583435,0.0,0.0,0.0,0.0,-0.98646015 +345.4195411205292,0.0,0.0,0.0,0.0,-0.99756044 +345.4295771121979,0.0,0.0,0.0,0.0,-0.99756044 +345.43954610824585,0.0,0.0,0.0,0.0,-0.99756044 +345.4495711326599,0.0,0.0,0.0,0.0,-0.99756044 +345.4595639705658,0.0,0.0,0.0,0.0,-0.99756044 +345.46957302093506,0.0,0.0,0.0,0.0,-0.96425956 +345.4795789718628,0.0,0.0,0.0,0.0,-0.96425956 +345.48957800865173,0.0,0.0,0.0,0.0,-0.96425956 +345.4995720386505,0.0,0.0,0.0,0.0,-0.96425956 +345.5095660686493,0.0,0.0,0.0,0.0,-0.96425956 +345.51956701278687,0.0,0.0,0.0,0.0,-0.942059 +345.52967596054077,0.0,0.0,0.0,0.0,-0.942059 +345.5395669937134,0.0,0.0,0.0,0.0,-0.942059 +345.5495800971985,0.0,0.0,0.0,0.0,-0.942059 +345.55959606170654,0.0,0.0,0.0,0.0,-0.942059 +345.5695769786835,0.0,0.0,0.0,0.0,-0.94945925 +345.57957696914673,0.0,0.0,0.0,0.0,-0.94945925 +345.58957600593567,0.0,0.0,0.0,0.0,-0.94945925 +345.59957098960876,0.0,0.0,0.0,0.0,-0.94945925 +345.6096839904785,0.0,0.0,0.0,0.0,-0.94945925 +345.61957693099976,0.0,0.0,0.0,0.0,-0.9346587 +345.6295919418335,0.0,0.0,0.0,0.0,-0.9346587 +345.63958191871643,0.0,0.0,0.0,0.0,-0.9346587 +345.6495740413666,0.0,0.0,0.0,0.0,-0.9346587 +345.65940403938293,0.0,0.0,0.0,0.0,-0.9346587 +345.66958713531494,0.0,0.0,0.0,0.0,-0.70895284 +345.6796281337738,0.01,0.0,0.0,0.0,-0.70895284 +345.6895809173584,0.02,0.0,0.0,0.0,-0.70895284 +345.6996200084686,0.02,0.0,0.0,0.0,-0.70895284 +345.70958709716797,0.03,0.0,0.0,0.0,-0.70895284 +345.7195870876312,0.03,0.0,0.0,0.0,-0.6442011 +345.72958612442017,0.04,0.0,0.0,0.0,-0.6442011 +345.7395749092102,0.049999997,0.0,0.0,0.0,-0.6442011 +345.7495939731598,0.049999997,0.0,0.0,0.0,-0.6442011 +345.75957202911377,0.06,0.0,0.0,0.0,-0.6442011 +345.76966404914856,0.06,0.0,0.0,0.0,-0.6830521 +345.7796070575714,0.07,0.0,0.0,0.0,-0.6830521 +345.78945207595825,0.07,0.0,0.0,0.0,-0.6830521 +345.79957914352417,0.08,0.0,0.0,0.0,-0.6830521 +345.80958700180054,0.08,0.0,0.0,0.0,-0.6830521 +345.81960010528564,0.089999996,0.0,0.0,0.0,-0.677502 +345.8296151161194,0.089999996,0.0,0.0,0.0,-0.677502 +345.8396010398865,0.099999994,0.0,0.0,0.0,-0.677502 +345.8496141433716,0.099999994,0.0,0.0,0.0,-0.677502 +345.85959696769714,0.11,0.0,0.0,0.0,-0.677502 +345.86960792541504,0.12,0.0,0.0,0.0,-0.6664016 +345.8796260356903,0.12,0.0,0.0,0.0,-0.6664016 +345.8896110057831,0.13,0.0,0.0,0.0,-0.6664016 +345.89950704574585,0.14,0.0,0.0,0.0,-0.6664016 +345.90963411331177,0.14,0.0,0.0,0.0,-0.6664016 +345.91959595680237,0.14999999,0.0,0.0,0.0,-0.64975125 +345.9295971393585,0.16,0.0,0.0,0.0,-0.64975125 +345.93965196609497,0.16,0.0,0.0,0.0,-0.64975125 +345.94962906837463,0.17,0.0,0.0,0.0,-0.64975125 +345.9596149921417,0.17,0.0,0.0,0.0,-0.64975125 +345.969605922699,0.17999999,0.0,0.0,0.0,-0.6904522 +345.9796280860901,0.19,0.0,0.0,0.0,-0.6904522 +345.9894781112671,0.19,0.0,0.0,0.0,-0.6904522 +345.9994750022888,0.19999999,0.0,0.0,0.0,-0.6904522 +346.00955605506897,0.21,0.0,0.0,0.0,-0.6904522 +346.01962995529175,0.22,0.0,0.0,0.0,-0.6645516 +346.0296080112457,0.22,0.0,0.0,0.0,-0.6645516 +346.03964591026306,0.22999999,0.0,0.0,0.0,-0.6645516 +346.049556016922,0.24,0.0,0.0,0.0,-0.6645516 +346.0596179962158,0.24,0.0,0.0,0.0,-0.6645516 +346.0696129798889,0.25,0.0,0.0,0.0,-0.6738019 +346.0794279575348,0.25,0.0,0.0,0.0,-0.6738019 +346.0895531177521,0.26,0.0,0.0,0.0,-0.6738019 +346.0996379852295,0.26999998,0.0,0.0,0.0,-0.6738019 +346.1096200942993,0.26999998,0.0,0.0,0.0,-0.6738019 +346.11964106559753,0.26999998,0.0,0.0,0.0,-0.679352 +346.1295840740204,0.28,0.0,0.0,0.0,-0.679352 +346.1395649909973,0.28,0.0,0.0,0.0,-0.679352 +346.1495690345764,0.28,0.0,0.0,0.0,-0.679352 +346.15955114364624,0.29,0.0,0.0,0.0,-0.679352 +346.1696300506592,0.29,0.0,0.0,0.0,-0.6664016 +346.1795630455017,0.29,0.0,0.0,0.0,-0.6664016 +346.18956303596497,0.29,0.0,0.0,0.0,-0.6664016 +346.19956398010254,0.29,0.0,0.0,0.0,-0.6664016 +346.2095549106598,0.29,0.0,0.0,0.0,-0.6664016 +346.2195761203766,0.29,0.0,0.0,0.0,-0.6886023 +346.2294690608978,0.29,0.0,0.0,0.0,-0.6886023 +346.2395761013031,0.29999998,0.0,0.0,0.0,-0.6886023 +346.24955105781555,0.29999998,0.0,0.0,0.0,-0.6886023 +346.25942301750183,0.29999998,0.0,0.0,0.0,-0.6886023 +346.2696499824524,0.29999998,0.0,0.0,0.0,-0.67565185 +346.2795441150665,0.29999998,0.0,0.0,0.0,-0.67565185 +346.2895290851593,0.29999998,0.0,0.0,0.0,-0.67565185 +346.29954195022583,0.29999998,0.0,0.0,0.0,-0.67565185 +346.3095750808716,0.29999998,0.0,0.0,0.0,-0.67565185 +346.3195450305939,0.29999998,0.0,0.0,0.0,-0.66825175 +346.32954502105713,0.29999998,0.0,0.0,0.0,-0.66825175 +346.3395631313324,0.29999998,0.0,0.0,0.0,-0.66825175 +346.34954595565796,0.29,0.0,0.0,0.0,-0.66825175 +346.35955905914307,0.29,0.0,0.0,0.0,-0.66825175 +346.36956000328064,0.29,0.0,0.0,0.0,-0.679352 +346.3795609474182,0.28,0.0,0.0,0.0,-0.679352 +346.3895809650421,0.26999998,0.0,0.0,0.0,-0.679352 +346.39954805374146,0.26999998,0.0,0.0,0.0,-0.679352 +346.4095230102539,0.26999998,0.0,0.0,0.0,-0.679352 +346.41954493522644,0.26,0.0,0.0,0.0,-0.5350482 +346.4294800758362,0.26,0.0,0.0,0.0,-0.5350482 +346.4395561218262,0.26,0.0,0.0,0.0,-0.5350482 +346.4495220184326,0.26,0.0,0.0,0.0,-0.5350482 +346.4595730304718,0.25,0.0,0.0,0.0,-0.5350482 +346.4695520401001,0.25,0.0,0.0,0.0,-0.29269174 +346.4795799255371,0.24,0.0,0.0,0.0,-0.29269174 +346.48951506614685,0.24,0.0,0.0,0.0,-0.29269174 +346.4995400905609,0.24,0.0,0.0,0.0,-0.29269174 +346.5095570087433,0.22999999,0.0,0.0,0.0,-0.29269174 +346.51954913139343,0.22999999,0.0,0.0,0.0,-0.120637156 +346.52940797805786,0.22,0.0,0.0,0.0,-0.120637156 +346.53958201408386,0.22,0.0,0.0,0.0,-0.120637156 +346.5495409965515,0.22,0.0,0.0,0.0,-0.120637156 +346.55958008766174,0.21,0.0,0.0,0.0,-0.120637156 +346.5695381164551,0.21,0.0,0.0,0.0,0.06436774 +346.57954597473145,0.21,0.0,0.0,0.0,0.06436774 +346.5895371437073,0.21,0.0,0.0,0.0,0.06436774 +346.59953713417053,0.19999999,0.0,0.0,0.0,0.06436774 +346.60952591896057,0.19999999,0.0,0.0,0.0,0.06436774 +346.6195650100708,0.19999999,0.0,0.0,0.0,0.22532202 +346.62957096099854,0.19999999,0.0,0.0,0.0,0.22532202 +346.639573097229,0.19999999,0.0,0.0,0.0,0.22532202 +346.64959812164307,0.19999999,0.0,0.0,0.0,0.22532202 +346.6595320701599,0.19999999,0.0,0.0,0.0,0.22532202 +346.669557094574,0.19,0.0,0.0,0.0,0.3529754 +346.67954301834106,0.19,0.0,0.0,0.0,0.3529754 +346.6895229816437,0.19,0.0,0.0,0.0,0.3529754 +346.6995379924774,0.19,0.0,0.0,0.0,0.3529754 +346.70953702926636,0.19,0.0,0.0,0.0,0.3529754 +346.7195420265198,0.19,0.0,0.0,0.0,0.3714759 +346.72951912879944,0.19,0.0,0.0,0.0,0.3714759 +346.73948907852173,0.19999999,0.0,0.0,0.0,0.3714759 +346.74953603744507,0.19999999,0.0,0.0,0.0,0.3714759 +346.7595319747925,0.19999999,0.0,0.0,0.0,0.3714759 +346.76952600479126,0.19999999,0.0,0.0,0.0,0.38442627 +346.7794280052185,0.19999999,0.0,0.0,0.0,0.38442627 +346.78953099250793,0.19999999,0.0,0.0,0.0,0.38442627 +346.79958391189575,0.19999999,0.0,0.0,0.0,0.38442627 +346.80949306488037,0.19999999,0.0,0.0,0.0,0.38442627 +346.8195309638977,0.19999999,0.0,0.0,0.0,0.563881 +346.829558134079,0.19999999,0.0,0.0,0.0,0.563881 +346.8395309448242,0.19999999,0.0,0.0,0.0,0.563881 +346.8495271205902,0.19999999,0.0,0.0,0.0,0.563881 +346.85953307151794,0.19999999,0.0,0.0,0.0,0.563881 +346.8695299625397,0.19999999,0.0,0.0,0.0,0.6286328 +346.8795130252838,0.19999999,0.0,0.0,0.0,0.6286328 +346.88956809043884,0.19999999,0.0,0.0,0.0,0.6286328 +346.8995130062103,0.19999999,0.0,0.0,0.0,0.6286328 +346.90951204299927,0.19999999,0.0,0.0,0.0,0.6286328 +346.91950702667236,0.19999999,0.0,0.0,0.0,0.639733 +346.92951011657715,0.19999999,0.0,0.0,0.0,0.639733 +346.9395079612732,0.21,0.0,0.0,0.0,0.639733 +346.94955110549927,0.21,0.0,0.0,0.0,0.639733 +346.9595260620117,0.21,0.0,0.0,0.0,0.639733 +346.9695129394531,0.21,0.0,0.0,0.0,0.6563835 +346.9795241355896,0.21,0.0,0.0,0.0,0.6563835 +346.9895119667053,0.21,0.0,0.0,0.0,0.6563835 +346.99952006340027,0.21,0.0,0.0,0.0,0.6563835 +347.00949811935425,0.21,0.0,0.0,0.0,0.6563835 +347.0195050239563,0.21,0.0,0.0,0.0,0.64528316 +347.029501914978,0.21,0.0,0.0,0.0,0.64528316 +347.039519071579,0.21,0.0,0.0,0.0,0.64528316 +347.0495009422302,0.21,0.0,0.0,0.0,0.64528316 +347.05955505371094,0.21,0.0,0.0,0.0,0.64528316 +347.0695469379425,0.21,0.0,0.0,0.0,0.6064321 +347.07950091362,0.21,0.0,0.0,0.0,0.6064321 +347.0896351337433,0.21,0.0,0.0,0.0,0.6064321 +347.09950399398804,0.22,0.0,0.0,0.0,0.6064321 +347.109503030777,0.22,0.0,0.0,0.0,0.6064321 +347.11950302124023,0.22,0.0,0.0,0.0,0.64528316 +347.12951612472534,0.22,0.0,0.0,0.0,0.64528316 +347.1395049095154,0.22,0.0,0.0,0.0,0.64528316 +347.1495189666748,0.22,0.0,0.0,0.0,0.64528316 +347.15953612327576,0.22,0.0,0.0,0.0,0.64528316 +347.16950392723083,0.22,0.0,0.0,0.0,0.66378367 +347.1794970035553,0.22,0.0,0.0,0.0,0.66378367 +347.18951892852783,0.22999999,0.0,0.0,0.0,0.66378367 +347.1995050907135,0.22999999,0.0,0.0,0.0,0.66378367 +347.20950412750244,0.22999999,0.0,0.0,0.0,0.66378367 +347.2194950580597,0.22999999,0.0,0.0,0.0,0.68598425 +347.22949504852295,0.24,0.0,0.0,0.0,0.68598425 +347.2394599914551,0.24,0.0,0.0,0.0,0.68598425 +347.2494869232178,0.24,0.0,0.0,0.0,0.68598425 +347.25949811935425,0.24,0.0,0.0,0.0,0.68598425 +347.2695541381836,0.25,0.0,0.0,0.0,0.6230826 +347.27952098846436,0.25,0.0,0.0,0.0,0.6230826 +347.28957509994507,0.25,0.0,0.0,0.0,0.6230826 +347.2995460033417,0.25,0.0,0.0,0.0,0.6230826 +347.3094959259033,0.26,0.0,0.0,0.0,0.6230826 +347.3195059299469,0.26999998,0.0,0.0,0.0,0.5879317 +347.3294770717621,0.26999998,0.0,0.0,0.0,0.5879317 +347.3394830226898,0.26999998,0.0,0.0,0.0,0.5879317 +347.34949707984924,0.28,0.0,0.0,0.0,0.5879317 +347.3595221042633,0.28,0.0,0.0,0.0,0.5879317 +347.369509935379,0.28,0.0,0.0,0.0,0.5990319 +347.37952613830566,0.29,0.0,0.0,0.0,0.5990319 +347.38948702812195,0.29,0.0,0.0,0.0,0.5990319 +347.399512052536,0.29,0.0,0.0,0.0,0.5990319 +347.40946412086487,0.29,0.0,0.0,0.0,0.5990319 +347.4194939136505,0.29999998,0.0,0.0,0.0,0.6323328 +347.4294879436493,0.29999998,0.0,0.0,0.0,0.6323328 +347.4395020008087,0.29999998,0.0,0.0,0.0,0.6323328 +347.4494650363922,0.29999998,0.0,0.0,0.0,0.6323328 +347.4595220088959,0.31,0.0,0.0,0.0,0.6323328 +347.4695119857788,0.31,0.0,0.0,0.0,0.5657311 +347.4794979095459,0.32,0.0,0.0,0.0,0.5657311 +347.48946714401245,0.32,0.0,0.0,0.0,0.5657311 +347.49948596954346,0.32,0.0,0.0,0.0,0.5657311 +347.5094759464264,0.32,0.0,0.0,0.0,0.5657311 +347.51948499679565,0.32999998,0.0,0.0,0.0,0.57868135 +347.5295090675354,0.32999998,0.0,0.0,0.0,0.57868135 +347.5394821166992,0.32999998,0.0,0.0,0.0,0.57868135 +347.54948806762695,0.34,0.0,0.0,0.0,0.57868135 +347.55947494506836,0.34,0.0,0.0,0.0,0.57868135 +347.5694811344147,0.34,0.0,0.0,0.0,0.60088205 +347.5794939994812,0.34,0.0,0.0,0.0,0.60088205 +347.58947491645813,0.34,0.0,0.0,0.0,0.60088205 +347.5996661186218,0.35,0.0,0.0,0.0,0.60088205 +347.6094739437103,0.35,0.0,0.0,0.0,0.60088205 +347.6195080280304,0.35,0.0,0.0,0.0,0.5916317 +347.6295850276947,0.35,0.0,0.0,0.0,0.5916317 +347.6394670009613,0.35,0.0,0.0,0.0,0.5916317 +347.6494870185852,0.35,0.0,0.0,0.0,0.5916317 +347.6594920158386,0.35999998,0.0,0.0,0.0,0.5916317 +347.66949105262756,0.35999998,0.0,0.0,0.0,0.5897817 +347.6794741153717,0.35999998,0.0,0.0,0.0,0.5897817 +347.68964099884033,0.35999998,0.0,0.0,0.0,0.5897817 +347.69958209991455,0.37,0.0,0.0,0.0,0.5897817 +347.709557056427,0.37,0.0,0.0,0.0,0.5897817 +347.71949100494385,0.37,0.0,0.0,0.0,0.6101322 +347.7294759750366,0.37,0.0,0.0,0.0,0.6101322 +347.73948407173157,0.37,0.0,0.0,0.0,0.6101322 +347.7494819164276,0.37,0.0,0.0,0.0,0.6101322 +347.7595000267029,0.37,0.0,0.0,0.0,0.6101322 +347.76952600479126,0.37,0.0,0.0,0.0,0.6230826 +347.77961111068726,0.37,0.0,0.0,0.0,0.6230826 +347.7894251346588,0.37,0.0,0.0,0.0,0.6230826 +347.79941511154175,0.37,0.0,0.0,0.0,0.6230826 +347.8096511363983,0.37,0.0,0.0,0.0,0.6230826 +347.8194890022278,0.37,0.0,0.0,0.0,0.6508333 +347.829509973526,0.37,0.0,0.0,0.0,0.6508333 +347.8394889831543,0.37,0.0,0.0,0.0,0.6508333 +347.84964895248413,0.37,0.0,0.0,0.0,0.6508333 +347.8595161437988,0.37,0.0,0.0,0.0,0.6508333 +347.86956310272217,0.37,0.0,0.0,0.0,0.61938244 +347.8794209957123,0.37,0.0,0.0,0.0,0.61938244 +347.8896269798279,0.37,0.0,0.0,0.0,0.61938244 +347.8995089530945,0.37,0.0,0.0,0.0,0.61938244 +347.90942001342773,0.37,0.0,0.0,0.0,0.61938244 +347.91941714286804,0.37,0.0,0.0,0.0,0.639733 +347.929505109787,0.37,0.0,0.0,0.0,0.639733 +347.9393961429596,0.37,0.0,0.0,0.0,0.639733 +347.9495210647583,0.37,0.0,0.0,0.0,0.639733 +347.95950412750244,0.37,0.0,0.0,0.0,0.639733 +347.96964597702026,0.37,0.0,0.0,0.0,0.6138323 +347.9795160293579,0.37,0.0,0.0,0.0,0.6138323 +347.9895100593567,0.37,0.0,0.0,0.0,0.6138323 +347.9994020462036,0.37,0.0,0.0,0.0,0.6138323 +348.0096161365509,0.37,0.0,0.0,0.0,0.6138323 +348.01950097084045,0.37,0.0,0.0,0.0,0.5805315 +348.0294671058655,0.37,0.0,0.0,0.0,0.5805315 +348.03966307640076,0.37,0.0,0.0,0.0,0.5805315 +348.0493919849396,0.37,0.0,0.0,0.0,0.5805315 +348.05966997146606,0.37,0.0,0.0,0.0,0.5805315 +348.0694010257721,0.37,0.0,0.0,0.0,0.57868135 +348.07940912246704,0.37,0.0,0.0,0.0,0.57868135 +348.0896179676056,0.37,0.0,0.0,0.0,0.57868135 +348.09966802597046,0.37,0.0,0.0,0.0,0.57868135 +348.10967111587524,0.37,0.0,0.0,0.0,0.57868135 +348.11942291259766,0.37,0.0,0.0,0.0,0.5694312 +348.1294541358948,0.37,0.0,0.0,0.0,0.5694312 +348.1395230293274,0.37,0.0,0.0,0.0,0.5694312 +348.1496629714966,0.37,0.0,0.0,0.0,0.5694312 +348.1594169139862,0.37,0.0,0.0,0.0,0.5694312 +348.1695489883423,0.37,0.0,0.0,0.0,0.35112536 +348.17964911460876,0.37,0.0,0.0,0.0,0.35112536 +348.1896381378174,0.37,0.0,0.0,0.0,0.35112536 +348.1996569633484,0.37,0.0,0.0,0.0,0.35112536 +348.20961713790894,0.37,0.0,0.0,0.0,0.35112536 +348.2196400165558,0.37,0.0,0.0,0.0,0.23642232 +348.2295660972595,0.37,0.0,0.0,0.0,0.23642232 +348.2394850254059,0.37,0.0,0.0,0.0,0.23642232 +348.24961614608765,0.37,0.0,0.0,0.0,0.23642232 +348.2595679759979,0.37,0.0,0.0,0.0,0.23642232 +348.2696621417999,0.37,0.0,0.0,0.0,0.24197246 +348.279629945755,0.37,0.0,0.0,0.0,0.24197246 +348.2896029949188,0.38,0.0,0.0,0.0,0.24197246 +348.2995460033417,0.38,0.0,0.0,0.0,0.24197246 +348.30963706970215,0.38,0.0,0.0,0.0,0.24197246 +348.3196461200714,0.38,0.0,0.0,0.0,0.23087217 +348.32946395874023,0.39,0.0,0.0,0.0,0.23087217 +348.33965396881104,0.39,0.0,0.0,0.0,0.23087217 +348.349650144577,0.39,0.0,0.0,0.0,0.23087217 +348.3596451282501,0.39,0.0,0.0,0.0,0.23087217 +348.3696241378784,0.39999998,0.0,0.0,0.0,0.22532202 +348.3796420097351,0.39999998,0.0,0.0,0.0,0.22532202 +348.38966512680054,0.39999998,0.0,0.0,0.0,0.22532202 +348.39962911605835,0.41,0.0,0.0,0.0,0.22532202 +348.40961813926697,0.41,0.0,0.0,0.0,0.22532202 +348.4195909500122,0.41,0.0,0.0,0.0,0.14021976 +348.42946696281433,0.42,0.0,0.0,0.0,0.14021976 +348.4396150112152,0.42999998,0.0,0.0,0.0,0.14021976 +348.4494819641113,0.44,0.0,0.0,0.0,0.14021976 +348.45961809158325,0.44,0.0,0.0,0.0,0.14021976 +348.46966099739075,0.45,0.0,0.0,0.0,0.19942135 +348.47963309288025,0.45,0.0,0.0,0.0,0.19942135 +348.4896080493927,0.45999998,0.0,0.0,0.0,0.19942135 +348.4996430873871,0.47,0.0,0.0,0.0,0.19942135 +348.50962805747986,0.47,0.0,0.0,0.0,0.19942135 +348.51965713500977,0.48,0.0,0.0,0.0,0.25307277 +348.5296061038971,0.48,0.0,0.0,0.0,0.25307277 +348.53963899612427,0.48,0.0,0.0,0.0,0.25307277 +348.5496470928192,0.48,0.0,0.0,0.0,0.25307277 +348.55962014198303,0.48,0.0,0.0,0.0,0.25307277 +348.5696110725403,0.48999998,0.0,0.0,0.0,0.24752259 +348.5796151161194,0.48999998,0.0,0.0,0.0,0.24752259 +348.5896270275116,0.48999998,0.0,0.0,0.0,0.24752259 +348.59964513778687,0.48999998,0.0,0.0,0.0,0.24752259 +348.6095781326294,0.5,0.0,0.0,0.0,0.24752259 +348.6196210384369,0.5,0.0,0.0,0.0,0.25307277 +348.62948393821716,0.51,0.0,0.0,0.0,0.25307277 +348.6396141052246,0.51,0.0,0.0,0.0,0.25307277 +348.64960503578186,0.51,0.0,0.0,0.0,0.25307277 +348.65961599349976,0.51,0.0,0.0,0.0,0.25307277 +348.66963505744934,0.52,0.0,0.0,0.0,0.22347198 +348.6796200275421,0.52,0.0,0.0,0.0,0.22347198 +348.68951392173767,0.52,0.0,0.0,0.0,0.22347198 +348.69961309432983,0.52,0.0,0.0,0.0,0.22347198 +348.709664106369,0.52,0.0,0.0,0.0,0.22347198 +348.71945214271545,0.52,0.0,0.0,0.0,0.22347198 +348.7296359539032,0.52,0.0,0.0,0.0,0.22347198 +348.73960614204407,0.52,0.0,0.0,0.0,0.22347198 +348.7496190071106,0.52,0.0,0.0,0.0,0.22347198 +348.7596130371094,0.52,0.0,0.0,0.0,0.22347198 +348.7695879936218,0.53,0.0,0.0,0.0,0.19942135 +348.77961897850037,0.53,0.0,0.0,0.0,0.19942135 +348.7896010875702,0.53,0.0,0.0,0.0,0.19942135 +348.79954504966736,0.53999996,0.0,0.0,0.0,0.19942135 +348.8094959259033,0.53999996,0.0,0.0,0.0,0.19942135 +348.8195960521698,0.53999996,0.0,0.0,0.0,0.116169125 +348.82948899269104,0.55,0.0,0.0,0.0,0.116169125 +348.83962392807007,0.55,0.0,0.0,0.0,0.116169125 +348.849515914917,0.55,0.0,0.0,0.0,0.116169125 +348.85945200920105,0.56,0.0,0.0,0.0,0.116169125 +348.8696150779724,0.56,0.0,0.0,0.0,0.14021976 +348.8796091079712,0.56,0.0,0.0,0.0,0.14021976 +348.8895230293274,0.56,0.0,0.0,0.0,0.14021976 +348.8996150493622,0.57,0.0,0.0,0.0,0.14021976 +348.9095969200134,0.57,0.0,0.0,0.0,0.14021976 +348.91958713531494,0.57,0.0,0.0,0.0,0.10876893 +348.9294650554657,0.57,0.0,0.0,0.0,0.10876893 +348.9396049976349,0.57,0.0,0.0,0.0,0.10876893 +348.9496040344238,0.57,0.0,0.0,0.0,0.10876893 +348.9596071243286,0.57,0.0,0.0,0.0,0.10876893 +348.9696099758148,0.57,0.0,0.0,0.0,0.06436774 +348.9794490337372,0.57,0.0,0.0,0.0,0.06436774 +348.9894640445709,0.58,0.0,0.0,0.0,0.06436774 +348.99960112571716,0.58,0.0,0.0,0.0,0.06436774 +349.00950503349304,0.58,0.0,0.0,0.0,0.06436774 +349.019513130188,0.58,0.0,0.0,0.0,0.04401721 +349.0295400619507,0.58,0.0,0.0,0.0,0.04401721 +349.0395460128784,0.58,0.0,0.0,0.0,0.04401721 +349.04961800575256,0.58,0.0,0.0,0.0,0.04401721 +349.059611082077,0.58,0.0,0.0,0.0,0.04401721 +349.0695309638977,0.58,0.0,0.0,0.0,0.042167164 +349.0795991420746,0.58,0.0,0.0,0.0,0.042167164 +349.0894420146942,0.58,0.0,0.0,0.0,0.042167164 +349.09953904151917,0.58,0.0,0.0,0.0,0.042167164 +349.10961413383484,0.57,0.0,0.0,0.0,0.042167164 +349.1195249557495,0.57,0.0,0.0,0.0,-0.009634218 +349.1294391155243,0.57,0.0,0.0,0.0,-0.009634218 +349.13963294029236,0.57,0.0,0.0,0.0,-0.009634218 +349.14963006973267,0.57,0.0,0.0,0.0,-0.009634218 +349.1596190929413,0.57,0.0,0.0,0.0,-0.009634218 +349.1696379184723,0.57,0.0,0.0,0.0,0.068067834 +349.17952513694763,0.56,0.0,0.0,0.0,0.068067834 +349.1896231174469,0.56,0.0,0.0,0.0,0.068067834 +349.19961404800415,0.56,0.0,0.0,0.0,0.068067834 +349.2094769477844,0.56,0.0,0.0,0.0,0.068067834 +349.2196469306946,0.56,0.0,0.0,0.0,0.038467064 +349.2294681072235,0.56,0.0,0.0,0.0,0.038467064 +349.23961997032166,0.56,0.0,0.0,0.0,0.038467064 +349.2494869232178,0.56,0.0,0.0,0.0,0.038467064 +349.2596480846405,0.55,0.0,0.0,0.0,0.038467064 +349.2694571018219,0.55,0.0,0.0,0.0,0.02921681 +349.2796311378479,0.55,0.0,0.0,0.0,0.02921681 +349.2896420955658,0.55,0.0,0.0,0.0,0.02921681 +349.2995059490204,0.55,0.0,0.0,0.0,0.02921681 +349.30964612960815,0.55,0.0,0.0,0.0,0.02921681 +349.3196310997009,0.53999996,0.0,0.0,0.0,0.023666665 +349.3294429779053,0.53999996,0.0,0.0,0.0,0.023666665 +349.3396530151367,0.53999996,0.0,0.0,0.0,0.023666665 +349.34952306747437,0.53999996,0.0,0.0,0.0,0.023666665 +349.3595631122589,0.53,0.0,0.0,0.0,0.023666665 +349.36963295936584,0.53,0.0,0.0,0.0,0.031066857 +349.37950897216797,0.53,0.0,0.0,0.0,0.031066857 +349.3894910812378,0.53,0.0,0.0,0.0,0.031066857 +349.3996379375458,0.53,0.0,0.0,0.0,0.031066857 +349.40964007377625,0.52,0.0,0.0,0.0,0.031066857 +349.41965508461,0.52,0.0,0.0,0.0,0.032916907 +349.42950797080994,0.52,0.0,0.0,0.0,0.032916907 +349.4394950866699,0.52,0.0,0.0,0.0,0.032916907 +349.449490070343,0.51,0.0,0.0,0.0,0.032916907 +349.4596481323242,0.51,0.0,0.0,0.0,0.032916907 +349.46964597702026,0.51,0.0,0.0,0.0,0.023666665 +349.4795000553131,0.51,0.0,0.0,0.0,0.023666665 +349.4896631240845,0.51,0.0,0.0,0.0,0.023666665 +349.49964714050293,0.5,0.0,0.0,0.0,0.023666665 +349.50940895080566,0.5,0.0,0.0,0.0,0.023666665 +349.5196740627289,0.5,0.0,0.0,0.0,0.031066857 +349.5293951034546,0.5,0.0,0.0,0.0,0.031066857 +349.5396430492401,0.5,0.0,0.0,0.0,0.031066857 +349.549654006958,0.48999998,0.0,0.0,0.0,0.031066857 +349.5596590042114,0.48999998,0.0,0.0,0.0,0.031066857 +349.56946301460266,0.48999998,0.0,0.0,0.0,0.023666665 +349.57965207099915,0.48,0.0,0.0,0.0,0.023666665 +349.5894989967346,0.48,0.0,0.0,0.0,0.023666665 +349.5996699333191,0.48,0.0,0.0,0.0,0.023666665 +349.60967206954956,0.48,0.0,0.0,0.0,0.023666665 +349.6195459365845,0.47,0.0,0.0,0.0,0.02921681 +349.62949204444885,0.47,0.0,0.0,0.0,0.02921681 +349.6394851207733,0.47,0.0,0.0,0.0,0.02921681 +349.64967608451843,0.47,0.0,0.0,0.0,0.02921681 +349.6594591140747,0.45999998,0.0,0.0,0.0,0.02921681 +349.66967606544495,0.45999998,0.0,0.0,0.0,0.02921681 +349.6796760559082,0.45,0.0,0.0,0.0,0.02921681 +349.689679145813,0.45,0.0,0.0,0.0,0.02921681 +349.6996879577637,0.45,0.0,0.0,0.0,0.02921681 +349.70967292785645,0.45,0.0,0.0,0.0,0.02921681 +349.7196810245514,0.45,0.0,0.0,0.0,0.019966569 +349.72939705848694,0.45,0.0,0.0,0.0,0.019966569 +349.7393989562988,0.45,0.0,0.0,0.0,0.019966569 +349.74939608573914,0.45,0.0,0.0,0.0,0.019966569 +349.7596881389618,0.45,0.0,0.0,0.0,0.019966569 +349.76946091651917,0.45,0.0,0.0,0.0,0.031066857 +349.7795510292053,0.45,0.0,0.0,0.0,0.031066857 +349.7896959781647,0.45,0.0,0.0,0.0,0.031066857 +349.79969000816345,0.45,0.0,0.0,0.0,0.031066857 +349.809396982193,0.45,0.0,0.0,0.0,0.031066857 +349.81968808174133,0.45,0.0,0.0,0.0,0.031066857 +349.8294370174408,0.45,0.0,0.0,0.0,0.031066857 +349.8395109176636,0.45,0.0,0.0,0.0,0.031066857 +349.8496820926666,0.45999998,0.0,0.0,0.0,0.031066857 +349.8597059249878,0.45999998,0.0,0.0,0.0,0.031066857 +349.8696949481964,0.45999998,0.0,0.0,0.0,0.038467064 +349.8796720504761,0.47,0.0,0.0,0.0,0.038467064 +349.8896939754486,0.47,0.0,0.0,0.0,0.038467064 +349.8994460105896,0.47,0.0,0.0,0.0,0.038467064 +349.9096920490265,0.48,0.0,0.0,0.0,0.038467064 +349.9194710254669,0.48,0.0,0.0,0.0,0.034766953 +349.92957305908203,0.48,0.0,0.0,0.0,0.034766953 +349.9394419193268,0.48999998,0.0,0.0,0.0,0.034766953 +349.94969511032104,0.48999998,0.0,0.0,0.0,0.034766953 +349.95971512794495,0.5,0.0,0.0,0.0,0.034766953 +349.9697070121765,0.5,0.0,0.0,0.0,0.034766953 +349.97971296310425,0.51,0.0,0.0,0.0,0.034766953 +349.9894769191742,0.51,0.0,0.0,0.0,0.034766953 +349.99943494796753,0.52,0.0,0.0,0.0,0.034766953 +350.00970911979675,0.52,0.0,0.0,0.0,0.034766953 +350.01970911026,0.52,0.0,0.0,0.0,0.038467064 +350.0294120311737,0.53,0.0,0.0,0.0,0.038467064 +350.03971791267395,0.53,0.0,0.0,0.0,0.038467064 +350.0497090816498,0.53,0.0,0.0,0.0,0.038467064 +350.0596899986267,0.53,0.0,0.0,0.0,0.038467064 +350.0697159767151,0.53,0.0,0.0,0.0,0.027366763 +350.0795841217041,0.53,0.0,0.0,0.0,0.027366763 +350.08944606781006,0.53999996,0.0,0.0,0.0,0.027366763 +350.0996980667114,0.53999996,0.0,0.0,0.0,0.027366763 +350.1097049713135,0.53999996,0.0,0.0,0.0,0.027366763 +350.1197030544281,0.53999996,0.0,0.0,0.0,0.034766953 +350.1297061443329,0.53999996,0.0,0.0,0.0,0.034766953 +350.13971400260925,0.53999996,0.0,0.0,0.0,0.034766953 +350.1496961116791,0.53999996,0.0,0.0,0.0,0.034766953 +350.1594579219818,0.53999996,0.0,0.0,0.0,0.034766953 +350.16972613334656,0.53999996,0.0,0.0,0.0,0.042167164 +350.1794550418854,0.55,0.0,0.0,0.0,0.042167164 +350.1896119117737,0.55,0.0,0.0,0.0,0.042167164 +350.19972014427185,0.55,0.0,0.0,0.0,0.042167164 +350.20972299575806,0.55,0.0,0.0,0.0,0.042167164 +350.219712972641,0.55,0.0,0.0,0.0,0.034766953 +350.2294080257416,0.55,0.0,0.0,0.0,0.034766953 +350.23971796035767,0.55,0.0,0.0,0.0,0.034766953 +350.24939012527466,0.55,0.0,0.0,0.0,0.034766953 +350.2597191333771,0.55,0.0,0.0,0.0,0.034766953 +350.26956605911255,0.55,0.0,0.0,0.0,0.032916907 +350.27953910827637,0.55,0.0,0.0,0.0,0.032916907 +350.289400100708,0.55,0.0,0.0,0.0,0.032916907 +350.2997159957886,0.53999996,0.0,0.0,0.0,0.032916907 +350.3097290992737,0.53999996,0.0,0.0,0.0,0.032916907 +350.3197340965271,0.53999996,0.0,0.0,0.0,0.04031712 +350.3295669555664,0.53999996,0.0,0.0,0.0,0.04031712 +350.3394651412964,0.53,0.0,0.0,0.0,0.04031712 +350.3497281074524,0.53,0.0,0.0,0.0,0.04031712 +350.3594241142273,0.53,0.0,0.0,0.0,0.04031712 +350.3695240020752,0.53,0.0,0.0,0.0,0.032916907 +350.37973403930664,0.53,0.0,0.0,0.0,0.032916907 +350.3897271156311,0.53,0.0,0.0,0.0,0.032916907 +350.39955401420593,0.53,0.0,0.0,0.0,0.032916907 +350.40951704978943,0.53,0.0,0.0,0.0,0.032916907 +350.41943407058716,0.53,0.0,0.0,0.0,0.031066857 +350.4297571182251,0.53,0.0,0.0,0.0,0.031066857 +350.43975710868835,0.52,0.0,0.0,0.0,0.031066857 +350.4494619369507,0.52,0.0,0.0,0.0,0.031066857 +350.45947909355164,0.52,0.0,0.0,0.0,0.031066857 +350.46975111961365,0.52,0.0,0.0,0.0,0.021816617 +350.4797410964966,0.52,0.0,0.0,0.0,0.021816617 +350.4896740913391,0.52,0.0,0.0,0.0,0.021816617 +350.4997720718384,0.52,0.0,0.0,0.0,0.021816617 +350.50974702835083,0.52,0.0,0.0,0.0,0.021816617 +350.5197420120239,0.52,0.0,0.0,0.0,0.012566376 +350.529757976532,0.52,0.0,0.0,0.0,0.012566376 +350.5395109653473,0.52,0.0,0.0,0.0,0.012566376 +350.54943895339966,0.52,0.0,0.0,0.0,0.012566376 +350.5597550868988,0.52,0.0,0.0,0.0,0.012566376 +350.56976103782654,0.52,0.0,0.0,0.0,-0.022584556 +350.5794930458069,0.52,0.0,0.0,0.0,-0.022584556 +350.58973813056946,0.52,0.0,0.0,0.0,-0.022584556 +350.5997669696808,0.52,0.0,0.0,0.0,-0.022584556 +350.60975193977356,0.52,0.0,0.0,0.0,-0.022584556 +350.61975502967834,0.52,0.0,0.0,0.0,0.008866279 +350.62963795661926,0.52,0.0,0.0,0.0,0.008866279 +350.6395709514618,0.52,0.0,0.0,0.0,0.008866279 +350.64976501464844,0.52,0.0,0.0,0.0,0.008866279 +350.65942907333374,0.52,0.0,0.0,0.0,0.008866279 +350.66949701309204,0.52,0.0,0.0,0.0,0.008866279 +350.67976093292236,0.52,0.0,0.0,0.0,0.008866279 +350.68976306915283,0.52,0.0,0.0,0.0,0.008866279 +350.6997580528259,0.52,0.0,0.0,0.0,0.008866279 +350.7097759246826,0.52,0.0,0.0,0.0,0.008866279 +350.71977710723877,0.52,0.0,0.0,0.0,0.008866279 +350.729444026947,0.52,0.0,0.0,0.0,0.008866279 +350.7394700050354,0.52,0.0,0.0,0.0,0.008866279 +350.7497589588165,0.52,0.0,0.0,0.0,0.008866279 +350.7597830295563,0.53,0.0,0.0,0.0,0.008866279 +350.7697710990906,0.53,0.0,0.0,0.0,0.0070162313 +350.77940702438354,0.53,0.0,0.0,0.0,0.0070162313 +350.78977394104004,0.53,0.0,0.0,0.0,0.0070162313 +350.7997829914093,0.53,0.0,0.0,0.0,0.0070162313 +350.8097870349884,0.53,0.0,0.0,0.0,0.0070162313 +350.8195650577545,0.53,0.0,0.0,0.0,0.0033161184 +350.82944893836975,0.53,0.0,0.0,0.0,0.0033161184 +350.83978295326233,0.53,0.0,0.0,0.0,0.0033161184 +350.8497850894928,0.53,0.0,0.0,0.0,0.0033161184 +350.8597719669342,0.53,0.0,0.0,0.0,0.0033161184 +350.86978793144226,0.53,0.0,0.0,0.0,-0.0040840744 +350.8797879219055,0.53,0.0,0.0,0.0,-0.0040840744 +350.88978004455566,0.53,0.0,0.0,0.0,-0.0040840744 +350.89962792396545,0.53,0.0,0.0,0.0,-0.0040840744 +350.9095871448517,0.53,0.0,0.0,0.0,-0.0040840744 +350.9198019504547,0.53,0.0,0.0,0.0,0.0070162313 +350.929790019989,0.53,0.0,0.0,0.0,0.0070162313 +350.9398090839386,0.53,0.0,0.0,0.0,0.0070162313 +350.9498100280762,0.53,0.0,0.0,0.0,0.0070162313 +350.95979404449463,0.53,0.0,0.0,0.0,0.0070162313 +350.96979308128357,0.53,0.0,0.0,0.0,-0.013334316 +350.9798049926758,0.53,0.0,0.0,0.0,-0.013334316 +350.98977994918823,0.53,0.0,0.0,0.0,-0.013334316 +350.99941396713257,0.53,0.0,0.0,0.0,-0.013334316 +351.00951194763184,0.53,0.0,0.0,0.0,-0.013334316 +351.019788980484,0.53,0.0,0.0,0.0,0.023666665 +351.0295641422272,0.53,0.0,0.0,0.0,0.023666665 +351.03979897499084,0.53,0.0,0.0,0.0,0.023666665 +351.04981207847595,0.53,0.0,0.0,0.0,0.023666665 +351.059818983078,0.53,0.0,0.0,0.0,0.023666665 +351.0695970058441,0.53,0.0,0.0,0.0,0.010716328 +351.0798101425171,0.52,0.0,0.0,0.0,0.010716328 +351.08954095840454,0.52,0.0,0.0,0.0,0.010716328 +351.0997910499573,0.52,0.0,0.0,0.0,0.010716328 +351.10951495170593,0.52,0.0,0.0,0.0,0.010716328 +351.11980414390564,0.52,0.0,0.0,0.0,-0.0040840744 +351.1298041343689,0.52,0.0,0.0,0.0,-0.0040840744 +351.13951206207275,0.52,0.0,0.0,0.0,-0.0040840744 +351.1494390964508,0.53,0.0,0.0,0.0,-0.0040840744 +351.1597981452942,0.53,0.0,0.0,0.0,-0.0040840744 +351.1697111129761,0.53,0.0,0.0,0.0,0.012566376 +351.1795871257782,0.53,0.0,0.0,0.0,0.012566376 +351.1898069381714,0.53,0.0,0.0,0.0,0.012566376 +351.19948410987854,0.53,0.0,0.0,0.0,0.012566376 +351.20980501174927,0.53,0.0,0.0,0.0,0.012566376 +351.219820022583,0.52,0.0,0.0,0.0,0.014416425 +351.22952604293823,0.52,0.0,0.0,0.0,0.014416425 +351.2398190498352,0.52,0.0,0.0,0.0,0.014416425 +351.24983310699463,0.52,0.0,0.0,0.0,0.014416425 +351.2598259449005,0.52,0.0,0.0,0.0,0.014416425 +351.2695369720459,0.52,0.0,0.0,0.0,0.019966569 +351.27942299842834,0.52,0.0,0.0,0.0,0.019966569 +351.2894399166107,0.52,0.0,0.0,0.0,0.019966569 +351.29982113838196,0.52,0.0,0.0,0.0,0.019966569 +351.3096399307251,0.52,0.0,0.0,0.0,0.019966569 +351.3198149204254,0.52,0.0,0.0,0.0,0.031066857 +351.3295040130615,0.52,0.0,0.0,0.0,0.031066857 +351.33983993530273,0.52,0.0,0.0,0.0,0.031066857 +351.34981894493103,0.52,0.0,0.0,0.0,0.031066857 +351.3595039844513,0.51,0.0,0.0,0.0,0.031066857 +351.3694820404053,0.51,0.0,0.0,0.0,0.038467064 +351.37968611717224,0.51,0.0,0.0,0.0,0.038467064 +351.38983607292175,0.51,0.0,0.0,0.0,0.038467064 +351.39949798583984,0.51,0.0,0.0,0.0,0.038467064 +351.4098219871521,0.51,0.0,0.0,0.0,0.038467064 +351.41983795166016,0.52,0.0,0.0,0.0,0.038467064 +351.42983198165894,0.52,0.0,0.0,0.0,0.038467064 +351.43952894210815,0.52,0.0,0.0,0.0,0.038467064 +351.4496359825134,0.52,0.0,0.0,0.0,0.038467064 +351.4595649242401,0.52,0.0,0.0,0.0,0.038467064 +351.4698269367218,0.52,0.0,0.0,0.0,0.012566376 +351.47982597351074,0.52,0.0,0.0,0.0,0.012566376 +351.48983693122864,0.52,0.0,0.0,0.0,0.012566376 +351.4998359680176,0.52,0.0,0.0,0.0,0.012566376 +351.50982904434204,0.51,0.0,0.0,0.0,0.012566376 +351.51984000205994,0.51,0.0,0.0,0.0,0.023666665 +351.52967596054077,0.51,0.0,0.0,0.0,0.023666665 +351.5397701263428,0.5,0.0,0.0,0.0,0.023666665 +351.54964303970337,0.5,0.0,0.0,0.0,0.023666665 +351.55946111679077,0.48999998,0.0,0.0,0.0,0.023666665 +351.56984400749207,0.48999998,0.0,0.0,0.0,-0.009634218 +351.5798509120941,0.48,0.0,0.0,0.0,-0.009634218 +351.5898530483246,0.47,0.0,0.0,0.0,-0.009634218 +351.599839925766,0.47,0.0,0.0,0.0,-0.009634218 +351.6096589565277,0.45999998,0.0,0.0,0.0,-0.009634218 +351.6196720600128,0.45,0.0,0.0,0.0,-0.009634218 +351.62948393821716,0.44,0.0,0.0,0.0,-0.009634218 +351.6395399570465,0.42999998,0.0,0.0,0.0,-0.009634218 +351.6498510837555,0.41,0.0,0.0,0.0,-0.009634218 +351.6598439216614,0.39999998,0.0,0.0,0.0,-0.009634218 +351.6698479652405,0.39,0.0,0.0,0.0,-0.015184363 +351.67986392974854,0.38,0.0,0.0,0.0,-0.015184363 +351.6898670196533,0.35999998,0.0,0.0,0.0,-0.015184363 +351.69985699653625,0.34,0.0,0.0,0.0,-0.015184363 +351.70963191986084,0.32,0.0,0.0,0.0,-0.015184363 +351.7194149494171,0.29999998,0.0,0.0,0.0,0.014416425 +351.729474067688,0.28,0.0,0.0,0.0,0.014416425 +351.7398569583893,0.26,0.0,0.0,0.0,0.014416425 +351.7498710155487,0.24,0.0,0.0,0.0,0.014416425 +351.75957012176514,0.22999999,0.0,0.0,0.0,0.014416425 +351.7698540687561,0.21,0.0,0.0,0.0,0.021816617 +351.77986001968384,0.19,2.2727273,2.2727273,0.0,0.021816617 +351.7898690700531,0.17999999,4.5454545,4.5454545,0.0,0.021816617 +351.7996211051941,0.17,7.575758,7.575758,0.0,0.021816617 +351.80948305130005,0.14999999,9.848485,9.848485,0.0,0.021816617 +351.8195879459381,0.14,12.121212,12.121212,0.0,0.014416425 +351.8295040130615,0.13,13.636364,13.636364,0.0,0.014416425 +351.83986496925354,0.12,15.151516,15.151516,0.0,0.014416425 +351.8497760295868,0.11,16.666668,16.666668,0.0,0.014416425 +351.8598721027374,0.099999994,18.939394,18.939394,0.0,0.014416425 +351.86988401412964,0.089999996,20.454544,20.454544,0.0,0.0033161184 +351.87988209724426,0.08,21.212122,21.212122,0.0,0.0033161184 +351.88955211639404,0.07,22.727274,22.727274,0.0,0.0033161184 +351.8999021053314,0.06,24.242424,24.242424,0.0,0.0033161184 +351.9094591140747,0.06,25.757576,25.757576,0.018744143,0.0033161184 +351.9194989204407,0.049999997,27.272728,27.272728,0.028116215,-0.015184363 +351.9298770427704,0.04,28.030302,28.030302,0.028116215,-0.015184363 +351.9398651123047,0.04,29.545454,29.545454,0.037488285,-0.015184363 +351.9498851299286,0.03,31.060606,31.060606,0.046860356,-0.015184363 +351.9595420360565,0.02,31.818182,31.818182,0.05623243,-0.015184363 +351.9698860645294,0.02,31.818182,31.818182,0.05623243,-0.041085053 +351.97953701019287,0.01,32.575756,32.575756,0.0656045,-0.041085053 +351.9898691177368,0.01,32.575756,32.575756,0.0656045,-0.041085053 +351.9995241165161,0.0,34.09091,34.09091,0.0656045,-0.041085053 +352.0096900463104,0.0,34.848484,34.848484,0.0656045,-0.041085053 +352.0195391178131,0.0,34.848484,34.848484,0.07497657,-0.026284654 +352.0298891067505,0.0,37.121216,37.121216,0.07497657,-0.026284654 +352.0398910045624,0.0,39.39394,39.39394,0.08434864,-0.026284654 +352.04953598976135,0.0,41.666668,41.666668,0.08434864,-0.026284654 +352.0599100589752,0.0,43.939392,43.939392,0.09372071,-0.026284654 +352.0695331096649,0.0,45.454548,45.454548,0.10309278,-0.033684865 +352.0798900127411,0.0,48.484848,48.484848,0.10309278,-0.033684865 +352.08954310417175,0.0,51.515152,51.515152,0.10309278,-0.033684865 +352.09990406036377,0.0,55.30303,55.30303,0.11246486,-0.033684865 +352.10950994491577,0.0,58.333332,58.333332,0.131209,-0.033684865 +352.11988711357117,0.0,61.363636,61.363636,0.131209,-0.042935103 +352.12955713272095,0.0,67.42425,67.42425,0.131209,-0.042935103 +352.1399109363556,0.0,61.363636,61.363636,0.131209,-0.042935103 +352.1497211456299,0.0,46.969696,46.969696,0.14995314,-0.042935103 +352.1595411300659,0.0,34.848484,34.848484,0.14995314,-0.042935103 +352.1694509983063,0.0,25.0,25.0,0.14995314,-0.0466352 +352.1795289516449,0.0,22.727274,22.727274,0.15932521,-0.0466352 +352.18989300727844,0.0,29.545454,29.545454,0.16869728,-0.0466352 +352.19959807395935,0.0,37.878788,37.878788,0.16869728,-0.0466352 +352.2097361087799,0.0,45.454548,45.454548,0.16869728,-0.0466352 +352.21990394592285,0.0,52.272724,52.272724,0.18744142,-0.024434604 +352.22991704940796,0.0,61.363636,61.363636,0.20618556,-0.024434604 +352.2397789955139,0.0,68.93939,68.93939,0.20618556,-0.024434604 +352.24956607818604,0.0,65.90909,65.90909,0.20618556,-0.024434604 +352.25957202911377,0.0,61.363636,61.363636,0.22492972,-0.024434604 +352.26960492134094,0.0,57.57576,57.57576,0.23430179,-0.041085053 +352.2799060344696,0.0,55.30303,55.30303,0.24367386,-0.041085053 +352.2895359992981,0.0,55.30303,55.30303,0.24367386,-0.041085053 +352.2999179363251,0.0,55.30303,55.30303,0.25304592,-0.041085053 +352.30991792678833,0.0,55.30303,55.30303,0.262418,-0.041085053 +352.319904088974,0.0,54.545456,54.545456,0.27179006,-0.0577355 +352.3299059867859,0.0,56.060604,56.060604,0.27179006,-0.0577355 +352.33952808380127,0.0,58.333332,58.333332,0.28116214,-0.0577355 +352.34956192970276,0.0,59.848484,59.848484,0.28116214,-0.0577355 +352.3597159385681,0.0,61.363636,61.363636,0.2905342,-0.0577355 +352.36944007873535,0.0,62.121212,62.121212,0.2905342,-0.0577355 +352.3795311450958,0.0,63.636364,63.636364,0.2905342,-0.0577355 +352.3899121284485,0.0,66.66667,66.66667,0.29990628,-0.0577355 +352.39993810653687,0.0,68.93939,68.93939,0.29990628,-0.0577355 +352.4094319343567,0.0,69.69697,69.69697,0.29990628,-0.0577355 +352.4194049835205,0.0,70.454544,70.454544,0.29990628,-0.0577355 +352.4294819831848,0.0,71.969696,71.969696,0.30927837,-0.0577355 +352.4399211406708,0.0,74.24243,74.24243,0.30927837,-0.0577355 +352.4498510360718,0.0,77.27273,77.27273,0.30927837,-0.0577355 +352.45946502685547,0.0,78.78788,78.78788,0.31865042,-0.0577355 +352.46967005729675,0.0,79.545456,79.545456,0.3280225,-0.06513569 +352.47992610931396,0.0,81.0606,81.0606,0.3280225,-0.06513569 +352.48991799354553,0.0,82.57576,82.57576,0.3280225,-0.06513569 +352.49969601631165,0.0,84.84849,84.84849,0.3280225,-0.06513569 +352.50984811782837,0.0,86.36363,86.36363,0.33739457,-0.06143559 +352.5194001197815,0.0,87.12121,87.12121,0.33739457,-0.06143559 +352.5299479961395,0.0,87.878784,87.878784,0.33739457,-0.06143559 +352.53955698013306,0.0,89.393936,89.393936,0.3280225,-0.06143559 +352.5499379634857,0.0,91.66667,91.66667,0.3280225,-0.06143559 +352.55984592437744,0.0,93.181816,93.181816,0.3280225,-0.06143559 +352.56995701789856,0.0,93.93939,93.93939,0.3280225,-0.033684865 +352.5799460411072,0.0,93.93939,93.93939,0.3280225,-0.033684865 +352.5899341106415,0.0,94.69697,94.69697,0.3280225,-0.033684865 +352.5999491214752,0.0,96.21212,96.21212,0.3280225,-0.033684865 +352.6095049381256,0.0,97.72728,97.72728,0.3280225,-0.033684865 +352.6195709705353,0.0,98.48485,98.48485,0.3280225,-0.011484267 +352.6294550895691,0.0,98.48485,98.48485,0.33739457,-0.011484267 +352.63994812965393,0.0,97.72728,97.72728,0.33739457,-0.011484267 +352.64995193481445,0.0,98.48485,98.48485,0.33739457,-0.011484267 +352.6598300933838,0.0,100.0,100.0,0.33739457,0.008866279 +352.66994309425354,0.0,100.757576,100.757576,0.33739457,0.008866279 +352.6799569129944,0.0,100.757576,100.757576,0.33739457,0.008866279 +352.6899540424347,0.0,100.0,100.0,0.33739457,0.008866279 +352.699746131897,0.0,100.757576,100.757576,0.33739457,0.008866279 +352.70983695983887,0.0,101.51515,101.51515,0.33739457,-0.00038397792 +352.7199640274048,0.0,103.030304,103.030304,0.33739457,-0.00038397792 +352.7294931411743,0.0,104.54545,104.54545,0.33739457,-0.00038397792 +352.73995995521545,0.0,103.78788,103.78788,0.33739457,-0.00038397792 +352.749440908432,0.0,103.78788,103.78788,0.33739457,-0.00038397792 +352.75983214378357,0.0,105.303024,105.303024,0.33739457,-0.022584556 +352.7699439525604,0.0,107.57576,107.57576,0.33739457,-0.022584556 +352.779972076416,0.0,109.09091,109.09091,0.33739457,-0.022584556 +352.7894310951233,0.0,110.60606,110.60606,0.34676665,-0.022584556 +352.79995608329773,0.0,111.36363,111.36363,0.34676665,-0.022584556 +352.8098430633545,0.0,113.63637,113.63637,0.34676665,-0.026284654 +352.81956696510315,0.0,115.909096,115.909096,0.34676665,-0.026284654 +352.8299539089203,0.0,118.93939,118.93939,0.34676665,-0.026284654 +352.839555978775,0.0,121.21213,121.21213,0.34676665,-0.026284654 +352.84951090812683,0.0,122.72727,122.72727,0.34676665,-0.026284654 +352.8598349094391,0.0,125.0,125.0,0.34676665,-0.022584556 +352.8699719905853,0.0,128.78787,128.78787,0.3655108,-0.022584556 +352.8799629211426,0.0,133.33334,133.33334,0.3655108,-0.022584556 +352.8899841308594,0.0,138.63637,138.63637,0.3655108,-0.022584556 +352.89995312690735,0.0,143.18181,143.18181,0.37488285,-0.022584556 +352.909548997879,0.0,146.21211,146.21211,0.38425493,-0.022584556 +352.91997599601746,0.0,147.72726,147.72726,0.38425493,-0.026284654 +352.92958998680115,0.0,150.75758,150.75758,0.38425493,-0.026284654 +352.9395830631256,0.0,153.78789,153.78789,0.38425493,-0.026284654 +352.9495189189911,0.0,157.57576,157.57576,0.393627,-0.026284654 +352.9598460197449,0.0,160.60606,160.60606,0.40299907,-0.026284654 +352.9699809551239,0.0,162.87878,162.87878,0.40299907,0.04031712 +352.9799609184265,0.0,165.9091,165.9091,0.41237113,0.04031712 +352.9899730682373,0.0,170.45454,170.45454,0.4217432,0.04031712 +352.9995291233063,0.0,175.75757,175.75757,0.43111527,0.04031712 +353.0099821090698,0.0,181.81819,181.81819,0.43111527,0.04031712 +353.0193889141083,0.0,187.12122,187.12122,0.43111527,0.073618 +353.0295910835266,0.0,191.66666,191.66666,0.44048735,0.073618 +353.03998708724976,0.0,196.21213,196.21213,0.44048735,0.073618 +353.04977107048035,0.0,202.27274,202.27274,0.44048735,0.073618 +353.0598340034485,0.0,208.33333,208.33333,0.44048735,0.09211848 +353.06998109817505,0.0,215.15152,215.15152,0.44985944,0.09211848 +353.07999992370605,0.0,221.9697,221.9697,0.4592315,0.09211848 +353.0897059440613,0.0,228.0303,228.0303,0.4592315,0.09211848 +353.09998297691345,0.0,233.33333,233.33333,0.4592315,0.09211848 +353.1096420288086,0.0,239.39394,239.39394,0.48734772,0.09211848 +353.11967396736145,0.0,246.21213,246.21213,0.49671978,0.053267453 +353.12999296188354,0.0,253.78787,253.78787,0.49671978,0.053267453 +353.1396589279175,0.0,259.84848,259.84848,0.49671978,0.053267453 +353.14950299263,0.0,265.1515,265.1515,0.50609183,0.053267453 +353.1598370075226,0.0,268.9394,268.9394,0.50609183,-0.024434604 +353.1700029373169,0.0,271.21213,271.21213,0.50609183,-0.024434604 +353.1798241138458,0.0,273.48486,273.48486,0.50609183,-0.024434604 +353.1898469924927,0.0,276.51517,276.51517,0.524836,-0.024434604 +353.1994380950928,0.0,278.78787,278.78787,0.524836,-0.024434604 +353.20999693870544,0.0,281.0606,281.0606,0.524836,-0.024434604 +353.21999192237854,0.0,281.81818,281.81818,0.524836,-0.06328564 +353.22960805892944,0.0,281.81818,281.81818,0.53420806,-0.06328564 +353.2394709587097,0.0,280.30304,280.30304,0.53420806,-0.06328564 +353.25001192092896,0.0,279.54547,279.54547,0.53420806,-0.06328564 +353.25985407829285,0.0,278.0303,278.0303,0.53420806,-0.03183481 +353.26999497413635,0.0,277.27274,277.27274,0.524836,-0.03183481 +353.2794260978699,0.0,275.75757,275.75757,0.524836,-0.03183481 +353.2900159358978,0.0,274.24243,274.24243,0.524836,-0.03183481 +353.2993919849396,0.0,271.9697,271.9697,0.524836,-0.03183481 +353.30999302864075,0.0,269.697,269.697,0.51546395,-0.03183481 +353.3195869922638,0.0,268.18182,268.18182,0.50609183,0.0014660703 +353.33000206947327,0.0,267.42426,267.42426,0.50609183,0.0014660703 +353.34000301361084,0.0,265.90912,265.90912,0.50609183,0.0014660703 +353.3499970436096,0.0,264.39392,264.39392,0.50609183,0.0014660703 +353.35983395576477,0.0,261.36362,261.36362,0.50609183,0.0014660703 +353.3700189590454,0.0,256.0606,256.0606,0.50609183,0.0014660703 +353.3796091079712,0.0,250.75757,250.75757,0.49671978,0.0014660703 +353.389545917511,0.0,245.45454,245.45454,0.48734772,0.0014660703 +353.40003991127014,0.0,240.1515,240.1515,0.47797564,0.0014660703 +353.40960001945496,0.0,234.84848,234.84848,0.47797564,0.0014660703 +353.420028924942,0.0,231.06061,231.06061,0.46860358,0.008866279 +353.4300289154053,0.0,225.75757,225.75757,0.4592315,0.008866279 +353.4395680427551,0.0,220.45454,220.45454,0.4592315,0.008866279 +353.4500060081482,0.0,213.63637,213.63637,0.4592315,0.008866279 +353.4595060348511,0.0,209.84848,209.84848,0.44985944,0.008866279 +353.4700131416321,0.0,206.06061,206.06061,0.44048735,-0.033684865 +353.47956013679504,0.0,201.51515,201.51515,0.44048735,-0.033684865 +353.49001002311707,0.0,196.9697,196.9697,0.44048735,-0.033684865 +353.49955797195435,0.0,192.42424,192.42424,0.43111527,-0.033684865 +353.509840965271,0.0,187.12122,187.12122,0.43111527,-0.052185345 +353.5195689201355,0.0,180.30304,180.30304,0.4217432,-0.052185345 +353.52939200401306,0.0,173.48485,173.48485,0.4217432,-0.052185345 +353.53960704803467,0.0,169.69698,169.69698,0.4217432,-0.052185345 +353.54956793785095,0.0,165.15152,165.15152,0.41237113,-0.052185345 +353.5598409175873,0.0,161.36363,161.36363,0.41237113,-0.03183481 +353.5696029663086,0.0,157.57576,157.57576,0.41237113,-0.03183481 +353.5800271034241,0.0,153.78789,153.78789,0.40299907,-0.03183481 +353.589497089386,0.0,148.48486,148.48486,0.40299907,-0.03183481 +353.5997951030731,0.0,143.93939,143.93939,0.40299907,-0.03183481 +353.6094009876251,0.0,138.63637,138.63637,0.40299907,-0.03183481 +353.6195909976959,0.0,135.60606,135.60606,0.393627,0.014416425 +353.63001894950867,0.0,132.57574,132.57574,0.38425493,0.014416425 +353.6395480632782,0.0,130.30302,130.30302,0.3655108,0.014416425 +353.65004897117615,0.0,126.51515,126.51515,0.3655108,0.014416425 +353.6597239971161,0.0,123.48485,123.48485,0.3655108,0.014416425 +353.6695821285248,0.0,119.69697,119.69697,0.3561387,0.053267453 +353.67939591407776,0.0,115.15152,115.15152,0.34676665,0.053267453 +353.6900429725647,0.0,110.60606,110.60606,0.34676665,0.053267453 +353.70004892349243,0.0,108.333336,108.333336,0.34676665,0.053267453 +353.70958614349365,0.0,106.06061,106.06061,0.34676665,0.053267453 +353.7200379371643,0.0,103.78788,103.78788,0.33739457,0.0551175 +353.7295980453491,0.0,100.757576,100.757576,0.33739457,0.0551175 +353.73948097229004,0.0,97.72728,97.72728,0.33739457,0.0551175 +353.7498879432678,0.0,93.93939,93.93939,0.3280225,0.0551175 +353.7598569393158,0.0,89.393936,89.393936,0.3280225,0.09766865 +353.7695360183716,0.0,84.84849,84.84849,0.3280225,0.09766865 +353.7800590991974,0.0,82.57576,82.57576,0.3280225,0.09766865 +353.79004192352295,0.0,79.545456,79.545456,0.3280225,0.09766865 +353.7996370792389,0.0,77.27273,77.27273,0.31865042,0.09766865 +353.8098509311676,0.0,75.0,75.0,0.31865042,0.12911949 +353.8197240829468,0.0,72.72727,72.72727,0.3280225,0.12911949 +353.82978200912476,0.0,70.454544,70.454544,0.30927837,0.12911949 +353.8400571346283,0.0,67.42425,67.42425,0.30927837,0.12911949 +353.8495879173279,0.0,63.636364,63.636364,0.30927837,0.12911949 +353.85980105400085,0.0,62.121212,62.121212,0.29990628,0.12911949 +353.87005591392517,0.0,61.363636,61.363636,0.29990628,0.1420698 +353.8800630569458,0.0,60.606064,60.606064,0.2905342,0.1420698 +353.8900671005249,0.0,60.606064,60.606064,0.2905342,0.1420698 +353.9000599384308,0.0,59.848484,59.848484,0.2905342,0.1420698 +353.90983510017395,0.0,59.848484,59.848484,0.28116214,0.1420698 +353.9200060367584,0.0,58.333332,58.333332,0.28116214,0.19017108 +353.92956614494324,0.0,56.818184,56.818184,0.28116214,0.19017108 +353.93947291374207,0.0,55.30303,55.30303,0.28116214,0.19017108 +353.9500250816345,0.0,53.78788,53.78788,0.2905342,0.19017108 +353.9598660469055,0.0,53.78788,53.78788,0.2905342,0.2808235 +353.969388961792,0.0,53.030304,53.030304,0.2905342,0.2808235 +353.97975397109985,0.0,52.272724,52.272724,0.2905342,0.2808235 +353.9900529384613,0.0,51.515152,51.515152,0.28116214,0.2808235 +353.9999620914459,0.0,50.757576,50.757576,0.28116214,0.2808235 +354.0097749233246,0.0,48.484848,48.484848,0.28116214,0.2808235 +354.0200500488281,0.0,46.969696,46.969696,0.28116214,0.34002507 +354.02954506874084,0.0,45.454548,45.454548,0.27179006,0.34002507 +354.0400719642639,0.0,44.696968,44.696968,0.27179006,0.34002507 +354.0500829219818,0.0,44.696968,44.696968,0.27179006,0.34002507 +354.05978202819824,0.0,44.696968,44.696968,0.28116214,0.34002507 +354.0700659751892,0.0,44.696968,44.696968,0.28116214,0.30117404 +354.0800940990448,0.0,44.696968,44.696968,0.28116214,0.30117404 +354.08962297439575,0.0,43.939392,43.939392,0.28116214,0.30117404 +354.10010409355164,0.0,42.424244,42.424244,0.28116214,0.30117404 +354.1100699901581,0.0,40.90909,40.90909,0.28116214,0.30117404 +354.11940693855286,0.0,38.636364,38.636364,0.28116214,0.3566755 +354.12952995300293,0.0,37.121216,37.121216,0.28116214,0.3566755 +354.14009308815,0.0,36.363636,36.363636,0.28116214,0.3566755 +354.15006494522095,0.0,36.363636,36.363636,0.28116214,0.3566755 +354.15985012054443,0.0,36.363636,36.363636,0.28116214,0.37702608 +354.1700699329376,0.0,36.363636,36.363636,0.28116214,0.37702608 +354.1795289516449,0.0,36.363636,36.363636,0.27179006,0.37702608 +354.1894381046295,0.0,36.363636,36.363636,0.28116214,0.37702608 +354.2000980377197,0.0,37.121216,37.121216,0.28116214,0.37702608 +354.2095971107483,0.0,37.878788,37.878788,0.28116214,0.37702608 +354.22008991241455,0.0,39.39394,39.39394,0.2905342,0.37332594 +354.23009610176086,0.0,41.666668,41.666668,0.2905342,0.37332594 +354.2401080131531,0.0,43.939392,43.939392,0.29990628,0.37332594 +354.25012397766113,0.0,47.727272,47.727272,0.29990628,0.37332594 +354.25954699516296,0.0,50.0,50.0,0.29990628,0.37332594 +354.2700960636139,0.0,53.030304,53.030304,0.30927837,0.43992776 +354.2795150279999,0.0,55.30303,55.30303,0.31865042,0.43992776 +354.29013204574585,0.0,56.818184,56.818184,0.31865042,0.43992776 +354.29956793785095,0.0,58.333332,58.333332,0.31865042,0.43992776 +354.3100950717926,0.0,59.848484,59.848484,0.3280225,0.43992776 +354.3193910121918,0.0,62.878788,62.878788,0.3280225,0.451028 +354.3301270008087,0.0,66.66667,66.66667,0.3280225,0.451028 +354.33957505226135,0.0,69.69697,69.69697,0.33739457,0.451028 +354.3501579761505,0.0,73.48485,73.48485,0.3280225,0.451028 +354.3597481250763,0.0,75.757576,75.757576,0.33739457,0.451028 +354.3695900440216,0.0,78.78788,78.78788,0.33739457,0.48247886 +354.3801040649414,0.0,80.30303,80.30303,0.33739457,0.48247886 +354.3895559310913,0.0,81.0606,81.0606,0.33739457,0.48247886 +354.40011501312256,0.0,81.0606,81.0606,0.34676665,0.48247886 +354.40940713882446,0.0,80.30303,80.30303,0.34676665,0.48247886 +354.41974401474,0.0,79.545456,79.545456,0.3561387,0.48247886 +354.4295630455017,0.0,79.545456,79.545456,0.34676665,0.48247886 +354.4401090145111,0.0,78.030304,78.030304,0.33739457,0.48247886 +354.449746131897,0.0,76.51515,76.51515,0.33739457,0.48247886 +354.45957112312317,0.0,74.24243,74.24243,0.33739457,0.48247886 +354.47012996673584,0.0,71.969696,71.969696,0.3280225,0.4103269 +354.4795949459076,0.0,68.93939,68.93939,0.31865042,0.4103269 +354.4894709587097,0.0,65.90909,65.90909,0.31865042,0.4103269 +354.4999690055847,0.0,62.121212,62.121212,0.30927837,0.4103269 +354.50971508026123,0.0,58.333332,58.333332,0.30927837,0.4103269 +354.5201210975647,0.0,53.78788,53.78788,0.30927837,0.35482547 +354.52942299842834,0.0,48.484848,48.484848,0.30927837,0.35482547 +354.54010796546936,0.0,43.939392,43.939392,0.30927837,0.35482547 +354.5495970249176,0.0,37.878788,37.878788,0.29990628,0.35482547 +354.5598599910736,0.0,32.575756,32.575756,0.2905342,0.3270747 +354.56948494911194,0.0,26.515152,26.515152,0.2905342,0.3270747 +354.5795829296112,0.0,21.212122,21.212122,0.27179006,0.3270747 +354.59013295173645,0.0,20.454544,20.454544,0.25304592,0.3270747 +354.60013604164124,0.0,19.69697,19.69697,0.25304592,0.3270747 +354.6098449230194,0.0,19.69697,19.69697,0.25304592,0.18832105 +354.6201181411743,0.0,19.69697,19.69697,0.24367386,0.18832105 +354.6301500797272,0.0,18.939394,18.939394,0.21555763,0.18832105 +354.63968205451965,0.0,18.181818,18.181818,0.21555763,0.18832105 +354.6494491100311,0.0,18.181818,18.181818,0.21555763,0.18832105 +354.6594159603119,0.0,17.424242,17.424242,0.20618556,0.18832105 +354.66954803466797,0.0,15.909091,15.909091,0.1968135,-0.18908899 +354.68014097213745,0.0,15.151516,15.151516,0.18744142,-0.18908899 +354.69014596939087,0.0,13.636364,13.636364,0.18744142,-0.18908899 +354.70013213157654,0.01,12.878788,12.878788,0.16869728,-0.18908899 +354.70958495140076,0.01,11.363637,11.363637,0.131209,-0.18908899 +354.72014808654785,0.02,10.606061,10.606061,0.11246486,-0.39259437 +354.7294399738312,0.03,9.848485,9.848485,0.11246486,-0.39259437 +354.74011993408203,0.04,9.090909,9.090909,0.10309278,-0.39259437 +354.7495930194855,0.049999997,7.575758,7.575758,0.07497657,-0.39259437 +354.7593960762024,0.06,6.818182,6.818182,0.0656045,-0.39259437 +354.7696421146393,0.07,6.060606,6.060606,0.0656045,-0.21683972 +354.77960300445557,0.08,6.060606,6.060606,0.05623243,-0.21683972 +354.78939509391785,0.089999996,5.3030305,5.3030305,0.037488285,-0.21683972 +354.80015897750854,0.099999994,4.5454545,4.5454545,0.037488285,-0.21683972 +354.80939292907715,0.11,3.787879,3.787879,0.037488285,-0.21683972 +354.81984996795654,0.12,3.787879,3.787879,0.028116215,0.1346696 +354.8295650482178,0.14,3.030303,3.030303,0.0,0.1346696 +354.8401389122009,0.14999999,3.030303,3.030303,0.0,0.1346696 +354.84941601753235,0.16,2.2727273,2.2727273,0.0,0.1346696 +354.8598771095276,0.17,1.5151515,1.5151515,0.0,0.5379803 +354.87016201019287,0.17999999,1.5151515,1.5151515,0.0,0.5379803 +354.8801441192627,0.19,1.5151515,1.5151515,0.0,0.5379803 +354.8894290924072,0.19999999,0.75757575,0.75757575,0.0,0.5379803 +354.90015292167664,0.19999999,0.75757575,0.75757575,0.0,0.5379803 +354.9096360206604,0.21,0.0,0.0,0.0,0.5379803 +354.9199380874634,0.22,0.0,0.0,0.0,0.8210379 +354.92941403388977,0.22,0.0,0.0,0.0,0.8210379 +354.9399890899658,0.22999999,0.0,0.0,0.0,0.8210379 +354.950159072876,0.22999999,0.0,0.0,0.0,0.8210379 +354.959862947464,0.24,0.0,0.0,0.0,0.9283407 +354.9694039821625,0.24,0.0,0.0,0.0,0.9283407 +354.98014998435974,0.24,0.0,0.0,0.0,0.9283407 +354.99016213417053,0.25,0.0,0.0,0.0,0.9283407 +354.99939799308777,0.25,0.0,0.0,0.0,0.9283407 +355.00943398475647,0.26,0.0,0.0,0.0,0.9283407 +355.02015805244446,0.26,0.0,0.0,0.0,0.92464054 +355.02951312065125,0.26,0.0,0.0,0.0,0.92464054 +355.0395300388336,0.26999998,0.0,0.0,0.0,0.92464054 +355.0493929386139,0.26999998,0.0,0.0,0.0,0.92464054 +355.05985403060913,0.26999998,0.0,0.0,0.0,0.9375909 +355.06939601898193,0.28,0.0,0.0,0.0,0.9375909 +355.07958912849426,0.28,0.0,0.0,0.0,0.9375909 +355.0893909931183,0.28,0.0,0.0,0.0,0.9375909 +355.09939908981323,0.28,0.0,0.0,0.0,0.9375909 +355.11017894744873,0.28,0.0,0.0,0.0,0.9375909 +355.1193890571594,0.29,0.0,0.0,0.0,0.9634916 +355.1295609474182,0.29,0.0,0.0,0.0,0.9634916 +355.14017605781555,0.29,0.0,0.0,0.0,0.9634916 +355.1501760482788,0.29,0.0,0.0,0.0,0.9634916 +355.15938997268677,0.29,0.0,0.0,0.0,0.9634916 +355.1694350242615,0.29,0.0,0.0,0.0,0.96164155 +355.18018913269043,0.29,0.0,0.0,0.0,0.96164155 +355.1895260810852,0.29999998,0.0,0.0,0.0,0.96164155 +355.19939398765564,0.29999998,0.0,0.0,0.0,0.96164155 +355.20941400527954,0.29999998,0.0,0.0,0.0,0.96164155 +355.2194809913635,0.29999998,0.0,0.0,0.0,0.9542414 +355.2300660610199,0.29,0.0,0.0,0.0,0.9542414 +355.2397451400757,0.29,0.0,0.0,0.0,0.9542414 +355.2494089603424,0.29,0.0,0.0,0.0,0.9542414 +355.2593901157379,0.29,0.0,0.0,0.0,0.9542414 +355.27019691467285,0.29,0.0,0.0,0.0,1.0689445 +355.27939796447754,0.28,0.0,0.0,0.0,1.0689445 +355.2894380092621,0.28,0.0,0.0,0.0,1.0689445 +355.29940009117126,0.28,0.0,0.0,0.0,1.0689445 +355.3093891143799,0.28,0.0,0.0,0.0,1.0689445 +355.31941199302673,0.28,0.0,0.0,0.0,1.094845 +355.3295500278473,0.26999998,0.0,0.0,0.0,1.094845 +355.34018993377686,0.26999998,0.0,0.0,0.0,1.094845 +355.34939193725586,0.26999998,0.0,0.0,0.0,1.094845 +355.3598749637604,0.26999998,0.0,0.0,0.0,1.1022453 +355.3693890571594,0.26999998,0.0,0.0,0.0,1.1022453 +355.379399061203,0.26999998,0.0,0.0,0.0,1.1022453 +355.39020895957947,0.26999998,0.0,0.0,0.0,1.1022453 +355.3993990421295,0.26999998,0.0,0.0,0.0,1.1022453 +355.4094281196594,0.26999998,0.0,0.0,0.0,1.1022453 +355.42021012306213,0.26999998,0.0,0.0,0.0,1.1003952 +355.42972898483276,0.26999998,0.0,0.0,0.0,1.1003952 +355.43940806388855,0.26999998,0.0,0.0,0.0,1.1003952 +355.4502389431,0.26,0.0,0.0,0.0,1.1003952 +355.4596040248871,0.26,0.0,0.0,0.0,1.1003952 +355.46939992904663,0.26,0.0,0.0,0.0,1.1244459 +355.4794919490814,0.26,0.0,0.0,0.0,1.1244459 +355.48953199386597,0.26,0.0,0.0,0.0,1.1244459 +355.4994020462036,0.26,0.0,0.0,0.0,1.1244459 +355.50941801071167,0.26,0.0,0.0,0.0,1.1244459 +355.52020502090454,0.26,0.0,0.0,0.0,1.1244459 +355.5294280052185,0.26,0.0,0.0,0.0,1.1244459 +355.5396320819855,0.25,0.0,0.0,0.0,1.1244459 +355.5493891239166,0.25,0.0,0.0,0.0,1.1244459 +355.5593991279602,0.25,0.0,0.0,0.0,1.1244459 +355.5694110393524,0.24,0.0,0.0,0.0,1.1484965 +355.5800609588623,0.24,0.0,0.0,0.0,1.1484965 +355.5894010066986,0.24,0.0,0.0,0.0,1.1484965 +355.59940004348755,0.22999999,0.0,0.0,0.0,1.1484965 +355.6093981266022,0.22999999,0.0,0.0,0.0,1.1484965 +355.6193959712982,0.22999999,0.0,0.0,0.0,1.2113981 +355.62939500808716,0.22999999,0.0,0.0,0.0,1.2113981 +355.63957810401917,0.22999999,0.0,0.0,0.0,1.2113981 +355.64942598342896,0.22,0.0,0.0,0.0,1.2113981 +355.65940403938293,0.22,0.0,0.0,0.0,1.2113981 +355.6693971157074,0.22,0.0,0.0,0.0,1.2243485 +355.67947793006897,0.22999999,0.0,0.0,0.0,1.2243485 +355.6894271373749,0.22999999,0.0,0.0,0.0,1.2243485 +355.6993930339813,0.22999999,0.0,0.0,0.0,1.2243485 +355.7093999385834,0.24,0.0,0.0,0.0,1.2243485 +355.7194221019745,0.25,0.0,0.0,0.0,1.0319433 +355.7295250892639,0.25,0.0,0.0,0.0,1.0319433 +355.7402400970459,0.26,0.0,0.0,0.0,1.0319433 +355.74942994117737,0.26,0.0,0.0,0.0,1.0319433 +355.7594220638275,0.26999998,0.0,0.0,0.0,1.0319433 +355.76945400238037,0.26999998,0.0,0.0,0.0,1.0282433 +355.77939796447754,0.28,0.0,0.0,0.0,1.0282433 +355.7894220352173,0.28,0.0,0.0,0.0,1.0282433 +355.80023312568665,0.28,0.0,0.0,0.0,1.0282433 +355.8094050884247,0.28,0.0,0.0,0.0,1.0282433 +355.8195719718933,0.28,0.0,0.0,0.0,1.0837448 +355.8294880390167,0.28,0.0,0.0,0.0,1.0837448 +355.8394169807434,0.28,0.0,0.0,0.0,1.0837448 +355.84944009780884,0.28,0.0,0.0,0.0,1.0837448 +355.8593969345093,0.29,0.0,0.0,0.0,1.0837448 +355.86939001083374,0.29,0.0,0.0,0.0,1.0800447 +355.87943601608276,0.29999998,0.0,0.0,0.0,1.0800447 +355.8893949985504,0.29999998,0.0,0.0,0.0,1.0800447 +355.8995430469513,0.31,0.0,0.0,0.0,1.0800447 +355.90942001342773,0.32,0.0,0.0,0.0,1.0800447 +355.919625043869,0.32999998,0.0,0.0,0.0,0.9597914 +355.92944598197937,0.34,0.0,0.0,0.0,0.9597914 +355.9394130706787,0.35,0.0,0.0,0.0,0.9597914 +355.9494979381561,0.35,0.0,0.0,0.0,0.9597914 +355.95940494537354,0.35999998,0.0,0.0,0.0,0.9597914 +355.96940302848816,0.37,0.0,0.0,0.0,0.92464054 +355.9796199798584,0.37,0.0,0.0,0.0,0.92464054 +355.989403963089,0.37,0.0,0.0,0.0,0.92464054 +355.99941205978394,0.38,0.0,0.0,0.0,0.92464054 +356.0094349384308,0.38,0.0,0.0,0.0,0.92464054 +356.01940512657166,0.38,0.0,0.0,0.0,0.9283407 +356.0294120311737,0.38,0.0,0.0,0.0,0.9283407 +356.03941202163696,0.38,0.0,0.0,0.0,0.9283407 +356.0494120121002,0.39,0.0,0.0,0.0,0.9283407 +356.05940794944763,0.39,0.0,0.0,0.0,0.9283407 +356.0695610046387,0.39,0.0,0.0,0.0,0.95054126 +356.07939195632935,0.39999998,0.0,0.0,0.0,0.95054126 +356.08944606781006,0.39999998,0.0,0.0,0.0,0.95054126 +356.09940791130066,0.41,0.0,0.0,0.0,0.95054126 +356.1094069480896,0.41,0.0,0.0,0.0,0.95054126 +356.11942195892334,0.41,0.0,0.0,0.0,0.9209404 +356.12941312789917,0.42,0.0,0.0,0.0,0.9209404 +356.1394040584564,0.42,0.0,0.0,0.0,0.9209404 +356.1493921279907,0.42,0.0,0.0,0.0,0.9209404 +356.1594150066376,0.42999998,0.0,0.0,0.0,0.9209404 +356.1698091030121,0.42999998,0.0,0.0,0.0,0.9172404 +356.1794099807739,0.42999998,0.0,0.0,0.0,0.9172404 +356.1894209384918,0.42999998,0.0,0.0,0.0,0.9172404 +356.19940209388733,0.44,0.0,0.0,0.0,0.9172404 +356.20940709114075,0.44,0.0,0.0,0.0,0.9172404 +356.2194149494171,0.44,0.0,0.0,0.0,0.8321382 +356.22954392433167,0.45,0.0,0.0,0.0,0.8321382 +356.23940896987915,0.45,0.0,0.0,0.0,0.8321382 +356.24942898750305,0.45,0.0,0.0,0.0,0.8321382 +356.2594430446625,0.45999998,0.0,0.0,0.0,0.8321382 +356.2694001197815,0.45999998,0.0,0.0,0.0,0.83768827 +356.279403924942,0.45999998,0.0,0.0,0.0,0.83768827 +356.2894561290741,0.45999998,0.0,0.0,0.0,0.83768827 +356.2993919849396,0.45999998,0.0,0.0,0.0,0.83768827 +356.3095519542694,0.47,0.0,0.0,0.0,0.83768827 +356.31959104537964,0.47,0.0,0.0,0.0,0.83398825 +356.32955408096313,0.47,0.0,0.0,0.0,0.83398825 +356.3394260406494,0.47,0.0,0.0,0.0,0.83398825 +356.34943294525146,0.48,0.0,0.0,0.0,0.83398825 +356.3593990802765,0.48,0.0,0.0,0.0,0.83398825 +356.3694009780884,0.48,0.0,0.0,0.0,0.8099375 +356.37959814071655,0.47,0.0,0.0,0.0,0.8099375 +356.38939809799194,0.47,0.0,0.0,0.0,0.8099375 +356.39940214157104,0.47,0.0,0.0,0.0,0.8099375 +356.4094281196594,0.47,0.0,0.0,0.0,0.8099375 +356.4194231033325,0.47,0.0,0.0,0.0,0.8691391 +356.4293999671936,0.47,0.0,0.0,0.0,0.8691391 +356.4394299983978,0.47,0.0,0.0,0.0,0.8691391 +356.44944310188293,0.47,0.0,0.0,0.0,0.8691391 +356.45942306518555,0.47,0.0,0.0,0.0,0.8691391 +356.4694170951843,0.47,0.0,0.0,0.0,0.7451858 +356.4794111251831,0.47,0.0,0.0,0.0,0.7451858 +356.48941802978516,0.47,0.0,0.0,0.0,0.7451858 +356.4994339942932,0.47,0.0,0.0,0.0,0.7451858 +356.509418964386,0.47,0.0,0.0,0.0,0.7451858 +356.5194101333618,0.45999998,0.0,0.0,0.0,0.66748375 +356.5294101238251,0.45999998,0.0,0.0,0.0,0.66748375 +356.53941798210144,0.45999998,0.0,0.0,0.0,0.66748375 +356.54941511154175,0.45,0.0,0.0,0.0,0.66748375 +356.55941891670227,0.44,0.0,0.0,0.0,0.66748375 +356.5694770812988,0.44,0.0,0.0,0.0,0.6711839 +356.5794050693512,0.42999998,0.0,0.0,0.0,0.6711839 +356.58941292762756,0.42,0.0,0.0,0.0,0.6711839 +356.5994119644165,0.41,0.0,0.0,0.0,0.6711839 +356.60942792892456,0.41,0.0,0.0,0.0,0.6711839 +356.61961102485657,0.39999998,0.0,0.0,0.0,0.68598425 +356.6294319629669,0.39999998,0.0,0.0,0.0,0.68598425 +356.63940811157227,0.39,0.0,0.0,0.0,0.68598425 +356.6494119167328,0.38,0.0,0.0,0.0,0.68598425 +356.65949296951294,0.38,0.0,0.0,0.0,0.68598425 +356.66939997673035,0.37,0.0,0.0,0.0,0.6138323 +356.6794240474701,0.37,0.0,0.0,0.0,0.6138323 +356.6894509792328,0.37,0.0,0.0,0.0,0.6138323 +356.6993999481201,0.35999998,0.0,0.0,0.0,0.6138323 +356.7095379829407,0.35999998,0.0,0.0,0.0,0.6138323 +356.71952199935913,0.35999998,0.0,0.0,0.0,0.3233746 +356.72947096824646,0.35,0.0,0.0,0.0,0.3233746 +356.7394139766693,0.35,0.0,0.0,0.0,0.3233746 +356.7494230270386,0.35,0.0,0.0,0.0,0.3233746 +356.75944209098816,0.35,0.0,0.0,0.0,0.3233746 +356.7694180011749,0.35,0.0,0.0,0.0,0.09766865 +356.77961802482605,0.34,0.0,0.0,0.0,0.09766865 +356.78943490982056,0.34,0.0,0.0,0.0,0.09766865 +356.79947304725647,0.34,0.0,0.0,0.0,0.09766865 +356.80945801734924,0.32999998,0.0,0.0,0.0,0.09766865 +356.81943702697754,0.32999998,0.0,0.0,0.0,-0.015184363 +356.8294150829315,0.32999998,0.0,0.0,0.0,-0.015184363 +356.8394389152527,0.32,0.0,0.0,0.0,-0.015184363 +356.8494520187378,0.32,0.0,0.0,0.0,-0.015184363 +356.8595130443573,0.32,0.0,0.0,0.0,-0.015184363 +356.86952114105225,0.32,0.0,0.0,0.0,-0.120637156 +356.8794400691986,0.31,0.0,0.0,0.0,-0.120637156 +356.889456987381,0.31,0.0,0.0,0.0,-0.120637156 +356.899423122406,0.31,0.0,0.0,0.0,-0.120637156 +356.90943002700806,0.31,0.0,0.0,0.0,-0.120637156 +356.9194130897522,0.31,0.0,0.0,0.0,-0.25939083 +356.92956495285034,0.31,0.0,0.0,0.0,-0.25939083 +356.9394381046295,0.29999998,0.0,0.0,0.0,-0.25939083 +356.9494059085846,0.29999998,0.0,0.0,0.0,-0.25939083 +356.95941710472107,0.29999998,0.0,0.0,0.0,-0.25939083 +356.9694709777832,0.29999998,0.0,0.0,0.0,-0.32044247 +356.9794280529022,0.29999998,0.0,0.0,0.0,-0.32044247 +356.98957109451294,0.29999998,0.0,0.0,0.0,-0.32044247 +356.99943804740906,0.29999998,0.0,0.0,0.0,-0.32044247 +357.0094721317291,0.29999998,0.0,0.0,0.0,-0.32044247 +357.01959109306335,0.29999998,0.0,0.0,0.0,-0.48694688 +357.02944111824036,0.29,0.0,0.0,0.0,-0.48694688 +357.0394470691681,0.29,0.0,0.0,0.0,-0.48694688 +357.049458026886,0.29,0.0,0.0,0.0,-0.48694688 +357.05943512916565,0.29,0.0,0.0,0.0,-0.48694688 +357.0694680213928,0.29,0.0,0.0,0.0,-0.48139673 +357.07942605018616,0.29,0.0,0.0,0.0,-0.48139673 +357.0894339084625,0.29,0.0,0.0,0.0,-0.48139673 +357.0994460582733,0.29,0.0,0.0,0.0,-0.48139673 +357.10943698883057,0.29,0.0,0.0,0.0,-0.48139673 +357.1195969581604,0.29,0.0,0.0,0.0,-0.5146976 +357.1294050216675,0.29,0.0,0.0,0.0,-0.5146976 +357.13942098617554,0.29,0.0,0.0,0.0,-0.5146976 +357.14942693710327,0.28,0.0,0.0,0.0,-0.5146976 +357.1594409942627,0.28,0.0,0.0,0.0,-0.5146976 +357.16944003105164,0.26999998,0.0,0.0,0.0,-0.57204914 +357.1794419288635,0.26999998,0.0,0.0,0.0,-0.57204914 +357.1894509792328,0.26,0.0,0.0,0.0,-0.57204914 +357.1994249820709,0.26,0.0,0.0,0.0,-0.57204914 +357.20942401885986,0.25,0.0,0.0,0.0,-0.57204914 +357.21944999694824,0.25,0.0,0.0,0.0,-0.677502 +357.22941493988037,0.24,0.0,0.0,0.0,-0.677502 +357.2394199371338,0.24,0.0,0.0,0.0,-0.677502 +357.24938893318176,0.22999999,0.0,0.0,0.0,-0.677502 +357.25945806503296,0.22999999,0.0,0.0,0.0,-0.677502 +357.2694249153137,0.22,0.0,0.0,0.0,-0.6904522 +357.27943205833435,0.22,0.0,0.0,0.0,-0.6904522 +357.2894630432129,0.22,0.0,0.0,0.0,-0.6904522 +357.29944109916687,0.22,0.0,0.0,0.0,-0.6904522 +357.3094289302826,0.21,0.0,0.0,0.0,-0.6904522 +357.320100069046,0.21,0.0,0.0,0.0,-0.6867522 +357.3295660018921,0.21,0.0,0.0,0.0,-0.6867522 +357.33942699432373,0.21,0.0,0.0,0.0,-0.6867522 +357.3503749370575,0.21,0.0,0.0,0.0,-0.6867522 +357.3598940372467,0.19999999,0.0,0.0,0.0,-0.6608515 +357.3694450855255,0.19999999,0.0,0.0,0.0,-0.6608515 +357.37945008277893,0.19999999,0.0,0.0,0.0,-0.6608515 +357.39037895202637,0.19999999,0.0,0.0,0.0,-0.6608515 +357.39942693710327,0.19999999,0.0,0.0,0.0,-0.6608515 +357.40945291519165,0.19999999,0.0,0.0,0.0,-0.6608515 +357.41973900794983,0.21,0.0,0.0,0.0,-0.6849022 +357.4294629096985,0.21,0.0,0.0,0.0,-0.6849022 +357.44038009643555,0.21,0.0,0.0,0.0,-0.6849022 +357.4494249820709,0.21,0.0,0.0,0.0,-0.6849022 +357.45940494537354,0.21,0.0,0.0,0.0,-0.6849022 +357.46946001052856,0.19999999,0.0,0.0,0.0,-0.6664016 +357.480525970459,0.21,0.0,0.0,0.0,-0.6664016 +357.48942613601685,0.21,0.0,0.0,0.0,-0.6664016 +357.5003831386566,0.21,0.0,0.0,0.0,-0.6664016 +357.50940799713135,0.21,0.0,0.0,0.0,-0.6664016 +357.51990604400635,0.21,0.0,0.0,0.0,-0.57944936 +357.52944803237915,0.21,0.0,0.0,0.0,-0.57944936 +357.54040813446045,0.22,0.0,0.0,0.0,-0.57944936 +357.54960799217224,0.22,0.0,0.0,0.0,-0.57944936 +357.55989813804626,0.22,0.0,0.0,0.0,-0.49619716 +357.56951904296875,0.22999999,0.0,0.0,0.0,-0.49619716 +357.5794451236725,0.22999999,0.0,0.0,0.0,-0.49619716 +357.59016013145447,0.22999999,0.0,0.0,0.0,-0.49619716 +357.5996091365814,0.24,0.0,0.0,0.0,-0.49619716 +357.6094551086426,0.24,0.75757575,0.75757575,0.0,-0.49619716 +357.6195139884949,0.24,0.75757575,0.75757575,0.0,-0.5165477 +357.63013195991516,0.24,0.75757575,0.75757575,0.0,-0.5165477 +357.63957691192627,0.25,0.75757575,0.75757575,0.0,-0.5165477 +357.64944100379944,0.24,0.75757575,0.75757575,0.0,-0.5165477 +357.6598870754242,0.24,0.75757575,0.75757575,0.0,-0.5646489 +357.6704189777374,0.24,0.75757575,0.75757575,0.0,-0.5646489 +357.68041491508484,0.24,0.75757575,0.75757575,0.0,-0.5646489 +357.6895020008087,0.24,0.0,0.0,0.0,-0.5646489 +357.6996841430664,0.22999999,0.0,0.0,0.0,-0.5646489 +357.7099070549011,0.24,0.0,0.0,0.0,-0.53874826 +357.7203640937805,0.24,0.75757575,0.75757575,0.0,-0.53874826 +357.7294669151306,0.24,0.75757575,0.75757575,0.0,-0.53874826 +357.74024295806885,0.24,0.75757575,0.75757575,0.0,-0.53874826 +357.750412940979,0.25,0.75757575,0.75757575,0.0,-0.53874826 +357.75990891456604,0.25,0.75757575,0.75757575,0.0,-0.53874826 +357.76943612098694,0.26,0.75757575,0.75757575,0.0,-0.48694688 +357.77943897247314,0.26,0.75757575,0.75757575,0.0,-0.48694688 +357.79041600227356,0.26,0.75757575,0.75757575,0.0,-0.48694688 +357.79943799972534,0.26999998,0.75757575,0.75757575,0.0,-0.48694688 +357.80957412719727,0.26999998,0.75757575,0.75757575,0.0,-0.48694688 +357.81965708732605,0.26999998,0.75757575,0.75757575,0.0,-0.44624582 +357.8301329612732,0.26999998,0.75757575,0.75757575,0.0,-0.44624582 +357.84055399894714,0.28,0.75757575,0.75757575,0.0,-0.44624582 +357.84946513175964,0.28,0.75757575,0.75757575,0.0,-0.44624582 +357.859894990921,0.28,0.75757575,0.75757575,0.0,-0.340793 +357.86949396133423,0.29,0.75757575,0.75757575,0.0,-0.340793 +357.88041496276855,0.29,0.75757575,0.75757575,0.0,-0.340793 +357.8894281387329,0.29999998,0.75757575,0.75757575,0.0,-0.340793 +357.8994541168213,0.31,0.75757575,0.75757575,0.0,-0.340793 +357.910432100296,0.31,0.75757575,0.75757575,0.0,-0.340793 +357.920373916626,0.31,0.75757575,0.75757575,0.0,-0.3185924 +357.9294581413269,0.32,0.0,0.0,0.0,-0.3185924 +357.94027495384216,0.32,0.0,0.0,0.0,-0.3185924 +357.9502959251404,0.31,0.0,0.0,0.0,-0.3185924 +357.9599199295044,0.31,0.0,0.0,0.0,-0.29639184 +357.96949100494385,0.31,0.0,0.0,0.0,-0.29639184 +357.980446100235,0.29999998,0.0,0.0,0.0,-0.29639184 +357.9894380569458,0.31,0.0,0.0,0.0,-0.29639184 +358.00044202804565,0.31,0.0,0.0,0.0,-0.29639184 +358.0094699859619,0.31,0.0,0.0,0.0,-0.29639184 +358.01959800720215,0.32,0.0,0.0,0.0,-0.29639184 +358.0294599533081,0.32999998,0.0,0.0,0.0,-0.29639184 +358.0402660369873,0.34,0.0,0.0,0.0,-0.29639184 +358.04950404167175,0.35,0.0,0.0,0.0,-0.29639184 +358.05989694595337,0.35,0.0,0.0,0.0,-0.264941 +358.0704469680786,0.35999998,0.0,0.0,0.0,-0.264941 +358.0804400444031,0.37,0.0,0.0,0.0,-0.264941 +358.08945298194885,0.37,0.0,0.0,0.0,-0.264941 +358.10044407844543,0.38,0.0,0.0,0.0,-0.264941 +358.1096279621124,0.38,0.0,0.0,0.0,-0.264941 +358.1204340457916,0.38,0.0,0.0,0.0,-0.25569075 +358.1294569969177,0.39,0.0,0.0,0.0,-0.25569075 +358.14046597480774,0.39,0.0,0.0,0.0,-0.25569075 +358.14949798583984,0.39,0.0,0.0,0.0,-0.25569075 +358.1598479747772,0.39,0.0,0.0,0.0,-0.25569075 +358.1694519519806,0.39,0.0,0.0,0.0,-0.26679102 +358.1804609298706,0.39,0.0,0.0,0.0,-0.26679102 +358.1898241043091,0.39,0.0,0.0,0.0,-0.26679102 +358.1998291015625,0.39,0.0,0.0,0.0,-0.26679102 +358.20945596694946,0.39999998,0.0,0.0,0.0,-0.26679102 +358.2201359272003,0.39999998,0.0,0.0,0.0,-0.103986725 +358.2299120426178,0.39999998,0.0,0.0,0.0,-0.103986725 +358.2396340370178,0.39999998,0.0,0.0,0.0,-0.103986725 +358.24947690963745,0.41,0.0,0.0,0.0,-0.103986725 +358.25990200042725,0.41,0.0,0.0,0.0,-0.06328564 +358.27002000808716,0.41,0.0,0.0,0.0,-0.06328564 +358.28046107292175,0.42,0.0,0.0,0.0,-0.06328564 +358.2894821166992,0.42,0.0,0.0,0.0,-0.06328564 +358.3004639148712,0.42,0.0,0.0,0.0,-0.06328564 +358.31005907058716,0.42,0.0,0.0,0.0,-0.06328564 +358.3199210166931,0.41,0.0,0.0,0.0,0.0033161184 +358.32944798469543,0.41,0.0,0.0,0.0,0.0033161184 +358.3404700756073,0.41,0.0,0.0,0.0,0.0033161184 +358.3502550125122,0.39999998,0.0,0.0,0.0,0.0033161184 +358.3598930835724,0.39999998,0.0,0.0,0.0,0.08286824 +358.3694670200348,0.39999998,0.0,0.0,0.0,0.08286824 +358.3799979686737,0.39999998,0.0,0.0,0.0,0.08286824 +358.39046692848206,0.39999998,0.0,0.0,0.0,0.08286824 +358.39998602867126,0.39999998,0.0,0.0,0.0,0.08286824 +358.40947699546814,0.39999998,0.0,0.0,0.0,0.08286824 +358.4199249744415,0.39999998,0.0,0.0,0.0,0.0551175 +358.4294149875641,0.39999998,0.0,0.0,0.0,0.0551175 +358.44010400772095,0.39999998,0.0,0.0,0.0,0.0551175 +358.4494640827179,0.39999998,0.0,0.0,0.0,0.0551175 +358.4598979949951,0.39999998,0.0,0.0,0.0,0.1383697 +358.46966791152954,0.39999998,0.0,0.0,0.0,0.1383697 +358.48048400878906,0.39999998,0.0,0.0,0.0,0.1383697 +358.48946499824524,0.39999998,0.0,0.0,0.0,0.1383697 +358.50009512901306,0.39999998,0.0,0.0,0.0,0.1383697 +358.51009702682495,0.39999998,0.0,0.0,0.0,0.1383697 +358.5194249153137,0.39999998,0.0,0.0,0.0,0.1457699 +358.529461145401,0.39999998,0.0,0.0,0.0,0.1457699 +358.5404739379883,0.41,0.0,0.0,0.0,0.1457699 +358.54997992515564,0.41,0.0,0.0,0.0,0.1457699 +358.5599000453949,0.41,0.0,0.0,0.0,0.14021976 +358.5694799423218,0.41,0.0,0.0,0.0,0.14021976 +358.5796220302582,0.41,0.0,0.0,0.0,0.14021976 +358.5902099609375,0.41,0.0,0.0,0.0,0.14021976 +358.59983110427856,0.41,0.0,0.0,0.0,0.14021976 +358.6094899177551,0.42,0.0,0.0,0.0,0.14021976 +358.6201400756836,0.42,0.0,0.0,0.0,0.15132006 +358.63012504577637,0.42,0.0,0.0,0.0,0.15132006 +358.6405019760132,0.42,0.0,0.0,0.0,0.15132006 +358.64948201179504,0.42,0.0,0.0,0.0,0.15132006 +358.65990591049194,0.42,0.0,0.0,0.0,0.12911949 +358.66974401474,0.42,0.0,0.0,0.0,0.12911949 +358.6800539493561,0.42,0.0,0.0,0.0,0.12911949 +358.6894841194153,0.42,0.0,0.0,0.0,0.12911949 +358.69940209388733,0.42,0.0,0.0,0.0,0.12911949 +358.7099189758301,0.42,0.0,0.0,0.0,0.19942135 +358.72042894363403,0.42,0.0,0.0,0.0,0.19942135 +358.7295091152191,0.42,0.0,0.0,0.0,0.19942135 +358.74019408226013,0.42999998,0.0,0.0,0.0,0.19942135 +358.7505021095276,0.42999998,0.0,0.0,0.0,0.19942135 +358.75966811180115,0.42999998,0.0,0.0,0.0,0.19942135 +358.76945900917053,0.42999998,0.0,0.0,0.0,0.19387117 +358.7805230617523,0.42999998,0.0,0.0,0.0,0.19387117 +358.7895269393921,0.42999998,0.0,0.0,0.0,0.19387117 +358.80051612854004,0.42999998,0.0,0.0,0.0,0.19387117 +358.8094880580902,0.42999998,0.0,0.0,0.0,0.19387117 +358.8204209804535,0.42999998,0.0,0.0,0.0,0.20682153 +358.8301510810852,0.42999998,0.0,0.0,0.0,0.20682153 +358.83947706222534,0.42999998,0.0,0.0,0.0,0.20682153 +358.8496069908142,0.42999998,0.0,0.0,0.0,0.20682153 +358.8599030971527,0.42999998,0.0,0.0,0.0,0.22532202 +358.8705310821533,0.42999998,0.0,0.0,0.0,0.22532202 +358.87968707084656,0.42999998,0.0,0.0,0.0,0.22532202 +358.88947010040283,0.42999998,0.0,0.0,0.0,0.22532202 +358.9005300998688,0.42999998,0.0,0.0,0.0,0.22532202 +358.91052412986755,0.42999998,0.0,0.0,0.0,0.22532202 +358.9204330444336,0.42999998,0.0,0.0,0.0,0.19572124 +358.9295370578766,0.42999998,0.0,0.0,0.0,0.19572124 +358.9395170211792,0.42999998,0.0,0.0,0.0,0.19572124 +358.9505341053009,0.42999998,0.0,0.0,0.0,0.19572124 +358.95992708206177,0.42999998,0.0,0.0,0.0,0.24752259 +358.9694790840149,0.42999998,0.0,0.0,0.0,0.24752259 +358.98053193092346,0.42999998,0.0,0.0,0.0,0.24752259 +358.99054312705994,0.42999998,0.0,0.0,0.0,0.24752259 +359.00054597854614,0.42999998,0.0,0.0,0.0,0.24752259 +359.0095019340515,0.42999998,0.0,0.0,0.0,0.24752259 +359.01971197128296,0.42999998,0.0,0.0,0.0,0.43992776 +359.0294420719147,0.42999998,0.0,0.0,0.0,0.43992776 +359.04053807258606,0.42999998,0.0,0.0,0.0,0.43992776 +359.04947900772095,0.42,0.0,0.0,0.0,0.43992776 +359.0599160194397,0.42,0.0,0.0,0.0,0.4473279 +359.0702381134033,0.42,0.0,0.0,0.0,0.4473279 +359.08053708076477,0.42,0.0,0.0,0.0,0.4473279 +359.0894739627838,0.42,0.0,0.0,0.0,0.4473279 +359.10055899620056,0.42,0.0,0.0,0.0,0.4473279 +359.10982608795166,0.42,0.0,0.0,0.0,0.4473279 +359.12024998664856,0.42,0.0,0.0,0.0,0.44177777 +359.12949299812317,0.42,0.0,0.0,0.0,0.44177777 +359.1405529975891,0.41,0.0,0.0,0.0,0.44177777 +359.1501660346985,0.41,0.0,0.0,0.0,0.44177777 +359.15990710258484,0.41,0.0,0.0,0.0,0.39552653 +359.1694779396057,0.41,0.0,0.0,0.0,0.39552653 +359.18005204200745,0.41,0.0,0.0,0.0,0.39552653 +359.1905610561371,0.41,0.0,0.0,0.0,0.39552653 +359.19949102401733,0.41,0.0,0.0,0.0,0.39552653 +359.2095310688019,0.41,0.0,0.0,0.0,0.39552653 +359.2203390598297,0.42,0.0,0.0,0.0,0.14947 +359.2305510044098,0.42,0.0,0.0,0.0,0.14947 +359.2403049468994,0.42999998,0.0,0.0,0.0,0.14947 +359.2495620250702,0.42999998,0.0,0.0,0.0,0.14947 +359.2599070072174,0.42999998,0.0,0.0,0.0,0.16242035 +359.26991605758667,0.44,0.0,0.0,0.0,0.16242035 +359.27943110466003,0.44,0.0,0.0,0.0,0.16242035 +359.2894940376282,0.44,0.0,0.0,0.0,0.16242035 +359.30055499076843,0.44,0.0,0.0,0.0,0.16242035 +359.3105731010437,0.44,0.0,0.0,0.0,0.16242035 +359.32041811943054,0.44,0.0,0.0,0.0,0.2919238 +359.3296129703522,0.44,0.0,0.0,0.0,0.2919238 +359.33946800231934,0.44,0.0,0.0,0.0,0.2919238 +359.35056805610657,0.44,0.0,0.0,0.0,0.2919238 +359.3599200248718,0.44,0.0,0.0,0.0,0.21792182 +359.3694851398468,0.44,0.0,0.0,0.0,0.21792182 +359.380166053772,0.44,0.0,0.0,0.0,0.21792182 +359.3893949985504,0.44,0.0,0.0,0.0,0.21792182 +359.399521112442,0.44,0.0,0.0,0.0,0.21792182 +359.40951204299927,0.44,0.0,0.0,0.0,0.21792182 +359.4196619987488,0.45,0.0,0.0,0.0,0.26602313 +359.4296290874481,0.45,0.0,0.0,0.0,0.26602313 +359.4405789375305,0.45,0.0,0.0,0.0,0.26602313 +359.449471950531,0.45,0.0,0.0,0.0,0.26602313 +359.4594249725342,0.45,0.0,0.0,0.0,0.26602313 +359.47014713287354,0.45,0.0,0.0,0.0,0.31227434 +359.48056411743164,0.45,0.0,0.0,0.0,0.31227434 +359.48948907852173,0.45,0.0,0.0,0.0,0.31227434 +359.4998450279236,0.45,0.0,0.0,0.0,0.31227434 +359.51049995422363,0.45,0.0,0.0,0.0,0.31227434 +359.51979207992554,0.45,0.0,0.0,0.0,0.3215246 +359.5294899940491,0.45,0.0,0.0,0.0,0.3215246 +359.54059195518494,0.45,0.0,0.0,0.0,0.3215246 +359.5505859851837,0.44,0.0,0.0,0.0,0.3215246 +359.5599191188812,0.44,0.0,0.0,0.0,0.3344749 +359.56951904296875,0.44,0.0,0.0,0.0,0.3344749 +359.58004093170166,0.44,0.0,0.0,0.0,0.3344749 +359.58948802948,0.44,0.0,0.0,0.0,0.3344749 +359.6005871295929,0.44,0.0,0.0,0.0,0.3344749 +359.60950207710266,0.44,0.0,0.0,0.0,0.3344749 +359.6198470592499,0.44,0.0,0.0,0.0,0.31967452 +359.6301341056824,0.44,0.0,0.0,0.0,0.31967452 +359.6406030654907,0.44,0.0,0.0,0.0,0.31967452 +359.64948296546936,0.44,0.0,0.0,0.0,0.31967452 +359.6596200466156,0.44,0.0,0.0,0.0,0.31967452 +359.6704931259155,0.44,0.0,0.0,0.0,0.31967452 +359.67958998680115,0.45,0.0,0.0,0.0,0.31967452 +359.68950510025024,0.45,0.0,0.0,0.0,0.31967452 +359.7001190185547,0.45,0.0,0.0,0.0,0.31967452 +359.7099230289459,0.45,0.0,0.0,0.0,0.30672416 +359.7195870876312,0.45,0.0,0.0,0.0,0.30672416 +359.7294261455536,0.45,0.0,0.0,0.0,0.30672416 +359.73993492126465,0.45,0.0,0.0,0.0,0.30672416 +359.74977707862854,0.45,0.0,0.0,0.0,0.30672416 +359.75949811935425,0.45,0.0,0.0,0.0,0.30672416 +359.769495010376,0.45,0.0,0.0,0.0,0.3344749 +359.7806119918823,0.45,0.0,0.0,0.0,0.3344749 +359.7902889251709,0.45,0.0,0.0,0.0,0.3344749 +359.80061411857605,0.45,0.0,0.0,0.0,0.3344749 +359.80951714515686,0.45,0.0,0.0,0.0,0.3344749 +359.82038712501526,0.44,0.0,0.0,0.0,0.34002507 +359.8296089172363,0.44,0.0,0.0,0.0,0.34002507 +359.83994007110596,0.44,0.0,0.0,0.0,0.34002507 +359.8495030403137,0.44,0.0,0.0,0.0,0.34002507 +359.8599200248718,0.44,0.0,0.0,0.0,0.30672416 +359.87049198150635,0.42999998,0.0,0.0,0.0,0.30672416 +359.8804581165314,0.42999998,0.0,0.0,0.0,0.30672416 +359.88949608802795,0.42999998,0.0,0.0,0.0,0.30672416 +359.90060901641846,0.42,0.0,0.0,0.0,0.30672416 +359.9098410606384,0.42,0.0,0.0,0.0,0.30672416 +359.91981506347656,0.42,0.0,0.0,0.0,0.3233746 +359.92950201034546,0.41,0.0,0.0,0.0,0.3233746 +359.94061613082886,0.39999998,0.0,0.0,0.0,0.3233746 +359.95061707496643,0.39999998,0.0,0.0,0.0,0.3233746 +359.95991802215576,0.39,0.0,0.0,0.0,0.33262488 +359.9694969654083,0.38,0.0,0.0,0.0,0.33262488 +359.9796631336212,0.38,0.0,0.0,0.0,0.33262488 +359.99007296562195,0.37,0.0,0.0,0.0,0.33262488 +359.9995861053467,0.37,0.0,0.0,0.0,0.33262488 +360.0095109939575,0.35999998,0.0,0.0,0.0,0.33262488 +360.02029299736023,0.35,0.0,0.0,0.0,0.3307748 +360.0301630496979,0.35,0.0,0.0,0.0,0.3307748 +360.04061698913574,0.34,0.0,0.0,0.0,0.3307748 +360.04951190948486,0.32999998,0.0,0.0,0.0,0.3307748 +360.05991792678833,0.32,0.0,0.0,0.0,0.3418751 +360.0698399543762,0.31,0.0,0.0,0.0,0.3418751 +360.08063197135925,0.29999998,0.0,0.0,0.0,0.3418751 +360.0895240306854,0.29,0.0,0.0,0.0,0.3418751 +360.09964203834534,0.28,0.0,0.0,0.0,0.3418751 +360.1097650527954,0.26999998,0.0,0.0,0.0,0.3418751 +360.1194999217987,0.26,0.0,0.0,0.0,0.30857423 +360.1294729709625,0.25,0.0,0.0,0.0,0.30857423 +360.14013409614563,0.24,0.0,0.0,0.0,0.30857423 +360.15047097206116,0.22999999,0.0,0.0,0.0,0.30857423 +360.1599419116974,0.22999999,0.0,0.0,0.0,0.2845236 +360.16950607299805,0.22,0.0,0.0,0.0,0.2845236 +360.18065905570984,0.22,0.0,0.0,0.0,0.2845236 +360.18956208229065,0.21,0.0,0.0,0.0,0.2845236 +360.20062804222107,0.21,0.0,0.0,0.0,0.2845236 +360.20950412750244,0.19999999,0.0,0.0,0.0,0.2845236 +360.22043800354004,0.19999999,0.0,0.0,0.0,0.23827238 +360.23015093803406,0.19999999,0.0,0.0,0.0,0.23827238 +360.2395489215851,0.19999999,0.0,0.0,0.0,0.23827238 +360.2495279312134,0.19999999,0.0,0.0,0.0,0.23827238 +360.25992012023926,0.19999999,0.0,0.0,0.0,0.22532202 +360.26986503601074,0.19999999,0.0,0.0,0.0,0.22532202 +360.2794859409332,0.19,0.0,0.0,0.0,0.22532202 +360.2895600795746,0.19,0.0,0.0,0.0,0.22532202 +360.2998249530792,0.19,0.0,0.0,0.0,0.22532202 +360.3106620311737,0.19,0.0,0.0,0.0,0.22532202 +360.31977105140686,0.19,0.0,0.0,0.0,0.3603756 +360.3295180797577,0.19,0.0,0.0,0.0,0.3603756 +360.3403129577637,0.19,0.0,0.0,0.0,0.3603756 +360.35067796707153,0.19,0.0,0.0,0.0,0.3603756 +360.35993909835815,0.17999999,0.0,0.0,0.0,0.2586229 +360.36945104599,0.17999999,0.0,0.0,0.0,0.2586229 +360.38065004348755,0.17999999,0.0,0.0,0.0,0.2586229 +360.3900110721588,0.17999999,0.0,0.0,0.0,0.2586229 +360.39943504333496,0.17999999,0.0,0.0,0.0,0.2586229 +360.4095289707184,0.17999999,0.0,0.0,0.0,0.2586229 +360.4201891422272,0.17,0.0,0.0,0.0,0.26602313 +360.43016505241394,0.17,0.0,0.0,0.0,0.26602313 +360.4394590854645,0.17,0.0,0.0,0.0,0.26602313 +360.44950008392334,0.17,0.0,0.0,0.0,0.26602313 +360.45994210243225,0.17,0.0,0.0,0.0,0.2586229 +360.46940302848816,0.17,0.0,0.0,0.0,0.2586229 +360.48015904426575,0.17,0.0,0.0,0.0,0.2586229 +360.4895439147949,0.16,0.0,0.0,0.0,0.2586229 +360.50003004074097,0.16,0.0,0.0,0.0,0.2586229 +360.510694026947,0.16,0.0,0.0,0.0,0.2586229 +360.5204141139984,0.16,0.0,0.0,0.0,0.19017108 +360.5295150279999,0.16,0.0,0.0,0.0,0.19017108 +360.54027009010315,0.16,0.0,0.0,0.0,0.19017108 +360.55067896842957,0.16,0.0,0.0,0.0,0.19017108 +360.55992913246155,0.16,0.0,0.0,0.0,0.14761995 +360.56952691078186,0.16,0.0,0.0,0.0,0.14761995 +360.5806920528412,0.16,0.0,0.0,0.0,0.14761995 +360.59067392349243,0.14999999,0.0,0.0,0.0,0.14761995 +360.600683927536,0.14999999,2.2727273,2.2727273,0.0,0.14761995 +360.6095139980316,0.14,5.3030305,5.3030305,0.0,0.14761995 +360.6195750236511,0.13,8.333334,8.333334,0.0,0.14761995 +360.6295371055603,0.13,10.606061,10.606061,0.0,0.14761995 +360.6405611038208,0.12,12.878788,12.878788,0.0,0.14761995 +360.6494679450989,0.11,14.39394,14.39394,0.0,0.14761995 +360.6599531173706,0.099999994,15.909091,15.909091,0.0,0.08101819 +360.66957807540894,0.089999996,18.939394,18.939394,0.0,0.08101819 +360.67967200279236,0.089999996,21.969696,21.969696,0.0,0.08101819 +360.6895160675049,0.08,25.757576,25.757576,0.0,0.08101819 +360.7007040977478,0.07,28.030302,28.030302,0.0,0.08101819 +360.7099230289459,0.07,29.545454,29.545454,0.0,0.08101819 +360.72008514404297,0.07,31.818182,31.818182,0.009372071,0.053267453 +360.72954511642456,0.06,34.848484,34.848484,0.028116215,0.053267453 +360.7406849861145,0.06,37.878788,37.878788,0.037488285,0.053267453 +360.75063610076904,0.049999997,40.90909,40.90909,0.046860356,0.053267453 +360.75964403152466,0.049999997,43.939392,43.939392,0.05623243,0.053267453 +360.76951003074646,0.04,45.454548,45.454548,0.0656045,0.049567357 +360.78068494796753,0.04,46.969696,46.969696,0.0656045,0.049567357 +360.79070591926575,0.04,50.0,50.0,0.07497657,0.049567357 +360.8000729084015,0.03,53.030304,53.030304,0.07497657,0.049567357 +360.80952191352844,0.03,55.30303,55.30303,0.08434864,0.049567357 +360.82045102119446,0.02,57.57576,57.57576,0.08434864,0.053267453 +360.8301649093628,0.02,59.090908,59.090908,0.09372071,0.053267453 +360.8407189846039,0.02,59.848484,59.848484,0.10309278,0.053267453 +360.84943294525146,0.01,62.121212,62.121212,0.10309278,0.053267453 +360.8599331378937,0.01,64.393936,64.393936,0.10309278,0.10321877 +360.8705401420593,0.0,66.66667,66.66667,0.11246486,0.10321877 +360.88070607185364,0.0,67.42425,67.42425,0.12183693,0.10321877 +360.8895061016083,0.0,53.78788,53.78788,0.12183693,0.10321877 +360.8999309539795,0.0,38.636364,38.636364,0.12183693,0.10321877 +360.91071605682373,0.0,24.242424,24.242424,0.131209,0.10321877 +360.9200990200043,0.0,20.454544,20.454544,0.131209,0.06066765 +360.9295139312744,0.0,24.242424,24.242424,0.131209,0.06066765 +360.93983006477356,0.0,28.78788,28.78788,0.131209,0.06066765 +360.9507179260254,0.0,32.575756,32.575756,0.131209,0.06066765 +360.95994901657104,0.0,35.60606,35.60606,0.14058107,0.031066857 +360.96953105926514,0.0,40.151516,40.151516,0.14995314,0.031066857 +360.9799599647522,0.0,44.696968,44.696968,0.14995314,0.031066857 +360.9894449710846,0.0,50.0,50.0,0.15932521,0.031066857 +361.00071692466736,0.0,54.545456,54.545456,0.15932521,0.031066857 +361.0095410346985,0.0,59.090908,59.090908,0.15932521,0.031066857 +361.02032494544983,0.0,62.121212,62.121212,0.15932521,-0.002234026 +361.02993297576904,0.0,64.393936,64.393936,0.16869728,-0.002234026 +361.0407249927521,0.0,67.42425,67.42425,0.16869728,-0.002234026 +361.04952812194824,0.0,62.121212,62.121212,0.17806935,-0.002234026 +361.0594251155853,0.0,53.78788,53.78788,0.17806935,-0.002234026 +361.07051396369934,0.0,45.454548,45.454548,0.17806935,0.010716328 +361.0795900821686,0.0,38.636364,38.636364,0.17806935,0.010716328 +361.08954191207886,0.0,31.818182,31.818182,0.17806935,0.010716328 +361.1007180213928,0.0,26.515152,26.515152,0.18744142,0.010716328 +361.11073899269104,0.0,22.727274,22.727274,0.18744142,0.010716328 +361.1195111274719,0.0,25.0,25.0,0.18744142,-0.002234026 +361.12952709198,0.0,31.060606,31.060606,0.18744142,-0.002234026 +361.13959193229675,0.0,35.60606,35.60606,0.18744142,-0.002234026 +361.15034008026123,0.0,40.151516,40.151516,0.18744142,-0.002234026 +361.1599359512329,0.0,43.181816,43.181816,0.18744142,0.0033161184 +361.16954803466797,0.0,46.21212,46.21212,0.1968135,0.0033161184 +361.1807470321655,0.0,50.0,50.0,0.1968135,0.0033161184 +361.190495967865,0.0,53.78788,53.78788,0.1968135,0.0033161184 +361.2007489204407,0.0,56.818184,56.818184,0.1968135,0.0033161184 +361.2095420360565,0.0,59.090908,59.090908,0.1968135,0.0033161184 +361.2197699546814,0.0,60.606064,60.606064,0.1968135,-0.03183481 +361.22939801216125,0.0,62.121212,62.121212,0.1968135,-0.03183481 +361.23970794677734,0.0,63.636364,63.636364,0.1968135,-0.03183481 +361.2495539188385,0.0,65.90909,65.90909,0.1968135,-0.03183481 +361.2596490383148,0.0,67.42425,67.42425,0.18744142,-0.03183481 +361.27052092552185,0.0,65.15151,65.15151,0.18744142,-0.011484267 +361.2803781032562,0.0,57.57576,57.57576,0.18744142,-0.011484267 +361.2895619869232,0.0,47.727272,47.727272,0.1968135,-0.011484267 +361.29999899864197,0.0,40.151516,40.151516,0.1968135,-0.011484267 +361.3107349872589,0.0,34.09091,34.09091,0.18744142,-0.011484267 +361.3204641342163,0.0,28.78788,28.78788,0.18744142,-0.011484267 +361.329519033432,0.0,23.484848,23.484848,0.17806935,-0.011484267 +361.3405981063843,0.0,21.969696,21.969696,0.16869728,-0.011484267 +361.34957909584045,0.0,25.0,25.0,0.16869728,-0.011484267 +361.35996103286743,0.0,27.272728,27.272728,0.16869728,-0.011484267 +361.3695409297943,0.0,29.545454,29.545454,0.17806935,-0.013334316 +361.3801760673523,0.0,31.818182,31.818182,0.17806935,-0.013334316 +361.390310049057,0.0,34.848484,34.848484,0.17806935,-0.013334316 +361.40074706077576,0.0,37.121216,37.121216,0.16869728,-0.013334316 +361.40942192077637,0.0,40.151516,40.151516,0.16869728,-0.013334316 +361.41991806030273,0.0,41.666668,41.666668,0.17806935,-0.03183481 +361.4301769733429,0.0,43.181816,43.181816,0.16869728,-0.03183481 +361.43950510025024,0.0,43.939392,43.939392,0.17806935,-0.03183481 +361.4495139122009,0.0,45.454548,45.454548,0.17806935,-0.03183481 +361.4599509239197,0.0,47.727272,47.727272,0.17806935,-0.011484267 +361.46943402290344,0.0,49.242424,49.242424,0.17806935,-0.011484267 +361.48041009902954,0.0,50.757576,50.757576,0.16869728,-0.011484267 +361.48940110206604,0.0,52.272724,52.272724,0.16869728,-0.011484267 +361.49945306777954,0.0,53.030304,53.030304,0.17806935,-0.011484267 +361.5099470615387,0.0,53.030304,53.030304,0.16869728,-0.0040840744 +361.5204830169678,0.0,53.78788,53.78788,0.15932521,-0.0040840744 +361.529433965683,0.0,54.545456,54.545456,0.15932521,-0.0040840744 +361.53961205482483,0.0,56.060604,56.060604,0.15932521,-0.0040840744 +361.54948806762695,0.0,57.57576,57.57576,0.15932521,-0.0040840744 +361.5599539279938,0.0,58.333332,58.333332,0.15932521,-0.0040840744 +361.5695559978485,0.0,59.090908,59.090908,0.15932521,-0.0040840744 +361.57951498031616,0.0,59.090908,59.090908,0.15932521,-0.0040840744 +361.5907680988312,0.0,59.090908,59.090908,0.15932521,-0.0040840744 +361.60077595710754,0.0,59.090908,59.090908,0.15932521,-0.0040840744 +361.60952591896057,0.0,59.848484,59.848484,0.15932521,-0.0040840744 +361.61939311027527,0.0,60.606064,60.606064,0.16869728,-0.0040840744 +361.6295289993286,0.0,61.363636,61.363636,0.16869728,-0.0040840744 +361.6407709121704,0.0,61.363636,61.363636,0.15932521,-0.0040840744 +361.64954113960266,0.0,60.606064,60.606064,0.15932521,-0.0040840744 +361.65993213653564,0.0,59.090908,59.090908,0.15932521,-0.009634218 +361.6694481372833,0.0,58.333332,58.333332,0.15932521,-0.009634218 +361.6807870864868,0.0,57.57576,57.57576,0.15932521,-0.009634218 +361.689551115036,0.0,57.57576,57.57576,0.15932521,-0.009634218 +361.70031905174255,0.0,56.818184,56.818184,0.15932521,-0.009634218 +361.70955204963684,0.0,56.060604,56.060604,0.15932521,-0.009634218 +361.71970200538635,0.0,54.545456,54.545456,0.14995314,-0.020734508 +361.72953391075134,0.0,53.030304,53.030304,0.14995314,-0.020734508 +361.7407901287079,0.0,51.515152,51.515152,0.14995314,-0.020734508 +361.7505040168762,0.0,50.757576,50.757576,0.14995314,-0.020734508 +361.75973296165466,0.0,50.757576,50.757576,0.14995314,-0.020734508 +361.7695269584656,0.0,50.0,50.0,0.14058107,-0.009634218 +361.78078413009644,0.0,49.242424,49.242424,0.14058107,-0.009634218 +361.79006004333496,0.0,48.484848,48.484848,0.131209,-0.009634218 +361.79956102371216,0.0,47.727272,47.727272,0.131209,-0.009634218 +361.80954098701477,0.0,46.969696,46.969696,0.131209,-0.009634218 +361.8207941055298,0.0,45.454548,45.454548,0.131209,0.031066857 +361.8294041156769,0.0,44.696968,44.696968,0.131209,0.031066857 +361.84017300605774,0.0,43.939392,43.939392,0.12183693,0.031066857 +361.8495829105377,0.0,43.939392,43.939392,0.131209,0.031066857 +361.85995602607727,0.0,43.939392,43.939392,0.131209,0.010716328 +361.8694200515747,0.0,43.181816,43.181816,0.131209,0.010716328 +361.8801929950714,0.0,43.181816,43.181816,0.131209,0.010716328 +361.88953399658203,0.0,42.424244,42.424244,0.131209,0.010716328 +361.8999810218811,0.0,41.666668,41.666668,0.131209,0.010716328 +361.9107971191406,0.0,42.424244,42.424244,0.131209,0.010716328 +361.91964411735535,0.0,42.424244,42.424244,0.14058107,0.008866279 +361.92955112457275,0.0,43.181816,43.181816,0.14058107,0.008866279 +361.9399359226227,0.0,43.181816,43.181816,0.14058107,0.008866279 +361.9504699707031,0.0,43.181816,43.181816,0.14058107,0.008866279 +361.9594039916992,0.0,43.181816,43.181816,0.14058107,0.008866279 +361.9695589542389,0.0,42.424244,42.424244,0.131209,0.0070162313 +361.9808211326599,0.0,41.666668,41.666668,0.131209,0.0070162313 +361.9901580810547,0.0,41.666668,41.666668,0.12183693,0.0070162313 +362.00079894065857,0.0,42.424244,42.424244,0.12183693,0.0070162313 +362.00955605506897,0.0,43.181816,43.181816,0.12183693,0.0070162313 +362.0194230079651,0.0,43.181816,43.181816,0.12183693,0.0014660703 +362.0300259590149,0.0,43.181816,43.181816,0.12183693,0.0014660703 +362.0395929813385,0.0,43.181816,43.181816,0.12183693,0.0014660703 +362.04953694343567,0.0,42.424244,42.424244,0.12183693,0.0014660703 +362.05980801582336,0.0,42.424244,42.424244,0.12183693,0.0014660703 +362.0694229602814,0.0,42.424244,42.424244,0.12183693,0.068067834 +362.08028411865234,0.0,43.181816,43.181816,0.12183693,0.068067834 +362.0895800590515,0.0,43.939392,43.939392,0.12183693,0.068067834 +362.10081005096436,0.0,44.696968,44.696968,0.12183693,0.068067834 +362.1108100414276,0.0,44.696968,44.696968,0.11246486,0.068067834 +362.1197910308838,0.0,44.696968,44.696968,0.11246486,-0.0077841706 +362.1295819282532,0.0,43.181816,43.181816,0.11246486,-0.0077841706 +362.1408109664917,0.0,43.181816,43.181816,0.11246486,-0.0077841706 +362.1500070095062,0.0,43.181816,43.181816,0.11246486,-0.0077841706 +362.15993905067444,0.0,43.181816,43.181816,0.11246486,0.019966569 +362.16954803466797,0.0,43.181816,43.181816,0.10309278,0.019966569 +362.17951107025146,0.0,43.181816,43.181816,0.10309278,0.019966569 +362.18987703323364,0.0,42.424244,42.424244,0.10309278,0.019966569 +362.19998693466187,0.0,41.666668,41.666668,0.10309278,0.019966569 +362.2095649242401,0.0,40.151516,40.151516,0.11246486,0.019966569 +362.2204399108887,0.0,38.636364,38.636364,0.11246486,0.008866279 +362.23018312454224,0.0,37.878788,37.878788,0.11246486,0.008866279 +362.23940801620483,0.0,36.363636,36.363636,0.10309278,0.008866279 +362.249568939209,0.0,34.848484,34.848484,0.10309278,0.008866279 +362.2599399089813,0.0,34.09091,34.09091,0.10309278,0.0014660703 +362.26941299438477,0.0,32.575756,32.575756,0.10309278,0.0014660703 +362.2801070213318,0.0,31.060606,31.060606,0.09372071,0.0014660703 +362.28958010673523,0.0,28.78788,28.78788,0.09372071,0.0014660703 +362.2996881008148,0.0,27.272728,27.272728,0.09372071,0.0014660703 +362.3108420372009,0.0,25.757576,25.757576,0.08434864,0.0014660703 +362.31995606422424,0.0,24.242424,24.242424,0.08434864,-0.00038397792 +362.32953000068665,0.0,22.727274,22.727274,0.08434864,-0.00038397792 +362.3408601284027,0.0,21.212122,21.212122,0.08434864,-0.00038397792 +362.3508400917053,0.0,19.69697,19.69697,0.07497657,-0.00038397792 +362.35979890823364,0.0,18.181818,18.181818,0.0656045,-0.00038397792 +362.3695750236511,0.0,17.424242,17.424242,0.0656045,-0.011484267 +362.38087606430054,0.01,15.909091,15.909091,0.05623243,-0.011484267 +362.39037799835205,0.01,14.39394,14.39394,0.046860356,-0.011484267 +362.39940214157104,0.01,13.636364,13.636364,0.037488285,-0.011484267 +362.4095721244812,0.02,12.878788,12.878788,0.028116215,-0.011484267 +362.4198031425476,0.02,12.121212,12.121212,0.028116215,0.012566376 +362.43028712272644,0.03,10.606061,10.606061,0.028116215,0.012566376 +362.44060802459717,0.03,9.848485,9.848485,0.028116215,0.012566376 +362.44949412345886,0.03,9.090909,9.090909,0.028116215,0.012566376 +362.4599380493164,0.04,8.333334,8.333334,0.018744143,0.010716328 +362.46942806243896,0.04,7.575758,7.575758,0.009372071,0.010716328 +362.4804620742798,0.04,6.818182,6.818182,0.0,0.010716328 +362.4894769191742,0.04,6.060606,6.060606,0.0,0.010716328 +362.4994480609894,0.049999997,5.3030305,5.3030305,0.0,0.010716328 +362.5097219944,0.049999997,4.5454545,4.5454545,0.0,0.010716328 +362.52050399780273,0.049999997,3.787879,3.787879,0.0,0.0033161184 +362.52957010269165,0.049999997,3.030303,3.030303,0.0,0.0033161184 +362.5401511192322,0.049999997,3.030303,3.030303,0.0,0.0033161184 +362.5505509376526,0.06,2.2727273,2.2727273,0.0,0.0033161184 +362.5599660873413,0.06,1.5151515,1.5151515,0.0,0.027366763 +362.5695950984955,0.06,1.5151515,1.5151515,0.0,0.027366763 +362.57954692840576,0.06,0.75757575,0.75757575,0.0,0.027366763 +362.5895631313324,0.06,0.75757575,0.75757575,0.0,0.027366763 +362.59965205192566,0.06,0.0,0.0,0.0,0.027366763 +362.6095600128174,0.06,0.0,0.0,0.0,0.027366763 +362.61944007873535,0.06,0.0,0.0,0.0,0.01811652 +362.63031697273254,0.06,0.0,0.0,0.0,0.01811652 +362.6408619880676,0.06,0.0,0.0,0.0,0.01811652 +362.6495609283447,0.06,0.0,0.0,0.0,0.01811652 +362.6599910259247,0.06,0.0,0.0,0.0,0.01811652 +362.6694190502167,0.06,0.0,0.0,0.0,0.0070162313 +362.6801860332489,0.06,0.0,0.0,0.0,0.0070162313 +362.68955302238464,0.07,0.0,0.0,0.0,0.0070162313 +362.70087599754333,0.07,0.0,0.0,0.0,0.0070162313 +362.7099390029907,0.07,0.0,0.0,0.0,0.012566376 +362.71988105773926,0.07,0.0,0.0,0.0,0.012566376 +362.72950410842896,0.07,0.0,0.0,0.0,0.012566376 +362.74088311195374,0.07,0.0,0.0,0.0,0.012566376 +362.7507610321045,0.08,0.0,0.0,0.0,0.012566376 +362.75977396965027,0.08,0.0,0.0,0.0,0.012566376 +362.76955914497375,0.08,0.0,0.0,0.0,0.014416425 +362.77950501441956,0.089999996,0.0,0.0,0.0,0.014416425 +362.7908890247345,0.089999996,0.0,0.0,0.0,0.014416425 +362.80088996887207,0.099999994,0.0,0.0,0.0,0.014416425 +362.80957102775574,0.099999994,0.0,0.0,0.0,0.014416425 +362.8196620941162,0.11,0.0,0.0,0.0,0.008866279 +362.82948899269104,0.12,0.0,0.0,0.0,0.008866279 +362.84026312828064,0.12,0.0,0.0,0.0,0.008866279 +362.84958696365356,0.13,0.0,0.0,0.0,0.008866279 +362.8593919277191,0.14,0.0,0.0,0.0,0.008866279 +362.8693950176239,0.14999999,0.0,0.0,0.0,0.0070162313 +362.88089299201965,0.14999999,0.0,0.0,0.0,0.0070162313 +362.88955998420715,0.16,0.0,0.0,0.0,0.0070162313 +362.90081310272217,0.17,0.0,0.0,0.0,0.0070162313 +362.90982007980347,0.17999999,0.0,0.0,0.0,0.0070162313 +362.92047095298767,0.17999999,0.0,0.0,0.0,0.0070162313 +362.92959094047546,0.19,0.0,0.0,0.0,0.0070162313 +362.9396071434021,0.19999999,0.0,0.0,0.0,0.0070162313 +362.95035099983215,0.21,0.0,0.0,0.0,0.0070162313 +362.9599640369415,0.21,0.0,0.0,0.0,-0.00038397792 +362.9695839881897,0.22,0.0,0.0,0.0,-0.00038397792 +362.9809091091156,0.22999999,0.0,0.0,0.0,-0.00038397792 +362.9909019470215,0.22999999,0.0,0.0,0.0,-0.00038397792 +362.9999940395355,0.24,0.0,0.0,0.0,-0.00038397792 +363.0095970630646,0.24,0.0,0.0,0.0,-0.00038397792 +363.01981806755066,0.25,0.0,0.0,0.0,-0.0077841706 +363.030072927475,0.25,0.0,0.0,0.0,-0.0077841706 +363.0396320819855,0.26,0.0,0.0,0.0,-0.0077841706 +363.0495901107788,0.26999998,0.0,0.0,0.0,-0.0077841706 +363.0599579811096,0.28,0.0,0.0,0.0,-0.009634218 +363.06944704055786,0.28,0.0,0.0,0.0,-0.009634218 +363.08091711997986,0.29,0.0,0.0,0.0,-0.009634218 +363.08959794044495,0.29999998,0.0,0.0,0.0,-0.009634218 +363.09943413734436,0.29999998,0.0,0.0,0.0,-0.009634218 +363.1109130382538,0.31,0.0,0.0,0.0,-0.009634218 +363.12015891075134,0.31,0.0,0.0,0.0,-0.015184363 +363.1296241283417,0.32,0.0,0.0,0.0,-0.015184363 +363.14090299606323,0.32,0.0,0.0,0.0,-0.015184363 +363.1509289741516,0.32,0.0,0.0,0.0,-0.015184363 +363.15970396995544,0.32,0.0,0.0,0.0,-0.015184363 +363.16956996917725,0.32999998,0.0,0.0,0.0,-0.022584556 +363.18026995658875,0.32999998,0.0,0.0,0.0,-0.022584556 +363.1894280910492,0.32999998,0.0,0.0,0.0,-0.022584556 +363.20090508461,0.34,0.0,0.0,0.0,-0.022584556 +363.2095890045166,0.34,0.0,0.0,0.0,-0.022584556 +363.21991205215454,0.34,0.0,0.0,0.0,-0.013334316 +363.22956013679504,0.34,0.0,0.0,0.0,-0.013334316 +363.240926027298,0.35,0.0,0.0,0.0,-0.013334316 +363.2495861053467,0.35,0.0,0.0,0.0,-0.013334316 +363.2599561214447,0.35,0.0,0.0,0.0,-0.015184363 +363.2694420814514,0.35,0.0,0.0,0.0,-0.015184363 +363.2795031070709,0.35,0.0,0.0,0.0,-0.015184363 +363.28959012031555,0.35999998,0.0,0.0,0.0,-0.015184363 +363.3004050254822,0.35999998,0.0,0.0,0.0,-0.015184363 +363.3094210624695,0.35999998,0.0,0.0,0.0,-0.015184363 +363.32047510147095,0.35999998,0.0,0.0,0.0,-0.013334316 +363.32943296432495,0.35999998,0.0,0.0,0.0,-0.013334316 +363.33995294570923,0.35999998,0.0,0.0,0.0,-0.013334316 +363.3497049808502,0.35999998,0.0,0.0,0.0,-0.013334316 +363.3596260547638,0.37,0.0,0.0,0.0,-0.013334316 +363.3695800304413,0.37,0.0,0.0,0.0,-0.0077841706 +363.3809311389923,0.37,0.0,0.0,0.0,-0.0077841706 +363.3905200958252,0.37,0.0,0.0,0.0,-0.0077841706 +363.39953994750977,0.37,0.0,0.0,0.0,-0.0077841706 +363.4096009731293,0.37,0.0,0.0,0.0,-0.0077841706 +363.42049193382263,0.37,0.0,0.0,0.0,-0.002234026 +363.42994809150696,0.37,0.0,0.0,0.0,-0.002234026 +363.4409489631653,0.37,0.0,0.0,0.0,-0.002234026 +363.44958305358887,0.37,0.0,0.0,0.0,-0.002234026 +363.4598560333252,0.37,0.0,0.0,0.0,-0.002234026 +363.4694559574127,0.37,0.0,0.0,0.0,0.014416425 +363.48063111305237,0.37,0.0,0.0,0.0,0.014416425 +363.48959708213806,0.37,0.0,0.0,0.0,0.014416425 +363.49941897392273,0.37,0.0,0.0,0.0,0.014416425 +363.50995802879333,0.37,0.0,0.0,0.0,0.023666665 +363.5204300880432,0.37,0.0,0.0,0.0,0.023666665 +363.52943301200867,0.37,0.0,0.0,0.0,0.023666665 +363.5401840209961,0.37,0.0,0.0,0.0,0.023666665 +363.5500400066376,0.37,0.0,0.0,0.0,0.023666665 +363.55997014045715,0.37,0.0,0.0,0.0,0.012566376 +363.56962394714355,0.37,0.0,0.0,0.0,0.012566376 +363.57975602149963,0.37,0.0,0.0,0.0,0.012566376 +363.59040904045105,0.35999998,0.0,0.0,0.0,0.012566376 +363.599573135376,0.35999998,0.0,0.0,0.0,0.012566376 +363.60959100723267,0.35999998,0.0,0.0,0.0,0.012566376 +363.6197919845581,0.35999998,0.0,0.0,0.0,0.042167164 +363.62967014312744,0.35999998,0.0,0.0,0.0,0.042167164 +363.640221118927,0.35999998,0.0,0.0,0.0,0.042167164 +363.64960193634033,0.35999998,0.0,0.0,0.0,0.042167164 +363.6598401069641,0.35999998,0.0,0.0,0.0,0.042167164 +363.6694281101227,0.35999998,0.0,0.0,0.0,0.053267453 +363.6795790195465,0.35999998,0.0,0.0,0.0,0.053267453 +363.6896071434021,0.35,0.0,0.0,0.0,0.053267453 +363.7008080482483,0.35,0.0,0.0,0.0,0.053267453 +363.7099709510803,0.35,0.0,0.0,0.0,0.053267453 +363.720468044281,0.35,0.0,0.0,0.0,0.053267453 +363.72958111763,0.35,0.0,0.0,0.0,0.053267453 +363.7393910884857,0.35,0.0,0.0,0.0,0.053267453 +363.749862909317,0.35,0.0,0.0,0.0,0.053267453 +363.7596650123596,0.35,0.0,0.0,0.0,0.053267453 +363.7695999145508,0.35,0.0,0.0,0.0,0.049567357 +363.78024101257324,0.35,0.0,0.0,0.0,0.049567357 +363.79097414016724,0.35,0.0,0.0,0.0,0.049567357 +363.8009760379791,0.35,0.0,0.0,0.0,0.049567357 +363.809592962265,0.35999998,0.0,0.0,0.0,0.049567357 +363.82048892974854,0.35999998,0.0,0.0,0.0,0.0551175 +363.8295660018921,0.35999998,0.0,0.0,0.0,0.0551175 +363.8396360874176,0.35999998,0.0,0.0,0.0,0.0551175 +363.8495819568634,0.35999998,0.0,0.0,0.0,0.0551175 +363.8599829673767,0.35999998,0.0,0.0,0.0,0.062517695 +363.86945605278015,0.35999998,0.0,0.0,0.0,0.062517695 +363.8799650669098,0.35999998,0.0,0.0,0.0,0.062517695 +363.8895900249481,0.35999998,0.0,0.0,0.0,0.062517695 +363.901004076004,0.35999998,0.0,0.0,0.0,0.062517695 +363.91070103645325,0.35999998,0.0,0.0,0.0,0.062517695 +363.91974210739136,0.35999998,0.0,0.0,0.0,0.053267453 +363.9296181201935,0.35999998,0.0,0.0,0.0,0.053267453 +363.93949604034424,0.35999998,0.0,0.0,0.0,0.053267453 +363.9495451450348,0.35999998,0.0,0.0,0.0,0.053267453 +363.9599609375,0.35999998,0.0,0.0,0.0,0.053267453 +363.96962809562683,0.35999998,0.0,0.0,0.0,0.053267453 +363.9796380996704,0.35999998,0.0,0.0,0.0,0.053267453 +363.99021196365356,0.35999998,0.0,0.0,0.0,0.053267453 +364.00040197372437,0.35999998,0.0,0.0,0.0,0.053267453 +364.00961995124817,0.37,0.0,0.0,0.0,0.053267453 +364.0203869342804,0.37,0.0,0.0,0.0,0.07546805 +364.0294260978699,0.37,0.0,0.0,0.0,0.07546805 +364.041002035141,0.37,0.0,0.0,0.0,0.07546805 +364.0496051311493,0.37,0.0,0.0,0.0,0.07546805 +364.05997109413147,0.37,0.0,0.0,0.0,0.05696755 +364.0694680213928,0.37,0.0,0.0,0.0,0.05696755 +364.08063793182373,0.37,0.0,0.0,0.0,0.05696755 +364.0895390510559,0.37,0.0,0.0,0.0,0.05696755 +364.1000819206238,0.37,0.0,0.0,0.0,0.05696755 +364.1102979183197,0.37,0.0,0.0,0.0,0.05696755 +364.1204481124878,0.37,0.0,0.0,0.0,0.05696755 +364.1294710636139,0.37,0.0,0.0,0.0,0.05696755 +364.1400730609894,0.37,0.0,0.0,0.0,0.05696755 +364.1510190963745,0.37,0.0,0.0,0.0,0.05696755 +364.1599760055542,0.37,0.0,0.0,0.0,0.042167164 +364.1696000099182,0.37,0.0,0.0,0.0,0.042167164 +364.18100094795227,0.37,0.0,0.0,0.0,0.042167164 +364.1902630329132,0.37,0.0,0.0,0.0,0.042167164 +364.2002000808716,0.37,0.0,0.0,0.0,0.042167164 +364.2094120979309,0.37,0.0,0.0,0.0,0.042167164 +364.2195620536804,0.37,0.0,0.0,0.0,0.08471829 +364.230211019516,0.37,0.0,0.0,0.0,0.08471829 +364.2410249710083,0.37,0.0,0.0,0.0,0.08471829 +364.24943494796753,0.37,0.0,0.0,0.0,0.08471829 +364.2599711418152,0.37,0.0,0.0,0.0,0.073618 +364.269474029541,0.37,0.0,0.0,0.0,0.073618 +364.2797050476074,0.37,0.0,0.0,0.0,0.073618 +364.28945112228394,0.37,0.0,0.0,0.0,0.073618 +364.29943203926086,0.37,0.0,0.0,0.0,0.073618 +364.3096499443054,0.37,0.0,0.0,0.0,0.073618 +364.32067108154297,0.37,0.0,0.0,0.0,0.08286824 +364.32959604263306,0.37,0.0,0.0,0.0,0.08286824 +364.34104800224304,0.37,0.0,0.0,0.0,0.08286824 +364.35103011131287,0.37,0.0,0.0,0.0,0.08286824 +364.35998606681824,0.37,0.0,0.0,0.0,0.10506884 +364.36962509155273,0.37,0.0,0.0,0.0,0.10506884 +364.37961292266846,0.37,0.0,0.0,0.0,0.10506884 +364.3907480239868,0.37,0.0,0.0,0.0,0.10506884 +364.399738073349,0.37,0.0,0.0,0.0,0.10506884 +364.4096369743347,0.37,0.0,0.0,0.0,0.10506884 +364.4205000400543,0.37,0.0,0.0,0.0,0.077318095 +364.4299340248108,0.37,0.0,0.0,0.0,0.077318095 +364.4407169818878,0.37,0.0,0.0,0.0,0.077318095 +364.4496021270752,0.37,0.0,0.0,0.0,0.077318095 +364.45998311042786,0.37,0.0,0.0,0.0,0.093968526 +364.4694890975952,0.37,0.0,0.0,0.0,0.093968526 +364.48083209991455,0.37,0.0,0.0,0.0,0.093968526 +364.48960399627686,0.37,0.0,0.0,0.0,0.093968526 +364.4994809627533,0.37,0.0,0.0,0.0,0.093968526 +364.50996494293213,0.37,0.0,0.0,0.0,0.15132006 +364.52047896385193,0.37,0.0,0.0,0.0,0.15132006 +364.52962613105774,0.37,0.0,0.0,0.0,0.15132006 +364.54104495048523,0.37,0.0,0.0,0.0,0.15132006 +364.55012607574463,0.37,0.0,0.0,0.0,0.15132006 +364.5599489212036,0.37,0.0,0.0,0.0,0.15132006 +364.569454908371,0.37,0.0,0.0,0.0,0.16242035 +364.5797040462494,0.35999998,0.0,0.0,0.0,0.16242035 +364.5910460948944,0.35999998,0.0,0.0,0.0,0.16242035 +364.60106205940247,0.35999998,0.0,0.0,0.0,0.16242035 +364.60961413383484,0.35999998,0.0,0.0,0.0,0.16242035 +364.620512008667,0.37,0.0,0.0,0.0,0.14947 +364.62950706481934,0.37,0.0,0.0,0.0,0.14947 +364.6399841308594,0.37,0.0,0.0,0.0,0.14947 +364.6496081352234,0.37,0.0,0.0,0.0,0.14947 +364.65957498550415,0.37,0.0,0.0,0.0,0.14947 +364.6694779396057,0.37,0.0,0.0,0.0,0.1420698 +364.68085193634033,0.37,0.0,0.0,0.0,0.1420698 +364.6896209716797,0.37,0.0,0.0,0.0,0.1420698 +364.7004020214081,0.37,0.0,0.0,0.0,0.1420698 +364.70998311042786,0.38,0.0,0.0,0.0,0.16427042 +364.72046995162964,0.38,0.0,0.0,0.0,0.16427042 +364.72946405410767,0.38,0.0,0.0,0.0,0.16427042 +364.7398159503937,0.38,0.0,0.0,0.0,0.16427042 +364.75105595588684,0.38,0.0,0.0,0.0,0.16427042 +364.7599790096283,0.38,0.0,0.0,0.0,0.1346696 +364.76961302757263,0.38,0.0,0.0,0.0,0.1346696 +364.7810580730438,0.38,0.0,0.0,0.0,0.1346696 +364.79042196273804,0.38,0.0,0.0,0.0,0.1346696 +364.80107593536377,0.38,0.0,0.0,0.0,0.1346696 +364.80963706970215,0.38,0.0,0.0,0.0,0.1346696 +364.82036805152893,0.38,0.0,0.0,0.0,0.11801915 +364.8293969631195,0.38,0.0,0.0,0.0,0.11801915 +364.83943009376526,0.39,0.0,0.0,0.0,0.11801915 +364.84964513778687,0.39,0.0,0.0,0.0,0.11801915 +364.8595459461212,0.39,0.0,0.0,0.0,0.11801915 +364.86947798728943,0.39,0.0,0.0,0.0,0.110618964 +364.8810670375824,0.39,0.0,0.0,0.0,0.110618964 +364.88963198661804,0.39,0.0,0.0,0.0,0.110618964 +364.89942598342896,0.39999998,0.0,0.0,0.0,0.110618964 +364.90945291519165,0.39999998,0.0,0.0,0.0,0.110618964 +364.91968607902527,0.39,0.0,0.0,0.0,0.114319056 +364.9296109676361,0.39,0.0,0.0,0.0,0.114319056 +364.9403350353241,0.39,0.0,0.0,0.0,0.114319056 +364.95108103752136,0.39,0.0,0.0,0.0,0.114319056 +364.95999002456665,0.39,0.0,0.0,0.0,0.10691887 +364.969633102417,0.39,0.0,0.0,0.0,0.10691887 +364.98074197769165,0.39,0.0,0.0,0.0,0.10691887 +364.98961901664734,0.39,0.0,0.0,0.0,0.10691887 +365.0006330013275,0.39,0.0,0.0,0.0,0.10691887 +365.00951194763184,0.39,0.0,0.0,0.0,0.10691887 +365.01974391937256,0.39,0.0,0.0,0.0,0.116169125 +365.0302059650421,0.39,0.0,0.0,0.0,0.116169125 +365.0394461154938,0.39,0.0,0.0,0.0,0.116169125 +365.0496189594269,0.38,0.0,0.0,0.0,0.116169125 +365.0599970817566,0.38,0.0,0.0,0.0,0.09766865 +365.0694899559021,0.38,0.0,0.0,0.0,0.09766865 +365.0810959339142,0.38,0.0,0.0,0.0,0.09766865 +365.0896301269531,0.38,0.0,0.0,0.0,0.09766865 +365.09956908226013,0.38,0.0,0.0,0.0,0.09766865 +365.10992312431335,0.38,0.0,0.0,0.0,0.09766865 +365.1197121143341,0.38,0.0,0.0,0.0,0.12911949 +365.1295599937439,0.38,0.0,0.0,0.0,0.12911949 +365.1410870552063,0.38,0.0,0.0,0.0,0.12911949 +365.15006494522095,0.38,0.0,0.0,0.0,0.12911949 +365.15950894355774,0.38,0.0,0.0,0.0,0.12911949 +365.1696310043335,0.37,0.0,0.0,0.0,0.114319056 +365.1805169582367,0.37,0.0,0.0,0.0,0.114319056 +365.1895339488983,0.37,0.0,0.0,0.0,0.114319056 +365.2000870704651,0.37,0.0,0.0,0.0,0.114319056 +365.20964193344116,0.37,0.0,0.0,0.0,0.114319056 +365.219712972641,0.37,0.0,0.0,0.0,0.093968526 +365.2295560836792,0.37,0.0,0.0,0.0,0.093968526 +365.2394049167633,0.37,0.0,0.0,0.0,0.093968526 +365.24963998794556,0.37,0.0,0.0,0.0,0.093968526 +365.25998711586,0.37,0.0,0.0,0.0,0.10506884 +365.26948595046997,0.37,0.0,0.0,0.0,0.10506884 +365.2794780731201,0.38,0.0,0.0,0.0,0.10506884 +365.28966307640076,0.38,0.0,0.0,0.0,0.10506884 +365.3008439540863,0.37,0.0,0.0,0.0,0.10506884 +365.3098449707031,0.37,0.0,0.0,0.0,0.10506884 +365.31940603256226,0.37,0.0,0.0,0.0,0.08841839 +365.32963609695435,0.37,0.0,0.0,0.0,0.08841839 +365.3396589756012,0.37,0.0,0.0,0.0,0.08841839 +365.3511130809784,0.37,0.0,0.0,0.0,0.08841839 +365.3599829673767,0.37,0.0,0.0,0.0,0.09951867 +365.36943101882935,0.35999998,0.0,0.0,0.0,0.09951867 +365.3798670768738,0.35999998,0.0,0.0,0.0,0.09951867 +365.38940501213074,0.35,0.0,0.0,0.0,0.09951867 +365.39958906173706,0.34,0.0,0.0,0.0,0.09951867 +365.4096460342407,0.34,0.0,0.0,0.0,0.09951867 +365.4195201396942,0.32999998,0.0,0.0,0.0,0.08841839 +365.4302089214325,0.32,0.0,0.0,0.0,0.08841839 +365.4408221244812,0.31,0.0,0.0,0.0,0.08841839 +365.4496350288391,0.29,0.0,0.0,0.0,0.08841839 +365.4593949317932,0.28,0.0,0.0,0.0,0.08841839 +365.46949005126953,0.28,0.0,0.0,0.0,0.09766865 +365.47956800460815,0.26999998,0.0,0.0,0.0,0.09766865 +365.4896500110626,0.25,0.0,0.0,0.0,0.09766865 +365.5011329650879,0.24,0.0,0.0,0.0,0.09766865 +365.5099320411682,0.22999999,0.0,0.0,0.0,0.09766865 +365.5205121040344,0.22,0.0,0.0,0.0,0.09211848 +365.52965092658997,0.19999999,0.0,0.0,0.0,0.09211848 +365.5403549671173,0.17999999,0.0,0.0,0.0,0.09211848 +365.5497159957886,0.17,0.0,0.0,0.0,0.09211848 +365.5599739551544,0.16,0.0,0.0,0.0,0.09211848 +365.5696630477905,0.14,0.0,0.0,0.0,0.08656834 +365.58000802993774,0.13,0.0,0.0,0.0,0.08656834 +365.5911440849304,0.12,1.5151515,1.5151515,0.0,0.08656834 +365.60115599632263,0.11,4.5454545,4.5454545,0.0,0.08656834 +365.60963702201843,0.099999994,7.575758,7.575758,0.0,0.08656834 +365.62048411369324,0.089999996,9.848485,9.848485,0.0,0.0551175 +365.6302230358124,0.08,11.363637,11.363637,0.0,0.0551175 +365.63994693756104,0.07,13.636364,13.636364,0.0,0.0551175 +365.64966011047363,0.06,15.909091,15.909091,0.0,0.0551175 +365.65966510772705,0.06,18.181818,18.181818,0.0,0.0551175 +365.6694951057434,0.049999997,21.212122,21.212122,0.0,0.034766953 +365.68055605888367,0.04,23.484848,23.484848,0.0,0.034766953 +365.6896641254425,0.03,27.272728,27.272728,0.0,0.034766953 +365.7009029388428,0.03,31.060606,31.060606,0.009372071,0.034766953 +365.7099840641022,0.02,36.363636,36.363636,0.018744143,0.0070162313 +365.7202351093292,0.02,41.666668,41.666668,0.028116215,0.0070162313 +365.7294340133667,0.01,47.727272,47.727272,0.028116215,0.0070162313 +365.74110102653503,0.01,51.515152,51.515152,0.037488285,0.0070162313 +365.75013494491577,0.0,56.060604,56.060604,0.0656045,0.0070162313 +365.76000213623047,0.0,61.363636,61.363636,0.07497657,-0.03553491 +365.76944613456726,0.0,67.42425,67.42425,0.07497657,-0.03553491 +365.7811620235443,0.0,62.121212,62.121212,0.08434864,-0.03553491 +365.7899179458618,0.0,48.484848,48.484848,0.11246486,-0.03553491 +365.8005850315094,0.0,36.363636,36.363636,0.11246486,-0.03553491 +365.8095109462738,0.0,25.0,25.0,0.11246486,-0.03553491 +365.82052302360535,0.0,21.969696,21.969696,0.131209,-0.044785153 +365.8302330970764,0.0,28.030302,28.030302,0.14058107,-0.044785153 +365.8402900695801,0.0,35.60606,35.60606,0.14995314,-0.044785153 +365.84966707229614,0.0,44.696968,44.696968,0.15932521,-0.044785153 +365.8595600128174,0.0,51.515152,51.515152,0.15932521,-0.044785153 +365.8695170879364,0.0,59.848484,59.848484,0.16869728,-0.052185345 +365.88082909584045,0.0,68.93939,68.93939,0.17806935,-0.052185345 +365.8896369934082,0.0,68.93939,68.93939,0.18744142,-0.052185345 +365.899542093277,0.0,67.42425,67.42425,0.18744142,-0.052185345 +365.9111819267273,0.0,65.90909,65.90909,0.20618556,-0.052185345 +365.9205310344696,0.0,63.636364,63.636364,0.21555763,-0.03183481 +365.9296450614929,0.0,62.121212,62.121212,0.22492972,-0.03183481 +365.93943905830383,0.0,62.121212,62.121212,0.22492972,-0.03183481 +365.9496359825134,0.0,63.636364,63.636364,0.23430179,-0.03183481 +365.95962405204773,0.0,65.90909,65.90909,0.24367386,-0.03183481 +365.9696750640869,0.0,68.93939,68.93939,0.24367386,-0.026284654 +365.98111391067505,0.0,70.454544,70.454544,0.24367386,-0.026284654 +365.98974204063416,0.0,71.21212,71.21212,0.25304592,-0.026284654 +366.00118494033813,0.0,73.48485,73.48485,0.25304592,-0.026284654 +366.00946497917175,0.0,77.27273,77.27273,0.25304592,-0.026284654 +366.0195279121399,0.0,80.30303,80.30303,0.262418,-0.041085053 +366.02961897850037,0.0,83.333336,83.333336,0.262418,-0.041085053 +366.03973603248596,0.0,86.36363,86.36363,0.27179006,-0.041085053 +366.049644947052,0.0,88.63636,88.63636,0.28116214,-0.041085053 +366.0599949359894,0.0,90.15152,90.15152,0.2905342,-0.026284654 +366.069531917572,0.0,93.181816,93.181816,0.2905342,-0.026284654 +366.0800430774689,0.0,96.969696,96.969696,0.29990628,-0.026284654 +366.08966612815857,0.0,100.757576,100.757576,0.31865042,-0.026284654 +366.10118412971497,0.0,103.030304,103.030304,0.31865042,-0.026284654 +366.1094751358032,0.0,104.54545,104.54545,0.31865042,-0.026284654 +366.1197819709778,0.0,105.303024,105.303024,0.30927837,-0.052185345 +366.1296720504761,0.0,106.818184,106.818184,0.30927837,-0.052185345 +366.1411929130554,0.0,108.333336,108.333336,0.30927837,-0.052185345 +366.15119099617004,0.0,109.84849,109.84849,0.31865042,-0.052185345 +366.1599979400635,0.0,111.36363,111.36363,0.31865042,-0.041085053 +366.1696469783783,0.0,112.12121,112.12121,0.31865042,-0.041085053 +366.1807460784912,0.0,112.12121,112.12121,0.3280225,-0.041085053 +366.19119095802307,0.0,111.36363,111.36363,0.33739457,-0.041085053 +366.2000479698181,0.0,112.12121,112.12121,0.33739457,-0.041085053 +366.20965003967285,0.0,112.878784,112.878784,0.33739457,-0.041085053 +366.21946811676025,0.0,112.12121,112.12121,0.33739457,-0.044785153 +366.22999000549316,0.0,111.36363,111.36363,0.33739457,-0.044785153 +366.24056005477905,0.0,108.333336,108.333336,0.33739457,-0.044785153 +366.2496831417084,0.0,104.54545,104.54545,0.3280225,-0.044785153 +366.2599630355835,0.0,101.51515,101.51515,0.3280225,-0.044785153 +366.26951909065247,0.0,100.0,100.0,0.3280225,-0.033684865 +366.2793970108032,0.0,98.48485,98.48485,0.31865042,-0.033684865 +366.2896900177002,0.0,96.969696,96.969696,0.3280225,-0.033684865 +366.2995960712433,0.0,95.454544,95.454544,0.3280225,-0.033684865 +366.31000304222107,0.0,92.42424,92.42424,0.31865042,-0.033684865 +366.32002210617065,0.0,89.393936,89.393936,0.31865042,-0.029984765 +366.32963705062866,0.0,85.606064,85.606064,0.31865042,-0.029984765 +366.33957695961,0.0,84.09091,84.09091,0.30927837,-0.029984765 +366.3498890399933,0.0,81.0606,81.0606,0.30927837,-0.029984765 +366.36001205444336,0.0,78.78788,78.78788,0.29990628,-0.0577355 +366.3696620464325,0.0,75.757576,75.757576,0.29990628,-0.0577355 +366.3797631263733,0.0,72.72727,72.72727,0.29990628,-0.0577355 +366.3902349472046,0.0,68.18182,68.18182,0.29990628,-0.0577355 +366.4001340866089,0.0,65.15151,65.15151,0.29990628,-0.0577355 +366.40967202186584,0.0,62.121212,62.121212,0.2905342,-0.0577355 +366.4203119277954,0.0,60.606064,60.606064,0.2905342,-0.06328564 +366.4302399158478,0.0,59.090908,59.090908,0.28116214,-0.06328564 +366.4398400783539,0.0,57.57576,57.57576,0.28116214,-0.06328564 +366.4496591091156,0.0,56.060604,56.060604,0.27179006,-0.06328564 +366.4599349498749,0.0,53.78788,53.78788,0.27179006,-0.06328564 +366.46951508522034,0.0,51.515152,51.515152,0.27179006,-0.0577355 +366.4804120063782,0.0,50.0,50.0,0.27179006,-0.0577355 +366.4894320964813,0.0,49.242424,49.242424,0.27179006,-0.0577355 +366.50004506111145,0.0,48.484848,48.484848,0.27179006,-0.0577355 +366.50999999046326,0.0,47.727272,47.727272,0.262418,-0.09843658 +366.51941108703613,0.0,46.969696,46.969696,0.262418,-0.09843658 +366.5296800136566,0.0,45.454548,45.454548,0.262418,-0.09843658 +366.54012298583984,0.0,43.181816,43.181816,0.262418,-0.09843658 +366.5503890514374,0.0,41.666668,41.666668,0.262418,-0.09843658 +366.55999302864075,0.0,40.90909,40.90909,0.262418,-0.13913766 +366.5696749687195,0.0,40.151516,40.151516,0.262418,-0.13913766 +366.57958006858826,0.0,38.636364,38.636364,0.262418,-0.13913766 +366.5912311077118,0.0,37.878788,37.878788,0.262418,-0.13913766 +366.60124111175537,0.0,36.363636,36.363636,0.262418,-0.13913766 +366.6094329357147,0.0,34.09091,34.09091,0.262418,-0.13913766 +366.6197440624237,0.0,32.575756,32.575756,0.262418,-0.13728762 +366.6294300556183,0.0,32.575756,32.575756,0.262418,-0.13728762 +366.6397879123688,0.0,32.575756,32.575756,0.25304592,-0.13728762 +366.650591135025,0.0,34.09091,34.09091,0.25304592,-0.13728762 +366.6600000858307,0.0,34.848484,34.848484,0.25304592,-0.27049115 +366.6695239543915,0.0,34.848484,34.848484,0.25304592,-0.27049115 +366.67941308021545,0.0,34.848484,34.848484,0.25304592,-0.27049115 +366.69124698638916,0.0,33.333336,33.333336,0.25304592,-0.27049115 +366.70053911209106,0.0,31.818182,31.818182,0.24367386,-0.27049115 +366.7094509601593,0.0,31.060606,31.060606,0.24367386,-0.27049115 +366.7205059528351,0.0,30.303032,30.303032,0.23430179,-0.3148923 +366.7302279472351,0.0,30.303032,30.303032,0.23430179,-0.3148923 +366.74126410484314,0.0,30.303032,30.303032,0.24367386,-0.3148923 +366.75091099739075,0.0,30.303032,30.303032,0.23430179,-0.3148923 +366.75991201400757,0.0,30.303032,30.303032,0.23430179,-0.3148923 +366.7696089744568,0.0,28.030302,28.030302,0.24367386,-0.21128957 +366.7807240486145,0.0,26.515152,26.515152,0.24367386,-0.21128957 +366.7896399497986,0.0,25.0,25.0,0.23430179,-0.21128957 +366.7995889186859,0.0,23.484848,23.484848,0.23430179,-0.21128957 +366.8094811439514,0.0,21.969696,21.969696,0.22492972,-0.21128957 +366.82053112983704,0.0,23.484848,23.484848,0.22492972,-0.18538888 +366.83024191856384,0.0,25.757576,25.757576,0.22492972,-0.18538888 +366.8410761356354,0.0,27.272728,27.272728,0.21555763,-0.18538888 +366.84972500801086,0.0,28.030302,28.030302,0.22492972,-0.18538888 +366.85972905158997,0.0,28.78788,28.78788,0.21555763,-0.18538888 +366.8695430755615,0.0,28.78788,28.78788,0.21555763,-0.17613864 +366.87992811203003,0.0,30.303032,30.303032,0.21555763,-0.17613864 +366.8895480632782,0.0,31.818182,31.818182,0.21555763,-0.17613864 +366.9012589454651,0.0,33.333336,33.333336,0.22492972,-0.17613864 +366.91127490997314,0.0,34.848484,34.848484,0.22492972,-0.17613864 +366.9212830066681,0.0,36.363636,36.363636,0.21555763,-0.20758946 +366.9312651157379,0.0,37.121216,37.121216,0.20618556,-0.20758946 +366.93953800201416,0.0,37.121216,37.121216,0.20618556,-0.20758946 +366.949814081192,0.0,36.363636,36.363636,0.1968135,-0.20758946 +366.96000504493713,0.0,36.363636,36.363636,0.18744142,-0.29084167 +366.96953797340393,0.0,37.121216,37.121216,0.18744142,-0.29084167 +366.97947096824646,0.0,37.121216,37.121216,0.18744142,-0.29084167 +366.99126505851746,0.0,37.878788,37.878788,0.17806935,-0.29084167 +367.00009202957153,0.0,38.636364,38.636364,0.17806935,-0.29084167 +367.0112829208374,0.0,38.636364,38.636364,0.17806935,-0.29084167 +367.0195310115814,0.0,37.878788,37.878788,0.16869728,-0.3962945 +367.030277967453,0.0,37.878788,37.878788,0.17806935,-0.3962945 +367.03943610191345,0.0,37.878788,37.878788,0.16869728,-0.3962945 +367.05127811431885,0.0,38.636364,38.636364,0.16869728,-0.3962945 +367.05999302864075,0.0,40.151516,40.151516,0.16869728,-0.42589524 +367.0694229602814,0.0,41.666668,41.666668,0.16869728,-0.42589524 +367.0795249938965,0.0,43.939392,43.939392,0.15932521,-0.42589524 +367.0899980068207,0.0,45.454548,45.454548,0.15932521,-0.42589524 +367.10115814208984,0.0,46.21212,46.21212,0.16869728,-0.42589524 +367.11049008369446,0.0,46.969696,46.969696,0.15932521,-0.42589524 +367.1194109916687,0.0,46.21212,46.21212,0.16869728,-0.3888943 +367.1296091079712,0.0,46.21212,46.21212,0.15932521,-0.3888943 +367.13962602615356,0.0,46.969696,46.969696,0.15932521,-0.3888943 +367.15035605430603,0.0,46.969696,46.969696,0.14995314,-0.3888943 +367.16000604629517,0.0,46.21212,46.21212,0.14995314,-0.44069567 +367.169536113739,0.0,44.696968,44.696968,0.14995314,-0.44069567 +367.18129301071167,0.0,41.666668,41.666668,0.14058107,-0.44069567 +367.1907150745392,0.0,39.39394,39.39394,0.12183693,-0.44069567 +367.1996519565582,0.0,37.121216,37.121216,0.11246486,-0.44069567 +367.21071696281433,0.0,34.09091,34.09091,0.09372071,-0.44069567 +367.2195510864258,0.0,31.818182,31.818182,0.08434864,-0.41109487 +367.22972798347473,0.0,29.545454,29.545454,0.0656045,-0.41109487 +367.2402939796448,0.0,28.030302,28.030302,0.05623243,-0.41109487 +367.2512891292572,0.0,25.757576,25.757576,0.037488285,-0.41109487 +367.2599980831146,0.0,24.242424,24.242424,0.028116215,-0.41664502 +367.26968002319336,0.0,21.969696,21.969696,0.009372071,-0.41664502 +367.27987003326416,0.0,20.454544,20.454544,0.0,-0.41664502 +367.291296005249,0.0,18.939394,18.939394,0.0,-0.41664502 +367.301038980484,0.0,17.424242,17.424242,0.0,-0.41664502 +367.3100600242615,0.0,15.909091,15.909091,0.0,-0.41664502 +367.31956696510315,0.0,15.151516,15.151516,0.0,-0.4203451 +367.3294780254364,0.0,13.636364,13.636364,0.0,-0.4203451 +367.3412969112396,0.0,12.878788,12.878788,0.0,-0.4203451 +367.3494369983673,0.0,11.363637,11.363637,0.0,-0.4203451 +367.3600060939789,0.0,10.606061,10.606061,0.0,-0.42219514 +367.3695390224457,0.0,9.848485,9.848485,0.0,-0.42219514 +367.38132214546204,0.0,9.090909,9.090909,0.0,-0.42219514 +367.39130091667175,0.0,8.333334,8.333334,0.0,-0.42219514 +367.40029311180115,0.0,6.818182,6.818182,0.0,-0.42219514 +367.4095051288605,0.0,6.818182,6.818182,0.0,-0.42219514 +367.41953206062317,0.0,6.060606,6.060606,0.0,-0.4092448 +367.4302580356598,0.0,5.3030305,5.3030305,0.0,-0.4092448 +367.44038009643555,0.0,4.5454545,4.5454545,0.0,-0.4092448 +367.4513330459595,0.0,3.787879,3.787879,0.0,-0.4092448 +367.4598960876465,0.0,3.030303,3.030303,0.0,-0.4092448 +367.46968698501587,0.0,3.030303,3.030303,0.0,-0.42959538 +367.48044204711914,0.0,2.2727273,2.2727273,0.0,-0.42959538 +367.4903950691223,0.0,1.5151515,1.5151515,0.0,-0.42959538 +367.49938893318176,0.0,1.5151515,1.5151515,0.0,-0.42959538 +367.5099971294403,0.0,0.75757575,0.75757575,0.0,-0.42959538 +367.5195610523224,0.0,0.75757575,0.75757575,0.0,-0.45919618 +367.52949595451355,0.0,0.0,0.0,0.0,-0.45919618 +367.5413110256195,0.0,0.0,0.0,0.0,-0.45919618 +367.5513379573822,0.0,0.0,0.0,0.0,-0.45919618 +367.56002593040466,0.0,0.0,0.0,0.0,-0.44069567 +367.56955909729004,0.0,0.0,0.0,0.0,-0.44069567 +367.58046293258667,0.0,0.0,0.0,0.0,-0.44069567 +367.58947491645813,0.0,0.0,0.0,0.0,-0.44069567 +367.5999000072479,0.0,0.0,0.0,0.0,-0.44069567 +367.6096980571747,0.0,0.0,0.0,0.0,-0.44069567 +367.6195180416107,0.0,0.0,0.0,0.0,-0.51099753 +367.6302421092987,0.0,0.0,0.0,0.0,-0.51099753 +367.63943004608154,0.0,0.0,0.0,0.0,-0.51099753 +367.6500849723816,0.0,0.0,0.0,0.0,-0.51099753 +367.6600091457367,0.0,0.0,0.0,0.0,-0.5128476 +367.6696870326996,0.0,0.0,0.0,0.0,-0.5128476 +367.67955803871155,0.0,0.0,0.0,0.0,-0.5128476 +367.68982696533203,0.0,0.0,0.0,0.0,-0.5128476 +367.7013261318207,0.0,0.0,0.0,0.0,-0.5128476 +367.7100110054016,0.0,0.0,0.0,0.0,-0.529498 +367.72004103660583,0.0,0.0,0.0,0.0,-0.529498 +367.7313470840454,0.0,0.0,0.0,0.0,-0.529498 +367.74135398864746,0.0,0.0,0.0,0.0,-0.529498 +367.75133299827576,0.0,0.0,0.0,0.0,-0.529498 +367.76001501083374,0.0,0.0,0.0,0.0,-0.527648 +367.76975202560425,0.0,0.0,0.0,0.0,-0.527648 +367.7795910835266,0.0,0.0,0.0,0.0,-0.527648 +367.7902591228485,0.0,0.0,0.0,0.0,-0.527648 +367.8001160621643,0.0,0.0,0.0,0.0,-0.527648 +367.81001806259155,0.0,0.0,0.0,0.0,-0.5239479 +367.8195209503174,0.0,0.0,0.0,0.0,-0.5239479 +367.83023405075073,0.0,0.0,0.0,0.0,-0.5239479 +367.84134101867676,0.0,0.0,0.0,0.0,-0.5239479 +367.85012102127075,0.0,0.0,0.0,0.0,-0.5239479 +367.8597409725189,0.0,0.0,0.0,0.0,-0.5239479 +367.8694260120392,0.0,0.0,0.0,0.0,-0.5165477 +367.8813569545746,0.0,0.0,0.0,0.0,-0.5165477 +367.89134192466736,0.0,0.0,0.0,0.0,-0.5165477 +367.9013440608978,0.0,0.0,0.0,0.0,-0.5165477 +367.9094181060791,0.0,0.0,0.0,0.0,-0.5165477 +367.9195029735565,0.0,0.0,0.0,0.0,-0.5553987 +367.93026208877563,0.0,0.0,0.0,0.0,-0.5553987 +367.9395730495453,0.0,0.0,0.0,0.0,-0.5553987 +367.9498100280762,0.0,0.0,0.0,0.0,-0.5553987 +367.95960998535156,0.0,0.0,0.0,0.0,-0.5553987 +367.9695589542389,0.0,0.0,0.0,0.0,-0.5646489 +367.9801359176636,0.0,0.0,0.0,0.0,-0.5646489 +367.9913649559021,0.0,0.0,0.0,0.0,-0.5646489 +367.99948811531067,0.0,0.0,0.0,0.0,-0.5646489 +368.01090002059937,0.0,0.0,0.0,0.0,-0.5646489 +368.01954913139343,0.0,0.0,0.0,0.0,-0.54984856 +368.02960205078125,0.0,0.0,0.0,0.0,-0.54984856 +368.03991508483887,0.0,0.0,0.0,0.0,-0.54984856 +368.0495820045471,0.0,0.0,0.0,0.0,-0.54984856 +368.06002402305603,0.0,0.0,0.0,0.0,-0.5442984 +368.06970405578613,0.0,0.0,0.0,0.0,-0.5442984 +368.0813810825348,0.0,0.0,0.0,0.0,-0.5442984 +368.091117143631,0.0,0.0,0.0,0.0,-0.5442984 +368.1000120639801,0.0,0.0,0.0,0.0,-0.5442984 +368.10951113700867,0.0,0.0,0.0,0.0,-0.5442984 +368.119549036026,0.0,0.0,0.0,0.0,-0.55354863 +368.1299889087677,0.0,0.0,0.0,0.0,-0.55354863 +368.1395080089569,0.0,0.0,0.0,0.0,-0.55354863 +368.1501679420471,0.0,0.0,0.0,0.0,-0.55354863 +368.16001200675964,0.0,0.0,0.0,0.0,-0.5479985 +368.16955494880676,0.0,0.0,0.0,0.0,-0.5479985 +368.180223941803,0.0,0.0,0.0,0.0,-0.5479985 +368.1913959980011,0.01,0.0,0.0,0.0,-0.5479985 +368.2013819217682,0.01,0.0,0.0,0.0,-0.5479985 +368.21107006073,0.02,0.0,0.0,0.0,-0.5479985 +368.21954894065857,0.03,0.0,0.0,0.0,-0.529498 +368.2294900417328,0.03,0.0,0.0,0.0,-0.529498 +368.2394480705261,0.04,0.0,0.0,0.0,-0.529498 +368.25138902664185,0.04,0.0,0.0,0.0,-0.529498 +368.26003909111023,0.049999997,0.0,0.0,0.0,-0.50174725 +368.26969504356384,0.049999997,0.0,0.0,0.0,-0.50174725 +368.2813980579376,0.06,0.0,0.0,0.0,-0.50174725 +368.29137897491455,0.06,0.0,0.0,0.0,-0.50174725 +368.3003580570221,0.07,0.0,0.0,0.0,-0.50174725 +368.3101930618286,0.07,0.0,0.0,0.0,-0.50174725 +368.3194010257721,0.07,0.0,0.0,0.0,-0.5220978 +368.32946395874023,0.08,0.0,0.0,0.0,-0.5220978 +368.340665102005,0.08,0.0,0.0,0.0,-0.5220978 +368.34952998161316,0.08,0.0,0.0,0.0,-0.5220978 +368.36002492904663,0.08,0.0,0.0,0.0,-0.529498 +368.3695719242096,0.089999996,0.0,0.0,0.0,-0.529498 +368.38140511512756,0.089999996,0.0,0.0,0.0,-0.529498 +368.3912320137024,0.089999996,0.0,0.0,0.0,-0.529498 +368.4002380371094,0.089999996,0.0,0.0,0.0,-0.529498 +368.40948009490967,0.089999996,0.0,0.0,0.0,-0.529498 +368.41951513290405,0.089999996,0.0,0.0,0.0,-0.5239479 +368.4298369884491,0.099999994,0.0,0.0,0.0,-0.5239479 +368.44141006469727,0.099999994,0.0,0.0,0.0,-0.5239479 +368.45046401023865,0.099999994,0.0,0.0,0.0,-0.5239479 +368.45959091186523,0.099999994,0.0,0.0,0.0,-0.5239479 +368.46973299980164,0.099999994,0.0,0.0,0.0,-0.5442984 +368.48015809059143,0.099999994,0.0,0.0,0.0,-0.5442984 +368.4902789592743,0.099999994,0.0,0.0,0.0,-0.5442984 +368.49951791763306,0.099999994,0.0,0.0,0.0,-0.5442984 +368.5098760128021,0.099999994,0.0,0.0,0.0,-0.5442984 +368.51956009864807,0.11,0.0,0.0,0.0,-0.53874826 +368.5302700996399,0.11,0.0,0.0,0.0,-0.53874826 +368.5414090156555,0.11,0.0,0.0,0.0,-0.53874826 +368.55141592025757,0.11,0.0,0.0,0.0,-0.53874826 +368.56002402305603,0.11,0.0,0.0,0.0,-0.5239479 +368.5695769786835,0.11,0.0,0.0,0.0,-0.5239479 +368.5802149772644,0.11,0.0,0.0,0.0,-0.5239479 +368.58941102027893,0.11,0.0,0.0,0.0,-0.5239479 +368.60009002685547,0.099999994,0.0,0.0,0.0,-0.5239479 +368.6100389957428,0.099999994,0.0,0.0,0.0,-0.61275023 +368.62143993377686,0.099999994,0.0,0.0,0.0,-0.61275023 +368.62940096855164,0.099999994,0.0,0.0,0.0,-0.61275023 +368.6402530670166,0.089999996,0.0,0.0,0.0,-0.61275023 +368.6514320373535,0.089999996,0.0,0.0,0.0,-0.61275023 +368.6600139141083,0.089999996,0.0,0.0,0.0,-0.6534513 +368.6697111129761,0.089999996,0.0,0.0,0.0,-0.6534513 +368.679456949234,0.089999996,0.0,0.0,0.0,-0.6534513 +368.6902859210968,0.08,0.0,0.0,0.0,-0.6534513 +368.6995859146118,0.08,0.0,0.0,0.0,-0.6534513 +368.7100160121918,0.08,0.0,0.0,0.0,-0.5220978 +368.7195580005646,0.08,0.0,0.0,0.0,-0.5220978 +368.7302429676056,0.08,0.0,0.0,0.0,-0.5220978 +368.74143409729004,0.089999996,0.0,0.0,0.0,-0.5220978 +368.75077199935913,0.089999996,0.0,0.0,0.0,-0.5220978 +368.7594449520111,0.089999996,0.0,0.0,0.0,-0.5220978 +368.76959204673767,0.089999996,0.0,0.0,0.0,-0.45179594 +368.78049397468567,0.089999996,0.0,0.0,0.0,-0.45179594 +368.7894461154938,0.089999996,0.0,0.0,0.0,-0.45179594 +368.79996395111084,0.089999996,0.0,0.0,0.0,-0.45179594 +368.8100371360779,0.099999994,0.0,0.0,0.0,-0.50174725 +368.8195159435272,0.099999994,0.0,0.0,0.0,-0.50174725 +368.83024501800537,0.099999994,0.0,0.0,0.0,-0.50174725 +368.83989810943604,0.099999994,0.0,0.0,0.0,-0.50174725 +368.8494350910187,0.099999994,0.0,0.0,0.0,-0.50174725 +368.8596830368042,0.099999994,0.0,0.0,0.0,-0.50174725 +368.86973214149475,0.099999994,0.0,0.0,0.0,-0.4943471 +368.8796911239624,0.099999994,0.0,0.0,0.0,-0.4943471 +368.8895001411438,0.099999994,0.0,0.0,0.0,-0.4943471 +368.90145111083984,0.099999994,0.0,0.0,0.0,-0.4943471 +368.91124296188354,0.099999994,0.0,0.0,0.0,-0.4943471 +368.9195511341095,0.099999994,0.0,0.0,0.0,-0.4684464 +368.93026208877563,0.099999994,0.0,0.0,0.0,-0.4684464 +368.9399230480194,0.11,0.0,0.0,0.0,-0.4684464 +368.94976806640625,0.11,0.0,0.0,0.0,-0.4684464 +368.9600200653076,0.11,0.0,0.0,0.0,-0.58129936 +368.96957993507385,0.11,0.0,0.0,0.0,-0.58129936 +368.98146295547485,0.11,0.0,0.0,0.0,-0.58129936 +368.99145793914795,0.11,0.0,0.0,0.0,-0.58129936 +369.00039291381836,0.11,0.0,0.0,0.0,-0.58129936 +369.01050209999084,0.11,0.0,0.0,0.0,-0.58129936 +369.01954102516174,0.11,0.0,0.0,0.0,-0.6072001 +369.0298581123352,0.11,0.0,0.0,0.0,-0.6072001 +369.0398781299591,0.11,0.0,0.0,0.0,-0.6072001 +369.05115699768066,0.11,0.0,0.0,0.0,-0.6072001 +369.06003499031067,0.11,0.0,0.0,0.0,-0.5831495 +369.06976103782654,0.11,0.0,0.0,0.0,-0.5831495 +369.08063411712646,0.11,0.0,0.0,0.0,-0.5831495 +369.0895631313324,0.11,0.0,0.0,0.0,-0.5831495 +369.1006090641022,0.11,0.0,0.0,0.0,-0.5831495 +369.11079597473145,0.11,0.0,0.0,0.0,-0.5831495 +369.1195719242096,0.11,0.0,0.0,0.0,-0.5775993 +369.12998604774475,0.11,0.0,0.0,0.0,-0.5775993 +369.1414029598236,0.11,0.0,0.0,0.0,-0.5775993 +369.14962792396545,0.11,0.0,0.0,0.0,-0.5775993 +369.1594569683075,0.11,0.0,0.0,0.0,-0.5775993 +369.16959500312805,0.11,0.0,0.0,0.0,-0.5701991 +369.18146300315857,0.11,0.0,0.0,0.0,-0.5701991 +369.1914710998535,0.11,0.0,0.0,0.0,-0.5701991 +369.20074105262756,0.11,0.0,0.0,0.0,-0.5701991 +369.2095880508423,0.11,0.0,0.0,0.0,-0.5701991 +369.21957993507385,0.11,0.0,0.0,0.0,-0.5905496 +369.23026394844055,0.11,0.0,0.0,0.0,-0.5905496 +369.23980712890625,0.11,0.0,0.0,0.0,-0.5905496 +369.2497079372406,0.11,0.0,0.0,0.0,-0.5905496 +369.26003408432007,0.11,0.0,0.0,0.0,-0.56094885 +369.2697489261627,0.11,0.0,0.0,0.0,-0.56094885 +369.2796959877014,0.11,0.0,0.0,0.0,-0.56094885 +369.290638923645,0.11,0.0,0.0,0.0,-0.56094885 +369.29964113235474,0.12,0.0,0.0,0.0,-0.56094885 +369.31027007102966,0.12,0.0,0.0,0.0,-0.56094885 +369.31956911087036,0.12,0.0,0.0,0.0,-0.5553987 +369.33024191856384,0.12,0.0,0.0,0.0,-0.5553987 +369.33993911743164,0.12,0.0,0.0,0.0,-0.5553987 +369.35148906707764,0.12,0.0,0.0,0.0,-0.5553987 +369.36003494262695,0.12,0.0,0.0,0.0,-0.46289623 +369.36960792541504,0.12,0.0,0.0,0.0,-0.46289623 +369.38058400154114,0.12,0.0,0.0,0.0,-0.46289623 +369.3895800113678,0.12,0.0,0.0,0.0,-0.46289623 +369.400377035141,0.12,0.0,0.0,0.0,-0.46289623 +369.4095630645752,0.12,0.0,0.0,0.0,-0.46289623 +369.41964197158813,0.12,0.0,0.0,0.0,-0.39259437 +369.43020510673523,0.12,0.0,0.0,0.0,-0.39259437 +369.4415030479431,0.12,0.0,0.0,0.0,-0.39259437 +369.4502000808716,0.11,0.0,0.0,0.0,-0.39259437 +369.4600479602814,0.11,0.0,0.0,0.0,-0.43144545 +369.4697561264038,0.11,0.0,0.0,0.0,-0.43144545 +369.47951912879944,0.11,0.0,0.0,0.0,-0.43144545 +369.4902729988098,0.11,0.0,0.0,0.0,-0.43144545 +369.4994671344757,0.11,0.0,0.0,0.0,-0.43144545 +369.5101909637451,0.099999994,0.0,0.0,0.0,-0.43144545 +369.51956510543823,0.099999994,0.0,0.0,0.0,-0.5146976 +369.5294990539551,0.099999994,0.0,0.0,0.0,-0.5146976 +369.5398180484772,0.099999994,0.0,0.0,0.0,-0.5146976 +369.55149102211,0.099999994,0.0,0.0,0.0,-0.5146976 +369.55944991111755,0.099999994,0.0,0.0,0.0,-0.5146976 +369.569452047348,0.099999994,0.0,0.0,0.0,-0.5239479 +369.5797860622406,0.099999994,0.0,0.0,0.0,-0.5239479 +369.5895929336548,0.099999994,0.0,0.0,0.0,-0.5239479 +369.60039806365967,0.099999994,0.0,0.0,0.0,-0.5239479 +369.61004996299744,0.099999994,0.0,0.0,0.0,-0.5479985 +369.6195430755615,0.099999994,0.0,0.0,0.0,-0.5479985 +369.6302399635315,0.099999994,0.0,0.0,0.0,-0.5479985 +369.6413960456848,0.099999994,0.0,0.0,0.0,-0.5479985 +369.6495771408081,0.099999994,0.0,0.0,0.0,-0.5479985 +369.66002106666565,0.099999994,0.0,0.0,0.0,-0.5479985 +369.66972398757935,0.099999994,0.0,0.0,0.0,-0.57204914 +369.6796760559082,0.099999994,0.0,0.0,0.0,-0.57204914 +369.69150495529175,0.099999994,0.0,0.0,0.0,-0.57204914 +369.7008011341095,0.099999994,0.0,0.0,0.0,-0.57204914 +369.7095320224762,0.099999994,0.0,0.0,0.0,-0.57204914 +369.7195839881897,0.099999994,0.0,0.0,0.0,-0.56094885 +369.73026990890503,0.099999994,0.0,0.0,0.0,-0.56094885 +369.73979902267456,0.099999994,0.0,0.0,0.0,-0.56094885 +369.75071811676025,0.099999994,0.0,0.0,0.0,-0.56094885 +369.7600381374359,0.099999994,0.0,0.0,0.0,-0.566499 +369.76959204673767,0.099999994,0.0,0.0,0.0,-0.566499 +369.7815320491791,0.099999994,0.0,0.0,0.0,-0.566499 +369.7909610271454,0.099999994,0.0,0.0,0.0,-0.566499 +369.7997930049896,0.099999994,0.0,0.0,0.0,-0.566499 +369.8100280761719,0.099999994,0.0,0.0,0.0,-0.5868495 +369.8195450305939,0.099999994,0.0,0.0,0.0,-0.5868495 +369.8294839859009,0.099999994,0.0,0.0,0.0,-0.5868495 +369.840961933136,0.099999994,0.0,0.0,0.0,-0.5868495 +369.8508839607239,0.099999994,0.0,0.0,0.0,-0.5868495 +369.85974192619324,0.099999994,0.0,0.0,0.0,-0.5868495 +369.86974596977234,0.099999994,0.0,0.0,0.0,-0.5757492 +369.8811399936676,0.099999994,0.0,0.0,0.0,-0.5757492 +369.8901789188385,0.099999994,0.0,0.0,0.0,-0.5757492 +369.90068101882935,0.099999994,0.0,0.0,0.0,-0.5757492 +369.90959095954895,0.099999994,0.0,0.0,0.0,-0.5757492 +369.91956210136414,0.099999994,0.0,0.0,0.0,-0.568349 +369.92942690849304,0.099999994,0.0,0.0,0.0,-0.568349 +369.9409511089325,0.099999994,0.0,0.0,0.0,-0.568349 +369.94997692108154,0.099999994,0.0,0.0,0.0,-0.568349 +369.96003103256226,0.099999994,0.0,0.0,0.0,-0.6146003 +369.9696099758148,0.099999994,0.0,0.0,0.0,-0.6146003 +369.9803650379181,0.099999994,0.0,0.0,0.0,-0.6146003 +369.9897971153259,0.099999994,0.0,0.0,0.0,-0.6146003 +370.00104904174805,0.099999994,0.0,0.0,0.0,-0.6146003 +370.0100381374359,0.099999994,0.0,0.0,0.0,-0.6146003 +370.0195689201355,0.099999994,0.0,0.0,0.0,-0.5831495 +370.03029108047485,0.099999994,0.0,0.0,0.0,-0.5831495 +370.0400490760803,0.099999994,0.0,0.0,0.0,-0.5831495 +370.0507159233093,0.11,0.0,0.0,0.0,-0.5831495 +370.0600619316101,0.11,0.0,0.0,0.0,-0.5831495 +370.069766998291,0.11,0.0,0.0,0.0,-0.6183004 +370.0795841217041,0.11,0.0,0.0,0.0,-0.6183004 +370.08950209617615,0.12,0.0,0.0,0.0,-0.6183004 +370.099986076355,0.12,0.0,0.0,0.0,-0.6183004 +370.11155796051025,0.12,0.0,0.0,0.0,-0.6183004 +370.11952900886536,0.12,0.0,0.0,0.0,-0.6183004 +370.1301460266113,0.12,0.0,0.0,0.0,-0.6183004 +370.1412889957428,0.12,0.0,0.0,0.0,-0.6183004 +370.14949107170105,0.12,0.0,0.0,0.0,-0.6183004 +370.160040140152,0.12,0.0,0.0,0.0,-0.64975125 +370.1695020198822,0.12,0.0,0.0,0.0,-0.64975125 +370.1808850765228,0.12,0.0,0.0,0.0,-0.64975125 +370.1898789405823,0.12,0.0,0.0,0.0,-0.64975125 +370.20123195648193,0.12,0.0,0.0,0.0,-0.64975125 +370.2096869945526,0.12,0.0,0.0,0.0,-0.64975125 +370.2195749282837,0.12,0.0,0.0,0.0,-0.5257979 +370.2294669151306,0.12,0.0,0.0,0.0,-0.5257979 +370.24158096313477,0.13,0.0,0.0,0.0,-0.5257979 +370.2505440711975,0.13,0.0,0.0,0.0,-0.5257979 +370.2599730491638,0.14,0.0,0.0,0.0,-0.5257979 +370.2697720527649,0.14,0.0,0.0,0.0,-0.46289623 +370.27980613708496,0.14999999,0.0,0.0,0.0,-0.46289623 +370.2915029525757,0.16,0.0,0.0,0.0,-0.46289623 +370.3013310432434,0.16,0.0,0.0,0.0,-0.46289623 +370.3101999759674,0.16,0.0,0.0,0.0,-0.46289623 +370.3195059299469,0.17,0.0,0.0,0.0,-0.63495076 +370.33030796051025,0.17,0.0,0.0,0.0,-0.63495076 +370.34027099609375,0.17,0.0,0.0,0.0,-0.63495076 +370.3502039909363,0.17,0.0,0.0,0.0,-0.63495076 +370.36005091667175,0.17,0.0,0.0,0.0,-0.6830521 +370.3697290420532,0.17,0.0,0.0,0.0,-0.6830521 +370.3815839290619,0.17,0.0,0.0,0.0,-0.6830521 +370.39083099365234,0.17,0.0,0.0,0.0,-0.6830521 +370.39977407455444,0.17,0.0,0.0,0.0,-0.6830521 +370.409460067749,0.17,0.0,0.0,0.0,-0.6830521 +370.4195520877838,0.17999999,0.0,0.0,0.0,-0.65715146 +370.4302730560303,0.17999999,0.0,0.0,0.0,-0.65715146 +370.4403190612793,0.17999999,0.0,0.0,0.0,-0.65715146 +370.4494731426239,0.19,0.0,0.0,0.0,-0.65715146 +370.45964908599854,0.19,0.0,0.0,0.0,-0.65715146 +370.46978306770325,0.19,0.0,0.0,0.0,-0.6645516 +370.47995495796204,0.19,0.0,0.0,0.0,-0.6645516 +370.4905369281769,0.19999999,0.0,0.0,0.0,-0.6645516 +370.4995620250702,0.19999999,0.0,0.0,0.0,-0.6645516 +370.51158809661865,0.19999999,0.0,0.0,0.0,-0.6645516 +370.51955008506775,0.21,0.0,0.0,0.0,-0.66825175 +370.5295000076294,0.21,0.0,0.0,0.0,-0.66825175 +370.53948497772217,0.21,0.0,0.0,0.0,-0.66825175 +370.54958605766296,0.21,0.0,0.0,0.0,-0.66825175 +370.56005096435547,0.21,0.0,0.0,0.0,-0.64975125 +370.56964111328125,0.21,0.0,0.0,0.0,-0.64975125 +370.58036398887634,0.21,0.0,0.0,0.0,-0.64975125 +370.58968591690063,0.21,0.0,0.0,0.0,-0.64975125 +370.60161900520325,0.21,0.0,0.0,0.0,-0.64975125 +370.6100559234619,0.22,0.0,0.0,0.0,-0.6146003 +370.61957812309265,0.22,0.0,0.0,0.0,-0.6146003 +370.6296980381012,0.22,0.0,0.0,0.0,-0.6146003 +370.639524936676,0.22,0.0,0.0,0.0,-0.6146003 +370.65160608291626,0.22999999,0.0,0.0,0.0,-0.6146003 +370.66005396842957,0.22999999,0.0,0.0,0.0,-0.59609973 +370.66976499557495,0.22999999,0.0,0.0,0.0,-0.59609973 +370.6797869205475,0.22999999,0.0,0.0,0.0,-0.59609973 +370.69162607192993,0.24,0.0,0.0,0.0,-0.59609973 +370.7016091346741,0.24,0.0,0.0,0.0,-0.59609973 +370.7094030380249,0.24,0.0,0.0,0.0,-0.59609973 +370.71953201293945,0.24,0.0,0.0,0.0,-0.5868495 +370.729474067688,0.24,0.0,0.0,0.0,-0.5868495 +370.7416310310364,0.24,0.0,0.0,0.0,-0.5868495 +370.7516191005707,0.24,0.0,0.0,0.0,-0.5868495 +370.7600510120392,0.24,0.0,0.0,0.0,-0.47029644 +370.76989698410034,0.31,0.0,0.0,0.0,-0.47029644 +370.78162598609924,0.31,0.0,0.0,0.0,-0.47029644 +370.79094791412354,0.31,0.0,0.0,0.0,-0.47029644 +370.7996230125427,0.31,0.0,0.0,0.0,-0.47029644 +370.8096830844879,0.31,0.0,0.0,0.0,-0.47029644 +370.81943011283875,0.31,0.0,0.0,0.0,-0.34634316 +370.82980608940125,0.31,0.0,0.0,0.0,-0.34634316 +370.83946800231934,0.31,0.0,0.0,0.0,-0.34634316 +370.851026058197,0.31,0.0,0.0,0.0,-0.34634316 +370.8595061302185,0.31,0.0,0.0,0.0,-0.34634316 +370.8716299533844,0.32,0.0,0.0,0.0,-0.33524287 +370.88098311424255,0.32,0.0,0.0,0.0,-0.33524287 +370.8898959159851,0.32,0.0,0.0,0.0,-0.33524287 +370.89941000938416,0.32,0.0,0.0,0.0,-0.33524287 +370.909539937973,0.32,0.0,0.0,0.0,-0.33524287 +370.9196000099182,0.32,0.0,0.0,0.0,-0.3222925 +370.9296889305115,0.32,0.0,0.0,0.0,-0.3222925 +370.9411280155182,0.32999998,0.0,0.0,0.0,-0.3222925 +370.9501531124115,0.32999998,0.0,0.0,0.0,-0.3222925 +370.9596960544586,0.32999998,0.0,0.0,0.0,-0.3222925 +370.9695780277252,0.32999998,0.0,0.0,0.0,-0.32414255 +370.9812579154968,0.32999998,0.0,0.0,0.0,-0.32414255 +370.98976707458496,0.32999998,0.0,0.0,0.0,-0.32414255 +370.9995930194855,0.32999998,0.0,0.0,0.0,-0.32414255 +371.0116639137268,0.32999998,0.0,0.0,0.0,-0.32414255 +371.0195851325989,0.34,0.0,0.0,0.0,-0.32969272 +371.03029012680054,0.34,0.0,0.0,0.0,-0.32969272 +371.0402719974518,0.34,0.0,0.0,0.0,-0.32969272 +371.0503079891205,0.35,0.0,0.0,0.0,-0.32969272 +371.05985593795776,0.35,0.0,0.0,0.0,-0.32969272 +371.0711741447449,0.35,0.0,0.0,0.0,-0.35189328 +371.08017206192017,0.35,0.0,0.0,0.0,-0.35189328 +371.08976101875305,0.35999998,0.0,0.0,0.0,-0.35189328 +371.09964895248413,0.35999998,0.0,0.0,0.0,-0.35189328 +371.1116409301758,0.35999998,0.0,0.0,0.0,-0.35189328 +371.1213779449463,0.35999998,0.0,0.0,0.0,-0.33339283 +371.1303970813751,0.37,0.0,0.0,0.0,-0.33339283 +371.13940501213074,0.37,0.0,0.0,0.0,-0.33339283 +371.15091013908386,0.38,0.0,0.0,0.0,-0.33339283 +371.15972113609314,0.38,0.0,0.0,0.0,-0.33339283 +371.1700830459595,0.39,0.0,0.0,0.0,-0.28899163 +371.1799280643463,0.39,0.0,0.0,0.0,-0.28899163 +371.1916720867157,0.39,0.0,0.0,0.0,-0.28899163 +371.2016739845276,0.39999998,0.0,0.0,0.0,-0.28899163 +371.2107059955597,0.39999998,0.0,0.0,0.0,-0.28899163 +371.21959495544434,0.41,0.0,0.0,0.0,-0.30934215 +371.2295241355896,0.41,0.0,0.0,0.0,-0.30934215 +371.24165391921997,0.41,0.0,0.0,0.0,-0.30934215 +371.24960112571716,0.41,0.0,0.0,0.0,-0.30934215 +371.259868144989,0.42,0.0,0.0,0.0,-0.30934215 +371.2700660228729,0.42,0.0,0.0,0.0,-0.2612409 +371.2816860675812,0.42,0.0,0.0,0.0,-0.2612409 +371.28996992111206,0.42999998,0.0,0.0,0.0,-0.2612409 +371.2998261451721,0.42999998,0.0,0.0,0.0,-0.2612409 +371.3106300830841,0.42999998,0.0,0.0,0.0,-0.2612409 +371.31953501701355,0.42999998,0.0,0.0,0.0,-0.17243853 +371.330295085907,0.44,0.0,0.0,0.0,-0.17243853 +371.34090304374695,0.44,0.0,0.0,0.0,-0.17243853 +371.3498840332031,0.44,0.0,0.0,0.0,-0.17243853 +371.3598129749298,0.44,0.0,0.0,0.0,-0.17243853 +371.3694980144501,0.44,0.0,0.0,0.0,-0.12248721 +371.3800609111786,0.44,0.0,0.0,0.0,-0.12248721 +371.39168310165405,0.44,0.0,0.0,0.0,-0.12248721 +371.39953994750977,0.42999998,0.0,0.0,0.0,-0.12248721 +371.409793138504,0.42999998,0.0,0.0,0.0,-0.12248721 +371.4195830821991,0.42999998,0.0,0.0,0.0,-0.015184363 +371.4296929836273,0.42,0.0,0.0,0.0,-0.015184363 +371.43978214263916,0.42,0.0,0.0,0.0,-0.015184363 +371.4503960609436,0.42,0.0,0.0,0.0,-0.015184363 +371.4593961238861,0.42,0.0,0.0,0.0,-0.015184363 +371.4717059135437,0.42,0.0,0.0,0.0,0.021816617 +371.48137307167053,0.42,0.0,0.0,0.0,0.021816617 +371.4898841381073,0.42,0.0,0.0,0.0,0.021816617 +371.49992203712463,0.42,0.0,0.0,0.0,0.021816617 +371.5116801261902,0.42,0.0,0.0,0.0,0.021816617 +371.5195870399475,0.41,0.0,0.0,0.0,0.06621779 +371.52967405319214,0.41,0.0,0.0,0.0,0.06621779 +371.54050302505493,0.41,0.0,0.0,0.0,0.06621779 +371.5494010448456,0.41,0.0,0.0,0.0,0.06621779 +371.55970311164856,0.41,0.0,0.0,0.0,0.06621779 +371.5712790489197,0.41,0.0,0.0,0.0,0.110618964 +371.5809860229492,0.41,0.0,0.0,0.0,0.110618964 +371.59001111984253,0.41,0.0,0.0,0.0,0.110618964 +371.6016170978546,0.41,0.0,0.0,0.0,0.110618964 +371.61005091667175,0.41,0.0,0.0,0.0,0.16057031 +371.61959314346313,0.41,0.0,0.0,0.0,0.16057031 +371.62962007522583,0.41,0.0,0.0,0.0,0.16057031 +371.6397159099579,0.41,0.0,0.0,0.0,0.16057031 +371.6517150402069,0.41,0.0,0.0,0.0,0.16057031 +371.66005992889404,0.41,0.0,0.0,0.0,0.22162192 +371.67113399505615,0.41,0.0,0.0,0.0,0.22162192 +371.68011713027954,0.41,0.0,0.0,0.0,0.22162192 +371.69154691696167,0.32,0.0,0.0,0.0,0.22162192 +371.69966411590576,0.32,0.0,0.0,0.0,0.22162192 +371.70951795578003,0.31,0.0,0.0,0.0,0.22162192 +371.7194941043854,0.31,0.0,0.0,0.0,0.24197246 +371.72988510131836,0.31,0.0,0.0,0.0,0.24197246 +371.7406499385834,0.31,0.0,0.0,0.0,0.24197246 +371.7500081062317,0.31,0.0,0.0,0.0,0.24197246 +371.76006507873535,0.31,0.0,0.0,0.0,0.2586229 +371.77025294303894,0.31,0.0,0.0,0.0,0.2586229 +371.77948808670044,0.29999998,0.0,0.0,0.0,0.2586229 +371.78999495506287,0.29999998,0.0,0.0,0.0,0.2586229 +371.79944705963135,0.29999998,0.0,0.0,0.0,0.2586229 +371.8100690841675,0.29999998,0.0,0.0,0.0,0.26602313 +371.8195481300354,0.29999998,0.0,0.0,0.0,0.26602313 +371.83030891418457,0.29999998,0.0,0.0,0.0,0.26602313 +371.841735124588,0.29999998,0.0,0.0,0.0,0.26602313 +371.85012912750244,0.29999998,0.0,0.0,0.0,0.26602313 +371.8600730895996,0.29999998,0.0,0.0,0.0,0.26417306 +371.87020897865295,0.29999998,0.0,0.0,0.0,0.26417306 +371.87943291664124,0.29999998,0.0,0.0,0.0,0.26417306 +371.8910720348358,0.29,0.0,0.0,0.0,0.26417306 +371.90119314193726,0.29,0.0,0.0,0.0,0.26417306 +371.91006803512573,0.29,0.0,0.0,0.0,0.29747394 +371.91958594322205,0.29,0.0,0.0,0.0,0.29747394 +371.9302899837494,0.29,0.0,0.0,0.0,0.29747394 +371.9414529800415,0.29,0.0,0.0,0.0,0.29747394 +371.9503951072693,0.29,0.0,0.0,0.0,0.29747394 +371.9595329761505,0.28,0.0,0.0,0.0,0.29747394 +371.97030901908875,0.28,0.0,0.0,0.0,0.2919238 +371.9795470237732,0.28,0.0,0.0,0.0,0.2919238 +371.9913511276245,0.28,0.0,0.0,0.0,0.2919238 +372.00037598609924,0.28,0.0,0.0,0.0,0.2919238 +372.00939297676086,0.28,0.0,0.0,0.0,0.2919238 +372.02173805236816,0.28,0.0,0.0,0.0,0.29932398 +372.0296959877014,0.28,0.0,0.0,0.0,0.29932398 +372.03949999809265,0.26999998,0.0,0.0,0.0,0.29932398 +372.0495629310608,0.26999998,0.0,0.0,0.0,0.29932398 +372.0600769519806,0.26999998,0.0,0.0,0.0,0.32892478 +372.0693950653076,0.26999998,0.0,0.0,0.0,0.32892478 +372.08041501045227,0.26999998,0.0,0.0,0.0,0.32892478 +372.0905079841614,0.26999998,0.0,0.0,0.0,0.32892478 +372.09952211380005,0.26999998,0.0,0.0,0.0,0.32892478 +372.1096739768982,0.26999998,0.0,0.0,0.0,0.32892478 +372.11958408355713,0.26,0.0,0.0,0.0,0.43622762 +372.13027906417847,0.26,0.0,0.0,0.0,0.43622762 +372.13965606689453,0.26,0.0,0.0,0.0,0.43622762 +372.15018701553345,0.26,0.0,0.0,0.0,0.43622762 +372.16007113456726,0.26,0.0,0.0,0.0,0.45287812 +372.171648979187,0.25,0.0,0.0,0.0,0.45287812 +372.17941403388977,0.25,0.0,0.0,0.0,0.45287812 +372.1896929740906,0.25,0.0,0.0,0.0,0.45287812 +372.1997320652008,0.25,0.0,0.0,0.0,0.45287812 +372.2117569446564,0.25,0.0,0.0,0.0,0.45287812 +372.2196009159088,0.25,0.0,0.0,0.0,0.38257617 +372.2297339439392,0.25,0.0,0.0,0.0,0.38257617 +372.24005913734436,0.25,0.0,0.0,0.0,0.38257617 +372.2517580986023,0.25,0.0,0.0,0.0,0.38257617 +372.25977993011475,0.25,0.0,0.0,0.0,0.38257617 +372.27030301094055,0.25,0.0,0.0,0.0,0.2549228 +372.2798581123352,0.24,0.0,0.0,0.0,0.2549228 +372.2917540073395,0.24,0.0,0.0,0.0,0.2549228 +372.3007390499115,0.24,0.0,0.0,0.0,0.2549228 +372.310830116272,0.24,0.0,0.0,0.0,0.2549228 +372.31958198547363,0.24,0.0,0.0,0.0,0.21052164 +372.3299911022186,0.24,0.0,0.0,0.0,0.21052164 +372.34171295166016,0.24,0.0,0.0,0.0,0.21052164 +372.35145807266235,0.24,0.0,0.0,0.0,0.21052164 +372.36008501052856,0.24,0.0,0.0,0.0,0.23642232 +372.3696041107178,0.24,0.0,0.0,0.0,0.23642232 +372.3793890476227,0.24,0.0,0.0,0.0,0.23642232 +372.39062905311584,0.22999999,0.0,0.0,0.0,0.23642232 +372.4004099369049,0.22999999,0.0,0.0,0.0,0.23642232 +372.40991711616516,0.22999999,0.0,0.0,0.0,0.23642232 +372.4195489883423,0.22999999,0.0,0.0,0.0,0.23087217 +372.4303081035614,0.22,0.0,0.0,0.0,0.23087217 +372.44060707092285,0.22,0.0,0.0,0.0,0.23087217 +372.4495301246643,0.22,0.0,0.0,0.0,0.23087217 +372.4600579738617,0.22,0.0,0.0,0.0,0.23087217 +372.47179412841797,0.22,0.0,0.0,0.0,0.23087217 +372.48041009902954,0.22,0.0,0.0,0.0,0.23087217 +372.49100708961487,0.21,0.0,0.0,0.0,0.23087217 +372.5000231266022,0.21,0.0,0.0,0.0,0.23087217 +372.5098149776459,0.21,0.0,0.0,0.0,0.23087217 +372.5194969177246,0.21,0.0,0.0,0.0,0.14761995 +372.5295169353485,0.21,0.0,0.0,0.0,0.14761995 +372.5408990383148,0.21,0.0,0.0,0.0,0.14761995 +372.55033898353577,0.21,0.0,0.0,0.0,0.14761995 +372.5600800514221,0.19999999,0.0,0.0,0.0,0.21237166 +372.57178807258606,0.19999999,0.0,0.0,0.0,0.21237166 +372.5794141292572,0.19999999,0.0,0.0,0.0,0.21237166 +372.5901291370392,0.19999999,0.0,0.0,0.0,0.21237166 +372.59975004196167,0.19999999,0.0,0.0,0.0,0.21237166 +372.60997891426086,0.19999999,0.0,0.0,0.0,0.21237166 +372.6196320056915,0.19,0.0,0.0,0.0,0.21237166 +372.6302959918976,0.19,0.0,0.0,0.0,0.21237166 +372.63944602012634,0.19,0.0,0.0,0.0,0.21237166 +372.6495261192322,0.19,0.0,0.0,0.0,0.21237166 +372.65953612327576,0.19,0.0,0.0,0.0,0.21237166 +372.66946601867676,0.19,0.0,0.0,0.0,0.20127137 +372.68021512031555,0.19,0.0,0.0,0.0,0.20127137 +372.68968200683594,0.19,0.0,0.0,0.0,0.20127137 +372.7018051147461,0.17999999,0.0,0.0,0.0,0.20127137 +372.7100610733032,0.17999999,0.0,0.0,0.0,0.20312142 +372.7196171283722,0.17999999,0.0,0.0,0.0,0.20312142 +372.7302920818329,0.17999999,0.0,0.0,0.0,0.20312142 +372.73965406417847,0.17999999,0.0,0.0,0.0,0.20312142 +372.7513921260834,0.17,0.0,0.0,0.0,0.20312142 +372.7594380378723,0.17,0.0,0.0,0.0,0.20312142 +372.7703330516815,0.16,0.0,0.0,0.0,0.20682153 +372.7795190811157,0.16,0.0,0.0,0.0,0.20682153 +372.78958892822266,0.16,0.0,0.0,0.0,0.20682153 +372.8005881309509,0.16,0.0,0.0,0.0,0.20682153 +372.81007504463196,0.14999999,0.0,0.0,0.0,0.16057031 +372.81974697113037,0.14999999,0.0,0.0,0.0,0.16057031 +372.8298530578613,0.14999999,0.0,0.0,0.0,0.16057031 +372.8418319225311,0.14999999,0.0,0.0,0.0,0.16057031 +372.8506679534912,0.14999999,0.0,0.0,0.0,0.16057031 +372.859601020813,0.14,0.0,0.0,0.0,0.16057031 +372.86943101882935,0.14,0.0,0.0,0.0,0.19202115 +372.879399061203,0.14,0.0,0.0,0.0,0.19202115 +372.8904631137848,0.13,0.0,0.0,0.0,0.19202115 +372.9018180370331,0.13,0.0,0.0,0.0,0.19202115 +372.9100670814514,0.13,0.0,0.0,0.0,0.16427042 +372.91960096359253,0.13,0.0,0.0,0.0,0.16427042 +372.9302980899811,0.12,0.0,0.0,0.0,0.16427042 +372.9398019313812,0.12,0.0,0.0,0.0,0.16427042 +372.9504680633545,0.12,0.0,0.0,0.0,0.16427042 +372.95947194099426,0.12,0.0,0.0,0.0,0.16427042 +372.9718430042267,0.12,0.0,0.0,0.0,0.16427042 +372.9794261455536,0.11,0.0,0.0,0.0,0.16427042 +372.9917359352112,0.11,0.0,0.0,0.0,0.16427042 +373.00004601478577,0.11,0.0,0.0,0.0,0.16427042 +373.01016211509705,0.11,0.0,0.0,0.0,0.16427042 +373.0196371078491,0.099999994,0.0,0.0,0.0,0.16057031 +373.0302951335907,0.099999994,0.0,0.0,0.0,0.16057031 +373.04041504859924,0.099999994,0.0,0.0,0.0,0.16057031 +373.0494210720062,0.089999996,0.0,0.0,0.0,0.16057031 +373.06006503105164,0.089999996,0.0,0.0,0.0,0.15132006 +373.0718560218811,0.08,0.0,0.0,0.0,0.15132006 +373.0795359611511,0.07,0.0,0.0,0.0,0.15132006 +373.0912959575653,0.07,0.0,0.0,0.0,0.15132006 +373.1002690792084,0.06,0.0,0.0,0.0,0.15132006 +373.10941791534424,0.06,0.0,0.0,0.0,0.15132006 +373.11959314346313,0.06,0.0,0.0,0.0,0.14021976 +373.1302969455719,0.049999997,0.0,0.0,0.0,0.14021976 +373.1396110057831,0.049999997,0.0,0.0,0.0,0.14021976 +373.1499149799347,0.049999997,0.0,0.0,0.0,0.14021976 +373.16006898880005,0.049999997,0.0,0.0,0.0,0.114319056 +373.17158603668213,0.049999997,0.0,0.0,0.0,0.114319056 +373.17943811416626,0.04,0.0,0.0,0.0,0.114319056 +373.1894099712372,0.04,0.0,0.0,0.0,0.114319056 +373.19947600364685,0.04,0.0,0.0,0.0,0.114319056 +373.2102551460266,0.04,0.0,0.0,0.0,0.114319056 +373.2195711135864,0.04,0.0,0.0,0.0,0.07546805 +373.2295229434967,0.03,0.0,0.0,0.0,0.07546805 +373.2418529987335,0.03,0.0,0.0,0.0,0.07546805 +373.2518730163574,0.03,0.0,0.0,0.0,0.07546805 +373.259428024292,0.03,0.0,0.0,0.0,0.07546805 +373.26964807510376,0.03,0.0,0.0,0.0,0.049567357 +373.28042101860046,0.03,0.0,0.0,0.0,0.049567357 +373.28963899612427,0.02,0.0,0.0,0.0,0.049567357 +373.30125999450684,0.02,0.0,0.0,0.0,0.049567357 +373.3099000453949,0.02,0.0,0.0,0.0,0.049567357 +373.31959199905396,0.02,0.0,0.0,0.0,0.023666665 +373.3303220272064,0.02,0.0,0.0,0.0,0.023666665 +373.34098291397095,0.02,0.0,0.0,0.0,0.023666665 +373.34988713264465,0.02,0.0,0.0,0.0,0.023666665 +373.36006808280945,0.02,0.0,0.0,0.0,-0.022584556 +373.3707981109619,0.02,0.0,0.0,0.0,-0.022584556 +373.37942600250244,0.02,0.0,0.0,0.0,-0.022584556 +373.3902599811554,0.02,0.0,0.0,0.0,-0.022584556 +373.4002149105072,0.01,0.0,0.0,0.0,-0.022584556 +373.40969800949097,0.01,0.0,0.0,0.0,-0.022584556 +373.419606924057,0.01,0.0,0.0,0.0,-0.0466352 +373.4300980567932,0.01,0.0,0.0,0.0,-0.0466352 +373.4400019645691,0.01,0.0,0.0,0.0,-0.0466352 +373.45065808296204,0.01,0.0,0.0,0.0,-0.0466352 +373.46007895469666,0.0,0.0,0.0,0.0,-0.06328564 +373.46994805336,0.0,0.0,0.0,0.0,-0.06328564 +373.48046493530273,0.0,0.0,0.0,0.0,-0.06328564 +373.4901831150055,0.0,0.0,0.0,0.0,-0.06328564 +373.49989008903503,0.0,0.0,0.0,0.0,-0.06328564 +373.510311126709,0.0,0.0,0.0,0.0,-0.06328564 +373.5196089744568,0.0,0.0,0.0,0.0,-0.06513569 +373.53031396865845,0.0,0.0,0.0,0.0,-0.06513569 +373.5418939590454,0.0,0.0,0.0,0.0,-0.06513569 +373.55110597610474,0.0,0.0,0.0,0.0,-0.06513569 +373.5598530769348,0.0,0.0,0.0,0.0,-0.06513569 +373.5700719356537,0.0,0.0,0.0,0.0,-0.09288643 +373.57944107055664,0.0,0.0,0.0,0.0,-0.09288643 +373.58999514579773,0.0,0.0,0.0,0.0,-0.09288643 +373.599417924881,0.0,0.0,0.0,0.0,-0.09288643 +373.6100881099701,0.0,0.0,0.0,0.0,-0.10583678 +373.6196150779724,0.0,0.0,0.0,0.0,-0.10583678 +373.63028597831726,0.0,0.0,0.0,0.0,-0.10583678 +373.6412630081177,0.0,0.0,0.0,0.0,-0.10583678 +373.6497321128845,0.0,0.0,0.0,0.0,-0.10583678 +373.66010093688965,0.0,0.0,0.0,0.0,-0.13728762 +373.6700539588928,0.0,0.0,0.0,0.0,-0.13728762 +373.6796290874481,0.0,0.0,0.0,0.0,-0.13728762 +373.6909260749817,0.0,0.0,0.0,0.0,-0.13728762 +373.70016407966614,0.0,0.0,0.0,0.0,-0.13728762 +373.7100660800934,0.0,0.0,0.0,0.0,-0.18908899 +373.72189593315125,0.0,0.0,0.0,0.0,-0.18908899 +373.7303340435028,0.0,0.0,0.0,0.0,-0.18908899 +373.74031710624695,0.0,0.0,0.0,0.0,-0.18908899 +373.7494230270386,0.0,0.0,0.0,0.0,-0.18908899 +373.7596220970154,0.0,0.0,0.0,0.0,-0.18908899 +373.7701930999756,0.0,0.0,0.0,0.0,-0.18538888 +373.7794671058655,0.0,0.0,0.0,0.0,-0.18538888 +373.7919020652771,0.0,0.0,0.0,0.0,-0.18538888 +373.80190205574036,0.0,0.0,0.0,0.0,-0.18538888 +373.8100919723511,0.0,0.0,0.0,0.0,-0.20018928 +373.81939601898193,0.0,0.0,0.0,0.0,-0.20018928 +373.83022713661194,0.0,0.0,0.0,0.0,-0.20018928 +373.83956694602966,0.0,0.0,0.0,0.0,-0.20018928 +373.84996700286865,0.0,0.0,0.0,0.0,-0.20018928 +373.8600959777832,0.0,0.0,0.0,0.0,-0.20018928 +373.8719160556793,0.0,0.0,0.0,0.0,-0.20018928 +373.8804519176483,0.0,0.0,0.0,0.0,-0.20018928 +373.8900671005249,0.0,0.0,0.0,0.0,-0.20018928 +373.9013121128082,0.0,0.0,0.0,0.0,-0.20018928 +373.9094021320343,0.0,0.0,0.0,0.0,-0.20018928 +373.91959404945374,0.0,0.0,0.0,0.0,-0.19278908 +373.9297170639038,0.0,0.0,0.0,0.0,-0.19278908 +373.93990111351013,0.0,0.0,0.0,0.0,-0.19278908 +373.95036602020264,0.0,0.0,0.0,0.0,-0.19278908 +373.9601020812988,0.0,0.0,0.0,0.0,-0.18353882 +373.97193002700806,0.0,0.0,0.0,0.0,-0.18353882 +373.97943210601807,0.0,0.0,0.0,0.0,-0.18353882 +373.9915671348572,0.0,0.0,0.0,0.0,-0.18353882 +374.0004789829254,0.0,0.0,0.0,0.0,-0.18353882 +374.00940895080566,0.0,0.0,0.0,0.0,-0.18353882 +374.0196359157562,0.0,0.0,0.0,0.0,-0.14653786 +374.0295670032501,0.0,0.0,0.0,0.0,-0.14653786 +374.0404999256134,0.0,0.0,0.0,0.0,-0.14653786 +374.0494930744171,0.0,0.0,0.0,0.0,-0.14653786 +374.0601079463959,0.0,0.0,0.0,0.0,-0.16318831 +374.0717840194702,0.0,0.0,0.0,0.0,-0.16318831 +374.0804569721222,0.0,0.0,0.0,0.0,-0.16318831 +374.0896050930023,0.0,0.0,0.0,0.0,-0.16318831 +374.1010420322418,0.0,0.0,0.0,0.0,-0.16318831 +374.1100420951843,0.0,0.0,0.0,0.0,-0.16318831 +374.1195890903473,0.0,0.0,0.0,0.0,-0.13913766 +374.1303129196167,0.0,0.0,0.0,0.0,-0.13913766 +374.1396310329437,0.0,0.0,0.0,0.0,-0.13913766 +374.1519329547882,0.0,0.0,0.0,0.0,-0.13913766 +374.15943908691406,0.0,0.0,0.0,0.0,-0.13913766 +374.1694440841675,0.0,0.0,0.0,0.0,-0.041085053 +374.17946004867554,0.0,0.0,0.0,0.0,-0.041085053 +374.19075298309326,0.0,0.0,0.0,0.0,-0.041085053 +374.2002041339874,0.0,0.0,0.0,0.0,-0.041085053 +374.20970702171326,0.0,0.0,0.0,0.0,-0.041085053 +374.2196180820465,0.0,0.0,0.0,0.0,0.019966569 +374.22956800460815,0.0,0.0,0.0,0.0,0.019966569 +374.24108695983887,0.0,0.0,0.0,0.0,0.019966569 +374.24999499320984,0.0,0.0,0.0,0.0,0.019966569 +374.2600910663605,0.0,0.0,0.0,0.0,0.021816617 +374.27004313468933,0.0,0.0,0.0,0.0,0.021816617 +374.28045105934143,0.0,0.0,0.0,0.0,0.021816617 +374.28947401046753,0.0,0.0,0.0,0.0,0.021816617 +374.2993941307068,0.0,0.0,0.0,0.0,0.021816617 +374.3108229637146,0.0,0.0,0.0,0.0,0.021816617 +374.319531917572,0.0,0.0,0.0,0.0,0.031066857 +374.33024191856384,0.0,0.0,0.0,0.0,0.031066857 +374.3407070636749,0.0,0.0,0.0,0.0,0.031066857 +374.35045194625854,0.0,0.0,0.0,0.0,0.031066857 +374.36008501052856,0.0,0.0,0.0,0.0,0.01811652 +374.37152791023254,0.0,0.0,0.0,0.0,0.01811652 +374.3794629573822,0.0,0.0,0.0,0.0,0.01811652 +374.3895049095154,0.0,0.0,0.0,0.0,0.01811652 +374.4009289741516,0.0,0.0,0.0,0.0,0.01811652 +374.40995812416077,0.0,0.0,0.0,0.0,0.01811652 +374.4195809364319,0.0,0.0,0.0,0.0,0.021816617 +374.43032693862915,0.0,0.0,0.0,0.0,0.021816617 +374.4419729709625,0.0,0.0,0.0,0.0,0.021816617 +374.4499759674072,0.0,0.0,0.0,0.0,0.021816617 +374.46009492874146,0.0,0.0,0.0,0.0,0.032916907 +374.47043800354004,0.0,0.0,0.0,0.0,0.032916907 +374.47941994667053,0.0,0.0,0.0,0.0,0.032916907 +374.490669965744,0.0,0.0,0.0,0.0,0.032916907 +374.4995720386505,0.0,0.0,0.0,0.0,0.032916907 +374.5119891166687,0.0,0.0,0.0,0.0,0.032916907 +374.52196311950684,0.0,0.0,0.0,0.0,0.049567357 +374.5319790840149,0.0,0.0,0.0,0.0,0.049567357 +374.5419731140137,0.0,0.0,0.0,0.0,0.049567357 +374.54965591430664,0.0,0.0,0.0,0.0,0.049567357 +374.55958795547485,0.0,0.0,0.0,0.0,0.049567357 +374.5693910121918,0.0,0.0,0.0,0.0,0.051417407 +374.57940101623535,0.0,0.0,0.0,0.0,0.051417407 +374.590194940567,0.0,0.0,0.0,0.0,0.051417407 +374.60053300857544,0.0,0.0,0.0,0.0,0.051417407 +374.61010003089905,0.0,0.0,0.0,0.0,0.068067834 +374.6195750236511,0.0,0.0,0.0,0.0,0.068067834 +374.63031911849976,0.0,0.0,0.0,0.0,0.068067834 +374.6413049697876,0.0,0.0,0.0,0.0,0.068067834 +374.6496059894562,0.0,0.0,0.0,0.0,0.068067834 +374.6599950790405,0.0,0.0,0.0,0.0,0.068067834 +374.67124009132385,0.0,0.0,0.0,0.0,0.09211848 +374.6797249317169,0.0,0.0,0.0,0.0,0.09211848 +374.6919810771942,0.0,0.0,0.0,0.0,0.09211848 +374.70198106765747,0.0,0.0,0.0,0.0,0.09211848 +374.71012592315674,0.0,0.0,0.0,0.0,0.08656834 +374.7196259498596,0.0,0.0,0.0,0.0,0.08656834 +374.7302899360657,0.0,0.0,0.0,0.0,0.08656834 +374.74020314216614,0.0,0.0,0.0,0.0,0.08656834 +374.75025391578674,0.0,0.0,0.0,0.0,0.08656834 +374.76010608673096,0.0,0.0,0.0,0.0,0.077318095 +374.770348072052,0.0,0.0,0.0,0.0,0.077318095 +374.77961111068726,0.0,0.0,0.0,0.0,0.077318095 +374.7920069694519,0.0,0.0,0.0,0.0,0.077318095 +374.8020040988922,0.0,0.0,0.0,0.0,0.077318095 +374.8097870349884,0.0,0.0,0.0,0.0,0.077318095 +374.81960701942444,0.0,0.0,0.0,0.0,0.077318095 +374.82953810691833,0.0,0.0,0.0,0.0,0.077318095 +374.84042406082153,0.0,0.0,0.0,0.0,0.077318095 +374.8494279384613,0.0,0.0,0.0,0.0,0.077318095 +374.8601059913635,0.0,0.0,0.0,0.0,0.077318095 +374.8694679737091,0.0,0.0,0.0,0.0,0.077318095 +374.88047909736633,0.0,0.0,0.0,0.0,0.077318095 +374.8899099826813,0.0,0.0,0.0,0.0,0.077318095 +374.9006681442261,0.0,0.0,0.0,0.0,0.077318095 +374.9095799922943,0.0,0.0,0.0,0.0,0.077318095 +374.9195909500122,0.0,0.0,0.0,0.0,0.06621779 +374.9303250312805,0.0,0.0,0.0,0.0,0.06621779 +374.93961000442505,0.0,0.0,0.0,0.0,0.06621779 +374.9505579471588,0.0,0.0,0.0,0.0,0.06621779 +374.9595670700073,0.0,0.0,0.0,0.0,0.06621779 +374.9718670845032,0.0,0.0,0.0,0.0,0.08286824 +374.9794731140137,0.0,0.0,0.0,0.0,0.08286824 +374.9898269176483,0.0,0.0,0.0,0.0,0.08286824 +375.000776052475,0.0,0.0,0.0,0.0,0.08286824 +375.0100691318512,0.0,0.0,0.0,0.0,0.08286824 +375.0196409225464,0.0,0.0,0.0,0.0,0.08471829 +375.0294580459595,0.0,0.0,0.0,0.0,0.08471829 +375.0406770706177,0.0,0.0,0.0,0.0,0.08471829 +375.0496709346771,0.0,0.0,0.0,0.0,0.08471829 +375.0601029396057,0.0,0.0,0.0,0.0,0.077318095 +375.06986713409424,0.0,0.0,0.0,0.0,0.077318095 +375.08049607276917,0.0,0.0,0.0,0.0,0.077318095 +375.0910050868988,0.0,0.0,0.0,0.0,0.077318095 +375.10000109672546,0.0,0.0,0.0,0.0,0.077318095 +375.1108949184418,0.0,0.0,0.0,0.0,0.077318095 +375.11964201927185,0.0,0.0,0.0,0.0,0.07546805 +375.13026094436646,0.0,0.0,0.0,0.0,0.07546805 +375.13975405693054,0.0,0.0,0.0,0.0,0.07546805 +375.1494219303131,0.0,0.0,0.0,0.0,0.07546805 +375.1600980758667,0.0,0.0,0.0,0.0,0.08471829 +375.1719570159912,0.0,0.0,0.0,0.0,0.08471829 +375.1794979572296,0.0,0.0,0.0,0.0,0.08471829 +375.18991708755493,0.0,0.0,0.0,0.0,0.08471829 +375.1999270915985,0.0,0.0,0.0,0.0,0.08471829 +375.2100820541382,0.0,0.0,0.0,0.0,0.08471829 +375.2196400165558,0.0,0.0,0.0,0.0,0.05696755 +375.22987699508667,0.0,0.0,0.0,0.0,0.05696755 +375.24203300476074,0.0,0.0,0.0,0.0,0.05696755 +375.25205302238464,0.0,0.0,0.0,0.0,0.05696755 +375.26011204719543,0.0,0.0,0.0,0.0,0.042167164 +375.2695879936218,0.0,0.0,0.0,0.0,0.042167164 +375.279855966568,0.0,0.0,0.0,0.0,0.042167164 +375.2912120819092,0.0,0.0,0.0,0.0,0.042167164 +375.3002350330353,0.0,0.0,0.0,0.0,0.042167164 +375.3103070259094,0.0,0.0,0.0,0.0,0.042167164 +375.31956911087036,0.0,0.0,0.0,0.0,-0.002234026 +375.3293881416321,0.0,0.0,0.0,0.0,-0.002234026 +375.34059596061707,0.0,0.0,0.0,0.0,-0.002234026 +375.3517949581146,0.0,0.0,0.0,0.0,-0.002234026 +375.36011004447937,0.0,0.0,0.0,0.0,-0.0040840744 +375.36979603767395,0.0,0.0,0.0,0.0,-0.0040840744 +375.3795211315155,0.0,0.0,0.0,0.0,-0.0040840744 +375.39036297798157,0.0,0.0,0.0,0.0,-0.0040840744 +375.3997929096222,0.0,0.0,0.0,0.0,-0.0040840744 +375.41005206108093,0.0,0.0,0.0,0.0,-0.0040840744 +375.41953206062317,0.0,0.0,0.0,0.0,-0.022584556 +375.42981004714966,0.0,0.0,0.0,0.0,-0.022584556 +375.4403281211853,0.0,0.0,0.0,0.0,-0.022584556 +375.4507260322571,0.0,0.0,0.0,0.0,-0.022584556 +375.4597210884094,0.0,0.0,0.0,0.0,-0.022584556 +375.4711239337921,0.0,0.0,0.0,0.0,-0.05588545 +375.479975938797,0.0,0.0,0.0,0.0,-0.05588545 +375.4895439147949,0.0,0.0,0.0,0.0,-0.05588545 +375.5001449584961,0.0,0.0,0.0,0.0,-0.05588545 +375.5100040435791,0.0,0.0,0.0,0.0,-0.05588545 +375.5196330547333,0.0,0.0,0.0,0.0,-0.06698574 +375.5303421020508,0.0,0.0,0.0,0.0,-0.06698574 +375.540647983551,0.0,0.0,0.0,0.0,-0.06698574 +375.549654006958,0.0,0.0,0.0,0.0,-0.06698574 +375.56009101867676,0.0,0.0,0.0,0.0,-0.07438594 +375.57068705558777,0.0,0.0,0.0,0.0,-0.07438594 +375.5794780254364,0.0,0.0,0.0,0.0,-0.07438594 +375.59014892578125,0.0,0.0,0.0,0.0,-0.07438594 +375.6020829677582,0.0,0.0,0.0,0.0,-0.07438594 +375.6101279258728,0.0,0.0,0.0,0.0,-0.07993608 +375.61959409713745,0.0,0.0,0.0,0.0,-0.07993608 +375.6301939487457,0.0,0.0,0.0,0.0,-0.07993608 +375.6395890712738,0.0,0.0,0.0,0.0,-0.07993608 +375.64944195747375,0.0,0.0,0.0,0.0,-0.07993608 +375.6598949432373,0.0,0.0,0.0,0.0,-0.07993608 +375.66988706588745,0.0,0.0,0.0,0.0,-0.06883579 +375.67962098121643,0.0,0.0,0.0,0.0,-0.06883579 +375.6893980503082,0.0,0.0,0.0,0.0,-0.06883579 +375.70084595680237,0.0,0.0,0.0,0.0,-0.06883579 +375.71012806892395,0.0,0.0,0.0,0.0,-0.07623599 +375.71966314315796,0.0,0.0,0.0,0.0,-0.07623599 +375.7295570373535,0.0,0.0,0.0,0.0,-0.07623599 +375.7420139312744,0.0,0.0,0.0,0.0,-0.07623599 +375.75102496147156,0.0,0.0,0.0,0.0,-0.07623599 +375.7600510120392,0.0,0.0,0.0,0.0,-0.07623599 +375.7704861164093,0.0,0.0,0.0,0.0,-0.072535895 +375.7794759273529,0.0,0.0,0.0,0.0,-0.072535895 +375.7919931411743,0.0,0.0,0.0,0.0,-0.072535895 +375.80092692375183,0.0,0.0,0.0,0.0,-0.072535895 +375.8098270893097,0.0,0.0,0.0,0.0,-0.072535895 +375.81949496269226,0.0,0.0,0.0,0.0,-0.08733628 +375.82956099510193,0.0,0.0,0.0,0.0,-0.08733628 +375.84119391441345,0.0,0.0,0.0,0.0,-0.08733628 +375.85022592544556,0.0,0.0,0.0,0.0,-0.08733628 +375.8601140975952,0.0,0.0,0.0,0.0,-0.152088 +375.86960911750793,0.0,0.0,0.0,0.0,-0.152088 +375.88048005104065,0.0,0.0,0.0,0.0,-0.152088 +375.8900821208954,0.0,0.0,0.0,0.0,-0.152088 +375.9004499912262,0.0,0.0,0.0,0.0,-0.152088 +375.90943002700806,0.0,0.0,0.0,0.0,-0.152088 +375.9196310043335,0.0,0.0,0.0,0.0,-0.1483879 +375.93032693862915,0.0,0.0,0.0,0.0,-0.1483879 +375.9403750896454,0.0,0.0,0.0,0.0,-0.1483879 +375.95067596435547,0.0,0.0,0.0,0.0,-0.1483879 +375.9596891403198,0.0,0.0,0.0,0.0,-0.1483879 +375.9703359603882,0.0,0.0,0.0,0.0,-0.1483879 +375.9794909954071,0.0,0.0,0.0,0.0,-0.1483879 +375.9904000759125,0.0,0.0,0.0,0.0,-0.1483879 +375.99945998191833,0.0,0.0,0.0,0.0,-0.1483879 +376.0119209289551,0.0,0.0,0.0,0.0,-0.14653786 +376.01964712142944,0.0,0.0,0.0,0.0,-0.14653786 +376.0303361415863,0.0,0.0,0.0,0.0,-0.14653786 +376.03955602645874,0.0,0.0,0.0,0.0,-0.14653786 +376.0497999191284,0.0,0.0,0.0,0.0,-0.14653786 +376.0594620704651,0.0,0.0,0.0,0.0,-0.14653786 +376.0695719718933,0.0,0.0,0.0,0.0,-0.15393804 +376.0802991390228,0.0,0.0,0.0,0.0,-0.15393804 +376.09142899513245,0.0,0.0,0.0,0.0,-0.15393804 +376.10215306282043,0.0,0.0,0.0,0.0,-0.15393804 +376.1104190349579,0.0,0.0,0.0,0.0,-0.15393804 +376.1196630001068,0.0,0.0,0.0,0.0,-0.1483879 +376.12969398498535,0.0,0.0,0.0,0.0,-0.1483879 +376.1396861076355,0.0,0.0,0.0,0.0,-0.1483879 +376.1517789363861,0.0,0.0,0.0,0.0,-0.1483879 +376.16010999679565,0.0,0.0,0.0,0.0,-0.14098771 +376.17024397850037,0.0,0.0,0.0,0.0,-0.14098771 +376.1796259880066,0.0,0.0,0.0,0.0,-0.14098771 +376.1899960041046,0.0,0.0,0.0,0.0,-0.14098771 +376.20066595077515,0.0,0.0,0.0,0.0,-0.14098771 +376.21079897880554,0.0,0.0,0.0,0.0,-0.14098771 +376.2198259830475,0.0,0.0,0.0,0.0,-0.13913766 +376.23002314567566,0.0,0.0,0.0,0.0,-0.13913766 +376.23944902420044,0.0,0.0,0.0,0.0,-0.13913766 +376.25006008148193,0.0,0.0,0.0,0.0,-0.13913766 +376.2601101398468,0.0,0.0,0.0,0.0,-0.1483879 +376.27212405204773,0.0,0.0,0.0,0.0,-0.1483879 +376.2804911136627,0.0,0.0,0.0,0.0,-0.1483879 +376.2903211116791,0.0,0.0,0.0,0.0,-0.1483879 +376.30012011528015,0.0,0.0,0.0,0.0,-0.1483879 +376.3099730014801,0.0,0.0,0.0,0.0,-0.1483879 +376.3201379776001,0.0,0.0,0.0,0.0,-0.15023795 +376.3303439617157,0.0,0.0,0.0,0.0,-0.15023795 +376.34111309051514,0.0,0.0,0.0,0.0,-0.15023795 +376.35009503364563,0.0,0.0,0.0,0.0,-0.15023795 +376.3601050376892,0.0,0.0,0.0,0.0,-0.14098771 +376.36951208114624,0.0,0.0,0.0,0.0,-0.14098771 +376.379506111145,0.0,0.0,0.0,0.0,-0.14098771 +376.3911249637604,0.0,0.0,0.0,0.0,-0.14098771 +376.40013098716736,0.0,0.0,0.0,0.0,-0.14098771 +376.41025400161743,0.0,0.0,0.0,0.0,-0.14098771 +376.4193971157074,0.0,0.0,0.0,0.0,-0.13913766 +376.430349111557,0.0,0.0,0.0,0.0,-0.13913766 +376.4400260448456,0.0,0.0,0.0,0.0,-0.13913766 +376.4516980648041,0.0,0.0,0.0,0.0,-0.13913766 +376.46011900901794,0.0,0.0,0.0,0.0,-0.13728762 +376.46950912475586,0.0,0.0,0.0,0.0,-0.13728762 +376.480516910553,0.0,0.0,0.0,0.0,-0.13728762 +376.4903061389923,0.0,0.0,0.0,0.0,-0.13728762 +376.4995801448822,0.0,0.0,0.0,0.0,-0.13728762 +376.5119159221649,0.0,0.0,0.0,0.0,-0.13913766 +376.52098202705383,0.0,0.0,0.0,0.0,-0.13913766 +376.5299620628357,0.0,0.0,0.0,0.0,-0.13913766 +376.5408399105072,0.0,0.0,0.0,0.0,-0.13913766 +376.5497660636902,0.0,0.0,0.0,0.0,-0.13913766 +376.5601210594177,0.0,0.0,0.0,0.0,-0.14283776 +376.5696620941162,0.0,0.0,0.0,0.0,-0.14283776 +376.57950806617737,0.0,0.0,0.0,0.0,-0.14283776 +376.58948397636414,0.0,0.0,0.0,0.0,-0.14283776 +376.59948897361755,0.0,0.0,0.0,0.0,-0.14283776 +376.61016297340393,0.0,0.0,0.0,0.0,-0.11878712 +376.6199080944061,0.0,0.0,0.0,0.0,-0.11878712 +376.62960290908813,0.0,0.0,0.0,0.0,-0.11878712 +376.6421949863434,0.0,0.0,0.0,0.0,-0.11878712 +376.65215396881104,0.0,0.0,0.0,0.0,-0.11878712 +376.6597650051117,0.0,0.0,0.0,0.0,-0.11878712 +376.67062997817993,0.0,0.0,0.0,0.0,-0.11878712 +376.67942690849304,0.0,0.0,0.0,0.0,-0.11878712 +376.6896231174469,0.0,0.0,0.0,0.0,-0.11878712 +376.70071506500244,0.0,0.0,0.0,0.0,-0.11878712 +376.7098379135132,0.0,0.0,0.0,0.0,-0.11878712 +376.72219491004944,0.0,0.0,0.0,0.0,-0.08733628 +376.73033809661865,0.0,0.0,0.0,0.0,-0.08733628 +376.74168491363525,0.0,0.0,0.0,0.0,-0.08733628 +376.7517509460449,0.0,0.0,0.0,0.0,-0.08733628 +376.75964307785034,0.0,0.0,0.0,0.0,-0.08733628 +376.76978492736816,0.0,0.0,0.0,0.0,-0.054035395 +376.77953600883484,0.0,0.0,0.0,0.0,-0.054035395 +376.7904510498047,0.0,0.0,0.0,0.0,-0.054035395 +376.7997889518738,0.0,0.0,0.0,0.0,-0.054035395 +376.80999207496643,0.0,0.0,0.0,0.0,-0.054035395 +376.820876121521,0.0,0.0,0.0,0.0,0.012566376 +376.82940101623535,0.0,0.0,0.0,0.0,0.012566376 +376.84193897247314,0.0,0.0,0.0,0.0,0.012566376 +376.8507270812988,0.0,0.0,0.0,0.0,0.012566376 +376.85993909835815,0.0,0.0,0.0,0.0,0.012566376 +376.86987709999084,0.0,0.0,0.0,0.0,0.032916907 +376.87958812713623,0.0,0.0,0.0,0.0,0.032916907 +376.8896920681,0.0,0.0,0.0,0.0,0.032916907 +376.9001910686493,0.0,0.0,0.0,0.0,0.032916907 +376.9101450443268,0.0,0.0,0.0,0.0,0.06621779 +376.92195892333984,0.0,0.0,0.0,0.0,0.06621779 +376.9303500652313,0.0,0.0,0.0,0.0,0.06621779 +376.9411039352417,0.0,0.0,0.0,0.0,0.06621779 +376.95015811920166,0.0,0.0,0.0,0.0,0.06621779 +376.9598059654236,0.0,0.0,0.0,0.0,0.06621779 +376.9706630706787,0.0,0.0,0.0,0.0,0.073618 +376.97951793670654,0.0,0.0,0.0,0.0,0.073618 +376.99045300483704,0.0,0.0,0.0,0.0,0.073618 +377.00114703178406,0.0,0.0,0.0,0.0,0.073618 +377.0094530582428,0.0,0.0,0.0,0.0,0.073618 +377.01972007751465,0.0,0.0,0.0,0.0,0.049567357 +377.03036093711853,0.0,0.0,0.0,0.0,0.049567357 +377.03960394859314,0.0,0.0,0.0,0.0,0.049567357 +377.05012106895447,0.0,0.0,0.0,0.0,0.049567357 +377.06013202667236,0.0,0.0,0.0,0.0,0.034766953 +377.0695960521698,0.0,0.0,0.0,0.0,0.034766953 +377.08048391342163,0.0,0.0,0.0,0.0,0.034766953 +377.09221291542053,0.0,0.0,0.0,0.0,0.034766953 +377.1022279262543,0.0,0.0,0.0,0.0,0.034766953 +377.1101961135864,0.0,0.0,0.0,0.0,0.034766953 +377.1202359199524,0.0,0.0,0.0,0.0,0.0551175 +377.13046002388,0.0,0.0,0.0,0.0,0.0551175 +377.1394009590149,0.0,0.0,0.0,0.0,0.0551175 +377.1494450569153,0.0,0.0,0.0,0.0,0.0551175 +377.15952491760254,0.0,0.0,0.0,0.0,0.0551175 +377.17221212387085,0.0,0.0,0.0,0.0,0.012566376 +377.17955207824707,0.0,0.0,0.0,0.0,0.012566376 +377.19153213500977,0.0,0.0,0.0,0.0,0.012566376 +377.20043206214905,0.0,0.0,0.0,0.0,0.012566376 +377.2115979194641,0.0,0.0,0.0,0.0,0.012566376 +377.21942806243896,0.0,0.0,0.0,0.0,0.012566376 +377.2296459674835,0.0,0.0,0.0,0.0,0.012566376 +377.2404501438141,0.0,0.0,0.0,0.0,0.012566376 +377.2494649887085,0.0,0.0,0.0,0.0,0.012566376 +377.2601411342621,0.0,0.0,0.0,0.0,0.027366763 +377.27156710624695,0.0,0.0,0.0,0.0,0.027366763 +377.2794089317322,0.0,0.0,0.0,0.0,0.027366763 +377.289528131485,0.0,0.0,0.0,0.0,0.027366763 +377.30178594589233,0.0,0.0,0.0,0.0,0.027366763 +377.30987000465393,0.0,0.0,0.0,0.0,0.027366763 +377.3198239803314,0.0,0.0,0.0,0.0,-0.002234026 +377.3295590877533,0.0,0.0,0.0,0.0,-0.002234026 +377.3417890071869,0.0,0.0,0.0,0.0,-0.002234026 +377.35053992271423,0.0,0.0,0.0,0.0,-0.002234026 +377.36012291908264,0.0,0.0,0.0,0.0,0.0070162313 +377.36968994140625,0.0,0.0,0.0,0.0,0.0070162313 +377.37951493263245,0.0,0.0,0.0,0.0,0.0070162313 +377.39193511009216,0.0,0.0,0.0,0.0,0.0070162313 +377.39989614486694,0.0,0.0,0.0,0.0,0.0070162313 +377.4098629951477,0.0,0.0,0.0,0.0,0.0070162313 +377.4196181297302,0.0,0.0,0.0,0.0,-0.009634218 +377.42949509620667,0.0,0.0,0.0,0.0,-0.009634218 +377.44096994400024,0.0,0.0,0.0,0.0,-0.009634218 +377.44989705085754,0.0,0.0,0.0,0.0,-0.009634218 +377.45977807044983,0.0,0.0,0.0,0.0,-0.009634218 +377.47184014320374,0.0,0.0,0.0,0.0,-0.020734508 +377.4805369377136,0.0,0.0,0.0,0.0,-0.020734508 +377.4911160469055,0.0,0.0,0.0,0.0,-0.020734508 +377.5001211166382,0.0,0.0,0.0,0.0,-0.020734508 +377.5097510814667,0.0,0.0,0.0,0.0,-0.020734508 +377.52117013931274,0.0,0.0,0.0,0.0,-0.020734508 +377.53008699417114,0.0,0.0,0.0,0.0,-0.020734508 +377.5399179458618,0.0,0.0,0.0,0.0,-0.020734508 +377.5522620677948,0.0,0.0,0.0,0.0,-0.020734508 +377.56013894081116,0.0,0.0,0.0,0.0,-0.03183481 +377.56953597068787,0.0,0.0,0.0,0.0,-0.03183481 +377.5795519351959,0.0,0.0,0.0,0.0,-0.03183481 +377.5902841091156,0.0,0.0,0.0,0.0,-0.03183481 +377.5998640060425,0.0,0.0,0.0,0.0,-0.03183481 +377.6101689338684,0.0,0.0,0.0,0.0,-0.026284654 +377.62226390838623,0.0,0.0,0.0,0.0,-0.026284654 +377.6303470134735,0.0,0.0,0.0,0.0,-0.026284654 +377.6422710418701,0.0,0.0,0.0,0.0,-0.026284654 +377.65227603912354,0.0,0.0,0.0,0.0,-0.026284654 +377.65939497947693,0.0,0.0,0.0,0.0,-0.026284654 +377.6699459552765,0.0,0.0,0.0,0.0,-0.039235007 +377.6793920993805,0.0,0.0,0.0,0.0,-0.039235007 +377.6894590854645,0.0,0.0,0.0,0.0,-0.039235007 +377.6994409561157,0.0,0.0,0.0,0.0,-0.039235007 +377.7101700305939,0.0,0.0,0.0,0.0,-0.06698574 +377.72196412086487,0.0,0.0,0.0,0.0,-0.06698574 +377.73040413856506,0.0,0.0,0.0,0.0,-0.06698574 +377.74226903915405,0.0,0.0,0.0,0.0,-0.06698574 +377.7522840499878,0.0,0.0,0.0,0.0,-0.06698574 +377.7601230144501,0.0,0.0,0.0,0.0,-0.06698574 +377.7706210613251,0.0,0.0,0.0,0.0,-0.06698574 +377.7795650959015,0.0,0.0,0.0,0.0,-0.06698574 +377.79048705101013,0.0,0.0,0.0,0.0,-0.06698574 +377.8000011444092,0.0,0.0,0.0,0.0,-0.06698574 +377.80969309806824,0.0,0.0,0.0,0.0,-0.06698574 +377.8222830295563,0.0,0.0,0.0,0.0,-0.07993608 +377.83033990859985,0.0,0.0,0.0,0.0,-0.07993608 +377.8419361114502,0.0,0.0,0.0,0.0,-0.07993608 +377.85064601898193,0.0,0.0,0.0,0.0,-0.07993608 +377.85975408554077,0.0,0.0,0.0,0.0,-0.07993608 +377.8697700500488,0.0,0.0,0.0,0.0,-0.07438594 +377.87941002845764,0.0,0.0,0.0,0.0,-0.07438594 +377.8916220664978,0.0,0.0,0.0,0.0,-0.07438594 +377.9022979736328,0.0,0.0,0.0,0.0,-0.07438594 +377.9101610183716,0.0,0.0,0.0,0.0,-0.07993608 +377.9216101169586,0.0,0.0,0.0,0.0,-0.07993608 +377.93007802963257,0.0,0.0,0.0,0.0,-0.07993608 +377.93995809555054,0.0,0.0,0.0,0.0,-0.07993608 +377.9509301185608,0.0,0.0,0.0,0.0,-0.07993608 +377.9598081111908,0.0,0.0,0.0,0.0,-0.07993608 +377.9693920612335,0.0,0.0,0.0,0.0,-0.06513569 +377.97954392433167,0.0,0.0,0.0,0.0,-0.06513569 +377.99036502838135,0.0,0.0,0.0,0.0,-0.06513569 +378.0023081302643,0.0,0.0,0.0,0.0,-0.06513569 +378.01123809814453,0.0,0.0,0.0,0.0,-0.06513569 +378.0201561450958,0.0,0.0,0.0,0.0,-0.10768682 +378.0303740501404,0.0,0.0,0.0,0.0,-0.10768682 +378.04095911979675,0.0,0.0,0.0,0.0,-0.10768682 +378.0497040748596,0.0,0.0,0.0,0.0,-0.10768682 +378.0596101284027,0.0,0.0,0.0,0.0,-0.10768682 +378.0715570449829,0.0,0.0,0.0,0.0,-0.085486226 +378.079402923584,0.0,0.0,0.0,0.0,-0.085486226 +378.0914430618286,0.0,0.0,0.0,0.0,-0.085486226 +378.1003451347351,0.0,0.0,0.0,0.0,-0.085486226 +378.1119270324707,0.0,0.0,0.0,0.0,-0.10028662 +378.1218800544739,0.0,0.0,0.0,0.0,-0.10028662 +378.13032603263855,0.0,0.0,0.0,0.0,-0.10028662 +378.13987612724304,0.0,0.0,0.0,0.0,-0.10028662 +378.149521112442,0.0,0.0,0.0,0.0,-0.10028662 +378.15960001945496,0.0,0.0,0.0,0.0,-0.10028662 +378.1716480255127,0.0,0.0,0.0,0.0,-0.089186326 +378.17957401275635,0.0,0.0,0.0,0.0,-0.089186326 +378.1894619464874,0.0,0.0,0.0,0.0,-0.089186326 +378.1999170780182,0.0,0.0,0.0,0.0,-0.089186326 +378.2118089199066,0.0,0.0,0.0,0.0,-0.089186326 +378.2207820415497,0.0,0.0,0.0,0.0,-0.11878712 +378.229777097702,0.0,0.0,0.0,0.0,-0.11878712 +378.2394030094147,0.0,0.0,0.0,0.0,-0.11878712 +378.24943494796753,0.0,0.0,0.0,0.0,-0.11878712 +378.2601270675659,0.0,0.0,0.0,0.0,-0.1298874 +378.26966309547424,0.0,0.0,0.0,0.0,-0.1298874 +378.27941513061523,0.0,0.0,0.0,0.0,-0.1298874 +378.2923331260681,0.0,0.0,0.0,0.0,-0.1298874 +378.3012840747833,0.0,0.0,0.0,0.0,-0.1298874 +378.30953097343445,0.0,0.0,0.0,0.0,-0.1298874 +378.31973600387573,0.0,0.0,0.0,0.0,-0.12248721 +378.32958793640137,0.0,0.0,0.0,0.0,-0.12248721 +378.34096002578735,0.0,0.0,0.0,0.0,-0.12248721 +378.3498709201813,0.0,0.0,0.0,0.0,-0.12248721 +378.36014699935913,0.0,0.0,0.0,0.0,-0.10768682 +378.3719849586487,0.0,0.0,0.0,0.0,-0.10768682 +378.37955594062805,0.0,0.0,0.0,0.0,-0.10768682 +378.39132595062256,0.0,0.0,0.0,0.0,-0.10768682 +378.3996410369873,0.0,0.0,0.0,0.0,-0.10768682 +378.4096930027008,0.0,0.0,0.0,0.0,-0.10768682 +378.41969299316406,0.0,0.0,0.0,0.0,-0.12803736 +378.4300911426544,0.0,0.0,0.0,0.0,-0.12803736 +378.44235610961914,0.0,0.0,0.0,0.0,-0.12803736 +378.45024704933167,0.0,0.0,0.0,0.0,-0.12803736 +378.4601459503174,0.0,0.0,0.0,0.0,-0.11693706 +378.47234296798706,0.0,0.0,0.0,0.0,-0.11693706 +378.4794020652771,0.0,0.0,0.0,0.0,-0.11693706 +378.4896490573883,0.0,0.0,0.0,0.0,-0.11693706 +378.49964594841003,0.0,0.0,0.0,0.0,-0.11693706 +378.5098440647125,0.0,0.0,0.0,0.0,-0.11693706 +378.51948595046997,0.0,0.0,0.0,0.0,-0.13543756 +378.5303781032562,0.0,0.0,0.0,0.0,-0.13543756 +378.5413191318512,0.0,0.0,0.0,0.0,-0.13543756 +378.55233907699585,0.0,0.0,0.0,0.0,-0.13543756 +378.56015610694885,0.0,0.0,0.0,0.0,-0.12248721 +378.57160210609436,0.0,0.0,0.0,0.0,-0.12248721 +378.57957100868225,0.0,0.0,0.0,0.0,-0.12248721 +378.58957600593567,0.0,0.0,0.0,0.0,-0.12248721 +378.5994019508362,0.0,0.0,0.0,0.0,-0.12248721 +378.60986399650574,0.0,0.0,0.0,0.0,-0.12248721 +378.6207399368286,0.0,0.0,0.0,0.0,-0.13173746 +378.6303400993347,0.0,0.0,0.0,0.0,-0.13173746 +378.64225697517395,0.0,0.75757575,0.75757575,0.0,-0.13173746 +378.6505539417267,0.0,3.030303,3.030303,0.0,-0.13173746 +378.6601481437683,0.0,6.818182,6.818182,0.0,-0.11878712 +378.67001700401306,0.0,9.848485,9.848485,0.0,-0.11878712 +378.6795029640198,0.0,13.636364,13.636364,0.0,-0.11878712 +378.6901590824127,0.0,16.666668,16.666668,0.0,-0.11878712 +378.70236897468567,0.0,21.212122,21.212122,0.0,-0.11878712 +378.71016097068787,0.0,25.0,25.0,0.0,-0.12803736 +378.7223711013794,0.0,28.78788,28.78788,0.0,-0.12803736 +378.7303731441498,0.0,32.575756,32.575756,0.0,-0.12803736 +378.74094700813293,0.0,36.363636,36.363636,0.009372071,-0.12803736 +378.75093698501587,0.0,39.39394,39.39394,0.018744143,-0.12803736 +378.75982999801636,0.0,43.181816,43.181816,0.028116215,-0.12803736 +378.7694411277771,0.0,45.454548,45.454548,0.037488285,-0.152088 +378.7795820236206,0.0,48.484848,48.484848,0.046860356,-0.152088 +378.789479970932,0.0,50.0,50.0,0.05623243,-0.152088 +378.80237102508545,0.0,51.515152,51.515152,0.0656045,-0.152088 +378.81017303466797,0.0,51.515152,51.515152,0.0656045,-0.11693706 +378.8222279548645,0.0,52.272724,52.272724,0.07497657,-0.11693706 +378.82988691329956,0.0,52.272724,52.272724,0.09372071,-0.11693706 +378.8395321369171,0.0,52.272724,52.272724,0.09372071,-0.11693706 +378.8503170013428,0.0,52.272724,52.272724,0.10309278,-0.11693706 +378.8593909740448,0.0,52.272724,52.272724,0.10309278,-0.11693706 +378.86943912506104,0.0,52.272724,52.272724,0.11246486,-0.15023795 +378.8794391155243,0.0,52.272724,52.272724,0.11246486,-0.15023795 +378.8923749923706,0.0,53.030304,53.030304,0.11246486,-0.15023795 +378.90238404273987,0.0,53.030304,53.030304,0.12183693,-0.15023795 +378.91002893447876,0.0,53.030304,53.030304,0.12183693,-0.15023795 +378.920264005661,0.0,53.030304,53.030304,0.12183693,-0.120637156 +378.9303810596466,0.0,53.030304,53.030304,0.12183693,-0.120637156 +378.9403250217438,0.0,53.030304,53.030304,0.131209,-0.120637156 +378.9514379501343,0.0,53.030304,53.030304,0.131209,-0.120637156 +378.96015191078186,0.0,52.272724,52.272724,0.131209,-0.120637156 +378.9693911075592,0.0,51.515152,51.515152,0.14058107,-0.120637156 +378.9795730113983,0.0,50.0,50.0,0.14058107,-0.120637156 +378.98950004577637,0.0,49.242424,49.242424,0.14058107,-0.120637156 +379.00048995018005,0.0,47.727272,47.727272,0.14058107,-0.120637156 +379.0093939304352,0.0,46.969696,46.969696,0.14058107,-0.120637156 +379.0196180343628,0.0,46.21212,46.21212,0.14058107,-0.14653786 +379.0293891429901,0.0,46.21212,46.21212,0.14058107,-0.14653786 +379.0411219596863,0.0,45.454548,45.454548,0.14058107,-0.14653786 +379.05053997039795,0.0,45.454548,45.454548,0.14058107,-0.14653786 +379.0595450401306,0.0,45.454548,45.454548,0.14058107,-0.14653786 +379.0718231201172,0.0,45.454548,45.454548,0.14058107,-0.14653786 +379.0794360637665,0.0,45.454548,45.454548,0.14058107,-0.14653786 +379.08965611457825,0.0,46.21212,46.21212,0.14058107,-0.14653786 +379.09947514533997,0.0,46.21212,46.21212,0.14058107,-0.14653786 +379.111212015152,0.0,46.21212,46.21212,0.14058107,-0.14653786 +379.12023091316223,0.0,46.969696,46.969696,0.14058107,-0.14098771 +379.1294050216675,0.0,46.21212,46.21212,0.131209,-0.14098771 +379.1406650543213,0.0,46.21212,46.21212,0.131209,-0.14098771 +379.14966797828674,0.0,45.454548,45.454548,0.12183693,-0.14098771 +379.16014313697815,0.0,44.696968,44.696968,0.131209,-0.16873844 +379.1698899269104,0.0,43.939392,43.939392,0.131209,-0.16873844 +379.1795799732208,0.0,43.181816,43.181816,0.12183693,-0.16873844 +379.1921510696411,0.0,42.424244,42.424244,0.12183693,-0.16873844 +379.1998190879822,0.0,41.666668,41.666668,0.131209,-0.16873844 +379.21015310287476,0.0,41.666668,41.666668,0.131209,-0.16873844 +379.2217581272125,0.0,41.666668,41.666668,0.12183693,-0.17428859 +379.22956705093384,0.0,42.424244,42.424244,0.131209,-0.17428859 +379.2397871017456,0.0,43.181816,43.181816,0.131209,-0.17428859 +379.2501311302185,0.0,43.939392,43.939392,0.12183693,-0.17428859 +379.2601549625397,0.0,44.696968,44.696968,0.12183693,-0.20018928 +379.27081394195557,0.0,46.21212,46.21212,0.12183693,-0.20018928 +379.2794620990753,0.0,48.484848,48.484848,0.131209,-0.20018928 +379.29109597206116,0.0,50.0,50.0,0.131209,-0.20018928 +379.300087928772,0.0,50.757576,50.757576,0.131209,-0.20018928 +379.3118951320648,0.0,52.272724,52.272724,0.131209,-0.20018928 +379.3199391365051,0.0,53.030304,53.030304,0.131209,-0.20758946 +379.32991099357605,0.0,53.78788,53.78788,0.131209,-0.20758946 +379.3395140171051,0.0,53.78788,53.78788,0.14058107,-0.20758946 +379.35241293907166,0.0,54.545456,54.545456,0.14058107,-0.20758946 +379.35956501960754,0.0,55.30303,55.30303,0.14995314,-0.20758946 +379.3720200061798,0.0,56.060604,56.060604,0.14995314,-0.21498968 +379.37958097457886,0.0,56.818184,56.818184,0.14995314,-0.21498968 +379.39001202583313,0.0,58.333332,58.333332,0.14995314,-0.21498968 +379.40167713165283,0.0,59.848484,59.848484,0.14995314,-0.21498968 +379.4098460674286,0.0,60.606064,60.606064,0.14995314,-0.21498968 +379.41951394081116,0.0,62.121212,62.121212,0.14995314,-0.2242399 +379.4294979572296,0.0,63.636364,63.636364,0.15932521,-0.2242399 +379.44243597984314,0.0,65.15151,65.15151,0.15932521,-0.2242399 +379.4510531425476,0.0,66.66667,66.66667,0.15932521,-0.2242399 +379.4601399898529,0.0,68.18182,68.18182,0.16869728,-0.22608997 +379.4709620475769,0.0,57.57576,57.57576,0.16869728,-0.22608997 +379.479444026947,0.0,40.151516,40.151516,0.16869728,-0.22608997 +379.4895989894867,0.0,26.515152,26.515152,0.16869728,-0.22608997 +379.49976992607117,0.0,19.69697,19.69697,0.16869728,-0.22608997 +379.5101959705353,0.0,22.727274,22.727274,0.17806935,-0.22608997 +379.519602060318,0.0,27.272728,27.272728,0.17806935,-0.24829055 +379.52939200401306,0.0,30.303032,30.303032,0.17806935,-0.24829055 +379.5409560203552,0.0,34.09091,34.09091,0.17806935,-0.24829055 +379.551913022995,0.0,37.878788,37.878788,0.18744142,-0.24829055 +379.5601451396942,0.0,41.666668,41.666668,0.18744142,-0.26679102 +379.56988501548767,0.0,44.696968,44.696968,0.18744142,-0.26679102 +379.57959604263306,0.0,48.484848,48.484848,0.18744142,-0.26679102 +379.5912871360779,0.0,52.272724,52.272724,0.1968135,-0.26679102 +379.60029792785645,0.0,56.818184,56.818184,0.18744142,-0.26679102 +379.6095600128174,0.0,59.848484,59.848484,0.18744142,-0.26679102 +379.61967611312866,0.0,62.878788,62.878788,0.18744142,-0.25939083 +379.63141894340515,0.0,65.90909,65.90909,0.1968135,-0.25939083 +379.64185094833374,0.0,67.42425,67.42425,0.1968135,-0.25939083 +379.6502089500427,0.0,58.333332,58.333332,0.1968135,-0.25939083 +379.65985798835754,0.0,47.727272,47.727272,0.1968135,-0.25939083 +379.6695280075073,0.0,38.636364,38.636364,0.1968135,-0.27974138 +379.67941904067993,0.0,30.303032,30.303032,0.1968135,-0.27974138 +379.6904339790344,0.0,24.242424,24.242424,0.18744142,-0.27974138 +379.6994390487671,0.0,21.969696,21.969696,0.18744142,-0.27974138 +379.71019411087036,0.0,25.0,25.0,0.18744142,-0.30194196 +379.7224371433258,0.0,28.78788,28.78788,0.1968135,-0.30194196 +379.7297089099884,0.0,31.818182,31.818182,0.1968135,-0.30194196 +379.74048113822937,0.0,34.848484,34.848484,0.1968135,-0.30194196 +379.7497179508209,0.0,37.878788,37.878788,0.1968135,-0.30194196 +379.7595200538635,0.0,40.90909,40.90909,0.1968135,-0.30194196 +379.7715311050415,0.0,43.181816,43.181816,0.1968135,-0.25939083 +379.7796061038971,0.0,46.21212,46.21212,0.1968135,-0.25939083 +379.78954911231995,0.0,50.0,50.0,0.1968135,-0.25939083 +379.80059909820557,0.0,53.030304,53.030304,0.1968135,-0.25939083 +379.81019496917725,0.0,56.060604,56.060604,0.1968135,-0.29269174 +379.819864988327,0.0,59.090908,59.090908,0.20618556,-0.29269174 +379.82960295677185,0.0,62.121212,62.121212,0.20618556,-0.29269174 +379.83976793289185,0.0,65.15151,65.15151,0.1968135,-0.29269174 +379.8499300479889,0.0,67.42425,67.42425,0.1968135,-0.29269174 +379.86014008522034,0.0,65.15151,65.15151,0.1968135,-0.24829055 +379.87064599990845,0.0,57.57576,57.57576,0.1968135,-0.24829055 +379.8794550895691,0.0,49.242424,49.242424,0.1968135,-0.24829055 +379.8894281387329,0.0,43.181816,43.181816,0.1968135,-0.24829055 +379.9009051322937,0.0,37.878788,37.878788,0.1968135,-0.24829055 +379.9097969532013,0.0,32.575756,32.575756,0.1968135,-0.24829055 +379.9207489490509,0.0,26.515152,26.515152,0.1968135,-0.24829055 +379.92939496040344,0.0,22.727274,22.727274,0.20618556,-0.24829055 +379.94246792793274,0.0,22.727274,22.727274,0.1968135,-0.24829055 +379.95175409317017,0.0,25.757576,25.757576,0.20618556,-0.24829055 +379.9601471424103,0.0,29.545454,29.545454,0.1968135,-0.25569075 +379.9697721004486,0.0,31.818182,31.818182,0.1968135,-0.25569075 +379.9795560836792,0.0,34.848484,34.848484,0.1968135,-0.25569075 +379.9899990558624,0.0,37.878788,37.878788,0.20618556,-0.25569075 +379.9997749328613,0.0,40.90909,40.90909,0.20618556,-0.25569075 +380.0098190307617,0.0,43.939392,43.939392,0.20618556,-0.25569075 +380.01943802833557,0.0,46.969696,46.969696,0.20618556,-0.24829055 +380.030385017395,0.0,50.757576,50.757576,0.20618556,-0.24829055 +380.04076194763184,0.0,54.545456,54.545456,0.20618556,-0.24829055 +380.05088090896606,0.0,57.57576,57.57576,0.1968135,-0.24829055 +380.05989503860474,0.0,60.606064,60.606064,0.20618556,-0.24829055 +380.06970596313477,0.0,64.393936,64.393936,0.20618556,-0.26679102 +380.0794429779053,0.0,67.42425,67.42425,0.20618556,-0.26679102 +380.09164595603943,0.0,65.90909,65.90909,0.20618556,-0.26679102 +380.10066294670105,0.0,59.848484,59.848484,0.20618556,-0.26679102 +380.1096279621124,0.0,53.78788,53.78788,0.20618556,-0.26679102 +380.1224820613861,0.0,46.969696,46.969696,0.20618556,-0.25754082 +380.1293981075287,0.0,42.424244,42.424244,0.20618556,-0.25754082 +380.1398620605469,0.0,37.121216,37.121216,0.20618556,-0.25754082 +380.15000891685486,0.0,32.575756,32.575756,0.20618556,-0.25754082 +380.1598789691925,0.0,28.030302,28.030302,0.20618556,-0.25754082 +380.1718420982361,0.0,23.484848,23.484848,0.20618556,-0.2612409 +380.1796190738678,0.0,21.969696,21.969696,0.20618556,-0.2612409 +380.1906199455261,0.0,25.0,25.0,0.20618556,-0.2612409 +380.199609041214,0.0,28.030302,28.030302,0.20618556,-0.2612409 +380.2119541168213,0.0,31.818182,31.818182,0.20618556,-0.26864108 +380.2209711074829,0.0,35.60606,35.60606,0.20618556,-0.26864108 +380.22961592674255,0.0,40.90909,40.90909,0.20618556,-0.26864108 +380.2395429611206,0.0,46.969696,46.969696,0.20618556,-0.26864108 +380.2500379085541,0.0,51.515152,51.515152,0.20618556,-0.26864108 +380.2596139907837,0.0,56.060604,56.060604,0.21555763,-0.26864108 +380.26990509033203,0.0,60.606064,60.606064,0.21555763,-0.25939083 +380.27948808670044,0.0,65.15151,65.15151,0.21555763,-0.25939083 +380.2895550727844,0.0,68.18182,68.18182,0.22492972,-0.25939083 +380.30191111564636,0.0,64.393936,64.393936,0.21555763,-0.25939083 +380.31083393096924,0.0,59.090908,59.090908,0.21555763,-0.25939083 +380.31974601745605,0.0,53.030304,53.030304,0.21555763,-0.2760413 +380.32940006256104,0.0,47.727272,47.727272,0.21555763,-0.2760413 +380.3401999473572,0.0,43.181816,43.181816,0.22492972,-0.2760413 +380.3524959087372,0.0,38.636364,38.636364,0.22492972,-0.2760413 +380.3601551055908,0.0,34.09091,34.09091,0.22492972,-0.2501406 +380.37052297592163,0.0,31.060606,31.060606,0.22492972,-0.2501406 +380.3795311450958,0.0,27.272728,27.272728,0.21555763,-0.2501406 +380.39037895202637,0.0,24.242424,24.242424,0.21555763,-0.2501406 +380.3999330997467,0.0,21.969696,21.969696,0.20618556,-0.2501406 +380.4114260673523,0.0,25.0,25.0,0.21555763,-0.2501406 +380.42045307159424,0.0,28.78788,28.78788,0.21555763,-0.2538407 +380.4296259880066,0.0,31.818182,31.818182,0.20618556,-0.2538407 +380.43985199928284,0.0,34.848484,34.848484,0.21555763,-0.2538407 +380.45146107673645,0.0,37.121216,37.121216,0.20618556,-0.2538407 +380.4601719379425,0.0,40.151516,40.151516,0.21555763,-0.25754082 +380.46945905685425,0.0,42.424244,42.424244,0.21555763,-0.25754082 +380.47945404052734,0.0,45.454548,45.454548,0.21555763,-0.25754082 +380.4925320148468,0.0,47.727272,47.727272,0.21555763,-0.25754082 +380.4998390674591,0.0,51.515152,51.515152,0.21555763,-0.25754082 +380.51059103012085,0.0,54.545456,54.545456,0.22492972,-0.25754082 +380.5195999145508,0.0,58.333332,58.333332,0.22492972,-0.26679102 +380.5295629501343,0.0,61.363636,61.363636,0.22492972,-0.26679102 +380.5393900871277,0.0,64.393936,64.393936,0.21555763,-0.26679102 +380.5504319667816,0.0,67.42425,67.42425,0.21555763,-0.26679102 +380.5594091415405,0.0,65.15151,65.15151,0.21555763,-0.26679102 +380.5725269317627,0.0,60.606064,60.606064,0.21555763,-0.25569075 +380.5796151161194,0.0,55.30303,55.30303,0.21555763,-0.25569075 +380.5916979312897,0.0,50.757576,50.757576,0.21555763,-0.25569075 +380.60071897506714,0.0,46.21212,46.21212,0.21555763,-0.25569075 +380.60972905158997,0.0,42.424244,42.424244,0.21555763,-0.25569075 +380.61978697776794,0.0,38.636364,38.636364,0.21555763,-0.25754082 +380.6294000148773,0.0,35.60606,35.60606,0.21555763,-0.25754082 +380.64037799835205,0.0,31.818182,31.818182,0.21555763,-0.25754082 +380.6493890285492,0.0,28.78788,28.78788,0.21555763,-0.25754082 +380.6600420475006,0.0,25.757576,25.757576,0.21555763,-0.25754082 +380.67166805267334,0.0,22.727274,22.727274,0.21555763,-0.25754082 +380.6794729232788,0.0,23.484848,23.484848,0.21555763,-0.25754082 +380.6908600330353,0.0,26.515152,26.515152,0.21555763,-0.25754082 +380.69988107681274,0.0,29.545454,29.545454,0.21555763,-0.25754082 +380.7099759578705,0.0,32.575756,32.575756,0.21555763,-0.25754082 +380.72091794013977,0.0,34.848484,34.848484,0.21555763,-0.27049115 +380.72982692718506,0.0,37.878788,37.878788,0.20618556,-0.27049115 +380.74256801605225,0.0,40.151516,40.151516,0.21555763,-0.27049115 +380.75254702568054,0.0,42.424244,42.424244,0.20618556,-0.27049115 +380.76017904281616,0.0,44.696968,44.696968,0.20618556,-0.25569075 +380.77024102211,0.0,46.969696,46.969696,0.21555763,-0.25569075 +380.7796440124512,0.0,49.242424,49.242424,0.21555763,-0.25569075 +380.7899920940399,0.0,51.515152,51.515152,0.21555763,-0.25569075 +380.8000371456146,0.0,54.545456,54.545456,0.21555763,-0.25569075 +380.8100390434265,0.0,56.818184,56.818184,0.21555763,-0.25569075 +380.82031202316284,0.0,59.090908,59.090908,0.20618556,-0.24459045 +380.8295109272003,0.0,61.363636,61.363636,0.21555763,-0.24459045 +380.84255814552307,0.0,63.636364,63.636364,0.21555763,-0.24459045 +380.8494141101837,0.0,65.90909,65.90909,0.20618556,-0.24459045 +380.860160112381,0.0,67.42425,67.42425,0.20618556,-0.2390403 +380.8711259365082,0.0,65.15151,65.15151,0.20618556,-0.2390403 +380.8795781135559,0.0,58.333332,58.333332,0.20618556,-0.2390403 +380.89024114608765,0.0,52.272724,52.272724,0.21555763,-0.2390403 +380.90128993988037,0.0,46.21212,46.21212,0.20618556,-0.2390403 +380.9101779460907,0.0,40.90909,40.90909,0.20618556,-0.2390403 +380.92011308670044,0.0,36.363636,36.363636,0.21555763,-0.2390403 +380.9303870201111,0.0,31.818182,31.818182,0.20618556,-0.2390403 +380.9423360824585,0.0,27.272728,27.272728,0.20618556,-0.2390403 +380.9522440433502,0.0,24.242424,24.242424,0.20618556,-0.2390403 +380.96017694473267,0.0,21.969696,21.969696,0.20618556,-0.15763813 +380.9702670574188,0.0,25.0,25.0,0.21555763,-0.15763813 +380.979474067688,0.0,28.78788,28.78788,0.21555763,-0.15763813 +380.9895689487457,0.0,31.818182,31.818182,0.21555763,-0.15763813 +381.0002329349518,0.0,34.848484,34.848484,0.21555763,-0.15763813 +381.0119779109955,0.0,37.121216,37.121216,0.21555763,-0.09843658 +381.02257108688354,0.0,38.636364,38.636364,0.21555763,-0.09843658 +381.0293939113617,0.0,40.90909,40.90909,0.21555763,-0.09843658 +381.0403780937195,0.0,42.424244,42.424244,0.21555763,-0.09843658 +381.0501461029053,0.0,43.939392,43.939392,0.21555763,-0.09843658 +381.05958008766174,0.0,45.454548,45.454548,0.22492972,-0.09843658 +381.0694041252136,0.0,46.969696,46.969696,0.22492972,-0.052185345 +381.079628944397,0.0,47.727272,47.727272,0.21555763,-0.052185345 +381.0902259349823,0.0,49.242424,49.242424,0.21555763,-0.052185345 +381.10259795188904,0.0,50.757576,50.757576,0.21555763,-0.052185345 +381.111613035202,0.0,52.272724,52.272724,0.21555763,-0.052185345 +381.1219940185547,0.0,53.78788,53.78788,0.21555763,-0.002234026 +381.1294300556183,0.0,55.30303,55.30303,0.21555763,-0.002234026 +381.13981103897095,0.0,57.57576,57.57576,0.21555763,-0.002234026 +381.1496410369873,0.0,59.848484,59.848484,0.21555763,-0.002234026 +381.1595389842987,0.0,61.363636,61.363636,0.21555763,-0.002234026 +381.16992592811584,0.0,63.636364,63.636364,0.21555763,-0.009634218 +381.18017292022705,0.0,65.15151,65.15151,0.22492972,-0.009634218 +381.1926009654999,0.0,67.42425,67.42425,0.22492972,-0.009634218 +381.1993889808655,0.0,65.15151,65.15151,0.21555763,-0.009634218 +381.21111512184143,0.0,58.333332,58.333332,0.21555763,-0.009634218 +381.2200450897217,0.0,51.515152,51.515152,0.21555763,-0.0040840744 +381.22939014434814,0.0,45.454548,45.454548,0.21555763,-0.0040840744 +381.24066495895386,0.0,40.151516,40.151516,0.20618556,-0.0040840744 +381.24968910217285,0.0,34.848484,34.848484,0.20618556,-0.0040840744 +381.2594771385193,0.0,30.303032,30.303032,0.20618556,-0.0040840744 +381.2700500488281,0.0,26.515152,26.515152,0.20618556,-0.013334316 +381.27963399887085,0.0,23.484848,23.484848,0.20618556,-0.013334316 +381.2913439273834,0.0,22.727274,22.727274,0.20618556,-0.013334316 +381.30015301704407,0.0,26.515152,26.515152,0.20618556,-0.013334316 +381.3093910217285,0.0,30.303032,30.303032,0.20618556,-0.013334316 +381.32179498672485,0.0,34.848484,34.848484,0.1968135,-0.0077841706 +381.3301649093628,0.0,37.878788,37.878788,0.1968135,-0.0077841706 +381.33980894088745,0.0,41.666668,41.666668,0.1968135,-0.0077841706 +381.3502929210663,0.0,44.696968,44.696968,0.20618556,-0.0077841706 +381.3601350784302,0.0,47.727272,47.727272,0.20618556,-0.0077841706 +381.37118697166443,0.0,50.0,50.0,0.21555763,-0.002234026 +381.3794469833374,0.0,52.272724,52.272724,0.21555763,-0.002234026 +381.3895859718323,0.0,53.78788,53.78788,0.20618556,-0.002234026 +381.40261697769165,0.0,55.30303,55.30303,0.20618556,-0.002234026 +381.40947914123535,0.0,56.818184,56.818184,0.20618556,-0.002234026 +381.4209449291229,0.0,58.333332,58.333332,0.20618556,-0.00038397792 +381.42941308021545,0.0,59.090908,59.090908,0.20618556,-0.00038397792 +381.44025897979736,0.0,59.848484,59.848484,0.20618556,-0.00038397792 +381.4494891166687,0.0,61.363636,61.363636,0.20618556,-0.00038397792 +381.46017694473267,0.0,62.121212,62.121212,0.20618556,-0.013334316 +381.46960711479187,0.0,62.878788,62.878788,0.20618556,-0.013334316 +381.4796419143677,0.0,63.636364,63.636364,0.20618556,-0.013334316 +381.49262595176697,0.0,64.393936,64.393936,0.20618556,-0.013334316 +381.5020921230316,0.0,65.90909,65.90909,0.21555763,-0.013334316 +381.51110196113586,0.0,66.66667,66.66667,0.21555763,-0.013334316 +381.520131111145,0.0,67.42425,67.42425,0.21555763,0.0070162313 +381.5293960571289,0.0,61.363636,61.363636,0.21555763,0.0070162313 +381.5396931171417,0.0,53.78788,53.78788,0.20618556,0.0070162313 +381.5498070716858,0.0,47.727272,47.727272,0.21555763,0.0070162313 +381.560182094574,0.0,41.666668,41.666668,0.21555763,-0.01888446 +381.5703110694885,0.0,36.363636,36.363636,0.21555763,-0.01888446 +381.5826151371002,0.0,31.818182,31.818182,0.21555763,-0.01888446 +381.58963108062744,0.0,27.272728,27.272728,0.21555763,-0.01888446 +381.6002879142761,0.0,23.484848,23.484848,0.21555763,-0.01888446 +381.61029410362244,0.0,21.969696,21.969696,0.22492972,-0.01888446 +381.6196279525757,0.0,25.757576,25.757576,0.21555763,-0.011484267 +381.6294209957123,0.0,30.303032,30.303032,0.21555763,-0.011484267 +381.64125299453735,0.0,34.09091,34.09091,0.21555763,-0.011484267 +381.65264797210693,0.0,37.878788,37.878788,0.21555763,-0.011484267 +381.66017413139343,0.0,41.666668,41.666668,0.21555763,-0.002234026 +381.672651052475,0.0,45.454548,45.454548,0.21555763,-0.002234026 +381.6796419620514,0.0,48.484848,48.484848,0.21555763,-0.002234026 +381.691437959671,0.0,51.515152,51.515152,0.21555763,-0.002234026 +381.70035004615784,0.0,54.545456,54.545456,0.21555763,-0.002234026 +381.709450006485,0.0,56.818184,56.818184,0.22492972,-0.002234026 +381.7199959754944,0.0,59.090908,59.090908,0.21555763,-0.0040840744 +381.72941613197327,0.0,61.363636,61.363636,0.21555763,-0.0040840744 +381.7399001121521,0.0,63.636364,63.636364,0.21555763,-0.0040840744 +381.75050497055054,0.0,65.90909,65.90909,0.21555763,-0.0040840744 +381.76017808914185,0.0,67.42425,67.42425,0.21555763,-0.0040840744 +381.7723560333252,0.0,65.90909,65.90909,0.21555763,-0.0040840744 +381.78155303001404,0.0,58.333332,58.333332,0.20618556,-0.0040840744 +381.79048800468445,0.0,51.515152,51.515152,0.20618556,-0.0040840744 +381.79939699172974,0.0,45.454548,45.454548,0.20618556,-0.0040840744 +381.80997705459595,0.0,39.39394,39.39394,0.20618556,-0.0040840744 +381.8194019794464,0.0,34.09091,34.09091,0.1968135,-0.03183481 +381.82960200309753,0.0,28.78788,28.78788,0.1968135,-0.03183481 +381.8426630496979,0.0,24.242424,24.242424,0.1968135,-0.03183481 +381.85266399383545,0.0,21.969696,21.969696,0.1968135,-0.03183481 +381.8597459793091,0.0,24.242424,24.242424,0.1968135,-0.03183481 +381.87070393562317,0.0,25.757576,25.757576,0.1968135,-0.0040840744 +381.87961411476135,0.0,28.030302,28.030302,0.20618556,-0.0040840744 +381.88972306251526,0.0,28.78788,28.78788,0.1968135,-0.0040840744 +381.8999300003052,0.0,28.78788,28.78788,0.1968135,-0.0040840744 +381.90945410728455,0.0,28.78788,28.78788,0.1968135,-0.0040840744 +381.9226779937744,0.0,28.030302,28.030302,0.18744142,-0.011484267 +381.9293920993805,0.0,27.272728,27.272728,0.18744142,-0.011484267 +381.9419209957123,0.0,25.757576,25.757576,0.17806935,-0.011484267 +381.95092701911926,0.0,25.0,25.0,0.17806935,-0.011484267 +381.9594159126282,0.0,23.484848,23.484848,0.17806935,-0.011484267 +381.97084403038025,0.0,21.969696,21.969696,0.17806935,-0.026284654 +381.97986912727356,0.0,20.454544,20.454544,0.15932521,-0.026284654 +381.98987007141113,0.0,19.69697,19.69697,0.14995314,-0.026284654 +381.99949193000793,0.0,18.181818,18.181818,0.14058107,-0.026284654 +382.01019310951233,0.0,17.424242,17.424242,0.14058107,-0.03183481 +382.02113103866577,0.0,15.909091,15.909091,0.131209,-0.03183481 +382.0295009613037,0.0,15.151516,15.151516,0.12183693,-0.03183481 +382.04010009765625,0.0,14.39394,14.39394,0.11246486,-0.03183481 +382.0519959926605,0.0,13.636364,13.636364,0.10309278,-0.03183481 +382.0601909160614,0.0,12.878788,12.878788,0.10309278,-0.0077841706 +382.0700161457062,0.0,12.121212,12.121212,0.09372071,-0.0077841706 +382.07947993278503,0.0,12.121212,12.121212,0.08434864,-0.0077841706 +382.0894920825958,0.0,11.363637,11.363637,0.08434864,-0.0077841706 +382.1001000404358,0.0,11.363637,11.363637,0.08434864,-0.0077841706 +382.1112570762634,0.0,11.363637,11.363637,0.08434864,-0.0077841706 +382.12036299705505,0.0,12.121212,12.121212,0.07497657,-0.020734508 +382.1294469833374,0.0,12.121212,12.121212,0.07497657,-0.020734508 +382.1421570777893,0.0,12.878788,12.878788,0.0656045,-0.020734508 +382.1511731147766,0.0,12.878788,12.878788,0.07497657,-0.020734508 +382.16015791893005,0.0,13.636364,13.636364,0.07497657,-0.020734508 +382.1698269844055,0.0,14.39394,14.39394,0.07497657,-0.022584556 +382.1800720691681,0.0,15.909091,15.909091,0.07497657,-0.022584556 +382.19166707992554,0.0,16.666668,16.666668,0.07497657,-0.022584556 +382.2005889415741,0.0,18.181818,18.181818,0.08434864,-0.022584556 +382.2095880508423,0.0,19.69697,19.69697,0.09372071,-0.022584556 +382.21954798698425,0.0,21.212122,21.212122,0.09372071,-0.044785153 +382.23000597953796,0.0,22.727274,22.727274,0.09372071,-0.044785153 +382.23940205574036,0.0,24.242424,24.242424,0.09372071,-0.044785153 +382.2503111362457,0.0,25.757576,25.757576,0.09372071,-0.044785153 +382.2598259449005,0.0,27.272728,27.272728,0.09372071,-0.044785153 +382.27026104927063,0.0,28.78788,28.78788,0.09372071,-0.07623599 +382.2796721458435,0.0,29.545454,29.545454,0.09372071,-0.07623599 +382.28973412513733,0.0,31.060606,31.060606,0.10309278,-0.07623599 +382.30270409584045,0.0,32.575756,32.575756,0.11246486,-0.07623599 +382.31063199043274,0.0,33.333336,33.333336,0.11246486,-0.07623599 +382.32242798805237,0.0,34.848484,34.848484,0.11246486,-0.11138691 +382.32940793037415,0.0,36.363636,36.363636,0.11246486,-0.11138691 +382.3404791355133,0.0,37.878788,37.878788,0.11246486,-0.11138691 +382.34947299957275,0.0,39.39394,39.39394,0.12183693,-0.11138691 +382.3601961135864,0.0,40.151516,40.151516,0.131209,-0.14653786 +382.3695089817047,0.0,42.424244,42.424244,0.131209,-0.14653786 +382.37962913513184,0.0,43.939392,43.939392,0.14058107,-0.14653786 +382.39271306991577,0.0,45.454548,45.454548,0.131209,-0.14653786 +382.40051913261414,0.0,46.21212,46.21212,0.131209,-0.14653786 +382.4119760990143,0.0,47.727272,47.727272,0.14058107,-0.21683972 +382.4200220108032,0.0,49.242424,49.242424,0.14058107,-0.21683972 +382.42942810058594,0.0,50.0,50.0,0.14058107,-0.21683972 +382.43962812423706,0.0,50.757576,50.757576,0.14058107,-0.21683972 +382.450040102005,0.0,52.272724,52.272724,0.14058107,-0.21683972 +382.4597079753876,0.0,53.030304,53.030304,0.14995314,-0.21683972 +382.4726929664612,0.0,53.78788,53.78788,0.14995314,-0.2538407 +382.47965812683105,0.0,55.30303,55.30303,0.15932521,-0.2538407 +382.49099612236023,0.0,56.060604,56.060604,0.15932521,-0.2538407 +382.5018401145935,0.0,56.818184,56.818184,0.15932521,-0.2538407 +382.50977993011475,0.0,57.57576,57.57576,0.15932521,-0.2538407 +382.5207381248474,0.0,59.090908,59.090908,0.15932521,-0.29269174 +382.5294179916382,0.0,59.848484,59.848484,0.15932521,-0.29269174 +382.5400719642639,0.0,60.606064,60.606064,0.15932521,-0.29269174 +382.5499179363251,0.0,61.363636,61.363636,0.15932521,-0.29269174 +382.56018590927124,0.0,61.363636,61.363636,0.15932521,-0.3074921 +382.5700979232788,0.0,62.121212,62.121212,0.15932521,-0.3074921 +382.5827181339264,0.0,62.878788,62.878788,0.15932521,-0.3074921 +382.59204506874084,0.0,62.878788,62.878788,0.15932521,-0.3074921 +382.60166811943054,0.0,63.636364,63.636364,0.15932521,-0.3074921 +382.60973596572876,0.0,64.393936,64.393936,0.15932521,-0.3074921 +382.6196200847626,0.0,64.393936,64.393936,0.15932521,-0.29084167 +382.62941002845764,0.0,65.15151,65.15151,0.15932521,-0.29084167 +382.6401209831238,0.0,65.90909,65.90909,0.14995314,-0.29084167 +382.652724981308,0.0,65.90909,65.90909,0.15932521,-0.29084167 +382.66020011901855,0.0,66.66667,66.66667,0.15932521,-0.29639184 +382.67273592948914,0.0,67.42425,67.42425,0.15932521,-0.29639184 +382.6794240474701,0.0,67.42425,67.42425,0.16869728,-0.29639184 +382.690798997879,0.0,66.66667,66.66667,0.16869728,-0.29639184 +382.69969511032104,0.0,55.30303,55.30303,0.16869728,-0.29639184 +382.7097399234772,0.0,44.696968,44.696968,0.16869728,-0.29639184 +382.72131609916687,0.0,34.848484,34.848484,0.16869728,-0.3074921 +382.72940397262573,0.0,26.515152,26.515152,0.17806935,-0.3074921 +382.73979902267456,0.0,21.212122,21.212122,0.16869728,-0.3074921 +382.7501449584961,0.0,22.727274,22.727274,0.16869728,-0.3074921 +382.7601821422577,0.0,25.757576,25.757576,0.17806935,-0.29639184 +382.77099990844727,0.0,28.030302,28.030302,0.17806935,-0.29639184 +382.77993607521057,0.0,31.060606,31.060606,0.16869728,-0.29639184 +382.7907180786133,0.0,34.09091,34.09091,0.16869728,-0.29639184 +382.7997181415558,0.0,36.363636,36.363636,0.16869728,-0.29639184 +382.81022810935974,0.0,38.636364,38.636364,0.17806935,-0.29269174 +382.8205051422119,0.0,40.90909,40.90909,0.16869728,-0.29269174 +382.8294110298157,0.0,42.424244,42.424244,0.17806935,-0.29269174 +382.8423180580139,0.0,44.696968,44.696968,0.17806935,-0.29269174 +382.85123109817505,0.0,46.21212,46.21212,0.17806935,-0.29269174 +382.85962891578674,0.0,48.484848,48.484848,0.17806935,-0.29269174 +382.86986112594604,0.0,50.0,50.0,0.18744142,-0.3074921 +382.87965297698975,0.0,51.515152,51.515152,0.17806935,-0.3074921 +382.88963198661804,0.0,53.030304,53.030304,0.18744142,-0.3074921 +382.900671005249,0.0,55.30303,55.30303,0.17806935,-0.3074921 +382.91021394729614,0.0,56.818184,56.818184,0.17806935,-0.28899163 +382.91967701911926,0.0,58.333332,58.333332,0.18744142,-0.28899163 +382.9294309616089,0.0,59.090908,59.090908,0.17806935,-0.28899163 +382.9403750896454,0.0,60.606064,60.606064,0.17806935,-0.28899163 +382.95257592201233,0.0,62.121212,62.121212,0.17806935,-0.28899163 +382.960186958313,0.0,63.636364,63.636364,0.17806935,-0.29639184 +382.970577955246,0.0,65.15151,65.15151,0.17806935,-0.29639184 +382.9795470237732,0.0,65.90909,65.90909,0.17806935,-0.29639184 +382.9904770851135,0.0,67.42425,67.42425,0.17806935,-0.29639184 +382.99991106987,0.0,65.15151,65.15151,0.17806935,-0.29639184 +383.0098431110382,0.0,56.060604,56.060604,0.17806935,-0.29639184 +383.02001309394836,0.0,47.727272,47.727272,0.17806935,-0.2760413 +383.0295341014862,0.0,40.151516,40.151516,0.17806935,-0.2760413 +383.0398819446564,0.0,33.333336,33.333336,0.17806935,-0.2760413 +383.0509021282196,0.0,28.030302,28.030302,0.17806935,-0.2760413 +383.0601921081543,0.0,22.727274,22.727274,0.17806935,-0.29269174 +383.06946992874146,0.0,22.727274,22.727274,0.17806935,-0.29269174 +383.0795531272888,0.0,26.515152,26.515152,0.17806935,-0.29269174 +383.0894160270691,0.0,30.303032,30.303032,0.17806935,-0.29269174 +383.0997049808502,0.0,33.333336,33.333336,0.17806935,-0.29269174 +383.1097779273987,0.0,37.121216,37.121216,0.17806935,-0.29269174 +383.12158012390137,0.0,40.151516,40.151516,0.17806935,-0.29084167 +383.1294410228729,0.0,43.181816,43.181816,0.17806935,-0.29084167 +383.14138102531433,0.0,46.21212,46.21212,0.17806935,-0.29084167 +383.15038800239563,0.0,49.242424,49.242424,0.18744142,-0.29084167 +383.16007709503174,0.0,51.515152,51.515152,0.17806935,-0.29084167 +383.16950702667236,0.0,54.545456,54.545456,0.18744142,-0.28159142 +383.181086063385,0.0,56.818184,56.818184,0.18744142,-0.28159142 +383.19004702568054,0.0,59.090908,59.090908,0.18744142,-0.28159142 +383.20278096199036,0.0,61.363636,61.363636,0.18744142,-0.28159142 +383.20957112312317,0.0,62.878788,62.878788,0.17806935,-0.28159142 +383.2222819328308,0.0,65.15151,65.15151,0.17806935,-0.30194196 +383.2293999195099,0.0,66.66667,66.66667,0.17806935,-0.30194196 +383.2402489185333,0.0,67.42425,67.42425,0.17806935,-0.30194196 +383.250559091568,0.0,60.606064,60.606064,0.17806935,-0.30194196 +383.25957012176514,0.0,53.78788,53.78788,0.18744142,-0.30194196 +383.2695519924164,0.0,46.969696,46.969696,0.18744142,-0.28344148 +383.2797040939331,0.0,40.90909,40.90909,0.18744142,-0.28344148 +383.2911500930786,0.0,35.60606,35.60606,0.18744142,-0.28344148 +383.302775144577,0.0,31.060606,31.060606,0.18744142,-0.28344148 +383.31199407577515,0.0,26.515152,26.515152,0.18744142,-0.264941 +383.3210999965668,0.0,22.727274,22.727274,0.18744142,-0.264941 +383.3294141292572,0.0,22.727274,22.727274,0.18744142,-0.264941 +383.34027791023254,0.0,26.515152,26.515152,0.17806935,-0.264941 +383.34958696365356,0.0,30.303032,30.303032,0.18744142,-0.264941 +383.35939598083496,0.0,34.09091,34.09091,0.18744142,-0.264941 +383.3703119754791,0.0,37.121216,37.121216,0.17806935,-0.30009192 +383.38159799575806,0.0,40.90909,40.90909,0.17806935,-0.30009192 +383.39003014564514,0.0,43.181816,43.181816,0.17806935,-0.30009192 +383.40047693252563,0.0,46.21212,46.21212,0.16869728,-0.30009192 +383.4109299182892,0.0,48.484848,48.484848,0.17806935,-0.30009192 +383.4195969104767,0.0,51.515152,51.515152,0.17806935,-0.30009192 +383.4294171333313,0.0,53.78788,53.78788,0.17806935,-0.30009192 +383.43962502479553,0.0,55.30303,55.30303,0.17806935,-0.30009192 +383.45137095451355,0.0,57.57576,57.57576,0.16869728,-0.30009192 +383.4601979255676,0.0,59.090908,59.090908,0.17806935,-0.28714156 +383.46939611434937,0.0,61.363636,61.363636,0.17806935,-0.28714156 +383.47968792915344,0.0,62.878788,62.878788,0.17806935,-0.28714156 +383.4902811050415,0.0,64.393936,64.393936,0.17806935,-0.28714156 +383.5007801055908,0.0,65.90909,65.90909,0.18744142,-0.28714156 +383.50975799560547,0.0,68.18182,68.18182,0.18744142,-0.28714156 +383.51985812187195,0.0,62.878788,62.878788,0.18744142,-0.28899163 +383.52944898605347,0.0,56.060604,56.060604,0.18744142,-0.28899163 +383.53967809677124,0.0,50.0,50.0,0.18744142,-0.28899163 +383.5504729747772,0.0,43.939392,43.939392,0.18744142,-0.28899163 +383.5594799518585,0.0,38.636364,38.636364,0.18744142,-0.28899163 +383.57249999046326,0.0,34.848484,34.848484,0.18744142,-0.3074921 +383.58162903785706,0.0,30.303032,30.303032,0.18744142,-0.3074921 +383.59061098098755,0.0,27.272728,27.272728,0.18744142,-0.3074921 +383.5995969772339,0.0,23.484848,23.484848,0.18744142,-0.3074921 +383.6106450557709,0.0,22.727274,22.727274,0.17806935,-0.3074921 +383.6196479797363,0.0,26.515152,26.515152,0.17806935,-0.29824185 +383.6294541358948,0.0,30.303032,30.303032,0.17806935,-0.29824185 +383.6405620574951,0.0,34.848484,34.848484,0.17806935,-0.29824185 +383.64956307411194,0.0,38.636364,38.636364,0.1968135,-0.29824185 +383.65963411331177,0.0,42.424244,42.424244,0.1968135,-0.29824185 +383.6714029312134,0.0,46.21212,46.21212,0.1968135,-0.3111922 +383.6797001361847,0.0,49.242424,49.242424,0.20618556,-0.3111922 +383.68946599960327,0.0,52.272724,52.272724,0.1968135,-0.3111922 +383.7006621360779,0.0,55.30303,55.30303,0.18744142,-0.3111922 +383.7096519470215,0.0,58.333332,58.333332,0.18744142,-0.3111922 +383.721666097641,0.0,61.363636,61.363636,0.18744142,-0.28714156 +383.72941493988037,0.0,63.636364,63.636364,0.18744142,-0.28714156 +383.7396790981293,0.0,65.90909,65.90909,0.18744142,-0.28714156 +383.7516620159149,0.0,68.18182,68.18182,0.18744142,-0.28714156 +383.76020097732544,0.0,62.878788,62.878788,0.18744142,-0.29639184 +383.76959896087646,0.0,57.57576,57.57576,0.18744142,-0.29639184 +383.7801139354706,0.0,51.515152,51.515152,0.18744142,-0.29639184 +383.7906970977783,0.0,46.969696,46.969696,0.18744142,-0.29639184 +383.7997000217438,0.0,41.666668,41.666668,0.18744142,-0.29639184 +383.8101980686188,0.0,37.878788,37.878788,0.18744142,-0.29824185 +383.82075691223145,0.0,34.848484,34.848484,0.18744142,-0.29824185 +383.8294870853424,0.0,31.060606,31.060606,0.18744142,-0.29824185 +383.8407869338989,0.0,28.030302,28.030302,0.18744142,-0.29824185 +383.8497200012207,0.0,25.757576,25.757576,0.18744142,-0.29824185 +383.8601109981537,0.0,23.484848,23.484848,0.18744142,-0.29824185 +383.8699209690094,0.0,21.969696,21.969696,0.18744142,-0.29824185 +383.87969613075256,0.0,26.515152,26.515152,0.17806935,-0.29824185 +383.8897280693054,0.0,31.060606,31.060606,0.18744142,-0.29824185 +383.9018521308899,0.0,35.60606,35.60606,0.18744142,-0.29824185 +383.91015100479126,0.0,40.90909,40.90909,0.18744142,-0.29824185 +383.9198729991913,0.0,45.454548,45.454548,0.1968135,-0.29269174 +383.92994499206543,0.0,49.242424,49.242424,0.1968135,-0.29269174 +383.9394459724426,0.0,53.78788,53.78788,0.20618556,-0.29269174 +383.94993114471436,0.0,58.333332,58.333332,0.20618556,-0.29269174 +383.960196018219,0.0,62.121212,62.121212,0.20618556,-0.30009192 +383.9707260131836,0.0,65.90909,65.90909,0.20618556,-0.30009192 +383.97964000701904,0.0,68.18182,68.18182,0.20618556,-0.30009192 +383.9903690814972,0.0,64.393936,64.393936,0.21555763,-0.30009192 +384.0009491443634,0.0,59.848484,59.848484,0.21555763,-0.30009192 +384.00996112823486,0.0,56.060604,56.060604,0.21555763,-0.30009192 +384.02181792259216,0.0,52.272724,52.272724,0.21555763,-0.3074921 +384.0294270515442,0.0,49.242424,49.242424,0.21555763,-0.3074921 +384.03950691223145,0.0,46.21212,46.21212,0.21555763,-0.3074921 +384.05174803733826,0.0,43.939392,43.939392,0.21555763,-0.3074921 +384.06021308898926,0.0,41.666668,41.666668,0.20618556,-0.30194196 +384.06975293159485,0.0,39.39394,39.39394,0.20618556,-0.30194196 +384.0797109603882,0.0,37.121216,37.121216,0.20618556,-0.30194196 +384.09039211273193,0.0,35.60606,35.60606,0.20618556,-0.30194196 +384.0995819568634,0.0,34.09091,34.09091,0.21555763,-0.30194196 +384.1102840900421,0.0,32.575756,32.575756,0.20618556,-0.30194196 +384.12062406539917,0.0,31.060606,31.060606,0.20618556,-0.32044247 +384.12944197654724,0.0,30.303032,30.303032,0.20618556,-0.32044247 +384.1405339241028,0.0,28.78788,28.78788,0.20618556,-0.32044247 +384.1507771015167,0.0,28.030302,28.030302,0.21555763,-0.32044247 +384.1597800254822,0.0,27.272728,27.272728,0.20618556,-0.32044247 +384.17024397850037,0.0,26.515152,26.515152,0.20618556,-0.30194196 +384.1795461177826,0.0,25.0,25.0,0.20618556,-0.30194196 +384.19013690948486,0.0,24.242424,24.242424,0.1968135,-0.30194196 +384.2014949321747,0.0,24.242424,24.242424,0.20618556,-0.30194196 +384.2104799747467,0.0,23.484848,23.484848,0.20618556,-0.30194196 +384.2194631099701,0.0,22.727274,22.727274,0.21555763,-0.29639184 +384.2294180393219,0.0,23.484848,23.484848,0.20618556,-0.29639184 +384.240797996521,0.0,28.78788,28.78788,0.20618556,-0.29639184 +384.2497889995575,0.0,34.09091,34.09091,0.20618556,-0.29639184 +384.25977301597595,0.0,39.39394,39.39394,0.20618556,-0.29639184 +384.27120900154114,0.0,44.696968,44.696968,0.20618556,-0.3074921 +384.2797329425812,0.0,49.242424,49.242424,0.20618556,-0.3074921 +384.2913200855255,0.0,53.78788,53.78788,0.21555763,-0.3074921 +384.30028200149536,0.0,58.333332,58.333332,0.21555763,-0.3074921 +384.3120229244232,0.0,62.121212,62.121212,0.21555763,-0.28159142 +384.32181906700134,0.0,65.90909,65.90909,0.21555763,-0.28159142 +384.32943892478943,0.0,68.18182,68.18182,0.21555763,-0.28159142 +384.3398289680481,0.0,65.15151,65.15151,0.21555763,-0.28159142 +384.3522701263428,0.0,60.606064,60.606064,0.20618556,-0.28159142 +384.3601989746094,0.0,56.818184,56.818184,0.20618556,-0.28899163 +384.37029790878296,0.0,53.78788,53.78788,0.20618556,-0.28899163 +384.38115191459656,0.0,50.757576,50.757576,0.20618556,-0.28899163 +384.38945508003235,0.0,47.727272,47.727272,0.20618556,-0.28899163 +384.4024519920349,0.0,44.696968,44.696968,0.20618556,-0.28899163 +384.4107069969177,0.0,42.424244,42.424244,0.20618556,-0.28899163 +384.42030096054077,0.0,40.151516,40.151516,0.21555763,-0.29084167 +384.42950201034546,0.0,38.636364,38.636364,0.21555763,-0.29084167 +384.4423580169678,0.0,36.363636,36.363636,0.21555763,-0.29084167 +384.4513671398163,0.0,34.848484,34.848484,0.21555763,-0.29084167 +384.4601340293884,0.0,33.333336,33.333336,0.21555763,-0.29084167 +384.4693911075592,0.0,31.818182,31.818182,0.21555763,-0.31304228 +384.4796950817108,0.0,30.303032,30.303032,0.21555763,-0.31304228 +384.49164509773254,0.0,28.78788,28.78788,0.21555763,-0.31304228 +384.5005819797516,0.0,28.030302,28.030302,0.20618556,-0.31304228 +384.5094881057739,0.0,26.515152,26.515152,0.20618556,-0.31304228 +384.5198450088501,0.0,25.757576,25.757576,0.20618556,-0.3111922 +384.52943301200867,0.0,25.0,25.0,0.20618556,-0.3111922 +384.54145407676697,0.0,23.484848,23.484848,0.20618556,-0.3111922 +384.5504629611969,0.0,22.727274,22.727274,0.1968135,-0.3111922 +384.55957102775574,0.0,23.484848,23.484848,0.1968135,-0.3111922 +384.56984400749207,0.0,28.030302,28.030302,0.1968135,-0.29269174 +384.58012199401855,0.0,33.333336,33.333336,0.1968135,-0.29269174 +384.5897500514984,0.0,38.636364,38.636364,0.20618556,-0.29269174 +384.6008780002594,0.0,43.181816,43.181816,0.20618556,-0.29269174 +384.60988092422485,0.0,47.727272,47.727272,0.20618556,-0.29269174 +384.6225130558014,0.0,51.515152,51.515152,0.20618556,-0.3111922 +384.6294491291046,0.0,55.30303,55.30303,0.21555763,-0.3111922 +384.6405429840088,0.0,59.090908,59.090908,0.21555763,-0.3111922 +384.6495590209961,0.0,62.121212,62.121212,0.21555763,-0.3111922 +384.6596829891205,0.0,65.15151,65.15151,0.20618556,-0.3111922 +384.66999197006226,0.0,68.18182,68.18182,0.20618556,-0.29269174 +384.67972898483276,0.0,64.393936,64.393936,0.20618556,-0.29269174 +384.6894929409027,0.0,59.848484,59.848484,0.21555763,-0.29269174 +384.69990706443787,0.0,54.545456,54.545456,0.21555763,-0.29269174 +384.7102119922638,0.0,50.0,50.0,0.21555763,-0.3148923 +384.7216019630432,0.0,44.696968,44.696968,0.21555763,-0.3148923 +384.7306139469147,0.0,40.151516,40.151516,0.21555763,-0.3148923 +384.7396230697632,0.0,35.60606,35.60606,0.21555763,-0.3148923 +384.7495229244232,0.0,31.060606,31.060606,0.21555763,-0.3148923 +384.76020407676697,0.0,25.757576,25.757576,0.21555763,-0.27789134 +384.7719030380249,0.0,21.212122,21.212122,0.20618556,-0.27789134 +384.7809190750122,0.0,21.212122,21.212122,0.20618556,-0.27789134 +384.78941011428833,0.0,21.212122,21.212122,0.20618556,-0.27789134 +384.7996549606323,0.0,20.454544,20.454544,0.20618556,-0.27789134 +384.8102250099182,0.0,19.69697,19.69697,0.18744142,-0.29269174 +384.82039403915405,0.0,18.181818,18.181818,0.17806935,-0.29269174 +384.82944893836975,0.0,16.666668,16.666668,0.14995314,-0.29269174 +384.83958411216736,0.0,15.151516,15.151516,0.14058107,-0.29269174 +384.8529329299927,0.0,14.39394,14.39394,0.12183693,-0.29269174 +384.8602180480957,0.0,12.878788,12.878788,0.10309278,-0.29269174 +384.8709170818329,0.0,11.363637,11.363637,0.09372071,-0.29269174 +384.8797061443329,0.0,10.606061,10.606061,0.07497657,-0.29269174 +384.8927240371704,0.0,9.090909,9.090909,0.0656045,-0.29269174 +384.9017291069031,0.0,8.333334,8.333334,0.046860356,-0.29269174 +384.9102280139923,0.0,7.575758,7.575758,0.028116215,-0.29269174 +384.9196240901947,0.0,6.060606,6.060606,0.018744143,-0.29269174 +384.9294240474701,0.0,5.3030305,5.3030305,0.009372071,-0.29269174 +384.9429271221161,0.0,4.5454545,4.5454545,0.0,-0.29269174 +384.9494321346283,0.0,3.787879,3.787879,0.0,-0.29269174 +384.9602220058441,0.0,3.030303,3.030303,0.0,-0.29824185 +384.96995210647583,0.0,2.2727273,2.2727273,0.0,-0.29824185 +384.9820489883423,0.0,2.2727273,2.2727273,0.0,-0.29824185 +384.99098110198975,0.0,1.5151515,1.5151515,0.0,-0.29824185 +384.99988293647766,0.0,0.75757575,0.75757575,0.0,-0.29824185 +385.0098309516907,0.0,0.0,0.0,0.0,-0.29824185 +385.0229570865631,0.0,0.0,0.0,0.0,-0.30934215 +385.0294461250305,0.0,0.0,0.0,0.0,-0.30934215 +385.0394320487976,0.0,0.0,0.0,0.0,-0.30934215 +385.05093908309937,0.0,0.0,0.0,0.0,-0.30934215 +385.05992102622986,0.0,0.0,0.0,0.0,-0.30934215 +385.0712080001831,0.0,0.0,0.0,0.0,-0.29639184 +385.0794520378113,0.0,0.0,0.0,0.0,-0.29639184 +385.09089398384094,0.0,0.0,0.0,0.0,-0.29639184 +385.0998830795288,0.0,0.0,0.0,0.0,-0.29639184 +385.1119899749756,0.0,0.0,0.0,0.0,-0.3111922 +385.1229591369629,0.0,0.0,0.0,0.0,-0.3111922 +385.1295669078827,0.0,0.0,0.0,0.0,-0.3111922 +385.1409080028534,0.0,0.0,0.0,0.0,-0.3111922 +385.1499090194702,0.0,0.0,0.0,0.0,-0.3111922 +385.16021394729614,0.0,0.0,0.0,0.0,-0.29269174 +385.17023611068726,0.0,0.0,0.0,0.0,-0.29269174 +385.1807150840759,0.0,0.0,0.0,0.0,-0.29269174 +385.189640045166,0.0,0.0,0.0,0.0,-0.29269174 +385.2029631137848,0.0,0.0,0.0,0.0,-0.29269174 +385.2094659805298,0.0,0.0,0.0,0.0,-0.29269174 +385.22191309928894,0.0,0.0,0.0,0.0,-0.28899163 +385.2294399738312,0.0,0.0,0.0,0.0,-0.28899163 +385.2399251461029,0.0,0.0,0.0,0.0,-0.28899163 +385.24956011772156,0.0,0.0,0.0,0.0,-0.28899163 +385.2602159976959,0.0,0.0,0.0,0.0,-0.29824185 +385.270555973053,0.0,0.0,0.0,0.0,-0.29824185 +385.279541015625,0.0,0.0,0.0,0.0,-0.29824185 +385.29297494888306,0.0,0.75757575,0.75757575,0.0,-0.29824185 +385.30297899246216,0.0,1.5151515,1.5151515,0.0,-0.29824185 +385.30952405929565,0.0,2.2727273,2.2727273,0.0,-0.29824185 +385.32019305229187,0.0,2.2727273,2.2727273,0.0,-0.29639184 +385.3294279575348,0.0,3.030303,3.030303,0.0,-0.29639184 +385.33950209617615,0.0,3.787879,3.787879,0.0,-0.29639184 +385.3514189720154,0.0,3.787879,3.787879,0.0,-0.29639184 +385.36020612716675,0.0,4.5454545,4.5454545,0.0,-0.3148923 +385.3693950176239,0.0,4.5454545,4.5454545,0.0,-0.3148923 +385.3829700946808,0.0,5.3030305,5.3030305,0.0,-0.3148923 +385.3922519683838,0.0,5.3030305,5.3030305,0.0,-0.3148923 +385.40116691589355,0.0,5.3030305,5.3030305,0.0,-0.3148923 +385.410080909729,0.0,6.060606,6.060606,0.0,-0.3148923 +385.41998410224915,0.0,6.060606,6.060606,0.0,-0.28899163 +385.42942810058594,0.0,6.060606,6.060606,0.0,-0.28899163 +385.44125604629517,0.0,6.818182,6.818182,0.0,-0.28899163 +385.45023012161255,0.0,6.818182,6.818182,0.0,-0.28899163 +385.460165977478,0.0,6.818182,6.818182,0.0,-0.28899163 +385.46956610679626,0.0,7.575758,7.575758,0.0,-0.28899163 +385.4797329902649,0.0,7.575758,7.575758,0.0,-0.28899163 +385.49036598205566,0.0,7.575758,7.575758,0.0,-0.28899163 +385.50102710723877,0.0,7.575758,7.575758,0.0,-0.28899163 +385.51002311706543,0.0,7.575758,7.575758,0.0,-0.28899163 +385.5220990180969,0.0,8.333334,8.333334,0.009372071,-0.29269174 +385.5294449329376,0.0,8.333334,8.333334,0.018744143,-0.29269174 +385.54005694389343,0.0,8.333334,8.333334,0.028116215,-0.29269174 +385.5501980781555,0.0,8.333334,8.333334,0.018744143,-0.29269174 +385.5602300167084,0.0,8.333334,8.333334,0.028116215,-0.30379203 +385.5706069469452,0.0,9.090909,9.090909,0.018744143,-0.30379203 +385.5795500278473,0.0,9.090909,9.090909,0.028116215,-0.30379203 +385.59104013442993,0.0,9.090909,9.090909,0.028116215,-0.30379203 +385.59960293769836,0.0,9.090909,9.090909,0.037488285,-0.30379203 +385.61192893981934,0.0,9.090909,9.090909,0.037488285,-0.30379203 +385.6209149360657,0.0,9.090909,9.090909,0.037488285,-0.32414255 +385.62989497184753,0.0,9.090909,9.090909,0.037488285,-0.32414255 +385.63944005966187,0.0,9.090909,9.090909,0.037488285,-0.32414255 +385.6508939266205,0.0,9.090909,9.090909,0.028116215,-0.32414255 +385.6597819328308,0.0,9.090909,9.090909,0.037488285,-0.32414255 +385.67205810546875,0.0,9.090909,9.090909,0.037488285,-0.29639184 +385.6797471046448,0.0,9.090909,9.090909,0.037488285,-0.29639184 +385.68946599960327,0.0,9.090909,9.090909,0.037488285,-0.29639184 +385.7017590999603,0.0,9.090909,9.090909,0.028116215,-0.29639184 +385.71075892448425,0.0,9.090909,9.090909,0.028116215,-0.29639184 +385.7197411060333,0.0,9.090909,9.090909,0.028116215,-0.29269174 +385.729434967041,0.0,9.090909,9.090909,0.028116215,-0.29269174 +385.74005699157715,0.0,9.090909,9.090909,0.028116215,-0.29269174 +385.7530119419098,0.0,9.090909,9.090909,0.028116215,-0.29269174 +385.76021695137024,0.0,9.090909,9.090909,0.037488285,-0.29084167 +385.77109694480896,0.0,9.090909,9.090909,0.037488285,-0.29084167 +385.7793929576874,0.0,9.090909,9.090909,0.028116215,-0.29084167 +385.7916040420532,0.0,9.090909,9.090909,0.028116215,-0.29084167 +385.8005909919739,0.0,9.090909,9.090909,0.028116215,-0.29084167 +385.80957293510437,0.0,9.090909,9.090909,0.028116215,-0.29084167 +385.8201129436493,0.0,9.090909,9.090909,0.028116215,-0.28714156 +385.8294401168823,0.0,9.090909,9.090909,0.028116215,-0.28714156 +385.8418629169464,0.0,9.848485,9.848485,0.028116215,-0.28714156 +385.8520951271057,0.0,9.848485,9.848485,0.028116215,-0.28714156 +385.8596730232239,0.0,9.848485,9.848485,0.028116215,-0.28714156 +385.86939001083374,0.0,9.848485,9.848485,0.028116215,-0.29639184 +385.87972807884216,0.0,9.848485,9.848485,0.037488285,-0.29639184 +385.8904149532318,0.0,9.848485,9.848485,0.037488285,-0.29639184 +385.8993949890137,0.0,9.848485,9.848485,0.037488285,-0.29639184 +385.90951013565063,0.0,9.848485,9.848485,0.037488285,-0.29639184 +385.91946601867676,0.0,9.848485,9.848485,0.046860356,-0.30009192 +385.92952513694763,0.0,9.848485,9.848485,0.037488285,-0.30009192 +385.9421329498291,0.0,9.848485,9.848485,0.037488285,-0.30009192 +385.9511260986328,0.0,9.848485,9.848485,0.037488285,-0.30009192 +385.9601221084595,0.0,9.848485,9.848485,0.037488285,-0.30009192 +385.97129011154175,0.0,10.606061,10.606061,0.046860356,-0.28714156 +385.98028206825256,0.0,10.606061,10.606061,0.037488285,-0.28714156 +385.9896650314331,0.0,10.606061,10.606061,0.037488285,-0.28714156 +386.00054907798767,0.0,10.606061,10.606061,0.037488285,-0.28714156 +386.0095341205597,0.0,11.363637,11.363637,0.046860356,-0.28714156 +386.02270698547363,0.0,11.363637,11.363637,0.046860356,-0.29824185 +386.02944898605347,0.0,12.121212,12.121212,0.046860356,-0.29824185 +386.0393919944763,0.0,12.121212,12.121212,0.046860356,-0.29824185 +386.0501379966736,0.0,12.878788,12.878788,0.05623243,-0.29824185 +386.06022095680237,0.0,13.636364,13.636364,0.05623243,-0.3740939 +386.0700490474701,0.0,14.39394,14.39394,0.05623243,-0.3740939 +386.0797600746155,0.0,15.151516,15.151516,0.0656045,-0.3740939 +386.09058809280396,0.0,15.909091,15.909091,0.0656045,-0.3740939 +386.09959292411804,0.0,16.666668,16.666668,0.05623243,-0.3740939 +386.1120409965515,0.0,16.666668,16.666668,0.0656045,-0.3111922 +386.1196880340576,0.0,17.424242,17.424242,0.0656045,-0.3111922 +386.1294639110565,0.0,18.181818,18.181818,0.0656045,-0.3111922 +386.1401331424713,0.0,18.181818,18.181818,0.0656045,-0.3111922 +386.1503279209137,0.0,18.939394,18.939394,0.0656045,-0.3111922 +386.1599419116974,0.0,19.69697,19.69697,0.07497657,-0.3111922 +386.16961097717285,0.0,20.454544,20.454544,0.07497657,-0.30009192 +386.1806609630585,0.0,20.454544,20.454544,0.07497657,-0.30009192 +386.1896650791168,0.0,21.212122,21.212122,0.07497657,-0.30009192 +386.2030589580536,0.0,21.969696,21.969696,0.0656045,-0.30009192 +386.2120170593262,0.0,22.727274,22.727274,0.0656045,-0.30009192 +386.22113513946533,0.0,23.484848,23.484848,0.07497657,-0.30009192 +386.229434967041,0.0,24.242424,24.242424,0.07497657,-0.30009192 +386.2395179271698,0.0,25.0,25.0,0.07497657,-0.30009192 +386.2497320175171,0.0,25.757576,25.757576,0.08434864,-0.30009192 +386.26022505760193,0.0,26.515152,26.515152,0.08434864,-0.28899163 +386.2707290649414,0.0,28.030302,28.030302,0.08434864,-0.28899163 +386.279452085495,0.0,28.78788,28.78788,0.07497657,-0.28899163 +386.29305601119995,0.0,29.545454,29.545454,0.07497657,-0.28899163 +386.3006980419159,0.0,31.060606,31.060606,0.08434864,-0.28899163 +386.31086111068726,0.0,31.818182,31.818182,0.09372071,-0.28899163 +386.31978607177734,0.0,33.333336,33.333336,0.09372071,-0.29824185 +386.32944202423096,0.0,34.09091,34.09091,0.10309278,-0.29824185 +386.3396329879761,0.0,35.60606,35.60606,0.10309278,-0.29824185 +386.35012197494507,0.0,36.363636,36.363636,0.10309278,-0.29824185 +386.36022090911865,0.0,37.121216,37.121216,0.10309278,-0.29639184 +386.3698019981384,0.0,38.636364,38.636364,0.11246486,-0.29639184 +386.3797609806061,0.0,39.39394,39.39394,0.11246486,-0.29639184 +386.3911249637604,0.0,40.151516,40.151516,0.11246486,-0.29639184 +386.4000461101532,0.0,40.90909,40.90909,0.10309278,-0.29639184 +386.4101519584656,0.0,41.666668,41.666668,0.11246486,-0.29639184 +386.42014813423157,0.0,42.424244,42.424244,0.11246486,-0.29269174 +386.42939710617065,0.0,43.939392,43.939392,0.11246486,-0.29269174 +386.4418840408325,0.0,44.696968,44.696968,0.11246486,-0.29269174 +386.4508810043335,0.0,45.454548,45.454548,0.11246486,-0.29269174 +386.459881067276,0.0,46.21212,46.21212,0.11246486,-0.29269174 +386.47005701065063,0.0,46.21212,46.21212,0.11246486,-0.29084167 +386.479768037796,0.0,46.969696,46.969696,0.11246486,-0.29084167 +386.48946714401245,0.0,47.727272,47.727272,0.11246486,-0.29084167 +386.50016808509827,0.0,48.484848,48.484848,0.11246486,-0.29084167 +386.5097839832306,0.0,49.242424,49.242424,0.11246486,-0.29084167 +386.5195209980011,0.0,49.242424,49.242424,0.12183693,-0.27049115 +386.5294830799103,0.0,50.0,50.0,0.12183693,-0.27049115 +386.54097604751587,0.0,50.0,50.0,0.12183693,-0.27049115 +386.54998207092285,0.0,50.757576,50.757576,0.12183693,-0.27049115 +386.56023597717285,0.0,51.515152,51.515152,0.12183693,-0.28714156 +386.56946992874146,0.0,51.515152,51.515152,0.12183693,-0.28714156 +386.5794141292572,0.0,52.272724,52.272724,0.12183693,-0.28714156 +386.5902121067047,0.0,53.030304,53.030304,0.12183693,-0.28714156 +386.6001350879669,0.0,53.030304,53.030304,0.131209,-0.28714156 +386.6120150089264,0.0,53.78788,53.78788,0.131209,-0.29639184 +386.6220281124115,0.0,54.545456,54.545456,0.131209,-0.29639184 +386.62947702407837,0.0,54.545456,54.545456,0.131209,-0.29639184 +386.63979291915894,0.0,55.30303,55.30303,0.131209,-0.29639184 +386.6497480869293,0.0,55.30303,55.30303,0.131209,-0.29639184 +386.66023111343384,0.0,55.30303,55.30303,0.14058107,-0.3074921 +386.6697039604187,0.0,56.060604,56.060604,0.131209,-0.3074921 +386.6797800064087,0.0,56.060604,56.060604,0.14058107,-0.3074921 +386.689964056015,0.0,56.818184,56.818184,0.14058107,-0.3074921 +386.70312213897705,0.0,56.818184,56.818184,0.14058107,-0.3074921 +386.7103841304779,0.0,56.818184,56.818184,0.14058107,-0.3074921 +386.7210841178894,0.0,56.818184,56.818184,0.14995314,-0.29824185 +386.7294399738312,0.0,56.818184,56.818184,0.14995314,-0.29824185 +386.74311995506287,0.0,56.818184,56.818184,0.14995314,-0.29824185 +386.7522020339966,0.0,56.818184,56.818184,0.14995314,-0.29824185 +386.7602469921112,0.0,56.818184,56.818184,0.14995314,-0.29084167 +386.76980805397034,0.0,56.818184,56.818184,0.14995314,-0.29084167 +386.77949595451355,0.0,56.818184,56.818184,0.14995314,-0.29084167 +386.79243993759155,0.0,56.818184,56.818184,0.14995314,-0.29084167 +386.8008029460907,0.0,56.818184,56.818184,0.14995314,-0.29084167 +386.8102219104767,0.0,56.818184,56.818184,0.14995314,-0.29639184 +386.81964802742004,0.0,56.818184,56.818184,0.14995314,-0.29639184 +386.8294279575348,0.0,56.818184,56.818184,0.14995314,-0.29639184 +386.84148812294006,0.0,56.818184,56.818184,0.14995314,-0.29639184 +386.84991002082825,0.0,56.818184,56.818184,0.14995314,-0.29639184 +386.86021399497986,0.0,56.818184,56.818184,0.14995314,-0.29639184 +386.8696050643921,0.0,56.060604,56.060604,0.14995314,-0.27974138 +386.8797519207001,0.0,56.060604,56.060604,0.14058107,-0.27974138 +386.89055013656616,0.0,56.060604,56.060604,0.14995314,-0.27974138 +386.8994610309601,0.0,56.060604,56.060604,0.14995314,-0.27974138 +386.9100179672241,0.0,56.060604,56.060604,0.14995314,-0.27974138 +386.92278599739075,0.0,56.060604,56.060604,0.15932521,-0.30934215 +386.92946100234985,0.0,56.060604,56.060604,0.14995314,-0.30934215 +386.94123697280884,0.0,55.30303,55.30303,0.14995314,-0.30934215 +386.9502410888672,0.0,55.30303,55.30303,0.15932521,-0.30934215 +386.95946192741394,0.0,55.30303,55.30303,0.14995314,-0.30934215 +386.9707999229431,0.0,55.30303,55.30303,0.14995314,-0.31304228 +386.97973012924194,0.0,55.30303,55.30303,0.14995314,-0.31304228 +386.9913101196289,0.0,55.30303,55.30303,0.14995314,-0.31304228 +387.00016498565674,0.0,55.30303,55.30303,0.14995314,-0.31304228 +387.01024293899536,0.0,54.545456,54.545456,0.14058107,-0.28159142 +387.0195560455322,0.0,54.545456,54.545456,0.14058107,-0.28159142 +387.02948093414307,0.0,54.545456,54.545456,0.14058107,-0.28159142 +387.0402660369873,0.0,54.545456,54.545456,0.14058107,-0.28159142 +387.04947805404663,0.0,54.545456,54.545456,0.14995314,-0.28159142 +387.0599639415741,0.0,54.545456,54.545456,0.14058107,-0.28159142 +387.0723669528961,0.0,54.545456,54.545456,0.14995314,-0.29639184 +387.0797801017761,0.0,54.545456,54.545456,0.14995314,-0.29639184 +387.09038400650024,0.0,54.545456,54.545456,0.14995314,-0.29639184 +387.09939908981323,0.0,54.545456,54.545456,0.14995314,-0.29639184 +387.11022901535034,0.0,54.545456,54.545456,0.14995314,-0.28899163 +387.1203079223633,0.0,54.545456,54.545456,0.14995314,-0.28899163 +387.1294870376587,0.0,54.545456,54.545456,0.14058107,-0.28899163 +387.1402311325073,0.0,54.545456,54.545456,0.14995314,-0.28899163 +387.15038800239563,0.0,54.545456,54.545456,0.14995314,-0.28899163 +387.1598229408264,0.0,54.545456,54.545456,0.14995314,-0.28899163 +387.17145800590515,0.0,54.545456,54.545456,0.15932521,-0.29639184 +387.18045592308044,0.0,55.30303,55.30303,0.14995314,-0.29639184 +387.1894700527191,0.0,55.30303,55.30303,0.14995314,-0.29639184 +387.19963097572327,0.0,55.30303,55.30303,0.14995314,-0.29639184 +387.2109389305115,0.0,56.060604,56.060604,0.14995314,-0.29639184 +387.21992206573486,0.0,56.060604,56.060604,0.14995314,-0.29269174 +387.22955799102783,0.0,56.818184,56.818184,0.14058107,-0.29269174 +387.2431569099426,0.0,56.818184,56.818184,0.14995314,-0.29269174 +387.2525110244751,0.0,57.57576,57.57576,0.14995314,-0.29269174 +387.2596480846405,0.0,58.333332,58.333332,0.14995314,-0.29269174 +387.27053594589233,0.0,59.848484,59.848484,0.14995314,-0.28344148 +387.27953600883484,0.0,60.606064,60.606064,0.14995314,-0.28344148 +387.2898371219635,0.0,62.121212,62.121212,0.14995314,-0.28344148 +387.3003399372101,0.0,63.636364,63.636364,0.14995314,-0.28344148 +387.3095829486847,0.0,65.15151,65.15151,0.15932521,-0.28344148 +387.32219910621643,0.0,66.66667,66.66667,0.15932521,-0.29269174 +387.33314990997314,0.0,68.18182,68.18182,0.15932521,-0.29269174 +387.3394739627838,0.0,58.333332,58.333332,0.15932521,-0.29269174 +387.34971714019775,0.0,43.939392,43.939392,0.15932521,-0.29269174 +387.3602340221405,0.0,31.060606,31.060606,0.16869728,-0.29084167 +387.36963510513306,0.0,22.727274,22.727274,0.16869728,-0.29084167 +387.38089513778687,0.0,21.969696,21.969696,0.17806935,-0.29084167 +387.3898239135742,0.0,26.515152,26.515152,0.17806935,-0.29084167 +387.39958095550537,0.0,32.575756,32.575756,0.17806935,-0.29084167 +387.4095799922943,0.0,37.121216,37.121216,0.18744142,-0.29084167 +387.41984510421753,0.0,42.424244,42.424244,0.18744142,-0.29824185 +387.42946600914,0.0,46.969696,46.969696,0.18744142,-0.29824185 +387.44167613983154,0.0,52.272724,52.272724,0.1968135,-0.29824185 +387.4506950378418,0.0,56.818184,56.818184,0.1968135,-0.29824185 +387.4596869945526,0.0,61.363636,61.363636,0.1968135,-0.29824185 +387.4699990749359,0.0,65.90909,65.90909,0.20618556,-0.30009192 +387.47977900505066,0.0,65.90909,65.90909,0.21555763,-0.30009192 +387.4894440174103,0.0,59.090908,59.090908,0.21555763,-0.30009192 +387.5031819343567,0.0,53.030304,53.030304,0.21555763,-0.30009192 +387.51096391677856,0.0,47.727272,47.727272,0.22492972,-0.30009192 +387.5194261074066,0.0,43.939392,43.939392,0.22492972,-0.28714156 +387.5295000076294,0.0,40.90909,40.90909,0.22492972,-0.28714156 +387.54075503349304,0.0,37.878788,37.878788,0.23430179,-0.28714156 +387.54974603652954,0.0,36.363636,36.363636,0.23430179,-0.28714156 +387.56026005744934,0.0,34.848484,34.848484,0.23430179,-0.28899163 +387.5702819824219,0.0,33.333336,33.333336,0.23430179,-0.28899163 +387.58038306236267,0.0,32.575756,32.575756,0.23430179,-0.28899163 +387.58939599990845,0.0,32.575756,32.575756,0.24367386,-0.28899163 +387.603187084198,0.0,31.818182,31.818182,0.24367386,-0.28899163 +387.61192297935486,0.0,31.818182,31.818182,0.24367386,-0.28899163 +387.6215751171112,0.0,32.575756,32.575756,0.25304592,-0.3111922 +387.62947607040405,0.0,32.575756,32.575756,0.24367386,-0.3111922 +387.63984298706055,0.0,32.575756,32.575756,0.24367386,-0.3111922 +387.6499581336975,0.0,33.333336,33.333336,0.24367386,-0.3111922 +387.6601390838623,0.0,34.09091,34.09091,0.23430179,-0.3111922 +387.6703951358795,0.0,34.09091,34.09091,0.23430179,-0.29824185 +387.6797869205475,0.0,34.848484,34.848484,0.23430179,-0.29824185 +387.69288206100464,0.0,35.60606,35.60606,0.23430179,-0.29824185 +387.6995611190796,0.0,36.363636,36.363636,0.23430179,-0.29824185 +387.7106900215149,0.0,36.363636,36.363636,0.24367386,-0.29824185 +387.71960496902466,0.0,37.121216,37.121216,0.24367386,-0.29084167 +387.7294590473175,0.0,37.878788,37.878788,0.25304592,-0.29084167 +387.74102210998535,0.0,38.636364,38.636364,0.24367386,-0.29084167 +387.75001192092896,0.0,38.636364,38.636364,0.24367386,-0.29084167 +387.7595200538635,0.0,39.39394,39.39394,0.24367386,-0.29084167 +387.7693989276886,0.0,40.151516,40.151516,0.24367386,-0.3074921 +387.7819881439209,0.0,40.151516,40.151516,0.24367386,-0.3074921 +387.7894380092621,0.0,40.90909,40.90909,0.24367386,-0.3074921 +387.79982113838196,0.0,41.666668,41.666668,0.24367386,-0.3074921 +387.8099100589752,0.0,41.666668,41.666668,0.24367386,-0.3074921 +387.8199429512024,0.0,42.424244,42.424244,0.24367386,-0.29269174 +387.8294870853424,0.0,42.424244,42.424244,0.24367386,-0.29269174 +387.83986711502075,0.0,43.181816,43.181816,0.24367386,-0.29269174 +387.8504250049591,0.0,43.939392,43.939392,0.24367386,-0.29269174 +387.8594169616699,0.0,43.939392,43.939392,0.23430179,-0.29269174 +387.87112498283386,0.0,43.939392,43.939392,0.24367386,-0.27974138 +387.8797791004181,0.0,44.696968,44.696968,0.24367386,-0.27974138 +387.89050698280334,0.0,44.696968,44.696968,0.24367386,-0.27974138 +387.90099811553955,0.0,45.454548,45.454548,0.23430179,-0.27974138 +387.9096620082855,0.0,45.454548,45.454548,0.23430179,-0.27974138 +387.9205470085144,0.0,45.454548,45.454548,0.24367386,-0.30009192 +387.9294719696045,0.0,46.21212,46.21212,0.24367386,-0.30009192 +387.93994307518005,0.0,46.21212,46.21212,0.23430179,-0.30009192 +387.9494490623474,0.0,46.21212,46.21212,0.23430179,-0.30009192 +387.9602551460266,0.0,46.21212,46.21212,0.23430179,-0.30009192 +387.97304606437683,0.0,46.21212,46.21212,0.23430179,-0.30194196 +387.98203206062317,0.0,46.21212,46.21212,0.22492972,-0.30194196 +387.99106001853943,0.0,46.21212,46.21212,0.23430179,-0.30194196 +387.99976897239685,0.0,46.21212,46.21212,0.24367386,-0.30194196 +388.0102491378784,0.0,46.969696,46.969696,0.24367386,-0.28899163 +388.0195701122284,0.0,46.969696,46.969696,0.24367386,-0.28899163 +388.02947211265564,0.0,46.969696,46.969696,0.24367386,-0.28899163 +388.0394561290741,0.0,46.969696,46.969696,0.25304592,-0.28899163 +388.04939103126526,0.0,46.969696,46.969696,0.262418,-0.28899163 +388.0602459907532,0.0,46.969696,46.969696,0.25304592,-0.29639184 +388.06998205184937,0.0,46.969696,46.969696,0.25304592,-0.29639184 +388.0797929763794,0.0,46.969696,46.969696,0.25304592,-0.29639184 +388.09011912345886,0.0,46.969696,46.969696,0.25304592,-0.29639184 +388.1004400253296,0.0,46.969696,46.969696,0.25304592,-0.29639184 +388.10944414138794,0.0,46.969696,46.969696,0.25304592,-0.29639184 +388.12048411369324,0.0,47.727272,47.727272,0.24367386,-0.29269174 +388.1294860839844,0.0,47.727272,47.727272,0.24367386,-0.29269174 +388.1432240009308,0.0,47.727272,47.727272,0.24367386,-0.29269174 +388.1528389453888,0.0,47.727272,47.727272,0.24367386,-0.29269174 +388.16026306152344,0.0,47.727272,47.727272,0.24367386,-0.29084167 +388.1694509983063,0.0,47.727272,47.727272,0.25304592,-0.29084167 +388.1802020072937,0.0,47.727272,47.727272,0.25304592,-0.29084167 +388.1894841194153,0.0,47.727272,47.727272,0.24367386,-0.29084167 +388.19949102401733,0.0,47.727272,47.727272,0.24367386,-0.29084167 +388.20983600616455,0.0,47.727272,47.727272,0.25304592,-0.29084167 +388.2195019721985,0.0,47.727272,47.727272,0.25304592,-0.30009192 +388.2294719219208,0.0,47.727272,47.727272,0.25304592,-0.30009192 +388.2402091026306,0.0,47.727272,47.727272,0.25304592,-0.30009192 +388.2511451244354,0.0,47.727272,47.727272,0.262418,-0.30009192 +388.26025009155273,0.0,47.727272,47.727272,0.25304592,-0.28714156 +388.27019691467285,0.0,47.727272,47.727272,0.25304592,-0.28714156 +388.2798159122467,0.0,47.727272,47.727272,0.24367386,-0.28714156 +388.29010009765625,0.0,47.727272,47.727272,0.25304592,-0.28714156 +388.29995799064636,0.0,47.727272,47.727272,0.24367386,-0.28714156 +388.30951499938965,0.0,47.727272,47.727272,0.24367386,-0.28714156 +388.32182693481445,0.0,47.727272,47.727272,0.25304592,-0.28344148 +388.32945799827576,0.0,47.727272,47.727272,0.25304592,-0.28344148 +388.3423070907593,0.0,47.727272,47.727272,0.25304592,-0.28344148 +388.3494989871979,0.0,47.727272,47.727272,0.25304592,-0.28344148 +388.36023902893066,0.0,47.727272,47.727272,0.25304592,-0.3148923 +388.37003111839294,0.0,47.727272,47.727272,0.25304592,-0.3148923 +388.3815350532532,0.0,47.727272,47.727272,0.25304592,-0.3148923 +388.3905100822449,0.0,47.727272,47.727272,0.25304592,-0.3148923 +388.3995199203491,0.0,47.727272,47.727272,0.262418,-0.3148923 +388.40959000587463,0.0,47.727272,47.727272,0.262418,-0.3148923 +388.42277812957764,0.0,47.727272,47.727272,0.262418,-0.30009192 +388.4294910430908,0.0,47.727272,47.727272,0.262418,-0.30009192 +388.4413859844208,0.0,47.727272,47.727272,0.262418,-0.30009192 +388.4503951072693,0.0,47.727272,47.727272,0.262418,-0.30009192 +388.4594249725342,0.0,47.727272,47.727272,0.27179006,-0.30009192 +388.4696910381317,0.0,47.727272,47.727272,0.27179006,-0.32414255 +388.4798140525818,0.0,47.727272,47.727272,0.27179006,-0.32414255 +388.48951506614685,0.0,47.727272,47.727272,0.28116214,-0.32414255 +388.50239396095276,0.0,47.727272,47.727272,0.28116214,-0.32414255 +388.51204800605774,0.0,47.727272,47.727272,0.28116214,-0.33339283 +388.52192997932434,0.0,47.727272,47.727272,0.28116214,-0.33339283 +388.5294921398163,0.0,47.727272,47.727272,0.28116214,-0.33339283 +388.5397720336914,0.0,47.727272,47.727272,0.28116214,-0.33339283 +388.5494899749756,0.0,47.727272,47.727272,0.28116214,-0.33339283 +388.5602550506592,0.0,46.969696,46.969696,0.28116214,-0.2538407 +388.5705370903015,0.0,46.969696,46.969696,0.28116214,-0.2538407 +388.5795350074768,0.0,46.969696,46.969696,0.28116214,-0.2538407 +388.58972907066345,0.0,46.969696,46.969696,0.28116214,-0.2538407 +388.60221791267395,0.0,46.969696,46.969696,0.28116214,-0.2538407 +388.61112809181213,0.0,46.969696,46.969696,0.27179006,-0.2538407 +388.6197590827942,0.0,46.969696,46.969696,0.28116214,-0.29084167 +388.62949800491333,0.0,46.969696,46.969696,0.28116214,-0.29084167 +388.63958191871643,0.0,46.969696,46.969696,0.28116214,-0.29084167 +388.64959597587585,0.0,46.969696,46.969696,0.28116214,-0.29084167 +388.66025710105896,0.0,46.969696,46.969696,0.28116214,-0.3222925 +388.66955614089966,0.0,46.969696,46.969696,0.28116214,-0.3222925 +388.67982006073,0.0,46.969696,46.969696,0.28116214,-0.3222925 +388.69137501716614,0.0,46.969696,46.969696,0.28116214,-0.3222925 +388.7002840042114,0.0,46.969696,46.969696,0.28116214,-0.3222925 +388.7114350795746,0.0,46.969696,46.969696,0.28116214,-0.3222925 +388.72005009651184,0.0,46.969696,46.969696,0.28116214,-0.29639184 +388.7294080257416,0.0,46.969696,46.969696,0.28116214,-0.29639184 +388.74158096313477,0.0,46.969696,46.969696,0.27179006,-0.29639184 +388.7505941390991,0.0,46.969696,46.969696,0.27179006,-0.29639184 +388.7595999240875,0.0,46.969696,46.969696,0.262418,-0.29639184 +388.77162408828735,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.7805280685425,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.7894411087036,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.79978799819946,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.81027698516846,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.8197240829468,0.0,46.969696,46.969696,0.27179006,-0.29269174 +388.8294529914856,0.0,46.969696,46.969696,0.27179006,-0.29269174 +388.84059500694275,0.0,46.969696,46.969696,0.262418,-0.29269174 +388.84961009025574,0.0,46.969696,46.969696,0.262418,-0.29269174 +388.8602590560913,0.0,46.969696,46.969696,0.262418,-0.3074921 +388.869686126709,0.0,46.969696,46.969696,0.262418,-0.3074921 +388.87980914115906,0.0,46.969696,46.969696,0.262418,-0.3074921 +388.8901541233063,0.0,46.969696,46.969696,0.25304592,-0.3074921 +388.9001319408417,0.0,46.969696,46.969696,0.262418,-0.3074921 +388.9097819328308,0.0,46.969696,46.969696,0.262418,-0.3074921 +388.9216339588165,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.9294879436493,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.93942308425903,0.0,46.969696,46.969696,0.27179006,-0.28159142 +388.9498999118805,0.0,46.969696,46.969696,0.262418,-0.28159142 +388.9602530002594,0.0,46.969696,46.969696,0.262418,-0.31304228 +388.9694559574127,0.0,46.969696,46.969696,0.262418,-0.31304228 +388.9800329208374,0.0,46.969696,46.969696,0.262418,-0.31304228 +388.9899880886078,0.0,46.969696,46.969696,0.262418,-0.31304228 +388.9998550415039,0.0,46.969696,46.969696,0.262418,-0.31304228 +389.01027393341064,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.0206401348114,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.02952098846436,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.03946900367737,0.0,46.969696,46.969696,0.28116214,-0.29269174 +389.05285811424255,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.05951714515686,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.07050800323486,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.0798239707947,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.0899341106415,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.10043692588806,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.11007714271545,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.1195909976959,0.0,46.969696,46.969696,0.27179006,-0.28159142 +389.12950801849365,0.0,46.969696,46.969696,0.27179006,-0.28159142 +389.14273595809937,0.0,46.969696,46.969696,0.27179006,-0.28159142 +389.15170192718506,0.0,46.969696,46.969696,0.27179006,-0.28159142 +389.16027212142944,0.0,46.969696,46.969696,0.262418,-0.28714156 +389.1696720123291,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.17978501319885,0.0,46.969696,46.969696,0.262418,-0.28714156 +389.1905961036682,0.0,46.969696,46.969696,0.27179006,-0.28714156 +389.19949293136597,0.0,46.969696,46.969696,0.262418,-0.28714156 +389.2094669342041,0.0,46.969696,46.969696,0.262418,-0.28714156 +389.22021102905273,0.0,46.969696,46.969696,0.27179006,-0.28159142 +389.22947001457214,0.0,46.969696,46.969696,0.27179006,-0.28159142 +389.24008202552795,0.0,46.969696,46.969696,0.28116214,-0.28159142 +389.25053811073303,0.0,46.969696,46.969696,0.28116214,-0.28159142 +389.25954008102417,0.0,46.969696,46.969696,0.2905342,-0.28159142 +389.2700719833374,0.0,46.969696,46.969696,0.28116214,-0.29084167 +389.2797200679779,0.0,46.969696,46.969696,0.28116214,-0.29084167 +389.290678024292,0.0,46.969696,46.969696,0.2905342,-0.29084167 +389.29969811439514,0.0,46.969696,46.969696,0.2905342,-0.29084167 +389.3107650279999,0.0,46.969696,46.969696,0.2905342,-0.29084167 +389.3196039199829,0.0,46.969696,46.969696,0.28116214,-0.29269174 +389.3294849395752,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.3403980731964,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.35105895996094,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.35989809036255,0.0,46.969696,46.969696,0.28116214,-0.29269174 +389.37015199661255,0.0,46.969696,46.969696,0.28116214,-0.31304228 +389.3807170391083,0.0,46.969696,46.969696,0.28116214,-0.31304228 +389.3897280693054,0.0,46.969696,46.969696,0.28116214,-0.31304228 +389.4008619785309,0.0,46.969696,46.969696,0.27179006,-0.31304228 +389.4120590686798,0.0,46.969696,46.969696,0.27179006,-0.27974138 +389.42124795913696,0.0,46.969696,46.969696,0.27179006,-0.27974138 +389.4294710159302,0.0,46.969696,46.969696,0.262418,-0.27974138 +389.4394519329071,0.0,46.969696,46.969696,0.262418,-0.27974138 +389.4498131275177,0.0,46.969696,46.969696,0.262418,-0.27974138 +389.4602761268616,0.0,46.969696,46.969696,0.25304592,-0.29824185 +389.4707429409027,0.0,46.969696,46.969696,0.25304592,-0.29824185 +389.4797251224518,0.0,46.969696,46.969696,0.25304592,-0.29824185 +389.4931149482727,0.0,46.969696,46.969696,0.25304592,-0.29824185 +389.500195980072,0.0,46.969696,46.969696,0.25304592,-0.29824185 +389.5111119747162,0.0,46.969696,46.969696,0.25304592,-0.29824185 +389.52009296417236,0.0,46.969696,46.969696,0.25304592,-0.29084167 +389.5295400619507,0.0,46.969696,46.969696,0.25304592,-0.29084167 +389.54025506973267,0.0,47.727272,47.727272,0.25304592,-0.29084167 +389.5517439842224,0.0,47.727272,47.727272,0.24367386,-0.29084167 +389.56026911735535,0.0,47.727272,47.727272,0.24367386,-0.30194196 +389.5697569847107,0.0,47.727272,47.727272,0.24367386,-0.30194196 +389.581237077713,0.0,47.727272,47.727272,0.24367386,-0.30194196 +389.5917639732361,0.0,47.727272,47.727272,0.25304592,-0.30194196 +389.6000339984894,0.0,47.727272,47.727272,0.24367386,-0.30194196 +389.60960507392883,0.0,47.727272,47.727272,0.24367386,-0.30194196 +389.61940002441406,0.0,47.727272,47.727272,0.25304592,-0.28899163 +389.62949991226196,0.0,47.727272,47.727272,0.25304592,-0.28899163 +389.641783952713,0.0,47.727272,47.727272,0.25304592,-0.28899163 +389.6495170593262,0.0,47.727272,47.727272,0.25304592,-0.28899163 +389.6597969532013,0.0,47.727272,47.727272,0.25304592,-0.28899163 +389.67202591896057,0.0,47.727272,47.727272,0.25304592,-0.29269174 +389.6798450946808,0.0,47.727272,47.727272,0.262418,-0.29269174 +389.68985295295715,0.0,47.727272,47.727272,0.262418,-0.29269174 +389.6997940540314,0.0,47.727272,47.727272,0.27179006,-0.29269174 +389.7096209526062,0.0,47.727272,47.727272,0.28116214,-0.29269174 +389.7204170227051,0.0,47.727272,47.727272,0.28116214,-0.30009192 +389.7294330596924,0.0,47.727272,47.727272,0.28116214,-0.30009192 +389.73978900909424,0.0,47.727272,47.727272,0.28116214,-0.30009192 +389.74981212615967,0.0,47.727272,47.727272,0.28116214,-0.30009192 +389.7602400779724,0.0,47.727272,47.727272,0.28116214,-0.30009192 +389.77010011672974,0.0,47.727272,47.727272,0.28116214,-0.29639184 +389.78065395355225,0.0,47.727272,47.727272,0.2905342,-0.29639184 +389.7896249294281,0.0,47.727272,47.727272,0.2905342,-0.29639184 +389.79965806007385,0.0,47.727272,47.727272,0.2905342,-0.29639184 +389.8102650642395,0.0,47.727272,47.727272,0.28116214,-0.28899163 +389.8194811344147,0.0,47.727272,47.727272,0.28116214,-0.28899163 +389.83081007003784,0.0,47.727272,47.727272,0.2905342,-0.28899163 +389.83979892730713,0.0,47.727272,47.727272,0.28116214,-0.28899163 +389.8503489494324,0.0,47.727272,47.727272,0.28116214,-0.28899163 +389.8602659702301,0.0,47.727272,47.727272,0.28116214,-0.29269174 +389.87051010131836,0.0,47.727272,47.727272,0.28116214,-0.29269174 +389.87949109077454,0.0,47.727272,47.727272,0.28116214,-0.29269174 +389.89024806022644,0.0,47.727272,47.727272,0.28116214,-0.29269174 +389.90054297447205,0.0,46.969696,46.969696,0.28116214,-0.29269174 +389.9095571041107,0.0,46.969696,46.969696,0.27179006,-0.29269174 +389.9208240509033,0.0,46.969696,46.969696,0.262418,-0.2760413 +389.9294979572296,0.0,46.969696,46.969696,0.27179006,-0.2760413 +389.9395160675049,0.0,46.969696,46.969696,0.27179006,-0.2760413 +389.9513521194458,0.0,46.969696,46.969696,0.27179006,-0.2760413 +389.9602770805359,0.0,46.969696,46.969696,0.27179006,-0.30934215 +389.969496011734,0.0,46.969696,46.969696,0.27179006,-0.30934215 +389.98011803627014,0.0,46.969696,46.969696,0.27179006,-0.30934215 +389.99062299728394,0.0,46.969696,46.969696,0.27179006,-0.30934215 +389.9996249675751,0.0,46.969696,46.969696,0.27179006,-0.30934215 +390.0097210407257,0.0,46.969696,46.969696,0.27179006,-0.30934215 +390.01978611946106,0.0,46.969696,46.969696,0.262418,-0.29084167 +390.0295181274414,0.0,46.969696,46.969696,0.262418,-0.29084167 +390.0412049293518,0.0,46.21212,46.21212,0.262418,-0.29084167 +390.05018401145935,0.0,46.21212,46.21212,0.25304592,-0.29084167 +390.05939292907715,0.0,46.21212,46.21212,0.262418,-0.29084167 +390.0716631412506,0.0,46.21212,46.21212,0.262418,-0.29824185 +390.0798580646515,0.0,46.21212,46.21212,0.262418,-0.29824185 +390.0894160270691,0.0,46.21212,46.21212,0.25304592,-0.29824185 +390.10002303123474,0.0,46.21212,46.21212,0.262418,-0.29824185 +390.1098220348358,0.0,45.454548,45.454548,0.262418,-0.29824185 +390.11945104599,0.0,45.454548,45.454548,0.27179006,-0.29639184 +390.12950110435486,0.0,45.454548,45.454548,0.27179006,-0.29639184 +390.1400101184845,0.0,45.454548,45.454548,0.28116214,-0.29639184 +390.15027809143066,0.0,45.454548,45.454548,0.28116214,-0.29639184 +390.16015696525574,0.0,45.454548,45.454548,0.27179006,-0.29639184 +390.1707270145416,0.0,44.696968,44.696968,0.262418,-0.29824185 +390.1797389984131,0.0,44.696968,44.696968,0.262418,-0.29824185 +390.1908519268036,0.0,44.696968,44.696968,0.25304592,-0.29824185 +390.19984698295593,0.0,44.696968,44.696968,0.25304592,-0.29824185 +390.2119040489197,0.0,44.696968,44.696968,0.25304592,-0.29824185 +390.22027707099915,0.0,43.939392,43.939392,0.25304592,-0.28714156 +390.2294919490814,0.0,43.939392,43.939392,0.25304592,-0.28714156 +390.2396070957184,0.0,43.939392,43.939392,0.25304592,-0.28714156 +390.25007009506226,0.0,43.939392,43.939392,0.25304592,-0.28714156 +390.26027512550354,0.0,43.939392,43.939392,0.262418,-0.3074921 +390.2694420814514,0.0,43.939392,43.939392,0.262418,-0.3074921 +390.28029012680054,0.0,43.939392,43.939392,0.262418,-0.3074921 +390.28985595703125,0.0,43.939392,43.939392,0.25304592,-0.3074921 +390.3017590045929,0.0,43.939392,43.939392,0.262418,-0.3074921 +390.3107340335846,0.0,43.939392,43.939392,0.25304592,-0.3074921 +390.31970405578613,0.0,43.939392,43.939392,0.27179006,-0.3111922 +390.32949900627136,0.0,43.939392,43.939392,0.27179006,-0.3111922 +390.3404610157013,0.0,43.181816,43.181816,0.28116214,-0.3111922 +390.3496849536896,0.0,43.181816,43.181816,0.28116214,-0.3111922 +390.3598759174347,0.0,43.181816,43.181816,0.28116214,-0.3111922 +390.37045311927795,0.0,43.181816,43.181816,0.28116214,-0.29269174 +390.3798990249634,0.0,43.181816,43.181816,0.27179006,-0.29269174 +390.391587972641,0.0,43.181816,43.181816,0.27179006,-0.29269174 +390.40056896209717,0.0,42.424244,42.424244,0.27179006,-0.29269174 +390.4095530509949,0.0,42.424244,42.424244,0.27179006,-0.29269174 +390.42104601860046,0.0,42.424244,42.424244,0.27179006,-0.3074921 +390.4295220375061,0.0,42.424244,42.424244,0.27179006,-0.3074921 +390.4409210681915,0.0,42.424244,42.424244,0.27179006,-0.3074921 +390.44976806640625,0.0,41.666668,41.666668,0.27179006,-0.3074921 +390.4602789878845,0.0,41.666668,41.666668,0.27179006,-0.32969272 +390.46952199935913,0.0,41.666668,41.666668,0.27179006,-0.32969272 +390.4814190864563,0.0,41.666668,41.666668,0.28116214,-0.32969272 +390.49042296409607,0.0,40.90909,40.90909,0.28116214,-0.32969272 +390.5012891292572,0.0,40.90909,40.90909,0.28116214,-0.32969272 +390.50985407829285,0.0,40.90909,40.90909,0.28116214,-0.32969272 +390.5220091342926,0.0,40.90909,40.90909,0.28116214,-0.3074921 +390.52951192855835,0.0,40.151516,40.151516,0.28116214,-0.3074921 +390.5400140285492,0.0,40.151516,40.151516,0.2905342,-0.3074921 +390.550822019577,0.0,40.151516,40.151516,0.2905342,-0.3074921 +390.559935092926,0.0,39.39394,39.39394,0.28116214,-0.3074921 +390.5699601173401,0.0,39.39394,39.39394,0.28116214,-0.30194196 +390.5802409648895,0.0,39.39394,39.39394,0.28116214,-0.30194196 +390.59044313430786,0.0,38.636364,38.636364,0.28116214,-0.30194196 +390.60307002067566,0.0,38.636364,38.636364,0.28116214,-0.30194196 +390.6120619773865,0.0,37.878788,37.878788,0.28116214,-0.30194196 +390.62107396125793,0.0,37.878788,37.878788,0.28116214,-0.30009192 +390.6295289993286,0.0,37.121216,37.121216,0.27179006,-0.30009192 +390.64065194129944,0.0,36.363636,36.363636,0.27179006,-0.30009192 +390.6499581336975,0.0,36.363636,36.363636,0.28116214,-0.30009192 +390.6602940559387,0.0,35.60606,35.60606,0.27179006,-0.3111922 +390.67005610466003,0.0,34.848484,34.848484,0.27179006,-0.3111922 +390.6796090602875,0.0,34.09091,34.09091,0.28116214,-0.3111922 +390.6931450366974,0.0,34.09091,34.09091,0.27179006,-0.3111922 +390.7009439468384,0.0,33.333336,33.333336,0.27179006,-0.3111922 +390.7111670970917,0.0,32.575756,32.575756,0.27179006,-0.3111922 +390.7200810909271,0.0,31.818182,31.818182,0.27179006,-0.29269174 +390.7307529449463,0.0,30.303032,30.303032,0.27179006,-0.29269174 +390.73951292037964,0.0,29.545454,29.545454,0.27179006,-0.29269174 +390.75090193748474,0.0,28.030302,28.030302,0.27179006,-0.29269174 +390.75986313819885,0.0,27.272728,27.272728,0.27179006,-0.29269174 +390.7734739780426,0.0,25.757576,25.757576,0.27179006,-0.30194196 +390.78298902511597,0.0,25.0,25.0,0.27179006,-0.30194196 +390.79223012924194,0.0,23.484848,23.484848,0.27179006,-0.30194196 +390.8003261089325,0.0,22.727274,22.727274,0.27179006,-0.30194196 +390.8102219104767,0.0,24.242424,24.242424,0.262418,-0.30194196 +390.8209900856018,0.0,28.78788,28.78788,0.262418,-0.30009192 +390.8294999599457,0.0,33.333336,33.333336,0.27179006,-0.30009192 +390.84012508392334,0.0,37.121216,37.121216,0.262418,-0.30009192 +390.84970903396606,0.0,40.151516,40.151516,0.262418,-0.30009192 +390.859491109848,0.0,43.181816,43.181816,0.25304592,-0.30009192 +390.87038493156433,0.0,46.21212,46.21212,0.25304592,-0.27049115 +390.8810489177704,0.0,49.242424,49.242424,0.24367386,-0.27049115 +390.8912880420685,0.0,51.515152,51.515152,0.25304592,-0.27049115 +390.9002959728241,0.0,53.78788,53.78788,0.24367386,-0.27049115 +390.9102749824524,0.0,55.30303,55.30303,0.24367386,-0.29824185 +390.92004013061523,0.0,57.57576,57.57576,0.24367386,-0.29824185 +390.9295279979706,0.0,59.090908,59.090908,0.24367386,-0.29824185 +390.9395430088043,0.0,59.848484,59.848484,0.24367386,-0.29824185 +390.95349502563477,0.0,61.363636,61.363636,0.24367386,-0.29824185 +390.9602780342102,0.0,62.121212,62.121212,0.24367386,-0.2760413 +390.97233390808105,0.0,62.878788,62.878788,0.24367386,-0.2760413 +390.97968792915344,0.0,62.878788,62.878788,0.24367386,-0.2760413 +390.99022793769836,0.0,62.878788,62.878788,0.24367386,-0.2760413 +390.99958992004395,0.0,62.878788,62.878788,0.24367386,-0.2760413 +391.0095360279083,0.0,62.878788,62.878788,0.24367386,-0.2760413 +391.0204029083252,0.0,62.878788,62.878788,0.24367386,-0.32414255 +391.02939105033875,0.0,62.878788,62.878788,0.24367386,-0.32414255 +391.0434911251068,0.0,62.121212,62.121212,0.23430179,-0.32414255 +391.050616979599,0.0,62.121212,62.121212,0.22492972,-0.32414255 +391.0602869987488,0.0,62.121212,62.121212,0.21555763,-0.30934215 +391.0696771144867,0.0,61.363636,61.363636,0.21555763,-0.30934215 +391.0803949832916,0.0,61.363636,61.363636,0.21555763,-0.30934215 +391.0893919467926,0.0,60.606064,60.606064,0.21555763,-0.30934215 +391.0994989871979,0.0,59.848484,59.848484,0.21555763,-0.30934215 +391.11024808883667,0.0,59.848484,59.848484,0.21555763,-0.30934215 +391.12131810188293,0.0,59.090908,59.090908,0.21555763,-0.29824185 +391.12940311431885,0.0,58.333332,58.333332,0.20618556,-0.29824185 +391.14067792892456,0.0,57.57576,57.57576,0.20618556,-0.29824185 +391.1522219181061,0.0,56.060604,56.060604,0.1968135,-0.29824185 +391.1598069667816,0.0,55.30303,55.30303,0.18744142,-0.29824185 +391.1700510978699,0.0,54.545456,54.545456,0.18744142,-0.29269174 +391.17947006225586,0.0,53.78788,53.78788,0.18744142,-0.29269174 +391.1901180744171,0.0,52.272724,52.272724,0.17806935,-0.29269174 +391.20007705688477,0.0,51.515152,51.515152,0.17806935,-0.29269174 +391.2102921009064,0.0,50.757576,50.757576,0.17806935,-0.30194196 +391.21989607810974,0.0,50.0,50.0,0.16869728,-0.30194196 +391.22952008247375,0.0,48.484848,48.484848,0.16869728,-0.30194196 +391.24137711524963,0.0,47.727272,47.727272,0.16869728,-0.30194196 +391.24969601631165,0.0,46.969696,46.969696,0.16869728,-0.30194196 +391.2594780921936,0.0,46.21212,46.21212,0.16869728,-0.30194196 +391.26953411102295,0.0,44.696968,44.696968,0.16869728,-0.28344148 +391.28013801574707,0.0,43.939392,43.939392,0.16869728,-0.28344148 +391.2899329662323,0.0,43.181816,43.181816,0.16869728,-0.28344148 +391.30354595184326,0.0,42.424244,42.424244,0.16869728,-0.28344148 +391.312087059021,0.0,41.666668,41.666668,0.16869728,-0.27974138 +391.3203251361847,0.0,40.90909,40.90909,0.16869728,-0.27974138 +391.32951402664185,0.0,40.151516,40.151516,0.15932521,-0.27974138 +391.3394730091095,0.0,39.39394,39.39394,0.15932521,-0.27974138 +391.35058212280273,0.0,38.636364,38.636364,0.15932521,-0.27974138 +391.3596019744873,0.0,37.878788,37.878788,0.15932521,-0.27974138 +391.37015104293823,0.0,37.121216,37.121216,0.15932521,-0.3222925 +391.37980103492737,0.0,37.121216,37.121216,0.15932521,-0.3222925 +391.38950395584106,0.0,36.363636,36.363636,0.15932521,-0.3222925 +391.40191197395325,0.0,35.60606,35.60606,0.15932521,-0.3222925 +391.410835981369,0.0,34.848484,34.848484,0.14995314,-0.3222925 +391.4194960594177,0.0,34.09091,34.09091,0.14995314,-0.28899163 +391.42951011657715,0.0,33.333336,33.333336,0.14995314,-0.28899163 +391.44065594673157,0.0,33.333336,33.333336,0.14995314,-0.28899163 +391.4496400356293,0.0,32.575756,32.575756,0.14995314,-0.28899163 +391.4602019786835,0.0,31.818182,31.818182,0.14995314,-0.28899163 +391.46962213516235,0.0,31.060606,31.060606,0.14058107,-0.29639184 +391.47957706451416,0.0,30.303032,30.303032,0.14058107,-0.29639184 +391.4900391101837,0.0,30.303032,30.303032,0.131209,-0.29639184 +391.49999499320984,0.0,29.545454,29.545454,0.131209,-0.29639184 +391.509614944458,0.0,28.78788,28.78788,0.131209,-0.29639184 +391.5193901062012,0.0,28.78788,28.78788,0.131209,-0.29824185 +391.53071212768555,0.0,28.030302,28.030302,0.12183693,-0.29824185 +391.53971695899963,0.0,28.030302,28.030302,0.12183693,-0.29824185 +391.55022406578064,0.0,27.272728,27.272728,0.12183693,-0.29824185 +391.55946493148804,0.0,27.272728,27.272728,0.12183693,-0.29824185 +391.5713601112366,0.0,26.515152,26.515152,0.12183693,-0.30009192 +391.5795021057129,0.0,26.515152,26.515152,0.11246486,-0.30009192 +391.593563079834,0.0,25.757576,25.757576,0.10309278,-0.30009192 +391.6027760505676,0.0,25.757576,25.757576,0.11246486,-0.30009192 +391.61177706718445,0.0,25.0,25.0,0.10309278,-0.30009192 +391.6207871437073,0.0,25.0,25.0,0.10309278,-0.32044247 +391.6295909881592,0.0,24.242424,24.242424,0.10309278,-0.32044247 +391.6402471065521,0.0,24.242424,24.242424,0.11246486,-0.32044247 +391.6494879722595,0.0,24.242424,24.242424,0.10309278,-0.32044247 +391.6593930721283,0.0,23.484848,23.484848,0.10309278,-0.32044247 +391.66945695877075,0.0,23.484848,23.484848,0.10309278,-0.26679102 +391.6814920902252,0.0,23.484848,23.484848,0.10309278,-0.26679102 +391.6928460597992,0.0,22.727274,22.727274,0.10309278,-0.26679102 +391.700572013855,0.0,22.727274,22.727274,0.10309278,-0.26679102 +391.7103159427643,0.0,22.727274,22.727274,0.09372071,-0.26679102 +391.7198679447174,0.0,21.969696,21.969696,0.09372071,-0.30194196 +391.7295219898224,0.0,21.969696,21.969696,0.09372071,-0.30194196 +391.739403963089,0.0,21.969696,21.969696,0.09372071,-0.30194196 +391.7497169971466,0.0,21.969696,21.969696,0.09372071,-0.30194196 +391.7603030204773,0.0,21.212122,21.212122,0.10309278,-0.30934215 +391.77359199523926,0.0,21.212122,21.212122,0.10309278,-0.30934215 +391.7794051170349,0.0,21.212122,21.212122,0.09372071,-0.30934215 +391.7904851436615,0.0,21.212122,21.212122,0.10309278,-0.30934215 +391.8009080886841,0.0,21.212122,21.212122,0.09372071,-0.30934215 +391.80991291999817,0.0,20.454544,20.454544,0.09372071,-0.30934215 +391.8199830055237,0.0,20.454544,20.454544,0.09372071,-0.27049115 +391.8294379711151,0.0,20.454544,20.454544,0.09372071,-0.27049115 +391.8403160572052,0.0,20.454544,20.454544,0.08434864,-0.27049115 +391.8535830974579,0.0,20.454544,20.454544,0.08434864,-0.27049115 +391.8602890968323,0.0,20.454544,20.454544,0.08434864,-0.28899163 +391.86999893188477,0.0,19.69697,19.69697,0.08434864,-0.28899163 +391.881973028183,0.0,19.69697,19.69697,0.08434864,-0.28899163 +391.89096212387085,0.0,19.69697,19.69697,0.08434864,-0.28899163 +391.89971804618835,0.0,19.69697,19.69697,0.08434864,-0.28899163 +391.90983510017395,0.0,19.69697,19.69697,0.08434864,-0.28899163 +391.9215841293335,0.0,19.69697,19.69697,0.09372071,-0.29824185 +391.9295229911804,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.9435999393463,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.951936006546,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.9602870941162,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.9703390598297,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.98102712631226,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.99003291130066,0.0,18.939394,18.939394,0.09372071,-0.29824185 +391.99941301345825,0.0,18.939394,18.939394,0.09372071,-0.29824185 +392.00957703590393,0.0,18.939394,18.939394,0.09372071,-0.29824185 +392.0228319168091,0.0,18.939394,18.939394,0.10309278,-0.29824185 +392.0295469760895,0.0,18.181818,18.181818,0.09372071,-0.29824185 +392.03949308395386,0.0,18.181818,18.181818,0.09372071,-0.29824185 +392.0529110431671,0.0,18.181818,18.181818,0.08434864,-0.29824185 +392.06030106544495,0.0,18.181818,18.181818,0.09372071,-0.28344148 +392.0693950653076,0.0,18.181818,18.181818,0.08434864,-0.28344148 +392.07965993881226,0.0,18.181818,18.181818,0.09372071,-0.28344148 +392.08951711654663,0.0,18.181818,18.181818,0.09372071,-0.28344148 +392.0994279384613,0.0,18.181818,18.181818,0.08434864,-0.28344148 +392.1103000640869,0.0,18.181818,18.181818,0.08434864,-0.29824185 +392.12283992767334,0.0,18.181818,18.181818,0.08434864,-0.29824185 +392.12954592704773,0.0,18.181818,18.181818,0.08434864,-0.29824185 +392.1420760154724,0.0,17.424242,17.424242,0.08434864,-0.29824185 +392.15098214149475,0.0,17.424242,17.424242,0.08434864,-0.29824185 +392.1599040031433,0.0,17.424242,17.424242,0.08434864,-0.29824185 +392.16940999031067,0.0,17.424242,17.424242,0.08434864,-0.3148923 +392.1804540157318,0.0,17.424242,17.424242,0.09372071,-0.3148923 +392.1894769668579,0.0,17.424242,17.424242,0.09372071,-0.3148923 +392.2003879547119,0.0,17.424242,17.424242,0.08434864,-0.3148923 +392.210294008255,0.0,17.424242,17.424242,0.08434864,-0.29084167 +392.21947598457336,0.0,17.424242,17.424242,0.07497657,-0.29084167 +392.229532957077,0.0,17.424242,17.424242,0.07497657,-0.29084167 +392.2401649951935,0.0,17.424242,17.424242,0.07497657,-0.29084167 +392.2495560646057,0.0,17.424242,17.424242,0.0656045,-0.29084167 +392.26020312309265,0.0,17.424242,17.424242,0.07497657,-0.29084167 +392.26940298080444,0.0,17.424242,17.424242,0.07497657,-0.29639184 +392.2794899940491,0.0,17.424242,17.424242,0.07497657,-0.29639184 +392.2932860851288,0.0,17.424242,17.424242,0.07497657,-0.29639184 +392.29942893981934,0.0,17.424242,17.424242,0.07497657,-0.29639184 +392.30973505973816,0.0,17.424242,17.424242,0.07497657,-0.29639184 +392.3204290866852,0.0,17.424242,17.424242,0.07497657,-0.27974138 +392.3295359611511,0.0,17.424242,17.424242,0.08434864,-0.27974138 +392.34104800224304,0.0,17.424242,17.424242,0.08434864,-0.27974138 +392.3500349521637,0.0,17.424242,17.424242,0.08434864,-0.27974138 +392.3603150844574,0.0,18.181818,18.181818,0.07497657,-0.3074921 +392.36954498291016,0.0,18.181818,18.181818,0.07497657,-0.3074921 +392.38070607185364,0.0,18.181818,18.181818,0.07497657,-0.3074921 +392.3916211128235,0.0,18.939394,18.939394,0.07497657,-0.3074921 +392.40069794654846,0.0,18.939394,18.939394,0.08434864,-0.3074921 +392.40959191322327,0.0,19.69697,19.69697,0.08434864,-0.3074921 +392.4219090938568,0.0,19.69697,19.69697,0.08434864,-0.3185924 +392.4294419288635,0.0,20.454544,20.454544,0.08434864,-0.3185924 +392.439551115036,0.0,20.454544,20.454544,0.08434864,-0.3185924 +392.450562953949,0.0,21.212122,21.212122,0.08434864,-0.3185924 +392.4595699310303,0.0,21.212122,21.212122,0.08434864,-0.3185924 +392.4707770347595,0.0,21.969696,21.969696,0.08434864,-0.29639184 +392.48093008995056,0.0,21.969696,21.969696,0.08434864,-0.29639184 +392.4898569583893,0.0,21.969696,21.969696,0.07497657,-0.29639184 +392.5027379989624,0.0,21.969696,21.969696,0.07497657,-0.29639184 +392.5117299556732,0.0,21.969696,21.969696,0.07497657,-0.29639184 +392.5206940174103,0.0,21.969696,21.969696,0.07497657,-0.30194196 +392.529531955719,0.0,21.969696,21.969696,0.08434864,-0.30194196 +392.53942799568176,0.0,21.969696,21.969696,0.08434864,-0.30194196 +392.54961109161377,0.0,21.969696,21.969696,0.08434864,-0.30194196 +392.55944204330444,0.0,21.969696,21.969696,0.08434864,-0.30194196 +392.57012701034546,0.0,21.969696,21.969696,0.08434864,-0.3074921 +392.5801260471344,0.0,21.212122,21.212122,0.09372071,-0.3074921 +392.59075713157654,0.0,21.212122,21.212122,0.09372071,-0.3074921 +392.601567029953,0.0,21.212122,21.212122,0.09372071,-0.3074921 +392.6105670928955,0.0,20.454544,20.454544,0.09372071,-0.3074921 +392.61955213546753,0.0,20.454544,20.454544,0.09372071,-0.3111922 +392.6294720172882,0.0,19.69697,19.69697,0.10309278,-0.3111922 +392.6396179199219,0.0,19.69697,19.69697,0.09372071,-0.3111922 +392.6503539085388,0.0,18.939394,18.939394,0.08434864,-0.3111922 +392.6603190898895,0.0,18.181818,18.181818,0.07497657,-0.29269174 +392.6734290122986,0.0,18.181818,18.181818,0.08434864,-0.29269174 +392.68243408203125,0.0,17.424242,17.424242,0.07497657,-0.29269174 +392.6895089149475,0.0,16.666668,16.666668,0.07497657,-0.29269174 +392.6999659538269,0.0,15.909091,15.909091,0.07497657,-0.29269174 +392.7105519771576,0.0,15.151516,15.151516,0.0656045,-0.29269174 +392.7195551395416,0.0,14.39394,14.39394,0.07497657,-0.30194196 +392.72953701019287,0.0,13.636364,13.636364,0.07497657,-0.30194196 +392.73950600624084,0.0,12.878788,12.878788,0.0656045,-0.30194196 +392.7503991127014,0.0,12.121212,12.121212,0.0656045,-0.30194196 +392.7603220939636,0.0,11.363637,11.363637,0.05623243,-0.3111922 +392.77130103111267,0.0,9.848485,9.848485,0.046860356,-0.3111922 +392.78123903274536,0.0,9.090909,9.090909,0.037488285,-0.3111922 +392.790225982666,0.0,8.333334,8.333334,0.028116215,-0.3111922 +392.8006069660187,0.0,7.575758,7.575758,0.028116215,-0.3111922 +392.80959391593933,0.0,6.818182,6.818182,0.018744143,-0.3111922 +392.8194739818573,0.0,6.060606,6.060606,0.009372071,-0.29269174 +392.82950711250305,0.0,6.060606,6.060606,0.0,-0.29269174 +392.84225511550903,0.0,5.3030305,5.3030305,0.0,-0.29269174 +392.8529369831085,0.0,4.5454545,4.5454545,0.0,-0.29269174 +392.8603229522705,0.0,3.787879,3.787879,0.0,-0.28899163 +392.87104892730713,0.0,3.787879,3.787879,0.0,-0.28899163 +392.880038022995,0.0,3.030303,3.030303,0.0,-0.28899163 +392.89069509506226,0.0,2.2727273,2.2727273,0.0,-0.28899163 +392.8996801376343,0.0,2.2727273,2.2727273,0.0,-0.28899163 +392.90975308418274,0.0,1.5151515,1.5151515,0.0,-0.28899163 +392.92284893989563,0.0,1.5151515,1.5151515,0.0,-0.3074921 +392.9295279979706,0.0,0.75757575,0.75757575,0.0,-0.3074921 +392.940309047699,0.0,0.75757575,0.75757575,0.0,-0.3074921 +392.9494950771332,0.0,0.75757575,0.75757575,0.0,-0.3074921 +392.9603009223938,0.0,0.0,0.0,0.0,-0.27974138 +392.96987795829773,0.0,0.0,0.0,0.0,-0.27974138 +392.98023891448975,0.0,0.0,0.0,0.0,-0.27974138 +392.98976612091064,0.0,0.0,0.0,0.0,-0.27974138 +392.99979996681213,0.0,0.0,0.0,0.0,-0.27974138 +393.01031613349915,0.0,0.0,0.0,0.0,-0.28899163 +393.0228531360626,0.0,0.0,0.0,0.0,-0.28899163 +393.0295510292053,0.0,0.0,0.0,0.0,-0.28899163 +393.04175090789795,0.0,0.0,0.0,0.0,-0.28899163 +393.0507230758667,0.0,0.0,0.0,0.0,-0.28899163 +393.0596981048584,0.0,0.0,0.0,0.0,-0.28899163 +393.0694100856781,0.0,0.0,0.0,0.0,-0.25569075 +393.0795199871063,0.0,0.0,0.0,0.0,-0.25569075 +393.0898230075836,0.0,0.0,0.0,0.0,-0.25569075 +393.10182905197144,0.0,0.0,0.0,0.0,-0.25569075 +393.1096489429474,0.0,0.0,0.0,0.0,-0.25569075 +393.1225731372833,0.0,0.0,0.0,0.0,-0.28159142 +393.12954902648926,0.0,0.0,0.0,0.0,-0.28159142 +393.1400189399719,0.0,0.0,0.0,0.0,-0.28159142 +393.1495180130005,0.0,0.0,0.0,0.0,-0.28159142 +393.16031408309937,0.0,0.0,0.0,0.0,-0.29269174 +393.1699080467224,0.0,0.0,0.0,0.0,-0.29269174 +393.1798710823059,0.0,0.0,0.0,0.0,-0.29269174 +393.1937041282654,0.0,0.0,0.0,0.0,-0.29269174 +393.20004391670227,0.0,0.0,0.0,0.0,-0.29269174 +393.20952701568604,0.0,0.0,0.0,0.0,-0.29269174 +393.2203209400177,0.0,0.0,0.0,0.0,-0.29269174 +393.22990107536316,0.0,0.0,0.0,0.0,-0.29269174 +393.23941111564636,0.0,0.0,0.0,0.0,-0.29269174 +393.25095891952515,0.0,0.0,0.0,0.0,-0.29269174 +393.25996708869934,0.0,0.0,0.0,0.0,-0.29269174 +393.26991295814514,0.0,0.0,0.0,0.0,-0.3074921 +393.27952003479004,0.0,0.0,0.0,0.0,-0.3074921 +393.2922930717468,0.0,0.0,0.0,0.0,-0.3074921 +393.3011190891266,0.0,0.0,0.0,0.0,-0.3074921 +393.31015396118164,0.0,0.0,0.0,0.0,-0.3074921 +393.3202340602875,0.0,0.0,0.0,0.0,-0.30194196 +393.3295359611511,0.0,0.0,0.0,0.0,-0.30194196 +393.3395359516144,0.0,0.0,0.0,0.0,-0.30194196 +393.3500189781189,0.0,0.0,0.0,0.0,-0.30194196 +393.35992312431335,0.0,0.0,0.0,0.0,-0.30194196 +393.3718481063843,0.0,0.0,0.0,0.0,-0.29084167 +393.38146591186523,0.0,0.0,0.0,0.0,-0.29084167 +393.3903880119324,0.0,0.0,0.0,0.0,-0.29084167 +393.4004909992218,0.0,0.0,0.0,0.0,-0.29084167 +393.4100890159607,0.0,0.0,0.0,0.0,-0.29084167 +393.42209100723267,0.0,0.0,0.0,0.0,-0.29084167 +393.42946004867554,0.0,0.0,0.0,0.0,-0.29084167 +393.4401009082794,0.0,0.0,0.0,0.0,-0.29084167 +393.44995498657227,0.0,0.0,0.0,0.0,-0.29084167 +393.4603180885315,0.0,0.0,0.0,0.0,-0.3074921 +393.4695580005646,0.0,0.0,0.0,0.0,-0.3074921 +393.4795460700989,0.0,0.0,0.0,0.0,-0.3074921 +393.4909451007843,0.0,0.0,0.0,0.0,-0.3074921 +393.49990797042847,0.0,0.0,0.0,0.0,-0.3074921 +393.5121319293976,0.0,0.0,0.0,0.0,-0.30009192 +393.5211720466614,0.0,0.0,0.0,0.0,-0.30009192 +393.5295491218567,0.0,0.0,0.0,0.0,-0.30009192 +393.53999495506287,0.0,0.0,0.0,0.0,-0.30009192 +393.5497109889984,0.0,0.0,0.0,0.0,-0.30009192 +393.55980110168457,0.0,0.0,0.0,0.0,-0.30009192 +393.57179594039917,0.0,0.0,0.0,0.0,-0.29824185 +393.57976508140564,0.0,0.0,0.0,0.0,-0.29824185 +393.5897750854492,0.0,0.0,0.0,0.0,-0.29824185 +393.59954595565796,0.0,0.0,0.0,0.0,-0.29824185 +393.60970306396484,0.0,0.0,0.0,0.0,-0.29824185 +393.62026596069336,0.0,0.0,0.0,0.0,-0.29639184 +393.6295599937439,0.0,0.0,0.0,0.0,-0.29639184 +393.6400361061096,0.0,0.0,0.0,0.0,-0.29639184 +393.6526470184326,0.0,0.0,0.0,0.0,-0.29639184 +393.6603260040283,0.0,0.0,0.0,0.0,-0.28344148 +393.6706259250641,0.0,0.0,0.0,0.0,-0.28344148 +393.67959213256836,0.0,0.0,0.0,0.0,-0.28344148 +393.6922800540924,0.0,0.0,0.0,0.0,-0.28344148 +393.69984698295593,0.0,0.0,0.0,0.0,-0.28344148 +393.71028900146484,0.0,0.0,0.0,0.0,-0.28344148 +393.72006607055664,0.0,0.0,0.0,0.0,-0.30194196 +393.7295460700989,0.0,0.0,0.0,0.0,-0.30194196 +393.7425010204315,0.0,0.0,0.0,0.0,-0.30194196 +393.7514970302582,0.0,0.0,0.0,0.0,-0.30194196 +393.7596969604492,0.0,0.0,0.0,0.0,-0.30194196 +393.76946091651917,0.0,0.0,0.0,0.0,-0.29084167 +393.78154706954956,0.0,0.0,0.0,0.0,-0.29084167 +393.7905111312866,0.0,0.0,0.0,0.0,-0.29084167 +393.8003361225128,0.0,0.0,0.0,0.0,-0.29084167 +393.8095860481262,0.0,0.0,0.0,0.0,-0.29084167 +393.82013511657715,0.0,0.0,0.0,0.0,-0.29269174 +393.829549074173,0.0,0.0,0.0,0.0,-0.29269174 +393.84133100509644,0.0,0.0,0.0,0.0,-0.29269174 +393.85032296180725,0.0,0.0,0.0,0.0,-0.29269174 +393.8595869541168,0.0,0.0,0.0,0.0,-0.29269174 +393.86952805519104,0.0,0.0,0.0,0.0,-0.29084167 +393.88071393966675,0.0,0.0,0.0,0.0,-0.29084167 +393.8896129131317,0.0,0.0,0.0,0.0,-0.29084167 +393.8994140625,0.0,0.0,0.0,0.0,-0.29084167 +393.90993905067444,0.0,0.0,0.0,0.0,-0.29084167 +393.92052698135376,0.0,0.0,0.0,0.0,-0.30009192 +393.9293990135193,0.0,0.0,0.0,0.0,-0.30009192 +393.94017601013184,0.0,0.0,0.0,0.0,-0.30009192 +393.951229095459,0.0,0.0,0.0,0.0,-0.30009192 +393.95940494537354,0.0,0.0,0.0,0.0,-0.30009192 +393.96984791755676,0.0,0.0,0.0,0.0,-0.3111922 +393.9804561138153,0.0,0.0,0.0,0.0,-0.3111922 +393.98946714401245,0.0,0.0,0.0,0.0,-0.3111922 +394.0002601146698,0.0,0.0,0.0,0.0,-0.3111922 +394.01031398773193,0.0,0.0,0.0,0.0,-0.28159142 +394.0195209980011,0.0,0.0,0.0,0.0,-0.28159142 +394.02956199645996,0.0,0.0,0.0,0.0,-0.28159142 +394.04102206230164,0.0,0.0,0.0,0.0,-0.28159142 +394.05007696151733,0.0,0.0,0.0,0.0,-0.28159142 +394.0603311061859,0.0,0.0,0.0,0.0,-0.29084167 +394.0704929828644,0.0,0.0,0.0,0.0,-0.29084167 +394.0795030593872,0.0,0.0,0.0,0.0,-0.29084167 +394.0929391384125,0.0,0.0,0.0,0.0,-0.29084167 +394.10191202163696,0.0,0.0,0.0,0.0,-0.29084167 +394.1103210449219,0.0,0.0,0.0,0.0,-0.28899163 +394.1196200847626,0.0,0.0,0.0,0.0,-0.28899163 +394.1303040981293,0.0,0.0,0.0,0.0,-0.28899163 +394.1395559310913,0.0,0.0,0.0,0.0,-0.28899163 +394.15026807785034,0.0,0.0,0.0,0.0,-0.28899163 +394.1603310108185,0.0,0.0,0.0,0.0,-0.29269174 +394.1695339679718,0.0,0.0,0.0,0.0,-0.29269174 +394.18053007125854,0.0,0.0,0.0,0.0,-0.29269174 +394.1915760040283,0.0,0.0,0.0,0.0,-0.29269174 +394.19968008995056,0.0,0.0,0.0,0.0,-0.29269174 +394.2097430229187,0.0,0.0,0.0,0.0,-0.29269174 +394.2194631099701,0.0,0.0,0.0,0.0,-0.29824185 +394.22955894470215,0.0,0.0,0.0,0.0,-0.29824185 +394.24158811569214,0.0,0.0,0.0,0.0,-0.29824185 +394.24962306022644,0.0,0.0,0.0,0.0,-0.29824185 +394.25960397720337,0.0,0.0,0.0,0.0,-0.29824185 +394.2726390361786,0.0,0.0,0.0,0.0,-0.30194196 +394.2816231250763,0.0,0.0,0.0,0.0,-0.30194196 +394.29061913490295,0.0,0.0,0.0,0.0,-0.30194196 +394.2996029853821,0.0,0.0,0.0,0.0,-0.30194196 +394.3105459213257,0.0,0.0,0.0,0.0,-0.30194196 +394.32233905792236,0.0,0.0,0.0,0.0,-0.30379203 +394.3295359611511,0.0,0.0,0.0,0.0,-0.30379203 +394.34063506126404,0.0,0.0,0.0,0.0,-0.30379203 +394.3496460914612,0.0,0.0,0.0,0.0,-0.30379203 +394.360328912735,0.0,0.0,0.0,0.0,-0.3074921 +394.37104201316833,0.0,0.0,0.0,0.0,-0.3074921 +394.3796110153198,0.0,0.0,0.0,0.0,-0.3074921 +394.38945293426514,0.0,0.0,0.0,0.0,-0.3074921 +394.40368008613586,0.0,0.0,0.0,0.0,-0.3074921 +394.40973591804504,0.0,0.0,0.0,0.0,-0.3074921 +394.421669960022,0.0,0.0,0.0,0.0,-0.30009192 +394.4295449256897,0.0,0.0,0.0,0.0,-0.30009192 +394.4397020339966,0.0,0.0,0.0,0.0,-0.30009192 +394.4510040283203,0.0,0.0,0.0,0.0,-0.30009192 +394.4601860046387,0.0,0.0,0.0,0.0,-0.30009192 +394.47032594680786,0.0,0.0,0.0,0.0,-0.29824185 +394.4838180541992,0.0,0.0,0.0,0.0,-0.29824185 +394.4919979572296,0.0,0.0,0.0,0.0,-0.29824185 +394.5027070045471,0.0,0.0,0.0,0.0,-0.29824185 +394.509624004364,0.0,0.0,0.0,0.0,-0.29824185 +394.5207440853119,0.0,0.0,0.0,0.0,-0.28714156 +394.5295350551605,0.0,0.0,0.0,0.0,-0.28714156 +394.5404291152954,0.0,0.0,0.0,0.0,-0.28714156 +394.55118203163147,0.0,0.0,0.0,0.0,-0.28714156 +394.559937953949,0.0,0.0,0.0,0.0,-0.28714156 +394.570552110672,0.0,0.0,0.0,0.0,-0.3074921 +394.5818130970001,0.0,0.0,0.0,0.0,-0.3074921 +394.5927700996399,0.0,0.0,0.0,0.0,-0.3074921 +394.6017680168152,0.0,0.0,0.0,0.0,-0.3074921 +394.6107859611511,0.0,0.0,0.0,0.0,-0.3074921 +394.6197819709778,0.0,0.0,0.0,0.0,-0.29824185 +394.6295099258423,0.0,0.0,0.0,0.0,-0.29824185 +394.6396429538727,0.0,0.0,0.0,0.0,-0.29824185 +394.65003514289856,0.0,0.0,0.0,0.0,-0.29824185 +394.6603479385376,0.0,0.0,0.0,0.0,-0.31304228 +394.67384910583496,0.0,0.0,0.0,0.0,-0.31304228 +394.6828269958496,0.0,0.0,0.0,0.0,-0.31304228 +394.69181394577026,0.0,0.0,0.0,0.0,-0.31304228 +394.69947695732117,0.0,0.0,0.0,0.0,-0.31304228 +394.70982909202576,0.0,0.0,0.0,0.0,-0.31304228 +394.7219099998474,0.0,0.0,0.0,0.0,-0.30194196 +394.729553937912,0.0,0.0,0.0,0.0,-0.30194196 +394.7398850917816,0.0,0.0,0.0,0.0,-0.30194196 +394.7538421154022,0.0,0.0,0.0,0.0,-0.30194196 +394.76034903526306,0.0,0.0,0.0,0.0,-0.30194196 +394.7696340084076,0.0,0.0,0.0,0.0,-0.30194196 +394.7811961174011,0.0,0.0,0.0,0.0,-0.30194196 +394.7901289463043,0.0,0.0,0.0,0.0,-0.30194196 +394.7999119758606,0.0,0.0,0.0,0.0,-0.30194196 +394.811763048172,0.0,0.0,0.0,0.0,-0.30194196 +394.81972908973694,0.0,0.0,0.0,0.0,-0.31304228 +394.8295519351959,0.0,0.0,0.0,0.0,-0.31304228 +394.8435950279236,0.0,0.0,0.0,0.0,-0.31304228 +394.85254096984863,0.0,0.0,0.0,0.0,-0.31304228 +394.8603219985962,0.0,0.0,0.0,0.0,-0.29824185 +394.87036895751953,0.0,0.0,0.0,0.0,-0.29824185 +394.88095712661743,0.0,0.0,0.0,0.0,-0.29824185 +394.88998103141785,0.0,0.0,0.0,0.0,-0.29824185 +394.8996241092682,0.0,0.0,0.0,0.0,-0.29824185 +394.91033601760864,0.0,0.0,0.0,0.0,-0.3074921 +394.9195821285248,0.0,0.0,0.0,0.0,-0.3074921 +394.9316580295563,0.0,0.0,0.0,0.0,-0.3074921 +394.9416971206665,0.0,0.0,0.0,0.0,-0.3074921 +394.9506139755249,0.0,0.0,0.0,0.0,-0.3074921 +394.9595100879669,0.0,0.0,0.0,0.0,-0.3074921 +394.9696500301361,0.0,0.0,0.0,0.0,-0.29824185 +394.9800319671631,0.0,0.0,0.0,0.0,-0.29824185 +394.98955607414246,0.0,0.0,0.0,0.0,-0.29824185 +395.0004680156708,0.0,0.0,0.0,0.0,-0.29824185 +395.00945711135864,0.0,0.0,0.0,0.0,-0.29824185 +395.02192902565,0.0,0.0,0.0,0.0,-0.28899163 +395.02957105636597,0.0,0.0,0.0,0.0,-0.28899163 +395.0397529602051,0.0,0.0,0.0,0.0,-0.28899163 +395.0521020889282,0.0,0.0,0.0,0.0,-0.28899163 +395.06033205986023,0.0,0.0,0.0,0.0,-0.29824185 +395.070130109787,0.0,0.0,0.0,0.0,-0.29824185 +395.07941794395447,0.0,0.0,0.0,0.0,-0.29824185 +395.0903580188751,0.0,0.0,0.0,0.0,-0.29824185 +395.1007499694824,0.0,0.0,0.0,0.0,-0.29824185 +395.1103219985962,0.0,0.0,0.0,0.0,-0.3074921 +395.1200189590454,0.0,0.0,0.0,0.0,-0.3074921 +395.12955808639526,0.0,0.0,0.0,0.0,-0.3074921 +395.14216899871826,0.0,0.0,0.0,0.0,-0.3074921 +395.15115904808044,0.0,0.0,0.0,0.0,-0.3074921 +395.1596620082855,0.0,0.0,0.0,0.0,-0.3074921 +395.16940999031067,0.0,0.0,0.0,0.0,-0.29639184 +395.18018102645874,0.0,0.0,0.0,0.0,-0.29639184 +395.1913409233093,0.0,0.0,0.0,0.0,-0.29639184 +395.20024704933167,0.0,0.0,0.0,0.0,-0.29639184 +395.2099919319153,0.0,0.0,0.0,0.0,-0.29639184 +395.22056913375854,0.0,0.0,0.0,0.0,-0.29084167 +395.22938799858093,0.0,0.0,0.0,0.0,-0.29084167 +395.2402799129486,0.0,0.0,0.0,0.0,-0.29084167 +395.2502341270447,0.0,0.0,0.0,0.0,-0.29084167 +395.2594699859619,0.0,0.0,0.0,0.0,-0.29084167 +395.2700619697571,0.0,0.0,0.0,0.0,-0.30194196 +395.2804980278015,0.0,0.0,0.0,0.0,-0.30194196 +395.28943490982056,0.0,0.0,0.0,0.0,-0.30194196 +395.3039040565491,0.0,0.0,0.0,0.0,-0.30194196 +395.3112530708313,0.0,0.0,0.0,0.0,-0.30194196 +395.31958198547363,0.0,0.0,0.0,0.0,-0.32044247 +395.3295409679413,0.0,0.0,0.0,0.0,-0.32044247 +395.3403220176697,0.0,0.0,0.0,0.0,-0.32044247 +395.34954595565796,0.0,0.0,0.0,0.0,-0.32044247 +395.3599319458008,0.0,0.0,0.0,0.0,-0.32044247 +395.3696529865265,0.0,0.0,0.0,0.0,-0.29639184 +395.38206005096436,0.0,0.0,0.0,0.0,-0.29639184 +395.3933050632477,0.0,0.0,0.0,0.0,-0.29639184 +395.403373003006,0.0,0.0,0.0,0.0,-0.29639184 +395.41214203834534,0.0,0.0,0.0,0.0,-0.30009192 +395.4193890094757,0.0,0.0,0.0,0.0,-0.30009192 +395.4295599460602,0.0,0.0,0.0,0.0,-0.30009192 +395.4396140575409,0.0,0.0,0.0,0.0,-0.30009192 +395.44977593421936,0.0,0.0,0.0,0.0,-0.30009192 +395.4603269100189,0.0,0.0,0.0,0.0,-0.30194196 +395.46946907043457,0.0,0.0,0.0,0.0,-0.30194196 +395.48059606552124,0.0,0.0,0.0,0.0,-0.30194196 +395.4913070201874,0.0,0.0,0.0,0.0,-0.30194196 +395.50244212150574,0.0,0.0,0.0,0.0,-0.30194196 +395.5114459991455,0.0,0.0,0.0,0.0,-0.30194196 +395.520455121994,0.0,0.0,0.0,0.0,-0.29269174 +395.529452085495,0.0,0.0,0.0,0.0,-0.29269174 +395.5396161079407,0.0,0.0,0.0,0.0,-0.29269174 +395.54964900016785,0.0,0.0,0.0,0.0,-0.29269174 +395.56034302711487,0.0,0.0,0.0,0.0,-0.30934215 +395.57077503204346,0.0,0.0,0.0,0.0,-0.30934215 +395.58349990844727,0.0,0.0,0.0,0.0,-0.30934215 +395.5899751186371,0.0,0.0,0.0,0.0,-0.30934215 +395.6005480289459,0.0,0.0,0.0,0.0,-0.30934215 +395.6103980541229,0.0,0.0,0.0,0.0,-0.30934215 +395.6195340156555,0.0,0.0,0.0,0.0,-0.30934215 +395.6294720172882,0.0,0.0,0.0,0.0,-0.30934215 +395.6439390182495,0.0,0.0,0.0,0.0,-0.30934215 +395.6539330482483,0.0,0.0,0.0,0.0,-0.30934215 +395.66034507751465,0.0,0.0,0.0,0.0,-0.30194196 +395.67281913757324,0.0,0.0,0.0,0.0,-0.30194196 +395.67965507507324,0.0,0.0,0.0,0.0,-0.30194196 +395.69065713882446,0.0,0.0,0.0,0.0,-0.30194196 +395.69959902763367,0.0,0.0,0.0,0.0,-0.30194196 +395.70960211753845,0.0,0.0,0.0,0.0,-0.30194196 +395.72104597091675,0.0,0.0,0.0,0.0,-0.28344148 +395.72957611083984,0.0,0.0,0.0,0.0,-0.28344148 +395.74056792259216,0.0,0.0,0.0,0.0,-0.28344148 +395.75309014320374,0.0,0.0,0.0,0.0,-0.28344148 +395.76034212112427,0.0,0.0,0.0,0.0,-0.29824185 +395.7709310054779,0.0,0.0,0.0,0.0,-0.29824185 +395.77985405921936,0.0,0.0,0.0,0.0,-0.29824185 +395.7906301021576,0.0,0.0,0.0,0.0,-0.29824185 +395.7996389865875,0.0,0.0,0.0,0.0,-0.29824185 +395.80965995788574,0.0,0.0,0.0,0.0,-0.29824185 +395.8193941116333,0.0,0.0,0.0,0.0,-0.28714156 +395.8303949832916,0.0,0.0,0.0,0.0,-0.28714156 +395.83957505226135,0.0,0.0,0.0,0.0,-0.28714156 +395.85119891166687,0.0,0.0,0.0,0.0,-0.28714156 +395.8601200580597,0.0,0.0,0.0,0.0,-0.28714156 +395.87056708335876,0.0,0.0,0.0,0.0,-0.30194196 +395.8806710243225,0.0,0.0,0.0,0.0,-0.30194196 +395.8896689414978,0.0,0.0,0.0,0.0,-0.30194196 +395.90395307540894,0.0,0.0,0.0,0.0,-0.30194196 +395.9103510379791,0.0,0.0,0.0,0.0,-0.29639184 +395.92034006118774,0.0,0.0,0.0,0.0,-0.29639184 +395.92956495285034,0.0,0.0,0.0,0.0,-0.29639184 +395.93949007987976,0.0,0.0,0.0,0.0,-0.29639184 +395.9501929283142,0.0,0.0,0.0,0.0,-0.29639184 +395.96034693717957,0.0,0.0,0.0,0.0,-0.32414255 +395.96960496902466,0.0,0.0,0.0,0.0,-0.32414255 +395.979700088501,0.0,0.0,0.0,0.0,-0.32414255 +395.99113607406616,0.0,0.0,0.0,0.0,-0.32414255 +396.00056195259094,0.0,0.0,0.0,0.0,-0.32414255 +396.0103521347046,0.0,0.0,0.0,0.0,-0.28344148 +396.0194230079651,0.0,0.0,0.0,0.0,-0.28344148 +396.0295441150665,0.0,0.0,0.0,0.0,-0.28344148 +396.04272508621216,0.0,0.0,0.0,0.0,-0.28344148 +396.05143094062805,0.0,0.0,0.0,0.0,-0.28344148 +396.0603439807892,0.0,0.0,0.0,0.0,-0.30009192 +396.0696220397949,0.0,0.0,0.0,0.0,-0.30009192 +396.0794589519501,0.0,0.0,0.0,0.0,-0.30009192 +396.0919690132141,0.0,0.0,0.0,0.0,-0.30009192 +396.1008930206299,0.0,0.0,0.0,0.0,-0.30009192 +396.1097960472107,0.0,0.0,0.0,0.0,-0.30009192 +396.12185406684875,0.0,0.0,0.0,0.0,-0.28344148 +396.12958312034607,0.0,0.0,0.0,0.0,-0.28344148 +396.14159893989563,0.0,0.0,0.0,0.0,-0.28344148 +396.15060591697693,0.0,0.0,0.0,0.0,-0.28344148 +396.1595780849457,0.0,0.0,0.0,0.0,-0.28344148 +396.169646024704,0.0,0.0,0.0,0.0,-0.29824185 +396.1798279285431,0.0,0.0,0.0,0.0,-0.29824185 +396.19006395339966,0.0,0.0,0.0,0.0,-0.29824185 +396.199599981308,0.0,0.0,0.0,0.0,-0.29824185 +396.2103590965271,0.0,0.0,0.0,0.0,-0.28899163 +396.2218599319458,0.0,0.0,0.0,0.0,-0.28899163 +396.2295780181885,0.0,0.0,0.0,0.0,-0.28899163 +396.2404451370239,0.0,0.0,0.0,0.0,-0.28899163 +396.2494161128998,0.0,0.0,0.0,0.0,-0.28899163 +396.2603540420532,0.0,0.0,0.0,0.0,-0.28899163 +396.2703130245209,0.0,0.0,0.0,0.0,-0.28899163 +396.2839901447296,0.0,0.0,0.0,0.0,-0.28899163 +396.29399609565735,0.0,0.0,0.0,0.0,-0.28899163 +396.299978017807,0.0,0.0,0.0,0.0,-0.28899163 +396.3108811378479,0.0,0.0,0.0,0.0,-0.28899163 +396.3213040828705,0.0,0.0,0.0,0.0,-0.29084167 +396.32959604263306,0.0,0.0,0.0,0.0,-0.29084167 +396.3397901058197,0.0,0.0,0.0,0.0,-0.29084167 +396.35058093070984,0.0,0.0,0.0,0.0,-0.29084167 +396.3595039844513,0.0,0.0,0.0,0.0,-0.29084167 +396.37399411201477,0.0,0.0,0.0,0.0,-0.3185924 +396.38190603256226,0.0,0.0,0.0,0.0,-0.3185924 +396.390487909317,0.0,0.0,0.0,0.0,-0.3185924 +396.4021620750427,0.0,0.0,0.0,0.0,-0.3185924 +396.4111239910126,0.0,0.0,0.0,0.0,-0.3185924 +396.42012095451355,0.0,0.0,0.0,0.0,-0.29269174 +396.4295699596405,0.0,0.0,0.0,0.0,-0.29269174 +396.4397931098938,0.0,0.0,0.0,0.0,-0.29269174 +396.4540009498596,0.0,0.0,0.0,0.0,-0.29269174 +396.4595699310303,0.0,0.0,0.0,0.0,-0.29269174 +396.4694170951843,0.0,0.0,0.0,0.0,-0.30009192 +396.48035407066345,0.0,0.0,0.0,0.0,-0.30009192 +396.49096393585205,0.0,0.0,0.0,0.0,-0.30009192 +396.5009880065918,0.0,0.0,0.0,0.0,-0.30009192 +396.50996708869934,0.0,0.0,0.0,0.0,-0.30009192 +396.5198290348053,0.0,0.0,0.0,0.0,-0.29269174 +396.5295510292053,0.0,0.0,0.0,0.0,-0.29269174 +396.5440239906311,0.0,0.0,0.0,0.0,-0.29269174 +396.55403304100037,0.0,0.0,0.0,0.0,-0.29269174 +396.56035900115967,0.0,0.0,0.0,0.0,-0.31304228 +396.57285809516907,0.0,0.0,0.0,0.0,-0.31304228 +396.5818500518799,0.0,0.0,0.0,0.0,-0.31304228 +396.5895631313324,0.0,0.0,0.0,0.0,-0.31304228 +396.5998170375824,0.0,0.0,0.0,0.0,-0.31304228 +396.60986399650574,0.0,0.0,0.0,0.0,-0.31304228 +396.62041902542114,0.0,0.0,0.0,0.0,-0.3074921 +396.6305339336395,0.0,0.0,0.0,0.0,-0.3074921 +396.6440191268921,0.0,0.0,0.0,0.0,-0.3074921 +396.65051102638245,0.0,0.0,0.0,0.0,-0.3074921 +396.6603500843048,0.0,0.0,0.0,0.0,-0.30009192 +396.67152309417725,0.0,0.0,0.0,0.0,-0.30009192 +396.6805040836334,0.0,0.0,0.0,0.0,-0.30009192 +396.68944096565247,0.0,0.0,0.0,0.0,-0.30009192 +396.69990491867065,0.0,0.0,0.0,0.0,-0.30009192 +396.70950412750244,0.0,0.0,0.0,0.0,-0.30009192 +396.71957898139954,0.0,0.0,0.0,0.0,-0.29824185 +396.7295660972595,0.0,0.0,0.0,0.0,-0.29824185 +396.74292492866516,0.0,0.0,0.0,0.0,-0.29824185 +396.75184297561646,0.0,0.0,0.0,0.0,-0.29824185 +396.7603590488434,0.0,0.0,0.0,0.0,-0.30194196 +396.76967000961304,0.0,0.0,0.0,0.0,-0.30194196 +396.77952694892883,0.0,0.0,0.0,0.0,-0.30194196 +396.7899241447449,0.0,0.0,0.0,0.0,-0.30194196 +396.799437046051,0.0,0.0,0.0,0.0,-0.30194196 +396.8121531009674,0.0,0.0,0.0,0.0,-0.31304228 +396.8218710422516,0.0,0.0,0.0,0.0,-0.31304228 +396.82957696914673,0.0,0.0,0.0,0.0,-0.31304228 +396.8405430316925,0.0,0.0,0.0,0.0,-0.31304228 +396.84957909584045,0.0,0.0,0.0,0.0,-0.31304228 +396.860356092453,0.0,0.0,0.0,0.0,-0.31304228 +396.87096905708313,0.0,0.0,0.0,0.0,-0.28899163 +396.87996196746826,0.0,0.0,0.0,0.0,-0.28899163 +396.88950991630554,0.0,0.0,0.0,0.0,-0.28899163 +396.9009790420532,0.0,0.0,0.0,0.0,-0.28899163 +396.91033911705017,0.0,0.0,0.0,0.0,-0.30009192 +396.92127895355225,0.0,0.0,0.0,0.0,-0.30009192 +396.9295790195465,0.0,0.0,0.0,0.0,-0.30009192 +396.94125413894653,0.0,0.0,0.0,0.0,-0.30009192 +396.9498040676117,0.0,0.0,0.0,0.0,-0.30009192 +396.9603531360626,0.0,0.0,0.0,0.0,-0.29269174 +396.9699881076813,0.0,0.0,0.0,0.0,-0.29269174 +396.97957706451416,0.0,0.0,0.0,0.0,-0.29269174 +396.9926030635834,0.0,0.0,0.0,0.0,-0.29269174 +397.0015230178833,0.0,0.0,0.0,0.0,-0.29269174 +397.0101330280304,0.0,0.0,0.0,0.0,-0.29269174 +397.0219159126282,0.0,0.0,0.0,0.0,-0.29269174 +397.02959513664246,0.0,0.0,0.0,0.0,-0.29269174 +397.0400619506836,0.0,0.0,0.0,0.0,-0.29269174 +397.0510289669037,0.0,0.0,0.0,0.0,-0.29269174 +397.0593960285187,0.0,0.0,0.0,0.0,-0.29269174 +397.0696439743042,0.0,0.0,0.0,0.0,-0.30194196 +397.08098006248474,0.0,0.0,0.0,0.0,-0.30194196 +397.09068512916565,0.0,0.0,0.0,0.0,-0.30194196 +397.09961104393005,0.0,0.0,0.0,0.0,-0.30194196 +397.1095790863037,0.0,0.0,0.0,0.0,-0.30194196 +397.12093591690063,0.0,0.0,0.0,0.0,-0.3074921 +397.1296169757843,0.0,0.0,0.0,0.0,-0.3074921 +397.1410720348358,0.0,0.0,0.0,0.0,-0.3074921 +397.1500699520111,0.0,0.0,0.0,0.0,-0.3074921 +397.1597261428833,0.0,0.0,0.0,0.0,-0.3074921 +397.17048501968384,0.0,0.0,0.0,0.0,-0.30009192 +397.1798589229584,0.0,0.0,0.0,0.0,-0.30009192 +397.19015192985535,0.0,0.0,0.0,0.0,-0.30009192 +397.20180201530457,0.0,0.0,0.0,0.0,-0.30009192 +397.2103519439697,0.0,0.0,0.0,0.0,-0.27974138 +397.21976804733276,0.0,0.0,0.0,0.0,-0.27974138 +397.22958397865295,0.0,0.0,0.0,0.0,-0.27974138 +397.2395370006561,0.0,0.0,0.0,0.0,-0.27974138 +397.24977803230286,0.0,0.0,0.0,0.0,-0.27974138 +397.2601239681244,0.0,0.0,0.0,0.0,-0.27974138 +397.27231192588806,0.0,0.0,0.0,0.0,-0.29084167 +397.2826409339905,0.0,0.0,0.0,0.0,-0.29084167 +397.29164004325867,0.0,0.0,0.0,0.0,-0.29084167 +397.2993950843811,0.0,0.0,0.0,0.0,-0.29084167 +397.3095951080322,0.0,0.0,0.0,0.0,-0.29084167 +397.3211030960083,0.0,0.0,0.0,0.0,-0.28344148 +397.32957005500793,0.0,0.0,0.0,0.0,-0.28344148 +397.3398370742798,0.0,0.0,0.0,0.0,-0.28344148 +397.3540849685669,0.0,0.0,0.0,0.0,-0.28344148 +397.3596911430359,0.0,0.0,0.0,0.0,-0.28344148 +397.3695230484009,0.0,0.0,0.0,0.0,-0.3185924 +397.38146710395813,0.0,0.0,0.0,0.0,-0.3185924 +397.39046907424927,0.0,0.0,0.0,0.0,-0.3185924 +397.3994331359863,0.0,0.0,0.0,0.0,-0.3185924 +397.41112899780273,0.0,0.0,0.0,0.0,-0.3185924 +397.42012190818787,0.0,0.0,0.0,0.0,-0.28344148 +397.4296021461487,0.0,0.0,0.0,0.0,-0.28344148 +397.441771030426,0.0,0.0,0.0,0.0,-0.28344148 +397.4496281147003,0.0,0.0,0.0,0.0,-0.28344148 +397.4603509902954,0.0,0.0,0.0,0.0,-0.28714156 +397.4712951183319,0.0,0.0,0.0,0.0,-0.28714156 +397.48000502586365,0.0,0.0,0.0,0.0,-0.28714156 +397.4908130168915,0.0,0.0,0.0,0.0,-0.28714156 +397.49949502944946,0.0,0.0,0.0,0.0,-0.28714156 +397.50987696647644,0.0,0.0,0.0,0.0,-0.28714156 +397.51996898651123,0.0,0.0,0.0,0.0,-0.28159142 +397.5309319496155,0.0,0.0,0.0,0.0,-0.28159142 +397.539577960968,0.0,0.0,0.0,0.0,-0.28159142 +397.5521559715271,0.0,0.0,0.0,0.0,-0.28159142 +397.5594401359558,0.0,0.0,0.0,0.0,-0.28159142 +397.5701410770416,0.0,0.0,0.0,0.0,-0.31304228 +397.58072113990784,0.0,0.0,0.0,0.0,-0.31304228 +397.5901780128479,0.0,0.0,0.0,0.0,-0.31304228 +397.60017013549805,0.0,0.0,0.0,0.0,-0.31304228 +397.6100330352783,0.0,0.0,0.0,0.0,-0.31304228 +397.62189507484436,0.0,0.0,0.0,0.0,-0.32414255 +397.6294729709625,0.0,0.0,0.0,0.0,-0.32414255 +397.6420021057129,0.0,0.0,0.0,0.0,-0.32414255 +397.65099811553955,0.0,0.0,0.0,0.0,-0.32414255 +397.65999603271484,0.0,0.0,0.0,0.0,-0.32414255 +397.6704320907593,0.0,0.0,0.0,0.0,-0.30934215 +397.6811900138855,0.0,0.0,0.0,0.0,-0.30934215 +397.68995094299316,0.0,0.0,0.0,0.0,-0.30934215 +397.7001049518585,0.0,0.0,0.0,0.0,-0.30934215 +397.7118239402771,0.0,0.0,0.0,0.0,-0.30934215 +397.7218780517578,0.0,0.0,0.0,0.0,-0.30194196 +397.72958302497864,0.0,0.0,0.0,0.0,-0.30194196 +397.74084210395813,0.0,0.0,0.0,0.0,-0.30194196 +397.74984908103943,0.0,0.0,0.0,0.0,-0.30194196 +397.7594530582428,0.0,0.0,0.0,0.0,-0.30194196 +397.77120304107666,0.0,0.0,0.0,0.0,-0.30194196 +397.78019404411316,0.0,0.0,0.0,0.0,-0.30194196 +397.79017305374146,0.0,0.0,0.0,0.0,-0.30194196 +397.79947805404663,0.0,0.0,0.0,0.0,-0.30194196 +397.8121681213379,0.0,0.0,0.0,0.0,-0.3074921 +397.82036209106445,0.0,0.0,0.0,0.0,-0.3074921 +397.8296010494232,0.0,0.0,0.0,0.0,-0.3074921 +397.83967208862305,0.0,0.0,0.0,0.0,-0.3074921 +397.85222601890564,0.0,0.0,0.0,0.0,-0.3074921 +397.86036801338196,0.0,0.0,0.0,0.0,-0.3074921 +397.87024307250977,0.0,0.0,0.0,0.0,-0.3074921 +397.88023805618286,0.0,0.0,0.0,0.0,-0.3074921 +397.8894839286804,0.0,0.0,0.0,0.0,-0.3074921 +397.9022901058197,0.0,0.0,0.0,0.0,-0.3074921 +397.91038393974304,0.0,0.0,0.0,0.0,-0.28344148 +397.9201240539551,0.0,0.0,0.0,0.0,-0.28344148 +397.92952704429626,0.0,0.0,0.0,0.0,-0.28344148 +397.9422550201416,0.0,0.0,0.0,0.0,-0.28344148 +397.94943499565125,0.0,0.0,0.0,0.0,-0.28344148 +397.96027398109436,0.0,0.0,0.0,0.0,-0.28344148 +397.97029399871826,0.0,0.0,0.0,0.0,-0.30194196 +397.98255491256714,0.0,0.0,0.0,0.0,-0.30194196 +397.9907009601593,0.0,0.0,0.0,0.0,-0.30194196 +398.0003809928894,0.0,0.0,0.0,0.0,-0.30194196 +398.0103750228882,0.0,0.0,0.0,0.0,-0.30194196 +398.0196261405945,0.0,0.0,0.0,0.0,-0.30379203 +398.0294580459595,0.0,0.0,0.0,0.0,-0.30379203 +398.0413250923157,0.0,0.0,0.0,0.0,-0.30379203 +398.05032205581665,0.0,0.0,0.0,0.0,-0.30379203 +398.05943393707275,0.0,0.0,0.0,0.0,-0.30379203 +398.0693941116333,0.0,0.0,0.0,0.0,-0.3074921 +398.0803120136261,0.0,0.0,0.0,0.0,-0.3074921 +398.0895619392395,0.0,0.0,0.0,0.0,-0.3074921 +398.10022807121277,0.0,0.0,0.0,0.0,-0.3074921 +398.1103570461273,0.0,0.0,0.0,0.0,-0.3888943 +398.1219160556793,0.0,0.0,0.0,0.0,-0.3888943 +398.12960505485535,0.0,0.0,0.0,0.0,-0.3888943 +398.14033603668213,0.0,0.0,0.0,0.0,-0.3888943 +398.1496031284332,0.0,0.0,0.0,0.0,-0.3888943 +398.1594400405884,0.0,0.0,0.0,0.0,-0.3888943 +398.16984701156616,0.0,0.0,0.0,0.0,-0.29269174 +398.1810989379883,0.0,0.0,0.0,0.0,-0.29269174 +398.189759016037,0.0,0.0,0.0,0.0,-0.29269174 +398.20336413383484,0.0,0.0,0.0,0.0,-0.29269174 +398.21029710769653,0.0,0.0,0.0,0.0,-0.29269174 +398.22136092185974,0.0,0.0,0.0,0.0,-0.30194196 +398.22960209846497,0.0,0.0,0.0,0.0,-0.30194196 +398.23948192596436,0.0,0.0,0.0,0.0,-0.30194196 +398.2495050430298,0.0,0.0,0.0,0.0,-0.30194196 +398.2603669166565,0.0,0.0,0.0,0.0,-0.3074921 +398.27093601226807,0.0,0.0,0.0,0.0,-0.3074921 +398.27993392944336,0.0,0.0,0.0,0.0,-0.3074921 +398.2910990715027,0.0,0.0,0.0,0.0,-0.3074921 +398.29957604408264,0.0,0.0,0.0,0.0,-0.3074921 +398.3114070892334,0.0,0.0,0.0,0.0,-0.3074921 +398.32039999961853,0.0,0.0,0.0,0.0,-0.29824185 +398.32940101623535,0.0,0.0,0.0,0.0,-0.29824185 +398.3395869731903,0.0,0.0,0.0,0.0,-0.29824185 +398.3518090248108,0.0,0.0,0.0,0.0,-0.29824185 +398.3603870868683,0.0,0.0,0.0,0.0,-0.28344148 +398.3697829246521,0.0,0.0,0.0,0.0,-0.28344148 +398.37960410118103,0.0,0.0,0.0,0.0,-0.28344148 +398.3924219608307,0.0,0.0,0.0,0.0,-0.28344148 +398.4014301300049,0.0,0.0,0.0,0.0,-0.28344148 +398.4094431400299,0.0,0.0,0.0,0.0,-0.28344148 +398.41944003105164,0.0,0.0,0.0,0.0,-0.29084167 +398.4296290874481,0.0,0.0,0.0,0.0,-0.29084167 +398.4416630268097,0.0,0.0,0.0,0.0,-0.29084167 +398.45065999031067,0.0,0.0,0.0,0.0,-0.29084167 +398.45963501930237,0.0,0.0,0.0,0.0,-0.29084167 +398.4702470302582,0.0,0.0,0.0,0.0,-0.28159142 +398.4819619655609,0.0,0.0,0.0,0.0,-0.28159142 +398.4908721446991,0.0,0.0,0.0,0.0,-0.28159142 +398.4997749328613,0.0,0.0,0.0,0.0,-0.28159142 +398.50945496559143,0.0,0.0,0.0,0.0,-0.28159142 +398.51970291137695,0.0,0.0,0.0,0.0,-0.30009192 +398.5296061038971,0.0,0.0,0.0,0.0,-0.30009192 +398.5395920276642,0.0,0.0,0.0,0.0,-0.30009192 +398.5494749546051,0.0,0.0,0.0,0.0,-0.30009192 +398.56036591529846,0.0,0.0,0.0,0.0,-0.30009192 +398.57112312316895,0.0,0.0,0.0,0.0,-0.30009192 +398.58003997802734,0.0,0.0,0.0,0.0,-0.30009192 +398.59048199653625,0.0,0.0,0.0,0.0,-0.30009192 +398.59946513175964,0.0,0.0,0.0,0.0,-0.30009192 +398.60976696014404,0.0,0.0,0.0,0.0,-0.30009192 +398.6213791370392,0.0,0.0,0.0,0.0,-0.28159142 +398.6294939517975,0.0,0.0,0.0,0.0,-0.28159142 +398.6424479484558,0.0,0.0,0.0,0.0,-0.28159142 +398.6513469219208,0.0,0.0,0.0,0.0,-0.28159142 +398.6602840423584,0.0,0.0,0.0,0.0,-0.28159142 +398.6694300174713,0.0,0.0,0.0,0.0,-0.28344148 +398.68048310279846,0.0,0.0,0.0,0.0,-0.28344148 +398.6894829273224,0.0,0.0,0.0,0.0,-0.28344148 +398.6998291015625,0.0,0.0,0.0,0.0,-0.28344148 +398.71121191978455,0.0,0.0,0.0,0.0,-0.28344148 +398.7202069759369,0.0,0.0,0.0,0.0,-0.27974138 +398.72958397865295,0.0,0.0,0.0,0.0,-0.27974138 +398.7405049800873,0.0,0.0,0.0,0.0,-0.27974138 +398.749440908432,0.0,0.0,0.0,0.0,-0.27974138 +398.7603840827942,0.0,0.0,0.0,0.0,-0.3148923 +398.77051401138306,0.0,0.0,0.0,0.0,-0.3148923 +398.7795190811157,0.0,0.0,0.0,0.0,-0.3148923 +398.78988814353943,0.0,0.0,0.0,0.0,-0.3148923 +398.7994849681854,0.0,0.0,0.0,0.0,-0.3148923 +398.8100640773773,0.0,0.0,0.0,0.0,-0.3148923 +398.8194811344147,0.0,0.0,0.0,0.0,-0.29084167 +398.8295829296112,0.0,0.0,0.0,0.0,-0.29084167 +398.84254908561707,0.0,0.0,0.0,0.0,-0.29084167 +398.8515510559082,0.0,0.0,0.0,0.0,-0.29084167 +398.86014699935913,0.0,0.0,0.0,0.0,-0.29084167 +398.8695590496063,0.0,0.0,0.0,0.0,-0.27974138 +398.87993693351746,0.0,0.0,0.0,0.0,-0.27974138 +398.89091396331787,0.0,0.0,0.0,0.0,-0.27974138 +398.89990496635437,0.0,0.0,0.0,0.0,-0.27974138 +398.9099349975586,0.0,0.0,0.0,0.0,-0.27974138 +398.92191910743713,0.0,0.0,0.0,0.0,-0.3148923 +398.9296100139618,0.0,0.0,0.0,0.0,-0.3148923 +398.9411721229553,0.0,0.0,0.0,0.0,-0.3148923 +398.9495439529419,0.0,0.0,0.0,0.0,-0.3148923 +398.9595880508423,0.0,0.0,0.0,0.0,-0.3148923 +398.97000002861023,0.0,0.0,0.0,0.0,-0.29084167 +398.98077511787415,0.0,0.0,0.0,0.0,-0.29084167 +398.98977494239807,0.0,0.0,0.0,0.0,-0.29084167 +399.0042600631714,0.0,0.0,0.0,0.0,-0.29084167 +399.0103859901428,0.0,0.0,0.0,0.0,-0.30194196 +399.02032709121704,0.0,0.0,0.0,0.0,-0.30194196 +399.02960205078125,0.0,0.0,0.0,0.0,-0.30194196 +399.03942799568176,0.0,0.0,0.0,0.0,-0.30194196 +399.04963302612305,0.0,0.0,0.0,0.0,-0.30194196 +399.0600619316101,0.0,0.0,0.0,0.0,-0.30194196 +399.07045102119446,0.0,0.0,0.0,0.0,-0.29084167 +399.0796129703522,0.0,0.0,0.0,0.0,-0.29084167 +399.09426498413086,0.0,0.0,0.0,0.0,-0.29084167 +399.09950613975525,0.0,0.0,0.0,0.0,-0.29084167 +399.1103889942169,0.0,0.0,0.0,0.0,-0.29269174 +399.12010407447815,0.0,0.0,0.0,0.0,-0.29269174 +399.12963604927063,0.0,0.0,0.0,0.0,-0.29269174 +399.1396849155426,0.0,0.0,0.0,0.0,-0.29269174 +399.1501441001892,0.0,0.0,0.0,0.0,-0.29269174 +399.15963196754456,0.0,0.0,0.0,0.0,-0.29269174 +399.1694769859314,0.0,0.0,0.0,0.0,-0.30934215 +399.1842601299286,0.0,0.0,0.0,0.0,-0.30934215 +399.1894030570984,0.0,0.0,0.0,0.0,-0.30934215 +399.20269107818604,0.0,0.0,0.0,0.0,-0.30934215 +399.2103741168976,0.0,0.0,0.0,0.0,-0.29639184 +399.2206950187683,0.0,0.0,0.0,0.0,-0.29639184 +399.22970509529114,0.0,0.0,0.0,0.0,-0.29639184 +399.2396330833435,0.0,0.0,0.0,0.0,-0.29639184 +399.2500729560852,0.0,0.0,0.0,0.0,-0.29639184 +399.260379076004,0.0,0.0,0.0,0.0,-0.29639184 +399.274071931839,0.0,0.0,0.0,0.0,-0.29639184 +399.28251910209656,0.0,0.0,0.0,0.0,-0.29639184 +399.2907340526581,0.0,0.0,0.0,0.0,-0.29639184 +399.30172300338745,0.0,0.0,0.0,0.0,-0.29639184 +399.30988693237305,0.0,0.0,0.0,0.0,-0.29639184 +399.3197319507599,0.0,0.0,0.0,0.0,-0.28899163 +399.3296000957489,0.0,0.0,0.0,0.0,-0.28899163 +399.33961296081543,0.0,0.0,0.0,0.0,-0.28899163 +399.3508689403534,0.0,0.0,0.0,0.0,-0.28899163 +399.36038398742676,0.0,0.0,0.0,0.0,-0.28899163 +399.36989307403564,0.0,0.0,0.0,0.0,-0.28899163 +399.38005208969116,0.0,0.0,0.0,0.0,-0.28899163 +399.39145612716675,0.0,0.0,0.0,0.0,-0.28899163 +399.4003620147705,0.0,0.0,0.0,0.0,-0.28899163 +399.4097480773926,0.0,0.0,0.0,0.0,-0.28899163 +399.4195120334625,0.0,0.0,0.0,0.0,-0.29824185 +399.4296360015869,0.0,0.0,0.0,0.0,-0.29824185 +399.44364309310913,0.0,0.0,0.0,0.0,-0.29824185 +399.44942593574524,0.0,0.0,0.0,0.0,-0.29824185 +399.46003103256226,0.0,0.0,0.0,0.0,-0.29824185 +399.4707100391388,0.0,0.0,0.0,0.0,-0.29269174 +399.4806110858917,0.0,0.0,0.0,0.0,-0.29269174 +399.4895360469818,0.0,0.0,0.0,0.0,-0.29269174 +399.4997570514679,0.0,0.0,0.0,0.0,-0.29269174 +399.5100440979004,0.0,0.0,0.0,0.0,-0.29269174 +399.519406080246,0.0,0.0,0.0,0.0,-0.29639184 +399.529629945755,0.0,0.0,0.0,0.0,-0.29639184 +399.5430500507355,0.0,0.0,0.0,0.0,-0.29639184 +399.55196809768677,0.0,0.0,0.0,0.0,-0.29639184 +399.56037306785583,0.0,0.0,0.0,0.0,-0.30934215 +399.5697910785675,0.0,0.0,0.0,0.0,-0.30934215 +399.5800709724426,0.0,0.0,0.0,0.0,-0.30934215 +399.5897889137268,0.0,0.0,0.0,0.0,-0.30934215 +399.6004719734192,0.0,0.0,0.0,0.0,-0.30934215 +399.609482049942,0.0,0.0,0.0,0.0,-0.30934215 +399.6218731403351,0.0,0.0,0.0,0.0,-0.30934215 +399.62961411476135,0.0,0.0,0.0,0.0,-0.30934215 +399.6400320529938,0.0,0.0,0.0,0.0,-0.30934215 +399.6500201225281,0.0,0.0,0.0,0.0,-0.30934215 +399.66038608551025,0.0,0.0,0.0,0.0,-0.32044247 +399.67078495025635,0.0,0.0,0.0,0.0,-0.32044247 +399.67979407310486,0.0,0.0,0.0,0.0,-0.32044247 +399.6905081272125,0.0,0.0,0.0,0.0,-0.32044247 +399.69950008392334,0.0,0.0,0.0,0.0,-0.32044247 +399.709557056427,0.0,0.0,0.0,0.0,-0.32044247 +399.7195770740509,0.0,0.0,0.0,0.0,-0.27974138 +399.7296280860901,0.0,0.0,0.0,0.0,-0.27974138 +399.7428300380707,0.0,0.0,0.0,0.0,-0.27974138 +399.74959206581116,0.0,0.0,0.0,0.0,-0.27974138 +399.76039695739746,0.0,0.0,0.0,0.0,-0.29084167 +399.76984190940857,0.0,0.0,0.0,0.0,-0.29084167 +399.78035593032837,0.0,0.0,0.0,0.0,-0.29084167 +399.7895851135254,0.0,0.0,0.0,0.0,-0.29084167 +399.8015139102936,0.0,0.0,0.0,0.0,-0.29084167 +399.8105409145355,0.0,0.0,0.0,0.0,-0.29084167 +399.8194360733032,0.0,0.0,0.0,0.0,-0.2612409 +399.82962012290955,0.0,0.0,0.0,0.0,-0.2612409 +399.8418550491333,0.0,0.0,0.0,0.0,-0.2612409 +399.8505771160126,0.0,0.0,0.0,0.0,-0.2612409 +399.8598599433899,0.0,0.0,0.0,0.0,-0.2612409 +399.8702390193939,0.0,0.0,0.0,0.0,-0.3074921 +399.87964606285095,0.0,0.0,0.0,0.0,-0.3074921 +399.89079999923706,0.0,0.0,0.0,0.0,-0.3074921 +399.8995430469513,0.0,0.0,0.0,0.0,-0.3074921 +399.91038608551025,0.0,0.0,0.0,0.0,-0.29269174 +399.92136096954346,0.0,0.0,0.0,0.0,-0.29269174 +399.92963910102844,0.0,0.0,0.0,0.0,-0.29269174 +399.9408929347992,0.0,0.0,0.0,0.0,-0.29269174 +399.9498920440674,0.0,0.0,0.0,0.0,-0.29269174 +399.9600341320038,0.0,0.0,0.0,0.0,-0.29269174 +399.96969199180603,0.0,0.0,0.0,0.0,-0.31304228 +399.9799771308899,0.0,0.0,0.0,0.0,-0.31304228 +399.99432611465454,0.0,0.0,0.0,0.0,-0.31304228 +400.00391697883606,0.0,0.0,0.0,0.0,-0.31304228 +400.0103769302368,0.0,0.0,0.0,0.0,-0.29824185 +400.0199661254883,0.0,0.0,0.0,0.0,-0.29824185 +400.0299789905548,0.0,0.0,0.0,0.0,-0.29824185 +400.03994512557983,0.0,0.0,0.0,0.0,-0.29824185 +400.04988193511963,0.0,0.0,0.0,0.0,-0.29824185 +400.0597550868988,0.0,0.0,0.0,0.0,-0.29824185 +400.0743350982666,0.0,0.0,0.0,0.0,-0.27789134 +400.07958793640137,0.0,0.0,0.0,0.0,-0.27789134 +400.0939590930939,0.0,0.0,0.0,0.0,-0.27789134 +400.1029851436615,0.0,0.0,0.0,0.0,-0.27789134 +400.11038303375244,0.0,0.0,0.0,0.0,-0.29084167 +400.12098503112793,0.0,0.0,0.0,0.0,-0.29084167 +400.12965297698975,0.0,0.0,0.0,0.0,-0.29084167 +400.13973808288574,0.0,0.0,0.0,0.0,-0.29084167 +400.14942812919617,0.0,0.0,0.0,0.0,-0.29084167 +400.1599910259247,0.0,0.0,0.0,0.0,-0.29084167 +400.1702489852905,0.0,0.0,0.0,0.0,-0.29084167 +400.1840260028839,0.0,0.0,0.0,0.0,-0.29084167 +400.1930179595947,0.0,0.0,0.0,0.0,-0.29084167 +400.1999490261078,0.0,0.0,0.0,0.0,-0.29084167 +400.2103979587555,0.0,0.0,0.0,0.0,-0.28899163 +400.22004795074463,0.0,0.0,0.0,0.0,-0.28899163 +400.2295780181885,0.0,0.0,0.0,0.0,-0.28899163 +400.2399001121521,0.0,0.0,0.0,0.0,-0.28899163 +400.24940395355225,0.0,0.0,0.0,0.0,-0.28899163 +400.2603950500488,0.0,0.0,0.0,0.0,-0.29269174 +400.27409291267395,0.0,0.0,0.0,0.0,-0.29269174 +400.28308296203613,0.0,0.0,0.0,0.0,-0.29269174 +400.2899580001831,0.0,0.0,0.0,0.0,-0.29269174 +400.30101013183594,0.0,0.0,0.0,0.0,-0.29269174 +400.30953907966614,0.0,0.0,0.0,0.0,-0.29269174 +400.3194389343262,0.0,0.0,0.0,0.0,-0.28714156 +400.32962799072266,0.0,0.0,0.0,0.0,-0.28714156 +400.34436297416687,0.0,0.0,0.0,0.0,-0.28714156 +400.35020899772644,0.0,0.0,0.0,0.0,-0.28714156 +400.3603940010071,0.0,0.0,0.0,0.0,-0.30009192 +400.3720350265503,0.0,0.0,0.0,0.0,-0.30009192 +400.3812689781189,0.0,0.0,0.0,0.0,-0.30009192 +400.3902060985565,0.0,0.0,0.0,0.0,-0.30009192 +400.4001579284668,0.0,0.0,0.0,0.0,-0.30009192 +400.41104793548584,0.0,0.0,0.0,0.0,-0.30009192 +400.4199321269989,0.0,0.0,0.0,0.0,-0.28344148 +400.4296290874481,0.0,0.0,0.0,0.0,-0.28344148 +400.44068002700806,0.0,0.0,0.0,0.0,-0.28344148 +400.4526209831238,0.0,0.0,0.0,0.0,-0.28344148 +400.45944595336914,0.0,0.0,0.0,0.0,-0.28344148 +400.470449924469,0.0,0.0,0.0,0.0,-0.28714156 +400.4811689853668,0.0,0.0,0.0,0.0,-0.28714156 +400.4902060031891,0.0,0.0,0.0,0.0,-0.28714156 +400.50074911117554,0.0,0.0,0.0,0.0,-0.28714156 +400.51014399528503,0.0,0.0,0.0,0.0,-0.28714156 +400.5219449996948,0.0,0.0,0.0,0.0,-0.28344148 +400.529659986496,0.0,0.0,0.0,0.0,-0.28344148 +400.5417151451111,0.0,0.0,0.0,0.0,-0.28344148 +400.5499200820923,0.0,0.0,0.0,0.0,-0.28344148 +400.5595951080322,0.0,0.0,0.0,0.0,-0.28344148 +400.57104992866516,0.0,0.0,0.0,0.0,-0.30009192 +400.58005595207214,0.0,0.0,0.0,0.0,-0.30009192 +400.59053802490234,0.0,0.0,0.0,0.0,-0.30009192 +400.60019993782043,0.0,0.0,0.0,0.0,-0.30009192 +400.61222410202026,0.0,0.0,0.0,0.0,-0.29824185 +400.62154603004456,0.0,0.0,0.0,0.0,-0.29824185 +400.62966299057007,0.0,0.0,0.0,0.0,-0.29824185 +400.63984513282776,0.0,0.0,0.0,0.0,-0.29824185 +400.65197110176086,0.0,0.0,0.0,0.0,-0.29824185 +400.66038608551025,0.0,0.0,0.0,0.0,-0.29269174 +400.66992807388306,0.0,0.0,0.0,0.0,-0.29269174 +400.67992305755615,0.0,0.0,0.0,0.0,-0.29269174 +400.6902539730072,0.0,0.0,0.0,0.0,-0.29269174 +400.7000470161438,0.0,0.0,0.0,0.0,-0.29269174 +400.7110710144043,0.0,0.0,0.0,0.0,-0.29269174 +400.7194221019745,0.0,0.0,0.0,0.0,-0.3074921 +400.7296199798584,0.0,0.0,0.0,0.0,-0.3074921 +400.7407441139221,0.0,0.0,0.0,0.0,-0.3074921 +400.75079894065857,0.0,0.0,0.0,0.0,-0.3074921 +400.7597749233246,0.0,0.0,0.0,0.0,-0.3074921 +400.771320104599,0.0,0.0,0.0,0.0,-0.29269174 +400.78029894828796,0.0,0.0,0.0,0.0,-0.29269174 +400.7914469242096,0.0,0.0,0.0,0.0,-0.29269174 +400.8003680706024,0.0,0.0,0.0,0.0,-0.29269174 +400.8094799518585,0.0,0.0,0.0,0.0,-0.29269174 +400.82190799713135,0.0,0.0,0.0,0.0,-0.29824185 +400.82950091362,0.0,0.0,0.0,0.0,-0.29824185 +400.840656042099,0.0,0.0,0.0,0.0,-0.29824185 +400.8496301174164,0.0,0.0,0.0,0.0,-0.29824185 +400.85938811302185,0.0,0.0,0.0,0.0,-0.29824185 +400.8694660663605,0.0,0.0,0.0,0.0,-0.29269174 +400.88060903549194,0.0,0.0,0.0,0.0,-0.29269174 +400.8895330429077,0.0,0.0,0.0,0.0,-0.29269174 +400.9021599292755,0.0,0.0,0.0,0.0,-0.29269174 +400.9104290008545,0.0,0.0,0.0,0.0,-0.29269174 +400.9215269088745,0.0,0.0,0.0,0.0,-0.29269174 +400.93049812316895,0.0,0.0,0.0,0.0,-0.29269174 +400.93950605392456,0.0,0.0,0.0,0.0,-0.29269174 +400.94942903518677,0.0,0.0,0.0,0.0,-0.29269174 +400.9595980644226,0.0,0.0,0.0,0.0,-0.29269174 +400.9693989753723,0.0,0.0,0.0,0.0,-0.30379203 +400.9811179637909,0.0,0.0,0.0,0.0,-0.30379203 +400.9923770427704,0.0,0.0,0.0,0.0,-0.30379203 +401.00236105918884,0.0,0.0,0.0,0.0,-0.30379203 +401.0104160308838,0.0,0.0,0.0,0.0,-0.28899163 +401.02033495903015,0.0,0.0,0.0,0.0,-0.28899163 +401.0296471118927,0.0,0.0,0.0,0.0,-0.28899163 +401.0394940376282,0.0,0.0,0.0,0.0,-0.28899163 +401.05007100105286,0.0,0.0,0.0,0.0,-0.28899163 +401.05946493148804,0.0,0.0,0.0,0.0,-0.28899163 +401.06984400749207,0.0,0.0,0.0,0.0,-0.28899163 +401.0832290649414,0.0,0.0,0.0,0.0,-0.28899163 +401.09034609794617,0.0,0.0,0.0,0.0,-0.28899163 +401.1011919975281,0.0,0.0,0.0,0.0,-0.28899163 +401.1101861000061,0.0,0.0,0.0,0.0,-0.28899163 +401.1205360889435,0.0,0.0,0.0,0.0,-0.28344148 +401.1295471191406,0.0,0.0,0.0,0.0,-0.28344148 +401.14050793647766,0.0,0.0,0.0,0.0,-0.28344148 +401.1495249271393,0.0,0.0,0.0,0.0,-0.28344148 +401.1603901386261,0.0,0.0,0.0,0.0,-0.30194196 +401.17253708839417,0.0,0.0,0.0,0.0,-0.30194196 +401.18205404281616,0.0,0.0,0.0,0.0,-0.30194196 +401.191045999527,0.0,0.0,0.0,0.0,-0.30194196 +401.1998379230499,0.0,0.0,0.0,0.0,-0.30194196 +401.21040511131287,0.0,0.0,0.0,0.0,-0.30194196 +401.21949791908264,0.0,0.0,0.0,0.0,-0.30194196 +401.2296390533447,0.0,0.0,0.0,0.0,-0.30194196 +401.2395739555359,0.0,0.0,0.0,0.0,-0.30194196 +401.2518620491028,0.0,0.0,0.0,0.0,-0.30194196 +401.26042103767395,0.0,0.0,0.0,0.0,-0.29084167 +401.27190804481506,0.0,0.0,0.0,0.0,-0.29084167 +401.28088212013245,0.0,0.0,0.0,0.0,-0.29084167 +401.2898700237274,0.0,0.0,0.0,0.0,-0.29084167 +401.29975509643555,0.0,0.0,0.0,0.0,-0.29084167 +401.3096160888672,0.0,0.0,0.0,0.0,-0.29084167 +401.3201129436493,0.0,0.0,0.0,0.0,-0.30194196 +401.32962703704834,0.0,0.0,0.0,0.0,-0.30194196 +401.34379291534424,0.0,0.0,0.0,0.0,-0.30194196 +401.3498420715332,0.0,0.0,0.0,0.0,-0.30194196 +401.3604030609131,0.0,0.0,0.0,0.0,-0.29639184 +401.37075901031494,0.0,0.0,0.0,0.0,-0.29639184 +401.3797309398651,0.0,0.0,0.0,0.0,-0.29639184 +401.3906409740448,0.0,0.0,0.0,0.0,-0.29639184 +401.3996510505676,0.0,0.0,0.0,0.0,-0.29639184 +401.4106819629669,0.0,0.0,0.0,0.0,-0.29639184 +401.4197030067444,0.0,0.0,0.0,0.0,-0.25939083 +401.4295799732208,0.0,0.0,0.0,0.0,-0.25939083 +401.4424500465393,0.0,0.0,0.0,0.0,-0.25939083 +401.4513659477234,0.0,0.0,0.0,0.0,-0.25939083 +401.45942091941833,0.0,0.0,0.0,0.0,-0.25939083 +401.469605922699,0.0,0.0,0.0,0.0,-0.377794 +401.4806590080261,0.0,0.0,0.0,0.0,-0.377794 +401.4896740913391,0.0,0.0,0.0,0.0,-0.377794 +401.50075697898865,0.0,0.0,0.0,0.0,-0.377794 +401.5097360610962,0.0,0.0,0.0,0.0,-0.377794 +401.5194470882416,0.0,0.0,0.0,0.0,-0.3074921 +401.52964091300964,0.0,0.0,0.0,0.0,-0.3074921 +401.5405259132385,0.0,0.0,0.0,0.0,-0.3074921 +401.549467086792,0.0,0.0,0.0,0.0,-0.3074921 +401.55946493148804,0.0,0.0,0.0,0.0,-0.3074921 +401.5706961154938,0.0,0.0,0.0,0.0,-0.30934215 +401.57970809936523,0.0,0.0,0.0,0.0,-0.30934215 +401.5898060798645,0.0,0.0,0.0,0.0,-0.30934215 +401.59981513023376,0.0,0.0,0.0,0.0,-0.30934215 +401.6095380783081,0.0,0.0,0.0,0.0,-0.30934215 +401.62079191207886,0.0,0.0,0.0,0.0,-0.28159142 +401.6296510696411,0.0,0.0,0.0,0.0,-0.28159142 +401.6395709514618,0.0,0.0,0.0,0.0,-0.28159142 +401.65050506591797,0.0,0.0,0.0,0.0,-0.28159142 +401.66042399406433,0.0,0.0,0.0,0.0,-0.3074921 +401.66973209381104,0.0,0.0,0.0,0.0,-0.3074921 +401.680860042572,0.0,0.0,0.0,0.0,-0.3074921 +401.6898829936981,0.0,0.0,0.0,0.0,-0.3074921 +401.70106196403503,0.0,0.0,0.0,0.0,-0.3074921 +401.70998191833496,0.0,0.0,0.0,0.0,-0.3074921 +401.71978092193604,0.0,0.0,0.0,0.0,-0.30194196 +401.7297110557556,0.0,0.0,0.0,0.0,-0.30194196 +401.7403709888458,0.0,0.0,0.0,0.0,-0.30194196 +401.75075697898865,0.0,0.0,0.0,0.0,-0.30194196 +401.75975608825684,0.0,0.0,0.0,0.0,-0.30194196 +401.7709379196167,0.0,0.0,0.0,0.0,-0.30194196 +401.7796289920807,0.0,0.0,0.0,0.0,-0.30194196 +401.790244102478,0.0,0.0,0.0,0.0,-0.30194196 +401.80208706855774,0.0,0.0,0.0,0.0,-0.30194196 +401.8110499382019,0.0,0.0,0.0,0.0,-0.30194196 +401.82005500793457,0.0,0.0,0.0,0.0,-0.30009192 +401.8296449184418,0.0,0.0,0.0,0.0,-0.30009192 +401.84080696105957,0.0,0.0,0.0,0.0,-0.30009192 +401.8498101234436,0.0,0.0,0.0,0.0,-0.30009192 +401.86042404174805,0.0,0.0,0.0,0.0,-0.3111922 +401.8695969581604,0.0,0.0,0.0,0.0,-0.3111922 +401.8794090747833,0.0,0.0,0.0,0.0,-0.3111922 +401.890634059906,0.0,0.0,0.0,0.0,-0.3111922 +401.9009139537811,0.0,0.0,0.0,0.0,-0.3111922 +401.9099130630493,0.0,0.0,0.0,0.0,-0.3111922 +401.9218249320984,0.0,0.0,0.0,0.0,-0.3111922 +401.92964005470276,0.0,0.0,0.0,0.0,-0.3111922 +401.9398181438446,0.0,0.0,0.0,0.0,-0.3111922 +401.95072507858276,0.0,0.0,0.0,0.0,-0.3111922 +401.9596309661865,0.0,0.0,0.0,0.0,-0.3111922 +401.9728031158447,0.0,0.0,0.0,0.0,-0.29824185 +401.9798300266266,0.0,0.0,0.0,0.0,-0.29824185 +401.9907739162445,0.0,0.0,0.0,0.0,-0.29824185 +401.99974608421326,0.0,0.0,0.0,0.0,-0.29824185 +402.0104169845581,0.0,0.0,0.0,0.0,-0.28899163 +402.02085399627686,0.0,0.0,0.0,0.0,-0.28899163 +402.0295820236206,0.0,0.0,0.0,0.0,-0.28899163 +402.0398759841919,0.0,0.0,0.0,0.0,-0.28899163 +402.0501470565796,0.0,0.0,0.0,0.0,-0.28899163 +402.060182094574,0.0,0.0,0.0,0.0,-0.28899163 +402.0716350078583,0.0,0.0,0.0,0.0,-0.28159142 +402.0806260108948,0.0,0.0,0.0,0.0,-0.28159142 +402.08960008621216,0.0,0.0,0.0,0.0,-0.28159142 +402.10114097595215,0.0,0.0,0.0,0.0,-0.28159142 +402.1096351146698,0.0,0.0,0.0,0.0,-0.28159142 +402.11988592147827,0.0,0.0,0.0,0.0,-0.264941 +402.12966203689575,0.0,0.0,0.0,0.0,-0.264941 +402.1402130126953,0.0,0.0,0.0,0.0,-0.264941 +402.1525089740753,0.0,0.0,0.0,0.0,-0.264941 +402.1604149341583,0.0,0.0,0.0,0.0,-0.30009192 +402.1704959869385,0.0,0.0,0.0,0.0,-0.30009192 +402.179484128952,0.0,0.0,0.0,0.0,-0.30009192 +402.1914179325104,0.0,0.0,0.0,0.0,-0.30009192 +402.20032691955566,0.0,0.0,0.0,0.0,-0.30009192 +402.20993208885193,0.0,0.0,0.0,0.0,-0.30009192 +402.2196099758148,0.0,0.0,0.0,0.0,-0.379644 +402.2296390533447,0.0,0.0,0.0,0.0,-0.379644 +402.2398500442505,0.0,0.0,0.0,0.0,-0.379644 +402.2513430118561,0.0,0.0,0.0,0.0,-0.379644 +402.26033091545105,0.0,0.0,0.0,0.0,-0.379644 +402.2716579437256,0.0,0.0,0.0,0.0,-0.29269174 +402.28055596351624,0.0,0.0,0.0,0.0,-0.29269174 +402.2894649505615,0.0,0.0,0.0,0.0,-0.29269174 +402.29996395111084,0.0,0.0,0.0,0.0,-0.29269174 +402.3113479614258,0.0,0.0,0.0,0.0,-0.29269174 +402.3203489780426,0.0,0.0,0.0,0.0,-0.27974138 +402.3296661376953,0.0,0.0,0.0,0.0,-0.27974138 +402.3411819934845,0.0,0.0,0.0,0.0,-0.27974138 +402.3494849205017,0.0,0.0,0.0,0.0,-0.27974138 +402.36040806770325,0.0,0.0,0.0,0.0,-0.30009192 +402.3697090148926,0.0,0.0,0.0,0.0,-0.30009192 +402.3809599876404,0.0,0.0,0.0,0.0,-0.30009192 +402.3899700641632,0.0,0.0,0.0,0.0,-0.30009192 +402.4014239311218,0.0,0.0,0.0,0.0,-0.30009192 +402.4104459285736,0.0,0.0,0.0,0.0,-0.30009192 +402.41944098472595,0.0,0.0,0.0,0.0,-0.30379203 +402.42965292930603,0.0,0.0,0.0,0.0,-0.30379203 +402.4400269985199,0.0,0.0,0.0,0.0,-0.30379203 +402.4499580860138,0.0,0.0,0.0,0.0,-0.30379203 +402.459440946579,0.0,0.0,0.0,0.0,-0.30379203 +402.46986293792725,0.0,0.0,0.0,0.0,-0.29269174 +402.479994058609,0.0,0.0,0.0,0.0,-0.29269174 +402.49149799346924,0.0,0.0,0.0,0.0,-0.29269174 +402.4998469352722,0.0,0.0,0.0,0.0,-0.29269174 +402.5095200538635,0.0,0.0,0.0,0.0,-0.29269174 +402.520889043808,0.0,0.0,0.0,0.0,-0.29824185 +402.5296640396118,0.0,0.0,0.0,0.0,-0.29824185 +402.5430009365082,0.0,0.0,0.0,0.0,-0.29824185 +402.55182099342346,0.0,0.0,0.0,0.0,-0.29824185 +402.56003499031067,0.0,0.0,0.0,0.0,-0.29824185 +402.570011138916,0.0,0.0,0.0,0.0,-0.27974138 +402.58157896995544,0.0,0.0,0.0,0.0,-0.27974138 +402.58981013298035,0.0,0.0,0.0,0.0,-0.27974138 +402.59957814216614,0.0,0.0,0.0,0.0,-0.27974138 +402.61045694351196,0.0,0.0,0.0,0.0,-0.27974138 +402.6197259426117,0.0,0.0,0.0,0.0,-0.29084167 +402.62984895706177,0.0,0.0,0.0,0.0,-0.29084167 +402.6396539211273,0.0,0.0,0.0,0.0,-0.29084167 +402.6510269641876,0.0,0.0,0.0,0.0,-0.29084167 +402.66004705429077,0.0,0.0,0.0,0.0,-0.29084167 +402.67167496681213,0.0,0.0,0.0,0.0,-0.29269174 +402.68027091026306,0.0,0.0,0.0,0.0,-0.29269174 +402.6896860599518,0.0,0.0,0.0,0.0,-0.29269174 +402.6996159553528,0.0,0.0,0.0,0.0,-0.29269174 +402.7095501422882,0.0,0.0,0.0,0.0,-0.29269174 +402.7195100784302,0.0,0.0,0.0,0.0,-0.27974138 +402.72965002059937,0.0,0.0,0.0,0.0,-0.27974138 +402.7400369644165,0.0,0.0,0.0,0.0,-0.27974138 +402.75008511543274,0.0,0.0,0.0,0.0,-0.27974138 +402.75947403907776,0.0,0.0,0.0,0.0,-0.27974138 +402.77074098587036,0.0,0.0,0.0,0.0,-0.28714156 +402.77974796295166,0.0,0.0,0.0,0.0,-0.28714156 +402.7904291152954,0.0,0.0,0.0,0.0,-0.28714156 +402.79940009117126,0.0,0.0,0.0,0.0,-0.28714156 +402.812215089798,0.0,0.0,0.0,0.0,-0.3074921 +402.8196189403534,0.0,0.0,0.0,0.0,-0.3074921 +402.82964611053467,0.0,0.0,0.0,0.0,-0.3074921 +402.84011697769165,0.0,0.0,0.0,0.0,-0.3074921 +402.85121607780457,0.0,0.0,0.0,0.0,-0.3074921 +402.8601369857788,0.0,0.0,0.0,0.0,-0.3074921 +402.8698310852051,0.0,0.0,0.0,0.0,-0.28899163 +402.880252122879,0.0,0.0,0.0,0.0,-0.28899163 +402.889848947525,0.0,0.0,0.0,0.0,-0.28899163 +402.9031491279602,0.0,0.0,0.0,0.0,-0.28899163 +402.90959906578064,0.0,0.0,0.0,0.0,-0.28899163 +402.9211699962616,0.0,0.0,0.0,0.0,-0.29639184 +402.9296691417694,0.0,0.0,0.0,0.0,-0.29639184 +402.94037914276123,0.0,0.0,0.0,0.0,-0.29639184 +402.9509000778198,0.0,0.0,0.0,0.0,-0.29639184 +402.9599211215973,0.0,0.0,0.0,0.0,-0.29639184 +402.97009205818176,0.0,0.0,0.0,0.0,-0.29269174 +402.9841949939728,0.0,0.0,0.0,0.0,-0.29269174 +402.99320101737976,0.0,0.0,0.0,0.0,-0.29269174 +403.0022051334381,0.0,0.0,0.0,0.0,-0.29269174 +403.01042914390564,0.0,0.0,0.0,0.0,-0.29824185 +403.0198140144348,0.0,0.0,0.0,0.0,-0.29824185 +403.029541015625,0.0,0.0,0.0,0.0,-0.29824185 +403.0404770374298,0.0,0.0,0.0,0.0,-0.29824185 +403.0499930381775,0.0,0.0,0.0,0.0,-0.29824185 +403.059947013855,0.0,0.0,0.0,0.0,-0.29824185 +403.0741550922394,0.0,0.0,0.0,0.0,-0.29639184 +403.08305406570435,0.0,0.0,0.0,0.0,-0.29639184 +403.0899770259857,0.0,0.0,0.0,0.0,-0.29639184 +403.1008269786835,0.0,0.0,0.0,0.0,-0.29639184 +403.1097900867462,0.0,0.0,0.0,0.0,-0.29639184 +403.1219439506531,0.0,0.0,0.0,0.0,-0.30009192 +403.1296720504761,0.0,0.75757575,0.75757575,0.0,-0.30009192 +403.1400570869446,0.0,1.5151515,1.5151515,0.0,-0.30009192 +403.14976501464844,0.0,1.5151515,1.5151515,0.0,-0.30009192 +403.1604149341583,0.0,3.030303,3.030303,0.0,-0.29639184 +403.17156195640564,0.0,3.787879,3.787879,0.0,-0.29639184 +403.1811110973358,0.0,4.5454545,4.5454545,0.0,-0.29639184 +403.1900351047516,0.0,5.3030305,5.3030305,0.0,-0.29639184 +403.20024394989014,0.0,6.818182,6.818182,0.0,-0.29639184 +403.21211099624634,0.0,8.333334,8.333334,0.009372071,-0.29639184 +403.2211380004883,0.0,9.090909,9.090909,0.009372071,-0.30194196 +403.2296390533447,0.0,10.606061,10.606061,0.009372071,-0.30194196 +403.23963713645935,0.0,12.878788,12.878788,0.018744143,-0.30194196 +403.2524380683899,0.0,14.39394,14.39394,0.018744143,-0.30194196 +403.25955390930176,0.0,17.424242,17.424242,0.018744143,-0.30194196 +403.27025508880615,0.0,19.69697,19.69697,0.028116215,-0.3074921 +403.27983808517456,0.0,23.484848,23.484848,0.028116215,-0.3074921 +403.29027795791626,0.0,26.515152,26.515152,0.037488285,-0.3074921 +403.30221009254456,0.0,30.303032,30.303032,0.037488285,-0.3074921 +403.3111939430237,0.0,34.848484,34.848484,0.046860356,-0.3074921 +403.3201849460602,0.0,40.151516,40.151516,0.05623243,-0.3074921 +403.32947993278503,0.0,45.454548,45.454548,0.05623243,-0.3074921 +403.3415861129761,0.0,51.515152,51.515152,0.07497657,-0.3074921 +403.3505139350891,0.0,57.57576,57.57576,0.07497657,-0.3074921 +403.35942912101746,0.0,64.393936,64.393936,0.08434864,-0.3074921 +403.37126302719116,0.0,67.42425,67.42425,0.09372071,-0.3444931 +403.3793959617615,0.0,54.545456,54.545456,0.10309278,-0.3444931 +403.3902940750122,0.0,43.181816,43.181816,0.11246486,-0.3444931 +403.4012291431427,0.0,36.363636,36.363636,0.131209,-0.3444931 +403.4098470211029,0.0,32.575756,32.575756,0.131209,-0.3444931 +403.4194769859314,0.0,31.060606,31.060606,0.14058107,-0.3222925 +403.4307589530945,0.0,31.818182,31.818182,0.15932521,-0.3222925 +403.43965792655945,0.0,33.333336,33.333336,0.16869728,-0.3222925 +403.4522819519043,0.0,37.121216,37.121216,0.17806935,-0.3222925 +403.4604239463806,0.0,40.90909,40.90909,0.18744142,-0.27974138 +403.4702830314636,0.0,46.21212,46.21212,0.20618556,-0.27974138 +403.4794690608978,0.0,52.272724,52.272724,0.21555763,-0.27974138 +403.49124002456665,0.0,58.333332,58.333332,0.22492972,-0.27974138 +403.4996509552002,0.0,65.15151,65.15151,0.23430179,-0.27974138 +403.50940895080566,0.0,72.72727,72.72727,0.24367386,-0.27974138 +403.51990699768066,0.0,80.30303,80.30303,0.25304592,-0.3074921 +403.52967596054077,0.0,87.878784,87.878784,0.262418,-0.3074921 +403.5398790836334,0.0,95.454544,95.454544,0.27179006,-0.3074921 +403.55130100250244,0.0,104.54545,104.54545,0.28116214,-0.3074921 +403.56030106544495,0.0,112.878784,112.878784,0.2905342,-0.3074921 +403.5721161365509,0.0,121.21213,121.21213,0.2905342,-0.2538407 +403.58110094070435,0.0,129.54546,129.54546,0.29990628,-0.2538407 +403.5900831222534,0.0,137.87878,137.87878,0.30927837,-0.2538407 +403.60012793540955,0.0,146.9697,146.9697,0.3280225,-0.2538407 +403.6122159957886,0.0,155.30302,155.30302,0.3280225,-0.29639184 +403.6219699382782,0.0,164.39395,164.39395,0.3280225,-0.29639184 +403.6296670436859,0.0,172.72726,172.72726,0.33739457,-0.29639184 +403.64134097099304,0.0,181.81819,181.81819,0.33739457,-0.29639184 +403.6495261192322,0.0,189.39394,189.39394,0.34676665,-0.29639184 +403.6604449748993,0.0,198.48485,198.48485,0.3655108,-0.29824185 +403.66984701156616,0.0,206.81818,206.81818,0.37488285,-0.29824185 +403.67996406555176,0.0,215.90909,215.90909,0.38425493,-0.29824185 +403.68951392173767,0.0,223.48485,223.48485,0.393627,-0.29824185 +403.7043809890747,0.0,231.81819,231.81819,0.40299907,-0.29824185 +403.7122449874878,0.0,239.39394,239.39394,0.41237113,-0.3148923 +403.7219591140747,0.0,247.72728,247.72728,0.4217432,-0.3148923 +403.72966599464417,0.0,254.54546,254.54546,0.43111527,-0.3148923 +403.740375995636,0.0,261.36362,261.36362,0.44048735,-0.3148923 +403.74938893318176,0.0,268.18182,268.18182,0.44985944,-0.3148923 +403.76042914390564,0.0,275.75757,275.75757,0.44985944,-0.29639184 +403.76953196525574,0.0,282.57574,282.57574,0.44985944,-0.29639184 +403.7794909477234,0.0,289.39392,289.39392,0.44985944,-0.29639184 +403.7919261455536,0.0,296.2121,296.2121,0.4592315,-0.29639184 +403.79983592033386,0.0,302.27274,302.27274,0.46860358,-0.29639184 +403.81222701072693,0.0,308.33334,308.33334,0.47797564,-0.29269174 +403.8214330673218,0.0,314.39395,314.39395,0.47797564,-0.29269174 +403.82965302467346,0.0,320.45453,320.45453,0.48734772,-0.29269174 +403.83941197395325,0.0,326.51514,326.51514,0.49671978,-0.29269174 +403.84976601600647,0.0,331.8182,331.8182,0.50609183,-0.29269174 +403.859717130661,0.0,337.87878,337.87878,0.50609183,-0.29269174 +403.86956095695496,0.0,343.9394,343.9394,0.51546395,-0.28899163 +403.8844449520111,0.0,350.0,350.0,0.51546395,-0.28899163 +403.8934440612793,0.0,355.303,355.303,0.51546395,-0.28899163 +403.9024279117584,0.0,360.60608,360.60608,0.524836,-0.28899163 +403.90959310531616,0.0,366.6667,366.6667,0.53420806,-0.28899163 +403.9204361438751,0.0,372.72726,372.72726,0.53420806,-0.3074921 +403.9294550418854,0.0,378.0303,378.0303,0.5435801,-0.3074921 +403.9405860900879,0.0,383.3333,383.3333,0.55295223,-0.3074921 +403.94958090782166,0.0,389.39392,389.39392,0.5623243,-0.3074921 +403.9596381187439,0.0,394.697,394.697,0.57169634,-0.3074921 +403.97446393966675,0.0,399.24243,399.24243,0.5810684,-0.28899163 +403.9829969406128,0.0,404.54547,404.54547,0.5810684,-0.28899163 +403.99242210388184,0.0,409.0909,409.0909,0.5904405,-0.28899163 +404.0013611316681,0.0,414.39392,414.39392,0.59981257,-0.28899163 +404.0102689266205,0.0,418.1818,418.1818,0.59981257,-0.28899163 +404.0194499492645,0.0,422.7273,422.7273,0.59981257,-0.29824185 +404.0296730995178,0.0,427.27274,427.27274,0.6091846,-0.29824185 +404.0394549369812,0.0,431.0606,431.0606,0.6091846,-0.29824185 +404.0496850013733,0.0,434.84848,434.84848,0.6091846,-0.29824185 +404.0597770214081,0.0,438.63635,438.63635,0.61855674,-0.29824185 +404.07265305519104,0.0,442.42422,442.42422,0.61855674,-0.29824185 +404.08158707618713,0.0,445.45453,445.45453,0.6279288,-0.29824185 +404.0905079841614,0.0,448.48483,448.48483,0.63730085,-0.29824185 +404.0994200706482,0.0,451.51514,451.51514,0.63730085,-0.29824185 +404.1094710826874,0.0,453.7879,453.7879,0.63730085,-0.29824185 +404.1203191280365,0.0,456.8182,456.8182,0.63730085,-0.28344148 +404.12969994544983,0.0,459.0909,459.0909,0.63730085,-0.28344148 +404.1397440433502,0.0,460.60608,460.60608,0.6279288,-0.28344148 +404.1523439884186,0.0,462.87878,462.87878,0.63730085,-0.28344148 +404.16043496131897,0.0,465.15152,465.15152,0.63730085,-0.28714156 +404.1707410812378,0.0,466.66666,466.66666,0.63730085,-0.28714156 +404.17966508865356,0.0,468.18182,468.18182,0.63730085,-0.28714156 +404.18979811668396,0.0,469.69696,469.69696,0.63730085,-0.28714156 +404.19951009750366,0.0,471.21213,471.21213,0.63730085,-0.28714156 +404.2102119922638,0.0,472.72726,472.72726,0.6466729,-0.28714156 +404.2208089828491,0.0,474.24243,474.24243,0.6466729,-0.29824185 +404.22967290878296,0.0,475.0,475.0,0.63730085,-0.29824185 +404.23972606658936,0.0,475.75757,475.75757,0.6466729,-0.29824185 +404.25099205970764,0.0,476.51514,476.51514,0.6466729,-0.29824185 +404.2598991394043,0.0,477.2727,477.2727,0.6466729,-0.29824185 +404.2715380191803,0.0,478.0303,478.0303,0.6466729,-0.3074921 +404.2805459499359,0.0,478.0303,478.0303,0.6466729,-0.3074921 +404.2895510196686,0.0,478.78787,478.78787,0.6466729,-0.3074921 +404.3000681400299,0.0,478.78787,478.78787,0.63730085,-0.3074921 +404.31087708473206,0.0,478.78787,478.78787,0.63730085,-0.3074921 +404.31977105140686,0.0,478.78787,478.78787,0.6466729,-0.29084167 +404.33123302459717,0.0,478.78787,478.78787,0.6466729,-0.29084167 +404.33967208862305,0.0,478.78787,478.78787,0.6466729,-0.29084167 +404.3525559902191,0.0,478.78787,478.78787,0.6466729,-0.29084167 +404.36043310165405,0.0,478.0303,478.0303,0.6466729,-0.29639184 +404.37057614326477,0.0,478.0303,478.0303,0.6466729,-0.29639184 +404.3795659542084,0.0,477.2727,477.2727,0.656045,-0.29639184 +404.38978695869446,0.0,477.2727,477.2727,0.6466729,-0.29639184 +404.4009461402893,0.0,476.51514,476.51514,0.6466729,-0.29639184 +404.4099769592285,0.0,475.75757,475.75757,0.6466729,-0.29639184 +404.420361995697,0.0,475.0,475.0,0.6466729,-0.28344148 +404.4296760559082,0.0,474.24243,474.24243,0.6466729,-0.28344148 +404.44261503219604,0.0,473.48483,473.48483,0.6466729,-0.28344148 +404.4497549533844,0.0,472.72726,472.72726,0.6466729,-0.28344148 +404.4604470729828,0.0,471.9697,471.9697,0.656045,-0.30194196 +404.4696340560913,0.0,471.21213,471.21213,0.656045,-0.30194196 +404.4797670841217,0.0,470.45453,470.45453,0.656045,-0.30194196 +404.4910321235657,0.0,469.69696,469.69696,0.656045,-0.30194196 +404.4995639324188,0.0,468.9394,468.9394,0.6654171,-0.30194196 +404.5095341205597,0.0,468.18182,468.18182,0.6654171,-0.30194196 +404.5209491252899,0.0,467.42426,467.42426,0.6654171,-0.27789134 +404.5296609401703,0.0,465.9091,465.9091,0.6654171,-0.27789134 +404.5416450500488,0.0,464.39395,464.39395,0.6654171,-0.27789134 +404.5506730079651,0.0,463.63638,463.63638,0.6654171,-0.27789134 +404.5596671104431,0.0,461.36365,461.36365,0.6654171,-0.27789134 +404.56961607933044,0.0,459.84848,459.84848,0.6654171,-0.30194196 +404.5798029899597,0.0,457.57578,457.57578,0.6654171,-0.30194196 +404.58978605270386,0.0,456.0606,456.0606,0.656045,-0.30194196 +404.60310792922974,0.0,453.03027,453.03027,0.656045,-0.30194196 +404.611279964447,0.0,450.75757,450.75757,0.656045,-0.30194196 +404.62099409103394,0.0,447.72726,447.72726,0.656045,-0.29084167 +404.6296889781952,0.0,444.69696,444.69696,0.656045,-0.29084167 +404.6407120227814,0.0,440.9091,440.9091,0.656045,-0.29084167 +404.6496970653534,0.0,437.12122,437.12122,0.656045,-0.29084167 +404.6594569683075,0.0,431.81818,431.81818,0.656045,-0.29084167 +404.67000913619995,0.0,425.7576,425.7576,0.656045,-0.28714156 +404.6795871257782,0.0,418.9394,418.9394,0.6466729,-0.28714156 +404.6932029724121,0.0,412.12122,412.12122,0.63730085,-0.28714156 +404.7037229537964,0.0,405.30304,405.30304,0.63730085,-0.28714156 +404.70976400375366,0.0,397.7273,397.7273,0.63730085,-0.28714156 +404.72097301483154,0.0,390.1515,390.1515,0.6279288,-0.29639184 +404.72966408729553,0.0,382.57574,382.57574,0.61855674,-0.29639184 +404.73962903022766,0.0,373.48486,373.48486,0.6091846,-0.29639184 +404.75026202201843,0.0,363.63638,363.63638,0.59981257,-0.29639184 +404.76045513153076,0.0,350.75757,350.75757,0.5810684,-0.3111922 +404.77024102211,0.0,338.63638,338.63638,0.57169634,-0.3111922 +404.78325295448303,0.0,325.0,325.0,0.55295223,-0.3111922 +404.79376697540283,0.0,312.12122,312.12122,0.5435801,-0.3111922 +404.8027820587158,0.0,297.7273,297.7273,0.524836,-0.3111922 +404.81175994873047,0.0,284.84848,284.84848,0.51546395,-0.3111922 +404.8207631111145,0.0,271.9697,271.9697,0.50609183,-0.28714156 +404.82969093322754,0.0,259.0909,259.0909,0.50609183,-0.28714156 +404.83944511413574,0.0,243.93939,243.93939,0.49671978,-0.28714156 +404.85128808021545,0.0,231.06061,231.06061,0.47797564,-0.28714156 +404.86030292510986,0.0,215.90909,215.90909,0.46860358,-0.28714156 +404.87040400505066,0.0,201.51515,201.51515,0.44985944,-0.2612409 +404.8838131427765,0.0,184.84848,184.84848,0.43111527,-0.2612409 +404.8895831108093,0.0,170.45454,170.45454,0.4217432,-0.2612409 +404.9017930030823,0.0,155.30302,155.30302,0.40299907,-0.2612409 +404.9104549884796,0.0,139.39394,139.39394,0.38425493,-0.3111922 +404.91969203948975,0.0,124.242424,124.242424,0.3561387,-0.3111922 +404.9296860694885,0.0,112.12121,112.12121,0.34676665,-0.3111922 +404.9413859844208,0.0,98.48485,98.48485,0.3280225,-0.3111922 +404.95037508010864,0.0,86.36363,86.36363,0.2905342,-0.3111922 +404.95939803123474,0.0,73.48485,73.48485,0.27179006,-0.3111922 +404.9697370529175,0.0,62.878788,62.878788,0.25304592,-0.29639184 +404.98000502586365,0.0,53.030304,53.030304,0.22492972,-0.29639184 +404.9908549785614,0.0,42.424244,42.424244,0.20618556,-0.29639184 +404.99994707107544,0.0,32.575756,32.575756,0.18744142,-0.29639184 +405.0098249912262,0.0,24.242424,24.242424,0.16869728,-0.29639184 +405.0206871032715,0.0,18.939394,18.939394,0.14995314,-0.29084167 +405.0297009944916,0.0,16.666668,16.666668,0.131209,-0.29084167 +405.04048013687134,0.0,15.151516,15.151516,0.11246486,-0.29084167 +405.04949402809143,0.0,14.39394,14.39394,0.09372071,-0.29084167 +405.06044697761536,0.0,12.878788,12.878788,0.08434864,-0.29639184 +405.0701630115509,0.0,12.121212,12.121212,0.07497657,-0.29639184 +405.08020091056824,0.0,10.606061,10.606061,0.05623243,-0.29639184 +405.0908160209656,0.0,9.848485,9.848485,0.046860356,-0.29639184 +405.0996820926666,0.0,9.090909,9.090909,0.028116215,-0.29639184 +405.110463142395,0.0,8.333334,8.333334,0.018744143,-0.29639184 +405.1215479373932,0.0,6.818182,6.818182,0.009372071,-0.29639184 +405.1299080848694,0.01,6.060606,6.060606,0.0,-0.29639184 +405.1395809650421,0.01,5.3030305,5.3030305,0.0,-0.29639184 +405.1515369415283,0.01,4.5454545,4.5454545,0.0,-0.29639184 +405.16045808792114,0.01,4.5454545,4.5454545,0.0,-0.29639184 +405.16940093040466,0.01,3.787879,3.787879,0.0,-0.29084167 +405.1799440383911,0.01,3.030303,3.030303,0.0,-0.29084167 +405.18964409828186,0.02,2.2727273,2.2727273,0.0,-0.29084167 +405.20263600349426,0.02,2.2727273,2.2727273,0.0,-0.29084167 +405.21164894104004,0.02,1.5151515,1.5151515,0.0,-0.29084167 +405.22042894363403,0.02,0.75757575,0.75757575,0.0,-0.3074921 +405.22965598106384,0.02,0.75757575,0.75757575,0.0,-0.3074921 +405.24073100090027,0.03,0.0,0.0,0.0,-0.3074921 +405.24964213371277,0.03,0.0,0.0,0.0,-0.3074921 +405.2596480846405,0.03,0.0,0.0,0.0,-0.3074921 +405.27050614356995,0.03,0.0,0.0,0.0,-0.25569075 +405.27948904037476,0.03,0.0,0.0,0.0,-0.25569075 +405.2926959991455,0.04,0.0,0.0,0.0,-0.25569075 +405.3004961013794,0.04,0.0,0.0,0.0,-0.25569075 +405.310702085495,0.04,0.0,0.0,0.0,-0.25569075 +405.3197069168091,0.049999997,0.0,0.0,0.0,-0.30009192 +405.3296890258789,0.049999997,0.0,0.0,0.0,-0.30009192 +405.34239292144775,0.049999997,0.0,0.0,0.0,-0.30009192 +405.34951400756836,0.049999997,0.0,0.0,0.0,-0.30009192 +405.35965514183044,0.06,0.0,0.0,0.0,-0.30009192 +405.3700051307678,0.06,0.0,0.0,0.0,-0.28714156 +405.38276290893555,0.06,0.0,0.0,0.0,-0.28714156 +405.39017510414124,0.06,0.0,0.0,0.0,-0.28714156 +405.4007821083069,0.07,0.0,0.0,0.0,-0.28714156 +405.40977811813354,0.07,0.0,0.0,0.0,-0.28714156 +405.421000957489,0.07,0.0,0.0,0.0,-0.28344148 +405.4297239780426,0.08,0.0,0.0,0.0,-0.28344148 +405.43955302238464,0.08,0.0,0.0,0.0,-0.28344148 +405.4502580165863,0.08,0.0,0.0,0.0,-0.28344148 +405.4600110054016,0.08,0.0,0.0,0.0,-0.28344148 +405.4725720882416,0.089999996,0.0,0.0,0.0,-0.2760413 +405.4814739227295,0.089999996,0.0,0.0,0.0,-0.2760413 +405.4896340370178,0.089999996,0.0,0.0,0.0,-0.2760413 +405.4994399547577,0.089999996,0.0,0.0,0.0,-0.2760413 +405.5129690170288,0.099999994,0.0,0.0,0.0,-0.25939083 +405.5210039615631,0.099999994,0.0,0.0,0.0,-0.25939083 +405.5296850204468,0.099999994,0.0,0.0,0.0,-0.25939083 +405.54013109207153,0.099999994,0.0,0.0,0.0,-0.25939083 +405.5500681400299,0.099999994,0.0,0.0,0.0,-0.25939083 +405.5604591369629,0.11,0.0,0.0,0.0,-0.2612409 +405.57062792778015,0.11,0.0,0.0,0.0,-0.2612409 +405.57954692840576,0.11,0.0,0.0,0.0,-0.2612409 +405.5899591445923,0.11,0.0,0.0,0.0,-0.2612409 +405.6030330657959,0.11,0.0,0.0,0.0,-0.2612409 +405.60954213142395,0.11,0.0,0.0,0.0,-0.2612409 +405.61956906318665,0.11,0.0,0.0,0.0,-0.2464405 +405.62971210479736,0.12,0.0,0.0,0.0,-0.2464405 +405.64014410972595,0.12,0.0,0.0,0.0,-0.2464405 +405.649955034256,0.12,0.0,0.0,0.0,-0.2464405 +405.6597969532013,0.12,0.0,0.0,0.0,-0.2464405 +405.6710469722748,0.12,0.0,0.0,0.0,-0.22608997 +405.6800570487976,0.12,0.0,0.0,0.0,-0.22608997 +405.6929221153259,0.12,0.0,0.0,0.0,-0.22608997 +405.7019109725952,0.12,0.0,0.0,0.0,-0.22608997 +405.7109091281891,0.13,0.0,0.0,0.0,-0.22608997 +405.71987891197205,0.13,0.0,0.0,0.0,-0.21128957 +405.7296860218048,0.13,0.0,0.0,0.0,-0.21128957 +405.74003291130066,0.13,0.0,0.0,0.0,-0.21128957 +405.7495319843292,0.13,0.0,0.0,0.0,-0.21128957 +405.7604570388794,0.13,0.0,0.0,0.0,-0.18168877 +405.7701609134674,0.13,0.0,0.0,0.0,-0.18168877 +405.7809600830078,0.14,0.0,0.0,0.0,-0.18168877 +405.78945994377136,0.14,0.0,0.0,0.0,-0.18168877 +405.80079793930054,0.14,0.0,0.0,0.0,-0.18168877 +405.8098039627075,0.14,0.0,0.0,0.0,-0.18168877 +405.8203020095825,0.14,0.0,0.0,0.0,-0.13728762 +405.8294451236725,0.14,0.0,0.0,0.0,-0.13728762 +405.8422439098358,0.14999999,0.0,0.0,0.0,-0.13728762 +405.8512580394745,0.14999999,0.0,0.0,0.0,-0.13728762 +405.8602650165558,0.14999999,0.0,0.0,0.0,-0.13728762 +405.8727331161499,0.14999999,0.0,0.0,0.0,-0.11693706 +405.8795211315155,0.14999999,0.0,0.0,0.0,-0.11693706 +405.88994812965393,0.14999999,0.0,0.0,0.0,-0.11693706 +405.89971804618835,0.14999999,0.0,0.0,0.0,-0.11693706 +405.90945291519165,0.14999999,0.0,0.0,0.0,-0.11693706 +405.9204640388489,0.14999999,0.0,0.0,0.0,-0.089186326 +405.9297070503235,0.16,0.0,0.0,0.0,-0.089186326 +405.9413950443268,0.16,0.0,0.0,0.0,-0.089186326 +405.95039892196655,0.16,0.0,0.0,0.0,-0.089186326 +405.95939898490906,0.16,0.0,0.0,0.0,-0.089186326 +405.96941113471985,0.16,0.0,0.0,0.0,-0.0466352 +405.98062014579773,0.16,0.0,0.0,0.0,-0.0466352 +405.98960304260254,0.16,0.0,0.0,0.0,-0.0466352 +406.0004630088806,0.16,0.0,0.0,0.0,-0.0466352 +406.0094919204712,0.16,0.0,0.0,0.0,-0.0466352 +406.0225179195404,0.16,0.0,0.0,0.0,-0.009634218 +406.0307140350342,0.16,0.0,0.0,0.0,-0.009634218 +406.03968691825867,0.16,0.0,0.0,0.0,-0.009634218 +406.0495750904083,0.16,0.0,0.0,0.0,-0.009634218 +406.0604591369629,0.16,0.0,0.0,0.0,0.04586726 +406.06995010375977,0.16,0.0,0.0,0.0,0.04586726 +406.07952404022217,0.16,0.0,0.0,0.0,0.04586726 +406.0905499458313,0.16,0.0,0.0,0.0,0.04586726 +406.09956192970276,0.16,0.0,0.0,0.0,0.04586726 +406.1104590892792,0.16,0.0,0.0,0.0,0.053267453 +406.121022939682,0.16,0.0,0.0,0.0,0.053267453 +406.1297130584717,0.16,0.0,0.0,0.0,0.053267453 +406.13945603370667,0.16,0.0,0.0,0.0,0.053267453 +406.1502220630646,0.14999999,0.0,0.0,0.0,0.053267453 +406.16045808792114,0.14999999,0.0,0.0,0.0,0.053267453 +406.16943192481995,0.14999999,0.0,0.0,0.0,0.1420698 +406.18068194389343,0.14999999,0.0,0.0,0.0,0.1420698 +406.18967604637146,0.14999999,0.0,0.0,0.0,0.1420698 +406.2028329372406,0.14999999,0.0,0.0,0.0,0.1420698 +406.2118470668793,0.14999999,0.0,0.0,0.0,0.1420698 +406.21970796585083,0.14999999,0.0,0.0,0.0,0.22347198 +406.2296669483185,0.14999999,0.0,0.0,0.0,0.22347198 +406.2413580417633,0.14999999,0.0,0.0,0.0,0.22347198 +406.2503430843353,0.14999999,0.0,0.0,0.0,0.22347198 +406.2604730129242,0.14999999,0.0,0.0,0.0,0.29932398 +406.26942896842957,0.14999999,0.0,0.0,0.0,0.29932398 +406.27981400489807,0.14999999,0.0,0.0,0.0,0.29932398 +406.2928800582886,0.14999999,0.0,0.0,0.0,0.29932398 +406.2998650074005,0.14,0.0,0.0,0.0,0.29932398 +406.3106849193573,0.14,0.0,0.0,0.0,0.29932398 +406.3196039199829,0.14,0.0,0.0,0.0,0.36777583 +406.32969093322754,0.14,0.0,0.0,0.0,0.36777583 +406.34028792381287,0.14,0.0,0.0,0.0,0.36777583 +406.35179901123047,0.14,0.0,0.0,0.0,0.36777583 +406.3599820137024,0.14,0.0,0.0,0.0,0.36777583 +406.3699550628662,0.14,0.0,0.0,0.0,0.43622762 +406.3820230960846,0.13,0.0,0.0,0.0,0.43622762 +406.3902530670166,0.13,0.0,0.0,0.0,0.43622762 +406.3998680114746,0.13,0.0,0.0,0.0,0.43622762 +406.41029500961304,0.13,0.0,0.0,0.0,0.43622762 +406.4210181236267,0.13,0.0,0.0,0.0,0.5305801 +406.42970514297485,0.13,0.0,0.0,0.0,0.5305801 +406.4420530796051,0.13,0.0,0.0,0.0,0.5305801 +406.45108795166016,0.13,0.0,0.0,0.0,0.5305801 +406.46009707450867,0.13,0.0,0.0,0.0,0.5305801 +406.4712030887604,0.13,0.0,0.0,0.0,0.60088205 +406.4801199436188,0.13,0.0,0.0,0.0,0.60088205 +406.4908390045166,0.13,0.0,0.0,0.0,0.60088205 +406.5004699230194,0.13,0.0,0.0,0.0,0.60088205 +406.50949811935425,0.13,0.0,0.0,0.0,0.60088205 +406.52018904685974,0.14,0.0,0.0,0.0,0.68413424 +406.5294189453125,0.14,0.0,0.0,0.0,0.68413424 +406.5412640571594,0.14,0.0,0.0,0.0,0.68413424 +406.55027508735657,0.14,0.0,0.0,0.0,0.68413424 +406.5595290660858,0.14,0.0,0.0,0.0,0.68413424 +406.5726430416107,0.14,0.0,0.0,0.0,0.74703586 +406.5814211368561,0.14999999,0.0,0.0,0.0,0.74703586 +406.59069299697876,0.14999999,0.0,0.0,0.0,0.74703586 +406.59971809387207,0.14999999,0.0,0.0,0.0,0.74703586 +406.6102089881897,0.14999999,0.0,0.0,0.0,0.74703586 +406.6210389137268,0.14999999,0.0,0.0,0.0,0.8210379 +406.62971091270447,0.14999999,0.0,0.0,0.0,0.8210379 +406.64043402671814,0.14999999,0.0,0.0,0.0,0.8210379 +406.6494610309601,0.16,0.0,0.0,0.0,0.8210379 +406.66026496887207,0.16,0.0,0.0,0.0,0.8210379 +406.6713409423828,0.16,0.0,0.0,0.0,0.8561887 +406.6809079647064,0.16,0.0,0.0,0.0,0.8561887 +406.68993306159973,0.16,0.0,0.0,0.0,0.8561887 +406.7001430988312,0.16,0.0,0.0,0.0,0.8561887 +406.70967507362366,0.16,0.0,0.0,0.0,0.8561887 +406.72083806991577,0.16,0.0,0.0,0.0,0.87098914 +406.72968912124634,0.16,0.0,0.0,0.0,0.87098914 +406.7396459579468,0.16,0.0,0.0,0.0,0.87098914 +406.7507710456848,0.17,0.0,0.0,0.0,0.87098914 +406.7604651451111,0.17,0.0,0.0,0.0,0.88023937 +406.7711110115051,0.17,0.0,0.0,0.0,0.88023937 +406.78012108802795,0.17,0.0,0.0,0.0,0.88023937 +406.7901599407196,0.17,0.0,0.0,0.0,0.88023937 +406.80107402801514,0.17,0.0,0.0,0.0,0.88023937 +406.8099989891052,0.17,0.0,0.0,0.0,0.88023937 +406.82073497772217,0.17,0.0,0.0,0.0,0.8857896 +406.8298170566559,0.17,0.0,0.0,0.0,0.8857896 +406.8406970500946,0.17,0.0,0.0,0.0,0.8857896 +406.85162806510925,0.17,0.0,0.0,0.0,0.8857896 +406.8595631122589,0.17,0.0,0.0,0.0,0.8857896 +406.87029910087585,0.17,0.0,0.0,0.0,0.8950398 +406.88003492355347,0.17,0.0,0.0,0.0,0.8950398 +406.889701128006,0.17,0.0,0.0,0.0,0.8950398 +406.9019980430603,0.17,0.0,0.0,0.0,0.8950398 +406.9094269275665,0.17999999,0.0,0.0,0.0,0.8950398 +406.92000794410706,0.17999999,0.0,0.0,0.0,0.85433877 +406.9297170639038,0.17999999,0.0,0.0,0.0,0.85433877 +406.9424741268158,0.17999999,0.0,0.0,0.0,0.85433877 +406.9514970779419,0.17999999,0.0,0.0,0.0,0.85433877 +406.96047592163086,0.17999999,0.0,0.0,0.0,0.89133966 +406.969526052475,0.17999999,0.0,0.0,0.0,0.89133966 +406.9831349849701,0.17999999,0.0,0.0,0.0,0.89133966 +406.9921700954437,0.17999999,0.0,0.0,0.0,0.89133966 +406.99947905540466,0.17999999,0.0,0.0,0.0,0.89133966 +407.0096731185913,0.17999999,0.0,0.0,0.0,0.89133966 +407.020987033844,0.17999999,0.0,0.0,0.0,0.88023937 +407.02970790863037,0.17999999,0.0,0.0,0.0,0.88023937 +407.04015612602234,0.17999999,0.0,0.0,0.0,0.88023937 +407.0500910282135,0.17999999,0.0,0.0,0.0,0.88023937 +407.0594050884247,0.17999999,0.0,0.0,0.0,0.88023937 +407.0725200176239,0.17999999,0.0,0.0,0.0,0.87653935 +407.0810329914093,0.17999999,0.0,0.0,0.0,0.87653935 +407.09133410453796,0.17999999,0.0,0.0,0.0,0.87653935 +407.10035014152527,0.17999999,0.0,0.0,0.0,0.87653935 +407.11046409606934,0.17999999,0.0,0.0,0.0,0.89133966 +407.1210389137268,0.17999999,0.0,0.0,0.0,0.89133966 +407.12970995903015,0.17999999,0.0,0.0,0.0,0.89133966 +407.1399230957031,0.17999999,0.0,0.0,0.0,0.89133966 +407.149915933609,0.17999999,0.0,0.0,0.0,0.89133966 +407.16048407554626,0.17,0.0,0.0,0.0,0.8691391 +407.17248797416687,0.17,0.0,0.0,0.0,0.8691391 +407.1800479888916,0.17,0.0,0.0,0.0,0.8691391 +407.190279006958,0.17,0.0,0.0,0.0,0.8691391 +407.19952297210693,0.17,0.0,0.0,0.0,0.8691391 +407.2112600803375,0.17,0.0,0.0,0.0,0.8691391 +407.220153093338,0.17,0.0,0.0,0.0,0.88763964 +407.2297201156616,0.17,0.0,0.0,0.0,0.88763964 +407.2400209903717,0.17,0.0,0.0,0.0,0.88763964 +407.2504720687866,0.17,0.0,0.0,0.0,0.88763964 +407.2604761123657,0.17,0.0,0.0,0.0,0.88763964 +407.2716579437256,0.17,0.0,0.0,0.0,0.88763964 +407.2805230617523,0.17,0.0,0.0,0.0,0.88763964 +407.2897050380707,0.17,0.0,0.0,0.0,0.88763964 +407.29963397979736,0.17,0.0,0.0,0.0,0.88763964 +407.30999207496643,0.17,0.0,0.0,0.0,0.88763964 +407.3195540904999,0.17,0.0,0.0,0.0,0.89133966 +407.3297040462494,0.16,0.0,0.0,0.0,0.89133966 +407.34084391593933,0.16,0.0,0.0,0.0,0.89133966 +407.3528139591217,0.16,0.0,0.0,0.0,0.89133966 +407.3604791164398,0.16,0.0,0.0,0.0,0.8672891 +407.3708610534668,0.16,0.0,0.0,0.0,0.8672891 +407.37989592552185,0.16,0.0,0.0,0.0,0.8672891 +407.3895740509033,0.16,0.0,0.0,0.0,0.8672891 +407.4019811153412,0.16,0.0,0.0,0.0,0.8672891 +407.41097712516785,0.16,0.0,0.0,0.0,0.8672891 +407.41998291015625,0.16,0.0,0.0,0.0,0.8580388 +407.4295380115509,0.16,0.0,0.0,0.0,0.8580388 +407.43994998931885,0.16,0.0,0.0,0.0,0.8580388 +407.44975304603577,0.16,0.0,0.0,0.0,0.8580388 +407.46047592163086,0.14999999,0.0,0.0,0.0,0.83398825 +407.4698259830475,0.14999999,0.0,0.0,0.0,0.83398825 +407.4829649925232,0.14999999,0.0,0.0,0.0,0.83398825 +407.4919741153717,0.14999999,0.0,0.0,0.0,0.83398825 +407.50095200538635,0.14999999,0.0,0.0,0.0,0.83398825 +407.50998711586,0.14999999,0.0,0.0,0.0,0.83398825 +407.5197150707245,0.14999999,0.0,0.0,0.0,0.7599862 +407.5297260284424,0.14999999,0.0,0.0,0.0,0.7599862 +407.5401051044464,0.14999999,0.0,0.0,0.0,0.7599862 +407.5500600337982,0.14999999,0.0,0.0,0.0,0.7599862 +407.55945801734924,0.14999999,0.0,0.0,0.0,0.7599862 +407.5698781013489,0.14,0.0,0.0,0.0,0.72853535 +407.5808279514313,0.14,0.0,0.0,0.0,0.72853535 +407.5909380912781,0.14,0.0,0.0,0.0,0.72853535 +407.59995007514954,0.14,0.0,0.0,0.0,0.72853535 +407.60993695259094,0.14,0.0,0.0,0.0,0.72853535 +407.62102007865906,0.14,0.0,0.0,0.0,0.66378367 +407.6297330856323,0.14,0.0,0.0,0.0,0.66378367 +407.6413381099701,0.14,0.0,0.0,0.0,0.66378367 +407.650377035141,0.14,0.0,0.0,0.0,0.66378367 +407.6598291397095,0.14,0.0,0.0,0.0,0.66378367 +407.67110896110535,0.13,0.0,0.0,0.0,0.6138323 +407.68094301223755,0.13,0.0,0.0,0.0,0.6138323 +407.68992710113525,0.13,0.0,0.0,0.0,0.6138323 +407.69979596138,0.13,0.0,0.0,0.0,0.6138323 +407.70939207077026,0.13,0.0,0.0,0.0,0.6138323 +407.71942710876465,0.13,0.0,0.0,0.0,0.56018096 +407.7300410270691,0.13,0.0,0.0,0.0,0.56018096 +407.7397229671478,0.13,0.0,0.0,0.0,0.56018096 +407.7495300769806,0.13,0.0,0.0,0.0,0.56018096 +407.7604911327362,0.13,0.0,0.0,0.0,0.52688 +407.77091002464294,0.13,0.0,0.0,0.0,0.52688 +407.7799129486084,0.13,0.0,0.0,0.0,0.52688 +407.79030895233154,0.13,0.0,0.0,0.0,0.52688 +407.79965591430664,0.13,0.0,0.0,0.0,0.52688 +407.8101530075073,0.13,0.0,0.0,0.0,0.52688 +407.8210060596466,0.13,0.0,0.0,0.0,0.5379803 +407.8297460079193,0.12,0.0,0.0,0.0,0.5379803 +407.83968591690063,0.12,0.0,0.0,0.0,0.5379803 +407.85189604759216,0.12,0.0,0.0,0.0,0.5379803 +407.8604850769043,0.12,0.0,0.0,0.0,0.5028294 +407.8698830604553,0.12,0.0,0.0,0.0,0.5028294 +407.8798909187317,0.12,0.0,0.0,0.0,0.5028294 +407.88954401016235,0.12,0.0,0.0,0.0,0.5028294 +407.90074706077576,0.12,0.0,0.0,0.0,0.5028294 +407.91049098968506,0.12,0.0,0.0,0.0,0.45842817 +407.92084193229675,0.12,0.0,0.0,0.0,0.45842817 +407.9297161102295,0.12,0.0,0.0,0.0,0.45842817 +407.94164395332336,0.12,0.0,0.0,0.0,0.45842817 +407.95087599754333,0.12,0.0,0.0,0.0,0.45842817 +407.9596791267395,0.12,0.0,0.0,0.0,0.45842817 +407.96941113471985,0.12,0.0,0.0,0.0,0.4454778 +407.9797430038452,0.12,0.0,0.0,0.0,0.4454778 +407.99067997932434,0.12,0.0,0.0,0.0,0.4454778 +408.0020079612732,0.12,0.0,0.0,0.0,0.4454778 +408.0104949474335,0.12,0.0,0.0,0.0,0.41587704 +408.02003812789917,0.12,0.0,0.0,0.0,0.41587704 +408.0297191143036,0.12,0.0,0.0,0.0,0.41587704 +408.0403480529785,0.12,0.0,0.0,0.0,0.41587704 +408.04986000061035,0.12,0.0,0.0,0.0,0.41587704 +408.060485124588,0.12,0.0,0.0,0.0,0.39182645 +408.0699179172516,0.12,0.0,0.0,0.0,0.39182645 +408.08313512802124,0.12,0.0,0.0,0.0,0.39182645 +408.08961606025696,0.12,0.0,0.0,0.0,0.39182645 +408.10024309158325,0.12,0.0,0.0,0.0,0.39182645 +408.1102089881897,0.12,0.0,0.0,0.0,0.39182645 +408.11943912506104,0.12,0.0,0.0,0.0,0.36592576 +408.12950110435486,0.12,0.0,0.0,0.0,0.36592576 +408.13987398147583,0.12,0.0,0.0,0.0,0.36592576 +408.15111899375916,0.12,0.0,0.0,0.0,0.36592576 +408.15998697280884,0.12,0.0,0.0,0.0,0.36592576 +408.17330408096313,0.12,0.0,0.0,0.0,0.36222565 +408.1823470592499,0.12,0.0,0.0,0.0,0.36222565 +408.19135308265686,0.12,0.0,0.0,0.0,0.36222565 +408.20036602020264,0.12,0.0,0.0,0.0,0.36222565 +408.20939111709595,0.12,0.0,0.0,0.0,0.36222565 +408.21954703330994,0.12,0.0,0.0,0.0,0.3344749 +408.22971391677856,0.12,0.0,0.0,0.0,0.3344749 +408.24129009246826,0.12,0.0,0.0,0.0,0.3344749 +408.2501621246338,0.12,0.0,0.0,0.0,0.3344749 +408.26049613952637,0.12,0.0,0.0,0.0,0.3233746 +408.2719750404358,0.12,0.0,0.0,0.0,0.3233746 +408.281033039093,0.12,0.0,0.0,0.0,0.3233746 +408.28996205329895,0.12,0.0,0.0,0.0,0.3233746 +408.29956102371216,0.12,0.0,0.0,0.0,0.3233746 +408.30996894836426,0.12,0.0,0.0,0.0,0.3233746 +408.31984210014343,0.12,0.0,0.0,0.0,0.2771234 +408.32945108413696,0.12,0.0,0.0,0.0,0.2771234 +408.3403811454773,0.12,0.0,0.0,0.0,0.2771234 +408.3494429588318,0.12,0.0,0.0,0.0,0.2771234 +408.359689950943,0.12,0.0,0.0,0.0,0.2771234 +408.37020993232727,0.12,0.0,0.0,0.0,0.27897343 +408.3806929588318,0.12,0.0,0.0,0.0,0.27897343 +408.3897330760956,0.12,0.0,0.0,0.0,0.27897343 +408.40081810951233,0.12,0.0,0.0,0.0,0.27897343 +408.40984201431274,0.12,0.0,0.0,0.0,0.27897343 +408.4210350513458,0.12,0.0,0.0,0.0,0.26417306 +408.4297239780426,0.12,0.0,0.0,0.0,0.26417306 +408.4397130012512,0.12,0.0,0.0,0.0,0.26417306 +408.45006799697876,0.12,0.0,0.0,0.0,0.26417306 +408.46047806739807,0.12,0.0,0.0,0.0,0.27897343 +408.4708480834961,0.12,0.0,0.0,0.0,0.27897343 +408.4793999195099,0.12,0.0,0.0,0.0,0.27897343 +408.4908049106598,0.12,0.0,0.0,0.0,0.27897343 +408.49980902671814,0.12,0.0,0.0,0.0,0.27897343 +408.51004910469055,0.12,0.0,0.0,0.0,0.27897343 +408.52088809013367,0.12,0.0,0.0,0.0,0.24197246 +408.5299150943756,0.12,0.0,0.0,0.0,0.24197246 +408.5395851135254,0.12,0.0,0.0,0.0,0.24197246 +408.55200695991516,0.12,0.0,0.0,0.0,0.24197246 +408.5604889392853,0.12,0.0,0.0,0.0,0.21607177 +408.56993293762207,0.12,0.0,0.0,0.0,0.21607177 +408.57972407341003,0.12,0.0,0.0,0.0,0.21607177 +408.5897719860077,0.12,0.0,0.0,0.0,0.21607177 +408.60195994377136,0.12,0.0,0.0,0.0,0.21607177 +408.61034297943115,0.12,0.0,0.0,0.0,0.21607177 +408.6195330619812,0.12,0.0,0.0,0.0,0.21052164 +408.62975001335144,0.12,0.0,0.0,0.0,0.21052164 +408.64103412628174,0.12,0.0,0.0,0.0,0.21052164 +408.65116810798645,0.12,0.0,0.0,0.0,0.21052164 +408.6601960659027,0.12,0.0,0.0,0.0,0.21052164 +408.6707479953766,0.12,0.0,0.0,0.0,0.18462092 +408.6797330379486,0.12,0.0,0.0,0.0,0.18462092 +408.6910779476166,0.12,0.0,0.0,0.0,0.18462092 +408.6999809741974,0.12,0.0,0.0,0.0,0.18462092 +408.7102589607239,0.12,0.0,0.0,0.0,0.18462092 +408.7200059890747,0.12,0.0,0.0,0.0,0.16982053 +408.72972798347473,0.12,0.0,0.0,0.0,0.16982053 +408.739501953125,0.12,0.0,0.0,0.0,0.16982053 +408.7502911090851,0.12,0.0,0.0,0.0,0.16982053 +408.76048612594604,0.12,0.0,0.0,0.0,0.16057031 +408.7696990966797,0.12,0.0,0.0,0.0,0.16057031 +408.78018712997437,0.11,0.0,0.0,0.0,0.16057031 +408.79144406318665,0.11,0.0,0.0,0.0,0.16057031 +408.7998089790344,0.11,0.0,0.0,0.0,0.16057031 +408.8094599246979,0.11,0.0,0.0,0.0,0.16057031 +408.8210461139679,0.099999994,0.0,0.0,0.0,0.15872025 +408.8297190666199,0.099999994,0.0,0.0,0.0,0.15872025 +408.84047412872314,0.099999994,0.0,0.0,0.0,0.15872025 +408.84948897361755,0.099999994,0.0,0.0,0.0,0.15872025 +408.85966205596924,0.089999996,0.0,0.0,0.0,0.15872025 +408.86944007873535,0.089999996,0.0,0.0,0.0,0.14947 +408.88163709640503,0.089999996,0.0,0.0,0.0,0.14947 +408.8906409740448,0.089999996,0.0,0.0,0.0,0.14947 +408.8996739387512,0.089999996,0.0,0.0,0.0,0.14947 +408.9104940891266,0.08,0.0,0.0,0.0,0.14947 +408.921010017395,0.08,0.0,0.0,0.0,0.14947 +408.9297420978546,0.08,0.0,0.0,0.0,0.14947 +408.93964099884033,0.07,0.0,0.0,0.0,0.14947 +408.94957399368286,0.07,0.0,0.0,0.0,0.14947 +408.96048307418823,0.07,0.0,0.0,0.0,0.11801915 +408.97181010246277,0.06,0.0,0.0,0.0,0.11801915 +408.98083090782166,0.06,0.0,0.0,0.0,0.11801915 +408.98986196517944,0.06,0.0,0.0,0.0,0.11801915 +409.0001599788666,0.049999997,0.0,0.0,0.0,0.11801915 +409.0094349384308,0.049999997,0.0,0.0,0.0,0.11801915 +409.019828081131,0.049999997,0.0,0.0,0.0,0.12356931 +409.029748916626,0.049999997,0.0,0.0,0.0,0.12356931 +409.03957295417786,0.04,0.0,0.0,0.0,0.12356931 +409.050409078598,0.04,0.0,0.0,0.0,0.12356931 +409.0604920387268,0.04,0.0,0.0,0.0,0.09766865 +409.0700569152832,0.04,0.0,0.0,0.0,0.09766865 +409.0800199508667,0.04,0.0,0.0,0.0,0.09766865 +409.09138011932373,0.04,0.0,0.0,0.0,0.09766865 +409.101145029068,0.03,0.0,0.0,0.0,0.09766865 +409.1100609302521,0.03,0.0,0.0,0.0,0.09766865 +409.11995005607605,0.03,0.0,0.0,0.0,0.10506884 +409.12952494621277,0.03,0.0,0.0,0.0,0.10506884 +409.14087104797363,0.03,0.0,0.0,0.0,0.10506884 +409.1518940925598,0.03,0.0,0.0,0.0,0.10506884 +409.16050601005554,0.03,0.0,0.0,0.0,0.073618 +409.1702461242676,0.03,0.0,0.0,0.0,0.073618 +409.18138813972473,0.03,0.0,0.0,0.0,0.073618 +409.19029998779297,0.03,0.0,0.0,0.0,0.073618 +409.20111894607544,0.02,0.0,0.0,0.0,0.073618 +409.2095100879669,0.02,0.0,0.0,0.0,0.073618 +409.2194950580597,0.02,0.0,0.0,0.0,0.06436774 +409.2297360897064,0.02,0.0,0.0,0.0,0.06436774 +409.24191093444824,0.02,0.0,0.0,0.0,0.06436774 +409.25136399269104,0.02,0.0,0.0,0.0,0.06436774 +409.2600290775299,0.02,0.0,0.0,0.0,0.06436774 +409.2694261074066,0.02,0.0,0.0,0.0,0.08101819 +409.2794280052185,0.02,0.0,0.0,0.0,0.08101819 +409.2912800312042,0.02,0.0,0.0,0.0,0.08101819 +409.29949712753296,0.02,0.0,0.0,0.0,0.08101819 +409.3095419406891,0.02,0.0,0.0,0.0,0.08101819 +409.32105112075806,0.02,0.0,0.0,0.0,0.049567357 +409.3297209739685,0.02,0.0,0.0,0.0,0.049567357 +409.3415529727936,0.02,0.0,0.0,0.0,0.049567357 +409.35056591033936,0.02,0.0,0.0,0.0,0.049567357 +409.3595759868622,0.02,0.0,0.0,0.0,0.049567357 +409.37031602859497,0.02,0.0,0.0,0.0,0.068067834 +409.3814220428467,0.02,0.0,0.0,0.0,0.068067834 +409.3895230293274,0.02,0.0,0.0,0.0,0.068067834 +409.3994641304016,0.02,0.0,0.0,0.0,0.068067834 +409.4110369682312,0.02,0.0,0.0,0.0,0.068067834 +409.4220631122589,0.02,0.0,0.0,0.0,0.0551175 +409.4299919605255,0.02,0.0,0.0,0.0,0.0551175 +409.43975496292114,0.02,0.0,0.0,0.0,0.0551175 +409.4496340751648,0.02,0.0,0.0,0.0,0.0551175 +409.46043491363525,0.02,0.0,0.0,0.0,0.0551175 +409.4714651107788,0.02,0.0,0.0,0.0,0.068067834 +409.4804630279541,0.02,0.0,0.0,0.0,0.068067834 +409.48946595191956,0.02,0.0,0.0,0.0,0.068067834 +409.5022699832916,0.02,0.0,0.0,0.0,0.068067834 +409.5098330974579,0.02,0.0,0.0,0.0,0.068067834 +409.51989006996155,0.02,0.0,0.0,0.0,0.06621779 +409.52975392341614,0.02,0.0,0.0,0.0,0.06621779 +409.53996896743774,0.02,0.0,0.0,0.0,0.06621779 +409.5508680343628,0.02,0.0,0.0,0.0,0.06621779 +409.56051206588745,0.02,0.0,0.0,0.0,0.038467064 +409.5704290866852,0.02,0.0,0.0,0.0,0.038467064 +409.57943391799927,0.02,0.0,0.0,0.0,0.038467064 +409.59140396118164,0.02,0.0,0.0,0.0,0.038467064 +409.6003210544586,0.02,0.0,0.0,0.0,0.038467064 +409.6121311187744,0.02,0.0,0.0,0.0,0.038467064 +409.6198160648346,0.02,0.0,0.0,0.0,0.032916907 +409.62976813316345,0.02,0.0,0.0,0.0,0.032916907 +409.6424329280853,0.02,0.0,0.0,0.0,0.032916907 +409.64982295036316,0.02,0.0,0.0,0.0,0.032916907 +409.66042709350586,0.02,0.0,0.0,0.0,0.032916907 +409.66944098472595,0.02,0.0,0.0,0.0,0.038467064 +409.680536031723,0.02,0.0,0.0,0.0,0.038467064 +409.6894590854645,0.02,0.0,0.0,0.0,0.038467064 +409.70231199264526,0.02,0.0,0.0,0.0,0.038467064 +409.7113239765167,0.02,0.0,0.0,0.0,0.038467064 +409.7203769683838,0.02,0.0,0.0,0.0,0.02921681 +409.7297189235687,0.02,0.0,0.0,0.0,0.02921681 +409.74141693115234,0.02,0.0,0.0,0.0,0.02921681 +409.7504210472107,0.02,0.0,0.0,0.0,0.02921681 +409.75942301750183,0.02,0.0,0.0,0.0,0.02921681 +409.7696809768677,0.01,0.0,0.0,0.0,0.023666665 +409.77973914146423,0.01,0.0,0.0,0.0,0.023666665 +409.7925250530243,0.01,0.0,0.0,0.0,0.023666665 +409.80154609680176,0.01,0.0,0.0,0.0,0.023666665 +409.8100390434265,0.01,0.0,0.0,0.0,0.023666665 +409.81956791877747,0.01,0.0,0.0,0.0,0.02921681 +409.82974100112915,0.01,0.0,0.0,0.0,0.02921681 +409.8403980731964,0.01,0.0,0.0,0.0,0.02921681 +409.84939098358154,0.01,0.0,0.0,0.0,0.02921681 +409.86049699783325,0.01,0.0,0.0,0.0,0.06066765 +409.8736801147461,0.01,0.0,0.0,0.0,0.06066765 +409.8827049732208,0.01,0.0,0.0,0.0,0.06066765 +409.8917410373688,0.0,0.0,0.0,0.0,0.06066765 +409.90074706077576,0.0,0.0,0.0,0.0,0.06066765 +409.9096579551697,0.0,0.0,0.0,0.0,0.06066765 +409.9210419654846,0.0,0.0,0.0,0.0,0.012566376 +409.9297459125519,0.0,0.0,0.0,0.0,0.012566376 +409.939404964447,0.0,0.0,0.0,0.0,0.012566376 +409.9494049549103,0.0,0.0,0.0,0.0,0.012566376 +409.96051812171936,0.0,0.0,0.0,0.0,0.032916907 +409.9711661338806,0.0,0.0,0.0,0.0,0.032916907 +409.9795699119568,0.0,0.0,0.0,0.0,0.032916907 +409.9909391403198,0.0,0.0,0.0,0.0,0.032916907 +409.9999690055847,0.0,0.0,0.0,0.0,0.032916907 +410.01039600372314,0.0,0.0,0.0,0.0,0.032916907 +410.0203709602356,0.0,0.0,0.0,0.0,0.027366763 +410.02975702285767,0.0,0.0,0.0,0.0,0.027366763 +410.03949213027954,0.0,0.0,0.0,0.0,0.027366763 +410.0540919303894,0.0,0.0,0.0,0.0,0.027366763 +410.06051111221313,0.0,0.0,0.0,0.0,0.031066857 +410.07213401794434,0.0,0.0,0.0,0.0,0.031066857 +410.08115696907043,0.0,0.0,0.0,0.0,0.031066857 +410.09019207954407,0.0,0.0,0.0,0.0,0.031066857 +410.09953713417053,0.0,0.0,0.0,0.0,0.031066857 +410.11036014556885,0.0,0.0,0.0,0.0,0.031066857 +410.12063908576965,0.0,0.0,0.0,0.0,0.027366763 +410.1296389102936,0.0,0.0,0.0,0.0,0.027366763 +410.1441180706024,0.0,0.0,0.0,0.0,0.027366763 +410.1530201435089,0.0,0.0,0.0,0.0,0.027366763 +410.1598629951477,0.0,0.0,0.0,0.0,0.027366763 +410.1694710254669,0.0,0.0,0.0,0.0,0.023666665 +410.1797671318054,0.0,0.0,0.0,0.0,0.023666665 +410.18939208984375,0.0,0.0,0.0,0.0,0.023666665 +410.20035004615784,0.0,0.0,0.0,0.0,0.023666665 +410.2107720375061,0.0,0.0,0.0,0.0,0.023666665 +410.2197790145874,0.0,0.0,0.0,0.0,0.01811652 +410.23241114616394,0.0,0.0,0.0,0.0,0.01811652 +410.2421889305115,0.0,0.0,0.0,0.0,0.01811652 +410.2500100135803,0.0,0.0,0.0,0.0,0.01811652 +410.2600030899048,0.0,0.0,0.0,0.0,0.01811652 +410.2705590724945,0.0,0.0,0.0,0.0,0.027366763 +410.2795810699463,0.0,0.0,0.0,0.0,0.027366763 +410.29034304618835,0.0,0.0,0.0,0.0,0.027366763 +410.299574136734,0.0,0.0,0.0,0.0,0.027366763 +410.3099310398102,0.0,0.0,0.0,0.0,0.027366763 +410.3210380077362,0.0,0.0,0.0,0.0,0.023666665 +410.3295271396637,0.0,0.0,0.0,0.0,0.023666665 +410.34024691581726,0.0,0.0,0.0,0.0,0.023666665 +410.3510220050812,0.0,0.0,0.0,0.0,0.023666665 +410.36051297187805,0.0,0.0,0.0,0.0,0.010716328 +410.369754076004,0.0,0.0,0.0,0.0,0.010716328 +410.3803291320801,0.0,0.0,0.0,0.0,0.010716328 +410.39103507995605,0.0,0.0,0.0,0.0,0.010716328 +410.4000720977783,0.0,0.0,0.0,0.0,0.010716328 +410.411581993103,0.0,0.0,0.0,0.0,0.010716328 +410.4205090999603,0.0,0.0,0.0,0.0,0.032916907 +410.4295530319214,0.0,0.0,0.0,0.0,0.032916907 +410.44192004203796,0.0,0.0,0.0,0.0,0.032916907 +410.4509379863739,0.0,0.0,0.0,0.0,0.032916907 +410.45994997024536,0.0,0.0,0.0,0.0,0.032916907 +410.4703199863434,0.0,0.0,0.0,0.0,0.012566376 +410.481192111969,0.0,0.0,0.0,0.0,0.012566376 +410.4902229309082,0.0,0.0,0.0,0.0,0.012566376 +410.5007309913635,0.0,0.0,0.0,0.0,0.012566376 +410.50944995880127,0.0,0.0,0.0,0.0,0.012566376 +410.5203719139099,0.0,0.0,0.0,0.0,0.008866279 +410.5297660827637,0.0,0.0,0.0,0.0,0.008866279 +410.5411250591278,0.0,0.0,0.0,0.0,0.008866279 +410.5501661300659,0.0,0.0,0.0,0.0,0.008866279 +410.5593979358673,0.0,0.0,0.0,0.0,0.008866279 +410.5695610046387,0.0,0.0,0.0,0.0,0.014416425 +410.58033895492554,0.0,0.0,0.0,0.0,0.014416425 +410.5898940563202,0.0,0.0,0.0,0.0,0.014416425 +410.5994770526886,0.0,0.0,0.0,0.0,0.014416425 +410.61303210258484,0.0,0.0,0.0,0.0,0.023666665 +410.62104201316833,0.0,0.0,0.0,0.0,0.023666665 +410.6297769546509,0.0,0.0,0.0,0.0,0.023666665 +410.6403179168701,0.0,0.0,0.0,0.0,0.023666665 +410.65032291412354,0.0,0.0,0.0,0.0,0.023666665 +410.6595849990845,0.0,0.0,0.0,0.0,0.023666665 +410.6701600551605,0.0,0.0,0.0,0.0,0.023666665 +410.6794629096985,0.0,0.0,0.0,0.0,0.023666665 +410.6902060508728,0.0,0.0,0.0,0.0,0.023666665 +410.7029449939728,0.0,0.0,0.0,0.0,0.023666665 +410.7124619483948,0.0,0.0,0.0,0.0,0.023666665 +410.7210431098938,0.0,0.0,0.0,0.0,0.023666665 +410.72975397109985,0.0,0.0,0.0,0.0,0.023666665 +410.739501953125,0.0,0.0,0.0,0.0,0.023666665 +410.74995613098145,0.0,0.0,0.0,0.0,0.023666665 +410.7605240345001,0.0,0.0,0.0,0.0,0.02921681 +410.7696199417114,0.0,0.0,0.0,0.0,0.02921681 +410.784117937088,0.0,0.0,0.0,0.0,0.02921681 +410.7904009819031,0.0,0.0,0.0,0.0,0.02921681 +410.8026280403137,0.0,0.0,0.0,0.0,0.02921681 +410.8099191188812,0.0,0.0,0.0,0.0,0.02921681 +410.8201379776001,0.0,0.0,0.0,0.0,0.012566376 +410.82970213890076,0.0,0.0,0.0,0.0,0.012566376 +410.83954405784607,0.0,0.0,0.0,0.0,0.012566376 +410.8507580757141,0.0,0.0,0.0,0.0,0.012566376 +410.8597631454468,0.0,0.0,0.0,0.0,0.012566376 +410.87412214279175,0.0,0.0,0.0,0.0,0.031066857 +410.88206005096436,0.0,0.0,0.0,0.0,0.031066857 +410.891832113266,0.0,0.0,0.0,0.0,0.031066857 +410.90184903144836,0.0,0.0,0.0,0.0,0.031066857 +410.9105191230774,0.0,0.0,0.0,0.0,0.02921681 +410.9197881221771,0.0,0.0,0.0,0.0,0.02921681 +410.92976212501526,0.0,0.0,0.0,0.0,0.02921681 +410.9408760070801,0.0,0.0,0.0,0.0,0.02921681 +410.9496359825134,0.0,0.0,0.0,0.0,0.02921681 +410.9598500728607,0.0,0.0,0.0,0.0,0.02921681 +410.97326707839966,0.0,0.0,0.0,0.0,0.027366763 +410.98164105415344,0.0,0.0,0.0,0.0,0.027366763 +410.99026012420654,0.0,0.0,0.0,0.0,0.027366763 +411.00002002716064,0.0,0.0,0.0,0.0,0.027366763 +411.01006507873535,0.0,0.0,0.0,0.0,0.027366763 +411.021075963974,0.0,0.0,0.0,0.0,0.019966569 +411.0297751426697,0.0,0.0,0.0,0.0,0.019966569 +411.04007601737976,0.0,0.0,0.0,0.0,0.019966569 +411.0535080432892,0.0,0.0,0.0,0.0,0.019966569 +411.0605299472809,0.0,0.0,0.0,0.0,0.021816617 +411.0713460445404,0.0,0.0,0.0,0.0,0.021816617 +411.0800130367279,0.0,0.0,0.0,0.0,0.021816617 +411.09120893478394,0.0,0.0,0.0,0.0,0.021816617 +411.10022711753845,0.0,0.0,0.0,0.0,0.021816617 +411.1094739437103,0.0,0.0,0.0,0.0,0.021816617 +411.1212000846863,0.0,0.0,0.0,0.0,0.0033161184 +411.1294629573822,0.0,0.0,0.0,0.0,0.0033161184 +411.1397569179535,0.0,0.0,0.0,0.0,0.0033161184 +411.1515779495239,0.0,0.0,0.0,0.0,0.0033161184 +411.16048312187195,0.0,0.0,0.0,0.0,0.0033161184 +411.1693949699402,0.0,0.0,0.0,0.0,0.034766953 +411.18126606941223,0.0,0.0,0.0,0.0,0.034766953 +411.190279006958,0.0,0.0,0.0,0.0,0.034766953 +411.19951009750366,0.0,0.0,0.0,0.0,0.034766953 +411.2099299430847,0.0,0.0,0.0,0.0,0.034766953 +411.21968603134155,0.0,0.0,0.0,0.0,0.02921681 +411.2297639846802,0.0,0.0,0.0,0.0,0.02921681 +411.2407281398773,0.0,0.0,0.0,0.0,0.02921681 +411.24963903427124,0.0,0.0,0.0,0.0,0.02921681 +411.2605791091919,0.0,0.0,0.0,0.0,0.02921681 +411.2712709903717,0.0,0.0,0.0,0.0,0.027366763 +411.2802550792694,0.0,0.0,0.0,0.0,0.027366763 +411.28959798812866,0.0,0.0,0.0,0.0,0.027366763 +411.3014919757843,0.0,0.0,0.0,0.0,0.027366763 +411.3105010986328,0.0,0.0,0.0,0.0,0.027366763 +411.3195080757141,0.0,0.0,0.0,0.0,0.032916907 +411.3297519683838,0.0,0.0,0.0,0.0,0.032916907 +411.33982610702515,0.0,0.0,0.0,0.0,0.032916907 +411.35035610198975,0.0,0.0,0.0,0.0,0.032916907 +411.36051392555237,0.0,0.0,0.0,0.0,0.032916907 +411.3702509403229,0.0,0.0,0.0,0.0,0.032916907 +411.3797929286957,0.0,0.0,0.0,0.0,0.032916907 +411.3916230201721,0.0,0.0,0.0,0.0,0.032916907 +411.39996099472046,0.0,0.0,0.0,0.0,0.032916907 +411.4096710681915,0.0,0.0,0.0,0.0,0.032916907 +411.4210579395294,0.0,0.0,0.0,0.0,0.027366763 +411.4297580718994,0.0,0.0,0.0,0.0,0.027366763 +411.44226694107056,0.0,0.0,0.0,0.0,0.027366763 +411.45128107070923,0.0,0.0,0.0,0.0,0.027366763 +411.46027994155884,0.0,0.0,0.0,0.0,0.027366763 +411.4697301387787,0.0,0.0,0.0,0.0,0.042167164 +411.48143792152405,0.0,0.0,0.0,0.0,0.042167164 +411.49013113975525,0.0,0.0,0.0,0.0,0.042167164 +411.49980092048645,0.0,0.0,0.0,0.0,0.042167164 +411.51184010505676,0.0,0.0,0.0,0.0,0.042167164 +411.520103931427,0.0,0.0,0.0,0.0,0.027366763 +411.5297739505768,0.0,0.0,0.0,0.0,0.027366763 +411.54126596450806,0.0,0.0,0.0,0.0,0.027366763 +411.5501639842987,0.0,0.0,0.0,0.0,0.027366763 +411.5601661205292,0.0,0.0,0.0,0.0,0.027366763 +411.57058596611023,0.0,0.0,0.0,0.0,0.031066857 +411.57950496673584,0.0,0.0,0.0,0.0,0.031066857 +411.5899260044098,0.0,0.0,0.0,0.0,0.031066857 +411.5996639728546,0.0,0.0,0.0,0.0,0.031066857 +411.6101689338684,0.0,0.0,0.0,0.0,0.031066857 +411.6210849285126,0.0,0.0,0.0,0.0,0.021816617 +411.6297700405121,0.0,0.0,0.0,0.0,0.021816617 +411.6402781009674,0.0,0.0,0.0,0.0,0.021816617 +411.6503450870514,0.0,0.0,0.0,0.0,0.021816617 +411.65973806381226,0.0,0.0,0.0,0.0,0.021816617 +411.6710801124573,0.0,0.0,0.0,0.0,0.021816617 +411.6800899505615,0.0,0.0,0.0,0.0,0.021816617 +411.69212007522583,0.0,0.0,0.0,0.0,0.021816617 +411.70327496528625,0.0,0.0,0.0,0.0,0.021816617 +411.71134901046753,0.0,0.0,0.0,0.0,0.021816617 +411.7210829257965,0.0,0.0,0.0,0.0,0.023666665 +411.7295639514923,0.0,0.0,0.0,0.0,0.023666665 +411.7400150299072,0.0,0.0,0.0,0.0,0.023666665 +411.74954104423523,0.0,0.0,0.0,0.0,0.023666665 +411.7601180076599,0.0,0.0,0.0,0.0,0.023666665 +411.77027010917664,0.0,0.0,0.0,0.0,0.01811652 +411.78197598457336,0.0,0.0,0.0,0.0,0.01811652 +411.79146814346313,0.0,0.0,0.0,0.0,0.01811652 +411.7995240688324,0.0,0.0,0.0,0.0,0.01811652 +411.8112721443176,0.0,0.0,0.0,0.0,0.01811652 +411.8202271461487,0.0,0.0,0.0,0.0,0.038467064 +411.8294470310211,0.0,0.0,0.0,0.0,0.038467064 +411.83968591690063,0.0,0.0,0.0,0.0,0.038467064 +411.85141491889954,0.0,0.0,0.0,0.0,0.038467064 +411.8594810962677,0.0,0.0,0.0,0.0,0.038467064 +411.8694260120392,0.0,0.0,0.0,0.0,0.032916907 +411.880695104599,0.0,0.0,0.0,0.0,0.032916907 +411.8894519805908,0.0,0.0,0.0,0.0,0.032916907 +411.90051102638245,0.0,0.0,0.0,0.0,0.032916907 +411.9094181060791,0.0,0.0,0.0,0.0,0.032916907 +411.9208450317383,0.0,0.0,0.0,0.0,0.0033161184 +411.9298861026764,0.0,0.0,0.0,0.0,0.0033161184 +411.9415600299835,0.0,0.0,0.0,0.0,0.0033161184 +411.95059514045715,0.0,0.0,0.0,0.0,0.0033161184 +411.9595820903778,0.0,0.0,0.0,0.0,0.0033161184 +411.9718360900879,0.0,0.0,0.0,0.0,0.042167164 +411.9797489643097,0.0,0.0,0.0,0.0,0.042167164 +411.9893980026245,0.0,0.0,0.0,0.0,0.042167164 +412.00026202201843,0.0,0.0,0.0,0.0,0.042167164 +412.0105240345001,0.0,0.0,0.0,0.0,0.027366763 +412.02006006240845,0.0,0.0,0.0,0.0,0.027366763 +412.0297660827637,0.0,0.0,0.0,0.0,0.027366763 +412.0407249927521,0.0,0.0,0.0,0.0,0.027366763 +412.0497260093689,0.0,0.0,0.0,0.0,0.027366763 +412.0605390071869,0.0,0.0,0.0,0.0,0.027366763 +412.0699529647827,0.0,0.0,0.0,0.0,0.027366763 +412.08014011383057,0.0,0.0,0.0,0.0,0.027366763 +412.0902600288391,0.0,0.0,0.0,0.0,0.027366763 +412.1012260913849,0.0,0.0,0.0,0.0,0.027366763 +412.1102559566498,0.0,0.0,0.0,0.0,0.027366763 +412.11948800086975,0.0,0.0,0.0,0.0,0.034766953 +412.1295471191406,0.0,0.0,0.0,0.0,0.034766953 +412.1398711204529,0.0,0.0,0.0,0.0,0.034766953 +412.15024495124817,0.0,0.0,0.0,0.0,0.034766953 +412.1605200767517,0.0,0.0,0.0,0.0,0.019966569 +412.170077085495,0.0,0.0,0.0,0.0,0.019966569 +412.1802349090576,0.0,0.0,0.0,0.0,0.019966569 +412.1914019584656,0.0,0.0,0.0,0.0,0.019966569 +412.20041704177856,0.0,0.0,0.0,0.0,0.019966569 +412.20942902565,0.0,0.0,0.0,0.0,0.019966569 +412.2209620475769,0.0,0.0,0.0,0.0,0.014416425 +412.229779958725,0.0,0.0,0.0,0.0,0.014416425 +412.2432041168213,0.0,0.0,0.0,0.0,0.014416425 +412.25023102760315,0.0,0.0,0.0,0.0,0.014416425 +412.26052808761597,0.0,0.0,0.0,0.0,0.019966569 +412.27023100852966,0.0,0.0,0.0,0.0,0.019966569 +412.2796471118927,0.0,0.0,0.0,0.0,0.019966569 +412.2905900478363,0.0,0.0,0.0,0.0,0.019966569 +412.29959511756897,0.0,0.0,0.0,0.0,0.019966569 +412.3106999397278,0.0,0.0,0.0,0.0,0.019966569 +412.31961393356323,0.0,0.0,0.0,0.0,0.014416425 +412.3297779560089,0.0,0.0,0.0,0.0,0.014416425 +412.34222507476807,0.0,0.0,0.0,0.0,0.014416425 +412.35119009017944,0.0,0.0,0.0,0.0,0.014416425 +412.36020398139954,0.0,0.0,0.0,0.0,0.014416425 +412.371768951416,0.0,0.0,0.0,0.0,0.0070162313 +412.3801109790802,0.0,0.0,0.0,0.0,0.0070162313 +412.3898091316223,0.0,0.0,0.0,0.0,0.0070162313 +412.3998739719391,0.0,0.0,0.0,0.0,0.0070162313 +412.4102449417114,0.0,0.0,0.0,0.0,0.0070162313 +412.41990900039673,0.0,0.0,0.0,0.0,0.0033161184 +412.42977499961853,0.0,0.0,0.0,0.0,0.0033161184 +412.4404549598694,0.0,0.0,0.0,0.0,0.0033161184 +412.4501619338989,0.0,0.0,0.0,0.0,0.0033161184 +412.4595720767975,0.0,0.0,0.0,0.0,0.0033161184 +412.4709460735321,0.0,0.0,0.0,0.0,-0.011484267 +412.47998809814453,0.0,0.0,0.0,0.0,-0.011484267 +412.489648103714,0.0,0.0,0.0,0.0,-0.011484267 +412.5003590583801,0.0,0.0,0.0,0.0,-0.011484267 +412.5100140571594,0.0,0.0,0.0,0.0,-0.011484267 +412.5210919380188,0.0,0.0,0.0,0.0,-0.024434604 +412.52977299690247,0.0,0.0,0.0,0.0,-0.024434604 +412.5401210784912,0.0,0.0,0.0,0.0,-0.024434604 +412.5514380931854,0.0,0.0,0.0,0.0,-0.024434604 +412.5603530406952,0.0,0.0,0.0,0.0,-0.024434604 +412.57015204429626,0.0,0.0,0.0,0.0,-0.024434604 +412.58146691322327,0.0,0.0,0.0,0.0,-0.024434604 +412.59050011634827,0.0,0.0,0.0,0.0,-0.024434604 +412.59949707984924,0.0,0.0,0.0,0.0,-0.024434604 +412.6101920604706,0.0,0.0,0.0,0.0,-0.024434604 +412.6207239627838,0.0,0.0,0.0,0.0,-0.044785153 +412.62979912757874,0.0,0.0,0.0,0.0,-0.044785153 +412.6399550437927,0.0,0.0,0.0,0.0,-0.044785153 +412.649512052536,0.0,0.0,0.0,0.0,-0.044785153 +412.66034507751465,0.0,0.0,0.0,0.0,-0.044785153 +412.6699900627136,0.0,0.0,0.0,0.0,-0.054035395 +412.68060994148254,0.0,0.0,0.0,0.0,-0.054035395 +412.6895980834961,0.0,0.0,0.0,0.0,-0.054035395 +412.7008481025696,0.0,0.0,0.0,0.0,-0.054035395 +412.7110779285431,0.0,0.0,0.0,0.0,-0.054035395 +412.7200961112976,0.0,0.0,0.0,0.0,-0.08733628 +412.7296259403229,0.0,0.0,0.0,0.0,-0.08733628 +412.7410011291504,0.0,0.0,0.0,0.0,-0.08733628 +412.75053811073303,0.0,0.0,0.0,0.0,-0.08733628 +412.7595250606537,0.0,0.0,0.0,0.0,-0.08733628 +412.7698640823364,0.0,0.0,0.0,0.0,-0.085486226 +412.7797269821167,0.0,0.0,0.0,0.0,-0.085486226 +412.79206013679504,0.0,0.0,0.0,0.0,-0.085486226 +412.8010470867157,0.0,0.0,0.0,0.0,-0.085486226 +412.8100049495697,0.0,0.0,0.0,0.0,-0.085486226 +412.8198480606079,0.0,0.0,0.0,0.0,-0.096586525 +412.83013892173767,0.0,0.0,0.0,0.0,-0.096586525 +412.8397750854492,0.0,0.0,0.0,0.0,-0.096586525 +412.8497281074524,0.0,0.0,0.0,0.0,-0.096586525 +412.86055612564087,0.0,0.0,0.0,0.0,-0.13543756 +412.8695249557495,0.0,0.0,0.0,0.0,-0.13543756 +412.881334066391,0.0,0.0,0.0,0.0,-0.13543756 +412.8902471065521,0.0,0.0,0.0,0.0,-0.13543756 +412.8997359275818,0.0,0.0,0.0,0.0,-0.13543756 +412.9104609489441,0.0,0.0,0.0,0.0,-0.13543756 +412.92107796669006,0.0,0.0,0.0,0.0,-0.13728762 +412.9297790527344,0.0,0.0,0.0,0.0,-0.13728762 +412.9398789405823,0.0,0.0,0.0,0.0,-0.13728762 +412.95098304748535,0.0,0.0,0.0,0.0,-0.13728762 +412.96001505851746,0.0,0.0,0.0,0.0,-0.13728762 +412.97009897232056,0.0,0.0,0.0,0.0,-0.16503835 +412.97939014434814,0.0,0.0,0.0,0.0,-0.16503835 +412.989942073822,0.0,0.0,0.0,0.0,-0.16503835 +413.00298500061035,0.0,0.0,0.0,0.0,-0.16503835 +413.0105531215668,0.0,0.0,0.0,0.0,-0.16873844 +413.01971411705017,0.0,0.0,0.0,0.0,-0.16873844 +413.0296959877014,0.0,0.0,0.0,0.0,-0.16873844 +413.04112005233765,0.0,0.0,0.0,0.0,-0.16873844 +413.05016112327576,0.0,0.0,0.0,0.0,-0.16873844 +413.05964612960815,0.0,0.0,0.0,0.0,-0.16873844 +413.0709021091461,0.0,0.0,0.0,0.0,-0.21498968 +413.07987904548645,0.0,0.0,0.0,0.0,-0.21498968 +413.0905730724335,0.0,0.0,0.0,0.0,-0.21498968 +413.1011710166931,0.0,0.0,0.0,0.0,-0.21498968 +413.1105480194092,0.0,0.0,0.0,0.0,-0.20573942 +413.1202459335327,0.0,0.0,0.0,0.0,-0.20573942 +413.129802942276,0.0,0.0,0.0,0.0,-0.20573942 +413.1399099826813,0.0,0.0,0.0,0.0,-0.20573942 +413.1507179737091,0.01,0.0,0.0,0.0,-0.20573942 +413.1596429347992,0.01,0.0,0.0,0.0,-0.20573942 +413.16986894607544,0.01,0.0,0.0,0.0,-0.21683972 +413.18336391448975,0.01,0.0,0.0,0.0,-0.21683972 +413.1917850971222,0.01,0.0,0.0,0.0,-0.21683972 +413.19998812675476,0.01,0.0,0.0,0.0,-0.21683972 +413.210422039032,0.01,0.0,0.0,0.0,-0.21683972 +413.2194240093231,0.01,0.0,0.0,0.0,-0.23534022 +413.2297730445862,0.01,0.0,0.0,0.0,-0.23534022 +413.24094009399414,0.01,0.0,0.0,0.0,-0.23534022 +413.25084114074707,0.01,0.0,0.0,0.0,-0.23534022 +413.25982999801636,0.01,0.0,0.0,0.0,-0.23534022 +413.273540019989,0.01,0.0,0.0,0.0,-0.2538407 +413.2819170951843,0.01,0.0,0.0,0.0,-0.2538407 +413.28950905799866,0.02,0.0,0.0,0.0,-0.2538407 +413.30043292045593,0.02,0.0,0.0,0.0,-0.2538407 +413.3096170425415,0.02,0.0,0.0,0.0,-0.2538407 +413.3198230266571,0.02,0.0,0.0,0.0,-0.2501406 +413.32951498031616,0.02,0.0,0.0,0.0,-0.2501406 +413.3408160209656,0.02,0.0,0.0,0.0,-0.2501406 +413.34983110427856,0.02,0.0,0.0,0.0,-0.2501406 +413.3605411052704,0.02,0.0,0.0,0.0,-0.26864108 +413.3695480823517,0.02,0.0,0.0,0.0,-0.26864108 +413.3806850910187,0.02,0.0,0.0,0.0,-0.26864108 +413.3896179199219,0.02,0.0,0.0,0.0,-0.26864108 +413.3997859954834,0.02,0.0,0.0,0.0,-0.26864108 +413.4106340408325,0.02,0.0,0.0,0.0,-0.26864108 +413.4194481372833,0.02,0.0,0.0,0.0,-0.30194196 +413.4297890663147,0.02,0.0,0.0,0.0,-0.30194196 +413.4398150444031,0.02,0.0,0.0,0.0,-0.30194196 +413.4520239830017,0.02,0.0,0.0,0.0,-0.30194196 +413.45966601371765,0.02,0.0,0.0,0.0,-0.30194196 +413.4698669910431,0.02,0.0,0.0,0.0,-0.32969272 +413.48032903671265,0.02,0.0,0.0,0.0,-0.32969272 +413.48999214172363,0.02,0.0,0.0,0.0,-0.32969272 +413.5007429122925,0.02,0.0,0.0,0.0,-0.32969272 +413.50976300239563,0.02,0.0,0.0,0.0,-0.32969272 +413.5173759460449,0.02,0.0,0.0,0.0,-0.33339283 diff --git a/FullVehicleSim/SimulationControlInputs/vehicleControlInputsModification.py b/FullVehicleSim/SimulationControlInputs/vehicleControlInputsModification.py new file mode 100644 index 0000000..1c98642 --- /dev/null +++ b/FullVehicleSim/SimulationControlInputs/vehicleControlInputsModification.py @@ -0,0 +1,65 @@ +import polars as pl +import numpy as np +import matplotlib.pyplot as plt +from scipy.optimize import curve_fit + +# time,throttle,brakePressureFront,brakePressureRear,steerAngle + +df = pl.read_parquet("../fs-data/FS-3/03162026/2_steeper_regen_curve.parquet") +df = df.fill_null(strategy="forward").fill_null(strategy="backward") +df = df.with_columns( + (pl.col("Time_ms")*0.001 - pl.col("Time_ms").min() * 0.001).alias("time"), + ((df["TMAIN_DATA_STEERING"]-10.5)/180*np.pi).alias("steerAngle"), + (df["ETC_STATUS_PEDAL_TRAVEL"]/100.0).alias("throttle"), + pl.Series(np.clip(df["ETC_STATUS_BRAKE_SENSE_VOLTAGE"]-330, 0, 2640)/2640*2000).alias("brakePressureFront"), + pl.Series(np.clip(df["ETC_STATUS_BRAKE_SENSE_VOLTAGE"]-330, 0, 2640)/2640*2000).alias("brakePressureRear"), + (pl.col("ETC_STATUS_BRAKE_PEDAL_TRAVEL") / 106.7).alias("brakePedalTravel") +) + +[x for x in df.columns if "SME" in x] + +plt.plot(df["time"], (df["TMAIN_DATA_STEERING"])) +plt.show() + +plt.plot(df["time"], (df["TMAIN_DATA_STEERING"]-10.5)/180*np.pi) +plt.show() + + +dfT = df.filter(pl.col("time") < 50).filter(pl.col("time") > 48) +dfT = df +plt.scatter(dfT["VDM_GPS_Latitude"], -1*dfT["VDM_GPS_Longitude"], c=dfT["TMAIN_DATA_STEERING"], cmap="viridis", s=0.5) +plt.colorbar(label="Steering Angle") +plt.axis("scaled") +plt.ylabel("Latitude") +plt.xlabel("Longitude") +plt.show() + +plt.plot(df["time"], df["ETC_STATUS_PEDAL_TRAVEL"]) +plt.show() + +plt.plot(df["time"], df["ETC_STATUS_BRAKE_SENSE_VOLTAGE"]) +plt.show() + +plt.plot(df["time"], df["brakePressureFront"]) +plt.show() + +df.select(["time", "throttle", "brakePressureFront","brakePressureRear", "brakePedalTravel", "steerAngle"]).write_csv("FullVehicleSim/SimulationControlInputs/simulationControls_Mar162026_SteeperRegenCurve.csv") + +def fun (x, a): + return a * x + +dfHere = df.filter(pl.col("SME_THROTL_TorqueDemand") < 0) +plt.scatter(dfHere["ETC_STATUS_BRAKE_PEDAL_TRAVEL"], dfHere["SME_THROTL_TorqueDemand"], s=0.5) +plt.plot(np.arange(0, 60, 1), fun(np.arange(0, 60, 1), -300)) +plt.xlabel("Brake Pedal Travel") +plt.ylabel("Torque Demand") +plt.show() + +plt.plot(df["time"], df["ETC_STATUS_BRAKE_PEDAL_TRAVEL"]/100, label="Brake Pedal Travel") +plt.plot(df["time"], df["ETC_STATUS_PEDAL_TRAVEL"]/100, label="Accelerator Pedal Travel") +plt.plot(df["time"], df["SME_THROTL_TorqueDemand"]/30000, label="Torque Demand") +plt.plot(df["time"], (df["ETC_STATUS_PEDAL_TRAVEL"]/100) - (df["ETC_STATUS_BRAKE_PEDAL_TRAVEL"]/100), label="Combined Pedal Travel") +plt.plot(df["time"], df["SME_TEMP_FaultCode"], label="Fault Code") +plt.xlabel("Time (s)") +plt.legend() +plt.show() diff --git a/FullVehicleSim/basicViewer.py b/FullVehicleSim/basicViewer.py index 1687a8e..c674698 100644 --- a/FullVehicleSim/basicViewer.py +++ b/FullVehicleSim/basicViewer.py @@ -2,8 +2,19 @@ import matplotlib.pyplot as plt df = pl.read_parquet("FullVehicleSim/simulation_output.parquet") +dfReal = pl.read_parquet("../fs-data/FS-3/03162026/2_steeper_regen_curve.parquet").fill_null(strategy="forward").fill_null(strategy="backward") t = df["time"] +dfReal["Time_ms"][-1] + +[x for x in dfReal.columns if "SME" in x] + + + +df.columns + +plt.plot(t, df["posX"]) +plt.show() plt.plot(t, df["throttle"]*300, label="throttle") plt.plot(t, df["brakePressureFront"], label="brakesF") @@ -15,4 +26,11 @@ plt.legend() plt.show() + +plt.plot(dfReal["Time_ms"]/1000, dfReal["SME_TRQSPD_Speed"], label="Real RPM") +plt.plot(t, df["motorRPM"], label="Simulated RPM") +plt.legend() +plt.xlabel("Time (s)") +plt.ylabel("RPM") +plt.show() df["speed"].max() \ No newline at end of file diff --git a/FullVehicleSim/engine.py b/FullVehicleSim/engine.py index 0a766ec..a290a00 100644 --- a/FullVehicleSim/engine.py +++ b/FullVehicleSim/engine.py @@ -51,7 +51,7 @@ def stepState(worldArray:np.ndarray, step:int) -> np.ndarray: delta = 1/Parameters["stepsPerSecond"] arr[varMaxTraction] = 180.0 # Needs a more complex implementation before being used. Potentially something akin to the gaussian kernel of the voltage histeresis model but for acceleration? Or literally based on the suspension travel. - arr[varVoltage] = calcVoltage() # Not yet implemented. Returns 120 for now. + arr[varVoltage] = calcVoltage(worldArray, step) # Volts, Voltage of the entire pack, not a single cell arr[varMaxPower] = calcMaxPower(arr[varVoltage]) # Watts arr[varResistiveForces] = calcResistiveForces(worldArray, step) @@ -61,18 +61,18 @@ def stepState(worldArray:np.ndarray, step:int) -> np.ndarray: arr[varFrontBrakeTemperature] = worldArray[step-1, varFrontBrakeTemperature] + arr[varFrontBrakeHeating] - arr[varFrontBrakeCooling] arr[varRearBrakeTemperature] = worldArray[step-1, varRearBrakeTemperature] + arr[varRearBrakeHeating] - arr[varRearBrakeCooling] - arr[varMaxMotorTorque] = calcMaxMotorTorque(worldArray, step, arr[varResistiveForces], arr[varMaxPower], arr[varMaxTraction]) - arr[varMotorTorque] = min(Parameters["maxTorque"]*arr[varThrottle], arr[varMaxMotorTorque]) # Nm + arr[varMaxMotorTorque] = calcMaxMotorTorque(worldArray, step, arr[varResistiveForces], arr[varMaxPower], arr[varMaxTraction]) # Nm + arr[varMotorTorque] = min(Parameters["maxTorque"]*(arr[varThrottle]-arr[varBrakePedalTravel]), arr[varMaxMotorTorque]) # Nm arr[varPower] = arr[varMotorTorque] * worldArray[step-1, varMotorRotationsHZ] # Watts - arr[varMotorForce] = calcMotorForce(arr[varMotorTorque]) # Newtons + arr[varMotorForce] = calcMotorForce(arr[varMotorTorque]) # Newtons, Longitudinal force at the wheel from the motor arr[varNetForce] = arr[varMotorForce] + arr[varResistiveForces] # Newtons arr[varAcceleration] = arr[varNetForce] / Parameters["Mass"] # m/s^2 - arr[varCurrent] = arr[varPower] / arr[varVoltage] # Amps + arr[varCurrent] = calcCurrent(arr[varPower], arr[varVoltage]) # Amps. clamps for current limit. pack current. - arr[varCharge] = worldArray[step-1, varCharge] - worldArray[step, varCurrent] * delta / 3600.0 + arr[varCharge] = worldArray[step-1, varCharge] - worldArray[step, varCurrent] * delta / 3600.0 / Parameters["parallelCells"] / Parameters["cellCapacity_Ah"] arr[varPosX:varPosZ+1] = worldArray[step-1, varPosX:varPosZ+1] + worldArray[step-1, varVelX:varVelZ+1] * delta arr[varSpeed] = max(0, worldArray[step-1, varSpeed] + arr[varAcceleration] * delta) # Sometimes braking falls a tad below 0 so we just correct that because otherwise everything breaks arr[varYawRate] = worldArray[step-1, varYawRate] @@ -85,10 +85,10 @@ def stepState(worldArray:np.ndarray, step:int) -> np.ndarray: arr[varFrontSlipAngle], arr[varRearSlipAngle] = calcSlipAngle(worldArray, step) arr[varMaxWheelTorque] = calcMaxWheelTorque(arr[varMaxMotorTorque]) - arr[varWheelRotationsHZ] = arr[varSpeed] / Parameters["wheelCircumferance"] * 2.0 * np.pi - arr[varMotorRotationsHZ] = arr[varWheelRotationsHZ] / Parameters["gearRatio"] - arr[varWheelRPM] = arr[varWheelRotationsHZ] * 60.0 - arr[varMotorRPM] = arr[varWheelRPM] / Parameters["gearRatio"] + arr[varWheelRotationsHZ] = arr[varSpeed] / Parameters["wheelRadius"] + arr[varMotorRotationsHZ] = arr[varWheelRotationsHZ] * Parameters["gearRatio"] + arr[varWheelRPM] = arr[varWheelRotationsHZ] * 60.0 / (2 * np.pi) + arr[varMotorRPM] = arr[varWheelRPM] * Parameters["gearRatio"] return arr def dynamicStepState(step:np.ndarray) -> np.ndarray: diff --git a/FullVehicleSim/main.py b/FullVehicleSim/main.py index 62d0f5f..88bcfe5 100644 --- a/FullVehicleSim/main.py +++ b/FullVehicleSim/main.py @@ -28,8 +28,8 @@ raise Exception("Please provide a valid simulation controls file path using --simulation_controls or -c") ## Double check it has the correct columns - if df_controls.columns != ['time', 'throttle', 'brakePressureFront','brakePressureRear', 'steerAngle']: - raise Exception("Simulation controls file must contain the following columns: 'time', 'throttle', 'brakePressureFront', 'brakePressureRear', 'steerAngle'") + if df_controls.columns != ['time', 'throttle', 'brakePressureFront','brakePressureRear', 'brakePedalTravel', 'steerAngle']: + raise Exception("Simulation controls file must contain the following columns: 'time', 'throttle', 'brakePressureFront', 'brakePressureRear', 'brakePedalTravel', 'steerAngle'") totalSteps = int(Parameters["stepsPerSecond"] * Parameters["simulationDuration"]) steps = np.arange(0, Parameters["simulationDuration"], 1/Parameters["stepsPerSecond"]) @@ -51,6 +51,7 @@ 'throttle': df_controls["throttle"][-1], 'brakePressureFront': df_controls["brakePressureFront"][-1], 'brakePressureRear': df_controls["brakePressureRear"][-1], + 'brakePedalTravel': df_controls["brakePedalTravel"][-1], 'steerAngle': df_controls["steerAngle"][-1]})) timeSeries = df_controls['time'] @@ -62,11 +63,12 @@ cs = CubicSpline(timeSeries, df_controls.drop('time').to_numpy()) controlInputs = cs(steps) elif Parameters["interpolationMethod"] == "linear": - controlInputs = np.zeros((len(steps), 4)) + controlInputs = np.zeros((len(steps), 5)) controlInputs[:,0] = np.interp(steps, timeSeries, df_controls['throttle']) controlInputs[:,1] = np.interp(steps, timeSeries, df_controls['brakePressureFront']) controlInputs[:,2] = np.interp(steps, timeSeries, df_controls['brakePressureRear']) - controlInputs[:,3] = np.interp(steps, timeSeries, df_controls['steerAngle']) + controlInputs[:,3] = np.interp(steps, timeSeries, df_controls['brakePedalTravel']) + controlInputs[:,4] = np.interp(steps, timeSeries, df_controls['steerAngle']) else: raise Exception("Unsupported interpolation method. Please use 'cubic' or 'linear'.") @@ -75,7 +77,8 @@ worldArray[1:, varThrottle] = controlInputs[:,0] worldArray[1:, varBrakePressureFront] = controlInputs[:,1] worldArray[1:, varBrakePressureRear] = controlInputs[:,2] - worldArray[1:, varSteerAngle] = controlInputs[:,3] + worldArray[1:, varBrakePedalTravel] = controlInputs[:,3] + worldArray[1:, varSteerAngle] = controlInputs[:,4] worldArray[0,varCharge] = Parameters["vehicleSOC"] worldArray[0,varFrontBrakeTemperature] = Parameters["initialBrakeTemperature"] worldArray[0,varRearBrakeTemperature] = Parameters["initialBrakeTemperature"] @@ -136,6 +139,7 @@ ax1.set_ylabel("Current (A) / Voltage (V)") ax1.plot(t, current, label="Current") ax11.plot(t, voltage, label="Voltage", color='orange') + ax1.legend() ax2.set_title("Speed vs Time") ax2.set_xlabel("Time (s)") diff --git a/FullVehicleSim/paramLoader.py b/FullVehicleSim/paramLoader.py index 5249d9d..30cdc51 100644 --- a/FullVehicleSim/paramLoader.py +++ b/FullVehicleSim/paramLoader.py @@ -1,60 +1,73 @@ import json5 from typing import Dict, List, Tuple +import polars as pl +import numpy as np Magic: dict Parameters: dict with open('params.json5', 'r') as file: params = json5.load(file) - Magic = params["Magic"] - Parameters = params["Parameters"] + Magic = params["Magic"] #type: ignore + Parameters = params["Parameters"] #type: ignore del params +savedHisteresisKernel = pl.read_csv("Electrical/HisteresisCellModel/trained_voltage_kernel.csv").to_numpy() +kernelStepSize = Magic["cellModel_KernelStepSize"] +newKernelLen = int(savedHisteresisKernel.shape[0] * Parameters["stepsPerSecond"] * kernelStepSize) +histeresisKernel = np.interp( + np.linspace(0, savedHisteresisKernel.shape[0] * kernelStepSize, newKernelLen, endpoint=False), + np.linspace(0, savedHisteresisKernel.shape[0] * kernelStepSize, savedHisteresisKernel.shape[0], endpoint=False), + savedHisteresisKernel[:, 1] +) + +## IMPORTANT: Do not name any other variable that starts with "var" in this file, as it will be included in the variable schema. # Variable definitions - maintain original order for compatibility varTime = 0 varThrottle = 1 varBrakePressureFront = 2 varBrakePressureRear = 3 -varSteerAngle = 4 -varPosX = 5 -varPosY = 6 -varPosZ = 7 -varVelX = 8 -varVelY = 9 -varVelZ = 10 -varSpeed = 11 -varHeadingX = 12 -varHeadingY = 13 -varHeadingZ = 14 -varYawRate = 15 -varFrontBrakeTemperature = 16 -varRearBrakeTemperature = 17 -varCharge = 18 -varDrag = 19 -varResistiveForces = 20 -varMotorTorque = 21 -varMotorForce = 22 -varNetForce = 23 -varMaxTraction = 24 -varWheelRotationsHZ = 25 -varMotorRPM = 26 -varMotorRotationsHZ = 27 -varCurrent = 28 -varMaxWheelTorque = 29 -varMaxPower = 30 -varPower = 31 -varVoltage = 32 -varFrontBrakeForce = 33 -varRearBrakeForce = 34 -varFrontBrakeHeating = 35 -varRearBrakeHeating = 36 -varFrontBrakeCooling = 37 -varRearBrakeCooling = 38 -varFrontSlipAngle = 39 -varRearSlipAngle = 40 -varMaxMotorTorque = 41 -varAcceleration = 42 -varWheelRPM = 43 +varBrakePedalTravel = 4 +varSteerAngle = 5 +varPosX = 6 +varPosY = 7 +varPosZ = 8 +varVelX = 9 +varVelY = 10 +varVelZ = 11 +varSpeed = 12 +varHeadingX = 13 +varHeadingY = 14 +varHeadingZ = 15 +varYawRate = 16 +varFrontBrakeTemperature = 17 +varRearBrakeTemperature = 18 +varCharge = 19 +varDrag = 20 +varResistiveForces = 21 +varMotorTorque = 22 +varMotorForce = 23 +varNetForce = 24 +varMaxTraction = 25 +varWheelRotationsHZ = 26 +varMotorRPM = 27 +varMotorRotationsHZ = 28 +varCurrent = 29 +varMaxWheelTorque = 30 +varMaxPower = 31 +varPower = 32 +varVoltage = 33 +varFrontBrakeForce = 34 +varRearBrakeForce = 35 +varFrontBrakeHeating = 36 +varRearBrakeHeating = 37 +varFrontBrakeCooling = 38 +varRearBrakeCooling = 39 +varFrontSlipAngle = 40 +varRearSlipAngle = 41 +varMaxMotorTorque = 42 +varAcceleration = 43 +varWheelRPM = 44 # Automatically generate schema from defined variables def generate_variable_schema() -> Dict[int, str]: diff --git a/FullVehicleSim/params.json5 b/FullVehicleSim/params.json5 index 030bcec..7bf7017 100644 --- a/FullVehicleSim/params.json5 +++ b/FullVehicleSim/params.json5 @@ -1,15 +1,15 @@ // Base SI Units unless otherwise specified { "Parameters": { - "stepsPerSecond": 300, - "simulationDuration": 40.0, + "stepsPerSecond": 100, + "simulationDuration": 430.0, // Seconds "interpolationMethod": "linear", // "linear" or "cubic", this is for interpolating the simultion controls. "ambientTemperature": 20, // °C - "tractiveIMax": 300, // A + "tractiveIMax": 400, // A "initialBrakeTemperature": 20, // °C "initialBatteryTemperature": 20, // °C - "vehicleSOC": 1.0, // Out of 1 + "vehicleSOC": 1, // Out of 1 "initSpeed": 0.0, // m/s "initHeading": [1.0, 0.0, 0.0], // Vector pointing in the direction of the front of the car "initPosition": [0.0, 0.0, 0.0], // Starting position of the car in the world frame @@ -21,17 +21,23 @@ "brakeDiscRadius": 0.09525, // meters (3.75 inches) -- Brake pad is ~1 inch wide near the edge of an 8 inch diamater rotor "brakeCaliperArea": 1.23, // in^2 + "brakeRotorArea": 77, // in^2, not simply calculated because the brake disc has holes in it + "brakeRotorMass": 0.4908, // kg + "4130SpecificHeatCapacity": 540, // J/(kg*k) + + "regenMaxTorque": 180, // Nm, this is the maximum amount of torque the regen system can apply at the motor. + "wheelCircumferance": 1.35716802635079, - "wheelRadius": 0.216, - "gearRatio": 3.41667, - "maxTorque": 180, + "wheelRadius": 0.216, // m + "gearRatio": 3.41667, // 41/12 + "maxTorque": 180, // Nm, max torque at the motor. "friction-coeff-lat": 1.7333, "friction-coeff-long": 1.7333, "unloaded-radius": 1.7333, "p_0": 82000, "load_0": 300, - "Mass": 300, // kg + "Mass": 280, // kg "wheelBase": 1.65471, "a": 0.853506, "frontWeightDist": 46.46, @@ -51,13 +57,25 @@ "brakeMass": 0.408, "maxBrakeForce": 1500, - "seriesCells": 30,s - "cellCapacity_Ah": 2.6 + "seriesCells": 30, + "parallelCells": 20, + "cellCapacity_Ah": 2.6, // Amp hours + "histeresisKernelLength": 10.0, // seconds + + "GasConstant": 8.31446261815324, + "FaradaysConstant": 96485.33212, }, "Magic": { - "cellModelSigma": 3.0, - "hysteresisGain": 0.015, + "cellModel_V0": 3.71, + "cellModel_C1": 1.127469, + "cellModel_C2": 6.96148085, + "cellModel_C3": 0.05243311, + "cellModel_C4": 0.01567795, + + "cellModel_R0": 0.0016, + "cellModel_KernelStepSize": 0.01, // Time in seconds between each value in the histeresis kernel. + "cellModel_bias": -0.022722354020559558, "shape-factor": 0.696268618106842, "curvature-scaling-factor": 1.7177082300186157, diff --git a/FullVehicleSim/simulation_output.parquet b/FullVehicleSim/simulation_output.parquet index 3c5c963..9231e6e 100644 Binary files a/FullVehicleSim/simulation_output.parquet and b/FullVehicleSim/simulation_output.parquet differ diff --git a/trained_voltage_kernel.csv b/trained_voltage_kernel.csv new file mode 100644 index 0000000..714f41e --- /dev/null +++ b/trained_voltage_kernel.csv @@ -0,0 +1,201 @@ +kernel_index,kernel_value +0,0.0014844603552640907 +1,-1.057695484087952e-05 +2,-6.74607743516547e-05 +3,-5.827059182492753e-05 +4,-4.6136625702595036e-05 +5,-7.770932232240756e-05 +6,-6.638473881152195e-05 +7,-7.268966690053368e-05 +8,-1.0228418682478528e-05 +9,-3.292912049520764e-05 +10,-5.214067274653915e-05 +11,-0.00012322915281646945 +12,-6.391331268178453e-05 +13,-2.6911248540642447e-05 +14,-4.3297710462672385e-05 +15,-6.992241468866712e-06 +16,7.795040902628619e-06 +17,-7.330549251384742e-05 +18,-1.289885286694347e-05 +19,1.6658717809782387e-05 +20,-4.7126237145353745e-05 +21,3.833153405207863e-05 +22,-9.5666376313865e-06 +23,4.74961769759114e-06 +24,-4.729558871861454e-05 +25,1.1809710194625257e-06 +26,1.1741503333352336e-05 +27,1.9644952012360783e-05 +28,-2.8587398155574234e-05 +29,8.49953266642451e-06 +30,4.4963578054379874e-07 +31,-1.1858721185645937e-05 +32,-3.62437502896709e-05 +33,-7.346114192365369e-05 +34,-2.420730211816169e-05 +35,7.76870859058531e-06 +36,3.286017542872134e-05 +37,3.8865551058929785e-05 +38,1.8228965369998585e-06 +39,8.563796825377432e-06 +40,-2.216769908982347e-06 +41,-3.075920803971617e-05 +42,5.771063339686332e-06 +43,-2.9159267232217926e-06 +44,-3.9853952838539675e-06 +45,1.5374140209188205e-05 +46,4.947085732799674e-06 +47,1.0047897308516837e-05 +48,-6.6578977855568786e-06 +49,-1.4655394909512292e-05 +50,-1.0512100529501158e-05 +51,1.6101012676408863e-05 +52,4.9741085919152935e-06 +53,-5.4807534618560095e-06 +54,-3.277967295140436e-06 +55,-8.079863911461898e-06 +56,-7.49979450156716e-06 +57,9.275500916721027e-06 +58,-8.588851191622962e-07 +59,-7.470472481233449e-06 +60,-3.0534514741289773e-06 +61,1.1093766920675224e-05 +62,7.918453849614785e-06 +63,1.3781908799214772e-05 +64,-6.866300428241019e-06 +65,-1.4371366761779155e-05 +66,-1.295215334683323e-05 +67,1.1417325252172752e-05 +68,-4.972614243456051e-06 +69,7.053934962996587e-06 +70,1.0394347355673842e-05 +71,-6.108054005287501e-06 +72,3.204022844040574e-05 +73,-5.75046960618213e-07 +74,-3.532098673594419e-05 +75,6.328476869896247e-06 +76,-1.2841482111765887e-05 +77,5.559079070577282e-06 +78,-3.6578695911579035e-05 +79,-7.694512986638028e-06 +80,-2.0470277012708862e-05 +81,-1.8036038968173704e-05 +82,-3.945751369426488e-05 +83,-1.1697489818180941e-05 +84,-5.4104889991599034e-06 +85,4.564127629797209e-06 +86,2.908454796412329e-05 +87,8.455369116734622e-06 +88,2.7426817608838402e-05 +89,3.0250697545385925e-06 +90,5.452046609661578e-06 +91,-3.0297414346846056e-06 +92,6.218018401543594e-06 +93,-1.1736230306117597e-05 +94,-1.6008074254482527e-05 +95,-2.5152223108739943e-06 +96,1.9998892335007267e-07 +97,-1.7867785512694175e-06 +98,-7.972926611717354e-06 +99,-4.070967359165964e-06 +100,-1.0739427926994985e-05 +101,-4.4035559916945405e-06 +102,-8.471798741931495e-06 +103,-1.9151283282908009e-07 +104,1.4147780876175811e-05 +105,1.6255087094815314e-05 +106,8.626645482029011e-06 +107,6.049177683097863e-06 +108,9.142876013365761e-06 +109,1.4185225826660274e-05 +110,1.3710116658395638e-05 +111,8.967152324600357e-07 +112,-1.242197659240265e-05 +113,-1.1067797162028529e-05 +114,-8.263653529101392e-06 +115,-5.313015782929982e-06 +116,-4.453257743201639e-06 +117,-1.0661425507582673e-06 +118,-4.7102115874293085e-06 +119,3.005341071875131e-06 +120,7.755990159883694e-06 +121,-9.773047439078442e-06 +122,-8.492343091764297e-07 +123,7.842231122000297e-06 +124,-7.565310337600661e-07 +125,9.798650510150252e-07 +126,-3.958060159237064e-06 +127,-5.601892997913295e-06 +128,-3.0870631054907746e-06 +129,3.374413073694359e-06 +130,-1.509840005442154e-05 +131,2.0305219390594278e-06 +132,6.45660109799178e-06 +133,-4.626572453245097e-07 +134,2.9433290445550553e-05 +135,3.853528919452845e-07 +136,-3.9900936331325465e-06 +137,-1.5184341252738045e-05 +138,1.0337203514615394e-05 +139,6.04577481603207e-06 +140,-1.4773397349962403e-05 +141,1.688175848666585e-07 +142,1.1034933852475908e-05 +143,-7.166074103194074e-06 +144,-2.842985297717969e-06 +145,3.003046311662515e-06 +146,-1.0354871025815257e-05 +147,-6.874827155960392e-06 +148,-6.209371499736375e-06 +149,3.3380658698539227e-06 +150,2.841061652741377e-06 +151,-1.5483002120294215e-06 +152,6.52711941543218e-06 +153,-7.472686025038666e-06 +154,3.3308454709269394e-06 +155,7.975112919232906e-06 +156,7.985736135355441e-07 +157,8.72967014591524e-06 +158,1.2378995590203253e-05 +159,-7.835700807644474e-06 +160,8.15097957776218e-06 +161,-2.882904035212983e-06 +162,-8.934556501129765e-07 +163,2.497755334380487e-05 +164,4.682301508198299e-06 +165,-2.5673562597007053e-05 +166,6.484308908428971e-06 +167,-4.388965999764422e-06 +168,4.1855885454119146e-08 +169,-1.3785630626514847e-05 +170,-4.475402984358546e-06 +171,-8.96344392800326e-06 +172,-3.4278745095426135e-06 +173,1.7384514631831417e-05 +174,-7.560924481035599e-06 +175,-1.010610920483898e-05 +176,1.1243982989113915e-06 +177,6.914975806640054e-06 +178,6.9549290516548815e-06 +179,-5.302016556177862e-06 +180,-7.848563254308647e-06 +181,3.082348545107533e-06 +182,8.854491329431227e-06 +183,8.356054742629278e-06 +184,-4.738341540110048e-06 +185,-1.1060423677013744e-05 +186,1.2744590840630648e-05 +187,1.7262958405515417e-05 +188,3.0968735456788486e-06 +189,3.970169337767108e-06 +190,9.992623074961041e-06 +191,3.073795502062925e-05 +192,2.724467236186325e-06 +193,3.5359753577537305e-06 +194,1.1675764298065096e-05 +195,6.604193665140586e-05 +196,-1.7206599041618555e-07 +197,-1.0612911494348374e-05 +198,-1.5021160509747938e-05 +199,-0.00029121289288013273